kernel::fs::file

Struct LocalFile

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

Wraps the kernel’s struct file. Not thread safe.

This type represents a file that is not known to be safe to transfer across thread boundaries. To obtain a thread-safe File, use the assume_no_fdget_pos conversion.

See the documentation for File for more information.

§Invariants

  • All instances of this type are refcounted using the f_count field.
  • If there is an active call to fdget_pos that did not take the f_pos_lock mutex, then it must be on the same thread as this file.

Implementations§

Source§

impl LocalFile

Source

pub fn fget(fd: u32) -> Result<ARef<LocalFile>, BadFdError>

Constructs a new struct file wrapper from a file descriptor.

The file descriptor belongs to the current process, and there might be active local calls to fdget_pos on the same file.

To obtain an ARef<File>, use the assume_no_fdget_pos function to convert.

Source

pub unsafe fn from_raw_file<'a>(ptr: *const file) -> &'a LocalFile

Creates a reference to a LocalFile from a valid pointer.

§Safety
  • The caller must ensure that ptr points at a valid file and that the file’s refcount is positive for the duration of ’a.
  • The caller must ensure that if there is an active call to fdget_pos that did not take the f_pos_lock mutex, then that call is on the current thread.
Source

pub unsafe fn assume_no_fdget_pos(me: ARef<LocalFile>) -> ARef<File>

Assume that there are no active fdget_pos calls that prevent us from sharing this file.

This makes it safe to transfer this file to other threads. No checks are performed, and using it incorrectly may lead to a data race on the file position if the file is shared with another thread.

This method is intended to be used together with LocalFile::fget when the caller knows statically that there are no fdget_pos calls on the current thread. For example, you might use it when calling fget from an ioctl, since ioctls usually do not touch the file position.

§Safety

There must not be any active fdget_pos calls on the current thread.

Source

pub fn as_ptr(&self) -> *mut file

Returns a raw pointer to the inner C struct.

Source

pub fn cred(&self) -> &Credential

Returns the credentials of the task that originally opened the file.

Source

pub fn flags(&self) -> u32

Returns the flags associated with the file.

The flags are a combination of the constants in flags.

Trait Implementations§

Source§

impl AlwaysRefCounted for LocalFile

Source§

fn inc_ref(&self)

Increments the reference count on the object.
Source§

unsafe fn dec_ref(obj: NonNull<LocalFile>)

Decrements the reference count on the object. Read more

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.