Skip to main content

std/sys/thread/
unix.rs

1#[cfg(not(any(
2    target_env = "newlib",
3    target_os = "l4re",
4    target_os = "emscripten",
5    target_os = "redox",
6    target_os = "hurd",
7    target_os = "aix",
8    target_os = "wasi",
9)))]
10use crate::ffi::CStr;
11use crate::mem::{self, DropGuard, ManuallyDrop};
12use crate::num::NonZero;
13#[cfg(all(target_os = "linux", target_env = "gnu"))]
14use crate::sys::weak::dlsym;
15#[cfg(any(
16    target_os = "solaris",
17    target_os = "illumos",
18    target_os = "nto",
19    target_os = "qnx",
20))]
21use crate::sys::weak::weak;
22use crate::thread::ThreadInit;
23use crate::time::Duration;
24use crate::{cmp, io, ptr, sys};
25#[cfg(not(any(
26    target_os = "l4re",
27    target_os = "vxworks",
28    target_os = "espidf",
29    target_os = "nuttx"
30)))]
31pub const DEFAULT_MIN_STACK_SIZE: usize = 2 * 1024 * 1024;
32#[cfg(target_os = "l4re")]
33pub const DEFAULT_MIN_STACK_SIZE: usize = 1024 * 1024;
34#[cfg(target_os = "vxworks")]
35pub const DEFAULT_MIN_STACK_SIZE: usize = 256 * 1024;
36#[cfg(any(target_os = "espidf", target_os = "nuttx"))]
37pub const DEFAULT_MIN_STACK_SIZE: usize = 0; // 0 indicates that the stack size configured in the ESP-IDF/NuttX menuconfig system should be used
38
39pub struct Thread {
40    id: libc::pthread_t,
41}
42
43// Some platforms may have pthread_t as a pointer in which case we still want
44// a thread to be Send/Sync
45unsafe impl Send for Thread {}
46unsafe impl Sync for Thread {}
47
48impl Thread {
49    // unsafe: see thread::Builder::spawn_unchecked for safety requirements
50    #[cfg_attr(miri, track_caller)] // even without panics, this helps for Miri backtraces
51    pub unsafe fn new(stack: usize, init: Box<ThreadInit>) -> io::Result<Thread> {
52        let data = init;
53        let mut attr: mem::MaybeUninit<libc::pthread_attr_t> = mem::MaybeUninit::uninit();
54        assert_eq!(libc::pthread_attr_init(attr.as_mut_ptr()), 0);
55        let mut attr = DropGuard::new(&mut attr, |attr| {
56            assert_eq!(libc::pthread_attr_destroy(attr.as_mut_ptr()), 0)
57        });
58
59        #[cfg(any(target_os = "espidf", target_os = "nuttx"))]
60        if stack > 0 {
61            // Only set the stack if a non-zero value is passed
62            // 0 is used as an indication that the default stack size configured in the ESP-IDF/NuttX menuconfig system should be used
63            assert_eq!(
64                libc::pthread_attr_setstacksize(
65                    attr.as_mut_ptr(),
66                    cmp::max(stack, min_stack_size(attr.as_ptr()))
67                ),
68                0
69            );
70        }
71
72        #[cfg(not(any(target_os = "espidf", target_os = "nuttx")))]
73        {
74            let stack_size = cmp::max(stack, min_stack_size(attr.as_ptr()));
75
76            match libc::pthread_attr_setstacksize(attr.as_mut_ptr(), stack_size) {
77                0 => {}
78                n => {
79                    assert_eq!(n, libc::EINVAL);
80                    // EINVAL means |stack_size| is either too small or not a
81                    // multiple of the system page size. Because it's definitely
82                    // >= PTHREAD_STACK_MIN, it must be an alignment issue.
83                    // Round up to the nearest page and try again.
84                    let page_size = sys::pal::conf::page_size();
85                    let stack_size =
86                        (stack_size + page_size - 1) & (-(page_size as isize - 1) as usize - 1);
87
88                    // Some libc implementations, e.g. musl, place an upper bound
89                    // on the stack size, in which case we can only gracefully return
90                    // an error here.
91                    if libc::pthread_attr_setstacksize(attr.as_mut_ptr(), stack_size) != 0 {
92                        return Err(io::const_error!(
93                            io::ErrorKind::InvalidInput,
94                            "invalid stack size"
95                        ));
96                    }
97                }
98            };
99        }
100
101        let data = Box::into_raw(data);
102        let mut native: libc::pthread_t = mem::zeroed();
103        let ret = libc::pthread_create(&mut native, attr.as_ptr(), thread_start, data as *mut _);
104        return if ret == 0 {
105            Ok(Thread { id: native })
106        } else {
107            // The thread failed to start and as a result `data` was not consumed.
108            // Therefore, it is safe to reconstruct the box so that it gets deallocated.
109            drop(Box::from_raw(data));
110            Err(io::Error::from_raw_os_error(ret))
111        };
112
113        extern "C" fn thread_start(data: *mut libc::c_void) -> *mut libc::c_void {
114            unsafe {
115                // SAFETY: we are simply recreating the box that was leaked earlier.
116                let init = Box::from_raw(data as *mut ThreadInit);
117                let rust_start = init.init();
118
119                // Now that the thread information is set, set up our stack
120                // overflow handler.
121                let _handler = sys::stack_overflow::Handler::new();
122
123                rust_start();
124            }
125            ptr::null_mut()
126        }
127    }
128
129    pub fn join(self) {
130        let id = self.into_id();
131        let ret = unsafe { libc::pthread_join(id, ptr::null_mut()) };
132        assert!(ret == 0, "failed to join thread: {}", io::Error::from_raw_os_error(ret));
133    }
134
135    #[cfg(not(target_os = "wasi"))]
136    pub fn id(&self) -> libc::pthread_t {
137        self.id
138    }
139
140    pub fn into_id(self) -> libc::pthread_t {
141        ManuallyDrop::new(self).id
142    }
143}
144
145impl Drop for Thread {
146    fn drop(&mut self) {
147        let ret = unsafe { libc::pthread_detach(self.id) };
148        debug_assert_eq!(ret, 0);
149    }
150}
151
152pub fn available_parallelism() -> io::Result<NonZero<usize>> {
153    cfg_select! {
154        any(
155            target_os = "android",
156            target_os = "emscripten",
157            target_os = "fuchsia",
158            target_os = "hurd",
159            target_os = "linux",
160            target_os = "aix",
161            target_vendor = "apple",
162            target_os = "cygwin",
163            target_os = "redox",
164            target_os = "wasi",
165        ) => {
166            #[allow(unused_assignments)]
167            #[allow(unused_mut)]
168            let mut quota = usize::MAX;
169
170            #[cfg(any(target_os = "android", target_os = "linux"))]
171            {
172                quota = cgroups::quota().max(1);
173                let mut set: libc::cpu_set_t = unsafe { mem::zeroed() };
174                unsafe {
175                    if libc::sched_getaffinity(0, size_of::<libc::cpu_set_t>(), &mut set) == 0 {
176                        let count = libc::CPU_COUNT(&set) as usize;
177                        let count = count.min(quota);
178
179                        // According to sched_getaffinity's API it should always be non-zero, but
180                        // some old MIPS kernels were buggy and zero-initialized the mask if
181                        // none was explicitly set.
182                        // In that case we use the sysconf fallback.
183                        if let Some(count) = NonZero::new(count) {
184                            return Ok(count)
185                        }
186                    }
187                }
188            }
189            match unsafe { libc::sysconf(libc::_SC_NPROCESSORS_ONLN) } {
190                -1 => Err(io::Error::last_os_error()),
191                0 => Err(io::Error::UNKNOWN_THREAD_COUNT),
192                cpus => {
193                    let count = cpus as usize;
194                    // Cover the unusual situation where we were able to get the quota but not the affinity mask
195                    let count = count.min(quota);
196                    Ok(unsafe { NonZero::new_unchecked(count) })
197                }
198            }
199        }
200        any(
201           target_os = "freebsd",
202           target_os = "dragonfly",
203           target_os = "openbsd",
204           target_os = "netbsd",
205        ) => {
206            use crate::ptr;
207
208            #[cfg(target_os = "freebsd")]
209            {
210                let mut set: libc::cpuset_t = unsafe { mem::zeroed() };
211                unsafe {
212                    if libc::cpuset_getaffinity(
213                        libc::CPU_LEVEL_WHICH,
214                        libc::CPU_WHICH_PID,
215                        -1,
216                        size_of::<libc::cpuset_t>(),
217                        &mut set,
218                    ) == 0 {
219                        let count = libc::CPU_COUNT(&set) as usize;
220                        if count > 0 {
221                            return Ok(NonZero::new_unchecked(count));
222                        }
223                    }
224                }
225            }
226
227            #[cfg(target_os = "netbsd")]
228            {
229                unsafe {
230                    let set = libc::_cpuset_create();
231                    if !set.is_null() {
232                        let mut count: usize = 0;
233                        if libc::pthread_getaffinity_np(libc::pthread_self(), libc::_cpuset_size(set), set) == 0 {
234                            for i in 0..libc::cpuid_t::MAX {
235                                match libc::_cpuset_isset(i, set) {
236                                    -1 => break,
237                                    0 => continue,
238                                    _ => count = count + 1,
239                                }
240                            }
241                        }
242                        libc::_cpuset_destroy(set);
243                        if let Some(count) = NonZero::new(count) {
244                            return Ok(count);
245                        }
246                    }
247                }
248            }
249
250            let mut cpus: libc::c_uint = 0;
251            let mut cpus_size = size_of_val(&cpus);
252
253            unsafe {
254                cpus = libc::sysconf(libc::_SC_NPROCESSORS_ONLN) as libc::c_uint;
255            }
256
257            // Fallback approach in case of errors or no hardware threads.
258            if cpus < 1 {
259                let mut mib = [libc::CTL_HW, libc::HW_NCPU, 0, 0];
260                let res = unsafe {
261                    libc::sysctl(
262                        mib.as_mut_ptr(),
263                        2,
264                        (&raw mut cpus) as *mut _,
265                        (&raw mut cpus_size) as *mut _,
266                        ptr::null_mut(),
267                        0,
268                    )
269                };
270
271                // Handle errors if any.
272                if res == -1 {
273                    return Err(io::Error::last_os_error());
274                } else if cpus == 0 {
275                    return Err(io::Error::UNKNOWN_THREAD_COUNT);
276                }
277            }
278
279            Ok(unsafe { NonZero::new_unchecked(cpus as usize) })
280        }
281        target_os = "nto" => {
282            unsafe {
283                use libc::_syspage_ptr;
284                if _syspage_ptr.is_null() {
285                    Err(io::const_error!(io::ErrorKind::NotFound, "no syspage available"))
286                } else {
287                    let cpus = (*_syspage_ptr).num_cpu;
288                    NonZero::new(cpus as usize)
289                        .ok_or(io::Error::UNKNOWN_THREAD_COUNT)
290                }
291            }
292        }
293        any(target_os = "solaris", target_os = "illumos") => {
294            let mut cpus = 0u32;
295            if unsafe { libc::pset_info(libc::PS_MYID, core::ptr::null_mut(), &mut cpus, core::ptr::null_mut()) } != 0 {
296                return Err(io::Error::UNKNOWN_THREAD_COUNT);
297            }
298            Ok(unsafe { NonZero::new_unchecked(cpus as usize) })
299        }
300        target_os = "haiku" => {
301            // system_info cpu_count field gets the static data set at boot time with `smp_set_num_cpus`
302            // `get_system_info` calls then `smp_get_num_cpus`
303            unsafe {
304                let mut sinfo: libc::system_info = crate::mem::zeroed();
305                let res = libc::get_system_info(&mut sinfo);
306
307                if res != libc::B_OK {
308                    return Err(io::Error::UNKNOWN_THREAD_COUNT);
309                }
310
311                Ok(NonZero::new_unchecked(sinfo.cpu_count as usize))
312            }
313        }
314        target_os = "vxworks" => {
315            // Note: there is also `vxCpuConfiguredGet`, closer to _SC_NPROCESSORS_CONF
316            // expectations than the actual cores availability.
317
318            // SAFETY: `vxCpuEnabledGet` always fetches a mask with at least one bit set
319            unsafe{
320                let set = libc::vxCpuEnabledGet();
321                Ok(NonZero::new_unchecked(set.count_ones() as usize))
322            }
323        }
324        _ => {
325            // FIXME: implement on l4re
326            Err(io::const_error!(io::ErrorKind::Unsupported, "getting the number of hardware threads is not supported on the target platform"))
327        }
328    }
329}
330
331pub fn current_os_id() -> Option<u64> {
332    // Most Unix platforms have a way to query an integer ID of the current thread, all with
333    // slightly different spellings.
334    //
335    // The OS thread ID is used rather than `pthread_self` so as to match what will be displayed
336    // for process inspection (debuggers, trace, `top`, etc.).
337    cfg_select! {
338        // Most platforms have a function returning a `pid_t` or int, which is an `i32`.
339        any(target_os = "android", target_os = "linux") => {
340            use crate::sys::pal::weak::syscall;
341
342            // `libc::gettid` is only available on glibc 2.30+, but the syscall is available
343            // since Linux 2.4.11.
344            syscall!(fn gettid() -> libc::pid_t;);
345
346            // SAFETY: FFI call with no preconditions.
347            let id: libc::pid_t = unsafe { gettid() };
348            Some(id as u64)
349        }
350        target_os = "nto" => {
351            // SAFETY: FFI call with no preconditions.
352            let id: libc::pid_t = unsafe { libc::gettid() };
353            Some(id as u64)
354        }
355        target_os = "openbsd" => {
356            // SAFETY: FFI call with no preconditions.
357            let id: libc::pid_t = unsafe { libc::getthrid() };
358            Some(id as u64)
359        }
360        target_os = "freebsd" => {
361            // SAFETY: FFI call with no preconditions.
362            let id: libc::c_int = unsafe { libc::pthread_getthreadid_np() };
363            Some(id as u64)
364        }
365        target_os = "netbsd" => {
366            // SAFETY: FFI call with no preconditions.
367            let id: libc::lwpid_t = unsafe { libc::_lwp_self() };
368            Some(id as u64)
369        }
370        any(target_os = "illumos", target_os = "solaris") => {
371            // On Illumos and Solaris, the `pthread_t` is the same as the OS thread ID.
372            // SAFETY: FFI call with no preconditions.
373            let id: libc::pthread_t = unsafe { libc::pthread_self() };
374            Some(id as u64)
375        }
376        target_vendor = "apple" => {
377            // Apple allows querying arbitrary thread IDs, `thread=NULL` queries the current thread.
378            let mut id = 0u64;
379            // SAFETY: `thread_id` is a valid pointer, no other preconditions.
380            let status: libc::c_int = unsafe { libc::pthread_threadid_np(0, &mut id) };
381            if status == 0 {
382                Some(id)
383            } else {
384                None
385            }
386        }
387        // Other platforms don't have an OS thread ID or don't have a way to access it.
388        _ => None,
389    }
390}
391
392#[cfg(any(
393    target_os = "linux",
394    target_os = "nto",
395    target_os = "solaris",
396    target_os = "illumos",
397    target_os = "vxworks",
398    target_os = "cygwin",
399    target_vendor = "apple",
400    target_os = "netbsd",
401))]
402fn truncate_cstr<const MAX_WITH_NUL: usize>(cstr: &CStr) -> [libc::c_char; MAX_WITH_NUL] {
403    let mut result = [0; MAX_WITH_NUL];
404    for (src, dst) in cstr.to_bytes().iter().zip(&mut result[..MAX_WITH_NUL - 1]) {
405        *dst = *src as libc::c_char;
406    }
407    result
408}
409
410#[cfg(target_os = "android")]
411pub fn set_name(name: &CStr) {
412    const PR_SET_NAME: libc::c_int = 15;
413    unsafe {
414        let res = libc::prctl(
415            PR_SET_NAME,
416            name.as_ptr(),
417            0 as libc::c_ulong,
418            0 as libc::c_ulong,
419            0 as libc::c_ulong,
420        );
421        // We have no good way of propagating errors here, but in debug-builds let's check that this actually worked.
422        debug_assert_eq!(res, 0);
423    }
424}
425
426#[cfg(any(
427    target_os = "linux",
428    target_os = "freebsd",
429    target_os = "dragonfly",
430    target_os = "nuttx",
431    target_os = "cygwin"
432))]
433pub fn set_name(name: &CStr) {
434    unsafe {
435        cfg_select! {
436            any(target_os = "linux", target_os = "cygwin") => {
437                // Linux and Cygwin limits the allowed length of the name.
438                const TASK_COMM_LEN: usize = 16;
439                let name = truncate_cstr::<{ TASK_COMM_LEN }>(name);
440            }
441            _ => {
442                // FreeBSD, DragonFly BSD and NuttX do not enforce length limits.
443            }
444        };
445        // Available since glibc 2.12, musl 1.1.16, and uClibc 1.0.20 for Linux,
446        // FreeBSD 12.2 and 13.0, and DragonFly BSD 6.0.
447        let res = libc::pthread_setname_np(libc::pthread_self(), name.as_ptr());
448        // We have no good way of propagating errors here, but in debug-builds let's check that this actually worked.
449        debug_assert_eq!(res, 0);
450    }
451}
452
453#[cfg(target_os = "openbsd")]
454pub fn set_name(name: &CStr) {
455    unsafe {
456        libc::pthread_set_name_np(libc::pthread_self(), name.as_ptr());
457    }
458}
459
460#[cfg(target_vendor = "apple")]
461pub fn set_name(name: &CStr) {
462    unsafe {
463        let name = truncate_cstr::<{ libc::MAXTHREADNAMESIZE }>(name);
464        let res = libc::pthread_setname_np(name.as_ptr());
465        // We have no good way of propagating errors here, but in debug-builds let's check that this actually worked.
466        debug_assert_eq!(res, 0);
467    }
468}
469
470#[cfg(target_os = "netbsd")]
471pub fn set_name(name: &CStr) {
472    // See https://github.com/NetBSD/src/blob/8d40872b4c550a802379f3b9c22a40212d5e149d/lib/libpthread/pthread.h#L281
473    // FIXME: move to libc.
474    const PTHREAD_MAX_NAMELEN_NP: usize = 32;
475
476    unsafe {
477        let name = truncate_cstr::<{ PTHREAD_MAX_NAMELEN_NP }>(name);
478        let res = libc::pthread_setname_np(
479            libc::pthread_self(),
480            c"%s".as_ptr(),
481            name.as_ptr() as *mut libc::c_void,
482        );
483        debug_assert_eq!(res, 0);
484    }
485}
486
487#[cfg(any(target_os = "solaris", target_os = "illumos", target_os = "nto"))]
488pub fn set_name(name: &CStr) {
489    weak!(
490        fn pthread_setname_np(thread: libc::pthread_t, name: *const libc::c_char) -> libc::c_int;
491    );
492
493    if let Some(f) = pthread_setname_np.get() {
494        #[cfg(target_os = "nto")]
495        const THREAD_NAME_MAX: usize = libc::_NTO_THREAD_NAME_MAX as usize;
496        #[cfg(any(target_os = "solaris", target_os = "illumos"))]
497        const THREAD_NAME_MAX: usize = 32;
498
499        let name = truncate_cstr::<{ THREAD_NAME_MAX }>(name);
500        let res = unsafe { f(libc::pthread_self(), name.as_ptr()) };
501        debug_assert_eq!(res, 0);
502    }
503}
504
505#[cfg(target_os = "fuchsia")]
506pub fn set_name(name: &CStr) {
507    use crate::sys::pal::fuchsia::*;
508    unsafe {
509        zx_object_set_property(
510            zx_thread_self(),
511            ZX_PROP_NAME,
512            name.as_ptr() as *const libc::c_void,
513            name.to_bytes().len(),
514        );
515    }
516}
517
518#[cfg(target_os = "haiku")]
519pub fn set_name(name: &CStr) {
520    unsafe {
521        let thread_self = libc::find_thread(ptr::null_mut());
522        let res = libc::rename_thread(thread_self, name.as_ptr());
523        // We have no good way of propagating errors here, but in debug-builds let's check that this actually worked.
524        debug_assert_eq!(res, libc::B_OK);
525    }
526}
527
528#[cfg(target_os = "vxworks")]
529pub fn set_name(name: &CStr) {
530    let mut name = truncate_cstr::<{ (libc::VX_TASK_RENAME_LENGTH - 1) as usize }>(name);
531    let res = unsafe { libc::taskNameSet(libc::taskIdSelf(), name.as_mut_ptr()) };
532    debug_assert_eq!(res, libc::OK);
533}
534
535#[cfg(not(target_os = "espidf"))]
536pub fn sleep(dur: Duration) {
537    cfg_select! {
538        // Any unix that has clock_nanosleep
539        // If this list changes update the MIRI chock_nanosleep shim
540        any(
541            target_os = "freebsd",
542            target_os = "netbsd",
543            target_os = "linux",
544            target_os = "android",
545            target_os = "solaris",
546            target_os = "illumos",
547            target_os = "dragonfly",
548            target_os = "hurd",
549            target_os = "vxworks",
550            target_os = "wasi",
551        ) => {
552            // POSIX specifies that `nanosleep` uses CLOCK_REALTIME, but is not
553            // affected by clock adjustments. The timing of `sleep` however should
554            // be tied to `Instant` where possible. Thus, we use `clock_nanosleep`
555            // with a relative time interval instead, which allows explicitly
556            // specifying the clock.
557            //
558            // In practice, most systems (like e.g. Linux) actually use
559            // CLOCK_MONOTONIC for `nanosleep` anyway, but others like FreeBSD don't
560            // so it's better to be safe.
561            //
562            // wasi-libc prior to WebAssembly/wasi-libc#696 has a broken implementation
563            // of `nanosleep` which used `CLOCK_REALTIME` even though it is unsupported
564            // on WASIp2. Using `clock_nanosleep` directly bypasses the issue.
565            unsafe fn nanosleep(rqtp: *const libc::timespec, rmtp: *mut libc::timespec) -> libc::c_int {
566                unsafe { libc::clock_nanosleep(crate::sys::time::Instant::CLOCK_ID, 0, rqtp, rmtp) }
567            }
568        }
569        _ => {
570            unsafe fn nanosleep(rqtp: *const libc::timespec, rmtp: *mut libc::timespec) -> libc::c_int {
571                let r = unsafe { libc::nanosleep(rqtp, rmtp) };
572                // `clock_nanosleep` returns the error number directly, so mimic
573                // that behaviour to make the shared code below simpler.
574                if r == 0 { 0 } else { sys::io::errno() }
575            }
576        }
577    }
578
579    let mut secs = dur.as_secs();
580    let mut nsecs = dur.subsec_nanos() as _;
581
582    // If we're awoken with a signal then the return value will be -1 and
583    // nanosleep will fill in `ts` with the remaining time.
584    unsafe {
585        while secs > 0 || nsecs > 0 {
586            let mut ts = libc::timespec::default();
587            ts.tv_sec = cmp::min(libc::time_t::MAX as u64, secs) as libc::time_t;
588            ts.tv_nsec = nsecs;
589
590            secs -= ts.tv_sec as u64;
591            let ts_ptr = &raw mut ts;
592            let r = nanosleep(ts_ptr, ts_ptr);
593            if r != 0 {
594                assert_eq!(r, libc::EINTR);
595                secs += ts.tv_sec as u64;
596                nsecs = ts.tv_nsec;
597            } else {
598                nsecs = 0;
599            }
600        }
601    }
602}
603
604#[cfg(target_os = "espidf")]
605pub fn sleep(dur: Duration) {
606    // ESP-IDF does not have `nanosleep`, so we use `usleep` instead.
607    // As per the documentation of `usleep`, it is expected to support
608    // sleep times as big as at least up to 1 second.
609    //
610    // ESP-IDF does support almost up to `u32::MAX`, but due to a potential integer overflow in its
611    // `usleep` implementation
612    // (https://github.com/espressif/esp-idf/blob/d7ca8b94c852052e3bc33292287ef4dd62c9eeb1/components/newlib/time.c#L210),
613    // we limit the sleep time to the maximum one that would not cause the underlying `usleep` implementation to overflow
614    // (`portTICK_PERIOD_MS` can be anything between 1 to 1000, and is 10 by default).
615    const MAX_MICROS: u32 = u32::MAX - 1_000_000 - 1;
616
617    // Add any nanoseconds smaller than a microsecond as an extra microsecond
618    // so as to comply with the `std::thread::sleep` contract which mandates
619    // implementations to sleep for _at least_ the provided `dur`.
620    // We can't overflow `micros` as it is a `u128`, while `Duration` is a pair of
621    // (`u64` secs, `u32` nanos), where the nanos are strictly smaller than 1 second
622    // (i.e. < 1_000_000_000)
623    let mut micros = dur.as_micros() + if dur.subsec_nanos() % 1_000 > 0 { 1 } else { 0 };
624
625    while micros > 0 {
626        let st = if micros > MAX_MICROS as u128 { MAX_MICROS } else { micros as u32 };
627        unsafe {
628            libc::usleep(st);
629        }
630
631        micros -= st as u128;
632    }
633}
634
635// Any unix that has clock_nanosleep
636// If this list changes update the MIRI chock_nanosleep shim
637#[cfg(any(
638    target_os = "freebsd",
639    target_os = "netbsd",
640    target_os = "linux",
641    target_os = "android",
642    target_os = "solaris",
643    target_os = "illumos",
644    target_os = "dragonfly",
645    target_os = "hurd",
646    target_os = "vxworks",
647    target_os = "wasi",
648))]
649pub fn sleep_until(deadline: crate::time::Instant) {
650    use crate::time::Instant;
651
652    #[cfg(all(
653        target_os = "linux",
654        target_env = "gnu",
655        target_pointer_width = "32",
656        not(target_arch = "riscv32")
657    ))]
658    {
659        use crate::sys::pal::time::__timespec64;
660        use crate::sys::pal::weak::weak;
661
662        // This got added in glibc 2.31, along with a 64-bit `clock_gettime`
663        // function.
664        weak! {
665            fn __clock_nanosleep_time64(
666                clock_id: libc::clockid_t,
667                flags: libc::c_int,
668                req: *const __timespec64,
669                rem: *mut __timespec64,
670            ) -> libc::c_int;
671        }
672
673        if let Some(clock_nanosleep) = __clock_nanosleep_time64.get() {
674            let ts = deadline.into_inner().into_timespec().to_timespec64();
675            loop {
676                let r = unsafe {
677                    clock_nanosleep(
678                        crate::sys::time::Instant::CLOCK_ID,
679                        libc::TIMER_ABSTIME,
680                        &ts,
681                        core::ptr::null_mut(),
682                    )
683                };
684
685                match r {
686                    0 => return,
687                    libc::EINTR => continue,
688                    // If the underlying kernel doesn't support the 64-bit
689                    // syscall, `__clock_nanosleep_time64` will fail. The
690                    // error code nowadays is EOVERFLOW, but it used to be
691                    // ENOSYS – so just don't rely on any particular value.
692                    // The parameters are all valid, so the only reasons
693                    // why the call might fail are EINTR and the call not
694                    // being supported. Fall through to the clamping version
695                    // in that case.
696                    _ => break,
697                }
698            }
699        }
700    }
701
702    let Some(ts) = deadline.into_inner().into_timespec().to_timespec() else {
703        // The deadline is further in the future then can be passed to
704        // clock_nanosleep. We have to use Self::sleep instead. This might
705        // happen on 32 bit platforms, especially closer to 2038.
706        let now = Instant::now();
707        if let Some(delay) = deadline.checked_duration_since(now) {
708            sleep(delay);
709        }
710        return;
711    };
712
713    unsafe {
714        // When we get interrupted (res = EINTR) call clock_nanosleep again
715        loop {
716            let res = libc::clock_nanosleep(
717                crate::sys::time::Instant::CLOCK_ID,
718                libc::TIMER_ABSTIME,
719                &ts,
720                core::ptr::null_mut(), // not required with TIMER_ABSTIME
721            );
722
723            if res == 0 {
724                break;
725            } else {
726                assert_eq!(
727                    res,
728                    libc::EINTR,
729                    "timespec is in range,
730                         clockid is valid and kernel should support it"
731                );
732            }
733        }
734    }
735}
736
737#[cfg(target_vendor = "apple")]
738pub fn sleep_until(deadline: crate::time::Instant) {
739    unsafe extern "C" {
740        // This is defined in the public header mach/mach_time.h alongside
741        // `mach_absolute_time`, and like it has been available since the very
742        // beginning.
743        //
744        // There isn't really any documentation on this function, except for a
745        // short reference in technical note 2169:
746        // https://developer.apple.com/library/archive/technotes/tn2169/_index.html
747        safe fn mach_wait_until(deadline: u64) -> libc::kern_return_t;
748    }
749
750    // Make sure to round up to ensure that we definitely sleep until after
751    // the deadline has elapsed.
752    let Some(deadline) = deadline.into_inner().into_mach_absolute_time_ceil() else {
753        // Since the deadline is before the system boot time, it has already
754        // passed, so we can return immediately.
755        return;
756    };
757
758    // If the deadline is not representable, then sleep for the maximum duration
759    // possible and worry about the potential clock issues later (in ca. 600 years).
760    let deadline = deadline.try_into().unwrap_or(u64::MAX);
761    loop {
762        match mach_wait_until(deadline) {
763            // Success! The deadline has passed.
764            libc::KERN_SUCCESS => break,
765            // If the sleep gets interrupted by a signal, `mach_wait_until`
766            // returns KERN_ABORTED, so we need to restart the syscall.
767            // Also see Apple's implementation of the POSIX `nanosleep`, which
768            // converts this error to the POSIX equivalent EINTR:
769            // https://github.com/apple-oss-distributions/Libc/blob/55b54c0a0c37b3b24393b42b90a4c561d6c606b1/gen/nanosleep.c#L281-L306
770            libc::KERN_ABORTED => continue,
771            // All other errors indicate that something has gone wrong...
772            error => {
773                let description = unsafe { CStr::from_ptr(libc::mach_error_string(error)) };
774                panic!("mach_wait_until failed: {} (code {error})", description.display())
775            }
776        }
777    }
778}
779
780pub fn yield_now() {
781    let ret = unsafe { libc::sched_yield() };
782    debug_assert_eq!(ret, 0);
783}
784
785#[cfg(any(target_os = "android", target_os = "linux"))]
786mod cgroups {
787    //! Currently not covered
788    //! * cgroup v2 in non-standard mountpoints
789    //! * paths containing control characters or spaces, since those would be escaped in procfs
790    //!   output and we don't unescape
791
792    use crate::borrow::Cow;
793    use crate::ffi::OsString;
794    use crate::fs::{File, exists};
795    use crate::io::{BufRead, Read};
796    use crate::os::unix::ffi::OsStringExt;
797    use crate::path::{Path, PathBuf};
798    use crate::str::from_utf8;
799
800    #[derive(PartialEq)]
801    enum Cgroup {
802        V1,
803        V2,
804    }
805
806    /// Returns cgroup CPU quota in core-equivalents, rounded down or usize::MAX if the quota cannot
807    /// be determined or is not set.
808    pub(super) fn quota() -> usize {
809        let mut quota = usize::MAX;
810        if cfg!(miri) {
811            // Attempting to open a file fails under default flags due to isolation.
812            // And Miri does not have parallelism anyway.
813            return quota;
814        }
815
816        let _: Option<()> = try {
817            let mut buf = Vec::with_capacity(128);
818            // find our place in the cgroup hierarchy
819            File::open("/proc/self/cgroup").ok()?.read_to_end(&mut buf).ok()?;
820            let (cgroup_path, version) =
821                buf.split(|&c| c == b'\n').fold(None, |previous, line| {
822                    let mut fields = line.splitn(3, |&c| c == b':');
823                    // 2nd field is a list of controllers for v1 or empty for v2
824                    let version = match fields.nth(1) {
825                        Some(b"") => Cgroup::V2,
826                        Some(controllers)
827                            if from_utf8(controllers)
828                                .is_ok_and(|c| c.split(',').any(|c| c == "cpu")) =>
829                        {
830                            Cgroup::V1
831                        }
832                        _ => return previous,
833                    };
834
835                    // already-found v1 trumps v2 since it explicitly specifies its controllers
836                    if previous.is_some() && version == Cgroup::V2 {
837                        return previous;
838                    }
839
840                    let path = fields.last()?;
841                    // skip leading slash
842                    Some((path[1..].to_owned(), version))
843                })?;
844            let cgroup_path = PathBuf::from(OsString::from_vec(cgroup_path));
845
846            quota = match version {
847                Cgroup::V1 => quota_v1(cgroup_path),
848                Cgroup::V2 => quota_v2(cgroup_path),
849            };
850        };
851
852        quota
853    }
854
855    fn quota_v2(group_path: PathBuf) -> usize {
856        let mut quota = usize::MAX;
857
858        let mut path = PathBuf::with_capacity(128);
859        let mut read_buf = String::with_capacity(20);
860
861        // standard mount location defined in file-hierarchy(7) manpage
862        let cgroup_mount = "/sys/fs/cgroup";
863
864        path.push(cgroup_mount);
865        path.push(&group_path);
866
867        path.push("cgroup.controllers");
868
869        // skip if we're not looking at cgroup2
870        if matches!(exists(&path), Err(_) | Ok(false)) {
871            return usize::MAX;
872        };
873
874        path.pop();
875
876        let _: Option<()> = try {
877            while path.starts_with(cgroup_mount) {
878                path.push("cpu.max");
879
880                read_buf.clear();
881
882                if File::open(&path).and_then(|mut f| f.read_to_string(&mut read_buf)).is_ok() {
883                    let raw_quota = read_buf.lines().next()?;
884                    let mut raw_quota = raw_quota.split(' ');
885                    let limit = raw_quota.next()?;
886                    let period = raw_quota.next()?;
887                    match (limit.parse::<usize>(), period.parse::<usize>()) {
888                        (Ok(limit), Ok(period)) if period > 0 => {
889                            quota = quota.min(limit / period);
890                        }
891                        _ => {}
892                    }
893                }
894
895                path.pop(); // pop filename
896                path.pop(); // pop dir
897            }
898        };
899
900        quota
901    }
902
903    fn quota_v1(group_path: PathBuf) -> usize {
904        let mut quota = usize::MAX;
905        let mut path = PathBuf::with_capacity(128);
906        let mut read_buf = String::with_capacity(20);
907
908        // Hardcode commonly used locations mentioned in the cgroups(7) manpage
909        // if that doesn't work scan mountinfo and adjust `group_path` for bind-mounts
910        let mounts: &[fn(&Path) -> Option<(_, &Path)>] = &[
911            |p| Some((Cow::Borrowed("/sys/fs/cgroup/cpu"), p)),
912            |p| Some((Cow::Borrowed("/sys/fs/cgroup/cpu,cpuacct"), p)),
913            // this can be expensive on systems with tons of mountpoints
914            // but we only get to this point when /proc/self/cgroups explicitly indicated
915            // this process belongs to a cpu-controller cgroup v1 and the defaults didn't work
916            find_mountpoint,
917        ];
918
919        for mount in mounts {
920            let Some((mount, group_path)) = mount(&group_path) else { continue };
921
922            path.clear();
923            path.push(mount.as_ref());
924            path.push(&group_path);
925
926            // skip if we guessed the mount incorrectly
927            if matches!(exists(&path), Err(_) | Ok(false)) {
928                continue;
929            }
930
931            while path.starts_with(mount.as_ref()) {
932                let mut parse_file = |name| {
933                    path.push(name);
934                    read_buf.clear();
935
936                    let f = File::open(&path);
937                    path.pop(); // restore buffer before any early returns
938                    f.ok()?.read_to_string(&mut read_buf).ok()?;
939                    let parsed = read_buf.trim().parse::<usize>().ok()?;
940
941                    Some(parsed)
942                };
943
944                let limit = parse_file("cpu.cfs_quota_us");
945                let period = parse_file("cpu.cfs_period_us");
946
947                match (limit, period) {
948                    (Some(limit), Some(period)) if period > 0 => quota = quota.min(limit / period),
949                    _ => {}
950                }
951
952                path.pop();
953            }
954
955            // we passed the try_exists above so we should have traversed the correct hierarchy
956            // when reaching this line
957            break;
958        }
959
960        quota
961    }
962
963    /// Scan mountinfo for cgroup v1 mountpoint with a cpu controller
964    ///
965    /// If the cgroupfs is a bind mount then `group_path` is adjusted to skip
966    /// over the already-included prefix
967    fn find_mountpoint(group_path: &Path) -> Option<(Cow<'static, str>, &Path)> {
968        let mut reader = File::open_buffered("/proc/self/mountinfo").ok()?;
969        let mut line = String::with_capacity(256);
970        loop {
971            line.clear();
972            if reader.read_line(&mut line).ok()? == 0 {
973                break;
974            }
975
976            let line = line.trim();
977            let mut items = line.split(' ');
978
979            let sub_path = items.nth(3)?;
980            let mount_point = items.next()?;
981            let mount_opts = items.next_back()?;
982            let filesystem_type = items.nth_back(1)?;
983
984            if filesystem_type != "cgroup" || !mount_opts.split(',').any(|opt| opt == "cpu") {
985                // not a cgroup / not a cpu-controller
986                continue;
987            }
988
989            let sub_path = Path::new(sub_path).strip_prefix("/").ok()?;
990
991            if !group_path.starts_with(sub_path) {
992                // this is a bind-mount and the bound subdirectory
993                // does not contain the cgroup this process belongs to
994                continue;
995            }
996
997            let trimmed_group_path = group_path.strip_prefix(sub_path).ok()?;
998
999            return Some((Cow::Owned(mount_point.to_owned()), trimmed_group_path));
1000        }
1001
1002        None
1003    }
1004}
1005
1006// glibc >= 2.15 has a __pthread_get_minstack() function that returns
1007// PTHREAD_STACK_MIN plus bytes needed for thread-local storage.
1008// We need that information to avoid blowing up when a small stack
1009// is created in an application with big thread-local storage requirements.
1010// See #6233 for rationale and details.
1011#[cfg(all(target_os = "linux", target_env = "gnu"))]
1012unsafe fn min_stack_size(attr: *const libc::pthread_attr_t) -> usize {
1013    // We use dlsym to avoid an ELF version dependency on GLIBC_PRIVATE. (#23628)
1014    // We shouldn't really be using such an internal symbol, but there's currently
1015    // no other way to account for the TLS size.
1016    dlsym!(
1017        fn __pthread_get_minstack(attr: *const libc::pthread_attr_t) -> libc::size_t;
1018    );
1019
1020    match __pthread_get_minstack.get() {
1021        None => libc::PTHREAD_STACK_MIN,
1022        Some(f) => unsafe { f(attr) },
1023    }
1024}
1025
1026// No point in looking up __pthread_get_minstack() on non-glibc platforms.
1027#[cfg(all(
1028    not(all(target_os = "linux", target_env = "gnu")),
1029    not(any(target_os = "netbsd", target_os = "nuttx"))
1030))]
1031unsafe fn min_stack_size(_: *const libc::pthread_attr_t) -> usize {
1032    libc::PTHREAD_STACK_MIN
1033}
1034
1035#[cfg(any(target_os = "netbsd", target_os = "nuttx"))]
1036unsafe fn min_stack_size(_: *const libc::pthread_attr_t) -> usize {
1037    static STACK: crate::sync::OnceLock<usize> = crate::sync::OnceLock::new();
1038
1039    *STACK.get_or_init(|| {
1040        let mut stack = unsafe { libc::sysconf(libc::_SC_THREAD_STACK_MIN) };
1041        if stack < 0 {
1042            stack = 2048; // just a guess
1043        }
1044
1045        stack as usize
1046    })
1047}