Struct gix_status::SymlinkCheck

source ·
pub struct SymlinkCheck { /* private fields */ }
Expand description

A stack that validates we are not going through a symlink in a way that is read-only.

It can efficiently validate paths when these are queried in sort-order, which leads to each component to only be checked once.

Implementations§

source§

impl SymlinkCheck

source

pub fn new(root: PathBuf) -> Self

Create a new stack that starts operating at root.

source

pub fn verified_path(&mut self, relative_path: &Path) -> Result<&Path>

Return a valid filesystem path located in our root by appending relative_path, which is guaranteed to not pass through a symbolic link. That way the caller can be sure to not be misled by an attacker that tries to make us reach outside of the repository.

Note that the file pointed to by relative_path may still be a symbolic link, or not exist at all, and that an error may also be produced if directories on the path leading to the leaf component of relative_path are missing.

§Note

On windows, no verification is performed, instead only the combined path is provided as usual.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.