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

Disable use of Linux memory protection keys #53

Merged
merged 1 commit into from
Aug 22, 2024

Conversation

bnoordhuis
Copy link
Collaborator

V8's default thread-isolated allocator has a bug on x64 Linux.

It uses memory protection keys (see man 7 pkeys) to write-protect JIT code memory but in a way that is currently incompatible with how we use threads.

Specifically, pkey permissions are inherited by child threads. Threads that are not descendants of the thread that allocates the pkey default to "no permissions" for that pkey.

Concretely, if thread A creates the v8::Platform (and the pkey) and write-protects memory, then later thread B tries to access that memory, it segfaults due to the lack of permissions.

The fix on V8's side is conceptually easy - call
pkey_set(PKEY_DISABLE_WRITE) before accessing the memory, to flip the permissions from "none" to "can read" - but until it's actually fixed, disable thread-isolation.

Fixes: rubyjs/mini_racer#300
Refs: https://issues.chromium.org/issues/360909072

V8's default thread-isolated allocator has a bug on x64 Linux.

It uses memory protection keys (see `man 7 pkeys`) to
write-protect JIT code memory but in a way that is currently
incompatible with how we use threads.

Specifically, pkey permissions are inherited by child threads.
Threads that are not descendants of the thread that allocates
the pkey default to "no permissions" for that pkey.

Concretely, if thread A creates the v8::Platform (and the pkey)
and write-protects memory, then later thread B tries to access
that memory, it segfaults due to the lack of permissions.

The fix on V8's side is conceptually easy - call
pkey_set(PKEY_DISABLE_WRITE) before accessing the memory,
to flip the permissions from "none" to "can read" - but
until it's actually fixed, disable thread-isolation.

Fixes: rubyjs/mini_racer#300
Refs: https://issues.chromium.org/issues/360909072
@lloeki
Copy link
Collaborator

lloeki commented Aug 21, 2024 via email

@SamSaffron SamSaffron merged commit 0bfaa5d into rubyjs:node-22 Aug 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants