Add a default timeout parameter to HHWheelTimer.
[folly.git] / folly / IPAddressV4.cpp
1 /*
2  * Copyright 2015 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <folly/IPAddressV4.h>
18
19 #include <ostream>
20 #include <string>
21
22 #include <folly/Format.h>
23 #include <folly/IPAddress.h>
24 #include <folly/IPAddressV6.h>
25
26 using std::ostream;
27 using std::string;
28
29 namespace folly {
30
31
32 // free functions
33 size_t hash_value(const IPAddressV4& addr) {
34   return addr.hash();
35 }
36 ostream& operator<<(ostream& os, const IPAddressV4& addr) {
37   os << addr.str();
38   return os;
39 }
40 void toAppend(IPAddressV4 addr, string* result) {
41   result->append(addr.str());
42 }
43 void toAppend(IPAddressV4 addr, fbstring* result) {
44   result->append(addr.str());
45 }
46
47
48 // public static
49 IPAddressV4 IPAddressV4::fromLong(uint32_t src) {
50   in_addr addr;
51   addr.s_addr = src;
52   return IPAddressV4(addr);
53 }
54
55 IPAddressV4 IPAddressV4::fromLongHBO(uint32_t src) {
56   in_addr addr;
57   addr.s_addr = htonl(src);
58   return IPAddressV4(addr);
59 }
60
61 // static public
62 uint32_t IPAddressV4::toLong(StringPiece ip) {
63   auto str = ip.str();
64   in_addr addr;
65   if (inet_pton(AF_INET, str.c_str(), &addr) != 1) {
66     throw IPAddressFormatException("Can't convert invalid IP '", ip, "' ",
67                                    "to long");
68   }
69   return addr.s_addr;
70 }
71
72 // static public
73 uint32_t IPAddressV4::toLongHBO(StringPiece ip) {
74   return ntohl(IPAddressV4::toLong(ip));
75 }
76
77 // public default constructor
78 IPAddressV4::IPAddressV4() {
79 }
80
81 // ByteArray4 constructor
82 IPAddressV4::IPAddressV4(const ByteArray4& src)
83   : addr_(src)
84 {
85 }
86
87 // public string constructor
88 IPAddressV4::IPAddressV4(StringPiece addr)
89   : addr_()
90 {
91   auto ip = addr.str();
92   if (inet_pton(AF_INET, ip.c_str(), &addr_.inAddr_) != 1) {
93     throw IPAddressFormatException("Invalid IPv4 address '", addr, "'");
94   }
95 }
96
97 // in_addr constructor
98 IPAddressV4::IPAddressV4(const in_addr src)
99   : addr_(src)
100 {
101 }
102
103 // public
104 void IPAddressV4::setFromBinary(ByteRange bytes) {
105   if (bytes.size() != 4) {
106     throw IPAddressFormatException("Invalid IPv4 binary data: length must "
107                                    "be 4 bytes, got ", bytes.size());
108   }
109   memcpy(&addr_.inAddr_.s_addr, bytes.data(), sizeof(in_addr));
110 }
111
112 // public
113 IPAddressV6 IPAddressV4::createIPv6() const {
114   ByteArray16 ba{{0}};
115   ba[10] = 0xff;
116   ba[11] = 0xff;
117   std::memcpy(&ba[12], bytes(), 4);
118   return IPAddressV6(ba);
119 }
120
121 // public
122 string IPAddressV4::toJson() const {
123   return format(
124       "{{family:'AF_INET', addr:'{}', hash:{}}}", str(), hash()).str();
125 }
126
127 // public
128 bool IPAddressV4::inSubnet(StringPiece cidrNetwork) const {
129   auto subnetInfo = IPAddress::createNetwork(cidrNetwork);
130   auto addr = subnetInfo.first;
131   if (!addr.isV4()) {
132     throw IPAddressFormatException("Address '", addr.toJson(), "' ",
133                                    "is not a V4 address");
134   }
135   return inSubnetWithMask(addr.asV4(), fetchMask(subnetInfo.second));
136 }
137
138 // public
139 bool IPAddressV4::inSubnetWithMask(const IPAddressV4& subnet,
140                                    const ByteArray4 cidrMask) const {
141   const ByteArray4 mask = detail::Bytes::mask(toByteArray(), cidrMask);
142   const ByteArray4 subMask = detail::Bytes::mask(subnet.toByteArray(),
143                                                  cidrMask);
144   return (mask == subMask);
145 }
146
147 // public
148 bool IPAddressV4::isLoopback() const {
149   static IPAddressV4 loopback_addr("127.0.0.0");
150   return inSubnetWithMask(loopback_addr, fetchMask(8));
151 }
152
153 // public
154 bool IPAddressV4::isLinkLocal() const {
155   static IPAddressV4 linklocal_addr("169.254.0.0");
156   return inSubnetWithMask(linklocal_addr, fetchMask(16));
157 }
158
159 // public
160 bool IPAddressV4::isNonroutable() const {
161   auto ip = toLongHBO();
162   return isPrivate() ||
163       (ip <= 0x00FFFFFF)                     || // 0.0.0.0-0.255.255.255
164       (ip >= 0xC0000000 && ip <= 0xC00000FF) || // 192.0.0.0-192.0.0.255
165       (ip >= 0xC0000200 && ip <= 0xC00002FF) || // 192.0.2.0-192.0.2.255
166       (ip >= 0xC6120000 && ip <= 0xC613FFFF) || // 198.18.0.0-198.19.255.255
167       (ip >= 0xC6336400 && ip <= 0xC63364FF) || // 198.51.100.0-198.51.100.255
168       (ip >= 0xCB007100 && ip <= 0xCB0071FF) || // 203.0.113.0-203.0.113.255
169       (ip >= 0xE0000000 && ip <= 0xFFFFFFFF);   // 224.0.0.0-255.255.255.255
170 }
171
172 // public
173 bool IPAddressV4::isPrivate() const {
174   auto ip = toLongHBO();
175   return
176       (ip >= 0x0A000000 && ip <= 0x0AFFFFFF) || // 10.0.0.0-10.255.255.255
177       (ip >= 0x7F000000 && ip <= 0x7FFFFFFF) || // 127.0.0.0-127.255.255.255
178       (ip >= 0xA9FE0000 && ip <= 0xA9FEFFFF) || // 169.254.0.0-169.254.255.255
179       (ip >= 0xAC100000 && ip <= 0xAC1FFFFF) || // 172.16.0.0-172.31.255.255
180       (ip >= 0xC0A80000 && ip <= 0xC0A8FFFF);   // 192.168.0.0-192.168.255.255
181 }
182
183 // public
184 bool IPAddressV4::isMulticast() const {
185   return (toLongHBO() & 0xf0000000) == 0xe0000000;
186 }
187
188 // public
189 IPAddressV4 IPAddressV4::mask(size_t numBits) const {
190   static const auto bits = bitCount();
191   if (numBits > bits) {
192     throw IPAddressFormatException("numBits(", numBits,
193                                    ") > bitsCount(", bits, ")");
194   }
195
196   ByteArray4 ba = detail::Bytes::mask(fetchMask(numBits), addr_.bytes_);
197   return IPAddressV4(ba);
198 }
199
200 // public
201 string IPAddressV4::str() const {
202   return detail::fastIpv4ToString(addr_.inAddr_);
203 }
204
205 // public
206 uint8_t IPAddressV4::getNthMSByte(size_t byteIndex) const {
207   const auto highestIndex = byteCount() - 1;
208   if (byteIndex > highestIndex) {
209     throw std::invalid_argument(to<string>("Byte index must be <= ",
210         to<string>(highestIndex), " for addresses of type :",
211         detail::familyNameStr(AF_INET)));
212   }
213   return bytes()[byteIndex];
214 }
215 // protected
216 const ByteArray4 IPAddressV4::fetchMask(size_t numBits) {
217   static const uint8_t bits = bitCount();
218   if (numBits > bits) {
219     throw IPAddressFormatException("IPv4 addresses are 32 bits");
220   }
221   // masks_ is backed by an array so is zero indexed
222   return masks_[numBits];
223 }
224
225 // static private
226 const std::array<ByteArray4, 33> IPAddressV4::masks_ = {{
227   {{0x00, 0x00, 0x00, 0x00}},
228   {{0x80, 0x00, 0x00, 0x00}},
229   {{0xc0, 0x00, 0x00, 0x00}},
230   {{0xe0, 0x00, 0x00, 0x00}},
231   {{0xf0, 0x00, 0x00, 0x00}},
232   {{0xf8, 0x00, 0x00, 0x00}},
233   {{0xfc, 0x00, 0x00, 0x00}},
234   {{0xfe, 0x00, 0x00, 0x00}},
235   {{0xff, 0x00, 0x00, 0x00}},
236   {{0xff, 0x80, 0x00, 0x00}},
237   {{0xff, 0xc0, 0x00, 0x00}},
238   {{0xff, 0xe0, 0x00, 0x00}},
239   {{0xff, 0xf0, 0x00, 0x00}},
240   {{0xff, 0xf8, 0x00, 0x00}},
241   {{0xff, 0xfc, 0x00, 0x00}},
242   {{0xff, 0xfe, 0x00, 0x00}},
243   {{0xff, 0xff, 0x00, 0x00}},
244   {{0xff, 0xff, 0x80, 0x00}},
245   {{0xff, 0xff, 0xc0, 0x00}},
246   {{0xff, 0xff, 0xe0, 0x00}},
247   {{0xff, 0xff, 0xf0, 0x00}},
248   {{0xff, 0xff, 0xf8, 0x00}},
249   {{0xff, 0xff, 0xfc, 0x00}},
250   {{0xff, 0xff, 0xfe, 0x00}},
251   {{0xff, 0xff, 0xff, 0x00}},
252   {{0xff, 0xff, 0xff, 0x80}},
253   {{0xff, 0xff, 0xff, 0xc0}},
254   {{0xff, 0xff, 0xff, 0xe0}},
255   {{0xff, 0xff, 0xff, 0xf0}},
256   {{0xff, 0xff, 0xff, 0xf8}},
257   {{0xff, 0xff, 0xff, 0xfc}},
258   {{0xff, 0xff, 0xff, 0xfe}},
259   {{0xff, 0xff, 0xff, 0xff}}
260 }};
261
262 } // folly