Encapsulates the result of a permissions calculation, between
source & target domains, for a specific class. Decisions describe
which permissions are allowed, and whether permissions should be
audit-logged when allowed, and when denied.
Encapsulates the result of an ioctl extended permissions calculation, between source & target
domains, for a specific class, and for a specific ioctl prefix byte. Decisions describe which
16-bit ioctls are allowed, and whether ioctl permissions should be audit-logged when allowed,
and when denied.
The security context, a variable-length string associated with each SELinux object in the
system. The security context contains mandatory user:role:type components and an optional
[:range] component.
Parses binary_policy by reference; that is, constructs parser output structures that contain
references to data in binary_policy. This function returns unvalidated_parser_output on
success, or an error if parsing failed.
Parses binary_policy by value; that is, copies underlying binary data out in addition to
building up parser output structures. This function returns
(unvalidated_parser_output, binary_policy) on success, or an error if parsing failed. Note
that the second component of the success case contains precisely the same bytes as the input.
This function depends on a uniformity of interface between the “by value” and “by reference”
strategies, but also requires an unvalidated_parser_output type that is independent of the
binary_policy lifetime. Taken together, these requirements demand the “move-in + move-out”
interface for binary_policy.