1e509ee18Sopenharmony_ci/* 2e509ee18Sopenharmony_ci * Copyright (c) 2022 Huawei Device Co., Ltd. 3e509ee18Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License"); 4e509ee18Sopenharmony_ci * you may not use this file except in compliance with the License. 5e509ee18Sopenharmony_ci * You may obtain a copy of the License at 6e509ee18Sopenharmony_ci * 7e509ee18Sopenharmony_ci * http://www.apache.org/licenses/LICENSE-2.0 8e509ee18Sopenharmony_ci * 9e509ee18Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software 10e509ee18Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS, 11e509ee18Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12e509ee18Sopenharmony_ci * See the License for the specific language governing permissions and 13e509ee18Sopenharmony_ci * limitations under the License. 14e509ee18Sopenharmony_ci */ 15e509ee18Sopenharmony_ci 16e509ee18Sopenharmony_ci#include "protocolhandlerresponse_fuzzer.h" 17e509ee18Sopenharmony_ci#include "ecmascript/napi/include/jsnapi.h" 18e509ee18Sopenharmony_ci#include "tooling/protocol_handler.h" 19e509ee18Sopenharmony_ci 20e509ee18Sopenharmony_ciusing namespace panda; 21e509ee18Sopenharmony_ciusing namespace panda::ecmascript; 22e509ee18Sopenharmony_ciusing namespace panda::ecmascript::tooling; 23e509ee18Sopenharmony_ci 24e509ee18Sopenharmony_cinamespace OHOS { 25e509ee18Sopenharmony_ci void ProtocolHandlerResponseFuzzTest(const uint8_t* data, size_t size) 26e509ee18Sopenharmony_ci { 27e509ee18Sopenharmony_ci RuntimeOption option; 28e509ee18Sopenharmony_ci option.SetLogLevel(RuntimeOption::LOG_LEVEL::ERROR); 29e509ee18Sopenharmony_ci auto vm = JSNApi::CreateJSVM(option); 30e509ee18Sopenharmony_ci { 31e509ee18Sopenharmony_ci if (size <= 0) { 32e509ee18Sopenharmony_ci return; 33e509ee18Sopenharmony_ci } 34e509ee18Sopenharmony_ci using ProtoHandler = const std::function<void(const void *, const std::string &)>; 35e509ee18Sopenharmony_ci ProtoHandler ph = [data, size]([[maybe_unused]] const void *d, 36e509ee18Sopenharmony_ci [[maybe_unused]] const std::string &s) -> void { d = data + size; }; 37e509ee18Sopenharmony_ci ProtocolHandler handler(ph, vm); 38e509ee18Sopenharmony_ci std::string str((const char*)data, size); 39e509ee18Sopenharmony_ci DispatchRequest req(str); 40e509ee18Sopenharmony_ci PtBaseReturns ret; 41e509ee18Sopenharmony_ci handler.SendResponse(req, DispatchResponse::Ok(), ret); 42e509ee18Sopenharmony_ci } 43e509ee18Sopenharmony_ci JSNApi::DestroyJSVM(vm); 44e509ee18Sopenharmony_ci } 45e509ee18Sopenharmony_ci} 46e509ee18Sopenharmony_ci 47e509ee18Sopenharmony_ci// Fuzzer entry point. 48e509ee18Sopenharmony_ciextern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) 49e509ee18Sopenharmony_ci{ 50e509ee18Sopenharmony_ci // Run your code on data. 51e509ee18Sopenharmony_ci OHOS::ProtocolHandlerResponseFuzzTest(data, size); 52e509ee18Sopenharmony_ci return 0; 53e509ee18Sopenharmony_ci} 54