]> git.lizzy.rs Git - rust.git/blob - library/std/src/sys/unix/thread_local_dtor.rs
Auto merge of #96711 - emilio:inline-slice-clone, r=nikic
[rust.git] / library / std / src / sys / unix / thread_local_dtor.rs
1 #![cfg(target_thread_local)]
2 #![unstable(feature = "thread_local_internals", issue = "none")]
3
4 //! Provides thread-local destructors without an associated "key", which
5 //! can be more efficient.
6
7 // Since what appears to be glibc 2.18 this symbol has been shipped which
8 // GCC and clang both use to invoke destructors in thread_local globals, so
9 // let's do the same!
10 //
11 // Note, however, that we run on lots older linuxes, as well as cross
12 // compiling from a newer linux to an older linux, so we also have a
13 // fallback implementation to use as well.
14 #[cfg(any(
15     target_os = "linux",
16     target_os = "fuchsia",
17     target_os = "redox",
18     target_os = "emscripten"
19 ))]
20 pub unsafe fn register_dtor(t: *mut u8, dtor: unsafe extern "C" fn(*mut u8)) {
21     use crate::mem;
22     use crate::sys_common::thread_local_dtor::register_dtor_fallback;
23
24     extern "C" {
25         #[linkage = "extern_weak"]
26         static __dso_handle: *mut u8;
27         #[linkage = "extern_weak"]
28         static __cxa_thread_atexit_impl: *const libc::c_void;
29     }
30     if !__cxa_thread_atexit_impl.is_null() {
31         type F = unsafe extern "C" fn(
32             dtor: unsafe extern "C" fn(*mut u8),
33             arg: *mut u8,
34             dso_handle: *mut u8,
35         ) -> libc::c_int;
36         mem::transmute::<*const libc::c_void, F>(__cxa_thread_atexit_impl)(
37             dtor,
38             t,
39             &__dso_handle as *const _ as *mut _,
40         );
41         return;
42     }
43     register_dtor_fallback(t, dtor);
44 }
45
46 // This implementation is very similar to register_dtor_fallback in
47 // sys_common/thread_local.rs. The main difference is that we want to hook into
48 // macOS's analog of the above linux function, _tlv_atexit. OSX will run the
49 // registered dtors before any TLS slots get freed, and when the main thread
50 // exits.
51 //
52 // Unfortunately, calling _tlv_atexit while tls dtors are running is UB. The
53 // workaround below is to register, via _tlv_atexit, a custom DTOR list once per
54 // thread. thread_local dtors are pushed to the DTOR list without calling
55 // _tlv_atexit.
56 #[cfg(target_os = "macos")]
57 pub unsafe fn register_dtor(t: *mut u8, dtor: unsafe extern "C" fn(*mut u8)) {
58     use crate::cell::Cell;
59     use crate::ptr;
60
61     #[thread_local]
62     static REGISTERED: Cell<bool> = Cell::new(false);
63     if !REGISTERED.get() {
64         _tlv_atexit(run_dtors, ptr::null_mut());
65         REGISTERED.set(true);
66     }
67
68     type List = Vec<(*mut u8, unsafe extern "C" fn(*mut u8))>;
69
70     #[thread_local]
71     static DTORS: Cell<*mut List> = Cell::new(ptr::null_mut());
72     if DTORS.get().is_null() {
73         let v: Box<List> = box Vec::new();
74         DTORS.set(Box::into_raw(v));
75     }
76
77     extern "C" {
78         fn _tlv_atexit(dtor: unsafe extern "C" fn(*mut u8), arg: *mut u8);
79     }
80
81     let list: &mut List = &mut *DTORS.get();
82     list.push((t, dtor));
83
84     unsafe extern "C" fn run_dtors(_: *mut u8) {
85         let mut ptr = DTORS.replace(ptr::null_mut());
86         while !ptr.is_null() {
87             let list = Box::from_raw(ptr);
88             for (ptr, dtor) in list.into_iter() {
89                 dtor(ptr);
90             }
91             ptr = DTORS.replace(ptr::null_mut());
92         }
93     }
94 }
95
96 #[cfg(any(target_os = "vxworks", target_os = "horizon"))]
97 pub unsafe fn register_dtor(t: *mut u8, dtor: unsafe extern "C" fn(*mut u8)) {
98     use crate::sys_common::thread_local_dtor::register_dtor_fallback;
99     register_dtor_fallback(t, dtor);
100 }