Skip to main content

SafePath

Struct SafePath 

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

A validated path that prevents path traversal attacks

This newtype wrapper around PathBuf ensures that all paths are validated on construction and cannot be modified to violate safety constraints.

Implementations§

Source§

impl SafePath

Source

pub fn new<P: AsRef<Path>>(path: P) -> Result<Self>

Create a new SafePath from a string-like type

§Validation Rules
  • No parent directory references (..)
  • Must be relative or within allowed root (if absolute)
  • Maximum depth of 20 levels
  • Path components must not be empty or contain only whitespace
§Examples
use ggen_utils::safe_path::SafePath;

// Valid paths
assert!(SafePath::new("src/generated").is_ok());
assert!(SafePath::new("./output").is_ok());
assert!(SafePath::new("test").is_ok());

// Invalid paths
assert!(SafePath::new("../etc").is_err());
assert!(SafePath::new("src/../../../etc").is_err());
assert!(SafePath::new("").is_err());
Source

pub fn join<P: AsRef<Path>>(&self, path: P) -> Result<Self>

Join this path with another path component

The joined path is validated to ensure safety constraints are maintained.

§Examples
use ggen_utils::safe_path::SafePath;

let base = SafePath::new("src").unwrap();
let joined = base.join("generated").unwrap();
assert_eq!(joined.as_path().to_str().unwrap(), "src/generated");

// Cannot join with parent references
assert!(base.join("../etc").is_err());
Source

pub fn as_path(&self) -> &Path

Get a reference to the inner path

§Examples
use ggen_utils::safe_path::SafePath;

let safe = SafePath::new("src/generated").unwrap();
assert_eq!(safe.as_path().to_str().unwrap(), "src/generated");
Source

pub fn into_path_buf(self) -> PathBuf

Convert into the inner PathBuf

§Examples
use ggen_utils::safe_path::SafePath;

let safe = SafePath::new("src/generated").unwrap();
let path_buf = safe.into_path_buf();
assert_eq!(path_buf.to_str().unwrap(), "src/generated");
Source

pub fn as_path_buf(&self) -> PathBuf

Get the PathBuf (clone)

§Examples
use ggen_utils::safe_path::SafePath;

let safe = SafePath::new("src/generated").unwrap();
let path_buf = safe.as_path_buf();
assert_eq!(path_buf.to_str().unwrap(), "src/generated");
Source

pub fn new_absolute<P: AsRef<Path>>(path: P) -> Result<Self>

Create a SafePath allowing absolute paths (for system paths like config files)

§Examples
use ggen_utils::safe_path::SafePath;

let safe = SafePath::new_absolute("/tmp/config.toml").unwrap();
assert!(safe.as_path().is_absolute());
Source

pub fn current_dir() -> Result<Self>

Get current working directory as SafePath

§Examples
use ggen_utils::safe_path::SafePath;

let cwd = SafePath::current_dir().unwrap();
assert!(cwd.as_path().is_absolute());
Source

pub fn parent(&self) -> Result<Self>

Get the parent directory

§Examples
use ggen_utils::safe_path::SafePath;

let path = SafePath::new("src/generated").unwrap();
let parent = path.parent().unwrap();
assert_eq!(parent.as_path().to_str().unwrap(), "src");
Source

pub fn exists(&self) -> bool

Check if path exists on filesystem

§Examples
use ggen_utils::safe_path::SafePath;

let cwd = SafePath::current_dir().unwrap();
assert!(cwd.exists());

Trait Implementations§

Source§

impl AsRef<Path> for SafePath

Source§

fn as_ref(&self) -> &Path

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

impl AsRef<PathBuf> for SafePath

Source§

fn as_ref(&self) -> &PathBuf

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

impl Clone for SafePath

Source§

fn clone(&self) -> SafePath

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for SafePath

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Display for SafePath

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Eq for SafePath

Source§

impl Hash for SafePath

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for SafePath

Source§

fn eq(&self, other: &SafePath) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for SafePath

Source§

impl TryFrom<&Path> for SafePath

Source§

type Error = Error

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

fn try_from(value: &Path) -> Result<Self>

Performs the conversion.
Source§

impl TryFrom<&String> for SafePath

Source§

type Error = Error

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

fn try_from(value: &String) -> Result<Self>

Performs the conversion.
Source§

impl TryFrom<&str> for SafePath

Source§

type Error = Error

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

fn try_from(value: &str) -> Result<Self>

Performs the conversion.
Source§

impl TryFrom<PathBuf> for SafePath

Source§

type Error = Error

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

fn try_from(value: PathBuf) -> Result<Self>

Performs the conversion.
Source§

impl TryFrom<String> for SafePath

Source§

type Error = Error

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

fn try_from(value: String) -> Result<Self>

Performs the conversion.

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> 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<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
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> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> SendSyncUnwindSafe for T
where T: Send + Sync + UnwindSafe + ?Sized,

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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V