/* * Copyright 2020 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. */ #pragma once #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace android { // Static variable to reference so we don't consume a bunch of memory to link and // unlink DeathRecipients. static int8_t kBpBinderCookie = 0; /* This is a vector of lambda functions the fuzzer will pull from. * This is done so new functions can be added to the fuzzer easily * without requiring modifications to the main fuzzer file. This also * allows multiple fuzzers to include this file, if functionality is needed. */ static const std::vector&, const sp&)>> gBPBinderOperations = {[](FuzzedDataProvider* fdp, const sp& bpbinder, const sp& s_recipient) -> void { // Clean up possible leftover memory. wp outRecipient(nullptr); bpbinder->sendObituary(); bpbinder->unlinkToDeath(nullptr, reinterpret_cast(&kBpBinderCookie), 0, &outRecipient); uint32_t flags = fdp->ConsumeIntegral(); kBpBinderCookie = fdp->ConsumeIntegral(); bpbinder->linkToDeath(s_recipient.get(), reinterpret_cast(&kBpBinderCookie), flags); }, [](FuzzedDataProvider* fdp, const sp& bpbinder, const sp&) -> void { wp out_recipient(nullptr); uint32_t flags = fdp->ConsumeIntegral(); int8_t random_cookie = fdp->ConsumeIntegral(); bpbinder->unlinkToDeath(nullptr, reinterpret_cast(&random_cookie), flags, &out_recipient); }, [](FuzzedDataProvider*, const sp& bpbinder, const sp&) -> void { bpbinder->remoteBinder(); }, [](FuzzedDataProvider*, const sp& bpbinder, const sp&) -> void { bpbinder->sendObituary(); }, [](FuzzedDataProvider* fdp, const sp& bpbinder, const sp&) -> void { uint32_t uid = fdp->ConsumeIntegral(); bpbinder->getBinderProxyCount(uid); }, [](FuzzedDataProvider*, const sp& bpbinder, const sp&) -> void { bpbinder->enableCountByUid(); }, [](FuzzedDataProvider*, const sp& bpbinder, const sp&) -> void { bpbinder->disableCountByUid(); }, [](FuzzedDataProvider*, const sp& bpbinder, const sp&) -> void { Vector uids; Vector counts; bpbinder->getCountByUid(uids, counts); }, [](FuzzedDataProvider* fdp, const sp& bpbinder, const sp&) -> void { bool enable = fdp->ConsumeBool(); bpbinder->setCountByUidEnabled(enable); }, [](FuzzedDataProvider*, const sp& bpbinder, const sp&) -> void { binder_proxy_limit_callback cb = binder_proxy_limit_callback(); bpbinder->setLimitCallback(cb); }, [](FuzzedDataProvider* fdp, const sp& bpbinder, const sp&) -> void { int high = fdp->ConsumeIntegral(); int low = fdp->ConsumeIntegral(); bpbinder->setBinderProxyCountWatermarks(high, low); }}; } // namespace android