3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-01 07:42:18 +00:00
Brooklyn/security/landlock/limits.h

28 lines
726 B
C
Raw Permalink Normal View History

2022-04-02 13:24:21 +00:00
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Landlock LSM - Limits for different components
*
* Copyright © 2016-2020 Mickaël Salaün <mic@digikod.net>
* Copyright © 2018-2020 ANSSI
*/
#ifndef _SECURITY_LANDLOCK_LIMITS_H
#define _SECURITY_LANDLOCK_LIMITS_H
2022-09-09 09:20:25 +00:00
#include <linux/bitops.h>
2022-04-02 13:24:21 +00:00
#include <linux/limits.h>
#include <uapi/linux/landlock.h>
2022-09-09 09:20:25 +00:00
/* clang-format off */
#define LANDLOCK_MAX_NUM_LAYERS 16
2022-04-02 13:24:21 +00:00
#define LANDLOCK_MAX_NUM_RULES U32_MAX
2022-09-09 09:20:25 +00:00
#define LANDLOCK_LAST_ACCESS_FS LANDLOCK_ACCESS_FS_REFER
2022-04-02 13:24:21 +00:00
#define LANDLOCK_MASK_ACCESS_FS ((LANDLOCK_LAST_ACCESS_FS << 1) - 1)
2022-09-09 09:20:25 +00:00
#define LANDLOCK_NUM_ACCESS_FS __const_hweight64(LANDLOCK_MASK_ACCESS_FS)
/* clang-format on */
2022-04-02 13:24:21 +00:00
#endif /* _SECURITY_LANDLOCK_LIMITS_H */