-
-
Notifications
You must be signed in to change notification settings - Fork 167
/
Copy pathmod.rs
97 lines (86 loc) · 2.58 KB
/
mod.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// SPDX-License-Identifier: MIT OR Apache-2.0
//! Protocol definitions.
//!
//! Protocols are sets of related functionality identified by a unique
//! ID. They can be implemented by a UEFI driver or occasionally by a
//! UEFI application.
//!
//! See the [`boot`] documentation for details of how to open a protocol.
//!
//! [`boot`]: crate::boot#accessing-protocols
pub mod console;
pub mod debug;
pub mod device_path;
pub mod driver;
pub mod loaded_image;
pub mod media;
pub mod misc;
pub mod network;
pub mod pi;
pub mod rng;
#[cfg(feature = "alloc")]
pub mod scsi;
pub mod security;
pub mod shell_params;
pub mod shim;
pub mod string;
pub mod tcg;
mod boot_policy;
pub use boot_policy::BootPolicy;
pub use uefi_macros::unsafe_protocol;
use crate::Identify;
use core::ffi::c_void;
#[cfg(doc)]
use crate::boot;
/// Marker trait for structures that represent UEFI protocols.
///
/// Implementing this trait allows a protocol to be opened with
/// [`boot::open_protocol`] or [`boot::open_protocol_exclusive`]. Note that
/// implementing this trait does not automatically install a protocol. To
/// install a protocol, call [`boot::install_protocol_interface`].
///
/// As a convenience, you can derive the `Protocol` trait and specify the
/// protocol's GUID using the [`unsafe_protocol`] macro.
///
/// # Example
///
/// ```
/// use uefi::{Identify, guid};
/// use uefi::proto::unsafe_protocol;
///
/// #[unsafe_protocol("12345678-9abc-def0-1234-56789abcdef0")]
/// struct ExampleProtocol {}
///
/// assert_eq!(ExampleProtocol::GUID, guid!("12345678-9abc-def0-1234-56789abcdef0"));
/// ```
pub trait Protocol: Identify {}
/// Trait for creating a protocol pointer from a [`c_void`] pointer.
///
/// There is a blanket implementation for all [`Sized`] protocols that
/// simply casts the pointer to the appropriate type. Protocols that
/// are not sized must provide a custom implementation.
pub trait ProtocolPointer: Protocol {
/// Create a const pointer to a [`Protocol`] from a [`c_void`] pointer.
///
/// # Safety
///
/// The input pointer must point to valid data.
unsafe fn ptr_from_ffi(ptr: *const c_void) -> *const Self;
/// Create a mutable pointer to a [`Protocol`] from a [`c_void`] pointer.
///
/// # Safety
///
/// The input pointer must point to valid data.
unsafe fn mut_ptr_from_ffi(ptr: *mut c_void) -> *mut Self;
}
impl<P> ProtocolPointer for P
where
P: Protocol,
{
unsafe fn ptr_from_ffi(ptr: *const c_void) -> *const Self {
ptr.cast::<Self>()
}
unsafe fn mut_ptr_from_ffi(ptr: *mut c_void) -> *mut Self {
ptr.cast::<Self>()
}
}