mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-05 18:20:34 +00:00
4fea399df9
crosvm is switching the import style to use one import per line. While more verbose, this will greatly reduce the occurence of merge conflicts going forward. Note: This is using a nightly feature of rustfmt. So it's a one-off re-format only. We are considering adding a nightly toolchain to enable the feature permanently. BUG=b:239937122 TEST=CQ Change-Id: Id2dd4dbdc0adfc4f8f3dd1d09da1daafa2a39992 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/3784345 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Tested-by: Dennis Kempin <denniskempin@google.com> Commit-Queue: Dennis Kempin <denniskempin@google.com>
55 lines
1.6 KiB
Rust
55 lines
1.6 KiB
Rust
// Copyright 2019 The Chromium OS Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#![no_main]
|
|
|
|
#[cfg(fuzzing)]
|
|
mod fs_server_fuzzer {
|
|
use std::convert::TryInto;
|
|
|
|
use cros_fuzz::fuzz_target;
|
|
use devices::virtio::create_descriptor_chain;
|
|
use devices::virtio::DescriptorType;
|
|
use devices::virtio::Reader;
|
|
use devices::virtio::Writer;
|
|
use fuse::fuzzing::fuzz_server;
|
|
use vm_memory::GuestAddress;
|
|
use vm_memory::GuestMemory;
|
|
|
|
const MEM_SIZE: u64 = 256 * 1024 * 1024;
|
|
const BUFFER_ADDR: GuestAddress = GuestAddress(0x100);
|
|
|
|
thread_local! {
|
|
static GUEST_MEM: GuestMemory = GuestMemory::new(&[(GuestAddress(0), MEM_SIZE)]).unwrap();
|
|
}
|
|
|
|
fuzz_target!(|data| {
|
|
use DescriptorType::*;
|
|
|
|
GUEST_MEM.with(|mem| {
|
|
mem.write_all_at_addr(data, BUFFER_ADDR).unwrap();
|
|
|
|
let chain = create_descriptor_chain(
|
|
mem,
|
|
GuestAddress(0),
|
|
BUFFER_ADDR,
|
|
vec![
|
|
(Readable, data.len().try_into().unwrap()),
|
|
(
|
|
Writable,
|
|
(MEM_SIZE as u32)
|
|
.saturating_sub(data.len().try_into().unwrap())
|
|
.saturating_sub(0x100),
|
|
),
|
|
],
|
|
0,
|
|
)
|
|
.unwrap();
|
|
|
|
let r = Reader::new(mem.clone(), chain.clone()).unwrap();
|
|
let w = Writer::new(mem.clone(), chain).unwrap();
|
|
fuzz_server(r, w);
|
|
});
|
|
});
|
|
}
|