Skip to content

Commit c518e5a

Browse files
committed
Auto merge of #123265 - joboet:guardians_of_the_unix, r=ChrisDenton
Refactor stack overflow handling Currently, every platform must implement a `Guard` that protects a thread from stack overflow. However, UNIX is the only platform that actually does so. Windows has a different mechanism for detecting stack overflow, while the other platforms don't detect it at all. Also, the UNIX stack overflow handling is split between `sys::pal::unix::stack_overflow`, which implements the signal handler, and `sys::pal::unix::thread`, which detects/installs guard pages. This PR cleans this by getting rid of `Guard` and unifying UNIX stack overflow handling inside `stack_overflow` (commit 1). Therefore we can get rid of `sys_common::thread_info`, which stores `Guard` and the current `Thread` handle and move the `thread::current` TLS variable into `thread` (commit 2). The second commit is not strictly speaking necessary. To keep the implementation clean, I've included it here, but if it causes too much noise, I can split it out without any trouble.
2 parents 6bb6b81 + d7b55e4 commit c518e5a

File tree

19 files changed

+327
-500
lines changed

19 files changed

+327
-500
lines changed

library/std/src/panicking.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ use crate::sync::atomic::{AtomicBool, Ordering};
2121
use crate::sync::{PoisonError, RwLock};
2222
use crate::sys::stdio::panic_output;
2323
use crate::sys_common::backtrace;
24-
use crate::sys_common::thread_info;
2524
use crate::thread;
2625

2726
#[cfg(not(test))]
@@ -256,7 +255,7 @@ fn default_hook(info: &PanicInfo<'_>) {
256255
None => "Box<dyn Any>",
257256
},
258257
};
259-
let thread = thread_info::current_thread();
258+
let thread = thread::try_current();
260259
let name = thread.as_ref().and_then(|t| t.name()).unwrap_or("<unnamed>");
261260

262261
let write = |err: &mut dyn crate::io::Write| {

library/std/src/rt.rs

+3-8
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ pub use core::panicking::{panic_display, panic_fmt};
2424

2525
use crate::sync::Once;
2626
use crate::sys;
27-
use crate::sys_common::thread_info;
28-
use crate::thread::Thread;
27+
use crate::thread::{self, Thread};
2928

3029
// Prints to the "panic output", depending on the platform this may be:
3130
// - the standard error output
@@ -96,13 +95,9 @@ unsafe fn init(argc: isize, argv: *const *const u8, sigpipe: u8) {
9695
unsafe {
9796
sys::init(argc, argv, sigpipe);
9897

99-
let main_guard = sys::thread::guard::init();
100-
// Next, set up the current Thread with the guard information we just
101-
// created. Note that this isn't necessary in general for new threads,
102-
// but we just do this to name the main thread and to give it correct
103-
// info about the stack bounds.
98+
// Set up the current thread to give it the right name.
10499
let thread = Thread::new(Some(rtunwrap!(Ok, CString::new("main"))));
105-
thread_info::set(main_guard, thread);
100+
thread::set_current(thread);
106101
}
107102
}
108103

library/std/src/sys/pal/hermit/thread.rs

-10
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,3 @@ impl Thread {
104104
pub fn available_parallelism() -> io::Result<NonZero<usize>> {
105105
unsafe { Ok(NonZero::new_unchecked(abi::get_processor_count())) }
106106
}
107-
108-
pub mod guard {
109-
pub type Guard = !;
110-
pub unsafe fn current() -> Option<Guard> {
111-
None
112-
}
113-
pub unsafe fn init() -> Option<Guard> {
114-
None
115-
}
116-
}

library/std/src/sys/pal/itron/thread.rs

-10
Original file line numberDiff line numberDiff line change
@@ -312,16 +312,6 @@ impl Drop for Thread {
312312
}
313313
}
314314

315-
pub mod guard {
316-
pub type Guard = !;
317-
pub unsafe fn current() -> Option<Guard> {
318-
None
319-
}
320-
pub unsafe fn init() -> Option<Guard> {
321-
None
322-
}
323-
}
324-
325315
/// Terminate and delete the specified task.
326316
///
327317
/// This function will abort if `deleted_task` refers to the calling task.

library/std/src/sys/pal/sgx/thread.rs

-10
Original file line numberDiff line numberDiff line change
@@ -149,13 +149,3 @@ impl Thread {
149149
pub fn available_parallelism() -> io::Result<NonZero<usize>> {
150150
unsupported()
151151
}
152-
153-
pub mod guard {
154-
pub type Guard = !;
155-
pub unsafe fn current() -> Option<Guard> {
156-
None
157-
}
158-
pub unsafe fn init() -> Option<Guard> {
159-
None
160-
}
161-
}

library/std/src/sys/pal/teeos/thread.rs

-12
Original file line numberDiff line numberDiff line change
@@ -151,18 +151,6 @@ pub fn available_parallelism() -> io::Result<NonZero<usize>> {
151151
))
152152
}
153153

154-
// stub
155-
pub mod guard {
156-
use crate::ops::Range;
157-
pub type Guard = Range<usize>;
158-
pub unsafe fn current() -> Option<Guard> {
159-
None
160-
}
161-
pub unsafe fn init() -> Option<Guard> {
162-
None
163-
}
164-
}
165-
166154
fn min_stack_size(_: *const libc::pthread_attr_t) -> usize {
167155
libc::PTHREAD_STACK_MIN.try_into().expect("Infallible")
168156
}

library/std/src/sys/pal/uefi/thread.rs

-10
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,3 @@ pub fn available_parallelism() -> io::Result<NonZero<usize>> {
5252
// UEFI is single threaded
5353
Ok(NonZero::new(1).unwrap())
5454
}
55-
56-
pub mod guard {
57-
pub type Guard = !;
58-
pub unsafe fn current() -> Option<Guard> {
59-
None
60-
}
61-
pub unsafe fn init() -> Option<Guard> {
62-
None
63-
}
64-
}

0 commit comments

Comments
 (0)