Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions library/std/src/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -518,8 +518,9 @@ pub struct JoinPathsError {
///
/// Returns an [`Err`] (containing an error message) if one of the input
/// [`Path`]s contains an invalid character for constructing the `PATH`
/// variable (a double quote on Windows or a colon on Unix), or if the system
/// does not have a `PATH`-like variable (e.g. UEFI or WASI).
/// variable (a double quote on Windows or a colon on Unix or both double
/// quote/colon on UEFI), or if the system does not have a `PATH`-like
/// variable (e.g. UEFI or WASI).
///
/// # Examples
///
Expand Down
27 changes: 24 additions & 3 deletions library/std/src/sys/pal/uefi/os.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@ use super::{helpers, unsupported_err};
use crate::ffi::{OsStr, OsString};
use crate::marker::PhantomData;
use crate::os::uefi;
use crate::os::uefi::ffi::{OsStrExt, OsStringExt};
use crate::path::{self, PathBuf};
use crate::ptr::NonNull;
use crate::{fmt, io};

const PATHS_SEP: u16 = b';' as u16;
const QUOTE: u16 = b'"' as u16;

pub fn getcwd() -> io::Result<PathBuf> {
match helpers::open_shell() {
Some(shell) => {
Expand Down Expand Up @@ -54,17 +58,34 @@ impl<'a> Iterator for SplitPaths<'a> {
#[derive(Debug)]
pub struct JoinPathsError;

pub fn join_paths<I, T>(_paths: I) -> Result<OsString, JoinPathsError>
// UEFI Shell Path variable is defined in Section 3.6.1
// [UEFI Shell Specification](https://uefi.org/sites/default/files/resources/UEFI_Shell_2_2.pdf).
pub fn join_paths<I, T>(paths: I) -> Result<OsString, JoinPathsError>
Copy link
Member

Choose a reason for hiding this comment

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

Can you update the join_paths public documentation now that this is supported? https://doc.rust-lang.org/nightly/std/env/fn.join_paths.html

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Updated

where
I: Iterator<Item = T>,
T: AsRef<OsStr>,
{
Err(JoinPathsError)
let mut joined = Vec::new();

for (i, path) in paths.enumerate() {
let path = path.as_ref();
if i > 0 {
joined.push(PATHS_SEP)
}
let v = path.encode_wide().collect::<Vec<u16>>();
if v.contains(&QUOTE) || v.contains(&PATHS_SEP) {
return Err(JoinPathsError);
}

joined.extend_from_slice(&v[..]);
}

Ok(OsString::from_wide(&joined[..]))
}

impl fmt::Display for JoinPathsError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
"not supported on this platform yet".fmt(f)
"path segment contains `\"` or `;`".fmt(f)
}
}

Expand Down
Loading