1 /*
2 * Copyright (c) 2022 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16 #include "builtinsarraybufferallocatearraybuffer_fuzzer.h"
17
18 #include "ecmascript/builtins/builtins_arraybuffer.h"
19 #include "ecmascript/ecma_string-inl.h"
20 #include "ecmascript/ecma_vm.h"
21 #include "ecmascript/global_env.h"
22 #include "ecmascript/js_global_object.h"
23 #include "ecmascript/js_handle.h"
24 #include "ecmascript/js_thread.h"
25 #include "ecmascript/napi/include/jsnapi.h"
26
27 using namespace panda;
28 using namespace panda::test;
29 using namespace panda::ecmascript;
30
31 #define MAXBYTELEN sizeof(int32_t)
32 namespace OHOS {
BuiltinsArrayBufferAllocateArrayBufferFuzzTest(const uint8_t * data,size_t size)33 void BuiltinsArrayBufferAllocateArrayBufferFuzzTest(const uint8_t* data, size_t size)
34 {
35 RuntimeOption option;
36 option.SetLogLevel(RuntimeOption::LOG_LEVEL::ERROR);
37 EcmaVM *vm = JSNApi::CreateJSVM(option);
38 {
39 JsiFastNativeScope scope(vm);
40 JSThread *thread = vm->GetJSThread();
41 JSHandle<GlobalEnv> env = vm->GetGlobalEnv();
42
43 uint32_t input;
44 if (size <= 0) {
45 return;
46 }
47 if (size > MAXBYTELEN) {
48 size = MAXBYTELEN;
49 }
50 if (memcpy_s(&input, MAXBYTELEN, data, size) != 0) {
51 std::cout << "memcpy_s failed!";
52 UNREACHABLE();
53 }
54 const int32_t MaxMenory = 1048576;
55 if (input > MaxMenory) {
56 input = MaxMenory;
57 }
58
59 JSHandle<JSTaggedValue> bufferConstructor = env->GetArrayBufferFunction();
60 builtins::BuiltinsArrayBuffer::AllocateArrayBuffer(thread, bufferConstructor, input);
61 }
62 JSNApi::DestroyJSVM(vm);
63 }
64 }
65
66 // Fuzzer entry point.
LLVMFuzzerTestOneInput(const uint8_t * data,size_t size)67 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
68 {
69 // Run your code on data.
70 OHOS::BuiltinsArrayBufferAllocateArrayBufferFuzzTest(data, size);
71 return 0;
72 }