Skip to content

Commit

Permalink
Expand sys/os for UEFI
Browse files Browse the repository at this point in the history
- Implement current_exe() and getcwd()

Signed-off-by: Ayush Singh <ayushdevel1325@gmail.com>
  • Loading branch information
Ayush1325 committed Jan 27, 2024
1 parent 04521fd commit a5e43be
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 6 deletions.
55 changes: 52 additions & 3 deletions library/std/src/sys/pal/uefi/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,16 @@
//! - More information about protocols can be found [here](https://edk2-docs.gitbook.io/edk-ii-uefi-driver-writer-s-guide/3_foundation/36_protocols_and_handles)

use r_efi::efi::{self, Guid};
use r_efi::protocols::{device_path, device_path_to_text};

use crate::alloc::Layout;
use crate::ffi::OsString;
use crate::mem::{size_of, MaybeUninit};
use crate::os::uefi;
use crate::os::uefi::ffi::OsStringExt;
use crate::ptr::NonNull;
use crate::slice;
use crate::sys_common::wstr::WStrUnits;
use crate::{
io::{self, const_io_error},
os::uefi::env::boot_services,
Expand Down Expand Up @@ -142,7 +148,50 @@ pub(crate) unsafe fn close_event(evt: NonNull<crate::ffi::c_void>) -> io::Result

/// Get the Protocol for current system handle.
/// Note: Some protocols need to be manually freed. It is the callers responsibility to do so.
pub(crate) fn image_handle_protocol<T>(protocol_guid: Guid) -> Option<NonNull<T>> {
let system_handle = uefi::env::try_image_handle()?;
open_protocol(system_handle, protocol_guid).ok()
pub(crate) fn image_handle_protocol<T>(protocol_guid: Guid) -> io::Result<NonNull<T>> {
let system_handle = uefi::env::try_image_handle().ok_or(io::const_io_error!(
io::ErrorKind::NotFound,
"Protocol not found in Image handle"
))?;
open_protocol(system_handle, protocol_guid)
}

pub(crate) fn device_path_to_text(path: *mut device_path::Protocol) -> io::Result<OsString> {
let device_path_to_text_handles = locate_handles(device_path_to_text::PROTOCOL_GUID)?;
for handle in device_path_to_text_handles {
let Ok(protocol) = open_protocol::<device_path_to_text::Protocol>(
handle,
device_path_to_text::PROTOCOL_GUID,
) else {
continue;
};

let path_ptr: *mut r_efi::efi::Char16 = unsafe {
((*protocol.as_ptr()).convert_device_path_to_text)(
path,
r_efi::efi::Boolean::FALSE,
r_efi::efi::Boolean::FALSE,
)
};

// SAFETY: Error only occurs if path is NULL. Thus no need to dealloc path_ptr
let path_len = unsafe {
WStrUnits::new(path_ptr)
.ok_or(io::const_io_error!(io::ErrorKind::InvalidData, "Invalid path"))?
.count()
};

let path = OsString::from_wide(unsafe { slice::from_raw_parts(path_ptr.cast(), path_len) });

unsafe {
// UEFI Spec says all allocations are 8 byte aligned
crate::alloc::dealloc(
path_ptr.cast(),
Layout::from_size_align_unchecked(path_len * size_of::<u16>(), 8),
);
}
return Ok(path);
}

Err(io::const_io_error!(io::ErrorKind::NotFound, "No device path to text protocol found"))
}
12 changes: 9 additions & 3 deletions library/std/src/sys/pal/uefi/os.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use super::{unsupported, RawOsError};
use super::{helpers, unsupported, RawOsError};
use crate::error::Error as StdError;
use crate::ffi::{OsStr, OsString};
use crate::fmt;
Expand All @@ -7,6 +7,7 @@ use crate::marker::PhantomData;
use crate::os::uefi;
use crate::path::{self, PathBuf};
use crate::ptr::NonNull;
use r_efi::efi::protocols::{device_path, loaded_image_device_path};
use r_efi::efi::Status;

pub fn errno() -> RawOsError {
Expand Down Expand Up @@ -124,7 +125,9 @@ pub fn error_string(errno: RawOsError) -> String {
}

pub fn getcwd() -> io::Result<PathBuf> {
unsupported()
let mut p = current_exe()?;
p.pop();
Ok(p)
}

pub fn chdir(_: &path::Path) -> io::Result<()> {
Expand Down Expand Up @@ -164,7 +167,10 @@ impl fmt::Display for JoinPathsError {
impl StdError for JoinPathsError {}

pub fn current_exe() -> io::Result<PathBuf> {
unsupported()
let protocol = helpers::image_handle_protocol::<device_path::Protocol>(
loaded_image_device_path::PROTOCOL_GUID,
)?;
helpers::device_path_to_text(protocol.as_ptr()).map(PathBuf::from)
}

pub struct Env(!);
Expand Down

0 comments on commit a5e43be

Please sign in to comment.