Jail

Struct Jail 

Source
pub struct Jail { /* private fields */ }
Expand description

A filesystem sandbox that restricts paths to a root directory.

Implementations§

Source§

impl Jail

Source

pub fn new<P: AsRef<Path>>(root: P) -> Result<Self, JailError>

Create a jail rooted at the given directory. Canonicalizes the root immediately. Errors if root does not exist or is not a directory.

Source

pub fn root(&self) -> &Path

Returns the canonicalized root path.

Source

pub fn join<P: AsRef<Path>>(&self, relative: P) -> Result<PathBuf, JailError>

Safely join a relative path to the jail root.

Resolves .. components, follows symlinks, verifies containment. Works even if the final path does not exist.

Source

pub fn contains<P: AsRef<Path>>( &self, absolute: P, ) -> Result<PathBuf, JailError>

Verify an absolute path is inside the jail. Returns the canonicalized path if it’s inside, otherwise an error. The path must exist.

Source

pub fn relative<P: AsRef<Path>>( &self, absolute: P, ) -> Result<PathBuf, JailError>

Get the relative path from an absolute path inside the jail.

This is the inverse of join: it takes an absolute path and returns the relative portion within the jail. Useful for storing portable paths in a database.

The path must exist (for symlink resolution). For non-existent paths, keep the original relative path you passed to join.

§Example
use path_jail::Jail;

let jail = Jail::new("/var/uploads")?;
let abs = jail.join("2025/report.pdf")?;
std::fs::write(&abs, b"data")?;  // Create the file

// Get the relative path for database storage
let rel = jail.relative(&abs)?;
assert_eq!(rel, std::path::Path::new("2025/report.pdf"));

Trait Implementations§

Source§

impl AsRef<Path> for Jail

Source§

fn as_ref(&self) -> &Path

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Clone for Jail

Source§

fn clone(&self) -> Jail

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Jail

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Jail

§

impl RefUnwindSafe for Jail

§

impl Send for Jail

§

impl Sync for Jail

§

impl Unpin for Jail

§

impl UnwindSafe for Jail

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

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>,

Source§

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.