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 "builtinsarraybuffergetvaluefrombufferforbigint_fuzzer.h"
17
18 #include "ecmascript/builtins/builtins_arraybuffer.h"
19 #include "ecmascript/ecma_string-inl.h"
20 #include "ecmascript/global_env.h"
21 #include "ecmascript/js_global_object.h"
22 #include "ecmascript/napi/include/jsnapi.h"
23
24 using namespace panda;
25 using namespace panda::ecmascript;
26 using namespace panda::ecmascript::builtins;
27
28 #define MAXBYTELEN sizeof(uint32_t)
29
30 namespace OHOS {
BuiltinsArrayBufferGetValueFromBufferForBigIntFuzzTest(const uint8_t * data,size_t size)31 void BuiltinsArrayBufferGetValueFromBufferForBigIntFuzzTest(const uint8_t* data, size_t size)
32 {
33 RuntimeOption option;
34 option.SetLogLevel(RuntimeOption::LOG_LEVEL::ERROR);
35 EcmaVM *vm = JSNApi::CreateJSVM(option);
36 JSThread *thread = vm->GetJSThread();
37 JSHandle<GlobalEnv> env = vm->GetGlobalEnv();
38
39 uint32_t input;
40 if (size <= 0) {
41 return;
42 }
43 if (size > MAXBYTELEN) {
44 size = MAXBYTELEN;
45 }
46 if (memcpy_s(&input, MAXBYTELEN, data, size) != 0) {
47 std::cout << "memcpy_s failed!";
48 UNREACHABLE();
49 }
50 JSHandle<BigInt> bigIntNum = BigInt::Uint32ToBigInt(thread, input);
51 JSHandle<JSTaggedValue> bufferConstructor = env->GetArrayBufferFunction();
52 JSTaggedValue arrayBuffer =
53 BuiltinsArrayBuffer::AllocateArrayBuffer(thread, bufferConstructor, sizeof(uint64_t));
54
55 JSHandle<JSTaggedValue> val(bigIntNum);
56 BuiltinsArrayBuffer::SetValueInBuffer(thread, arrayBuffer, 0, DataViewType::BIGUINT64, val, true);
57 BuiltinsArrayBuffer::GetValueFromBuffer(thread, arrayBuffer, 0, DataViewType::BIGUINT64, true);
58 JSNApi::DestroyJSVM(vm);
59 }
60 }
61
62 // Fuzzer entry point.
LLVMFuzzerTestOneInput(const uint8_t * data,size_t size)63 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
64 {
65 // Run your code on data.
66 OHOS::BuiltinsArrayBufferGetValueFromBufferForBigIntFuzzTest(data, size);
67 return 0;
68 }