Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

runtime error: global allocator may not use TLS on arm64 macos #126948

Closed
MarinPostma opened this issue Jun 25, 2024 · 6 comments
Closed

runtime error: global allocator may not use TLS on arm64 macos #126948

MarinPostma opened this issue Jun 25, 2024 · 6 comments
Labels
A-allocators Area: Custom and system allocators A-thread-locals Area: Thread local storage (TLS) T-libs Relevant to the library team, which will review and decide on the PR/issue.

Comments

@MarinPostma
Copy link

When using TLS from the global allocator on arm64 macos, I get the following fatal runtime error:

fatal runtime error: global allocator may not use TLS

This doesn't happen on x86 linux, and I can't find any mention of it anywhere. Grepping the rust repo returns nothing for that error either, so I'm not sure where it's coming from

I tried this code:

use std::alloc::{GlobalAlloc, System};

#[global_allocator]
static GLOBAL: Allocator = Allocator;

struct Allocator;

thread_local! {
    static FOO: usize = 0;
}

unsafe impl GlobalAlloc for Allocator {
    unsafe fn alloc(&self, layout: std::alloc::Layout) -> *mut u8 {
        FOO.with(|foo| {
            println!("{foo}");
        });
        System.alloc(layout)
    }

    unsafe fn dealloc(&self, ptr: *mut u8, layout: std::alloc::Layout) {
        System.dealloc(ptr, layout)
    }
}

fn main() {
    let hello = String::from("hello");
    println!("{hello}");
}

Meta

rustc --version --verbose:

rustc 1.79.0 (129f3b996 2024-06-10)
binary: rustc
commit-hash: 129f3b9964af4d4a709d1383930ade12dfe7c081
commit-date: 2024-06-10
host: aarch64-apple-darwin
release: 1.79.0
LLVM version: 18.1.7
Backtrace

<backtrace>

@MarinPostma MarinPostma added the C-bug Category: This is a bug. label Jun 25, 2024
@rustbot rustbot added the needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. label Jun 25, 2024
@joboet
Copy link
Member

joboet commented Jun 25, 2024

The message describes the problem: the global allocator must not use thread_local!, as the implementation of the macro needs to allocate on most platforms.

We may in the future decide to allow this by using the system allocator here, but this is fundamentally just the tip of the iceberg: nearly every API in std may allocate – I'd argue that you should not use std at all when implementing your own global allocator.

@workingjubilee
Copy link
Member

Grepping the rust repo returns nothing for that error either,

@MarinPostma You are searching overly specifically. The first part, "fatal runtime error", is an error from rtabort!:

macro_rules! rtabort {
($($t:tt)*) => {
{
rtprintpanic!("fatal runtime error: {}\n", format_args!($($t)*));

The second part is inside the TLS dtor registration, currently:

#[thread_local]
static DTORS: RefCell<Vec<(*mut u8, unsafe extern "C" fn(*mut u8))>> = RefCell::new(Vec::new());
pub unsafe fn register(t: *mut u8, dtor: unsafe extern "C" fn(*mut u8)) {
let Ok(mut dtors) = DTORS.try_borrow_mut() else {
// This point can only be reached if the global allocator calls this
// function again.
// FIXME: maybe use the system allocator instead?
rtabort!("the global allocator may not use TLS with destructors");
};

@MarinPostma
Copy link
Author

@workingjubilee that's not the one, notice the absence of "in destructor"

@ChrisDenton
Copy link
Member

Yes, the error message has been tweaked since then but it's still the same error condition. Here's where it is on the 1.79 branch

match DTORS.try_borrow_mut() {
Ok(mut dtors) => dtors.push((t, dtor)),
Err(_) => rtabort!("global allocator may not use TLS"),
}

@workingjubilee
Copy link
Member

there are actually 5 copies of it on the 1.79 branch.

which is why the refactoring that made there be only one.

@workingjubilee
Copy link
Member

doesn't seem to be anything to fix here, currently?

@workingjubilee workingjubilee closed this as not planned Won't fix, can't repro, duplicate, stale Jun 27, 2024
@saethlin saethlin added A-allocators Area: Custom and system allocators A-thread-locals Area: Thread local storage (TLS) T-libs Relevant to the library team, which will review and decide on the PR/issue. and removed C-bug Category: This is a bug. needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. labels Jun 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-allocators Area: Custom and system allocators A-thread-locals Area: Thread local storage (TLS) T-libs Relevant to the library team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

6 participants