2014-02-10 08:36:31 -06:00
|
|
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-12-27 19:50:16 -06:00
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-02-10 08:36:31 -06:00
|
|
|
#[allow(non_camel_case_types)];
|
|
|
|
|
2013-12-27 19:50:16 -06:00
|
|
|
use std::cast;
|
|
|
|
use std::io::net::ip;
|
|
|
|
use std::io;
|
|
|
|
use std::libc;
|
|
|
|
use std::mem;
|
|
|
|
use std::rt::rtio;
|
2014-01-22 21:32:16 -06:00
|
|
|
use std::sync::arc::UnsafeArc;
|
2013-12-27 19:50:16 -06:00
|
|
|
|
2014-01-04 01:49:56 -06:00
|
|
|
use super::{IoResult, retry};
|
2013-12-27 19:50:16 -06:00
|
|
|
use super::file::keep_going;
|
|
|
|
|
2013-12-28 18:40:15 -06:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// sockaddr and misc bindings
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-12-27 19:50:16 -06:00
|
|
|
#[cfg(windows)] pub type sock_t = libc::SOCKET;
|
|
|
|
#[cfg(unix)] pub type sock_t = super::file::fd_t;
|
|
|
|
|
|
|
|
pub fn htons(u: u16) -> u16 {
|
2014-02-09 02:17:37 -06:00
|
|
|
mem::to_be16(u as i16) as u16
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
pub fn ntohs(u: u16) -> u16 {
|
2014-02-09 02:17:37 -06:00
|
|
|
mem::from_be16(u as i16) as u16
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
|
2013-12-28 18:40:15 -06:00
|
|
|
enum InAddr {
|
|
|
|
InAddr(libc::in_addr),
|
|
|
|
In6Addr(libc::in6_addr),
|
|
|
|
}
|
|
|
|
|
|
|
|
fn ip_to_inaddr(ip: ip::IpAddr) -> InAddr {
|
|
|
|
match ip {
|
|
|
|
ip::Ipv4Addr(a, b, c, d) => {
|
|
|
|
InAddr(libc::in_addr {
|
|
|
|
s_addr: (d as u32 << 24) |
|
|
|
|
(c as u32 << 16) |
|
|
|
|
(b as u32 << 8) |
|
|
|
|
(a as u32 << 0)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
ip::Ipv6Addr(a, b, c, d, e, f, g, h) => {
|
|
|
|
In6Addr(libc::in6_addr {
|
|
|
|
s6_addr: [
|
|
|
|
htons(a),
|
|
|
|
htons(b),
|
|
|
|
htons(c),
|
|
|
|
htons(d),
|
|
|
|
htons(e),
|
|
|
|
htons(f),
|
|
|
|
htons(g),
|
|
|
|
htons(h),
|
|
|
|
]
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-27 19:50:16 -06:00
|
|
|
fn addr_to_sockaddr(addr: ip::SocketAddr) -> (libc::sockaddr_storage, uint) {
|
|
|
|
unsafe {
|
2014-02-08 04:46:55 -06:00
|
|
|
let storage: libc::sockaddr_storage = mem::init();
|
2013-12-28 18:40:15 -06:00
|
|
|
let len = match ip_to_inaddr(addr.ip) {
|
|
|
|
InAddr(inaddr) => {
|
2013-12-27 19:50:16 -06:00
|
|
|
let storage: *mut libc::sockaddr_in = cast::transmute(&storage);
|
|
|
|
(*storage).sin_family = libc::AF_INET as libc::sa_family_t;
|
|
|
|
(*storage).sin_port = htons(addr.port);
|
2013-12-28 18:40:15 -06:00
|
|
|
(*storage).sin_addr = inaddr;
|
2013-12-27 19:50:16 -06:00
|
|
|
mem::size_of::<libc::sockaddr_in>()
|
|
|
|
}
|
2013-12-28 18:40:15 -06:00
|
|
|
In6Addr(inaddr) => {
|
2013-12-27 19:50:16 -06:00
|
|
|
let storage: *mut libc::sockaddr_in6 = cast::transmute(&storage);
|
|
|
|
(*storage).sin6_family = libc::AF_INET6 as libc::sa_family_t;
|
|
|
|
(*storage).sin6_port = htons(addr.port);
|
2013-12-28 18:40:15 -06:00
|
|
|
(*storage).sin6_addr = inaddr;
|
2013-12-27 19:50:16 -06:00
|
|
|
mem::size_of::<libc::sockaddr_in6>()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
return (storage, len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-28 18:40:15 -06:00
|
|
|
fn socket(addr: ip::SocketAddr, ty: libc::c_int) -> IoResult<sock_t> {
|
2013-12-27 19:50:16 -06:00
|
|
|
unsafe {
|
|
|
|
let fam = match addr.ip {
|
|
|
|
ip::Ipv4Addr(..) => libc::AF_INET,
|
|
|
|
ip::Ipv6Addr(..) => libc::AF_INET6,
|
|
|
|
};
|
2013-12-28 18:40:15 -06:00
|
|
|
match libc::socket(fam, ty, 0) {
|
2013-12-27 19:50:16 -06:00
|
|
|
-1 => Err(super::last_error()),
|
|
|
|
fd => Ok(fd),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-28 18:40:15 -06:00
|
|
|
fn setsockopt<T>(fd: sock_t, opt: libc::c_int, val: libc::c_int,
|
|
|
|
payload: T) -> IoResult<()> {
|
|
|
|
unsafe {
|
|
|
|
let payload = &payload as *T as *libc::c_void;
|
|
|
|
let ret = libc::setsockopt(fd, opt, val,
|
|
|
|
payload,
|
|
|
|
mem::size_of::<T>() as libc::socklen_t);
|
2014-01-22 21:32:16 -06:00
|
|
|
if ret != 0 {
|
|
|
|
Err(last_error())
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
2013-12-28 18:40:15 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-22 21:32:16 -06:00
|
|
|
#[cfg(windows)]
|
|
|
|
fn last_error() -> io::IoError {
|
|
|
|
extern "system" {
|
|
|
|
fn WSAGetLastError() -> libc::c_int;
|
|
|
|
}
|
|
|
|
super::translate_error(unsafe { WSAGetLastError() }, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
fn last_error() -> io::IoError {
|
|
|
|
super::last_error()
|
|
|
|
}
|
|
|
|
|
2014-01-30 16:28:28 -06:00
|
|
|
#[cfg(windows)] unsafe fn close(sock: sock_t) { let _ = libc::closesocket(sock); }
|
|
|
|
#[cfg(unix)] unsafe fn close(sock: sock_t) { let _ = libc::close(sock); }
|
2013-12-28 18:40:15 -06:00
|
|
|
|
2013-12-27 19:50:16 -06:00
|
|
|
fn sockname(fd: sock_t,
|
|
|
|
f: extern "system" unsafe fn(sock_t, *mut libc::sockaddr,
|
|
|
|
*mut libc::socklen_t) -> libc::c_int)
|
|
|
|
-> IoResult<ip::SocketAddr>
|
|
|
|
{
|
2014-02-08 04:46:55 -06:00
|
|
|
let mut storage: libc::sockaddr_storage = unsafe { mem::init() };
|
2013-12-27 19:50:16 -06:00
|
|
|
let mut len = mem::size_of::<libc::sockaddr_storage>() as libc::socklen_t;
|
|
|
|
unsafe {
|
|
|
|
let storage = &mut storage as *mut libc::sockaddr_storage;
|
|
|
|
let ret = f(fd,
|
|
|
|
storage as *mut libc::sockaddr,
|
|
|
|
&mut len as *mut libc::socklen_t);
|
|
|
|
if ret != 0 {
|
2014-01-22 21:32:16 -06:00
|
|
|
return Err(last_error())
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
}
|
2013-12-28 18:40:15 -06:00
|
|
|
return sockaddr_to_addr(&storage, len as uint);
|
|
|
|
}
|
|
|
|
|
2014-01-22 14:38:19 -06:00
|
|
|
pub fn sockaddr_to_addr(storage: &libc::sockaddr_storage,
|
|
|
|
len: uint) -> IoResult<ip::SocketAddr> {
|
2013-12-27 19:50:16 -06:00
|
|
|
match storage.ss_family as libc::c_int {
|
|
|
|
libc::AF_INET => {
|
|
|
|
assert!(len as uint >= mem::size_of::<libc::sockaddr_in>());
|
2013-12-28 18:40:15 -06:00
|
|
|
let storage: &libc::sockaddr_in = unsafe {
|
|
|
|
cast::transmute(storage)
|
2013-12-27 19:50:16 -06:00
|
|
|
};
|
|
|
|
let addr = storage.sin_addr.s_addr as u32;
|
|
|
|
let a = (addr >> 0) as u8;
|
|
|
|
let b = (addr >> 8) as u8;
|
|
|
|
let c = (addr >> 16) as u8;
|
|
|
|
let d = (addr >> 24) as u8;
|
|
|
|
Ok(ip::SocketAddr {
|
|
|
|
ip: ip::Ipv4Addr(a, b, c, d),
|
|
|
|
port: ntohs(storage.sin_port),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
libc::AF_INET6 => {
|
|
|
|
assert!(len as uint >= mem::size_of::<libc::sockaddr_in6>());
|
2013-12-28 18:40:15 -06:00
|
|
|
let storage: &libc::sockaddr_in6 = unsafe {
|
|
|
|
cast::transmute(storage)
|
2013-12-27 19:50:16 -06:00
|
|
|
};
|
|
|
|
let a = ntohs(storage.sin6_addr.s6_addr[0]);
|
|
|
|
let b = ntohs(storage.sin6_addr.s6_addr[1]);
|
|
|
|
let c = ntohs(storage.sin6_addr.s6_addr[2]);
|
|
|
|
let d = ntohs(storage.sin6_addr.s6_addr[3]);
|
|
|
|
let e = ntohs(storage.sin6_addr.s6_addr[4]);
|
|
|
|
let f = ntohs(storage.sin6_addr.s6_addr[5]);
|
|
|
|
let g = ntohs(storage.sin6_addr.s6_addr[6]);
|
|
|
|
let h = ntohs(storage.sin6_addr.s6_addr[7]);
|
|
|
|
Ok(ip::SocketAddr {
|
|
|
|
ip: ip::Ipv6Addr(a, b, c, d, e, f, g, h),
|
|
|
|
port: ntohs(storage.sin6_port),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
Err(io::standard_error(io::OtherIoError))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(unix)]
|
|
|
|
pub fn init() {}
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
pub fn init() {
|
|
|
|
static WSADESCRIPTION_LEN: uint = 256;
|
|
|
|
static WSASYS_STATUS_LEN: uint = 128;
|
|
|
|
struct WSADATA {
|
|
|
|
wVersion: libc::WORD,
|
|
|
|
wHighVersion: libc::WORD,
|
|
|
|
szDescription: [u8, ..WSADESCRIPTION_LEN + 1],
|
|
|
|
szSystemStatus: [u8, ..WSASYS_STATUS_LEN + 1],
|
|
|
|
iMaxSockets: u16,
|
|
|
|
iMaxUdpDg: u16,
|
|
|
|
lpVendorInfo: *u8,
|
|
|
|
}
|
|
|
|
type LPWSADATA = *mut WSADATA;
|
|
|
|
|
|
|
|
#[link(name = "ws2_32")]
|
|
|
|
extern "system" {
|
|
|
|
fn WSAStartup(wVersionRequested: libc::WORD,
|
|
|
|
lpWSAData: LPWSADATA) -> libc::c_int;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe {
|
2014-02-14 18:18:49 -06:00
|
|
|
use std::unstable::mutex::{StaticNativeMutex, NATIVE_MUTEX_INIT};
|
2014-01-16 21:57:59 -06:00
|
|
|
static mut INITIALIZED: bool = false;
|
2014-02-14 18:18:49 -06:00
|
|
|
static mut LOCK: StaticNativeMutex = NATIVE_MUTEX_INIT;
|
2014-01-28 00:41:25 -06:00
|
|
|
|
2014-02-13 00:17:50 -06:00
|
|
|
let _guard = LOCK.lock();
|
2014-01-28 00:41:25 -06:00
|
|
|
if !INITIALIZED {
|
2014-02-08 04:46:55 -06:00
|
|
|
let mut data: WSADATA = mem::init();
|
2014-01-28 00:41:25 -06:00
|
|
|
let ret = WSAStartup(0x202, // version 2.2
|
|
|
|
&mut data);
|
|
|
|
assert_eq!(ret, 0);
|
|
|
|
INITIALIZED = true;
|
2014-01-16 21:57:59 -06:00
|
|
|
}
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-28 18:40:15 -06:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// TCP streams
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
pub struct TcpStream {
|
2014-01-22 21:32:16 -06:00
|
|
|
priv inner: UnsafeArc<Inner>,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Inner {
|
|
|
|
fd: sock_t,
|
2013-12-28 18:40:15 -06:00
|
|
|
}
|
|
|
|
|
2013-12-27 19:50:16 -06:00
|
|
|
impl TcpStream {
|
|
|
|
pub fn connect(addr: ip::SocketAddr) -> IoResult<TcpStream> {
|
|
|
|
unsafe {
|
2013-12-28 18:40:15 -06:00
|
|
|
socket(addr, libc::SOCK_STREAM).and_then(|fd| {
|
2013-12-27 19:50:16 -06:00
|
|
|
let (addr, len) = addr_to_sockaddr(addr);
|
|
|
|
let addrp = &addr as *libc::sockaddr_storage;
|
2014-01-22 21:32:16 -06:00
|
|
|
let inner = Inner { fd: fd };
|
|
|
|
let ret = TcpStream { inner: UnsafeArc::new(inner) };
|
2014-01-04 01:49:56 -06:00
|
|
|
match retry(|| {
|
|
|
|
libc::connect(fd, addrp as *libc::sockaddr,
|
|
|
|
len as libc::socklen_t)
|
|
|
|
}) {
|
2014-01-22 21:32:16 -06:00
|
|
|
-1 => Err(last_error()),
|
2013-12-27 19:50:16 -06:00
|
|
|
_ => Ok(ret),
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-22 21:32:16 -06:00
|
|
|
pub fn fd(&self) -> sock_t {
|
|
|
|
// This unsafety is fine because it's just a read-only arc
|
|
|
|
unsafe { (*self.inner.get()).fd }
|
|
|
|
}
|
2013-12-27 19:50:16 -06:00
|
|
|
|
|
|
|
fn set_nodelay(&mut self, nodelay: bool) -> IoResult<()> {
|
2014-01-22 21:32:16 -06:00
|
|
|
setsockopt(self.fd(), libc::IPPROTO_TCP, libc::TCP_NODELAY,
|
2013-12-28 18:40:15 -06:00
|
|
|
nodelay as libc::c_int)
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn set_keepalive(&mut self, seconds: Option<uint>) -> IoResult<()> {
|
2014-01-22 21:32:16 -06:00
|
|
|
let ret = setsockopt(self.fd(), libc::SOL_SOCKET, libc::SO_KEEPALIVE,
|
2013-12-28 18:40:15 -06:00
|
|
|
seconds.is_some() as libc::c_int);
|
|
|
|
match seconds {
|
|
|
|
Some(n) => ret.and_then(|()| self.set_tcp_keepalive(n)),
|
|
|
|
None => ret,
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_os = "macos")]
|
2013-12-28 18:40:15 -06:00
|
|
|
fn set_tcp_keepalive(&mut self, seconds: uint) -> IoResult<()> {
|
2014-01-22 21:32:16 -06:00
|
|
|
setsockopt(self.fd(), libc::IPPROTO_TCP, libc::TCP_KEEPALIVE,
|
2013-12-28 18:40:15 -06:00
|
|
|
seconds as libc::c_int)
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
#[cfg(target_os = "freebsd")]
|
2013-12-28 18:40:15 -06:00
|
|
|
fn set_tcp_keepalive(&mut self, seconds: uint) -> IoResult<()> {
|
2014-01-22 21:32:16 -06:00
|
|
|
setsockopt(self.fd(), libc::IPPROTO_TCP, libc::TCP_KEEPIDLE,
|
2013-12-28 18:40:15 -06:00
|
|
|
seconds as libc::c_int)
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
#[cfg(not(target_os = "macos"), not(target_os = "freebsd"))]
|
2013-12-28 18:40:15 -06:00
|
|
|
fn set_tcp_keepalive(&mut self, _seconds: uint) -> IoResult<()> {
|
2013-12-27 19:50:16 -06:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(windows)] type wrlen = libc::c_int;
|
|
|
|
#[cfg(not(windows))] type wrlen = libc::size_t;
|
|
|
|
|
|
|
|
impl rtio::RtioTcpStream for TcpStream {
|
|
|
|
fn read(&mut self, buf: &mut [u8]) -> IoResult<uint> {
|
2014-01-06 00:16:16 -06:00
|
|
|
let ret = retry(|| {
|
2013-12-27 19:50:16 -06:00
|
|
|
unsafe {
|
2014-01-22 21:32:16 -06:00
|
|
|
libc::recv(self.fd(),
|
2014-01-06 00:16:16 -06:00
|
|
|
buf.as_ptr() as *mut libc::c_void,
|
|
|
|
buf.len() as wrlen,
|
|
|
|
0) as libc::c_int
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
});
|
|
|
|
if ret == 0 {
|
|
|
|
Err(io::standard_error(io::EndOfFile))
|
|
|
|
} else if ret < 0 {
|
2014-01-22 21:32:16 -06:00
|
|
|
Err(last_error())
|
2013-12-27 19:50:16 -06:00
|
|
|
} else {
|
|
|
|
Ok(ret as uint)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn write(&mut self, buf: &[u8]) -> IoResult<()> {
|
|
|
|
let ret = keep_going(buf, |buf, len| {
|
|
|
|
unsafe {
|
2014-01-22 21:32:16 -06:00
|
|
|
libc::send(self.fd(),
|
2013-12-27 19:50:16 -06:00
|
|
|
buf as *mut libc::c_void,
|
|
|
|
len as wrlen,
|
|
|
|
0) as i64
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if ret < 0 {
|
2014-01-22 21:32:16 -06:00
|
|
|
Err(last_error())
|
2013-12-27 19:50:16 -06:00
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn peer_name(&mut self) -> IoResult<ip::SocketAddr> {
|
2014-01-22 21:32:16 -06:00
|
|
|
sockname(self.fd(), libc::getpeername)
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
fn control_congestion(&mut self) -> IoResult<()> {
|
|
|
|
self.set_nodelay(false)
|
|
|
|
}
|
|
|
|
fn nodelay(&mut self) -> IoResult<()> {
|
|
|
|
self.set_nodelay(true)
|
|
|
|
}
|
|
|
|
fn keepalive(&mut self, delay_in_seconds: uint) -> IoResult<()> {
|
|
|
|
self.set_keepalive(Some(delay_in_seconds))
|
|
|
|
}
|
|
|
|
fn letdie(&mut self) -> IoResult<()> {
|
|
|
|
self.set_keepalive(None)
|
|
|
|
}
|
2014-01-22 21:32:16 -06:00
|
|
|
|
|
|
|
fn clone(&self) -> ~rtio::RtioTcpStream {
|
|
|
|
~TcpStream { inner: self.inner.clone() } as ~rtio::RtioTcpStream
|
|
|
|
}
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl rtio::RtioSocket for TcpStream {
|
|
|
|
fn socket_name(&mut self) -> IoResult<ip::SocketAddr> {
|
2014-01-22 21:32:16 -06:00
|
|
|
sockname(self.fd(), libc::getsockname)
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-22 21:32:16 -06:00
|
|
|
impl Drop for Inner {
|
2013-12-28 18:40:15 -06:00
|
|
|
fn drop(&mut self) { unsafe { close(self.fd); } }
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
|
2013-12-28 18:40:15 -06:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// TCP listeners
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-12-27 19:50:16 -06:00
|
|
|
pub struct TcpListener {
|
2014-01-22 21:32:16 -06:00
|
|
|
priv inner: UnsafeArc<Inner>,
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl TcpListener {
|
|
|
|
pub fn bind(addr: ip::SocketAddr) -> IoResult<TcpListener> {
|
|
|
|
unsafe {
|
2013-12-28 18:40:15 -06:00
|
|
|
socket(addr, libc::SOCK_STREAM).and_then(|fd| {
|
2013-12-27 19:50:16 -06:00
|
|
|
let (addr, len) = addr_to_sockaddr(addr);
|
|
|
|
let addrp = &addr as *libc::sockaddr_storage;
|
2014-01-22 21:32:16 -06:00
|
|
|
let inner = Inner { fd: fd };
|
|
|
|
let ret = TcpListener { inner: UnsafeArc::new(inner) };
|
2014-01-27 08:24:01 -06:00
|
|
|
// On platforms with Berkeley-derived sockets, this allows
|
|
|
|
// to quickly rebind a socket, without needing to wait for
|
|
|
|
// the OS to clean up the previous one.
|
|
|
|
if cfg!(unix) {
|
|
|
|
match setsockopt(fd, libc::SOL_SOCKET,
|
|
|
|
libc::SO_REUSEADDR,
|
|
|
|
1 as libc::c_int) {
|
|
|
|
Err(n) => { return Err(n); },
|
|
|
|
Ok(..) => { }
|
|
|
|
}
|
|
|
|
}
|
2013-12-27 19:50:16 -06:00
|
|
|
match libc::bind(fd, addrp as *libc::sockaddr,
|
|
|
|
len as libc::socklen_t) {
|
2014-01-22 21:32:16 -06:00
|
|
|
-1 => Err(last_error()),
|
2013-12-27 19:50:16 -06:00
|
|
|
_ => Ok(ret),
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-22 21:32:16 -06:00
|
|
|
pub fn fd(&self) -> sock_t {
|
|
|
|
// This is just a read-only arc so the unsafety is fine
|
|
|
|
unsafe { (*self.inner.get()).fd }
|
|
|
|
}
|
2013-12-27 19:50:16 -06:00
|
|
|
|
|
|
|
pub fn native_listen(self, backlog: int) -> IoResult<TcpAcceptor> {
|
2014-01-22 21:32:16 -06:00
|
|
|
match unsafe { libc::listen(self.fd(), backlog as libc::c_int) } {
|
|
|
|
-1 => Err(last_error()),
|
2013-12-28 18:40:15 -06:00
|
|
|
_ => Ok(TcpAcceptor { listener: self })
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl rtio::RtioTcpListener for TcpListener {
|
|
|
|
fn listen(~self) -> IoResult<~rtio::RtioTcpAcceptor> {
|
|
|
|
self.native_listen(128).map(|a| ~a as ~rtio::RtioTcpAcceptor)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl rtio::RtioSocket for TcpListener {
|
|
|
|
fn socket_name(&mut self) -> IoResult<ip::SocketAddr> {
|
2014-01-22 21:32:16 -06:00
|
|
|
sockname(self.fd(), libc::getsockname)
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct TcpAcceptor {
|
2013-12-28 18:40:15 -06:00
|
|
|
priv listener: TcpListener,
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl TcpAcceptor {
|
2014-01-22 21:32:16 -06:00
|
|
|
pub fn fd(&self) -> sock_t { self.listener.fd() }
|
2013-12-27 19:50:16 -06:00
|
|
|
|
|
|
|
pub fn native_accept(&mut self) -> IoResult<TcpStream> {
|
|
|
|
unsafe {
|
2014-02-08 04:46:55 -06:00
|
|
|
let mut storage: libc::sockaddr_storage = mem::init();
|
2013-12-27 19:50:16 -06:00
|
|
|
let storagep = &mut storage as *mut libc::sockaddr_storage;
|
|
|
|
let size = mem::size_of::<libc::sockaddr_storage>();
|
|
|
|
let mut size = size as libc::socklen_t;
|
2014-01-04 01:49:56 -06:00
|
|
|
match retry(|| {
|
|
|
|
libc::accept(self.fd(),
|
|
|
|
storagep as *mut libc::sockaddr,
|
|
|
|
&mut size as *mut libc::socklen_t) as libc::c_int
|
|
|
|
}) as sock_t {
|
2014-01-22 21:32:16 -06:00
|
|
|
-1 => Err(last_error()),
|
|
|
|
fd => Ok(TcpStream { inner: UnsafeArc::new(Inner { fd: fd })})
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl rtio::RtioSocket for TcpAcceptor {
|
|
|
|
fn socket_name(&mut self) -> IoResult<ip::SocketAddr> {
|
2013-12-28 18:40:15 -06:00
|
|
|
sockname(self.fd(), libc::getsockname)
|
2013-12-27 19:50:16 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl rtio::RtioTcpAcceptor for TcpAcceptor {
|
|
|
|
fn accept(&mut self) -> IoResult<~rtio::RtioTcpStream> {
|
|
|
|
self.native_accept().map(|s| ~s as ~rtio::RtioTcpStream)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn accept_simultaneously(&mut self) -> IoResult<()> { Ok(()) }
|
|
|
|
fn dont_accept_simultaneously(&mut self) -> IoResult<()> { Ok(()) }
|
|
|
|
}
|
2013-12-28 18:40:15 -06:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// UDP
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
pub struct UdpSocket {
|
2014-01-22 21:32:16 -06:00
|
|
|
priv inner: UnsafeArc<Inner>,
|
2013-12-28 18:40:15 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl UdpSocket {
|
|
|
|
pub fn bind(addr: ip::SocketAddr) -> IoResult<UdpSocket> {
|
|
|
|
unsafe {
|
|
|
|
socket(addr, libc::SOCK_DGRAM).and_then(|fd| {
|
|
|
|
let (addr, len) = addr_to_sockaddr(addr);
|
|
|
|
let addrp = &addr as *libc::sockaddr_storage;
|
2014-01-22 21:32:16 -06:00
|
|
|
let inner = Inner { fd: fd };
|
|
|
|
let ret = UdpSocket { inner: UnsafeArc::new(inner) };
|
2013-12-28 18:40:15 -06:00
|
|
|
match libc::bind(fd, addrp as *libc::sockaddr,
|
|
|
|
len as libc::socklen_t) {
|
2014-01-22 21:32:16 -06:00
|
|
|
-1 => Err(last_error()),
|
2013-12-28 18:40:15 -06:00
|
|
|
_ => Ok(ret),
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-22 21:32:16 -06:00
|
|
|
pub fn fd(&self) -> sock_t {
|
|
|
|
// unsafety is fine because it's just a read-only arc
|
|
|
|
unsafe { (*self.inner.get()).fd }
|
|
|
|
}
|
2013-12-28 18:40:15 -06:00
|
|
|
|
|
|
|
pub fn set_broadcast(&mut self, on: bool) -> IoResult<()> {
|
2014-01-22 21:32:16 -06:00
|
|
|
setsockopt(self.fd(), libc::SOL_SOCKET, libc::SO_BROADCAST,
|
2013-12-28 18:40:15 -06:00
|
|
|
on as libc::c_int)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_multicast_loop(&mut self, on: bool) -> IoResult<()> {
|
2014-01-22 21:32:16 -06:00
|
|
|
setsockopt(self.fd(), libc::IPPROTO_IP, libc::IP_MULTICAST_LOOP,
|
2013-12-28 18:40:15 -06:00
|
|
|
on as libc::c_int)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_membership(&mut self, addr: ip::IpAddr,
|
|
|
|
opt: libc::c_int) -> IoResult<()> {
|
|
|
|
match ip_to_inaddr(addr) {
|
|
|
|
InAddr(addr) => {
|
|
|
|
let mreq = libc::ip_mreq {
|
|
|
|
imr_multiaddr: addr,
|
|
|
|
// interface == INADDR_ANY
|
|
|
|
imr_interface: libc::in_addr { s_addr: 0x0 },
|
|
|
|
};
|
2014-01-22 21:32:16 -06:00
|
|
|
setsockopt(self.fd(), libc::IPPROTO_IP, opt, mreq)
|
2013-12-28 18:40:15 -06:00
|
|
|
}
|
|
|
|
In6Addr(addr) => {
|
|
|
|
let mreq = libc::ip6_mreq {
|
|
|
|
ipv6mr_multiaddr: addr,
|
|
|
|
ipv6mr_interface: 0,
|
|
|
|
};
|
2014-01-22 21:32:16 -06:00
|
|
|
setsockopt(self.fd(), libc::IPPROTO_IPV6, opt, mreq)
|
2013-12-28 18:40:15 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl rtio::RtioSocket for UdpSocket {
|
|
|
|
fn socket_name(&mut self) -> IoResult<ip::SocketAddr> {
|
|
|
|
sockname(self.fd(), libc::getsockname)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(windows)] type msglen_t = libc::c_int;
|
|
|
|
#[cfg(unix)] type msglen_t = libc::size_t;
|
|
|
|
|
|
|
|
impl rtio::RtioUdpSocket for UdpSocket {
|
|
|
|
fn recvfrom(&mut self, buf: &mut [u8]) -> IoResult<(uint, ip::SocketAddr)> {
|
|
|
|
unsafe {
|
2014-02-08 04:46:55 -06:00
|
|
|
let mut storage: libc::sockaddr_storage = mem::init();
|
2013-12-28 18:40:15 -06:00
|
|
|
let storagep = &mut storage as *mut libc::sockaddr_storage;
|
|
|
|
let mut addrlen: libc::socklen_t =
|
|
|
|
mem::size_of::<libc::sockaddr_storage>() as libc::socklen_t;
|
2014-01-04 01:49:56 -06:00
|
|
|
let ret = retry(|| {
|
2014-01-22 21:32:16 -06:00
|
|
|
libc::recvfrom(self.fd(),
|
2014-01-04 01:49:56 -06:00
|
|
|
buf.as_ptr() as *mut libc::c_void,
|
|
|
|
buf.len() as msglen_t,
|
|
|
|
0,
|
|
|
|
storagep as *mut libc::sockaddr,
|
|
|
|
&mut addrlen) as libc::c_int
|
|
|
|
});
|
2014-01-22 21:32:16 -06:00
|
|
|
if ret < 0 { return Err(last_error()) }
|
2013-12-28 18:40:15 -06:00
|
|
|
sockaddr_to_addr(&storage, addrlen as uint).and_then(|addr| {
|
|
|
|
Ok((ret as uint, addr))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn sendto(&mut self, buf: &[u8], dst: ip::SocketAddr) -> IoResult<()> {
|
|
|
|
let (dst, len) = addr_to_sockaddr(dst);
|
|
|
|
let dstp = &dst as *libc::sockaddr_storage;
|
|
|
|
unsafe {
|
2014-01-04 01:49:56 -06:00
|
|
|
let ret = retry(|| {
|
2014-01-22 21:32:16 -06:00
|
|
|
libc::sendto(self.fd(),
|
2014-01-04 01:49:56 -06:00
|
|
|
buf.as_ptr() as *libc::c_void,
|
|
|
|
buf.len() as msglen_t,
|
|
|
|
0,
|
|
|
|
dstp as *libc::sockaddr,
|
|
|
|
len as libc::socklen_t) as libc::c_int
|
|
|
|
});
|
2013-12-28 18:40:15 -06:00
|
|
|
match ret {
|
2014-01-22 21:32:16 -06:00
|
|
|
-1 => Err(last_error()),
|
2013-12-28 18:40:15 -06:00
|
|
|
n if n as uint != buf.len() => {
|
|
|
|
Err(io::IoError {
|
|
|
|
kind: io::OtherIoError,
|
|
|
|
desc: "couldn't send entire packet at once",
|
|
|
|
detail: None,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
_ => Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn join_multicast(&mut self, multi: ip::IpAddr) -> IoResult<()> {
|
|
|
|
match multi {
|
|
|
|
ip::Ipv4Addr(..) => {
|
|
|
|
self.set_membership(multi, libc::IP_ADD_MEMBERSHIP)
|
|
|
|
}
|
|
|
|
ip::Ipv6Addr(..) => {
|
|
|
|
self.set_membership(multi, libc::IPV6_ADD_MEMBERSHIP)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn leave_multicast(&mut self, multi: ip::IpAddr) -> IoResult<()> {
|
|
|
|
match multi {
|
|
|
|
ip::Ipv4Addr(..) => {
|
|
|
|
self.set_membership(multi, libc::IP_DROP_MEMBERSHIP)
|
|
|
|
}
|
|
|
|
ip::Ipv6Addr(..) => {
|
|
|
|
self.set_membership(multi, libc::IPV6_DROP_MEMBERSHIP)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn loop_multicast_locally(&mut self) -> IoResult<()> {
|
|
|
|
self.set_multicast_loop(true)
|
|
|
|
}
|
|
|
|
fn dont_loop_multicast_locally(&mut self) -> IoResult<()> {
|
|
|
|
self.set_multicast_loop(false)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn multicast_time_to_live(&mut self, ttl: int) -> IoResult<()> {
|
2014-01-22 21:32:16 -06:00
|
|
|
setsockopt(self.fd(), libc::IPPROTO_IP, libc::IP_MULTICAST_TTL,
|
2013-12-28 18:40:15 -06:00
|
|
|
ttl as libc::c_int)
|
|
|
|
}
|
|
|
|
fn time_to_live(&mut self, ttl: int) -> IoResult<()> {
|
2014-01-22 21:32:16 -06:00
|
|
|
setsockopt(self.fd(), libc::IPPROTO_IP, libc::IP_TTL, ttl as libc::c_int)
|
2013-12-28 18:40:15 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn hear_broadcasts(&mut self) -> IoResult<()> {
|
|
|
|
self.set_broadcast(true)
|
|
|
|
}
|
|
|
|
fn ignore_broadcasts(&mut self) -> IoResult<()> {
|
|
|
|
self.set_broadcast(false)
|
|
|
|
}
|
|
|
|
|
2014-01-22 21:32:16 -06:00
|
|
|
fn clone(&self) -> ~rtio::RtioUdpSocket {
|
|
|
|
~UdpSocket { inner: self.inner.clone() } as ~rtio::RtioUdpSocket
|
|
|
|
}
|
2013-12-28 18:40:15 -06:00
|
|
|
}
|