Expand description
This crate provides straightforward, pure-Rust bindings to the seL4 API.
Most items in this crate correspond to types, constants, and functions in libsel4
. See the
seL4 manual for more information about
the seL4 concepts and libsel4
items references in this crate’s documentation.
This crate’s implementation is based on the lower-level sel4-sys
crate, which is
generated from the libsel4 headers and interface definition files.
§Features
§"state"
Functions in the C libsel4 use the thread-local variable __sel4_ipc_buffer
to obtain a pointer
to the current thread’s IPC buffer:
extern __thread seL4_IPCBuffer *__sel4_ipc_buffer;
libmicrokit, which does not support
thread-local storage uses the following snippet to force __sel4_ipc_buffer
to global rather
than thread-local:
#define __thread
#include <sel4/sel4.h>
For the sake of flexibility and applicability, this crate can be configured to use no state at
all. Users can opt out of state and explicitly pass around references to the active IPC buffer
instead of relying on the implementation to obtain such a reference using thread-local or global
state. Such a paradigm is useful in certain uncommon circumstances, but most users will benefit
from the convenience of an implicit IPC buffer. The "state"
feature, enabled by default, uses
state to allow one to make seL4 API calls without having to explicitly specify an IPC buffer.
For the sake of interoperability with C, the state looks something like: static mut __sel4_ipc_buffer: *mut IpcBuffer
. If the "state-exposed"
feature is enabled, it is exposed
with #![no_mangle]
. If the "state-extern"
feature is enabled, it is wrapped in an extern "C"
block. Whether it is thread-local is determined by the following pseudocode:
cfg_if! {
if #[cfg(all(any(target_thread_local, feature = "tls"), not(feature = "non-thread-local-state")))] {
// thread-local
} else if #[cfg(not(feature = "thread-local-state"))] {
// not thread-local
} else {
compile_error!(r#"invalid configuration"#);
}
}
The non-thread-local configuration should only be used in cases where the language runtime does
not support thread-local storage. In those cases without thread-local storage where this crate
will only ever run in a single thread, use the "single-threaded"
feature to enable a more
efficient implementation. Note that enabling the "single-threaded"
feature in a case where
this crate runs in more than one thread is unsafe.
At the API level, the "state"
feature causes NoExplicitInvocationContext
to be an alias
for ImplicitInvocationContext
, which implements InvocationContext
by accessing the
thread-local pointer to an IPC buffer. When the "state"
feature is not enabled,
NoExplicitInvocationContext
is an alias for NoInvocationContext
, which does not
implement InvocationContext
. The thread-local IPC buffer pointer is modified and accessed by
set_ipc_buffer
, with_ipc_buffer
, and with_ipc_buffer_mut
. The lower-level
try_with_ipc_buffer_slot
and try_with_ipc_buffer_slot_mut
are provided as well.
§Building
This crate and its dependencies depend, at build time, on the libsel4 headers. The location of
these headers is provided to this crate at build time by environment variables. If
SEL4_INCLUDE_DIRS
is set, then its value is interpreted as a colon-separated list of include
paths for the libsel4 headers. Otherwise, if SEL4_PREFIX
is set, then
$SEL4_PREFIX/libsel4/include
is used.
Re-exports§
pub use sel4_config as config;
pub use sel4_sys as sys;
Modules§
- cap
- Marked aliases of
Cap
. - cap_
type - Markers corresponding to capability types and classes of capability types.
- init_
thread - Items that are applicable within the context of the root task’s initial thread’s CSpace.
- vspace_
levels - Items describing the layout of address translation structures for this kernel configuration.
Macros§
- debug_
print - Like
std::debug_print!
, except backed byseL4_DebugPutChar
. - debug_
println - Like
std::debug_println!
, except backed byseL4_DebugPutChar
. - sel4_
cfg_ bool - Like
core::cfg!
, except using the seL4 kernel configuration. - sel4_
cfg_ if - Like
cfg_if::cfg_if!
, except withsel4_cfg
instead of#[cfg]
. - sel4_
cfg_ str - Like
core::cfg!
, except using the seL4 kernel configuration. - sel4_
cfg_ usize - Like
core::cfg!
, except using the seL4 kernel configuration. - sel4_
cfg_ word - Like
core::cfg!
, except using the seL4 kernel configuration. - sel4_
cfg_ wrap_ match - Like
sel4_cfg_match
, except it works on stable, at the expense of not being an attribute macro.
Structs§
- AbsoluteC
Ptr - A
CPtrWithDepth
to be resolved in the context of a particularCNode
. - Boot
Info - Corresponds to
seL4_BootInfo
. - Boot
Info Extra - An extra bootinfo chunk along with its ID.
- Boot
Info Extra Iter - An iterator for accessing the
BootInfoExtra
entires associated with aBootInfoPtr
. - Boot
Info Ptr - A wrapped pointer to a
BootInfo
block. - CNode
CapData - Corresponds to
seL4_CNode_CapData
. - CPtr
- A capability pointer.
- CPtr
With Depth - A capability pointer with a number of bits to resolve.
- Call
WithM Rs - The result of
cap::Endpoint::call_with_mrs
. - Cap
- A capability pointer to be resolved in the current CSpace.
- CapFault
- Corresponds to
seL4_Fault_CapFault
. - CapRights
- Corresponds to
seL4_CapRights_t
. - CapRights
Builder - Helper for constructing
CapRights
. - Debug
Write - Implements
core::fmt::Write
usingdebug_put_char
. - Implicit
Invocation Context - The strategy for discovering the current thread’s IPC buffer which uses thread-local state.
- Implicit
Reply Authority - Under this configuration, no reply authority is required.
- IpcBuffer
- Corresponds to
seL4_IPCBuffer
. - Message
Info - Corresponds to
seL4_MessageInfo_t
. - Message
Info Builder - Helper for constructing
MessageInfo
. - NoInvocation
Context - The absence of a strategy for discovering the current thread’s IPC buffer.
- Null
Fault - Corresponds to
seL4_Fault_NullFault
. - Recv
WithM Rs - The result of
cap::Endpoint::recv_with_mrs
. - Unknown
Syscall - Corresponds to
seL4_Fault_UnknownSyscall
. - Untyped
Desc - Corresponds to
seL4_UntypedDesc
. - User
Context - Corresponds to
seL4_UserContext
. - User
Exception - Corresponds to
seL4_Fault_UserException
. - VmAttributes
- Corresponds to
seL4_ARM_VMAttributes
. - VmFault
- Corresponds to
seL4_Fault_VMFault
.
Enums§
- Boot
Info Extra Id - Corresponds to
seL4_BootInfoID
. - Error
- Corresponds to
seL4_Error
. - Fault
- Corresponds to
seL4_Fault
. - Frame
Object Type - Frame object types for this kernel configuration.
- Object
Blueprint - An object description for
Untyped::untyped_retype
. - Object
BlueprintA Arch32 - AArch32-specific variants of
ObjectBlueprint
. - Object
Blueprint Arm - Arm-specific variants of
ObjectBlueprint
. - Object
Type - Corresponds to
seL4_ObjectType
. - Object
TypeA Arch32 - Corresponds to
seL4_ModeObjectType
. - Object
Type Arm - Corresponds to
seL4_ArchObjectType
. - Translation
Table Object Type - Translation table object types for this kernel configuration.
Constants§
- NUM_
FAST_ MESSAGE_ REGISTERS - The number of message registers which are passed in architectural registers.
- NUM_
MESSAGE_ REGISTERS - Number of message registers in the IPC buffer.
- WORD_
SIZE - The size of
Word
in bits.
Traits§
- CapType
- Trait for marker types corresponding to capability types in the seL4 API.
- CapType
ForFrame Object - Trait for
CapType
s which correspond to frame objects. - CapType
ForFrame Object OfFixed Size - Trait for
CapType
s which correspond to frame objects of fixed size. - CapType
ForObject - Trait for
CapType
s which correspond to kernel objects. - CapType
ForObject OfFixed Size - Trait for
CapType
s which correspond to kernel objects of fixed size. - CapType
ForObject OfVariable Size - Trait for
CapType
s which correspond to kernel objects of variable size. - CapType
ForTranslation Table Object - Trait for
CapType
s which correspond to translation table objects. - Conveys
Reply Authority - Trait for types from which
ReplyAuthority
can be derived. - Fast
Messages - Trait for types which can hold the contents of a set of inline message registers.
- HasC
PtrWith Depth - Trait for types whose members which logically contain a
CPtrWithDepth
. - Invocation
Context - A strategy for discovering the current thread’s IPC buffer.
- IpcCap
Type - Trait for
CapType
s which are used as targets of IPC syscalls.
Functions§
- debug_
put_ char - Corresponds to
seL4_DebugPutChar
. - debug_
snapshot - Corresponds to
seL4_DebugSnapshot
. - ipc_
buffer_ is_ thread_ local - Returns whether this crate’s IPC buffer slot is thread-local.
- reply
- Corresponds to
seL4_Reply
. - set_
ipc_ buffer - Sets the IPC buffer that this crate will use for this thread.
- try_
with_ ipc_ buffer_ slot - Provides low-level access to this thread’s IPC buffer.
- try_
with_ ipc_ buffer_ slot_ mut - Provides low-level mutable access to this thread’s IPC buffer.
- with_
ipc_ buffer - Provides access to this thread’s IPC buffer.
- with_
ipc_ buffer_ mut - Provides mutable access to this thread’s IPC buffer.
- yield
- Corresponds to
seL4_Yield
.
Type Aliases§
- Badge
- A capability badge.
- CPtr
Bits - The raw bits of a capability pointer.
- NoExplicit
Invocation Context - The default strategy for discovering the current thread’s IPC buffer.
- Object
Blueprint Arch - Alias for
ObjectBlueprintArm
. - Object
Blueprint SeL4 Arch - Alias for
ObjectBlueprintAArch32
. - Object
Type Arch - Alias for
ObjectTypeArm
. - Object
Type SeL4 Arch - Alias for
ObjectTypeAArch32
. - Reply
Authority - Configuration-dependant alias for conveying reply authority to syscalls.
- Result
- Alias for
Result<_, Error>
. - Word
- Corresponds to
seL4_Word
.
Attribute Macros§
- sel4_
cfg - Make the attached code conditional on a seL4 kernel configuration expression.
- sel4_
cfg_ attr - Make the associated attribute expression conditional on a seL4 kernel configuration expression.
- sel4_
cfg_ enum - Allows an
enum
’s variants to use thesel4_cfg
attribute. - sel4_
cfg_ match - Allows a
match
expression’s variants to use thesel4_cfg
attribute. - sel4_
cfg_ struct - Allows a
struct
’s fields to use thesel4_cfg
attribute.