mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-06 04:08:40 +00:00

As per #117276, this PR moves `sys_common::net` and the `sys::pal::net` into the newly created `sys::net` module. In order to support #135141, I've moved all the current network code into a separate `connection` module, future functions like `hostname` can live in separate modules. I'll probably do a follow-up PR and clean up some of the actual code, this is mostly just a reorganization.
310 lines
10 KiB
Rust
310 lines
10 KiB
Rust
// Tests for this module
|
|
#[cfg(all(test, not(any(target_os = "emscripten", all(target_os = "wasi", target_env = "p1")))))]
|
|
mod tests;
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
pub use core::net::{SocketAddr, SocketAddrV4, SocketAddrV6};
|
|
|
|
use crate::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
|
use crate::sys::net::{LookupHost, netc as c};
|
|
use crate::sys_common::{FromInner, IntoInner};
|
|
use crate::{io, iter, mem, option, slice, vec};
|
|
|
|
impl FromInner<c::sockaddr_in> 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<c::sockaddr_in6> 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<c::sockaddr_in> 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<c::sockaddr_in6> 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`], <code>([IpAddr], [u16])</code>,
|
|
/// <code>([Ipv4Addr], [u16])</code>, <code>([Ipv6Addr], [u16])</code>:
|
|
/// [`to_socket_addrs`] constructs a [`SocketAddr`] trivially.
|
|
///
|
|
/// * <code>(&[str], [u16])</code>: <code>&[str]</code> should be either a string representation
|
|
/// of an [`IpAddr`] address as expected by [`FromStr`] implementation or a host
|
|
/// name. [`u16`] is the port number.
|
|
///
|
|
/// * <code>&[str]</code>: the string should be either a string representation of a
|
|
/// [`SocketAddr`] as expected by its [`FromStr`] implementation or a string like
|
|
/// `<host_name>:<port>` pair where `<port>` 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<Item = SocketAddr>;
|
|
|
|
/// 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<Self::Iter>;
|
|
}
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
impl ToSocketAddrs for SocketAddr {
|
|
type Iter = option::IntoIter<SocketAddr>;
|
|
fn to_socket_addrs(&self) -> io::Result<option::IntoIter<SocketAddr>> {
|
|
Ok(Some(*self).into_iter())
|
|
}
|
|
}
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
impl ToSocketAddrs for SocketAddrV4 {
|
|
type Iter = option::IntoIter<SocketAddr>;
|
|
fn to_socket_addrs(&self) -> io::Result<option::IntoIter<SocketAddr>> {
|
|
SocketAddr::V4(*self).to_socket_addrs()
|
|
}
|
|
}
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
impl ToSocketAddrs for SocketAddrV6 {
|
|
type Iter = option::IntoIter<SocketAddr>;
|
|
fn to_socket_addrs(&self) -> io::Result<option::IntoIter<SocketAddr>> {
|
|
SocketAddr::V6(*self).to_socket_addrs()
|
|
}
|
|
}
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
impl ToSocketAddrs for (IpAddr, u16) {
|
|
type Iter = option::IntoIter<SocketAddr>;
|
|
fn to_socket_addrs(&self) -> io::Result<option::IntoIter<SocketAddr>> {
|
|
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<SocketAddr>;
|
|
fn to_socket_addrs(&self) -> io::Result<option::IntoIter<SocketAddr>> {
|
|
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<SocketAddr>;
|
|
fn to_socket_addrs(&self) -> io::Result<option::IntoIter<SocketAddr>> {
|
|
let (ip, port) = *self;
|
|
SocketAddrV6::new(ip, port, 0, 0).to_socket_addrs()
|
|
}
|
|
}
|
|
|
|
fn resolve_socket_addr(lh: LookupHost) -> io::Result<vec::IntoIter<SocketAddr>> {
|
|
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<SocketAddr>;
|
|
fn to_socket_addrs(&self) -> io::Result<vec::IntoIter<SocketAddr>> {
|
|
let (host, port) = *self;
|
|
|
|
// try to parse the host as a regular IP address first
|
|
if let Ok(addr) = host.parse::<Ipv4Addr>() {
|
|
let addr = SocketAddrV4::new(addr, port);
|
|
return Ok(vec![SocketAddr::V4(addr)].into_iter());
|
|
}
|
|
if let Ok(addr) = host.parse::<Ipv6Addr>() {
|
|
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<SocketAddr>;
|
|
fn to_socket_addrs(&self) -> io::Result<vec::IntoIter<SocketAddr>> {
|
|
(&*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<SocketAddr>;
|
|
fn to_socket_addrs(&self) -> io::Result<vec::IntoIter<SocketAddr>> {
|
|
// 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<slice::Iter<'a, SocketAddr>>;
|
|
|
|
fn to_socket_addrs(&self) -> io::Result<Self::Iter> {
|
|
Ok(self.iter().cloned())
|
|
}
|
|
}
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
impl<T: ToSocketAddrs + ?Sized> ToSocketAddrs for &T {
|
|
type Iter = T::Iter;
|
|
fn to_socket_addrs(&self) -> io::Result<T::Iter> {
|
|
(**self).to_socket_addrs()
|
|
}
|
|
}
|
|
|
|
#[stable(feature = "string_to_socket_addrs", since = "1.16.0")]
|
|
impl ToSocketAddrs for String {
|
|
type Iter = vec::IntoIter<SocketAddr>;
|
|
fn to_socket_addrs(&self) -> io::Result<vec::IntoIter<SocketAddr>> {
|
|
(&**self).to_socket_addrs()
|
|
}
|
|
}
|