kernel::uaccess

Struct UserSliceReader

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

A reader for UserSlice.

Used to incrementally read from the user slice.

Implementations§

Source§

impl UserSliceReader

Source

pub fn skip(&mut self, num_skip: usize) -> Result

Skip the provided number of bytes.

Returns an error if skipping more than the length of the buffer.

Source

pub fn clone_reader(&self) -> UserSliceReader

Create a reader that can access the same range of data.

Reading from the clone does not advance the current reader.

The caller should take care to not introduce TOCTOU issues, as described in the documentation for UserSlice.

Source

pub fn len(&self) -> usize

Returns the number of bytes left to be read from this reader.

Note that even reading less than this number of bytes may fail.

Source

pub fn is_empty(&self) -> bool

Returns true if no data is available in the io buffer.

Source

pub fn read_raw(&mut self, out: &mut [MaybeUninit<u8>]) -> Result

Reads raw data from the user slice into a kernel buffer.

For a version that uses &mut [u8], please see UserSliceReader::read_slice.

Fails with EFAULT if the read happens on a bad address, or if the read goes out of bounds of this UserSliceReader. This call may modify out even if it returns an error.

§Guarantees

After a successful call to this method, all bytes in out are initialized.

Source

pub fn read_slice(&mut self, out: &mut [u8]) -> Result

Reads raw data from the user slice into a kernel buffer.

Fails with EFAULT if the read happens on a bad address, or if the read goes out of bounds of this UserSliceReader. This call may modify out even if it returns an error.

Source

pub fn read<T: FromBytes>(&mut self) -> Result<T>

Reads a value of the specified type.

Fails with EFAULT if the read happens on a bad address, or if the read goes out of bounds of this UserSliceReader.

Source

pub fn read_all(self, buf: &mut KVec<u8>, flags: Flags) -> Result

Reads the entirety of the user slice, appending it to the end of the provided buffer.

Fails with EFAULT if the read happens on a bad address.

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, E> Init<T, E> for T

Source§

unsafe fn __init(self, slot: *mut T) -> Result<(), E>

Initializes slot. Read more
Source§

fn chain<F>(self, f: F) -> ChainInit<Self, F, T, E>
where F: FnOnce(&mut T) -> Result<(), E>,

First initializes the value using self then calls the function f with the initialized value. Read more
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, E> PinInit<T, E> for T

Source§

unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), E>

Initializes slot. Read more
Source§

fn pin_chain<F>(self, f: F) -> ChainPinInit<Self, F, T, E>
where F: FnOnce(Pin<&mut T>) -> Result<(), E>,

First initializes the value using self then calls the function f with the initialized value. 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.