std/sys/pal/unix/
mod.rs

1#![allow(missing_docs, nonstandard_style)]
2
3use crate::io::ErrorKind;
4
5#[cfg(not(target_os = "espidf"))]
6#[macro_use]
7pub mod weak;
8
9pub mod args;
10pub mod env;
11pub mod fd;
12pub mod fs;
13pub mod futex;
14#[cfg(any(target_os = "linux", target_os = "android"))]
15pub mod kernel_copy;
16#[cfg(target_os = "linux")]
17pub mod linux;
18pub mod os;
19pub mod pipe;
20pub mod process;
21pub mod stack_overflow;
22pub mod stdio;
23pub mod sync;
24pub mod thread;
25pub mod thread_parking;
26pub mod time;
27
28#[cfg(target_os = "espidf")]
29pub fn init(_argc: isize, _argv: *const *const u8, _sigpipe: u8) {}
30
31#[cfg(not(target_os = "espidf"))]
32// SAFETY: must be called only once during runtime initialization.
33// NOTE: this is not guaranteed to run, for example when Rust code is called externally.
34// See `fn init()` in `library/std/src/rt.rs` for docs on `sigpipe`.
35pub unsafe fn init(argc: isize, argv: *const *const u8, sigpipe: u8) {
36    // The standard streams might be closed on application startup. To prevent
37    // std::io::{stdin, stdout,stderr} objects from using other unrelated file
38    // resources opened later, we reopen standards streams when they are closed.
39    sanitize_standard_fds();
40
41    // By default, some platforms will send a *signal* when an EPIPE error
42    // would otherwise be delivered. This runtime doesn't install a SIGPIPE
43    // handler, causing it to kill the program, which isn't exactly what we
44    // want!
45    //
46    // Hence, we set SIGPIPE to ignore when the program starts up in order
47    // to prevent this problem. Use `-Zon-broken-pipe=...` to alter this
48    // behavior.
49    reset_sigpipe(sigpipe);
50
51    stack_overflow::init();
52    args::init(argc, argv);
53
54    // Normally, `thread::spawn` will call `Thread::set_name` but since this thread
55    // already exists, we have to call it ourselves. We only do this on Apple targets
56    // because some unix-like operating systems such as Linux share process-id and
57    // thread-id for the main thread and so renaming the main thread will rename the
58    // process and we only want to enable this on platforms we've tested.
59    if cfg!(target_vendor = "apple") {
60        thread::Thread::set_name(&c"main");
61    }
62
63    unsafe fn sanitize_standard_fds() {
64        // fast path with a single syscall for systems with poll()
65        #[cfg(not(any(
66            miri,
67            target_os = "emscripten",
68            target_os = "fuchsia",
69            target_os = "vxworks",
70            target_os = "redox",
71            target_os = "l4re",
72            target_os = "horizon",
73            target_os = "vita",
74            target_os = "rtems",
75            // The poll on Darwin doesn't set POLLNVAL for closed fds.
76            target_vendor = "apple",
77        )))]
78        'poll: {
79            #[cfg(not(all(target_os = "linux", target_env = "gnu")))]
80            use libc::open as open64;
81            #[cfg(all(target_os = "linux", target_env = "gnu"))]
82            use libc::open64;
83
84            use crate::sys::os::errno;
85            let pfds: &mut [_] = &mut [
86                libc::pollfd { fd: 0, events: 0, revents: 0 },
87                libc::pollfd { fd: 1, events: 0, revents: 0 },
88                libc::pollfd { fd: 2, events: 0, revents: 0 },
89            ];
90
91            while libc::poll(pfds.as_mut_ptr(), 3, 0) == -1 {
92                match errno() {
93                    libc::EINTR => continue,
94                    #[cfg(target_vendor = "unikraft")]
95                    libc::ENOSYS => {
96                        // Not all configurations of Unikraft enable `LIBPOSIX_EVENT`.
97                        break 'poll;
98                    }
99                    libc::EINVAL | libc::EAGAIN | libc::ENOMEM => {
100                        // RLIMIT_NOFILE or temporary allocation failures
101                        // may be preventing use of poll(), fall back to fcntl
102                        break 'poll;
103                    }
104                    _ => libc::abort(),
105                }
106            }
107            for pfd in pfds {
108                if pfd.revents & libc::POLLNVAL == 0 {
109                    continue;
110                }
111                if open64(c"/dev/null".as_ptr(), libc::O_RDWR, 0) == -1 {
112                    // If the stream is closed but we failed to reopen it, abort the
113                    // process. Otherwise we wouldn't preserve the safety of
114                    // operations on the corresponding Rust object Stdin, Stdout, or
115                    // Stderr.
116                    libc::abort();
117                }
118            }
119            return;
120        }
121
122        // fallback in case poll isn't available or limited by RLIMIT_NOFILE
123        #[cfg(not(any(
124            // The standard fds are always available in Miri.
125            miri,
126            target_os = "emscripten",
127            target_os = "fuchsia",
128            target_os = "vxworks",
129            target_os = "l4re",
130            target_os = "horizon",
131            target_os = "vita",
132        )))]
133        {
134            #[cfg(not(all(target_os = "linux", target_env = "gnu")))]
135            use libc::open as open64;
136            #[cfg(all(target_os = "linux", target_env = "gnu"))]
137            use libc::open64;
138
139            use crate::sys::os::errno;
140            for fd in 0..3 {
141                if libc::fcntl(fd, libc::F_GETFD) == -1 && errno() == libc::EBADF {
142                    if open64(c"/dev/null".as_ptr(), libc::O_RDWR, 0) == -1 {
143                        // If the stream is closed but we failed to reopen it, abort the
144                        // process. Otherwise we wouldn't preserve the safety of
145                        // operations on the corresponding Rust object Stdin, Stdout, or
146                        // Stderr.
147                        libc::abort();
148                    }
149                }
150            }
151        }
152    }
153
154    unsafe fn reset_sigpipe(#[allow(unused_variables)] sigpipe: u8) {
155        #[cfg(not(any(
156            target_os = "emscripten",
157            target_os = "fuchsia",
158            target_os = "horizon",
159            target_os = "vxworks",
160            target_os = "vita",
161            // Unikraft's `signal` implementation is currently broken:
162            // https://github.com/unikraft/lib-musl/issues/57
163            target_vendor = "unikraft",
164        )))]
165        {
166            // We don't want to add this as a public type to std, nor do we
167            // want to `include!` a file from the compiler (which would break
168            // Miri and xargo for example), so we choose to duplicate these
169            // constants from `compiler/rustc_session/src/config/sigpipe.rs`.
170            // See the other file for docs. NOTE: Make sure to keep them in
171            // sync!
172            mod sigpipe {
173                pub const DEFAULT: u8 = 0;
174                pub const INHERIT: u8 = 1;
175                pub const SIG_IGN: u8 = 2;
176                pub const SIG_DFL: u8 = 3;
177            }
178
179            let (sigpipe_attr_specified, handler) = match sigpipe {
180                sigpipe::DEFAULT => (false, Some(libc::SIG_IGN)),
181                sigpipe::INHERIT => (true, None),
182                sigpipe::SIG_IGN => (true, Some(libc::SIG_IGN)),
183                sigpipe::SIG_DFL => (true, Some(libc::SIG_DFL)),
184                _ => unreachable!(),
185            };
186            if sigpipe_attr_specified {
187                ON_BROKEN_PIPE_FLAG_USED.store(true, crate::sync::atomic::Ordering::Relaxed);
188            }
189            if let Some(handler) = handler {
190                rtassert!(signal(libc::SIGPIPE, handler) != libc::SIG_ERR);
191                #[cfg(target_os = "hurd")]
192                {
193                    rtassert!(signal(libc::SIGLOST, handler) != libc::SIG_ERR);
194                }
195            }
196        }
197    }
198}
199
200// This is set (up to once) in reset_sigpipe.
201#[cfg(not(any(
202    target_os = "espidf",
203    target_os = "emscripten",
204    target_os = "fuchsia",
205    target_os = "horizon",
206    target_os = "vxworks",
207    target_os = "vita",
208)))]
209static ON_BROKEN_PIPE_FLAG_USED: crate::sync::atomic::AtomicBool =
210    crate::sync::atomic::AtomicBool::new(false);
211
212#[cfg(not(any(
213    target_os = "espidf",
214    target_os = "emscripten",
215    target_os = "fuchsia",
216    target_os = "horizon",
217    target_os = "vxworks",
218    target_os = "vita",
219    target_os = "nuttx",
220)))]
221pub(crate) fn on_broken_pipe_flag_used() -> bool {
222    ON_BROKEN_PIPE_FLAG_USED.load(crate::sync::atomic::Ordering::Relaxed)
223}
224
225// SAFETY: must be called only once during runtime cleanup.
226// NOTE: this is not guaranteed to run, for example when the program aborts.
227pub unsafe fn cleanup() {
228    stack_overflow::cleanup();
229}
230
231#[allow(unused_imports)]
232pub use libc::signal;
233
234#[inline]
235pub(crate) fn is_interrupted(errno: i32) -> bool {
236    errno == libc::EINTR
237}
238
239pub fn decode_error_kind(errno: i32) -> ErrorKind {
240    use ErrorKind::*;
241    match errno as libc::c_int {
242        libc::E2BIG => ArgumentListTooLong,
243        libc::EADDRINUSE => AddrInUse,
244        libc::EADDRNOTAVAIL => AddrNotAvailable,
245        libc::EBUSY => ResourceBusy,
246        libc::ECONNABORTED => ConnectionAborted,
247        libc::ECONNREFUSED => ConnectionRefused,
248        libc::ECONNRESET => ConnectionReset,
249        libc::EDEADLK => Deadlock,
250        libc::EDQUOT => QuotaExceeded,
251        libc::EEXIST => AlreadyExists,
252        libc::EFBIG => FileTooLarge,
253        libc::EHOSTUNREACH => HostUnreachable,
254        libc::EINTR => Interrupted,
255        libc::EINVAL => InvalidInput,
256        libc::EISDIR => IsADirectory,
257        libc::ELOOP => FilesystemLoop,
258        libc::ENOENT => NotFound,
259        libc::ENOMEM => OutOfMemory,
260        libc::ENOSPC => StorageFull,
261        libc::ENOSYS => Unsupported,
262        libc::EMLINK => TooManyLinks,
263        libc::ENAMETOOLONG => InvalidFilename,
264        libc::ENETDOWN => NetworkDown,
265        libc::ENETUNREACH => NetworkUnreachable,
266        libc::ENOTCONN => NotConnected,
267        libc::ENOTDIR => NotADirectory,
268        #[cfg(not(target_os = "aix"))]
269        libc::ENOTEMPTY => DirectoryNotEmpty,
270        libc::EPIPE => BrokenPipe,
271        libc::EROFS => ReadOnlyFilesystem,
272        libc::ESPIPE => NotSeekable,
273        libc::ESTALE => StaleNetworkFileHandle,
274        libc::ETIMEDOUT => TimedOut,
275        libc::ETXTBSY => ExecutableFileBusy,
276        libc::EXDEV => CrossesDevices,
277        libc::EINPROGRESS => InProgress,
278
279        libc::EACCES | libc::EPERM => PermissionDenied,
280
281        // These two constants can have the same value on some systems,
282        // but different values on others, so we can't use a match
283        // clause
284        x if x == libc::EAGAIN || x == libc::EWOULDBLOCK => WouldBlock,
285
286        _ => Uncategorized,
287    }
288}
289
290#[doc(hidden)]
291pub trait IsMinusOne {
292    fn is_minus_one(&self) -> bool;
293}
294
295macro_rules! impl_is_minus_one {
296    ($($t:ident)*) => ($(impl IsMinusOne for $t {
297        fn is_minus_one(&self) -> bool {
298            *self == -1
299        }
300    })*)
301}
302
303impl_is_minus_one! { i8 i16 i32 i64 isize }
304
305/// Converts native return values to Result using the *-1 means error is in `errno`*  convention.
306/// Non-error values are `Ok`-wrapped.
307pub fn cvt<T: IsMinusOne>(t: T) -> crate::io::Result<T> {
308    if t.is_minus_one() { Err(crate::io::Error::last_os_error()) } else { Ok(t) }
309}
310
311/// `-1` → look at `errno` → retry on `EINTR`. Otherwise `Ok()`-wrap the closure return value.
312pub fn cvt_r<T, F>(mut f: F) -> crate::io::Result<T>
313where
314    T: IsMinusOne,
315    F: FnMut() -> T,
316{
317    loop {
318        match cvt(f()) {
319            Err(ref e) if e.is_interrupted() => {}
320            other => return other,
321        }
322    }
323}
324
325#[allow(dead_code)] // Not used on all platforms.
326/// Zero means `Ok()`, all other values are treated as raw OS errors. Does not look at `errno`.
327pub fn cvt_nz(error: libc::c_int) -> crate::io::Result<()> {
328    if error == 0 { Ok(()) } else { Err(crate::io::Error::from_raw_os_error(error)) }
329}
330
331// libc::abort() will run the SIGABRT handler.  That's fine because anyone who
332// installs a SIGABRT handler already has to expect it to run in Very Bad
333// situations (eg, malloc crashing).
334//
335// Current glibc's abort() function unblocks SIGABRT, raises SIGABRT, clears the
336// SIGABRT handler and raises it again, and then starts to get creative.
337//
338// See the public documentation for `intrinsics::abort()` and `process::abort()`
339// for further discussion.
340//
341// There is confusion about whether libc::abort() flushes stdio streams.
342// libc::abort() is required by ISO C 99 (7.14.1.1p5) to be async-signal-safe,
343// so flushing streams is at least extremely hard, if not entirely impossible.
344//
345// However, some versions of POSIX (eg IEEE Std 1003.1-2001) required abort to
346// do so.  In 1003.1-2004 this was fixed.
347//
348// glibc's implementation did the flush, unsafely, before glibc commit
349// 91e7cf982d01 `abort: Do not flush stdio streams [BZ #15436]` by Florian
350// Weimer.  According to glibc's NEWS:
351//
352//    The abort function terminates the process immediately, without flushing
353//    stdio streams.  Previous glibc versions used to flush streams, resulting
354//    in deadlocks and further data corruption.  This change also affects
355//    process aborts as the result of assertion failures.
356//
357// This is an accurate description of the problem.  The only solution for
358// program with nontrivial use of C stdio is a fixed libc - one which does not
359// try to flush in abort - since even libc-internal errors, and assertion
360// failures generated from C, will go via abort().
361//
362// On systems with old, buggy, libcs, the impact can be severe for a
363// multithreaded C program.  It is much less severe for Rust, because Rust
364// stdlib doesn't use libc stdio buffering.  In a typical Rust program, which
365// does not use C stdio, even a buggy libc::abort() is, in fact, safe.
366pub fn abort_internal() -> ! {
367    unsafe { libc::abort() }
368}
369
370cfg_if::cfg_if! {
371    if #[cfg(target_os = "android")] {
372        #[link(name = "dl", kind = "static", modifiers = "-bundle",
373            cfg(target_feature = "crt-static"))]
374        #[link(name = "dl", cfg(not(target_feature = "crt-static")))]
375        #[link(name = "log", cfg(not(target_feature = "crt-static")))]
376        unsafe extern "C" {}
377    } else if #[cfg(target_os = "freebsd")] {
378        #[link(name = "execinfo")]
379        #[link(name = "pthread")]
380        unsafe extern "C" {}
381    } else if #[cfg(target_os = "netbsd")] {
382        #[link(name = "pthread")]
383        #[link(name = "rt")]
384        unsafe extern "C" {}
385    } else if #[cfg(any(target_os = "dragonfly", target_os = "openbsd"))] {
386        #[link(name = "pthread")]
387        unsafe extern "C" {}
388    } else if #[cfg(target_os = "solaris")] {
389        #[link(name = "socket")]
390        #[link(name = "posix4")]
391        #[link(name = "pthread")]
392        #[link(name = "resolv")]
393        unsafe extern "C" {}
394    } else if #[cfg(target_os = "illumos")] {
395        #[link(name = "socket")]
396        #[link(name = "posix4")]
397        #[link(name = "pthread")]
398        #[link(name = "resolv")]
399        #[link(name = "nsl")]
400        // Use libumem for the (malloc-compatible) allocator
401        #[link(name = "umem")]
402        unsafe extern "C" {}
403    } else if #[cfg(target_vendor = "apple")] {
404        // Link to `libSystem.dylib`.
405        //
406        // Don't get confused by the presence of `System.framework`,
407        // it is a deprecated wrapper over the dynamic library.
408        #[link(name = "System")]
409        unsafe extern "C" {}
410    } else if #[cfg(target_os = "fuchsia")] {
411        #[link(name = "zircon")]
412        #[link(name = "fdio")]
413        unsafe extern "C" {}
414    } else if #[cfg(all(target_os = "linux", target_env = "uclibc"))] {
415        #[link(name = "dl")]
416        unsafe extern "C" {}
417    } else if #[cfg(target_os = "vita")] {
418        #[link(name = "pthread", kind = "static", modifiers = "-bundle")]
419        unsafe extern "C" {}
420    }
421}
422
423#[cfg(any(target_os = "espidf", target_os = "horizon", target_os = "vita", target_os = "nuttx"))]
424mod unsupported {
425    use crate::io;
426
427    pub fn unsupported<T>() -> io::Result<T> {
428        Err(unsupported_err())
429    }
430
431    pub fn unsupported_err() -> io::Error {
432        io::Error::UNSUPPORTED_PLATFORM
433    }
434}