UserPtrWO

Struct UserPtrWO 

Source
pub struct UserPtrWO<T>
where T: Copy,
{ addr: usize, _ty: PhantomData<T>, }
Expand description

A one-time, write-only pointer to a user-space object of type T.

This struct allows the kernel to write to user-space while ensuring safe access patterns. It prevents TOCTOU (Time-of-Check to Time-of-Use) attacks by taking ownership of the pointer during operations.

§Type Parameter

  • T: The type of the data being accessed. Must implement Copy.

Fields§

§addr: usize§_ty: PhantomData<T>

Implementations§

Source§

impl<T> UserPtrWO<T>
where T: Copy,

Source

pub fn new(addr: usize) -> Self

Creates a new UserPtrWO instance with the given user-space address.

Source

pub fn put(self, other: T) -> Result<usize, KernelError>

Writes a value of type T to the user-space address.

Takes ownership of self to prevent TOCTOU attacks.

Returns Ok(usize) indicating the number of bytes written, or Err(KernelError::BadAddress) on failure.

Trait Implementations§

Source§

impl<T> Debug for UserPtrWO<T>
where T: Copy + Debug,

Source§

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

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

impl<T> Ord for UserPtrWO<T>
where T: Copy + Ord,

Source§

fn cmp(&self, other: &UserPtrWO<T>) -> Ordering

This method returns an [Ordering] between self and other. Read more
1.21.0§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<T> PartialEq for UserPtrWO<T>
where T: Copy + PartialEq,

Source§

fn eq(&self, other: &UserPtrWO<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T> PartialOrd for UserPtrWO<T>
where T: Copy + PartialOrd,

Source§

fn partial_cmp(&self, other: &UserPtrWO<T>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<T> Eq for UserPtrWO<T>
where T: Copy + Eq,

Source§

impl<T> StructuralPartialEq for UserPtrWO<T>
where T: Copy,

Auto Trait Implementations§

§

impl<T> Freeze for UserPtrWO<T>

§

impl<T> RefUnwindSafe for UserPtrWO<T>
where T: RefUnwindSafe,

§

impl<T> Send for UserPtrWO<T>
where T: Send,

§

impl<T> Sync for UserPtrWO<T>
where T: Sync,

§

impl<T> Unpin for UserPtrWO<T>
where T: Unpin,

§

impl<T> UnwindSafe for UserPtrWO<T>
where T: UnwindSafe,

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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.
§

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

Performs the conversion.