Fri, 12 Dec 2014 00:55:51 +0200
- begin work on rcon sessions
9
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
1 | /* |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
2 | Copyright 2014 Teemu Piippo |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
3 | All rights reserved. |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
4 | |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
5 | Redistribution and use in source and binary forms, with or without |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
6 | modification, are permitted provided that the following conditions |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
7 | are met: |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
8 | |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
9 | 1. Redistributions of source code must retain the above copyright |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
10 | notice, this list of conditions and the following disclaimer. |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
11 | 2. Redistributions in binary form must reproduce the above copyright |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
12 | notice, this list of conditions and the following disclaimer in the |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
13 | documentation and/or other materials provided with the distribution. |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
14 | 3. Neither the name of the copyright holder nor the names of its |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
15 | contributors may be used to endorse or promote products derived from |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
16 | this software without specific prior written permission. |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
17 | |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
19 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
20 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
21 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
22 | OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
23 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
24 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
25 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
26 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
27 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
28 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
29 | */ |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
30 | |
5 | 31 | #include <stdio.h> |
32 | #include <stdlib.h> | |
33 | #include <string.h> | |
34 | #include <time.h> | |
35 | #include <netinet/in.h> | |
36 | #include <netdb.h> | |
37 | #include "ipaddress.h" | |
38 | ||
39 | bool IPAddress::sink; | |
40 | ||
41 | // ----------------------------------------------------------------------------- | |
42 | // | |
43 | IPAddress::IPAddress() : | |
44 | host (0), | |
45 | port (0) {} | |
46 | ||
47 | // ----------------------------------------------------------------------------- | |
48 | // | |
49 | IPAddress::IPAddress (unsigned long host, unsigned short port) : | |
50 | host (host), | |
51 | port (port) {} | |
52 | ||
53 | // ----------------------------------------------------------------------------- | |
54 | // | |
55 | IPAddress::IPAddress (const IPAddress& other) : | |
56 | host (other.host), | |
57 | port (other.port) {} | |
58 | ||
59 | // ----------------------------------------------------------------------------- | |
60 | // | |
61 | METHOD | |
62 | IPAddress::to_string (WithPort withport) const -> String | |
63 | { | |
64 | String val; | |
65 | ||
66 | if (withport == IP_WITH_PORT) | |
67 | val.sprintf ("%u.%u.%u.%u:%u", octet (0), octet (1), octet (2), octet (3), port); | |
68 | else | |
69 | val.sprintf ("%u.%u.%u.%u", octet (0), octet (1), octet (2), octet (3)); | |
70 | ||
71 | return val; | |
72 | } | |
73 | ||
74 | // ----------------------------------------------------------------------------- | |
75 | // | |
76 | METHOD | |
77 | IPAddress::octet (int n) const -> unsigned char | |
78 | { | |
79 | return (host >> ((3 - n) * 8)) & 0xFF; | |
80 | } | |
81 | ||
82 | // ----------------------------------------------------------------------------- | |
83 | // | |
84 | METHOD | |
85 | IPAddress::set_octet (int n, unsigned char oct) -> void | |
86 | { | |
87 | // TODO: make a big-endian version | |
88 | host &= ~(0xFF << (3 - n) * 8); | |
89 | host |= oct << ((3 - n) * 8); | |
90 | } | |
91 | ||
92 | // ----------------------------------------------------------------------------- | |
93 | // | |
94 | METHOD | |
95 | IPAddress::compare (const IPAddress& other) const -> bool | |
96 | { | |
97 | for (int i = 0; i < 4; ++i) | |
98 | { | |
99 | if (octet (i) != other.octet (i)) | |
100 | return false; | |
101 | } | |
102 | ||
103 | if (port != 0 | |
104 | and other.port != 0 | |
105 | and port != other.port) | |
106 | { | |
107 | return false; | |
108 | } | |
109 | ||
110 | return true; | |
111 | } | |
112 | ||
113 | // ----------------------------------------------------------------------------- | |
114 | // | |
115 | METHOD | |
116 | IPAddress::operator< (const IPAddress& other) const -> bool | |
117 | { | |
118 | for (int i = 0; i < 4; ++i) | |
119 | { | |
120 | if (octet (i) != other.octet (i)) | |
121 | return octet (i) < other.octet (i); | |
122 | } | |
123 | ||
124 | return port < other.port; | |
125 | } | |
126 | ||
127 | // ----------------------------------------------------------------------------- | |
128 | // | |
129 | METHOD | |
130 | IPAddress::to_sockaddr_in() const -> sockaddr_in | |
131 | { | |
132 | sockaddr_in claddr; | |
133 | memset (&claddr, 0, sizeof claddr); | |
134 | claddr.sin_addr.s_addr = htonl (host); | |
135 | claddr.sin_port = htons (port); | |
136 | claddr.sin_family = AF_INET; | |
137 | return claddr; | |
138 | } | |
139 | ||
140 | // ----------------------------------------------------------------------------- | |
141 | // | |
142 | STATIC METHOD | |
143 | IPAddress::from_string (String input, bool* ok) -> IPAddress | |
144 | { | |
145 | unsigned int parts[4]; | |
146 | int colonpos = input.find (":"); | |
147 | String addressString = colonpos == -1 ? input : input.mid (0, colonpos); | |
148 | IPAddress value; | |
149 | ||
7
01e4e9ae323a
- fixed some problems with the ip address
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
150 | // Try scanf the IPv4 host first |
5 | 151 | if (sscanf (addressString, "%u.%u.%u.%u", &parts[0], &parts[1], &parts[2], &parts[3])) |
152 | { | |
153 | for (short i = 0; i < 4; ++i) | |
154 | value.set_octet (i, parts[i]); | |
155 | } | |
156 | else | |
157 | { | |
7
01e4e9ae323a
- fixed some problems with the ip address
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
158 | // Possibly a hostname, try resolve it |
01e4e9ae323a
- fixed some problems with the ip address
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
159 | value = IPAddress::resolve (addressString, ok); |
01e4e9ae323a
- fixed some problems with the ip address
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
160 | |
01e4e9ae323a
- fixed some problems with the ip address
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
161 | if (*ok == false) |
01e4e9ae323a
- fixed some problems with the ip address
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
162 | return value; |
5 | 163 | } |
164 | ||
165 | if (colonpos != -1) | |
7
01e4e9ae323a
- fixed some problems with the ip address
Teemu Piippo <crimsondusk64@gmail.com>
parents:
5
diff
changeset
|
166 | value.port = input.mid (colonpos + 1, -1).to_int(); |
5 | 167 | |
168 | return value; | |
169 | } | |
170 | ||
171 | // ----------------------------------------------------------------------------- | |
172 | // | |
173 | STATIC METHOD | |
174 | IPAddress::resolve (String node, bool* ok) -> IPAddress | |
175 | { | |
176 | struct addrinfo hints; | |
177 | struct addrinfo* lookup; | |
178 | memset (&hints, 0, sizeof hints); | |
179 | hints.ai_family = AF_INET; | |
180 | ||
10
3874575d924d
- begin work on rcon sessions
Teemu Piippo <crimsondusk64@gmail.com>
parents:
9
diff
changeset
|
181 | if (getaddrinfo (node, nullptr, &hints, &lookup) != 0) |
5 | 182 | { |
183 | *ok = false; | |
184 | return IPAddress(); | |
185 | } | |
186 | ||
187 | IPAddress result; | |
188 | assert (lookup != nullptr); | |
189 | sockaddr_in* addr = reinterpret_cast<struct sockaddr_in*> (lookup[0].ai_addr); | |
190 | result.host = ntohl (addr->sin_addr.s_addr); | |
191 | result.port = ntohs (addr->sin_port); | |
192 | freeaddrinfo (lookup); | |
193 | return result; | |
194 | } |