2016-08-12 14:49:09 +00:00
|
|
|
// 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"
|
2016-08-15 01:00:16 +00:00
|
|
|
|
2016-08-15 15:26:39 +00:00
|
|
|
#include <algorithm>
|
|
|
|
#include <string>
|
|
|
|
|
2016-08-12 14:49:09 +00:00
|
|
|
#include "include/v8.h"
|
|
|
|
#include "src/api.h"
|
2016-08-15 01:00:16 +00:00
|
|
|
#include "src/base/build_config.h"
|
2017-01-09 13:43:28 +00:00
|
|
|
#include "src/objects-inl.h"
|
2017-10-18 23:58:37 +00:00
|
|
|
#include "src/wasm/wasm-objects.h"
|
2016-08-12 14:49:09 +00:00
|
|
|
#include "test/unittests/test-utils.h"
|
2016-09-14 16:41:35 +00:00
|
|
|
#include "testing/gmock/include/gmock/gmock.h"
|
2016-08-12 14:49:09 +00:00
|
|
|
#include "testing/gtest/include/gtest/gtest.h"
|
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace {
|
|
|
|
|
2016-09-14 16:41:35 +00:00
|
|
|
using ::testing::_;
|
|
|
|
using ::testing::Invoke;
|
2017-01-03 22:52:17 +00:00
|
|
|
using ::testing::Return;
|
2016-09-14 16:41:35 +00:00
|
|
|
|
2016-08-12 14:49:09 +00:00
|
|
|
class ValueSerializerTest : public TestWithIsolate {
|
|
|
|
protected:
|
|
|
|
ValueSerializerTest()
|
|
|
|
: serialization_context_(Context::New(isolate())),
|
2016-09-14 16:41:35 +00:00
|
|
|
deserialization_context_(Context::New(isolate())) {
|
|
|
|
// Create a host object type that can be tested through
|
|
|
|
// serialization/deserialization delegates below.
|
|
|
|
Local<FunctionTemplate> function_template = v8::FunctionTemplate::New(
|
|
|
|
isolate(), [](const FunctionCallbackInfo<Value>& args) {
|
|
|
|
args.Holder()->SetInternalField(0, args[0]);
|
|
|
|
args.Holder()->SetInternalField(1, args[1]);
|
|
|
|
});
|
|
|
|
function_template->InstanceTemplate()->SetInternalFieldCount(2);
|
|
|
|
function_template->InstanceTemplate()->SetAccessor(
|
|
|
|
StringFromUtf8("value"),
|
|
|
|
[](Local<String> property, const PropertyCallbackInfo<Value>& args) {
|
|
|
|
args.GetReturnValue().Set(args.Holder()->GetInternalField(0));
|
|
|
|
});
|
|
|
|
function_template->InstanceTemplate()->SetAccessor(
|
|
|
|
StringFromUtf8("value2"),
|
|
|
|
[](Local<String> property, const PropertyCallbackInfo<Value>& args) {
|
|
|
|
args.GetReturnValue().Set(args.Holder()->GetInternalField(1));
|
|
|
|
});
|
|
|
|
for (Local<Context> context :
|
|
|
|
{serialization_context_, deserialization_context_}) {
|
|
|
|
context->Global()
|
|
|
|
->CreateDataProperty(
|
|
|
|
context, StringFromUtf8("ExampleHostObject"),
|
|
|
|
function_template->GetFunction(context).ToLocalChecked())
|
|
|
|
.ToChecked();
|
|
|
|
}
|
|
|
|
host_object_constructor_template_ = function_template;
|
2017-01-20 10:49:06 +00:00
|
|
|
isolate_ = reinterpret_cast<i::Isolate*>(isolate());
|
|
|
|
}
|
|
|
|
|
|
|
|
~ValueSerializerTest() {
|
|
|
|
// In some cases unhandled scheduled exceptions from current test produce
|
|
|
|
// that Context::New(isolate()) from next test's constructor returns NULL.
|
|
|
|
// In order to prevent that, we added destructor which will clear scheduled
|
|
|
|
// exceptions just for the current test from test case.
|
|
|
|
if (isolate_->has_scheduled_exception()) {
|
|
|
|
isolate_->clear_scheduled_exception();
|
|
|
|
}
|
2016-09-14 16:41:35 +00:00
|
|
|
}
|
2016-08-12 14:49:09 +00:00
|
|
|
|
|
|
|
const Local<Context>& serialization_context() {
|
|
|
|
return serialization_context_;
|
|
|
|
}
|
|
|
|
const Local<Context>& deserialization_context() {
|
|
|
|
return deserialization_context_;
|
|
|
|
}
|
|
|
|
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
bool ExpectInlineWasm() const { return expect_inline_wasm_; }
|
|
|
|
void SetExpectInlineWasm(bool value) { expect_inline_wasm_ = value; }
|
|
|
|
|
2016-08-26 15:47:15 +00:00
|
|
|
// Overridden in more specific fixtures.
|
2016-09-14 16:41:35 +00:00
|
|
|
virtual ValueSerializer::Delegate* GetSerializerDelegate() { return nullptr; }
|
2016-08-26 15:47:15 +00:00
|
|
|
virtual void BeforeEncode(ValueSerializer*) {}
|
2016-09-14 16:41:35 +00:00
|
|
|
virtual ValueDeserializer::Delegate* GetDeserializerDelegate() {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2016-08-26 15:47:15 +00:00
|
|
|
virtual void BeforeDecode(ValueDeserializer*) {}
|
|
|
|
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> RoundTripTest(Local<Value> input_value) {
|
|
|
|
std::vector<uint8_t> encoded = EncodeTest(input_value);
|
|
|
|
return DecodeTest(encoded);
|
2016-08-15 15:26:39 +00:00
|
|
|
}
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// Variant for the common case where a script is used to build the original
|
|
|
|
// value.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> RoundTripTest(const char* source) {
|
|
|
|
return RoundTripTest(EvaluateScriptForInput(source));
|
2016-08-17 14:26:37 +00:00
|
|
|
}
|
|
|
|
|
2016-09-14 19:10:01 +00:00
|
|
|
// Variant which uses JSON.parse/stringify to check the result.
|
|
|
|
void RoundTripJSON(const char* source) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> input_value =
|
|
|
|
JSON::Parse(serialization_context_, StringFromUtf8(source))
|
|
|
|
.ToLocalChecked();
|
|
|
|
Local<Value> result = RoundTripTest(input_value);
|
|
|
|
ASSERT_TRUE(result->IsObject());
|
|
|
|
EXPECT_EQ(source, Utf8Value(JSON::Stringify(deserialization_context_,
|
|
|
|
result.As<Object>())
|
|
|
|
.ToLocalChecked()));
|
2016-09-14 19:10:01 +00:00
|
|
|
}
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
Maybe<std::vector<uint8_t>> DoEncode(Local<Value> value) {
|
2016-08-25 15:59:44 +00:00
|
|
|
Local<Context> context = serialization_context();
|
2016-09-14 16:41:35 +00:00
|
|
|
ValueSerializer serializer(isolate(), GetSerializerDelegate());
|
2016-08-26 15:47:15 +00:00
|
|
|
BeforeEncode(&serializer);
|
2016-08-17 14:26:37 +00:00
|
|
|
serializer.WriteHeader();
|
2016-08-25 15:59:44 +00:00
|
|
|
if (!serializer.WriteValue(context, value).FromMaybe(false)) {
|
|
|
|
return Nothing<std::vector<uint8_t>>();
|
2016-08-17 14:26:37 +00:00
|
|
|
}
|
2016-11-12 21:49:30 +00:00
|
|
|
std::pair<uint8_t*, size_t> buffer = serializer.Release();
|
|
|
|
std::vector<uint8_t> result(buffer.first, buffer.first + buffer.second);
|
|
|
|
free(buffer.first);
|
|
|
|
return Just(std::move(result));
|
2016-08-17 14:26:37 +00:00
|
|
|
}
|
|
|
|
|
2018-02-27 01:27:12 +00:00
|
|
|
std::vector<uint8_t> EncodeTest(Local<Value> input_value) {
|
2016-08-15 15:26:39 +00:00
|
|
|
Context::Scope scope(serialization_context());
|
|
|
|
TryCatch try_catch(isolate());
|
2016-08-17 14:26:37 +00:00
|
|
|
std::vector<uint8_t> buffer;
|
2018-02-27 01:27:12 +00:00
|
|
|
// Ideally we would use GTest's ASSERT_* macros here and below. However,
|
|
|
|
// those only work in functions returning {void}, and they only terminate
|
|
|
|
// the current function, but not the entire current test (so we would need
|
|
|
|
// additional manual checks whether it is okay to proceed). Given that our
|
|
|
|
// test driver starts a new process for each test anyway, it is acceptable
|
|
|
|
// to just use a CHECK (which would kill the process on failure) instead.
|
|
|
|
CHECK(DoEncode(input_value).To(&buffer));
|
|
|
|
CHECK(!try_catch.HasCaught());
|
|
|
|
return buffer;
|
2016-08-17 14:26:37 +00:00
|
|
|
}
|
|
|
|
|
2018-02-27 01:27:12 +00:00
|
|
|
v8::Local<v8::Message> InvalidEncodeTest(Local<Value> input_value) {
|
2016-08-17 14:26:37 +00:00
|
|
|
Context::Scope scope(serialization_context());
|
|
|
|
TryCatch try_catch(isolate());
|
2018-02-27 01:27:12 +00:00
|
|
|
CHECK(DoEncode(input_value).IsNothing());
|
|
|
|
return try_catch.Message();
|
2016-08-12 14:49:09 +00:00
|
|
|
}
|
|
|
|
|
2018-02-27 01:27:12 +00:00
|
|
|
v8::Local<v8::Message> InvalidEncodeTest(const char* source) {
|
|
|
|
return InvalidEncodeTest(EvaluateScriptForInput(source));
|
2017-01-03 22:52:17 +00:00
|
|
|
}
|
|
|
|
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> DecodeTest(const std::vector<uint8_t>& data) {
|
2016-08-25 15:59:44 +00:00
|
|
|
Local<Context> context = deserialization_context();
|
|
|
|
Context::Scope scope(context);
|
2016-08-12 14:49:09 +00:00
|
|
|
TryCatch try_catch(isolate());
|
2016-08-25 15:59:44 +00:00
|
|
|
ValueDeserializer deserializer(isolate(), &data[0],
|
2016-09-14 16:41:35 +00:00
|
|
|
static_cast<int>(data.size()),
|
|
|
|
GetDeserializerDelegate());
|
2016-08-25 15:59:44 +00:00
|
|
|
deserializer.SetSupportsLegacyWireFormat(true);
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
deserializer.SetExpectInlineWasm(ExpectInlineWasm());
|
2016-08-26 15:47:15 +00:00
|
|
|
BeforeDecode(&deserializer);
|
2018-02-27 01:27:12 +00:00
|
|
|
CHECK(deserializer.ReadHeader(context).FromMaybe(false));
|
2016-08-12 14:49:09 +00:00
|
|
|
Local<Value> result;
|
2018-02-27 01:27:12 +00:00
|
|
|
CHECK(deserializer.ReadValue(context).ToLocal(&result));
|
|
|
|
CHECK(!result.IsEmpty());
|
|
|
|
CHECK(!try_catch.HasCaught());
|
|
|
|
CHECK(context->Global()
|
|
|
|
->CreateDataProperty(context, StringFromUtf8("result"), result)
|
|
|
|
.FromMaybe(false));
|
|
|
|
CHECK(!try_catch.HasCaught());
|
|
|
|
return result;
|
2016-08-12 14:49:09 +00:00
|
|
|
}
|
|
|
|
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> DecodeTestForVersion0(const std::vector<uint8_t>& data) {
|
2016-08-25 15:59:44 +00:00
|
|
|
Local<Context> context = deserialization_context();
|
|
|
|
Context::Scope scope(context);
|
2016-08-17 16:05:57 +00:00
|
|
|
TryCatch try_catch(isolate());
|
2016-08-25 15:59:44 +00:00
|
|
|
ValueDeserializer deserializer(isolate(), &data[0],
|
2016-09-14 16:41:35 +00:00
|
|
|
static_cast<int>(data.size()),
|
|
|
|
GetDeserializerDelegate());
|
2016-08-25 15:59:44 +00:00
|
|
|
deserializer.SetSupportsLegacyWireFormat(true);
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
deserializer.SetExpectInlineWasm(ExpectInlineWasm());
|
2016-08-26 15:47:15 +00:00
|
|
|
BeforeDecode(&deserializer);
|
2018-02-27 01:27:12 +00:00
|
|
|
CHECK(deserializer.ReadHeader(context).FromMaybe(false));
|
|
|
|
CHECK_EQ(0u, deserializer.GetWireFormatVersion());
|
2016-08-17 16:05:57 +00:00
|
|
|
Local<Value> result;
|
2018-02-27 01:27:12 +00:00
|
|
|
CHECK(deserializer.ReadValue(context).ToLocal(&result));
|
|
|
|
CHECK(!result.IsEmpty());
|
|
|
|
CHECK(!try_catch.HasCaught());
|
|
|
|
CHECK(context->Global()
|
|
|
|
->CreateDataProperty(context, StringFromUtf8("result"), result)
|
|
|
|
.FromMaybe(false));
|
|
|
|
CHECK(!try_catch.HasCaught());
|
|
|
|
return result;
|
2016-08-17 16:05:57 +00:00
|
|
|
}
|
|
|
|
|
2016-08-12 14:49:09 +00:00
|
|
|
void InvalidDecodeTest(const std::vector<uint8_t>& data) {
|
2016-08-25 15:59:44 +00:00
|
|
|
Local<Context> context = deserialization_context();
|
|
|
|
Context::Scope scope(context);
|
2016-08-12 14:49:09 +00:00
|
|
|
TryCatch try_catch(isolate());
|
2016-08-25 15:59:44 +00:00
|
|
|
ValueDeserializer deserializer(isolate(), &data[0],
|
2016-09-14 16:41:35 +00:00
|
|
|
static_cast<int>(data.size()),
|
|
|
|
GetDeserializerDelegate());
|
2016-08-25 15:59:44 +00:00
|
|
|
deserializer.SetSupportsLegacyWireFormat(true);
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
deserializer.SetExpectInlineWasm(ExpectInlineWasm());
|
2016-08-26 15:47:15 +00:00
|
|
|
BeforeDecode(&deserializer);
|
2016-09-06 03:24:35 +00:00
|
|
|
Maybe<bool> header_result = deserializer.ReadHeader(context);
|
|
|
|
if (header_result.IsNothing()) {
|
|
|
|
EXPECT_TRUE(try_catch.HasCaught());
|
|
|
|
return;
|
|
|
|
}
|
2018-02-27 01:27:12 +00:00
|
|
|
CHECK(header_result.ToChecked());
|
|
|
|
CHECK(deserializer.ReadValue(context).IsEmpty());
|
2016-09-06 03:24:35 +00:00
|
|
|
EXPECT_TRUE(try_catch.HasCaught());
|
2016-08-12 14:49:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Local<Value> EvaluateScriptForInput(const char* utf8_source) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Context::Scope scope(serialization_context_);
|
2016-08-12 14:49:09 +00:00
|
|
|
Local<String> source = StringFromUtf8(utf8_source);
|
|
|
|
Local<Script> script =
|
|
|
|
Script::Compile(serialization_context_, source).ToLocalChecked();
|
|
|
|
return script->Run(serialization_context_).ToLocalChecked();
|
|
|
|
}
|
|
|
|
|
2018-02-27 01:27:12 +00:00
|
|
|
void ExpectScriptTrue(const char* utf8_source) {
|
|
|
|
Context::Scope scope(deserialization_context_);
|
2016-08-12 14:49:09 +00:00
|
|
|
Local<String> source = StringFromUtf8(utf8_source);
|
|
|
|
Local<Script> script =
|
|
|
|
Script::Compile(deserialization_context_, source).ToLocalChecked();
|
|
|
|
Local<Value> value = script->Run(deserialization_context_).ToLocalChecked();
|
2018-02-27 01:27:12 +00:00
|
|
|
EXPECT_TRUE(value->BooleanValue(deserialization_context_).FromJust());
|
2016-08-12 14:49:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Local<String> StringFromUtf8(const char* source) {
|
|
|
|
return String::NewFromUtf8(isolate(), source, NewStringType::kNormal)
|
|
|
|
.ToLocalChecked();
|
|
|
|
}
|
|
|
|
|
2017-08-29 00:17:03 +00:00
|
|
|
std::string Utf8Value(Local<Value> value) {
|
|
|
|
String::Utf8Value utf8(isolate(), value);
|
2016-08-15 15:26:39 +00:00
|
|
|
return std::string(*utf8, utf8.length());
|
|
|
|
}
|
|
|
|
|
2016-09-14 16:41:35 +00:00
|
|
|
Local<Object> NewHostObject(Local<Context> context, int argc,
|
|
|
|
Local<Value> argv[]) {
|
|
|
|
return host_object_constructor_template_->GetFunction(context)
|
|
|
|
.ToLocalChecked()
|
|
|
|
->NewInstance(context, argc, argv)
|
|
|
|
.ToLocalChecked();
|
|
|
|
}
|
|
|
|
|
2017-02-17 14:19:39 +00:00
|
|
|
Local<Object> NewDummyUint8Array() {
|
|
|
|
static uint8_t data[] = {4, 5, 6};
|
|
|
|
Local<ArrayBuffer> ab =
|
|
|
|
ArrayBuffer::New(isolate(), static_cast<void*>(data), sizeof(data));
|
|
|
|
return Uint8Array::New(ab, 0, sizeof(data));
|
|
|
|
}
|
|
|
|
|
2016-08-12 14:49:09 +00:00
|
|
|
private:
|
|
|
|
Local<Context> serialization_context_;
|
|
|
|
Local<Context> deserialization_context_;
|
2016-09-14 16:41:35 +00:00
|
|
|
Local<FunctionTemplate> host_object_constructor_template_;
|
2017-01-20 10:49:06 +00:00
|
|
|
i::Isolate* isolate_;
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
bool expect_inline_wasm_ = false;
|
2016-08-12 14:49:09 +00:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(ValueSerializerTest);
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeInvalid) {
|
|
|
|
// Version tag but no content.
|
2017-12-02 00:30:37 +00:00
|
|
|
InvalidDecodeTest({0xFF});
|
2016-08-12 14:49:09 +00:00
|
|
|
// Version too large.
|
2017-12-02 00:30:37 +00:00
|
|
|
InvalidDecodeTest({0xFF, 0x7F, 0x5F});
|
2016-08-12 14:49:09 +00:00
|
|
|
// Nonsense tag.
|
2017-12-02 00:30:37 +00:00
|
|
|
InvalidDecodeTest({0xFF, 0x09, 0xDD});
|
2016-08-12 14:49:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, RoundTripOddball) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest(Undefined(isolate()));
|
|
|
|
EXPECT_TRUE(value->IsUndefined());
|
|
|
|
value = RoundTripTest(True(isolate()));
|
|
|
|
EXPECT_TRUE(value->IsTrue());
|
|
|
|
value = RoundTripTest(False(isolate()));
|
|
|
|
EXPECT_TRUE(value->IsFalse());
|
|
|
|
value = RoundTripTest(Null(isolate()));
|
|
|
|
EXPECT_TRUE(value->IsNull());
|
2016-08-12 14:49:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeOddball) {
|
|
|
|
// What this code is expected to generate.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = DecodeTest({0xFF, 0x09, 0x5F});
|
|
|
|
EXPECT_TRUE(value->IsUndefined());
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x54});
|
|
|
|
EXPECT_TRUE(value->IsTrue());
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x46});
|
|
|
|
EXPECT_TRUE(value->IsFalse());
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x30});
|
|
|
|
EXPECT_TRUE(value->IsNull());
|
2016-08-12 14:49:09 +00:00
|
|
|
|
|
|
|
// What v9 of the Blink code generates.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x5F, 0x00});
|
|
|
|
EXPECT_TRUE(value->IsUndefined());
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x54, 0x00});
|
|
|
|
EXPECT_TRUE(value->IsTrue());
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x46, 0x00});
|
|
|
|
EXPECT_TRUE(value->IsFalse());
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x30, 0x00});
|
|
|
|
EXPECT_TRUE(value->IsNull());
|
2016-08-12 14:49:09 +00:00
|
|
|
|
|
|
|
// v0 (with no explicit version).
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0x5F, 0x00});
|
|
|
|
EXPECT_TRUE(value->IsUndefined());
|
|
|
|
value = DecodeTest({0x54, 0x00});
|
|
|
|
EXPECT_TRUE(value->IsTrue());
|
|
|
|
value = DecodeTest({0x46, 0x00});
|
|
|
|
EXPECT_TRUE(value->IsFalse());
|
|
|
|
value = DecodeTest({0x30, 0x00});
|
|
|
|
EXPECT_TRUE(value->IsNull());
|
2016-08-12 14:49:09 +00:00
|
|
|
}
|
|
|
|
|
2016-08-15 01:00:16 +00:00
|
|
|
TEST_F(ValueSerializerTest, RoundTripNumber) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest(Integer::New(isolate(), 42));
|
|
|
|
ASSERT_TRUE(value->IsInt32());
|
|
|
|
EXPECT_EQ(42, Int32::Cast(*value)->Value());
|
|
|
|
|
|
|
|
value = RoundTripTest(Integer::New(isolate(), -31337));
|
|
|
|
ASSERT_TRUE(value->IsInt32());
|
|
|
|
EXPECT_EQ(-31337, Int32::Cast(*value)->Value());
|
|
|
|
|
|
|
|
value = RoundTripTest(
|
|
|
|
Integer::New(isolate(), std::numeric_limits<int32_t>::min()));
|
|
|
|
ASSERT_TRUE(value->IsInt32());
|
|
|
|
EXPECT_EQ(std::numeric_limits<int32_t>::min(), Int32::Cast(*value)->Value());
|
|
|
|
|
|
|
|
value = RoundTripTest(Number::New(isolate(), -0.25));
|
|
|
|
ASSERT_TRUE(value->IsNumber());
|
|
|
|
EXPECT_EQ(-0.25, Number::Cast(*value)->Value());
|
|
|
|
|
|
|
|
value = RoundTripTest(
|
|
|
|
Number::New(isolate(), std::numeric_limits<double>::quiet_NaN()));
|
|
|
|
ASSERT_TRUE(value->IsNumber());
|
|
|
|
EXPECT_TRUE(std::isnan(Number::Cast(*value)->Value()));
|
2016-08-15 01:00:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeNumber) {
|
|
|
|
// 42 zig-zag encoded (signed)
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = DecodeTest({0xFF, 0x09, 0x49, 0x54});
|
|
|
|
ASSERT_TRUE(value->IsInt32());
|
|
|
|
EXPECT_EQ(42, Int32::Cast(*value)->Value());
|
|
|
|
|
2016-08-15 01:00:16 +00:00
|
|
|
// 42 varint encoded (unsigned)
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x55, 0x2A});
|
|
|
|
ASSERT_TRUE(value->IsInt32());
|
|
|
|
EXPECT_EQ(42, Int32::Cast(*value)->Value());
|
|
|
|
|
2016-08-15 01:00:16 +00:00
|
|
|
// 160 zig-zag encoded (signed)
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x49, 0xC0, 0x02});
|
|
|
|
ASSERT_TRUE(value->IsInt32());
|
|
|
|
ASSERT_EQ(160, Int32::Cast(*value)->Value());
|
|
|
|
|
2016-08-15 01:00:16 +00:00
|
|
|
// 160 varint encoded (unsigned)
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x55, 0xA0, 0x01});
|
|
|
|
ASSERT_TRUE(value->IsInt32());
|
|
|
|
ASSERT_EQ(160, Int32::Cast(*value)->Value());
|
|
|
|
|
2016-08-15 01:00:16 +00:00
|
|
|
#if defined(V8_TARGET_LITTLE_ENDIAN)
|
|
|
|
// IEEE 754 doubles, little-endian byte order
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest(
|
|
|
|
{0xFF, 0x09, 0x4E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xD0, 0xBF});
|
|
|
|
ASSERT_TRUE(value->IsNumber());
|
|
|
|
EXPECT_EQ(-0.25, Number::Cast(*value)->Value());
|
|
|
|
|
2016-08-15 01:00:16 +00:00
|
|
|
// quiet NaN
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest(
|
|
|
|
{0xFF, 0x09, 0x4E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF8, 0x7F});
|
|
|
|
ASSERT_TRUE(value->IsNumber());
|
|
|
|
EXPECT_TRUE(std::isnan(Number::Cast(*value)->Value()));
|
|
|
|
|
2016-08-15 01:00:16 +00:00
|
|
|
// signaling NaN
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest(
|
|
|
|
{0xFF, 0x09, 0x4E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xF4, 0x7F});
|
|
|
|
ASSERT_TRUE(value->IsNumber());
|
|
|
|
EXPECT_TRUE(std::isnan(Number::Cast(*value)->Value()));
|
2016-08-15 01:00:16 +00:00
|
|
|
#endif
|
|
|
|
// TODO(jbroman): Equivalent test for big-endian machines.
|
|
|
|
}
|
|
|
|
|
2018-03-08 07:00:51 +00:00
|
|
|
TEST_F(ValueSerializerTest, RoundTripBigInt) {
|
|
|
|
Local<Value> value = RoundTripTest(BigInt::New(isolate(), -42));
|
|
|
|
ASSERT_TRUE(value->IsBigInt());
|
|
|
|
ExpectScriptTrue("result === -42n");
|
|
|
|
|
|
|
|
value = RoundTripTest(BigInt::New(isolate(), 42));
|
|
|
|
ExpectScriptTrue("result === 42n");
|
|
|
|
|
|
|
|
value = RoundTripTest(BigInt::New(isolate(), 0));
|
|
|
|
ExpectScriptTrue("result === 0n");
|
|
|
|
|
|
|
|
value = RoundTripTest("0x1234567890abcdef777888999n");
|
|
|
|
ExpectScriptTrue("result === 0x1234567890abcdef777888999n");
|
|
|
|
|
|
|
|
value = RoundTripTest("-0x1234567890abcdef777888999123n");
|
|
|
|
ExpectScriptTrue("result === -0x1234567890abcdef777888999123n");
|
|
|
|
|
|
|
|
Context::Scope scope(serialization_context());
|
|
|
|
value = RoundTripTest(BigIntObject::New(isolate(), 23));
|
|
|
|
ASSERT_TRUE(value->IsBigIntObject());
|
|
|
|
ExpectScriptTrue("result == 23n");
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeBigInt) {
|
|
|
|
Local<Value> value = DecodeTest({
|
|
|
|
0xFF, 0x0D, // Version 13
|
|
|
|
0x5A, // BigInt
|
|
|
|
0x08, // Bitfield: sign = false, bytelength = 4
|
|
|
|
0x2A, 0x00, 0x00, 0x00, // Digit: 42
|
|
|
|
});
|
|
|
|
ASSERT_TRUE(value->IsBigInt());
|
|
|
|
ExpectScriptTrue("result === 42n");
|
|
|
|
|
|
|
|
value = DecodeTest({
|
|
|
|
0xFF, 0x0D, // Version 13
|
|
|
|
0x7A, // BigIntObject
|
|
|
|
0x11, // Bitfield: sign = true, bytelength = 8
|
|
|
|
0x2A, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 // Digit: 42
|
|
|
|
});
|
|
|
|
ASSERT_TRUE(value->IsBigIntObject());
|
|
|
|
ExpectScriptTrue("result == -42n");
|
|
|
|
|
|
|
|
value = DecodeTest({
|
|
|
|
0xFF, 0x0D, // Version 13
|
|
|
|
0x5A, // BigInt
|
|
|
|
0x10, // Bitfield: sign = false, bytelength = 8
|
|
|
|
0xEF, 0xCD, 0xAB, 0x90, 0x78, 0x56, 0x34, 0x12 // Digit(s).
|
|
|
|
});
|
|
|
|
ExpectScriptTrue("result === 0x1234567890abcdefn");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x0D, // Version 13
|
|
|
|
0x5A, // BigInt
|
|
|
|
0x17, // Bitfield: sign = true, bytelength = 11
|
|
|
|
0xEF, 0xCD, 0xAB, 0x90, // Digits.
|
|
|
|
0x78, 0x56, 0x34, 0x12, 0x33, 0x44, 0x55});
|
|
|
|
ExpectScriptTrue("result === -0x5544331234567890abcdefn");
|
|
|
|
|
|
|
|
value = DecodeTest({
|
|
|
|
0xFF, 0x0D, // Version 13
|
|
|
|
0x5A, // BigInt
|
|
|
|
0x02, // Bitfield: sign = false, bytelength = 1
|
|
|
|
0x2A, // Digit: 42
|
|
|
|
});
|
|
|
|
ExpectScriptTrue("result === 42n");
|
|
|
|
}
|
|
|
|
|
2016-08-15 15:26:39 +00:00
|
|
|
// String constants (in UTF-8) used for string encoding tests.
|
|
|
|
static const char kHelloString[] = "Hello";
|
|
|
|
static const char kQuebecString[] = "\x51\x75\xC3\xA9\x62\x65\x63";
|
|
|
|
static const char kEmojiString[] = "\xF0\x9F\x91\x8A";
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, RoundTripString) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest(String::Empty(isolate()));
|
|
|
|
ASSERT_TRUE(value->IsString());
|
|
|
|
EXPECT_EQ(0, String::Cast(*value)->Length());
|
|
|
|
|
2016-08-15 15:26:39 +00:00
|
|
|
// Inside ASCII.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(StringFromUtf8(kHelloString));
|
|
|
|
ASSERT_TRUE(value->IsString());
|
|
|
|
EXPECT_EQ(5, String::Cast(*value)->Length());
|
|
|
|
EXPECT_EQ(kHelloString, Utf8Value(value));
|
|
|
|
|
2016-08-15 15:26:39 +00:00
|
|
|
// Inside Latin-1 (i.e. one-byte string), but not ASCII.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(StringFromUtf8(kQuebecString));
|
|
|
|
ASSERT_TRUE(value->IsString());
|
|
|
|
EXPECT_EQ(6, String::Cast(*value)->Length());
|
|
|
|
EXPECT_EQ(kQuebecString, Utf8Value(value));
|
|
|
|
|
2016-08-15 15:26:39 +00:00
|
|
|
// An emoji (decodes to two 16-bit chars).
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(StringFromUtf8(kEmojiString));
|
|
|
|
ASSERT_TRUE(value->IsString());
|
|
|
|
EXPECT_EQ(2, String::Cast(*value)->Length());
|
|
|
|
EXPECT_EQ(kEmojiString, Utf8Value(value));
|
2016-08-15 15:26:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeString) {
|
|
|
|
// Decoding the strings above from UTF-8.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = DecodeTest({0xFF, 0x09, 0x53, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsString());
|
|
|
|
EXPECT_EQ(0, String::Cast(*value)->Length());
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x53, 0x05, 'H', 'e', 'l', 'l', 'o'});
|
|
|
|
ASSERT_TRUE(value->IsString());
|
|
|
|
EXPECT_EQ(5, String::Cast(*value)->Length());
|
|
|
|
EXPECT_EQ(kHelloString, Utf8Value(value));
|
|
|
|
|
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x53, 0x07, 'Q', 'u', 0xC3, 0xA9, 'b', 'e', 'c'});
|
|
|
|
ASSERT_TRUE(value->IsString());
|
|
|
|
EXPECT_EQ(6, String::Cast(*value)->Length());
|
|
|
|
EXPECT_EQ(kQuebecString, Utf8Value(value));
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x53, 0x04, 0xF0, 0x9F, 0x91, 0x8A});
|
|
|
|
ASSERT_TRUE(value->IsString());
|
|
|
|
EXPECT_EQ(2, String::Cast(*value)->Length());
|
|
|
|
EXPECT_EQ(kEmojiString, Utf8Value(value));
|
2016-08-15 15:26:39 +00:00
|
|
|
|
2017-01-28 05:52:05 +00:00
|
|
|
// And from Latin-1 (for the ones that fit).
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x0A, 0x22, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsString());
|
|
|
|
EXPECT_EQ(0, String::Cast(*value)->Length());
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x0A, 0x22, 0x05, 'H', 'e', 'l', 'l', 'o'});
|
|
|
|
ASSERT_TRUE(value->IsString());
|
|
|
|
EXPECT_EQ(5, String::Cast(*value)->Length());
|
|
|
|
EXPECT_EQ(kHelloString, Utf8Value(value));
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x0A, 0x22, 0x06, 'Q', 'u', 0xE9, 'b', 'e', 'c'});
|
|
|
|
ASSERT_TRUE(value->IsString());
|
|
|
|
EXPECT_EQ(6, String::Cast(*value)->Length());
|
|
|
|
EXPECT_EQ(kQuebecString, Utf8Value(value));
|
2017-01-28 05:52:05 +00:00
|
|
|
|
2016-08-15 15:26:39 +00:00
|
|
|
// And from two-byte strings (endianness dependent).
|
|
|
|
#if defined(V8_TARGET_LITTLE_ENDIAN)
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x63, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsString());
|
|
|
|
EXPECT_EQ(0, String::Cast(*value)->Length());
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x63, 0x0A, 'H', '\0', 'e', '\0', 'l', '\0',
|
|
|
|
'l', '\0', 'o', '\0'});
|
|
|
|
ASSERT_TRUE(value->IsString());
|
|
|
|
EXPECT_EQ(5, String::Cast(*value)->Length());
|
|
|
|
EXPECT_EQ(kHelloString, Utf8Value(value));
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x63, 0x0C, 'Q', '\0', 'u', '\0', 0xE9, '\0',
|
|
|
|
'b', '\0', 'e', '\0', 'c', '\0'});
|
|
|
|
ASSERT_TRUE(value->IsString());
|
|
|
|
EXPECT_EQ(6, String::Cast(*value)->Length());
|
|
|
|
EXPECT_EQ(kQuebecString, Utf8Value(value));
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x63, 0x04, 0x3D, 0xD8, 0x4A, 0xDC});
|
|
|
|
ASSERT_TRUE(value->IsString());
|
|
|
|
EXPECT_EQ(2, String::Cast(*value)->Length());
|
|
|
|
EXPECT_EQ(kEmojiString, Utf8Value(value));
|
2016-08-15 15:26:39 +00:00
|
|
|
#endif
|
|
|
|
// TODO(jbroman): The same for big-endian systems.
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeInvalidString) {
|
|
|
|
// UTF-8 string with too few bytes available.
|
2017-12-02 00:30:37 +00:00
|
|
|
InvalidDecodeTest({0xFF, 0x09, 0x53, 0x10, 'v', '8'});
|
2017-01-28 05:52:05 +00:00
|
|
|
// One-byte string with too few bytes available.
|
2017-12-02 00:30:37 +00:00
|
|
|
InvalidDecodeTest({0xFF, 0x0A, 0x22, 0x10, 'v', '8'});
|
2016-08-15 15:26:39 +00:00
|
|
|
#if defined(V8_TARGET_LITTLE_ENDIAN)
|
|
|
|
// Two-byte string with too few bytes available.
|
2017-12-02 00:30:37 +00:00
|
|
|
InvalidDecodeTest({0xFF, 0x09, 0x63, 0x10, 'v', '\0', '8', '\0'});
|
2016-08-15 15:26:39 +00:00
|
|
|
// Two-byte string with an odd byte length.
|
2017-12-02 00:30:37 +00:00
|
|
|
InvalidDecodeTest({0xFF, 0x09, 0x63, 0x03, 'v', '\0', '8'});
|
2016-08-15 15:26:39 +00:00
|
|
|
#endif
|
|
|
|
// TODO(jbroman): The same for big-endian systems.
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, EncodeTwoByteStringUsesPadding) {
|
|
|
|
// As long as the output has a version that Blink expects to be able to read,
|
|
|
|
// we must respect its alignment requirements. It requires that two-byte
|
|
|
|
// characters be aligned.
|
2018-02-27 01:27:12 +00:00
|
|
|
// We need a string whose length will take two bytes to encode, so that
|
|
|
|
// a padding byte is needed to keep the characters aligned. The string
|
|
|
|
// must also have a two-byte character, so that it gets the two-byte
|
|
|
|
// encoding.
|
|
|
|
std::string string(200, ' ');
|
|
|
|
string += kEmojiString;
|
|
|
|
const std::vector<uint8_t> data = EncodeTest(StringFromUtf8(string.c_str()));
|
|
|
|
// This is a sufficient but not necessary condition. This test assumes
|
|
|
|
// that the wire format version is one byte long, but is flexible to
|
|
|
|
// what that value may be.
|
|
|
|
const uint8_t expected_prefix[] = {0x00, 0x63, 0x94, 0x03};
|
|
|
|
ASSERT_GT(data.size(), sizeof(expected_prefix) + 2);
|
|
|
|
EXPECT_EQ(0xFF, data[0]);
|
|
|
|
EXPECT_GE(data[1], 0x09);
|
|
|
|
EXPECT_LE(data[1], 0x7F);
|
|
|
|
EXPECT_TRUE(std::equal(std::begin(expected_prefix), std::end(expected_prefix),
|
|
|
|
data.begin() + 2));
|
2016-08-15 15:26:39 +00:00
|
|
|
}
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
TEST_F(ValueSerializerTest, RoundTripDictionaryObject) {
|
|
|
|
// Empty object.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest("({})");
|
|
|
|
ASSERT_TRUE(value->IsObject());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Object.prototype");
|
|
|
|
ExpectScriptTrue("Object.getOwnPropertyNames(result).length === 0");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// String key.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("({ a: 42 })");
|
|
|
|
ASSERT_TRUE(value->IsObject());
|
|
|
|
ExpectScriptTrue("result.hasOwnProperty('a')");
|
|
|
|
ExpectScriptTrue("result.a === 42");
|
|
|
|
ExpectScriptTrue("Object.getOwnPropertyNames(result).length === 1");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// Integer key (treated as a string, but may be encoded differently).
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("({ 42: 'a' })");
|
|
|
|
ASSERT_TRUE(value->IsObject());
|
|
|
|
ExpectScriptTrue("result.hasOwnProperty('42')");
|
|
|
|
ExpectScriptTrue("result[42] === 'a'");
|
|
|
|
ExpectScriptTrue("Object.getOwnPropertyNames(result).length === 1");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// Key order must be preserved.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("({ x: 1, y: 2, a: 3 })");
|
|
|
|
ExpectScriptTrue("Object.getOwnPropertyNames(result).toString() === 'x,y,a'");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// A harder case of enumeration order.
|
|
|
|
// Indexes first, in order (but not 2^32 - 1, which is not an index), then the
|
|
|
|
// remaining (string) keys, in the order they were defined.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("({ a: 2, 0xFFFFFFFF: 1, 0xFFFFFFFE: 3, 1: 0 })");
|
|
|
|
ExpectScriptTrue(
|
|
|
|
"Object.getOwnPropertyNames(result).toString() === "
|
|
|
|
"'1,4294967294,a,4294967295'");
|
|
|
|
ExpectScriptTrue("result.a === 2");
|
|
|
|
ExpectScriptTrue("result[0xFFFFFFFF] === 1");
|
|
|
|
ExpectScriptTrue("result[0xFFFFFFFE] === 3");
|
|
|
|
ExpectScriptTrue("result[1] === 0");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// This detects a fairly subtle case: the object itself must be in the map
|
|
|
|
// before its properties are deserialized, so that references to it can be
|
|
|
|
// resolved.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("var y = {}; y.self = y; y;");
|
|
|
|
ASSERT_TRUE(value->IsObject());
|
|
|
|
ExpectScriptTrue("result === result.self");
|
2016-08-17 14:26:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeDictionaryObject) {
|
|
|
|
// Empty object.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x6F, 0x7B, 0x00, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsObject());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Object.prototype");
|
|
|
|
ExpectScriptTrue("Object.getOwnPropertyNames(result).length === 0");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// String key.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x6F, 0x3F, 0x01, 0x53, 0x01,
|
|
|
|
0x61, 0x3F, 0x01, 0x49, 0x54, 0x7B, 0x01});
|
|
|
|
ASSERT_TRUE(value->IsObject());
|
|
|
|
ExpectScriptTrue("result.hasOwnProperty('a')");
|
|
|
|
ExpectScriptTrue("result.a === 42");
|
|
|
|
ExpectScriptTrue("Object.getOwnPropertyNames(result).length === 1");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// Integer key (treated as a string, but may be encoded differently).
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x6F, 0x3F, 0x01, 0x49, 0x54,
|
|
|
|
0x3F, 0x01, 0x53, 0x01, 0x61, 0x7B, 0x01});
|
|
|
|
ASSERT_TRUE(value->IsObject());
|
|
|
|
ExpectScriptTrue("result.hasOwnProperty('42')");
|
|
|
|
ExpectScriptTrue("result[42] === 'a'");
|
|
|
|
ExpectScriptTrue("Object.getOwnPropertyNames(result).length === 1");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// Key order must be preserved.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x6F, 0x3F, 0x01, 0x53, 0x01,
|
|
|
|
0x78, 0x3F, 0x01, 0x49, 0x02, 0x3F, 0x01, 0x53, 0x01,
|
|
|
|
0x79, 0x3F, 0x01, 0x49, 0x04, 0x3F, 0x01, 0x53, 0x01,
|
|
|
|
0x61, 0x3F, 0x01, 0x49, 0x06, 0x7B, 0x03});
|
|
|
|
ExpectScriptTrue("Object.getOwnPropertyNames(result).toString() === 'x,y,a'");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// A harder case of enumeration order.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x6F, 0x3F, 0x01, 0x49, 0x02,
|
|
|
|
0x3F, 0x01, 0x49, 0x00, 0x3F, 0x01, 0x55, 0xFE, 0xFF,
|
|
|
|
0xFF, 0xFF, 0x0F, 0x3F, 0x01, 0x49, 0x06, 0x3F, 0x01,
|
|
|
|
0x53, 0x01, 0x61, 0x3F, 0x01, 0x49, 0x04, 0x3F, 0x01,
|
|
|
|
0x53, 0x0A, 0x34, 0x32, 0x39, 0x34, 0x39, 0x36, 0x37,
|
|
|
|
0x32, 0x39, 0x35, 0x3F, 0x01, 0x49, 0x02, 0x7B, 0x04});
|
|
|
|
ExpectScriptTrue(
|
|
|
|
"Object.getOwnPropertyNames(result).toString() === "
|
|
|
|
"'1,4294967294,a,4294967295'");
|
|
|
|
ExpectScriptTrue("result.a === 2");
|
|
|
|
ExpectScriptTrue("result[0xFFFFFFFF] === 1");
|
|
|
|
ExpectScriptTrue("result[0xFFFFFFFE] === 3");
|
|
|
|
ExpectScriptTrue("result[1] === 0");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// This detects a fairly subtle case: the object itself must be in the map
|
|
|
|
// before its properties are deserialized, so that references to it can be
|
|
|
|
// resolved.
|
2018-02-27 01:27:12 +00:00
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x6F, 0x3F, 0x01, 0x53, 0x04, 0x73,
|
|
|
|
0x65, 0x6C, 0x66, 0x3F, 0x01, 0x5E, 0x00, 0x7B, 0x01, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsObject());
|
|
|
|
ExpectScriptTrue("result === result.self");
|
2016-08-17 14:26:37 +00:00
|
|
|
}
|
|
|
|
|
2017-02-16 13:59:56 +00:00
|
|
|
TEST_F(ValueSerializerTest, InvalidDecodeObjectWithInvalidKeyType) {
|
|
|
|
// Objects which would need conversion to string shouldn't be present as
|
|
|
|
// object keys. The serializer would have obtained them from the own property
|
|
|
|
// keys list, which should only contain names and indices.
|
|
|
|
InvalidDecodeTest(
|
2017-12-02 00:30:37 +00:00
|
|
|
{0xFF, 0x09, 0x6F, 0x61, 0x00, 0x40, 0x00, 0x00, 0x7B, 0x01});
|
2017-02-16 13:59:56 +00:00
|
|
|
}
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
TEST_F(ValueSerializerTest, RoundTripOnlyOwnEnumerableStringKeys) {
|
|
|
|
// Only "own" properties should be serialized, not ones on the prototype.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest("var x = {}; x.__proto__ = {a: 4}; x;");
|
|
|
|
ExpectScriptTrue("!('a' in result)");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// Only enumerable properties should be serialized.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(
|
|
|
|
"var x = {};"
|
|
|
|
"Object.defineProperty(x, 'a', {value: 1, enumerable: false});"
|
|
|
|
"x;");
|
|
|
|
ExpectScriptTrue("!('a' in result)");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// Symbol keys should not be serialized.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("({ [Symbol()]: 4 })");
|
|
|
|
ExpectScriptTrue("Object.getOwnPropertySymbols(result).length === 0");
|
2016-08-17 14:26:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, RoundTripTrickyGetters) {
|
|
|
|
// Keys are enumerated before any setters are called, but if there is no own
|
|
|
|
// property when the value is to be read, then it should not be serialized.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value =
|
|
|
|
RoundTripTest("({ get a() { delete this.b; return 1; }, b: 2 })");
|
|
|
|
ExpectScriptTrue("!('b' in result)");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// Keys added after the property enumeration should not be serialized.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("({ get a() { this.b = 3; }})");
|
|
|
|
ExpectScriptTrue("!('b' in result)");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// But if you remove a key and add it back, that's fine. But it will appear in
|
|
|
|
// the original place in enumeration order.
|
2018-02-27 01:27:12 +00:00
|
|
|
value =
|
|
|
|
RoundTripTest("({ get a() { delete this.b; this.b = 4; }, b: 2, c: 3 })");
|
|
|
|
ExpectScriptTrue("Object.getOwnPropertyNames(result).toString() === 'a,b,c'");
|
|
|
|
ExpectScriptTrue("result.b === 4");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// Similarly, it only matters if a property was enumerable when the
|
|
|
|
// enumeration happened.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(
|
2016-08-17 14:26:37 +00:00
|
|
|
"({ get a() {"
|
|
|
|
" Object.defineProperty(this, 'b', {value: 2, enumerable: false});"
|
2018-02-27 01:27:12 +00:00
|
|
|
"}, b: 1})");
|
|
|
|
ExpectScriptTrue("result.b === 2");
|
|
|
|
|
|
|
|
value = RoundTripTest(
|
|
|
|
"var x = {"
|
|
|
|
" get a() {"
|
|
|
|
" Object.defineProperty(this, 'b', {value: 2, enumerable: true});"
|
|
|
|
" }"
|
|
|
|
"};"
|
|
|
|
"Object.defineProperty(x, 'b',"
|
|
|
|
" {value: 1, enumerable: false, configurable: true});"
|
|
|
|
"x;");
|
|
|
|
ExpectScriptTrue("!('b' in result)");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// The property also should not be read if it can only be found on the
|
|
|
|
// prototype chain (but not as an own property) after enumeration.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(
|
|
|
|
"var x = { get a() { delete this.b; }, b: 1 };"
|
|
|
|
"x.__proto__ = { b: 0 };"
|
|
|
|
"x;");
|
|
|
|
ExpectScriptTrue("!('b' in result)");
|
|
|
|
|
2016-08-17 14:26:37 +00:00
|
|
|
// If an exception is thrown by script, encoding must fail and the exception
|
|
|
|
// must be thrown.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Message> message =
|
|
|
|
InvalidEncodeTest("({ get a() { throw new Error('sentinel'); } })");
|
|
|
|
ASSERT_FALSE(message.IsEmpty());
|
|
|
|
EXPECT_NE(std::string::npos, Utf8Value(message->Get()).find("sentinel"));
|
2016-08-17 14:26:37 +00:00
|
|
|
}
|
|
|
|
|
2016-09-14 19:10:01 +00:00
|
|
|
TEST_F(ValueSerializerTest, RoundTripDictionaryObjectForTransitions) {
|
|
|
|
// A case which should run on the fast path, and should reach all of the
|
|
|
|
// different cases:
|
|
|
|
// 1. no known transition (first time creating this kind of object)
|
|
|
|
// 2. expected transitions match to end
|
|
|
|
// 3. transition partially matches, but falls back due to new property 'w'
|
|
|
|
// 4. transition to 'z' is now a full transition (needs to be looked up)
|
|
|
|
// 5. same for 'w'
|
|
|
|
// 6. new property after complex transition succeeded
|
|
|
|
// 7. new property after complex transition failed (due to new property)
|
|
|
|
RoundTripJSON(
|
|
|
|
"[{\"x\":1,\"y\":2,\"z\":3}"
|
|
|
|
",{\"x\":4,\"y\":5,\"z\":6}"
|
|
|
|
",{\"x\":5,\"y\":6,\"w\":7}"
|
|
|
|
",{\"x\":6,\"y\":7,\"z\":8}"
|
|
|
|
",{\"x\":0,\"y\":0,\"w\":0}"
|
|
|
|
",{\"x\":3,\"y\":1,\"w\":4,\"z\":1}"
|
|
|
|
",{\"x\":5,\"y\":9,\"k\":2,\"z\":6}]");
|
|
|
|
// A simpler case that uses two-byte strings.
|
|
|
|
RoundTripJSON(
|
|
|
|
"[{\"\xF0\x9F\x91\x8A\":1,\"\xF0\x9F\x91\x8B\":2}"
|
|
|
|
",{\"\xF0\x9F\x91\x8A\":3,\"\xF0\x9F\x91\x8C\":4}"
|
|
|
|
",{\"\xF0\x9F\x91\x8A\":5,\"\xF0\x9F\x91\x9B\":6}]");
|
|
|
|
}
|
|
|
|
|
2016-08-17 16:05:57 +00:00
|
|
|
TEST_F(ValueSerializerTest, DecodeDictionaryObjectVersion0) {
|
|
|
|
// Empty object.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = DecodeTestForVersion0({0x7B, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsObject());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Object.prototype");
|
|
|
|
ExpectScriptTrue("Object.getOwnPropertyNames(result).length === 0");
|
|
|
|
|
2016-08-17 16:05:57 +00:00
|
|
|
// String key.
|
2018-02-27 01:27:12 +00:00
|
|
|
value =
|
|
|
|
DecodeTestForVersion0({0x53, 0x01, 0x61, 0x49, 0x54, 0x7B, 0x01, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsObject());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Object.prototype");
|
|
|
|
ExpectScriptTrue("result.hasOwnProperty('a')");
|
|
|
|
ExpectScriptTrue("result.a === 42");
|
|
|
|
ExpectScriptTrue("Object.getOwnPropertyNames(result).length === 1");
|
|
|
|
|
2016-08-17 16:05:57 +00:00
|
|
|
// Integer key (treated as a string, but may be encoded differently).
|
2018-02-27 01:27:12 +00:00
|
|
|
value =
|
|
|
|
DecodeTestForVersion0({0x49, 0x54, 0x53, 0x01, 0x61, 0x7B, 0x01, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsObject());
|
|
|
|
ExpectScriptTrue("result.hasOwnProperty('42')");
|
|
|
|
ExpectScriptTrue("result[42] === 'a'");
|
|
|
|
ExpectScriptTrue("Object.getOwnPropertyNames(result).length === 1");
|
|
|
|
|
2016-08-17 16:05:57 +00:00
|
|
|
// Key order must be preserved.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTestForVersion0({0x53, 0x01, 0x78, 0x49, 0x02, 0x53, 0x01, 0x79,
|
|
|
|
0x49, 0x04, 0x53, 0x01, 0x61, 0x49, 0x06, 0x7B,
|
|
|
|
0x03, 0x00});
|
|
|
|
ExpectScriptTrue("Object.getOwnPropertyNames(result).toString() === 'x,y,a'");
|
|
|
|
|
2016-08-17 16:05:57 +00:00
|
|
|
// A property and an element.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTestForVersion0(
|
|
|
|
{0x49, 0x54, 0x53, 0x01, 0x61, 0x53, 0x01, 0x61, 0x49, 0x54, 0x7B, 0x02});
|
|
|
|
ExpectScriptTrue("Object.getOwnPropertyNames(result).toString() === '42,a'");
|
|
|
|
ExpectScriptTrue("result[42] === 'a'");
|
|
|
|
ExpectScriptTrue("result.a === 42");
|
2016-08-17 16:05:57 +00:00
|
|
|
}
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
TEST_F(ValueSerializerTest, RoundTripArray) {
|
|
|
|
// A simple array of integers.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest("[1, 2, 3, 4, 5]");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
EXPECT_EQ(5u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Array.prototype");
|
|
|
|
ExpectScriptTrue("result.toString() === '1,2,3,4,5'");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// A long (sparse) array.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("var x = new Array(1000); x[500] = 42; x;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
EXPECT_EQ(1000u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result[500] === 42");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Duplicate reference.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("var y = {}; [y, y];");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(2u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result[0] === result[1]");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Duplicate reference in a sparse array.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("var x = new Array(1000); x[1] = x[500] = {}; x;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(1000u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("typeof result[1] === 'object'");
|
|
|
|
ExpectScriptTrue("result[1] === result[500]");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Self reference.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("var y = []; y[0] = y; y;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(1u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result[0] === result");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Self reference in a sparse array.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("var y = new Array(1000); y[519] = y; y;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(1000u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result[519] === result");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Array with additional properties.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("var y = [1, 2]; y.foo = 'bar'; y;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(2u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result.toString() === '1,2'");
|
|
|
|
ExpectScriptTrue("result.foo === 'bar'");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Sparse array with additional properties.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("var y = new Array(1000); y.foo = 'bar'; y;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(1000u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result.toString() === ','.repeat(999)");
|
|
|
|
ExpectScriptTrue("result.foo === 'bar'");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// The distinction between holes and undefined elements must be maintained.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("[,undefined]");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(2u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("typeof result[0] === 'undefined'");
|
|
|
|
ExpectScriptTrue("typeof result[1] === 'undefined'");
|
|
|
|
ExpectScriptTrue("!result.hasOwnProperty(0)");
|
|
|
|
ExpectScriptTrue("result.hasOwnProperty(1)");
|
2016-08-18 22:30:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeArray) {
|
|
|
|
// A simple array of integers.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x41, 0x05, 0x3F, 0x01, 0x49, 0x02,
|
|
|
|
0x3F, 0x01, 0x49, 0x04, 0x3F, 0x01, 0x49, 0x06, 0x3F, 0x01,
|
|
|
|
0x49, 0x08, 0x3F, 0x01, 0x49, 0x0A, 0x24, 0x00, 0x05, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
EXPECT_EQ(5u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Array.prototype");
|
|
|
|
ExpectScriptTrue("result.toString() === '1,2,3,4,5'");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// A long (sparse) array.
|
2018-02-27 01:27:12 +00:00
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x61, 0xE8, 0x07, 0x3F, 0x01, 0x49,
|
|
|
|
0xE8, 0x07, 0x3F, 0x01, 0x49, 0x54, 0x40, 0x01, 0xE8, 0x07});
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
EXPECT_EQ(1000u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result[500] === 42");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Duplicate reference.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x41, 0x02, 0x3F, 0x01, 0x6F,
|
|
|
|
0x7B, 0x00, 0x3F, 0x02, 0x5E, 0x01, 0x24, 0x00, 0x02});
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(2u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result[0] === result[1]");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Duplicate reference in a sparse array.
|
2018-02-27 01:27:12 +00:00
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x61, 0xE8, 0x07, 0x3F, 0x01, 0x49,
|
|
|
|
0x02, 0x3F, 0x01, 0x6F, 0x7B, 0x00, 0x3F, 0x02, 0x49, 0xE8,
|
|
|
|
0x07, 0x3F, 0x02, 0x5E, 0x01, 0x40, 0x02, 0xE8, 0x07, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(1000u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("typeof result[1] === 'object'");
|
|
|
|
ExpectScriptTrue("result[1] === result[500]");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Self reference.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x41, 0x01, 0x3F, 0x01, 0x5E,
|
|
|
|
0x00, 0x24, 0x00, 0x01, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(1u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result[0] === result");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Self reference in a sparse array.
|
2018-02-27 01:27:12 +00:00
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x61, 0xE8, 0x07, 0x3F, 0x01, 0x49,
|
|
|
|
0x8E, 0x08, 0x3F, 0x01, 0x5E, 0x00, 0x40, 0x01, 0xE8, 0x07});
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(1000u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result[519] === result");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Array with additional properties.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x41, 0x02, 0x3F, 0x01,
|
|
|
|
0x49, 0x02, 0x3F, 0x01, 0x49, 0x04, 0x3F, 0x01,
|
|
|
|
0x53, 0x03, 0x66, 0x6F, 0x6F, 0x3F, 0x01, 0x53,
|
|
|
|
0x03, 0x62, 0x61, 0x72, 0x24, 0x01, 0x02, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(2u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result.toString() === '1,2'");
|
|
|
|
ExpectScriptTrue("result.foo === 'bar'");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Sparse array with additional properties.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x61, 0xE8, 0x07, 0x3F, 0x01,
|
|
|
|
0x53, 0x03, 0x66, 0x6F, 0x6F, 0x3F, 0x01, 0x53, 0x03,
|
|
|
|
0x62, 0x61, 0x72, 0x40, 0x01, 0xE8, 0x07, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(1000u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result.toString() === ','.repeat(999)");
|
|
|
|
ExpectScriptTrue("result.foo === 'bar'");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// The distinction between holes and undefined elements must be maintained.
|
|
|
|
// Note that since the previous output from Chrome fails this test, an
|
|
|
|
// encoding using the sparse format was constructed instead.
|
2018-02-27 01:27:12 +00:00
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x61, 0x02, 0x49, 0x02, 0x5F, 0x40, 0x01, 0x02});
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(2u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("typeof result[0] === 'undefined'");
|
|
|
|
ExpectScriptTrue("typeof result[1] === 'undefined'");
|
|
|
|
ExpectScriptTrue("!result.hasOwnProperty(0)");
|
|
|
|
ExpectScriptTrue("result.hasOwnProperty(1)");
|
2016-08-18 22:30:26 +00:00
|
|
|
}
|
|
|
|
|
2016-10-07 17:53:09 +00:00
|
|
|
TEST_F(ValueSerializerTest, DecodeInvalidOverLargeArray) {
|
|
|
|
// So large it couldn't exist in the V8 heap, and its size couldn't fit in a
|
|
|
|
// SMI on 32-bit systems (2^30).
|
2017-12-02 00:30:37 +00:00
|
|
|
InvalidDecodeTest({0xFF, 0x09, 0x41, 0x80, 0x80, 0x80, 0x80, 0x04});
|
2016-10-07 17:53:09 +00:00
|
|
|
// Not so large, but there isn't enough data left in the buffer.
|
2017-12-02 00:30:37 +00:00
|
|
|
InvalidDecodeTest({0xFF, 0x09, 0x41, 0x01});
|
2016-10-07 17:53:09 +00:00
|
|
|
}
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
TEST_F(ValueSerializerTest, RoundTripArrayWithNonEnumerableElement) {
|
|
|
|
// Even though this array looks like [1,5,3], the 5 should be missing from the
|
|
|
|
// perspective of structured clone, which only clones properties that were
|
|
|
|
// enumerable.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest(
|
|
|
|
"var x = [1,2,3];"
|
|
|
|
"Object.defineProperty(x, '1', {enumerable:false, value:5});"
|
|
|
|
"x;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(3u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("!result.hasOwnProperty('1')");
|
2016-08-18 22:30:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, RoundTripArrayWithTrickyGetters) {
|
|
|
|
// If an element is deleted before it is serialized, then it's deleted.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value =
|
|
|
|
RoundTripTest("var x = [{ get a() { delete x[1]; }}, 42]; x;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(2u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("typeof result[1] === 'undefined'");
|
|
|
|
ExpectScriptTrue("!result.hasOwnProperty(1)");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Same for sparse arrays.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(
|
|
|
|
"var x = [{ get a() { delete x[1]; }}, 42];"
|
|
|
|
"x.length = 1000;"
|
|
|
|
"x;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(1000u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("typeof result[1] === 'undefined'");
|
|
|
|
ExpectScriptTrue("!result.hasOwnProperty(1)");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// If the length is changed, then the resulting array still has the original
|
|
|
|
// length, but elements that were not yet serialized are gone.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("var x = [1, { get a() { x.length = 0; }}, 3, 4]; x;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(4u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result[0] === 1");
|
|
|
|
ExpectScriptTrue("!result.hasOwnProperty(2)");
|
|
|
|
|
2016-09-07 15:23:00 +00:00
|
|
|
// The same is true if the length is shortened, but there are still items
|
|
|
|
// remaining.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("var x = [1, { get a() { x.length = 3; }}, 3, 4]; x;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(4u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result[2] === 3");
|
|
|
|
ExpectScriptTrue("!result.hasOwnProperty(3)");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Same for sparse arrays.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(
|
|
|
|
"var x = [1, { get a() { x.length = 0; }}, 3, 4];"
|
|
|
|
"x.length = 1000;"
|
|
|
|
"x;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(1000u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result[0] === 1");
|
|
|
|
ExpectScriptTrue("!result.hasOwnProperty(2)");
|
|
|
|
|
|
|
|
value = RoundTripTest(
|
|
|
|
"var x = [1, { get a() { x.length = 3; }}, 3, 4];"
|
|
|
|
"x.length = 1000;"
|
|
|
|
"x;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(1000u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result[2] === 3");
|
|
|
|
ExpectScriptTrue("!result.hasOwnProperty(3)");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// If a getter makes a property non-enumerable, it should still be enumerated
|
|
|
|
// as enumeration happens once before getters are invoked.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(
|
|
|
|
"var x = [{ get a() {"
|
|
|
|
" Object.defineProperty(x, '1', { value: 3, enumerable: false });"
|
|
|
|
"}}, 2];"
|
|
|
|
"x;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(2u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result[1] === 3");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Same for sparse arrays.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(
|
|
|
|
"var x = [{ get a() {"
|
|
|
|
" Object.defineProperty(x, '1', { value: 3, enumerable: false });"
|
|
|
|
"}}, 2];"
|
|
|
|
"x.length = 1000;"
|
|
|
|
"x;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(1000u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result[1] === 3");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Getters on the array itself must also run.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(
|
|
|
|
"var x = [1, 2, 3];"
|
|
|
|
"Object.defineProperty(x, '1', { enumerable: true, get: () => 4 });"
|
|
|
|
"x;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(3u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result[1] === 4");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Same for sparse arrays.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(
|
|
|
|
"var x = [1, 2, 3];"
|
|
|
|
"Object.defineProperty(x, '1', { enumerable: true, get: () => 4 });"
|
|
|
|
"x.length = 1000;"
|
|
|
|
"x;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(1000u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result[1] === 4");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Even with a getter that deletes things, we don't read from the prototype.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(
|
|
|
|
"var x = [{ get a() { delete x[1]; } }, 2];"
|
|
|
|
"x.__proto__ = Object.create(Array.prototype, { 1: { value: 6 } });"
|
|
|
|
"x;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(2u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("!(1 in result)");
|
|
|
|
|
2016-08-18 22:30:26 +00:00
|
|
|
// Same for sparse arrays.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(
|
|
|
|
"var x = [{ get a() { delete x[1]; } }, 2];"
|
|
|
|
"x.__proto__ = Object.create(Array.prototype, { 1: { value: 6 } });"
|
|
|
|
"x.length = 1000;"
|
|
|
|
"x;");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(1000u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("!(1 in result)");
|
2016-08-18 22:30:26 +00:00
|
|
|
}
|
|
|
|
|
2016-08-19 13:39:50 +00:00
|
|
|
TEST_F(ValueSerializerTest, DecodeSparseArrayVersion0) {
|
|
|
|
// Empty (sparse) array.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = DecodeTestForVersion0({0x40, 0x00, 0x00, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
ASSERT_EQ(0u, Array::Cast(*value)->Length());
|
|
|
|
|
2016-08-19 13:39:50 +00:00
|
|
|
// Sparse array with a mixture of elements and properties.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTestForVersion0({0x55, 0x00, 0x53, 0x01, 'a', 0x55, 0x02, 0x55,
|
|
|
|
0x05, 0x53, 0x03, 'f', 'o', 'o', 0x53, 0x03,
|
|
|
|
'b', 'a', 'r', 0x53, 0x03, 'b', 'a', 'z',
|
|
|
|
0x49, 0x0B, 0x40, 0x04, 0x03, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
EXPECT_EQ(3u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result.toString() === 'a,,5'");
|
|
|
|
ExpectScriptTrue("!(1 in result)");
|
|
|
|
ExpectScriptTrue("result.foo === 'bar'");
|
|
|
|
ExpectScriptTrue("result.baz === -6");
|
|
|
|
|
2016-08-19 13:39:50 +00:00
|
|
|
// Sparse array in a sparse array (sanity check of nesting).
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTestForVersion0(
|
|
|
|
{0x55, 0x01, 0x55, 0x01, 0x54, 0x40, 0x01, 0x02, 0x40, 0x01, 0x02, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
EXPECT_EQ(2u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("!(0 in result)");
|
|
|
|
ExpectScriptTrue("result[1] instanceof Array");
|
|
|
|
ExpectScriptTrue("!(0 in result[1])");
|
|
|
|
ExpectScriptTrue("result[1][1] === true");
|
2016-08-19 13:39:50 +00:00
|
|
|
}
|
|
|
|
|
2017-01-31 01:54:26 +00:00
|
|
|
TEST_F(ValueSerializerTest, RoundTripDenseArrayContainingUndefined) {
|
|
|
|
// In previous serialization versions, this would be interpreted as an absent
|
|
|
|
// property.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest("[undefined]");
|
|
|
|
ASSERT_TRUE(value->IsArray());
|
|
|
|
EXPECT_EQ(1u, Array::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("result.hasOwnProperty(0)");
|
|
|
|
ExpectScriptTrue("result[0] === undefined");
|
2017-01-31 01:54:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeDenseArrayContainingUndefined) {
|
|
|
|
// In previous versions, "undefined" in a dense array signified absence of the
|
|
|
|
// element (for compatibility). In new versions, it has a separate encoding.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x41, 0x01, 0x5F, 0x24, 0x00, 0x01});
|
|
|
|
ExpectScriptTrue("!(0 in result)");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x0B, 0x41, 0x01, 0x5F, 0x24, 0x00, 0x01});
|
|
|
|
ExpectScriptTrue("0 in result");
|
|
|
|
ExpectScriptTrue("result[0] === undefined");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x0B, 0x41, 0x01, 0x2D, 0x24, 0x00, 0x01});
|
|
|
|
ExpectScriptTrue("!(0 in result)");
|
2017-01-31 01:54:26 +00:00
|
|
|
}
|
|
|
|
|
2016-08-22 17:14:36 +00:00
|
|
|
TEST_F(ValueSerializerTest, RoundTripDate) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest("new Date(1e6)");
|
|
|
|
ASSERT_TRUE(value->IsDate());
|
|
|
|
EXPECT_EQ(1e6, Date::Cast(*value)->ValueOf());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Date.prototype");
|
|
|
|
|
|
|
|
value = RoundTripTest("new Date(Date.UTC(1867, 6, 1))");
|
|
|
|
ASSERT_TRUE(value->IsDate());
|
|
|
|
ExpectScriptTrue("result.toISOString() === '1867-07-01T00:00:00.000Z'");
|
|
|
|
|
|
|
|
value = RoundTripTest("new Date(NaN)");
|
|
|
|
ASSERT_TRUE(value->IsDate());
|
|
|
|
EXPECT_TRUE(std::isnan(Date::Cast(*value)->ValueOf()));
|
|
|
|
|
|
|
|
value = RoundTripTest("({ a: new Date(), get b() { return this.a; } })");
|
|
|
|
ExpectScriptTrue("result.a instanceof Date");
|
|
|
|
ExpectScriptTrue("result.a === result.b");
|
2016-08-22 17:14:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeDate) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value;
|
2016-08-25 14:11:00 +00:00
|
|
|
#if defined(V8_TARGET_LITTLE_ENDIAN)
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x80, 0x84, 0x2E, 0x41, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsDate());
|
|
|
|
EXPECT_EQ(1e6, Date::Cast(*value)->ValueOf());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Date.prototype");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x44, 0x00, 0x00, 0x20, 0x45,
|
|
|
|
0x27, 0x89, 0x87, 0xC2, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsDate());
|
|
|
|
ExpectScriptTrue("result.toISOString() === '1867-07-01T00:00:00.000Z'");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x44, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0xF8, 0x7F, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsDate());
|
|
|
|
EXPECT_TRUE(std::isnan(Date::Cast(*value)->ValueOf()));
|
2016-08-25 14:11:00 +00:00
|
|
|
#else
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x44, 0x41, 0x2E, 0x84, 0x80,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsDate());
|
|
|
|
EXPECT_EQ(1e6, Date::Cast(*value)->ValueOf());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Date.prototype");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x44, 0xC2, 0x87, 0x89, 0x27,
|
|
|
|
0x45, 0x20, 0x00, 0x00, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsDate());
|
|
|
|
ExpectScriptTrue("result.toISOString() === '1867-07-01T00:00:00.000Z'");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x44, 0x7F, 0xF8, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsDate());
|
|
|
|
EXPECT_TRUE(std::isnan(Date::Cast(*value)->ValueOf()));
|
2016-08-25 14:11:00 +00:00
|
|
|
#endif
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x6F, 0x3F, 0x01, 0x53,
|
|
|
|
0x01, 0x61, 0x3F, 0x01, 0x44, 0x00, 0x20, 0x39,
|
|
|
|
0x50, 0x37, 0x6A, 0x75, 0x42, 0x3F, 0x02, 0x53,
|
|
|
|
0x01, 0x62, 0x3F, 0x02, 0x5E, 0x01, 0x7B, 0x02});
|
|
|
|
ExpectScriptTrue("result.a instanceof Date");
|
|
|
|
ExpectScriptTrue("result.a === result.b");
|
2016-08-22 17:14:36 +00:00
|
|
|
}
|
|
|
|
|
2016-08-23 14:32:43 +00:00
|
|
|
TEST_F(ValueSerializerTest, RoundTripValueObjects) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest("new Boolean(true)");
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Boolean.prototype");
|
|
|
|
ExpectScriptTrue("result.valueOf() === true");
|
|
|
|
|
|
|
|
value = RoundTripTest("new Boolean(false)");
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Boolean.prototype");
|
|
|
|
ExpectScriptTrue("result.valueOf() === false");
|
|
|
|
|
|
|
|
value =
|
|
|
|
RoundTripTest("({ a: new Boolean(true), get b() { return this.a; }})");
|
|
|
|
ExpectScriptTrue("result.a instanceof Boolean");
|
|
|
|
ExpectScriptTrue("result.a === result.b");
|
|
|
|
|
|
|
|
value = RoundTripTest("new Number(-42)");
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Number.prototype");
|
|
|
|
ExpectScriptTrue("result.valueOf() === -42");
|
|
|
|
|
|
|
|
value = RoundTripTest("new Number(NaN)");
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Number.prototype");
|
|
|
|
ExpectScriptTrue("Number.isNaN(result.valueOf())");
|
|
|
|
|
|
|
|
value = RoundTripTest("({ a: new Number(6), get b() { return this.a; }})");
|
|
|
|
ExpectScriptTrue("result.a instanceof Number");
|
|
|
|
ExpectScriptTrue("result.a === result.b");
|
|
|
|
|
|
|
|
value = RoundTripTest("new String('Qu\\xe9bec')");
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === String.prototype");
|
|
|
|
ExpectScriptTrue("result.valueOf() === 'Qu\\xe9bec'");
|
|
|
|
ExpectScriptTrue("result.length === 6");
|
|
|
|
|
|
|
|
value = RoundTripTest("new String('\\ud83d\\udc4a')");
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === String.prototype");
|
|
|
|
ExpectScriptTrue("result.valueOf() === '\\ud83d\\udc4a'");
|
|
|
|
ExpectScriptTrue("result.length === 2");
|
|
|
|
|
|
|
|
value = RoundTripTest("({ a: new String(), get b() { return this.a; }})");
|
|
|
|
ExpectScriptTrue("result.a instanceof String");
|
|
|
|
ExpectScriptTrue("result.a === result.b");
|
2016-08-23 14:32:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, RejectsOtherValueObjects) {
|
|
|
|
// This is a roundabout way of getting an instance of Symbol.
|
|
|
|
InvalidEncodeTest("Object.valueOf.apply(Symbol())");
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeValueObjects) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x79, 0x00});
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Boolean.prototype");
|
|
|
|
ExpectScriptTrue("result.valueOf() === true");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x78, 0x00});
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Boolean.prototype");
|
|
|
|
ExpectScriptTrue("result.valueOf() === false");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x6F, 0x3F, 0x01, 0x53,
|
|
|
|
0x01, 0x61, 0x3F, 0x01, 0x79, 0x3F, 0x02, 0x53,
|
|
|
|
0x01, 0x62, 0x3F, 0x02, 0x5E, 0x01, 0x7B, 0x02});
|
|
|
|
ExpectScriptTrue("result.a instanceof Boolean");
|
|
|
|
ExpectScriptTrue("result.a === result.b");
|
|
|
|
|
2016-08-25 14:11:00 +00:00
|
|
|
#if defined(V8_TARGET_LITTLE_ENDIAN)
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x6E, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x45, 0xC0, 0x00});
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Number.prototype");
|
|
|
|
ExpectScriptTrue("result.valueOf() === -42");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x6E, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0xF8, 0x7F, 0x00});
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Number.prototype");
|
|
|
|
ExpectScriptTrue("Number.isNaN(result.valueOf())");
|
2016-08-25 14:11:00 +00:00
|
|
|
#else
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x6E, 0xC0, 0x45, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00});
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Number.prototype");
|
|
|
|
ExpectScriptTrue("result.valueOf() === -42");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x6E, 0x7F, 0xF8, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00});
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Number.prototype");
|
|
|
|
ExpectScriptTrue("Number.isNaN(result.valueOf())");
|
2016-08-25 14:11:00 +00:00
|
|
|
#endif
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x6F, 0x3F, 0x01, 0x53,
|
|
|
|
0x01, 0x61, 0x3F, 0x01, 0x6E, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x18, 0x40, 0x3F, 0x02, 0x53,
|
|
|
|
0x01, 0x62, 0x3F, 0x02, 0x5E, 0x01, 0x7B, 0x02});
|
|
|
|
ExpectScriptTrue("result.a instanceof Number");
|
|
|
|
ExpectScriptTrue("result.a === result.b");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x73, 0x07, 0x51, 0x75, 0xC3,
|
|
|
|
0xA9, 0x62, 0x65, 0x63, 0x00});
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === String.prototype");
|
|
|
|
ExpectScriptTrue("result.valueOf() === 'Qu\\xe9bec'");
|
|
|
|
ExpectScriptTrue("result.length === 6");
|
|
|
|
|
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x73, 0x04, 0xF0, 0x9F, 0x91, 0x8A});
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === String.prototype");
|
|
|
|
ExpectScriptTrue("result.valueOf() === '\\ud83d\\udc4a'");
|
|
|
|
ExpectScriptTrue("result.length === 2");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x6F, 0x3F, 0x01, 0x53, 0x01,
|
|
|
|
0x61, 0x3F, 0x01, 0x73, 0x00, 0x3F, 0x02, 0x53, 0x01,
|
|
|
|
0x62, 0x3F, 0x02, 0x5E, 0x01, 0x7B, 0x02, 0x00});
|
|
|
|
ExpectScriptTrue("result.a instanceof String");
|
|
|
|
ExpectScriptTrue("result.a === result.b");
|
2017-02-01 22:27:02 +00:00
|
|
|
|
|
|
|
// String object containing a Latin-1 string.
|
2018-02-27 01:27:12 +00:00
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x0C, 0x73, 0x22, 0x06, 'Q', 'u', 0xE9, 'b', 'e', 'c'});
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === String.prototype");
|
|
|
|
ExpectScriptTrue("result.valueOf() === 'Qu\\xe9bec'");
|
|
|
|
ExpectScriptTrue("result.length === 6");
|
2016-08-23 14:32:43 +00:00
|
|
|
}
|
|
|
|
|
2016-08-23 15:16:12 +00:00
|
|
|
TEST_F(ValueSerializerTest, RoundTripRegExp) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest("/foo/g");
|
|
|
|
ASSERT_TRUE(value->IsRegExp());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === RegExp.prototype");
|
|
|
|
ExpectScriptTrue("result.toString() === '/foo/g'");
|
|
|
|
|
|
|
|
value = RoundTripTest("new RegExp('Qu\\xe9bec', 'i')");
|
|
|
|
ASSERT_TRUE(value->IsRegExp());
|
|
|
|
ExpectScriptTrue("result.toString() === '/Qu\\xe9bec/i'");
|
|
|
|
|
|
|
|
value = RoundTripTest("new RegExp('\\ud83d\\udc4a', 'ug')");
|
|
|
|
ASSERT_TRUE(value->IsRegExp());
|
|
|
|
ExpectScriptTrue("result.toString() === '/\\ud83d\\udc4a/gu'");
|
|
|
|
|
|
|
|
value = RoundTripTest("({ a: /foo/gi, get b() { return this.a; }})");
|
|
|
|
ExpectScriptTrue("result.a instanceof RegExp");
|
|
|
|
ExpectScriptTrue("result.a === result.b");
|
2016-08-23 15:16:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeRegExp) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x52, 0x03, 0x66, 0x6F, 0x6F, 0x01});
|
|
|
|
ASSERT_TRUE(value->IsRegExp());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === RegExp.prototype");
|
|
|
|
ExpectScriptTrue("result.toString() === '/foo/g'");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x52, 0x07, 0x51, 0x75, 0xC3,
|
|
|
|
0xA9, 0x62, 0x65, 0x63, 0x02});
|
|
|
|
ASSERT_TRUE(value->IsRegExp());
|
|
|
|
ExpectScriptTrue("result.toString() === '/Qu\\xe9bec/i'");
|
|
|
|
|
|
|
|
value = DecodeTest(
|
|
|
|
{0xFF, 0x09, 0x3F, 0x00, 0x52, 0x04, 0xF0, 0x9F, 0x91, 0x8A, 0x11, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsRegExp());
|
|
|
|
ExpectScriptTrue("result.toString() === '/\\ud83d\\udc4a/gu'");
|
|
|
|
|
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x6F, 0x3F, 0x01, 0x53, 0x01, 0x61,
|
|
|
|
0x3F, 0x01, 0x52, 0x03, 0x66, 0x6F, 0x6F, 0x03, 0x3F, 0x02,
|
|
|
|
0x53, 0x01, 0x62, 0x3F, 0x02, 0x5E, 0x01, 0x7B, 0x02, 0x00});
|
|
|
|
ExpectScriptTrue("result.a instanceof RegExp");
|
|
|
|
ExpectScriptTrue("result.a === result.b");
|
2017-02-01 22:27:02 +00:00
|
|
|
|
|
|
|
// RegExp containing a Latin-1 string.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest(
|
|
|
|
{0xFF, 0x0C, 0x52, 0x22, 0x06, 'Q', 'u', 0xE9, 'b', 'e', 'c', 0x02});
|
|
|
|
ASSERT_TRUE(value->IsRegExp());
|
|
|
|
ExpectScriptTrue("result.toString() === '/Qu\\xe9bec/i'");
|
2016-08-23 15:16:12 +00:00
|
|
|
}
|
|
|
|
|
2017-11-17 00:45:55 +00:00
|
|
|
// Tests that invalid flags are not accepted by the deserializer.
|
2017-05-10 08:52:21 +00:00
|
|
|
TEST_F(ValueSerializerTest, DecodeRegExpDotAll) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x52, 0x03, 0x66, 0x6F, 0x6F, 0x1F});
|
|
|
|
ASSERT_TRUE(value->IsRegExp());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === RegExp.prototype");
|
|
|
|
ExpectScriptTrue("result.toString() === '/foo/gimuy'");
|
|
|
|
|
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x52, 0x03, 0x66, 0x6F, 0x6F, 0x3F});
|
|
|
|
ASSERT_TRUE(value->IsRegExp());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === RegExp.prototype");
|
|
|
|
ExpectScriptTrue("result.toString() === '/foo/gimsuy'");
|
|
|
|
|
2017-05-10 08:52:21 +00:00
|
|
|
InvalidDecodeTest(
|
2017-12-02 00:30:37 +00:00
|
|
|
{0xFF, 0x09, 0x3F, 0x00, 0x52, 0x03, 0x66, 0x6F, 0x6F, 0x7F});
|
2017-05-10 08:52:21 +00:00
|
|
|
}
|
|
|
|
|
2016-08-24 15:58:34 +00:00
|
|
|
TEST_F(ValueSerializerTest, RoundTripMap) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest("var m = new Map(); m.set(42, 'foo'); m;");
|
|
|
|
ASSERT_TRUE(value->IsMap());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Map.prototype");
|
|
|
|
ExpectScriptTrue("result.size === 1");
|
|
|
|
ExpectScriptTrue("result.get(42) === 'foo'");
|
|
|
|
|
|
|
|
value = RoundTripTest("var m = new Map(); m.set(m, m); m;");
|
|
|
|
ASSERT_TRUE(value->IsMap());
|
|
|
|
ExpectScriptTrue("result.size === 1");
|
|
|
|
ExpectScriptTrue("result.get(result) === result");
|
|
|
|
|
2016-08-24 15:58:34 +00:00
|
|
|
// Iteration order must be preserved.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(
|
|
|
|
"var m = new Map();"
|
|
|
|
"m.set(1, 0); m.set('a', 0); m.set(3, 0); m.set(2, 0);"
|
|
|
|
"m;");
|
|
|
|
ASSERT_TRUE(value->IsMap());
|
|
|
|
ExpectScriptTrue("Array.from(result.keys()).toString() === '1,a,3,2'");
|
2016-08-24 15:58:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeMap) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x3B, 0x3F, 0x01, 0x49, 0x54, 0x3F,
|
|
|
|
0x01, 0x53, 0x03, 0x66, 0x6F, 0x6F, 0x3A, 0x02});
|
|
|
|
ASSERT_TRUE(value->IsMap());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Map.prototype");
|
|
|
|
ExpectScriptTrue("result.size === 1");
|
|
|
|
ExpectScriptTrue("result.get(42) === 'foo'");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x3B, 0x3F, 0x01, 0x5E, 0x00,
|
|
|
|
0x3F, 0x01, 0x5E, 0x00, 0x3A, 0x02, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsMap());
|
|
|
|
ExpectScriptTrue("result.size === 1");
|
|
|
|
ExpectScriptTrue("result.get(result) === result");
|
|
|
|
|
2016-08-24 15:58:34 +00:00
|
|
|
// Iteration order must be preserved.
|
2018-02-27 01:27:12 +00:00
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x3B, 0x3F, 0x01, 0x49, 0x02, 0x3F,
|
|
|
|
0x01, 0x49, 0x00, 0x3F, 0x01, 0x53, 0x01, 0x61, 0x3F, 0x01,
|
|
|
|
0x49, 0x00, 0x3F, 0x01, 0x49, 0x06, 0x3F, 0x01, 0x49, 0x00,
|
|
|
|
0x3F, 0x01, 0x49, 0x04, 0x3F, 0x01, 0x49, 0x00, 0x3A, 0x08});
|
|
|
|
ASSERT_TRUE(value->IsMap());
|
|
|
|
ExpectScriptTrue("Array.from(result.keys()).toString() === '1,a,3,2'");
|
2016-08-24 15:58:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, RoundTripMapWithTrickyGetters) {
|
|
|
|
// Even if an entry is removed or reassigned, the original key/value pair is
|
|
|
|
// used.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest(
|
|
|
|
"var m = new Map();"
|
|
|
|
"m.set(0, { get a() {"
|
|
|
|
" m.delete(1); m.set(2, 'baz'); m.set(3, 'quux');"
|
|
|
|
"}});"
|
|
|
|
"m.set(1, 'foo');"
|
|
|
|
"m.set(2, 'bar');"
|
|
|
|
"m;");
|
|
|
|
ASSERT_TRUE(value->IsMap());
|
|
|
|
ExpectScriptTrue("Array.from(result.keys()).toString() === '0,1,2'");
|
|
|
|
ExpectScriptTrue("result.get(1) === 'foo'");
|
|
|
|
ExpectScriptTrue("result.get(2) === 'bar'");
|
|
|
|
|
2016-08-24 15:58:34 +00:00
|
|
|
// However, deeper modifications of objects yet to be serialized still apply.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(
|
|
|
|
"var m = new Map();"
|
|
|
|
"var key = { get a() { value.foo = 'bar'; } };"
|
|
|
|
"var value = { get a() { key.baz = 'quux'; } };"
|
|
|
|
"m.set(key, value);"
|
|
|
|
"m;");
|
|
|
|
ASSERT_TRUE(value->IsMap());
|
|
|
|
ExpectScriptTrue("!('baz' in Array.from(result.keys())[0])");
|
|
|
|
ExpectScriptTrue("Array.from(result.values())[0].foo === 'bar'");
|
2016-08-24 15:58:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, RoundTripSet) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value =
|
|
|
|
RoundTripTest("var s = new Set(); s.add(42); s.add('foo'); s;");
|
|
|
|
ASSERT_TRUE(value->IsSet());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Set.prototype");
|
|
|
|
ExpectScriptTrue("result.size === 2");
|
|
|
|
ExpectScriptTrue("result.has(42)");
|
|
|
|
ExpectScriptTrue("result.has('foo')");
|
|
|
|
|
|
|
|
value = RoundTripTest("var s = new Set(); s.add(s); s;");
|
|
|
|
ASSERT_TRUE(value->IsSet());
|
|
|
|
ExpectScriptTrue("result.size === 1");
|
|
|
|
ExpectScriptTrue("result.has(result)");
|
|
|
|
|
2016-08-24 15:58:34 +00:00
|
|
|
// Iteration order must be preserved.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(
|
|
|
|
"var s = new Set();"
|
|
|
|
"s.add(1); s.add('a'); s.add(3); s.add(2);"
|
|
|
|
"s;");
|
|
|
|
ASSERT_TRUE(value->IsSet());
|
|
|
|
ExpectScriptTrue("Array.from(result.keys()).toString() === '1,a,3,2'");
|
2016-08-24 15:58:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeSet) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x27, 0x3F, 0x01, 0x49, 0x54, 0x3F,
|
|
|
|
0x01, 0x53, 0x03, 0x66, 0x6F, 0x6F, 0x2C, 0x02});
|
|
|
|
ASSERT_TRUE(value->IsSet());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Set.prototype");
|
|
|
|
ExpectScriptTrue("result.size === 2");
|
|
|
|
ExpectScriptTrue("result.has(42)");
|
|
|
|
ExpectScriptTrue("result.has('foo')");
|
|
|
|
|
|
|
|
value = DecodeTest(
|
|
|
|
{0xFF, 0x09, 0x3F, 0x00, 0x27, 0x3F, 0x01, 0x5E, 0x00, 0x2C, 0x01, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsSet());
|
|
|
|
ExpectScriptTrue("result.size === 1");
|
|
|
|
ExpectScriptTrue("result.has(result)");
|
|
|
|
|
2016-08-24 15:58:34 +00:00
|
|
|
// Iteration order must be preserved.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x27, 0x3F, 0x01, 0x49,
|
|
|
|
0x02, 0x3F, 0x01, 0x53, 0x01, 0x61, 0x3F, 0x01,
|
|
|
|
0x49, 0x06, 0x3F, 0x01, 0x49, 0x04, 0x2C, 0x04});
|
|
|
|
ASSERT_TRUE(value->IsSet());
|
|
|
|
ExpectScriptTrue("Array.from(result.keys()).toString() === '1,a,3,2'");
|
2016-08-24 15:58:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, RoundTripSetWithTrickyGetters) {
|
|
|
|
// Even if an element is added or removed during serialization, the original
|
|
|
|
// set of elements is used.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest(
|
|
|
|
"var s = new Set();"
|
|
|
|
"s.add({ get a() { s.delete(1); s.add(2); } });"
|
|
|
|
"s.add(1);"
|
|
|
|
"s;");
|
|
|
|
ASSERT_TRUE(value->IsSet());
|
|
|
|
ExpectScriptTrue(
|
|
|
|
"Array.from(result.keys()).toString() === '[object Object],1'");
|
|
|
|
|
2016-08-24 15:58:34 +00:00
|
|
|
// However, deeper modifications of objects yet to be serialized still apply.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(
|
|
|
|
"var s = new Set();"
|
|
|
|
"var first = { get a() { second.foo = 'bar'; } };"
|
|
|
|
"var second = { get a() { first.baz = 'quux'; } };"
|
|
|
|
"s.add(first);"
|
|
|
|
"s.add(second);"
|
|
|
|
"s;");
|
|
|
|
ASSERT_TRUE(value->IsSet());
|
|
|
|
ExpectScriptTrue("!('baz' in Array.from(result.keys())[0])");
|
|
|
|
ExpectScriptTrue("Array.from(result.keys())[1].foo === 'bar'");
|
2016-08-24 15:58:34 +00:00
|
|
|
}
|
|
|
|
|
2016-08-25 14:42:56 +00:00
|
|
|
TEST_F(ValueSerializerTest, RoundTripArrayBuffer) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest("new ArrayBuffer()");
|
|
|
|
ASSERT_TRUE(value->IsArrayBuffer());
|
|
|
|
EXPECT_EQ(0u, ArrayBuffer::Cast(*value)->ByteLength());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === ArrayBuffer.prototype");
|
|
|
|
|
|
|
|
value = RoundTripTest("new Uint8Array([0, 128, 255]).buffer");
|
|
|
|
ASSERT_TRUE(value->IsArrayBuffer());
|
|
|
|
EXPECT_EQ(3u, ArrayBuffer::Cast(*value)->ByteLength());
|
|
|
|
ExpectScriptTrue("new Uint8Array(result).toString() === '0,128,255'");
|
|
|
|
|
|
|
|
value =
|
|
|
|
RoundTripTest("({ a: new ArrayBuffer(), get b() { return this.a; }})");
|
|
|
|
ExpectScriptTrue("result.a instanceof ArrayBuffer");
|
|
|
|
ExpectScriptTrue("result.a === result.b");
|
2016-08-25 14:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeArrayBuffer) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x42, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsArrayBuffer());
|
|
|
|
EXPECT_EQ(0u, ArrayBuffer::Cast(*value)->ByteLength());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === ArrayBuffer.prototype");
|
|
|
|
|
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x42, 0x03, 0x00, 0x80, 0xFF, 0x00});
|
|
|
|
ASSERT_TRUE(value->IsArrayBuffer());
|
|
|
|
EXPECT_EQ(3u, ArrayBuffer::Cast(*value)->ByteLength());
|
|
|
|
ExpectScriptTrue("new Uint8Array(result).toString() === '0,128,255'");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x6F, 0x3F, 0x01, 0x53, 0x01,
|
|
|
|
0x61, 0x3F, 0x01, 0x42, 0x00, 0x3F, 0x02, 0x53, 0x01,
|
|
|
|
0x62, 0x3F, 0x02, 0x5E, 0x01, 0x7B, 0x02, 0x00});
|
|
|
|
ExpectScriptTrue("result.a instanceof ArrayBuffer");
|
|
|
|
ExpectScriptTrue("result.a === result.b");
|
2016-08-25 14:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeInvalidArrayBuffer) {
|
2017-12-02 00:30:37 +00:00
|
|
|
InvalidDecodeTest({0xFF, 0x09, 0x42, 0xFF, 0xFF, 0x00});
|
2016-08-25 14:42:56 +00:00
|
|
|
}
|
|
|
|
|
2017-01-19 15:22:17 +00:00
|
|
|
// An array buffer allocator that never has available memory.
|
|
|
|
class OOMArrayBufferAllocator : public ArrayBuffer::Allocator {
|
|
|
|
public:
|
|
|
|
void* Allocate(size_t) override { return nullptr; }
|
|
|
|
void* AllocateUninitialized(size_t) override { return nullptr; }
|
|
|
|
void Free(void*, size_t) override {}
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeArrayBufferOOM) {
|
|
|
|
// This test uses less of the harness, because it has to customize the
|
|
|
|
// isolate.
|
|
|
|
OOMArrayBufferAllocator allocator;
|
|
|
|
Isolate::CreateParams params;
|
|
|
|
params.array_buffer_allocator = &allocator;
|
|
|
|
Isolate* isolate = Isolate::New(params);
|
2017-04-27 15:55:19 +00:00
|
|
|
{
|
|
|
|
Isolate::Scope isolate_scope(isolate);
|
|
|
|
HandleScope handle_scope(isolate);
|
|
|
|
Local<Context> context = Context::New(isolate);
|
|
|
|
Context::Scope context_scope(context);
|
|
|
|
TryCatch try_catch(isolate);
|
|
|
|
|
2017-12-02 00:30:37 +00:00
|
|
|
const std::vector<uint8_t> data = {0xFF, 0x09, 0x3F, 0x00, 0x42,
|
|
|
|
0x03, 0x00, 0x80, 0xFF, 0x00};
|
2017-04-27 15:55:19 +00:00
|
|
|
ValueDeserializer deserializer(isolate, &data[0],
|
|
|
|
static_cast<int>(data.size()), nullptr);
|
|
|
|
deserializer.SetSupportsLegacyWireFormat(true);
|
|
|
|
ASSERT_TRUE(deserializer.ReadHeader(context).FromMaybe(false));
|
|
|
|
ASSERT_FALSE(try_catch.HasCaught());
|
|
|
|
EXPECT_TRUE(deserializer.ReadValue(context).IsEmpty());
|
|
|
|
EXPECT_TRUE(try_catch.HasCaught());
|
|
|
|
}
|
|
|
|
isolate->Dispose();
|
2017-01-19 15:22:17 +00:00
|
|
|
}
|
|
|
|
|
2016-08-26 15:47:15 +00:00
|
|
|
// Includes an ArrayBuffer wrapper marked for transfer from the serialization
|
|
|
|
// context to the deserialization context.
|
|
|
|
class ValueSerializerTestWithArrayBufferTransfer : public ValueSerializerTest {
|
|
|
|
protected:
|
|
|
|
static const size_t kTestByteLength = 4;
|
|
|
|
|
|
|
|
ValueSerializerTestWithArrayBufferTransfer() {
|
|
|
|
{
|
|
|
|
Context::Scope scope(serialization_context());
|
|
|
|
input_buffer_ = ArrayBuffer::New(isolate(), nullptr, 0);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
Context::Scope scope(deserialization_context());
|
|
|
|
output_buffer_ = ArrayBuffer::New(isolate(), kTestByteLength);
|
2017-12-02 00:30:37 +00:00
|
|
|
const uint8_t data[kTestByteLength] = {0x00, 0x01, 0x80, 0xFF};
|
2016-08-26 15:47:15 +00:00
|
|
|
memcpy(output_buffer_->GetContents().Data(), data, kTestByteLength);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const Local<ArrayBuffer>& input_buffer() { return input_buffer_; }
|
|
|
|
const Local<ArrayBuffer>& output_buffer() { return output_buffer_; }
|
|
|
|
|
|
|
|
void BeforeEncode(ValueSerializer* serializer) override {
|
|
|
|
serializer->TransferArrayBuffer(0, input_buffer_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BeforeDecode(ValueDeserializer* deserializer) override {
|
|
|
|
deserializer->TransferArrayBuffer(0, output_buffer_);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Local<ArrayBuffer> input_buffer_;
|
|
|
|
Local<ArrayBuffer> output_buffer_;
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithArrayBufferTransfer,
|
|
|
|
RoundTripArrayBufferTransfer) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest(input_buffer());
|
|
|
|
ASSERT_TRUE(value->IsArrayBuffer());
|
|
|
|
EXPECT_EQ(output_buffer(), value);
|
|
|
|
ExpectScriptTrue("new Uint8Array(result).toString() === '0,1,128,255'");
|
|
|
|
|
|
|
|
Local<Object> object;
|
|
|
|
{
|
|
|
|
Context::Scope scope(serialization_context());
|
|
|
|
object = Object::New(isolate());
|
|
|
|
EXPECT_TRUE(object
|
|
|
|
->CreateDataProperty(serialization_context(),
|
|
|
|
StringFromUtf8("a"), input_buffer())
|
|
|
|
.FromMaybe(false));
|
|
|
|
EXPECT_TRUE(object
|
|
|
|
->CreateDataProperty(serialization_context(),
|
|
|
|
StringFromUtf8("b"), input_buffer())
|
|
|
|
.FromMaybe(false));
|
|
|
|
}
|
|
|
|
value = RoundTripTest(object);
|
|
|
|
ExpectScriptTrue("result.a instanceof ArrayBuffer");
|
|
|
|
ExpectScriptTrue("result.a === result.b");
|
|
|
|
ExpectScriptTrue("new Uint8Array(result.a).toString() === '0,1,128,255'");
|
2016-08-26 15:47:15 +00:00
|
|
|
}
|
|
|
|
|
2016-08-29 14:51:22 +00:00
|
|
|
TEST_F(ValueSerializerTest, RoundTripTypedArray) {
|
2018-02-27 01:27:12 +00:00
|
|
|
// Check that the right type comes out the other side for every kind of typed
|
|
|
|
// array.
|
|
|
|
Local<Value> value;
|
|
|
|
#define TYPED_ARRAY_ROUND_TRIP_TEST(Type, type, TYPE, ctype, size) \
|
|
|
|
value = RoundTripTest("new " #Type "Array(2)"); \
|
|
|
|
ASSERT_TRUE(value->Is##Type##Array()); \
|
|
|
|
EXPECT_EQ(2u * size, TypedArray::Cast(*value)->ByteLength()); \
|
|
|
|
EXPECT_EQ(2u, TypedArray::Cast(*value)->Length()); \
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === " #Type \
|
|
|
|
"Array.prototype");
|
|
|
|
|
2016-08-29 14:51:22 +00:00
|
|
|
TYPED_ARRAYS(TYPED_ARRAY_ROUND_TRIP_TEST)
|
2018-02-27 01:27:12 +00:00
|
|
|
#undef TYPED_ARRAY_ROUND_TRIP_TEST
|
2016-08-29 14:51:22 +00:00
|
|
|
|
|
|
|
// Check that values of various kinds are suitably preserved.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest("new Uint8Array([1, 128, 255])");
|
|
|
|
ExpectScriptTrue("result.toString() === '1,128,255'");
|
|
|
|
|
|
|
|
value = RoundTripTest("new Int16Array([0, 256, -32768])");
|
|
|
|
ExpectScriptTrue("result.toString() === '0,256,-32768'");
|
|
|
|
|
|
|
|
value = RoundTripTest("new Float32Array([0, -0.5, NaN, Infinity])");
|
|
|
|
ExpectScriptTrue("result.toString() === '0,-0.5,NaN,Infinity'");
|
2016-08-29 14:51:22 +00:00
|
|
|
|
|
|
|
// Array buffer views sharing a buffer should do so on the other side.
|
|
|
|
// Similarly, multiple references to the same typed array should be resolved.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = RoundTripTest(
|
|
|
|
"var buffer = new ArrayBuffer(32);"
|
|
|
|
"({"
|
|
|
|
" u8: new Uint8Array(buffer),"
|
|
|
|
" get u8_2() { return this.u8; },"
|
|
|
|
" f32: new Float32Array(buffer, 4, 5),"
|
|
|
|
" b: buffer,"
|
|
|
|
"});");
|
|
|
|
ExpectScriptTrue("result.u8 instanceof Uint8Array");
|
|
|
|
ExpectScriptTrue("result.u8 === result.u8_2");
|
|
|
|
ExpectScriptTrue("result.f32 instanceof Float32Array");
|
|
|
|
ExpectScriptTrue("result.u8.buffer === result.f32.buffer");
|
|
|
|
ExpectScriptTrue("result.f32.byteOffset === 4");
|
|
|
|
ExpectScriptTrue("result.f32.length === 5");
|
2016-08-29 14:51:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeTypedArray) {
|
|
|
|
// Check that the right type comes out the other side for every kind of typed
|
|
|
|
// array.
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x3F, 0x00, 0x42,
|
|
|
|
0x02, 0x00, 0x00, 0x56, 0x42, 0x00, 0x02});
|
|
|
|
ASSERT_TRUE(value->IsUint8Array());
|
|
|
|
EXPECT_EQ(2u, TypedArray::Cast(*value)->ByteLength());
|
|
|
|
EXPECT_EQ(2u, TypedArray::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Uint8Array.prototype");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x3F, 0x00, 0x42, 0x02, 0x00,
|
|
|
|
0x00, 0x56, 0x62, 0x00, 0x02});
|
|
|
|
ASSERT_TRUE(value->IsInt8Array());
|
|
|
|
EXPECT_EQ(2u, TypedArray::Cast(*value)->ByteLength());
|
|
|
|
EXPECT_EQ(2u, TypedArray::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Int8Array.prototype");
|
|
|
|
|
2016-08-29 14:51:22 +00:00
|
|
|
#if defined(V8_TARGET_LITTLE_ENDIAN)
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x3F, 0x00, 0x42, 0x04, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x56, 0x57, 0x00, 0x04});
|
|
|
|
ASSERT_TRUE(value->IsUint16Array());
|
|
|
|
EXPECT_EQ(4u, TypedArray::Cast(*value)->ByteLength());
|
|
|
|
EXPECT_EQ(2u, TypedArray::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Uint16Array.prototype");
|
|
|
|
|
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x3F, 0x00, 0x42, 0x04, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x56, 0x77, 0x00, 0x04});
|
|
|
|
ASSERT_TRUE(value->IsInt16Array());
|
|
|
|
EXPECT_EQ(4u, TypedArray::Cast(*value)->ByteLength());
|
|
|
|
EXPECT_EQ(2u, TypedArray::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Int16Array.prototype");
|
|
|
|
|
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x3F, 0x00, 0x42, 0x08, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x44, 0x00, 0x08});
|
|
|
|
ASSERT_TRUE(value->IsUint32Array());
|
|
|
|
EXPECT_EQ(8u, TypedArray::Cast(*value)->ByteLength());
|
|
|
|
EXPECT_EQ(2u, TypedArray::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Uint32Array.prototype");
|
|
|
|
|
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x3F, 0x00, 0x42, 0x08, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x64, 0x00, 0x08});
|
|
|
|
ASSERT_TRUE(value->IsInt32Array());
|
|
|
|
EXPECT_EQ(8u, TypedArray::Cast(*value)->ByteLength());
|
|
|
|
EXPECT_EQ(2u, TypedArray::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Int32Array.prototype");
|
|
|
|
|
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x3F, 0x00, 0x42, 0x08, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x66, 0x00, 0x08});
|
|
|
|
ASSERT_TRUE(value->IsFloat32Array());
|
|
|
|
EXPECT_EQ(8u, TypedArray::Cast(*value)->ByteLength());
|
|
|
|
EXPECT_EQ(2u, TypedArray::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Float32Array.prototype");
|
|
|
|
|
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x3F, 0x00, 0x42, 0x10, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x56, 0x46, 0x00, 0x10});
|
|
|
|
ASSERT_TRUE(value->IsFloat64Array());
|
|
|
|
EXPECT_EQ(16u, TypedArray::Cast(*value)->ByteLength());
|
|
|
|
EXPECT_EQ(2u, TypedArray::Cast(*value)->Length());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === Float64Array.prototype");
|
|
|
|
|
2016-08-29 14:51:22 +00:00
|
|
|
#endif // V8_TARGET_LITTLE_ENDIAN
|
|
|
|
|
|
|
|
// Check that values of various kinds are suitably preserved.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x3F, 0x00, 0x42, 0x03, 0x01,
|
|
|
|
0x80, 0xFF, 0x56, 0x42, 0x00, 0x03, 0x00});
|
|
|
|
ExpectScriptTrue("result.toString() === '1,128,255'");
|
|
|
|
|
2016-08-29 14:51:22 +00:00
|
|
|
#if defined(V8_TARGET_LITTLE_ENDIAN)
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x3F, 0x00, 0x42, 0x06, 0x00,
|
|
|
|
0x00, 0x00, 0x01, 0x00, 0x80, 0x56, 0x77, 0x00, 0x06});
|
|
|
|
ExpectScriptTrue("result.toString() === '0,256,-32768'");
|
|
|
|
|
|
|
|
value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x3F, 0x00, 0x42, 0x10, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0xBF, 0x00, 0x00, 0xC0, 0x7F,
|
|
|
|
0x00, 0x00, 0x80, 0x7F, 0x56, 0x66, 0x00, 0x10});
|
|
|
|
ExpectScriptTrue("result.toString() === '0,-0.5,NaN,Infinity'");
|
|
|
|
|
2016-08-29 14:51:22 +00:00
|
|
|
#endif // V8_TARGET_LITTLE_ENDIAN
|
|
|
|
|
|
|
|
// Array buffer views sharing a buffer should do so on the other side.
|
|
|
|
// Similarly, multiple references to the same typed array should be resolved.
|
2018-02-27 01:27:12 +00:00
|
|
|
value = DecodeTest(
|
2017-12-02 00:30:37 +00:00
|
|
|
{0xFF, 0x09, 0x3F, 0x00, 0x6F, 0x3F, 0x01, 0x53, 0x02, 0x75, 0x38, 0x3F,
|
|
|
|
0x01, 0x3F, 0x01, 0x42, 0x20, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
2016-08-29 14:51:22 +00:00
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
2017-12-02 00:30:37 +00:00
|
|
|
0x00, 0x56, 0x42, 0x00, 0x20, 0x3F, 0x03, 0x53, 0x04, 0x75, 0x38, 0x5F,
|
|
|
|
0x32, 0x3F, 0x03, 0x5E, 0x02, 0x3F, 0x03, 0x53, 0x03, 0x66, 0x33, 0x32,
|
|
|
|
0x3F, 0x03, 0x3F, 0x03, 0x5E, 0x01, 0x56, 0x66, 0x04, 0x14, 0x3F, 0x04,
|
2018-02-27 01:27:12 +00:00
|
|
|
0x53, 0x01, 0x62, 0x3F, 0x04, 0x5E, 0x01, 0x7B, 0x04, 0x00});
|
|
|
|
ExpectScriptTrue("result.u8 instanceof Uint8Array");
|
|
|
|
ExpectScriptTrue("result.u8 === result.u8_2");
|
|
|
|
ExpectScriptTrue("result.f32 instanceof Float32Array");
|
|
|
|
ExpectScriptTrue("result.u8.buffer === result.f32.buffer");
|
|
|
|
ExpectScriptTrue("result.f32.byteOffset === 4");
|
|
|
|
ExpectScriptTrue("result.f32.length === 5");
|
2016-08-29 14:51:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeInvalidTypedArray) {
|
|
|
|
// Byte offset out of range.
|
|
|
|
InvalidDecodeTest(
|
2017-12-02 00:30:37 +00:00
|
|
|
{0xFF, 0x09, 0x42, 0x02, 0x00, 0x00, 0x56, 0x42, 0x03, 0x01});
|
2016-08-29 14:51:22 +00:00
|
|
|
// Byte offset in range, offset + length out of range.
|
|
|
|
InvalidDecodeTest(
|
2017-12-02 00:30:37 +00:00
|
|
|
{0xFF, 0x09, 0x42, 0x02, 0x00, 0x00, 0x56, 0x42, 0x01, 0x03});
|
2016-08-29 14:51:22 +00:00
|
|
|
// Byte offset not divisible by element size.
|
|
|
|
InvalidDecodeTest(
|
2017-12-02 00:30:37 +00:00
|
|
|
{0xFF, 0x09, 0x42, 0x04, 0x00, 0x00, 0x00, 0x00, 0x56, 0x77, 0x01, 0x02});
|
2016-08-29 14:51:22 +00:00
|
|
|
// Byte length not divisible by element size.
|
|
|
|
InvalidDecodeTest(
|
2017-12-02 00:30:37 +00:00
|
|
|
{0xFF, 0x09, 0x42, 0x04, 0x00, 0x00, 0x00, 0x00, 0x56, 0x77, 0x02, 0x01});
|
|
|
|
// Invalid view type (0xFF).
|
2016-10-07 13:14:50 +00:00
|
|
|
InvalidDecodeTest(
|
2017-12-02 00:30:37 +00:00
|
|
|
{0xFF, 0x09, 0x42, 0x02, 0x00, 0x00, 0x56, 0xFF, 0x01, 0x01});
|
2016-08-29 14:51:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, RoundTripDataView) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest("new DataView(new ArrayBuffer(4), 1, 2)");
|
|
|
|
ASSERT_TRUE(value->IsDataView());
|
|
|
|
EXPECT_EQ(1u, DataView::Cast(*value)->ByteOffset());
|
|
|
|
EXPECT_EQ(2u, DataView::Cast(*value)->ByteLength());
|
|
|
|
EXPECT_EQ(4u, DataView::Cast(*value)->Buffer()->ByteLength());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === DataView.prototype");
|
2016-08-29 14:51:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeDataView) {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value =
|
|
|
|
DecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x3F, 0x00, 0x42, 0x04, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x56, 0x3F, 0x01, 0x02});
|
|
|
|
ASSERT_TRUE(value->IsDataView());
|
|
|
|
EXPECT_EQ(1u, DataView::Cast(*value)->ByteOffset());
|
|
|
|
EXPECT_EQ(2u, DataView::Cast(*value)->ByteLength());
|
|
|
|
EXPECT_EQ(4u, DataView::Cast(*value)->Buffer()->ByteLength());
|
|
|
|
ExpectScriptTrue("Object.getPrototypeOf(result) === DataView.prototype");
|
2016-08-29 14:51:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTest, DecodeInvalidDataView) {
|
|
|
|
// Byte offset out of range.
|
|
|
|
InvalidDecodeTest(
|
2017-12-02 00:30:37 +00:00
|
|
|
{0xFF, 0x09, 0x42, 0x02, 0x00, 0x00, 0x56, 0x3F, 0x03, 0x01});
|
2016-08-29 14:51:22 +00:00
|
|
|
// Byte offset in range, offset + length out of range.
|
|
|
|
InvalidDecodeTest(
|
2017-12-02 00:30:37 +00:00
|
|
|
{0xFF, 0x09, 0x42, 0x02, 0x00, 0x00, 0x56, 0x3F, 0x01, 0x03});
|
2016-08-29 14:51:22 +00:00
|
|
|
}
|
|
|
|
|
2018-01-10 21:16:56 +00:00
|
|
|
class ValueSerializerTestWithSharedArrayBufferClone
|
2016-08-30 14:05:37 +00:00
|
|
|
: public ValueSerializerTest {
|
|
|
|
protected:
|
2018-01-10 21:16:56 +00:00
|
|
|
ValueSerializerTestWithSharedArrayBufferClone()
|
|
|
|
: serializer_delegate_(this), deserializer_delegate_(this) {}
|
2017-10-18 23:58:37 +00:00
|
|
|
|
|
|
|
void InitializeData(const std::vector<uint8_t>& data) {
|
|
|
|
data_ = data;
|
2016-08-30 14:05:37 +00:00
|
|
|
{
|
|
|
|
Context::Scope scope(serialization_context());
|
|
|
|
input_buffer_ =
|
2017-10-18 23:58:37 +00:00
|
|
|
SharedArrayBuffer::New(isolate(), data_.data(), data_.size());
|
2016-08-30 14:05:37 +00:00
|
|
|
}
|
|
|
|
{
|
|
|
|
Context::Scope scope(deserialization_context());
|
|
|
|
output_buffer_ =
|
2017-10-18 23:58:37 +00:00
|
|
|
SharedArrayBuffer::New(isolate(), data_.data(), data_.size());
|
2016-08-30 14:05:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const Local<SharedArrayBuffer>& input_buffer() { return input_buffer_; }
|
|
|
|
const Local<SharedArrayBuffer>& output_buffer() { return output_buffer_; }
|
|
|
|
|
|
|
|
static void SetUpTestCase() {
|
|
|
|
flag_was_enabled_ = i::FLAG_harmony_sharedarraybuffer;
|
|
|
|
i::FLAG_harmony_sharedarraybuffer = true;
|
|
|
|
ValueSerializerTest::SetUpTestCase();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void TearDownTestCase() {
|
|
|
|
ValueSerializerTest::TearDownTestCase();
|
|
|
|
i::FLAG_harmony_sharedarraybuffer = flag_was_enabled_;
|
|
|
|
flag_was_enabled_ = false;
|
|
|
|
}
|
|
|
|
|
2017-01-03 22:52:17 +00:00
|
|
|
protected:
|
|
|
|
// GMock doesn't use the "override" keyword.
|
|
|
|
#if __clang__
|
|
|
|
#pragma clang diagnostic push
|
|
|
|
#pragma clang diagnostic ignored "-Winconsistent-missing-override"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class SerializerDelegate : public ValueSerializer::Delegate {
|
|
|
|
public:
|
|
|
|
explicit SerializerDelegate(
|
2018-01-10 21:16:56 +00:00
|
|
|
ValueSerializerTestWithSharedArrayBufferClone* test)
|
2017-01-03 22:52:17 +00:00
|
|
|
: test_(test) {}
|
|
|
|
MOCK_METHOD2(GetSharedArrayBufferId,
|
|
|
|
Maybe<uint32_t>(Isolate* isolate,
|
|
|
|
Local<SharedArrayBuffer> shared_array_buffer));
|
2018-01-10 21:16:56 +00:00
|
|
|
MOCK_METHOD2(GetSharedArrayBufferFromId,
|
|
|
|
MaybeLocal<SharedArrayBuffer>(Isolate* isolate, uint32_t id));
|
2017-01-03 22:52:17 +00:00
|
|
|
void ThrowDataCloneError(Local<String> message) override {
|
|
|
|
test_->isolate()->ThrowException(Exception::Error(message));
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2018-01-10 21:16:56 +00:00
|
|
|
ValueSerializerTestWithSharedArrayBufferClone* test_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DeserializerDelegate : public ValueDeserializer::Delegate {
|
|
|
|
public:
|
|
|
|
explicit DeserializerDelegate(
|
|
|
|
ValueSerializerTestWithSharedArrayBufferClone* test) {}
|
|
|
|
MOCK_METHOD2(GetSharedArrayBufferFromId,
|
|
|
|
MaybeLocal<SharedArrayBuffer>(Isolate* isolate, uint32_t id));
|
2017-01-03 22:52:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#if __clang__
|
|
|
|
#pragma clang diagnostic pop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ValueSerializer::Delegate* GetSerializerDelegate() override {
|
|
|
|
return &serializer_delegate_;
|
|
|
|
}
|
|
|
|
|
2018-01-10 21:16:56 +00:00
|
|
|
ValueDeserializer::Delegate* GetDeserializerDelegate() override {
|
|
|
|
return &deserializer_delegate_;
|
|
|
|
}
|
|
|
|
|
2017-01-03 22:52:17 +00:00
|
|
|
SerializerDelegate serializer_delegate_;
|
2018-01-10 21:16:56 +00:00
|
|
|
DeserializerDelegate deserializer_delegate_;
|
2017-01-03 22:52:17 +00:00
|
|
|
|
2016-08-30 14:05:37 +00:00
|
|
|
private:
|
|
|
|
static bool flag_was_enabled_;
|
2017-10-18 23:58:37 +00:00
|
|
|
std::vector<uint8_t> data_;
|
2016-08-30 14:05:37 +00:00
|
|
|
Local<SharedArrayBuffer> input_buffer_;
|
|
|
|
Local<SharedArrayBuffer> output_buffer_;
|
|
|
|
};
|
|
|
|
|
2018-01-10 21:16:56 +00:00
|
|
|
bool ValueSerializerTestWithSharedArrayBufferClone::flag_was_enabled_ = false;
|
2016-08-30 14:05:37 +00:00
|
|
|
|
2018-01-10 21:16:56 +00:00
|
|
|
TEST_F(ValueSerializerTestWithSharedArrayBufferClone,
|
|
|
|
RoundTripSharedArrayBufferClone) {
|
2017-12-02 00:30:37 +00:00
|
|
|
InitializeData({0x00, 0x01, 0x80, 0xFF});
|
2017-10-18 23:58:37 +00:00
|
|
|
|
2017-01-03 22:52:17 +00:00
|
|
|
EXPECT_CALL(serializer_delegate_,
|
|
|
|
GetSharedArrayBufferId(isolate(), input_buffer()))
|
|
|
|
.WillRepeatedly(Return(Just(0U)));
|
2018-01-10 21:16:56 +00:00
|
|
|
EXPECT_CALL(deserializer_delegate_, GetSharedArrayBufferFromId(isolate(), 0U))
|
|
|
|
.WillRepeatedly(Return(output_buffer()));
|
2017-01-03 22:52:17 +00:00
|
|
|
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest(input_buffer());
|
|
|
|
ASSERT_TRUE(value->IsSharedArrayBuffer());
|
|
|
|
EXPECT_EQ(output_buffer(), value);
|
|
|
|
ExpectScriptTrue("new Uint8Array(result).toString() === '0,1,128,255'");
|
|
|
|
|
|
|
|
Local<Object> object;
|
|
|
|
{
|
|
|
|
Context::Scope scope(serialization_context());
|
|
|
|
object = Object::New(isolate());
|
|
|
|
EXPECT_TRUE(object
|
|
|
|
->CreateDataProperty(serialization_context(),
|
|
|
|
StringFromUtf8("a"), input_buffer())
|
|
|
|
.FromMaybe(false));
|
|
|
|
EXPECT_TRUE(object
|
|
|
|
->CreateDataProperty(serialization_context(),
|
|
|
|
StringFromUtf8("b"), input_buffer())
|
|
|
|
.FromMaybe(false));
|
|
|
|
}
|
|
|
|
value = RoundTripTest(object);
|
|
|
|
ExpectScriptTrue("result.a instanceof SharedArrayBuffer");
|
|
|
|
ExpectScriptTrue("result.a === result.b");
|
|
|
|
ExpectScriptTrue("new Uint8Array(result.a).toString() === '0,1,128,255'");
|
2016-08-30 14:05:37 +00:00
|
|
|
}
|
|
|
|
|
2018-01-10 21:16:56 +00:00
|
|
|
TEST_F(ValueSerializerTestWithSharedArrayBufferClone,
|
2017-10-18 23:58:37 +00:00
|
|
|
RoundTripWebAssemblyMemory) {
|
|
|
|
bool flag_was_enabled = i::FLAG_experimental_wasm_threads;
|
|
|
|
i::FLAG_experimental_wasm_threads = true;
|
|
|
|
|
2017-12-02 00:30:37 +00:00
|
|
|
std::vector<uint8_t> data = {0x00, 0x01, 0x80, 0xFF};
|
2017-10-18 23:58:37 +00:00
|
|
|
data.resize(65536);
|
|
|
|
InitializeData(data);
|
|
|
|
|
|
|
|
EXPECT_CALL(serializer_delegate_,
|
|
|
|
GetSharedArrayBufferId(isolate(), input_buffer()))
|
|
|
|
.WillRepeatedly(Return(Just(0U)));
|
2018-01-10 21:16:56 +00:00
|
|
|
EXPECT_CALL(deserializer_delegate_, GetSharedArrayBufferFromId(isolate(), 0U))
|
|
|
|
.WillRepeatedly(Return(output_buffer()));
|
2017-10-18 23:58:37 +00:00
|
|
|
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> input;
|
|
|
|
{
|
|
|
|
Context::Scope scope(serialization_context());
|
|
|
|
const int32_t kMaxPages = 1;
|
|
|
|
i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate());
|
|
|
|
i::Handle<i::JSArrayBuffer> obj = Utils::OpenHandle(*input_buffer());
|
|
|
|
input = Utils::Convert<i::WasmMemoryObject, Value>(
|
|
|
|
i::WasmMemoryObject::New(i_isolate, obj, kMaxPages));
|
|
|
|
}
|
|
|
|
RoundTripTest(input);
|
|
|
|
ExpectScriptTrue("result instanceof WebAssembly.Memory");
|
|
|
|
ExpectScriptTrue("result.buffer.byteLength === 65536");
|
|
|
|
ExpectScriptTrue(
|
|
|
|
"new Uint8Array(result.buffer, 0, 4).toString() === '0,1,128,255'");
|
2017-10-18 23:58:37 +00:00
|
|
|
|
|
|
|
i::FLAG_experimental_wasm_threads = flag_was_enabled;
|
|
|
|
}
|
|
|
|
|
2016-09-14 16:41:35 +00:00
|
|
|
TEST_F(ValueSerializerTest, UnsupportedHostObject) {
|
|
|
|
InvalidEncodeTest("new ExampleHostObject()");
|
|
|
|
InvalidEncodeTest("({ a: new ExampleHostObject() })");
|
|
|
|
}
|
|
|
|
|
|
|
|
class ValueSerializerTestWithHostObject : public ValueSerializerTest {
|
|
|
|
protected:
|
|
|
|
ValueSerializerTestWithHostObject() : serializer_delegate_(this) {}
|
|
|
|
|
|
|
|
static const uint8_t kExampleHostObjectTag;
|
|
|
|
|
|
|
|
void WriteExampleHostObjectTag() {
|
|
|
|
serializer_->WriteRawBytes(&kExampleHostObjectTag, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ReadExampleHostObjectTag() {
|
|
|
|
const void* tag;
|
|
|
|
return deserializer_->ReadRawBytes(1, &tag) &&
|
|
|
|
*reinterpret_cast<const uint8_t*>(tag) == kExampleHostObjectTag;
|
|
|
|
}
|
|
|
|
|
|
|
|
// GMock doesn't use the "override" keyword.
|
|
|
|
#if __clang__
|
|
|
|
#pragma clang diagnostic push
|
|
|
|
#pragma clang diagnostic ignored "-Winconsistent-missing-override"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class SerializerDelegate : public ValueSerializer::Delegate {
|
|
|
|
public:
|
|
|
|
explicit SerializerDelegate(ValueSerializerTestWithHostObject* test)
|
|
|
|
: test_(test) {}
|
|
|
|
MOCK_METHOD2(WriteHostObject,
|
|
|
|
Maybe<bool>(Isolate* isolate, Local<Object> object));
|
|
|
|
void ThrowDataCloneError(Local<String> message) override {
|
|
|
|
test_->isolate()->ThrowException(Exception::Error(message));
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
ValueSerializerTestWithHostObject* test_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DeserializerDelegate : public ValueDeserializer::Delegate {
|
|
|
|
public:
|
|
|
|
MOCK_METHOD1(ReadHostObject, MaybeLocal<Object>(Isolate* isolate));
|
|
|
|
};
|
|
|
|
|
|
|
|
#if __clang__
|
|
|
|
#pragma clang diagnostic pop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ValueSerializer::Delegate* GetSerializerDelegate() override {
|
|
|
|
return &serializer_delegate_;
|
|
|
|
}
|
|
|
|
void BeforeEncode(ValueSerializer* serializer) override {
|
|
|
|
serializer_ = serializer;
|
|
|
|
}
|
|
|
|
ValueDeserializer::Delegate* GetDeserializerDelegate() override {
|
|
|
|
return &deserializer_delegate_;
|
|
|
|
}
|
|
|
|
void BeforeDecode(ValueDeserializer* deserializer) override {
|
|
|
|
deserializer_ = deserializer;
|
|
|
|
}
|
|
|
|
|
|
|
|
SerializerDelegate serializer_delegate_;
|
|
|
|
DeserializerDelegate deserializer_delegate_;
|
|
|
|
ValueSerializer* serializer_;
|
|
|
|
ValueDeserializer* deserializer_;
|
|
|
|
|
|
|
|
friend class SerializerDelegate;
|
|
|
|
friend class DeserializerDelegate;
|
|
|
|
};
|
|
|
|
|
2017-02-28 02:16:30 +00:00
|
|
|
// This is a tag that is used in V8. Using this ensures that we have separate
|
|
|
|
// tag namespaces.
|
|
|
|
const uint8_t ValueSerializerTestWithHostObject::kExampleHostObjectTag = 'T';
|
2016-09-14 16:41:35 +00:00
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithHostObject, RoundTripUint32) {
|
|
|
|
// The host can serialize data as uint32_t.
|
|
|
|
EXPECT_CALL(serializer_delegate_, WriteHostObject(isolate(), _))
|
|
|
|
.WillRepeatedly(Invoke([this](Isolate*, Local<Object> object) {
|
|
|
|
uint32_t value = 0;
|
|
|
|
EXPECT_TRUE(object->GetInternalField(0)
|
|
|
|
->Uint32Value(serialization_context())
|
|
|
|
.To(&value));
|
|
|
|
WriteExampleHostObjectTag();
|
|
|
|
serializer_->WriteUint32(value);
|
|
|
|
return Just(true);
|
|
|
|
}));
|
|
|
|
EXPECT_CALL(deserializer_delegate_, ReadHostObject(isolate()))
|
|
|
|
.WillRepeatedly(Invoke([this](Isolate*) {
|
|
|
|
EXPECT_TRUE(ReadExampleHostObjectTag());
|
|
|
|
uint32_t value = 0;
|
|
|
|
EXPECT_TRUE(deserializer_->ReadUint32(&value));
|
|
|
|
Local<Value> argv[] = {Integer::NewFromUnsigned(isolate(), value)};
|
|
|
|
return NewHostObject(deserialization_context(), arraysize(argv), argv);
|
|
|
|
}));
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest("new ExampleHostObject(42)");
|
|
|
|
ASSERT_TRUE(value->IsObject());
|
|
|
|
ASSERT_TRUE(Object::Cast(*value)->InternalFieldCount());
|
|
|
|
ExpectScriptTrue(
|
|
|
|
"Object.getPrototypeOf(result) === ExampleHostObject.prototype");
|
|
|
|
ExpectScriptTrue("result.value === 42");
|
|
|
|
|
|
|
|
value = RoundTripTest("new ExampleHostObject(0xCAFECAFE)");
|
|
|
|
ExpectScriptTrue("result.value === 0xCAFECAFE");
|
2016-09-14 16:41:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithHostObject, RoundTripUint64) {
|
|
|
|
// The host can serialize data as uint64_t.
|
|
|
|
EXPECT_CALL(serializer_delegate_, WriteHostObject(isolate(), _))
|
|
|
|
.WillRepeatedly(Invoke([this](Isolate*, Local<Object> object) {
|
|
|
|
uint32_t value = 0, value2 = 0;
|
|
|
|
EXPECT_TRUE(object->GetInternalField(0)
|
|
|
|
->Uint32Value(serialization_context())
|
|
|
|
.To(&value));
|
|
|
|
EXPECT_TRUE(object->GetInternalField(1)
|
|
|
|
->Uint32Value(serialization_context())
|
|
|
|
.To(&value2));
|
|
|
|
WriteExampleHostObjectTag();
|
|
|
|
serializer_->WriteUint64((static_cast<uint64_t>(value) << 32) | value2);
|
|
|
|
return Just(true);
|
|
|
|
}));
|
|
|
|
EXPECT_CALL(deserializer_delegate_, ReadHostObject(isolate()))
|
|
|
|
.WillRepeatedly(Invoke([this](Isolate*) {
|
|
|
|
EXPECT_TRUE(ReadExampleHostObjectTag());
|
|
|
|
uint64_t value_packed;
|
|
|
|
EXPECT_TRUE(deserializer_->ReadUint64(&value_packed));
|
|
|
|
Local<Value> argv[] = {
|
|
|
|
Integer::NewFromUnsigned(isolate(),
|
|
|
|
static_cast<uint32_t>(value_packed >> 32)),
|
|
|
|
Integer::NewFromUnsigned(isolate(),
|
|
|
|
static_cast<uint32_t>(value_packed))};
|
|
|
|
return NewHostObject(deserialization_context(), arraysize(argv), argv);
|
|
|
|
}));
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest("new ExampleHostObject(42, 0)");
|
|
|
|
ASSERT_TRUE(value->IsObject());
|
|
|
|
ASSERT_TRUE(Object::Cast(*value)->InternalFieldCount());
|
|
|
|
ExpectScriptTrue(
|
|
|
|
"Object.getPrototypeOf(result) === ExampleHostObject.prototype");
|
|
|
|
ExpectScriptTrue("result.value === 42");
|
|
|
|
ExpectScriptTrue("result.value2 === 0");
|
|
|
|
|
|
|
|
value = RoundTripTest("new ExampleHostObject(0xFFFFFFFF, 0x12345678)");
|
|
|
|
ExpectScriptTrue("result.value === 0xFFFFFFFF");
|
|
|
|
ExpectScriptTrue("result.value2 === 0x12345678");
|
2016-09-14 16:41:35 +00:00
|
|
|
}
|
|
|
|
|
2016-10-04 13:44:19 +00:00
|
|
|
TEST_F(ValueSerializerTestWithHostObject, RoundTripDouble) {
|
|
|
|
// The host can serialize data as double.
|
|
|
|
EXPECT_CALL(serializer_delegate_, WriteHostObject(isolate(), _))
|
|
|
|
.WillRepeatedly(Invoke([this](Isolate*, Local<Object> object) {
|
|
|
|
double value = 0;
|
|
|
|
EXPECT_TRUE(object->GetInternalField(0)
|
|
|
|
->NumberValue(serialization_context())
|
|
|
|
.To(&value));
|
|
|
|
WriteExampleHostObjectTag();
|
|
|
|
serializer_->WriteDouble(value);
|
|
|
|
return Just(true);
|
|
|
|
}));
|
|
|
|
EXPECT_CALL(deserializer_delegate_, ReadHostObject(isolate()))
|
|
|
|
.WillRepeatedly(Invoke([this](Isolate*) {
|
|
|
|
EXPECT_TRUE(ReadExampleHostObjectTag());
|
|
|
|
double value = 0;
|
|
|
|
EXPECT_TRUE(deserializer_->ReadDouble(&value));
|
|
|
|
Local<Value> argv[] = {Number::New(isolate(), value)};
|
|
|
|
return NewHostObject(deserialization_context(), arraysize(argv), argv);
|
|
|
|
}));
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest("new ExampleHostObject(-3.5)");
|
|
|
|
ASSERT_TRUE(value->IsObject());
|
|
|
|
ASSERT_TRUE(Object::Cast(*value)->InternalFieldCount());
|
|
|
|
ExpectScriptTrue(
|
|
|
|
"Object.getPrototypeOf(result) === ExampleHostObject.prototype");
|
|
|
|
ExpectScriptTrue("result.value === -3.5");
|
|
|
|
|
|
|
|
value = RoundTripTest("new ExampleHostObject(NaN)");
|
|
|
|
ExpectScriptTrue("Number.isNaN(result.value)");
|
|
|
|
|
|
|
|
value = RoundTripTest("new ExampleHostObject(Infinity)");
|
|
|
|
ExpectScriptTrue("result.value === Infinity");
|
|
|
|
|
|
|
|
value = RoundTripTest("new ExampleHostObject(-0)");
|
|
|
|
ExpectScriptTrue("1/result.value === -Infinity");
|
2016-10-04 13:44:19 +00:00
|
|
|
}
|
|
|
|
|
2016-09-14 16:41:35 +00:00
|
|
|
TEST_F(ValueSerializerTestWithHostObject, RoundTripRawBytes) {
|
|
|
|
// The host can serialize arbitrary raw bytes.
|
|
|
|
const struct {
|
|
|
|
uint64_t u64;
|
|
|
|
uint32_t u32;
|
|
|
|
char str[12];
|
|
|
|
} sample_data = {0x1234567812345678, 0x87654321, "Hello world"};
|
|
|
|
EXPECT_CALL(serializer_delegate_, WriteHostObject(isolate(), _))
|
|
|
|
.WillRepeatedly(
|
|
|
|
Invoke([this, &sample_data](Isolate*, Local<Object> object) {
|
|
|
|
WriteExampleHostObjectTag();
|
|
|
|
serializer_->WriteRawBytes(&sample_data, sizeof(sample_data));
|
|
|
|
return Just(true);
|
|
|
|
}));
|
|
|
|
EXPECT_CALL(deserializer_delegate_, ReadHostObject(isolate()))
|
|
|
|
.WillRepeatedly(Invoke([this, &sample_data](Isolate*) {
|
|
|
|
EXPECT_TRUE(ReadExampleHostObjectTag());
|
|
|
|
const void* copied_data = nullptr;
|
|
|
|
EXPECT_TRUE(
|
|
|
|
deserializer_->ReadRawBytes(sizeof(sample_data), &copied_data));
|
|
|
|
if (copied_data) {
|
|
|
|
EXPECT_EQ(0, memcmp(&sample_data, copied_data, sizeof(sample_data)));
|
|
|
|
}
|
|
|
|
return NewHostObject(deserialization_context(), 0, nullptr);
|
|
|
|
}));
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest("new ExampleHostObject()");
|
|
|
|
ASSERT_TRUE(value->IsObject());
|
|
|
|
ASSERT_TRUE(Object::Cast(*value)->InternalFieldCount());
|
|
|
|
ExpectScriptTrue(
|
|
|
|
"Object.getPrototypeOf(result) === ExampleHostObject.prototype");
|
2016-09-14 16:41:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithHostObject, RoundTripSameObject) {
|
|
|
|
// If the same object exists in two places, the delegate should be invoked
|
|
|
|
// only once, and the objects should be the same (by reference equality) on
|
|
|
|
// the other side.
|
|
|
|
EXPECT_CALL(serializer_delegate_, WriteHostObject(isolate(), _))
|
|
|
|
.WillOnce(Invoke([this](Isolate*, Local<Object> object) {
|
|
|
|
WriteExampleHostObjectTag();
|
|
|
|
return Just(true);
|
|
|
|
}));
|
|
|
|
EXPECT_CALL(deserializer_delegate_, ReadHostObject(isolate()))
|
|
|
|
.WillOnce(Invoke([this](Isolate*) {
|
|
|
|
EXPECT_TRUE(ReadExampleHostObjectTag());
|
|
|
|
return NewHostObject(deserialization_context(), 0, nullptr);
|
|
|
|
}));
|
2018-02-27 01:27:12 +00:00
|
|
|
RoundTripTest("({ a: new ExampleHostObject(), get b() { return this.a; }})");
|
|
|
|
ExpectScriptTrue("result.a instanceof ExampleHostObject");
|
|
|
|
ExpectScriptTrue("result.a === result.b");
|
2016-09-14 16:41:35 +00:00
|
|
|
}
|
|
|
|
|
2017-02-28 02:16:30 +00:00
|
|
|
TEST_F(ValueSerializerTestWithHostObject, DecodeSimpleHostObject) {
|
|
|
|
EXPECT_CALL(deserializer_delegate_, ReadHostObject(isolate()))
|
|
|
|
.WillRepeatedly(Invoke([this](Isolate*) {
|
|
|
|
EXPECT_TRUE(ReadExampleHostObjectTag());
|
|
|
|
return NewHostObject(deserialization_context(), 0, nullptr);
|
|
|
|
}));
|
2018-02-27 01:27:12 +00:00
|
|
|
DecodeTest({0xFF, 0x0D, 0x5C, kExampleHostObjectTag});
|
|
|
|
ExpectScriptTrue(
|
|
|
|
"Object.getPrototypeOf(result) === ExampleHostObject.prototype");
|
2017-02-28 02:16:30 +00:00
|
|
|
}
|
|
|
|
|
2017-02-17 14:19:39 +00:00
|
|
|
class ValueSerializerTestWithHostArrayBufferView
|
|
|
|
: public ValueSerializerTestWithHostObject {
|
|
|
|
protected:
|
|
|
|
void BeforeEncode(ValueSerializer* serializer) override {
|
|
|
|
ValueSerializerTestWithHostObject::BeforeEncode(serializer);
|
|
|
|
serializer_->SetTreatArrayBufferViewsAsHostObjects(true);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithHostArrayBufferView, RoundTripUint8ArrayInput) {
|
|
|
|
EXPECT_CALL(serializer_delegate_, WriteHostObject(isolate(), _))
|
|
|
|
.WillOnce(Invoke([this](Isolate*, Local<Object> object) {
|
|
|
|
EXPECT_TRUE(object->IsUint8Array());
|
|
|
|
WriteExampleHostObjectTag();
|
|
|
|
return Just(true);
|
|
|
|
}));
|
|
|
|
EXPECT_CALL(deserializer_delegate_, ReadHostObject(isolate()))
|
|
|
|
.WillOnce(Invoke([this](Isolate*) {
|
|
|
|
EXPECT_TRUE(ReadExampleHostObjectTag());
|
|
|
|
return NewDummyUint8Array();
|
|
|
|
}));
|
|
|
|
RoundTripTest(
|
2018-02-27 01:27:12 +00:00
|
|
|
"({ a: new Uint8Array([1, 2, 3]), get b() { return this.a; }})");
|
|
|
|
ExpectScriptTrue("result.a instanceof Uint8Array");
|
|
|
|
ExpectScriptTrue("result.a.toString() === '4,5,6'");
|
|
|
|
ExpectScriptTrue("result.a === result.b");
|
2017-02-17 14:19:39 +00:00
|
|
|
}
|
|
|
|
|
2016-11-04 15:35:13 +00:00
|
|
|
// It's expected that WebAssembly has more exhaustive tests elsewhere; this
|
|
|
|
// mostly checks that the logic to embed it in structured clone serialization
|
|
|
|
// works correctly.
|
|
|
|
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
// A simple module which exports an "increment" function.
|
|
|
|
// Copied from test/mjsunit/wasm/incrementer.wasm.
|
|
|
|
const unsigned char kIncrementerWasm[] = {
|
|
|
|
0, 97, 115, 109, 1, 0, 0, 0, 1, 6, 1, 96, 1, 127, 1, 127,
|
|
|
|
3, 2, 1, 0, 7, 13, 1, 9, 105, 110, 99, 114, 101, 109, 101, 110,
|
|
|
|
116, 0, 0, 10, 9, 1, 7, 0, 32, 0, 65, 1, 106, 11,
|
|
|
|
};
|
|
|
|
|
2016-11-04 15:35:13 +00:00
|
|
|
class ValueSerializerTestWithWasm : public ValueSerializerTest {
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
public:
|
|
|
|
static const char* kUnsupportedSerialization;
|
|
|
|
|
|
|
|
ValueSerializerTestWithWasm()
|
|
|
|
: serialize_delegate_(&transfer_modules_),
|
|
|
|
deserialize_delegate_(&transfer_modules_) {}
|
|
|
|
|
|
|
|
void Reset() {
|
|
|
|
current_serializer_delegate_ = nullptr;
|
|
|
|
transfer_modules_.clear();
|
|
|
|
SetExpectInlineWasm(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EnableTransferSerialization() {
|
|
|
|
current_serializer_delegate_ = &serialize_delegate_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EnableTransferDeserialization() {
|
|
|
|
current_deserializer_delegate_ = &deserialize_delegate_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EnableThrowingSerializer() {
|
|
|
|
current_serializer_delegate_ = &throwing_serializer_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EnableDefaultDeserializer() {
|
|
|
|
current_deserializer_delegate_ = &default_deserializer_;
|
|
|
|
}
|
|
|
|
|
2016-11-04 15:35:13 +00:00
|
|
|
protected:
|
|
|
|
static void SetUpTestCase() {
|
|
|
|
g_saved_flag = i::FLAG_expose_wasm;
|
|
|
|
i::FLAG_expose_wasm = true;
|
|
|
|
ValueSerializerTest::SetUpTestCase();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void TearDownTestCase() {
|
|
|
|
ValueSerializerTest::TearDownTestCase();
|
|
|
|
i::FLAG_expose_wasm = g_saved_flag;
|
|
|
|
g_saved_flag = false;
|
|
|
|
}
|
|
|
|
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
class ThrowingSerializer : public ValueSerializer::Delegate {
|
|
|
|
public:
|
|
|
|
Maybe<uint32_t> GetWasmModuleTransferId(
|
|
|
|
Isolate* isolate, Local<WasmCompiledModule> module) override {
|
|
|
|
isolate->ThrowException(Exception::Error(
|
|
|
|
String::NewFromOneByte(
|
|
|
|
isolate,
|
|
|
|
reinterpret_cast<const uint8_t*>(kUnsupportedSerialization),
|
|
|
|
NewStringType::kNormal)
|
|
|
|
.ToLocalChecked()));
|
|
|
|
return Nothing<uint32_t>();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThrowDataCloneError(Local<String> message) override { UNREACHABLE(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
class SerializeToTransfer : public ValueSerializer::Delegate {
|
|
|
|
public:
|
|
|
|
SerializeToTransfer(
|
|
|
|
std::vector<WasmCompiledModule::TransferrableModule>* modules)
|
|
|
|
: modules_(modules) {}
|
|
|
|
Maybe<uint32_t> GetWasmModuleTransferId(
|
|
|
|
Isolate* isolate, Local<WasmCompiledModule> module) override {
|
|
|
|
modules_->push_back(module->GetTransferrableModule());
|
|
|
|
return Just(static_cast<uint32_t>(modules_->size()) - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThrowDataCloneError(Local<String> message) override { UNREACHABLE(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<WasmCompiledModule::TransferrableModule>* modules_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DeserializeFromTransfer : public ValueDeserializer::Delegate {
|
|
|
|
public:
|
|
|
|
DeserializeFromTransfer(
|
|
|
|
std::vector<WasmCompiledModule::TransferrableModule>* modules)
|
|
|
|
: modules_(modules) {}
|
|
|
|
|
|
|
|
MaybeLocal<WasmCompiledModule> GetWasmModuleFromId(Isolate* isolate,
|
|
|
|
uint32_t id) override {
|
|
|
|
return WasmCompiledModule::FromTransferrableModule(isolate,
|
|
|
|
modules_->at(id));
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<WasmCompiledModule::TransferrableModule>* modules_;
|
|
|
|
};
|
|
|
|
|
|
|
|
ValueSerializer::Delegate* GetSerializerDelegate() override {
|
|
|
|
return current_serializer_delegate_;
|
|
|
|
}
|
|
|
|
|
|
|
|
ValueDeserializer::Delegate* GetDeserializerDelegate() override {
|
|
|
|
return current_deserializer_delegate_;
|
|
|
|
}
|
|
|
|
|
|
|
|
Local<WasmCompiledModule> MakeWasm() {
|
2018-02-27 01:27:12 +00:00
|
|
|
Context::Scope scope(serialization_context());
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
return WasmCompiledModule::DeserializeOrCompile(
|
|
|
|
isolate(), {nullptr, 0},
|
|
|
|
{kIncrementerWasm, sizeof(kIncrementerWasm)})
|
|
|
|
.ToLocalChecked();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ExpectPass() {
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest(MakeWasm());
|
|
|
|
Context::Scope scope(deserialization_context());
|
|
|
|
ASSERT_TRUE(value->IsWebAssemblyCompiledModule());
|
|
|
|
ExpectScriptTrue(
|
|
|
|
"new WebAssembly.Instance(result).exports.increment(8) === 9");
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ExpectFail() {
|
2018-02-27 01:27:12 +00:00
|
|
|
const std::vector<uint8_t> data = EncodeTest(MakeWasm());
|
|
|
|
InvalidDecodeTest(data);
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Local<Value> GetComplexObjectWithDuplicate() {
|
2018-02-27 01:27:12 +00:00
|
|
|
Context::Scope scope(serialization_context());
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
Local<Value> wasm_module = MakeWasm();
|
|
|
|
serialization_context()
|
|
|
|
->Global()
|
|
|
|
->CreateDataProperty(serialization_context(),
|
|
|
|
StringFromUtf8("wasm_module"), wasm_module)
|
|
|
|
.FromMaybe(false);
|
|
|
|
Local<Script> script =
|
|
|
|
Script::Compile(
|
|
|
|
serialization_context(),
|
|
|
|
StringFromUtf8("({mod1: wasm_module, num: 2, mod2: wasm_module})"))
|
|
|
|
.ToLocalChecked();
|
|
|
|
return script->Run(serialization_context()).ToLocalChecked();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VerifyComplexObject(Local<Value> value) {
|
|
|
|
ASSERT_TRUE(value->IsObject());
|
2018-02-27 01:27:12 +00:00
|
|
|
ExpectScriptTrue("result.mod1 instanceof WebAssembly.Module");
|
|
|
|
ExpectScriptTrue("result.mod2 instanceof WebAssembly.Module");
|
|
|
|
ExpectScriptTrue("result.num === 2");
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Local<Value> GetComplexObjectWithMany() {
|
2018-02-27 01:27:12 +00:00
|
|
|
Context::Scope scope(serialization_context());
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
Local<Value> wasm_module1 = MakeWasm();
|
|
|
|
Local<Value> wasm_module2 = MakeWasm();
|
|
|
|
serialization_context()
|
|
|
|
->Global()
|
|
|
|
->CreateDataProperty(serialization_context(),
|
|
|
|
StringFromUtf8("wasm_module1"), wasm_module1)
|
|
|
|
.FromMaybe(false);
|
|
|
|
serialization_context()
|
|
|
|
->Global()
|
|
|
|
->CreateDataProperty(serialization_context(),
|
|
|
|
StringFromUtf8("wasm_module2"), wasm_module2)
|
|
|
|
.FromMaybe(false);
|
|
|
|
Local<Script> script =
|
|
|
|
Script::Compile(
|
|
|
|
serialization_context(),
|
|
|
|
StringFromUtf8(
|
|
|
|
"({mod1: wasm_module1, num: 2, mod2: wasm_module2})"))
|
|
|
|
.ToLocalChecked();
|
|
|
|
return script->Run(serialization_context()).ToLocalChecked();
|
|
|
|
}
|
|
|
|
|
2016-11-04 15:35:13 +00:00
|
|
|
private:
|
|
|
|
static bool g_saved_flag;
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
std::vector<WasmCompiledModule::TransferrableModule> transfer_modules_;
|
|
|
|
SerializeToTransfer serialize_delegate_;
|
|
|
|
DeserializeFromTransfer deserialize_delegate_;
|
|
|
|
ValueSerializer::Delegate* current_serializer_delegate_ = nullptr;
|
|
|
|
ValueDeserializer::Delegate* current_deserializer_delegate_ = nullptr;
|
|
|
|
ThrowingSerializer throwing_serializer_;
|
|
|
|
ValueDeserializer::Delegate default_deserializer_;
|
2016-11-04 15:35:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bool ValueSerializerTestWithWasm::g_saved_flag = false;
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
const char* ValueSerializerTestWithWasm::kUnsupportedSerialization =
|
|
|
|
"Wasm Serialization Not Supported";
|
|
|
|
|
|
|
|
// The default implementation of the serialization
|
|
|
|
// delegate throws when trying to serialize wasm. The
|
|
|
|
// embedder must decide serialization policy.
|
|
|
|
TEST_F(ValueSerializerTestWithWasm, DefaultSerializationDelegate) {
|
|
|
|
EnableThrowingSerializer();
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Message> message = InvalidEncodeTest(MakeWasm());
|
|
|
|
size_t msg_len = static_cast<size_t>(message->Get()->Length());
|
|
|
|
std::unique_ptr<char[]> buff(new char[msg_len + 1]);
|
|
|
|
message->Get()->WriteOneByte(reinterpret_cast<uint8_t*>(buff.get()));
|
|
|
|
// the message ends with the custom error string
|
|
|
|
size_t custom_msg_len = strlen(kUnsupportedSerialization);
|
|
|
|
ASSERT_GE(msg_len, custom_msg_len);
|
|
|
|
size_t start_pos = msg_len - custom_msg_len;
|
|
|
|
ASSERT_EQ(strcmp(&buff.get()[start_pos], kUnsupportedSerialization), 0);
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
}
|
2016-11-04 15:35:13 +00:00
|
|
|
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
// The default deserializer throws if wasm transfer is attempted
|
|
|
|
TEST_F(ValueSerializerTestWithWasm, DefaultDeserializationDelegate) {
|
|
|
|
EnableTransferSerialization();
|
|
|
|
EnableDefaultDeserializer();
|
2018-02-27 01:27:12 +00:00
|
|
|
ExpectFail();
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
}
|
[wasm] Transferrable modules
We want to restrict structured cloning in Chrome to:
- postMessage senders and receivers that are co-located
in the same process
- indexedDB (just https).
For context, on the Chrome side, we will achieve the postMessage part
by using a mechanism similar to transferrables: the
SerializedScriptValue will have a list of wasm modules, separate from
the serialized data stream; and this list won't be copied cross
process boundaries. The IDB part is achieved by explicitly opting in
reading/writing to the serialization stream. To block attack vectors
in IPC cases, the default for deserialization will be to expect data
in the wasm transfers list.
This change is the V8 side necessary to enabling this design. We
introduce TransferrableModule, an opaque datatype exposed to the
embedder. Internally, TransferrableModules are just serialized data,
because we don't have a better mechanism, at the moment, for
de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
Context).
The chrome defaults will be implemented in the
serialization/deserialization delegates on that side. For the v8 side
of things, in the absence of a serialization delegate, the V8
serializer will write to serialization stream. In the absence of a
deserialization delegate, the deserializer won't work. This asymmetry
is intentional - it communicates to the embedder the need to make a
policy decision, otherwise wasm serialization/deserialization won't
work "out of the box".
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2748473004
Cr-Commit-Position: refs/heads/master@{#43955}
2017-03-20 19:03:23 +00:00
|
|
|
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
// We only want to allow deserialization through
|
|
|
|
// transferred modules - which requres both serializer
|
|
|
|
// and deserializer to understand that - or through
|
|
|
|
// explicitly allowing inlined data, which requires
|
|
|
|
// deserializer opt-in (we default the serializer to
|
|
|
|
// inlined data because we don't trust that data on the
|
|
|
|
// receiving end anyway).
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithWasm, RoundtripWasmTransfer) {
|
|
|
|
EnableTransferSerialization();
|
|
|
|
EnableTransferDeserialization();
|
|
|
|
ExpectPass();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithWasm, RountripWasmInline) {
|
|
|
|
SetExpectInlineWasm(true);
|
|
|
|
ExpectPass();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithWasm, CannotDeserializeWasmInlineData) {
|
|
|
|
ExpectFail();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithWasm, CannotTransferWasmWhenExpectingInline) {
|
|
|
|
EnableTransferSerialization();
|
|
|
|
SetExpectInlineWasm(true);
|
|
|
|
ExpectFail();
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithWasm, ComplexObjectDuplicateTransfer) {
|
|
|
|
EnableTransferSerialization();
|
|
|
|
EnableTransferDeserialization();
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest(GetComplexObjectWithDuplicate());
|
|
|
|
VerifyComplexObject(value);
|
|
|
|
ExpectScriptTrue("result.mod1 === result.mod2");
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithWasm, ComplexObjectDuplicateInline) {
|
|
|
|
SetExpectInlineWasm(true);
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest(GetComplexObjectWithDuplicate());
|
|
|
|
VerifyComplexObject(value);
|
|
|
|
ExpectScriptTrue("result.mod1 === result.mod2");
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithWasm, ComplexObjectWithManyTransfer) {
|
|
|
|
EnableTransferSerialization();
|
|
|
|
EnableTransferDeserialization();
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest(GetComplexObjectWithMany());
|
|
|
|
VerifyComplexObject(value);
|
|
|
|
ExpectScriptTrue("result.mod1 != result.mod2");
|
Reland of [wasm] Transferrable modules (patchset #1 id:1 of https://codereview.chromium.org/2762163002/ )
Reason for revert:
Temporarily disabled tests on chromium side (https://codereview.chromium.org/2764933002)
Original issue's description:
> Revert of [wasm] Transferrable modules (patchset #13 id:280001 of https://codereview.chromium.org/2748473004/ )
>
> Reason for revert:
> Breaks layout tests:
> https://build.chromium.org/p/client.v8.fyi/builders/V8-Blink%20Linux%2064/builds/14312
>
> See https://github.com/v8/v8/wiki/Blink-layout-tests
>
> Original issue's description:
> > [wasm] Transferrable modules
> >
> > We want to restrict structured cloning in Chrome to:
> > - postMessage senders and receivers that are co-located
> > in the same process
> > - indexedDB (just https).
> >
> > For context, on the Chrome side, we will achieve the postMessage part
> > by using a mechanism similar to transferrables: the
> > SerializedScriptValue will have a list of wasm modules, separate from
> > the serialized data stream; and this list won't be copied cross
> > process boundaries. The IDB part is achieved by explicitly opting in
> > reading/writing to the serialization stream. To block attack vectors
> > in IPC cases, the default for deserialization will be to expect data
> > in the wasm transfers list.
> >
> > This change is the V8 side necessary to enabling this design. We
> > introduce TransferrableModule, an opaque datatype exposed to the
> > embedder. Internally, TransferrableModules are just serialized data,
> > because we don't have a better mechanism, at the moment, for
> > de-contextualizing/re-contextualizing wasm modules (wrt Isolate and
> > Context).
> >
> > The chrome defaults will be implemented in the
> > serialization/deserialization delegates on that side. For the v8 side
> > of things, in the absence of a serialization delegate, the V8
> > serializer will write to serialization stream. In the absence of a
> > deserialization delegate, the deserializer won't work. This asymmetry
> > is intentional - it communicates to the embedder the need to make a
> > policy decision, otherwise wasm serialization/deserialization won't
> > work "out of the box".
> >
> > BUG=v8:6079
> >
> > Review-Url: https://codereview.chromium.org/2748473004
> > Cr-Commit-Position: refs/heads/master@{#43955}
> > Committed: https://chromium.googlesource.com/v8/v8/+/99743ad460ea5b9795ba9d70a074e75d7362a3d1
>
> TBR=jbroman@chromium.org,bradnelson@chromium.org,mtrofin@chromium.org
> # Skipping CQ checks because original CL landed less than 1 days ago.
> NOPRESUBMIT=true
> NOTREECHECKS=true
> NOTRY=true
> BUG=v8:6079
>
> Review-Url: https://codereview.chromium.org/2762163002
> Cr-Commit-Position: refs/heads/master@{#43981}
> Committed: https://chromium.googlesource.com/v8/v8/+/e538b70e1a45289dfe0fa9789563f023a5e9c22b
TBR=jbroman@chromium.org,bradnelson@chromium.org,machenbach@chromium.org
# Skipping CQ checks because original CL landed less than 1 days ago.
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=v8:6079
Review-Url: https://codereview.chromium.org/2762273002
Cr-Commit-Position: refs/heads/master@{#43994}
2017-03-21 17:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithWasm, ComplexObjectWithManyInline) {
|
|
|
|
SetExpectInlineWasm(true);
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = RoundTripTest(GetComplexObjectWithMany());
|
|
|
|
VerifyComplexObject(value);
|
|
|
|
ExpectScriptTrue("result.mod1 != result.mod2");
|
2016-11-04 15:35:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// As produced around Chrome 56.
|
|
|
|
const unsigned char kSerializedIncrementerWasm[] = {
|
2017-12-02 00:30:37 +00:00
|
|
|
0xFF, 0x09, 0x3F, 0x00, 0x57, 0x79, 0x2D, 0x00, 0x61, 0x73, 0x6D, 0x0D,
|
|
|
|
0x00, 0x00, 0x00, 0x01, 0x06, 0x01, 0x60, 0x01, 0x7F, 0x01, 0x7F, 0x03,
|
|
|
|
0x02, 0x01, 0x00, 0x07, 0x0D, 0x01, 0x09, 0x69, 0x6E, 0x63, 0x72, 0x65,
|
|
|
|
0x6D, 0x65, 0x6E, 0x74, 0x00, 0x00, 0x0A, 0x08, 0x01, 0x06, 0x00, 0x20,
|
|
|
|
0x00, 0x41, 0x01, 0x6A, 0xF8, 0x04, 0xA1, 0x06, 0xDE, 0xC0, 0xC6, 0x44,
|
|
|
|
0x3C, 0x29, 0x00, 0x00, 0x00, 0x00, 0x1F, 0x02, 0x00, 0x00, 0x81, 0x4E,
|
|
|
|
0xCE, 0x7C, 0x05, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x30, 0x02,
|
|
|
|
0x00, 0x00, 0xB0, 0x25, 0x30, 0xE3, 0xF2, 0xDB, 0x2E, 0x48, 0x00, 0x00,
|
|
|
|
0x00, 0x80, 0xE8, 0x00, 0x00, 0x80, 0xE0, 0x01, 0x00, 0x80, 0x00, 0x00,
|
2016-11-04 15:35:13 +00:00
|
|
|
0x00, 0x80, 0x00, 0x00, 0x00, 0x80, 0x07, 0x08, 0x00, 0x00, 0x09, 0x04,
|
2017-12-02 00:30:37 +00:00
|
|
|
0x10, 0x02, 0x00, 0x00, 0x00, 0x00, 0x01, 0x3C, 0x8C, 0xC0, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x0D, 0x00, 0x00, 0x00, 0x01, 0x10, 0x8C, 0xC0, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x02, 0x70, 0x94, 0x01, 0x0C, 0x8B,
|
|
|
|
0xC1, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x25, 0xDC, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x9E, 0x01, 0x10, 0x8C, 0xC0, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0x84, 0xC0, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x05, 0x7D, 0x01, 0x1A, 0xE1, 0x02, 0x00, 0x00,
|
2016-11-04 15:35:13 +00:00
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x23, 0x88, 0x42, 0x32, 0x03,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x00,
|
2017-12-02 00:30:37 +00:00
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x00, 0x00, 0x00, 0x04, 0x00,
|
|
|
|
0x00, 0x02, 0xA1, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF,
|
|
|
|
0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x49, 0x3B, 0xA5, 0x60, 0x0C, 0x00,
|
|
|
|
0x00, 0x0F, 0x86, 0x04, 0x00, 0x00, 0x00, 0x83, 0xC0, 0x01, 0xC3, 0x55,
|
|
|
|
0x48, 0x89, 0xE5, 0x49, 0xBA, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00,
|
|
|
|
0x00, 0x41, 0x52, 0x48, 0x83, 0xEC, 0x08, 0x48, 0x89, 0x45, 0xF0, 0x48,
|
|
|
|
0xBB, 0xB0, 0x67, 0xC6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0xC0, 0x48,
|
|
|
|
0xBE, 0xE1, 0x57, 0x81, 0x85, 0xF6, 0x14, 0x00, 0x00, 0xE8, 0xFC, 0x3C,
|
|
|
|
0xEA, 0xFF, 0x48, 0x8B, 0x45, 0xF0, 0x48, 0x8B, 0xE5, 0x5D, 0xEB, 0xBF,
|
2016-11-04 15:35:13 +00:00
|
|
|
0x66, 0x90, 0x01, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0x44, 0x00,
|
2017-12-02 00:30:37 +00:00
|
|
|
0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x0F, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00,
|
2016-11-04 15:35:13 +00:00
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
2017-12-02 00:30:37 +00:00
|
|
|
0x00, 0x00, 0x0F, 0x20, 0x84, 0x0F, 0x7D, 0x01, 0x0D, 0x00, 0x0F, 0x04,
|
|
|
|
0x6D, 0x08, 0x0F, 0xF0, 0x02, 0x80, 0x94, 0x01, 0x0C, 0x8B, 0xC1, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, 0xED, 0xA9, 0x2D, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x9E, 0xE0, 0x38, 0x1A, 0x61, 0x03, 0x00, 0x00, 0x00,
|
2016-11-04 15:35:13 +00:00
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x23, 0x88, 0x42, 0x32, 0x03, 0x00,
|
2017-12-02 00:30:37 +00:00
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x9A, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x4E, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00,
|
|
|
|
0x02, 0xF9, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF,
|
|
|
|
0xFF, 0x00, 0x00, 0x00, 0x00, 0x55, 0x48, 0x89, 0xE5, 0x56, 0x57, 0x48,
|
|
|
|
0x8B, 0x45, 0x10, 0xE8, 0x11, 0xED, 0xED, 0xFF, 0xA8, 0x01, 0x0F, 0x85,
|
|
|
|
0x2D, 0x00, 0x00, 0x00, 0x48, 0xC1, 0xE8, 0x20, 0xC5, 0xF9, 0x57, 0xC0,
|
|
|
|
0xC5, 0xFB, 0x2A, 0xC0, 0xC4, 0xE1, 0xFB, 0x2C, 0xC0, 0x48, 0x83, 0xF8,
|
|
|
|
0x01, 0x0F, 0x80, 0x34, 0x00, 0x00, 0x00, 0x8B, 0xC0, 0xE8, 0x27, 0xFE,
|
|
|
|
0xFF, 0xFF, 0x48, 0xC1, 0xE0, 0x20, 0x48, 0x8B, 0xE5, 0x5D, 0xC2, 0x10,
|
|
|
|
0x00, 0x49, 0x39, 0x45, 0xA0, 0x0F, 0x84, 0x07, 0x00, 0x00, 0x00, 0xC5,
|
|
|
|
0xFB, 0x10, 0x40, 0x07, 0xEB, 0xCE, 0x49, 0xBA, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0xF8, 0x7F, 0xC4, 0xC1, 0xF9, 0x6E, 0xC2, 0xEB, 0xBD, 0x48,
|
|
|
|
0x83, 0xEC, 0x08, 0xC5, 0xFB, 0x11, 0x04, 0x24, 0xE8, 0xCC, 0xFE, 0xFF,
|
|
|
|
0xFF, 0x48, 0x83, 0xC4, 0x08, 0xEB, 0xB8, 0x66, 0x90, 0x02, 0x00, 0x00,
|
|
|
|
0x00, 0x03, 0x00, 0x00, 0x00, 0x0F, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF,
|
|
|
|
0x0F, 0x39, 0x00, 0x00, 0x00, 0xFF, 0xFF, 0xFF, 0x0F, 0xFF, 0xFF, 0x00,
|
|
|
|
0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0F, 0x20, 0x84,
|
|
|
|
0x0F, 0xCC, 0x6E, 0x7D, 0x01, 0x72, 0x98, 0x00, 0x0F, 0xDC, 0x6D, 0x0C,
|
|
|
|
0x0F, 0xB0, 0x84, 0x0D, 0x04, 0x84, 0xE3, 0xC0, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x84, 0xE0, 0x84, 0x84, 0x18, 0x2F, 0x2F, 0x2F,
|
|
|
|
0x2F, 0x2F};
|
2016-11-04 15:35:13 +00:00
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithWasm, DecodeWasmModule) {
|
2017-12-01 11:00:00 +00:00
|
|
|
if ((true)) return; // TODO(mtrofin): fix this test
|
2016-11-04 15:35:13 +00:00
|
|
|
std::vector<uint8_t> raw(
|
|
|
|
kSerializedIncrementerWasm,
|
|
|
|
kSerializedIncrementerWasm + sizeof(kSerializedIncrementerWasm));
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = DecodeTest(raw);
|
|
|
|
ASSERT_TRUE(value->IsWebAssemblyCompiledModule());
|
|
|
|
ExpectScriptTrue(
|
|
|
|
"new WebAssembly.Instance(result).exports.increment(8) === 9");
|
2016-11-04 15:35:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// As above, but with empty compiled data. Should work due to fallback to wire
|
|
|
|
// data.
|
|
|
|
const unsigned char kSerializedIncrementerWasmWithInvalidCompiledData[] = {
|
2017-12-02 00:30:37 +00:00
|
|
|
0xFF, 0x09, 0x3F, 0x00, 0x57, 0x79, 0x2D, 0x00, 0x61, 0x73, 0x6D,
|
|
|
|
0x0D, 0x00, 0x00, 0x00, 0x01, 0x06, 0x01, 0x60, 0x01, 0x7F, 0x01,
|
|
|
|
0x7F, 0x03, 0x02, 0x01, 0x00, 0x07, 0x0D, 0x01, 0x09, 0x69, 0x6E,
|
|
|
|
0x63, 0x72, 0x65, 0x6D, 0x65, 0x6E, 0x74, 0x00, 0x00, 0x0A, 0x08,
|
|
|
|
0x01, 0x06, 0x00, 0x20, 0x00, 0x41, 0x01, 0x6A, 0x00};
|
2016-11-04 15:35:13 +00:00
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithWasm, DecodeWasmModuleWithInvalidCompiledData) {
|
2017-12-01 11:00:00 +00:00
|
|
|
if ((true)) return; // TODO(titzer): regenerate this test
|
2016-11-04 15:35:13 +00:00
|
|
|
std::vector<uint8_t> raw(
|
|
|
|
kSerializedIncrementerWasmWithInvalidCompiledData,
|
|
|
|
kSerializedIncrementerWasmWithInvalidCompiledData +
|
|
|
|
sizeof(kSerializedIncrementerWasmWithInvalidCompiledData));
|
2018-02-27 01:27:12 +00:00
|
|
|
Local<Value> value = DecodeTest(raw);
|
|
|
|
ASSERT_TRUE(value->IsWebAssemblyCompiledModule());
|
|
|
|
ExpectScriptTrue(
|
|
|
|
"new WebAssembly.Instance(result).exports.increment(8) === 9");
|
2016-11-04 15:35:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// As above, but also with empty wire data. Should fail.
|
|
|
|
const unsigned char kSerializedIncrementerWasmInvalid[] = {
|
2017-12-02 00:30:37 +00:00
|
|
|
0xFF, 0x09, 0x3F, 0x00, 0x57, 0x79, 0x00, 0x00};
|
2016-11-04 15:35:13 +00:00
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithWasm,
|
|
|
|
DecodeWasmModuleWithInvalidCompiledAndWireData) {
|
|
|
|
std::vector<uint8_t> raw(kSerializedIncrementerWasmInvalid,
|
|
|
|
kSerializedIncrementerWasmInvalid +
|
|
|
|
sizeof(kSerializedIncrementerWasmInvalid));
|
|
|
|
InvalidDecodeTest(raw);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST_F(ValueSerializerTestWithWasm, DecodeWasmModuleWithInvalidDataLength) {
|
2017-12-02 00:30:37 +00:00
|
|
|
InvalidDecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x57, 0x79, 0x7F, 0x00});
|
|
|
|
InvalidDecodeTest({0xFF, 0x09, 0x3F, 0x00, 0x57, 0x79, 0x00, 0x7F});
|
2016-11-04 15:35:13 +00:00
|
|
|
}
|
|
|
|
|
2016-08-12 14:49:09 +00:00
|
|
|
} // namespace
|
|
|
|
} // namespace v8
|