[LTP] [PATCH 2/4] landlock02: support landlock ABI v6
Andrea Cervesato
andrea.cervesato@suse.de
Thu Mar 27 12:07:59 CET 2025
From: Andrea Cervesato <andrea.cervesato@suse.com>
Signed-off-by: Andrea Cervesato <andrea.cervesato@suse.com>
---
testcases/kernel/syscalls/landlock/landlock02.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/testcases/kernel/syscalls/landlock/landlock02.c b/testcases/kernel/syscalls/landlock/landlock02.c
index 60010f554b001156f3feb30283bb5c22a5fea1fc..601164794109a61714bb005001d6a94de83e41c2 100644
--- a/testcases/kernel/syscalls/landlock/landlock02.c
+++ b/testcases/kernel/syscalls/landlock/landlock02.c
@@ -20,6 +20,7 @@
static struct tst_landlock_ruleset_attr_abi1 *attr_abi1;
static struct tst_landlock_ruleset_attr_abi4 *attr_abi4;
+static struct tst_landlock_ruleset_attr_abi6 *attr_abi6;
static struct landlock_path_beneath_attr *path_beneath_attr;
static struct landlock_path_beneath_attr *rule_null;
static struct landlock_net_port_attr *net_port_attr;
@@ -145,14 +146,18 @@ static void setup(void)
abi_current = verify_landlock_is_enabled();
attr_abi1->handled_access_fs =
- attr_abi4->handled_access_fs = LANDLOCK_ACCESS_FS_EXECUTE;
+ attr_abi4->handled_access_fs =
+ attr_abi6->handled_access_fs = LANDLOCK_ACCESS_FS_EXECUTE;
if (abi_current < 4) {
ruleset_fd = TST_EXP_FD_SILENT(tst_syscall(__NR_landlock_create_ruleset,
attr_abi1, sizeof(struct tst_landlock_ruleset_attr_abi1), 0));
- } else {
+ } else if (abi_current < 6) {
ruleset_fd = TST_EXP_FD_SILENT(tst_syscall(__NR_landlock_create_ruleset,
attr_abi4, sizeof(struct tst_landlock_ruleset_attr_abi4), 0));
+ } else {
+ ruleset_fd = TST_EXP_FD_SILENT(tst_syscall(__NR_landlock_create_ruleset,
+ attr_abi6, sizeof(struct tst_landlock_ruleset_attr_abi6), 0));
}
}
@@ -171,6 +176,7 @@ static struct tst_test test = {
.bufs = (struct tst_buffers []) {
{&attr_abi1, .size = sizeof(struct tst_landlock_ruleset_attr_abi1)},
{&attr_abi4, .size = sizeof(struct tst_landlock_ruleset_attr_abi4)},
+ {&attr_abi6, .size = sizeof(struct tst_landlock_ruleset_attr_abi6)},
{&path_beneath_attr, .size = sizeof(struct landlock_path_beneath_attr)},
{&net_port_attr, .size = sizeof(struct landlock_net_port_attr)},
{},
--
2.43.0
More information about the ltp
mailing list