wasm-async.cc 2.68 KB
Newer Older
1 2 3 4 5 6 7 8 9
// 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"
10
#include "src/api.h"
11
#include "src/heap/factory.h"
12 13
#include "src/isolate-inl.h"
#include "src/objects-inl.h"
14
#include "src/wasm/wasm-engine.h"
15 16 17 18
#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"
19
#include "test/fuzzer/wasm-fuzzer-common.h"
20

21 22 23
namespace v8 {
namespace internal {
class WasmModuleObject;
24

25 26
namespace wasm {
namespace fuzzer {
27

28 29 30 31 32 33 34 35 36
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);
  }
37

38 39 40
  void OnCompilationFailed(i::Handle<i::Object> error_reason) override {
    *done_ = true;
  }
41

42 43 44 45
 private:
  i::Isolate* isolate_;
  bool* done_;
};
46 47

extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
48
  FlagScope<bool> turn_on_async_compile(
49
      &v8::internal::FLAG_wasm_async_compilation, true);
50 51 52
  FlagScope<uint32_t> max_mem_flag_scope(&v8::internal::FLAG_wasm_max_mem_pages,
                                         32);
  FlagScope<uint32_t> max_table_size_scope(
53 54 55
      &v8::internal::FLAG_wasm_max_table_size, 100);
  v8_fuzzer::FuzzerSupport* support = v8_fuzzer::FuzzerSupport::Get();
  v8::Isolate* isolate = support->GetIsolate();
56
  i::Isolate* i_isolate = reinterpret_cast<v8::internal::Isolate*>(isolate);
57 58 59 60 61 62 63 64

  // 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);
65
  i::HandleScope internal_scope(i_isolate);
66
  v8::Context::Scope context_scope(support->GetContext());
67 68
  TryCatch try_catch(isolate);
  testing::SetupIsolateForWasmModule(i_isolate);
69

70
  bool done = false;
71
  auto enabled_features = i::wasm::WasmFeaturesFromIsolate(i_isolate);
72
  i_isolate->wasm_engine()->AsyncCompile(
73
      i_isolate, enabled_features,
74
      std::make_shared<AsyncFuzzerResolver>(i_isolate, &done),
75
      ModuleWireBytes(data, data + size), false);
76 77

  // Wait for the promise to resolve.
78
  while (!done) {
79
    support->PumpMessageLoop(platform::MessageLoopBehavior::kWaitForWork);
80 81 82 83
    isolate->RunMicrotasks();
  }
  return 0;
}
84 85 86 87 88

}  // namespace fuzzer
}  // namespace wasm
}  // namespace internal
}  // namespace v8