kernel::task

Struct Task

Source
pub struct Task(/* private fields */);
Expand description

Wraps the kernel’s struct task_struct.

§Invariants

All instances are valid tasks created by the C portion of the kernel.

Instances of this type are always refcounted, that is, a call to get_task_struct ensures that the allocation remains valid at least until the matching call to put_task_struct.

§Examples

The following is an example of getting the PID of the current thread with zero additional cost when compared to the C version:

let pid = current!().pid();

Getting the PID of the current process, also zero additional cost:

let pid = current!().group_leader().pid();

Getting the current task and storing it in some struct. The reference count is automatically incremented when creating State and decremented when it is dropped:

use kernel::{task::Task, types::ARef};

struct State {
    creator: ARef<Task>,
    index: u32,
}

impl State {
    fn new() -> Self {
        Self {
            creator: current!().into(),
            index: 0,
        }
    }
}

Implementations§

Source§

impl Task

Source

pub fn current_raw() -> *mut task_struct

Returns a raw pointer to the current task.

It is up to the user to use the pointer correctly.

Source

pub unsafe fn current() -> impl Deref<Target = Task>

Returns a task reference for the currently executing task/thread.

The recommended way to get the current task/thread is to use the current macro because it is safe.

§Safety

Callers must ensure that the returned object doesn’t outlive the current task/thread.

Source

pub unsafe fn current_pid_ns() -> impl Deref<Target = PidNamespace>

Returns a PidNamespace reference for the currently executing task’s/thread’s pid namespace.

This function can be used to create an unbounded lifetime by e.g., storing the returned PidNamespace in a global variable which would be a bug. So the recommended way to get the current task’s/thread’s pid namespace is to use the current_pid_ns macro because it is safe.

§Safety

Callers must ensure that the returned object doesn’t outlive the current task/thread.

Source

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

Returns a raw pointer to the task.

Source

pub fn group_leader(&self) -> &Task

Returns the group leader of the given task.

Source

pub fn pid(&self) -> pid_t

Returns the PID of the given task.

Source

pub fn uid(&self) -> Kuid

Returns the UID of the given task.

Source

pub fn euid(&self) -> Kuid

Returns the effective UID of the given task.

Source

pub fn signal_pending(&self) -> bool

Determines whether the given task has pending signals.

Source

pub fn get_pid_ns(&self) -> Option<ARef<PidNamespace>>

Returns task’s pid namespace with elevated reference count

Source

pub fn tgid_nr_ns(&self, pidns: Option<&PidNamespace>) -> pid_t

Returns the given task’s pid in the provided pid namespace.

Source

pub fn wake_up(&self)

Wakes up the task.

Trait Implementations§

Source§

impl AlwaysRefCounted for Task

Source§

fn inc_ref(&self)

Increments the reference count on the object.
Source§

unsafe fn dec_ref(obj: NonNull<Self>)

Decrements the reference count on the object. Read more
Source§

impl Send for Task

Source§

impl Sync for Task

Auto Trait Implementations§

§

impl !Freeze for Task

§

impl !RefUnwindSafe for Task

§

impl !Unpin for Task

§

impl UnwindSafe for Task

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.