blob: e6a02c4a8abba2ee853a8f814705e0864f668f7b [file] [log] [blame]
henrike@webrtc.orgf0488722014-05-13 18:00:26 +00001/*
2 * Copyright 2004 The WebRTC Project Authors. All rights reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#if defined(WEBRTC_POSIX)
12#include <sys/types.h>
13#include <sys/socket.h>
14#include <netinet/in.h>
15#ifdef OPENBSD
16#include <netinet/in_systm.h>
17#endif
18#ifndef __native_client__
19#include <netinet/ip.h>
20#endif
21#include <arpa/inet.h>
22#include <netdb.h>
23#include <unistd.h>
24#endif
25
26#include <stdio.h>
27
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020028#include "rtc_base/byteorder.h"
29#include "rtc_base/checks.h"
30#include "rtc_base/ipaddress.h"
31#include "rtc_base/logging.h"
32#include "rtc_base/nethelpers.h"
33#include "rtc_base/stringutils.h"
Mirko Bonadeie0623852018-02-01 11:17:40 +010034
35#if defined(WEBRTC_WIN)
Mirko Bonadei92ea95e2017-09-15 06:47:31 +020036#include "rtc_base/win32.h"
Mirko Bonadeie0623852018-02-01 11:17:40 +010037#endif // WEBRTC_WIN
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000038
39namespace rtc {
40
41// Prefixes used for categorizing IPv6 addresses.
42static const in6_addr kV4MappedPrefix = {{{0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
43 0xFF, 0xFF, 0}}};
44static const in6_addr k6To4Prefix = {{{0x20, 0x02, 0}}};
45static const in6_addr kTeredoPrefix = {{{0x20, 0x01, 0x00, 0x00}}};
46static const in6_addr kV4CompatibilityPrefix = {{{0}}};
47static const in6_addr k6BonePrefix = {{{0x3f, 0xfe, 0}}};
Daniel Lazarenko2870b0a2018-01-25 10:30:22 +010048static const in6_addr kPrivateNetworkPrefix = {{{0xFD}}};
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000049
Daniel Lazarenko2870b0a2018-01-25 10:30:22 +010050static bool IPIsHelper(const IPAddress& ip,
51 const in6_addr& tomatch, int length);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000052static in_addr ExtractMappedAddress(const in6_addr& addr);
53
Peter Boström0c4e06b2015-10-07 12:23:21 +020054uint32_t IPAddress::v4AddressAsHostOrderInteger() const {
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000055 if (family_ == AF_INET) {
56 return NetworkToHost32(u_.ip4.s_addr);
57 } else {
58 return 0;
59 }
60}
61
Guo-wei Shieh11477022015-08-15 09:28:41 -070062bool IPAddress::IsNil() const {
63 return IPIsUnspec(*this);
64}
65
henrike@webrtc.orgf0488722014-05-13 18:00:26 +000066size_t IPAddress::Size() const {
67 switch (family_) {
68 case AF_INET:
69 return sizeof(in_addr);
70 case AF_INET6:
71 return sizeof(in6_addr);
72 }
73 return 0;
74}
75
76
77bool IPAddress::operator==(const IPAddress &other) const {
78 if (family_ != other.family_) {
79 return false;
80 }
81 if (family_ == AF_INET) {
82 return memcmp(&u_.ip4, &other.u_.ip4, sizeof(u_.ip4)) == 0;
83 }
84 if (family_ == AF_INET6) {
85 return memcmp(&u_.ip6, &other.u_.ip6, sizeof(u_.ip6)) == 0;
86 }
87 return family_ == AF_UNSPEC;
88}
89
90bool IPAddress::operator!=(const IPAddress &other) const {
91 return !((*this) == other);
92}
93
94bool IPAddress::operator >(const IPAddress &other) const {
95 return (*this) != other && !((*this) < other);
96}
97
98bool IPAddress::operator <(const IPAddress &other) const {
99 // IPv4 is 'less than' IPv6
100 if (family_ != other.family_) {
101 if (family_ == AF_UNSPEC) {
102 return true;
103 }
104 if (family_ == AF_INET && other.family_ == AF_INET6) {
105 return true;
106 }
107 return false;
108 }
109 // Comparing addresses of the same family.
110 switch (family_) {
111 case AF_INET: {
112 return NetworkToHost32(u_.ip4.s_addr) <
113 NetworkToHost32(other.u_.ip4.s_addr);
114 }
115 case AF_INET6: {
116 return memcmp(&u_.ip6.s6_addr, &other.u_.ip6.s6_addr, 16) < 0;
117 }
118 }
119 // Catches AF_UNSPEC and invalid addresses.
120 return false;
121}
122
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000123in6_addr IPAddress::ipv6_address() const {
124 return u_.ip6;
125}
126
127in_addr IPAddress::ipv4_address() const {
128 return u_.ip4;
129}
130
131std::string IPAddress::ToString() const {
132 if (family_ != AF_INET && family_ != AF_INET6) {
133 return std::string();
134 }
135 char buf[INET6_ADDRSTRLEN] = {0};
136 const void* src = &u_.ip4;
137 if (family_ == AF_INET6) {
138 src = &u_.ip6;
139 }
140 if (!rtc::inet_ntop(family_, src, buf, sizeof(buf))) {
141 return std::string();
142 }
143 return std::string(buf);
144}
145
146std::string IPAddress::ToSensitiveString() const {
Peter Boströmcdb38e52015-11-26 00:35:49 +0100147#if !defined(NDEBUG)
148 // Return non-stripped in debug.
149 return ToString();
150#else
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000151 switch (family_) {
152 case AF_INET: {
153 std::string address = ToString();
154 size_t find_pos = address.rfind('.');
155 if (find_pos == std::string::npos)
156 return std::string();
157 address.resize(find_pos);
158 address += ".x";
159 return address;
160 }
161 case AF_INET6: {
Sergey Ulanovbeed8282016-01-13 18:14:49 -0800162 std::string result;
163 result.resize(INET6_ADDRSTRLEN);
164 in6_addr addr = ipv6_address();
165 size_t len =
166 rtc::sprintfn(&(result[0]), result.size(), "%x:%x:%x:x:x:x:x:x",
167 (addr.s6_addr[0] << 8) + addr.s6_addr[1],
168 (addr.s6_addr[2] << 8) + addr.s6_addr[3],
169 (addr.s6_addr[4] << 8) + addr.s6_addr[5]);
170 result.resize(len);
171 return result;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000172 }
173 }
174 return std::string();
Peter Boströmcdb38e52015-11-26 00:35:49 +0100175#endif
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000176}
177
178IPAddress IPAddress::Normalized() const {
179 if (family_ != AF_INET6) {
180 return *this;
181 }
182 if (!IPIsV4Mapped(*this)) {
183 return *this;
184 }
185 in_addr addr = ExtractMappedAddress(u_.ip6);
186 return IPAddress(addr);
187}
188
189IPAddress IPAddress::AsIPv6Address() const {
190 if (family_ != AF_INET) {
191 return *this;
192 }
193 in6_addr v6addr = kV4MappedPrefix;
194 ::memcpy(&v6addr.s6_addr[12], &u_.ip4.s_addr, sizeof(u_.ip4.s_addr));
195 return IPAddress(v6addr);
196}
197
guoweis@webrtc.orgfa603982014-09-09 23:42:40 +0000198bool InterfaceAddress::operator==(const InterfaceAddress &other) const {
199 return ipv6_flags_ == other.ipv6_flags() &&
200 static_cast<const IPAddress&>(*this) == other;
201}
202
203bool InterfaceAddress::operator!=(const InterfaceAddress &other) const {
204 return !((*this) == other);
205}
206
207const InterfaceAddress& InterfaceAddress::operator=(
208 const InterfaceAddress& other) {
209 ipv6_flags_ = other.ipv6_flags_;
210 static_cast<IPAddress&>(*this) = other;
211 return *this;
212}
213
Jonas Olsson74395342018-04-03 12:22:07 +0200214std::string InterfaceAddress::ToString() const {
215 std::string result = IPAddress::ToString();
guoweis@webrtc.orgfa603982014-09-09 23:42:40 +0000216
Jonas Olsson74395342018-04-03 12:22:07 +0200217 if (family() == AF_INET6)
218 result += "|flags:0x" + rtc::ToHex(ipv6_flags());
219
220 return result;
guoweis@webrtc.orgfa603982014-09-09 23:42:40 +0000221}
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000222
Daniel Lazarenko2870b0a2018-01-25 10:30:22 +0100223static bool IPIsPrivateNetworkV4(const IPAddress& ip) {
224 uint32_t ip_in_host_order = ip.v4AddressAsHostOrderInteger();
225 return ((ip_in_host_order >> 24) == 10) ||
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000226 ((ip_in_host_order >> 20) == ((172 << 4) | 1)) ||
Daniel Lazarenko2870b0a2018-01-25 10:30:22 +0100227 ((ip_in_host_order >> 16) == ((192 << 8) | 168));
228}
229
230static bool IPIsPrivateNetworkV6(const IPAddress& ip) {
231 return IPIsHelper(ip, kPrivateNetworkPrefix, 8);
232}
233
234bool IPIsPrivateNetwork(const IPAddress& ip) {
235 switch (ip.family()) {
236 case AF_INET: {
237 return IPIsPrivateNetworkV4(ip);
238 }
239 case AF_INET6: {
240 return IPIsPrivateNetworkV6(ip);
241 }
242 }
243 return false;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000244}
245
246in_addr ExtractMappedAddress(const in6_addr& in6) {
247 in_addr ipv4;
248 ::memcpy(&ipv4.s_addr, &in6.s6_addr[12], sizeof(ipv4.s_addr));
249 return ipv4;
250}
251
252bool IPFromAddrInfo(struct addrinfo* info, IPAddress* out) {
253 if (!info || !info->ai_addr) {
254 return false;
255 }
256 if (info->ai_addr->sa_family == AF_INET) {
257 sockaddr_in* addr = reinterpret_cast<sockaddr_in*>(info->ai_addr);
258 *out = IPAddress(addr->sin_addr);
259 return true;
260 } else if (info->ai_addr->sa_family == AF_INET6) {
261 sockaddr_in6* addr = reinterpret_cast<sockaddr_in6*>(info->ai_addr);
262 *out = IPAddress(addr->sin6_addr);
263 return true;
264 }
265 return false;
266}
267
268bool IPFromString(const std::string& str, IPAddress* out) {
269 if (!out) {
270 return false;
271 }
272 in_addr addr;
273 if (rtc::inet_pton(AF_INET, str.c_str(), &addr) == 0) {
274 in6_addr addr6;
275 if (rtc::inet_pton(AF_INET6, str.c_str(), &addr6) == 0) {
276 *out = IPAddress();
277 return false;
278 }
279 *out = IPAddress(addr6);
280 } else {
281 *out = IPAddress(addr);
282 }
283 return true;
284}
285
guoweis@webrtc.orgfa603982014-09-09 23:42:40 +0000286bool IPFromString(const std::string& str, int flags,
287 InterfaceAddress* out) {
288 IPAddress ip;
289 if (!IPFromString(str, &ip)) {
290 return false;
291 }
292
293 *out = InterfaceAddress(ip, flags);
294 return true;
295}
296
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000297bool IPIsAny(const IPAddress& ip) {
298 switch (ip.family()) {
299 case AF_INET:
300 return ip == IPAddress(INADDR_ANY);
301 case AF_INET6:
guoweis@webrtc.org59ae5ff2015-03-01 23:45:16 +0000302 return ip == IPAddress(in6addr_any) || ip == IPAddress(kV4MappedPrefix);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000303 case AF_UNSPEC:
304 return false;
305 }
306 return false;
307}
308
Daniel Lazarenko2870b0a2018-01-25 10:30:22 +0100309static bool IPIsLoopbackV4(const IPAddress& ip) {
310 uint32_t ip_in_host_order = ip.v4AddressAsHostOrderInteger();
311 return ((ip_in_host_order >> 24) == 127);
312}
313
314static bool IPIsLoopbackV6(const IPAddress& ip) {
315 return ip == IPAddress(in6addr_loopback);
316}
317
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000318bool IPIsLoopback(const IPAddress& ip) {
319 switch (ip.family()) {
320 case AF_INET: {
Daniel Lazarenko2870b0a2018-01-25 10:30:22 +0100321 return IPIsLoopbackV4(ip);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000322 }
323 case AF_INET6: {
Daniel Lazarenko2870b0a2018-01-25 10:30:22 +0100324 return IPIsLoopbackV6(ip);
Yuwei Huangb181f712018-01-22 17:01:28 -0800325 }
326 }
327 return false;
328}
329
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000330bool IPIsPrivate(const IPAddress& ip) {
Daniel Lazarenko2870b0a2018-01-25 10:30:22 +0100331 return IPIsLinkLocal(ip) || IPIsLoopback(ip) || IPIsPrivateNetwork(ip);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000332}
333
334bool IPIsUnspec(const IPAddress& ip) {
335 return ip.family() == AF_UNSPEC;
336}
337
338size_t HashIP(const IPAddress& ip) {
339 switch (ip.family()) {
340 case AF_INET: {
341 return ip.ipv4_address().s_addr;
342 }
343 case AF_INET6: {
344 in6_addr v6addr = ip.ipv6_address();
Peter Boström0c4e06b2015-10-07 12:23:21 +0200345 const uint32_t* v6_as_ints =
346 reinterpret_cast<const uint32_t*>(&v6addr.s6_addr);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000347 return v6_as_ints[0] ^ v6_as_ints[1] ^ v6_as_ints[2] ^ v6_as_ints[3];
348 }
349 }
350 return 0;
351}
352
353IPAddress TruncateIP(const IPAddress& ip, int length) {
354 if (length < 0) {
355 return IPAddress();
356 }
357 if (ip.family() == AF_INET) {
358 if (length > 31) {
359 return ip;
360 }
361 if (length == 0) {
362 return IPAddress(INADDR_ANY);
363 }
364 int mask = (0xFFFFFFFF << (32 - length));
Peter Boström0c4e06b2015-10-07 12:23:21 +0200365 uint32_t host_order_ip = NetworkToHost32(ip.ipv4_address().s_addr);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000366 in_addr masked;
367 masked.s_addr = HostToNetwork32(host_order_ip & mask);
368 return IPAddress(masked);
369 } else if (ip.family() == AF_INET6) {
370 if (length > 127) {
371 return ip;
372 }
373 if (length == 0) {
374 return IPAddress(in6addr_any);
375 }
376 in6_addr v6addr = ip.ipv6_address();
377 int position = length / 32;
378 int inner_length = 32 - (length - (position * 32));
379 // Note: 64bit mask constant needed to allow possible 32-bit left shift.
Peter Boström0c4e06b2015-10-07 12:23:21 +0200380 uint32_t inner_mask = 0xFFFFFFFFLL << inner_length;
381 uint32_t* v6_as_ints = reinterpret_cast<uint32_t*>(&v6addr.s6_addr);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000382 for (int i = 0; i < 4; ++i) {
383 if (i == position) {
Peter Boström0c4e06b2015-10-07 12:23:21 +0200384 uint32_t host_order_inner = NetworkToHost32(v6_as_ints[i]);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000385 v6_as_ints[i] = HostToNetwork32(host_order_inner & inner_mask);
386 } else if (i > position) {
387 v6_as_ints[i] = 0;
388 }
389 }
390 return IPAddress(v6addr);
391 }
392 return IPAddress();
393}
394
395int CountIPMaskBits(IPAddress mask) {
Peter Boström0c4e06b2015-10-07 12:23:21 +0200396 uint32_t word_to_count = 0;
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000397 int bits = 0;
398 switch (mask.family()) {
399 case AF_INET: {
400 word_to_count = NetworkToHost32(mask.ipv4_address().s_addr);
401 break;
402 }
403 case AF_INET6: {
404 in6_addr v6addr = mask.ipv6_address();
Peter Boström0c4e06b2015-10-07 12:23:21 +0200405 const uint32_t* v6_as_ints =
406 reinterpret_cast<const uint32_t*>(&v6addr.s6_addr);
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000407 int i = 0;
408 for (; i < 4; ++i) {
409 if (v6_as_ints[i] != 0xFFFFFFFF) {
410 break;
411 }
412 }
413 if (i < 4) {
414 word_to_count = NetworkToHost32(v6_as_ints[i]);
415 }
416 bits = (i * 32);
417 break;
418 }
419 default: {
420 return 0;
421 }
422 }
423 if (word_to_count == 0) {
424 return bits;
425 }
426
427 // Public domain bit-twiddling hack from:
428 // http://graphics.stanford.edu/~seander/bithacks.html
429 // Counts the trailing 0s in the word.
430 unsigned int zeroes = 32;
tereliusd802b5b2016-03-01 11:07:34 -0800431 // This could also be written word_to_count &= -word_to_count, but
432 // MSVC emits warning C4146 when negating an unsigned number.
433 word_to_count &= ~word_to_count + 1; // Isolate lowest set bit.
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000434 if (word_to_count) zeroes--;
435 if (word_to_count & 0x0000FFFF) zeroes -= 16;
436 if (word_to_count & 0x00FF00FF) zeroes -= 8;
437 if (word_to_count & 0x0F0F0F0F) zeroes -= 4;
438 if (word_to_count & 0x33333333) zeroes -= 2;
439 if (word_to_count & 0x55555555) zeroes -= 1;
440
441 return bits + (32 - zeroes);
442}
443
444bool IPIsHelper(const IPAddress& ip, const in6_addr& tomatch, int length) {
445 // Helper method for checking IP prefix matches (but only on whole byte
446 // lengths). Length is in bits.
447 in6_addr addr = ip.ipv6_address();
448 return ::memcmp(&addr, &tomatch, (length >> 3)) == 0;
449}
450
451bool IPIs6Bone(const IPAddress& ip) {
452 return IPIsHelper(ip, k6BonePrefix, 16);
453}
454
455bool IPIs6To4(const IPAddress& ip) {
456 return IPIsHelper(ip, k6To4Prefix, 16);
457}
458
Daniel Lazarenko2870b0a2018-01-25 10:30:22 +0100459static bool IPIsLinkLocalV4(const IPAddress& ip) {
460 uint32_t ip_in_host_order = ip.v4AddressAsHostOrderInteger();
461 return ((ip_in_host_order >> 16) == ((169 << 8) | 254));
462}
463
464static bool IPIsLinkLocalV6(const IPAddress& ip) {
465 // Can't use the helper because the prefix is 10 bits.
466 in6_addr addr = ip.ipv6_address();
467 return (addr.s6_addr[0] == 0xFE) && ((addr.s6_addr[1] & 0xC0) == 0x80);
468}
469
470bool IPIsLinkLocal(const IPAddress& ip) {
471 switch (ip.family()) {
472 case AF_INET: {
473 return IPIsLinkLocalV4(ip);
474 }
475 case AF_INET6: {
476 return IPIsLinkLocalV6(ip);
477 }
478 }
479 return false;
480}
481
guoweis@webrtc.orgb91d0f52015-03-17 14:43:20 +0000482// According to http://www.ietf.org/rfc/rfc2373.txt, Appendix A, page 19. An
483// address which contains MAC will have its 11th and 12th bytes as FF:FE as well
484// as the U/L bit as 1.
485bool IPIsMacBased(const IPAddress& ip) {
486 in6_addr addr = ip.ipv6_address();
487 return ((addr.s6_addr[8] & 0x02) && addr.s6_addr[11] == 0xFF &&
488 addr.s6_addr[12] == 0xFE);
guoweis@webrtc.orgbbce5ef2015-03-05 04:38:29 +0000489}
490
henrike@webrtc.orgf0488722014-05-13 18:00:26 +0000491bool IPIsSiteLocal(const IPAddress& ip) {
492 // Can't use the helper because the prefix is 10 bits.
493 in6_addr addr = ip.ipv6_address();
494 return addr.s6_addr[0] == 0xFE && (addr.s6_addr[1] & 0xC0) == 0xC0;
495}
496
497bool IPIsULA(const IPAddress& ip) {
498 // Can't use the helper because the prefix is 7 bits.
499 in6_addr addr = ip.ipv6_address();
500 return (addr.s6_addr[0] & 0xFE) == 0xFC;
501}
502
503bool IPIsTeredo(const IPAddress& ip) {
504 return IPIsHelper(ip, kTeredoPrefix, 32);
505}
506
507bool IPIsV4Compatibility(const IPAddress& ip) {
508 return IPIsHelper(ip, kV4CompatibilityPrefix, 96);
509}
510
511bool IPIsV4Mapped(const IPAddress& ip) {
512 return IPIsHelper(ip, kV4MappedPrefix, 96);
513}
514
515int IPAddressPrecedence(const IPAddress& ip) {
516 // Precedence values from RFC 3484-bis. Prefers native v4 over 6to4/Teredo.
517 if (ip.family() == AF_INET) {
518 return 30;
519 } else if (ip.family() == AF_INET6) {
520 if (IPIsLoopback(ip)) {
521 return 60;
522 } else if (IPIsULA(ip)) {
523 return 50;
524 } else if (IPIsV4Mapped(ip)) {
525 return 30;
526 } else if (IPIs6To4(ip)) {
527 return 20;
528 } else if (IPIsTeredo(ip)) {
529 return 10;
530 } else if (IPIsV4Compatibility(ip) || IPIsSiteLocal(ip) || IPIs6Bone(ip)) {
531 return 1;
532 } else {
533 // A 'normal' IPv6 address.
534 return 40;
535 }
536 }
537 return 0;
538}
539
Guo-wei Shiehfe3bc9d2015-08-20 08:48:20 -0700540IPAddress GetLoopbackIP(int family) {
541 if (family == AF_INET) {
542 return rtc::IPAddress(INADDR_LOOPBACK);
543 }
544 if (family == AF_INET6) {
545 return rtc::IPAddress(in6addr_loopback);
546 }
547 return rtc::IPAddress();
548}
Guo-wei Shieh9af97f82015-11-10 14:47:39 -0800549
550IPAddress GetAnyIP(int family) {
551 if (family == AF_INET) {
552 return rtc::IPAddress(INADDR_ANY);
553 }
554 if (family == AF_INET6) {
555 return rtc::IPAddress(in6addr_any);
556 }
557 return rtc::IPAddress();
558}
559
tereliusd802b5b2016-03-01 11:07:34 -0800560} // namespace rtc