diff --git a/tests/Android.bp b/tests/Android.bp index 3c4f07b..da63d95 100644 --- a/tests/Android.bp +++ b/tests/Android.bp @@ -16,3 +16,27 @@ cc_test { static_libs: ["libvold"], shared_libs: ["libbinder"] } + +cc_fuzz { + name: "vold_native_service_fuzzer", + defaults: [ + "vold_default_flags", + "vold_default_libs", + "keystore2_use_latest_aidl_ndk_shared", + "service_fuzzer_defaults", + ], + static_libs: [ + "libvold", + "android.security.maintenance-ndk", + "libkeymint_support", + ], + header_libs: ["libvold_headers"], + srcs: [ + "VoldFuzzer.cpp", + ], + fuzz_config: { + cc: [ + "maco@google.com", + ], + } +} diff --git a/tests/VoldFuzzer.cpp b/tests/VoldFuzzer.cpp new file mode 100644 index 0000000..e91cce8 --- /dev/null +++ b/tests/VoldFuzzer.cpp @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2023 The Android Open Source Project + * + * 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 + +#include "VoldNativeService.h" + +using ::android::fuzzService; +using ::android::sp; + +struct selabel_handle* sehandle; + +extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { + auto voldService = sp::make(); + fuzzService(voldService, FuzzedDataProvider(data, size)); + return 0; +} \ No newline at end of file