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