/* * 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 "timereceivedmessage_fuzzer.h" #include #include #include #include #include "accesstoken_kit.h" #include "message_parcel.h" #include "nativetoken_kit.h" #include "time_system_ability.h" #include "token_setproc.h" #define private public #define protected public #include "sntp_client.h" using namespace OHOS::MiscServices; namespace OHOS { constexpr size_t THRESHOLD = 4; constexpr int32_t NTP_PACKAGE_SIZE = 48; const std::u16string TIMESERVICE_INTERFACE_TOKEN = u"ohos.miscservices.time.ITimeService"; bool FuzzTimeDump(const uint8_t *rawData, size_t size) { std::vector args; std::string str(reinterpret_cast(rawData), size); args.push_back(Str8ToStr16(str)); int fd = 0; TimeSystemAbility::GetInstance()->Dump(fd, args); return true; } bool FuzzTimeReceivedMessage(const uint8_t *data, size_t size) { char buffer[NTP_PACKAGE_SIZE] = { 0 }; if (memcpy_s(buffer, NTP_PACKAGE_SIZE, data, size) != EOK) { return true; } auto client = std::make_shared(); client->ReceivedMessage(buffer); return true; } } // namespace OHOS /* Fuzzer entry point */ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { if (size < OHOS::THRESHOLD) { return 0; } /* Run your code on data */ OHOS::FuzzTimeDump(data, size); OHOS::FuzzTimeReceivedMessage(data, size); return 0; }