Module kernel::capabilities
source · Expand description
Special restricted capabilities.
Rust provides a mechanism for restricting certain operations to only be used
by trusted code through the unsafe
keyword. This is very useful, but
doesn’t provide very granular access: code can either access all unsafe
things, or none.
Capabilities are the mechanism in Tock that provides more granular access.
For sensitive operations (e.g. operations that could violate isolation)
callers must have a particular capability. The type system ensures that the
caller does in fact have the capability, and unsafe
is used to ensure that
callers cannot create the capability type themselves.
Capabilities are passed to modules from trusted code (i.e. code that can
call unsafe
).
Capabilities are expressed as unsafe
traits. Only code that can use
unsafe
mechanisms can instantiate an object that provides an unsafe
trait. Functions that require certain capabilities require that they are
passed an object that provides the correct capability trait. The object
itself does not have to be marked unsafe
.
Creating an object that expresses a capability is straightforward:
use kernel::capabilities::ProcessManagementCapability;
struct ProcessMgmtCap;
unsafe impl ProcessManagementCapability for ProcessMgmtCap {}
Now anything that has a ProcessMgmtCap can call any function that requires
the ProcessManagementCapability
capability.
Requiring a certain capability is also straightforward:
pub fn manage_process<C: ProcessManagementCapability>(_c: &C) {
unsafe {
...
}
}
Anything that calls manage_process
must have a reference to some object
that provides the ProcessManagementCapability
trait, which proves that it
has the correct capability.
Traits§
- The
ApplicationStorageCapability
capability allows the holder to create permissions to allow applications to have access to stored state on the system. - The
CreatePortTableCapability
capability allows the holder to instantiate a new copy of the UdpPortTable struct. There should only ever be one instance of this struct, so this capability should not be distributed to capsules at all, as the port table should only be instantiated once by the kernel - The
ExternalProcessCapability
capability allows the holder to use the core kernel resources needed to successfully implement theProcess
trait from outside of the core kernel crate. Many of these operations are very sensitive, that is they cannot just be made public. In particular, certain objects can be used outside of the core kernel, but the constructors must be restricted. - The KernelruserStorageCapability` capability allows the holder to create permissions to access kernel-only stored values on the system.
- The
MainLoopCapability
capability allows the holder to start executing as well as manage the main scheduler loop in Tock. This is needed in a board’s main.rs file to start the kernel. It also allows an external implementation ofProcess
to update state in the kernel struct used by the main loop. - The
MemoryAllocationCapability
capability allows the holder to allocate memory, for example by creating grants. - The
NetworkCapabilityCreationCapability
allows the holder to instantiateNetworkCapability
S and visibility capabilities for the IP and UDP layers of the networking stack. A capsule would never hold this capability although it may hold capabilities created via this capability. - The
ProcessManagementCapability
allows the holder to control process execution, such as related to creating, restarting, and otherwise managing processes. - The
ProcessStartCapability
allows the holder to start a process. This is controlled and separate fromProcessManagementCapability
because the process must have a unique application identifier and so only modules which check this may do so. - The
UdpDriverCapability
capability allows the holder to use two functions only allowed by the UDP driver. The first is thedriver_send_to()
function in udp_send.rs, which does not require being bound to a single port, since the driver manages port bindings for apps on its own. The second is theset_user_ports()
function inudp_port_table.rs
, which gives the UDP port table a reference to the UDP driver so that it can check which ports have been bound by apps.