v8/src/handles
Samuel Groß 277fdd1de7 V8 Sandbox rebranding
This CL renames a number of things related to the V8 sandbox.
Mainly, what used to be under V8_HEAP_SANDBOX is now under
V8_SANDBOXED_EXTERNAL_POINTERS, while the previous V8 VirtualMemoryCage
is now simply the V8 Sandbox:

V8_VIRTUAL_MEMORY_CAGE => V8_SANDBOX
V8_HEAP_SANDBOX => V8_SANDBOXED_EXTERNAL_POINTERS
V8_CAGED_POINTERS => V8_SANDBOXED_POINTERS
V8VirtualMemoryCage => Sandbox
CagedPointer => SandboxedPointer
fake cage => partially reserved sandbox
src/security => src/sandbox

This naming scheme should simplify things: the sandbox is now the large
region of virtual address space inside which V8 mainly operates and
which should be considered untrusted. Mechanisms like sandboxed pointers
are then used to attempt to prevent escapes from the sandbox (i.e.
corruption of memory outside of it). Furthermore, the new naming scheme
avoids the confusion with the various other "cages" in V8, in
particular, the VirtualMemoryCage class, by dropping that name entirely.

Future sandbox features are developed under their own V8_SANDBOX_X flag,
and will, once final, be merged into V8_SANDBOX. Current future features
are sandboxed external pointers (using the external pointer table), and
sandboxed pointers (pointers guaranteed to point into the sandbox, e.g.
because they are encoded as offsets). This CL then also introduces a new
build flag, v8_enable_sandbox_future, which enables all future features.

Bug: v8:10391
Change-Id: I5174ea8f5ab40fb96a04af10853da735ad775c96
Cq-Include-Trybots: luci.v8.try:v8_linux64_heap_sandbox_dbg_ng,v8_linux_arm64_sim_heap_sandbox_dbg_ng
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3322981
Reviewed-by: Hannes Payer <hpayer@chromium.org>
Reviewed-by: Igor Sheludko <ishell@chromium.org>
Reviewed-by: Michael Achenbach <machenbach@chromium.org>
Reviewed-by: Toon Verwaest <verwaest@chromium.org>
Commit-Queue: Samuel Groß <saelo@chromium.org>
Cr-Commit-Position: refs/heads/main@{#78384}
2021-12-15 17:09:36 +00:00
..
DIR_METADATA Adjust Monorail label for garbage collection 2021-08-30 09:53:13 +00:00
global-handles-inl.h [ext-code-space] Introduce managed-inl.h and global-handles-inl.h 2021-09-20 10:29:29 +00:00
global-handles.cc V8 Sandbox rebranding 2021-12-15 17:09:36 +00:00
global-handles.h api: Provide write barrier in TracedReferenceBase 2021-10-28 12:00:32 +00:00
handles-inl.h [handles] DCHECK that thread isn't parked when creating handles 2021-12-09 10:14:21 +00:00
handles.cc [strings] Share internalized and in-place internalizable strings 2021-10-08 22:43:38 +00:00
handles.h [handles] Branch hints and force-inline in HandleScope 2021-11-11 07:56:47 +00:00
local-handles-inl.h [local-isolate] Move worker RCS scope into LocalIsolate 2021-12-10 11:08:01 +00:00
local-handles.cc [handles] Retarget local handles on the main thread 2020-12-01 15:27:01 +00:00
local-handles.h [handles] Retarget local handles on the main thread 2020-12-01 15:27:01 +00:00
maybe-handles-inl.h [TurboFan] Provide concurrent access to feedback vector 2020-10-27 13:24:23 +00:00
maybe-handles.h [TurboFan] Provide concurrent access to feedback vector 2020-10-27 13:24:23 +00:00
OWNERS Remove ulan@ from OWNERS 2021-06-08 13:10:21 +00:00
persistent-handles.cc [heap] Replace IsActive() with AssertActive() 2021-10-06 20:17:28 +00:00
persistent-handles.h [TurboFan] Templatize GetBytecodeArray 2020-12-17 16:46:53 +00:00