Skip to content
This repository was archived by the owner on Mar 25, 2018. It is now read-only.

Commit 879f659

Browse files
jeremyromanCommit bot
authored and
Commit bot
committed
Initialize internal fields in Factory::NewJSTypedArray and NewJSDataView.
This was causing array buffer views created by ValueDeserializer to have uninitialized internal fields, which lead to crashes in layout tests when Blink tried to read those fields. For array buffers, JSArrayBuffer::Setup is responsible for this logic (as well as initializing the V8 fields); this is similar to that. The runtime already seems to correctly initialize these for script-created array buffer views as well, which is why this issue was not detected sooner. Review-Url: https://codereview.chromium.org/2498413002 Cr-Commit-Position: refs/heads/master@{#41014}
1 parent e80cfa0 commit 879f659

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

src/factory.cc

+11
Original file line numberDiff line numberDiff line change
@@ -2010,6 +2010,12 @@ void SetupArrayBufferView(i::Isolate* isolate,
20102010
DCHECK(byte_offset + byte_length <=
20112011
static_cast<size_t>(buffer->byte_length()->Number()));
20122012

2013+
DCHECK_EQ(obj->GetInternalFieldCount(),
2014+
v8::ArrayBufferView::kInternalFieldCount);
2015+
for (int i = 0; i < v8::ArrayBufferView::kInternalFieldCount; i++) {
2016+
obj->SetInternalField(i, Smi::kZero);
2017+
}
2018+
20132019
obj->set_buffer(*buffer);
20142020

20152021
i::Handle<i::Object> byte_offset_object =
@@ -2079,6 +2085,11 @@ Handle<JSTypedArray> Factory::NewJSTypedArray(ElementsKind elements_kind,
20792085
size_t number_of_elements,
20802086
PretenureFlag pretenure) {
20812087
Handle<JSTypedArray> obj = NewJSTypedArray(elements_kind, pretenure);
2088+
DCHECK_EQ(obj->GetInternalFieldCount(),
2089+
v8::ArrayBufferView::kInternalFieldCount);
2090+
for (int i = 0; i < v8::ArrayBufferView::kInternalFieldCount; i++) {
2091+
obj->SetInternalField(i, Smi::kZero);
2092+
}
20822093

20832094
size_t element_size = GetFixedTypedArraysElementSize(elements_kind);
20842095
ExternalArrayType array_type = GetArrayTypeFromElementsKind(elements_kind);

test/cctest/test-api.cc

+28
Original file line numberDiff line numberDiff line change
@@ -26156,3 +26156,31 @@ THREADED_TEST(MutableProtoGlobal) {
2615626156
CHECK(result->Equals(context, v8::Integer::New(CcTest::isolate(), 0))
2615726157
.FromJust());
2615826158
}
26159+
26160+
TEST(InternalFieldsOnTypedArray) {
26161+
LocalContext env;
26162+
v8::Isolate* isolate = env->GetIsolate();
26163+
v8::HandleScope scope(isolate);
26164+
v8::Local<v8::Context> context = env.local();
26165+
Context::Scope context_scope(context);
26166+
v8::Local<v8::ArrayBuffer> buffer = v8::ArrayBuffer::New(isolate, 1);
26167+
v8::Local<v8::Uint8Array> array = v8::Uint8Array::New(buffer, 0, 1);
26168+
for (int i = 0; i < v8::ArrayBufferView::kInternalFieldCount; i++) {
26169+
CHECK_EQ(static_cast<void*>(nullptr),
26170+
array->GetAlignedPointerFromInternalField(i));
26171+
}
26172+
}
26173+
26174+
TEST(InternalFieldsOnDataView) {
26175+
LocalContext env;
26176+
v8::Isolate* isolate = env->GetIsolate();
26177+
v8::HandleScope scope(isolate);
26178+
v8::Local<v8::Context> context = env.local();
26179+
Context::Scope context_scope(context);
26180+
v8::Local<v8::ArrayBuffer> buffer = v8::ArrayBuffer::New(isolate, 1);
26181+
v8::Local<v8::DataView> array = v8::DataView::New(buffer, 0, 1);
26182+
for (int i = 0; i < v8::ArrayBufferView::kInternalFieldCount; i++) {
26183+
CHECK_EQ(static_cast<void*>(nullptr),
26184+
array->GetAlignedPointerFromInternalField(i));
26185+
}
26186+
}

0 commit comments

Comments
 (0)