2016-03-02 00:53:19 +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 <limits.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "include/v8.h"
|
|
|
|
#include "src/factory.h"
|
2016-03-03 00:04:52 +00:00
|
|
|
#include "src/isolate-inl.h"
|
2016-03-02 00:53:19 +00:00
|
|
|
#include "src/isolate.h"
|
|
|
|
#include "src/objects-inl.h"
|
|
|
|
#include "src/objects.h"
|
2018-01-18 10:52:52 +00:00
|
|
|
#include "src/wasm/wasm-engine.h"
|
2016-03-02 00:53:19 +00:00
|
|
|
#include "src/wasm/wasm-module.h"
|
2017-06-12 13:32:13 +00:00
|
|
|
#include "test/common/wasm/flag-utils.h"
|
2016-09-14 10:31:23 +00:00
|
|
|
#include "test/common/wasm/wasm-module-runner.h"
|
2016-03-02 00:53:19 +00:00
|
|
|
#include "test/fuzzer/fuzzer-support.h"
|
2017-09-07 09:48:34 +00:00
|
|
|
#include "test/fuzzer/wasm-fuzzer-common.h"
|
|
|
|
|
|
|
|
namespace i = v8::internal;
|
2016-03-02 00:53:19 +00:00
|
|
|
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
2017-09-07 09:48:34 +00:00
|
|
|
i::FlagScope<uint32_t> max_mem_flag_scope(&i::FLAG_wasm_max_mem_pages, 32);
|
|
|
|
i::FlagScope<uint32_t> max_table_size_scope(&i::FLAG_wasm_max_table_size,
|
|
|
|
100);
|
2016-03-02 00:53:19 +00:00
|
|
|
v8_fuzzer::FuzzerSupport* support = v8_fuzzer::FuzzerSupport::Get();
|
|
|
|
v8::Isolate* isolate = support->GetIsolate();
|
2017-09-07 09:48:34 +00:00
|
|
|
i::Isolate* i_isolate = reinterpret_cast<i::Isolate*>(isolate);
|
2016-03-03 00:04:52 +00:00
|
|
|
|
|
|
|
// Clear any pending exceptions from a prior run.
|
|
|
|
if (i_isolate->has_pending_exception()) {
|
|
|
|
i_isolate->clear_pending_exception();
|
|
|
|
}
|
|
|
|
|
2016-03-02 00:53:19 +00:00
|
|
|
v8::Isolate::Scope isolate_scope(isolate);
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
v8::Context::Scope context_scope(support->GetContext());
|
|
|
|
v8::TryCatch try_catch(isolate);
|
2017-09-07 09:48:34 +00:00
|
|
|
i::wasm::testing::SetupIsolateForWasmModule(i_isolate);
|
|
|
|
|
|
|
|
i::HandleScope scope(i_isolate);
|
|
|
|
i::wasm::ErrorThrower thrower(i_isolate, "wasm fuzzer");
|
2018-01-18 10:52:52 +00:00
|
|
|
i::MaybeHandle<i::WasmModuleObject> maybe_object =
|
|
|
|
i_isolate->wasm_engine()->SyncCompile(
|
|
|
|
i_isolate, &thrower, i::wasm::ModuleWireBytes(data, data + size));
|
2017-09-07 09:48:34 +00:00
|
|
|
i::Handle<i::WasmModuleObject> module_object;
|
|
|
|
if (maybe_object.ToHandle(&module_object)) {
|
|
|
|
i::wasm::fuzzer::InterpretAndExecuteModule(i_isolate, module_object);
|
|
|
|
}
|
2016-03-02 00:53:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|