Skip to content

Commit e9c03c1

Browse files
Update test-runner
1 parent bb5be77 commit e9c03c1

File tree

6 files changed

+135
-151
lines changed

6 files changed

+135
-151
lines changed

uefi-test-runner/src/bin/shell_launcher.rs

+21-27
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,14 @@ use uefi::proto::device_path::build::{self, DevicePathBuilder};
1818
use uefi::proto::device_path::{DevicePath, DeviceSubType, DeviceType, LoadedImageDevicePath};
1919
use uefi::proto::loaded_image::LoadedImage;
2020
use uefi::table::boot::LoadImageSource;
21+
use uefi::{boot, Result};
2122

2223
/// Get the device path of the shell app. This is the same as the
2324
/// currently-loaded image's device path, but with the file path part changed.
24-
fn get_shell_app_device_path<'a>(
25-
boot_services: &BootServices,
26-
storage: &'a mut Vec<u8>,
27-
) -> &'a DevicePath {
28-
let loaded_image_device_path = boot_services
29-
.open_protocol_exclusive::<LoadedImageDevicePath>(boot_services.image_handle())
30-
.expect("failed to open LoadedImageDevicePath protocol");
25+
fn get_shell_app_device_path(storage: &mut Vec<u8>) -> &DevicePath {
26+
let loaded_image_device_path =
27+
boot::open_protocol_exclusive::<LoadedImageDevicePath>(boot::image_handle())
28+
.expect("failed to open LoadedImageDevicePath protocol");
3129

3230
let mut builder = DevicePathBuilder::with_vec(storage);
3331
for node in loaded_image_device_path.node_iter() {
@@ -44,29 +42,25 @@ fn get_shell_app_device_path<'a>(
4442
builder.finalize().unwrap()
4543
}
4644

47-
#[entry]
48-
fn efi_main(image: Handle, mut st: SystemTable<Boot>) -> Status {
49-
uefi::helpers::init(&mut st).unwrap();
50-
let boot_services = st.boot_services();
45+
fn main() -> Result {
46+
uefi::helpers::init_v2().unwrap();
5147

5248
let mut storage = Vec::new();
53-
let shell_image_path = get_shell_app_device_path(boot_services, &mut storage);
49+
let shell_image_path = get_shell_app_device_path(&mut storage);
5450

5551
// Load the shell app.
56-
let shell_image_handle = boot_services
57-
.load_image(
58-
image,
59-
LoadImageSource::FromDevicePath {
60-
device_path: shell_image_path,
61-
from_boot_manager: false,
62-
},
63-
)
64-
.expect("failed to load shell app");
52+
let shell_image_handle = boot::load_image(
53+
boot::image_handle(),
54+
LoadImageSource::FromDevicePath {
55+
device_path: shell_image_path,
56+
from_boot_manager: false,
57+
},
58+
)
59+
.expect("failed to load shell app");
6560

6661
// Set the command line passed to the shell app so that it will run the
6762
// test-runner app. This automatically turns off the five-second delay.
68-
let mut shell_loaded_image = boot_services
69-
.open_protocol_exclusive::<LoadedImage>(shell_image_handle)
63+
let mut shell_loaded_image = boot::open_protocol_exclusive::<LoadedImage>(shell_image_handle)
7064
.expect("failed to open LoadedImage protocol");
7165
let load_options = cstr16!(r"shell.efi test_runner.efi arg1 arg2");
7266
unsafe {
@@ -77,9 +71,9 @@ fn efi_main(image: Handle, mut st: SystemTable<Boot>) -> Status {
7771
}
7872

7973
info!("launching the shell app");
80-
boot_services
81-
.start_image(shell_image_handle)
82-
.expect("failed to launch the shell app");
74+
boot::start_image(shell_image_handle).expect("failed to launch the shell app");
8375

84-
Status::SUCCESS
76+
Ok(())
8577
}
78+
79+
uefi::set_main!(main);

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

+11-14
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
1-
use uefi::table::boot::{AllocateType, BootServices, MemoryType};
1+
use uefi::boot;
2+
use uefi::table::boot::{AllocateType, MemoryType};
23

34
use alloc::vec::Vec;
45

5-
pub fn test(bt: &BootServices) {
6+
pub fn test() {
67
info!("Testing memory functions");
78

8-
allocate_pages(bt);
9+
allocate_pages();
910
vec_alloc();
1011
alloc_alignment();
1112

12-
memory_map(bt);
13+
memory_map();
1314
}
1415

15-
fn allocate_pages(bt: &BootServices) {
16+
fn allocate_pages() {
1617
info!("Allocating some pages of memory");
1718

1819
let ty = AllocateType::AnyPages;
1920
let mem_ty = MemoryType::LOADER_DATA;
20-
let pgs = bt
21-
.allocate_pages(ty, mem_ty, 1)
22-
.expect("Failed to allocate a page of memory");
21+
let pgs = boot::allocate_pages(ty, mem_ty, 1).expect("Failed to allocate a page of memory");
2322

2423
assert_eq!(pgs % 4096, 0, "Page pointer is not page-aligned");
2524

@@ -31,7 +30,7 @@ fn allocate_pages(bt: &BootServices) {
3130
buf[4095] = 0x23;
3231

3332
// Clean up to avoid memory leaks.
34-
unsafe { bt.free_pages(pgs, 1) }.unwrap();
33+
unsafe { boot::free_pages(pgs, 1) }.unwrap();
3534
}
3635

3736
// Simple test to ensure our custom allocator works with the `alloc` crate.
@@ -60,21 +59,19 @@ fn alloc_alignment() {
6059
assert_eq!(value.as_ptr() as usize % 0x100, 0, "Wrong alignment");
6160
}
6261

63-
fn memory_map(bt: &BootServices) {
62+
fn memory_map() {
6463
info!("Testing memory map functions");
6564

6665
// Get the memory descriptor size and an estimate of the memory map size
67-
let sizes = bt.memory_map_size();
66+
let sizes = boot::memory_map_size();
6867

6968
// 2 extra descriptors should be enough.
7069
let buf_sz = sizes.map_size + 2 * sizes.entry_size;
7170

7271
// We will use vectors for convenience.
7372
let mut buffer = vec![0_u8; buf_sz];
7473

75-
let mut memory_map = bt
76-
.memory_map(&mut buffer)
77-
.expect("Failed to retrieve UEFI memory map");
74+
let mut memory_map = boot::memory_map(&mut buffer).expect("Failed to retrieve UEFI memory map");
7875

7976
memory_map.sort();
8077

0 commit comments

Comments
 (0)