Skip to content

Commit 8d94aa9

Browse files
psmarshallrefack
authored andcommitted
deps: cherry-pick b87d408 from upstream V8
Original commit message: [heap-profiler] Fix a use-after-free when snapshots are deleted If a caller starts the sampling heap profiler and takes a snapshot, and then deletes the snapshot before the sampling has completed, a use-after-free will occur on the StringsStorage pointer. The same issue applies for StartTrackingHeapObjects which shares the same StringsStorage object. Bug: v8:8373 Change-Id: I5d69d60d3f9465f9dd3b3bef107c204e0fda0643 Reviewed-on: https://chromium-review.googlesource.com/c/1301477 Commit-Queue: Peter Marshall <[email protected]> Reviewed-by: Alexei Filippov <[email protected]> Cr-Commit-Position: refs/heads/master@{nodejs#57114} PR-URL: nodejs#24272 Refs: v8/v8@b87d408 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Daniel Bevenius <[email protected]>
1 parent 746759e commit 8d94aa9

File tree

4 files changed

+53
-2
lines changed

4 files changed

+53
-2
lines changed

common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
# Reset this number to 0 on major V8 upgrades.
4040
# Increment by one for each non-official patch applied to deps/v8.
41-
'v8_embedder_string': '-node.2',
41+
'v8_embedder_string': '-node.3',
4242

4343
##### V8 defaults for Node.js #####
4444

deps/v8/src/profiler/heap-profiler.cc

+8-1
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,14 @@ HeapProfiler::~HeapProfiler() = default;
2323

2424
void HeapProfiler::DeleteAllSnapshots() {
2525
snapshots_.clear();
26-
names_.reset(new StringsStorage());
26+
MaybeClearStringsStorage();
2727
}
2828

29+
void HeapProfiler::MaybeClearStringsStorage() {
30+
if (snapshots_.empty() && !sampling_heap_profiler_ && !allocation_tracker_) {
31+
names_.reset(new StringsStorage());
32+
}
33+
}
2934

3035
void HeapProfiler::RemoveSnapshot(HeapSnapshot* snapshot) {
3136
snapshots_.erase(
@@ -126,6 +131,7 @@ bool HeapProfiler::StartSamplingHeapProfiler(
126131

127132
void HeapProfiler::StopSamplingHeapProfiler() {
128133
sampling_heap_profiler_.reset();
134+
MaybeClearStringsStorage();
129135
}
130136

131137

@@ -159,6 +165,7 @@ void HeapProfiler::StopHeapObjectsTracking() {
159165
ids_->StopHeapObjectsTracking();
160166
if (allocation_tracker_) {
161167
allocation_tracker_.reset();
168+
MaybeClearStringsStorage();
162169
heap()->RemoveHeapObjectAllocationTracker(this);
163170
}
164171
}

deps/v8/src/profiler/heap-profiler.h

+2
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ class HeapProfiler : public HeapObjectAllocationTracker {
9292
v8::PersistentValueVector<v8::Object>* objects);
9393

9494
private:
95+
void MaybeClearStringsStorage();
96+
9597
Heap* heap() const;
9698

9799
// Mapping from HeapObject addresses to objects' uids.

deps/v8/test/cctest/test-heap-profiler.cc

+42
Original file line numberDiff line numberDiff line change
@@ -3875,3 +3875,45 @@ TEST(WeakReference) {
38753875
const v8::HeapSnapshot* snapshot = heap_profiler->TakeHeapSnapshot();
38763876
CHECK(ValidateSnapshot(snapshot));
38773877
}
3878+
3879+
TEST(Bug8373_1) {
3880+
LocalContext env;
3881+
v8::HandleScope scope(env->GetIsolate());
3882+
v8::HeapProfiler* heap_profiler = env->GetIsolate()->GetHeapProfiler();
3883+
3884+
heap_profiler->StartSamplingHeapProfiler(100);
3885+
3886+
heap_profiler->TakeHeapSnapshot();
3887+
// Causes the StringsStorage to be deleted.
3888+
heap_profiler->DeleteAllHeapSnapshots();
3889+
3890+
// Triggers an allocation sample that tries to use the StringsStorage.
3891+
for (int i = 0; i < 2 * 1024; ++i) {
3892+
CompileRun(
3893+
"new Array(64);"
3894+
"new Uint8Array(16);");
3895+
}
3896+
3897+
heap_profiler->StopSamplingHeapProfiler();
3898+
}
3899+
3900+
TEST(Bug8373_2) {
3901+
LocalContext env;
3902+
v8::HandleScope scope(env->GetIsolate());
3903+
v8::HeapProfiler* heap_profiler = env->GetIsolate()->GetHeapProfiler();
3904+
3905+
heap_profiler->StartTrackingHeapObjects(true);
3906+
3907+
heap_profiler->TakeHeapSnapshot();
3908+
// Causes the StringsStorage to be deleted.
3909+
heap_profiler->DeleteAllHeapSnapshots();
3910+
3911+
// Triggers an allocations that try to use the StringsStorage.
3912+
for (int i = 0; i < 2 * 1024; ++i) {
3913+
CompileRun(
3914+
"new Array(64);"
3915+
"new Uint8Array(16);");
3916+
}
3917+
3918+
heap_profiler->StopTrackingHeapObjects();
3919+
}

0 commit comments

Comments
 (0)