blob: 47ddd0400eae722cdc3710c9ce1cae9d58dfb3d9 [file] [log] [blame]
henrike@webrtc.orgf7795df2014-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#include "webrtc/base/socketaddress.h"
12
13#if defined(WEBRTC_POSIX)
14#include <sys/types.h>
15#include <sys/socket.h>
16#include <netinet/in.h>
17#if defined(OPENBSD)
18#include <netinet/in_systm.h>
19#endif
20#if !defined(__native_client__)
21#include <netinet/ip.h>
22#endif
23#include <arpa/inet.h>
24#include <netdb.h>
25#include <unistd.h>
26#endif
27
28#include <sstream>
29
30#include "webrtc/base/byteorder.h"
31#include "webrtc/base/common.h"
32#include "webrtc/base/logging.h"
33#include "webrtc/base/nethelpers.h"
34
35#if defined(WEBRTC_WIN)
36#include "webrtc/base/win32.h"
37#endif
38
39namespace rtc {
40
41SocketAddress::SocketAddress() {
42 Clear();
43}
44
45SocketAddress::SocketAddress(const std::string& hostname, int port) {
46 SetIP(hostname);
47 SetPort(port);
48}
49
50SocketAddress::SocketAddress(uint32 ip_as_host_order_integer, int port) {
51 SetIP(IPAddress(ip_as_host_order_integer));
52 SetPort(port);
53}
54
55SocketAddress::SocketAddress(const IPAddress& ip, int port) {
56 SetIP(ip);
57 SetPort(port);
58}
59
60SocketAddress::SocketAddress(const SocketAddress& addr) {
61 this->operator=(addr);
62}
63
64void SocketAddress::Clear() {
65 hostname_.clear();
66 literal_ = false;
67 ip_ = IPAddress();
68 port_ = 0;
69 scope_id_ = 0;
70}
71
72bool SocketAddress::IsNil() const {
73 return hostname_.empty() && IPIsUnspec(ip_) && 0 == port_;
74}
75
76bool SocketAddress::IsComplete() const {
77 return (!IPIsAny(ip_)) && (0 != port_);
78}
79
80SocketAddress& SocketAddress::operator=(const SocketAddress& addr) {
81 hostname_ = addr.hostname_;
82 ip_ = addr.ip_;
83 port_ = addr.port_;
84 literal_ = addr.literal_;
85 scope_id_ = addr.scope_id_;
86 return *this;
87}
88
89void SocketAddress::SetIP(uint32 ip_as_host_order_integer) {
90 hostname_.clear();
91 literal_ = false;
92 ip_ = IPAddress(ip_as_host_order_integer);
93 scope_id_ = 0;
94}
95
96void SocketAddress::SetIP(const IPAddress& ip) {
97 hostname_.clear();
98 literal_ = false;
99 ip_ = ip;
100 scope_id_ = 0;
101}
102
103void SocketAddress::SetIP(const std::string& hostname) {
104 hostname_ = hostname;
105 literal_ = IPFromString(hostname, &ip_);
106 if (!literal_) {
107 ip_ = IPAddress();
108 }
109 scope_id_ = 0;
110}
111
112void SocketAddress::SetResolvedIP(uint32 ip_as_host_order_integer) {
113 ip_ = IPAddress(ip_as_host_order_integer);
114 scope_id_ = 0;
115}
116
117void SocketAddress::SetResolvedIP(const IPAddress& ip) {
118 ip_ = ip;
119 scope_id_ = 0;
120}
121
122void SocketAddress::SetPort(int port) {
123 ASSERT((0 <= port) && (port < 65536));
124 port_ = port;
125}
126
127uint32 SocketAddress::ip() const {
128 return ip_.v4AddressAsHostOrderInteger();
129}
130
131const IPAddress& SocketAddress::ipaddr() const {
132 return ip_;
133}
134
135uint16 SocketAddress::port() const {
136 return port_;
137}
138
139std::string SocketAddress::HostAsURIString() const {
140 // If the hostname was a literal IP string, it may need to have square
141 // brackets added (for SocketAddress::ToString()).
142 if (!literal_ && !hostname_.empty())
143 return hostname_;
144 if (ip_.family() == AF_INET6) {
145 return "[" + ip_.ToString() + "]";
146 } else {
147 return ip_.ToString();
148 }
149}
150
151std::string SocketAddress::HostAsSensitiveURIString() const {
152 // If the hostname was a literal IP string, it may need to have square
153 // brackets added (for SocketAddress::ToString()).
154 if (!literal_ && !hostname_.empty())
155 return hostname_;
156 if (ip_.family() == AF_INET6) {
157 return "[" + ip_.ToSensitiveString() + "]";
158 } else {
159 return ip_.ToSensitiveString();
160 }
161}
162
163std::string SocketAddress::PortAsString() const {
164 std::ostringstream ost;
165 ost << port_;
166 return ost.str();
167}
168
169std::string SocketAddress::ToString() const {
170 std::ostringstream ost;
171 ost << *this;
172 return ost.str();
173}
174
175std::string SocketAddress::ToSensitiveString() const {
176 std::ostringstream ost;
177 ost << HostAsSensitiveURIString() << ":" << port();
178 return ost.str();
179}
180
181bool SocketAddress::FromString(const std::string& str) {
182 if (str.at(0) == '[') {
183 std::string::size_type closebracket = str.rfind(']');
184 if (closebracket != std::string::npos) {
185 std::string::size_type colon = str.find(':', closebracket);
186 if (colon != std::string::npos && colon > closebracket) {
187 SetPort(strtoul(str.substr(colon + 1).c_str(), NULL, 10));
188 SetIP(str.substr(1, closebracket - 1));
189 } else {
190 return false;
191 }
192 }
193 } else {
194 std::string::size_type pos = str.find(':');
195 if (std::string::npos == pos)
196 return false;
197 SetPort(strtoul(str.substr(pos + 1).c_str(), NULL, 10));
198 SetIP(str.substr(0, pos));
199 }
200 return true;
201}
202
203std::ostream& operator<<(std::ostream& os, const SocketAddress& addr) {
204 os << addr.HostAsURIString() << ":" << addr.port();
205 return os;
206}
207
208bool SocketAddress::IsAnyIP() const {
209 return IPIsAny(ip_);
210}
211
212bool SocketAddress::IsLoopbackIP() const {
213 return IPIsLoopback(ip_) || (IPIsAny(ip_) &&
214 0 == strcmp(hostname_.c_str(), "localhost"));
215}
216
217bool SocketAddress::IsPrivateIP() const {
218 return IPIsPrivate(ip_);
219}
220
221bool SocketAddress::IsUnresolvedIP() const {
222 return IPIsUnspec(ip_) && !literal_ && !hostname_.empty();
223}
224
225bool SocketAddress::operator==(const SocketAddress& addr) const {
226 return EqualIPs(addr) && EqualPorts(addr);
227}
228
229bool SocketAddress::operator<(const SocketAddress& addr) const {
230 if (ip_ < addr.ip_)
231 return true;
232 else if (addr.ip_ < ip_)
233 return false;
234
235 // We only check hostnames if both IPs are zero. This matches EqualIPs()
236 if (addr.IsAnyIP()) {
237 if (hostname_ < addr.hostname_)
238 return true;
239 else if (addr.hostname_ < hostname_)
240 return false;
241 }
242
243 return port_ < addr.port_;
244}
245
246bool SocketAddress::EqualIPs(const SocketAddress& addr) const {
247 return (ip_ == addr.ip_) &&
248 ((!IPIsAny(ip_)) || (hostname_ == addr.hostname_));
249}
250
251bool SocketAddress::EqualPorts(const SocketAddress& addr) const {
252 return (port_ == addr.port_);
253}
254
255size_t SocketAddress::Hash() const {
256 size_t h = 0;
257 h ^= HashIP(ip_);
258 h ^= port_ | (port_ << 16);
259 return h;
260}
261
262void SocketAddress::ToSockAddr(sockaddr_in* saddr) const {
263 memset(saddr, 0, sizeof(*saddr));
264 if (ip_.family() != AF_INET) {
265 saddr->sin_family = AF_UNSPEC;
266 return;
267 }
268 saddr->sin_family = AF_INET;
269 saddr->sin_port = HostToNetwork16(port_);
270 if (IPIsAny(ip_)) {
271 saddr->sin_addr.s_addr = INADDR_ANY;
272 } else {
273 saddr->sin_addr = ip_.ipv4_address();
274 }
275}
276
277bool SocketAddress::FromSockAddr(const sockaddr_in& saddr) {
278 if (saddr.sin_family != AF_INET)
279 return false;
280 SetIP(NetworkToHost32(saddr.sin_addr.s_addr));
281 SetPort(NetworkToHost16(saddr.sin_port));
282 literal_ = false;
283 return true;
284}
285
286static size_t ToSockAddrStorageHelper(sockaddr_storage* addr,
287 IPAddress ip, int port, int scope_id) {
288 memset(addr, 0, sizeof(sockaddr_storage));
289 addr->ss_family = ip.family();
290 if (addr->ss_family == AF_INET6) {
291 sockaddr_in6* saddr = reinterpret_cast<sockaddr_in6*>(addr);
292 saddr->sin6_addr = ip.ipv6_address();
293 saddr->sin6_port = HostToNetwork16(port);
294 saddr->sin6_scope_id = scope_id;
295 return sizeof(sockaddr_in6);
296 } else if (addr->ss_family == AF_INET) {
297 sockaddr_in* saddr = reinterpret_cast<sockaddr_in*>(addr);
298 saddr->sin_addr = ip.ipv4_address();
299 saddr->sin_port = HostToNetwork16(port);
300 return sizeof(sockaddr_in);
301 }
302 return 0;
303}
304
305size_t SocketAddress::ToDualStackSockAddrStorage(sockaddr_storage *addr) const {
306 return ToSockAddrStorageHelper(addr, ip_.AsIPv6Address(), port_, scope_id_);
307}
308
309size_t SocketAddress::ToSockAddrStorage(sockaddr_storage* addr) const {
310 return ToSockAddrStorageHelper(addr, ip_, port_, scope_id_);
311}
312
313std::string SocketAddress::IPToString(uint32 ip_as_host_order_integer) {
314 return IPAddress(ip_as_host_order_integer).ToString();
315}
316
317std::string IPToSensitiveString(uint32 ip_as_host_order_integer) {
318 return IPAddress(ip_as_host_order_integer).ToSensitiveString();
319}
320
321bool SocketAddress::StringToIP(const std::string& hostname, uint32* ip) {
322 in_addr addr;
323 if (rtc::inet_pton(AF_INET, hostname.c_str(), &addr) == 0)
324 return false;
325 *ip = NetworkToHost32(addr.s_addr);
326 return true;
327}
328
329bool SocketAddress::StringToIP(const std::string& hostname, IPAddress* ip) {
330 in_addr addr4;
331 if (rtc::inet_pton(AF_INET, hostname.c_str(), &addr4) > 0) {
332 if (ip) {
333 *ip = IPAddress(addr4);
334 }
335 return true;
336 }
337
338 in6_addr addr6;
339 if (rtc::inet_pton(AF_INET6, hostname.c_str(), &addr6) > 0) {
340 if (ip) {
341 *ip = IPAddress(addr6);
342 }
343 return true;
344 }
345 return false;
346}
347
348uint32 SocketAddress::StringToIP(const std::string& hostname) {
349 uint32 ip = 0;
350 StringToIP(hostname, &ip);
351 return ip;
352}
353
354bool SocketAddressFromSockAddrStorage(const sockaddr_storage& addr,
355 SocketAddress* out) {
356 if (!out) {
357 return false;
358 }
359 if (addr.ss_family == AF_INET) {
360 const sockaddr_in* saddr = reinterpret_cast<const sockaddr_in*>(&addr);
361 *out = SocketAddress(IPAddress(saddr->sin_addr),
362 NetworkToHost16(saddr->sin_port));
363 return true;
364 } else if (addr.ss_family == AF_INET6) {
365 const sockaddr_in6* saddr = reinterpret_cast<const sockaddr_in6*>(&addr);
366 *out = SocketAddress(IPAddress(saddr->sin6_addr),
367 NetworkToHost16(saddr->sin6_port));
368 out->SetScopeID(saddr->sin6_scope_id);
369 return true;
370 }
371 return false;
372}
373
374SocketAddress EmptySocketAddressWithFamily(int family) {
375 if (family == AF_INET) {
376 return SocketAddress(IPAddress(INADDR_ANY), 0);
377 } else if (family == AF_INET6) {
378 return SocketAddress(IPAddress(in6addr_any), 0);
379 }
380 return SocketAddress();
381}
382
383} // namespace rtc