forked from ahupowerdns/metronome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iputils.hh
410 lines (354 loc) · 10.7 KB
/
iputils.hh
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
/*
PowerDNS Versatile Database Driven Nameserver
Copyright (C) 2002 - 2011 PowerDNS.COM BV
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2
as published by the Free Software Foundation
Additionally, the license of this program contains a special
exception which allows to distribute the program in binary form when
it is linked against OpenSSL.
This program 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 program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PDNS_IPUTILSHH
#define PDNS_IPUTILSHH
#include "metromisc.hh"
#include <string>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <iostream>
#include <stdio.h>
#include <functional>
#include <sys/socket.h>
#include <netdb.h>
#include <vector>
#include <stdexcept>
#include <boost/lexical_cast.hpp>
#include <boost/format.hpp>
#include <tuple>
#include <sstream>
typedef std::runtime_error PDNSException;
using std::string;
using std::pair;
using std::vector;
using std::tie;
using std::tuple;
using boost::lexical_cast;
int makeIPv6sockaddr(const std::string& addr, struct sockaddr_in6* ret);
int makeIPv4sockaddr(const std::string& str, struct sockaddr_in* ret);
pair<string, string> splitField(const string& inp, char sepa);
union ComboAddress {
struct sockaddr_in sin4;
struct sockaddr_in6 sin6;
bool operator==(const ComboAddress& rhs) const
{
if(tie(sin4.sin_family, sin4.sin_port) != tie(rhs.sin4.sin_family, rhs.sin4.sin_port))
return false;
if(sin4.sin_family == AF_INET)
return sin4.sin_addr.s_addr == rhs.sin4.sin_addr.s_addr;
else
return memcmp(&sin6.sin6_addr.s6_addr, &rhs.sin6.sin6_addr.s6_addr, 16)==0;
}
bool operator<(const ComboAddress& rhs) const
{
if(tie(sin4.sin_family, sin4.sin_port) < tie(rhs.sin4.sin_family, rhs.sin4.sin_port))
return true;
if(tie(sin4.sin_family, sin4.sin_port) > tie(rhs.sin4.sin_family, rhs.sin4.sin_port))
return false;
if(sin4.sin_family == AF_INET)
return sin4.sin_addr.s_addr < rhs.sin4.sin_addr.s_addr;
else
return memcmp(&sin6.sin6_addr.s6_addr, &rhs.sin6.sin6_addr.s6_addr, 16) < 0;
}
bool operator>(const ComboAddress& rhs) const
{
if(tie(sin4.sin_family, sin4.sin_port) > tie(rhs.sin4.sin_family, rhs.sin4.sin_port))
return true;
if(tie(sin4.sin_family, sin4.sin_port) < tie(rhs.sin4.sin_family, rhs.sin4.sin_port))
return false;
if(sin4.sin_family == AF_INET)
return sin4.sin_addr.s_addr > rhs.sin4.sin_addr.s_addr;
else
return memcmp(&sin6.sin6_addr.s6_addr, &rhs.sin6.sin6_addr.s6_addr, 16) > 0;
}
struct addressOnlyLessThan: public std::binary_function<string, string, bool>
{
bool operator()(const ComboAddress& a, const ComboAddress& b) const
{
if(a.sin4.sin_family < b.sin4.sin_family)
return true;
if(a.sin4.sin_family > b.sin4.sin_family)
return false;
if(a.sin4.sin_family == AF_INET)
return a.sin4.sin_addr.s_addr < b.sin4.sin_addr.s_addr;
else
return memcmp(&a.sin6.sin6_addr.s6_addr, &b.sin6.sin6_addr.s6_addr, 16) < 0;
}
};
socklen_t getSocklen() const
{
if(sin4.sin_family == AF_INET)
return sizeof(sin4);
else
return sizeof(sin6);
}
ComboAddress()
{
sin4.sin_family=AF_INET;
sin4.sin_addr.s_addr=0;
sin4.sin_port=0;
}
// 'port' sets a default value in case 'str' does not set a port
explicit ComboAddress(const string& str, uint16_t port=0)
{
memset(&sin6, 0, sizeof(sin6));
sin4.sin_family = AF_INET;
sin4.sin_port = 0;
if(makeIPv4sockaddr(str, &sin4)) {
sin6.sin6_family = AF_INET6;
if(makeIPv6sockaddr(str, &sin6) < 0)
throw PDNSException("Unable to convert presentation address '"+ str +"'");
}
if(!sin4.sin_port) // 'str' overrides port!
sin4.sin_port=htons(port);
}
bool isMappedIPv4() const
{
if(sin4.sin_family!=AF_INET6)
return false;
int n=0;
const unsigned char*ptr = (unsigned char*) &sin6.sin6_addr.s6_addr;
for(n=0; n < 10; ++n)
if(ptr[n])
return false;
for(; n < 12; ++n)
if(ptr[n]!=0xff)
return false;
return true;
}
ComboAddress mapToIPv4() const
{
if(!isMappedIPv4())
throw PDNSException("ComboAddress can't map non-mapped IPv6 address back to IPv4");
ComboAddress ret;
ret.sin4.sin_family=AF_INET;
ret.sin4.sin_port=sin4.sin_port;
const unsigned char*ptr = (unsigned char*) &sin6.sin6_addr.s6_addr;
ptr+=12;
memcpy(&ret.sin4.sin_addr.s_addr, ptr, 4);
return ret;
}
string toString() const
{
char host[1024];
getnameinfo((struct sockaddr*) this, getSocklen(), host, sizeof(host),0, 0, NI_NUMERICHOST);
return host;
}
string toStringWithPort() const
{
if(sin4.sin_family==AF_INET)
return toString() + ":" + lexical_cast<string>(ntohs(sin4.sin_port));
else
return "["+toString() + "]:" + lexical_cast<string>(ntohs(sin4.sin_port));
}
};
/** This exception is thrown by the Netmask class and by extension by the NetmaskGroup class */
class NetmaskException: public PDNSException
{
public:
NetmaskException(const string &a) : PDNSException(a) {}
};
inline ComboAddress makeComboAddress(const string& str)
{
ComboAddress address;
address.sin4.sin_family=AF_INET;
if(inet_pton(AF_INET, str.c_str(), &address.sin4.sin_addr) <= 0) {
address.sin4.sin_family=AF_INET6;
if(makeIPv6sockaddr(str, &address.sin6) < 0)
throw NetmaskException("Unable to convert '"+str+"' to a netmask");
}
return address;
}
/** This class represents a netmask and can be queried to see if a certain
IP address is matched by this mask */
class Netmask
{
public:
Netmask()
{
d_network.sin4.sin_family=0; // disable this doing anything useful
}
Netmask(const ComboAddress& network, uint8_t bits=0xff)
{
d_network = network;
if(bits == 0xff)
bits = (network.sin4.sin_family == AF_INET) ? 32 : 128;
d_bits = bits;
if(d_bits<32)
d_mask=~(0xFFFFFFFF>>d_bits);
else
d_mask=0xFFFFFFFF; // not actually used for IPv6
}
//! Constructor supplies the mask, which cannot be changed
Netmask(const string &mask)
{
pair<string,string> split=splitField(mask,'/');
d_network=makeComboAddress(split.first);
if(!split.second.empty()) {
d_bits = atoi(split.second.c_str());
if(d_bits<32)
d_mask=~(0xFFFFFFFF>>d_bits);
else
d_mask=0xFFFFFFFF;
}
else if(d_network.sin4.sin_family==AF_INET) {
d_bits = 32;
d_mask = 0xFFFFFFFF;
}
else {
d_bits=128;
d_mask=0; // silence silly warning - d_mask is unused for IPv6
}
}
bool match(const ComboAddress& ip) const
{
return match(&ip);
}
//! If this IP address in socket address matches
bool match(const ComboAddress *ip) const
{
if(d_network.sin4.sin_family != ip->sin4.sin_family) {
return false;
}
if(d_network.sin4.sin_family == AF_INET) {
return match4(htonl((unsigned int)ip->sin4.sin_addr.s_addr));
}
if(d_network.sin6.sin6_family == AF_INET6) {
uint8_t bytes=d_bits/8, n;
const uint8_t *us=(const uint8_t*) &d_network.sin6.sin6_addr.s6_addr;
const uint8_t *them=(const uint8_t*) &ip->sin6.sin6_addr.s6_addr;
for(n=0; n < bytes; ++n) {
if(us[n]!=them[n]) {
return false;
}
}
// still here, now match remaining bits
uint8_t bits= d_bits % 8;
uint8_t mask= ~(0xFF>>bits);
return((us[n] & mask) == (them[n] & mask));
}
return false;
}
//! If this ASCII IP address matches
bool match(const string &ip) const
{
ComboAddress address=makeComboAddress(ip);
return match(&address);
}
//! If this IP address in native format matches
bool match4(uint32_t ip) const
{
return (ip & d_mask) == (ntohl(d_network.sin4.sin_addr.s_addr) & d_mask);
}
string toString() const
{
return d_network.toString()+"/"+lexical_cast<string>((unsigned int)d_bits);
}
string toStringNoMask() const
{
return d_network.toString();
}
const ComboAddress& getNetwork() const
{
return d_network;
}
int getBits() const
{
return d_bits;
}
private:
ComboAddress d_network;
uint32_t d_mask;
uint8_t d_bits;
};
/** This class represents a group of supplemental Netmask classes. An IP address matchs
if it is matched by zero or more of the Netmask classes within.
*/
class NetmaskGroup
{
public:
//! If this IP address is matched by any of the classes within
bool match(const ComboAddress *ip)
{
for(container_t::const_iterator i=d_masks.begin();i!=d_masks.end();++i)
if(i->match(ip) || (ip->isMappedIPv4() && i->match(ip->mapToIPv4()) ))
return true;
return false;
}
bool match(const ComboAddress& ip)
{
return match(&ip);
}
//! Add this Netmask to the list of possible matches
void addMask(const string &ip)
{
d_masks.push_back(Netmask(ip));
}
void clear()
{
d_masks.clear();
}
bool empty()
{
return d_masks.empty();
}
unsigned int size()
{
return (unsigned int)d_masks.size();
}
string toString() const
{
std::ostringstream str;
for(container_t::const_iterator iter = d_masks.begin(); iter != d_masks.end(); ++iter) {
if(iter != d_masks.begin())
str <<", ";
str<<iter->toString();
}
return str.str();
}
void toStringVector(vector<string>* vec) const
{
for(container_t::const_iterator iter = d_masks.begin(); iter != d_masks.end(); ++iter) {
vec->push_back(iter->toString());
}
}
void toMasks(const string &ips)
{
vector<string> parts;
stringtok(parts, ips, ", \t");
for (vector<string>::const_iterator iter = parts.begin(); iter != parts.end(); ++iter)
addMask(*iter);
}
private:
typedef vector<Netmask> container_t;
container_t d_masks;
};
int SSocket(int family, int type, int flags);
int SConnect(int sockfd, const ComboAddress& remote);
int SBind(int sockfd, const ComboAddress& local);
int SAccept(int sockfd, ComboAddress& remote);
int SListen(int sockfd, int limit);
int SSetsockopt(int sockfd, int level, int opname, int value);
int writen(int fd, const void *buf, size_t count);
inline int writen(int fd, const std::string& str)
{
return writen(fd, str.c_str(), str.size());
}
bool sockGetLine(int sock, string* ret);
#endif