mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 10:32:10 +00:00
cfb7db44eb
The new USB descriptor parsing code is a nice candidate for a fuzzer, since it takes an arbitrary stream of bytes as input and parses it. BUG=chromium:987833 TEST=`USE='asan fuzzer' emerge-nami crosvm` Cq-Depend: chromium:1863465 Change-Id: I3bbdbf081e9a9dd590c781467f8bd44fa1dcab64 Signed-off-by: Daniel Verkamp <dverkamp@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/1862117 Reviewed-by: Zach Reizner <zachr@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com>
20 lines
774 B
Rust
20 lines
774 B
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.
|
|
|
|
mod descriptor;
|
|
mod device;
|
|
mod error;
|
|
mod types;
|
|
|
|
pub use self::descriptor::{
|
|
parse_usbfs_descriptors, ConfigDescriptorTree, DeviceDescriptorTree, InterfaceDescriptorTree,
|
|
};
|
|
pub use self::device::{Device, Transfer, TransferStatus};
|
|
pub use self::error::{Error, Result};
|
|
pub use self::types::{
|
|
control_request_type, ConfigDescriptor, ControlRequestDataPhaseTransferDirection,
|
|
ControlRequestRecipient, ControlRequestType, DeviceDescriptor, EndpointDescriptor,
|
|
EndpointDirection, EndpointType, InterfaceDescriptor, StandardControlRequest, UsbRequestSetup,
|
|
ENDPOINT_DIRECTION_OFFSET,
|
|
};
|