// Tests for this module #[cfg(all(test, not(target_os = "emscripten")))] mod tests; use crate::io; use crate::iter; use crate::mem; use crate::net::{IpAddr, Ipv4Addr, Ipv6Addr}; use crate::option; use crate::slice; use crate::sys::net::netc as c; use crate::sys_common::net::LookupHost; use crate::sys_common::{FromInner, IntoInner}; use crate::vec; #[stable(feature = "rust1", since = "1.0.0")] pub use core::net::{SocketAddr, SocketAddrV4, SocketAddrV6}; impl FromInner for SocketAddrV4 { fn from_inner(addr: c::sockaddr_in) -> SocketAddrV4 { SocketAddrV4::new(Ipv4Addr::from_inner(addr.sin_addr), u16::from_be(addr.sin_port)) } } impl FromInner for SocketAddrV6 { fn from_inner(addr: c::sockaddr_in6) -> SocketAddrV6 { SocketAddrV6::new( Ipv6Addr::from_inner(addr.sin6_addr), u16::from_be(addr.sin6_port), addr.sin6_flowinfo, addr.sin6_scope_id, ) } } impl IntoInner for SocketAddrV4 { fn into_inner(self) -> c::sockaddr_in { c::sockaddr_in { sin_family: c::AF_INET as c::sa_family_t, sin_port: self.port().to_be(), sin_addr: self.ip().into_inner(), ..unsafe { mem::zeroed() } } } } impl IntoInner for SocketAddrV6 { fn into_inner(self) -> c::sockaddr_in6 { c::sockaddr_in6 { sin6_family: c::AF_INET6 as c::sa_family_t, sin6_port: self.port().to_be(), sin6_addr: self.ip().into_inner(), sin6_flowinfo: self.flowinfo(), sin6_scope_id: self.scope_id(), ..unsafe { mem::zeroed() } } } } /// A trait for objects which can be converted or resolved to one or more /// [`SocketAddr`] values. /// /// This trait is used for generic address resolution when constructing network /// objects. By default it is implemented for the following types: /// /// * [`SocketAddr`]: [`to_socket_addrs`] is the identity function. /// /// * [`SocketAddrV4`], [`SocketAddrV6`], ([IpAddr], [u16]), /// ([Ipv4Addr], [u16]), ([Ipv6Addr], [u16]): /// [`to_socket_addrs`] constructs a [`SocketAddr`] trivially. /// /// * (&[str], [u16]): &[str] should be either a string representation /// of an [`IpAddr`] address as expected by [`FromStr`] implementation or a host /// name. [`u16`] is the port number. /// /// * &[str]: the string should be either a string representation of a /// [`SocketAddr`] as expected by its [`FromStr`] implementation or a string like /// `:` pair where `` is a [`u16`] value. /// /// This trait allows constructing network objects like [`TcpStream`] or /// [`UdpSocket`] easily with values of various types for the bind/connection /// address. It is needed because sometimes one type is more appropriate than /// the other: for simple uses a string like `"localhost:12345"` is much nicer /// than manual construction of the corresponding [`SocketAddr`], but sometimes /// [`SocketAddr`] value is *the* main source of the address, and converting it to /// some other type (e.g., a string) just for it to be converted back to /// [`SocketAddr`] in constructor methods is pointless. /// /// Addresses returned by the operating system that are not IP addresses are /// silently ignored. /// /// [`FromStr`]: crate::str::FromStr "std::str::FromStr" /// [`TcpStream`]: crate::net::TcpStream "net::TcpStream" /// [`to_socket_addrs`]: ToSocketAddrs::to_socket_addrs /// [`UdpSocket`]: crate::net::UdpSocket "net::UdpSocket" /// /// # Examples /// /// Creating a [`SocketAddr`] iterator that yields one item: /// /// ``` /// use std::net::{ToSocketAddrs, SocketAddr}; /// /// let addr = SocketAddr::from(([127, 0, 0, 1], 443)); /// let mut addrs_iter = addr.to_socket_addrs().unwrap(); /// /// assert_eq!(Some(addr), addrs_iter.next()); /// assert!(addrs_iter.next().is_none()); /// ``` /// /// Creating a [`SocketAddr`] iterator from a hostname: /// /// ```no_run /// use std::net::{SocketAddr, ToSocketAddrs}; /// /// // assuming 'localhost' resolves to 127.0.0.1 /// let mut addrs_iter = "localhost:443".to_socket_addrs().unwrap(); /// assert_eq!(addrs_iter.next(), Some(SocketAddr::from(([127, 0, 0, 1], 443)))); /// assert!(addrs_iter.next().is_none()); /// /// // assuming 'foo' does not resolve /// assert!("foo:443".to_socket_addrs().is_err()); /// ``` /// /// Creating a [`SocketAddr`] iterator that yields multiple items: /// /// ``` /// use std::net::{SocketAddr, ToSocketAddrs}; /// /// let addr1 = SocketAddr::from(([0, 0, 0, 0], 80)); /// let addr2 = SocketAddr::from(([127, 0, 0, 1], 443)); /// let addrs = vec![addr1, addr2]; /// /// let mut addrs_iter = (&addrs[..]).to_socket_addrs().unwrap(); /// /// assert_eq!(Some(addr1), addrs_iter.next()); /// assert_eq!(Some(addr2), addrs_iter.next()); /// assert!(addrs_iter.next().is_none()); /// ``` /// /// Attempting to create a [`SocketAddr`] iterator from an improperly formatted /// socket address `&str` (missing the port): /// /// ``` /// use std::io; /// use std::net::ToSocketAddrs; /// /// let err = "127.0.0.1".to_socket_addrs().unwrap_err(); /// assert_eq!(err.kind(), io::ErrorKind::InvalidInput); /// ``` /// /// [`TcpStream::connect`] is an example of an function that utilizes /// `ToSocketAddrs` as a trait bound on its parameter in order to accept /// different types: /// /// ```no_run /// use std::net::{TcpStream, Ipv4Addr}; /// /// let stream = TcpStream::connect(("127.0.0.1", 443)); /// // or /// let stream = TcpStream::connect("127.0.0.1:443"); /// // or /// let stream = TcpStream::connect((Ipv4Addr::new(127, 0, 0, 1), 443)); /// ``` /// /// [`TcpStream::connect`]: crate::net::TcpStream::connect #[stable(feature = "rust1", since = "1.0.0")] pub trait ToSocketAddrs { /// Returned iterator over socket addresses which this type may correspond /// to. #[stable(feature = "rust1", since = "1.0.0")] type Iter: Iterator; /// Converts this object to an iterator of resolved [`SocketAddr`]s. /// /// The returned iterator might not actually yield any values depending on the /// outcome of any resolution performed. /// /// Note that this function may block the current thread while resolution is /// performed. #[stable(feature = "rust1", since = "1.0.0")] fn to_socket_addrs(&self) -> io::Result; } #[stable(feature = "rust1", since = "1.0.0")] impl ToSocketAddrs for SocketAddr { type Iter = option::IntoIter; fn to_socket_addrs(&self) -> io::Result> { Ok(Some(*self).into_iter()) } } #[stable(feature = "rust1", since = "1.0.0")] impl ToSocketAddrs for SocketAddrV4 { type Iter = option::IntoIter; fn to_socket_addrs(&self) -> io::Result> { SocketAddr::V4(*self).to_socket_addrs() } } #[stable(feature = "rust1", since = "1.0.0")] impl ToSocketAddrs for SocketAddrV6 { type Iter = option::IntoIter; fn to_socket_addrs(&self) -> io::Result> { SocketAddr::V6(*self).to_socket_addrs() } } #[stable(feature = "rust1", since = "1.0.0")] impl ToSocketAddrs for (IpAddr, u16) { type Iter = option::IntoIter; fn to_socket_addrs(&self) -> io::Result> { let (ip, port) = *self; match ip { IpAddr::V4(ref a) => (*a, port).to_socket_addrs(), IpAddr::V6(ref a) => (*a, port).to_socket_addrs(), } } } #[stable(feature = "rust1", since = "1.0.0")] impl ToSocketAddrs for (Ipv4Addr, u16) { type Iter = option::IntoIter; fn to_socket_addrs(&self) -> io::Result> { let (ip, port) = *self; SocketAddrV4::new(ip, port).to_socket_addrs() } } #[stable(feature = "rust1", since = "1.0.0")] impl ToSocketAddrs for (Ipv6Addr, u16) { type Iter = option::IntoIter; fn to_socket_addrs(&self) -> io::Result> { let (ip, port) = *self; SocketAddrV6::new(ip, port, 0, 0).to_socket_addrs() } } fn resolve_socket_addr(lh: LookupHost) -> io::Result> { let p = lh.port(); let v: Vec<_> = lh .map(|mut a| { a.set_port(p); a }) .collect(); Ok(v.into_iter()) } #[stable(feature = "rust1", since = "1.0.0")] impl ToSocketAddrs for (&str, u16) { type Iter = vec::IntoIter; fn to_socket_addrs(&self) -> io::Result> { let (host, port) = *self; // try to parse the host as a regular IP address first if let Ok(addr) = host.parse::() { let addr = SocketAddrV4::new(addr, port); return Ok(vec![SocketAddr::V4(addr)].into_iter()); } if let Ok(addr) = host.parse::() { let addr = SocketAddrV6::new(addr, port, 0, 0); return Ok(vec![SocketAddr::V6(addr)].into_iter()); } resolve_socket_addr((host, port).try_into()?) } } #[stable(feature = "string_u16_to_socket_addrs", since = "1.46.0")] impl ToSocketAddrs for (String, u16) { type Iter = vec::IntoIter; fn to_socket_addrs(&self) -> io::Result> { (&*self.0, self.1).to_socket_addrs() } } // accepts strings like 'localhost:12345' #[stable(feature = "rust1", since = "1.0.0")] impl ToSocketAddrs for str { type Iter = vec::IntoIter; fn to_socket_addrs(&self) -> io::Result> { // try to parse as a regular SocketAddr first if let Ok(addr) = self.parse() { return Ok(vec![addr].into_iter()); } resolve_socket_addr(self.try_into()?) } } #[stable(feature = "slice_to_socket_addrs", since = "1.8.0")] impl<'a> ToSocketAddrs for &'a [SocketAddr] { type Iter = iter::Cloned>; fn to_socket_addrs(&self) -> io::Result { Ok(self.iter().cloned()) } } #[stable(feature = "rust1", since = "1.0.0")] impl ToSocketAddrs for &T { type Iter = T::Iter; fn to_socket_addrs(&self) -> io::Result { (**self).to_socket_addrs() } } #[stable(feature = "string_to_socket_addrs", since = "1.16.0")] impl ToSocketAddrs for String { type Iter = vec::IntoIter; fn to_socket_addrs(&self) -> io::Result> { (&**self).to_socket_addrs() } }