blob: ef8dfd47c7e391328e2b1e7886b74c1ea87a231b [file] [log] [blame]
Thomas Gleixnerb886d83c2019-06-01 10:08:55 +02001// SPDX-License-Identifier: GPL-2.0-only
Mimi Zohar3323eec2009-02-04 09:06:58 -05002/*
3 * Copyright (C) 2008 IBM Corporation
4 * Author: Mimi Zohar <zohar@us.ibm.com>
5 *
Mimi Zohar3323eec2009-02-04 09:06:58 -05006 * ima_policy.c
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +02007 * - initialize default measure policy rules
Mimi Zohar3323eec2009-02-04 09:06:58 -05008 */
Thiago Jung Bauermann3878d502019-06-27 23:19:32 -03009
10#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
Paul Gortmaker876979c2018-12-09 15:36:29 -050012#include <linux/init.h>
Mimi Zohar3323eec2009-02-04 09:06:58 -050013#include <linux/list.h>
Mimi Zoharcf222212016-01-14 17:57:47 -050014#include <linux/fs.h>
Mimi Zohar3323eec2009-02-04 09:06:58 -050015#include <linux/security.h>
16#include <linux/magic.h>
Mimi Zohar4af46622009-02-04 09:07:00 -050017#include <linux/parser.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Petko Manolov38d859f2015-12-02 17:47:54 +020019#include <linux/rculist.h>
Dmitry Kasatkin85865c12012-09-03 23:23:13 +030020#include <linux/genhd.h>
Petko Manolov80eae202015-12-02 17:47:56 +020021#include <linux/seq_file.h>
Nayna Jain61917062018-10-09 23:00:36 +053022#include <linux/ima.h>
Mimi Zohar3323eec2009-02-04 09:06:58 -050023
24#include "ima.h"
25
26/* flags definitions */
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020027#define IMA_FUNC 0x0001
28#define IMA_MASK 0x0002
Mimi Zohar3323eec2009-02-04 09:06:58 -050029#define IMA_FSMAGIC 0x0004
30#define IMA_UID 0x0008
Mimi Zohar07f6a792011-03-09 22:25:48 -050031#define IMA_FOWNER 0x0010
Dmitry Kasatkin85865c12012-09-03 23:23:13 +030032#define IMA_FSUUID 0x0020
Mimi Zohar4351c292014-11-05 07:53:55 -050033#define IMA_INMASK 0x0040
Mimi Zohar139069e2014-11-05 07:48:36 -050034#define IMA_EUID 0x0080
Eric Richter02606432016-06-01 13:14:01 -050035#define IMA_PCR 0x0100
Mimi Zoharf1b08bb2018-01-15 11:20:36 -050036#define IMA_FSNAME 0x0200
Mimi Zohar3323eec2009-02-04 09:06:58 -050037
Dmitry Kasatkin45e24722012-09-12 20:51:32 +030038#define UNKNOWN 0
39#define MEASURE 0x0001 /* same as IMA_MEASURE */
40#define DONT_MEASURE 0x0002
41#define APPRAISE 0x0004 /* same as IMA_APPRAISE */
42#define DONT_APPRAISE 0x0008
Peter Moodye7c568e2012-06-14 10:04:36 -070043#define AUDIT 0x0040
Mimi Zoharda1b0022016-09-29 10:04:52 -040044#define HASH 0x0100
45#define DONT_HASH 0x0200
Mimi Zohar4af46622009-02-04 09:07:00 -050046
Eric Richter02606432016-06-01 13:14:01 -050047#define INVALID_PCR(a) (((a) < 0) || \
Pankaj Bharadiyac5936422019-12-09 10:31:43 -080048 (a) >= (sizeof_field(struct integrity_iint_cache, measured_pcrs) * 8))
Eric Richter02606432016-06-01 13:14:01 -050049
Roberto Sassua7560242014-09-12 19:35:54 +020050int ima_policy_flag;
Mimi Zohar6ad6afa2015-12-07 14:35:47 -050051static int temp_ima_appraise;
Mimi Zoharef968372018-07-13 14:06:01 -040052static int build_ima_appraise __ro_after_init;
Roberto Sassua7560242014-09-12 19:35:54 +020053
Mimi Zohar4af46622009-02-04 09:07:00 -050054#define MAX_LSM_RULES 6
55enum lsm_rule_types { LSM_OBJ_USER, LSM_OBJ_ROLE, LSM_OBJ_TYPE,
56 LSM_SUBJ_USER, LSM_SUBJ_ROLE, LSM_SUBJ_TYPE
57};
Mimi Zohar3323eec2009-02-04 09:06:58 -050058
Mimi Zohar24fd03c2015-06-11 20:48:33 -040059enum policy_types { ORIGINAL_TCB = 1, DEFAULT_TCB };
60
Nayna Jainc52657d2018-10-09 23:00:35 +053061enum policy_rule_list { IMA_DEFAULT_POLICY = 1, IMA_CUSTOM_POLICY };
62
Mimi Zohar07f6a792011-03-09 22:25:48 -050063struct ima_rule_entry {
Mimi Zohar3323eec2009-02-04 09:06:58 -050064 struct list_head list;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -050065 int action;
Mimi Zohar3323eec2009-02-04 09:06:58 -050066 unsigned int flags;
67 enum ima_hooks func;
68 int mask;
69 unsigned long fsmagic;
Christoph Hellwig787d8c52017-06-01 07:00:26 +020070 uuid_t fsuuid;
Eric W. Biederman8b94eea2012-05-25 18:24:12 -060071 kuid_t uid;
Linus Torvalds882653222012-10-02 21:38:48 -070072 kuid_t fowner;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +030073 bool (*uid_op)(kuid_t, kuid_t); /* Handlers for operators */
74 bool (*fowner_op)(kuid_t, kuid_t); /* uid_eq(), uid_gt(), uid_lt() */
Eric Richter02606432016-06-01 13:14:01 -050075 int pcr;
Mimi Zohar4af46622009-02-04 09:07:00 -050076 struct {
77 void *rule; /* LSM file metadata specific */
Mimi Zohar7163a992013-01-03 14:19:09 -050078 void *args_p; /* audit value */
Mimi Zohar4af46622009-02-04 09:07:00 -050079 int type; /* audit type */
80 } lsm[MAX_LSM_RULES];
Mimi Zoharf1b08bb2018-01-15 11:20:36 -050081 char *fsname;
Matthew Garrett19453ce02019-06-19 15:46:11 -070082 struct ima_template_desc *template;
Mimi Zohar3323eec2009-02-04 09:06:58 -050083};
84
Eric Paris5789ba32009-05-21 15:47:06 -040085/*
86 * Without LSM specific knowledge, the default policy can only be
Mimi Zohar07f6a792011-03-09 22:25:48 -050087 * written in terms of .action, .func, .mask, .fsmagic, .uid, and .fowner
Mimi Zohar4af46622009-02-04 09:07:00 -050088 */
Eric Paris5789ba32009-05-21 15:47:06 -040089
90/*
91 * The minimum rule set to allow for full TCB coverage. Measures all files
92 * opened or mmap for exec and everything read by root. Dangerous because
93 * normal users can easily run the machine out of memory simply building
94 * and running executables.
95 */
James Morrisbad44172017-02-13 16:34:35 +110096static struct ima_rule_entry dont_measure_rules[] __ro_after_init = {
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020097 {.action = DONT_MEASURE, .fsmagic = PROC_SUPER_MAGIC, .flags = IMA_FSMAGIC},
98 {.action = DONT_MEASURE, .fsmagic = SYSFS_MAGIC, .flags = IMA_FSMAGIC},
99 {.action = DONT_MEASURE, .fsmagic = DEBUGFS_MAGIC, .flags = IMA_FSMAGIC},
100 {.action = DONT_MEASURE, .fsmagic = TMPFS_MAGIC, .flags = IMA_FSMAGIC},
101 {.action = DONT_MEASURE, .fsmagic = DEVPTS_SUPER_MAGIC, .flags = IMA_FSMAGIC},
102 {.action = DONT_MEASURE, .fsmagic = BINFMTFS_MAGIC, .flags = IMA_FSMAGIC},
103 {.action = DONT_MEASURE, .fsmagic = SECURITYFS_MAGIC, .flags = IMA_FSMAGIC},
104 {.action = DONT_MEASURE, .fsmagic = SELINUX_MAGIC, .flags = IMA_FSMAGIC},
Martin Townsend1c070b12018-03-22 13:46:01 +0000105 {.action = DONT_MEASURE, .fsmagic = SMACK_MAGIC, .flags = IMA_FSMAGIC},
Roberto Sassu6438de92015-04-11 17:13:06 +0200106 {.action = DONT_MEASURE, .fsmagic = CGROUP_SUPER_MAGIC,
107 .flags = IMA_FSMAGIC},
Laura Abbott82e3bb42017-05-09 11:25:27 -0700108 {.action = DONT_MEASURE, .fsmagic = CGROUP2_SUPER_MAGIC,
109 .flags = IMA_FSMAGIC},
Mimi Zohar060190f2018-11-14 17:24:13 -0500110 {.action = DONT_MEASURE, .fsmagic = NSFS_MAGIC, .flags = IMA_FSMAGIC},
111 {.action = DONT_MEASURE, .fsmagic = EFIVARFS_MAGIC, .flags = IMA_FSMAGIC}
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400112};
113
James Morrisbad44172017-02-13 16:34:35 +1100114static struct ima_rule_entry original_measurement_rules[] __ro_after_init = {
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200115 {.action = MEASURE, .func = MMAP_CHECK, .mask = MAY_EXEC,
Mimi Zohar3323eec2009-02-04 09:06:58 -0500116 .flags = IMA_FUNC | IMA_MASK},
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200117 {.action = MEASURE, .func = BPRM_CHECK, .mask = MAY_EXEC,
Mimi Zohar3323eec2009-02-04 09:06:58 -0500118 .flags = IMA_FUNC | IMA_MASK},
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400119 {.action = MEASURE, .func = FILE_CHECK, .mask = MAY_READ,
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300120 .uid = GLOBAL_ROOT_UID, .uid_op = &uid_eq,
121 .flags = IMA_FUNC | IMA_MASK | IMA_UID},
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400122 {.action = MEASURE, .func = MODULE_CHECK, .flags = IMA_FUNC},
123 {.action = MEASURE, .func = FIRMWARE_CHECK, .flags = IMA_FUNC},
124};
125
James Morrisbad44172017-02-13 16:34:35 +1100126static struct ima_rule_entry default_measurement_rules[] __ro_after_init = {
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400127 {.action = MEASURE, .func = MMAP_CHECK, .mask = MAY_EXEC,
128 .flags = IMA_FUNC | IMA_MASK},
129 {.action = MEASURE, .func = BPRM_CHECK, .mask = MAY_EXEC,
130 .flags = IMA_FUNC | IMA_MASK},
131 {.action = MEASURE, .func = FILE_CHECK, .mask = MAY_READ,
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300132 .uid = GLOBAL_ROOT_UID, .uid_op = &uid_eq,
133 .flags = IMA_FUNC | IMA_INMASK | IMA_EUID},
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400134 {.action = MEASURE, .func = FILE_CHECK, .mask = MAY_READ,
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300135 .uid = GLOBAL_ROOT_UID, .uid_op = &uid_eq,
136 .flags = IMA_FUNC | IMA_INMASK | IMA_UID},
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200137 {.action = MEASURE, .func = MODULE_CHECK, .flags = IMA_FUNC},
Mimi Zohar5a9196d2014-07-22 10:39:48 -0400138 {.action = MEASURE, .func = FIRMWARE_CHECK, .flags = IMA_FUNC},
Mimi Zohar19f8a842016-01-15 10:17:12 -0500139 {.action = MEASURE, .func = POLICY_CHECK, .flags = IMA_FUNC},
Mimi Zohar3323eec2009-02-04 09:06:58 -0500140};
141
James Morrisbad44172017-02-13 16:34:35 +1100142static struct ima_rule_entry default_appraise_rules[] __ro_after_init = {
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200143 {.action = DONT_APPRAISE, .fsmagic = PROC_SUPER_MAGIC, .flags = IMA_FSMAGIC},
144 {.action = DONT_APPRAISE, .fsmagic = SYSFS_MAGIC, .flags = IMA_FSMAGIC},
145 {.action = DONT_APPRAISE, .fsmagic = DEBUGFS_MAGIC, .flags = IMA_FSMAGIC},
146 {.action = DONT_APPRAISE, .fsmagic = TMPFS_MAGIC, .flags = IMA_FSMAGIC},
147 {.action = DONT_APPRAISE, .fsmagic = RAMFS_MAGIC, .flags = IMA_FSMAGIC},
148 {.action = DONT_APPRAISE, .fsmagic = DEVPTS_SUPER_MAGIC, .flags = IMA_FSMAGIC},
149 {.action = DONT_APPRAISE, .fsmagic = BINFMTFS_MAGIC, .flags = IMA_FSMAGIC},
150 {.action = DONT_APPRAISE, .fsmagic = SECURITYFS_MAGIC, .flags = IMA_FSMAGIC},
151 {.action = DONT_APPRAISE, .fsmagic = SELINUX_MAGIC, .flags = IMA_FSMAGIC},
Martin Townsend1c070b12018-03-22 13:46:01 +0000152 {.action = DONT_APPRAISE, .fsmagic = SMACK_MAGIC, .flags = IMA_FSMAGIC},
Mimi Zoharcd025f72015-04-21 16:54:24 -0400153 {.action = DONT_APPRAISE, .fsmagic = NSFS_MAGIC, .flags = IMA_FSMAGIC},
Mimi Zohar060190f2018-11-14 17:24:13 -0500154 {.action = DONT_APPRAISE, .fsmagic = EFIVARFS_MAGIC, .flags = IMA_FSMAGIC},
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200155 {.action = DONT_APPRAISE, .fsmagic = CGROUP_SUPER_MAGIC, .flags = IMA_FSMAGIC},
Laura Abbott82e3bb42017-05-09 11:25:27 -0700156 {.action = DONT_APPRAISE, .fsmagic = CGROUP2_SUPER_MAGIC, .flags = IMA_FSMAGIC},
Mimi Zohar95ee08f2015-12-07 15:08:01 -0500157#ifdef CONFIG_IMA_WRITE_POLICY
158 {.action = APPRAISE, .func = POLICY_CHECK,
159 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
160#endif
Dmitry Kasatkinc57782c2014-11-05 17:01:16 +0200161#ifndef CONFIG_IMA_APPRAISE_SIGNED_INIT
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300162 {.action = APPRAISE, .fowner = GLOBAL_ROOT_UID, .fowner_op = &uid_eq,
163 .flags = IMA_FOWNER},
Dmitry Kasatkinc57782c2014-11-05 17:01:16 +0200164#else
165 /* force signature */
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300166 {.action = APPRAISE, .fowner = GLOBAL_ROOT_UID, .fowner_op = &uid_eq,
Dmitry Kasatkinc57782c2014-11-05 17:01:16 +0200167 .flags = IMA_FOWNER | IMA_DIGSIG_REQUIRED},
168#endif
Mimi Zohar07f6a792011-03-09 22:25:48 -0500169};
Mimi Zohar3323eec2009-02-04 09:06:58 -0500170
Mimi Zoharef968372018-07-13 14:06:01 -0400171static struct ima_rule_entry build_appraise_rules[] __ro_after_init = {
172#ifdef CONFIG_IMA_APPRAISE_REQUIRE_MODULE_SIGS
173 {.action = APPRAISE, .func = MODULE_CHECK,
174 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
175#endif
176#ifdef CONFIG_IMA_APPRAISE_REQUIRE_FIRMWARE_SIGS
177 {.action = APPRAISE, .func = FIRMWARE_CHECK,
178 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
179#endif
180#ifdef CONFIG_IMA_APPRAISE_REQUIRE_KEXEC_SIGS
181 {.action = APPRAISE, .func = KEXEC_KERNEL_CHECK,
182 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
183#endif
184#ifdef CONFIG_IMA_APPRAISE_REQUIRE_POLICY_SIGS
185 {.action = APPRAISE, .func = POLICY_CHECK,
186 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
187#endif
188};
189
Mimi Zohar503ceae2017-04-21 18:58:27 -0400190static struct ima_rule_entry secure_boot_rules[] __ro_after_init = {
191 {.action = APPRAISE, .func = MODULE_CHECK,
192 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
193 {.action = APPRAISE, .func = FIRMWARE_CHECK,
194 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
195 {.action = APPRAISE, .func = KEXEC_KERNEL_CHECK,
196 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
197 {.action = APPRAISE, .func = POLICY_CHECK,
198 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
199};
200
Nayna Jain61917062018-10-09 23:00:36 +0530201/* An array of architecture specific rules */
YueHaibing68f25292019-06-11 21:40:32 +0800202static struct ima_rule_entry *arch_policy_entry __ro_after_init;
Nayna Jain61917062018-10-09 23:00:36 +0530203
Mimi Zohar07f6a792011-03-09 22:25:48 -0500204static LIST_HEAD(ima_default_rules);
205static LIST_HEAD(ima_policy_rules);
Petko Manolov38d859f2015-12-02 17:47:54 +0200206static LIST_HEAD(ima_temp_rules);
Mimi Zohar07f6a792011-03-09 22:25:48 -0500207static struct list_head *ima_rules;
208
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400209static int ima_policy __initdata;
Petko Manolov38d859f2015-12-02 17:47:54 +0200210
Mimi Zohar07f6a792011-03-09 22:25:48 -0500211static int __init default_measure_policy_setup(char *str)
Eric Paris5789ba32009-05-21 15:47:06 -0400212{
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400213 if (ima_policy)
214 return 1;
215
216 ima_policy = ORIGINAL_TCB;
Eric Paris5789ba32009-05-21 15:47:06 -0400217 return 1;
218}
Mimi Zohar07f6a792011-03-09 22:25:48 -0500219__setup("ima_tcb", default_measure_policy_setup);
220
Mimi Zohar33ce9542017-04-24 12:04:09 -0400221static bool ima_use_appraise_tcb __initdata;
Mimi Zohar503ceae2017-04-21 18:58:27 -0400222static bool ima_use_secure_boot __initdata;
Mimi Zohar9e670282018-02-21 11:36:32 -0500223static bool ima_fail_unverifiable_sigs __ro_after_init;
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400224static int __init policy_setup(char *str)
225{
Mimi Zohar33ce9542017-04-24 12:04:09 -0400226 char *p;
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400227
Mimi Zohar33ce9542017-04-24 12:04:09 -0400228 while ((p = strsep(&str, " |\n")) != NULL) {
229 if (*p == ' ')
230 continue;
231 if ((strcmp(p, "tcb") == 0) && !ima_policy)
232 ima_policy = DEFAULT_TCB;
233 else if (strcmp(p, "appraise_tcb") == 0)
Thomas Meyer39adb922017-10-07 16:02:21 +0200234 ima_use_appraise_tcb = true;
Mimi Zohar503ceae2017-04-21 18:58:27 -0400235 else if (strcmp(p, "secure_boot") == 0)
Thomas Meyer39adb922017-10-07 16:02:21 +0200236 ima_use_secure_boot = true;
Mimi Zohar9e670282018-02-21 11:36:32 -0500237 else if (strcmp(p, "fail_securely") == 0)
238 ima_fail_unverifiable_sigs = true;
Mimi Zohar33ce9542017-04-24 12:04:09 -0400239 }
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400240
241 return 1;
242}
243__setup("ima_policy=", policy_setup);
244
Mimi Zohar07f6a792011-03-09 22:25:48 -0500245static int __init default_appraise_policy_setup(char *str)
246{
Thomas Meyer39adb922017-10-07 16:02:21 +0200247 ima_use_appraise_tcb = true;
Mimi Zohar07f6a792011-03-09 22:25:48 -0500248 return 1;
249}
250__setup("ima_appraise_tcb", default_appraise_policy_setup);
Eric Paris5789ba32009-05-21 15:47:06 -0400251
Janne Karhunenb1694242019-06-14 15:20:15 +0300252static void ima_lsm_free_rule(struct ima_rule_entry *entry)
253{
254 int i;
255
256 for (i = 0; i < MAX_LSM_RULES; i++) {
257 kfree(entry->lsm[i].rule);
258 kfree(entry->lsm[i].args_p);
259 }
260 kfree(entry);
261}
262
263static struct ima_rule_entry *ima_lsm_copy_rule(struct ima_rule_entry *entry)
264{
265 struct ima_rule_entry *nentry;
266 int i, result;
267
268 nentry = kmalloc(sizeof(*nentry), GFP_KERNEL);
269 if (!nentry)
270 return NULL;
271
272 /*
273 * Immutable elements are copied over as pointers and data; only
274 * lsm rules can change
275 */
276 memcpy(nentry, entry, sizeof(*nentry));
Pankaj Bharadiyac5936422019-12-09 10:31:43 -0800277 memset(nentry->lsm, 0, sizeof_field(struct ima_rule_entry, lsm));
Janne Karhunenb1694242019-06-14 15:20:15 +0300278
279 for (i = 0; i < MAX_LSM_RULES; i++) {
280 if (!entry->lsm[i].rule)
281 continue;
282
283 nentry->lsm[i].type = entry->lsm[i].type;
284 nentry->lsm[i].args_p = kstrdup(entry->lsm[i].args_p,
285 GFP_KERNEL);
286 if (!nentry->lsm[i].args_p)
287 goto out_err;
288
289 result = security_filter_rule_init(nentry->lsm[i].type,
290 Audit_equal,
291 nentry->lsm[i].args_p,
292 &nentry->lsm[i].rule);
293 if (result == -EINVAL)
294 pr_warn("ima: rule for LSM \'%d\' is undefined\n",
295 entry->lsm[i].type);
296 }
297 return nentry;
298
299out_err:
300 ima_lsm_free_rule(nentry);
301 return NULL;
302}
303
304static int ima_lsm_update_rule(struct ima_rule_entry *entry)
305{
306 struct ima_rule_entry *nentry;
307
308 nentry = ima_lsm_copy_rule(entry);
309 if (!nentry)
310 return -ENOMEM;
311
312 list_replace_rcu(&entry->list, &nentry->list);
313 synchronize_rcu();
314 ima_lsm_free_rule(entry);
315
316 return 0;
317}
318
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200319/*
Petko Manolov38d859f2015-12-02 17:47:54 +0200320 * The LSM policy can be reloaded, leaving the IMA LSM based rules referring
321 * to the old, stale LSM policy. Update the IMA LSM based rules to reflect
Janne Karhunenb1694242019-06-14 15:20:15 +0300322 * the reloaded LSM policy.
Mimi Zohar7163a992013-01-03 14:19:09 -0500323 */
324static void ima_lsm_update_rules(void)
325{
Janne Karhunenb1694242019-06-14 15:20:15 +0300326 struct ima_rule_entry *entry, *e;
327 int i, result, needs_update;
Mimi Zohar7163a992013-01-03 14:19:09 -0500328
Janne Karhunenb1694242019-06-14 15:20:15 +0300329 list_for_each_entry_safe(entry, e, &ima_policy_rules, list) {
330 needs_update = 0;
Mimi Zohar7163a992013-01-03 14:19:09 -0500331 for (i = 0; i < MAX_LSM_RULES; i++) {
Janne Karhunenb1694242019-06-14 15:20:15 +0300332 if (entry->lsm[i].rule) {
333 needs_update = 1;
334 break;
335 }
336 }
337 if (!needs_update)
338 continue;
339
340 result = ima_lsm_update_rule(entry);
341 if (result) {
342 pr_err("ima: lsm rule update error %d\n",
343 result);
344 return;
Mimi Zohar7163a992013-01-03 14:19:09 -0500345 }
346 }
Mimi Zohar7163a992013-01-03 14:19:09 -0500347}
348
Janne Karhunenb1694242019-06-14 15:20:15 +0300349int ima_lsm_policy_change(struct notifier_block *nb, unsigned long event,
350 void *lsm_data)
351{
352 if (event != LSM_POLICY_CHANGE)
353 return NOTIFY_DONE;
354
355 ima_lsm_update_rules();
356 return NOTIFY_OK;
357}
358
Mimi Zohar3323eec2009-02-04 09:06:58 -0500359/**
360 * ima_match_rules - determine whether an inode matches the measure rule.
361 * @rule: a pointer to a rule
362 * @inode: a pointer to an inode
Matthew Garrettd906c102018-01-08 13:36:20 -0800363 * @cred: a pointer to a credentials structure for user validation
364 * @secid: the secid of the task to be validated
Mimi Zohar3323eec2009-02-04 09:06:58 -0500365 * @func: LIM hook identifier
366 * @mask: requested action (MAY_READ | MAY_WRITE | MAY_APPEND | MAY_EXEC)
367 *
368 * Returns true on rule match, false on failure.
369 */
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500370static bool ima_match_rules(struct ima_rule_entry *rule, struct inode *inode,
Matthew Garrettd906c102018-01-08 13:36:20 -0800371 const struct cred *cred, u32 secid,
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500372 enum ima_hooks func, int mask)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500373{
Mimi Zohar4af46622009-02-04 09:07:00 -0500374 int i;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500375
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700376 if (func == KEXEC_CMDLINE) {
377 if ((rule->flags & IMA_FUNC) && (rule->func == func))
378 return true;
379 return false;
380 }
Dmitry Kasatkin09b11482013-11-13 23:42:39 +0200381 if ((rule->flags & IMA_FUNC) &&
382 (rule->func != func && func != POST_SETATTR))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500383 return false;
Dmitry Kasatkin09b11482013-11-13 23:42:39 +0200384 if ((rule->flags & IMA_MASK) &&
385 (rule->mask != mask && func != POST_SETATTR))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500386 return false;
Mimi Zohar4351c292014-11-05 07:53:55 -0500387 if ((rule->flags & IMA_INMASK) &&
388 (!(rule->mask & mask) && func != POST_SETATTR))
389 return false;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500390 if ((rule->flags & IMA_FSMAGIC)
391 && rule->fsmagic != inode->i_sb->s_magic)
392 return false;
Mimi Zoharf1b08bb2018-01-15 11:20:36 -0500393 if ((rule->flags & IMA_FSNAME)
394 && strcmp(rule->fsname, inode->i_sb->s_type->name))
395 return false;
Dmitry Kasatkin85865c12012-09-03 23:23:13 +0300396 if ((rule->flags & IMA_FSUUID) &&
Christoph Hellwig85787092017-05-10 15:06:33 +0200397 !uuid_equal(&rule->fsuuid, &inode->i_sb->s_uuid))
Dmitry Kasatkin85865c12012-09-03 23:23:13 +0300398 return false;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300399 if ((rule->flags & IMA_UID) && !rule->uid_op(cred->uid, rule->uid))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500400 return false;
Mimi Zohar139069e2014-11-05 07:48:36 -0500401 if (rule->flags & IMA_EUID) {
402 if (has_capability_noaudit(current, CAP_SETUID)) {
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300403 if (!rule->uid_op(cred->euid, rule->uid)
404 && !rule->uid_op(cred->suid, rule->uid)
405 && !rule->uid_op(cred->uid, rule->uid))
Mimi Zohar139069e2014-11-05 07:48:36 -0500406 return false;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300407 } else if (!rule->uid_op(cred->euid, rule->uid))
Mimi Zohar139069e2014-11-05 07:48:36 -0500408 return false;
409 }
410
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300411 if ((rule->flags & IMA_FOWNER) &&
412 !rule->fowner_op(inode->i_uid, rule->fowner))
Mimi Zohar07f6a792011-03-09 22:25:48 -0500413 return false;
Mimi Zohar4af46622009-02-04 09:07:00 -0500414 for (i = 0; i < MAX_LSM_RULES; i++) {
Mimi Zohar53fc0e22009-05-05 13:12:48 -0400415 int rc = 0;
Matthew Garrettd906c102018-01-08 13:36:20 -0800416 u32 osid;
Mimi Zohar4af46622009-02-04 09:07:00 -0500417
418 if (!rule->lsm[i].rule)
419 continue;
Janne Karhunenb1694242019-06-14 15:20:15 +0300420
Mimi Zohar4af46622009-02-04 09:07:00 -0500421 switch (i) {
422 case LSM_OBJ_USER:
423 case LSM_OBJ_ROLE:
424 case LSM_OBJ_TYPE:
425 security_inode_getsecid(inode, &osid);
426 rc = security_filter_rule_match(osid,
427 rule->lsm[i].type,
Mimi Zohar53fc0e22009-05-05 13:12:48 -0400428 Audit_equal,
Richard Guy Briggs90462a52019-01-31 11:52:11 -0500429 rule->lsm[i].rule);
Mimi Zohar4af46622009-02-04 09:07:00 -0500430 break;
431 case LSM_SUBJ_USER:
432 case LSM_SUBJ_ROLE:
433 case LSM_SUBJ_TYPE:
Matthew Garrettd906c102018-01-08 13:36:20 -0800434 rc = security_filter_rule_match(secid,
Mimi Zohar4af46622009-02-04 09:07:00 -0500435 rule->lsm[i].type,
Mimi Zohar53fc0e22009-05-05 13:12:48 -0400436 Audit_equal,
Richard Guy Briggs90462a52019-01-31 11:52:11 -0500437 rule->lsm[i].rule);
Mimi Zohar4af46622009-02-04 09:07:00 -0500438 default:
439 break;
440 }
441 if (!rc)
442 return false;
443 }
Mimi Zohar3323eec2009-02-04 09:06:58 -0500444 return true;
445}
446
Mimi Zohard79d72e2012-12-03 17:08:11 -0500447/*
448 * In addition to knowing that we need to appraise the file in general,
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500449 * we need to differentiate between calling hooks, for hook specific rules.
Mimi Zohard79d72e2012-12-03 17:08:11 -0500450 */
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500451static int get_subaction(struct ima_rule_entry *rule, enum ima_hooks func)
Mimi Zohard79d72e2012-12-03 17:08:11 -0500452{
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500453 if (!(rule->flags & IMA_FUNC))
454 return IMA_FILE_APPRAISE;
455
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200456 switch (func) {
Mimi Zohard79d72e2012-12-03 17:08:11 -0500457 case MMAP_CHECK:
458 return IMA_MMAP_APPRAISE;
459 case BPRM_CHECK:
460 return IMA_BPRM_APPRAISE;
Matthew Garrettd906c102018-01-08 13:36:20 -0800461 case CREDS_CHECK:
462 return IMA_CREDS_APPRAISE;
Mimi Zohard79d72e2012-12-03 17:08:11 -0500463 case FILE_CHECK:
Mimi Zoharc6af8ef2015-11-19 12:39:22 -0500464 case POST_SETATTR:
Mimi Zohard79d72e2012-12-03 17:08:11 -0500465 return IMA_FILE_APPRAISE;
Mimi Zoharc6af8ef2015-11-19 12:39:22 -0500466 case MODULE_CHECK ... MAX_CHECK - 1:
467 default:
468 return IMA_READ_APPRAISE;
Mimi Zohard79d72e2012-12-03 17:08:11 -0500469 }
470}
471
Mimi Zohar3323eec2009-02-04 09:06:58 -0500472/**
473 * ima_match_policy - decision based on LSM and other conditions
474 * @inode: pointer to an inode for which the policy decision is being made
Matthew Garrettd906c102018-01-08 13:36:20 -0800475 * @cred: pointer to a credentials structure for which the policy decision is
476 * being made
477 * @secid: LSM secid of the task to be validated
Mimi Zohar3323eec2009-02-04 09:06:58 -0500478 * @func: IMA hook identifier
479 * @mask: requested action (MAY_READ | MAY_WRITE | MAY_APPEND | MAY_EXEC)
Eric Richter725de7f2016-06-01 13:14:02 -0500480 * @pcr: set the pcr to extend
Matthew Garrett19453ce02019-06-19 15:46:11 -0700481 * @template_desc: the template that should be used for this rule
Mimi Zohar3323eec2009-02-04 09:06:58 -0500482 *
483 * Measure decision based on func/mask/fsmagic and LSM(subj/obj/type)
484 * conditions.
485 *
Petko Manolov38d859f2015-12-02 17:47:54 +0200486 * Since the IMA policy may be updated multiple times we need to lock the
487 * list when walking it. Reads are many orders of magnitude more numerous
488 * than writes so ima_match_policy() is classical RCU candidate.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500489 */
Matthew Garrettd906c102018-01-08 13:36:20 -0800490int ima_match_policy(struct inode *inode, const struct cred *cred, u32 secid,
Matthew Garrett19453ce02019-06-19 15:46:11 -0700491 enum ima_hooks func, int mask, int flags, int *pcr,
492 struct ima_template_desc **template_desc)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500493{
Mimi Zohar07f6a792011-03-09 22:25:48 -0500494 struct ima_rule_entry *entry;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500495 int action = 0, actmask = flags | (flags << 1);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500496
Mimi Zoharb36f2812019-07-19 07:16:57 -0400497 if (template_desc)
498 *template_desc = ima_template_desc_current();
499
Petko Manolov38d859f2015-12-02 17:47:54 +0200500 rcu_read_lock();
501 list_for_each_entry_rcu(entry, ima_rules, list) {
Mimi Zohar3323eec2009-02-04 09:06:58 -0500502
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500503 if (!(entry->action & actmask))
504 continue;
505
Matthew Garrettd906c102018-01-08 13:36:20 -0800506 if (!ima_match_rules(entry, inode, cred, secid, func, mask))
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500507 continue;
508
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +0300509 action |= entry->flags & IMA_ACTION_FLAGS;
510
Dmitry Kasatkin45e24722012-09-12 20:51:32 +0300511 action |= entry->action & IMA_DO_MASK;
Mimi Zoharda1b0022016-09-29 10:04:52 -0400512 if (entry->action & IMA_APPRAISE) {
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500513 action |= get_subaction(entry, func);
Mimi Zohara9a49352018-03-10 23:07:34 -0500514 action &= ~IMA_HASH;
Mimi Zohar9e670282018-02-21 11:36:32 -0500515 if (ima_fail_unverifiable_sigs)
516 action |= IMA_FAIL_UNVERIFIABLE_SIGS;
Mimi Zoharda1b0022016-09-29 10:04:52 -0400517 }
Mimi Zohard79d72e2012-12-03 17:08:11 -0500518
Mimi Zoharb36f2812019-07-19 07:16:57 -0400519
Dmitry Kasatkin45e24722012-09-12 20:51:32 +0300520 if (entry->action & IMA_DO_MASK)
521 actmask &= ~(entry->action | entry->action << 1);
522 else
523 actmask &= ~(entry->action | entry->action >> 1);
524
Eric Richter725de7f2016-06-01 13:14:02 -0500525 if ((pcr) && (entry->flags & IMA_PCR))
526 *pcr = entry->pcr;
527
Matthew Garrett19453ce02019-06-19 15:46:11 -0700528 if (template_desc && entry->template)
529 *template_desc = entry->template;
Matthew Garrett19453ce02019-06-19 15:46:11 -0700530
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500531 if (!actmask)
532 break;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500533 }
Petko Manolov38d859f2015-12-02 17:47:54 +0200534 rcu_read_unlock();
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500535
536 return action;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500537}
538
Roberto Sassua7560242014-09-12 19:35:54 +0200539/*
540 * Initialize the ima_policy_flag variable based on the currently
541 * loaded policy. Based on this flag, the decision to short circuit
542 * out of a function or not call the function in the first place
543 * can be made earlier.
544 */
545void ima_update_policy_flag(void)
546{
547 struct ima_rule_entry *entry;
548
Roberto Sassua7560242014-09-12 19:35:54 +0200549 list_for_each_entry(entry, ima_rules, list) {
550 if (entry->action & IMA_DO_MASK)
551 ima_policy_flag |= entry->action;
552 }
553
Mimi Zoharef968372018-07-13 14:06:01 -0400554 ima_appraise |= (build_ima_appraise | temp_ima_appraise);
Roberto Sassua7560242014-09-12 19:35:54 +0200555 if (!ima_appraise)
556 ima_policy_flag &= ~IMA_APPRAISE;
557}
558
Mimi Zohar6f0911a2018-04-12 00:15:22 -0400559static int ima_appraise_flag(enum ima_hooks func)
560{
561 if (func == MODULE_CHECK)
562 return IMA_APPRAISE_MODULES;
563 else if (func == FIRMWARE_CHECK)
564 return IMA_APPRAISE_FIRMWARE;
565 else if (func == POLICY_CHECK)
566 return IMA_APPRAISE_POLICY;
Mimi Zohar16c267a2018-07-13 14:05:58 -0400567 else if (func == KEXEC_KERNEL_CHECK)
568 return IMA_APPRAISE_KEXEC;
Mimi Zohar6f0911a2018-04-12 00:15:22 -0400569 return 0;
570}
571
Nayna Jainc52657d2018-10-09 23:00:35 +0530572static void add_rules(struct ima_rule_entry *entries, int count,
573 enum policy_rule_list policy_rule)
574{
575 int i = 0;
576
577 for (i = 0; i < count; i++) {
578 struct ima_rule_entry *entry;
579
580 if (policy_rule & IMA_DEFAULT_POLICY)
581 list_add_tail(&entries[i].list, &ima_default_rules);
582
583 if (policy_rule & IMA_CUSTOM_POLICY) {
584 entry = kmemdup(&entries[i], sizeof(*entry),
585 GFP_KERNEL);
586 if (!entry)
587 continue;
588
589 list_add_tail(&entry->list, &ima_policy_rules);
590 }
Petr Vorelf4001942019-05-15 08:18:07 +0200591 if (entries[i].action == APPRAISE) {
Nayna Jainc52657d2018-10-09 23:00:35 +0530592 temp_ima_appraise |= ima_appraise_flag(entries[i].func);
Petr Vorelf4001942019-05-15 08:18:07 +0200593 if (entries[i].func == POLICY_CHECK)
594 temp_ima_appraise |= IMA_APPRAISE_POLICY;
595 }
Nayna Jainc52657d2018-10-09 23:00:35 +0530596 }
597}
598
Nayna Jain61917062018-10-09 23:00:36 +0530599static int ima_parse_rule(char *rule, struct ima_rule_entry *entry);
600
601static int __init ima_init_arch_policy(void)
602{
603 const char * const *arch_rules;
604 const char * const *rules;
605 int arch_entries = 0;
606 int i = 0;
607
608 arch_rules = arch_get_ima_policy();
609 if (!arch_rules)
610 return arch_entries;
611
612 /* Get number of rules */
613 for (rules = arch_rules; *rules != NULL; rules++)
614 arch_entries++;
615
616 arch_policy_entry = kcalloc(arch_entries + 1,
617 sizeof(*arch_policy_entry), GFP_KERNEL);
618 if (!arch_policy_entry)
619 return 0;
620
621 /* Convert each policy string rules to struct ima_rule_entry format */
622 for (rules = arch_rules, i = 0; *rules != NULL; rules++) {
623 char rule[255];
624 int result;
625
626 result = strlcpy(rule, *rules, sizeof(rule));
627
628 INIT_LIST_HEAD(&arch_policy_entry[i].list);
629 result = ima_parse_rule(rule, &arch_policy_entry[i]);
630 if (result) {
631 pr_warn("Skipping unknown architecture policy rule: %s\n",
632 rule);
633 memset(&arch_policy_entry[i], 0,
634 sizeof(*arch_policy_entry));
635 continue;
636 }
637 i++;
638 }
639 return i;
640}
641
Mimi Zohar3323eec2009-02-04 09:06:58 -0500642/**
643 * ima_init_policy - initialize the default measure rules.
644 *
Mimi Zohar07f6a792011-03-09 22:25:48 -0500645 * ima_rules points to either the ima_default_rules or the
646 * the new ima_policy_rules.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500647 */
Eric Paris932995f2009-05-21 15:43:32 -0400648void __init ima_init_policy(void)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500649{
Nayna Jain61917062018-10-09 23:00:36 +0530650 int build_appraise_entries, arch_entries;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500651
Nayna Jainc52657d2018-10-09 23:00:35 +0530652 /* if !ima_policy, we load NO default rules */
653 if (ima_policy)
654 add_rules(dont_measure_rules, ARRAY_SIZE(dont_measure_rules),
655 IMA_DEFAULT_POLICY);
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400656
657 switch (ima_policy) {
658 case ORIGINAL_TCB:
Nayna Jainc52657d2018-10-09 23:00:35 +0530659 add_rules(original_measurement_rules,
660 ARRAY_SIZE(original_measurement_rules),
661 IMA_DEFAULT_POLICY);
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400662 break;
663 case DEFAULT_TCB:
Nayna Jainc52657d2018-10-09 23:00:35 +0530664 add_rules(default_measurement_rules,
665 ARRAY_SIZE(default_measurement_rules),
666 IMA_DEFAULT_POLICY);
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400667 default:
668 break;
669 }
Eric Paris5789ba32009-05-21 15:47:06 -0400670
Mimi Zohar503ceae2017-04-21 18:58:27 -0400671 /*
Nayna Jain61917062018-10-09 23:00:36 +0530672 * Based on runtime secure boot flags, insert arch specific measurement
673 * and appraise rules requiring file signatures for both the initial
674 * and custom policies, prior to other appraise rules.
675 * (Highest priority)
Mimi Zohar503ceae2017-04-21 18:58:27 -0400676 */
Nayna Jain61917062018-10-09 23:00:36 +0530677 arch_entries = ima_init_arch_policy();
678 if (!arch_entries)
679 pr_info("No architecture policies found\n");
680 else
681 add_rules(arch_policy_entry, arch_entries,
682 IMA_DEFAULT_POLICY | IMA_CUSTOM_POLICY);
683
684 /*
Mimi Zohar503ceae2017-04-21 18:58:27 -0400685 * Insert the builtin "secure_boot" policy rules requiring file
Nayna Jain61917062018-10-09 23:00:36 +0530686 * signatures, prior to other appraise rules.
Mimi Zohar503ceae2017-04-21 18:58:27 -0400687 */
Nayna Jainc52657d2018-10-09 23:00:35 +0530688 if (ima_use_secure_boot)
689 add_rules(secure_boot_rules, ARRAY_SIZE(secure_boot_rules),
690 IMA_DEFAULT_POLICY);
Mimi Zohar503ceae2017-04-21 18:58:27 -0400691
Mimi Zoharef968372018-07-13 14:06:01 -0400692 /*
693 * Insert the build time appraise rules requiring file signatures
694 * for both the initial and custom policies, prior to other appraise
Nayna Jainc52657d2018-10-09 23:00:35 +0530695 * rules. As the secure boot rules includes all of the build time
696 * rules, include either one or the other set of rules, but not both.
Mimi Zoharef968372018-07-13 14:06:01 -0400697 */
Nayna Jainc52657d2018-10-09 23:00:35 +0530698 build_appraise_entries = ARRAY_SIZE(build_appraise_rules);
699 if (build_appraise_entries) {
700 if (ima_use_secure_boot)
701 add_rules(build_appraise_rules, build_appraise_entries,
702 IMA_CUSTOM_POLICY);
703 else
704 add_rules(build_appraise_rules, build_appraise_entries,
705 IMA_DEFAULT_POLICY | IMA_CUSTOM_POLICY);
Mimi Zoharef968372018-07-13 14:06:01 -0400706 }
707
Nayna Jainc52657d2018-10-09 23:00:35 +0530708 if (ima_use_appraise_tcb)
709 add_rules(default_appraise_rules,
710 ARRAY_SIZE(default_appraise_rules),
711 IMA_DEFAULT_POLICY);
Mimi Zohar07f6a792011-03-09 22:25:48 -0500712
713 ima_rules = &ima_default_rules;
Mimi Zohar95ee08f2015-12-07 15:08:01 -0500714 ima_update_policy_flag();
Mimi Zohar3323eec2009-02-04 09:06:58 -0500715}
Mimi Zohar4af46622009-02-04 09:07:00 -0500716
Sasha Levin01127212015-12-22 08:51:23 -0500717/* Make sure we have a valid policy, at least containing some rules. */
Colin Ian Kingc75d8e92016-01-20 11:13:46 +0000718int ima_check_policy(void)
Sasha Levin01127212015-12-22 08:51:23 -0500719{
720 if (list_empty(&ima_temp_rules))
721 return -EINVAL;
722 return 0;
723}
724
Mimi Zohar4af46622009-02-04 09:07:00 -0500725/**
726 * ima_update_policy - update default_rules with new measure rules
727 *
728 * Called on file .release to update the default rules with a complete new
Petko Manolov38d859f2015-12-02 17:47:54 +0200729 * policy. What we do here is to splice ima_policy_rules and ima_temp_rules so
730 * they make a queue. The policy may be updated multiple times and this is the
731 * RCU updater.
732 *
733 * Policy rules are never deleted so ima_policy_flag gets zeroed only once when
734 * we switch from the default policy to user defined.
Mimi Zohar4af46622009-02-04 09:07:00 -0500735 */
736void ima_update_policy(void)
737{
Petko Manolov53b626f2018-05-22 17:06:55 +0300738 struct list_head *policy = &ima_policy_rules;
Petko Manolov38d859f2015-12-02 17:47:54 +0200739
Petko Manolov53b626f2018-05-22 17:06:55 +0300740 list_splice_tail_init_rcu(&ima_temp_rules, policy, synchronize_rcu);
Petko Manolov38d859f2015-12-02 17:47:54 +0200741
742 if (ima_rules != policy) {
743 ima_policy_flag = 0;
744 ima_rules = policy;
Nayna Jain61917062018-10-09 23:00:36 +0530745
746 /*
747 * IMA architecture specific policy rules are specified
748 * as strings and converted to an array of ima_entry_rules
749 * on boot. After loading a custom policy, free the
750 * architecture specific rules stored as an array.
751 */
752 kfree(arch_policy_entry);
Petko Manolov38d859f2015-12-02 17:47:54 +0200753 }
Dmitry Kasatkin0716abb2014-10-03 14:40:21 +0300754 ima_update_policy_flag();
Mimi Zohar4af46622009-02-04 09:07:00 -0500755}
756
Mimi Zohar1a9430d2018-12-17 19:14:49 -0500757/* Keep the enumeration in sync with the policy_tokens! */
Mimi Zohar4af46622009-02-04 09:07:00 -0500758enum {
Mimi Zohar1a9430d2018-12-17 19:14:49 -0500759 Opt_measure, Opt_dont_measure,
Mimi Zohar07f6a792011-03-09 22:25:48 -0500760 Opt_appraise, Opt_dont_appraise,
Mimi Zoharda1b0022016-09-29 10:04:52 -0400761 Opt_audit, Opt_hash, Opt_dont_hash,
Mimi Zohar4af46622009-02-04 09:07:00 -0500762 Opt_obj_user, Opt_obj_role, Opt_obj_type,
763 Opt_subj_user, Opt_subj_role, Opt_subj_type,
Mimi Zoharf1b08bb2018-01-15 11:20:36 -0500764 Opt_func, Opt_mask, Opt_fsmagic, Opt_fsname,
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300765 Opt_fsuuid, Opt_uid_eq, Opt_euid_eq, Opt_fowner_eq,
766 Opt_uid_gt, Opt_euid_gt, Opt_fowner_gt,
767 Opt_uid_lt, Opt_euid_lt, Opt_fowner_lt,
Nayna Jain273df862019-10-30 23:31:32 -0400768 Opt_appraise_type, Opt_appraise_flag,
769 Opt_permit_directio, Opt_pcr, Opt_template, Opt_err
Mimi Zohar4af46622009-02-04 09:07:00 -0500770};
771
Mimi Zohar1a9430d2018-12-17 19:14:49 -0500772static const match_table_t policy_tokens = {
Mimi Zohar4af46622009-02-04 09:07:00 -0500773 {Opt_measure, "measure"},
774 {Opt_dont_measure, "dont_measure"},
Mimi Zohar07f6a792011-03-09 22:25:48 -0500775 {Opt_appraise, "appraise"},
776 {Opt_dont_appraise, "dont_appraise"},
Peter Moodye7c568e2012-06-14 10:04:36 -0700777 {Opt_audit, "audit"},
Mimi Zoharda1b0022016-09-29 10:04:52 -0400778 {Opt_hash, "hash"},
779 {Opt_dont_hash, "dont_hash"},
Mimi Zohar4af46622009-02-04 09:07:00 -0500780 {Opt_obj_user, "obj_user=%s"},
781 {Opt_obj_role, "obj_role=%s"},
782 {Opt_obj_type, "obj_type=%s"},
783 {Opt_subj_user, "subj_user=%s"},
784 {Opt_subj_role, "subj_role=%s"},
785 {Opt_subj_type, "subj_type=%s"},
786 {Opt_func, "func=%s"},
787 {Opt_mask, "mask=%s"},
788 {Opt_fsmagic, "fsmagic=%s"},
Mimi Zoharf1b08bb2018-01-15 11:20:36 -0500789 {Opt_fsname, "fsname=%s"},
Dmitry Kasatkin85865c12012-09-03 23:23:13 +0300790 {Opt_fsuuid, "fsuuid=%s"},
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300791 {Opt_uid_eq, "uid=%s"},
792 {Opt_euid_eq, "euid=%s"},
793 {Opt_fowner_eq, "fowner=%s"},
794 {Opt_uid_gt, "uid>%s"},
795 {Opt_euid_gt, "euid>%s"},
796 {Opt_fowner_gt, "fowner>%s"},
797 {Opt_uid_lt, "uid<%s"},
798 {Opt_euid_lt, "euid<%s"},
799 {Opt_fowner_lt, "fowner<%s"},
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +0300800 {Opt_appraise_type, "appraise_type=%s"},
Nayna Jain273df862019-10-30 23:31:32 -0400801 {Opt_appraise_flag, "appraise_flag=%s"},
Mimi Zoharf9b2a732014-05-12 09:28:11 -0400802 {Opt_permit_directio, "permit_directio"},
Eric Richter02606432016-06-01 13:14:01 -0500803 {Opt_pcr, "pcr=%s"},
Matthew Garrett19453ce02019-06-19 15:46:11 -0700804 {Opt_template, "template=%s"},
Mimi Zohar4af46622009-02-04 09:07:00 -0500805 {Opt_err, NULL}
806};
807
Mimi Zohar07f6a792011-03-09 22:25:48 -0500808static int ima_lsm_rule_init(struct ima_rule_entry *entry,
Mimi Zohar7163a992013-01-03 14:19:09 -0500809 substring_t *args, int lsm_rule, int audit_type)
Mimi Zohar4af46622009-02-04 09:07:00 -0500810{
811 int result;
812
Eric Paris7b62e162010-04-20 10:21:01 -0400813 if (entry->lsm[lsm_rule].rule)
814 return -EINVAL;
815
Mimi Zohar7163a992013-01-03 14:19:09 -0500816 entry->lsm[lsm_rule].args_p = match_strdup(args);
817 if (!entry->lsm[lsm_rule].args_p)
818 return -ENOMEM;
819
Mimi Zohar4af46622009-02-04 09:07:00 -0500820 entry->lsm[lsm_rule].type = audit_type;
821 result = security_filter_rule_init(entry->lsm[lsm_rule].type,
Mimi Zohar7163a992013-01-03 14:19:09 -0500822 Audit_equal,
823 entry->lsm[lsm_rule].args_p,
Mimi Zohar4af46622009-02-04 09:07:00 -0500824 &entry->lsm[lsm_rule].rule);
Mimi Zohar7163a992013-01-03 14:19:09 -0500825 if (!entry->lsm[lsm_rule].rule) {
826 kfree(entry->lsm[lsm_rule].args_p);
Mimi Zohar867c2022011-01-03 14:59:10 -0800827 return -EINVAL;
Mimi Zohar7163a992013-01-03 14:19:09 -0500828 }
829
Mimi Zohar4af46622009-02-04 09:07:00 -0500830 return result;
831}
832
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300833static void ima_log_string_op(struct audit_buffer *ab, char *key, char *value,
834 bool (*rule_operator)(kuid_t, kuid_t))
Eric Paris2f1506c2010-04-20 10:21:30 -0400835{
Stefan Berger2afd0202018-06-04 16:54:54 -0400836 if (!ab)
837 return;
838
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300839 if (rule_operator == &uid_gt)
840 audit_log_format(ab, "%s>", key);
841 else if (rule_operator == &uid_lt)
842 audit_log_format(ab, "%s<", key);
843 else
844 audit_log_format(ab, "%s=", key);
Stefan Berger3d2859d2018-06-04 16:54:53 -0400845 audit_log_format(ab, "%s ", value);
Eric Paris2f1506c2010-04-20 10:21:30 -0400846}
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300847static void ima_log_string(struct audit_buffer *ab, char *key, char *value)
848{
849 ima_log_string_op(ab, key, value, NULL);
850}
Eric Paris2f1506c2010-04-20 10:21:30 -0400851
Thiago Jung Bauermann3878d502019-06-27 23:19:32 -0300852/*
853 * Validating the appended signature included in the measurement list requires
854 * the file hash calculated without the appended signature (i.e., the 'd-modsig'
855 * field). Therefore, notify the user if they have the 'modsig' field but not
856 * the 'd-modsig' field in the template.
857 */
858static void check_template_modsig(const struct ima_template_desc *template)
859{
860#define MSG "template with 'modsig' field also needs 'd-modsig' field\n"
861 bool has_modsig, has_dmodsig;
862 static bool checked;
863 int i;
864
865 /* We only need to notify the user once. */
866 if (checked)
867 return;
868
869 has_modsig = has_dmodsig = false;
870 for (i = 0; i < template->num_fields; i++) {
871 if (!strcmp(template->fields[i]->field_id, "modsig"))
872 has_modsig = true;
873 else if (!strcmp(template->fields[i]->field_id, "d-modsig"))
874 has_dmodsig = true;
875 }
876
877 if (has_modsig && !has_dmodsig)
878 pr_notice(MSG);
879
880 checked = true;
881#undef MSG
882}
883
Mimi Zohar07f6a792011-03-09 22:25:48 -0500884static int ima_parse_rule(char *rule, struct ima_rule_entry *entry)
Mimi Zohar4af46622009-02-04 09:07:00 -0500885{
886 struct audit_buffer *ab;
Mimi Zohar4351c292014-11-05 07:53:55 -0500887 char *from;
Mimi Zohar4af46622009-02-04 09:07:00 -0500888 char *p;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300889 bool uid_token;
Matthew Garrett19453ce02019-06-19 15:46:11 -0700890 struct ima_template_desc *template_desc;
Mimi Zohar4af46622009-02-04 09:07:00 -0500891 int result = 0;
892
Stefan Bergerdba31ee2018-06-04 16:54:55 -0400893 ab = integrity_audit_log_start(audit_context(), GFP_KERNEL,
894 AUDIT_INTEGRITY_POLICY_RULE);
Mimi Zohar4af46622009-02-04 09:07:00 -0500895
Eric W. Biederman8b94eea2012-05-25 18:24:12 -0600896 entry->uid = INVALID_UID;
Linus Torvalds882653222012-10-02 21:38:48 -0700897 entry->fowner = INVALID_UID;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300898 entry->uid_op = &uid_eq;
899 entry->fowner_op = &uid_eq;
Eric Parisb9035b12010-04-20 10:21:07 -0400900 entry->action = UNKNOWN;
Eric Paris28ef4002010-04-20 10:21:18 -0400901 while ((p = strsep(&rule, " \t")) != NULL) {
Mimi Zohar4af46622009-02-04 09:07:00 -0500902 substring_t args[MAX_OPT_ARGS];
903 int token;
904 unsigned long lnum;
905
906 if (result < 0)
907 break;
Eric Paris28ef4002010-04-20 10:21:18 -0400908 if ((*p == '\0') || (*p == ' ') || (*p == '\t'))
909 continue;
Mimi Zohar4af46622009-02-04 09:07:00 -0500910 token = match_token(p, policy_tokens, args);
911 switch (token) {
912 case Opt_measure:
Eric Paris2f1506c2010-04-20 10:21:30 -0400913 ima_log_string(ab, "action", "measure");
Eric Paris7b62e162010-04-20 10:21:01 -0400914
915 if (entry->action != UNKNOWN)
916 result = -EINVAL;
917
Mimi Zohar4af46622009-02-04 09:07:00 -0500918 entry->action = MEASURE;
919 break;
920 case Opt_dont_measure:
Eric Paris2f1506c2010-04-20 10:21:30 -0400921 ima_log_string(ab, "action", "dont_measure");
Eric Paris7b62e162010-04-20 10:21:01 -0400922
923 if (entry->action != UNKNOWN)
924 result = -EINVAL;
925
Mimi Zohar4af46622009-02-04 09:07:00 -0500926 entry->action = DONT_MEASURE;
927 break;
Mimi Zohar07f6a792011-03-09 22:25:48 -0500928 case Opt_appraise:
929 ima_log_string(ab, "action", "appraise");
930
931 if (entry->action != UNKNOWN)
932 result = -EINVAL;
933
934 entry->action = APPRAISE;
935 break;
936 case Opt_dont_appraise:
937 ima_log_string(ab, "action", "dont_appraise");
938
939 if (entry->action != UNKNOWN)
940 result = -EINVAL;
941
942 entry->action = DONT_APPRAISE;
943 break;
Peter Moodye7c568e2012-06-14 10:04:36 -0700944 case Opt_audit:
945 ima_log_string(ab, "action", "audit");
946
947 if (entry->action != UNKNOWN)
948 result = -EINVAL;
949
950 entry->action = AUDIT;
951 break;
Mimi Zoharda1b0022016-09-29 10:04:52 -0400952 case Opt_hash:
953 ima_log_string(ab, "action", "hash");
954
955 if (entry->action != UNKNOWN)
956 result = -EINVAL;
957
958 entry->action = HASH;
959 break;
960 case Opt_dont_hash:
961 ima_log_string(ab, "action", "dont_hash");
962
963 if (entry->action != UNKNOWN)
964 result = -EINVAL;
965
966 entry->action = DONT_HASH;
967 break;
Mimi Zohar4af46622009-02-04 09:07:00 -0500968 case Opt_func:
Eric Paris2f1506c2010-04-20 10:21:30 -0400969 ima_log_string(ab, "func", args[0].from);
Eric Paris7b62e162010-04-20 10:21:01 -0400970
971 if (entry->func)
Mimi Zohar07f6a792011-03-09 22:25:48 -0500972 result = -EINVAL;
Eric Paris7b62e162010-04-20 10:21:01 -0400973
Mimi Zohar1e93d002010-01-26 17:02:41 -0500974 if (strcmp(args[0].from, "FILE_CHECK") == 0)
975 entry->func = FILE_CHECK;
976 /* PATH_CHECK is for backwards compat */
977 else if (strcmp(args[0].from, "PATH_CHECK") == 0)
978 entry->func = FILE_CHECK;
Mimi Zoharfdf90722012-10-16 12:40:08 +1030979 else if (strcmp(args[0].from, "MODULE_CHECK") == 0)
980 entry->func = MODULE_CHECK;
Mimi Zohar5a9196d2014-07-22 10:39:48 -0400981 else if (strcmp(args[0].from, "FIRMWARE_CHECK") == 0)
982 entry->func = FIRMWARE_CHECK;
Mimi Zohar16cac492012-12-13 11:15:04 -0500983 else if ((strcmp(args[0].from, "FILE_MMAP") == 0)
984 || (strcmp(args[0].from, "MMAP_CHECK") == 0))
985 entry->func = MMAP_CHECK;
Mimi Zohar4af46622009-02-04 09:07:00 -0500986 else if (strcmp(args[0].from, "BPRM_CHECK") == 0)
987 entry->func = BPRM_CHECK;
Matthew Garrettd906c102018-01-08 13:36:20 -0800988 else if (strcmp(args[0].from, "CREDS_CHECK") == 0)
989 entry->func = CREDS_CHECK;
Mimi Zohard9ddf072016-01-14 20:59:14 -0500990 else if (strcmp(args[0].from, "KEXEC_KERNEL_CHECK") ==
991 0)
992 entry->func = KEXEC_KERNEL_CHECK;
993 else if (strcmp(args[0].from, "KEXEC_INITRAMFS_CHECK")
994 == 0)
995 entry->func = KEXEC_INITRAMFS_CHECK;
Mimi Zohar19f8a842016-01-15 10:17:12 -0500996 else if (strcmp(args[0].from, "POLICY_CHECK") == 0)
997 entry->func = POLICY_CHECK;
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700998 else if (strcmp(args[0].from, "KEXEC_CMDLINE") == 0)
999 entry->func = KEXEC_CMDLINE;
Mimi Zohar4af46622009-02-04 09:07:00 -05001000 else
1001 result = -EINVAL;
1002 if (!result)
1003 entry->flags |= IMA_FUNC;
1004 break;
1005 case Opt_mask:
Eric Paris2f1506c2010-04-20 10:21:30 -04001006 ima_log_string(ab, "mask", args[0].from);
Eric Paris7b62e162010-04-20 10:21:01 -04001007
1008 if (entry->mask)
1009 result = -EINVAL;
1010
Mimi Zohar4351c292014-11-05 07:53:55 -05001011 from = args[0].from;
1012 if (*from == '^')
1013 from++;
1014
1015 if ((strcmp(from, "MAY_EXEC")) == 0)
Mimi Zohar4af46622009-02-04 09:07:00 -05001016 entry->mask = MAY_EXEC;
Mimi Zohar4351c292014-11-05 07:53:55 -05001017 else if (strcmp(from, "MAY_WRITE") == 0)
Mimi Zohar4af46622009-02-04 09:07:00 -05001018 entry->mask = MAY_WRITE;
Mimi Zohar4351c292014-11-05 07:53:55 -05001019 else if (strcmp(from, "MAY_READ") == 0)
Mimi Zohar4af46622009-02-04 09:07:00 -05001020 entry->mask = MAY_READ;
Mimi Zohar4351c292014-11-05 07:53:55 -05001021 else if (strcmp(from, "MAY_APPEND") == 0)
Mimi Zohar4af46622009-02-04 09:07:00 -05001022 entry->mask = MAY_APPEND;
1023 else
1024 result = -EINVAL;
1025 if (!result)
Mimi Zohar4351c292014-11-05 07:53:55 -05001026 entry->flags |= (*args[0].from == '^')
1027 ? IMA_INMASK : IMA_MASK;
Mimi Zohar4af46622009-02-04 09:07:00 -05001028 break;
1029 case Opt_fsmagic:
Eric Paris2f1506c2010-04-20 10:21:30 -04001030 ima_log_string(ab, "fsmagic", args[0].from);
Eric Paris7b62e162010-04-20 10:21:01 -04001031
1032 if (entry->fsmagic) {
1033 result = -EINVAL;
1034 break;
1035 }
1036
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +02001037 result = kstrtoul(args[0].from, 16, &entry->fsmagic);
Mimi Zohar4af46622009-02-04 09:07:00 -05001038 if (!result)
1039 entry->flags |= IMA_FSMAGIC;
1040 break;
Mimi Zoharf1b08bb2018-01-15 11:20:36 -05001041 case Opt_fsname:
1042 ima_log_string(ab, "fsname", args[0].from);
1043
1044 entry->fsname = kstrdup(args[0].from, GFP_KERNEL);
1045 if (!entry->fsname) {
1046 result = -ENOMEM;
1047 break;
1048 }
1049 result = 0;
1050 entry->flags |= IMA_FSNAME;
1051 break;
Dmitry Kasatkin85865c12012-09-03 23:23:13 +03001052 case Opt_fsuuid:
1053 ima_log_string(ab, "fsuuid", args[0].from);
1054
Mike Rapoport36447452018-01-17 20:27:11 +02001055 if (!uuid_is_null(&entry->fsuuid)) {
Dmitry Kasatkin85865c12012-09-03 23:23:13 +03001056 result = -EINVAL;
1057 break;
1058 }
1059
Christoph Hellwig787d8c52017-06-01 07:00:26 +02001060 result = uuid_parse(args[0].from, &entry->fsuuid);
Mimi Zohar446d64e2013-02-24 23:42:37 -05001061 if (!result)
1062 entry->flags |= IMA_FSUUID;
Dmitry Kasatkin85865c12012-09-03 23:23:13 +03001063 break;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001064 case Opt_uid_gt:
1065 case Opt_euid_gt:
1066 entry->uid_op = &uid_gt;
Gustavo A. R. Silva09186e52019-02-08 14:54:53 -06001067 /* fall through */
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001068 case Opt_uid_lt:
1069 case Opt_euid_lt:
1070 if ((token == Opt_uid_lt) || (token == Opt_euid_lt))
1071 entry->uid_op = &uid_lt;
Gustavo A. R. Silva09186e52019-02-08 14:54:53 -06001072 /* fall through */
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001073 case Opt_uid_eq:
1074 case Opt_euid_eq:
1075 uid_token = (token == Opt_uid_eq) ||
1076 (token == Opt_uid_gt) ||
1077 (token == Opt_uid_lt);
1078
1079 ima_log_string_op(ab, uid_token ? "uid" : "euid",
1080 args[0].from, entry->uid_op);
Eric Paris7b62e162010-04-20 10:21:01 -04001081
Eric W. Biederman8b94eea2012-05-25 18:24:12 -06001082 if (uid_valid(entry->uid)) {
Eric Paris7b62e162010-04-20 10:21:01 -04001083 result = -EINVAL;
1084 break;
1085 }
1086
Jingoo Han29707b22014-02-05 15:13:14 +09001087 result = kstrtoul(args[0].from, 10, &lnum);
Mimi Zohar4af46622009-02-04 09:07:00 -05001088 if (!result) {
Mimi Zohar139069e2014-11-05 07:48:36 -05001089 entry->uid = make_kuid(current_user_ns(),
1090 (uid_t) lnum);
1091 if (!uid_valid(entry->uid) ||
1092 (uid_t)lnum != lnum)
Mimi Zohar4af46622009-02-04 09:07:00 -05001093 result = -EINVAL;
1094 else
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001095 entry->flags |= uid_token
Mimi Zohar139069e2014-11-05 07:48:36 -05001096 ? IMA_UID : IMA_EUID;
Mimi Zohar4af46622009-02-04 09:07:00 -05001097 }
1098 break;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001099 case Opt_fowner_gt:
1100 entry->fowner_op = &uid_gt;
Gustavo A. R. Silva09186e52019-02-08 14:54:53 -06001101 /* fall through */
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001102 case Opt_fowner_lt:
1103 if (token == Opt_fowner_lt)
1104 entry->fowner_op = &uid_lt;
Gustavo A. R. Silva09186e52019-02-08 14:54:53 -06001105 /* fall through */
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001106 case Opt_fowner_eq:
1107 ima_log_string_op(ab, "fowner", args[0].from,
1108 entry->fowner_op);
Mimi Zohar07f6a792011-03-09 22:25:48 -05001109
Linus Torvalds882653222012-10-02 21:38:48 -07001110 if (uid_valid(entry->fowner)) {
Mimi Zohar07f6a792011-03-09 22:25:48 -05001111 result = -EINVAL;
1112 break;
1113 }
1114
Jingoo Han29707b22014-02-05 15:13:14 +09001115 result = kstrtoul(args[0].from, 10, &lnum);
Mimi Zohar07f6a792011-03-09 22:25:48 -05001116 if (!result) {
Linus Torvalds882653222012-10-02 21:38:48 -07001117 entry->fowner = make_kuid(current_user_ns(), (uid_t)lnum);
1118 if (!uid_valid(entry->fowner) || (((uid_t)lnum) != lnum))
Mimi Zohar07f6a792011-03-09 22:25:48 -05001119 result = -EINVAL;
1120 else
1121 entry->flags |= IMA_FOWNER;
1122 }
1123 break;
Mimi Zohar4af46622009-02-04 09:07:00 -05001124 case Opt_obj_user:
Eric Paris2f1506c2010-04-20 10:21:30 -04001125 ima_log_string(ab, "obj_user", args[0].from);
Mimi Zohar7163a992013-01-03 14:19:09 -05001126 result = ima_lsm_rule_init(entry, args,
Mimi Zohar4af46622009-02-04 09:07:00 -05001127 LSM_OBJ_USER,
1128 AUDIT_OBJ_USER);
1129 break;
1130 case Opt_obj_role:
Eric Paris2f1506c2010-04-20 10:21:30 -04001131 ima_log_string(ab, "obj_role", args[0].from);
Mimi Zohar7163a992013-01-03 14:19:09 -05001132 result = ima_lsm_rule_init(entry, args,
Mimi Zohar4af46622009-02-04 09:07:00 -05001133 LSM_OBJ_ROLE,
1134 AUDIT_OBJ_ROLE);
1135 break;
1136 case Opt_obj_type:
Eric Paris2f1506c2010-04-20 10:21:30 -04001137 ima_log_string(ab, "obj_type", args[0].from);
Mimi Zohar7163a992013-01-03 14:19:09 -05001138 result = ima_lsm_rule_init(entry, args,
Mimi Zohar4af46622009-02-04 09:07:00 -05001139 LSM_OBJ_TYPE,
1140 AUDIT_OBJ_TYPE);
1141 break;
1142 case Opt_subj_user:
Eric Paris2f1506c2010-04-20 10:21:30 -04001143 ima_log_string(ab, "subj_user", args[0].from);
Mimi Zohar7163a992013-01-03 14:19:09 -05001144 result = ima_lsm_rule_init(entry, args,
Mimi Zohar4af46622009-02-04 09:07:00 -05001145 LSM_SUBJ_USER,
1146 AUDIT_SUBJ_USER);
1147 break;
1148 case Opt_subj_role:
Eric Paris2f1506c2010-04-20 10:21:30 -04001149 ima_log_string(ab, "subj_role", args[0].from);
Mimi Zohar7163a992013-01-03 14:19:09 -05001150 result = ima_lsm_rule_init(entry, args,
Mimi Zohar4af46622009-02-04 09:07:00 -05001151 LSM_SUBJ_ROLE,
1152 AUDIT_SUBJ_ROLE);
1153 break;
1154 case Opt_subj_type:
Eric Paris2f1506c2010-04-20 10:21:30 -04001155 ima_log_string(ab, "subj_type", args[0].from);
Mimi Zohar7163a992013-01-03 14:19:09 -05001156 result = ima_lsm_rule_init(entry, args,
Mimi Zohar4af46622009-02-04 09:07:00 -05001157 LSM_SUBJ_TYPE,
1158 AUDIT_SUBJ_TYPE);
1159 break;
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +03001160 case Opt_appraise_type:
1161 if (entry->action != APPRAISE) {
1162 result = -EINVAL;
1163 break;
1164 }
1165
1166 ima_log_string(ab, "appraise_type", args[0].from);
1167 if ((strcmp(args[0].from, "imasig")) == 0)
1168 entry->flags |= IMA_DIGSIG_REQUIRED;
Thiago Jung Bauermann9044d622019-06-27 23:19:28 -03001169 else if (ima_hook_supports_modsig(entry->func) &&
1170 strcmp(args[0].from, "imasig|modsig") == 0)
1171 entry->flags |= IMA_DIGSIG_REQUIRED |
1172 IMA_MODSIG_ALLOWED;
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +03001173 else
1174 result = -EINVAL;
1175 break;
Nayna Jain273df862019-10-30 23:31:32 -04001176 case Opt_appraise_flag:
1177 ima_log_string(ab, "appraise_flag", args[0].from);
1178 if (strstr(args[0].from, "blacklist"))
1179 entry->flags |= IMA_CHECK_BLACKLIST;
1180 break;
Mimi Zoharf9b2a732014-05-12 09:28:11 -04001181 case Opt_permit_directio:
1182 entry->flags |= IMA_PERMIT_DIRECTIO;
1183 break;
Eric Richter02606432016-06-01 13:14:01 -05001184 case Opt_pcr:
1185 if (entry->action != MEASURE) {
1186 result = -EINVAL;
1187 break;
1188 }
1189 ima_log_string(ab, "pcr", args[0].from);
1190
1191 result = kstrtoint(args[0].from, 10, &entry->pcr);
1192 if (result || INVALID_PCR(entry->pcr))
1193 result = -EINVAL;
1194 else
1195 entry->flags |= IMA_PCR;
1196
1197 break;
Matthew Garrett19453ce02019-06-19 15:46:11 -07001198 case Opt_template:
1199 ima_log_string(ab, "template", args[0].from);
1200 if (entry->action != MEASURE) {
1201 result = -EINVAL;
1202 break;
1203 }
1204 template_desc = lookup_template_desc(args[0].from);
1205 if (!template_desc || entry->template) {
1206 result = -EINVAL;
1207 break;
1208 }
1209
1210 /*
1211 * template_desc_init_fields() does nothing if
1212 * the template is already initialised, so
1213 * it's safe to do this unconditionally
1214 */
1215 template_desc_init_fields(template_desc->fmt,
1216 &(template_desc->fields),
1217 &(template_desc->num_fields));
1218 entry->template = template_desc;
1219 break;
Mimi Zohar4af46622009-02-04 09:07:00 -05001220 case Opt_err:
Eric Paris2f1506c2010-04-20 10:21:30 -04001221 ima_log_string(ab, "UNKNOWN", p);
Eric Parise9d393b2010-04-20 10:21:13 -04001222 result = -EINVAL;
Mimi Zohar4af46622009-02-04 09:07:00 -05001223 break;
1224 }
1225 }
Eric Paris7b62e162010-04-20 10:21:01 -04001226 if (!result && (entry->action == UNKNOWN))
Mimi Zohar4af46622009-02-04 09:07:00 -05001227 result = -EINVAL;
Mimi Zohar6f0911a2018-04-12 00:15:22 -04001228 else if (entry->action == APPRAISE)
1229 temp_ima_appraise |= ima_appraise_flag(entry->func);
1230
Thiago Jung Bauermann3878d502019-06-27 23:19:32 -03001231 if (!result && entry->flags & IMA_MODSIG_ALLOWED) {
1232 template_desc = entry->template ? entry->template :
1233 ima_template_desc_current();
1234 check_template_modsig(template_desc);
1235 }
1236
Eric Parisb0d5de42012-02-14 17:11:07 -05001237 audit_log_format(ab, "res=%d", !result);
Mimi Zohar4af46622009-02-04 09:07:00 -05001238 audit_log_end(ab);
1239 return result;
1240}
1241
1242/**
Mimi Zohar07f6a792011-03-09 22:25:48 -05001243 * ima_parse_add_rule - add a rule to ima_policy_rules
Mimi Zohar4af46622009-02-04 09:07:00 -05001244 * @rule - ima measurement policy rule
1245 *
Petko Manolov38d859f2015-12-02 17:47:54 +02001246 * Avoid locking by allowing just one writer at a time in ima_write_policy()
Eric Paris6ccd0452010-04-20 10:20:54 -04001247 * Returns the length of the rule parsed, an error code on failure
Mimi Zohar4af46622009-02-04 09:07:00 -05001248 */
Eric Paris6ccd0452010-04-20 10:20:54 -04001249ssize_t ima_parse_add_rule(char *rule)
Mimi Zohar4af46622009-02-04 09:07:00 -05001250{
Mimi Zohar52a13282013-12-11 14:44:04 -05001251 static const char op[] = "update_policy";
Eric Paris6ccd0452010-04-20 10:20:54 -04001252 char *p;
Mimi Zohar07f6a792011-03-09 22:25:48 -05001253 struct ima_rule_entry *entry;
Eric Paris6ccd0452010-04-20 10:20:54 -04001254 ssize_t result, len;
Mimi Zohar4af46622009-02-04 09:07:00 -05001255 int audit_info = 0;
1256
Dmitry Kasatkin272a6e92014-10-03 14:40:19 +03001257 p = strsep(&rule, "\n");
1258 len = strlen(p) + 1;
Dmitry Kasatkin71787842014-10-03 14:40:20 +03001259 p += strspn(p, " \t");
Dmitry Kasatkin272a6e92014-10-03 14:40:19 +03001260
Dmitry Kasatkin71787842014-10-03 14:40:20 +03001261 if (*p == '#' || *p == '\0')
Dmitry Kasatkin272a6e92014-10-03 14:40:19 +03001262 return len;
1263
Mimi Zohar4af46622009-02-04 09:07:00 -05001264 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1265 if (!entry) {
1266 integrity_audit_msg(AUDIT_INTEGRITY_STATUS, NULL,
1267 NULL, op, "-ENOMEM", -ENOMEM, audit_info);
1268 return -ENOMEM;
1269 }
1270
1271 INIT_LIST_HEAD(&entry->list);
1272
Eric Paris6ccd0452010-04-20 10:20:54 -04001273 result = ima_parse_rule(p, entry);
Eric Paris7233e3e2010-04-20 10:21:24 -04001274 if (result) {
Mimi Zohar4af46622009-02-04 09:07:00 -05001275 kfree(entry);
Mimi Zohar523979a2009-02-11 11:12:28 -05001276 integrity_audit_msg(AUDIT_INTEGRITY_STATUS, NULL,
Richard Guy Briggs7e9001f2014-06-16 15:52:07 -04001277 NULL, op, "invalid-policy", result,
Mimi Zohar523979a2009-02-11 11:12:28 -05001278 audit_info);
Eric Paris7233e3e2010-04-20 10:21:24 -04001279 return result;
Mimi Zohar523979a2009-02-11 11:12:28 -05001280 }
Eric Paris7233e3e2010-04-20 10:21:24 -04001281
Petko Manolov38d859f2015-12-02 17:47:54 +02001282 list_add_tail(&entry->list, &ima_temp_rules);
Eric Paris7233e3e2010-04-20 10:21:24 -04001283
1284 return len;
Mimi Zohar4af46622009-02-04 09:07:00 -05001285}
1286
Petko Manolov38d859f2015-12-02 17:47:54 +02001287/**
1288 * ima_delete_rules() called to cleanup invalid in-flight policy.
1289 * We don't need locking as we operate on the temp list, which is
1290 * different from the active one. There is also only one user of
1291 * ima_delete_rules() at a time.
1292 */
James Morris64c61d82009-02-05 09:28:26 +11001293void ima_delete_rules(void)
Mimi Zohar4af46622009-02-04 09:07:00 -05001294{
Mimi Zohar07f6a792011-03-09 22:25:48 -05001295 struct ima_rule_entry *entry, *tmp;
Mimi Zohar7163a992013-01-03 14:19:09 -05001296 int i;
Mimi Zohar4af46622009-02-04 09:07:00 -05001297
Mimi Zohar6ad6afa2015-12-07 14:35:47 -05001298 temp_ima_appraise = 0;
Petko Manolov38d859f2015-12-02 17:47:54 +02001299 list_for_each_entry_safe(entry, tmp, &ima_temp_rules, list) {
Mimi Zohar7163a992013-01-03 14:19:09 -05001300 for (i = 0; i < MAX_LSM_RULES; i++)
1301 kfree(entry->lsm[i].args_p);
1302
Mimi Zohar4af46622009-02-04 09:07:00 -05001303 list_del(&entry->list);
1304 kfree(entry);
1305 }
Mimi Zohar4af46622009-02-04 09:07:00 -05001306}
Petko Manolov80eae202015-12-02 17:47:56 +02001307
Thiago Jung Bauermann39b07092019-06-27 23:19:30 -03001308#define __ima_hook_stringify(str) (#str),
1309
1310const char *const func_tokens[] = {
1311 __ima_hooks(__ima_hook_stringify)
1312};
1313
Petko Manolov80eae202015-12-02 17:47:56 +02001314#ifdef CONFIG_IMA_READ_POLICY
1315enum {
1316 mask_exec = 0, mask_write, mask_read, mask_append
1317};
1318
Thiago Jung Bauermannbb543e32017-06-07 22:49:10 -03001319static const char *const mask_tokens[] = {
Roberto Sassu8cdc23a2019-05-29 15:30:35 +02001320 "^MAY_EXEC",
1321 "^MAY_WRITE",
1322 "^MAY_READ",
1323 "^MAY_APPEND"
Petko Manolov80eae202015-12-02 17:47:56 +02001324};
1325
Petko Manolov80eae202015-12-02 17:47:56 +02001326void *ima_policy_start(struct seq_file *m, loff_t *pos)
1327{
1328 loff_t l = *pos;
1329 struct ima_rule_entry *entry;
1330
1331 rcu_read_lock();
1332 list_for_each_entry_rcu(entry, ima_rules, list) {
1333 if (!l--) {
1334 rcu_read_unlock();
1335 return entry;
1336 }
1337 }
1338 rcu_read_unlock();
1339 return NULL;
1340}
1341
1342void *ima_policy_next(struct seq_file *m, void *v, loff_t *pos)
1343{
1344 struct ima_rule_entry *entry = v;
1345
1346 rcu_read_lock();
1347 entry = list_entry_rcu(entry->list.next, struct ima_rule_entry, list);
1348 rcu_read_unlock();
1349 (*pos)++;
1350
1351 return (&entry->list == ima_rules) ? NULL : entry;
1352}
1353
1354void ima_policy_stop(struct seq_file *m, void *v)
1355{
1356}
1357
Mimi Zohar1a9430d2018-12-17 19:14:49 -05001358#define pt(token) policy_tokens[token].pattern
Petko Manolov80eae202015-12-02 17:47:56 +02001359#define mt(token) mask_tokens[token]
Petko Manolov80eae202015-12-02 17:47:56 +02001360
Mimi Zoharb5269ab2016-01-28 13:10:36 -05001361/*
1362 * policy_func_show - display the ima_hooks policy rule
1363 */
1364static void policy_func_show(struct seq_file *m, enum ima_hooks func)
1365{
Thiago Jung Bauermann26632182017-06-07 22:49:11 -03001366 if (func > 0 && func < MAX_CHECK)
1367 seq_printf(m, "func=%s ", func_tokens[func]);
1368 else
1369 seq_printf(m, "func=%d ", func);
Mimi Zoharb5269ab2016-01-28 13:10:36 -05001370}
1371
Petko Manolov80eae202015-12-02 17:47:56 +02001372int ima_policy_show(struct seq_file *m, void *v)
1373{
1374 struct ima_rule_entry *entry = v;
Andy Shevchenkob8b57272016-05-20 17:00:57 -07001375 int i;
Petko Manolov80eae202015-12-02 17:47:56 +02001376 char tbuf[64] = {0,};
Roberto Sassu8cdc23a2019-05-29 15:30:35 +02001377 int offset = 0;
Petko Manolov80eae202015-12-02 17:47:56 +02001378
1379 rcu_read_lock();
1380
1381 if (entry->action & MEASURE)
1382 seq_puts(m, pt(Opt_measure));
1383 if (entry->action & DONT_MEASURE)
1384 seq_puts(m, pt(Opt_dont_measure));
1385 if (entry->action & APPRAISE)
1386 seq_puts(m, pt(Opt_appraise));
1387 if (entry->action & DONT_APPRAISE)
1388 seq_puts(m, pt(Opt_dont_appraise));
1389 if (entry->action & AUDIT)
1390 seq_puts(m, pt(Opt_audit));
Mimi Zoharda1b0022016-09-29 10:04:52 -04001391 if (entry->action & HASH)
1392 seq_puts(m, pt(Opt_hash));
1393 if (entry->action & DONT_HASH)
1394 seq_puts(m, pt(Opt_dont_hash));
Petko Manolov80eae202015-12-02 17:47:56 +02001395
1396 seq_puts(m, " ");
1397
Mimi Zoharb5269ab2016-01-28 13:10:36 -05001398 if (entry->flags & IMA_FUNC)
1399 policy_func_show(m, entry->func);
Petko Manolov80eae202015-12-02 17:47:56 +02001400
Roberto Sassu8cdc23a2019-05-29 15:30:35 +02001401 if ((entry->flags & IMA_MASK) || (entry->flags & IMA_INMASK)) {
1402 if (entry->flags & IMA_MASK)
1403 offset = 1;
Petko Manolov80eae202015-12-02 17:47:56 +02001404 if (entry->mask & MAY_EXEC)
Roberto Sassu8cdc23a2019-05-29 15:30:35 +02001405 seq_printf(m, pt(Opt_mask), mt(mask_exec) + offset);
Petko Manolov80eae202015-12-02 17:47:56 +02001406 if (entry->mask & MAY_WRITE)
Roberto Sassu8cdc23a2019-05-29 15:30:35 +02001407 seq_printf(m, pt(Opt_mask), mt(mask_write) + offset);
Petko Manolov80eae202015-12-02 17:47:56 +02001408 if (entry->mask & MAY_READ)
Roberto Sassu8cdc23a2019-05-29 15:30:35 +02001409 seq_printf(m, pt(Opt_mask), mt(mask_read) + offset);
Petko Manolov80eae202015-12-02 17:47:56 +02001410 if (entry->mask & MAY_APPEND)
Roberto Sassu8cdc23a2019-05-29 15:30:35 +02001411 seq_printf(m, pt(Opt_mask), mt(mask_append) + offset);
Petko Manolov80eae202015-12-02 17:47:56 +02001412 seq_puts(m, " ");
1413 }
1414
1415 if (entry->flags & IMA_FSMAGIC) {
1416 snprintf(tbuf, sizeof(tbuf), "0x%lx", entry->fsmagic);
1417 seq_printf(m, pt(Opt_fsmagic), tbuf);
1418 seq_puts(m, " ");
1419 }
1420
Mimi Zoharf1b08bb2018-01-15 11:20:36 -05001421 if (entry->flags & IMA_FSNAME) {
1422 snprintf(tbuf, sizeof(tbuf), "%s", entry->fsname);
1423 seq_printf(m, pt(Opt_fsname), tbuf);
1424 seq_puts(m, " ");
1425 }
1426
Eric Richter02606432016-06-01 13:14:01 -05001427 if (entry->flags & IMA_PCR) {
1428 snprintf(tbuf, sizeof(tbuf), "%d", entry->pcr);
1429 seq_printf(m, pt(Opt_pcr), tbuf);
1430 seq_puts(m, " ");
1431 }
1432
Petko Manolov80eae202015-12-02 17:47:56 +02001433 if (entry->flags & IMA_FSUUID) {
Christoph Hellwig787d8c52017-06-01 07:00:26 +02001434 seq_printf(m, "fsuuid=%pU", &entry->fsuuid);
Petko Manolov80eae202015-12-02 17:47:56 +02001435 seq_puts(m, " ");
1436 }
1437
1438 if (entry->flags & IMA_UID) {
1439 snprintf(tbuf, sizeof(tbuf), "%d", __kuid_val(entry->uid));
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001440 if (entry->uid_op == &uid_gt)
1441 seq_printf(m, pt(Opt_uid_gt), tbuf);
1442 else if (entry->uid_op == &uid_lt)
1443 seq_printf(m, pt(Opt_uid_lt), tbuf);
1444 else
1445 seq_printf(m, pt(Opt_uid_eq), tbuf);
Petko Manolov80eae202015-12-02 17:47:56 +02001446 seq_puts(m, " ");
1447 }
1448
1449 if (entry->flags & IMA_EUID) {
1450 snprintf(tbuf, sizeof(tbuf), "%d", __kuid_val(entry->uid));
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001451 if (entry->uid_op == &uid_gt)
1452 seq_printf(m, pt(Opt_euid_gt), tbuf);
1453 else if (entry->uid_op == &uid_lt)
1454 seq_printf(m, pt(Opt_euid_lt), tbuf);
1455 else
1456 seq_printf(m, pt(Opt_euid_eq), tbuf);
Petko Manolov80eae202015-12-02 17:47:56 +02001457 seq_puts(m, " ");
1458 }
1459
1460 if (entry->flags & IMA_FOWNER) {
1461 snprintf(tbuf, sizeof(tbuf), "%d", __kuid_val(entry->fowner));
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001462 if (entry->fowner_op == &uid_gt)
1463 seq_printf(m, pt(Opt_fowner_gt), tbuf);
1464 else if (entry->fowner_op == &uid_lt)
1465 seq_printf(m, pt(Opt_fowner_lt), tbuf);
1466 else
1467 seq_printf(m, pt(Opt_fowner_eq), tbuf);
Petko Manolov80eae202015-12-02 17:47:56 +02001468 seq_puts(m, " ");
1469 }
1470
1471 for (i = 0; i < MAX_LSM_RULES; i++) {
1472 if (entry->lsm[i].rule) {
1473 switch (i) {
1474 case LSM_OBJ_USER:
1475 seq_printf(m, pt(Opt_obj_user),
1476 (char *)entry->lsm[i].args_p);
1477 break;
1478 case LSM_OBJ_ROLE:
1479 seq_printf(m, pt(Opt_obj_role),
1480 (char *)entry->lsm[i].args_p);
1481 break;
1482 case LSM_OBJ_TYPE:
1483 seq_printf(m, pt(Opt_obj_type),
1484 (char *)entry->lsm[i].args_p);
1485 break;
1486 case LSM_SUBJ_USER:
1487 seq_printf(m, pt(Opt_subj_user),
1488 (char *)entry->lsm[i].args_p);
1489 break;
1490 case LSM_SUBJ_ROLE:
1491 seq_printf(m, pt(Opt_subj_role),
1492 (char *)entry->lsm[i].args_p);
1493 break;
1494 case LSM_SUBJ_TYPE:
1495 seq_printf(m, pt(Opt_subj_type),
1496 (char *)entry->lsm[i].args_p);
1497 break;
1498 }
1499 }
1500 }
Matthew Garrett19453ce02019-06-19 15:46:11 -07001501 if (entry->template)
1502 seq_printf(m, "template=%s ", entry->template->name);
Thiago Jung Bauermann9044d622019-06-27 23:19:28 -03001503 if (entry->flags & IMA_DIGSIG_REQUIRED) {
1504 if (entry->flags & IMA_MODSIG_ALLOWED)
1505 seq_puts(m, "appraise_type=imasig|modsig ");
1506 else
1507 seq_puts(m, "appraise_type=imasig ");
1508 }
Nayna Jain273df862019-10-30 23:31:32 -04001509 if (entry->flags & IMA_CHECK_BLACKLIST)
1510 seq_puts(m, "appraise_flag=check_blacklist ");
Petko Manolov80eae202015-12-02 17:47:56 +02001511 if (entry->flags & IMA_PERMIT_DIRECTIO)
1512 seq_puts(m, "permit_directio ");
1513 rcu_read_unlock();
1514 seq_puts(m, "\n");
1515 return 0;
1516}
1517#endif /* CONFIG_IMA_READ_POLICY */
Matthew Garrett29d3c1c2019-08-19 17:18:01 -07001518
1519#if defined(CONFIG_IMA_APPRAISE) && defined(CONFIG_INTEGRITY_TRUSTED_KEYRING)
1520/*
1521 * ima_appraise_signature: whether IMA will appraise a given function using
1522 * an IMA digital signature. This is restricted to cases where the kernel
1523 * has a set of built-in trusted keys in order to avoid an attacker simply
1524 * loading additional keys.
1525 */
1526bool ima_appraise_signature(enum kernel_read_file_id id)
1527{
1528 struct ima_rule_entry *entry;
1529 bool found = false;
1530 enum ima_hooks func;
1531
1532 if (id >= READING_MAX_ID)
1533 return false;
1534
1535 func = read_idmap[id] ?: FILE_CHECK;
1536
1537 rcu_read_lock();
1538 list_for_each_entry_rcu(entry, ima_rules, list) {
1539 if (entry->action != APPRAISE)
1540 continue;
1541
1542 /*
1543 * A generic entry will match, but otherwise require that it
1544 * match the func we're looking for
1545 */
1546 if (entry->func && entry->func != func)
1547 continue;
1548
1549 /*
1550 * We require this to be a digital signature, not a raw IMA
1551 * hash.
1552 */
1553 if (entry->flags & IMA_DIGSIG_REQUIRED)
1554 found = true;
1555
1556 /*
1557 * We've found a rule that matches, so break now even if it
1558 * didn't require a digital signature - a later rule that does
1559 * won't override it, so would be a false positive.
1560 */
1561 break;
1562 }
1563
1564 rcu_read_unlock();
1565 return found;
1566}
1567#endif /* CONFIG_IMA_APPRAISE && CONFIG_INTEGRITY_TRUSTED_KEYRING */