#[non_exhaustive]pub enum ABI {
Unsupported = 0,
V1 = 1,
V2 = 2,
V3 = 3,
V4 = 4,
V5 = 5,
}
Expand description
Version of the Landlock ABI.
ABI
enables getting the features supported by a specific Landlock ABI
(without relying on the kernel version which may not be accessible or patched).
For example, AccessFs::from_all(ABI::V1)
gets all the file system access rights defined by the first version.
Without ABI
, it would be hazardous to rely on the the full set of access flags
(e.g., BitFlags::<AccessFs>::all()
or BitFlags::ALL
),
a moving target that would change the semantics of your Landlock rule
when migrating to a newer version of this crate.
Indeed, a simple cargo update
or cargo install
run by any developer
can result in a new version of this crate (fixing bugs or bringing non-breaking changes).
This crate cannot give any guarantee concerning the new restrictions resulting from
these unknown bits (i.e. access rights) that would not be controlled by your application but by
a future version of this crate instead.
Because we cannot know what the effect on your application of an unknown restriction would be
when handling an untested Landlock access right (i.e. denied-by-default access),
it could trigger bugs in your application.
This crate provides a set of tools to sandbox as much as possible
while guaranteeing a consistent behavior thanks to the Compatible
methods.
You should also test with different relevant kernel versions,
see landlock-test-tools and
CI integration.
This way, we can have the guarantee that the use of a set of tested Landlock ABI works as expected because features brought by newer Landlock ABI will never be enabled by default (cf. Linux kernel compatibility contract).
In a nutshell, test the access rights you request on a kernel that support them and on a kernel that doesn’t support them.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Unsupported = 0
Kernel not supporting Landlock, either because it is not built with Landlock or Landlock is not enabled at boot.
V1 = 1
First Landlock ABI, introduced with Linux 5.13.
V2 = 2
Second Landlock ABI, introduced with Linux 5.19.
V3 = 3
Third Landlock ABI, introduced with Linux 6.2.
V4 = 4
Fourth Landlock ABI, introduced with Linux 6.7.
V5 = 5
Fifth Landlock ABI, introduced with Linux 6.10.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ABI
impl RefUnwindSafe for ABI
impl Send for ABI
impl Sync for ABI
impl Unpin for ABI
impl UnwindSafe for ABI
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)