You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
418 B
19 lines
418 B
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Landlock LSM - Security framework setup
|
|
*
|
|
* Copyright © 2016-2020 Mickaël Salaün <mic@digikod.net>
|
|
* Copyright © 2018-2020 ANSSI
|
|
*/
|
|
|
|
#ifndef _SECURITY_LANDLOCK_SETUP_H
|
|
#define _SECURITY_LANDLOCK_SETUP_H
|
|
|
|
#include <linux/lsm_hooks.h>
|
|
|
|
extern bool landlock_initialized;
|
|
|
|
extern struct lsm_blob_sizes landlock_blob_sizes;
|
|
|
|
#endif /* _SECURITY_LANDLOCK_SETUP_H */
|