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; pub struct Thread {
40 id: libc::pthread_t,
41}
42
43unsafe impl Send for Thread {}
46unsafe impl Sync for Thread {}
47
48impl Thread {
49 #[cfg_attr(miri, track_caller)] 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 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 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 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 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 let init = Box::from_raw(data as *mut ThreadInit);
117 let rust_start = init.init();
118
119 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 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 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 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 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 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 unsafe{
320 let set = libc::vxCpuEnabledGet();
321 Ok(NonZero::new_unchecked(set.count_ones() as usize))
322 }
323 }
324 _ => {
325 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 cfg_select! {
338 any(target_os = "android", target_os = "linux") => {
340 use crate::sys::pal::weak::syscall;
341
342 syscall!(fn gettid() -> libc::pid_t;);
345
346 let id: libc::pid_t = unsafe { gettid() };
348 Some(id as u64)
349 }
350 target_os = "nto" => {
351 let id: libc::pid_t = unsafe { libc::gettid() };
353 Some(id as u64)
354 }
355 target_os = "openbsd" => {
356 let id: libc::pid_t = unsafe { libc::getthrid() };
358 Some(id as u64)
359 }
360 target_os = "freebsd" => {
361 let id: libc::c_int = unsafe { libc::pthread_getthreadid_np() };
363 Some(id as u64)
364 }
365 target_os = "netbsd" => {
366 let id: libc::lwpid_t = unsafe { libc::_lwp_self() };
368 Some(id as u64)
369 }
370 any(target_os = "illumos", target_os = "solaris") => {
371 let id: libc::pthread_t = unsafe { libc::pthread_self() };
374 Some(id as u64)
375 }
376 target_vendor = "apple" => {
377 let mut id = 0u64;
379 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 _ => 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 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 const TASK_COMM_LEN: usize = 16;
439 let name = truncate_cstr::<{ TASK_COMM_LEN }>(name);
440 }
441 _ => {
442 }
444 };
445 let res = libc::pthread_setname_np(libc::pthread_self(), name.as_ptr());
448 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 debug_assert_eq!(res, 0);
467 }
468}
469
470#[cfg(target_os = "netbsd")]
471pub fn set_name(name: &CStr) {
472 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 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(
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 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 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 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 const MAX_MICROS: u32 = u32::MAX - 1_000_000 - 1;
616
617 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#[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 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 _ => break,
697 }
698 }
699 }
700 }
701
702 let Some(ts) = deadline.into_inner().into_timespec().to_timespec() else {
703 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 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(), );
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 safe fn mach_wait_until(deadline: u64) -> libc::kern_return_t;
748 }
749
750 let Some(deadline) = deadline.into_inner().into_mach_absolute_time_ceil() else {
753 return;
756 };
757
758 let deadline = deadline.try_into().unwrap_or(u64::MAX);
761 loop {
762 match mach_wait_until(deadline) {
763 libc::KERN_SUCCESS => break,
765 libc::KERN_ABORTED => continue,
771 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 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 pub(super) fn quota() -> usize {
809 let mut quota = usize::MAX;
810 if cfg!(miri) {
811 return quota;
814 }
815
816 let _: Option<()> = try {
817 let mut buf = Vec::with_capacity(128);
818 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 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 if previous.is_some() && version == Cgroup::V2 {
837 return previous;
838 }
839
840 let path = fields.last()?;
841 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 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 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(); path.pop(); }
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 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 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 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(); 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 break;
958 }
959
960 quota
961 }
962
963 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 continue;
987 }
988
989 let sub_path = Path::new(sub_path).strip_prefix("/").ok()?;
990
991 if !group_path.starts_with(sub_path) {
992 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#[cfg(all(target_os = "linux", target_env = "gnu"))]
1012unsafe fn min_stack_size(attr: *const libc::pthread_attr_t) -> usize {
1013 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#[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; }
1044
1045 stack as usize
1046 })
1047}