henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 1 | /* |
| 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 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 11 | #include "rtc_base/socket_address.h" |
Jonas Olsson | a4d8737 | 2019-07-05 17:08:33 | [diff] [blame] | 12 | |
Ali Tofigh | 7fa9057 | 2022-03-17 14:47:49 | [diff] [blame] | 13 | #include "absl/strings/string_view.h" |
Karl Wiberg | e40468b | 2017-11-22 09:42:26 | [diff] [blame] | 14 | #include "rtc_base/numerics/safe_conversions.h" |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 15 | |
| 16 | #if defined(WEBRTC_POSIX) |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 17 | #include <netinet/in.h> |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 18 | #include <sys/socket.h> |
| 19 | #include <sys/types.h> |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 20 | #if defined(OPENBSD) |
| 21 | #include <netinet/in_systm.h> |
| 22 | #endif |
| 23 | #if !defined(__native_client__) |
| 24 | #include <netinet/ip.h> |
| 25 | #endif |
| 26 | #include <arpa/inet.h> |
| 27 | #include <netdb.h> |
| 28 | #include <unistd.h> |
| 29 | #endif |
| 30 | |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 31 | #include "rtc_base/byte_order.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 32 | #include "rtc_base/checks.h" |
| 33 | #include "rtc_base/logging.h" |
Steve Anton | 10542f2 | 2019-01-11 17:11:00 | [diff] [blame] | 34 | #include "rtc_base/net_helpers.h" |
Jonas Olsson | abbe841 | 2018-04-03 11:40:05 | [diff] [blame] | 35 | #include "rtc_base/strings/string_builder.h" |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 36 | |
| 37 | #if defined(WEBRTC_WIN) |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 38 | #include "rtc_base/win32.h" |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 39 | #endif |
| 40 | |
| 41 | namespace rtc { |
| 42 | |
| 43 | SocketAddress::SocketAddress() { |
| 44 | Clear(); |
| 45 | } |
| 46 | |
Ali Tofigh | 7fa9057 | 2022-03-17 14:47:49 | [diff] [blame] | 47 | SocketAddress::SocketAddress(absl::string_view hostname, int port) { |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 48 | SetIP(hostname); |
| 49 | SetPort(port); |
| 50 | } |
| 51 | |
Peter Boström | 0c4e06b | 2015-10-07 10:23:21 | [diff] [blame] | 52 | SocketAddress::SocketAddress(uint32_t ip_as_host_order_integer, int port) { |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 53 | SetIP(IPAddress(ip_as_host_order_integer)); |
| 54 | SetPort(port); |
| 55 | } |
| 56 | |
| 57 | SocketAddress::SocketAddress(const IPAddress& ip, int port) { |
| 58 | SetIP(ip); |
| 59 | SetPort(port); |
| 60 | } |
| 61 | |
| 62 | SocketAddress::SocketAddress(const SocketAddress& addr) { |
| 63 | this->operator=(addr); |
| 64 | } |
| 65 | |
| 66 | void SocketAddress::Clear() { |
| 67 | hostname_.clear(); |
| 68 | literal_ = false; |
| 69 | ip_ = IPAddress(); |
| 70 | port_ = 0; |
| 71 | scope_id_ = 0; |
| 72 | } |
| 73 | |
| 74 | bool SocketAddress::IsNil() const { |
| 75 | return hostname_.empty() && IPIsUnspec(ip_) && 0 == port_; |
| 76 | } |
| 77 | |
| 78 | bool SocketAddress::IsComplete() const { |
| 79 | return (!IPIsAny(ip_)) && (0 != port_); |
| 80 | } |
| 81 | |
| 82 | SocketAddress& SocketAddress::operator=(const SocketAddress& addr) { |
| 83 | hostname_ = addr.hostname_; |
| 84 | ip_ = addr.ip_; |
| 85 | port_ = addr.port_; |
| 86 | literal_ = addr.literal_; |
| 87 | scope_id_ = addr.scope_id_; |
| 88 | return *this; |
| 89 | } |
| 90 | |
Peter Boström | 0c4e06b | 2015-10-07 10:23:21 | [diff] [blame] | 91 | void SocketAddress::SetIP(uint32_t ip_as_host_order_integer) { |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 92 | hostname_.clear(); |
| 93 | literal_ = false; |
| 94 | ip_ = IPAddress(ip_as_host_order_integer); |
| 95 | scope_id_ = 0; |
| 96 | } |
| 97 | |
| 98 | void SocketAddress::SetIP(const IPAddress& ip) { |
| 99 | hostname_.clear(); |
| 100 | literal_ = false; |
| 101 | ip_ = ip; |
| 102 | scope_id_ = 0; |
| 103 | } |
| 104 | |
Ali Tofigh | 7fa9057 | 2022-03-17 14:47:49 | [diff] [blame] | 105 | void SocketAddress::SetIP(absl::string_view hostname) { |
| 106 | hostname_ = std::string(hostname); |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 107 | literal_ = IPFromString(hostname, &ip_); |
| 108 | if (!literal_) { |
| 109 | ip_ = IPAddress(); |
| 110 | } |
| 111 | scope_id_ = 0; |
| 112 | } |
| 113 | |
Peter Boström | 0c4e06b | 2015-10-07 10:23:21 | [diff] [blame] | 114 | void SocketAddress::SetResolvedIP(uint32_t ip_as_host_order_integer) { |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 115 | ip_ = IPAddress(ip_as_host_order_integer); |
| 116 | scope_id_ = 0; |
| 117 | } |
| 118 | |
| 119 | void SocketAddress::SetResolvedIP(const IPAddress& ip) { |
| 120 | ip_ = ip; |
| 121 | scope_id_ = 0; |
| 122 | } |
| 123 | |
| 124 | void SocketAddress::SetPort(int port) { |
kwiberg | ee89e78 | 2017-08-10 00:22:01 | [diff] [blame] | 125 | port_ = rtc::dchecked_cast<uint16_t>(port); |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 126 | } |
| 127 | |
Peter Boström | 0c4e06b | 2015-10-07 10:23:21 | [diff] [blame] | 128 | uint32_t SocketAddress::ip() const { |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 129 | return ip_.v4AddressAsHostOrderInteger(); |
| 130 | } |
| 131 | |
| 132 | const IPAddress& SocketAddress::ipaddr() const { |
| 133 | return ip_; |
| 134 | } |
| 135 | |
Peter Boström | 0c4e06b | 2015-10-07 10:23:21 | [diff] [blame] | 136 | uint16_t SocketAddress::port() const { |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 137 | return port_; |
| 138 | } |
| 139 | |
| 140 | std::string SocketAddress::HostAsURIString() const { |
| 141 | // If the hostname was a literal IP string, it may need to have square |
| 142 | // brackets added (for SocketAddress::ToString()). |
| 143 | if (!literal_ && !hostname_.empty()) |
| 144 | return hostname_; |
| 145 | if (ip_.family() == AF_INET6) { |
| 146 | return "[" + ip_.ToString() + "]"; |
| 147 | } else { |
| 148 | return ip_.ToString(); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | std::string SocketAddress::HostAsSensitiveURIString() const { |
| 153 | // If the hostname was a literal IP string, it may need to have square |
| 154 | // brackets added (for SocketAddress::ToString()). |
| 155 | if (!literal_ && !hostname_.empty()) |
| 156 | return hostname_; |
| 157 | if (ip_.family() == AF_INET6) { |
| 158 | return "[" + ip_.ToSensitiveString() + "]"; |
| 159 | } else { |
| 160 | return ip_.ToSensitiveString(); |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | std::string SocketAddress::PortAsString() const { |
Jonas Olsson | abbe841 | 2018-04-03 11:40:05 | [diff] [blame] | 165 | return std::to_string(port_); |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | std::string SocketAddress::ToString() const { |
Jonas Olsson | abbe841 | 2018-04-03 11:40:05 | [diff] [blame] | 169 | char buf[1024]; |
| 170 | rtc::SimpleStringBuilder sb(buf); |
| 171 | sb << HostAsURIString() << ":" << port(); |
| 172 | return sb.str(); |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | std::string SocketAddress::ToSensitiveString() const { |
Jonas Olsson | abbe841 | 2018-04-03 11:40:05 | [diff] [blame] | 176 | char buf[1024]; |
| 177 | rtc::SimpleStringBuilder sb(buf); |
| 178 | sb << HostAsSensitiveURIString() << ":" << port(); |
| 179 | return sb.str(); |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 180 | } |
| 181 | |
Yury Yarashevich | 41010f9 | 2023-01-19 16:56:03 | [diff] [blame] | 182 | std::string SocketAddress::ToSensitiveNameAndAddressString() const { |
| 183 | if (IsUnresolvedIP() || literal_ || hostname_.empty()) { |
| 184 | return ToSensitiveString(); |
Yura Yaroshevich | f97afd6 | 2021-04-12 12:56:08 | [diff] [blame] | 185 | } |
| 186 | char buf[1024]; |
| 187 | rtc::SimpleStringBuilder sb(buf); |
Yury Yarashevich | 41010f9 | 2023-01-19 16:56:03 | [diff] [blame] | 188 | sb << HostAsSensitiveURIString() << ":" << port(); |
| 189 | sb << " ("; |
| 190 | if (ip_.family() == AF_INET6) { |
| 191 | sb << "[" << ipaddr().ToSensitiveString() << "]"; |
| 192 | } else { |
| 193 | sb << ipaddr().ToSensitiveString(); |
| 194 | } |
| 195 | sb << ":" << port() << ")"; |
| 196 | |
Yura Yaroshevich | f97afd6 | 2021-04-12 12:56:08 | [diff] [blame] | 197 | return sb.str(); |
| 198 | } |
| 199 | |
Ali Tofigh | 7fa9057 | 2022-03-17 14:47:49 | [diff] [blame] | 200 | bool SocketAddress::FromString(absl::string_view str) { |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 201 | if (str.at(0) == '[') { |
Ali Tofigh | 7fa9057 | 2022-03-17 14:47:49 | [diff] [blame] | 202 | absl::string_view::size_type closebracket = str.rfind(']'); |
| 203 | if (closebracket != absl::string_view::npos) { |
| 204 | absl::string_view::size_type colon = str.find(':', closebracket); |
| 205 | if (colon != absl::string_view::npos && colon > closebracket) { |
| 206 | SetPort( |
| 207 | strtoul(std::string(str.substr(colon + 1)).c_str(), nullptr, 10)); |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 208 | SetIP(str.substr(1, closebracket - 1)); |
| 209 | } else { |
| 210 | return false; |
| 211 | } |
| 212 | } |
| 213 | } else { |
Ali Tofigh | 7fa9057 | 2022-03-17 14:47:49 | [diff] [blame] | 214 | absl::string_view::size_type pos = str.find(':'); |
| 215 | if (absl::string_view::npos == pos) |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 216 | return false; |
Ali Tofigh | 7fa9057 | 2022-03-17 14:47:49 | [diff] [blame] | 217 | SetPort(strtoul(std::string(str.substr(pos + 1)).c_str(), nullptr, 10)); |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 218 | SetIP(str.substr(0, pos)); |
| 219 | } |
| 220 | return true; |
| 221 | } |
| 222 | |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 223 | bool SocketAddress::IsAnyIP() const { |
| 224 | return IPIsAny(ip_); |
| 225 | } |
| 226 | |
| 227 | bool SocketAddress::IsLoopbackIP() const { |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 228 | return IPIsLoopback(ip_) || |
| 229 | (IPIsAny(ip_) && 0 == strcmp(hostname_.c_str(), "localhost")); |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | bool SocketAddress::IsPrivateIP() const { |
| 233 | return IPIsPrivate(ip_); |
| 234 | } |
| 235 | |
| 236 | bool SocketAddress::IsUnresolvedIP() const { |
| 237 | return IPIsUnspec(ip_) && !literal_ && !hostname_.empty(); |
| 238 | } |
| 239 | |
| 240 | bool SocketAddress::operator==(const SocketAddress& addr) const { |
| 241 | return EqualIPs(addr) && EqualPorts(addr); |
| 242 | } |
| 243 | |
| 244 | bool SocketAddress::operator<(const SocketAddress& addr) const { |
henrike@webrtc.org | b614d06 | 2014-07-10 22:47:02 | [diff] [blame] | 245 | if (ip_ != addr.ip_) |
| 246 | return ip_ < addr.ip_; |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 247 | |
henrike@webrtc.org | b614d06 | 2014-07-10 22:47:02 | [diff] [blame] | 248 | // We only check hostnames if both IPs are ANY or unspecified. This matches |
| 249 | // EqualIPs(). |
| 250 | if ((IPIsAny(ip_) || IPIsUnspec(ip_)) && hostname_ != addr.hostname_) |
| 251 | return hostname_ < addr.hostname_; |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 252 | |
| 253 | return port_ < addr.port_; |
| 254 | } |
| 255 | |
| 256 | bool SocketAddress::EqualIPs(const SocketAddress& addr) const { |
| 257 | return (ip_ == addr.ip_) && |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 258 | ((!IPIsAny(ip_) && !IPIsUnspec(ip_)) || (hostname_ == addr.hostname_)); |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | bool SocketAddress::EqualPorts(const SocketAddress& addr) const { |
| 262 | return (port_ == addr.port_); |
| 263 | } |
| 264 | |
| 265 | size_t SocketAddress::Hash() const { |
| 266 | size_t h = 0; |
| 267 | h ^= HashIP(ip_); |
| 268 | h ^= port_ | (port_ << 16); |
| 269 | return h; |
| 270 | } |
| 271 | |
| 272 | void SocketAddress::ToSockAddr(sockaddr_in* saddr) const { |
| 273 | memset(saddr, 0, sizeof(*saddr)); |
| 274 | if (ip_.family() != AF_INET) { |
| 275 | saddr->sin_family = AF_UNSPEC; |
| 276 | return; |
| 277 | } |
| 278 | saddr->sin_family = AF_INET; |
| 279 | saddr->sin_port = HostToNetwork16(port_); |
| 280 | if (IPIsAny(ip_)) { |
| 281 | saddr->sin_addr.s_addr = INADDR_ANY; |
| 282 | } else { |
| 283 | saddr->sin_addr = ip_.ipv4_address(); |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | bool SocketAddress::FromSockAddr(const sockaddr_in& saddr) { |
| 288 | if (saddr.sin_family != AF_INET) |
| 289 | return false; |
| 290 | SetIP(NetworkToHost32(saddr.sin_addr.s_addr)); |
| 291 | SetPort(NetworkToHost16(saddr.sin_port)); |
| 292 | literal_ = false; |
| 293 | return true; |
| 294 | } |
| 295 | |
| 296 | static size_t ToSockAddrStorageHelper(sockaddr_storage* addr, |
Yves Gerey | 2257c08 | 2020-01-03 11:37:56 | [diff] [blame] | 297 | const IPAddress& ip, |
Peter Boström | 0c4e06b | 2015-10-07 10:23:21 | [diff] [blame] | 298 | uint16_t port, |
| 299 | int scope_id) { |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 300 | memset(addr, 0, sizeof(sockaddr_storage)); |
henrike@webrtc.org | 1711104 | 2014-09-10 22:10:24 | [diff] [blame] | 301 | addr->ss_family = static_cast<unsigned short>(ip.family()); |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 302 | if (addr->ss_family == AF_INET6) { |
| 303 | sockaddr_in6* saddr = reinterpret_cast<sockaddr_in6*>(addr); |
| 304 | saddr->sin6_addr = ip.ipv6_address(); |
| 305 | saddr->sin6_port = HostToNetwork16(port); |
| 306 | saddr->sin6_scope_id = scope_id; |
| 307 | return sizeof(sockaddr_in6); |
| 308 | } else if (addr->ss_family == AF_INET) { |
| 309 | sockaddr_in* saddr = reinterpret_cast<sockaddr_in*>(addr); |
| 310 | saddr->sin_addr = ip.ipv4_address(); |
| 311 | saddr->sin_port = HostToNetwork16(port); |
| 312 | return sizeof(sockaddr_in); |
| 313 | } |
| 314 | return 0; |
| 315 | } |
| 316 | |
Yves Gerey | 665174f | 2018-06-19 13:03:05 | [diff] [blame] | 317 | size_t SocketAddress::ToDualStackSockAddrStorage(sockaddr_storage* addr) const { |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 318 | return ToSockAddrStorageHelper(addr, ip_.AsIPv6Address(), port_, scope_id_); |
| 319 | } |
| 320 | |
| 321 | size_t SocketAddress::ToSockAddrStorage(sockaddr_storage* addr) const { |
| 322 | return ToSockAddrStorageHelper(addr, ip_, port_, scope_id_); |
| 323 | } |
| 324 | |
henrike@webrtc.org | f048872 | 2014-05-13 18:00:26 | [diff] [blame] | 325 | bool SocketAddressFromSockAddrStorage(const sockaddr_storage& addr, |
| 326 | SocketAddress* out) { |
| 327 | if (!out) { |
| 328 | return false; |
| 329 | } |
| 330 | if (addr.ss_family == AF_INET) { |
| 331 | const sockaddr_in* saddr = reinterpret_cast<const sockaddr_in*>(&addr); |
| 332 | *out = SocketAddress(IPAddress(saddr->sin_addr), |
| 333 | NetworkToHost16(saddr->sin_port)); |
| 334 | return true; |
| 335 | } else if (addr.ss_family == AF_INET6) { |
| 336 | const sockaddr_in6* saddr = reinterpret_cast<const sockaddr_in6*>(&addr); |
| 337 | *out = SocketAddress(IPAddress(saddr->sin6_addr), |
| 338 | NetworkToHost16(saddr->sin6_port)); |
| 339 | out->SetScopeID(saddr->sin6_scope_id); |
| 340 | return true; |
| 341 | } |
| 342 | return false; |
| 343 | } |
| 344 | |
| 345 | SocketAddress EmptySocketAddressWithFamily(int family) { |
| 346 | if (family == AF_INET) { |
| 347 | return SocketAddress(IPAddress(INADDR_ANY), 0); |
| 348 | } else if (family == AF_INET6) { |
| 349 | return SocketAddress(IPAddress(in6addr_any), 0); |
| 350 | } |
| 351 | return SocketAddress(); |
| 352 | } |
| 353 | |
| 354 | } // namespace rtc |