Line data Source code
1 : // Copyright 2016 the V8 project authors. All rights reserved.
2 : // Use of this source code is governed by a BSD-style license that can be
3 : // found in the LICENSE file.
4 :
5 : #include <limits.h>
6 : #include <stddef.h>
7 : #include <stdint.h>
8 :
9 : #include "include/v8.h"
10 : #include "test/fuzzer/fuzzer-support.h"
11 :
12 2 : extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
13 2 : v8_fuzzer::FuzzerSupport* support = v8_fuzzer::FuzzerSupport::Get();
14 2 : v8::Isolate* isolate = support->GetIsolate();
15 :
16 : v8::Isolate::Scope isolate_scope(isolate);
17 4 : v8::HandleScope handle_scope(isolate);
18 2 : v8::Context::Scope context_scope(support->GetContext());
19 4 : v8::TryCatch try_catch(isolate);
20 :
21 2 : if (size > INT_MAX) return 0;
22 : v8::Local<v8::String> source;
23 2 : if (!v8::String::NewFromOneByte(isolate, data, v8::NewStringType::kNormal,
24 2 : static_cast<int>(size))
25 2 : .ToLocal(&source)) {
26 : return 0;
27 : }
28 :
29 2 : v8::JSON::Parse(support->GetContext(), source).IsEmpty();
30 : isolate->RequestGarbageCollectionForTesting(
31 2 : v8::Isolate::kFullGarbageCollection);
32 2 : return 0;
33 : }
|