1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
/* Copyright (C) 2002-2005 RealVNC Ltd. All Rights Reserved.
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*/
#ifndef __RFB_HOSTNAME_H__
#define __RFB_HOSTNAME_H__
#include <assert.h>
#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <rdr/Exception.h>
#include <rfb/util.h>
namespace rfb {
static bool isAllSpace(const char *string) {
if (string == nullptr)
return false;
while(*string != '\0') {
if (! isspace(*string))
return false;
string++;
}
return true;
}
static inline void getHostAndPort(const char* hi, std::string* host,
int* port, int basePort=5900)
{
const char* hostStart;
const char* hostEnd;
const char* portStart;
if (hi == nullptr)
throw rdr::Exception("NULL host specified");
// Trim leading whitespace
while(isspace(*hi))
hi++;
assert(host);
assert(port);
if (hi[0] == '[') {
hostStart = &hi[1];
hostEnd = strchr(hostStart, ']');
if (hostEnd == nullptr)
throw rdr::Exception("unmatched [ in host");
portStart = hostEnd + 1;
if (isAllSpace(portStart))
portStart = nullptr;
} else {
hostStart = &hi[0];
hostEnd = strrchr(hostStart, ':');
if (hostEnd == nullptr) {
hostEnd = hostStart + strlen(hostStart);
portStart = nullptr;
} else {
if ((hostEnd > hostStart) && (hostEnd[-1] == ':'))
hostEnd--;
portStart = strchr(hostStart, ':');
if (portStart != hostEnd) {
// We found more : in the host. This is probably an IPv6 address
hostEnd = hostStart + strlen(hostStart);
portStart = nullptr;
}
}
}
// Back up past trailing space
while(isspace(*(hostEnd - 1)) && hostEnd > hostStart)
hostEnd--;
if (hostStart == hostEnd)
*host = "localhost";
else
*host = std::string(hostStart, hostEnd - hostStart);
if (portStart == nullptr)
*port = basePort;
else {
char* end;
if (portStart[0] != ':')
throw rdr::Exception("invalid port specified");
if (portStart[1] != ':')
*port = strtol(portStart + 1, &end, 10);
else
*port = strtol(portStart + 2, &end, 10);
if (*end != '\0' && ! isAllSpace(end))
throw rdr::Exception("invalid port specified");
if ((portStart[1] != ':') && (*port < 100))
*port += basePort;
}
}
};
#endif // __RFB_HOSTNAME_H__
|