Skip to content

Commit d65ead2

Browse files
authored
Unrolled build for rust-lang#122147
Rollup merge of rust-lang#122147 - kadiwa4:private_impl_mods, r=workingjubilee Make `std::os::unix::ucred` module private Tracking issue: rust-lang#42839 Currently, this unstable module exists: [`std::os::unix::ucred`](https://doc.rust-lang.org/stable/std/os/unix/ucred/index.html). All it does is provide `UCred` (which is also available from `std::os::unix::net`), `impl_*` (which is probably a mishap and should be private) and `peer_cred` (which is undocumented but has a documented counterpart at `std::os::unix::net::UnixStream::peer_cred`). This PR makes the entire `ucred` module private and moves it into `net`, because that's where it is used. I hope it's fine to simply remove it without a deprecation phase. Otherwise, I can add back a deprecated reexport module `std::os::unix::ucred`. `@rustbot` label: -T-libs +T-libs-api
2 parents 9c3ad80 + 5ce3db2 commit d65ead2

File tree

5 files changed

+44
-48
lines changed

5 files changed

+44
-48
lines changed

library/std/src/os/unix/mod.rs

-16
Original file line numberDiff line numberDiff line change
@@ -95,22 +95,6 @@ pub mod process;
9595
pub mod raw;
9696
pub mod thread;
9797

98-
#[unstable(feature = "peer_credentials_unix_socket", issue = "42839", reason = "unstable")]
99-
#[cfg(any(
100-
target_os = "android",
101-
target_os = "linux",
102-
target_os = "dragonfly",
103-
target_os = "freebsd",
104-
target_os = "ios",
105-
target_os = "tvos",
106-
target_os = "watchos",
107-
target_os = "macos",
108-
target_os = "netbsd",
109-
target_os = "openbsd",
110-
target_os = "nto",
111-
))]
112-
pub mod ucred;
113-
11498
/// A prelude for conveniently writing platform-specific code.
11599
///
116100
/// Includes all extension traits, and some important type definitions.

library/std/src/os/unix/net/mod.rs

+29
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,20 @@ mod listener;
1212
mod stream;
1313
#[cfg(all(test, not(target_os = "emscripten")))]
1414
mod tests;
15+
#[cfg(any(
16+
target_os = "android",
17+
target_os = "linux",
18+
target_os = "dragonfly",
19+
target_os = "freebsd",
20+
target_os = "ios",
21+
target_os = "tvos",
22+
target_os = "watchos",
23+
target_os = "macos",
24+
target_os = "netbsd",
25+
target_os = "openbsd",
26+
target_os = "nto",
27+
))]
28+
mod ucred;
1529

1630
#[stable(feature = "unix_socket", since = "1.10.0")]
1731
pub use self::addr::*;
@@ -24,3 +38,18 @@ pub use self::datagram::*;
2438
pub use self::listener::*;
2539
#[stable(feature = "unix_socket", since = "1.10.0")]
2640
pub use self::stream::*;
41+
#[cfg(any(
42+
target_os = "android",
43+
target_os = "linux",
44+
target_os = "dragonfly",
45+
target_os = "freebsd",
46+
target_os = "ios",
47+
target_os = "tvos",
48+
target_os = "watchos",
49+
target_os = "macos",
50+
target_os = "netbsd",
51+
target_os = "openbsd",
52+
target_os = "nto",
53+
))]
54+
#[unstable(feature = "peer_credentials_unix_socket", issue = "42839", reason = "unstable")]
55+
pub use self::ucred::*;

library/std/src/os/unix/net/stream.rs

+9-24
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,3 @@
1-
#[cfg(any(doc, target_os = "android", target_os = "linux"))]
2-
use super::{recv_vectored_with_ancillary_from, send_vectored_with_ancillary_to, SocketAncillary};
3-
use super::{sockaddr_un, SocketAddr};
4-
use crate::fmt;
5-
use crate::io::{self, IoSlice, IoSliceMut};
6-
use crate::net::Shutdown;
7-
use crate::os::unix::io::{AsFd, AsRawFd, BorrowedFd, FromRawFd, IntoRawFd, OwnedFd, RawFd};
81
#[cfg(any(
92
target_os = "android",
103
target_os = "linux",
@@ -17,28 +10,20 @@ use crate::os::unix::io::{AsFd, AsRawFd, BorrowedFd, FromRawFd, IntoRawFd, Owned
1710
target_os = "netbsd",
1811
target_os = "openbsd"
1912
))]
20-
use crate::os::unix::ucred;
13+
use super::{peer_cred, UCred};
14+
#[cfg(any(doc, target_os = "android", target_os = "linux"))]
15+
use super::{recv_vectored_with_ancillary_from, send_vectored_with_ancillary_to, SocketAncillary};
16+
use super::{sockaddr_un, SocketAddr};
17+
use crate::fmt;
18+
use crate::io::{self, IoSlice, IoSliceMut};
19+
use crate::net::Shutdown;
20+
use crate::os::unix::io::{AsFd, AsRawFd, BorrowedFd, FromRawFd, IntoRawFd, OwnedFd, RawFd};
2121
use crate::path::Path;
2222
use crate::sys::cvt;
2323
use crate::sys::net::Socket;
2424
use crate::sys_common::{AsInner, FromInner};
2525
use crate::time::Duration;
2626

27-
#[unstable(feature = "peer_credentials_unix_socket", issue = "42839", reason = "unstable")]
28-
#[cfg(any(
29-
target_os = "android",
30-
target_os = "linux",
31-
target_os = "dragonfly",
32-
target_os = "freebsd",
33-
target_os = "ios",
34-
target_os = "tvos",
35-
target_os = "macos",
36-
target_os = "watchos",
37-
target_os = "netbsd",
38-
target_os = "openbsd"
39-
))]
40-
pub use ucred::UCred;
41-
4227
/// A Unix stream socket.
4328
///
4429
/// # Examples
@@ -247,7 +232,7 @@ impl UnixStream {
247232
target_os = "openbsd"
248233
))]
249234
pub fn peer_cred(&self) -> io::Result<UCred> {
250-
ucred::peer_cred(self)
235+
peer_cred(self)
251236
}
252237

253238
/// Sets the read timeout for the socket.

library/std/src/os/unix/ucred.rs library/std/src/os/unix/net/ucred.rs

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
//! Unix peer credentials.
2-
31
// NOTE: Code in this file is heavily based on work done in PR 13 from the tokio-uds repository on
42
// GitHub.
53
//
@@ -26,21 +24,21 @@ pub struct UCred {
2624
}
2725

2826
#[cfg(any(target_os = "android", target_os = "linux"))]
29-
pub use self::impl_linux::peer_cred;
27+
pub(super) use self::impl_linux::peer_cred;
3028

3129
#[cfg(any(
3230
target_os = "dragonfly",
3331
target_os = "freebsd",
3432
target_os = "openbsd",
3533
target_os = "netbsd"
3634
))]
37-
pub use self::impl_bsd::peer_cred;
35+
pub(super) use self::impl_bsd::peer_cred;
3836

3937
#[cfg(any(target_os = "macos", target_os = "ios", target_os = "tvos", target_os = "watchos"))]
40-
pub use self::impl_mac::peer_cred;
38+
pub(super) use self::impl_mac::peer_cred;
4139

4240
#[cfg(any(target_os = "linux", target_os = "android"))]
43-
pub mod impl_linux {
41+
mod impl_linux {
4442
use super::UCred;
4543
use crate::os::unix::io::AsRawFd;
4644
use crate::os::unix::net::UnixStream;
@@ -82,7 +80,7 @@ pub mod impl_linux {
8280
target_os = "netbsd",
8381
target_os = "nto",
8482
))]
85-
pub mod impl_bsd {
83+
mod impl_bsd {
8684
use super::UCred;
8785
use crate::io;
8886
use crate::os::unix::io::AsRawFd;
@@ -99,7 +97,7 @@ pub mod impl_bsd {
9997
}
10098

10199
#[cfg(any(target_os = "macos", target_os = "ios", target_os = "tvos", target_os = "watchos"))]
102-
pub mod impl_mac {
100+
mod impl_mac {
103101
use super::UCred;
104102
use crate::os::unix::io::AsRawFd;
105103
use crate::os::unix::net::UnixStream;

0 commit comments

Comments
 (0)