// Copyright 2016 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. #include "src/value-serializer.h" #include #include "src/base/logging.h" #include "src/conversions.h" #include "src/factory.h" #include "src/flags.h" #include "src/handles-inl.h" #include "src/isolate.h" #include "src/objects-inl.h" #include "src/objects.h" #include "src/snapshot/code-serializer.h" #include "src/transitions.h" #include "src/wasm/wasm-module.h" #include "src/wasm/wasm-objects.h" #include "src/wasm/wasm-result.h" namespace v8 { namespace internal { static const uint32_t kLatestVersion = 9; static const int kPretenureThreshold = 100 * KB; template static size_t BytesNeededForVarint(T value) { static_assert(std::is_integral::value && std::is_unsigned::value, "Only unsigned integer types can be written as varints."); size_t result = 0; do { result++; value >>= 7; } while (value); return result; } enum class SerializationTag : uint8_t { // version:uint32_t (if at beginning of data, sets version > 0) kVersion = 0xFF, // ignore kPadding = '\0', // refTableSize:uint32_t (previously used for sanity checks; safe to ignore) kVerifyObjectCount = '?', // Oddballs (no data). kUndefined = '_', kNull = '0', kTrue = 'T', kFalse = 'F', // Number represented as 32-bit integer, ZigZag-encoded // (like sint32 in protobuf) kInt32 = 'I', // Number represented as 32-bit unsigned integer, varint-encoded // (like uint32 in protobuf) kUint32 = 'U', // Number represented as a 64-bit double. // Host byte order is used (N.B. this makes the format non-portable). kDouble = 'N', // byteLength:uint32_t, then raw data kUtf8String = 'S', kTwoByteString = 'c', // Reference to a serialized object. objectID:uint32_t kObjectReference = '^', // Beginning of a JS object. kBeginJSObject = 'o', // End of a JS object. numProperties:uint32_t kEndJSObject = '{', // Beginning of a sparse JS array. length:uint32_t // Elements and properties are written as key/value pairs, like objects. kBeginSparseJSArray = 'a', // End of a sparse JS array. numProperties:uint32_t length:uint32_t kEndSparseJSArray = '@', // Beginning of a dense JS array. length:uint32_t // |length| elements, followed by properties as key/value pairs kBeginDenseJSArray = 'A', // End of a dense JS array. numProperties:uint32_t length:uint32_t kEndDenseJSArray = '$', // Date. millisSinceEpoch:double kDate = 'D', // Boolean object. No data. kTrueObject = 'y', kFalseObject = 'x', // Number object. value:double kNumberObject = 'n', // String object, UTF-8 encoding. byteLength:uint32_t, then raw data. kStringObject = 's', // Regular expression, UTF-8 encoding. byteLength:uint32_t, raw data, // flags:uint32_t. kRegExp = 'R', // Beginning of a JS map. kBeginJSMap = ';', // End of a JS map. length:uint32_t. kEndJSMap = ':', // Beginning of a JS set. kBeginJSSet = '\'', // End of a JS set. length:uint32_t. kEndJSSet = ',', // Array buffer. byteLength:uint32_t, then raw data. kArrayBuffer = 'B', // Array buffer (transferred). transferID:uint32_t kArrayBufferTransfer = 't', // View into an array buffer. // subtag:ArrayBufferViewTag, byteOffset:uint32_t, byteLength:uint32_t // For typed arrays, byteOffset and byteLength must be divisible by the size // of the element. // Note: kArrayBufferView is special, and should have an ArrayBuffer (or an // ObjectReference to one) serialized just before it. This is a quirk arising // from the previous stack-based implementation. kArrayBufferView = 'V', // Shared array buffer. transferID:uint32_t kSharedArrayBuffer = 'u', // Compiled WebAssembly module. encodingType:(one-byte tag). // If encodingType == 'y' (raw bytes): // wasmWireByteLength:uint32_t, then raw data // compiledDataLength:uint32_t, then raw data kWasmModule = 'W', }; namespace { enum class ArrayBufferViewTag : uint8_t { kInt8Array = 'b', kUint8Array = 'B', kUint8ClampedArray = 'C', kInt16Array = 'w', kUint16Array = 'W', kInt32Array = 'd', kUint32Array = 'D', kFloat32Array = 'f', kFloat64Array = 'F', kDataView = '?', }; enum class WasmEncodingTag : uint8_t { kRawBytes = 'y', }; } // namespace ValueSerializer::ValueSerializer(Isolate* isolate, v8::ValueSerializer::Delegate* delegate) : isolate_(isolate), delegate_(delegate), zone_(isolate->allocator(), ZONE_NAME), id_map_(isolate->heap(), &zone_), array_buffer_transfer_map_(isolate->heap(), &zone_) {} ValueSerializer::~ValueSerializer() { if (buffer_) { if (delegate_) { delegate_->FreeBufferMemory(buffer_); } else { free(buffer_); } } } void ValueSerializer::WriteHeader() { WriteTag(SerializationTag::kVersion); WriteVarint(kLatestVersion); } void ValueSerializer::WriteTag(SerializationTag tag) { uint8_t raw_tag = static_cast(tag); WriteRawBytes(&raw_tag, sizeof(raw_tag)); } template void ValueSerializer::WriteVarint(T value) { // Writes an unsigned integer as a base-128 varint. // The number is written, 7 bits at a time, from the least significant to the // most significant 7 bits. Each byte, except the last, has the MSB set. // See also https://developers.google.com/protocol-buffers/docs/encoding static_assert(std::is_integral::value && std::is_unsigned::value, "Only unsigned integer types can be written as varints."); uint8_t stack_buffer[sizeof(T) * 8 / 7 + 1]; uint8_t* next_byte = &stack_buffer[0]; do { *next_byte = (value & 0x7f) | 0x80; next_byte++; value >>= 7; } while (value); *(next_byte - 1) &= 0x7f; WriteRawBytes(stack_buffer, next_byte - stack_buffer); } template void ValueSerializer::WriteZigZag(T value) { // Writes a signed integer as a varint using ZigZag encoding (i.e. 0 is // encoded as 0, -1 as 1, 1 as 2, -2 as 3, and so on). // See also https://developers.google.com/protocol-buffers/docs/encoding // Note that this implementation relies on the right shift being arithmetic. static_assert(std::is_integral::value && std::is_signed::value, "Only signed integer types can be written as zigzag."); using UnsignedT = typename std::make_unsigned::type; WriteVarint((static_cast(value) << 1) ^ (value >> (8 * sizeof(T) - 1))); } void ValueSerializer::WriteDouble(double value) { // Warning: this uses host endianness. WriteRawBytes(&value, sizeof(value)); } void ValueSerializer::WriteOneByteString(Vector chars) { WriteVarint(chars.length()); WriteRawBytes(chars.begin(), chars.length() * sizeof(uint8_t)); } void ValueSerializer::WriteTwoByteString(Vector chars) { // Warning: this uses host endianness. WriteVarint(chars.length() * sizeof(uc16)); WriteRawBytes(chars.begin(), chars.length() * sizeof(uc16)); } void ValueSerializer::WriteRawBytes(const void* source, size_t length) { memcpy(ReserveRawBytes(length), source, length); } uint8_t* ValueSerializer::ReserveRawBytes(size_t bytes) { size_t old_size = buffer_size_; size_t new_size = old_size + bytes; if (new_size > buffer_capacity_) ExpandBuffer(new_size); buffer_size_ = new_size; return &buffer_[old_size]; } void ValueSerializer::ExpandBuffer(size_t required_capacity) { DCHECK_GT(required_capacity, buffer_capacity_); size_t requested_capacity = std::max(required_capacity, buffer_capacity_ * 2) + 64; size_t provided_capacity = 0; void* new_buffer = nullptr; if (delegate_) { new_buffer = delegate_->ReallocateBufferMemory(buffer_, requested_capacity, &provided_capacity); } else { new_buffer = realloc(buffer_, requested_capacity); provided_capacity = requested_capacity; } DCHECK_GE(provided_capacity, requested_capacity); buffer_ = reinterpret_cast(new_buffer); buffer_capacity_ = provided_capacity; } void ValueSerializer::WriteUint32(uint32_t value) { WriteVarint(value); } void ValueSerializer::WriteUint64(uint64_t value) { WriteVarint(value); } std::vector ValueSerializer::ReleaseBuffer() { return std::vector(buffer_, buffer_ + buffer_size_); } std::pair ValueSerializer::Release() { auto result = std::make_pair(buffer_, buffer_size_); buffer_ = nullptr; buffer_size_ = 0; buffer_capacity_ = 0; return result; } void ValueSerializer::TransferArrayBuffer(uint32_t transfer_id, Handle array_buffer) { DCHECK(!array_buffer_transfer_map_.Find(array_buffer)); DCHECK(!array_buffer->is_shared()); array_buffer_transfer_map_.Set(array_buffer, transfer_id); } Maybe ValueSerializer::WriteObject(Handle object) { if (object->IsSmi()) { WriteSmi(Smi::cast(*object)); return Just(true); } DCHECK(object->IsHeapObject()); switch (HeapObject::cast(*object)->map()->instance_type()) { case ODDBALL_TYPE: WriteOddball(Oddball::cast(*object)); return Just(true); case HEAP_NUMBER_TYPE: case MUTABLE_HEAP_NUMBER_TYPE: WriteHeapNumber(HeapNumber::cast(*object)); return Just(true); case JS_TYPED_ARRAY_TYPE: case JS_DATA_VIEW_TYPE: { // Despite being JSReceivers, these have their wrapped buffer serialized // first. That makes this logic a little quirky, because it needs to // happen before we assign object IDs. // TODO(jbroman): It may be possible to avoid materializing a typed // array's buffer here. Handle view = Handle::cast(object); if (!id_map_.Find(view)) { Handle buffer( view->IsJSTypedArray() ? Handle::cast(view)->GetBuffer() : handle(JSArrayBuffer::cast(view->buffer()), isolate_)); if (!WriteJSReceiver(buffer).FromMaybe(false)) return Nothing(); } return WriteJSReceiver(view); } default: if (object->IsString()) { WriteString(Handle::cast(object)); return Just(true); } else if (object->IsJSReceiver()) { return WriteJSReceiver(Handle::cast(object)); } else { ThrowDataCloneError(MessageTemplate::kDataCloneError, object); return Nothing(); } } } void ValueSerializer::WriteOddball(Oddball* oddball) { SerializationTag tag = SerializationTag::kUndefined; switch (oddball->kind()) { case Oddball::kUndefined: tag = SerializationTag::kUndefined; break; case Oddball::kFalse: tag = SerializationTag::kFalse; break; case Oddball::kTrue: tag = SerializationTag::kTrue; break; case Oddball::kNull: tag = SerializationTag::kNull; break; default: UNREACHABLE(); break; } WriteTag(tag); } void ValueSerializer::WriteSmi(Smi* smi) { static_assert(kSmiValueSize <= 32, "Expected SMI <= 32 bits."); WriteTag(SerializationTag::kInt32); WriteZigZag(smi->value()); } void ValueSerializer::WriteHeapNumber(HeapNumber* number) { WriteTag(SerializationTag::kDouble); WriteDouble(number->value()); } void ValueSerializer::WriteString(Handle string) { string = String::Flatten(string); DisallowHeapAllocation no_gc; String::FlatContent flat = string->GetFlatContent(); DCHECK(flat.IsFlat()); if (flat.IsOneByte()) { // The existing format uses UTF-8, rather than Latin-1. As a result we must // to do work to encode strings that have characters outside ASCII. // TODO(jbroman): In a future format version, consider adding a tag for // Latin-1 strings, so that this can be skipped. WriteTag(SerializationTag::kUtf8String); Vector chars = flat.ToOneByteVector(); if (String::IsAscii(chars.begin(), chars.length())) { WriteOneByteString(chars); } else { v8::Local api_string = Utils::ToLocal(string); uint32_t utf8_length = api_string->Utf8Length(); WriteVarint(utf8_length); api_string->WriteUtf8( reinterpret_cast(ReserveRawBytes(utf8_length)), utf8_length, nullptr, v8::String::NO_NULL_TERMINATION); } } else if (flat.IsTwoByte()) { Vector chars = flat.ToUC16Vector(); uint32_t byte_length = chars.length() * sizeof(uc16); // The existing reading code expects 16-byte strings to be aligned. if ((buffer_size_ + 1 + BytesNeededForVarint(byte_length)) & 1) WriteTag(SerializationTag::kPadding); WriteTag(SerializationTag::kTwoByteString); WriteTwoByteString(chars); } else { UNREACHABLE(); } } Maybe ValueSerializer::WriteJSReceiver(Handle receiver) { // If the object has already been serialized, just write its ID. uint32_t* id_map_entry = id_map_.Get(receiver); if (uint32_t id = *id_map_entry) { WriteTag(SerializationTag::kObjectReference); WriteVarint(id - 1); return Just(true); } // Otherwise, allocate an ID for it. uint32_t id = next_id_++; *id_map_entry = id + 1; // Eliminate callable and exotic objects, which should not be serialized. InstanceType instance_type = receiver->map()->instance_type(); if (receiver->IsCallable() || (IsSpecialReceiverInstanceType(instance_type) && instance_type != JS_SPECIAL_API_OBJECT_TYPE)) { ThrowDataCloneError(MessageTemplate::kDataCloneError, receiver); return Nothing(); } // If we are at the end of the stack, abort. This function may recurse. STACK_CHECK(isolate_, Nothing()); HandleScope scope(isolate_); switch (instance_type) { case JS_ARRAY_TYPE: return WriteJSArray(Handle::cast(receiver)); case JS_OBJECT_TYPE: case JS_API_OBJECT_TYPE: { Handle js_object = Handle::cast(receiver); Map* map = js_object->map(); if (FLAG_expose_wasm && map->GetConstructor() == isolate_->native_context()->wasm_module_constructor()) { return WriteWasmModule(js_object); } else if (JSObject::GetInternalFieldCount(map)) { return WriteHostObject(js_object); } else { return WriteJSObject(js_object); } } case JS_SPECIAL_API_OBJECT_TYPE: return WriteHostObject(Handle::cast(receiver)); case JS_DATE_TYPE: WriteJSDate(JSDate::cast(*receiver)); return Just(true); case JS_VALUE_TYPE: return WriteJSValue(Handle::cast(receiver)); case JS_REGEXP_TYPE: WriteJSRegExp(JSRegExp::cast(*receiver)); return Just(true); case JS_MAP_TYPE: return WriteJSMap(Handle::cast(receiver)); case JS_SET_TYPE: return WriteJSSet(Handle::cast(receiver)); case JS_ARRAY_BUFFER_TYPE: return WriteJSArrayBuffer(Handle::cast(receiver)); case JS_TYPED_ARRAY_TYPE: case JS_DATA_VIEW_TYPE: return WriteJSArrayBufferView(JSArrayBufferView::cast(*receiver)); default: ThrowDataCloneError(MessageTemplate::kDataCloneError, receiver); return Nothing(); } return Nothing(); } Maybe ValueSerializer::WriteJSObject(Handle object) { DCHECK_GT(object->map()->instance_type(), LAST_CUSTOM_ELEMENTS_RECEIVER); const bool can_serialize_fast = object->HasFastProperties() && object->elements()->length() == 0; if (!can_serialize_fast) return WriteJSObjectSlow(object); Handle map(object->map(), isolate_); WriteTag(SerializationTag::kBeginJSObject); // Write out fast properties as long as they are only data properties and the // map doesn't change. uint32_t properties_written = 0; bool map_changed = false; for (int i = 0; i < map->NumberOfOwnDescriptors(); i++) { Handle key(map->instance_descriptors()->GetKey(i), isolate_); if (!key->IsString()) continue; PropertyDetails details = map->instance_descriptors()->GetDetails(i); if (details.IsDontEnum()) continue; Handle value; if (V8_LIKELY(!map_changed)) map_changed = *map == object->map(); if (V8_LIKELY(!map_changed && details.location() == kField)) { DCHECK_EQ(kData, details.kind()); FieldIndex field_index = FieldIndex::ForDescriptor(*map, i); value = JSObject::FastPropertyAt(object, details.representation(), field_index); } else { // This logic should essentially match WriteJSObjectPropertiesSlow. // If the property is no longer found, do not serialize it. // This could happen if a getter deleted the property. LookupIterator it(isolate_, object, key, LookupIterator::OWN); if (!it.IsFound()) continue; if (!Object::GetProperty(&it).ToHandle(&value)) return Nothing(); } if (!WriteObject(key).FromMaybe(false) || !WriteObject(value).FromMaybe(false)) { return Nothing(); } properties_written++; } WriteTag(SerializationTag::kEndJSObject); WriteVarint(properties_written); return Just(true); } Maybe ValueSerializer::WriteJSObjectSlow(Handle object) { WriteTag(SerializationTag::kBeginJSObject); Handle keys; uint32_t properties_written; if (!KeyAccumulator::GetKeys(object, KeyCollectionMode::kOwnOnly, ENUMERABLE_STRINGS) .ToHandle(&keys) || !WriteJSObjectPropertiesSlow(object, keys).To(&properties_written)) { return Nothing(); } WriteTag(SerializationTag::kEndJSObject); WriteVarint(properties_written); return Just(true); } Maybe ValueSerializer::WriteJSArray(Handle array) { uint32_t length = 0; bool valid_length = array->length()->ToArrayLength(&length); DCHECK(valid_length); USE(valid_length); // To keep things simple, for now we decide between dense and sparse // serialization based on elements kind. A more principled heuristic could // count the elements, but would need to take care to note which indices // existed (as only indices which were enumerable own properties at this point // should be serialized). const bool should_serialize_densely = array->HasFastElements() && !array->HasFastHoleyElements(); if (should_serialize_densely) { DCHECK_LE(length, static_cast(FixedArray::kMaxLength)); // TODO(jbroman): Distinguish between undefined and a hole (this can happen // if serializing one of the elements deletes another). This requires wire // format changes. WriteTag(SerializationTag::kBeginDenseJSArray); WriteVarint(length); uint32_t i = 0; // Fast paths. Note that FAST_ELEMENTS in particular can bail due to the // structure of the elements changing. switch (array->GetElementsKind()) { case FAST_SMI_ELEMENTS: { Handle elements(FixedArray::cast(array->elements()), isolate_); for (; i < length; i++) WriteSmi(Smi::cast(elements->get(i))); break; } case FAST_DOUBLE_ELEMENTS: { Handle elements( FixedDoubleArray::cast(array->elements()), isolate_); for (; i < length; i++) { WriteTag(SerializationTag::kDouble); WriteDouble(elements->get_scalar(i)); } break; } case FAST_ELEMENTS: { Handle old_length(array->length(), isolate_); for (; i < length; i++) { if (array->length() != *old_length || array->GetElementsKind() != FAST_ELEMENTS) { // Fall back to slow path. break; } Handle element(FixedArray::cast(array->elements())->get(i), isolate_); if (!WriteObject(element).FromMaybe(false)) return Nothing(); } break; } default: break; } // If there are elements remaining, serialize them slowly. for (; i < length; i++) { // Serializing the array's elements can have arbitrary side effects, so we // cannot rely on still having fast elements, even if it did to begin // with. Handle element; LookupIterator it(isolate_, array, i, array, LookupIterator::OWN); if (!Object::GetProperty(&it).ToHandle(&element) || !WriteObject(element).FromMaybe(false)) { return Nothing(); } } KeyAccumulator accumulator(isolate_, KeyCollectionMode::kOwnOnly, ENUMERABLE_STRINGS); if (!accumulator.CollectOwnPropertyNames(array, array).FromMaybe(false)) { return Nothing(); } Handle keys = accumulator.GetKeys(GetKeysConversion::kConvertToString); uint32_t properties_written; if (!WriteJSObjectPropertiesSlow(array, keys).To(&properties_written)) { return Nothing(); } WriteTag(SerializationTag::kEndDenseJSArray); WriteVarint(properties_written); WriteVarint(length); } else { WriteTag(SerializationTag::kBeginSparseJSArray); WriteVarint(length); Handle keys; uint32_t properties_written; if (!KeyAccumulator::GetKeys(array, KeyCollectionMode::kOwnOnly, ENUMERABLE_STRINGS) .ToHandle(&keys) || !WriteJSObjectPropertiesSlow(array, keys).To(&properties_written)) { return Nothing(); } WriteTag(SerializationTag::kEndSparseJSArray); WriteVarint(properties_written); WriteVarint(length); } return Just(true); } void ValueSerializer::WriteJSDate(JSDate* date) { WriteTag(SerializationTag::kDate); WriteDouble(date->value()->Number()); } Maybe ValueSerializer::WriteJSValue(Handle value) { Object* inner_value = value->value(); if (inner_value->IsTrue(isolate_)) { WriteTag(SerializationTag::kTrueObject); } else if (inner_value->IsFalse(isolate_)) { WriteTag(SerializationTag::kFalseObject); } else if (inner_value->IsNumber()) { WriteTag(SerializationTag::kNumberObject); WriteDouble(inner_value->Number()); } else if (inner_value->IsString()) { // TODO(jbroman): Replace UTF-8 encoding with the same options available for // ordinary strings. WriteTag(SerializationTag::kStringObject); v8::Local api_string = Utils::ToLocal(handle(String::cast(inner_value), isolate_)); uint32_t utf8_length = api_string->Utf8Length(); WriteVarint(utf8_length); api_string->WriteUtf8(reinterpret_cast(ReserveRawBytes(utf8_length)), utf8_length, nullptr, v8::String::NO_NULL_TERMINATION); } else { DCHECK(inner_value->IsSymbol()); ThrowDataCloneError(MessageTemplate::kDataCloneError, value); return Nothing(); } return Just(true); } void ValueSerializer::WriteJSRegExp(JSRegExp* regexp) { WriteTag(SerializationTag::kRegExp); v8::Local api_string = Utils::ToLocal(handle(regexp->Pattern(), isolate_)); uint32_t utf8_length = api_string->Utf8Length(); WriteVarint(utf8_length); api_string->WriteUtf8(reinterpret_cast(ReserveRawBytes(utf8_length)), utf8_length, nullptr, v8::String::NO_NULL_TERMINATION); WriteVarint(static_cast(regexp->GetFlags())); } Maybe ValueSerializer::WriteJSMap(Handle map) { // First copy the key-value pairs, since getters could mutate them. Handle table(OrderedHashMap::cast(map->table())); int length = table->NumberOfElements() * 2; Handle entries = isolate_->factory()->NewFixedArray(length); { DisallowHeapAllocation no_gc; Oddball* the_hole = isolate_->heap()->the_hole_value(); int capacity = table->UsedCapacity(); int result_index = 0; for (int i = 0; i < capacity; i++) { Object* key = table->KeyAt(i); if (key == the_hole) continue; entries->set(result_index++, key); entries->set(result_index++, table->ValueAt(i)); } DCHECK_EQ(result_index, length); } // Then write it out. WriteTag(SerializationTag::kBeginJSMap); for (int i = 0; i < length; i++) { if (!WriteObject(handle(entries->get(i), isolate_)).FromMaybe(false)) { return Nothing(); } } WriteTag(SerializationTag::kEndJSMap); WriteVarint(length); return Just(true); } Maybe ValueSerializer::WriteJSSet(Handle set) { // First copy the element pointers, since getters could mutate them. Handle table(OrderedHashSet::cast(set->table())); int length = table->NumberOfElements(); Handle entries = isolate_->factory()->NewFixedArray(length); { DisallowHeapAllocation no_gc; Oddball* the_hole = isolate_->heap()->the_hole_value(); int capacity = table->UsedCapacity(); int result_index = 0; for (int i = 0; i < capacity; i++) { Object* key = table->KeyAt(i); if (key == the_hole) continue; entries->set(result_index++, key); } DCHECK_EQ(result_index, length); } // Then write it out. WriteTag(SerializationTag::kBeginJSSet); for (int i = 0; i < length; i++) { if (!WriteObject(handle(entries->get(i), isolate_)).FromMaybe(false)) { return Nothing(); } } WriteTag(SerializationTag::kEndJSSet); WriteVarint(length); return Just(true); } Maybe ValueSerializer::WriteJSArrayBuffer( Handle array_buffer) { if (array_buffer->is_shared()) { if (!delegate_) { ThrowDataCloneError(MessageTemplate::kDataCloneError, array_buffer); return Nothing(); } v8::Isolate* v8_isolate = reinterpret_cast(isolate_); Maybe index = delegate_->GetSharedArrayBufferId( v8_isolate, Utils::ToLocalShared(array_buffer)); RETURN_VALUE_IF_SCHEDULED_EXCEPTION(isolate_, Nothing()); WriteTag(SerializationTag::kSharedArrayBuffer); WriteVarint(index.FromJust()); return Just(true); } uint32_t* transfer_entry = array_buffer_transfer_map_.Find(array_buffer); if (transfer_entry) { WriteTag(SerializationTag::kArrayBufferTransfer); WriteVarint(*transfer_entry); return Just(true); } if (array_buffer->was_neutered()) { ThrowDataCloneError(MessageTemplate::kDataCloneErrorNeuteredArrayBuffer); return Nothing(); } double byte_length = array_buffer->byte_length()->Number(); if (byte_length > std::numeric_limits::max()) { ThrowDataCloneError(MessageTemplate::kDataCloneError, array_buffer); return Nothing(); } WriteTag(SerializationTag::kArrayBuffer); WriteVarint(byte_length); WriteRawBytes(array_buffer->backing_store(), byte_length); return Just(true); } Maybe ValueSerializer::WriteJSArrayBufferView(JSArrayBufferView* view) { WriteTag(SerializationTag::kArrayBufferView); ArrayBufferViewTag tag = ArrayBufferViewTag::kInt8Array; if (view->IsJSTypedArray()) { switch (JSTypedArray::cast(view)->type()) { #define TYPED_ARRAY_CASE(Type, type, TYPE, ctype, size) \ case kExternal##Type##Array: \ tag = ArrayBufferViewTag::k##Type##Array; \ break; TYPED_ARRAYS(TYPED_ARRAY_CASE) #undef TYPED_ARRAY_CASE } } else { DCHECK(view->IsJSDataView()); tag = ArrayBufferViewTag::kDataView; } WriteVarint(static_cast(tag)); WriteVarint(NumberToUint32(view->byte_offset())); WriteVarint(NumberToUint32(view->byte_length())); return Just(true); } Maybe ValueSerializer::WriteWasmModule(Handle object) { Handle compiled_part( WasmCompiledModule::cast(object->GetInternalField(0)), isolate_); WasmEncodingTag encoding_tag = WasmEncodingTag::kRawBytes; WriteTag(SerializationTag::kWasmModule); WriteRawBytes(&encoding_tag, sizeof(encoding_tag)); Handle wire_bytes(compiled_part->module_bytes(), isolate_); int wire_bytes_length = wire_bytes->length(); WriteVarint(wire_bytes_length); uint8_t* destination = ReserveRawBytes(wire_bytes_length); String::WriteToFlat(*wire_bytes, destination, 0, wire_bytes_length); std::unique_ptr script_data = WasmCompiledModuleSerializer::SerializeWasmModule(isolate_, compiled_part); int script_data_length = script_data->length(); WriteVarint(script_data_length); WriteRawBytes(script_data->data(), script_data_length); return Just(true); } Maybe ValueSerializer::WriteHostObject(Handle object) { if (!delegate_) { isolate_->Throw(*isolate_->factory()->NewError( isolate_->error_function(), MessageTemplate::kDataCloneError, object)); return Nothing(); } v8::Isolate* v8_isolate = reinterpret_cast(isolate_); Maybe result = delegate_->WriteHostObject(v8_isolate, Utils::ToLocal(object)); RETURN_VALUE_IF_SCHEDULED_EXCEPTION(isolate_, Nothing()); DCHECK(!result.IsNothing()); return result; } Maybe ValueSerializer::WriteJSObjectPropertiesSlow( Handle object, Handle keys) { uint32_t properties_written = 0; int length = keys->length(); for (int i = 0; i < length; i++) { Handle key(keys->get(i), isolate_); bool success; LookupIterator it = LookupIterator::PropertyOrElement( isolate_, object, key, &success, LookupIterator::OWN); DCHECK(success); Handle value; if (!Object::GetProperty(&it).ToHandle(&value)) return Nothing(); // If the property is no longer found, do not serialize it. // This could happen if a getter deleted the property. if (!it.IsFound()) continue; if (!WriteObject(key).FromMaybe(false) || !WriteObject(value).FromMaybe(false)) { return Nothing(); } properties_written++; } return Just(properties_written); } void ValueSerializer::ThrowDataCloneError( MessageTemplate::Template template_index) { return ThrowDataCloneError(template_index, isolate_->factory()->empty_string()); } void ValueSerializer::ThrowDataCloneError( MessageTemplate::Template template_index, Handle arg0) { Handle message = MessageTemplate::FormatMessage(isolate_, template_index, arg0); if (delegate_) { delegate_->ThrowDataCloneError(Utils::ToLocal(message)); } else { isolate_->Throw( *isolate_->factory()->NewError(isolate_->error_function(), message)); } if (isolate_->has_scheduled_exception()) { isolate_->PromoteScheduledException(); } } ValueDeserializer::ValueDeserializer(Isolate* isolate, Vector data, v8::ValueDeserializer::Delegate* delegate) : isolate_(isolate), delegate_(delegate), position_(data.start()), end_(data.start() + data.length()), pretenure_(data.length() > kPretenureThreshold ? TENURED : NOT_TENURED), id_map_(Handle::cast(isolate->global_handles()->Create( isolate_->heap()->empty_fixed_array()))) {} ValueDeserializer::~ValueDeserializer() { GlobalHandles::Destroy(Handle::cast(id_map_).location()); Handle transfer_map_handle; if (array_buffer_transfer_map_.ToHandle(&transfer_map_handle)) { GlobalHandles::Destroy(transfer_map_handle.location()); } } Maybe ValueDeserializer::ReadHeader() { if (position_ < end_ && *position_ == static_cast(SerializationTag::kVersion)) { ReadTag().ToChecked(); if (!ReadVarint().To(&version_) || version_ > kLatestVersion) { isolate_->Throw(*isolate_->factory()->NewError( MessageTemplate::kDataCloneDeserializationVersionError)); return Nothing(); } } return Just(true); } Maybe ValueDeserializer::PeekTag() const { const uint8_t* peek_position = position_; SerializationTag tag; do { if (peek_position >= end_) return Nothing(); tag = static_cast(*peek_position); peek_position++; } while (tag == SerializationTag::kPadding); return Just(tag); } void ValueDeserializer::ConsumeTag(SerializationTag peeked_tag) { SerializationTag actual_tag = ReadTag().ToChecked(); DCHECK(actual_tag == peeked_tag); USE(actual_tag); } Maybe ValueDeserializer::ReadTag() { SerializationTag tag; do { if (position_ >= end_) return Nothing(); tag = static_cast(*position_); position_++; } while (tag == SerializationTag::kPadding); return Just(tag); } template Maybe ValueDeserializer::ReadVarint() { // Reads an unsigned integer as a base-128 varint. // The number is written, 7 bits at a time, from the least significant to the // most significant 7 bits. Each byte, except the last, has the MSB set. // If the varint is larger than T, any more significant bits are discarded. // See also https://developers.google.com/protocol-buffers/docs/encoding static_assert(std::is_integral::value && std::is_unsigned::value, "Only unsigned integer types can be read as varints."); T value = 0; unsigned shift = 0; bool has_another_byte; do { if (position_ >= end_) return Nothing(); uint8_t byte = *position_; if (V8_LIKELY(shift < sizeof(T) * 8)) { value |= static_cast(byte & 0x7f) << shift; shift += 7; } has_another_byte = byte & 0x80; position_++; } while (has_another_byte); return Just(value); } template Maybe ValueDeserializer::ReadZigZag() { // Writes a signed integer as a varint using ZigZag encoding (i.e. 0 is // encoded as 0, -1 as 1, 1 as 2, -2 as 3, and so on). // See also https://developers.google.com/protocol-buffers/docs/encoding static_assert(std::is_integral::value && std::is_signed::value, "Only signed integer types can be read as zigzag."); using UnsignedT = typename std::make_unsigned::type; UnsignedT unsigned_value; if (!ReadVarint().To(&unsigned_value)) return Nothing(); return Just(static_cast((unsigned_value >> 1) ^ -static_cast(unsigned_value & 1))); } Maybe ValueDeserializer::ReadDouble() { // Warning: this uses host endianness. if (position_ > end_ - sizeof(double)) return Nothing(); double value; memcpy(&value, position_, sizeof(double)); position_ += sizeof(double); if (std::isnan(value)) value = std::numeric_limits::quiet_NaN(); return Just(value); } Maybe> ValueDeserializer::ReadRawBytes(int size) { if (size > end_ - position_) return Nothing>(); const uint8_t* start = position_; position_ += size; return Just(Vector(start, size)); } bool ValueDeserializer::ReadUint32(uint32_t* value) { return ReadVarint().To(value); } bool ValueDeserializer::ReadUint64(uint64_t* value) { return ReadVarint().To(value); } bool ValueDeserializer::ReadDouble(double* value) { return ReadDouble().To(value); } bool ValueDeserializer::ReadRawBytes(size_t length, const void** data) { if (length > static_cast(end_ - position_)) return false; *data = position_; position_ += length; return true; } void ValueDeserializer::TransferArrayBuffer( uint32_t transfer_id, Handle array_buffer) { if (array_buffer_transfer_map_.is_null()) { array_buffer_transfer_map_ = Handle::cast(isolate_->global_handles()->Create( *SeededNumberDictionary::New(isolate_, 0))); } Handle dictionary = array_buffer_transfer_map_.ToHandleChecked(); Handle not_a_prototype_holder; Handle new_dictionary = SeededNumberDictionary::AtNumberPut(dictionary, transfer_id, array_buffer, not_a_prototype_holder); if (!new_dictionary.is_identical_to(dictionary)) { GlobalHandles::Destroy(Handle::cast(dictionary).location()); array_buffer_transfer_map_ = Handle::cast( isolate_->global_handles()->Create(*new_dictionary)); } } MaybeHandle ValueDeserializer::ReadObject() { MaybeHandle result = ReadObjectInternal(); // ArrayBufferView is special in that it consumes the value before it, even // after format version 0. Handle object; SerializationTag tag; if (result.ToHandle(&object) && V8_UNLIKELY(object->IsJSArrayBuffer()) && PeekTag().To(&tag) && tag == SerializationTag::kArrayBufferView) { ConsumeTag(SerializationTag::kArrayBufferView); result = ReadJSArrayBufferView(Handle::cast(object)); } if (result.is_null() && !isolate_->has_pending_exception()) { isolate_->Throw(*isolate_->factory()->NewError( MessageTemplate::kDataCloneDeserializationError)); } return result; } MaybeHandle ValueDeserializer::ReadObjectInternal() { SerializationTag tag; if (!ReadTag().To(&tag)) return MaybeHandle(); switch (tag) { case SerializationTag::kVerifyObjectCount: // Read the count and ignore it. if (ReadVarint().IsNothing()) return MaybeHandle(); return ReadObject(); case SerializationTag::kUndefined: return isolate_->factory()->undefined_value(); case SerializationTag::kNull: return isolate_->factory()->null_value(); case SerializationTag::kTrue: return isolate_->factory()->true_value(); case SerializationTag::kFalse: return isolate_->factory()->false_value(); case SerializationTag::kInt32: { Maybe number = ReadZigZag(); if (number.IsNothing()) return MaybeHandle(); return isolate_->factory()->NewNumberFromInt(number.FromJust(), pretenure_); } case SerializationTag::kUint32: { Maybe number = ReadVarint(); if (number.IsNothing()) return MaybeHandle(); return isolate_->factory()->NewNumberFromUint(number.FromJust(), pretenure_); } case SerializationTag::kDouble: { Maybe number = ReadDouble(); if (number.IsNothing()) return MaybeHandle(); return isolate_->factory()->NewNumber(number.FromJust(), pretenure_); } case SerializationTag::kUtf8String: return ReadUtf8String(); case SerializationTag::kTwoByteString: return ReadTwoByteString(); case SerializationTag::kObjectReference: { uint32_t id; if (!ReadVarint().To(&id)) return MaybeHandle(); return GetObjectWithID(id); } case SerializationTag::kBeginJSObject: return ReadJSObject(); case SerializationTag::kBeginSparseJSArray: return ReadSparseJSArray(); case SerializationTag::kBeginDenseJSArray: return ReadDenseJSArray(); case SerializationTag::kDate: return ReadJSDate(); case SerializationTag::kTrueObject: case SerializationTag::kFalseObject: case SerializationTag::kNumberObject: case SerializationTag::kStringObject: return ReadJSValue(tag); case SerializationTag::kRegExp: return ReadJSRegExp(); case SerializationTag::kBeginJSMap: return ReadJSMap(); case SerializationTag::kBeginJSSet: return ReadJSSet(); case SerializationTag::kArrayBuffer: return ReadJSArrayBuffer(); case SerializationTag::kArrayBufferTransfer: { const bool is_shared = false; return ReadTransferredJSArrayBuffer(is_shared); } case SerializationTag::kSharedArrayBuffer: { const bool is_shared = true; return ReadTransferredJSArrayBuffer(is_shared); } case SerializationTag::kWasmModule: return ReadWasmModule(); default: // TODO(jbroman): Introduce an explicit tag for host objects to avoid // having to treat every unknown tag as a potential host object. position_--; return ReadHostObject(); } } MaybeHandle ValueDeserializer::ReadUtf8String() { uint32_t utf8_length; Vector utf8_bytes; if (!ReadVarint().To(&utf8_length) || utf8_length > static_cast(std::numeric_limits::max()) || !ReadRawBytes(utf8_length).To(&utf8_bytes)) return MaybeHandle(); return isolate_->factory()->NewStringFromUtf8( Vector::cast(utf8_bytes), pretenure_); } MaybeHandle ValueDeserializer::ReadTwoByteString() { uint32_t byte_length; Vector bytes; if (!ReadVarint().To(&byte_length) || byte_length > static_cast(std::numeric_limits::max()) || byte_length % sizeof(uc16) != 0 || !ReadRawBytes(byte_length).To(&bytes)) return MaybeHandle(); // Allocate an uninitialized string so that we can do a raw memcpy into the // string on the heap (regardless of alignment). Handle string; if (!isolate_->factory() ->NewRawTwoByteString(byte_length / sizeof(uc16), pretenure_) .ToHandle(&string)) return MaybeHandle(); // Copy the bytes directly into the new string. // Warning: this uses host endianness. memcpy(string->GetChars(), bytes.begin(), bytes.length()); return string; } bool ValueDeserializer::ReadExpectedString(Handle expected) { // In the case of failure, the position in the stream is reset. const uint8_t* original_position = position_; SerializationTag tag; uint32_t byte_length; Vector bytes; if (!ReadTag().To(&tag) || !ReadVarint().To(&byte_length) || byte_length > static_cast(std::numeric_limits::max()) || !ReadRawBytes(byte_length).To(&bytes)) { position_ = original_position; return false; } expected = String::Flatten(expected); DisallowHeapAllocation no_gc; String::FlatContent flat = expected->GetFlatContent(); // If the bytes are verbatim what is in the flattened string, then the string // is successfully consumed. if (tag == SerializationTag::kUtf8String && flat.IsOneByte()) { Vector chars = flat.ToOneByteVector(); if (byte_length == static_cast(chars.length()) && String::IsAscii(chars.begin(), chars.length()) && memcmp(bytes.begin(), chars.begin(), byte_length) == 0) { return true; } } else if (tag == SerializationTag::kTwoByteString && flat.IsTwoByte()) { Vector chars = flat.ToUC16Vector(); if (byte_length == static_cast(chars.length()) * sizeof(uc16) && memcmp(bytes.begin(), chars.begin(), byte_length) == 0) { return true; } } position_ = original_position; return false; } MaybeHandle ValueDeserializer::ReadJSObject() { // If we are at the end of the stack, abort. This function may recurse. STACK_CHECK(isolate_, MaybeHandle()); uint32_t id = next_id_++; HandleScope scope(isolate_); Handle object = isolate_->factory()->NewJSObject(isolate_->object_function(), pretenure_); AddObjectWithID(id, object); uint32_t num_properties; uint32_t expected_num_properties; if (!ReadJSObjectProperties(object, SerializationTag::kEndJSObject, true) .To(&num_properties) || !ReadVarint().To(&expected_num_properties) || num_properties != expected_num_properties) { return MaybeHandle(); } DCHECK(HasObjectWithID(id)); return scope.CloseAndEscape(object); } MaybeHandle ValueDeserializer::ReadSparseJSArray() { // If we are at the end of the stack, abort. This function may recurse. STACK_CHECK(isolate_, MaybeHandle()); uint32_t length; if (!ReadVarint().To(&length)) return MaybeHandle(); uint32_t id = next_id_++; HandleScope scope(isolate_); Handle array = isolate_->factory()->NewJSArray( 0, TERMINAL_FAST_ELEMENTS_KIND, pretenure_); JSArray::SetLength(array, length); AddObjectWithID(id, array); uint32_t num_properties; uint32_t expected_num_properties; uint32_t expected_length; if (!ReadJSObjectProperties(array, SerializationTag::kEndSparseJSArray, false) .To(&num_properties) || !ReadVarint().To(&expected_num_properties) || !ReadVarint().To(&expected_length) || num_properties != expected_num_properties || length != expected_length) { return MaybeHandle(); } DCHECK(HasObjectWithID(id)); return scope.CloseAndEscape(array); } MaybeHandle ValueDeserializer::ReadDenseJSArray() { // If we are at the end of the stack, abort. This function may recurse. STACK_CHECK(isolate_, MaybeHandle()); // We shouldn't permit an array larger than the biggest we can request from // V8. As an additional sanity check, since each entry will take at least one // byte to encode, if there are fewer bytes than that we can also fail fast. uint32_t length; if (!ReadVarint().To(&length) || length > static_cast(FixedArray::kMaxLength) || length > static_cast(end_ - position_)) { return MaybeHandle(); } uint32_t id = next_id_++; HandleScope scope(isolate_); Handle array = isolate_->factory()->NewJSArray( FAST_HOLEY_ELEMENTS, length, length, INITIALIZE_ARRAY_ELEMENTS_WITH_HOLE, pretenure_); AddObjectWithID(id, array); Handle elements(FixedArray::cast(array->elements()), isolate_); for (uint32_t i = 0; i < length; i++) { Handle element; if (!ReadObject().ToHandle(&element)) return MaybeHandle(); // TODO(jbroman): Distinguish between undefined and a hole. if (element->IsUndefined(isolate_)) continue; elements->set(i, *element); } uint32_t num_properties; uint32_t expected_num_properties; uint32_t expected_length; if (!ReadJSObjectProperties(array, SerializationTag::kEndDenseJSArray, false) .To(&num_properties) || !ReadVarint().To(&expected_num_properties) || !ReadVarint().To(&expected_length) || num_properties != expected_num_properties || length != expected_length) { return MaybeHandle(); } DCHECK(HasObjectWithID(id)); return scope.CloseAndEscape(array); } MaybeHandle ValueDeserializer::ReadJSDate() { double value; if (!ReadDouble().To(&value)) return MaybeHandle(); uint32_t id = next_id_++; Handle date; if (!JSDate::New(isolate_->date_function(), isolate_->date_function(), value) .ToHandle(&date)) { return MaybeHandle(); } AddObjectWithID(id, date); return date; } MaybeHandle ValueDeserializer::ReadJSValue(SerializationTag tag) { uint32_t id = next_id_++; Handle value; switch (tag) { case SerializationTag::kTrueObject: value = Handle::cast(isolate_->factory()->NewJSObject( isolate_->boolean_function(), pretenure_)); value->set_value(isolate_->heap()->true_value()); break; case SerializationTag::kFalseObject: value = Handle::cast(isolate_->factory()->NewJSObject( isolate_->boolean_function(), pretenure_)); value->set_value(isolate_->heap()->false_value()); break; case SerializationTag::kNumberObject: { double number; if (!ReadDouble().To(&number)) return MaybeHandle(); value = Handle::cast(isolate_->factory()->NewJSObject( isolate_->number_function(), pretenure_)); Handle number_object = isolate_->factory()->NewNumber(number, pretenure_); value->set_value(*number_object); break; } case SerializationTag::kStringObject: { Handle string; if (!ReadUtf8String().ToHandle(&string)) return MaybeHandle(); value = Handle::cast(isolate_->factory()->NewJSObject( isolate_->string_function(), pretenure_)); value->set_value(*string); break; } default: UNREACHABLE(); return MaybeHandle(); } AddObjectWithID(id, value); return value; } MaybeHandle ValueDeserializer::ReadJSRegExp() { uint32_t id = next_id_++; Handle pattern; uint32_t raw_flags; Handle regexp; if (!ReadUtf8String().ToHandle(&pattern) || !ReadVarint().To(&raw_flags) || !JSRegExp::New(pattern, static_cast(raw_flags)) .ToHandle(®exp)) { return MaybeHandle(); } AddObjectWithID(id, regexp); return regexp; } MaybeHandle ValueDeserializer::ReadJSMap() { // If we are at the end of the stack, abort. This function may recurse. STACK_CHECK(isolate_, MaybeHandle()); HandleScope scope(isolate_); uint32_t id = next_id_++; Handle map = isolate_->factory()->NewJSMap(); AddObjectWithID(id, map); Handle map_set = isolate_->map_set(); uint32_t length = 0; while (true) { SerializationTag tag; if (!PeekTag().To(&tag)) return MaybeHandle(); if (tag == SerializationTag::kEndJSMap) { ConsumeTag(SerializationTag::kEndJSMap); break; } Handle argv[2]; if (!ReadObject().ToHandle(&argv[0]) || !ReadObject().ToHandle(&argv[1]) || Execution::Call(isolate_, map_set, map, arraysize(argv), argv) .is_null()) { return MaybeHandle(); } length += 2; } uint32_t expected_length; if (!ReadVarint().To(&expected_length) || length != expected_length) { return MaybeHandle(); } DCHECK(HasObjectWithID(id)); return scope.CloseAndEscape(map); } MaybeHandle ValueDeserializer::ReadJSSet() { // If we are at the end of the stack, abort. This function may recurse. STACK_CHECK(isolate_, MaybeHandle()); HandleScope scope(isolate_); uint32_t id = next_id_++; Handle set = isolate_->factory()->NewJSSet(); AddObjectWithID(id, set); Handle set_add = isolate_->set_add(); uint32_t length = 0; while (true) { SerializationTag tag; if (!PeekTag().To(&tag)) return MaybeHandle(); if (tag == SerializationTag::kEndJSSet) { ConsumeTag(SerializationTag::kEndJSSet); break; } Handle argv[1]; if (!ReadObject().ToHandle(&argv[0]) || Execution::Call(isolate_, set_add, set, arraysize(argv), argv) .is_null()) { return MaybeHandle(); } length++; } uint32_t expected_length; if (!ReadVarint().To(&expected_length) || length != expected_length) { return MaybeHandle(); } DCHECK(HasObjectWithID(id)); return scope.CloseAndEscape(set); } MaybeHandle ValueDeserializer::ReadJSArrayBuffer() { uint32_t id = next_id_++; uint32_t byte_length; Vector bytes; if (!ReadVarint().To(&byte_length) || byte_length > static_cast(end_ - position_)) { return MaybeHandle(); } const bool should_initialize = false; Handle array_buffer = isolate_->factory()->NewJSArrayBuffer(SharedFlag::kNotShared, pretenure_); JSArrayBuffer::SetupAllocatingData(array_buffer, isolate_, byte_length, should_initialize); memcpy(array_buffer->backing_store(), position_, byte_length); position_ += byte_length; AddObjectWithID(id, array_buffer); return array_buffer; } MaybeHandle ValueDeserializer::ReadTransferredJSArrayBuffer( bool is_shared) { uint32_t id = next_id_++; uint32_t transfer_id; Handle transfer_map; if (!ReadVarint().To(&transfer_id) || !array_buffer_transfer_map_.ToHandle(&transfer_map)) { return MaybeHandle(); } int index = transfer_map->FindEntry(isolate_, transfer_id); if (index == SeededNumberDictionary::kNotFound) { return MaybeHandle(); } Handle array_buffer( JSArrayBuffer::cast(transfer_map->ValueAt(index)), isolate_); DCHECK_EQ(is_shared, array_buffer->is_shared()); AddObjectWithID(id, array_buffer); return array_buffer; } MaybeHandle ValueDeserializer::ReadJSArrayBufferView( Handle buffer) { uint32_t buffer_byte_length = NumberToUint32(buffer->byte_length()); uint8_t tag = 0; uint32_t byte_offset = 0; uint32_t byte_length = 0; if (!ReadVarint().To(&tag) || !ReadVarint().To(&byte_offset) || !ReadVarint().To(&byte_length) || byte_offset > buffer_byte_length || byte_length > buffer_byte_length - byte_offset) { return MaybeHandle(); } uint32_t id = next_id_++; ExternalArrayType external_array_type = kExternalInt8Array; unsigned element_size = 0; switch (static_cast(tag)) { case ArrayBufferViewTag::kDataView: { Handle data_view = isolate_->factory()->NewJSDataView(buffer, byte_offset, byte_length); AddObjectWithID(id, data_view); return data_view; } #define TYPED_ARRAY_CASE(Type, type, TYPE, ctype, size) \ case ArrayBufferViewTag::k##Type##Array: \ external_array_type = kExternal##Type##Array; \ element_size = size; \ break; TYPED_ARRAYS(TYPED_ARRAY_CASE) #undef TYPED_ARRAY_CASE } if (element_size == 0 || byte_offset % element_size != 0 || byte_length % element_size != 0) { return MaybeHandle(); } Handle typed_array = isolate_->factory()->NewJSTypedArray( external_array_type, buffer, byte_offset, byte_length / element_size, pretenure_); AddObjectWithID(id, typed_array); return typed_array; } MaybeHandle ValueDeserializer::ReadWasmModule() { if (!FLAG_expose_wasm) return MaybeHandle(); Vector encoding_tag; if (!ReadRawBytes(sizeof(WasmEncodingTag)).To(&encoding_tag) || encoding_tag[0] != static_cast(WasmEncodingTag::kRawBytes)) { return MaybeHandle(); } // Extract the data from the buffer: wasm wire bytes, followed by V8 compiled // script data. static_assert(sizeof(int) <= sizeof(uint32_t), "max int must fit in uint32_t"); const uint32_t max_valid_size = std::numeric_limits::max(); uint32_t wire_bytes_length = 0; Vector wire_bytes; uint32_t compiled_bytes_length = 0; Vector compiled_bytes; if (!ReadVarint().To(&wire_bytes_length) || wire_bytes_length > max_valid_size || !ReadRawBytes(wire_bytes_length).To(&wire_bytes) || !ReadVarint().To(&compiled_bytes_length) || compiled_bytes_length > max_valid_size || !ReadRawBytes(compiled_bytes_length).To(&compiled_bytes)) { return MaybeHandle(); } // Try to deserialize the compiled module first. ScriptData script_data(compiled_bytes.start(), compiled_bytes.length()); Handle compiled_part; if (WasmCompiledModuleSerializer::DeserializeWasmModule( isolate_, &script_data, wire_bytes) .ToHandle(&compiled_part)) { return WasmModuleObject::New( isolate_, Handle::cast(compiled_part)); } // If that fails, recompile. wasm::ErrorThrower thrower(isolate_, "ValueDeserializer::ReadWasmModule"); return wasm::CreateModuleObjectFromBytes( isolate_, wire_bytes.begin(), wire_bytes.end(), &thrower, wasm::ModuleOrigin::kWasmOrigin, Handle