1 // SPDX-License-Identifier: GPL-2.0-only
3 * Module and Firmware Pinning Security Module
5 * Copyright 2011-2016 Google Inc.
10 #define pr_fmt(fmt) "LoadPin: " fmt
12 #include <linux/module.h>
14 #include <linux/kernel_read_file.h>
15 #include <linux/lsm_hooks.h>
16 #include <linux/mount.h>
17 #include <linux/blkdev.h>
18 #include <linux/path.h>
19 #include <linux/sched.h> /* current */
20 #include <linux/string_helpers.h>
22 static void report_load(const char *origin, struct file *file, char *operation)
24 char *cmdline, *pathname;
26 pathname = kstrdup_quotable_file(file, GFP_KERNEL);
27 cmdline = kstrdup_quotable_cmdline(current, GFP_KERNEL);
29 pr_notice("%s %s obj=%s%s%s pid=%d cmdline=%s%s%s\n",
31 (pathname && pathname[0] != '<') ? "\"" : "",
33 (pathname && pathname[0] != '<') ? "\"" : "",
35 cmdline ? "\"" : "", cmdline, cmdline ? "\"" : "");
41 static int enforce = IS_ENABLED(CONFIG_SECURITY_LOADPIN_ENFORCE);
42 static char *exclude_read_files[READING_MAX_ID];
43 static int ignore_read_file_id[READING_MAX_ID] __ro_after_init;
44 static struct super_block *pinned_root;
45 static DEFINE_SPINLOCK(pinned_root_spinlock);
49 static struct ctl_path loadpin_sysctl_path[] = {
50 { .procname = "kernel", },
51 { .procname = "loadpin", },
55 static struct ctl_table loadpin_sysctl_table[] = {
57 .procname = "enforce",
59 .maxlen = sizeof(int),
61 .proc_handler = proc_dointvec_minmax,
62 .extra1 = SYSCTL_ZERO,
69 * This must be called after early kernel init, since then the rootdev
72 static void check_pinning_enforcement(struct super_block *mnt_sb)
77 * If load pinning is not enforced via a read-only block
78 * device, allow sysctl to change modes for testing.
81 char bdev[BDEVNAME_SIZE];
83 ro = bdev_read_only(mnt_sb->s_bdev);
84 bdevname(mnt_sb->s_bdev, bdev);
85 pr_info("%s (%u:%u): %s\n", bdev,
86 MAJOR(mnt_sb->s_bdev->bd_dev),
87 MINOR(mnt_sb->s_bdev->bd_dev),
88 ro ? "read-only" : "writable");
90 pr_info("mnt_sb lacks block device, treating as: writable\n");
93 if (!register_sysctl_paths(loadpin_sysctl_path,
94 loadpin_sysctl_table))
95 pr_notice("sysctl registration failed!\n");
97 pr_info("enforcement can be disabled.\n");
99 pr_info("load pinning engaged.\n");
102 static void check_pinning_enforcement(struct super_block *mnt_sb)
104 pr_info("load pinning engaged.\n");
108 static void loadpin_sb_free_security(struct super_block *mnt_sb)
111 * When unmounting the filesystem we were using for load
112 * pinning, we acknowledge the superblock release, but make sure
113 * no other modules or firmware can be loaded.
115 if (!IS_ERR_OR_NULL(pinned_root) && mnt_sb == pinned_root) {
116 pinned_root = ERR_PTR(-EIO);
117 pr_info("umount pinned fs: refusing further loads\n");
121 static int loadpin_read_file(struct file *file, enum kernel_read_file_id id,
124 struct super_block *load_root;
125 const char *origin = kernel_read_file_id_str(id);
128 * If we will not know that we'll be seeing the full contents
129 * then we cannot trust a load will be complete and unchanged
130 * off disk. Treat all contents=false hooks as if there were
131 * no associated file struct.
136 /* If the file id is excluded, ignore the pinning. */
137 if ((unsigned int)id < ARRAY_SIZE(ignore_read_file_id) &&
138 ignore_read_file_id[id]) {
139 report_load(origin, file, "pinning-excluded");
143 /* This handles the older init_module API that has a NULL file. */
146 report_load(origin, NULL, "old-api-pinning-ignored");
150 report_load(origin, NULL, "old-api-denied");
154 load_root = file->f_path.mnt->mnt_sb;
156 /* First loaded module/firmware defines the root for all others. */
157 spin_lock(&pinned_root_spinlock);
159 * pinned_root is only NULL at startup. Otherwise, it is either
160 * a valid reference, or an ERR_PTR.
163 pinned_root = load_root;
165 * Unlock now since it's only pinned_root we care about.
166 * In the worst case, we will (correctly) report pinning
167 * failures before we have announced that pinning is
168 * enforcing. This would be purely cosmetic.
170 spin_unlock(&pinned_root_spinlock);
171 check_pinning_enforcement(pinned_root);
172 report_load(origin, file, "pinned");
174 spin_unlock(&pinned_root_spinlock);
177 if (IS_ERR_OR_NULL(pinned_root) || load_root != pinned_root) {
178 if (unlikely(!enforce)) {
179 report_load(origin, file, "pinning-ignored");
183 report_load(origin, file, "denied");
190 static int loadpin_load_data(enum kernel_load_data_id id, bool contents)
192 return loadpin_read_file(NULL, (enum kernel_read_file_id) id, contents);
195 static struct security_hook_list loadpin_hooks[] __lsm_ro_after_init = {
196 LSM_HOOK_INIT(sb_free_security, loadpin_sb_free_security),
197 LSM_HOOK_INIT(kernel_read_file, loadpin_read_file),
198 LSM_HOOK_INIT(kernel_load_data, loadpin_load_data),
201 static void __init parse_exclude(void)
207 * Make sure all the arrays stay within expected sizes. This
208 * is slightly weird because kernel_read_file_str[] includes
209 * READING_MAX_ID, which isn't actually meaningful here.
211 BUILD_BUG_ON(ARRAY_SIZE(exclude_read_files) !=
212 ARRAY_SIZE(ignore_read_file_id));
213 BUILD_BUG_ON(ARRAY_SIZE(kernel_read_file_str) <
214 ARRAY_SIZE(ignore_read_file_id));
216 for (i = 0; i < ARRAY_SIZE(exclude_read_files); i++) {
217 cur = exclude_read_files[i];
223 for (j = 0; j < ARRAY_SIZE(ignore_read_file_id); j++) {
224 if (strcmp(cur, kernel_read_file_str[j]) == 0) {
225 pr_info("excluding: %s\n",
226 kernel_read_file_str[j]);
227 ignore_read_file_id[j] = 1;
229 * Can not break, because one read_file_str
230 * may map to more than on read_file_id.
237 static int __init loadpin_init(void)
239 pr_info("ready to pin (currently %senforcing)\n",
240 enforce ? "" : "not ");
242 security_add_hooks(loadpin_hooks, ARRAY_SIZE(loadpin_hooks), "loadpin");
246 DEFINE_LSM(loadpin) = {
248 .init = loadpin_init,
251 /* Should not be mutable after boot, so not listed in sysfs (perm == 0). */
252 module_param(enforce, int, 0);
253 MODULE_PARM_DESC(enforce, "Enforce module/firmware pinning");
254 module_param_array_named(exclude, exclude_read_files, charp, NULL, 0);
255 MODULE_PARM_DESC(exclude, "Exclude pinning specific read file types");