2021-04-22 17:41:13 +02:00
|
|
|
// 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
|
|
|
|
|
*/
|
|
|
|
|
|
2025-03-18 17:14:37 +01:00
|
|
|
#include <linux/bits.h>
|
2021-04-22 17:41:13 +02:00
|
|
|
#include <linux/init.h>
|
|
|
|
|
#include <linux/lsm_hooks.h>
|
2023-09-12 13:56:46 -07:00
|
|
|
#include <uapi/linux/lsm.h>
|
2021-04-22 17:41:13 +02:00
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
|
#include "cred.h"
|
2025-03-18 17:14:37 +01:00
|
|
|
#include "errata.h"
|
2021-04-22 17:41:17 +02:00
|
|
|
#include "fs.h"
|
2025-03-20 20:06:51 +01:00
|
|
|
#include "id.h"
|
2023-10-26 09:47:47 +08:00
|
|
|
#include "net.h"
|
2021-04-22 17:41:13 +02:00
|
|
|
#include "setup.h"
|
2024-03-07 10:39:23 +01:00
|
|
|
#include "task.h"
|
2021-04-22 17:41:13 +02:00
|
|
|
|
2023-03-17 12:43:07 -04:00
|
|
|
bool landlock_initialized __ro_after_init = false;
|
2021-04-22 17:41:17 +02:00
|
|
|
|
2025-03-18 17:14:36 +01:00
|
|
|
const struct lsm_id landlock_lsmid = {
|
|
|
|
|
.name = LANDLOCK_NAME,
|
|
|
|
|
.id = LSM_ID_LANDLOCK,
|
|
|
|
|
};
|
|
|
|
|
|
2023-03-17 12:43:07 -04:00
|
|
|
struct lsm_blob_sizes landlock_blob_sizes __ro_after_init = {
|
2021-04-22 17:41:13 +02:00
|
|
|
.lbs_cred = sizeof(struct landlock_cred_security),
|
2022-10-18 20:22:09 +02:00
|
|
|
.lbs_file = sizeof(struct landlock_file_security),
|
2021-04-22 17:41:17 +02:00
|
|
|
.lbs_inode = sizeof(struct landlock_inode_security),
|
|
|
|
|
.lbs_superblock = sizeof(struct landlock_superblock_security),
|
2021-04-22 17:41:13 +02:00
|
|
|
};
|
|
|
|
|
|
2025-03-18 17:14:37 +01:00
|
|
|
int landlock_errata __ro_after_init;
|
|
|
|
|
|
|
|
|
|
static void __init compute_errata(void)
|
|
|
|
|
{
|
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
|
|
#ifndef __has_include
|
|
|
|
|
/*
|
|
|
|
|
* This is a safeguard to make sure the compiler implements
|
|
|
|
|
* __has_include (see errata.h).
|
|
|
|
|
*/
|
|
|
|
|
WARN_ON_ONCE(1);
|
|
|
|
|
return;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
for (i = 0; landlock_errata_init[i].number; i++) {
|
|
|
|
|
const int prev_errata = landlock_errata;
|
|
|
|
|
|
|
|
|
|
if (WARN_ON_ONCE(landlock_errata_init[i].abi >
|
|
|
|
|
landlock_abi_version))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
landlock_errata |= BIT(landlock_errata_init[i].number - 1);
|
|
|
|
|
WARN_ON_ONCE(prev_errata == landlock_errata);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-22 17:41:13 +02:00
|
|
|
static int __init landlock_init(void)
|
|
|
|
|
{
|
2025-03-18 17:14:37 +01:00
|
|
|
compute_errata();
|
2021-04-22 17:41:13 +02:00
|
|
|
landlock_add_cred_hooks();
|
2024-03-07 10:39:23 +01:00
|
|
|
landlock_add_task_hooks();
|
2021-04-22 17:41:17 +02:00
|
|
|
landlock_add_fs_hooks();
|
2023-10-26 09:47:47 +08:00
|
|
|
landlock_add_net_hooks();
|
2025-03-20 20:06:51 +01:00
|
|
|
landlock_init_id();
|
2021-04-22 17:41:17 +02:00
|
|
|
landlock_initialized = true;
|
2021-04-22 17:41:13 +02:00
|
|
|
pr_info("Up and running.\n");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DEFINE_LSM(LANDLOCK_NAME) = {
|
2025-02-12 14:45:06 -05:00
|
|
|
.id = &landlock_lsmid,
|
2021-04-22 17:41:13 +02:00
|
|
|
.init = landlock_init,
|
|
|
|
|
.blobs = &landlock_blob_sizes,
|
|
|
|
|
};
|