PR-URL: https://github.com/nodejs/node/pull/58070 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
44 lines
1.6 KiB
JavaScript
44 lines
1.6 KiB
JavaScript
// Copyright 2024 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Flags: --sandbox-testing --expose-gc --allow-natives-syntax
|
|
|
|
const kSeqStringType = Sandbox.getInstanceTypeIdFor("SEQ_ONE_BYTE_STRING_TYPE");
|
|
const kStringLengthOffset = Sandbox.getFieldOffset(kSeqStringType, "length");
|
|
|
|
// Helper function that spawns a worker thread that corrupts memory in the
|
|
// background, constantly flipping the given address between valueA and valueB.
|
|
function corruptInBackground(address, valueA, valueB) {
|
|
function workerTemplate(address, valueA, valueB) {
|
|
let memory = new DataView(new Sandbox.MemoryView(0, 0x100000000));
|
|
while (true) {
|
|
memory.setUint32(address, valueA, true);
|
|
memory.setUint32(address, valueB, true);
|
|
}
|
|
}
|
|
const workerCode = new Function(
|
|
`(${workerTemplate})(${address}, ${valueA}, ${valueB})`);
|
|
return new Worker(workerCode, {type: 'function'});
|
|
}
|
|
|
|
// Create the string object that we'll be corrupting.
|
|
let string = Array(0x100).fill("A").join("");
|
|
assertEquals(Sandbox.getInstanceTypeIdOf(string), kSeqStringType);
|
|
assertEquals(string.length, 0x100);
|
|
|
|
// Trigger some GCs to move the object to a stable position in memory.
|
|
gc();
|
|
gc();
|
|
|
|
// Start the worker thread to corrupt the string in the background.
|
|
let address = Sandbox.getAddressOf(string) + kStringLengthOffset;
|
|
let valueA = 0x1;
|
|
let valueB = 0x100;
|
|
let worker = corruptInBackground(address, valueA, valueB);
|
|
|
|
// Perform string Utf8 encoding in the foreground.
|
|
for (let i = 0; i < 1000; i++) {
|
|
%StringToCString(string);
|
|
}
|