/* * Copyright (c) 2022 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include "copyframe_fuzzer.h" #include #include #include #include "nweb.h" #include "nweb_adapter_helper.h" #define private public #include "nweb_surface_adapter.h" using namespace OHOS::NWeb; namespace OHOS { bool CopyFrameFuzzTest(const uint8_t* data, size_t size) { constexpr int BITS_PER_PIXEL = 4; if ((data == nullptr) || (size < sizeof(uint32_t))) { return false; } uint32_t width; uint32_t height; if (memcpy_s(&width, sizeof(uint32_t), data, sizeof(uint32_t)) != 0) { return false; } if (memcpy_s(&height, sizeof(uint32_t), data, sizeof(uint32_t)) != 0) { return false; } sptr surfaceBuffer = nullptr; auto surfaceAdapter = NWebSurfaceAdapter::Instance(); if (width == 0 || height == 0) { return false; } char* src = new char[BITS_PER_PIXEL] { 0 }; if (src == nullptr) { return false; } surfaceAdapter.CopyFrame(surfaceBuffer, src, width, height); delete[] src; return true; } } // namespace OHOS /* Fuzzer entry point */ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { /* Run your code on data */ OHOS::CopyFrameFuzzTest(data, size); return 0; }