2 * Module and Firmware Pinning Security Module
4 * Copyright 2011-2016 Google Inc.
6 * Author: Kees Cook <keescook@chromium.org>
8 * This software is licensed under the terms of the GNU General Public
9 * License version 2, as published by the Free Software Foundation, and
10 * may be copied, distributed, and modified under those terms.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
18 #define pr_fmt(fmt) "LoadPin: " fmt
20 #include <linux/module.h>
22 #include <linux/lsm_hooks.h>
23 #include <linux/mount.h>
24 #include <linux/path.h>
25 #include <linux/sched.h> /* current */
26 #include <linux/string_helpers.h>
28 static void report_load(const char *origin
, struct file
*file
, char *operation
)
30 char *cmdline
, *pathname
;
32 pathname
= kstrdup_quotable_file(file
, GFP_KERNEL
);
33 cmdline
= kstrdup_quotable_cmdline(current
, GFP_KERNEL
);
35 pr_notice("%s %s obj=%s%s%s pid=%d cmdline=%s%s%s\n",
37 (pathname
&& pathname
[0] != '<') ? "\"" : "",
39 (pathname
&& pathname
[0] != '<') ? "\"" : "",
41 cmdline
? "\"" : "", cmdline
, cmdline
? "\"" : "");
47 static int enforce
= IS_ENABLED(CONFIG_SECURITY_LOADPIN_ENFORCE
);
48 static struct super_block
*pinned_root
;
49 static DEFINE_SPINLOCK(pinned_root_spinlock
);
55 static struct ctl_path loadpin_sysctl_path
[] = {
56 { .procname
= "kernel", },
57 { .procname
= "loadpin", },
61 static struct ctl_table loadpin_sysctl_table
[] = {
63 .procname
= "enforce",
65 .maxlen
= sizeof(int),
67 .proc_handler
= proc_dointvec_minmax
,
75 * This must be called after early kernel init, since then the rootdev
78 static void check_pinning_enforcement(struct super_block
*mnt_sb
)
83 * If load pinning is not enforced via a read-only block
84 * device, allow sysctl to change modes for testing.
87 char bdev
[BDEVNAME_SIZE
];
89 ro
= bdev_read_only(mnt_sb
->s_bdev
);
90 bdevname(mnt_sb
->s_bdev
, bdev
);
91 pr_info("%s (%u:%u): %s\n", bdev
,
92 MAJOR(mnt_sb
->s_bdev
->bd_dev
),
93 MINOR(mnt_sb
->s_bdev
->bd_dev
),
94 ro
? "read-only" : "writable");
96 pr_info("mnt_sb lacks block device, treating as: writable\n");
99 if (!register_sysctl_paths(loadpin_sysctl_path
,
100 loadpin_sysctl_table
))
101 pr_notice("sysctl registration failed!\n");
103 pr_info("enforcement can be disabled.\n");
105 pr_info("load pinning engaged.\n");
108 static void check_pinning_enforcement(struct super_block
*mnt_sb
)
110 pr_info("load pinning engaged.\n");
114 static void loadpin_sb_free_security(struct super_block
*mnt_sb
)
117 * When unmounting the filesystem we were using for load
118 * pinning, we acknowledge the superblock release, but make sure
119 * no other modules or firmware can be loaded.
121 if (!IS_ERR_OR_NULL(pinned_root
) && mnt_sb
== pinned_root
) {
122 pinned_root
= ERR_PTR(-EIO
);
123 pr_info("umount pinned fs: refusing further loads\n");
127 static int loadpin_read_file(struct file
*file
, enum kernel_read_file_id id
)
129 struct super_block
*load_root
;
130 const char *origin
= kernel_read_file_id_str(id
);
132 /* This handles the older init_module API that has a NULL file. */
135 report_load(origin
, NULL
, "old-api-pinning-ignored");
139 report_load(origin
, NULL
, "old-api-denied");
143 load_root
= file
->f_path
.mnt
->mnt_sb
;
145 /* First loaded module/firmware defines the root for all others. */
146 spin_lock(&pinned_root_spinlock
);
148 * pinned_root is only NULL at startup. Otherwise, it is either
149 * a valid reference, or an ERR_PTR.
152 pinned_root
= load_root
;
154 * Unlock now since it's only pinned_root we care about.
155 * In the worst case, we will (correctly) report pinning
156 * failures before we have announced that pinning is
157 * enforcing. This would be purely cosmetic.
159 spin_unlock(&pinned_root_spinlock
);
160 check_pinning_enforcement(pinned_root
);
161 report_load(origin
, file
, "pinned");
163 spin_unlock(&pinned_root_spinlock
);
166 if (IS_ERR_OR_NULL(pinned_root
) || load_root
!= pinned_root
) {
167 if (unlikely(!enforce
)) {
168 report_load(origin
, file
, "pinning-ignored");
172 report_load(origin
, file
, "denied");
179 static int loadpin_load_data(enum kernel_load_data_id id
)
181 return loadpin_read_file(NULL
, (enum kernel_read_file_id
) id
);
184 static struct security_hook_list loadpin_hooks
[] __lsm_ro_after_init
= {
185 LSM_HOOK_INIT(sb_free_security
, loadpin_sb_free_security
),
186 LSM_HOOK_INIT(kernel_read_file
, loadpin_read_file
),
187 LSM_HOOK_INIT(kernel_load_data
, loadpin_load_data
),
190 static int __init
loadpin_init(void)
192 pr_info("ready to pin (currently %senforcing)\n",
193 enforce
? "" : "not ");
194 security_add_hooks(loadpin_hooks
, ARRAY_SIZE(loadpin_hooks
), "loadpin");
198 DEFINE_LSM(loadpin
) = {
200 .init
= loadpin_init
,
203 /* Should not be mutable after boot, so not listed in sysfs (perm == 0). */
204 module_param(enforce
, int, 0);
205 MODULE_PARM_DESC(enforce
, "Enforce module/firmware pinning");