1use crate::ffi::CStr;
2use crate::mem::{self, ManuallyDrop};
3use crate::num::NonZero;
4#[cfg(all(target_os = "linux", target_env = "gnu"))]
5use crate::sys::weak::dlsym;
6#[cfg(any(target_os = "solaris", target_os = "illumos", target_os = "nto",))]
7use crate::sys::weak::weak;
8use crate::sys::{os, stack_overflow};
9use crate::time::Duration;
10use crate::{cmp, io, ptr};
11#[cfg(not(any(target_os = "l4re", target_os = "vxworks", target_os = "espidf")))]
12pub const DEFAULT_MIN_STACK_SIZE: usize = 2 * 1024 * 1024;
13#[cfg(target_os = "l4re")]
14pub const DEFAULT_MIN_STACK_SIZE: usize = 1024 * 1024;
15#[cfg(target_os = "vxworks")]
16pub const DEFAULT_MIN_STACK_SIZE: usize = 256 * 1024;
17#[cfg(target_os = "espidf")]
18pub const DEFAULT_MIN_STACK_SIZE: usize = 0; #[cfg(target_os = "fuchsia")]
21mod zircon {
22 type zx_handle_t = u32;
23 type zx_status_t = i32;
24 pub const ZX_PROP_NAME: u32 = 3;
25
26 unsafe extern "C" {
27 pub fn zx_object_set_property(
28 handle: zx_handle_t,
29 property: u32,
30 value: *const libc::c_void,
31 value_size: libc::size_t,
32 ) -> zx_status_t;
33 pub fn zx_thread_self() -> zx_handle_t;
34 }
35}
36
37pub struct Thread {
38 id: libc::pthread_t,
39}
40
41unsafe impl Send for Thread {}
44unsafe impl Sync for Thread {}
45
46impl Thread {
47 #[cfg_attr(miri, track_caller)] pub unsafe fn new(stack: usize, p: Box<dyn FnOnce()>) -> io::Result<Thread> {
50 let p = Box::into_raw(Box::new(p));
51 let mut native: libc::pthread_t = mem::zeroed();
52 let mut attr: libc::pthread_attr_t = mem::zeroed();
53 assert_eq!(libc::pthread_attr_init(&mut attr), 0);
54
55 #[cfg(target_os = "espidf")]
56 if stack > 0 {
57 assert_eq!(
60 libc::pthread_attr_setstacksize(&mut attr, cmp::max(stack, min_stack_size(&attr))),
61 0
62 );
63 }
64
65 #[cfg(not(target_os = "espidf"))]
66 {
67 let stack_size = cmp::max(stack, min_stack_size(&attr));
68
69 match libc::pthread_attr_setstacksize(&mut attr, stack_size) {
70 0 => {}
71 n => {
72 assert_eq!(n, libc::EINVAL);
73 let page_size = os::page_size();
78 let stack_size =
79 (stack_size + page_size - 1) & (-(page_size as isize - 1) as usize - 1);
80 assert_eq!(libc::pthread_attr_setstacksize(&mut attr, stack_size), 0);
81 }
82 };
83 }
84
85 let ret = libc::pthread_create(&mut native, &attr, thread_start, p as *mut _);
86 assert_eq!(libc::pthread_attr_destroy(&mut attr), 0);
90
91 return if ret != 0 {
92 drop(Box::from_raw(p));
95 Err(io::Error::from_raw_os_error(ret))
96 } else {
97 Ok(Thread { id: native })
98 };
99
100 extern "C" fn thread_start(main: *mut libc::c_void) -> *mut libc::c_void {
101 unsafe {
102 let _handler = stack_overflow::Handler::new();
105 Box::from_raw(main as *mut Box<dyn FnOnce()>)();
107 }
108 ptr::null_mut()
109 }
110 }
111
112 pub fn yield_now() {
113 let ret = unsafe { libc::sched_yield() };
114 debug_assert_eq!(ret, 0);
115 }
116
117 #[cfg(target_os = "android")]
118 pub fn set_name(name: &CStr) {
119 const PR_SET_NAME: libc::c_int = 15;
120 unsafe {
121 let res = libc::prctl(
122 PR_SET_NAME,
123 name.as_ptr(),
124 0 as libc::c_ulong,
125 0 as libc::c_ulong,
126 0 as libc::c_ulong,
127 );
128 debug_assert_eq!(res, 0);
130 }
131 }
132
133 #[cfg(any(
134 target_os = "linux",
135 target_os = "freebsd",
136 target_os = "dragonfly",
137 target_os = "nuttx"
138 ))]
139 pub fn set_name(name: &CStr) {
140 unsafe {
141 cfg_if::cfg_if! {
142 if #[cfg(target_os = "linux")] {
143 const TASK_COMM_LEN: usize = 16;
145 let name = truncate_cstr::<{ TASK_COMM_LEN }>(name);
146 } else {
147 }
149 };
150 let res = libc::pthread_setname_np(libc::pthread_self(), name.as_ptr());
153 debug_assert_eq!(res, 0);
155 }
156 }
157
158 #[cfg(target_os = "openbsd")]
159 pub fn set_name(name: &CStr) {
160 unsafe {
161 libc::pthread_set_name_np(libc::pthread_self(), name.as_ptr());
162 }
163 }
164
165 #[cfg(target_vendor = "apple")]
166 pub fn set_name(name: &CStr) {
167 unsafe {
168 let name = truncate_cstr::<{ libc::MAXTHREADNAMESIZE }>(name);
169 let res = libc::pthread_setname_np(name.as_ptr());
170 debug_assert_eq!(res, 0);
172 }
173 }
174
175 #[cfg(target_os = "netbsd")]
176 pub fn set_name(name: &CStr) {
177 unsafe {
178 let res = libc::pthread_setname_np(
179 libc::pthread_self(),
180 c"%s".as_ptr(),
181 name.as_ptr() as *mut libc::c_void,
182 );
183 debug_assert_eq!(res, 0);
184 }
185 }
186
187 #[cfg(any(target_os = "solaris", target_os = "illumos", target_os = "nto"))]
188 pub fn set_name(name: &CStr) {
189 weak! {
190 fn pthread_setname_np(
191 libc::pthread_t, *const libc::c_char
192 ) -> libc::c_int
193 }
194
195 if let Some(f) = pthread_setname_np.get() {
196 #[cfg(target_os = "nto")]
197 const THREAD_NAME_MAX: usize = libc::_NTO_THREAD_NAME_MAX as usize;
198 #[cfg(any(target_os = "solaris", target_os = "illumos"))]
199 const THREAD_NAME_MAX: usize = 32;
200
201 let name = truncate_cstr::<{ THREAD_NAME_MAX }>(name);
202 let res = unsafe { f(libc::pthread_self(), name.as_ptr()) };
203 debug_assert_eq!(res, 0);
204 }
205 }
206
207 #[cfg(target_os = "fuchsia")]
208 pub fn set_name(name: &CStr) {
209 use self::zircon::*;
210 unsafe {
211 zx_object_set_property(
212 zx_thread_self(),
213 ZX_PROP_NAME,
214 name.as_ptr() as *const libc::c_void,
215 name.to_bytes().len(),
216 );
217 }
218 }
219
220 #[cfg(target_os = "haiku")]
221 pub fn set_name(name: &CStr) {
222 unsafe {
223 let thread_self = libc::find_thread(ptr::null_mut());
224 let res = libc::rename_thread(thread_self, name.as_ptr());
225 debug_assert_eq!(res, libc::B_OK);
227 }
228 }
229
230 #[cfg(target_os = "vxworks")]
231 pub fn set_name(name: &CStr) {
232 unsafe extern "C" {
234 fn taskNameSet(task_id: libc::TASK_ID, task_name: *mut libc::c_char) -> libc::c_int;
235 }
236
237 const VX_TASK_NAME_LEN: usize = 31;
239
240 let mut name = truncate_cstr::<{ VX_TASK_NAME_LEN }>(name);
241 let res = unsafe { taskNameSet(libc::taskIdSelf(), name.as_mut_ptr()) };
242 debug_assert_eq!(res, libc::OK);
243 }
244
245 #[cfg(any(
246 target_env = "newlib",
247 target_os = "l4re",
248 target_os = "emscripten",
249 target_os = "redox",
250 target_os = "hurd",
251 target_os = "aix",
252 ))]
253 pub fn set_name(_name: &CStr) {
254 }
256
257 #[cfg(not(target_os = "espidf"))]
258 pub fn sleep(dur: Duration) {
259 let mut secs = dur.as_secs();
260 let mut nsecs = dur.subsec_nanos() as _;
261
262 unsafe {
265 while secs > 0 || nsecs > 0 {
266 let mut ts = libc::timespec {
267 tv_sec: cmp::min(libc::time_t::MAX as u64, secs) as libc::time_t,
268 tv_nsec: nsecs,
269 };
270 secs -= ts.tv_sec as u64;
271 let ts_ptr = &raw mut ts;
272 if libc::nanosleep(ts_ptr, ts_ptr) == -1 {
273 assert_eq!(os::errno(), libc::EINTR);
274 secs += ts.tv_sec as u64;
275 nsecs = ts.tv_nsec;
276 } else {
277 nsecs = 0;
278 }
279 }
280 }
281 }
282
283 #[cfg(target_os = "espidf")]
284 pub fn sleep(dur: Duration) {
285 const MAX_MICROS: u32 = u32::MAX - 1_000_000 - 1;
295
296 let mut micros = dur.as_micros() + if dur.subsec_nanos() % 1_000 > 0 { 1 } else { 0 };
303
304 while micros > 0 {
305 let st = if micros > MAX_MICROS as u128 { MAX_MICROS } else { micros as u32 };
306 unsafe {
307 libc::usleep(st);
308 }
309
310 micros -= st as u128;
311 }
312 }
313
314 pub fn join(self) {
315 let id = self.into_id();
316 let ret = unsafe { libc::pthread_join(id, ptr::null_mut()) };
317 assert!(ret == 0, "failed to join thread: {}", io::Error::from_raw_os_error(ret));
318 }
319
320 pub fn id(&self) -> libc::pthread_t {
321 self.id
322 }
323
324 pub fn into_id(self) -> libc::pthread_t {
325 ManuallyDrop::new(self).id
326 }
327}
328
329impl Drop for Thread {
330 fn drop(&mut self) {
331 let ret = unsafe { libc::pthread_detach(self.id) };
332 debug_assert_eq!(ret, 0);
333 }
334}
335
336#[cfg(any(
337 target_os = "linux",
338 target_os = "nto",
339 target_os = "solaris",
340 target_os = "illumos",
341 target_os = "vxworks",
342 target_vendor = "apple",
343))]
344fn truncate_cstr<const MAX_WITH_NUL: usize>(cstr: &CStr) -> [libc::c_char; MAX_WITH_NUL] {
345 let mut result = [0; MAX_WITH_NUL];
346 for (src, dst) in cstr.to_bytes().iter().zip(&mut result[..MAX_WITH_NUL - 1]) {
347 *dst = *src as libc::c_char;
348 }
349 result
350}
351
352pub fn available_parallelism() -> io::Result<NonZero<usize>> {
353 cfg_if::cfg_if! {
354 if #[cfg(any(
355 target_os = "android",
356 target_os = "emscripten",
357 target_os = "fuchsia",
358 target_os = "hurd",
359 target_os = "linux",
360 target_os = "aix",
361 target_vendor = "apple",
362 ))] {
363 #[allow(unused_assignments)]
364 #[allow(unused_mut)]
365 let mut quota = usize::MAX;
366
367 #[cfg(any(target_os = "android", target_os = "linux"))]
368 {
369 quota = cgroups::quota().max(1);
370 let mut set: libc::cpu_set_t = unsafe { mem::zeroed() };
371 unsafe {
372 if libc::sched_getaffinity(0, mem::size_of::<libc::cpu_set_t>(), &mut set) == 0 {
373 let count = libc::CPU_COUNT(&set) as usize;
374 let count = count.min(quota);
375
376 if let Some(count) = NonZero::new(count) {
381 return Ok(count)
382 }
383 }
384 }
385 }
386 match unsafe { libc::sysconf(libc::_SC_NPROCESSORS_ONLN) } {
387 -1 => Err(io::Error::last_os_error()),
388 0 => Err(io::Error::UNKNOWN_THREAD_COUNT),
389 cpus => {
390 let count = cpus as usize;
391 let count = count.min(quota);
393 Ok(unsafe { NonZero::new_unchecked(count) })
394 }
395 }
396 } else if #[cfg(any(
397 target_os = "freebsd",
398 target_os = "dragonfly",
399 target_os = "openbsd",
400 target_os = "netbsd",
401 ))] {
402 use crate::ptr;
403
404 #[cfg(target_os = "freebsd")]
405 {
406 let mut set: libc::cpuset_t = unsafe { mem::zeroed() };
407 unsafe {
408 if libc::cpuset_getaffinity(
409 libc::CPU_LEVEL_WHICH,
410 libc::CPU_WHICH_PID,
411 -1,
412 mem::size_of::<libc::cpuset_t>(),
413 &mut set,
414 ) == 0 {
415 let count = libc::CPU_COUNT(&set) as usize;
416 if count > 0 {
417 return Ok(NonZero::new_unchecked(count));
418 }
419 }
420 }
421 }
422
423 #[cfg(target_os = "netbsd")]
424 {
425 unsafe {
426 let set = libc::_cpuset_create();
427 if !set.is_null() {
428 let mut count: usize = 0;
429 if libc::pthread_getaffinity_np(libc::pthread_self(), libc::_cpuset_size(set), set) == 0 {
430 for i in 0..libc::cpuid_t::MAX {
431 match libc::_cpuset_isset(i, set) {
432 -1 => break,
433 0 => continue,
434 _ => count = count + 1,
435 }
436 }
437 }
438 libc::_cpuset_destroy(set);
439 if let Some(count) = NonZero::new(count) {
440 return Ok(count);
441 }
442 }
443 }
444 }
445
446 let mut cpus: libc::c_uint = 0;
447 let mut cpus_size = crate::mem::size_of_val(&cpus);
448
449 unsafe {
450 cpus = libc::sysconf(libc::_SC_NPROCESSORS_ONLN) as libc::c_uint;
451 }
452
453 if cpus < 1 {
455 let mut mib = [libc::CTL_HW, libc::HW_NCPU, 0, 0];
456 let res = unsafe {
457 libc::sysctl(
458 mib.as_mut_ptr(),
459 2,
460 (&raw mut cpus) as *mut _,
461 (&raw mut cpus_size) as *mut _,
462 ptr::null_mut(),
463 0,
464 )
465 };
466
467 if res == -1 {
469 return Err(io::Error::last_os_error());
470 } else if cpus == 0 {
471 return Err(io::Error::UNKNOWN_THREAD_COUNT);
472 }
473 }
474
475 Ok(unsafe { NonZero::new_unchecked(cpus as usize) })
476 } else if #[cfg(target_os = "nto")] {
477 unsafe {
478 use libc::_syspage_ptr;
479 if _syspage_ptr.is_null() {
480 Err(io::const_error!(io::ErrorKind::NotFound, "No syspage available"))
481 } else {
482 let cpus = (*_syspage_ptr).num_cpu;
483 NonZero::new(cpus as usize)
484 .ok_or(io::Error::UNKNOWN_THREAD_COUNT)
485 }
486 }
487 } else if #[cfg(any(target_os = "solaris", target_os = "illumos"))] {
488 let mut cpus = 0u32;
489 if unsafe { libc::pset_info(libc::PS_MYID, core::ptr::null_mut(), &mut cpus, core::ptr::null_mut()) } != 0 {
490 return Err(io::Error::UNKNOWN_THREAD_COUNT);
491 }
492 Ok(unsafe { NonZero::new_unchecked(cpus as usize) })
493 } else if #[cfg(target_os = "haiku")] {
494 unsafe {
497 let mut sinfo: libc::system_info = crate::mem::zeroed();
498 let res = libc::get_system_info(&mut sinfo);
499
500 if res != libc::B_OK {
501 return Err(io::Error::UNKNOWN_THREAD_COUNT);
502 }
503
504 Ok(NonZero::new_unchecked(sinfo.cpu_count as usize))
505 }
506 } else if #[cfg(target_os = "vxworks")] {
507 unsafe extern "C" {
510 fn vxCpuEnabledGet() -> libc::cpuset_t;
511 }
512
513 unsafe{
515 let set = vxCpuEnabledGet();
516 Ok(NonZero::new_unchecked(set.count_ones() as usize))
517 }
518 } else {
519 Err(io::const_error!(io::ErrorKind::Unsupported, "Getting the number of hardware threads is not supported on the target platform"))
521 }
522 }
523}
524
525#[cfg(any(target_os = "android", target_os = "linux"))]
526mod cgroups {
527 use crate::borrow::Cow;
533 use crate::ffi::OsString;
534 use crate::fs::{File, exists};
535 use crate::io::{BufRead, Read};
536 use crate::os::unix::ffi::OsStringExt;
537 use crate::path::{Path, PathBuf};
538 use crate::str::from_utf8;
539
540 #[derive(PartialEq)]
541 enum Cgroup {
542 V1,
543 V2,
544 }
545
546 pub(super) fn quota() -> usize {
549 let mut quota = usize::MAX;
550 if cfg!(miri) {
551 return quota;
554 }
555
556 let _: Option<()> = try {
557 let mut buf = Vec::with_capacity(128);
558 File::open("/proc/self/cgroup").ok()?.read_to_end(&mut buf).ok()?;
560 let (cgroup_path, version) =
561 buf.split(|&c| c == b'\n').fold(None, |previous, line| {
562 let mut fields = line.splitn(3, |&c| c == b':');
563 let version = match fields.nth(1) {
565 Some(b"") => Cgroup::V2,
566 Some(controllers)
567 if from_utf8(controllers)
568 .is_ok_and(|c| c.split(',').any(|c| c == "cpu")) =>
569 {
570 Cgroup::V1
571 }
572 _ => return previous,
573 };
574
575 if previous.is_some() && version == Cgroup::V2 {
577 return previous;
578 }
579
580 let path = fields.last()?;
581 Some((path[1..].to_owned(), version))
583 })?;
584 let cgroup_path = PathBuf::from(OsString::from_vec(cgroup_path));
585
586 quota = match version {
587 Cgroup::V1 => quota_v1(cgroup_path),
588 Cgroup::V2 => quota_v2(cgroup_path),
589 };
590 };
591
592 quota
593 }
594
595 fn quota_v2(group_path: PathBuf) -> usize {
596 let mut quota = usize::MAX;
597
598 let mut path = PathBuf::with_capacity(128);
599 let mut read_buf = String::with_capacity(20);
600
601 let cgroup_mount = "/sys/fs/cgroup";
603
604 path.push(cgroup_mount);
605 path.push(&group_path);
606
607 path.push("cgroup.controllers");
608
609 if matches!(exists(&path), Err(_) | Ok(false)) {
611 return usize::MAX;
612 };
613
614 path.pop();
615
616 let _: Option<()> = try {
617 while path.starts_with(cgroup_mount) {
618 path.push("cpu.max");
619
620 read_buf.clear();
621
622 if File::open(&path).and_then(|mut f| f.read_to_string(&mut read_buf)).is_ok() {
623 let raw_quota = read_buf.lines().next()?;
624 let mut raw_quota = raw_quota.split(' ');
625 let limit = raw_quota.next()?;
626 let period = raw_quota.next()?;
627 match (limit.parse::<usize>(), period.parse::<usize>()) {
628 (Ok(limit), Ok(period)) if period > 0 => {
629 quota = quota.min(limit / period);
630 }
631 _ => {}
632 }
633 }
634
635 path.pop(); path.pop(); }
638 };
639
640 quota
641 }
642
643 fn quota_v1(group_path: PathBuf) -> usize {
644 let mut quota = usize::MAX;
645 let mut path = PathBuf::with_capacity(128);
646 let mut read_buf = String::with_capacity(20);
647
648 let mounts: &[fn(&Path) -> Option<(_, &Path)>] = &[
651 |p| Some((Cow::Borrowed("/sys/fs/cgroup/cpu"), p)),
652 |p| Some((Cow::Borrowed("/sys/fs/cgroup/cpu,cpuacct"), p)),
653 find_mountpoint,
657 ];
658
659 for mount in mounts {
660 let Some((mount, group_path)) = mount(&group_path) else { continue };
661
662 path.clear();
663 path.push(mount.as_ref());
664 path.push(&group_path);
665
666 if matches!(exists(&path), Err(_) | Ok(false)) {
668 continue;
669 }
670
671 while path.starts_with(mount.as_ref()) {
672 let mut parse_file = |name| {
673 path.push(name);
674 read_buf.clear();
675
676 let f = File::open(&path);
677 path.pop(); f.ok()?.read_to_string(&mut read_buf).ok()?;
679 let parsed = read_buf.trim().parse::<usize>().ok()?;
680
681 Some(parsed)
682 };
683
684 let limit = parse_file("cpu.cfs_quota_us");
685 let period = parse_file("cpu.cfs_period_us");
686
687 match (limit, period) {
688 (Some(limit), Some(period)) if period > 0 => quota = quota.min(limit / period),
689 _ => {}
690 }
691
692 path.pop();
693 }
694
695 break;
698 }
699
700 quota
701 }
702
703 fn find_mountpoint(group_path: &Path) -> Option<(Cow<'static, str>, &Path)> {
708 let mut reader = File::open_buffered("/proc/self/mountinfo").ok()?;
709 let mut line = String::with_capacity(256);
710 loop {
711 line.clear();
712 if reader.read_line(&mut line).ok()? == 0 {
713 break;
714 }
715
716 let line = line.trim();
717 let mut items = line.split(' ');
718
719 let sub_path = items.nth(3)?;
720 let mount_point = items.next()?;
721 let mount_opts = items.next_back()?;
722 let filesystem_type = items.nth_back(1)?;
723
724 if filesystem_type != "cgroup" || !mount_opts.split(',').any(|opt| opt == "cpu") {
725 continue;
727 }
728
729 let sub_path = Path::new(sub_path).strip_prefix("/").ok()?;
730
731 if !group_path.starts_with(sub_path) {
732 continue;
735 }
736
737 let trimmed_group_path = group_path.strip_prefix(sub_path).ok()?;
738
739 return Some((Cow::Owned(mount_point.to_owned()), trimmed_group_path));
740 }
741
742 None
743 }
744}
745
746#[cfg(all(target_os = "linux", target_env = "gnu"))]
752unsafe fn min_stack_size(attr: *const libc::pthread_attr_t) -> usize {
753 dlsym!(fn __pthread_get_minstack(*const libc::pthread_attr_t) -> libc::size_t);
757
758 match __pthread_get_minstack.get() {
759 None => libc::PTHREAD_STACK_MIN,
760 Some(f) => unsafe { f(attr) },
761 }
762}
763
764#[cfg(all(
766 not(all(target_os = "linux", target_env = "gnu")),
767 not(any(target_os = "netbsd", target_os = "nuttx"))
768))]
769unsafe fn min_stack_size(_: *const libc::pthread_attr_t) -> usize {
770 libc::PTHREAD_STACK_MIN
771}
772
773#[cfg(any(target_os = "netbsd", target_os = "nuttx"))]
774unsafe fn min_stack_size(_: *const libc::pthread_attr_t) -> usize {
775 static STACK: crate::sync::OnceLock<usize> = crate::sync::OnceLock::new();
776
777 *STACK.get_or_init(|| {
778 let mut stack = unsafe { libc::sysconf(libc::_SC_THREAD_STACK_MIN) };
779 if stack < 0 {
780 stack = 2048; }
782
783 stack as usize
784 })
785}