Allow overriding HAVE_LANDLOCK irrespectible of kernel verison

Этот коммит содержится в:
Albert S. 2021-05-09 12:27:34 +02:00
родитель 67e1afc904
Коммит edf144bbc7
1 изменённых файлов: 8 добавлений и 2 удалений

10
qssb.h
Просмотреть файл

@ -36,14 +36,20 @@
#include <linux/limits.h> #include <linux/limits.h>
#include <linux/filter.h> #include <linux/filter.h>
#include <linux/seccomp.h> #include <linux/seccomp.h>
#include <linux/version.h>
#include <sys/capability.h> #include <sys/capability.h>
#include <stddef.h> #include <stddef.h>
#include <inttypes.h> #include <inttypes.h>
#include <asm/unistd.h> #include <asm/unistd.h>
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,13,0) #ifndef HAVE_LANDLOCK
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,13,0)
/* TODO: Hopefully a fair assumption. But we need to runtime checks */
#define HAVE_LANDLOCK = 1
#endif
#endif
#if HAVE_LANDLOCK == 1
#include <linux/landlock.h> #include <linux/landlock.h>
#define HAVE_LANDLOCK 1
#endif #endif
//TODO: stolen from kernel samples/seccomp, GPLv2...? //TODO: stolen from kernel samples/seccomp, GPLv2...?