ZFI is a Rust crate for writing a UEFI application with the following goals:
ZFI supports only single-thread environment, which is the same as UEFI specifications.
```rust
use alloc::boxed::Box; use zfi::{pause, println, DebugFile, Image, Status, SystemTable};
extern crate alloc;
extern "efiapi" fn efimain(image: &'static Image, st: &'static SystemTable) -> Status { // This is the only place you need to use unsafe. This must be done immediately after landing // here. unsafe { zfi::init( image, st, Some(|| Box::new(DebugFile::nextto_image("log").unwrap())), ) };
// Any EFI_HANDLE will be represents by a reference to a Rust type (e.g. image here is a type of
// Image). Each type that represents EFI_HANDLE provides the methods to access any protocols it
// is capable for (e.g. you can do image.proto() here to get an EFI_LOADED_IMAGE_PROTOCOL from
// it). You can download the UEFI specifications for free here: https://uefi.org/specifications
println!("Hello, world!");
pause();
Status::SUCCESS
}
fn panic_handler(info: &core::panic::PanicInfo) -> ! { zfi::eprintln!("{info}"); loop {} }
static ALLOCATOR: zfi::PoolAllocator = zfi:PoolAllocator; ```
To build the above example you need to add a UEFI target to Rust:
sh
rustup target add x86_64-unknown-uefi
Then build with the following command:
sh
cargo build --target x86_64-unknown-uefi
You can grab the EFI file in target/x86_64-unknown-uefi/debug
and boot it on a compatible machine.
Please contact hello@ultima.inc if you need commercial support.
MIT