Crates.io | uds |
lib.rs | uds |
version | 0.4.2 |
source | src |
created_at | 2019-11-23 19:52:24.375364 |
updated_at | 2023-12-31 15:49:23.391881 |
description | A unix domain socket crate that supports abstract addresses, fd-passing and seqpacket sockets. |
homepage | |
repository | https://github.com/tormol/uds |
max_upload_size | |
id | 183786 |
size | 221,197 |
A unix domain sockets Rust library that supports abstract addresses, fd-passing, SOCK_SEQPACKET sockets and more.
When possible, features are implemented via extension traits for std::os::unix::net
types (and optionally mio's uds types) instead of exposing new structs.
The only new socket structs this crate exposes are those for seqpacket sockets.
Ancillary credentials and timestamps are not yet supported.
(only runs sucessfully on Linux)
extern crate uds;
let addr = uds::UnixSocketAddr::from_abstract(b"not a file!")
.expect("create abstract socket address");
let listener = uds::UnixSeqpacketListener::bind_unix_addr(&addr)
.expect("create seqpacket listener");
let client = uds::UnixSeqpacketConn::connect_unix_addr(&addr)
.expect("connect to listener");
client.send_fds(b"Here I come", &[0, 1, 2])
.expect("send stdin, stdout and stderr");
let (server_side, _) = listener.accept_unix_addr()
.expect("accept connection");
let creds: uds::ConnCredentials = server_side.initial_peer_credentials()
.expect("get peer credentials");
if creds.euid() == 0 {
let mut fd_buf = [-1; 3];
let (_, _, fds) = server_side.recv_fds(&mut[0u8; 1], &mut fd_buf
).expect("receive with fd capacity");
if fds == 3 {
/* do something with the file descriptors */
}
/* remember to close the file descripts */
} else {
server_side.send(b"go away!\n").expect("send response");
}
macOS doesn't support SOCK_SEQPACKET sockets, and abstract socket addresses is Linux-only, so if you don't want to bother with supporting non-portable features you are probably better off only using what std or mio provides. If you're writing a datagram server though, using std or mio means you can't respond to abstract adresses, forcing clients to use path addresses and deal with cleaning up the socket file after themselves.
Even when all operating systems you care about supports something, they might behave differently:
On Linux file descriptors are cloned when they are sent, but macOS and the BSDs first clones them when they are received. This means that if a FD is closed before the peer receives it you have a problem.
Also, some OSes might return the original file descriptor without cloning it if it's received within the same process as it was sent from. (DragonFly BSD, possibly macOS and maybe FreeBSD).
Linux | macOS | FreeBSD | OpenBSD | DragonFly BSD | NetBSD | Illumos | |
---|---|---|---|---|---|---|---|
Seqpacket | Yes | N/A | Yes | Yes | Yes | Yes | N/A |
fd-passing | Yes | Yes | Yes | Yes | Yes | Yes | No |
abstract addresses | Yes | N/A | N/A | N/A | N/A | N/A | N/A |
mio 0.8 | Yes | Yes | Yes | Yes | Yes | Yes | Yes |
tokio 1.0 | Yes | Yes | Yes | Yes | Yes | Yes | No |
Tested? | Locally + CI | CI | CI | CI | Manually* | Manually* | Manually* |
*: Not tested since v0.2.6. (but (cross)checked on CI.)
The mio_08
feature makes the seqpacket types usable with mio version 0.8 (by implementing its Source
trait for them),
and implements this crates extension traits for the unix socket types in mio::net
.
To enable it, add this to Cargo.toml:
[dependencies]
uds = {version="0.4.0", features=["mio_08"]}
The tokio
feature adds async
-based seqpacket types for use with tokio version 1.*:
To enable it, add this to Cargo.toml:
[dependencies]
uds = {version="0.4.2", features=["tokio"]}
The minimum Rust version is 1.63.
Older versions might work, but might break in a minor release.
unsafe
usageThis crate calls many C functions, which are all unsafe
(even ones as simple as socket()
).
The public interface is safe (except for FromRawFd
), so if you find something unsound (even internal functions that aren't marked unsafe
) please open an issue.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.