1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459
// Effectively all the code in this repo is copied with permission from Rust's std library. // They hold the copyright (http://rust-lang.org/COPYRIGHT) and whatever other rights, but this // crate is MIT licensed also, so it's all good. use core::cmp::Ordering; // TODO: copy the parsers over from https://github.com/rust-lang/rust/blob/master/src/libstd/net/parser.rs // and update all the tests /// An IP address, either IPv4 or IPv6. /// /// This enum can contain either an [`Ipv4Addr`] or an [`Ipv6Addr`], see their /// respective documentation for more details. /// /// [`Ipv4Addr`]: ../../no-std-net/struct.Ipv4Addr.html /// [`Ipv6Addr`]: ../../no-std-net/struct.Ipv6Addr.html /// /// # Examples /// /// ``` /// use no_std_net::{IpAddr, Ipv4Addr, Ipv6Addr}; /// /// let localhost_v4 = IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)); /// let localhost_v6 = IpAddr::V6(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1)); /// /// assert_eq!("127.0.0.1".parse(), Ok(localhost_v4)); /// assert_eq!("::1".parse(), Ok(localhost_v6)); /// /// assert_eq!(localhost_v4.is_ipv6(), false); /// assert_eq!(localhost_v4.is_ipv4(), true); /// ``` #[derive(Copy, Clone, Eq, PartialEq, Debug, Hash, PartialOrd, Ord)] pub enum IpAddr { /// An IPv4 address. V4(Ipv4Addr), /// An IPv6 address. V6(Ipv6Addr), } /// An IPv4 address. /// /// IPv4 addresses are defined as 32-bit integers in [IETF RFC 791]. /// They are usually represented as four octets. /// /// See [`IpAddr`] for a type encompassing both IPv4 and IPv6 addresses. /// /// [IETF RFC 791]: https://tools.ietf.org/html/rfc791 /// [`IpAddr`]: ../../no-std-net/enum.IpAddr.html /// /// # Textual representation /// /// `Ipv4Addr` provides a [`FromStr`] implementation. The four octets are in decimal /// notation, divided by `.` (this is called "dot-decimal notation"). /// /// [`FromStr`]: https://doc.rust-lang.org/core/str/trait.FromStr.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv4Addr; /// /// let localhost = Ipv4Addr::new(127, 0, 0, 1); /// assert_eq!("127.0.0.1".parse(), Ok(localhost)); /// assert_eq!(localhost.is_loopback(), true); /// ``` #[derive(Clone, Copy, Eq, PartialEq, Hash, PartialOrd, Ord)] pub struct Ipv4Addr { // Octets stored in transmit order. inner: [u8; 4], } // TODO: clean up all the links in the documentation! /// An IPv6 address. /// /// IPv6 addresses are defined as 128-bit integers in [IETF RFC 4291]. /// They are usually represented as eight 16-bit segments. /// /// See [`IpAddr`] for a type encompassing both IPv4 and IPv6 addresses. /// /// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291 /// [`IpAddr`]: ../../no-std-net/enum.IpAddr.html /// /// # Textual representation /// /// `Ipv6Addr` provides a [`FromStr`] implementation. There are many ways to represent /// an IPv6 address in text, but in general, each segments is written in hexadecimal /// notation, and segments are separated by `:`. For more information, see /// [IETF RFC 5952]. /// /// [`FromStr`]: https://doc.rust-lang.org/core/str/trait.FromStr.html /// [IETF RFC 5952]: https://tools.ietf.org/html/rfc5952 /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// let localhost = Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1); /// assert_eq!("::1".parse(), Ok(localhost)); /// assert_eq!(localhost.is_loopback(), true); /// ``` #[derive(Clone, Copy, Eq, PartialEq, Hash, PartialOrd, Ord)] pub struct Ipv6Addr { // Octets stored in transmit order. inner: [u8; 16], } #[allow(missing_docs)] #[derive(Copy, PartialEq, Eq, Clone, Hash, Debug)] pub enum Ipv6MulticastScope { InterfaceLocal, LinkLocal, RealmLocal, AdminLocal, SiteLocal, OrganizationLocal, Global, } impl IpAddr { /// Returns [`true`] for the special 'unspecified' address. /// /// See the documentation for [`Ipv4Addr::is_unspecified`][IPv4] and /// [`Ipv6Addr::is_unspecified`][IPv6] for more details. /// /// [IPv4]: ../../no-std-net/struct.Ipv4Addr.html#method.is_unspecified /// [IPv6]: ../../no-std-net/struct.Ipv6Addr.html#method.is_unspecified /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::{IpAddr, Ipv4Addr, Ipv6Addr}; /// /// assert_eq!(IpAddr::V4(Ipv4Addr::new(0, 0, 0, 0)).is_unspecified(), true); /// assert_eq!(IpAddr::V6(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0)).is_unspecified(), true); /// ``` pub const fn is_unspecified(&self) -> bool { match *self { IpAddr::V4(ref a) => a.is_unspecified(), IpAddr::V6(ref a) => a.is_unspecified(), } } /// Returns [`true`] if this is a loopback address. /// /// See the documentation for [`Ipv4Addr::is_loopback`][IPv4] and /// [`Ipv6Addr::is_loopback`][IPv6] for more details. /// /// [IPv4]: ../../no-std-net/struct.Ipv4Addr.html#method.is_loopback /// [IPv6]: ../../no-std-net/struct.Ipv6Addr.html#method.is_loopback /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::{IpAddr, Ipv4Addr, Ipv6Addr}; /// /// assert_eq!(IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)).is_loopback(), true); /// assert_eq!(IpAddr::V6(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0x1)).is_loopback(), true); /// ``` pub const fn is_loopback(&self) -> bool { match *self { IpAddr::V4(ref a) => a.is_loopback(), IpAddr::V6(ref a) => a.is_loopback(), } } /// Returns [`true`] if the address appears to be globally routable. /// /// See the documentation for [`Ipv4Addr::is_global`][IPv4] and /// [`Ipv6Addr::is_global`][IPv6] for more details. /// /// [IPv4]: ../../no-std-net/struct.Ipv4Addr.html#method.is_global /// [IPv6]: ../../no-std-net/struct.Ipv6Addr.html#method.is_global /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::{IpAddr, Ipv4Addr, Ipv6Addr}; /// /// fn main() { /// assert_eq!(IpAddr::V4(Ipv4Addr::new(80, 9, 12, 3)).is_global(), true); /// assert_eq!(IpAddr::V6(Ipv6Addr::new(0, 0, 0x1c9, 0, 0, 0xafc8, 0, 0x1)).is_global(), /// true); /// } /// ``` pub const fn is_global(&self) -> bool { match *self { IpAddr::V4(ref a) => a.is_global(), IpAddr::V6(ref a) => a.is_global(), } } /// Returns [`true`] if this is a multicast address. /// /// See the documentation for [`Ipv4Addr::is_multicast`][IPv4] and /// [`Ipv6Addr::is_multicast`][IPv6] for more details. /// /// [IPv4]: ../../no-std-net/struct.Ipv4Addr.html#method.is_multicast /// [IPv6]: ../../no-std-net/struct.Ipv6Addr.html#method.is_multicast /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::{IpAddr, Ipv4Addr, Ipv6Addr}; /// /// assert_eq!(IpAddr::V4(Ipv4Addr::new(224, 254, 0, 0)).is_multicast(), true); /// assert_eq!(IpAddr::V6(Ipv6Addr::new(0xff00, 0, 0, 0, 0, 0, 0, 0)).is_multicast(), true); /// ``` pub const fn is_multicast(&self) -> bool { match *self { IpAddr::V4(ref a) => a.is_multicast(), IpAddr::V6(ref a) => a.is_multicast(), } } /// Returns [`true`] if this address is in a range designated for documentation. /// /// See the documentation for [`Ipv4Addr::is_documentation`][IPv4] and /// [`Ipv6Addr::is_documentation`][IPv6] for more details. /// /// [IPv4]: ../../no-std-net/struct.Ipv4Addr.html#method.is_documentation /// [IPv6]: ../../no-std-net/struct.Ipv6Addr.html#method.is_documentation /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::{IpAddr, Ipv4Addr, Ipv6Addr}; /// /// fn main() { /// assert_eq!(IpAddr::V4(Ipv4Addr::new(203, 0, 113, 6)).is_documentation(), true); /// assert_eq!(IpAddr::V6(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0)) /// .is_documentation(), true); /// } /// ``` pub const fn is_documentation(&self) -> bool { match *self { IpAddr::V4(ref a) => a.is_documentation(), IpAddr::V6(ref a) => a.is_documentation(), } } /// Returns [`true`] if this address is an [IPv4 address], and [`false`] otherwise. /// /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// [`false`]: https://doc.rust-lang.org/std/primitive.bool.html /// [IPv4 address]: #variant.V4 /// /// # Examples /// /// ``` /// use no_std_net::{IpAddr, Ipv4Addr, Ipv6Addr}; /// /// fn main() { /// assert_eq!(IpAddr::V4(Ipv4Addr::new(203, 0, 113, 6)).is_ipv4(), true); /// assert_eq!(IpAddr::V6(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0)).is_ipv4(), /// false); /// } /// ``` pub const fn is_ipv4(&self) -> bool { match *self { IpAddr::V4(_) => true, IpAddr::V6(_) => false, } } /// Returns [`true`] if this address is an [IPv6 address], and [`false`] otherwise. /// /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// [`false`]: https://doc.rust-lang.org/std/primitive.bool.html /// [IPv6 address]: #variant.V6 /// /// # Examples /// /// ``` /// use no_std_net::{IpAddr, Ipv4Addr, Ipv6Addr}; /// /// fn main() { /// assert_eq!(IpAddr::V4(Ipv4Addr::new(203, 0, 113, 6)).is_ipv6(), false); /// assert_eq!(IpAddr::V6(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0)).is_ipv6(), /// true); /// } /// ``` pub const fn is_ipv6(&self) -> bool { match *self { IpAddr::V4(_) => false, IpAddr::V6(_) => true, } } } impl ::fmt::Display for IpAddr { fn fmt(&self, fmt: &mut ::fmt::Formatter) -> ::fmt::Result { match *self { IpAddr::V4(ref a) => a.fmt(fmt), IpAddr::V6(ref a) => a.fmt(fmt), } } } impl From<[u8; 4]> for Ipv4Addr { /// Creates an `Ipv4Addr` from a four element byte array. /// /// # Examples /// /// ``` /// use no_std_net::Ipv4Addr; /// /// let addr = Ipv4Addr::from([13u8, 12u8, 11u8, 10u8]); /// assert_eq!(Ipv4Addr::new(13, 12, 11, 10), addr); /// ``` fn from(octets: [u8; 4]) -> Ipv4Addr { Ipv4Addr::new(octets[0], octets[1], octets[2], octets[3]) } } impl From<[u8; 4]> for IpAddr { /// Creates an `IpAddr::V4` from a four element byte array. /// /// # Examples /// /// ``` /// use no_std_net::{IpAddr, Ipv4Addr}; /// /// let addr = IpAddr::from([13u8, 12u8, 11u8, 10u8]); /// assert_eq!(IpAddr::V4(Ipv4Addr::new(13, 12, 11, 10)), addr); /// ``` fn from(octets: [u8; 4]) -> IpAddr { IpAddr::V4(Ipv4Addr::from(octets)) } } impl From<[u8; 16]> for Ipv6Addr { /// Creates an `Ipv6Addr` from a sixteen element byte array. /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// let addr = Ipv6Addr::from([ /// 25u8, 24u8, 23u8, 22u8, 21u8, 20u8, 19u8, 18u8, /// 17u8, 16u8, 15u8, 14u8, 13u8, 12u8, 11u8, 10u8, /// ]); /// assert_eq!( /// Ipv6Addr::new( /// 0x1918, 0x1716, /// 0x1514, 0x1312, /// 0x1110, 0x0f0e, /// 0x0d0c, 0x0b0a /// ), /// addr /// ); /// ``` fn from(octets: [u8; 16]) -> Ipv6Addr { Ipv6Addr { inner: octets } } } impl From<[u16; 8]> for Ipv6Addr { /// Creates an `Ipv6Addr` from an eight element 16-bit array. /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// let addr = Ipv6Addr::from([ /// 525u16, 524u16, 523u16, 522u16, /// 521u16, 520u16, 519u16, 518u16, /// ]); /// assert_eq!( /// Ipv6Addr::new( /// 0x20d, 0x20c, /// 0x20b, 0x20a, /// 0x209, 0x208, /// 0x207, 0x206 /// ), /// addr /// ); /// ``` fn from(segments: [u16; 8]) -> Ipv6Addr { let [a, b, c, d, e, f, g, h] = segments; Ipv6Addr::new(a, b, c, d, e, f, g, h) } } impl From<[u8; 16]> for IpAddr { /// Creates an `IpAddr::V6` from a sixteen element byte array. /// /// # Examples /// /// ``` /// use no_std_net::{IpAddr, Ipv6Addr}; /// /// let addr = IpAddr::from([ /// 25u8, 24u8, 23u8, 22u8, 21u8, 20u8, 19u8, 18u8, /// 17u8, 16u8, 15u8, 14u8, 13u8, 12u8, 11u8, 10u8, /// ]); /// assert_eq!( /// IpAddr::V6(Ipv6Addr::new( /// 0x1918, 0x1716, /// 0x1514, 0x1312, /// 0x1110, 0x0f0e, /// 0x0d0c, 0x0b0a /// )), /// addr /// ); /// ``` fn from(octets: [u8; 16]) -> IpAddr { IpAddr::V6(Ipv6Addr::from(octets)) } } impl From<[u16; 8]> for IpAddr { /// Creates an `IpAddr::V6` from an eight element 16-bit array. /// /// # Examples /// /// ``` /// use no_std_net::{IpAddr, Ipv6Addr}; /// /// let addr = IpAddr::from([ /// 525u16, 524u16, 523u16, 522u16, /// 521u16, 520u16, 519u16, 518u16, /// ]); /// assert_eq!( /// IpAddr::V6(Ipv6Addr::new( /// 0x20d, 0x20c, /// 0x20b, 0x20a, /// 0x209, 0x208, /// 0x207, 0x206 /// )), /// addr /// ); /// ``` fn from(segments: [u16; 8]) -> IpAddr { IpAddr::V6(Ipv6Addr::from(segments)) } } impl From<Ipv4Addr> for IpAddr { /// Copies this address to a new `IpAddr::V4`. /// /// # Examples /// /// ``` /// use no_std_net::{IpAddr, Ipv4Addr}; /// /// let addr = Ipv4Addr::new(127, 0, 0, 1); /// /// assert_eq!( /// IpAddr::V4(addr), /// IpAddr::from(addr) /// ) /// ``` fn from(ipv4: Ipv4Addr) -> IpAddr { IpAddr::V4(ipv4) } } impl From<Ipv6Addr> for IpAddr { /// Copies this address to a new `IpAddr::V6`. /// /// # Examples /// /// ``` /// use no_std_net::{IpAddr, Ipv6Addr}; /// /// let addr = Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff); /// /// assert_eq!( /// IpAddr::V6(addr), /// IpAddr::from(addr) /// ); /// ``` fn from(ipv6: Ipv6Addr) -> IpAddr { IpAddr::V6(ipv6) } } impl Ipv4Addr { /// Creates a new IPv4 address from four eight-bit octets. /// /// The result will represent the IP address `a`.`b`.`c`.`d`. /// /// # Examples /// /// ``` /// use no_std_net::Ipv4Addr; /// /// let addr = Ipv4Addr::new(127, 0, 0, 1); /// ``` pub const fn new(a: u8, b: u8, c: u8, d: u8) -> Ipv4Addr { Ipv4Addr { inner: [a, b, c, d], } } /// Creates a new IPv4 address with the address pointing to localhost: 127.0.0.1. /// /// # Examples /// /// ``` /// use no_std_net::Ipv4Addr; /// /// let addr = Ipv4Addr::localhost(); /// assert_eq!(addr, Ipv4Addr::new(127, 0, 0, 1)); /// ``` pub const fn localhost() -> Ipv4Addr { Ipv4Addr::new(127, 0, 0, 1) } /// Creates a new IPv4 address representing an unspecified address: 0.0.0.0 /// /// # Examples /// /// ``` /// use no_std_net::Ipv4Addr; /// /// let addr = Ipv4Addr::unspecified(); /// assert_eq!(addr, Ipv4Addr::new(0, 0, 0, 0)); /// ``` pub const fn unspecified() -> Ipv4Addr { Ipv4Addr::new(0, 0, 0, 0) } /// Returns the four eight-bit integers that make up this address. /// /// # Examples /// /// ``` /// use no_std_net::Ipv4Addr; /// /// let addr = Ipv4Addr::new(127, 0, 0, 1); /// assert_eq!(addr.octets(), [127, 0, 0, 1]); /// ``` pub const fn octets(&self) -> [u8; 4] { [self.inner[0], self.inner[1], self.inner[2], self.inner[3]] } /// Returns [`true`] for the special 'unspecified' address (0.0.0.0). /// /// This property is defined in _UNIX Network Programming, Second Edition_, /// W. Richard Stevens, p. 891; see also [ip7]. /// /// [ip7]: http://man7.org/linux/man-pages/man7/ip.7.html /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv4Addr; /// /// assert_eq!(Ipv4Addr::new(0, 0, 0, 0).is_unspecified(), true); /// assert_eq!(Ipv4Addr::new(45, 22, 13, 197).is_unspecified(), false); /// ``` pub const fn is_unspecified(&self) -> bool { self.inner[0] == 0 && self.inner[1] == 0 && self.inner[2] == 0 && self.inner[3] == 0 } /// Returns [`true`] if this is a loopback address (127.0.0.0/8). /// /// This property is defined by [IETF RFC 1122]. /// /// [IETF RFC 1122]: https://tools.ietf.org/html/rfc1122 /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv4Addr; /// /// assert_eq!(Ipv4Addr::new(127, 0, 0, 1).is_loopback(), true); /// assert_eq!(Ipv4Addr::new(45, 22, 13, 197).is_loopback(), false); /// ``` pub const fn is_loopback(&self) -> bool { self.inner[0] == 127 } /// Returns [`true`] if this is a private address. /// /// The private address ranges are defined in [IETF RFC 1918] and include: /// /// - 10.0.0.0/8 /// - 172.16.0.0/12 /// - 192.168.0.0/16 /// /// [IETF RFC 1918]: https://tools.ietf.org/html/rfc1918 /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv4Addr; /// /// assert_eq!(Ipv4Addr::new(10, 0, 0, 1).is_private(), true); /// assert_eq!(Ipv4Addr::new(10, 10, 10, 10).is_private(), true); /// assert_eq!(Ipv4Addr::new(172, 16, 10, 10).is_private(), true); /// assert_eq!(Ipv4Addr::new(172, 29, 45, 14).is_private(), true); /// assert_eq!(Ipv4Addr::new(172, 32, 0, 2).is_private(), false); /// assert_eq!(Ipv4Addr::new(192, 168, 0, 2).is_private(), true); /// assert_eq!(Ipv4Addr::new(192, 169, 0, 2).is_private(), false); /// ``` pub const fn is_private(&self) -> bool { match (self.inner[0], self.inner[1]) { (10, _) => true, (172, b) if 16 <= b && b <= 31 => true, (192, 168) => true, _ => false, } } /// Returns [`true`] if the address is link-local (169.254.0.0/16). /// /// This property is defined by [IETF RFC 3927]. /// /// [IETF RFC 3927]: https://tools.ietf.org/html/rfc3927 /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv4Addr; /// /// assert_eq!(Ipv4Addr::new(169, 254, 0, 0).is_link_local(), true); /// assert_eq!(Ipv4Addr::new(169, 254, 10, 65).is_link_local(), true); /// assert_eq!(Ipv4Addr::new(16, 89, 10, 65).is_link_local(), false); /// ``` pub const fn is_link_local(&self) -> bool { self.inner[0] == 169 && self.inner[1] == 254 } /// Returns [`true`] if the address appears to be globally routable. /// See [iana-ipv4-special-registry][ipv4-sr]. /// /// The following return false: /// /// - private address (10.0.0.0/8, 172.16.0.0/12 and 192.168.0.0/16) /// - the loopback address (127.0.0.0/8) /// - the link-local address (169.254.0.0/16) /// - the broadcast address (255.255.255.255/32) /// - test addresses used for documentation (192.0.2.0/24, 198.51.100.0/24 and 203.0.113.0/24) /// - the unspecified address (0.0.0.0) /// /// [ipv4-sr]: https://www.iana.org/assignments/iana-ipv4-special-registry/iana-ipv4-special-registry.xhtml /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv4Addr; /// /// fn main() { /// assert_eq!(Ipv4Addr::new(10, 254, 0, 0).is_global(), false); /// assert_eq!(Ipv4Addr::new(192, 168, 10, 65).is_global(), false); /// assert_eq!(Ipv4Addr::new(172, 16, 10, 65).is_global(), false); /// assert_eq!(Ipv4Addr::new(0, 0, 0, 0).is_global(), false); /// assert_eq!(Ipv4Addr::new(80, 9, 12, 3).is_global(), true); /// } /// ``` pub const fn is_global(&self) -> bool { !self.is_private() && !self.is_loopback() && !self.is_link_local() && !self.is_broadcast() && !self.is_documentation() && !self.is_unspecified() } /// Returns [`true`] if this is a multicast address (224.0.0.0/4). /// /// Multicast addresses have a most significant octet between 224 and 239, /// and is defined by [IETF RFC 5771]. /// /// [IETF RFC 5771]: https://tools.ietf.org/html/rfc5771 /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv4Addr; /// /// assert_eq!(Ipv4Addr::new(224, 254, 0, 0).is_multicast(), true); /// assert_eq!(Ipv4Addr::new(236, 168, 10, 65).is_multicast(), true); /// assert_eq!(Ipv4Addr::new(172, 16, 10, 65).is_multicast(), false); /// ``` pub const fn is_multicast(&self) -> bool { self.inner[0] & 0xF0 == 0xE0 } /// Returns [`true`] if this is a broadcast address (255.255.255.255). /// /// A broadcast address has all octets set to 255 as defined in [IETF RFC 919]. /// /// [IETF RFC 919]: https://tools.ietf.org/html/rfc919 /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv4Addr; /// /// assert_eq!(Ipv4Addr::new(255, 255, 255, 255).is_broadcast(), true); /// assert_eq!(Ipv4Addr::new(236, 168, 10, 65).is_broadcast(), false); /// ``` pub const fn is_broadcast(&self) -> bool { self.inner[0] == 255 && self.inner[1] == 255 && self.inner[2] == 255 && self.inner[3] == 255 } /// Returns [`true`] if this address is in a range designated for documentation. /// /// This is defined in [IETF RFC 5737]: /// /// - 192.0.2.0/24 (TEST-NET-1) /// - 198.51.100.0/24 (TEST-NET-2) /// - 203.0.113.0/24 (TEST-NET-3) /// /// [IETF RFC 5737]: https://tools.ietf.org/html/rfc5737 /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv4Addr; /// /// assert_eq!(Ipv4Addr::new(192, 0, 2, 255).is_documentation(), true); /// assert_eq!(Ipv4Addr::new(198, 51, 100, 65).is_documentation(), true); /// assert_eq!(Ipv4Addr::new(203, 0, 113, 6).is_documentation(), true); /// assert_eq!(Ipv4Addr::new(193, 34, 17, 19).is_documentation(), false); /// ``` pub const fn is_documentation(&self) -> bool { match (self.inner[0], self.inner[1], self.inner[2]) { (192, 0, 2) => true, (198, 51, 100) => true, (203, 0, 113) => true, _ => false, } } /// Converts this address to an IPv4-compatible [IPv6 address]. /// /// a.b.c.d becomes ::a.b.c.d /// /// [IPv6 address]: ../../no-std-net/struct.Ipv6Addr.html /// /// # Examples /// /// ``` /// use no_std_net::{Ipv4Addr, Ipv6Addr}; /// /// assert_eq!(Ipv4Addr::new(192, 0, 2, 255).to_ipv6_compatible(), /// Ipv6Addr::new(0, 0, 0, 0, 0, 0, 49152, 767)); /// ``` pub const fn to_ipv6_compatible(&self) -> Ipv6Addr { Ipv6Addr::new( 0, 0, 0, 0, 0, 0, ((self.inner[0] as u16) << 8) | self.inner[1] as u16, ((self.inner[2] as u16) << 8) | self.inner[3] as u16, ) } /// Converts this address to an IPv4-mapped [IPv6 address]. /// /// a.b.c.d becomes ::ffff:a.b.c.d /// /// [IPv6 address]: ../../no-std-net/struct.Ipv6Addr.html /// /// # Examples /// /// ``` /// use no_std_net::{Ipv4Addr, Ipv6Addr}; /// /// assert_eq!(Ipv4Addr::new(192, 0, 2, 255).to_ipv6_mapped(), /// Ipv6Addr::new(0, 0, 0, 0, 0, 65535, 49152, 767)); /// ``` pub const fn to_ipv6_mapped(&self) -> Ipv6Addr { Ipv6Addr::new( 0, 0, 0, 0, 0, 0xffff, ((self.inner[0] as u16) << 8) | self.inner[1] as u16, ((self.inner[2] as u16) << 8) | self.inner[3] as u16, ) } } impl ::fmt::Display for Ipv4Addr { fn fmt(&self, fmt: &mut ::fmt::Formatter) -> ::fmt::Result { write!( fmt, "{}.{}.{}.{}", self.inner[0], self.inner[1], self.inner[2], self.inner[3] ) } } impl ::fmt::Debug for Ipv4Addr { fn fmt(&self, fmt: &mut ::fmt::Formatter) -> ::fmt::Result { ::fmt::Display::fmt(self, fmt) } } impl PartialEq<Ipv4Addr> for IpAddr { fn eq(&self, other: &Ipv4Addr) -> bool { match *self { IpAddr::V4(ref v4) => v4 == other, IpAddr::V6(_) => false, } } } impl PartialEq<IpAddr> for Ipv4Addr { fn eq(&self, other: &IpAddr) -> bool { match *other { IpAddr::V4(ref v4) => self == v4, IpAddr::V6(_) => false, } } } impl PartialOrd<Ipv4Addr> for IpAddr { fn partial_cmp(&self, other: &Ipv4Addr) -> Option<Ordering> { match *self { IpAddr::V4(ref v4) => v4.partial_cmp(other), IpAddr::V6(_) => Some(Ordering::Greater), } } } impl PartialOrd<IpAddr> for Ipv4Addr { fn partial_cmp(&self, other: &IpAddr) -> Option<Ordering> { match *other { IpAddr::V4(ref v4) => self.partial_cmp(v4), IpAddr::V6(_) => Some(Ordering::Less), } } } impl From<Ipv4Addr> for u32 { fn from(ip: Ipv4Addr) -> u32 { u32::from_be_bytes(ip.inner) } } impl From<u32> for Ipv4Addr { fn from(ip: u32) -> Ipv4Addr { Ipv4Addr { inner: u32::to_be_bytes(ip), } } } impl Ipv6Addr { /// Creates a new IPv6 address from eight 16-bit segments. /// /// The result will represent the IP address a:b:c:d:e:f:g:h. /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// let addr = Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff); /// ``` pub const fn new(a: u16, b: u16, c: u16, d: u16, e: u16, f: u16, g: u16, h: u16) -> Ipv6Addr { Ipv6Addr { inner: [ (a >> 8) as u8, a as u8, (b >> 8) as u8, b as u8, (c >> 8) as u8, c as u8, (d >> 8) as u8, d as u8, (e >> 8) as u8, e as u8, (f >> 8) as u8, f as u8, (g >> 8) as u8, g as u8, (h >> 8) as u8, h as u8, ], } } /// Creates a new IPv6 address representing localhost: `::1`. /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// let addr = Ipv6Addr::localhost(); /// assert_eq!(addr, Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1)); /// ``` pub const fn localhost() -> Ipv6Addr { Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1) } /// Creates a new IPv6 address representing the unspecified address: `::` /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// let addr = Ipv6Addr::unspecified(); /// assert_eq!(addr, Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0)); /// ``` pub const fn unspecified() -> Ipv6Addr { Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0) } /// Returns the first 16-bit segment that makes up this address. /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// assert_eq!(Ipv6Addr::new(0x0011, 0x2233, 0, 0, 0, 0, 0, 0).first_segment(), 0x11); /// ``` pub const fn first_segment(&self) -> u16 { (self.inner[0] as u16) << 8 | (self.inner[1] as u16) } /// Returns the second 16-bit segment that makes up this address. /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// assert_eq!(Ipv6Addr::new(0x0011, 0x2233, 0, 0, 0, 0, 0, 0).second_segment(), 0x2233); /// ``` pub const fn second_segment(&self) -> u16 { (self.inner[2] as u16) << 8 | (self.inner[3] as u16) } /// Returns the eight 16-bit segments that make up this address. /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).segments(), /// [0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff]); /// ``` pub const fn segments(&self) -> [u16; 8] { let arr = &self.inner; [ (arr[0] as u16) << 8 | (arr[1] as u16), (arr[2] as u16) << 8 | (arr[3] as u16), (arr[4] as u16) << 8 | (arr[5] as u16), (arr[6] as u16) << 8 | (arr[7] as u16), (arr[8] as u16) << 8 | (arr[9] as u16), (arr[10] as u16) << 8 | (arr[11] as u16), (arr[12] as u16) << 8 | (arr[13] as u16), (arr[14] as u16) << 8 | (arr[15] as u16), ] } /// Returns [`true`] for the special 'unspecified' address (::). /// /// This property is defined in [IETF RFC 4291]. /// /// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291 /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_unspecified(), false); /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0).is_unspecified(), true); /// ``` pub const fn is_unspecified(&self) -> bool { let mut i = 0; while i < 16 { if self.inner[i] != 0 { return false; } i += 1 } true } /// Returns [`true`] if this is a loopback address (::1). /// /// This property is defined in [IETF RFC 4291]. /// /// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291 /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_loopback(), false); /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0x1).is_loopback(), true); /// ``` pub const fn is_loopback(&self) -> bool { let seg = self.segments(); seg[0] == 0 && seg[1] == 0 && seg[2] == 0 && seg[3] == 0 && seg[4] == 0 && seg[5] == 0 && seg[6] == 0 && seg[7] == 1 } /// Returns [`true`] if the address appears to be globally routable. /// /// The following return [`false`]: /// /// - the loopback address /// - link-local, site-local, and unique local unicast addresses /// - interface-, link-, realm-, admin- and site-local multicast addresses /// /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// [`false`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// fn main() { /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_global(), true); /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0x1).is_global(), false); /// assert_eq!(Ipv6Addr::new(0, 0, 0x1c9, 0, 0, 0xafc8, 0, 0x1).is_global(), true); /// } /// ``` pub const fn is_global(&self) -> bool { match self.multicast_scope() { Some(Ipv6MulticastScope::Global) => true, None => self.is_unicast_global(), _ => false, } } /// Returns [`true`] if this is a unique local address (fc00::/7). /// /// This property is defined in [IETF RFC 4193]. /// /// [IETF RFC 4193]: https://tools.ietf.org/html/rfc4193 /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// fn main() { /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_unique_local(), /// false); /// assert_eq!(Ipv6Addr::new(0xfc02, 0, 0, 0, 0, 0, 0, 0).is_unique_local(), true); /// } /// ``` pub const fn is_unique_local(&self) -> bool { self.inner[0] & 0xfe == 0xfc } /// Returns [`true`] if the address is unicast and link-local (fe80::/10). /// /// This property is defined in [IETF RFC 4291]. /// /// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291 /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// fn main() { /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_unicast_link_local(), /// false); /// assert_eq!(Ipv6Addr::new(0xfe8a, 0, 0, 0, 0, 0, 0, 0).is_unicast_link_local(), true); /// } /// ``` pub const fn is_unicast_link_local(&self) -> bool { self.first_segment() & 0xffc0 == 0xfe80 } /// Returns [`true`] if this is a deprecated unicast site-local address /// (fec0::/10). /// /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// fn main() { /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_unicast_site_local(), /// false); /// assert_eq!(Ipv6Addr::new(0xfec2, 0, 0, 0, 0, 0, 0, 0).is_unicast_site_local(), true); /// } /// ``` pub const fn is_unicast_site_local(&self) -> bool { self.first_segment() & 0xffc0 == 0xfec0 } /// Returns [`true`] if this is an address reserved for documentation /// (2001:db8::/32). /// /// This property is defined in [IETF RFC 3849]. /// /// [IETF RFC 3849]: https://tools.ietf.org/html/rfc3849 /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// fn main() { /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_documentation(), /// false); /// assert_eq!(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0).is_documentation(), true); /// } /// ``` pub const fn is_documentation(&self) -> bool { self.first_segment() == 0x2001 && self.second_segment() == 0xdb8 } /// Returns [`true`] if the address is a globally routable unicast address. /// /// The following return false: /// /// - the loopback address /// - the link-local addresses /// - the (deprecated) site-local addresses /// - unique local addresses /// - the unspecified address /// - the address range reserved for documentation /// /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// fn main() { /// assert_eq!(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0).is_unicast_global(), false); /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_unicast_global(), /// true); /// } /// ``` pub const fn is_unicast_global(&self) -> bool { !self.is_multicast() && !self.is_loopback() && !self.is_unicast_link_local() && !self.is_unicast_site_local() && !self.is_unique_local() && !self.is_unspecified() && !self.is_documentation() } /// Returns the address's multicast scope if the address is multicast. /// /// # Examples /// /// ``` /// use no_std_net::{Ipv6Addr, Ipv6MulticastScope}; /// /// fn main() { /// assert_eq!(Ipv6Addr::new(0xff0e, 0, 0, 0, 0, 0, 0, 0).multicast_scope(), /// Some(Ipv6MulticastScope::Global)); /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).multicast_scope(), None); /// } /// ``` pub const fn multicast_scope(&self) -> Option<Ipv6MulticastScope> { if self.is_multicast() { match self.inner[1] & 0x0F { 1 => Some(Ipv6MulticastScope::InterfaceLocal), 2 => Some(Ipv6MulticastScope::LinkLocal), 3 => Some(Ipv6MulticastScope::RealmLocal), 4 => Some(Ipv6MulticastScope::AdminLocal), 5 => Some(Ipv6MulticastScope::SiteLocal), 8 => Some(Ipv6MulticastScope::OrganizationLocal), 14 => Some(Ipv6MulticastScope::Global), _ => None, } } else { None } } /// Returns [`true`] if this is a multicast address (ff00::/8). /// /// This property is defined by [IETF RFC 4291]. /// /// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291 /// [`true`]: https://doc.rust-lang.org/std/primitive.bool.html /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// assert_eq!(Ipv6Addr::new(0xff00, 0, 0, 0, 0, 0, 0, 0).is_multicast(), true); /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_multicast(), false); /// ``` pub const fn is_multicast(&self) -> bool { self.inner[0] == 0xff } /// Converts this address to an [IPv4 address]. Returns [`None`] if this address is /// neither IPv4-compatible or IPv4-mapped. /// /// ::a.b.c.d and ::ffff:a.b.c.d become a.b.c.d /// /// [IPv4 address]: ../../no-std-net/struct.Ipv4Addr.html /// [`None`]: https://doc.rust-lang.org/core/option/enum.Option.html#variant.None /// /// # Examples /// /// ``` /// use no_std_net::{Ipv4Addr, Ipv6Addr}; /// /// assert_eq!(Ipv6Addr::new(0xff00, 0, 0, 0, 0, 0, 0, 0).to_ipv4(), None); /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).to_ipv4(), /// Some(Ipv4Addr::new(192, 10, 2, 255))); /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1).to_ipv4(), /// Some(Ipv4Addr::new(0, 0, 0, 1))); /// ``` pub const fn to_ipv4(&self) -> Option<Ipv4Addr> { match self.segments() { [0, 0, 0, 0, 0, f, g, h] if f == 0 || f == 0xffff => Some(Ipv4Addr::new( (g >> 8) as u8, g as u8, (h >> 8) as u8, h as u8, )), _ => None, } } /// Returns the sixteen eight-bit integers the IPv6 address consists of. /// /// ``` /// use no_std_net::Ipv6Addr; /// /// assert_eq!(Ipv6Addr::new(0xff00, 0, 0, 0, 0, 0, 0, 0).octets(), /// [255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); /// ``` pub const fn octets(&self) -> [u8; 16] { [ self.inner[0], self.inner[1], self.inner[2], self.inner[3], self.inner[4], self.inner[5], self.inner[6], self.inner[7], self.inner[8], self.inner[9], self.inner[10], self.inner[11], self.inner[12], self.inner[13], self.inner[14], self.inner[15], ] } } impl ::fmt::Display for Ipv6Addr { fn fmt(&self, fmt: &mut ::fmt::Formatter) -> ::fmt::Result { match self.segments() { // We need special cases for :: and ::1, otherwise they're formatted // as ::0.0.0.[01] [0, 0, 0, 0, 0, 0, 0, 0] => write!(fmt, "::"), [0, 0, 0, 0, 0, 0, 0, 1] => write!(fmt, "::1"), // Ipv4 Compatible address [0, 0, 0, 0, 0, 0, g, h] => write!( fmt, "::{}.{}.{}.{}", (g >> 8) as u8, g as u8, (h >> 8) as u8, h as u8 ), // Ipv4-Mapped address [0, 0, 0, 0, 0, 0xffff, g, h] => write!( fmt, "::ffff:{}.{}.{}.{}", (g >> 8) as u8, g as u8, (h >> 8) as u8, h as u8 ), _ => { fn find_zero_slice(segments: &[u16; 8]) -> (usize, usize) { let mut longest_span_len = 0; let mut longest_span_at = 0; let mut cur_span_len = 0; let mut cur_span_at = 0; for i in 0..8 { if segments[i] == 0 { if cur_span_len == 0 { cur_span_at = i; } cur_span_len += 1; if cur_span_len > longest_span_len { longest_span_len = cur_span_len; longest_span_at = cur_span_at; } } else { cur_span_len = 0; cur_span_at = 0; } } (longest_span_at, longest_span_len) } let (zeros_at, zeros_len) = find_zero_slice(&self.segments()); if zeros_len > 1 { fn fmt_subslice(segments: &[u16], fmt: &mut ::fmt::Formatter) -> ::fmt::Result { if !segments.is_empty() { write!(fmt, "{:x}", segments[0])?; for &seg in &segments[1..] { write!(fmt, ":{:x}", seg)?; } } Ok(()) } fmt_subslice(&self.segments()[..zeros_at], fmt)?; fmt.write_str("::")?; fmt_subslice(&self.segments()[zeros_at + zeros_len..], fmt) } else { let &[a, b, c, d, e, f, g, h] = &self.segments(); write!( fmt, "{:x}:{:x}:{:x}:{:x}:{:x}:{:x}:{:x}:{:x}", a, b, c, d, e, f, g, h ) } } } } } impl ::fmt::Debug for Ipv6Addr { fn fmt(&self, fmt: &mut ::fmt::Formatter) -> ::fmt::Result { ::fmt::Display::fmt(self, fmt) } } impl PartialEq<IpAddr> for Ipv6Addr { fn eq(&self, other: &IpAddr) -> bool { match *other { IpAddr::V4(_) => false, IpAddr::V6(ref v6) => self == v6, } } } impl PartialEq<Ipv6Addr> for IpAddr { fn eq(&self, other: &Ipv6Addr) -> bool { match *self { IpAddr::V4(_) => false, IpAddr::V6(ref v6) => v6 == other, } } } impl PartialOrd<Ipv6Addr> for IpAddr { fn partial_cmp(&self, other: &Ipv6Addr) -> Option<Ordering> { match *self { IpAddr::V4(_) => Some(Ordering::Less), IpAddr::V6(ref v6) => v6.partial_cmp(other), } } } impl PartialOrd<IpAddr> for Ipv6Addr { fn partial_cmp(&self, other: &IpAddr) -> Option<Ordering> { match *other { IpAddr::V4(_) => Some(Ordering::Greater), IpAddr::V6(ref v6) => self.partial_cmp(v6), } } } impl From<Ipv6Addr> for u128 { /// Convert an `Ipv6Addr` into a host byte order `u128`. /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// let addr = Ipv6Addr::new( /// 0x1020, 0x3040, 0x5060, 0x7080, /// 0x90A0, 0xB0C0, 0xD0E0, 0xF00D, /// ); /// assert_eq!(0x102030405060708090A0B0C0D0E0F00D_u128, u128::from(addr)); /// ``` fn from(ip: Ipv6Addr) -> u128 { u128::from_be_bytes(ip.inner) } } impl From<u128> for Ipv6Addr { /// Convert a host byte order `u128` into an `Ipv6Addr`. /// /// # Examples /// /// ``` /// use no_std_net::Ipv6Addr; /// /// let addr = Ipv6Addr::from(0x102030405060708090A0B0C0D0E0F00D_u128); /// assert_eq!( /// Ipv6Addr::new( /// 0x1020, 0x3040, 0x5060, 0x7080, /// 0x90A0, 0xB0C0, 0xD0E0, 0xF00D, /// ), /// addr); /// ``` fn from(ip: u128) -> Ipv6Addr { Ipv6Addr { inner: u128::to_be_bytes(ip), } } } // TODO: add module tests here!