Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add uefi::system module
This is similar to existing methods of `SystemTable`, but as freestanding functions that use the global system table pointer.
  • Loading branch information
nicholasbishop committed Jul 15, 2024
commit 7758fe48f5f81c109218055fc4c74d8456eb17a2
4 changes: 4 additions & 0 deletions uefi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# uefi - [Unreleased]

## Added
- `uefi::system` is a new module that provides freestanding functions for
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: In a follow-up: We might should add a [new api] "tag" for that in the changelog - this might ease consumers to understand what's going on

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed, I was thinking maybe just add a short paragraph between # uefi and ## Added .

accessing fields of the global system table.

## Changed
- **Breaking:** `uefi::helpers::init` no longer takes an argument.
- The lifetime of the `SearchType` returned from
Expand Down
1 change: 1 addition & 0 deletions uefi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ pub use uguid::guid;
mod result;
pub use result::{Error, Result, ResultExt, Status, StatusExt};

pub mod system;
pub mod table;

pub mod proto;
Expand Down
146 changes: 146 additions & 0 deletions uefi/src/system.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,146 @@
//! Functions for accessing fields of the system table.
//!
//! Some of these functions use a callback argument rather than returning a
//! reference to the field directly. This pattern is used because some fields
//! are allowed to change, and so a static lifetime cannot be used.
//!
//! Some functions can only be called while boot services are active, and will
//! panic otherwise. See each function's documentation for details.

use crate::proto::console::text::{Input, Output};
use crate::table::cfg::ConfigTableEntry;
use crate::table::{self, Revision};
use crate::{CStr16, Char16};
use core::slice;

/// Get the firmware vendor string.
#[must_use]
pub fn firmware_vendor() -> &'static CStr16 {
let st = table::system_table_raw_panicking();
// SAFETY: valid per requirements of `set_system_table`.
let st = unsafe { st.as_ref() };

let vendor: *const Char16 = st.firmware_vendor.cast();

// SAFETY: this assumes that the firmware vendor string is never mutated or freed.
unsafe { CStr16::from_ptr(vendor) }
}

/// Get the firmware revision.
#[must_use]
pub fn firmware_revision() -> u32 {
let st = table::system_table_raw_panicking();
// SAFETY: valid per requirements of `set_system_table`.
let st = unsafe { st.as_ref() };

st.firmware_revision
}

/// Get the revision of the system table, which is defined to be the revision of
/// the UEFI specification implemented by the firmware.
#[must_use]
pub fn uefi_revision() -> Revision {
let st = table::system_table_raw_panicking();
// SAFETY: valid per requirements of `set_system_table`.
let st = unsafe { st.as_ref() };

st.header.revision
}

/// Call `f` with a slice of [`ConfigTableEntry`]. Each entry provides access to
/// a vendor-specific table.
pub fn with_config_table<F, R>(f: F) -> R
where
F: Fn(&[ConfigTableEntry]) -> R,
{
let st = table::system_table_raw_panicking();
// SAFETY: valid per requirements of `set_system_table`.
let st = unsafe { st.as_ref() };

let ptr: *const ConfigTableEntry = st.configuration_table.cast();
let len = st.number_of_configuration_table_entries;
let slice = if ptr.is_null() {
&[]
} else {
unsafe { slice::from_raw_parts(ptr, len) }
};
f(slice)
}

/// Call `f` with the [`Input`] protocol attached to stdin.
///
/// # Panics
///
/// This function will panic if called after exiting boot services, or if stdin
/// is not available.
pub fn with_stdin<F, R>(f: F) -> R
where
F: Fn(&mut Input) -> R,
{
let st = table::system_table_raw_panicking();
// SAFETY: valid per requirements of `set_system_table`.
let st = unsafe { st.as_ref() };
// The I/O protocols cannot be used after exiting boot services.
assert!(!st.boot_services.is_null(), "boot services are not active");
assert!(!st.stdin.is_null(), "stdin is not available");

let stdin: *mut Input = st.stdin.cast();

// SAFETY: `Input` is a `repr(transparent)` wrapper around the raw input
// type. The underlying pointer in the system table is assumed to be valid.
let stdin = unsafe { &mut *stdin };

f(stdin)
}

/// Call `f` with the [`Output`] protocol attached to stdout.
///
/// # Panics
///
/// This function will panic if called after exiting boot services, or if stdout
/// is not available.
pub fn with_stdout<F, R>(f: F) -> R
where
F: Fn(&mut Output) -> R,
{
let st = table::system_table_raw_panicking();
// SAFETY: valid per requirements of `set_system_table`.
let st = unsafe { st.as_ref() };
// The I/O protocols cannot be used after exiting boot services.
assert!(!st.boot_services.is_null(), "boot services are not active");
assert!(!st.stdout.is_null(), "stdout is not available");

let stdout: *mut Output = st.stdout.cast();

// SAFETY: `Output` is a `repr(transparent)` wrapper around the raw output
// type. The underlying pointer in the system table is assumed to be valid.
let stdout = unsafe { &mut *stdout };

f(stdout)
}

/// Call `f` with the [`Output`] protocol attached to stderr.
///
/// # Panics
///
/// This function will panic if called after exiting boot services, or if stderr
/// is not available.
pub fn with_stderr<F, R>(f: F) -> R
where
F: Fn(&mut Output) -> R,
{
let st = table::system_table_raw_panicking();
// SAFETY: valid per requirements of `set_system_table`.
let st = unsafe { st.as_ref() };
// The I/O protocols cannot be used after exiting boot services.
assert!(!st.boot_services.is_null(), "boot services are not active");
assert!(!st.stderr.is_null(), "stderr is not available");

let stderr: *mut Output = st.stderr.cast();

// SAFETY: `Output` is a `repr(transparent)` wrapper around the raw output
// type. The underlying pointer in the system table is assumed to be valid.
let stderr = unsafe { &mut *stderr };

f(stderr)
}