2017-06-13 14:41:54 +00:00
|
|
|
// Copyright 2017 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"
|
2019-05-16 13:28:40 +00:00
|
|
|
#include "src/api/api.h"
|
2018-04-09 19:11:22 +00:00
|
|
|
#include "src/heap/factory.h"
|
2017-06-13 14:41:54 +00:00
|
|
|
#include "src/isolate-inl.h"
|
|
|
|
#include "src/objects-inl.h"
|
2018-01-18 10:52:52 +00:00
|
|
|
#include "src/wasm/wasm-engine.h"
|
2017-06-13 14:41:54 +00:00
|
|
|
#include "src/wasm/wasm-module.h"
|
|
|
|
#include "test/common/wasm/flag-utils.h"
|
|
|
|
#include "test/common/wasm/wasm-module-runner.h"
|
|
|
|
#include "test/fuzzer/fuzzer-support.h"
|
2017-09-07 09:48:34 +00:00
|
|
|
#include "test/fuzzer/wasm-fuzzer-common.h"
|
2017-06-13 14:41:54 +00:00
|
|
|
|
2017-09-01 13:20:46 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
class WasmModuleObject;
|
2017-06-13 14:41:54 +00:00
|
|
|
|
2017-09-01 13:20:46 +00:00
|
|
|
namespace wasm {
|
|
|
|
namespace fuzzer {
|
2017-08-09 08:11:21 +00:00
|
|
|
|
2018-05-24 21:22:27 +00:00
|
|
|
class AsyncFuzzerResolver : public i::wasm::CompilationResultResolver {
|
|
|
|
public:
|
|
|
|
AsyncFuzzerResolver(i::Isolate* isolate, bool* done)
|
|
|
|
: isolate_(isolate), done_(done) {}
|
|
|
|
|
|
|
|
void OnCompilationSucceeded(i::Handle<i::WasmModuleObject> module) override {
|
|
|
|
*done_ = true;
|
|
|
|
InterpretAndExecuteModule(isolate_, module);
|
|
|
|
}
|
2017-06-13 14:41:54 +00:00
|
|
|
|
2018-05-24 21:22:27 +00:00
|
|
|
void OnCompilationFailed(i::Handle<i::Object> error_reason) override {
|
|
|
|
*done_ = true;
|
|
|
|
}
|
2017-06-13 14:41:54 +00:00
|
|
|
|
2018-05-24 21:22:27 +00:00
|
|
|
private:
|
|
|
|
i::Isolate* isolate_;
|
|
|
|
bool* done_;
|
|
|
|
};
|
2017-06-13 14:41:54 +00:00
|
|
|
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
2017-09-01 13:20:46 +00:00
|
|
|
FlagScope<bool> turn_on_async_compile(
|
2017-06-13 14:41:54 +00:00
|
|
|
&v8::internal::FLAG_wasm_async_compilation, true);
|
2017-09-01 13:20:46 +00:00
|
|
|
FlagScope<uint32_t> max_mem_flag_scope(&v8::internal::FLAG_wasm_max_mem_pages,
|
|
|
|
32);
|
|
|
|
FlagScope<uint32_t> max_table_size_scope(
|
2017-06-13 14:41:54 +00:00
|
|
|
&v8::internal::FLAG_wasm_max_table_size, 100);
|
|
|
|
v8_fuzzer::FuzzerSupport* support = v8_fuzzer::FuzzerSupport::Get();
|
|
|
|
v8::Isolate* isolate = support->GetIsolate();
|
2017-09-01 13:20:46 +00:00
|
|
|
i::Isolate* i_isolate = reinterpret_cast<v8::internal::Isolate*>(isolate);
|
2017-06-13 14:41:54 +00:00
|
|
|
|
|
|
|
// Clear any pending exceptions from a prior run.
|
|
|
|
if (i_isolate->has_pending_exception()) {
|
|
|
|
i_isolate->clear_pending_exception();
|
|
|
|
}
|
|
|
|
|
|
|
|
v8::Isolate::Scope isolate_scope(isolate);
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
2017-09-01 13:20:46 +00:00
|
|
|
i::HandleScope internal_scope(i_isolate);
|
2017-06-13 14:41:54 +00:00
|
|
|
v8::Context::Scope context_scope(support->GetContext());
|
2017-09-01 13:20:46 +00:00
|
|
|
TryCatch try_catch(isolate);
|
|
|
|
testing::SetupIsolateForWasmModule(i_isolate);
|
2017-06-13 14:41:54 +00:00
|
|
|
|
2018-05-24 21:22:27 +00:00
|
|
|
bool done = false;
|
2018-08-08 14:54:44 +00:00
|
|
|
auto enabled_features = i::wasm::WasmFeaturesFromIsolate(i_isolate);
|
2018-05-24 21:22:27 +00:00
|
|
|
i_isolate->wasm_engine()->AsyncCompile(
|
2018-08-08 14:54:44 +00:00
|
|
|
i_isolate, enabled_features,
|
2018-08-13 13:35:54 +00:00
|
|
|
std::make_shared<AsyncFuzzerResolver>(i_isolate, &done),
|
2018-05-24 21:22:27 +00:00
|
|
|
ModuleWireBytes(data, data + size), false);
|
2017-06-13 14:41:54 +00:00
|
|
|
|
|
|
|
// Wait for the promise to resolve.
|
2018-05-24 21:22:27 +00:00
|
|
|
while (!done) {
|
2017-09-01 13:20:46 +00:00
|
|
|
support->PumpMessageLoop(platform::MessageLoopBehavior::kWaitForWork);
|
2017-06-13 14:41:54 +00:00
|
|
|
isolate->RunMicrotasks();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2017-09-01 13:20:46 +00:00
|
|
|
|
|
|
|
} // namespace fuzzer
|
|
|
|
} // namespace wasm
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|