IPAddressV(46) methods to convert IPs to their inverse in-addr.arpa / ip6.arpa repres...
[folly.git] / folly / IPAddressV6.cpp
1 /*
2  * Copyright 2017 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/IPAddressV6.h>
18
19 #include <ostream>
20 #include <string>
21
22 #include <folly/Format.h>
23 #include <folly/IPAddress.h>
24 #include <folly/IPAddressV4.h>
25 #include <folly/MacAddress.h>
26 #include <folly/detail/IPAddressSource.h>
27
28 using std::ostream;
29 using std::string;
30
31 namespace folly {
32
33 // public static const
34 const uint32_t IPAddressV6::PREFIX_TEREDO = 0x20010000;
35 const uint32_t IPAddressV6::PREFIX_6TO4 = 0x2002;
36
37 // free functions
38 size_t hash_value(const IPAddressV6& addr) {
39   return addr.hash();
40 }
41 ostream& operator<<(ostream& os, const IPAddressV6& addr) {
42   os << addr.str();
43   return os;
44 }
45 void toAppend(IPAddressV6 addr, string* result) {
46   result->append(addr.str());
47 }
48 void toAppend(IPAddressV6 addr, fbstring* result) {
49   result->append(addr.str());
50 }
51
52 bool IPAddressV6::validate(StringPiece ip) {
53   if (ip.size() > 0 && ip.front() == '[' && ip.back() == ']') {
54     ip = ip.subpiece(1, ip.size() - 2);
55   }
56
57   constexpr size_t kStrMaxLen = INET6_ADDRSTRLEN;
58   std::array<char, kStrMaxLen + 1> ip_cstr;
59   const size_t len = std::min(ip.size(), kStrMaxLen);
60   std::memcpy(ip_cstr.data(), ip.data(), len);
61   ip_cstr[len] = 0;
62   struct in6_addr addr;
63   return 1 == inet_pton(AF_INET6, ip_cstr.data(), &addr);
64 }
65
66 // public default constructor
67 IPAddressV6::IPAddressV6() {
68 }
69
70 // public string constructor
71 IPAddressV6::IPAddressV6(StringPiece addr) {
72   auto ip = addr.str();
73
74   // Allow addresses surrounded in brackets
75   if (ip.size() < 2) {
76     throw IPAddressFormatException(
77         to<std::string>("Invalid IPv6 address '", ip, "': address too short"));
78   }
79   if (ip.front() == '[' && ip.back() == ']') {
80     ip = ip.substr(1, ip.size() - 2);
81   }
82
83   struct addrinfo* result;
84   struct addrinfo hints;
85   memset(&hints, 0, sizeof(hints));
86   hints.ai_family = AF_INET6;
87   hints.ai_socktype = SOCK_STREAM;
88   hints.ai_flags = AI_NUMERICHOST;
89   if (!getaddrinfo(ip.c_str(), nullptr, &hints, &result)) {
90     struct sockaddr_in6* ipAddr = (struct sockaddr_in6*)result->ai_addr;
91     addr_.in6Addr_ = ipAddr->sin6_addr;
92     scope_ = uint16_t(ipAddr->sin6_scope_id);
93     freeaddrinfo(result);
94   } else {
95     throw IPAddressFormatException(
96         to<std::string>("Invalid IPv6 address '", ip, "'"));
97   }
98 }
99
100 // in6_addr constructor
101 IPAddressV6::IPAddressV6(const in6_addr& src)
102   : addr_(src)
103 {
104 }
105
106 // sockaddr_in6 constructor
107 IPAddressV6::IPAddressV6(const sockaddr_in6& src)
108   : addr_(src.sin6_addr)
109   , scope_(uint16_t(src.sin6_scope_id))
110 {
111 }
112
113 // ByteArray16 constructor
114 IPAddressV6::IPAddressV6(const ByteArray16& src)
115   : addr_(src)
116 {
117 }
118
119 // link-local constructor
120 IPAddressV6::IPAddressV6(LinkLocalTag, MacAddress mac)
121   : addr_(mac) {
122 }
123
124 IPAddressV6::AddressStorage::AddressStorage(MacAddress mac) {
125   // The link-local address uses modified EUI-64 format,
126   // See RFC 4291 sections 2.5.1, 2.5.6, and Appendix A
127   const auto* macBytes = mac.bytes();
128   memcpy(&bytes_.front(), "\xfe\x80\x00\x00\x00\x00\x00\x00", 8);
129   bytes_[8] = uint8_t(macBytes[0] ^ 0x02);
130   bytes_[9] = macBytes[1];
131   bytes_[10] = macBytes[2];
132   bytes_[11] = 0xff;
133   bytes_[12] = 0xfe;
134   bytes_[13] = macBytes[3];
135   bytes_[14] = macBytes[4];
136   bytes_[15] = macBytes[5];
137 }
138
139 Optional<MacAddress> IPAddressV6::getMacAddressFromLinkLocal() const {
140   // Returned MacAddress must be constructed from a link-local IPv6 address.
141   if (!(addr_.bytes_[0] == 0xfe && addr_.bytes_[1] == 0x80 &&
142         addr_.bytes_[2] == 0x00 && addr_.bytes_[3] == 0x00 &&
143         addr_.bytes_[4] == 0x00 && addr_.bytes_[5] == 0x00 &&
144         addr_.bytes_[6] == 0x00 && addr_.bytes_[7] == 0x00 &&
145         addr_.bytes_[11] == 0xff && addr_.bytes_[12] == 0xfe)) {
146     return folly::none;
147   }
148   // The link-local address uses modified EUI-64 format,
149   // See RFC 4291 sections 2.5.1, 2.5.6, and Appendix A
150   std::array<uint8_t, MacAddress::SIZE> bytes;
151   // Step 1: first 8 bytes are fe:80:00:00:00:00:00:00, and can be stripped
152   // Step 2: invert the universal/local (U/L) flag (bit 7)
153   bytes[0] = addr_.bytes_[8] ^ 0x02;
154   // Step 3: copy thhese bytes are they are
155   bytes[1] = addr_.bytes_[9];
156   bytes[2] = addr_.bytes_[10];
157   // Step 4: strip bytes (0xfffe), which are bytes_[11] and bytes_[12]
158   // Step 5: copy the rest.
159   bytes[3] = addr_.bytes_[13];
160   bytes[4] = addr_.bytes_[14];
161   bytes[5] = addr_.bytes_[15];
162   return Optional<MacAddress>(MacAddress::fromBinary(range(bytes)));
163 }
164
165 void IPAddressV6::setFromBinary(ByteRange bytes) {
166   if (bytes.size() != 16) {
167     throw IPAddressFormatException(to<std::string>(
168         "Invalid IPv6 binary data: length must ",
169         "be 16 bytes, got ",
170         bytes.size()));
171   }
172   memcpy(&addr_.in6Addr_.s6_addr, bytes.data(), sizeof(in6_addr));
173   scope_ = 0;
174 }
175
176 // public
177 IPAddressV4 IPAddressV6::createIPv4() const {
178   if (!isIPv4Mapped()) {
179     throw IPAddressFormatException("addr is not v4-to-v6-mapped");
180   }
181   const unsigned char* by = bytes();
182   return IPAddressV4(detail::Bytes::mkAddress4(&by[12]));
183 }
184
185 // convert two uint8_t bytes into a uint16_t as hibyte.lobyte
186 static inline uint16_t unpack(uint8_t lobyte, uint8_t hibyte) {
187   return uint16_t((uint16_t(hibyte) << 8) | lobyte);
188 }
189
190 // given a src string, unpack count*2 bytes into dest
191 // dest must have as much storage as count
192 static inline void unpackInto(const unsigned char* src,
193                               uint16_t* dest,
194                               size_t count) {
195   for (size_t i = 0, hi = 1, lo = 0; i < count; i++) {
196     dest[i] = unpack(src[hi], src[lo]);
197     hi += 2;
198     lo += 2;
199   }
200 }
201
202 // public
203 IPAddressV4 IPAddressV6::getIPv4For6To4() const {
204   if (!is6To4()) {
205     throw IPAddressV6::TypeError(format(
206             "Invalid IP '{}': not a 6to4 address", str()).str());
207   }
208   // convert 16x8 bytes into first 4x16 bytes
209   uint16_t ints[4] = {0,0,0,0};
210   unpackInto(bytes(), ints, 4);
211   // repack into 4x8
212   union {
213     unsigned char bytes[4];
214     in_addr addr;
215   } ipv4;
216   ipv4.bytes[0] = (uint8_t)((ints[1] & 0xFF00) >> 8);
217   ipv4.bytes[1] = (uint8_t)(ints[1] & 0x00FF);
218   ipv4.bytes[2] = (uint8_t)((ints[2] & 0xFF00) >> 8);
219   ipv4.bytes[3] = (uint8_t)(ints[2] & 0x00FF);
220   return IPAddressV4(ipv4.addr);
221 }
222
223 // public
224 bool IPAddressV6::isIPv4Mapped() const {
225   // v4 mapped addresses have their first 10 bytes set to 0, the next 2 bytes
226   // set to 255 (0xff);
227   const unsigned char* by = bytes();
228
229   // check if first 10 bytes are 0
230   for (int i = 0; i < 10; i++) {
231     if (by[i] != 0x00) {
232       return false;
233     }
234   }
235   // check if bytes 11 and 12 are 255
236   if (by[10] == 0xff && by[11] == 0xff) {
237     return true;
238   }
239   return false;
240 }
241
242 // public
243 IPAddressV6::Type IPAddressV6::type() const {
244   // convert 16x8 bytes into first 2x16 bytes
245   uint16_t ints[2] = {0,0};
246   unpackInto(bytes(), ints, 2);
247
248   if ((((uint32_t)ints[0] << 16) | ints[1]) == IPAddressV6::PREFIX_TEREDO) {
249     return Type::TEREDO;
250   }
251
252   if ((uint32_t)ints[0] == IPAddressV6::PREFIX_6TO4) {
253     return Type::T6TO4;
254   }
255
256   return Type::NORMAL;
257 }
258
259 // public
260 string IPAddressV6::toJson() const {
261   return format(
262       "{{family:'AF_INET6', addr:'{}', hash:{}}}", str(), hash()).str();
263 }
264
265 // public
266 size_t IPAddressV6::hash() const {
267   if (isIPv4Mapped()) {
268     /* An IPAddress containing this object would be equal (i.e. operator==)
269        to an IPAddress containing the corresponding IPv4.
270        So we must make sure that the hash values are the same as well */
271     return IPAddress::createIPv4(*this).hash();
272   }
273
274   static const uint64_t seed = AF_INET6;
275   uint64_t hash1 = 0, hash2 = 0;
276   hash::SpookyHashV2::Hash128(&addr_, 16, &hash1, &hash2);
277   return hash::hash_combine(seed, hash1, hash2);
278 }
279
280 // public
281 bool IPAddressV6::inSubnet(StringPiece cidrNetwork) const {
282   auto subnetInfo = IPAddress::createNetwork(cidrNetwork);
283   auto addr = subnetInfo.first;
284   if (!addr.isV6()) {
285     throw IPAddressFormatException(to<std::string>(
286         "Address '", addr.toJson(), "' ", "is not a V6 address"));
287   }
288   return inSubnetWithMask(addr.asV6(), fetchMask(subnetInfo.second));
289 }
290
291 // public
292 bool IPAddressV6::inSubnetWithMask(const IPAddressV6& subnet,
293                                    const ByteArray16& cidrMask) const {
294   const ByteArray16 mask = detail::Bytes::mask(toByteArray(), cidrMask);
295   const ByteArray16 subMask = detail::Bytes::mask(subnet.toByteArray(),
296                                                   cidrMask);
297   return (mask == subMask);
298 }
299
300 // public
301 bool IPAddressV6::isLoopback() const {
302   // Check if v4 mapped is loopback
303   if (isIPv4Mapped() && createIPv4().isLoopback()) {
304     return true;
305   }
306   auto socka = toSockAddr();
307   return IN6_IS_ADDR_LOOPBACK(&socka.sin6_addr);
308 }
309
310 bool IPAddressV6::isRoutable() const {
311   return
312     // 2000::/3 is the only assigned global unicast block
313     inBinarySubnet({{0x20, 0x00}}, 3) ||
314     // ffxe::/16 are global scope multicast addresses,
315     // which are eligible to be routed over the internet
316     (isMulticast() && getMulticastScope() == 0xe);
317 }
318
319 bool IPAddressV6::isLinkLocalBroadcast() const {
320   static const IPAddressV6 kLinkLocalBroadcast("ff02::1");
321   return *this == kLinkLocalBroadcast;
322 }
323
324 // public
325 bool IPAddressV6::isPrivate() const {
326   // Check if mapped is private
327   if (isIPv4Mapped() && createIPv4().isPrivate()) {
328     return true;
329   }
330   return isLoopback() || inBinarySubnet({{0xfc, 0x00}}, 7);
331 }
332
333 // public
334 bool IPAddressV6::isLinkLocal() const {
335   return inBinarySubnet({{0xfe, 0x80}}, 10);
336 }
337
338 bool IPAddressV6::isMulticast() const {
339   return addr_.bytes_[0] == 0xff;
340 }
341
342 uint8_t IPAddressV6::getMulticastFlags() const {
343   DCHECK(isMulticast());
344   return uint8_t((addr_.bytes_[1] >> 4) & 0xf);
345 }
346
347 uint8_t IPAddressV6::getMulticastScope() const {
348   DCHECK(isMulticast());
349   return uint8_t(addr_.bytes_[1] & 0xf);
350 }
351
352 IPAddressV6 IPAddressV6::getSolicitedNodeAddress() const {
353   // Solicted node addresses must be constructed from unicast (or anycast)
354   // addresses
355   DCHECK(!isMulticast());
356
357   uint8_t bytes[16] = { 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
358                         0x00, 0x00, 0x00, 0x01, 0xff, 0x00, 0x00, 0x00 };
359   bytes[13] = addr_.bytes_[13];
360   bytes[14] = addr_.bytes_[14];
361   bytes[15] = addr_.bytes_[15];
362   return IPAddressV6::fromBinary(ByteRange(bytes, 16));
363 }
364
365 // public
366 IPAddressV6 IPAddressV6::mask(size_t numBits) const {
367   static const auto bits = bitCount();
368   if (numBits > bits) {
369     throw IPAddressFormatException(
370         to<std::string>("numBits(", numBits, ") > bitCount(", bits, ")"));
371   }
372   ByteArray16 ba = detail::Bytes::mask(fetchMask(numBits), addr_.bytes_);
373   return IPAddressV6(ba);
374 }
375
376 // public
377 string IPAddressV6::str() const {
378   char buffer[INET6_ADDRSTRLEN] = {0};
379   sockaddr_in6 sock = toSockAddr();
380   if (!getnameinfo(
381         (sockaddr*)&sock, sizeof(sock),
382         buffer, INET6_ADDRSTRLEN,
383         nullptr, 0, NI_NUMERICHOST)) {
384     string ip(buffer);
385     return ip;
386   } else {
387     throw IPAddressFormatException(to<std::string>(
388         "Invalid address with hex ",
389         "'",
390         detail::Bytes::toHex(bytes(), 16),
391         "'"));
392   }
393 }
394
395 // public
396 string IPAddressV6::toFullyQualified() const {
397   return detail::fastIpv6ToString(addr_.in6Addr_);
398 }
399
400 // public
401 string IPAddressV6::toInverseArpaName() const {
402   constexpr folly::StringPiece lut = "0123456789abcdef";
403   std::array<char, 32> a;
404   int j = 0;
405   for (int i = 15; i >= 0; i--) {
406     a[j] = (lut[bytes()[i] & 0xf]);
407     a[j + 1] = (lut[bytes()[i] >> 4]);
408     j += 2;
409   }
410   return sformat("{}.ip6.arpa", join(".", a));
411 }
412
413 // public
414 uint8_t IPAddressV6::getNthMSByte(size_t byteIndex) const {
415   const auto highestIndex = byteCount() - 1;
416   if (byteIndex > highestIndex) {
417     throw std::invalid_argument(to<string>("Byte index must be <= ",
418         to<string>(highestIndex), " for addresses of type :",
419         detail::familyNameStr(AF_INET6)));
420   }
421   return bytes()[byteIndex];
422 }
423
424 // protected
425 const ByteArray16 IPAddressV6::fetchMask(size_t numBits) {
426   static const size_t bits = bitCount();
427   if (numBits > bits) {
428     throw IPAddressFormatException("IPv6 addresses are 128 bits.");
429   }
430   // masks_ is backed by an array so is zero indexed
431   return masks_[numBits];
432 }
433
434 // public static
435 CIDRNetworkV6 IPAddressV6::longestCommonPrefix(
436     const CIDRNetworkV6& one,
437     const CIDRNetworkV6& two) {
438   auto prefix = detail::Bytes::longestCommonPrefix(
439       one.first.addr_.bytes_, one.second, two.first.addr_.bytes_, two.second);
440   return {IPAddressV6(prefix.first), prefix.second};
441 }
442
443 // protected
444 bool IPAddressV6::inBinarySubnet(const std::array<uint8_t, 2> addr,
445                                  size_t numBits) const {
446   auto masked = mask(numBits);
447   return (std::memcmp(addr.data(), masked.bytes(), 2) == 0);
448 }
449
450 // static private
451 const std::array<ByteArray16, 129> IPAddressV6::masks_ = {{
452 /* /0   */ {{ 0x00,0x00,0x00,0x00,
453              0x00,0x00,0x00,0x00,
454              0x00,0x00,0x00,0x00,
455              0x00,0x00,0x00,0x00 }},
456 /* /1   */ {{ 0x80,0x00,0x00,0x00,
457              0x00,0x00,0x00,0x00,
458              0x00,0x00,0x00,0x00,
459              0x00,0x00,0x00,0x00 }},
460 /* /2   */ {{ 0xc0,0x00,0x00,0x00,
461              0x00,0x00,0x00,0x00,
462              0x00,0x00,0x00,0x00,
463              0x00,0x00,0x00,0x00 }},
464 /* /3   */ {{ 0xe0,0x00,0x00,0x00,
465              0x00,0x00,0x00,0x00,
466              0x00,0x00,0x00,0x00,
467              0x00,0x00,0x00,0x00 }},
468 /* /4   */ {{ 0xf0,0x00,0x00,0x00,
469              0x00,0x00,0x00,0x00,
470              0x00,0x00,0x00,0x00,
471              0x00,0x00,0x00,0x00 }},
472 /* /5   */ {{ 0xf8,0x00,0x00,0x00,
473              0x00,0x00,0x00,0x00,
474              0x00,0x00,0x00,0x00,
475              0x00,0x00,0x00,0x00 }},
476 /* /6   */ {{ 0xfc,0x00,0x00,0x00,
477              0x00,0x00,0x00,0x00,
478              0x00,0x00,0x00,0x00,
479              0x00,0x00,0x00,0x00 }},
480 /* /7   */ {{ 0xfe,0x00,0x00,0x00,
481              0x00,0x00,0x00,0x00,
482              0x00,0x00,0x00,0x00,
483              0x00,0x00,0x00,0x00 }},
484 /* /8   */ {{ 0xff,0x00,0x00,0x00,
485              0x00,0x00,0x00,0x00,
486              0x00,0x00,0x00,0x00,
487              0x00,0x00,0x00,0x00 }},
488 /* /9   */ {{ 0xff,0x80,0x00,0x00,
489              0x00,0x00,0x00,0x00,
490              0x00,0x00,0x00,0x00,
491              0x00,0x00,0x00,0x00 }},
492 /* /10  */ {{ 0xff,0xc0,0x00,0x00,
493              0x00,0x00,0x00,0x00,
494              0x00,0x00,0x00,0x00,
495              0x00,0x00,0x00,0x00 }},
496 /* /11  */ {{ 0xff,0xe0,0x00,0x00,
497              0x00,0x00,0x00,0x00,
498              0x00,0x00,0x00,0x00,
499              0x00,0x00,0x00,0x00 }},
500 /* /12  */ {{ 0xff,0xf0,0x00,0x00,
501              0x00,0x00,0x00,0x00,
502              0x00,0x00,0x00,0x00,
503              0x00,0x00,0x00,0x00 }},
504 /* /13  */ {{ 0xff,0xf8,0x00,0x00,
505              0x00,0x00,0x00,0x00,
506              0x00,0x00,0x00,0x00,
507              0x00,0x00,0x00,0x00 }},
508 /* /14  */ {{ 0xff,0xfc,0x00,0x00,
509              0x00,0x00,0x00,0x00,
510              0x00,0x00,0x00,0x00,
511              0x00,0x00,0x00,0x00 }},
512 /* /15  */ {{ 0xff,0xfe,0x00,0x00,
513              0x00,0x00,0x00,0x00,
514              0x00,0x00,0x00,0x00,
515              0x00,0x00,0x00,0x00 }},
516 /* /16  */ {{ 0xff,0xff,0x00,0x00,
517              0x00,0x00,0x00,0x00,
518              0x00,0x00,0x00,0x00,
519              0x00,0x00,0x00,0x00 }},
520 /* /17  */ {{ 0xff,0xff,0x80,0x00,
521              0x00,0x00,0x00,0x00,
522              0x00,0x00,0x00,0x00,
523              0x00,0x00,0x00,0x00 }},
524 /* /18  */ {{ 0xff,0xff,0xc0,0x00,
525              0x00,0x00,0x00,0x00,
526              0x00,0x00,0x00,0x00,
527              0x00,0x00,0x00,0x00 }},
528 /* /19  */ {{ 0xff,0xff,0xe0,0x00,
529              0x00,0x00,0x00,0x00,
530              0x00,0x00,0x00,0x00,
531              0x00,0x00,0x00,0x00 }},
532 /* /20  */ {{ 0xff,0xff,0xf0,0x00,
533              0x00,0x00,0x00,0x00,
534              0x00,0x00,0x00,0x00,
535              0x00,0x00,0x00,0x00 }},
536 /* /21  */ {{ 0xff,0xff,0xf8,0x00,
537              0x00,0x00,0x00,0x00,
538              0x00,0x00,0x00,0x00,
539              0x00,0x00,0x00,0x00 }},
540 /* /22  */ {{ 0xff,0xff,0xfc,0x00,
541              0x00,0x00,0x00,0x00,
542              0x00,0x00,0x00,0x00,
543              0x00,0x00,0x00,0x00 }},
544 /* /23  */ {{ 0xff,0xff,0xfe,0x00,
545              0x00,0x00,0x00,0x00,
546              0x00,0x00,0x00,0x00,
547              0x00,0x00,0x00,0x00 }},
548 /* /24  */ {{ 0xff,0xff,0xff,0x00,
549              0x00,0x00,0x00,0x00,
550              0x00,0x00,0x00,0x00,
551              0x00,0x00,0x00,0x00 }},
552 /* /25  */ {{ 0xff,0xff,0xff,0x80,
553              0x00,0x00,0x00,0x00,
554              0x00,0x00,0x00,0x00,
555              0x00,0x00,0x00,0x00 }},
556 /* /26  */ {{ 0xff,0xff,0xff,0xc0,
557              0x00,0x00,0x00,0x00,
558              0x00,0x00,0x00,0x00,
559              0x00,0x00,0x00,0x00 }},
560 /* /27  */ {{ 0xff,0xff,0xff,0xe0,
561              0x00,0x00,0x00,0x00,
562              0x00,0x00,0x00,0x00,
563              0x00,0x00,0x00,0x00 }},
564 /* /28  */ {{ 0xff,0xff,0xff,0xf0,
565              0x00,0x00,0x00,0x00,
566              0x00,0x00,0x00,0x00,
567              0x00,0x00,0x00,0x00 }},
568 /* /29  */ {{ 0xff,0xff,0xff,0xf8,
569              0x00,0x00,0x00,0x00,
570              0x00,0x00,0x00,0x00,
571              0x00,0x00,0x00,0x00 }},
572 /* /30  */ {{ 0xff,0xff,0xff,0xfc,
573              0x00,0x00,0x00,0x00,
574              0x00,0x00,0x00,0x00,
575              0x00,0x00,0x00,0x00 }},
576 /* /31  */ {{ 0xff,0xff,0xff,0xfe,
577              0x00,0x00,0x00,0x00,
578              0x00,0x00,0x00,0x00,
579              0x00,0x00,0x00,0x00 }},
580 /* /32  */ {{ 0xff,0xff,0xff,0xff,
581              0x00,0x00,0x00,0x00,
582              0x00,0x00,0x00,0x00,
583              0x00,0x00,0x00,0x00 }},
584 /* /33  */ {{ 0xff,0xff,0xff,0xff,
585              0x80,0x00,0x00,0x00,
586              0x00,0x00,0x00,0x00,
587              0x00,0x00,0x00,0x00 }},
588 /* /34  */ {{ 0xff,0xff,0xff,0xff,
589              0xc0,0x00,0x00,0x00,
590              0x00,0x00,0x00,0x00,
591              0x00,0x00,0x00,0x00 }},
592 /* /35  */ {{ 0xff,0xff,0xff,0xff,
593              0xe0,0x00,0x00,0x00,
594              0x00,0x00,0x00,0x00,
595              0x00,0x00,0x00,0x00 }},
596 /* /36  */ {{ 0xff,0xff,0xff,0xff,
597              0xf0,0x00,0x00,0x00,
598              0x00,0x00,0x00,0x00,
599              0x00,0x00,0x00,0x00 }},
600 /* /37  */ {{ 0xff,0xff,0xff,0xff,
601              0xf8,0x00,0x00,0x00,
602              0x00,0x00,0x00,0x00,
603              0x00,0x00,0x00,0x00 }},
604 /* /38  */ {{ 0xff,0xff,0xff,0xff,
605              0xfc,0x00,0x00,0x00,
606              0x00,0x00,0x00,0x00,
607              0x00,0x00,0x00,0x00 }},
608 /* /39  */ {{ 0xff,0xff,0xff,0xff,
609              0xfe,0x00,0x00,0x00,
610              0x00,0x00,0x00,0x00,
611              0x00,0x00,0x00,0x00 }},
612 /* /40  */ {{ 0xff,0xff,0xff,0xff,
613              0xff,0x00,0x00,0x00,
614              0x00,0x00,0x00,0x00,
615              0x00,0x00,0x00,0x00 }},
616 /* /41  */ {{ 0xff,0xff,0xff,0xff,
617              0xff,0x80,0x00,0x00,
618              0x00,0x00,0x00,0x00,
619              0x00,0x00,0x00,0x00 }},
620 /* /42  */ {{ 0xff,0xff,0xff,0xff,
621              0xff,0xc0,0x00,0x00,
622              0x00,0x00,0x00,0x00,
623              0x00,0x00,0x00,0x00 }},
624 /* /43  */ {{ 0xff,0xff,0xff,0xff,
625              0xff,0xe0,0x00,0x00,
626              0x00,0x00,0x00,0x00,
627              0x00,0x00,0x00,0x00 }},
628 /* /44  */ {{ 0xff,0xff,0xff,0xff,
629              0xff,0xf0,0x00,0x00,
630              0x00,0x00,0x00,0x00,
631              0x00,0x00,0x00,0x00 }},
632 /* /45  */ {{ 0xff,0xff,0xff,0xff,
633              0xff,0xf8,0x00,0x00,
634              0x00,0x00,0x00,0x00,
635              0x00,0x00,0x00,0x00 }},
636 /* /46  */ {{ 0xff,0xff,0xff,0xff,
637              0xff,0xfc,0x00,0x00,
638              0x00,0x00,0x00,0x00,
639              0x00,0x00,0x00,0x00 }},
640 /* /47  */ {{ 0xff,0xff,0xff,0xff,
641              0xff,0xfe,0x00,0x00,
642              0x00,0x00,0x00,0x00,
643              0x00,0x00,0x00,0x00 }},
644 /* /48  */ {{ 0xff,0xff,0xff,0xff,
645              0xff,0xff,0x00,0x00,
646              0x00,0x00,0x00,0x00,
647              0x00,0x00,0x00,0x00 }},
648 /* /49  */ {{ 0xff,0xff,0xff,0xff,
649              0xff,0xff,0x80,0x00,
650              0x00,0x00,0x00,0x00,
651              0x00,0x00,0x00,0x00 }},
652 /* /50  */ {{ 0xff,0xff,0xff,0xff,
653              0xff,0xff,0xc0,0x00,
654              0x00,0x00,0x00,0x00,
655              0x00,0x00,0x00,0x00 }},
656 /* /51  */ {{ 0xff,0xff,0xff,0xff,
657              0xff,0xff,0xe0,0x00,
658              0x00,0x00,0x00,0x00,
659              0x00,0x00,0x00,0x00 }},
660 /* /52  */ {{ 0xff,0xff,0xff,0xff,
661              0xff,0xff,0xf0,0x00,
662              0x00,0x00,0x00,0x00,
663              0x00,0x00,0x00,0x00 }},
664 /* /53  */ {{ 0xff,0xff,0xff,0xff,
665              0xff,0xff,0xf8,0x00,
666              0x00,0x00,0x00,0x00,
667              0x00,0x00,0x00,0x00 }},
668 /* /54  */ {{ 0xff,0xff,0xff,0xff,
669              0xff,0xff,0xfc,0x00,
670              0x00,0x00,0x00,0x00,
671              0x00,0x00,0x00,0x00 }},
672 /* /55  */ {{ 0xff,0xff,0xff,0xff,
673              0xff,0xff,0xfe,0x00,
674              0x00,0x00,0x00,0x00,
675              0x00,0x00,0x00,0x00 }},
676 /* /56  */ {{ 0xff,0xff,0xff,0xff,
677              0xff,0xff,0xff,0x00,
678              0x00,0x00,0x00,0x00,
679              0x00,0x00,0x00,0x00 }},
680 /* /57  */ {{ 0xff,0xff,0xff,0xff,
681              0xff,0xff,0xff,0x80,
682              0x00,0x00,0x00,0x00,
683              0x00,0x00,0x00,0x00 }},
684 /* /58  */ {{ 0xff,0xff,0xff,0xff,
685              0xff,0xff,0xff,0xc0,
686              0x00,0x00,0x00,0x00,
687              0x00,0x00,0x00,0x00 }},
688 /* /59  */ {{ 0xff,0xff,0xff,0xff,
689              0xff,0xff,0xff,0xe0,
690              0x00,0x00,0x00,0x00,
691              0x00,0x00,0x00,0x00 }},
692 /* /60  */ {{ 0xff,0xff,0xff,0xff,
693              0xff,0xff,0xff,0xf0,
694              0x00,0x00,0x00,0x00,
695              0x00,0x00,0x00,0x00 }},
696 /* /61  */ {{ 0xff,0xff,0xff,0xff,
697              0xff,0xff,0xff,0xf8,
698              0x00,0x00,0x00,0x00,
699              0x00,0x00,0x00,0x00 }},
700 /* /62  */ {{ 0xff,0xff,0xff,0xff,
701              0xff,0xff,0xff,0xfc,
702              0x00,0x00,0x00,0x00,
703              0x00,0x00,0x00,0x00 }},
704 /* /63  */ {{ 0xff,0xff,0xff,0xff,
705              0xff,0xff,0xff,0xfe,
706              0x00,0x00,0x00,0x00,
707              0x00,0x00,0x00,0x00 }},
708 /* /64  */ {{ 0xff,0xff,0xff,0xff,
709              0xff,0xff,0xff,0xff,
710              0x00,0x00,0x00,0x00,
711              0x00,0x00,0x00,0x00 }},
712 /* /65  */ {{ 0xff,0xff,0xff,0xff,
713              0xff,0xff,0xff,0xff,
714              0x80,0x00,0x00,0x00,
715              0x00,0x00,0x00,0x00 }},
716 /* /66  */ {{ 0xff,0xff,0xff,0xff,
717              0xff,0xff,0xff,0xff,
718              0xc0,0x00,0x00,0x00,
719              0x00,0x00,0x00,0x00 }},
720 /* /67  */ {{ 0xff,0xff,0xff,0xff,
721              0xff,0xff,0xff,0xff,
722              0xe0,0x00,0x00,0x00,
723              0x00,0x00,0x00,0x00 }},
724 /* /68  */ {{ 0xff,0xff,0xff,0xff,
725              0xff,0xff,0xff,0xff,
726              0xf0,0x00,0x00,0x00,
727              0x00,0x00,0x00,0x00 }},
728 /* /69  */ {{ 0xff,0xff,0xff,0xff,
729              0xff,0xff,0xff,0xff,
730              0xf8,0x00,0x00,0x00,
731              0x00,0x00,0x00,0x00 }},
732 /* /70  */ {{ 0xff,0xff,0xff,0xff,
733              0xff,0xff,0xff,0xff,
734              0xfc,0x00,0x00,0x00,
735              0x00,0x00,0x00,0x00 }},
736 /* /71  */ {{ 0xff,0xff,0xff,0xff,
737              0xff,0xff,0xff,0xff,
738              0xfe,0x00,0x00,0x00,
739              0x00,0x00,0x00,0x00 }},
740 /* /72  */ {{ 0xff,0xff,0xff,0xff,
741              0xff,0xff,0xff,0xff,
742              0xff,0x00,0x00,0x00,
743              0x00,0x00,0x00,0x00 }},
744 /* /73  */ {{ 0xff,0xff,0xff,0xff,
745              0xff,0xff,0xff,0xff,
746              0xff,0x80,0x00,0x00,
747              0x00,0x00,0x00,0x00 }},
748 /* /74  */ {{ 0xff,0xff,0xff,0xff,
749              0xff,0xff,0xff,0xff,
750              0xff,0xc0,0x00,0x00,
751              0x00,0x00,0x00,0x00 }},
752 /* /75  */ {{ 0xff,0xff,0xff,0xff,
753              0xff,0xff,0xff,0xff,
754              0xff,0xe0,0x00,0x00,
755              0x00,0x00,0x00,0x00 }},
756 /* /76  */ {{ 0xff,0xff,0xff,0xff,
757              0xff,0xff,0xff,0xff,
758              0xff,0xf0,0x00,0x00,
759              0x00,0x00,0x00,0x00 }},
760 /* /77  */ {{ 0xff,0xff,0xff,0xff,
761              0xff,0xff,0xff,0xff,
762              0xff,0xf8,0x00,0x00,
763              0x00,0x00,0x00,0x00 }},
764 /* /78  */ {{ 0xff,0xff,0xff,0xff,
765              0xff,0xff,0xff,0xff,
766              0xff,0xfc,0x00,0x00,
767              0x00,0x00,0x00,0x00 }},
768 /* /79  */ {{ 0xff,0xff,0xff,0xff,
769              0xff,0xff,0xff,0xff,
770              0xff,0xfe,0x00,0x00,
771              0x00,0x00,0x00,0x00 }},
772 /* /80  */ {{ 0xff,0xff,0xff,0xff,
773              0xff,0xff,0xff,0xff,
774              0xff,0xff,0x00,0x00,
775              0x00,0x00,0x00,0x00 }},
776 /* /81  */ {{ 0xff,0xff,0xff,0xff,
777              0xff,0xff,0xff,0xff,
778              0xff,0xff,0x80,0x00,
779              0x00,0x00,0x00,0x00 }},
780 /* /82  */ {{ 0xff,0xff,0xff,0xff,
781              0xff,0xff,0xff,0xff,
782              0xff,0xff,0xc0,0x00,
783              0x00,0x00,0x00,0x00 }},
784 /* /83  */ {{ 0xff,0xff,0xff,0xff,
785              0xff,0xff,0xff,0xff,
786              0xff,0xff,0xe0,0x00,
787              0x00,0x00,0x00,0x00 }},
788 /* /84  */ {{ 0xff,0xff,0xff,0xff,
789              0xff,0xff,0xff,0xff,
790              0xff,0xff,0xf0,0x00,
791              0x00,0x00,0x00,0x00 }},
792 /* /85  */ {{ 0xff,0xff,0xff,0xff,
793              0xff,0xff,0xff,0xff,
794              0xff,0xff,0xf8,0x00,
795              0x00,0x00,0x00,0x00 }},
796 /* /86  */ {{ 0xff,0xff,0xff,0xff,
797              0xff,0xff,0xff,0xff,
798              0xff,0xff,0xfc,0x00,
799              0x00,0x00,0x00,0x00 }},
800 /* /87  */ {{ 0xff,0xff,0xff,0xff,
801              0xff,0xff,0xff,0xff,
802              0xff,0xff,0xfe,0x00,
803              0x00,0x00,0x00,0x00 }},
804 /* /88  */ {{ 0xff,0xff,0xff,0xff,
805              0xff,0xff,0xff,0xff,
806              0xff,0xff,0xff,0x00,
807              0x00,0x00,0x00,0x00 }},
808 /* /89  */ {{ 0xff,0xff,0xff,0xff,
809              0xff,0xff,0xff,0xff,
810              0xff,0xff,0xff,0x80,
811              0x00,0x00,0x00,0x00 }},
812 /* /90  */ {{ 0xff,0xff,0xff,0xff,
813              0xff,0xff,0xff,0xff,
814              0xff,0xff,0xff,0xc0,
815              0x00,0x00,0x00,0x00 }},
816 /* /91  */ {{ 0xff,0xff,0xff,0xff,
817              0xff,0xff,0xff,0xff,
818              0xff,0xff,0xff,0xe0,
819              0x00,0x00,0x00,0x00 }},
820 /* /92  */ {{ 0xff,0xff,0xff,0xff,
821              0xff,0xff,0xff,0xff,
822              0xff,0xff,0xff,0xf0,
823              0x00,0x00,0x00,0x00 }},
824 /* /93  */ {{ 0xff,0xff,0xff,0xff,
825              0xff,0xff,0xff,0xff,
826              0xff,0xff,0xff,0xf8,
827              0x00,0x00,0x00,0x00 }},
828 /* /94  */ {{ 0xff,0xff,0xff,0xff,
829              0xff,0xff,0xff,0xff,
830              0xff,0xff,0xff,0xfc,
831              0x00,0x00,0x00,0x00 }},
832 /* /95  */ {{ 0xff,0xff,0xff,0xff,
833              0xff,0xff,0xff,0xff,
834              0xff,0xff,0xff,0xfe,
835              0x00,0x00,0x00,0x00 }},
836 /* /96  */ {{ 0xff,0xff,0xff,0xff,
837              0xff,0xff,0xff,0xff,
838              0xff,0xff,0xff,0xff,
839              0x00,0x00,0x00,0x00 }},
840 /* /97  */ {{ 0xff,0xff,0xff,0xff,
841              0xff,0xff,0xff,0xff,
842              0xff,0xff,0xff,0xff,
843              0x80,0x00,0x00,0x00 }},
844 /* /98  */ {{ 0xff,0xff,0xff,0xff,
845              0xff,0xff,0xff,0xff,
846              0xff,0xff,0xff,0xff,
847              0xc0,0x00,0x00,0x00 }},
848 /* /99  */ {{ 0xff,0xff,0xff,0xff,
849              0xff,0xff,0xff,0xff,
850              0xff,0xff,0xff,0xff,
851              0xe0,0x00,0x00,0x00 }},
852 /* /100 */ {{ 0xff,0xff,0xff,0xff,
853              0xff,0xff,0xff,0xff,
854              0xff,0xff,0xff,0xff,
855              0xf0,0x00,0x00,0x00 }},
856 /* /101 */ {{ 0xff,0xff,0xff,0xff,
857              0xff,0xff,0xff,0xff,
858              0xff,0xff,0xff,0xff,
859              0xf8,0x00,0x00,0x00 }},
860 /* /102 */ {{ 0xff,0xff,0xff,0xff,
861              0xff,0xff,0xff,0xff,
862              0xff,0xff,0xff,0xff,
863              0xfc,0x00,0x00,0x00 }},
864 /* /103 */ {{ 0xff,0xff,0xff,0xff,
865              0xff,0xff,0xff,0xff,
866              0xff,0xff,0xff,0xff,
867              0xfe,0x00,0x00,0x00 }},
868 /* /104 */ {{ 0xff,0xff,0xff,0xff,
869              0xff,0xff,0xff,0xff,
870              0xff,0xff,0xff,0xff,
871              0xff,0x00,0x00,0x00 }},
872 /* /105 */ {{ 0xff,0xff,0xff,0xff,
873              0xff,0xff,0xff,0xff,
874              0xff,0xff,0xff,0xff,
875              0xff,0x80,0x00,0x00 }},
876 /* /106 */ {{ 0xff,0xff,0xff,0xff,
877              0xff,0xff,0xff,0xff,
878              0xff,0xff,0xff,0xff,
879              0xff,0xc0,0x00,0x00 }},
880 /* /107 */ {{ 0xff,0xff,0xff,0xff,
881              0xff,0xff,0xff,0xff,
882              0xff,0xff,0xff,0xff,
883              0xff,0xe0,0x00,0x00 }},
884 /* /108 */ {{ 0xff,0xff,0xff,0xff,
885              0xff,0xff,0xff,0xff,
886              0xff,0xff,0xff,0xff,
887              0xff,0xf0,0x00,0x00 }},
888 /* /109 */ {{ 0xff,0xff,0xff,0xff,
889              0xff,0xff,0xff,0xff,
890              0xff,0xff,0xff,0xff,
891              0xff,0xf8,0x00,0x00 }},
892 /* /110 */ {{ 0xff,0xff,0xff,0xff,
893              0xff,0xff,0xff,0xff,
894              0xff,0xff,0xff,0xff,
895              0xff,0xfc,0x00,0x00 }},
896 /* /111 */ {{ 0xff,0xff,0xff,0xff,
897              0xff,0xff,0xff,0xff,
898              0xff,0xff,0xff,0xff,
899              0xff,0xfe,0x00,0x00 }},
900 /* /112 */ {{ 0xff,0xff,0xff,0xff,
901              0xff,0xff,0xff,0xff,
902              0xff,0xff,0xff,0xff,
903              0xff,0xff,0x00,0x00 }},
904 /* /113 */ {{ 0xff,0xff,0xff,0xff,
905              0xff,0xff,0xff,0xff,
906              0xff,0xff,0xff,0xff,
907              0xff,0xff,0x80,0x00 }},
908 /* /114 */ {{ 0xff,0xff,0xff,0xff,
909              0xff,0xff,0xff,0xff,
910              0xff,0xff,0xff,0xff,
911              0xff,0xff,0xc0,0x00 }},
912 /* /115 */ {{ 0xff,0xff,0xff,0xff,
913              0xff,0xff,0xff,0xff,
914              0xff,0xff,0xff,0xff,
915              0xff,0xff,0xe0,0x00 }},
916 /* /116 */ {{ 0xff,0xff,0xff,0xff,
917              0xff,0xff,0xff,0xff,
918              0xff,0xff,0xff,0xff,
919              0xff,0xff,0xf0,0x00 }},
920 /* /117 */ {{ 0xff,0xff,0xff,0xff,
921              0xff,0xff,0xff,0xff,
922              0xff,0xff,0xff,0xff,
923              0xff,0xff,0xf8,0x00 }},
924 /* /118 */ {{ 0xff,0xff,0xff,0xff,
925              0xff,0xff,0xff,0xff,
926              0xff,0xff,0xff,0xff,
927              0xff,0xff,0xfc,0x00 }},
928 /* /119 */ {{ 0xff,0xff,0xff,0xff,
929              0xff,0xff,0xff,0xff,
930              0xff,0xff,0xff,0xff,
931              0xff,0xff,0xfe,0x00 }},
932 /* /120 */ {{ 0xff,0xff,0xff,0xff,
933              0xff,0xff,0xff,0xff,
934              0xff,0xff,0xff,0xff,
935              0xff,0xff,0xff,0x00 }},
936 /* /121 */ {{ 0xff,0xff,0xff,0xff,
937              0xff,0xff,0xff,0xff,
938              0xff,0xff,0xff,0xff,
939              0xff,0xff,0xff,0x80 }},
940 /* /122 */ {{ 0xff,0xff,0xff,0xff,
941              0xff,0xff,0xff,0xff,
942              0xff,0xff,0xff,0xff,
943              0xff,0xff,0xff,0xc0 }},
944 /* /123 */ {{ 0xff,0xff,0xff,0xff,
945              0xff,0xff,0xff,0xff,
946              0xff,0xff,0xff,0xff,
947              0xff,0xff,0xff,0xe0 }},
948 /* /124 */ {{ 0xff,0xff,0xff,0xff,
949              0xff,0xff,0xff,0xff,
950              0xff,0xff,0xff,0xff,
951              0xff,0xff,0xff,0xf0 }},
952 /* /125 */ {{ 0xff,0xff,0xff,0xff,
953              0xff,0xff,0xff,0xff,
954              0xff,0xff,0xff,0xff,
955              0xff,0xff,0xff,0xf8 }},
956 /* /126 */ {{ 0xff,0xff,0xff,0xff,
957              0xff,0xff,0xff,0xff,
958              0xff,0xff,0xff,0xff,
959              0xff,0xff,0xff,0xfc }},
960 /* /127 */ {{ 0xff,0xff,0xff,0xff,
961              0xff,0xff,0xff,0xff,
962              0xff,0xff,0xff,0xff,
963              0xff,0xff,0xff,0xfe }},
964 /* /128 */ {{ 0xff,0xff,0xff,0xff,
965              0xff,0xff,0xff,0xff,
966              0xff,0xff,0xff,0xff,
967              0xff,0xff,0xff,0xff }},
968 }};
969
970 } // folly