Skip to content

Commit be7a20c

Browse files
uefi: Use unsafe_protocol! for all protocol impls
Switch all uses of `unsafe_guid!` + `derive(Protocol)` to using `unsafe_protocol!`. Also update the docstrings for the `Identify` and `Protocol` traits.
1 parent dc7d765 commit be7a20c

File tree

26 files changed

+90
-115
lines changed

26 files changed

+90
-115
lines changed

CONTRIBUTING.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ in the order the UEFI spec requires.
8181
Each protocol also has a Globally Unique Identifier (in the C API, they're usually
8282
found in a `EFI_*_PROTOCOL_GUID` define). In Rust, we store the GUID as an associated
8383
constant, by implementing the unsafe trait `uefi::proto::Identify`. For convenience,
84-
this is done through the `unsafe_guid` macro.
84+
this is done through the `unsafe_protocol` macro.
8585

8686
Finally, you should derive the `Protocol` trait. This is a marker trait,
8787
extending `Identify`, which is used as a generic bound in the functions which retrieve
@@ -92,8 +92,7 @@ An example protocol declaration:
9292
```rust
9393
/// Protocol which does something.
9494
#[repr(C)]
95-
#[unsafe_guid("abcdefgh-1234-5678-9012-123456789abc")]
96-
#[derive(Protocol)]
95+
#[unsafe_protocol("abcdefgh-1234-5678-9012-123456789abc")]
9796
pub struct NewProtocol {
9897
some_entry_point: extern "efiapi" fn(
9998
this: *const NewProtocol,

uefi-test-runner/src/boot/misc.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
use core::ffi::c_void;
22
use core::ptr::{self, NonNull};
33

4-
use uefi::proto::Protocol;
4+
use uefi::proto::unsafe_protocol;
55
use uefi::table::boot::{BootServices, EventType, SearchType, TimerTrigger, Tpl};
6-
use uefi::{unsafe_guid, Event, Identify};
6+
use uefi::{Event, Identify};
77

88
pub fn test(bt: &BootServices) {
99
info!("Testing timer...");
@@ -80,8 +80,7 @@ fn test_watchdog(bt: &BootServices) {
8080
}
8181

8282
/// Dummy protocol for tests
83-
#[unsafe_guid("1a972918-3f69-4b5d-8cb4-cece2309c7f5")]
84-
#[derive(Protocol)]
83+
#[unsafe_protocol("1a972918-3f69-4b5d-8cb4-cece2309c7f5")]
8584
struct TestProtocol {}
8685

8786
unsafe extern "efiapi" fn _test_notify(_event: Event, _context: Option<NonNull<c_void>>) {

uefi/src/data_types/guid.rs

+7-11
Original file line numberDiff line numberDiff line change
@@ -114,24 +114,20 @@ impl fmt::Display for Guid {
114114
/// this trait is a building block to interface them in uefi-rs.
115115
///
116116
/// You should never need to use the `Identify` trait directly, but instead go
117-
/// for more specific traits such as `Protocol` or `FileProtocolInfo`, which
117+
/// for more specific traits such as [`Protocol`] or [`FileProtocolInfo`], which
118118
/// indicate in which circumstances an `Identify`-tagged type should be used.
119119
///
120+
/// For the common case of implementing this trait for a protocol, use
121+
/// the [`unsafe_protocol`] macro.
122+
///
120123
/// # Safety
121124
///
122125
/// Implementing `Identify` is unsafe because attaching an incorrect GUID to a
123126
/// type can lead to type unsafety on both the Rust and UEFI side.
124127
///
125-
/// You can derive `Identify` for a type using the `unsafe_guid` procedural
126-
/// macro, which is exported by this module. This macro mostly works like a
127-
/// custom derive, but also supports type aliases. It takes a GUID in canonical
128-
/// textual format as an argument, and is used in the following way:
129-
///
130-
/// ```
131-
/// use uefi::unsafe_guid;
132-
/// #[unsafe_guid("12345678-9abc-def0-1234-56789abcdef0")]
133-
/// struct Emptiness;
134-
/// ```
128+
/// [`Protocol`]: crate::proto::Protocol
129+
/// [`FileProtocolInfo`]: crate::proto::media::file::FileProtocolInfo
130+
/// [`unsafe_protocol`]: crate::proto::unsafe_protocol
135131
pub unsafe trait Identify {
136132
/// Unique protocol identifier.
137133
const GUID: Guid;

uefi/src/proto/console/gop.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
//! You will have to implement your own double buffering if you want to
5555
//! avoid tearing with animations.
5656
57-
use crate::proto::Protocol;
58-
use crate::{unsafe_guid, Result, Status};
57+
use crate::proto::unsafe_protocol;
58+
use crate::{Result, Status};
5959
use core::marker::PhantomData;
6060
use core::mem;
6161
use core::ptr;
@@ -65,8 +65,7 @@ use core::ptr;
6565
/// The GOP can be used to set the properties of the frame buffer,
6666
/// and also allows the app to access the in-memory buffer.
6767
#[repr(C)]
68-
#[unsafe_guid("9042a9de-23dc-4a38-96fb-7aded080516a")]
69-
#[derive(Protocol)]
68+
#[unsafe_protocol("9042a9de-23dc-4a38-96fb-7aded080516a")]
7069
pub struct GraphicsOutput<'boot> {
7170
query_mode: extern "efiapi" fn(
7271
&GraphicsOutput,

uefi/src/proto/console/pointer/mod.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
//! Pointer device access.
22
3-
use crate::proto::Protocol;
4-
use crate::{unsafe_guid, Event, Result, Status};
3+
use crate::proto::unsafe_protocol;
4+
use crate::{Event, Result, Status};
55
use core::mem::MaybeUninit;
66

77
/// Provides information about a pointer device.
88
#[repr(C)]
9-
#[unsafe_guid("31878c87-0b75-11d5-9a4f-0090273fc14d")]
10-
#[derive(Protocol)]
9+
#[unsafe_protocol("31878c87-0b75-11d5-9a4f-0090273fc14d")]
1110
pub struct Pointer<'boot> {
1211
reset: extern "efiapi" fn(this: &mut Pointer, ext_verif: bool) -> Status,
1312
get_state: extern "efiapi" fn(this: &Pointer, state: *mut PointerState) -> Status,

uefi/src/proto/console/serial.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
33
use core::fmt::Write;
44

5-
use crate::proto::Protocol;
6-
use crate::{unsafe_guid, Result, Status};
5+
use crate::proto::unsafe_protocol;
6+
use crate::{Result, Status};
77
use bitflags::bitflags;
88

99
/// Provides access to a serial I/O device.
@@ -14,8 +14,7 @@ use bitflags::bitflags;
1414
/// Since UEFI drivers are implemented through polling, if you fail to regularly
1515
/// check for input/output, some data might be lost.
1616
#[repr(C)]
17-
#[unsafe_guid("bb25cf6f-f1d4-11d2-9a0c-0090273fc1fd")]
18-
#[derive(Protocol)]
17+
#[unsafe_protocol("bb25cf6f-f1d4-11d2-9a0c-0090273fc1fd")]
1918
pub struct Serial<'boot> {
2019
// Revision of this protocol, only 1.0 is currently defined.
2120
// Future versions will be backwards compatible.

uefi/src/proto/console/text/input.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
use crate::proto::Protocol;
2-
use crate::{unsafe_guid, Char16, Event, Result, Status};
1+
use crate::proto::unsafe_protocol;
2+
use crate::{Char16, Event, Result, Status};
33
use core::mem::MaybeUninit;
44

55
/// Interface for text-based input devices.
66
#[repr(C)]
7-
#[unsafe_guid("387477c1-69c7-11d2-8e39-00a0c969723b")]
8-
#[derive(Protocol)]
7+
#[unsafe_protocol("387477c1-69c7-11d2-8e39-00a0c969723b")]
98
pub struct Input {
109
reset: extern "efiapi" fn(this: &mut Input, extended: bool) -> Status,
1110
read_key_stroke: extern "efiapi" fn(this: &mut Input, key: *mut RawKey) -> Status,

uefi/src/proto/console/text/output.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
use crate::proto::Protocol;
2-
use crate::{unsafe_guid, CStr16, Char16, Result, ResultExt, Status};
1+
use crate::proto::unsafe_protocol;
2+
use crate::{CStr16, Char16, Result, ResultExt, Status};
33
use core::fmt;
44
use core::fmt::{Debug, Formatter};
55

@@ -21,8 +21,7 @@ use core::fmt::{Debug, Formatter};
2121
/// [`SystemTable::stderr`]: crate::table::SystemTable::stderr
2222
/// [`BootServices`]: crate::table::boot::BootServices#accessing-protocols
2323
#[repr(C)]
24-
#[unsafe_guid("387477c2-69c7-11d2-8e39-00a0c969723b")]
25-
#[derive(Protocol)]
24+
#[unsafe_protocol("387477c2-69c7-11d2-8e39-00a0c969723b")]
2625
pub struct Output<'boot> {
2726
reset: extern "efiapi" fn(this: &Output, extended: bool) -> Status,
2827
output_string: unsafe extern "efiapi" fn(this: &Output, string: *const Char16) -> Status,

uefi/src/proto/debug/mod.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
1212
use core::ffi::c_void;
1313

14-
use crate::proto::Protocol;
15-
use crate::{unsafe_guid, Result, Status};
14+
use crate::proto::unsafe_protocol;
15+
use crate::{Result, Status};
1616

1717
// re-export for ease of use
1818
pub use self::context::SystemContext;
@@ -30,8 +30,7 @@ mod exception;
3030
///
3131
/// NOTE: OVMF only implements this protocol interface for the virtual EBC processor
3232
#[repr(C)]
33-
#[unsafe_guid("2755590c-6f3c-42fa-9ea4-a3ba543cda25")]
34-
#[derive(Protocol)]
33+
#[unsafe_protocol("2755590c-6f3c-42fa-9ea4-a3ba543cda25")]
3534
pub struct DebugSupport {
3635
isa: ProcessorArch,
3736
get_maximum_processor_index:

uefi/src/proto/device_path/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
//!
7070
//! [`END_ENTIRE`]: DeviceSubType::END_ENTIRE
7171
//! [`END_INSTANCE`]: DeviceSubType::END_INSTANCE
72+
//! [`Protocol`]: crate::proto::Protocol
7273
//! [`device_type`]: DevicePathNode::device_type
7374
//! [`sub_type`]: DevicePathNode::sub_type
7475
@@ -80,8 +81,7 @@ pub use device_path_gen::{
8081
acpi, bios_boot_spec, end, hardware, media, messaging, DevicePathNodeEnum,
8182
};
8283

83-
use crate::proto::{Protocol, ProtocolPointer};
84-
use crate::unsafe_guid;
84+
use crate::proto::{unsafe_protocol, ProtocolPointer};
8585
use core::ffi::c_void;
8686
use core::marker::{PhantomData, PhantomPinned};
8787
use core::{mem, ptr};
@@ -225,8 +225,8 @@ impl DevicePathInstance {
225225
/// [module-level documentation]: crate::proto::device_path
226226
/// [`END_ENTIRE`]: DeviceSubType::END_ENTIRE
227227
#[repr(C, packed)]
228-
#[unsafe_guid("09576e91-6d3f-11d2-8e39-00a0c969723b")]
229-
#[derive(Debug, Eq, PartialEq, Protocol)]
228+
#[unsafe_protocol("09576e91-6d3f-11d2-8e39-00a0c969723b")]
229+
#[derive(Debug, Eq, PartialEq)]
230230
pub struct DevicePath {
231231
data: [u8],
232232
}

uefi/src/proto/device_path/text.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
use crate::{
1212
proto::device_path::{DevicePath, DevicePathNode, FfiDevicePath},
13-
proto::Protocol,
13+
proto::unsafe_protocol,
1414
table::boot::BootServices,
15-
unsafe_guid, CStr16, Char16, Result, Status,
15+
CStr16, Char16, Result, Status,
1616
};
1717
use core::ops::Deref;
1818

@@ -82,8 +82,7 @@ impl Drop for PoolString<'_> {
8282
/// This protocol provides common utility functions for converting device
8383
/// nodes and device paths to a text representation.
8484
#[repr(C)]
85-
#[unsafe_guid("8b843e20-8132-4852-90cc-551a4e4a7f1c")]
86-
#[derive(Protocol)]
85+
#[unsafe_protocol("8b843e20-8132-4852-90cc-551a4e4a7f1c")]
8786
pub struct DevicePathToText {
8887
convert_device_node_to_text: unsafe extern "efiapi" fn(
8988
device_node: *const FfiDevicePath,
@@ -150,8 +149,7 @@ impl DevicePathToText {
150149
/// This protocol provides common utilities for converting text to
151150
/// device paths and device nodes.
152151
#[repr(C)]
153-
#[unsafe_guid("05c99a21-c70f-4ad2-8a5f-35df3343f51e")]
154-
#[derive(Protocol)]
152+
#[unsafe_protocol("05c99a21-c70f-4ad2-8a5f-35df3343f51e")]
155153
pub struct DevicePathFromText {
156154
convert_text_to_device_node:
157155
unsafe extern "efiapi" fn(text_device_node: *const Char16) -> *const FfiDevicePath,

uefi/src/proto/loaded_image.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@
33
use crate::{
44
data_types::FromSliceWithNulError,
55
proto::device_path::{DevicePath, FfiDevicePath},
6-
proto::Protocol,
6+
proto::unsafe_protocol,
77
table::boot::MemoryType,
8-
unsafe_guid, CStr16, Handle, Status,
8+
CStr16, Handle, Status,
99
};
1010
use core::{ffi::c_void, mem, slice};
1111

1212
/// The LoadedImage protocol. This can be opened on any image handle using the `HandleProtocol` boot service.
1313
#[repr(C)]
14-
#[unsafe_guid("5b1b31a1-9562-11d2-8e3f-00a0c969723b")]
15-
#[derive(Protocol)]
14+
#[unsafe_protocol("5b1b31a1-9562-11d2-8e3f-00a0c969723b")]
1615
pub struct LoadedImage {
1716
revision: u32,
1817
parent_handle: Handle,

uefi/src/proto/media/block.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
//! Block I/O protocols.
22
3-
use crate::proto::Protocol;
4-
use crate::{unsafe_guid, Result, Status};
3+
use crate::proto::unsafe_protocol;
4+
use crate::{Result, Status};
55

66
/// The Block I/O protocol.
77
#[repr(C)]
8-
#[unsafe_guid("964e5b21-6459-11d2-8e39-00a0c969723b")]
9-
#[derive(Protocol)]
8+
#[unsafe_protocol("964e5b21-6459-11d2-8e39-00a0c969723b")]
109
pub struct BlockIO {
1110
revision: u64,
1211
media: *const BlockIOMedia,

uefi/src/proto/media/disk.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Disk I/O protocols.
22
3-
use crate::proto::Protocol;
4-
use crate::{unsafe_guid, Event, Result, Status};
3+
use crate::proto::unsafe_protocol;
4+
use crate::{Event, Result, Status};
55
use core::ptr::NonNull;
66

77
/// The disk I/O protocol.
@@ -11,8 +11,7 @@ use core::ptr::NonNull;
1111
/// reponsible for adding this protocol to any block I/O interface that
1212
/// appears in the system that does not already have a disk I/O protocol.
1313
#[repr(C)]
14-
#[unsafe_guid("ce345171-ba0b-11d2-8e4f-00a0c969723b")]
15-
#[derive(Protocol)]
14+
#[unsafe_protocol("ce345171-ba0b-11d2-8e4f-00a0c969723b")]
1615
pub struct DiskIo {
1716
revision: u64,
1817
read_disk: extern "efiapi" fn(
@@ -84,8 +83,7 @@ pub struct DiskIo2Token {
8483
/// This protocol provides an extension to the disk I/O protocol to enable
8584
/// non-blocking / asynchronous byte-oriented disk operation.
8685
#[repr(C)]
87-
#[unsafe_guid("151c8eae-7f2c-472c-9e54-9828194f6a88")]
88-
#[derive(Protocol)]
86+
#[unsafe_protocol("151c8eae-7f2c-472c-9e54-9828194f6a88")]
8987
pub struct DiskIo2 {
9088
revision: u64,
9189
cancel: extern "efiapi" fn(this: &mut DiskIo2) -> Status,

uefi/src/proto/media/fs.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
//! File system support protocols.
22
33
use super::file::{Directory, FileHandle, FileImpl};
4-
use crate::proto::Protocol;
5-
use crate::{unsafe_guid, Result, Status};
4+
use crate::proto::unsafe_protocol;
5+
use crate::{Result, Status};
66
use core::ptr;
77

88
/// Allows access to a FAT-12/16/32 file system.
@@ -20,8 +20,7 @@ use core::ptr;
2020
/// [`BootServices::get_image_file_system`]: crate::table::boot::BootServices::get_image_file_system
2121
/// [`BootServices`]: crate::table::boot::BootServices#accessing-protocols
2222
#[repr(C)]
23-
#[unsafe_guid("964e5b22-6459-11d2-8e39-00a0c969723b")]
24-
#[derive(Protocol)]
23+
#[unsafe_protocol("964e5b22-6459-11d2-8e39-00a0c969723b")]
2524
pub struct SimpleFileSystem {
2625
revision: u64,
2726
open_volume:

uefi/src/proto/media/partition.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Partition information protocol.
22
3-
use crate::proto::Protocol;
4-
use crate::{guid, unsafe_guid, Char16, Guid};
3+
use crate::proto::unsafe_protocol;
4+
use crate::{guid, Char16, Guid};
55
use bitflags::bitflags;
66

77
newtype_enum! {
@@ -175,8 +175,7 @@ newtype_enum! {
175175
/// Protocol for accessing partition information.
176176
#[repr(C)]
177177
#[repr(packed)]
178-
#[unsafe_guid("8cf2f62c-bc9b-4821-808d-ec9ec421a1a0")]
179-
#[derive(Clone, Copy, Protocol)]
178+
#[unsafe_protocol("8cf2f62c-bc9b-4821-808d-ec9ec421a1a0")]
180179
pub struct PartitionInfo {
181180
/// Revision of the partition info protocol.
182181
pub revision: PartitionInfoRevision,

uefi/src/proto/mod.rs

+13-9
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,23 @@
1212
use crate::Identify;
1313
use core::ffi::c_void;
1414

15-
/// Common trait implemented by all standard UEFI protocols
15+
/// Common trait implemented by all standard UEFI protocols.
1616
///
1717
/// According to the UEFI's specification, protocols are `!Send` (they expect to
1818
/// be run on the bootstrap processor) and `!Sync` (they are not thread-safe).
19-
/// You can derive the `Protocol` trait, add these bounds and specify the
20-
/// protocol's GUID using the following syntax:
19+
/// You can derive the `Protocol` trait, add these bounds, and specify the
20+
/// protocol's GUID using the [`unsafe_protocol`] macro.
21+
///
22+
/// # Example
2123
///
2224
/// ```
23-
/// #![feature(negative_impls)]
24-
/// use uefi::{proto::Protocol, unsafe_guid};
25-
/// #[unsafe_guid("12345678-9abc-def0-1234-56789abcdef0")]
26-
/// #[derive(Protocol)]
27-
/// struct DummyProtocol {}
25+
/// use uefi::{Identify, guid};
26+
/// use uefi::proto::unsafe_protocol;
27+
///
28+
/// #[unsafe_protocol("12345678-9abc-def0-1234-56789abcdef0")]
29+
/// struct ExampleProtocol {}
30+
///
31+
/// assert_eq!(ExampleProtocol::GUID, guid!("12345678-9abc-def0-1234-56789abcdef0"));
2832
/// ```
2933
pub trait Protocol: Identify {}
3034

@@ -62,7 +66,7 @@ where
6266
}
6367
}
6468

65-
pub use uefi_macros::{unsafe_protocol, Protocol};
69+
pub use uefi_macros::unsafe_protocol;
6670

6771
pub mod console;
6872
pub mod debug;

0 commit comments

Comments
 (0)