Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a5f45de5 authored by Pawan Wagh's avatar Pawan Wagh Committed by Automerger Merge Worker
Browse files

Merge "Adding a sample fuzzer using fuzz_service" am: 3455be43 am: 971282e6

parents aa18ec57 971282e6
Loading
Loading
Loading
Loading
+33 −0
Original line number Original line Diff line number Diff line
package {
    // See: http://go/android-license-faq
    default_applicable_licenses: ["frameworks_native_license"],
}

aidl_interface {
    name: "testServiceInterface",
    srcs: ["ITestService.aidl"],
    unstable: true,
    backend: {
        rust: {
            enabled: true,
        },
    },
}

rust_fuzz {
    name: "example_service_fuzzer",
    srcs: [
        "service_fuzzer.rs",
    ],
    rustlibs: [
        "libbinder_rs",
        "libbinder_random_parcel_rs",
        "testServiceInterface-rust",
    ],
    fuzz_config: {
        cc: [
            "waghpawan@google.com",
            "smoreland@google.com",
        ],
    },
}
+19 −0
Original line number Original line Diff line number Diff line
/*
 * Copyright (C) 2022 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.
 */

interface ITestService {
    boolean repeatData(boolean token);
}
 No newline at end of file
+39 −0
Original line number Original line Diff line number Diff line
/*
 * Copyright (C) 2022 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.
 */

#![allow(missing_docs)]
#![no_main]
#[macro_use]
extern crate libfuzzer_sys;

use binder::{self, BinderFeatures, Interface};
use binder_random_parcel_rs::fuzz_service;
use testServiceInterface::aidl::ITestService::{self, BnTestService};

struct TestService;

impl Interface for TestService {}

impl ITestService::ITestService for TestService {
    fn repeatData(&self, token: bool) -> binder::Result<bool> {
        Ok(token)
    }
}

fuzz_target!(|data: &[u8]| {
    let service = BnTestService::new_binder(TestService, BinderFeatures::default());
    fuzz_service(&mut service.as_binder(), data);
});