Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/security/landlock/setup.h
29265 views
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
/*
3
* Landlock LSM - Security framework setup
4
*
5
* Copyright © 2016-2020 Mickaël Salaün <[email protected]>
6
* Copyright © 2018-2020 ANSSI
7
*/
8
9
#ifndef _SECURITY_LANDLOCK_SETUP_H
10
#define _SECURITY_LANDLOCK_SETUP_H
11
12
#include <linux/lsm_hooks.h>
13
14
extern const int landlock_abi_version;
15
16
extern bool landlock_initialized;
17
extern int landlock_errata;
18
19
extern struct lsm_blob_sizes landlock_blob_sizes;
20
extern const struct lsm_id landlock_lsmid;
21
22
#endif /* _SECURITY_LANDLOCK_SETUP_H */
23
24