henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2011 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 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #ifndef RTC_BASE_IPADDRESS_H_ |
| 12 | #define RTC_BASE_IPADDRESS_H_ |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 13 | |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 14 | #if defined(WEBRTC_POSIX) |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 15 | #include <arpa/inet.h> |
| 16 | #include <netdb.h> |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame^] | 17 | #include <netinet/in.h> |
| 18 | #include <sys/socket.h> |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 19 | #endif |
| 20 | #if defined(WEBRTC_WIN) |
| 21 | #include <winsock2.h> |
| 22 | #include <ws2tcpip.h> |
| 23 | #endif |
| 24 | #include <string.h> |
| 25 | #include <string> |
| 26 | #include <vector> |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 27 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 28 | #include "rtc_base/byteorder.h" |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 29 | #if defined(WEBRTC_WIN) |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 30 | #include "rtc_base/win32.h" |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 31 | #endif |
| 32 | |
| 33 | namespace rtc { |
| 34 | |
| 35 | enum IPv6AddressFlag { |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame^] | 36 | IPV6_ADDRESS_FLAG_NONE = 0x00, |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 37 | |
| 38 | // Temporary address is dynamic by nature and will not carry MAC |
| 39 | // address. |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame^] | 40 | IPV6_ADDRESS_FLAG_TEMPORARY = 1 << 0, |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 41 | |
| 42 | // Temporary address could become deprecated once the preferred |
| 43 | // lifetime is reached. It is still valid but just shouldn't be used |
| 44 | // to create new connection. |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame^] | 45 | IPV6_ADDRESS_FLAG_DEPRECATED = 1 << 1, |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 46 | }; |
| 47 | |
| 48 | // Version-agnostic IP address class, wraps a union of in_addr and in6_addr. |
| 49 | class IPAddress { |
| 50 | public: |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame^] | 51 | IPAddress() : family_(AF_UNSPEC) { ::memset(&u_, 0, sizeof(u_)); } |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 52 | |
| 53 | explicit IPAddress(const in_addr& ip4) : family_(AF_INET) { |
| 54 | memset(&u_, 0, sizeof(u_)); |
| 55 | u_.ip4 = ip4; |
| 56 | } |
| 57 | |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame^] | 58 | explicit IPAddress(const in6_addr& ip6) : family_(AF_INET6) { u_.ip6 = ip6; } |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 59 | |
| 60 | explicit IPAddress(uint32_t ip_in_host_byte_order) : family_(AF_INET) { |
| 61 | memset(&u_, 0, sizeof(u_)); |
| 62 | u_.ip4.s_addr = HostToNetwork32(ip_in_host_byte_order); |
| 63 | } |
| 64 | |
| 65 | IPAddress(const IPAddress& other) : family_(other.family_) { |
| 66 | ::memcpy(&u_, &other.u_, sizeof(u_)); |
| 67 | } |
| 68 | |
| 69 | virtual ~IPAddress() {} |
| 70 | |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame^] | 71 | const IPAddress& operator=(const IPAddress& other) { |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 72 | family_ = other.family_; |
| 73 | ::memcpy(&u_, &other.u_, sizeof(u_)); |
| 74 | return *this; |
| 75 | } |
| 76 | |
| 77 | bool operator==(const IPAddress& other) const; |
| 78 | bool operator!=(const IPAddress& other) const; |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame^] | 79 | bool operator<(const IPAddress& other) const; |
| 80 | bool operator>(const IPAddress& other) const; |
Jonas Olsson | 3e18c82 | 2018-04-18 10:11:07 +0200 | [diff] [blame] | 81 | |
| 82 | #ifdef UNIT_TEST |
| 83 | inline std::ostream& operator<<( // no-presubmit-check TODO(webrtc:8982) |
| 84 | std::ostream& os) { // no-presubmit-check TODO(webrtc:8982) |
| 85 | return os << ToString(); |
| 86 | } |
| 87 | #endif // UNIT_TEST |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 88 | |
| 89 | int family() const { return family_; } |
| 90 | in_addr ipv4_address() const; |
| 91 | in6_addr ipv6_address() const; |
| 92 | |
| 93 | // Returns the number of bytes needed to store the raw address. |
| 94 | size_t Size() const; |
| 95 | |
| 96 | // Wraps inet_ntop. |
| 97 | std::string ToString() const; |
| 98 | |
| 99 | // Same as ToString but anonymizes it by hiding the last part. |
| 100 | std::string ToSensitiveString() const; |
| 101 | |
| 102 | // Returns an unmapped address from a possibly-mapped address. |
| 103 | // Returns the same address if this isn't a mapped address. |
| 104 | IPAddress Normalized() const; |
| 105 | |
| 106 | // Returns this address as an IPv6 address. |
| 107 | // Maps v4 addresses (as ::ffff:a.b.c.d), returns v6 addresses unchanged. |
| 108 | IPAddress AsIPv6Address() const; |
| 109 | |
| 110 | // For socketaddress' benefit. Returns the IP in host byte order. |
| 111 | uint32_t v4AddressAsHostOrderInteger() const; |
| 112 | |
| 113 | // Whether this is an unspecified IP address. |
| 114 | bool IsNil() const; |
| 115 | |
| 116 | private: |
| 117 | int family_; |
| 118 | union { |
| 119 | in_addr ip4; |
| 120 | in6_addr ip6; |
| 121 | } u_; |
| 122 | }; |
| 123 | |
| 124 | // IP class which could represent IPv6 address flags which is only |
| 125 | // meaningful in IPv6 case. |
| 126 | class InterfaceAddress : public IPAddress { |
| 127 | public: |
| 128 | InterfaceAddress() : ipv6_flags_(IPV6_ADDRESS_FLAG_NONE) {} |
| 129 | |
Taylor Brandstetter | 01cb5f2 | 2018-03-07 15:49:32 -0800 | [diff] [blame] | 130 | explicit InterfaceAddress(IPAddress ip) |
| 131 | : IPAddress(ip), ipv6_flags_(IPV6_ADDRESS_FLAG_NONE) {} |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 132 | |
| 133 | InterfaceAddress(IPAddress addr, int ipv6_flags) |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame^] | 134 | : IPAddress(addr), ipv6_flags_(ipv6_flags) {} |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 135 | |
| 136 | InterfaceAddress(const in6_addr& ip6, int ipv6_flags) |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame^] | 137 | : IPAddress(ip6), ipv6_flags_(ipv6_flags) {} |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 138 | |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame^] | 139 | const InterfaceAddress& operator=(const InterfaceAddress& other); |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 140 | |
| 141 | bool operator==(const InterfaceAddress& other) const; |
| 142 | bool operator!=(const InterfaceAddress& other) const; |
| 143 | |
| 144 | int ipv6_flags() const { return ipv6_flags_; } |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 145 | |
Jonas Olsson | 7439534 | 2018-04-03 12:22:07 +0200 | [diff] [blame] | 146 | std::string ToString() const; |
| 147 | |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 148 | private: |
| 149 | int ipv6_flags_; |
| 150 | }; |
| 151 | |
| 152 | bool IPFromAddrInfo(struct addrinfo* info, IPAddress* out); |
| 153 | bool IPFromString(const std::string& str, IPAddress* out); |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame^] | 154 | bool IPFromString(const std::string& str, int flags, InterfaceAddress* out); |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 155 | bool IPIsAny(const IPAddress& ip); |
| 156 | bool IPIsLoopback(const IPAddress& ip); |
Yuwei Huang | b181f71 | 2018-01-22 17:01:28 -0800 | [diff] [blame] | 157 | bool IPIsLinkLocal(const IPAddress& ip); |
Daniel Lazarenko | 2870b0a | 2018-01-25 10:30:22 +0100 | [diff] [blame] | 158 | // Identify a private network address like "192.168.111.222" |
| 159 | // (see https://en.wikipedia.org/wiki/Private_network ) |
| 160 | bool IPIsPrivateNetwork(const IPAddress& ip); |
| 161 | // Identify if an IP is "private", that is a loopback |
| 162 | // or an address belonging to a link-local or a private network. |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 163 | bool IPIsPrivate(const IPAddress& ip); |
| 164 | bool IPIsUnspec(const IPAddress& ip); |
| 165 | size_t HashIP(const IPAddress& ip); |
| 166 | |
| 167 | // These are only really applicable for IPv6 addresses. |
| 168 | bool IPIs6Bone(const IPAddress& ip); |
| 169 | bool IPIs6To4(const IPAddress& ip); |
Henrik Kjellander | ec78f1c | 2017-06-29 07:52:50 +0200 | [diff] [blame] | 170 | bool IPIsMacBased(const IPAddress& ip); |
| 171 | bool IPIsSiteLocal(const IPAddress& ip); |
| 172 | bool IPIsTeredo(const IPAddress& ip); |
| 173 | bool IPIsULA(const IPAddress& ip); |
| 174 | bool IPIsV4Compatibility(const IPAddress& ip); |
| 175 | bool IPIsV4Mapped(const IPAddress& ip); |
| 176 | |
| 177 | // Returns the precedence value for this IP as given in RFC3484. |
| 178 | int IPAddressPrecedence(const IPAddress& ip); |
| 179 | |
| 180 | // Returns 'ip' truncated to be 'length' bits long. |
| 181 | IPAddress TruncateIP(const IPAddress& ip, int length); |
| 182 | |
| 183 | IPAddress GetLoopbackIP(int family); |
| 184 | IPAddress GetAnyIP(int family); |
| 185 | |
| 186 | // Returns the number of contiguously set bits, counting from the MSB in network |
| 187 | // byte order, in this IPAddress. Bits after the first 0 encountered are not |
| 188 | // counted. |
| 189 | int CountIPMaskBits(IPAddress mask); |
| 190 | |
| 191 | } // namespace rtc |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 +0000 | [diff] [blame] | 192 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 193 | #endif // RTC_BASE_IPADDRESS_H_ |