2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-02-16 02:05:45 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
// Based on original work by David Levy https://raw.githubusercontent.com/dlevy47/rust-interfaces
|
|
|
|
|
2016-07-25 16:09:47 +02:00
|
|
|
use std::net::{IpAddr, Ipv4Addr, Ipv6Addr, SocketAddr, SocketAddrV4, SocketAddrV6};
|
2016-02-16 02:05:45 +01:00
|
|
|
use std::io;
|
|
|
|
use igd::{PortMappingProtocol, search_gateway_from_timeout};
|
|
|
|
use std::time::Duration;
|
2016-08-05 10:32:04 +02:00
|
|
|
use node_table::{NodeEndpoint};
|
2017-07-28 19:06:39 +02:00
|
|
|
use ipnetwork::{IpNetwork};
|
2016-02-16 02:05:45 +01:00
|
|
|
|
2016-02-19 13:39:43 +01:00
|
|
|
/// Socket address extension for rustc beta. To be replaces with now unstable API
|
|
|
|
pub trait SocketAddrExt {
|
|
|
|
/// Returns true if the address appears to be globally routable.
|
|
|
|
fn is_global_s(&self) -> bool;
|
2017-07-28 19:06:39 +02:00
|
|
|
|
|
|
|
// Ipv4 specific
|
|
|
|
fn is_shared_space(&self) -> bool { false }
|
|
|
|
fn is_special_purpose(&self) -> bool { false }
|
|
|
|
fn is_benchmarking(&self) -> bool { false }
|
|
|
|
fn is_future_use(&self) -> bool { false }
|
|
|
|
|
|
|
|
// Ipv6 specific
|
|
|
|
fn is_unique_local_s(&self) -> bool { false }
|
|
|
|
fn is_unicast_link_local_s(&self) -> bool { false }
|
|
|
|
fn is_documentation_s(&self) -> bool { false }
|
|
|
|
fn is_global_multicast(&self) -> bool { false }
|
|
|
|
fn is_other_multicast(&self) -> bool { false }
|
|
|
|
|
|
|
|
fn is_reserved(&self) -> bool;
|
|
|
|
fn is_usable_public(&self) -> bool;
|
|
|
|
fn is_usable_private(&self) -> bool;
|
|
|
|
|
|
|
|
fn is_within(&self, ipnet: &IpNetwork) -> bool;
|
2016-02-19 13:39:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl SocketAddrExt for Ipv4Addr {
|
2017-07-28 19:06:39 +02:00
|
|
|
fn is_global_s(&self) -> bool {
|
|
|
|
!self.is_private() &&
|
|
|
|
!self.is_loopback() &&
|
|
|
|
!self.is_link_local() &&
|
|
|
|
!self.is_broadcast() &&
|
|
|
|
!self.is_documentation()
|
2016-02-19 13:39:43 +01:00
|
|
|
}
|
|
|
|
|
2017-07-28 19:06:39 +02:00
|
|
|
// Used for communications between a service provider and its subscribers when using a carrier-grade NAT
|
|
|
|
// see: https://en.wikipedia.org/wiki/Reserved_IP_addresses
|
|
|
|
fn is_shared_space(&self) -> bool {
|
|
|
|
*self >= Ipv4Addr::new(100, 64, 0, 0) &&
|
|
|
|
*self <= Ipv4Addr::new(100, 127, 255, 255)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Used for the IANA IPv4 Special Purpose Address Registry
|
|
|
|
// see: https://en.wikipedia.org/wiki/Reserved_IP_addresses
|
|
|
|
fn is_special_purpose(&self) -> bool {
|
|
|
|
*self >= Ipv4Addr::new(192, 0, 0, 0) &&
|
|
|
|
*self <= Ipv4Addr::new(192, 0, 0, 255)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Used for testing of inter-network communications between two separate subnets
|
|
|
|
// see: https://en.wikipedia.org/wiki/Reserved_IP_addresses
|
|
|
|
fn is_benchmarking(&self) -> bool {
|
|
|
|
*self >= Ipv4Addr::new(198, 18, 0, 0) &&
|
|
|
|
*self <= Ipv4Addr::new(198, 19, 255, 255)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reserved for future use
|
|
|
|
// see: https://en.wikipedia.org/wiki/Reserved_IP_addresses
|
|
|
|
fn is_future_use(&self) -> bool {
|
|
|
|
*self >= Ipv4Addr::new(240, 0, 0, 0) &&
|
|
|
|
*self <= Ipv4Addr::new(255, 255, 255, 254)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_reserved(&self) -> bool {
|
|
|
|
self.is_unspecified() ||
|
|
|
|
self.is_loopback() ||
|
|
|
|
self.is_link_local() ||
|
|
|
|
self.is_broadcast() ||
|
|
|
|
self.is_documentation() ||
|
|
|
|
self.is_multicast() ||
|
|
|
|
self.is_shared_space() ||
|
|
|
|
self.is_special_purpose() ||
|
|
|
|
self.is_benchmarking() ||
|
|
|
|
self.is_future_use()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_usable_public(&self) -> bool {
|
|
|
|
!self.is_reserved() &&
|
|
|
|
!self.is_private()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_usable_private(&self) -> bool {
|
|
|
|
self.is_private()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_within(&self, ipnet: &IpNetwork) -> bool {
|
|
|
|
match ipnet {
|
|
|
|
&IpNetwork::V4(ipnet) => ipnet.contains(*self),
|
|
|
|
_ => false
|
|
|
|
}
|
2016-02-19 13:39:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SocketAddrExt for Ipv6Addr {
|
2017-07-28 19:06:39 +02:00
|
|
|
fn is_global_s(&self) -> bool {
|
|
|
|
self.is_global_multicast() ||
|
|
|
|
(!self.is_loopback() &&
|
|
|
|
!self.is_unique_local_s() &&
|
|
|
|
!self.is_unicast_link_local_s() &&
|
|
|
|
!self.is_documentation_s() &&
|
|
|
|
!self.is_other_multicast())
|
2016-02-19 13:39:43 +01:00
|
|
|
}
|
|
|
|
|
2017-07-28 19:06:39 +02:00
|
|
|
// unique local address (fc00::/7).
|
|
|
|
fn is_unique_local_s(&self) -> bool {
|
|
|
|
(self.segments()[0] & 0xfe00) == 0xfc00
|
|
|
|
}
|
|
|
|
|
|
|
|
// unicast and link-local (fe80::/10).
|
|
|
|
fn is_unicast_link_local_s(&self) -> bool {
|
|
|
|
(self.segments()[0] & 0xffc0) == 0xfe80
|
|
|
|
}
|
|
|
|
|
|
|
|
// reserved for documentation (2001:db8::/32).
|
|
|
|
fn is_documentation_s(&self) -> bool {
|
|
|
|
(self.segments()[0] == 0x2001) && (self.segments()[1] == 0xdb8)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_global_multicast(&self) -> bool {
|
|
|
|
self.segments()[0] & 0x000f == 14
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_other_multicast(&self) -> bool {
|
|
|
|
self.is_multicast() && !self.is_global_multicast()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_reserved(&self) -> bool {
|
|
|
|
self.is_unspecified() ||
|
|
|
|
self.is_loopback() ||
|
|
|
|
self.is_unicast_link_local_s() ||
|
|
|
|
self.is_documentation_s() ||
|
|
|
|
self.is_other_multicast()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_usable_public(&self) -> bool {
|
|
|
|
!self.is_reserved() &&
|
|
|
|
!self.is_unique_local_s()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_usable_private(&self) -> bool {
|
|
|
|
self.is_unique_local_s()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_within(&self, ipnet: &IpNetwork) -> bool {
|
|
|
|
match ipnet {
|
|
|
|
&IpNetwork::V6(ipnet) => ipnet.contains(*self),
|
|
|
|
_ => false
|
2016-02-19 13:39:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-24 18:25:27 +02:00
|
|
|
impl SocketAddrExt for IpAddr {
|
2017-07-28 19:06:39 +02:00
|
|
|
fn is_global_s(&self) -> bool {
|
|
|
|
match *self {
|
|
|
|
IpAddr::V4(ref ip) => ip.is_global_s(),
|
|
|
|
IpAddr::V6(ref ip) => ip.is_global_s(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_reserved(&self) -> bool {
|
2016-10-24 18:25:27 +02:00
|
|
|
match *self {
|
2017-07-28 19:06:39 +02:00
|
|
|
IpAddr::V4(ref ip) => ip.is_reserved(),
|
|
|
|
IpAddr::V6(ref ip) => ip.is_reserved(),
|
2016-10-24 18:25:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-28 19:06:39 +02:00
|
|
|
fn is_usable_public(&self) -> bool {
|
2016-10-24 18:25:27 +02:00
|
|
|
match *self {
|
2017-07-28 19:06:39 +02:00
|
|
|
IpAddr::V4(ref ip) => ip.is_usable_public(),
|
|
|
|
IpAddr::V6(ref ip) => ip.is_usable_public(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_usable_private(&self) -> bool {
|
|
|
|
match *self {
|
|
|
|
IpAddr::V4(ref ip) => ip.is_usable_private(),
|
|
|
|
IpAddr::V6(ref ip) => ip.is_usable_private(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_within(&self, ipnet: &IpNetwork) -> bool {
|
|
|
|
match *self {
|
|
|
|
IpAddr::V4(ref ip) => ip.is_within(ipnet),
|
|
|
|
IpAddr::V6(ref ip) => ip.is_within(ipnet)
|
2016-10-24 18:25:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-16 02:05:45 +01:00
|
|
|
#[cfg(not(windows))]
|
|
|
|
mod getinterfaces {
|
|
|
|
use std::{mem, io, ptr};
|
|
|
|
use libc::{AF_INET, AF_INET6};
|
|
|
|
use libc::{getifaddrs, freeifaddrs, ifaddrs, sockaddr, sockaddr_in, sockaddr_in6};
|
2016-07-25 16:09:47 +02:00
|
|
|
use std::net::{Ipv4Addr, Ipv6Addr, IpAddr};
|
2016-02-16 02:05:45 +01:00
|
|
|
|
2017-07-28 19:06:39 +02:00
|
|
|
fn convert_sockaddr(sa: *mut sockaddr) -> Option<IpAddr> {
|
2016-02-16 02:05:45 +01:00
|
|
|
if sa == ptr::null_mut() { return None; }
|
|
|
|
|
|
|
|
let (addr, _) = match unsafe { *sa }.sa_family as i32 {
|
|
|
|
AF_INET => {
|
|
|
|
let sa: *const sockaddr_in = unsafe { mem::transmute(sa) };
|
|
|
|
let sa = & unsafe { *sa };
|
|
|
|
let (addr, port) = (sa.sin_addr.s_addr, sa.sin_port);
|
2016-02-16 17:55:37 +01:00
|
|
|
(IpAddr::V4(Ipv4Addr::new(
|
|
|
|
(addr & 0x000000FF) as u8,
|
|
|
|
((addr & 0x0000FF00) >> 8) as u8,
|
|
|
|
((addr & 0x00FF0000) >> 16) as u8,
|
|
|
|
((addr & 0xFF000000) >> 24) as u8)),
|
|
|
|
port)
|
2016-02-16 02:05:45 +01:00
|
|
|
},
|
|
|
|
AF_INET6 => {
|
|
|
|
let sa: *const sockaddr_in6 = unsafe { mem::transmute(sa) };
|
|
|
|
let sa = & unsafe { *sa };
|
|
|
|
let (addr, port) = (sa.sin6_addr.s6_addr, sa.sin6_port);
|
|
|
|
let addr: [u16; 8] = unsafe { mem::transmute(addr) };
|
2016-02-16 17:55:37 +01:00
|
|
|
(IpAddr::V6(Ipv6Addr::new(
|
|
|
|
addr[0],
|
|
|
|
addr[1],
|
|
|
|
addr[2],
|
|
|
|
addr[3],
|
|
|
|
addr[4],
|
|
|
|
addr[5],
|
|
|
|
addr[6],
|
|
|
|
addr[7])),
|
|
|
|
port)
|
2016-02-16 02:05:45 +01:00
|
|
|
},
|
|
|
|
_ => return None,
|
|
|
|
};
|
|
|
|
Some(addr)
|
|
|
|
}
|
|
|
|
|
2017-07-28 19:06:39 +02:00
|
|
|
fn convert_ifaddrs(ifa: *mut ifaddrs) -> Option<IpAddr> {
|
2016-02-16 02:05:45 +01:00
|
|
|
let ifa = unsafe { &mut *ifa };
|
|
|
|
convert_sockaddr(ifa.ifa_addr)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_all() -> io::Result<Vec<IpAddr>> {
|
|
|
|
let mut ifap: *mut ifaddrs = unsafe { mem::zeroed() };
|
|
|
|
if unsafe { getifaddrs(&mut ifap as *mut _) } != 0 {
|
|
|
|
return Err(io::Error::last_os_error());
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut ret = Vec::new();
|
|
|
|
let mut cur: *mut ifaddrs = ifap;
|
|
|
|
while cur != ptr::null_mut() {
|
|
|
|
if let Some(ip_addr) = convert_ifaddrs(cur) {
|
|
|
|
ret.push(ip_addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO: do something else maybe?
|
|
|
|
cur = unsafe { (*cur).ifa_next };
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe { freeifaddrs(ifap) };
|
|
|
|
Ok(ret)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
fn get_if_addrs() -> io::Result<Vec<IpAddr>> {
|
|
|
|
getinterfaces::get_all()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
fn get_if_addrs() -> io::Result<Vec<IpAddr>> {
|
|
|
|
Ok(Vec::new())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Select the best available public address
|
|
|
|
pub fn select_public_address(port: u16) -> SocketAddr {
|
|
|
|
match get_if_addrs() {
|
|
|
|
Ok(list) => {
|
|
|
|
//prefer IPV4 bindings
|
|
|
|
for addr in &list { //TODO: use better criteria than just the first in the list
|
2017-07-28 19:06:39 +02:00
|
|
|
match addr {
|
|
|
|
&IpAddr::V4(a) if !a.is_reserved() => {
|
2016-02-16 02:05:45 +01:00
|
|
|
return SocketAddr::V4(SocketAddrV4::new(a, port));
|
|
|
|
},
|
|
|
|
_ => {},
|
|
|
|
}
|
|
|
|
}
|
2017-07-28 19:06:39 +02:00
|
|
|
for addr in &list {
|
2016-02-16 02:05:45 +01:00
|
|
|
match addr {
|
2017-07-28 19:06:39 +02:00
|
|
|
&IpAddr::V6(a) if !a.is_reserved() => {
|
2016-02-16 02:05:45 +01:00
|
|
|
return SocketAddr::V6(SocketAddrV6::new(a, port, 0, 0));
|
|
|
|
},
|
|
|
|
_ => {},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Err(e) => debug!("Error listing public interfaces: {:?}", e)
|
|
|
|
}
|
|
|
|
SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::new(127, 0, 0, 1), port))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn map_external_address(local: &NodeEndpoint) -> Option<NodeEndpoint> {
|
|
|
|
if let SocketAddr::V4(ref local_addr) = local.address {
|
|
|
|
match search_gateway_from_timeout(local_addr.ip().clone(), Duration::new(5, 0)) {
|
|
|
|
Err(ref err) => debug!("Gateway search error: {}", err),
|
|
|
|
Ok(gateway) => {
|
|
|
|
match gateway.get_external_ip() {
|
|
|
|
Err(ref err) => {
|
|
|
|
debug!("IP request error: {}", err);
|
|
|
|
},
|
|
|
|
Ok(external_addr) => {
|
|
|
|
match gateway.add_any_port(PortMappingProtocol::TCP, SocketAddrV4::new(local_addr.ip().clone(), local_addr.port()), 0, "Parity Node/TCP") {
|
|
|
|
Err(ref err) => {
|
|
|
|
debug!("Port mapping error: {}", err);
|
|
|
|
},
|
|
|
|
Ok(tcp_port) => {
|
|
|
|
match gateway.add_any_port(PortMappingProtocol::UDP, SocketAddrV4::new(local_addr.ip().clone(), local.udp_port), 0, "Parity Node/UDP") {
|
|
|
|
Err(ref err) => {
|
|
|
|
debug!("Port mapping error: {}", err);
|
|
|
|
},
|
|
|
|
Ok(udp_port) => {
|
|
|
|
return Some(NodeEndpoint { address: SocketAddr::V4(SocketAddrV4::new(external_addr, tcp_port)), udp_port: udp_port });
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2016-02-16 17:55:37 +01:00
|
|
|
#[test]
|
|
|
|
fn can_select_public_address() {
|
|
|
|
let pub_address = select_public_address(40477);
|
|
|
|
assert!(pub_address.port() == 40477);
|
|
|
|
}
|
|
|
|
|
2016-03-20 11:35:46 +01:00
|
|
|
#[ignore]
|
2016-02-16 17:55:37 +01:00
|
|
|
#[test]
|
|
|
|
fn can_map_external_address_or_fail() {
|
|
|
|
let pub_address = select_public_address(40478);
|
|
|
|
let _ = map_external_address(&NodeEndpoint { address: pub_address, udp_port: 40478 });
|
|
|
|
}
|
|
|
|
|
2016-02-19 13:39:43 +01:00
|
|
|
#[test]
|
|
|
|
fn ipv4_properties() {
|
|
|
|
fn check(octets: &[u8; 4], unspec: bool, loopback: bool,
|
|
|
|
private: bool, link_local: bool, global: bool,
|
|
|
|
multicast: bool, broadcast: bool, documentation: bool) {
|
|
|
|
let ip = Ipv4Addr::new(octets[0], octets[1], octets[2], octets[3]);
|
|
|
|
assert_eq!(octets, &ip.octets());
|
|
|
|
|
2017-07-28 19:06:39 +02:00
|
|
|
assert_eq!(ip.is_unspecified(), unspec);
|
2016-02-19 13:39:43 +01:00
|
|
|
assert_eq!(ip.is_loopback(), loopback);
|
|
|
|
assert_eq!(ip.is_private(), private);
|
|
|
|
assert_eq!(ip.is_link_local(), link_local);
|
|
|
|
assert_eq!(ip.is_global_s(), global);
|
|
|
|
assert_eq!(ip.is_multicast(), multicast);
|
|
|
|
assert_eq!(ip.is_broadcast(), broadcast);
|
|
|
|
assert_eq!(ip.is_documentation(), documentation);
|
|
|
|
}
|
|
|
|
|
|
|
|
// address unspec loopbk privt linloc global multicast brdcast doc
|
|
|
|
check(&[0, 0, 0, 0], true, false, false, false, true, false, false, false);
|
|
|
|
check(&[0, 0, 0, 1], false, false, false, false, true, false, false, false);
|
|
|
|
check(&[1, 0, 0, 0], false, false, false, false, true, false, false, false);
|
|
|
|
check(&[10, 9, 8, 7], false, false, true, false, false, false, false, false);
|
|
|
|
check(&[127, 1, 2, 3], false, true, false, false, false, false, false, false);
|
|
|
|
check(&[172, 31, 254, 253], false, false, true, false, false, false, false, false);
|
|
|
|
check(&[169, 254, 253, 242], false, false, false, true, false, false, false, false);
|
|
|
|
check(&[192, 0, 2, 183], false, false, false, false, false, false, false, true);
|
|
|
|
check(&[192, 1, 2, 183], false, false, false, false, true, false, false, false);
|
|
|
|
check(&[192, 168, 254, 253], false, false, true, false, false, false, false, false);
|
|
|
|
check(&[198, 51, 100, 0], false, false, false, false, false, false, false, true);
|
|
|
|
check(&[203, 0, 113, 0], false, false, false, false, false, false, false, true);
|
|
|
|
check(&[203, 2, 113, 0], false, false, false, false, true, false, false, false);
|
|
|
|
check(&[224, 0, 0, 0], false, false, false, false, true, true, false, false);
|
|
|
|
check(&[239, 255, 255, 255], false, false, false, false, true, true, false, false);
|
|
|
|
check(&[255, 255, 255, 255], false, false, false, false, false, false, true, false);
|
|
|
|
}
|
|
|
|
|
2017-07-28 19:06:39 +02:00
|
|
|
#[test]
|
|
|
|
fn ipv4_shared_space() {
|
|
|
|
assert!(!Ipv4Addr::new(100, 63, 255, 255).is_shared_space());
|
|
|
|
assert!(Ipv4Addr::new(100, 64, 0, 0).is_shared_space());
|
|
|
|
assert!(Ipv4Addr::new(100, 127, 255, 255).is_shared_space());
|
|
|
|
assert!(!Ipv4Addr::new(100, 128, 0, 0).is_shared_space());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ipv4_special_purpose() {
|
|
|
|
assert!(!Ipv4Addr::new(191, 255, 255, 255).is_special_purpose());
|
|
|
|
assert!(Ipv4Addr::new(192, 0, 0, 0).is_special_purpose());
|
|
|
|
assert!(Ipv4Addr::new(192, 0, 0, 255).is_special_purpose());
|
|
|
|
assert!(!Ipv4Addr::new(192, 0, 1, 255).is_special_purpose());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ipv4_benchmarking() {
|
|
|
|
assert!(!Ipv4Addr::new(198, 17, 255, 255).is_benchmarking());
|
|
|
|
assert!(Ipv4Addr::new(198, 18, 0, 0).is_benchmarking());
|
|
|
|
assert!(Ipv4Addr::new(198, 19, 255, 255).is_benchmarking());
|
|
|
|
assert!(!Ipv4Addr::new(198, 20, 0, 0).is_benchmarking());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ipv4_future_use() {
|
|
|
|
assert!(!Ipv4Addr::new(239, 255, 255, 255).is_future_use());
|
|
|
|
assert!(Ipv4Addr::new(240, 0, 0, 0).is_future_use());
|
|
|
|
assert!(Ipv4Addr::new(255, 255, 255, 254).is_future_use());
|
|
|
|
assert!(!Ipv4Addr::new(255, 255, 255, 255).is_future_use());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ipv4_usable_public() {
|
|
|
|
assert!(!Ipv4Addr::new(0,0,0,0).is_usable_public()); // unspecified
|
|
|
|
assert!(Ipv4Addr::new(0,0,0,1).is_usable_public());
|
|
|
|
|
|
|
|
assert!(Ipv4Addr::new(9,255,255,255).is_usable_public());
|
|
|
|
assert!(!Ipv4Addr::new(10,0,0,0).is_usable_public()); // private intra-network
|
|
|
|
assert!(!Ipv4Addr::new(10,255,255,255).is_usable_public()); // private intra-network
|
|
|
|
assert!(Ipv4Addr::new(11,0,0,0).is_usable_public());
|
|
|
|
|
|
|
|
assert!(Ipv4Addr::new(100, 63, 255, 255).is_usable_public());
|
|
|
|
assert!(!Ipv4Addr::new(100, 64, 0, 0).is_usable_public()); // shared space
|
|
|
|
assert!(!Ipv4Addr::new(100, 127, 255, 255).is_usable_public()); // shared space
|
|
|
|
assert!(Ipv4Addr::new(100, 128, 0, 0).is_usable_public());
|
|
|
|
|
|
|
|
assert!(Ipv4Addr::new(126,255,255,255).is_usable_public());
|
|
|
|
assert!(!Ipv4Addr::new(127,0,0,0).is_usable_public()); // loopback
|
|
|
|
assert!(!Ipv4Addr::new(127,255,255,255).is_usable_public()); // loopback
|
|
|
|
assert!(Ipv4Addr::new(128,0,0,0).is_usable_public());
|
|
|
|
|
|
|
|
assert!(Ipv4Addr::new(169,253,255,255).is_usable_public());
|
|
|
|
assert!(!Ipv4Addr::new(169,254,0,0).is_usable_public()); // link-local
|
|
|
|
assert!(!Ipv4Addr::new(169,254,255,255).is_usable_public()); // link-local
|
|
|
|
assert!(Ipv4Addr::new(169,255,0,0).is_usable_public());
|
|
|
|
|
|
|
|
assert!(Ipv4Addr::new(172,15,255,255).is_usable_public());
|
|
|
|
assert!(!Ipv4Addr::new(172,16,0,0).is_usable_public()); // private intra-network
|
|
|
|
assert!(!Ipv4Addr::new(172,31,255,255).is_usable_public()); // private intra-network
|
|
|
|
assert!(Ipv4Addr::new(172,32,255,255).is_usable_public());
|
|
|
|
|
|
|
|
assert!(Ipv4Addr::new(191,255,255,255).is_usable_public());
|
|
|
|
assert!(!Ipv4Addr::new(192,0,0,0).is_usable_public()); // special purpose
|
|
|
|
assert!(!Ipv4Addr::new(192,0,0,255).is_usable_public()); // special purpose
|
|
|
|
assert!(Ipv4Addr::new(192,0,1,0).is_usable_public());
|
|
|
|
|
|
|
|
assert!(Ipv4Addr::new(192,0,1,255).is_usable_public());
|
|
|
|
assert!(!Ipv4Addr::new(192,0,2,0).is_usable_public()); // documentation
|
|
|
|
assert!(!Ipv4Addr::new(192,0,2,255).is_usable_public()); // documentation
|
|
|
|
assert!(Ipv4Addr::new(192,0,3,0).is_usable_public());
|
|
|
|
|
|
|
|
assert!(Ipv4Addr::new(192,167,255,255).is_usable_public());
|
|
|
|
assert!(!Ipv4Addr::new(192,168,0,0).is_usable_public()); // private intra-network
|
|
|
|
assert!(!Ipv4Addr::new(192,168,255,255).is_usable_public()); // private intra-network
|
|
|
|
assert!(Ipv4Addr::new(192,169,0,0).is_usable_public());
|
|
|
|
|
|
|
|
assert!(Ipv4Addr::new(198,17,255,255).is_usable_public());
|
|
|
|
assert!(!Ipv4Addr::new(198,18,0,0).is_usable_public()); // benchmarking
|
|
|
|
assert!(!Ipv4Addr::new(198,19,255,255).is_usable_public()); // benchmarking
|
|
|
|
assert!(Ipv4Addr::new(198,20,0,0).is_usable_public());
|
|
|
|
|
|
|
|
assert!(Ipv4Addr::new(198,51,99,255).is_usable_public());
|
|
|
|
assert!(!Ipv4Addr::new(198,51,100,0).is_usable_public()); // documentation
|
|
|
|
assert!(!Ipv4Addr::new(198,51,100,255).is_usable_public()); // documentation
|
|
|
|
assert!(Ipv4Addr::new(198,51,101,0).is_usable_public());
|
|
|
|
|
|
|
|
assert!(Ipv4Addr::new(203,0,112,255).is_usable_public());
|
|
|
|
assert!(!Ipv4Addr::new(203,0,113,0).is_usable_public()); // documentation
|
|
|
|
assert!(!Ipv4Addr::new(203,0,113,255).is_usable_public()); // documentation
|
|
|
|
assert!(Ipv4Addr::new(203,0,114,0).is_usable_public());
|
|
|
|
|
|
|
|
assert!(Ipv4Addr::new(223,255,255,255).is_usable_public());
|
|
|
|
assert!(!Ipv4Addr::new(224,0,0,0).is_usable_public()); // multicast
|
|
|
|
assert!(!Ipv4Addr::new(239, 255, 255, 255).is_usable_public()); // multicast
|
|
|
|
assert!(!Ipv4Addr::new(240, 0, 0, 0).is_usable_public()); // future use
|
|
|
|
assert!(!Ipv4Addr::new(255, 255, 255, 254).is_usable_public()); // future use
|
|
|
|
assert!(!Ipv4Addr::new(255, 255, 255, 255).is_usable_public()); // limited broadcast
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ipv4_usable_private() {
|
|
|
|
assert!(!Ipv4Addr::new(9,255,255,255).is_usable_private());
|
|
|
|
assert!(Ipv4Addr::new(10,0,0,0).is_usable_private()); // private intra-network
|
|
|
|
assert!(Ipv4Addr::new(10,255,255,255).is_usable_private()); // private intra-network
|
|
|
|
assert!(!Ipv4Addr::new(11,0,0,0).is_usable_private());
|
|
|
|
|
|
|
|
assert!(!Ipv4Addr::new(172,15,255,255).is_usable_private());
|
|
|
|
assert!(Ipv4Addr::new(172,16,0,0).is_usable_private()); // private intra-network
|
|
|
|
assert!(Ipv4Addr::new(172,31,255,255).is_usable_private()); // private intra-network
|
|
|
|
assert!(!Ipv4Addr::new(172,32,255,255).is_usable_private());
|
|
|
|
|
|
|
|
assert!(!Ipv4Addr::new(192,167,255,255).is_usable_private());
|
|
|
|
assert!(Ipv4Addr::new(192,168,0,0).is_usable_private()); // private intra-network
|
|
|
|
assert!(Ipv4Addr::new(192,168,255,255).is_usable_private()); // private intra-network
|
|
|
|
assert!(!Ipv4Addr::new(192,169,0,0).is_usable_private());
|
|
|
|
}
|
|
|
|
|
2016-02-19 13:39:43 +01:00
|
|
|
#[test]
|
|
|
|
fn ipv6_properties() {
|
|
|
|
fn check(str_addr: &str, unspec: bool, loopback: bool, global: bool) {
|
|
|
|
let ip: Ipv6Addr = str_addr.parse().unwrap();
|
|
|
|
assert_eq!(str_addr, ip.to_string());
|
|
|
|
|
2017-07-28 19:06:39 +02:00
|
|
|
assert_eq!(ip.is_unspecified(), unspec);
|
2016-02-19 13:39:43 +01:00
|
|
|
assert_eq!(ip.is_loopback(), loopback);
|
|
|
|
assert_eq!(ip.is_global_s(), global);
|
|
|
|
}
|
|
|
|
|
2016-03-18 10:14:19 +01:00
|
|
|
// unspec loopbk global
|
2016-02-19 13:39:43 +01:00
|
|
|
check("::", true, false, true);
|
|
|
|
check("::1", false, true, false);
|
|
|
|
}
|
2017-07-28 19:06:39 +02:00
|
|
|
|
|
|
|
|