Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Code-Review | +1 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
[sandbox] Add checks to places where we access TypedArrays - part 1
Because of potential ElementsKind switcheroo, we might be pointing
outside the sandbox when doing the data + index * element size math, and
the sandbox guard region is not big enough to save us.
This is still incomplete - other places need similar checks.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
SBXCHECK(InsideSandbox(reinterpret_cast<Address>(data_ptr)));
Is it possible to have typed arrays that view data outside the v8 sandbox (eg. `AudioBuffer`/`GPUBuffer`?) and if so would this check and the one below cause regressions for v8 embedders?
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
SBXCHECK(InsideSandbox(reinterpret_cast<Address>(data_ptr)));
Is it possible to have typed arrays that view data outside the v8 sandbox (eg. `AudioBuffer`/`GPUBuffer`?) and if so would this check and the one below cause regressions for v8 embedders?
Please ignore the above comment. It's [not possible to have backing stores outside the sandbox](https://source.chromium.org/chromium/chromium/src/+/main:v8/src/api/api.cc;l=9170-9175;drc=07d9e6615fd051f1447bb464057b5aa14cfebf11) when it's enabled to begin with.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |