23 lines
396 B
C
23 lines
396 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
|
||
|
/*
|
||
|
* Copyright (C) 2020 Google LLC.
|
||
|
*/
|
||
|
|
||
|
#ifndef _LINUX_BPF_LSM_H
|
||
|
#define _LINUX_BPF_LSM_H
|
||
|
|
||
|
#include <linux/bpf.h>
|
||
|
#include <linux/lsm_hooks.h>
|
||
|
|
||
|
#ifdef CONFIG_BPF_LSM
|
||
|
|
||
|
#define LSM_HOOK(RET, DEFAULT, NAME, ...) \
|
||
|
RET bpf_lsm_##NAME(__VA_ARGS__);
|
||
|
#include <linux/lsm_hook_defs.h>
|
||
|
#undef LSM_HOOK
|
||
|
|
||
|
#endif /* CONFIG_BPF_LSM */
|
||
|
|
||
|
#endif /* _LINUX_BPF_LSM_H */
|