blob: 4f8cb155e4fda464b5ab811b519f6050eac4ca43 [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
Paul Gortmaker876979c2018-12-09 15:36:29 -050010#include <linux/init.h>
Mimi Zohar3323eec2009-02-04 09:06:58 -050011#include <linux/list.h>
Scott Brandenb89999d02020-10-02 10:38:15 -070012#include <linux/kernel_read_file.h>
Mimi Zoharcf222212016-01-14 17:57:47 -050013#include <linux/fs.h>
Mimi Zohar3323eec2009-02-04 09:06:58 -050014#include <linux/security.h>
15#include <linux/magic.h>
Mimi Zohar4af46622009-02-04 09:07:00 -050016#include <linux/parser.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Petko Manolov38d859f2015-12-02 17:47:54 +020018#include <linux/rculist.h>
Dmitry Kasatkin85865c12012-09-03 23:23:13 +030019#include <linux/genhd.h>
Petko Manolov80eae202015-12-02 17:47:56 +020020#include <linux/seq_file.h>
Nayna Jain61917062018-10-09 23:00:36 +053021#include <linux/ima.h>
Mimi Zohar3323eec2009-02-04 09:06:58 -050022
23#include "ima.h"
24
25/* flags definitions */
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020026#define IMA_FUNC 0x0001
27#define IMA_MASK 0x0002
Mimi Zohar3323eec2009-02-04 09:06:58 -050028#define IMA_FSMAGIC 0x0004
29#define IMA_UID 0x0008
Mimi Zohar07f6a792011-03-09 22:25:48 -050030#define IMA_FOWNER 0x0010
Dmitry Kasatkin85865c12012-09-03 23:23:13 +030031#define IMA_FSUUID 0x0020
Mimi Zohar4351c292014-11-05 07:53:55 -050032#define IMA_INMASK 0x0040
Mimi Zohar139069e2014-11-05 07:48:36 -050033#define IMA_EUID 0x0080
Eric Richter02606432016-06-01 13:14:01 -050034#define IMA_PCR 0x0100
Mimi Zoharf1b08bb2018-01-15 11:20:36 -050035#define IMA_FSNAME 0x0200
Lakshmi Ramasubramanian2b60c0e2019-12-11 08:47:07 -080036#define IMA_KEYRINGS 0x0400
Tushar Sugandhi47d76a42021-01-07 20:07:05 -080037#define IMA_LABEL 0x0800
Mimi Zohar3323eec2009-02-04 09:06:58 -050038
Dmitry Kasatkin45e24722012-09-12 20:51:32 +030039#define UNKNOWN 0
40#define MEASURE 0x0001 /* same as IMA_MEASURE */
41#define DONT_MEASURE 0x0002
42#define APPRAISE 0x0004 /* same as IMA_APPRAISE */
43#define DONT_APPRAISE 0x0008
Peter Moodye7c568e2012-06-14 10:04:36 -070044#define AUDIT 0x0040
Mimi Zoharda1b0022016-09-29 10:04:52 -040045#define HASH 0x0100
46#define DONT_HASH 0x0200
Mimi Zohar4af46622009-02-04 09:07:00 -050047
Eric Richter02606432016-06-01 13:14:01 -050048#define INVALID_PCR(a) (((a) < 0) || \
Pankaj Bharadiyac5936422019-12-09 10:31:43 -080049 (a) >= (sizeof_field(struct integrity_iint_cache, measured_pcrs) * 8))
Eric Richter02606432016-06-01 13:14:01 -050050
Roberto Sassua7560242014-09-12 19:35:54 +020051int ima_policy_flag;
Mimi Zohar6ad6afa2015-12-07 14:35:47 -050052static int temp_ima_appraise;
Mimi Zoharef968372018-07-13 14:06:01 -040053static int build_ima_appraise __ro_after_init;
Roberto Sassua7560242014-09-12 19:35:54 +020054
Mimi Zohar4af46622009-02-04 09:07:00 -050055#define MAX_LSM_RULES 6
56enum lsm_rule_types { LSM_OBJ_USER, LSM_OBJ_ROLE, LSM_OBJ_TYPE,
57 LSM_SUBJ_USER, LSM_SUBJ_ROLE, LSM_SUBJ_TYPE
58};
Mimi Zohar3323eec2009-02-04 09:06:58 -050059
Mimi Zohar24fd03c2015-06-11 20:48:33 -040060enum policy_types { ORIGINAL_TCB = 1, DEFAULT_TCB };
61
Nayna Jainc52657d2018-10-09 23:00:35 +053062enum policy_rule_list { IMA_DEFAULT_POLICY = 1, IMA_CUSTOM_POLICY };
63
Tyler Hicks176377d2020-08-11 14:26:20 -050064struct ima_rule_opt_list {
65 size_t count;
66 char *items[];
67};
68
Mimi Zohar07f6a792011-03-09 22:25:48 -050069struct ima_rule_entry {
Mimi Zohar3323eec2009-02-04 09:06:58 -050070 struct list_head list;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -050071 int action;
Mimi Zohar3323eec2009-02-04 09:06:58 -050072 unsigned int flags;
73 enum ima_hooks func;
74 int mask;
75 unsigned long fsmagic;
Christoph Hellwig787d8c52017-06-01 07:00:26 +020076 uuid_t fsuuid;
Eric W. Biederman8b94eea2012-05-25 18:24:12 -060077 kuid_t uid;
Linus Torvalds882653222012-10-02 21:38:48 -070078 kuid_t fowner;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +030079 bool (*uid_op)(kuid_t, kuid_t); /* Handlers for operators */
80 bool (*fowner_op)(kuid_t, kuid_t); /* uid_eq(), uid_gt(), uid_lt() */
Eric Richter02606432016-06-01 13:14:01 -050081 int pcr;
Mimi Zohar4af46622009-02-04 09:07:00 -050082 struct {
83 void *rule; /* LSM file metadata specific */
Tyler Hicksaa0c0222020-07-09 01:19:08 -050084 char *args_p; /* audit value */
Mimi Zohar4af46622009-02-04 09:07:00 -050085 int type; /* audit type */
86 } lsm[MAX_LSM_RULES];
Mimi Zoharf1b08bb2018-01-15 11:20:36 -050087 char *fsname;
Tyler Hicks176377d2020-08-11 14:26:20 -050088 struct ima_rule_opt_list *keyrings; /* Measure keys added to these keyrings */
Tushar Sugandhi47d76a42021-01-07 20:07:05 -080089 struct ima_rule_opt_list *label; /* Measure data grouped under this label */
Matthew Garrett19453ce02019-06-19 15:46:11 -070090 struct ima_template_desc *template;
Mimi Zohar3323eec2009-02-04 09:06:58 -050091};
92
Eric Paris5789ba32009-05-21 15:47:06 -040093/*
94 * Without LSM specific knowledge, the default policy can only be
Mimi Zohar07f6a792011-03-09 22:25:48 -050095 * written in terms of .action, .func, .mask, .fsmagic, .uid, and .fowner
Mimi Zohar4af46622009-02-04 09:07:00 -050096 */
Eric Paris5789ba32009-05-21 15:47:06 -040097
98/*
99 * The minimum rule set to allow for full TCB coverage. Measures all files
100 * opened or mmap for exec and everything read by root. Dangerous because
101 * normal users can easily run the machine out of memory simply building
102 * and running executables.
103 */
James Morrisbad44172017-02-13 16:34:35 +1100104static struct ima_rule_entry dont_measure_rules[] __ro_after_init = {
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200105 {.action = DONT_MEASURE, .fsmagic = PROC_SUPER_MAGIC, .flags = IMA_FSMAGIC},
106 {.action = DONT_MEASURE, .fsmagic = SYSFS_MAGIC, .flags = IMA_FSMAGIC},
107 {.action = DONT_MEASURE, .fsmagic = DEBUGFS_MAGIC, .flags = IMA_FSMAGIC},
108 {.action = DONT_MEASURE, .fsmagic = TMPFS_MAGIC, .flags = IMA_FSMAGIC},
109 {.action = DONT_MEASURE, .fsmagic = DEVPTS_SUPER_MAGIC, .flags = IMA_FSMAGIC},
110 {.action = DONT_MEASURE, .fsmagic = BINFMTFS_MAGIC, .flags = IMA_FSMAGIC},
111 {.action = DONT_MEASURE, .fsmagic = SECURITYFS_MAGIC, .flags = IMA_FSMAGIC},
112 {.action = DONT_MEASURE, .fsmagic = SELINUX_MAGIC, .flags = IMA_FSMAGIC},
Martin Townsend1c070b12018-03-22 13:46:01 +0000113 {.action = DONT_MEASURE, .fsmagic = SMACK_MAGIC, .flags = IMA_FSMAGIC},
Roberto Sassu6438de92015-04-11 17:13:06 +0200114 {.action = DONT_MEASURE, .fsmagic = CGROUP_SUPER_MAGIC,
115 .flags = IMA_FSMAGIC},
Laura Abbott82e3bb42017-05-09 11:25:27 -0700116 {.action = DONT_MEASURE, .fsmagic = CGROUP2_SUPER_MAGIC,
117 .flags = IMA_FSMAGIC},
Mimi Zohar060190f2018-11-14 17:24:13 -0500118 {.action = DONT_MEASURE, .fsmagic = NSFS_MAGIC, .flags = IMA_FSMAGIC},
119 {.action = DONT_MEASURE, .fsmagic = EFIVARFS_MAGIC, .flags = IMA_FSMAGIC}
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400120};
121
James Morrisbad44172017-02-13 16:34:35 +1100122static struct ima_rule_entry original_measurement_rules[] __ro_after_init = {
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200123 {.action = MEASURE, .func = MMAP_CHECK, .mask = MAY_EXEC,
Mimi Zohar3323eec2009-02-04 09:06:58 -0500124 .flags = IMA_FUNC | IMA_MASK},
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200125 {.action = MEASURE, .func = BPRM_CHECK, .mask = MAY_EXEC,
Mimi Zohar3323eec2009-02-04 09:06:58 -0500126 .flags = IMA_FUNC | IMA_MASK},
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400127 {.action = MEASURE, .func = FILE_CHECK, .mask = MAY_READ,
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300128 .uid = GLOBAL_ROOT_UID, .uid_op = &uid_eq,
129 .flags = IMA_FUNC | IMA_MASK | IMA_UID},
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400130 {.action = MEASURE, .func = MODULE_CHECK, .flags = IMA_FUNC},
131 {.action = MEASURE, .func = FIRMWARE_CHECK, .flags = IMA_FUNC},
132};
133
James Morrisbad44172017-02-13 16:34:35 +1100134static struct ima_rule_entry default_measurement_rules[] __ro_after_init = {
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400135 {.action = MEASURE, .func = MMAP_CHECK, .mask = MAY_EXEC,
136 .flags = IMA_FUNC | IMA_MASK},
137 {.action = MEASURE, .func = BPRM_CHECK, .mask = MAY_EXEC,
138 .flags = IMA_FUNC | IMA_MASK},
139 {.action = MEASURE, .func = FILE_CHECK, .mask = MAY_READ,
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300140 .uid = GLOBAL_ROOT_UID, .uid_op = &uid_eq,
141 .flags = IMA_FUNC | IMA_INMASK | IMA_EUID},
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400142 {.action = MEASURE, .func = FILE_CHECK, .mask = MAY_READ,
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300143 .uid = GLOBAL_ROOT_UID, .uid_op = &uid_eq,
144 .flags = IMA_FUNC | IMA_INMASK | IMA_UID},
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200145 {.action = MEASURE, .func = MODULE_CHECK, .flags = IMA_FUNC},
Mimi Zohar5a9196d2014-07-22 10:39:48 -0400146 {.action = MEASURE, .func = FIRMWARE_CHECK, .flags = IMA_FUNC},
Mimi Zohar19f8a842016-01-15 10:17:12 -0500147 {.action = MEASURE, .func = POLICY_CHECK, .flags = IMA_FUNC},
Mimi Zohar3323eec2009-02-04 09:06:58 -0500148};
149
James Morrisbad44172017-02-13 16:34:35 +1100150static struct ima_rule_entry default_appraise_rules[] __ro_after_init = {
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200151 {.action = DONT_APPRAISE, .fsmagic = PROC_SUPER_MAGIC, .flags = IMA_FSMAGIC},
152 {.action = DONT_APPRAISE, .fsmagic = SYSFS_MAGIC, .flags = IMA_FSMAGIC},
153 {.action = DONT_APPRAISE, .fsmagic = DEBUGFS_MAGIC, .flags = IMA_FSMAGIC},
154 {.action = DONT_APPRAISE, .fsmagic = TMPFS_MAGIC, .flags = IMA_FSMAGIC},
155 {.action = DONT_APPRAISE, .fsmagic = RAMFS_MAGIC, .flags = IMA_FSMAGIC},
156 {.action = DONT_APPRAISE, .fsmagic = DEVPTS_SUPER_MAGIC, .flags = IMA_FSMAGIC},
157 {.action = DONT_APPRAISE, .fsmagic = BINFMTFS_MAGIC, .flags = IMA_FSMAGIC},
158 {.action = DONT_APPRAISE, .fsmagic = SECURITYFS_MAGIC, .flags = IMA_FSMAGIC},
159 {.action = DONT_APPRAISE, .fsmagic = SELINUX_MAGIC, .flags = IMA_FSMAGIC},
Martin Townsend1c070b12018-03-22 13:46:01 +0000160 {.action = DONT_APPRAISE, .fsmagic = SMACK_MAGIC, .flags = IMA_FSMAGIC},
Mimi Zoharcd025f72015-04-21 16:54:24 -0400161 {.action = DONT_APPRAISE, .fsmagic = NSFS_MAGIC, .flags = IMA_FSMAGIC},
Mimi Zohar060190f2018-11-14 17:24:13 -0500162 {.action = DONT_APPRAISE, .fsmagic = EFIVARFS_MAGIC, .flags = IMA_FSMAGIC},
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200163 {.action = DONT_APPRAISE, .fsmagic = CGROUP_SUPER_MAGIC, .flags = IMA_FSMAGIC},
Laura Abbott82e3bb42017-05-09 11:25:27 -0700164 {.action = DONT_APPRAISE, .fsmagic = CGROUP2_SUPER_MAGIC, .flags = IMA_FSMAGIC},
Mimi Zohar95ee08f2015-12-07 15:08:01 -0500165#ifdef CONFIG_IMA_WRITE_POLICY
166 {.action = APPRAISE, .func = POLICY_CHECK,
167 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
168#endif
Dmitry Kasatkinc57782c2014-11-05 17:01:16 +0200169#ifndef CONFIG_IMA_APPRAISE_SIGNED_INIT
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300170 {.action = APPRAISE, .fowner = GLOBAL_ROOT_UID, .fowner_op = &uid_eq,
171 .flags = IMA_FOWNER},
Dmitry Kasatkinc57782c2014-11-05 17:01:16 +0200172#else
173 /* force signature */
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300174 {.action = APPRAISE, .fowner = GLOBAL_ROOT_UID, .fowner_op = &uid_eq,
Dmitry Kasatkinc57782c2014-11-05 17:01:16 +0200175 .flags = IMA_FOWNER | IMA_DIGSIG_REQUIRED},
176#endif
Mimi Zohar07f6a792011-03-09 22:25:48 -0500177};
Mimi Zohar3323eec2009-02-04 09:06:58 -0500178
Mimi Zoharef968372018-07-13 14:06:01 -0400179static struct ima_rule_entry build_appraise_rules[] __ro_after_init = {
180#ifdef CONFIG_IMA_APPRAISE_REQUIRE_MODULE_SIGS
181 {.action = APPRAISE, .func = MODULE_CHECK,
182 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
183#endif
184#ifdef CONFIG_IMA_APPRAISE_REQUIRE_FIRMWARE_SIGS
185 {.action = APPRAISE, .func = FIRMWARE_CHECK,
186 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
187#endif
188#ifdef CONFIG_IMA_APPRAISE_REQUIRE_KEXEC_SIGS
189 {.action = APPRAISE, .func = KEXEC_KERNEL_CHECK,
190 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
191#endif
192#ifdef CONFIG_IMA_APPRAISE_REQUIRE_POLICY_SIGS
193 {.action = APPRAISE, .func = POLICY_CHECK,
194 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
195#endif
196};
197
Mimi Zohar503ceae2017-04-21 18:58:27 -0400198static struct ima_rule_entry secure_boot_rules[] __ro_after_init = {
199 {.action = APPRAISE, .func = MODULE_CHECK,
200 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
201 {.action = APPRAISE, .func = FIRMWARE_CHECK,
202 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
203 {.action = APPRAISE, .func = KEXEC_KERNEL_CHECK,
204 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
205 {.action = APPRAISE, .func = POLICY_CHECK,
206 .flags = IMA_FUNC | IMA_DIGSIG_REQUIRED},
207};
208
Lakshmi Ramasubramanian03cee162021-01-07 20:07:07 -0800209static struct ima_rule_entry critical_data_rules[] __ro_after_init = {
210 {.action = MEASURE, .func = CRITICAL_DATA, .flags = IMA_FUNC},
211};
212
Nayna Jain61917062018-10-09 23:00:36 +0530213/* An array of architecture specific rules */
YueHaibing68f25292019-06-11 21:40:32 +0800214static struct ima_rule_entry *arch_policy_entry __ro_after_init;
Nayna Jain61917062018-10-09 23:00:36 +0530215
Mimi Zohar07f6a792011-03-09 22:25:48 -0500216static LIST_HEAD(ima_default_rules);
217static LIST_HEAD(ima_policy_rules);
Petko Manolov38d859f2015-12-02 17:47:54 +0200218static LIST_HEAD(ima_temp_rules);
Roberto Sassu067a4362020-06-03 17:08:20 +0200219static struct list_head *ima_rules = &ima_default_rules;
Mimi Zohar07f6a792011-03-09 22:25:48 -0500220
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400221static int ima_policy __initdata;
Petko Manolov38d859f2015-12-02 17:47:54 +0200222
Mimi Zohar07f6a792011-03-09 22:25:48 -0500223static int __init default_measure_policy_setup(char *str)
Eric Paris5789ba32009-05-21 15:47:06 -0400224{
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400225 if (ima_policy)
226 return 1;
227
228 ima_policy = ORIGINAL_TCB;
Eric Paris5789ba32009-05-21 15:47:06 -0400229 return 1;
230}
Mimi Zohar07f6a792011-03-09 22:25:48 -0500231__setup("ima_tcb", default_measure_policy_setup);
232
Mimi Zohar33ce9542017-04-24 12:04:09 -0400233static bool ima_use_appraise_tcb __initdata;
Mimi Zohar503ceae2017-04-21 18:58:27 -0400234static bool ima_use_secure_boot __initdata;
Lakshmi Ramasubramanian03cee162021-01-07 20:07:07 -0800235static bool ima_use_critical_data __initdata;
Mimi Zohar9e670282018-02-21 11:36:32 -0500236static bool ima_fail_unverifiable_sigs __ro_after_init;
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400237static int __init policy_setup(char *str)
238{
Mimi Zohar33ce9542017-04-24 12:04:09 -0400239 char *p;
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400240
Mimi Zohar33ce9542017-04-24 12:04:09 -0400241 while ((p = strsep(&str, " |\n")) != NULL) {
242 if (*p == ' ')
243 continue;
244 if ((strcmp(p, "tcb") == 0) && !ima_policy)
245 ima_policy = DEFAULT_TCB;
246 else if (strcmp(p, "appraise_tcb") == 0)
Thomas Meyer39adb922017-10-07 16:02:21 +0200247 ima_use_appraise_tcb = true;
Mimi Zohar503ceae2017-04-21 18:58:27 -0400248 else if (strcmp(p, "secure_boot") == 0)
Thomas Meyer39adb922017-10-07 16:02:21 +0200249 ima_use_secure_boot = true;
Lakshmi Ramasubramanian03cee162021-01-07 20:07:07 -0800250 else if (strcmp(p, "critical_data") == 0)
251 ima_use_critical_data = true;
Mimi Zohar9e670282018-02-21 11:36:32 -0500252 else if (strcmp(p, "fail_securely") == 0)
253 ima_fail_unverifiable_sigs = true;
Bruno Meneguele7fe2bb72020-09-04 16:40:58 -0300254 else
255 pr_err("policy \"%s\" not found", p);
Mimi Zohar33ce9542017-04-24 12:04:09 -0400256 }
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400257
258 return 1;
259}
260__setup("ima_policy=", policy_setup);
261
Mimi Zohar07f6a792011-03-09 22:25:48 -0500262static int __init default_appraise_policy_setup(char *str)
263{
Thomas Meyer39adb922017-10-07 16:02:21 +0200264 ima_use_appraise_tcb = true;
Mimi Zohar07f6a792011-03-09 22:25:48 -0500265 return 1;
266}
267__setup("ima_appraise_tcb", default_appraise_policy_setup);
Eric Paris5789ba32009-05-21 15:47:06 -0400268
Tyler Hicks176377d2020-08-11 14:26:20 -0500269static struct ima_rule_opt_list *ima_alloc_rule_opt_list(const substring_t *src)
270{
271 struct ima_rule_opt_list *opt_list;
272 size_t count = 0;
273 char *src_copy;
274 char *cur, *next;
275 size_t i;
276
277 src_copy = match_strdup(src);
278 if (!src_copy)
279 return ERR_PTR(-ENOMEM);
280
281 next = src_copy;
282 while ((cur = strsep(&next, "|"))) {
283 /* Don't accept an empty list item */
284 if (!(*cur)) {
285 kfree(src_copy);
286 return ERR_PTR(-EINVAL);
287 }
288 count++;
289 }
290
291 /* Don't accept an empty list */
292 if (!count) {
293 kfree(src_copy);
294 return ERR_PTR(-EINVAL);
295 }
296
297 opt_list = kzalloc(struct_size(opt_list, items, count), GFP_KERNEL);
298 if (!opt_list) {
299 kfree(src_copy);
300 return ERR_PTR(-ENOMEM);
301 }
302
303 /*
304 * strsep() has already replaced all instances of '|' with '\0',
305 * leaving a byte sequence of NUL-terminated strings. Reference each
306 * string with the array of items.
307 *
308 * IMPORTANT: Ownership of the allocated buffer is transferred from
309 * src_copy to the first element in the items array. To free the
310 * buffer, kfree() must only be called on the first element of the
311 * array.
312 */
313 for (i = 0, cur = src_copy; i < count; i++) {
314 opt_list->items[i] = cur;
315 cur = strchr(cur, '\0') + 1;
316 }
317 opt_list->count = count;
318
319 return opt_list;
320}
321
322static void ima_free_rule_opt_list(struct ima_rule_opt_list *opt_list)
323{
324 if (!opt_list)
325 return;
326
327 if (opt_list->count) {
328 kfree(opt_list->items[0]);
329 opt_list->count = 0;
330 }
331
332 kfree(opt_list);
333}
334
Janne Karhunenb1694242019-06-14 15:20:15 +0300335static void ima_lsm_free_rule(struct ima_rule_entry *entry)
336{
337 int i;
338
339 for (i = 0; i < MAX_LSM_RULES; i++) {
Tyler Hicksb8867ee2020-07-10 15:37:50 -0500340 ima_filter_rule_free(entry->lsm[i].rule);
Janne Karhunenb1694242019-06-14 15:20:15 +0300341 kfree(entry->lsm[i].args_p);
342 }
Tyler Hicks465aee72020-07-09 01:19:01 -0500343}
344
345static void ima_free_rule(struct ima_rule_entry *entry)
346{
347 if (!entry)
348 return;
349
350 /*
351 * entry->template->fields may be allocated in ima_parse_rule() but that
352 * reference is owned by the corresponding ima_template_desc element in
353 * the defined_templates list and cannot be freed here
354 */
355 kfree(entry->fsname);
Tyler Hicks176377d2020-08-11 14:26:20 -0500356 ima_free_rule_opt_list(entry->keyrings);
Tyler Hicks465aee72020-07-09 01:19:01 -0500357 ima_lsm_free_rule(entry);
Janne Karhunenb1694242019-06-14 15:20:15 +0300358 kfree(entry);
359}
360
361static struct ima_rule_entry *ima_lsm_copy_rule(struct ima_rule_entry *entry)
362{
363 struct ima_rule_entry *nentry;
Janne Karhunen483ec262020-01-15 17:42:30 +0200364 int i;
Janne Karhunenb1694242019-06-14 15:20:15 +0300365
Janne Karhunenb1694242019-06-14 15:20:15 +0300366 /*
367 * Immutable elements are copied over as pointers and data; only
368 * lsm rules can change
369 */
Alex Dewarf60c8262020-09-09 20:09:06 +0100370 nentry = kmemdup(entry, sizeof(*nentry), GFP_KERNEL);
371 if (!nentry)
372 return NULL;
373
Pankaj Bharadiyac5936422019-12-09 10:31:43 -0800374 memset(nentry->lsm, 0, sizeof_field(struct ima_rule_entry, lsm));
Janne Karhunenb1694242019-06-14 15:20:15 +0300375
376 for (i = 0; i < MAX_LSM_RULES; i++) {
Janne Karhunen483ec262020-01-15 17:42:30 +0200377 if (!entry->lsm[i].args_p)
Janne Karhunenb1694242019-06-14 15:20:15 +0300378 continue;
379
380 nentry->lsm[i].type = entry->lsm[i].type;
Tyler Hicks39e59932020-07-09 01:19:07 -0500381 nentry->lsm[i].args_p = entry->lsm[i].args_p;
382 /*
383 * Remove the reference from entry so that the associated
384 * memory will not be freed during a later call to
385 * ima_lsm_free_rule(entry).
386 */
387 entry->lsm[i].args_p = NULL;
Janne Karhunenb1694242019-06-14 15:20:15 +0300388
Tyler Hicksb8867ee2020-07-10 15:37:50 -0500389 ima_filter_rule_init(nentry->lsm[i].type, Audit_equal,
390 nentry->lsm[i].args_p,
391 &nentry->lsm[i].rule);
Janne Karhunen483ec262020-01-15 17:42:30 +0200392 if (!nentry->lsm[i].rule)
393 pr_warn("rule for LSM \'%s\' is undefined\n",
Tyler Hicksaa0c0222020-07-09 01:19:08 -0500394 nentry->lsm[i].args_p);
Janne Karhunenb1694242019-06-14 15:20:15 +0300395 }
396 return nentry;
Janne Karhunenb1694242019-06-14 15:20:15 +0300397}
398
399static int ima_lsm_update_rule(struct ima_rule_entry *entry)
400{
401 struct ima_rule_entry *nentry;
402
403 nentry = ima_lsm_copy_rule(entry);
404 if (!nentry)
405 return -ENOMEM;
406
407 list_replace_rcu(&entry->list, &nentry->list);
408 synchronize_rcu();
Tyler Hicks465aee72020-07-09 01:19:01 -0500409 /*
410 * ima_lsm_copy_rule() shallow copied all references, except for the
411 * LSM references, from entry to nentry so we only want to free the LSM
412 * references and the entry itself. All other memory refrences will now
413 * be owned by nentry.
414 */
Janne Karhunenb1694242019-06-14 15:20:15 +0300415 ima_lsm_free_rule(entry);
Tyler Hicks465aee72020-07-09 01:19:01 -0500416 kfree(entry);
Janne Karhunenb1694242019-06-14 15:20:15 +0300417
418 return 0;
419}
420
Tyler Hicksdb2045f2020-07-09 01:19:04 -0500421static bool ima_rule_contains_lsm_cond(struct ima_rule_entry *entry)
422{
423 int i;
424
425 for (i = 0; i < MAX_LSM_RULES; i++)
426 if (entry->lsm[i].args_p)
427 return true;
428
429 return false;
430}
431
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200432/*
Petko Manolov38d859f2015-12-02 17:47:54 +0200433 * The LSM policy can be reloaded, leaving the IMA LSM based rules referring
434 * to the old, stale LSM policy. Update the IMA LSM based rules to reflect
Janne Karhunenb1694242019-06-14 15:20:15 +0300435 * the reloaded LSM policy.
Mimi Zohar7163a992013-01-03 14:19:09 -0500436 */
437static void ima_lsm_update_rules(void)
438{
Janne Karhunenb1694242019-06-14 15:20:15 +0300439 struct ima_rule_entry *entry, *e;
Tyler Hicks592b24c2020-07-09 01:19:10 -0500440 int result;
Mimi Zohar7163a992013-01-03 14:19:09 -0500441
Janne Karhunenb1694242019-06-14 15:20:15 +0300442 list_for_each_entry_safe(entry, e, &ima_policy_rules, list) {
Tyler Hicks592b24c2020-07-09 01:19:10 -0500443 if (!ima_rule_contains_lsm_cond(entry))
Janne Karhunenb1694242019-06-14 15:20:15 +0300444 continue;
445
446 result = ima_lsm_update_rule(entry);
447 if (result) {
Janne Karhunen483ec262020-01-15 17:42:30 +0200448 pr_err("lsm rule update error %d\n", result);
Janne Karhunenb1694242019-06-14 15:20:15 +0300449 return;
Mimi Zohar7163a992013-01-03 14:19:09 -0500450 }
451 }
Mimi Zohar7163a992013-01-03 14:19:09 -0500452}
453
Janne Karhunenb1694242019-06-14 15:20:15 +0300454int ima_lsm_policy_change(struct notifier_block *nb, unsigned long event,
455 void *lsm_data)
456{
457 if (event != LSM_POLICY_CHANGE)
458 return NOTIFY_DONE;
459
460 ima_lsm_update_rules();
461 return NOTIFY_OK;
462}
463
Mimi Zohar3323eec2009-02-04 09:06:58 -0500464/**
Tushar Sugandhi2b4a2472021-01-07 20:07:01 -0800465 * ima_match_rule_data - determine whether func_data matches the policy rule
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800466 * @rule: a pointer to a rule
Tushar Sugandhi2b4a2472021-01-07 20:07:01 -0800467 * @func_data: data to match against the measure rule data
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800468 * @cred: a pointer to a credentials structure for user validation
469 *
Tushar Sugandhi2b4a2472021-01-07 20:07:01 -0800470 * Returns true if func_data matches one in the rule, false otherwise.
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800471 */
Tushar Sugandhi2b4a2472021-01-07 20:07:01 -0800472static bool ima_match_rule_data(struct ima_rule_entry *rule,
473 const char *func_data,
474 const struct cred *cred)
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800475{
Tushar Sugandhi2b4a2472021-01-07 20:07:01 -0800476 const struct ima_rule_opt_list *opt_list = NULL;
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800477 bool matched = false;
Tyler Hicks176377d2020-08-11 14:26:20 -0500478 size_t i;
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800479
480 if ((rule->flags & IMA_UID) && !rule->uid_op(cred->uid, rule->uid))
481 return false;
482
Tushar Sugandhi2b4a2472021-01-07 20:07:01 -0800483 switch (rule->func) {
484 case KEY_CHECK:
485 if (!rule->keyrings)
486 return true;
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800487
Tushar Sugandhi2b4a2472021-01-07 20:07:01 -0800488 opt_list = rule->keyrings;
489 break;
Tushar Sugandhic4e43aa2021-01-07 20:07:04 -0800490 case CRITICAL_DATA:
Tushar Sugandhi47d76a42021-01-07 20:07:05 -0800491 if (!rule->label)
492 return true;
493
494 opt_list = rule->label;
495 break;
Tushar Sugandhi2b4a2472021-01-07 20:07:01 -0800496 default:
497 return false;
498 }
499
500 if (!func_data)
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800501 return false;
502
Tushar Sugandhi2b4a2472021-01-07 20:07:01 -0800503 for (i = 0; i < opt_list->count; i++) {
504 if (!strcmp(opt_list->items[i], func_data)) {
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800505 matched = true;
506 break;
507 }
508 }
509
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800510 return matched;
511}
512
513/**
Janne Karhunen483ec262020-01-15 17:42:30 +0200514 * ima_match_rules - determine whether an inode matches the policy rule.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500515 * @rule: a pointer to a rule
Christian Braunera2d23292021-01-21 14:19:45 +0100516 * @mnt_userns: user namespace of the mount the inode was found from
Mimi Zohar3323eec2009-02-04 09:06:58 -0500517 * @inode: a pointer to an inode
Matthew Garrettd906c102018-01-08 13:36:20 -0800518 * @cred: a pointer to a credentials structure for user validation
519 * @secid: the secid of the task to be validated
Mimi Zohar3323eec2009-02-04 09:06:58 -0500520 * @func: LIM hook identifier
521 * @mask: requested action (MAY_READ | MAY_WRITE | MAY_APPEND | MAY_EXEC)
Tushar Sugandhi2b4a2472021-01-07 20:07:01 -0800522 * @func_data: func specific data, may be NULL
Mimi Zohar3323eec2009-02-04 09:06:58 -0500523 *
524 * Returns true on rule match, false on failure.
525 */
Christian Braunera2d23292021-01-21 14:19:45 +0100526static bool ima_match_rules(struct ima_rule_entry *rule,
527 struct user_namespace *mnt_userns,
528 struct inode *inode, const struct cred *cred,
529 u32 secid, enum ima_hooks func, int mask,
Tushar Sugandhi2b4a2472021-01-07 20:07:01 -0800530 const char *func_data)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500531{
Mimi Zohar4af46622009-02-04 09:07:00 -0500532 int i;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500533
Dmitry Kasatkin09b11482013-11-13 23:42:39 +0200534 if ((rule->flags & IMA_FUNC) &&
535 (rule->func != func && func != POST_SETATTR))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500536 return false;
Tushar Sugandhic4e43aa2021-01-07 20:07:04 -0800537
538 switch (func) {
539 case KEY_CHECK:
540 case CRITICAL_DATA:
541 return ((rule->func == func) &&
542 ima_match_rule_data(rule, func_data, cred));
543 default:
544 break;
545 }
546
Dmitry Kasatkin09b11482013-11-13 23:42:39 +0200547 if ((rule->flags & IMA_MASK) &&
548 (rule->mask != mask && func != POST_SETATTR))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500549 return false;
Mimi Zohar4351c292014-11-05 07:53:55 -0500550 if ((rule->flags & IMA_INMASK) &&
551 (!(rule->mask & mask) && func != POST_SETATTR))
552 return false;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500553 if ((rule->flags & IMA_FSMAGIC)
554 && rule->fsmagic != inode->i_sb->s_magic)
555 return false;
Mimi Zoharf1b08bb2018-01-15 11:20:36 -0500556 if ((rule->flags & IMA_FSNAME)
557 && strcmp(rule->fsname, inode->i_sb->s_type->name))
558 return false;
Dmitry Kasatkin85865c12012-09-03 23:23:13 +0300559 if ((rule->flags & IMA_FSUUID) &&
Christoph Hellwig85787092017-05-10 15:06:33 +0200560 !uuid_equal(&rule->fsuuid, &inode->i_sb->s_uuid))
Dmitry Kasatkin85865c12012-09-03 23:23:13 +0300561 return false;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300562 if ((rule->flags & IMA_UID) && !rule->uid_op(cred->uid, rule->uid))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500563 return false;
Mimi Zohar139069e2014-11-05 07:48:36 -0500564 if (rule->flags & IMA_EUID) {
565 if (has_capability_noaudit(current, CAP_SETUID)) {
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300566 if (!rule->uid_op(cred->euid, rule->uid)
567 && !rule->uid_op(cred->suid, rule->uid)
568 && !rule->uid_op(cred->uid, rule->uid))
Mimi Zohar139069e2014-11-05 07:48:36 -0500569 return false;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300570 } else if (!rule->uid_op(cred->euid, rule->uid))
Mimi Zohar139069e2014-11-05 07:48:36 -0500571 return false;
572 }
573
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300574 if ((rule->flags & IMA_FOWNER) &&
Christian Braunera2d23292021-01-21 14:19:45 +0100575 !rule->fowner_op(i_uid_into_mnt(mnt_userns, inode), rule->fowner))
Mimi Zohar07f6a792011-03-09 22:25:48 -0500576 return false;
Mimi Zohar4af46622009-02-04 09:07:00 -0500577 for (i = 0; i < MAX_LSM_RULES; i++) {
Mimi Zohar53fc0e22009-05-05 13:12:48 -0400578 int rc = 0;
Matthew Garrettd906c102018-01-08 13:36:20 -0800579 u32 osid;
Mimi Zohar4af46622009-02-04 09:07:00 -0500580
Janne Karhunen483ec262020-01-15 17:42:30 +0200581 if (!rule->lsm[i].rule) {
582 if (!rule->lsm[i].args_p)
583 continue;
584 else
585 return false;
586 }
Mimi Zohar4af46622009-02-04 09:07:00 -0500587 switch (i) {
588 case LSM_OBJ_USER:
589 case LSM_OBJ_ROLE:
590 case LSM_OBJ_TYPE:
591 security_inode_getsecid(inode, &osid);
Tyler Hicksb8867ee2020-07-10 15:37:50 -0500592 rc = ima_filter_rule_match(osid, rule->lsm[i].type,
593 Audit_equal,
594 rule->lsm[i].rule);
Mimi Zohar4af46622009-02-04 09:07:00 -0500595 break;
596 case LSM_SUBJ_USER:
597 case LSM_SUBJ_ROLE:
598 case LSM_SUBJ_TYPE:
Tyler Hicksb8867ee2020-07-10 15:37:50 -0500599 rc = ima_filter_rule_match(secid, rule->lsm[i].type,
600 Audit_equal,
601 rule->lsm[i].rule);
Mimi Zohar4af46622009-02-04 09:07:00 -0500602 default:
603 break;
604 }
605 if (!rc)
606 return false;
607 }
Mimi Zohar3323eec2009-02-04 09:06:58 -0500608 return true;
609}
610
Mimi Zohard79d72e2012-12-03 17:08:11 -0500611/*
612 * In addition to knowing that we need to appraise the file in general,
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500613 * we need to differentiate between calling hooks, for hook specific rules.
Mimi Zohard79d72e2012-12-03 17:08:11 -0500614 */
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500615static int get_subaction(struct ima_rule_entry *rule, enum ima_hooks func)
Mimi Zohard79d72e2012-12-03 17:08:11 -0500616{
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500617 if (!(rule->flags & IMA_FUNC))
618 return IMA_FILE_APPRAISE;
619
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200620 switch (func) {
Mimi Zohard79d72e2012-12-03 17:08:11 -0500621 case MMAP_CHECK:
622 return IMA_MMAP_APPRAISE;
623 case BPRM_CHECK:
624 return IMA_BPRM_APPRAISE;
Matthew Garrettd906c102018-01-08 13:36:20 -0800625 case CREDS_CHECK:
626 return IMA_CREDS_APPRAISE;
Mimi Zohard79d72e2012-12-03 17:08:11 -0500627 case FILE_CHECK:
Mimi Zoharc6af8ef2015-11-19 12:39:22 -0500628 case POST_SETATTR:
Mimi Zohard79d72e2012-12-03 17:08:11 -0500629 return IMA_FILE_APPRAISE;
Mimi Zoharc6af8ef2015-11-19 12:39:22 -0500630 case MODULE_CHECK ... MAX_CHECK - 1:
631 default:
632 return IMA_READ_APPRAISE;
Mimi Zohard79d72e2012-12-03 17:08:11 -0500633 }
634}
635
Mimi Zohar3323eec2009-02-04 09:06:58 -0500636/**
637 * ima_match_policy - decision based on LSM and other conditions
Christian Braunera2d23292021-01-21 14:19:45 +0100638 * @mnt_userns: user namespace of the mount the inode was found from
Mimi Zohar3323eec2009-02-04 09:06:58 -0500639 * @inode: pointer to an inode for which the policy decision is being made
Matthew Garrettd906c102018-01-08 13:36:20 -0800640 * @cred: pointer to a credentials structure for which the policy decision is
641 * being made
642 * @secid: LSM secid of the task to be validated
Mimi Zohar3323eec2009-02-04 09:06:58 -0500643 * @func: IMA hook identifier
644 * @mask: requested action (MAY_READ | MAY_WRITE | MAY_APPEND | MAY_EXEC)
Eric Richter725de7f2016-06-01 13:14:02 -0500645 * @pcr: set the pcr to extend
Matthew Garrett19453ce02019-06-19 15:46:11 -0700646 * @template_desc: the template that should be used for this rule
Tushar Sugandhi2b4a2472021-01-07 20:07:01 -0800647 * @func_data: func specific data, may be NULL
Mimi Zohar3323eec2009-02-04 09:06:58 -0500648 *
649 * Measure decision based on func/mask/fsmagic and LSM(subj/obj/type)
650 * conditions.
651 *
Petko Manolov38d859f2015-12-02 17:47:54 +0200652 * Since the IMA policy may be updated multiple times we need to lock the
653 * list when walking it. Reads are many orders of magnitude more numerous
654 * than writes so ima_match_policy() is classical RCU candidate.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500655 */
Christian Braunera2d23292021-01-21 14:19:45 +0100656int ima_match_policy(struct user_namespace *mnt_userns, struct inode *inode,
657 const struct cred *cred, u32 secid, enum ima_hooks func,
658 int mask, int flags, int *pcr,
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800659 struct ima_template_desc **template_desc,
Tushar Sugandhi2b4a2472021-01-07 20:07:01 -0800660 const char *func_data)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500661{
Mimi Zohar07f6a792011-03-09 22:25:48 -0500662 struct ima_rule_entry *entry;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500663 int action = 0, actmask = flags | (flags << 1);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500664
Lakshmi Ramasubramaniandea87d02020-11-12 12:39:59 -0800665 if (template_desc && !*template_desc)
Mimi Zoharb36f2812019-07-19 07:16:57 -0400666 *template_desc = ima_template_desc_current();
667
Petko Manolov38d859f2015-12-02 17:47:54 +0200668 rcu_read_lock();
669 list_for_each_entry_rcu(entry, ima_rules, list) {
Mimi Zohar3323eec2009-02-04 09:06:58 -0500670
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500671 if (!(entry->action & actmask))
672 continue;
673
Christian Braunera2d23292021-01-21 14:19:45 +0100674 if (!ima_match_rules(entry, mnt_userns, inode, cred, secid,
Linus Torvalds7d6beb72021-02-23 13:39:45 -0800675 func, mask, func_data))
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500676 continue;
677
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +0300678 action |= entry->flags & IMA_ACTION_FLAGS;
679
Dmitry Kasatkin45e24722012-09-12 20:51:32 +0300680 action |= entry->action & IMA_DO_MASK;
Mimi Zoharda1b0022016-09-29 10:04:52 -0400681 if (entry->action & IMA_APPRAISE) {
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500682 action |= get_subaction(entry, func);
Mimi Zohara9a49352018-03-10 23:07:34 -0500683 action &= ~IMA_HASH;
Mimi Zohar9e670282018-02-21 11:36:32 -0500684 if (ima_fail_unverifiable_sigs)
685 action |= IMA_FAIL_UNVERIFIABLE_SIGS;
Mimi Zoharda1b0022016-09-29 10:04:52 -0400686 }
Mimi Zohard79d72e2012-12-03 17:08:11 -0500687
Mimi Zoharb36f2812019-07-19 07:16:57 -0400688
Dmitry Kasatkin45e24722012-09-12 20:51:32 +0300689 if (entry->action & IMA_DO_MASK)
690 actmask &= ~(entry->action | entry->action << 1);
691 else
692 actmask &= ~(entry->action | entry->action >> 1);
693
Eric Richter725de7f2016-06-01 13:14:02 -0500694 if ((pcr) && (entry->flags & IMA_PCR))
695 *pcr = entry->pcr;
696
Matthew Garrett19453ce02019-06-19 15:46:11 -0700697 if (template_desc && entry->template)
698 *template_desc = entry->template;
Matthew Garrett19453ce02019-06-19 15:46:11 -0700699
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500700 if (!actmask)
701 break;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500702 }
Petko Manolov38d859f2015-12-02 17:47:54 +0200703 rcu_read_unlock();
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500704
705 return action;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500706}
707
Roberto Sassua7560242014-09-12 19:35:54 +0200708/*
709 * Initialize the ima_policy_flag variable based on the currently
710 * loaded policy. Based on this flag, the decision to short circuit
711 * out of a function or not call the function in the first place
712 * can be made earlier.
713 */
714void ima_update_policy_flag(void)
715{
716 struct ima_rule_entry *entry;
717
Roberto Sassua7560242014-09-12 19:35:54 +0200718 list_for_each_entry(entry, ima_rules, list) {
719 if (entry->action & IMA_DO_MASK)
720 ima_policy_flag |= entry->action;
721 }
722
Mimi Zoharef968372018-07-13 14:06:01 -0400723 ima_appraise |= (build_ima_appraise | temp_ima_appraise);
Roberto Sassua7560242014-09-12 19:35:54 +0200724 if (!ima_appraise)
725 ima_policy_flag &= ~IMA_APPRAISE;
726}
727
Mimi Zohar6f0911a2018-04-12 00:15:22 -0400728static int ima_appraise_flag(enum ima_hooks func)
729{
730 if (func == MODULE_CHECK)
731 return IMA_APPRAISE_MODULES;
732 else if (func == FIRMWARE_CHECK)
733 return IMA_APPRAISE_FIRMWARE;
734 else if (func == POLICY_CHECK)
735 return IMA_APPRAISE_POLICY;
Mimi Zohar16c267a2018-07-13 14:05:58 -0400736 else if (func == KEXEC_KERNEL_CHECK)
737 return IMA_APPRAISE_KEXEC;
Mimi Zohar6f0911a2018-04-12 00:15:22 -0400738 return 0;
739}
740
Nayna Jainc52657d2018-10-09 23:00:35 +0530741static void add_rules(struct ima_rule_entry *entries, int count,
742 enum policy_rule_list policy_rule)
743{
744 int i = 0;
745
746 for (i = 0; i < count; i++) {
747 struct ima_rule_entry *entry;
748
749 if (policy_rule & IMA_DEFAULT_POLICY)
750 list_add_tail(&entries[i].list, &ima_default_rules);
751
752 if (policy_rule & IMA_CUSTOM_POLICY) {
753 entry = kmemdup(&entries[i], sizeof(*entry),
754 GFP_KERNEL);
755 if (!entry)
756 continue;
757
758 list_add_tail(&entry->list, &ima_policy_rules);
759 }
Krzysztof Struczynskib59fda42020-04-27 12:28:59 +0200760 if (entries[i].action == APPRAISE) {
761 if (entries != build_appraise_rules)
762 temp_ima_appraise |=
763 ima_appraise_flag(entries[i].func);
764 else
765 build_ima_appraise |=
766 ima_appraise_flag(entries[i].func);
767 }
Nayna Jainc52657d2018-10-09 23:00:35 +0530768 }
769}
770
Nayna Jain61917062018-10-09 23:00:36 +0530771static int ima_parse_rule(char *rule, struct ima_rule_entry *entry);
772
773static int __init ima_init_arch_policy(void)
774{
775 const char * const *arch_rules;
776 const char * const *rules;
777 int arch_entries = 0;
778 int i = 0;
779
780 arch_rules = arch_get_ima_policy();
781 if (!arch_rules)
782 return arch_entries;
783
784 /* Get number of rules */
785 for (rules = arch_rules; *rules != NULL; rules++)
786 arch_entries++;
787
788 arch_policy_entry = kcalloc(arch_entries + 1,
789 sizeof(*arch_policy_entry), GFP_KERNEL);
790 if (!arch_policy_entry)
791 return 0;
792
793 /* Convert each policy string rules to struct ima_rule_entry format */
794 for (rules = arch_rules, i = 0; *rules != NULL; rules++) {
795 char rule[255];
796 int result;
797
798 result = strlcpy(rule, *rules, sizeof(rule));
799
800 INIT_LIST_HEAD(&arch_policy_entry[i].list);
801 result = ima_parse_rule(rule, &arch_policy_entry[i]);
802 if (result) {
803 pr_warn("Skipping unknown architecture policy rule: %s\n",
804 rule);
805 memset(&arch_policy_entry[i], 0,
806 sizeof(*arch_policy_entry));
807 continue;
808 }
809 i++;
810 }
811 return i;
812}
813
Mimi Zohar3323eec2009-02-04 09:06:58 -0500814/**
815 * ima_init_policy - initialize the default measure rules.
816 *
Mimi Zohar07f6a792011-03-09 22:25:48 -0500817 * ima_rules points to either the ima_default_rules or the
818 * the new ima_policy_rules.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500819 */
Eric Paris932995f2009-05-21 15:43:32 -0400820void __init ima_init_policy(void)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500821{
Nayna Jain61917062018-10-09 23:00:36 +0530822 int build_appraise_entries, arch_entries;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500823
Nayna Jainc52657d2018-10-09 23:00:35 +0530824 /* if !ima_policy, we load NO default rules */
825 if (ima_policy)
826 add_rules(dont_measure_rules, ARRAY_SIZE(dont_measure_rules),
827 IMA_DEFAULT_POLICY);
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400828
829 switch (ima_policy) {
830 case ORIGINAL_TCB:
Nayna Jainc52657d2018-10-09 23:00:35 +0530831 add_rules(original_measurement_rules,
832 ARRAY_SIZE(original_measurement_rules),
833 IMA_DEFAULT_POLICY);
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400834 break;
835 case DEFAULT_TCB:
Nayna Jainc52657d2018-10-09 23:00:35 +0530836 add_rules(default_measurement_rules,
837 ARRAY_SIZE(default_measurement_rules),
838 IMA_DEFAULT_POLICY);
Mimi Zohar24fd03c2015-06-11 20:48:33 -0400839 default:
840 break;
841 }
Eric Paris5789ba32009-05-21 15:47:06 -0400842
Mimi Zohar503ceae2017-04-21 18:58:27 -0400843 /*
Nayna Jain61917062018-10-09 23:00:36 +0530844 * Based on runtime secure boot flags, insert arch specific measurement
845 * and appraise rules requiring file signatures for both the initial
846 * and custom policies, prior to other appraise rules.
847 * (Highest priority)
Mimi Zohar503ceae2017-04-21 18:58:27 -0400848 */
Nayna Jain61917062018-10-09 23:00:36 +0530849 arch_entries = ima_init_arch_policy();
850 if (!arch_entries)
851 pr_info("No architecture policies found\n");
852 else
853 add_rules(arch_policy_entry, arch_entries,
854 IMA_DEFAULT_POLICY | IMA_CUSTOM_POLICY);
855
856 /*
Mimi Zohar503ceae2017-04-21 18:58:27 -0400857 * Insert the builtin "secure_boot" policy rules requiring file
Nayna Jain61917062018-10-09 23:00:36 +0530858 * signatures, prior to other appraise rules.
Mimi Zohar503ceae2017-04-21 18:58:27 -0400859 */
Nayna Jainc52657d2018-10-09 23:00:35 +0530860 if (ima_use_secure_boot)
861 add_rules(secure_boot_rules, ARRAY_SIZE(secure_boot_rules),
862 IMA_DEFAULT_POLICY);
Mimi Zohar503ceae2017-04-21 18:58:27 -0400863
Mimi Zoharef968372018-07-13 14:06:01 -0400864 /*
865 * Insert the build time appraise rules requiring file signatures
866 * for both the initial and custom policies, prior to other appraise
Nayna Jainc52657d2018-10-09 23:00:35 +0530867 * rules. As the secure boot rules includes all of the build time
868 * rules, include either one or the other set of rules, but not both.
Mimi Zoharef968372018-07-13 14:06:01 -0400869 */
Nayna Jainc52657d2018-10-09 23:00:35 +0530870 build_appraise_entries = ARRAY_SIZE(build_appraise_rules);
871 if (build_appraise_entries) {
872 if (ima_use_secure_boot)
873 add_rules(build_appraise_rules, build_appraise_entries,
874 IMA_CUSTOM_POLICY);
875 else
876 add_rules(build_appraise_rules, build_appraise_entries,
877 IMA_DEFAULT_POLICY | IMA_CUSTOM_POLICY);
Mimi Zoharef968372018-07-13 14:06:01 -0400878 }
879
Nayna Jainc52657d2018-10-09 23:00:35 +0530880 if (ima_use_appraise_tcb)
881 add_rules(default_appraise_rules,
882 ARRAY_SIZE(default_appraise_rules),
883 IMA_DEFAULT_POLICY);
Mimi Zohar07f6a792011-03-09 22:25:48 -0500884
Lakshmi Ramasubramanian03cee162021-01-07 20:07:07 -0800885 if (ima_use_critical_data)
886 add_rules(critical_data_rules,
887 ARRAY_SIZE(critical_data_rules),
888 IMA_DEFAULT_POLICY);
889
Mimi Zohar95ee08f2015-12-07 15:08:01 -0500890 ima_update_policy_flag();
Mimi Zohar3323eec2009-02-04 09:06:58 -0500891}
Mimi Zohar4af46622009-02-04 09:07:00 -0500892
Sasha Levin01127212015-12-22 08:51:23 -0500893/* Make sure we have a valid policy, at least containing some rules. */
Colin Ian Kingc75d8e92016-01-20 11:13:46 +0000894int ima_check_policy(void)
Sasha Levin01127212015-12-22 08:51:23 -0500895{
896 if (list_empty(&ima_temp_rules))
897 return -EINVAL;
898 return 0;
899}
900
Mimi Zohar4af46622009-02-04 09:07:00 -0500901/**
902 * ima_update_policy - update default_rules with new measure rules
903 *
904 * Called on file .release to update the default rules with a complete new
Petko Manolov38d859f2015-12-02 17:47:54 +0200905 * policy. What we do here is to splice ima_policy_rules and ima_temp_rules so
906 * they make a queue. The policy may be updated multiple times and this is the
907 * RCU updater.
908 *
909 * Policy rules are never deleted so ima_policy_flag gets zeroed only once when
910 * we switch from the default policy to user defined.
Mimi Zohar4af46622009-02-04 09:07:00 -0500911 */
912void ima_update_policy(void)
913{
Petko Manolov53b626f2018-05-22 17:06:55 +0300914 struct list_head *policy = &ima_policy_rules;
Petko Manolov38d859f2015-12-02 17:47:54 +0200915
Petko Manolov53b626f2018-05-22 17:06:55 +0300916 list_splice_tail_init_rcu(&ima_temp_rules, policy, synchronize_rcu);
Petko Manolov38d859f2015-12-02 17:47:54 +0200917
918 if (ima_rules != policy) {
919 ima_policy_flag = 0;
920 ima_rules = policy;
Nayna Jain61917062018-10-09 23:00:36 +0530921
922 /*
923 * IMA architecture specific policy rules are specified
924 * as strings and converted to an array of ima_entry_rules
925 * on boot. After loading a custom policy, free the
926 * architecture specific rules stored as an array.
927 */
928 kfree(arch_policy_entry);
Petko Manolov38d859f2015-12-02 17:47:54 +0200929 }
Dmitry Kasatkin0716abb2014-10-03 14:40:21 +0300930 ima_update_policy_flag();
Lakshmi Ramasubramanian450d0fd2020-01-22 17:32:05 -0800931
932 /* Custom IMA policy has been loaded */
933 ima_process_queued_keys();
Mimi Zohar4af46622009-02-04 09:07:00 -0500934}
935
Mimi Zohar1a9430d2018-12-17 19:14:49 -0500936/* Keep the enumeration in sync with the policy_tokens! */
Mimi Zohar4af46622009-02-04 09:07:00 -0500937enum {
Mimi Zohar1a9430d2018-12-17 19:14:49 -0500938 Opt_measure, Opt_dont_measure,
Mimi Zohar07f6a792011-03-09 22:25:48 -0500939 Opt_appraise, Opt_dont_appraise,
Mimi Zoharda1b0022016-09-29 10:04:52 -0400940 Opt_audit, Opt_hash, Opt_dont_hash,
Mimi Zohar4af46622009-02-04 09:07:00 -0500941 Opt_obj_user, Opt_obj_role, Opt_obj_type,
942 Opt_subj_user, Opt_subj_role, Opt_subj_type,
Mimi Zoharf1b08bb2018-01-15 11:20:36 -0500943 Opt_func, Opt_mask, Opt_fsmagic, Opt_fsname,
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300944 Opt_fsuuid, Opt_uid_eq, Opt_euid_eq, Opt_fowner_eq,
945 Opt_uid_gt, Opt_euid_gt, Opt_fowner_gt,
946 Opt_uid_lt, Opt_euid_lt, Opt_fowner_lt,
Nayna Jain273df862019-10-30 23:31:32 -0400947 Opt_appraise_type, Opt_appraise_flag,
Lakshmi Ramasubramanian2b60c0e2019-12-11 08:47:07 -0800948 Opt_permit_directio, Opt_pcr, Opt_template, Opt_keyrings,
Tushar Sugandhi47d76a42021-01-07 20:07:05 -0800949 Opt_label, Opt_err
Mimi Zohar4af46622009-02-04 09:07:00 -0500950};
951
Mimi Zohar1a9430d2018-12-17 19:14:49 -0500952static const match_table_t policy_tokens = {
Mimi Zohar4af46622009-02-04 09:07:00 -0500953 {Opt_measure, "measure"},
954 {Opt_dont_measure, "dont_measure"},
Mimi Zohar07f6a792011-03-09 22:25:48 -0500955 {Opt_appraise, "appraise"},
956 {Opt_dont_appraise, "dont_appraise"},
Peter Moodye7c568e2012-06-14 10:04:36 -0700957 {Opt_audit, "audit"},
Mimi Zoharda1b0022016-09-29 10:04:52 -0400958 {Opt_hash, "hash"},
959 {Opt_dont_hash, "dont_hash"},
Mimi Zohar4af46622009-02-04 09:07:00 -0500960 {Opt_obj_user, "obj_user=%s"},
961 {Opt_obj_role, "obj_role=%s"},
962 {Opt_obj_type, "obj_type=%s"},
963 {Opt_subj_user, "subj_user=%s"},
964 {Opt_subj_role, "subj_role=%s"},
965 {Opt_subj_type, "subj_type=%s"},
966 {Opt_func, "func=%s"},
967 {Opt_mask, "mask=%s"},
968 {Opt_fsmagic, "fsmagic=%s"},
Mimi Zoharf1b08bb2018-01-15 11:20:36 -0500969 {Opt_fsname, "fsname=%s"},
Dmitry Kasatkin85865c12012-09-03 23:23:13 +0300970 {Opt_fsuuid, "fsuuid=%s"},
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +0300971 {Opt_uid_eq, "uid=%s"},
972 {Opt_euid_eq, "euid=%s"},
973 {Opt_fowner_eq, "fowner=%s"},
974 {Opt_uid_gt, "uid>%s"},
975 {Opt_euid_gt, "euid>%s"},
976 {Opt_fowner_gt, "fowner>%s"},
977 {Opt_uid_lt, "uid<%s"},
978 {Opt_euid_lt, "euid<%s"},
979 {Opt_fowner_lt, "fowner<%s"},
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +0300980 {Opt_appraise_type, "appraise_type=%s"},
Nayna Jain273df862019-10-30 23:31:32 -0400981 {Opt_appraise_flag, "appraise_flag=%s"},
Mimi Zoharf9b2a732014-05-12 09:28:11 -0400982 {Opt_permit_directio, "permit_directio"},
Eric Richter02606432016-06-01 13:14:01 -0500983 {Opt_pcr, "pcr=%s"},
Matthew Garrett19453ce02019-06-19 15:46:11 -0700984 {Opt_template, "template=%s"},
Lakshmi Ramasubramanian2b60c0e2019-12-11 08:47:07 -0800985 {Opt_keyrings, "keyrings=%s"},
Tushar Sugandhi47d76a42021-01-07 20:07:05 -0800986 {Opt_label, "label=%s"},
Mimi Zohar4af46622009-02-04 09:07:00 -0500987 {Opt_err, NULL}
988};
989
Mimi Zohar07f6a792011-03-09 22:25:48 -0500990static int ima_lsm_rule_init(struct ima_rule_entry *entry,
Mimi Zohar7163a992013-01-03 14:19:09 -0500991 substring_t *args, int lsm_rule, int audit_type)
Mimi Zohar4af46622009-02-04 09:07:00 -0500992{
993 int result;
994
Eric Paris7b62e162010-04-20 10:21:01 -0400995 if (entry->lsm[lsm_rule].rule)
996 return -EINVAL;
997
Mimi Zohar7163a992013-01-03 14:19:09 -0500998 entry->lsm[lsm_rule].args_p = match_strdup(args);
999 if (!entry->lsm[lsm_rule].args_p)
1000 return -ENOMEM;
1001
Mimi Zohar4af46622009-02-04 09:07:00 -05001002 entry->lsm[lsm_rule].type = audit_type;
Tyler Hicksb8867ee2020-07-10 15:37:50 -05001003 result = ima_filter_rule_init(entry->lsm[lsm_rule].type, Audit_equal,
1004 entry->lsm[lsm_rule].args_p,
1005 &entry->lsm[lsm_rule].rule);
Mimi Zohar7163a992013-01-03 14:19:09 -05001006 if (!entry->lsm[lsm_rule].rule) {
Janne Karhunen483ec262020-01-15 17:42:30 +02001007 pr_warn("rule for LSM \'%s\' is undefined\n",
Tyler Hicksaa0c0222020-07-09 01:19:08 -05001008 entry->lsm[lsm_rule].args_p);
Janne Karhunen483ec262020-01-15 17:42:30 +02001009
1010 if (ima_rules == &ima_default_rules) {
1011 kfree(entry->lsm[lsm_rule].args_p);
Tyler Hicks2bdd7372020-07-09 01:19:02 -05001012 entry->lsm[lsm_rule].args_p = NULL;
Janne Karhunen483ec262020-01-15 17:42:30 +02001013 result = -EINVAL;
1014 } else
1015 result = 0;
Mimi Zohar7163a992013-01-03 14:19:09 -05001016 }
1017
Mimi Zohar4af46622009-02-04 09:07:00 -05001018 return result;
1019}
1020
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001021static void ima_log_string_op(struct audit_buffer *ab, char *key, char *value,
1022 bool (*rule_operator)(kuid_t, kuid_t))
Eric Paris2f1506c2010-04-20 10:21:30 -04001023{
Stefan Berger2afd0202018-06-04 16:54:54 -04001024 if (!ab)
1025 return;
1026
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001027 if (rule_operator == &uid_gt)
1028 audit_log_format(ab, "%s>", key);
1029 else if (rule_operator == &uid_lt)
1030 audit_log_format(ab, "%s<", key);
1031 else
1032 audit_log_format(ab, "%s=", key);
Stefan Berger3d2859d2018-06-04 16:54:53 -04001033 audit_log_format(ab, "%s ", value);
Eric Paris2f1506c2010-04-20 10:21:30 -04001034}
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001035static void ima_log_string(struct audit_buffer *ab, char *key, char *value)
1036{
1037 ima_log_string_op(ab, key, value, NULL);
1038}
Eric Paris2f1506c2010-04-20 10:21:30 -04001039
Thiago Jung Bauermann3878d502019-06-27 23:19:32 -03001040/*
1041 * Validating the appended signature included in the measurement list requires
1042 * the file hash calculated without the appended signature (i.e., the 'd-modsig'
1043 * field). Therefore, notify the user if they have the 'modsig' field but not
1044 * the 'd-modsig' field in the template.
1045 */
1046static void check_template_modsig(const struct ima_template_desc *template)
1047{
1048#define MSG "template with 'modsig' field also needs 'd-modsig' field\n"
1049 bool has_modsig, has_dmodsig;
1050 static bool checked;
1051 int i;
1052
1053 /* We only need to notify the user once. */
1054 if (checked)
1055 return;
1056
1057 has_modsig = has_dmodsig = false;
1058 for (i = 0; i < template->num_fields; i++) {
1059 if (!strcmp(template->fields[i]->field_id, "modsig"))
1060 has_modsig = true;
1061 else if (!strcmp(template->fields[i]->field_id, "d-modsig"))
1062 has_dmodsig = true;
1063 }
1064
1065 if (has_modsig && !has_dmodsig)
1066 pr_notice(MSG);
1067
1068 checked = true;
1069#undef MSG
1070}
1071
Tyler Hicks712183432020-07-09 01:19:03 -05001072static bool ima_validate_rule(struct ima_rule_entry *entry)
1073{
Tyler Hicks30031b02020-07-09 01:19:09 -05001074 /* Ensure that the action is set and is compatible with the flags */
Tyler Hicks712183432020-07-09 01:19:03 -05001075 if (entry->action == UNKNOWN)
1076 return false;
1077
Tyler Hicks30031b02020-07-09 01:19:09 -05001078 if (entry->action != MEASURE && entry->flags & IMA_PCR)
1079 return false;
1080
1081 if (entry->action != APPRAISE &&
1082 entry->flags & (IMA_DIGSIG_REQUIRED | IMA_MODSIG_ALLOWED | IMA_CHECK_BLACKLIST))
1083 return false;
1084
1085 /*
1086 * The IMA_FUNC bit must be set if and only if there's a valid hook
1087 * function specified, and vice versa. Enforcing this property allows
1088 * for the NONE case below to validate a rule without an explicit hook
1089 * function.
1090 */
1091 if (((entry->flags & IMA_FUNC) && entry->func == NONE) ||
1092 (!(entry->flags & IMA_FUNC) && entry->func != NONE))
1093 return false;
1094
Tyler Hicks712183432020-07-09 01:19:03 -05001095 /*
1096 * Ensure that the hook function is compatible with the other
1097 * components of the rule
1098 */
1099 switch (entry->func) {
1100 case NONE:
1101 case FILE_CHECK:
1102 case MMAP_CHECK:
1103 case BPRM_CHECK:
1104 case CREDS_CHECK:
1105 case POST_SETATTR:
Tyler Hicks712183432020-07-09 01:19:03 -05001106 case FIRMWARE_CHECK:
Tyler Hicks30031b02020-07-09 01:19:09 -05001107 case POLICY_CHECK:
1108 if (entry->flags & ~(IMA_FUNC | IMA_MASK | IMA_FSMAGIC |
1109 IMA_UID | IMA_FOWNER | IMA_FSUUID |
1110 IMA_INMASK | IMA_EUID | IMA_PCR |
1111 IMA_FSNAME | IMA_DIGSIG_REQUIRED |
1112 IMA_PERMIT_DIRECTIO))
1113 return false;
1114
1115 break;
1116 case MODULE_CHECK:
Tyler Hicks712183432020-07-09 01:19:03 -05001117 case KEXEC_KERNEL_CHECK:
1118 case KEXEC_INITRAMFS_CHECK:
Tyler Hicks30031b02020-07-09 01:19:09 -05001119 if (entry->flags & ~(IMA_FUNC | IMA_MASK | IMA_FSMAGIC |
1120 IMA_UID | IMA_FOWNER | IMA_FSUUID |
1121 IMA_INMASK | IMA_EUID | IMA_PCR |
1122 IMA_FSNAME | IMA_DIGSIG_REQUIRED |
1123 IMA_PERMIT_DIRECTIO | IMA_MODSIG_ALLOWED |
1124 IMA_CHECK_BLACKLIST))
1125 return false;
1126
Tyler Hicks712183432020-07-09 01:19:03 -05001127 break;
1128 case KEXEC_CMDLINE:
Tyler Hicksdb2045f2020-07-09 01:19:04 -05001129 if (entry->action & ~(MEASURE | DONT_MEASURE))
1130 return false;
1131
Tyler Hicks48341772020-07-09 01:19:11 -05001132 if (entry->flags & ~(IMA_FUNC | IMA_FSMAGIC | IMA_UID |
1133 IMA_FOWNER | IMA_FSUUID | IMA_EUID |
1134 IMA_PCR | IMA_FSNAME))
Tyler Hicksdb2045f2020-07-09 01:19:04 -05001135 return false;
1136
1137 break;
Tyler Hicks712183432020-07-09 01:19:03 -05001138 case KEY_CHECK:
1139 if (entry->action & ~(MEASURE | DONT_MEASURE))
1140 return false;
1141
Tyler Hickseb624fe2020-07-09 01:19:05 -05001142 if (entry->flags & ~(IMA_FUNC | IMA_UID | IMA_PCR |
1143 IMA_KEYRINGS))
1144 return false;
1145
1146 if (ima_rule_contains_lsm_cond(entry))
1147 return false;
1148
Tyler Hicks712183432020-07-09 01:19:03 -05001149 break;
Tushar Sugandhic4e43aa2021-01-07 20:07:04 -08001150 case CRITICAL_DATA:
1151 if (entry->action & ~(MEASURE | DONT_MEASURE))
1152 return false;
1153
Tushar Sugandhi47d76a42021-01-07 20:07:05 -08001154 if (entry->flags & ~(IMA_FUNC | IMA_UID | IMA_PCR |
1155 IMA_LABEL))
Tushar Sugandhic4e43aa2021-01-07 20:07:04 -08001156 return false;
1157
1158 if (ima_rule_contains_lsm_cond(entry))
1159 return false;
1160
1161 break;
Tyler Hicks712183432020-07-09 01:19:03 -05001162 default:
1163 return false;
1164 }
1165
Tyler Hicks5f3e9262020-07-09 01:19:06 -05001166 /* Ensure that combinations of flags are compatible with each other */
1167 if (entry->flags & IMA_CHECK_BLACKLIST &&
1168 !(entry->flags & IMA_MODSIG_ALLOWED))
1169 return false;
1170
Tyler Hicks712183432020-07-09 01:19:03 -05001171 return true;
1172}
1173
Mimi Zohar07f6a792011-03-09 22:25:48 -05001174static int ima_parse_rule(char *rule, struct ima_rule_entry *entry)
Mimi Zohar4af46622009-02-04 09:07:00 -05001175{
1176 struct audit_buffer *ab;
Mimi Zohar4351c292014-11-05 07:53:55 -05001177 char *from;
Mimi Zohar4af46622009-02-04 09:07:00 -05001178 char *p;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001179 bool uid_token;
Matthew Garrett19453ce02019-06-19 15:46:11 -07001180 struct ima_template_desc *template_desc;
Mimi Zohar4af46622009-02-04 09:07:00 -05001181 int result = 0;
1182
Stefan Bergerdba31ee2018-06-04 16:54:55 -04001183 ab = integrity_audit_log_start(audit_context(), GFP_KERNEL,
1184 AUDIT_INTEGRITY_POLICY_RULE);
Mimi Zohar4af46622009-02-04 09:07:00 -05001185
Eric W. Biederman8b94eea2012-05-25 18:24:12 -06001186 entry->uid = INVALID_UID;
Linus Torvalds882653222012-10-02 21:38:48 -07001187 entry->fowner = INVALID_UID;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001188 entry->uid_op = &uid_eq;
1189 entry->fowner_op = &uid_eq;
Eric Parisb9035b12010-04-20 10:21:07 -04001190 entry->action = UNKNOWN;
Eric Paris28ef4002010-04-20 10:21:18 -04001191 while ((p = strsep(&rule, " \t")) != NULL) {
Mimi Zohar4af46622009-02-04 09:07:00 -05001192 substring_t args[MAX_OPT_ARGS];
1193 int token;
1194 unsigned long lnum;
1195
1196 if (result < 0)
1197 break;
Eric Paris28ef4002010-04-20 10:21:18 -04001198 if ((*p == '\0') || (*p == ' ') || (*p == '\t'))
1199 continue;
Mimi Zohar4af46622009-02-04 09:07:00 -05001200 token = match_token(p, policy_tokens, args);
1201 switch (token) {
1202 case Opt_measure:
Eric Paris2f1506c2010-04-20 10:21:30 -04001203 ima_log_string(ab, "action", "measure");
Eric Paris7b62e162010-04-20 10:21:01 -04001204
1205 if (entry->action != UNKNOWN)
1206 result = -EINVAL;
1207
Mimi Zohar4af46622009-02-04 09:07:00 -05001208 entry->action = MEASURE;
1209 break;
1210 case Opt_dont_measure:
Eric Paris2f1506c2010-04-20 10:21:30 -04001211 ima_log_string(ab, "action", "dont_measure");
Eric Paris7b62e162010-04-20 10:21:01 -04001212
1213 if (entry->action != UNKNOWN)
1214 result = -EINVAL;
1215
Mimi Zohar4af46622009-02-04 09:07:00 -05001216 entry->action = DONT_MEASURE;
1217 break;
Mimi Zohar07f6a792011-03-09 22:25:48 -05001218 case Opt_appraise:
1219 ima_log_string(ab, "action", "appraise");
1220
1221 if (entry->action != UNKNOWN)
1222 result = -EINVAL;
1223
1224 entry->action = APPRAISE;
1225 break;
1226 case Opt_dont_appraise:
1227 ima_log_string(ab, "action", "dont_appraise");
1228
1229 if (entry->action != UNKNOWN)
1230 result = -EINVAL;
1231
1232 entry->action = DONT_APPRAISE;
1233 break;
Peter Moodye7c568e2012-06-14 10:04:36 -07001234 case Opt_audit:
1235 ima_log_string(ab, "action", "audit");
1236
1237 if (entry->action != UNKNOWN)
1238 result = -EINVAL;
1239
1240 entry->action = AUDIT;
1241 break;
Mimi Zoharda1b0022016-09-29 10:04:52 -04001242 case Opt_hash:
1243 ima_log_string(ab, "action", "hash");
1244
1245 if (entry->action != UNKNOWN)
1246 result = -EINVAL;
1247
1248 entry->action = HASH;
1249 break;
1250 case Opt_dont_hash:
1251 ima_log_string(ab, "action", "dont_hash");
1252
1253 if (entry->action != UNKNOWN)
1254 result = -EINVAL;
1255
1256 entry->action = DONT_HASH;
1257 break;
Mimi Zohar4af46622009-02-04 09:07:00 -05001258 case Opt_func:
Eric Paris2f1506c2010-04-20 10:21:30 -04001259 ima_log_string(ab, "func", args[0].from);
Eric Paris7b62e162010-04-20 10:21:01 -04001260
1261 if (entry->func)
Mimi Zohar07f6a792011-03-09 22:25:48 -05001262 result = -EINVAL;
Eric Paris7b62e162010-04-20 10:21:01 -04001263
Mimi Zohar1e93d002010-01-26 17:02:41 -05001264 if (strcmp(args[0].from, "FILE_CHECK") == 0)
1265 entry->func = FILE_CHECK;
1266 /* PATH_CHECK is for backwards compat */
1267 else if (strcmp(args[0].from, "PATH_CHECK") == 0)
1268 entry->func = FILE_CHECK;
Mimi Zoharfdf90722012-10-16 12:40:08 +10301269 else if (strcmp(args[0].from, "MODULE_CHECK") == 0)
1270 entry->func = MODULE_CHECK;
Mimi Zohar5a9196d2014-07-22 10:39:48 -04001271 else if (strcmp(args[0].from, "FIRMWARE_CHECK") == 0)
1272 entry->func = FIRMWARE_CHECK;
Mimi Zohar16cac492012-12-13 11:15:04 -05001273 else if ((strcmp(args[0].from, "FILE_MMAP") == 0)
1274 || (strcmp(args[0].from, "MMAP_CHECK") == 0))
1275 entry->func = MMAP_CHECK;
Mimi Zohar4af46622009-02-04 09:07:00 -05001276 else if (strcmp(args[0].from, "BPRM_CHECK") == 0)
1277 entry->func = BPRM_CHECK;
Matthew Garrettd906c102018-01-08 13:36:20 -08001278 else if (strcmp(args[0].from, "CREDS_CHECK") == 0)
1279 entry->func = CREDS_CHECK;
Mimi Zohard9ddf072016-01-14 20:59:14 -05001280 else if (strcmp(args[0].from, "KEXEC_KERNEL_CHECK") ==
1281 0)
1282 entry->func = KEXEC_KERNEL_CHECK;
1283 else if (strcmp(args[0].from, "KEXEC_INITRAMFS_CHECK")
1284 == 0)
1285 entry->func = KEXEC_INITRAMFS_CHECK;
Mimi Zohar19f8a842016-01-15 10:17:12 -05001286 else if (strcmp(args[0].from, "POLICY_CHECK") == 0)
1287 entry->func = POLICY_CHECK;
Prakhar Srivastavab0935122019-06-23 23:23:29 -07001288 else if (strcmp(args[0].from, "KEXEC_CMDLINE") == 0)
1289 entry->func = KEXEC_CMDLINE;
Tyler Hicks48ce1dd2020-08-11 14:26:21 -05001290 else if (IS_ENABLED(CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS) &&
1291 strcmp(args[0].from, "KEY_CHECK") == 0)
Lakshmi Ramasubramanian58086112019-12-11 08:47:03 -08001292 entry->func = KEY_CHECK;
Tushar Sugandhic4e43aa2021-01-07 20:07:04 -08001293 else if (strcmp(args[0].from, "CRITICAL_DATA") == 0)
1294 entry->func = CRITICAL_DATA;
Mimi Zohar4af46622009-02-04 09:07:00 -05001295 else
1296 result = -EINVAL;
1297 if (!result)
1298 entry->flags |= IMA_FUNC;
1299 break;
1300 case Opt_mask:
Eric Paris2f1506c2010-04-20 10:21:30 -04001301 ima_log_string(ab, "mask", args[0].from);
Eric Paris7b62e162010-04-20 10:21:01 -04001302
1303 if (entry->mask)
1304 result = -EINVAL;
1305
Mimi Zohar4351c292014-11-05 07:53:55 -05001306 from = args[0].from;
1307 if (*from == '^')
1308 from++;
1309
1310 if ((strcmp(from, "MAY_EXEC")) == 0)
Mimi Zohar4af46622009-02-04 09:07:00 -05001311 entry->mask = MAY_EXEC;
Mimi Zohar4351c292014-11-05 07:53:55 -05001312 else if (strcmp(from, "MAY_WRITE") == 0)
Mimi Zohar4af46622009-02-04 09:07:00 -05001313 entry->mask = MAY_WRITE;
Mimi Zohar4351c292014-11-05 07:53:55 -05001314 else if (strcmp(from, "MAY_READ") == 0)
Mimi Zohar4af46622009-02-04 09:07:00 -05001315 entry->mask = MAY_READ;
Mimi Zohar4351c292014-11-05 07:53:55 -05001316 else if (strcmp(from, "MAY_APPEND") == 0)
Mimi Zohar4af46622009-02-04 09:07:00 -05001317 entry->mask = MAY_APPEND;
1318 else
1319 result = -EINVAL;
1320 if (!result)
Mimi Zohar4351c292014-11-05 07:53:55 -05001321 entry->flags |= (*args[0].from == '^')
1322 ? IMA_INMASK : IMA_MASK;
Mimi Zohar4af46622009-02-04 09:07:00 -05001323 break;
1324 case Opt_fsmagic:
Eric Paris2f1506c2010-04-20 10:21:30 -04001325 ima_log_string(ab, "fsmagic", args[0].from);
Eric Paris7b62e162010-04-20 10:21:01 -04001326
1327 if (entry->fsmagic) {
1328 result = -EINVAL;
1329 break;
1330 }
1331
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +02001332 result = kstrtoul(args[0].from, 16, &entry->fsmagic);
Mimi Zohar4af46622009-02-04 09:07:00 -05001333 if (!result)
1334 entry->flags |= IMA_FSMAGIC;
1335 break;
Mimi Zoharf1b08bb2018-01-15 11:20:36 -05001336 case Opt_fsname:
1337 ima_log_string(ab, "fsname", args[0].from);
1338
1339 entry->fsname = kstrdup(args[0].from, GFP_KERNEL);
1340 if (!entry->fsname) {
1341 result = -ENOMEM;
1342 break;
1343 }
1344 result = 0;
1345 entry->flags |= IMA_FSNAME;
1346 break;
Lakshmi Ramasubramanian2b60c0e2019-12-11 08:47:07 -08001347 case Opt_keyrings:
1348 ima_log_string(ab, "keyrings", args[0].from);
1349
Tyler Hicks48ce1dd2020-08-11 14:26:21 -05001350 if (!IS_ENABLED(CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS) ||
1351 entry->keyrings) {
Lakshmi Ramasubramanian2b60c0e2019-12-11 08:47:07 -08001352 result = -EINVAL;
1353 break;
1354 }
Lakshmi Ramasubramanian5c7bac92020-01-16 18:18:21 -08001355
Tyler Hicks176377d2020-08-11 14:26:20 -05001356 entry->keyrings = ima_alloc_rule_opt_list(args);
1357 if (IS_ERR(entry->keyrings)) {
1358 result = PTR_ERR(entry->keyrings);
1359 entry->keyrings = NULL;
Lakshmi Ramasubramanian2b60c0e2019-12-11 08:47:07 -08001360 break;
1361 }
Tyler Hicks176377d2020-08-11 14:26:20 -05001362
Lakshmi Ramasubramanian2b60c0e2019-12-11 08:47:07 -08001363 entry->flags |= IMA_KEYRINGS;
1364 break;
Tushar Sugandhi47d76a42021-01-07 20:07:05 -08001365 case Opt_label:
1366 ima_log_string(ab, "label", args[0].from);
1367
1368 if (entry->label) {
1369 result = -EINVAL;
1370 break;
1371 }
1372
1373 entry->label = ima_alloc_rule_opt_list(args);
1374 if (IS_ERR(entry->label)) {
1375 result = PTR_ERR(entry->label);
1376 entry->label = NULL;
1377 break;
1378 }
1379
1380 entry->flags |= IMA_LABEL;
1381 break;
Dmitry Kasatkin85865c12012-09-03 23:23:13 +03001382 case Opt_fsuuid:
1383 ima_log_string(ab, "fsuuid", args[0].from);
1384
Mike Rapoport36447452018-01-17 20:27:11 +02001385 if (!uuid_is_null(&entry->fsuuid)) {
Dmitry Kasatkin85865c12012-09-03 23:23:13 +03001386 result = -EINVAL;
1387 break;
1388 }
1389
Christoph Hellwig787d8c52017-06-01 07:00:26 +02001390 result = uuid_parse(args[0].from, &entry->fsuuid);
Mimi Zohar446d64e2013-02-24 23:42:37 -05001391 if (!result)
1392 entry->flags |= IMA_FSUUID;
Dmitry Kasatkin85865c12012-09-03 23:23:13 +03001393 break;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001394 case Opt_uid_gt:
1395 case Opt_euid_gt:
1396 entry->uid_op = &uid_gt;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001397 fallthrough;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001398 case Opt_uid_lt:
1399 case Opt_euid_lt:
1400 if ((token == Opt_uid_lt) || (token == Opt_euid_lt))
1401 entry->uid_op = &uid_lt;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001402 fallthrough;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001403 case Opt_uid_eq:
1404 case Opt_euid_eq:
1405 uid_token = (token == Opt_uid_eq) ||
1406 (token == Opt_uid_gt) ||
1407 (token == Opt_uid_lt);
1408
1409 ima_log_string_op(ab, uid_token ? "uid" : "euid",
1410 args[0].from, entry->uid_op);
Eric Paris7b62e162010-04-20 10:21:01 -04001411
Eric W. Biederman8b94eea2012-05-25 18:24:12 -06001412 if (uid_valid(entry->uid)) {
Eric Paris7b62e162010-04-20 10:21:01 -04001413 result = -EINVAL;
1414 break;
1415 }
1416
Jingoo Han29707b22014-02-05 15:13:14 +09001417 result = kstrtoul(args[0].from, 10, &lnum);
Mimi Zohar4af46622009-02-04 09:07:00 -05001418 if (!result) {
Mimi Zohar139069e2014-11-05 07:48:36 -05001419 entry->uid = make_kuid(current_user_ns(),
1420 (uid_t) lnum);
1421 if (!uid_valid(entry->uid) ||
1422 (uid_t)lnum != lnum)
Mimi Zohar4af46622009-02-04 09:07:00 -05001423 result = -EINVAL;
1424 else
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001425 entry->flags |= uid_token
Mimi Zohar139069e2014-11-05 07:48:36 -05001426 ? IMA_UID : IMA_EUID;
Mimi Zohar4af46622009-02-04 09:07:00 -05001427 }
1428 break;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001429 case Opt_fowner_gt:
1430 entry->fowner_op = &uid_gt;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001431 fallthrough;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001432 case Opt_fowner_lt:
1433 if (token == Opt_fowner_lt)
1434 entry->fowner_op = &uid_lt;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001435 fallthrough;
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001436 case Opt_fowner_eq:
1437 ima_log_string_op(ab, "fowner", args[0].from,
1438 entry->fowner_op);
Mimi Zohar07f6a792011-03-09 22:25:48 -05001439
Linus Torvalds882653222012-10-02 21:38:48 -07001440 if (uid_valid(entry->fowner)) {
Mimi Zohar07f6a792011-03-09 22:25:48 -05001441 result = -EINVAL;
1442 break;
1443 }
1444
Jingoo Han29707b22014-02-05 15:13:14 +09001445 result = kstrtoul(args[0].from, 10, &lnum);
Mimi Zohar07f6a792011-03-09 22:25:48 -05001446 if (!result) {
Linus Torvalds882653222012-10-02 21:38:48 -07001447 entry->fowner = make_kuid(current_user_ns(), (uid_t)lnum);
1448 if (!uid_valid(entry->fowner) || (((uid_t)lnum) != lnum))
Mimi Zohar07f6a792011-03-09 22:25:48 -05001449 result = -EINVAL;
1450 else
1451 entry->flags |= IMA_FOWNER;
1452 }
1453 break;
Mimi Zohar4af46622009-02-04 09:07:00 -05001454 case Opt_obj_user:
Eric Paris2f1506c2010-04-20 10:21:30 -04001455 ima_log_string(ab, "obj_user", args[0].from);
Mimi Zohar7163a992013-01-03 14:19:09 -05001456 result = ima_lsm_rule_init(entry, args,
Mimi Zohar4af46622009-02-04 09:07:00 -05001457 LSM_OBJ_USER,
1458 AUDIT_OBJ_USER);
1459 break;
1460 case Opt_obj_role:
Eric Paris2f1506c2010-04-20 10:21:30 -04001461 ima_log_string(ab, "obj_role", args[0].from);
Mimi Zohar7163a992013-01-03 14:19:09 -05001462 result = ima_lsm_rule_init(entry, args,
Mimi Zohar4af46622009-02-04 09:07:00 -05001463 LSM_OBJ_ROLE,
1464 AUDIT_OBJ_ROLE);
1465 break;
1466 case Opt_obj_type:
Eric Paris2f1506c2010-04-20 10:21:30 -04001467 ima_log_string(ab, "obj_type", args[0].from);
Mimi Zohar7163a992013-01-03 14:19:09 -05001468 result = ima_lsm_rule_init(entry, args,
Mimi Zohar4af46622009-02-04 09:07:00 -05001469 LSM_OBJ_TYPE,
1470 AUDIT_OBJ_TYPE);
1471 break;
1472 case Opt_subj_user:
Eric Paris2f1506c2010-04-20 10:21:30 -04001473 ima_log_string(ab, "subj_user", args[0].from);
Mimi Zohar7163a992013-01-03 14:19:09 -05001474 result = ima_lsm_rule_init(entry, args,
Mimi Zohar4af46622009-02-04 09:07:00 -05001475 LSM_SUBJ_USER,
1476 AUDIT_SUBJ_USER);
1477 break;
1478 case Opt_subj_role:
Eric Paris2f1506c2010-04-20 10:21:30 -04001479 ima_log_string(ab, "subj_role", args[0].from);
Mimi Zohar7163a992013-01-03 14:19:09 -05001480 result = ima_lsm_rule_init(entry, args,
Mimi Zohar4af46622009-02-04 09:07:00 -05001481 LSM_SUBJ_ROLE,
1482 AUDIT_SUBJ_ROLE);
1483 break;
1484 case Opt_subj_type:
Eric Paris2f1506c2010-04-20 10:21:30 -04001485 ima_log_string(ab, "subj_type", args[0].from);
Mimi Zohar7163a992013-01-03 14:19:09 -05001486 result = ima_lsm_rule_init(entry, args,
Mimi Zohar4af46622009-02-04 09:07:00 -05001487 LSM_SUBJ_TYPE,
1488 AUDIT_SUBJ_TYPE);
1489 break;
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +03001490 case Opt_appraise_type:
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +03001491 ima_log_string(ab, "appraise_type", args[0].from);
1492 if ((strcmp(args[0].from, "imasig")) == 0)
1493 entry->flags |= IMA_DIGSIG_REQUIRED;
Tyler Hicks30031b02020-07-09 01:19:09 -05001494 else if (IS_ENABLED(CONFIG_IMA_APPRAISE_MODSIG) &&
Thiago Jung Bauermann9044d622019-06-27 23:19:28 -03001495 strcmp(args[0].from, "imasig|modsig") == 0)
1496 entry->flags |= IMA_DIGSIG_REQUIRED |
1497 IMA_MODSIG_ALLOWED;
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +03001498 else
1499 result = -EINVAL;
1500 break;
Nayna Jain273df862019-10-30 23:31:32 -04001501 case Opt_appraise_flag:
1502 ima_log_string(ab, "appraise_flag", args[0].from);
Tyler Hicks5f3e9262020-07-09 01:19:06 -05001503 if (IS_ENABLED(CONFIG_IMA_APPRAISE_MODSIG) &&
1504 strstr(args[0].from, "blacklist"))
Nayna Jain273df862019-10-30 23:31:32 -04001505 entry->flags |= IMA_CHECK_BLACKLIST;
Tyler Hicks5f3e9262020-07-09 01:19:06 -05001506 else
1507 result = -EINVAL;
Nayna Jain273df862019-10-30 23:31:32 -04001508 break;
Mimi Zoharf9b2a732014-05-12 09:28:11 -04001509 case Opt_permit_directio:
1510 entry->flags |= IMA_PERMIT_DIRECTIO;
1511 break;
Eric Richter02606432016-06-01 13:14:01 -05001512 case Opt_pcr:
Eric Richter02606432016-06-01 13:14:01 -05001513 ima_log_string(ab, "pcr", args[0].from);
1514
1515 result = kstrtoint(args[0].from, 10, &entry->pcr);
1516 if (result || INVALID_PCR(entry->pcr))
1517 result = -EINVAL;
1518 else
1519 entry->flags |= IMA_PCR;
1520
1521 break;
Matthew Garrett19453ce02019-06-19 15:46:11 -07001522 case Opt_template:
1523 ima_log_string(ab, "template", args[0].from);
1524 if (entry->action != MEASURE) {
1525 result = -EINVAL;
1526 break;
1527 }
1528 template_desc = lookup_template_desc(args[0].from);
1529 if (!template_desc || entry->template) {
1530 result = -EINVAL;
1531 break;
1532 }
1533
1534 /*
1535 * template_desc_init_fields() does nothing if
1536 * the template is already initialised, so
1537 * it's safe to do this unconditionally
1538 */
1539 template_desc_init_fields(template_desc->fmt,
1540 &(template_desc->fields),
1541 &(template_desc->num_fields));
1542 entry->template = template_desc;
1543 break;
Mimi Zohar4af46622009-02-04 09:07:00 -05001544 case Opt_err:
Eric Paris2f1506c2010-04-20 10:21:30 -04001545 ima_log_string(ab, "UNKNOWN", p);
Eric Parise9d393b2010-04-20 10:21:13 -04001546 result = -EINVAL;
Mimi Zohar4af46622009-02-04 09:07:00 -05001547 break;
1548 }
1549 }
Tyler Hicks712183432020-07-09 01:19:03 -05001550 if (!result && !ima_validate_rule(entry))
Mimi Zohar4af46622009-02-04 09:07:00 -05001551 result = -EINVAL;
Mimi Zohar6f0911a2018-04-12 00:15:22 -04001552 else if (entry->action == APPRAISE)
1553 temp_ima_appraise |= ima_appraise_flag(entry->func);
1554
Thiago Jung Bauermann3878d502019-06-27 23:19:32 -03001555 if (!result && entry->flags & IMA_MODSIG_ALLOWED) {
1556 template_desc = entry->template ? entry->template :
1557 ima_template_desc_current();
1558 check_template_modsig(template_desc);
1559 }
1560
Eric Parisb0d5de42012-02-14 17:11:07 -05001561 audit_log_format(ab, "res=%d", !result);
Mimi Zohar4af46622009-02-04 09:07:00 -05001562 audit_log_end(ab);
1563 return result;
1564}
1565
1566/**
Mimi Zohar07f6a792011-03-09 22:25:48 -05001567 * ima_parse_add_rule - add a rule to ima_policy_rules
Mimi Zohar4af46622009-02-04 09:07:00 -05001568 * @rule - ima measurement policy rule
1569 *
Petko Manolov38d859f2015-12-02 17:47:54 +02001570 * Avoid locking by allowing just one writer at a time in ima_write_policy()
Eric Paris6ccd0452010-04-20 10:20:54 -04001571 * Returns the length of the rule parsed, an error code on failure
Mimi Zohar4af46622009-02-04 09:07:00 -05001572 */
Eric Paris6ccd0452010-04-20 10:20:54 -04001573ssize_t ima_parse_add_rule(char *rule)
Mimi Zohar4af46622009-02-04 09:07:00 -05001574{
Mimi Zohar52a13282013-12-11 14:44:04 -05001575 static const char op[] = "update_policy";
Eric Paris6ccd0452010-04-20 10:20:54 -04001576 char *p;
Mimi Zohar07f6a792011-03-09 22:25:48 -05001577 struct ima_rule_entry *entry;
Eric Paris6ccd0452010-04-20 10:20:54 -04001578 ssize_t result, len;
Mimi Zohar4af46622009-02-04 09:07:00 -05001579 int audit_info = 0;
1580
Dmitry Kasatkin272a6e92014-10-03 14:40:19 +03001581 p = strsep(&rule, "\n");
1582 len = strlen(p) + 1;
Dmitry Kasatkin71787842014-10-03 14:40:20 +03001583 p += strspn(p, " \t");
Dmitry Kasatkin272a6e92014-10-03 14:40:19 +03001584
Dmitry Kasatkin71787842014-10-03 14:40:20 +03001585 if (*p == '#' || *p == '\0')
Dmitry Kasatkin272a6e92014-10-03 14:40:19 +03001586 return len;
1587
Mimi Zohar4af46622009-02-04 09:07:00 -05001588 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
1589 if (!entry) {
1590 integrity_audit_msg(AUDIT_INTEGRITY_STATUS, NULL,
1591 NULL, op, "-ENOMEM", -ENOMEM, audit_info);
1592 return -ENOMEM;
1593 }
1594
1595 INIT_LIST_HEAD(&entry->list);
1596
Eric Paris6ccd0452010-04-20 10:20:54 -04001597 result = ima_parse_rule(p, entry);
Eric Paris7233e3e2010-04-20 10:21:24 -04001598 if (result) {
Tyler Hicks2bdd7372020-07-09 01:19:02 -05001599 ima_free_rule(entry);
Mimi Zohar523979a2009-02-11 11:12:28 -05001600 integrity_audit_msg(AUDIT_INTEGRITY_STATUS, NULL,
Richard Guy Briggs7e9001f2014-06-16 15:52:07 -04001601 NULL, op, "invalid-policy", result,
Mimi Zohar523979a2009-02-11 11:12:28 -05001602 audit_info);
Eric Paris7233e3e2010-04-20 10:21:24 -04001603 return result;
Mimi Zohar523979a2009-02-11 11:12:28 -05001604 }
Eric Paris7233e3e2010-04-20 10:21:24 -04001605
Petko Manolov38d859f2015-12-02 17:47:54 +02001606 list_add_tail(&entry->list, &ima_temp_rules);
Eric Paris7233e3e2010-04-20 10:21:24 -04001607
1608 return len;
Mimi Zohar4af46622009-02-04 09:07:00 -05001609}
1610
Petko Manolov38d859f2015-12-02 17:47:54 +02001611/**
1612 * ima_delete_rules() called to cleanup invalid in-flight policy.
1613 * We don't need locking as we operate on the temp list, which is
1614 * different from the active one. There is also only one user of
1615 * ima_delete_rules() at a time.
1616 */
James Morris64c61d82009-02-05 09:28:26 +11001617void ima_delete_rules(void)
Mimi Zohar4af46622009-02-04 09:07:00 -05001618{
Mimi Zohar07f6a792011-03-09 22:25:48 -05001619 struct ima_rule_entry *entry, *tmp;
Mimi Zohar4af46622009-02-04 09:07:00 -05001620
Mimi Zohar6ad6afa2015-12-07 14:35:47 -05001621 temp_ima_appraise = 0;
Petko Manolov38d859f2015-12-02 17:47:54 +02001622 list_for_each_entry_safe(entry, tmp, &ima_temp_rules, list) {
Mimi Zohar4af46622009-02-04 09:07:00 -05001623 list_del(&entry->list);
Tyler Hicks465aee72020-07-09 01:19:01 -05001624 ima_free_rule(entry);
Mimi Zohar4af46622009-02-04 09:07:00 -05001625 }
Mimi Zohar4af46622009-02-04 09:07:00 -05001626}
Petko Manolov80eae202015-12-02 17:47:56 +02001627
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -07001628#define __ima_hook_stringify(func, str) (#func),
Thiago Jung Bauermann39b07092019-06-27 23:19:30 -03001629
1630const char *const func_tokens[] = {
1631 __ima_hooks(__ima_hook_stringify)
1632};
1633
Petko Manolov80eae202015-12-02 17:47:56 +02001634#ifdef CONFIG_IMA_READ_POLICY
1635enum {
1636 mask_exec = 0, mask_write, mask_read, mask_append
1637};
1638
Thiago Jung Bauermannbb543e32017-06-07 22:49:10 -03001639static const char *const mask_tokens[] = {
Roberto Sassu8cdc23a2019-05-29 15:30:35 +02001640 "^MAY_EXEC",
1641 "^MAY_WRITE",
1642 "^MAY_READ",
1643 "^MAY_APPEND"
Petko Manolov80eae202015-12-02 17:47:56 +02001644};
1645
Petko Manolov80eae202015-12-02 17:47:56 +02001646void *ima_policy_start(struct seq_file *m, loff_t *pos)
1647{
1648 loff_t l = *pos;
1649 struct ima_rule_entry *entry;
1650
1651 rcu_read_lock();
1652 list_for_each_entry_rcu(entry, ima_rules, list) {
1653 if (!l--) {
1654 rcu_read_unlock();
1655 return entry;
1656 }
1657 }
1658 rcu_read_unlock();
1659 return NULL;
1660}
1661
1662void *ima_policy_next(struct seq_file *m, void *v, loff_t *pos)
1663{
1664 struct ima_rule_entry *entry = v;
1665
1666 rcu_read_lock();
1667 entry = list_entry_rcu(entry->list.next, struct ima_rule_entry, list);
1668 rcu_read_unlock();
1669 (*pos)++;
1670
1671 return (&entry->list == ima_rules) ? NULL : entry;
1672}
1673
1674void ima_policy_stop(struct seq_file *m, void *v)
1675{
1676}
1677
Mimi Zohar1a9430d2018-12-17 19:14:49 -05001678#define pt(token) policy_tokens[token].pattern
Petko Manolov80eae202015-12-02 17:47:56 +02001679#define mt(token) mask_tokens[token]
Petko Manolov80eae202015-12-02 17:47:56 +02001680
Mimi Zoharb5269ab2016-01-28 13:10:36 -05001681/*
1682 * policy_func_show - display the ima_hooks policy rule
1683 */
1684static void policy_func_show(struct seq_file *m, enum ima_hooks func)
1685{
Thiago Jung Bauermann26632182017-06-07 22:49:11 -03001686 if (func > 0 && func < MAX_CHECK)
1687 seq_printf(m, "func=%s ", func_tokens[func]);
1688 else
1689 seq_printf(m, "func=%d ", func);
Mimi Zoharb5269ab2016-01-28 13:10:36 -05001690}
1691
Tyler Hicks176377d2020-08-11 14:26:20 -05001692static void ima_show_rule_opt_list(struct seq_file *m,
1693 const struct ima_rule_opt_list *opt_list)
1694{
1695 size_t i;
1696
1697 for (i = 0; i < opt_list->count; i++)
1698 seq_printf(m, "%s%s", i ? "|" : "", opt_list->items[i]);
1699}
1700
Petko Manolov80eae202015-12-02 17:47:56 +02001701int ima_policy_show(struct seq_file *m, void *v)
1702{
1703 struct ima_rule_entry *entry = v;
Andy Shevchenkob8b57272016-05-20 17:00:57 -07001704 int i;
Petko Manolov80eae202015-12-02 17:47:56 +02001705 char tbuf[64] = {0,};
Roberto Sassu8cdc23a2019-05-29 15:30:35 +02001706 int offset = 0;
Petko Manolov80eae202015-12-02 17:47:56 +02001707
1708 rcu_read_lock();
1709
1710 if (entry->action & MEASURE)
1711 seq_puts(m, pt(Opt_measure));
1712 if (entry->action & DONT_MEASURE)
1713 seq_puts(m, pt(Opt_dont_measure));
1714 if (entry->action & APPRAISE)
1715 seq_puts(m, pt(Opt_appraise));
1716 if (entry->action & DONT_APPRAISE)
1717 seq_puts(m, pt(Opt_dont_appraise));
1718 if (entry->action & AUDIT)
1719 seq_puts(m, pt(Opt_audit));
Mimi Zoharda1b0022016-09-29 10:04:52 -04001720 if (entry->action & HASH)
1721 seq_puts(m, pt(Opt_hash));
1722 if (entry->action & DONT_HASH)
1723 seq_puts(m, pt(Opt_dont_hash));
Petko Manolov80eae202015-12-02 17:47:56 +02001724
1725 seq_puts(m, " ");
1726
Mimi Zoharb5269ab2016-01-28 13:10:36 -05001727 if (entry->flags & IMA_FUNC)
1728 policy_func_show(m, entry->func);
Petko Manolov80eae202015-12-02 17:47:56 +02001729
Roberto Sassu8cdc23a2019-05-29 15:30:35 +02001730 if ((entry->flags & IMA_MASK) || (entry->flags & IMA_INMASK)) {
1731 if (entry->flags & IMA_MASK)
1732 offset = 1;
Petko Manolov80eae202015-12-02 17:47:56 +02001733 if (entry->mask & MAY_EXEC)
Roberto Sassu8cdc23a2019-05-29 15:30:35 +02001734 seq_printf(m, pt(Opt_mask), mt(mask_exec) + offset);
Petko Manolov80eae202015-12-02 17:47:56 +02001735 if (entry->mask & MAY_WRITE)
Roberto Sassu8cdc23a2019-05-29 15:30:35 +02001736 seq_printf(m, pt(Opt_mask), mt(mask_write) + offset);
Petko Manolov80eae202015-12-02 17:47:56 +02001737 if (entry->mask & MAY_READ)
Roberto Sassu8cdc23a2019-05-29 15:30:35 +02001738 seq_printf(m, pt(Opt_mask), mt(mask_read) + offset);
Petko Manolov80eae202015-12-02 17:47:56 +02001739 if (entry->mask & MAY_APPEND)
Roberto Sassu8cdc23a2019-05-29 15:30:35 +02001740 seq_printf(m, pt(Opt_mask), mt(mask_append) + offset);
Petko Manolov80eae202015-12-02 17:47:56 +02001741 seq_puts(m, " ");
1742 }
1743
1744 if (entry->flags & IMA_FSMAGIC) {
1745 snprintf(tbuf, sizeof(tbuf), "0x%lx", entry->fsmagic);
1746 seq_printf(m, pt(Opt_fsmagic), tbuf);
1747 seq_puts(m, " ");
1748 }
1749
Mimi Zoharf1b08bb2018-01-15 11:20:36 -05001750 if (entry->flags & IMA_FSNAME) {
1751 snprintf(tbuf, sizeof(tbuf), "%s", entry->fsname);
1752 seq_printf(m, pt(Opt_fsname), tbuf);
1753 seq_puts(m, " ");
1754 }
1755
Lakshmi Ramasubramanian2b60c0e2019-12-11 08:47:07 -08001756 if (entry->flags & IMA_KEYRINGS) {
Tyler Hicks176377d2020-08-11 14:26:20 -05001757 seq_puts(m, "keyrings=");
1758 ima_show_rule_opt_list(m, entry->keyrings);
Lakshmi Ramasubramanian2b60c0e2019-12-11 08:47:07 -08001759 seq_puts(m, " ");
1760 }
1761
Tushar Sugandhi47d76a42021-01-07 20:07:05 -08001762 if (entry->flags & IMA_LABEL) {
1763 seq_puts(m, "label=");
1764 ima_show_rule_opt_list(m, entry->label);
1765 seq_puts(m, " ");
1766 }
1767
Eric Richter02606432016-06-01 13:14:01 -05001768 if (entry->flags & IMA_PCR) {
1769 snprintf(tbuf, sizeof(tbuf), "%d", entry->pcr);
1770 seq_printf(m, pt(Opt_pcr), tbuf);
1771 seq_puts(m, " ");
1772 }
1773
Petko Manolov80eae202015-12-02 17:47:56 +02001774 if (entry->flags & IMA_FSUUID) {
Christoph Hellwig787d8c52017-06-01 07:00:26 +02001775 seq_printf(m, "fsuuid=%pU", &entry->fsuuid);
Petko Manolov80eae202015-12-02 17:47:56 +02001776 seq_puts(m, " ");
1777 }
1778
1779 if (entry->flags & IMA_UID) {
1780 snprintf(tbuf, sizeof(tbuf), "%d", __kuid_val(entry->uid));
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001781 if (entry->uid_op == &uid_gt)
1782 seq_printf(m, pt(Opt_uid_gt), tbuf);
1783 else if (entry->uid_op == &uid_lt)
1784 seq_printf(m, pt(Opt_uid_lt), tbuf);
1785 else
1786 seq_printf(m, pt(Opt_uid_eq), tbuf);
Petko Manolov80eae202015-12-02 17:47:56 +02001787 seq_puts(m, " ");
1788 }
1789
1790 if (entry->flags & IMA_EUID) {
1791 snprintf(tbuf, sizeof(tbuf), "%d", __kuid_val(entry->uid));
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001792 if (entry->uid_op == &uid_gt)
1793 seq_printf(m, pt(Opt_euid_gt), tbuf);
1794 else if (entry->uid_op == &uid_lt)
1795 seq_printf(m, pt(Opt_euid_lt), tbuf);
1796 else
1797 seq_printf(m, pt(Opt_euid_eq), tbuf);
Petko Manolov80eae202015-12-02 17:47:56 +02001798 seq_puts(m, " ");
1799 }
1800
1801 if (entry->flags & IMA_FOWNER) {
1802 snprintf(tbuf, sizeof(tbuf), "%d", __kuid_val(entry->fowner));
Mikhail Kurinnoi3dd0c8d2017-01-27 19:23:01 +03001803 if (entry->fowner_op == &uid_gt)
1804 seq_printf(m, pt(Opt_fowner_gt), tbuf);
1805 else if (entry->fowner_op == &uid_lt)
1806 seq_printf(m, pt(Opt_fowner_lt), tbuf);
1807 else
1808 seq_printf(m, pt(Opt_fowner_eq), tbuf);
Petko Manolov80eae202015-12-02 17:47:56 +02001809 seq_puts(m, " ");
1810 }
1811
1812 for (i = 0; i < MAX_LSM_RULES; i++) {
1813 if (entry->lsm[i].rule) {
1814 switch (i) {
1815 case LSM_OBJ_USER:
1816 seq_printf(m, pt(Opt_obj_user),
Tyler Hicksaa0c0222020-07-09 01:19:08 -05001817 entry->lsm[i].args_p);
Petko Manolov80eae202015-12-02 17:47:56 +02001818 break;
1819 case LSM_OBJ_ROLE:
1820 seq_printf(m, pt(Opt_obj_role),
Tyler Hicksaa0c0222020-07-09 01:19:08 -05001821 entry->lsm[i].args_p);
Petko Manolov80eae202015-12-02 17:47:56 +02001822 break;
1823 case LSM_OBJ_TYPE:
1824 seq_printf(m, pt(Opt_obj_type),
Tyler Hicksaa0c0222020-07-09 01:19:08 -05001825 entry->lsm[i].args_p);
Petko Manolov80eae202015-12-02 17:47:56 +02001826 break;
1827 case LSM_SUBJ_USER:
1828 seq_printf(m, pt(Opt_subj_user),
Tyler Hicksaa0c0222020-07-09 01:19:08 -05001829 entry->lsm[i].args_p);
Petko Manolov80eae202015-12-02 17:47:56 +02001830 break;
1831 case LSM_SUBJ_ROLE:
1832 seq_printf(m, pt(Opt_subj_role),
Tyler Hicksaa0c0222020-07-09 01:19:08 -05001833 entry->lsm[i].args_p);
Petko Manolov80eae202015-12-02 17:47:56 +02001834 break;
1835 case LSM_SUBJ_TYPE:
1836 seq_printf(m, pt(Opt_subj_type),
Tyler Hicksaa0c0222020-07-09 01:19:08 -05001837 entry->lsm[i].args_p);
Petko Manolov80eae202015-12-02 17:47:56 +02001838 break;
1839 }
Clay Chang5350ceb2020-01-05 09:18:13 +08001840 seq_puts(m, " ");
Petko Manolov80eae202015-12-02 17:47:56 +02001841 }
1842 }
Matthew Garrett19453ce02019-06-19 15:46:11 -07001843 if (entry->template)
1844 seq_printf(m, "template=%s ", entry->template->name);
Thiago Jung Bauermann9044d622019-06-27 23:19:28 -03001845 if (entry->flags & IMA_DIGSIG_REQUIRED) {
1846 if (entry->flags & IMA_MODSIG_ALLOWED)
1847 seq_puts(m, "appraise_type=imasig|modsig ");
1848 else
1849 seq_puts(m, "appraise_type=imasig ");
1850 }
Nayna Jain273df862019-10-30 23:31:32 -04001851 if (entry->flags & IMA_CHECK_BLACKLIST)
1852 seq_puts(m, "appraise_flag=check_blacklist ");
Petko Manolov80eae202015-12-02 17:47:56 +02001853 if (entry->flags & IMA_PERMIT_DIRECTIO)
1854 seq_puts(m, "permit_directio ");
1855 rcu_read_unlock();
1856 seq_puts(m, "\n");
1857 return 0;
1858}
1859#endif /* CONFIG_IMA_READ_POLICY */
Matthew Garrett29d3c1c2019-08-19 17:18:01 -07001860
1861#if defined(CONFIG_IMA_APPRAISE) && defined(CONFIG_INTEGRITY_TRUSTED_KEYRING)
1862/*
1863 * ima_appraise_signature: whether IMA will appraise a given function using
1864 * an IMA digital signature. This is restricted to cases where the kernel
1865 * has a set of built-in trusted keys in order to avoid an attacker simply
1866 * loading additional keys.
1867 */
1868bool ima_appraise_signature(enum kernel_read_file_id id)
1869{
1870 struct ima_rule_entry *entry;
1871 bool found = false;
1872 enum ima_hooks func;
1873
1874 if (id >= READING_MAX_ID)
1875 return false;
1876
1877 func = read_idmap[id] ?: FILE_CHECK;
1878
1879 rcu_read_lock();
1880 list_for_each_entry_rcu(entry, ima_rules, list) {
1881 if (entry->action != APPRAISE)
1882 continue;
1883
1884 /*
1885 * A generic entry will match, but otherwise require that it
1886 * match the func we're looking for
1887 */
1888 if (entry->func && entry->func != func)
1889 continue;
1890
1891 /*
1892 * We require this to be a digital signature, not a raw IMA
1893 * hash.
1894 */
1895 if (entry->flags & IMA_DIGSIG_REQUIRED)
1896 found = true;
1897
1898 /*
1899 * We've found a rule that matches, so break now even if it
1900 * didn't require a digital signature - a later rule that does
1901 * won't override it, so would be a false positive.
1902 */
1903 break;
1904 }
1905
1906 rcu_read_unlock();
1907 return found;
1908}
1909#endif /* CONFIG_IMA_APPRAISE && CONFIG_INTEGRITY_TRUSTED_KEYRING */