2013-04-17 17:55:21 -07:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// 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.
|
|
|
|
|
2013-10-15 19:44:08 -07:00
|
|
|
/*!
|
|
|
|
|
|
|
|
Named pipes
|
|
|
|
|
|
|
|
This module contains the ability to communicate over named pipes with
|
|
|
|
synchronous I/O. On windows, this corresponds to talking over a Named Pipe,
|
|
|
|
while on Unix it corresponds to UNIX domain sockets.
|
|
|
|
|
|
|
|
These pipes are similar to TCP in the sense that you can have both a stream to a
|
|
|
|
server and a server itself. The server provided accepts other `UnixStream`
|
|
|
|
instances as clients.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2014-03-21 18:05:05 -07:00
|
|
|
#![allow(missing_doc)]
|
2014-02-24 00:31:08 -08:00
|
|
|
|
2013-04-17 17:55:21 -07:00
|
|
|
use prelude::*;
|
2013-10-15 19:44:08 -07:00
|
|
|
|
2013-10-16 16:48:30 -07:00
|
|
|
use c_str::ToCStr;
|
2014-01-22 19:32:16 -08:00
|
|
|
use clone::Clone;
|
2014-01-29 16:33:57 -08:00
|
|
|
use io::{Listener, Acceptor, Reader, Writer, IoResult};
|
2014-03-08 18:21:49 -08:00
|
|
|
use kinds::Send;
|
2014-05-05 18:56:44 -07:00
|
|
|
use owned::Box;
|
2014-03-08 18:21:49 -08:00
|
|
|
use rt::rtio::{IoFactory, LocalIo, RtioUnixListener};
|
|
|
|
use rt::rtio::{RtioUnixAcceptor, RtioPipe};
|
2013-04-17 17:55:21 -07:00
|
|
|
|
2013-10-15 19:44:08 -07:00
|
|
|
/// A stream which communicates over a named pipe.
|
|
|
|
pub struct UnixStream {
|
2014-04-24 18:48:21 -07:00
|
|
|
obj: Box<RtioPipe:Send>,
|
2013-10-15 19:44:08 -07:00
|
|
|
}
|
2013-04-17 17:55:21 -07:00
|
|
|
|
|
|
|
impl UnixStream {
|
2013-10-15 19:44:08 -07:00
|
|
|
/// Connect to a pipe named by `path`. This will attempt to open a
|
|
|
|
/// connection to the underlying socket.
|
|
|
|
///
|
|
|
|
/// The returned stream will be closed when the object falls out of scope.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2014-01-29 16:33:57 -08:00
|
|
|
/// ```rust
|
2014-04-14 21:00:31 +05:30
|
|
|
/// # #![allow(unused_must_use)]
|
2014-01-29 16:33:57 -08:00
|
|
|
/// use std::io::net::unix::UnixStream;
|
2013-10-15 19:44:08 -07:00
|
|
|
///
|
2014-01-29 16:33:57 -08:00
|
|
|
/// let server = Path::new("path/to/my/socket");
|
|
|
|
/// let mut stream = UnixStream::connect(&server);
|
|
|
|
/// stream.write([1, 2, 3]);
|
|
|
|
/// ```
|
|
|
|
pub fn connect<P: ToCStr>(path: &P) -> IoResult<UnixStream> {
|
2013-12-12 17:30:41 -08:00
|
|
|
LocalIo::maybe_raise(|io| {
|
2014-04-24 18:48:21 -07:00
|
|
|
io.unix_connect(&path.to_c_str(), None).map(|p| UnixStream { obj: p })
|
2014-04-22 18:38:59 -07:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-04-25 20:47:49 -07:00
|
|
|
/// Connect to a pipe named by `path`, timing out if the specified number of
|
|
|
|
/// milliseconds.
|
2014-04-22 18:38:59 -07:00
|
|
|
///
|
2014-04-25 20:47:49 -07:00
|
|
|
/// This function is similar to `connect`, except that if `timeout_ms`
|
|
|
|
/// elapses the function will return an error of kind `TimedOut`.
|
2014-04-22 18:38:59 -07:00
|
|
|
#[experimental = "the timeout argument is likely to change types"]
|
|
|
|
pub fn connect_timeout<P: ToCStr>(path: &P,
|
|
|
|
timeout_ms: u64) -> IoResult<UnixStream> {
|
|
|
|
LocalIo::maybe_raise(|io| {
|
|
|
|
let s = io.unix_connect(&path.to_c_str(), Some(timeout_ms));
|
2014-04-24 18:48:21 -07:00
|
|
|
s.map(|p| UnixStream { obj: p })
|
2013-12-12 17:30:41 -08:00
|
|
|
})
|
2013-04-17 17:55:21 -07:00
|
|
|
}
|
2014-04-24 18:48:21 -07:00
|
|
|
|
|
|
|
|
|
|
|
/// Closes the reading half of this connection.
|
|
|
|
///
|
|
|
|
/// This method will close the reading portion of this connection, causing
|
|
|
|
/// all pending and future reads to immediately return with an error.
|
|
|
|
///
|
|
|
|
/// Note that this method affects all cloned handles associated with this
|
|
|
|
/// stream, not just this one handle.
|
|
|
|
pub fn close_read(&mut self) -> IoResult<()> { self.obj.close_read() }
|
|
|
|
|
|
|
|
/// Closes the writing half of this connection.
|
|
|
|
///
|
|
|
|
/// This method will close the writing portion of this connection, causing
|
|
|
|
/// all pending and future writes to immediately return with an error.
|
|
|
|
///
|
|
|
|
/// Note that this method affects all cloned handles associated with this
|
|
|
|
/// stream, not just this one handle.
|
|
|
|
pub fn close_write(&mut self) -> IoResult<()> { self.obj.close_write() }
|
2014-04-25 20:47:49 -07:00
|
|
|
|
|
|
|
/// Sets the read/write timeout for this socket.
|
|
|
|
///
|
|
|
|
/// For more information, see `TcpStream::set_timeout`
|
|
|
|
pub fn set_timeout(&mut self, timeout_ms: Option<u64>) {
|
|
|
|
self.obj.set_timeout(timeout_ms)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the read timeout for this socket.
|
|
|
|
///
|
|
|
|
/// For more information, see `TcpStream::set_timeout`
|
|
|
|
pub fn set_read_timeout(&mut self, timeout_ms: Option<u64>) {
|
|
|
|
self.obj.set_read_timeout(timeout_ms)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the write timeout for this socket.
|
|
|
|
///
|
|
|
|
/// For more information, see `TcpStream::set_timeout`
|
|
|
|
pub fn set_write_timeout(&mut self, timeout_ms: Option<u64>) {
|
|
|
|
self.obj.set_write_timeout(timeout_ms)
|
|
|
|
}
|
2013-04-17 17:55:21 -07:00
|
|
|
}
|
|
|
|
|
2014-01-22 19:32:16 -08:00
|
|
|
impl Clone for UnixStream {
|
|
|
|
fn clone(&self) -> UnixStream {
|
|
|
|
UnixStream { obj: self.obj.clone() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-17 17:55:21 -07:00
|
|
|
impl Reader for UnixStream {
|
2014-01-29 16:33:57 -08:00
|
|
|
fn read(&mut self, buf: &mut [u8]) -> IoResult<uint> { self.obj.read(buf) }
|
2013-04-17 17:55:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Writer for UnixStream {
|
2014-01-29 16:33:57 -08:00
|
|
|
fn write(&mut self, buf: &[u8]) -> IoResult<()> { self.obj.write(buf) }
|
2013-04-17 17:55:21 -07:00
|
|
|
}
|
|
|
|
|
2014-03-16 15:59:04 -07:00
|
|
|
/// A value that can listen for incoming named pipe connection requests.
|
2013-10-15 19:44:08 -07:00
|
|
|
pub struct UnixListener {
|
2014-03-16 15:59:04 -07:00
|
|
|
/// The internal, opaque runtime Unix listener.
|
2014-05-05 18:56:44 -07:00
|
|
|
obj: Box<RtioUnixListener:Send>,
|
2013-10-15 19:44:08 -07:00
|
|
|
}
|
2013-04-17 17:55:21 -07:00
|
|
|
|
|
|
|
impl UnixListener {
|
2013-10-15 19:44:08 -07:00
|
|
|
|
|
|
|
/// Creates a new listener, ready to receive incoming connections on the
|
|
|
|
/// specified socket. The server will be named by `path`.
|
|
|
|
///
|
|
|
|
/// This listener will be closed when it falls out of scope.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
2014-01-29 16:33:57 -08:00
|
|
|
/// ```
|
2014-02-14 23:44:22 -08:00
|
|
|
/// # fn main() {}
|
|
|
|
/// # fn foo() {
|
2014-04-14 21:00:31 +05:30
|
|
|
/// # #![allow(unused_must_use)]
|
2014-01-29 16:33:57 -08:00
|
|
|
/// use std::io::net::unix::UnixListener;
|
2014-02-14 23:44:22 -08:00
|
|
|
/// use std::io::{Listener, Acceptor};
|
2013-10-15 19:44:08 -07:00
|
|
|
///
|
2014-02-14 23:44:22 -08:00
|
|
|
/// let server = Path::new("/path/to/my/socket");
|
|
|
|
/// let stream = UnixListener::bind(&server);
|
|
|
|
/// for mut client in stream.listen().incoming() {
|
2014-01-29 16:33:57 -08:00
|
|
|
/// client.write([1, 2, 3, 4]);
|
|
|
|
/// }
|
2014-02-14 23:44:22 -08:00
|
|
|
/// # }
|
2014-01-29 16:33:57 -08:00
|
|
|
/// ```
|
|
|
|
pub fn bind<P: ToCStr>(path: &P) -> IoResult<UnixListener> {
|
2013-12-12 17:30:41 -08:00
|
|
|
LocalIo::maybe_raise(|io| {
|
|
|
|
io.unix_bind(&path.to_c_str()).map(|s| UnixListener { obj: s })
|
|
|
|
})
|
2013-04-17 17:55:21 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-27 10:01:17 -07:00
|
|
|
impl Listener<UnixStream, UnixAcceptor> for UnixListener {
|
2014-01-29 16:33:57 -08:00
|
|
|
fn listen(self) -> IoResult<UnixAcceptor> {
|
|
|
|
self.obj.listen().map(|obj| UnixAcceptor { obj: obj })
|
2013-10-15 19:44:08 -07:00
|
|
|
}
|
2013-08-27 10:01:17 -07:00
|
|
|
}
|
|
|
|
|
2014-03-16 15:59:04 -07:00
|
|
|
/// A value that can accept named pipe connections, returned from `listen()`.
|
2013-10-15 19:44:08 -07:00
|
|
|
pub struct UnixAcceptor {
|
2014-03-16 15:59:04 -07:00
|
|
|
/// The internal, opaque runtime Unix acceptor.
|
2014-05-05 18:56:44 -07:00
|
|
|
obj: Box<RtioUnixAcceptor:Send>,
|
2013-10-15 19:44:08 -07:00
|
|
|
}
|
2013-08-27 10:01:17 -07:00
|
|
|
|
2014-04-22 18:38:59 -07:00
|
|
|
impl UnixAcceptor {
|
|
|
|
/// Sets a timeout for this acceptor, after which accept() will no longer
|
|
|
|
/// block indefinitely.
|
|
|
|
///
|
|
|
|
/// The argument specified is the amount of time, in milliseconds, into the
|
|
|
|
/// future after which all invocations of accept() will not block (and any
|
|
|
|
/// pending invocation will return). A value of `None` will clear any
|
|
|
|
/// existing timeout.
|
|
|
|
///
|
|
|
|
/// When using this method, it is likely necessary to reset the timeout as
|
|
|
|
/// appropriate, the timeout specified is specific to this object, not
|
|
|
|
/// specific to the next request.
|
|
|
|
#[experimental = "the name and arguments to this function are likely \
|
|
|
|
to change"]
|
|
|
|
pub fn set_timeout(&mut self, timeout_ms: Option<u64>) {
|
|
|
|
self.obj.set_timeout(timeout_ms)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-27 10:01:17 -07:00
|
|
|
impl Acceptor<UnixStream> for UnixAcceptor {
|
2014-01-29 16:33:57 -08:00
|
|
|
fn accept(&mut self) -> IoResult<UnixStream> {
|
2014-04-24 18:48:21 -07:00
|
|
|
self.obj.accept().map(|s| UnixStream { obj: s })
|
2013-10-15 19:44:08 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
2014-04-22 18:38:59 -07:00
|
|
|
#[allow(experimental)]
|
2013-10-15 19:44:08 -07:00
|
|
|
mod tests {
|
|
|
|
use prelude::*;
|
|
|
|
use super::*;
|
2013-11-10 22:46:32 -08:00
|
|
|
use io::*;
|
2013-12-12 21:38:57 -08:00
|
|
|
use io::test::*;
|
2013-10-15 19:44:08 -07:00
|
|
|
|
2014-04-07 13:30:48 -07:00
|
|
|
pub fn smalltest(server: proc(UnixStream):Send, client: proc(UnixStream):Send) {
|
2013-12-12 17:20:58 -08:00
|
|
|
let path1 = next_test_unix();
|
|
|
|
let path2 = path1.clone();
|
2014-02-26 12:55:23 -08:00
|
|
|
|
|
|
|
let mut acceptor = UnixListener::bind(&path1).listen();
|
2013-10-15 19:44:08 -07:00
|
|
|
|
2014-01-26 22:42:26 -05:00
|
|
|
spawn(proc() {
|
2014-02-26 12:55:23 -08:00
|
|
|
match UnixStream::connect(&path2) {
|
|
|
|
Ok(c) => client(c),
|
|
|
|
Err(e) => fail!("failed connect: {}", e),
|
|
|
|
}
|
2014-01-26 22:42:26 -05:00
|
|
|
});
|
2013-12-12 17:20:58 -08:00
|
|
|
|
2014-02-26 12:55:23 -08:00
|
|
|
match acceptor.accept() {
|
|
|
|
Ok(c) => server(c),
|
|
|
|
Err(e) => fail!("failed accept: {}", e),
|
|
|
|
}
|
2013-10-15 19:44:08 -07:00
|
|
|
}
|
|
|
|
|
2014-02-07 10:37:58 -08:00
|
|
|
iotest!(fn bind_error() {
|
|
|
|
let path = "path/to/nowhere";
|
|
|
|
match UnixListener::bind(&path) {
|
2014-01-30 14:10:53 -08:00
|
|
|
Ok(..) => fail!(),
|
2014-02-07 10:37:58 -08:00
|
|
|
Err(e) => {
|
|
|
|
assert!(e.kind == PermissionDenied || e.kind == FileNotFound ||
|
|
|
|
e.kind == InvalidInput);
|
|
|
|
}
|
2014-01-30 14:10:53 -08:00
|
|
|
}
|
2014-02-07 10:37:58 -08:00
|
|
|
})
|
|
|
|
|
|
|
|
iotest!(fn connect_error() {
|
|
|
|
let path = if cfg!(windows) {
|
|
|
|
r"\\.\pipe\this_should_not_exist_ever"
|
|
|
|
} else {
|
|
|
|
"path/to/nowhere"
|
|
|
|
};
|
|
|
|
match UnixStream::connect(&path) {
|
2014-01-30 14:10:53 -08:00
|
|
|
Ok(..) => fail!(),
|
2014-02-07 10:37:58 -08:00
|
|
|
Err(e) => {
|
|
|
|
assert!(e.kind == FileNotFound || e.kind == OtherIoError);
|
|
|
|
}
|
2014-01-30 14:10:53 -08:00
|
|
|
}
|
2014-02-07 10:37:58 -08:00
|
|
|
})
|
2013-10-15 19:44:08 -07:00
|
|
|
|
2014-02-07 10:37:58 -08:00
|
|
|
iotest!(fn smoke() {
|
2013-11-21 23:36:52 -08:00
|
|
|
smalltest(proc(mut server) {
|
2013-10-15 19:44:08 -07:00
|
|
|
let mut buf = [0];
|
2014-01-30 14:10:53 -08:00
|
|
|
server.read(buf).unwrap();
|
2013-10-15 19:44:08 -07:00
|
|
|
assert!(buf[0] == 99);
|
2013-11-21 23:36:52 -08:00
|
|
|
}, proc(mut client) {
|
2014-01-30 14:10:53 -08:00
|
|
|
client.write([99]).unwrap();
|
2013-10-15 19:44:08 -07:00
|
|
|
})
|
2014-02-07 10:37:58 -08:00
|
|
|
})
|
2013-10-15 19:44:08 -07:00
|
|
|
|
2014-02-07 10:37:58 -08:00
|
|
|
iotest!(fn read_eof() {
|
2013-11-21 23:36:52 -08:00
|
|
|
smalltest(proc(mut server) {
|
2013-10-15 19:44:08 -07:00
|
|
|
let mut buf = [0];
|
2014-01-30 14:10:53 -08:00
|
|
|
assert!(server.read(buf).is_err());
|
|
|
|
assert!(server.read(buf).is_err());
|
2013-11-21 23:36:52 -08:00
|
|
|
}, proc(_client) {
|
2013-10-15 19:44:08 -07:00
|
|
|
// drop the client
|
|
|
|
})
|
2014-02-24 09:15:05 -08:00
|
|
|
} #[ignore(cfg(windows))]) // FIXME(#12516)
|
2013-10-15 19:44:08 -07:00
|
|
|
|
2014-02-07 10:37:58 -08:00
|
|
|
iotest!(fn write_begone() {
|
2013-11-21 23:36:52 -08:00
|
|
|
smalltest(proc(mut server) {
|
2013-10-15 19:44:08 -07:00
|
|
|
let buf = [0];
|
2014-01-30 14:10:53 -08:00
|
|
|
loop {
|
|
|
|
match server.write(buf) {
|
|
|
|
Ok(..) => {}
|
|
|
|
Err(e) => {
|
2014-02-07 10:37:58 -08:00
|
|
|
assert!(e.kind == BrokenPipe ||
|
|
|
|
e.kind == NotConnected ||
|
|
|
|
e.kind == ConnectionReset,
|
2014-01-30 14:10:53 -08:00
|
|
|
"unknown error {:?}", e);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-10-15 19:44:08 -07:00
|
|
|
}
|
2013-11-21 23:36:52 -08:00
|
|
|
}, proc(_client) {
|
2013-10-15 19:44:08 -07:00
|
|
|
// drop the client
|
|
|
|
})
|
2014-02-07 10:37:58 -08:00
|
|
|
})
|
2013-10-15 19:44:08 -07:00
|
|
|
|
2014-02-07 10:37:58 -08:00
|
|
|
iotest!(fn accept_lots() {
|
2013-12-12 17:20:58 -08:00
|
|
|
let times = 10;
|
|
|
|
let path1 = next_test_unix();
|
|
|
|
let path2 = path1.clone();
|
2014-03-09 14:58:32 -07:00
|
|
|
|
|
|
|
let mut acceptor = match UnixListener::bind(&path1).listen() {
|
|
|
|
Ok(a) => a,
|
|
|
|
Err(e) => fail!("failed listen: {}", e),
|
|
|
|
};
|
2013-10-15 19:44:08 -07:00
|
|
|
|
2014-01-26 22:42:26 -05:00
|
|
|
spawn(proc() {
|
2014-01-30 11:20:34 +11:00
|
|
|
for _ in range(0, times) {
|
2013-12-05 18:19:06 -08:00
|
|
|
let mut stream = UnixStream::connect(&path2);
|
2014-02-07 10:37:58 -08:00
|
|
|
match stream.write([100]) {
|
|
|
|
Ok(..) => {}
|
|
|
|
Err(e) => fail!("failed write: {}", e)
|
|
|
|
}
|
2014-01-30 11:20:34 +11:00
|
|
|
}
|
2014-01-26 22:42:26 -05:00
|
|
|
});
|
2013-12-12 17:20:58 -08:00
|
|
|
|
2014-01-30 11:20:34 +11:00
|
|
|
for _ in range(0, times) {
|
2013-12-12 17:20:58 -08:00
|
|
|
let mut client = acceptor.accept();
|
|
|
|
let mut buf = [0];
|
2014-02-07 10:37:58 -08:00
|
|
|
match client.read(buf) {
|
|
|
|
Ok(..) => {}
|
|
|
|
Err(e) => fail!("failed read/accept: {}", e),
|
|
|
|
}
|
2013-12-12 17:20:58 -08:00
|
|
|
assert_eq!(buf[0], 100);
|
2014-01-30 11:20:34 +11:00
|
|
|
}
|
2014-02-07 10:37:58 -08:00
|
|
|
})
|
2013-10-15 19:44:08 -07:00
|
|
|
|
2014-02-07 10:37:58 -08:00
|
|
|
#[cfg(unix)]
|
|
|
|
iotest!(fn path_exists() {
|
2013-12-12 17:20:58 -08:00
|
|
|
let path = next_test_unix();
|
|
|
|
let _acceptor = UnixListener::bind(&path).listen();
|
|
|
|
assert!(path.exists());
|
2014-02-07 10:37:58 -08:00
|
|
|
})
|
2014-01-22 19:32:16 -08:00
|
|
|
|
2014-02-07 10:37:58 -08:00
|
|
|
iotest!(fn unix_clone_smoke() {
|
2014-01-22 19:32:16 -08:00
|
|
|
let addr = next_test_unix();
|
|
|
|
let mut acceptor = UnixListener::bind(&addr).listen();
|
|
|
|
|
|
|
|
spawn(proc() {
|
|
|
|
let mut s = UnixStream::connect(&addr);
|
|
|
|
let mut buf = [0, 0];
|
2014-02-07 10:37:58 -08:00
|
|
|
debug!("client reading");
|
2014-01-22 19:32:16 -08:00
|
|
|
assert_eq!(s.read(buf), Ok(1));
|
|
|
|
assert_eq!(buf[0], 1);
|
2014-02-07 10:37:58 -08:00
|
|
|
debug!("client writing");
|
2014-01-22 19:32:16 -08:00
|
|
|
s.write([2]).unwrap();
|
2014-02-07 10:37:58 -08:00
|
|
|
debug!("client dropping");
|
2014-01-22 19:32:16 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
let mut s1 = acceptor.accept().unwrap();
|
|
|
|
let s2 = s1.clone();
|
|
|
|
|
2014-03-09 14:58:32 -07:00
|
|
|
let (tx1, rx1) = channel();
|
|
|
|
let (tx2, rx2) = channel();
|
2014-01-22 19:32:16 -08:00
|
|
|
spawn(proc() {
|
|
|
|
let mut s2 = s2;
|
2014-03-09 14:58:32 -07:00
|
|
|
rx1.recv();
|
2014-02-07 10:37:58 -08:00
|
|
|
debug!("writer writing");
|
2014-01-22 19:32:16 -08:00
|
|
|
s2.write([1]).unwrap();
|
2014-02-07 10:37:58 -08:00
|
|
|
debug!("writer done");
|
2014-03-09 14:58:32 -07:00
|
|
|
tx2.send(());
|
2014-01-22 19:32:16 -08:00
|
|
|
});
|
2014-03-09 14:58:32 -07:00
|
|
|
tx1.send(());
|
2014-01-22 19:32:16 -08:00
|
|
|
let mut buf = [0, 0];
|
2014-02-07 10:37:58 -08:00
|
|
|
debug!("reader reading");
|
2014-01-22 19:32:16 -08:00
|
|
|
assert_eq!(s1.read(buf), Ok(1));
|
2014-02-07 10:37:58 -08:00
|
|
|
debug!("reader done");
|
2014-03-09 14:58:32 -07:00
|
|
|
rx2.recv();
|
2014-02-07 10:37:58 -08:00
|
|
|
})
|
2014-01-22 19:32:16 -08:00
|
|
|
|
2014-02-07 10:37:58 -08:00
|
|
|
iotest!(fn unix_clone_two_read() {
|
2014-01-22 19:32:16 -08:00
|
|
|
let addr = next_test_unix();
|
|
|
|
let mut acceptor = UnixListener::bind(&addr).listen();
|
2014-03-09 14:58:32 -07:00
|
|
|
let (tx1, rx) = channel();
|
|
|
|
let tx2 = tx1.clone();
|
2014-01-22 19:32:16 -08:00
|
|
|
|
|
|
|
spawn(proc() {
|
|
|
|
let mut s = UnixStream::connect(&addr);
|
|
|
|
s.write([1]).unwrap();
|
2014-03-09 14:58:32 -07:00
|
|
|
rx.recv();
|
2014-01-22 19:32:16 -08:00
|
|
|
s.write([2]).unwrap();
|
2014-03-09 14:58:32 -07:00
|
|
|
rx.recv();
|
2014-01-22 19:32:16 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
let mut s1 = acceptor.accept().unwrap();
|
|
|
|
let s2 = s1.clone();
|
|
|
|
|
2014-03-09 14:58:32 -07:00
|
|
|
let (done, rx) = channel();
|
2014-01-22 19:32:16 -08:00
|
|
|
spawn(proc() {
|
|
|
|
let mut s2 = s2;
|
|
|
|
let mut buf = [0, 0];
|
|
|
|
s2.read(buf).unwrap();
|
2014-03-09 14:58:32 -07:00
|
|
|
tx2.send(());
|
2014-01-22 19:32:16 -08:00
|
|
|
done.send(());
|
|
|
|
});
|
|
|
|
let mut buf = [0, 0];
|
|
|
|
s1.read(buf).unwrap();
|
2014-03-09 14:58:32 -07:00
|
|
|
tx1.send(());
|
2014-01-22 19:32:16 -08:00
|
|
|
|
2014-03-09 14:58:32 -07:00
|
|
|
rx.recv();
|
2014-02-07 10:37:58 -08:00
|
|
|
})
|
2014-01-22 19:32:16 -08:00
|
|
|
|
2014-02-07 10:37:58 -08:00
|
|
|
iotest!(fn unix_clone_two_write() {
|
2014-01-22 19:32:16 -08:00
|
|
|
let addr = next_test_unix();
|
|
|
|
let mut acceptor = UnixListener::bind(&addr).listen();
|
|
|
|
|
|
|
|
spawn(proc() {
|
|
|
|
let mut s = UnixStream::connect(&addr);
|
|
|
|
let mut buf = [0, 1];
|
|
|
|
s.read(buf).unwrap();
|
|
|
|
s.read(buf).unwrap();
|
|
|
|
});
|
|
|
|
|
|
|
|
let mut s1 = acceptor.accept().unwrap();
|
|
|
|
let s2 = s1.clone();
|
|
|
|
|
2014-03-09 14:58:32 -07:00
|
|
|
let (tx, rx) = channel();
|
2014-01-22 19:32:16 -08:00
|
|
|
spawn(proc() {
|
|
|
|
let mut s2 = s2;
|
|
|
|
s2.write([1]).unwrap();
|
2014-03-09 14:58:32 -07:00
|
|
|
tx.send(());
|
2014-01-22 19:32:16 -08:00
|
|
|
});
|
|
|
|
s1.write([2]).unwrap();
|
|
|
|
|
2014-03-09 14:58:32 -07:00
|
|
|
rx.recv();
|
2014-02-07 10:37:58 -08:00
|
|
|
})
|
2014-04-22 13:21:30 -07:00
|
|
|
|
|
|
|
iotest!(fn drop_removes_listener_path() {
|
|
|
|
let path = next_test_unix();
|
|
|
|
let l = UnixListener::bind(&path).unwrap();
|
|
|
|
assert!(path.exists());
|
|
|
|
drop(l);
|
|
|
|
assert!(!path.exists());
|
|
|
|
} #[cfg(not(windows))])
|
|
|
|
|
|
|
|
iotest!(fn drop_removes_acceptor_path() {
|
|
|
|
let path = next_test_unix();
|
|
|
|
let l = UnixListener::bind(&path).unwrap();
|
|
|
|
assert!(path.exists());
|
|
|
|
drop(l.listen().unwrap());
|
|
|
|
assert!(!path.exists());
|
|
|
|
} #[cfg(not(windows))])
|
2014-04-22 18:38:59 -07:00
|
|
|
|
|
|
|
iotest!(fn accept_timeout() {
|
|
|
|
let addr = next_test_unix();
|
|
|
|
let mut a = UnixListener::bind(&addr).unwrap().listen().unwrap();
|
|
|
|
|
|
|
|
a.set_timeout(Some(10));
|
|
|
|
|
|
|
|
// Make sure we time out once and future invocations also time out
|
|
|
|
let err = a.accept().err().unwrap();
|
|
|
|
assert_eq!(err.kind, TimedOut);
|
|
|
|
let err = a.accept().err().unwrap();
|
|
|
|
assert_eq!(err.kind, TimedOut);
|
|
|
|
|
|
|
|
// Also make sure that even though the timeout is expired that we will
|
|
|
|
// continue to receive any pending connections.
|
2014-04-24 18:48:21 -07:00
|
|
|
let (tx, rx) = channel();
|
|
|
|
let addr2 = addr.clone();
|
|
|
|
spawn(proc() {
|
|
|
|
tx.send(UnixStream::connect(&addr2).unwrap());
|
|
|
|
});
|
|
|
|
let l = rx.recv();
|
2014-04-22 18:38:59 -07:00
|
|
|
for i in range(0, 1001) {
|
|
|
|
match a.accept() {
|
|
|
|
Ok(..) => break,
|
|
|
|
Err(ref e) if e.kind == TimedOut => {}
|
|
|
|
Err(e) => fail!("error: {}", e),
|
|
|
|
}
|
2014-04-25 20:47:49 -07:00
|
|
|
::task::deschedule();
|
2014-04-22 18:38:59 -07:00
|
|
|
if i == 1000 { fail!("should have a pending connection") }
|
|
|
|
}
|
|
|
|
drop(l);
|
|
|
|
|
|
|
|
// Unset the timeout and make sure that this always blocks.
|
|
|
|
a.set_timeout(None);
|
|
|
|
let addr2 = addr.clone();
|
|
|
|
spawn(proc() {
|
2014-04-24 18:48:21 -07:00
|
|
|
drop(UnixStream::connect(&addr2).unwrap());
|
2014-04-22 18:38:59 -07:00
|
|
|
});
|
|
|
|
a.accept().unwrap();
|
|
|
|
})
|
|
|
|
|
|
|
|
iotest!(fn connect_timeout_error() {
|
|
|
|
let addr = next_test_unix();
|
|
|
|
assert!(UnixStream::connect_timeout(&addr, 100).is_err());
|
|
|
|
})
|
|
|
|
|
|
|
|
iotest!(fn connect_timeout_success() {
|
|
|
|
let addr = next_test_unix();
|
|
|
|
let _a = UnixListener::bind(&addr).unwrap().listen().unwrap();
|
|
|
|
assert!(UnixStream::connect_timeout(&addr, 100).is_ok());
|
|
|
|
})
|
2014-04-24 18:48:21 -07:00
|
|
|
|
|
|
|
iotest!(fn close_readwrite_smoke() {
|
|
|
|
let addr = next_test_unix();
|
|
|
|
let a = UnixListener::bind(&addr).listen().unwrap();
|
|
|
|
let (_tx, rx) = channel::<()>();
|
|
|
|
spawn(proc() {
|
|
|
|
let mut a = a;
|
|
|
|
let _s = a.accept().unwrap();
|
|
|
|
let _ = rx.recv_opt();
|
|
|
|
});
|
|
|
|
|
|
|
|
let mut b = [0];
|
|
|
|
let mut s = UnixStream::connect(&addr).unwrap();
|
|
|
|
let mut s2 = s.clone();
|
|
|
|
|
|
|
|
// closing should prevent reads/writes
|
|
|
|
s.close_write().unwrap();
|
|
|
|
assert!(s.write([0]).is_err());
|
|
|
|
s.close_read().unwrap();
|
|
|
|
assert!(s.read(b).is_err());
|
|
|
|
|
|
|
|
// closing should affect previous handles
|
|
|
|
assert!(s2.write([0]).is_err());
|
|
|
|
assert!(s2.read(b).is_err());
|
|
|
|
|
|
|
|
// closing should affect new handles
|
|
|
|
let mut s3 = s.clone();
|
|
|
|
assert!(s3.write([0]).is_err());
|
|
|
|
assert!(s3.read(b).is_err());
|
|
|
|
|
|
|
|
// make sure these don't die
|
|
|
|
let _ = s2.close_read();
|
|
|
|
let _ = s2.close_write();
|
|
|
|
let _ = s3.close_read();
|
|
|
|
let _ = s3.close_write();
|
|
|
|
})
|
|
|
|
|
|
|
|
iotest!(fn close_read_wakes_up() {
|
|
|
|
let addr = next_test_unix();
|
|
|
|
let a = UnixListener::bind(&addr).listen().unwrap();
|
|
|
|
let (_tx, rx) = channel::<()>();
|
|
|
|
spawn(proc() {
|
|
|
|
let mut a = a;
|
|
|
|
let _s = a.accept().unwrap();
|
|
|
|
let _ = rx.recv_opt();
|
|
|
|
});
|
|
|
|
|
|
|
|
let mut s = UnixStream::connect(&addr).unwrap();
|
|
|
|
let s2 = s.clone();
|
|
|
|
let (tx, rx) = channel();
|
|
|
|
spawn(proc() {
|
|
|
|
let mut s2 = s2;
|
|
|
|
assert!(s2.read([0]).is_err());
|
|
|
|
tx.send(());
|
|
|
|
});
|
|
|
|
// this should wake up the child task
|
|
|
|
s.close_read().unwrap();
|
|
|
|
|
|
|
|
// this test will never finish if the child doesn't wake up
|
|
|
|
rx.recv();
|
|
|
|
})
|
2014-04-25 20:47:49 -07:00
|
|
|
|
|
|
|
iotest!(fn readwrite_timeouts() {
|
|
|
|
let addr = next_test_unix();
|
|
|
|
let mut a = UnixListener::bind(&addr).listen().unwrap();
|
|
|
|
let (tx, rx) = channel::<()>();
|
|
|
|
spawn(proc() {
|
|
|
|
let mut s = UnixStream::connect(&addr).unwrap();
|
|
|
|
rx.recv();
|
|
|
|
assert!(s.write([0]).is_ok());
|
|
|
|
let _ = rx.recv_opt();
|
|
|
|
});
|
|
|
|
|
|
|
|
let mut s = a.accept().unwrap();
|
|
|
|
s.set_timeout(Some(20));
|
|
|
|
assert_eq!(s.read([0]).err().unwrap().kind, TimedOut);
|
|
|
|
assert_eq!(s.read([0]).err().unwrap().kind, TimedOut);
|
|
|
|
|
|
|
|
s.set_timeout(Some(20));
|
|
|
|
for i in range(0, 1001) {
|
|
|
|
match s.write([0, .. 128 * 1024]) {
|
|
|
|
Ok(()) | Err(IoError { kind: ShortWrite(..), .. }) => {},
|
|
|
|
Err(IoError { kind: TimedOut, .. }) => break,
|
|
|
|
Err(e) => fail!("{}", e),
|
|
|
|
}
|
|
|
|
if i == 1000 { fail!("should have filled up?!"); }
|
|
|
|
}
|
2014-04-27 18:11:49 -07:00
|
|
|
|
|
|
|
// I'm not sure as to why, but apparently the write on windows always
|
|
|
|
// succeeds after the previous timeout. Who knows?
|
|
|
|
if !cfg!(windows) {
|
|
|
|
assert_eq!(s.write([0]).err().unwrap().kind, TimedOut);
|
|
|
|
}
|
2014-04-25 20:47:49 -07:00
|
|
|
|
|
|
|
tx.send(());
|
|
|
|
s.set_timeout(None);
|
|
|
|
assert_eq!(s.read([0, 0]), Ok(1));
|
|
|
|
})
|
|
|
|
|
|
|
|
iotest!(fn read_timeouts() {
|
|
|
|
let addr = next_test_unix();
|
|
|
|
let mut a = UnixListener::bind(&addr).listen().unwrap();
|
|
|
|
let (tx, rx) = channel::<()>();
|
|
|
|
spawn(proc() {
|
|
|
|
let mut s = UnixStream::connect(&addr).unwrap();
|
|
|
|
rx.recv();
|
|
|
|
let mut amt = 0;
|
|
|
|
while amt < 100 * 128 * 1024 {
|
|
|
|
match s.read([0, ..128 * 1024]) {
|
|
|
|
Ok(n) => { amt += n; }
|
|
|
|
Err(e) => fail!("{}", e),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let _ = rx.recv_opt();
|
|
|
|
});
|
|
|
|
|
|
|
|
let mut s = a.accept().unwrap();
|
|
|
|
s.set_read_timeout(Some(20));
|
|
|
|
assert_eq!(s.read([0]).err().unwrap().kind, TimedOut);
|
|
|
|
assert_eq!(s.read([0]).err().unwrap().kind, TimedOut);
|
|
|
|
|
|
|
|
tx.send(());
|
|
|
|
for _ in range(0, 100) {
|
|
|
|
assert!(s.write([0, ..128 * 1024]).is_ok());
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
iotest!(fn write_timeouts() {
|
|
|
|
let addr = next_test_unix();
|
|
|
|
let mut a = UnixListener::bind(&addr).listen().unwrap();
|
|
|
|
let (tx, rx) = channel::<()>();
|
|
|
|
spawn(proc() {
|
|
|
|
let mut s = UnixStream::connect(&addr).unwrap();
|
|
|
|
rx.recv();
|
|
|
|
assert!(s.write([0]).is_ok());
|
|
|
|
let _ = rx.recv_opt();
|
|
|
|
});
|
|
|
|
|
|
|
|
let mut s = a.accept().unwrap();
|
|
|
|
s.set_write_timeout(Some(20));
|
|
|
|
for i in range(0, 1001) {
|
|
|
|
match s.write([0, .. 128 * 1024]) {
|
|
|
|
Ok(()) | Err(IoError { kind: ShortWrite(..), .. }) => {},
|
|
|
|
Err(IoError { kind: TimedOut, .. }) => break,
|
|
|
|
Err(e) => fail!("{}", e),
|
|
|
|
}
|
|
|
|
if i == 1000 { fail!("should have filled up?!"); }
|
|
|
|
}
|
|
|
|
|
|
|
|
tx.send(());
|
|
|
|
assert!(s.read([0]).is_ok());
|
|
|
|
})
|
|
|
|
|
|
|
|
iotest!(fn timeout_concurrent_read() {
|
|
|
|
let addr = next_test_unix();
|
|
|
|
let mut a = UnixListener::bind(&addr).listen().unwrap();
|
|
|
|
let (tx, rx) = channel::<()>();
|
|
|
|
spawn(proc() {
|
|
|
|
let mut s = UnixStream::connect(&addr).unwrap();
|
|
|
|
rx.recv();
|
|
|
|
assert!(s.write([0]).is_ok());
|
|
|
|
let _ = rx.recv_opt();
|
|
|
|
});
|
|
|
|
|
|
|
|
let mut s = a.accept().unwrap();
|
|
|
|
let s2 = s.clone();
|
|
|
|
let (tx2, rx2) = channel();
|
|
|
|
spawn(proc() {
|
|
|
|
let mut s2 = s2;
|
|
|
|
assert!(s2.read([0]).is_ok());
|
|
|
|
tx2.send(());
|
|
|
|
});
|
|
|
|
|
|
|
|
s.set_read_timeout(Some(20));
|
|
|
|
assert_eq!(s.read([0]).err().unwrap().kind, TimedOut);
|
|
|
|
tx.send(());
|
|
|
|
|
|
|
|
rx2.recv();
|
|
|
|
})
|
2013-04-17 17:55:21 -07:00
|
|
|
}
|