Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

net/linux_kernel: add unnamed Unix-domain addresses #1242

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 31 additions & 5 deletions src/backend/libc/net/addr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,26 @@ impl SocketAddrUnix {
})
}

/// Construct a new unnamed address.
///
/// The kernel will assign an abstract Unix-domain address to the socket when you call
/// [`bind_unix()`][crate::net::bind_unix]. You can inspect the assigned name with
/// [`getsockname`][crate::net::getsockname].
///
/// # References
/// - [Linux]
///
/// [Linux]: https://www.man7.org/linux/man-pages/man7/unix.7.html
#[cfg(linux_kernel)]
#[inline]
pub fn new_unnamed() -> Self {
Self {
unix: Self::init(),
#[cfg(not(any(bsd, target_os = "haiku")))]
len: offsetof_sun_path() as _,
}
}

const fn init() -> c::sockaddr_un {
c::sockaddr_un {
#[cfg(any(
Expand Down Expand Up @@ -123,17 +143,23 @@ impl SocketAddrUnix {
#[cfg(linux_kernel)]
#[inline]
pub fn abstract_name(&self) -> Option<&[u8]> {
let len = self.len();
if len != 0 && self.unix.sun_path[0] == 0 {
let end = len as usize - offsetof_sun_path();
let end = self.len().saturating_sub(offsetof_sun_path());
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you comment on why you changed this to use saturating_sub?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wanted to remove one indentation level by removing the test if len == 0, followed by len > offsetof_sun_path. I don't know if there actually is a case where len == 0. If there isn't, then a normal subtraction would be good enough. Alternatively, because the method returns an Option, checked_sub would work, too.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Or was your question why I changed the method at all? The current implementation cannot tell unnamed socket addresses and abstract addresses apart and will panic on an unnamed address.

if end > 0 && self.unix.sun_path[0] as u8 == b'\0' {
let bytes = &self.unix.sun_path[1..end];
// SAFETY: `from_raw_parts` to convert from `&[c_char]` to `&[u8]`.
unsafe { Some(slice::from_raw_parts(bytes.as_ptr().cast(), bytes.len())) }
// SAFETY: Convert `&[c_char]` to `&[u8]`.
Some(unsafe { slice::from_raw_parts(bytes.as_ptr().cast::<u8>(), bytes.len()) })
} else {
None
}
}

/// `true` if the socket address is unnamed.
#[cfg(linux_kernel)]
#[inline]
pub fn is_unnamed(&self) -> bool {
self.len() == offsetof_sun_path()
}

#[inline]
pub(crate) fn addr_len(&self) -> c::socklen_t {
#[cfg(not(any(bsd, target_os = "haiku")))]
Expand Down
37 changes: 30 additions & 7 deletions src/backend/linux_raw/net/addr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,26 @@ impl SocketAddrUnix {
}
}

/// Construct a new unnamed address.
///
/// The kernel will assign an abstract Unix-domain address to the socket when you call
/// [`bind_unix()`][crate::net::bind_unix]. You can inspect the assigned name with
/// [`getsockname`][crate::net::getsockname].
///
/// # References
/// - [Linux]
///
/// [Linux]: https://www.man7.org/linux/man-pages/man7/unix.7.html
#[cfg(linux_kernel)]
#[inline]
pub fn new_unnamed() -> Self {
Self {
unix: Self::init(),
#[cfg(not(any(bsd, target_os = "haiku")))]
len: offsetof_sun_path() as _,
}
}

const fn init() -> c::sockaddr_un {
c::sockaddr_un {
sun_family: c::AF_UNIX as _,
Expand Down Expand Up @@ -91,20 +111,23 @@ impl SocketAddrUnix {
/// For an abstract address, return the identifier.
#[inline]
pub fn abstract_name(&self) -> Option<&[u8]> {
let len = self.len();
if len != 0 && self.unix.sun_path[0] as u8 == b'\0' {
let end = len as usize - offsetof_sun_path();
let end = self.len().saturating_sub(offsetof_sun_path());
if end > 0 && self.unix.sun_path[0] as u8 == b'\0' {
let bytes = &self.unix.sun_path[1..end];

// SAFETY: Convert `&[c_char]` to `&[u8]`.
let bytes = unsafe { slice::from_raw_parts(bytes.as_ptr().cast::<u8>(), bytes.len()) };

Some(bytes)
Some(unsafe { slice::from_raw_parts(bytes.as_ptr().cast::<u8>(), bytes.len()) })
} else {
None
}
}

/// `true` if the socket address is unnamed.
#[cfg(linux_kernel)]
#[inline]
pub fn is_unnamed(&self) -> bool {
self.len() == offsetof_sun_path()
}

#[inline]
pub(crate) fn addr_len(&self) -> c::socklen_t {
self.len
Expand Down
26 changes: 25 additions & 1 deletion tests/net/unix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,7 @@ fn test_abstract_unix_msg_unconnected() {
}

#[cfg(not(any(target_os = "redox", target_os = "wasi")))]
#[cfg(feature = "pipe")]
#[test]
fn test_unix_msg_with_scm_rights() {
crate::init();
Expand Down Expand Up @@ -649,7 +650,7 @@ fn test_unix_peercred_explicit() {
/// Like `test_unix_peercred_explicit`, but relies on the fact that
/// `set_socket_passcred` enables passing of the credentials implicitly
/// instead of passing an explicit message to `sendmsg`.
#[cfg(all(feature = "process", linux_kernel))]
#[cfg(all(feature = "pipe", feature = "process", linux_kernel))]
#[test]
fn test_unix_peercred_implicit() {
crate::init();
Expand Down Expand Up @@ -707,6 +708,7 @@ fn test_unix_peercred_implicit() {
/// Like `test_unix_msg_with_scm_rights`, but with multiple file descriptors
/// over multiple control messages.
#[cfg(not(any(target_os = "redox", target_os = "wasi")))]
#[cfg(feature = "pipe")]
#[test]
fn test_unix_msg_with_combo() {
crate::init();
Expand Down Expand Up @@ -915,3 +917,25 @@ fn test_unix_msg_with_combo() {
client.join().unwrap();
server.join().unwrap();
}

/// Bind socket to an unnamed Unix-domain address, and assert that an abstract Unix-domain name was
/// assigned by the kernel.
#[cfg(linux_kernel)]
#[test]
fn test_bind_unnamed_address() {
let address = SocketAddrUnix::new_unnamed();
assert!(address.is_unnamed());
assert_eq!(address.abstract_name(), None);
assert_eq!(address.path(), None);
let sock = socket(AddressFamily::UNIX, SocketType::DGRAM, None).unwrap();
bind_unix(&sock, &address).unwrap();

let address = rustix::net::getsockname(&sock).unwrap();
let address = match address {
rustix::net::SocketAddrAny::Unix(address) => address,
address => panic!("expected Unix address, got {address:?}"),
};
assert!(!address.is_unnamed());
assert_ne!(address.abstract_name(), None);
assert_eq!(address.path(), None);
}
2 changes: 2 additions & 0 deletions tests/net/unix_alloc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,7 @@ fn test_abstract_unix_msg_unconnected() {
}

#[cfg(not(any(target_os = "redox", target_os = "wasi")))]
#[cfg(feature = "pipe")]
#[test]
fn test_unix_msg_with_scm_rights() {
crate::init();
Expand Down Expand Up @@ -652,6 +653,7 @@ fn test_unix_peercred() {
/// Like `test_unix_msg_with_scm_rights`, but with multiple file descriptors
/// over multiple control messages.
#[cfg(not(any(target_os = "redox", target_os = "wasi")))]
#[cfg(feature = "pipe")]
#[test]
fn test_unix_msg_with_combo() {
crate::init();
Expand Down
Loading