Allow overriding HAVE_LANDLOCK irrespectible of kernel verison

Esse commit está contido em:
Albert S. 2021-05-09 12:27:34 +02:00
commit edf144bbc7
1 arquivos alterados com 8 adições e 2 exclusões

10
qssb.h
Ver arquivo

@ -36,14 +36,20 @@
#include <linux/limits.h>
#include <linux/filter.h>
#include <linux/seccomp.h>
#include <linux/version.h>
#include <sys/capability.h>
#include <stddef.h>
#include <inttypes.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>
#define HAVE_LANDLOCK 1
#endif
//TODO: stolen from kernel samples/seccomp, GPLv2...?