• Daniel Lehmann's avatar
    [wasm] Allow execution while modifying code space · 8fffd56f
    Daniel Lehmann authored
    The --wasm-write-protect-code-memory flag previously enforced W^X, that
    is the WebAssembly code space was either writable or executable, but
    never both at the same time. With compilation in background threads
    concurrent to execution in the main thread, this simple scheme is no
    longer viable because the same memory page can indeed be written to and
    executed at the same time. Hence, this flag is currently broken and
    disabled and the code space is always writable AND executable.
    
    As a first step towards more security, we at least want to
    write-protect the code space (when not required writable by compilation
    threads) but at the same time keep it always executable (because of
    concurrent execution in the main thread). That is, we no longer switch
    between RX and RW (W^X), but rather between RX and RWX
    (write-protection only).
    
    This CL starts to change from W^X (which was broken) to
    write-protection only when enabling --wasm-write-protect-code-memory.
    This is the first of two CLs, where the followup CL will fix the
    feature, and this CL merely prepares and cleans up the code. In
    particular, this CL changes the permissions from RW to RWX (due to
    concurrent execution) and renames `WasmCodeAllocator::SetExecutable()`
    to `WasmCodeAllocator::SetWritable()` (and similarly named callers) to
    be consistent with that change. Since the code space is now always
    executable, this CL also removes now unneeded calls to
    `SetExecutable(true)` in tests.
    
    R=clemensb@chromium.org
    CC=​​jkummerow@chromium.org
    
    Bug: v8:11663
    Change-Id: I2065eed6770215892b81daefbddf74a349e783cc
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2835237Reviewed-by: 's avatarClemens Backes <clemensb@chromium.org>
    Commit-Queue: Daniel Lehmann <dlehmann@google.com>
    Cr-Commit-Position: refs/heads/master@{#74041}
    8fffd56f
Name
Last commit
Last update
..
api Loading commit data...
asmjs Loading commit data...
ast Loading commit data...
base Loading commit data...
baseline Loading commit data...
bigint Loading commit data...
builtins Loading commit data...
codegen Loading commit data...
common Loading commit data...
compiler Loading commit data...
compiler-dispatcher Loading commit data...
d8 Loading commit data...
date Loading commit data...
debug Loading commit data...
deoptimizer Loading commit data...
diagnostics Loading commit data...
execution Loading commit data...
extensions Loading commit data...
flags Loading commit data...
handles Loading commit data...
heap Loading commit data...
ic Loading commit data...
init Loading commit data...
inspector Loading commit data...
interpreter Loading commit data...
json Loading commit data...
libplatform Loading commit data...
libsampler Loading commit data...
logging Loading commit data...
numbers Loading commit data...
objects Loading commit data...
parsing Loading commit data...
profiler Loading commit data...
protobuf Loading commit data...
regexp Loading commit data...
roots Loading commit data...
runtime Loading commit data...
sanitizer Loading commit data...
snapshot Loading commit data...
strings Loading commit data...
tasks Loading commit data...
third_party Loading commit data...
torque Loading commit data...
tracing Loading commit data...
trap-handler Loading commit data...
utils Loading commit data...
wasm Loading commit data...
web-snapshot Loading commit data...
zone Loading commit data...
DEPS Loading commit data...
DIR_METADATA Loading commit data...
OWNERS Loading commit data...