[LTP] [PATCH v2 1/4] Add landlock ABI v6 fallback
Andrea Cervesato
andrea.cervesato@suse.de
Fri Mar 28 09:36:57 CET 2025
From: Andrea Cervesato <andrea.cervesato@suse.com>
The new ABI v6 is defining the following IPC scoped operations:
* LANDLOCK_SCOPE_ABSTRACT_UNIX_SOCKET
* LANDLOCK_SCOPE_SIGNAL
Reviewed-by: Cyril Hrubis <chrubis@suse.cz>
Signed-off-by: Andrea Cervesato <andrea.cervesato@suse.com>
---
include/lapi/landlock.h | 23 +++++++++++++++++------
1 file changed, 17 insertions(+), 6 deletions(-)
diff --git a/include/lapi/landlock.h b/include/lapi/landlock.h
index b3c8c548e661680541cdf6e4a8fb68a3f5029fec..e579500ec26cdc0a568620bc35386f3d2b68952e 100644
--- a/include/lapi/landlock.h
+++ b/include/lapi/landlock.h
@@ -15,15 +15,19 @@
#include "lapi/syscalls.h"
-struct tst_landlock_ruleset_attr_abi1
-{
+struct tst_landlock_ruleset_attr_abi1 {
uint64_t handled_access_fs;
};
-struct tst_landlock_ruleset_attr_abi4
-{
+struct tst_landlock_ruleset_attr_abi4 {
+ uint64_t handled_access_fs;
+ uint64_t handled_access_net;
+};
+
+struct tst_landlock_ruleset_attr_abi6 {
uint64_t handled_access_fs;
uint64_t handled_access_net;
+ uint64_t scoped;
};
#ifndef HAVE_STRUCT_LANDLOCK_PATH_BENEATH_ATTR
@@ -43,8 +47,7 @@ struct landlock_path_beneath_attr
#endif
#ifndef HAVE_STRUCT_LANDLOCK_NET_PORT_ATTR
-struct landlock_net_port_attr
-{
+struct landlock_net_port_attr {
uint64_t allowed_access;
uint64_t port;
};
@@ -126,6 +129,14 @@ struct landlock_net_port_attr
# define LANDLOCK_ACCESS_NET_CONNECT_TCP (1ULL << 1)
#endif
+#ifndef LANDLOCK_SCOPE_ABSTRACT_UNIX_SOCKET
+# define LANDLOCK_SCOPE_ABSTRACT_UNIX_SOCKET (1ULL << 0)
+#endif
+
+#ifndef LANDLOCK_SCOPE_SIGNAL
+# define LANDLOCK_SCOPE_SIGNAL (1ULL << 1)
+#endif
+
static inline int safe_landlock_create_ruleset(const char *file, const int lineno,
const void *attr, size_t size , uint32_t flags)
{
--
2.43.0
More information about the ltp
mailing list