blob: 8c6e4514d4944c0ba7c3081733846ffde70d2f63 [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/*
Paul Gortmaker4f83d5e2018-12-09 15:36:33 -05003 * Integrity Measurement Architecture
4 *
Mimi Zohar3323eec2009-02-04 09:06:58 -05005 * Copyright (C) 2005,2006,2007,2008 IBM Corporation
6 *
7 * Authors:
8 * Reiner Sailer <sailer@watson.ibm.com>
9 * Serge Hallyn <serue@us.ibm.com>
10 * Kylene Hall <kylene@us.ibm.com>
11 * Mimi Zohar <zohar@us.ibm.com>
12 *
Mimi Zohar3323eec2009-02-04 09:06:58 -050013 * File: ima_main.c
Eric Parise0d5bd22009-12-04 15:48:00 -050014 * implements the IMA hooks: ima_bprm_check, ima_file_mmap,
Mimi Zohar9bbb6ca2010-01-26 17:02:40 -050015 * and ima_file_check.
Mimi Zohar3323eec2009-02-04 09:06:58 -050016 */
Petr Vorelab603682018-03-23 14:41:08 +010017
Paul Gortmakerb49d5642018-12-14 16:48:07 -050018#include <linux/module.h>
Mimi Zohar3323eec2009-02-04 09:06:58 -050019#include <linux/file.h>
20#include <linux/binfmts.h>
Scott Brandenb89999d02020-10-02 10:38:15 -070021#include <linux/kernel_read_file.h>
Mimi Zohar3323eec2009-02-04 09:06:58 -050022#include <linux/mount.h>
23#include <linux/mman.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -050025#include <linux/xattr.h>
James Morrisd5813a52011-08-30 10:19:50 +100026#include <linux/ima.h>
Jeff Layton3b370b22017-12-11 06:35:21 -050027#include <linux/iversion.h>
Mimi Zohard77ccdc2018-02-21 11:35:20 -050028#include <linux/fs.h>
Mimi Zohar3323eec2009-02-04 09:06:58 -050029
30#include "ima.h"
31
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -050032#ifdef CONFIG_IMA_APPRAISE
33int ima_appraise = IMA_APPRAISE_ENFORCE;
34#else
35int ima_appraise;
36#endif
37
Roberto Sassu5d1ef2c2021-07-23 10:53:02 +020038int __ro_after_init ima_hash_algo = HASH_ALGO_SHA1;
Mimi Zohare7a2ad72013-06-07 12:16:37 +020039static int hash_setup_done;
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +030040
Janne Karhunenb1694242019-06-14 15:20:15 +030041static struct notifier_block ima_lsm_policy_notifier = {
42 .notifier_call = ima_lsm_policy_change,
43};
44
Mimi Zohar3323eec2009-02-04 09:06:58 -050045static int __init hash_setup(char *str)
46{
Mimi Zohare7a2ad72013-06-07 12:16:37 +020047 struct ima_template_desc *template_desc = ima_template_desc_current();
48 int i;
49
50 if (hash_setup_done)
51 return 1;
52
53 if (strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) == 0) {
Bruno Meneguele7fe2bb72020-09-04 16:40:58 -030054 if (strncmp(str, "sha1", 4) == 0) {
Mimi Zohare7a2ad72013-06-07 12:16:37 +020055 ima_hash_algo = HASH_ALGO_SHA1;
Bruno Meneguele7fe2bb72020-09-04 16:40:58 -030056 } else if (strncmp(str, "md5", 3) == 0) {
Mimi Zohare7a2ad72013-06-07 12:16:37 +020057 ima_hash_algo = HASH_ALGO_MD5;
Bruno Meneguele7fe2bb72020-09-04 16:40:58 -030058 } else {
59 pr_err("invalid hash algorithm \"%s\" for template \"%s\"",
60 str, IMA_TEMPLATE_IMA_NAME);
Boshi Wangebe7c0a2017-10-20 16:01:03 +080061 return 1;
Bruno Meneguele7fe2bb72020-09-04 16:40:58 -030062 }
Mimi Zohare7a2ad72013-06-07 12:16:37 +020063 goto out;
64 }
65
Yisheng Xieb4df8602018-05-21 19:58:02 +080066 i = match_string(hash_algo_name, HASH_ALGO__LAST, str);
Bruno Meneguele7fe2bb72020-09-04 16:40:58 -030067 if (i < 0) {
68 pr_err("invalid hash algorithm \"%s\"", str);
Boshi Wangebe7c0a2017-10-20 16:01:03 +080069 return 1;
Bruno Meneguele7fe2bb72020-09-04 16:40:58 -030070 }
Yisheng Xieb4df8602018-05-21 19:58:02 +080071
72 ima_hash_algo = i;
Mimi Zohare7a2ad72013-06-07 12:16:37 +020073out:
74 hash_setup_done = 1;
Mimi Zohar3323eec2009-02-04 09:06:58 -050075 return 1;
76}
77__setup("ima_hash=", hash_setup);
78
Roberto Sassu5d1ef2c2021-07-23 10:53:02 +020079enum hash_algo ima_get_current_hash_algo(void)
80{
81 return ima_hash_algo;
82}
83
Mimi Zohar2cd47372019-04-30 08:34:44 -040084/* Prevent mmap'ing a file execute that is already mmap'ed write */
85static int mmap_violation_check(enum ima_hooks func, struct file *file,
86 char **pathbuf, const char **pathname,
87 char *filename)
88{
89 struct inode *inode;
90 int rc = 0;
91
92 if ((func == MMAP_CHECK) && mapping_writably_mapped(file->f_mapping)) {
93 rc = -ETXTBSY;
94 inode = file_inode(file);
95
96 if (!*pathbuf) /* ima_rdwr_violation possibly pre-fetched */
97 *pathname = ima_d_path(&file->f_path, pathbuf,
98 filename);
99 integrity_audit_msg(AUDIT_INTEGRITY_DATA, inode, *pathname,
100 "mmap_file", "mmapped_writers", rc, 0);
101 }
102 return rc;
103}
104
Eric Parise0d5bd22009-12-04 15:48:00 -0500105/*
Mimi Zohar890275b52010-11-02 10:13:07 -0400106 * ima_rdwr_violation_check
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500107 *
Mimi Zohar890275b52010-11-02 10:13:07 -0400108 * Only invalidate the PCR for measured files:
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200109 * - Opening a file for write when already open for read,
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500110 * results in a time of measure, time of use (ToMToU) error.
111 * - Opening a file for read when already open for write,
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200112 * could result in a file measurement error.
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500113 *
114 */
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200115static void ima_rdwr_violation_check(struct file *file,
116 struct integrity_iint_cache *iint,
Roberto Sassu1b68bdf2014-09-12 19:35:56 +0200117 int must_measure,
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200118 char **pathbuf,
Roberto Sassu4e8581e2017-11-30 11:56:02 +0100119 const char **pathname,
120 char *filename)
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500121{
David Howellsc77cece2013-06-13 23:37:49 +0100122 struct inode *inode = file_inode(file);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500123 fmode_t mode = file->f_mode;
Eric Parisad16ad02010-10-25 14:41:45 -0400124 bool send_tomtou = false, send_writers = false;
Eric Parisa178d202010-10-25 14:41:59 -0400125
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500126 if (mode & FMODE_WRITE) {
Dmitry Kasatkin14503eb2014-03-27 10:29:28 +0200127 if (atomic_read(&inode->i_readcount) && IS_IMA(inode)) {
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200128 if (!iint)
129 iint = integrity_iint_find(inode);
Dmitry Kasatkin14503eb2014-03-27 10:29:28 +0200130 /* IMA_MEASURE is set from reader side */
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200131 if (iint && test_bit(IMA_MUST_MEASURE,
132 &iint->atomic_flags))
Dmitry Kasatkin14503eb2014-03-27 10:29:28 +0200133 send_tomtou = true;
134 }
Dmitry Kasatkinb882fae2014-03-27 10:54:11 +0200135 } else {
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200136 if (must_measure)
137 set_bit(IMA_MUST_MEASURE, &iint->atomic_flags);
Nikolay Borisoveed9de32018-12-11 10:31:40 +0200138 if (inode_is_open_for_write(inode) && must_measure)
Dmitry Kasatkinb882fae2014-03-27 10:54:11 +0200139 send_writers = true;
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500140 }
Eric Parisad16ad02010-10-25 14:41:45 -0400141
Mimi Zohar08e1b762012-06-20 09:32:55 -0400142 if (!send_tomtou && !send_writers)
143 return;
144
Mimi Zoharbc15ed62017-01-17 06:45:41 -0500145 *pathname = ima_d_path(&file->f_path, pathbuf, filename);
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300146
Eric Parisad16ad02010-10-25 14:41:45 -0400147 if (send_tomtou)
Roberto Sassu8d94eb92015-04-11 17:12:39 +0200148 ima_add_violation(file, *pathname, iint,
149 "invalid_pcr", "ToMToU");
Eric Parisad16ad02010-10-25 14:41:45 -0400150 if (send_writers)
Roberto Sassu8d94eb92015-04-11 17:12:39 +0200151 ima_add_violation(file, *pathname, iint,
Mimi Zohar08e1b762012-06-20 09:32:55 -0400152 "invalid_pcr", "open_writers");
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500153}
154
Mimi Zoharf381c272011-03-09 14:13:22 -0500155static void ima_check_last_writer(struct integrity_iint_cache *iint,
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500156 struct inode *inode, struct file *file)
Eric Parisbc7d2a32010-10-25 14:42:05 -0400157{
Al Viro4b2a2c62011-07-26 04:30:35 -0400158 fmode_t mode = file->f_mode;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200159 bool update;
Eric Paris497f3232010-10-25 14:41:32 -0400160
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500161 if (!(mode & FMODE_WRITE))
162 return;
163
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200164 mutex_lock(&iint->mutex);
Dmitry Kasatkinb151d6b2014-06-27 18:04:27 +0300165 if (atomic_read(&inode->i_writecount) == 1) {
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200166 update = test_and_clear_bit(IMA_UPDATE_XATTR,
167 &iint->atomic_flags);
Sascha Hauerac0bf022017-12-11 06:35:20 -0500168 if (!IS_I_VERSION(inode) ||
Goffredo Baroncellic472c072018-02-01 08:15:25 -0500169 !inode_eq_iversion(inode, iint->version) ||
Dmitry Kasatkinb151d6b2014-06-27 18:04:27 +0300170 (iint->flags & IMA_NEW_FILE)) {
171 iint->flags &= ~(IMA_DONE_MASK | IMA_NEW_FILE);
Eric Richtera4226382016-06-01 13:14:06 -0500172 iint->measured_pcrs = 0;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200173 if (update)
Dmitry Kasatkinb151d6b2014-06-27 18:04:27 +0300174 ima_update_xattr(iint, file);
175 }
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500176 }
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200177 mutex_unlock(&iint->mutex);
Eric Parisbc7d2a32010-10-25 14:42:05 -0400178}
179
Mimi Zohar3323eec2009-02-04 09:06:58 -0500180/**
181 * ima_file_free - called on __fput()
182 * @file: pointer to file structure being freed
183 *
Mimi Zohar890275b52010-11-02 10:13:07 -0400184 * Flag files that changed, based on i_version
Mimi Zohar3323eec2009-02-04 09:06:58 -0500185 */
186void ima_file_free(struct file *file)
187{
Al Viro496ad9a2013-01-23 17:07:38 -0500188 struct inode *inode = file_inode(file);
Mimi Zoharf381c272011-03-09 14:13:22 -0500189 struct integrity_iint_cache *iint;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500190
Dmitry Kasatkin0f34a002014-09-24 11:05:10 +0300191 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500192 return;
Eric Paris196f5182010-10-25 14:42:19 -0400193
Mimi Zoharf381c272011-03-09 14:13:22 -0500194 iint = integrity_iint_find(inode);
Mimi Zohar854fdd52010-11-02 10:14:22 -0400195 if (!iint)
196 return;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500197
Mimi Zohar854fdd52010-11-02 10:14:22 -0400198 ima_check_last_writer(iint, inode, file);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500199}
200
Matthew Garrettd906c102018-01-08 13:36:20 -0800201static int process_measurement(struct file *file, const struct cred *cred,
202 u32 secid, char *buf, loff_t size, int mask,
Al Viro6035a272018-06-08 13:40:10 -0400203 enum ima_hooks func)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500204{
Al Viro496ad9a2013-01-23 17:07:38 -0500205 struct inode *inode = file_inode(file);
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200206 struct integrity_iint_cache *iint = NULL;
Matthew Garrett19453ce02019-06-19 15:46:11 -0700207 struct ima_template_desc *template_desc = NULL;
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300208 char *pathbuf = NULL;
Mimi Zoharbc15ed62017-01-17 06:45:41 -0500209 char filename[NAME_MAX];
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300210 const char *pathname = NULL;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200211 int rc = 0, action, must_appraise = 0;
Eric Richter725de7f2016-06-01 13:14:02 -0500212 int pcr = CONFIG_IMA_MEASURE_PCR_IDX;
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200213 struct evm_ima_xattr_data *xattr_value = NULL;
Thiago Jung Bauermann39b07092019-06-27 23:19:30 -0300214 struct modsig *modsig = NULL;
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300215 int xattr_len = 0;
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200216 bool violation_check;
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200217 enum hash_algo hash_algo;
THOBY Simon1624dc02021-08-16 08:11:00 +0000218 unsigned int allowed_algos = 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500219
Roberto Sassua7560242014-09-12 19:35:54 +0200220 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500221 return 0;
Eric Parisbc7d2a32010-10-25 14:42:05 -0400222
Mimi Zohard79d72e2012-12-03 17:08:11 -0500223 /* Return an IMA_MEASURE, IMA_APPRAISE, IMA_AUDIT action
224 * bitmask based on the appraise/audit/measurement policy.
225 * Included is the appraise submask.
226 */
Christian Braunera2d23292021-01-21 14:19:45 +0100227 action = ima_get_action(file_mnt_user_ns(file), inode, cred, secid,
THOBY Simon1624dc02021-08-16 08:11:00 +0000228 mask, func, &pcr, &template_desc, NULL,
229 &allowed_algos);
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500230 violation_check = ((func == FILE_CHECK || func == MMAP_CHECK) &&
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200231 (ima_policy_flag & IMA_MEASURE));
232 if (!action && !violation_check)
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500233 return 0;
234
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500235 must_appraise = action & IMA_APPRAISE;
Eric Parisbc7d2a32010-10-25 14:42:05 -0400236
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500237 /* Is the appraise rule hook specific? */
Dmitry Kasatkin3a8a2ea2014-09-03 10:19:57 +0300238 if (action & IMA_FILE_APPRAISE)
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500239 func = FILE_CHECK;
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500240
Al Viro59551022016-01-22 15:40:57 -0500241 inode_lock(inode);
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500242
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200243 if (action) {
244 iint = integrity_inode_get(inode);
245 if (!iint)
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200246 rc = -ENOMEM;
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200247 }
248
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200249 if (!rc && violation_check)
Roberto Sassu1b68bdf2014-09-12 19:35:56 +0200250 ima_rdwr_violation_check(file, iint, action & IMA_MEASURE,
Roberto Sassu4e8581e2017-11-30 11:56:02 +0100251 &pathbuf, &pathname, filename);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200252
253 inode_unlock(inode);
254
255 if (rc)
256 goto out;
257 if (!action)
258 goto out;
259
260 mutex_lock(&iint->mutex);
261
262 if (test_and_clear_bit(IMA_CHANGE_ATTR, &iint->atomic_flags))
263 /* reset appraisal flags if ima_inode_post_setattr was called */
264 iint->flags &= ~(IMA_APPRAISE | IMA_APPRAISED |
265 IMA_APPRAISE_SUBMASK | IMA_APPRAISED_SUBMASK |
266 IMA_ACTION_FLAGS);
267
Mimi Zohard77ccdc2018-02-21 11:35:20 -0500268 /*
269 * Re-evaulate the file if either the xattr has changed or the
270 * kernel has no way of detecting file change on the filesystem.
271 * (Limited to privileged mounted filesystems.)
272 */
273 if (test_and_clear_bit(IMA_CHANGE_XATTR, &iint->atomic_flags) ||
274 ((inode->i_sb->s_iflags & SB_I_IMA_UNVERIFIABLE_SIGNATURE) &&
Mimi Zohar9e670282018-02-21 11:36:32 -0500275 !(inode->i_sb->s_iflags & SB_I_UNTRUSTED_MOUNTER) &&
276 !(action & IMA_FAIL_UNVERIFIABLE_SIGS))) {
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200277 iint->flags &= ~IMA_DONE_MASK;
Mimi Zohard77ccdc2018-02-21 11:35:20 -0500278 iint->measured_pcrs = 0;
279 }
Dmitry Kasatkinbf2276d2011-10-19 12:04:40 +0300280
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500281 /* Determine if already appraised/measured based on bitmask
Mimi Zohard79d72e2012-12-03 17:08:11 -0500282 * (IMA_MEASURE, IMA_MEASURED, IMA_XXXX_APPRAISE, IMA_XXXX_APPRAISED,
283 * IMA_AUDIT, IMA_AUDITED)
284 */
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500285 iint->flags |= action;
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +0300286 action &= IMA_DO_MASK;
Eric Richtera4226382016-06-01 13:14:06 -0500287 action &= ~((iint->flags & (IMA_DONE_MASK ^ IMA_MEASURED)) >> 1);
288
289 /* If target pcr is already measured, unset IMA_MEASURE action */
290 if ((action & IMA_MEASURE) && (iint->measured_pcrs & (0x1 << pcr)))
291 action ^= IMA_MEASURE;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500292
Mimi Zoharda1b0022016-09-29 10:04:52 -0400293 /* HASH sets the digital signature and update flags, nothing else */
294 if ((action & IMA_HASH) &&
295 !(test_bit(IMA_DIGSIG, &iint->atomic_flags))) {
296 xattr_len = ima_read_xattr(file_dentry(file), &xattr_value);
297 if ((xattr_value && xattr_len > 2) &&
298 (xattr_value->type == EVM_IMA_XATTR_DIGSIG))
299 set_bit(IMA_DIGSIG, &iint->atomic_flags);
300 iint->flags |= IMA_HASHED;
301 action ^= IMA_HASH;
302 set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
303 }
304
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500305 /* Nothing to do, just return existing appraised status */
306 if (!action) {
Mimi Zohar2cd47372019-04-30 08:34:44 -0400307 if (must_appraise) {
308 rc = mmap_violation_check(func, file, &pathbuf,
309 &pathname, filename);
310 if (!rc)
311 rc = ima_get_cache_status(iint, func);
312 }
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200313 goto out_locked;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500314 }
Mimi Zohar3323eec2009-02-04 09:06:58 -0500315
Dmitry Kasatkinf68c05f2014-08-22 09:43:55 +0300316 if ((action & IMA_APPRAISE_SUBMASK) ||
Thiago Jung Bauermann39b07092019-06-27 23:19:30 -0300317 strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) != 0) {
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200318 /* read 'security.ima' */
Miklos Szeredie71b9df2016-09-16 12:44:20 +0200319 xattr_len = ima_read_xattr(file_dentry(file), &xattr_value);
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300320
Thiago Jung Bauermanne5092252019-06-27 23:19:33 -0300321 /*
322 * Read the appended modsig if allowed by the policy, and allow
323 * an additional measurement list entry, if needed, based on the
324 * template format and whether the file was already measured.
325 */
326 if (iint->flags & IMA_MODSIG_ALLOWED) {
327 rc = ima_read_modsig(func, buf, size, &modsig);
328
329 if (!rc && ima_template_has_modsig(template_desc) &&
330 iint->flags & IMA_MEASURED)
331 action |= IMA_MEASURE;
332 }
Thiago Jung Bauermann39b07092019-06-27 23:19:30 -0300333 }
334
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200335 hash_algo = ima_get_hash_algo(xattr_value, xattr_len);
336
Thiago Jung Bauermann15588222019-06-27 23:19:31 -0300337 rc = ima_collect_measurement(iint, file, buf, size, hash_algo, modsig);
Mimi Zoharf3cc6b22017-06-17 23:56:23 -0400338 if (rc != 0 && rc != -EBADF && rc != -EINVAL)
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200339 goto out_locked;
Mimi Zohar08e1b762012-06-20 09:32:55 -0400340
Mimi Zoharbc15ed62017-01-17 06:45:41 -0500341 if (!pathbuf) /* ima_rdwr_violation possibly pre-fetched */
342 pathname = ima_d_path(&file->f_path, &pathbuf, filename);
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300343
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500344 if (action & IMA_MEASURE)
Mimi Zoharbcbc9b0c2013-07-23 11:15:00 -0400345 ima_store_measurement(iint, file, pathname,
Thiago Jung Bauermann3878d502019-06-27 23:19:32 -0300346 xattr_value, xattr_len, modsig, pcr,
Matthew Garrett19453ce02019-06-19 15:46:11 -0700347 template_desc);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200348 if (rc == 0 && (action & IMA_APPRAISE_SUBMASK)) {
Nayna Jain273df862019-10-30 23:31:32 -0400349 rc = ima_check_blacklist(iint, modsig, pcr);
350 if (rc != -EPERM) {
351 inode_lock(inode);
352 rc = ima_appraise_measurement(func, iint, file,
353 pathname, xattr_value,
354 xattr_len, modsig);
355 inode_unlock(inode);
356 }
Mimi Zohar2cd47372019-04-30 08:34:44 -0400357 if (!rc)
358 rc = mmap_violation_check(func, file, &pathbuf,
359 &pathname, filename);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200360 }
Peter Moodye7c568e2012-06-14 10:04:36 -0700361 if (action & IMA_AUDIT)
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300362 ima_audit_measurement(iint, pathname);
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200363
Mimi Zoharf3cc6b22017-06-17 23:56:23 -0400364 if ((file->f_flags & O_DIRECT) && (iint->flags & IMA_PERMIT_DIRECTIO))
365 rc = 0;
THOBY Simon1624dc02021-08-16 08:11:00 +0000366
367 /* Ensure the digest was generated using an allowed algorithm */
368 if (rc == 0 && must_appraise && allowed_algos != 0 &&
369 (allowed_algos & (1U << hash_algo)) == 0) {
370 rc = -EACCES;
371
372 integrity_audit_msg(AUDIT_INTEGRITY_DATA, file_inode(file),
373 pathname, "collect_data",
374 "denied-hash-algorithm", rc, 0);
375 }
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200376out_locked:
377 if ((mask & MAY_WRITE) && test_bit(IMA_DIGSIG, &iint->atomic_flags) &&
Mimi Zohar05d1a712016-02-29 19:52:05 -0500378 !(iint->flags & IMA_NEW_FILE))
Dmitry Kasatkina175b8b2012-09-27 15:06:28 +0300379 rc = -EACCES;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200380 mutex_unlock(&iint->mutex);
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200381 kfree(xattr_value);
Thiago Jung Bauermann39b07092019-06-27 23:19:30 -0300382 ima_free_modsig(modsig);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200383out:
Dmitry Kasatkin456f5fd2014-10-01 21:43:10 +0300384 if (pathbuf)
385 __putname(pathbuf);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200386 if (must_appraise) {
387 if (rc && (ima_appraise & IMA_APPRAISE_ENFORCE))
388 return -EACCES;
389 if (file->f_mode & FMODE_WRITE)
390 set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
391 }
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300392 return 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500393}
394
395/**
396 * ima_file_mmap - based on policy, collect/store measurement.
397 * @file: pointer to the file to be measured (May be NULL)
398 * @prot: contains the protection that will be applied by the kernel.
399 *
400 * Measure files being mmapped executable based on the ima_must_measure()
401 * policy decision.
402 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300403 * On success return 0. On integrity appraisal error, assuming the file
404 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500405 */
406int ima_file_mmap(struct file *file, unsigned long prot)
407{
Matthew Garrettd906c102018-01-08 13:36:20 -0800408 u32 secid;
409
410 if (file && (prot & PROT_EXEC)) {
Paul Moore63269482021-09-29 11:01:21 -0400411 security_current_getsecid_subj(&secid);
Matthew Garrettd906c102018-01-08 13:36:20 -0800412 return process_measurement(file, current_cred(), secid, NULL,
Al Viro6035a272018-06-08 13:40:10 -0400413 0, MAY_EXEC, MMAP_CHECK);
Matthew Garrettd906c102018-01-08 13:36:20 -0800414 }
415
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300416 return 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500417}
418
419/**
Mimi Zohar8eb613c2020-05-03 01:00:02 -0400420 * ima_file_mprotect - based on policy, limit mprotect change
421 * @prot: contains the protection that will be applied by the kernel.
422 *
423 * Files can be mmap'ed read/write and later changed to execute to circumvent
424 * IMA's mmap appraisal policy rules. Due to locking issues (mmap semaphore
425 * would be taken before i_mutex), files can not be measured or appraised at
426 * this point. Eliminate this integrity gap by denying the mprotect
427 * PROT_EXECUTE change, if an mmap appraise policy rule exists.
428 *
429 * On mprotect change success, return 0. On failure, return -EACESS.
430 */
431int ima_file_mprotect(struct vm_area_struct *vma, unsigned long prot)
432{
Lakshmi Ramasubramaniandea87d02020-11-12 12:39:59 -0800433 struct ima_template_desc *template = NULL;
Mimi Zohar8eb613c2020-05-03 01:00:02 -0400434 struct file *file = vma->vm_file;
435 char filename[NAME_MAX];
436 char *pathbuf = NULL;
437 const char *pathname = NULL;
438 struct inode *inode;
439 int result = 0;
440 int action;
441 u32 secid;
442 int pcr;
443
444 /* Is mprotect making an mmap'ed file executable? */
Mimi Zohar4235b1a2020-06-10 09:18:26 -0400445 if (!(ima_policy_flag & IMA_APPRAISE) || !vma->vm_file ||
446 !(prot & PROT_EXEC) || (vma->vm_flags & VM_EXEC))
Mimi Zohar8eb613c2020-05-03 01:00:02 -0400447 return 0;
448
Paul Moore63269482021-09-29 11:01:21 -0400449 security_current_getsecid_subj(&secid);
Mimi Zohar8eb613c2020-05-03 01:00:02 -0400450 inode = file_inode(vma->vm_file);
Christian Braunera2d23292021-01-21 14:19:45 +0100451 action = ima_get_action(file_mnt_user_ns(vma->vm_file), inode,
452 current_cred(), secid, MAY_EXEC, MMAP_CHECK,
THOBY Simon1624dc02021-08-16 08:11:00 +0000453 &pcr, &template, NULL, NULL);
Mimi Zohar8eb613c2020-05-03 01:00:02 -0400454
455 /* Is the mmap'ed file in policy? */
456 if (!(action & (IMA_MEASURE | IMA_APPRAISE_SUBMASK)))
457 return 0;
458
459 if (action & IMA_APPRAISE_SUBMASK)
460 result = -EPERM;
461
462 file = vma->vm_file;
463 pathname = ima_d_path(&file->f_path, &pathbuf, filename);
464 integrity_audit_msg(AUDIT_INTEGRITY_DATA, inode, pathname,
465 "collect_data", "failed-mprotect", result, 0);
466 if (pathbuf)
467 __putname(pathbuf);
468
469 return result;
470}
471
472/**
Mimi Zohar3323eec2009-02-04 09:06:58 -0500473 * ima_bprm_check - based on policy, collect/store measurement.
474 * @bprm: contains the linux_binprm structure
475 *
476 * The OS protects against an executable file, already open for write,
477 * from being executed in deny_write_access() and an executable file,
478 * already open for execute, from being modified in get_write_access().
479 * So we can be certain that what we verify and measure here is actually
480 * what is being executed.
481 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300482 * On success return 0. On integrity appraisal error, assuming the file
483 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500484 */
485int ima_bprm_check(struct linux_binprm *bprm)
486{
Matthew Garrettd906c102018-01-08 13:36:20 -0800487 int ret;
488 u32 secid;
489
Paul Moore63269482021-09-29 11:01:21 -0400490 security_current_getsecid_subj(&secid);
Matthew Garrettd906c102018-01-08 13:36:20 -0800491 ret = process_measurement(bprm->file, current_cred(), secid, NULL, 0,
Al Viro6035a272018-06-08 13:40:10 -0400492 MAY_EXEC, BPRM_CHECK);
Matthew Garrettd906c102018-01-08 13:36:20 -0800493 if (ret)
494 return ret;
495
496 security_cred_getsecid(bprm->cred, &secid);
497 return process_measurement(bprm->file, bprm->cred, secid, NULL, 0,
Al Viro6035a272018-06-08 13:40:10 -0400498 MAY_EXEC, CREDS_CHECK);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500499}
500
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500501/**
Jiele Zhao41d75dd2021-04-06 02:12:10 +0000502 * ima_file_check - based on policy, collect/store measurement.
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500503 * @file: pointer to the file to be measured
Lans Zhang20f482a2017-01-06 12:38:11 +0800504 * @mask: contains MAY_READ, MAY_WRITE, MAY_EXEC or MAY_APPEND
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500505 *
506 * Measure files based on the ima_must_measure() policy decision.
507 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300508 * On success return 0. On integrity appraisal error, assuming the file
509 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500510 */
Al Viro6035a272018-06-08 13:40:10 -0400511int ima_file_check(struct file *file, int mask)
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500512{
Matthew Garrettd906c102018-01-08 13:36:20 -0800513 u32 secid;
514
Paul Moore63269482021-09-29 11:01:21 -0400515 security_current_getsecid_subj(&secid);
Matthew Garrettd906c102018-01-08 13:36:20 -0800516 return process_measurement(file, current_cred(), secid, NULL, 0,
Lans Zhang20f482a2017-01-06 12:38:11 +0800517 mask & (MAY_READ | MAY_WRITE | MAY_EXEC |
Al Viro6035a272018-06-08 13:40:10 -0400518 MAY_APPEND), FILE_CHECK);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500519}
Mimi Zohar9bbb6ca2010-01-26 17:02:40 -0500520EXPORT_SYMBOL_GPL(ima_file_check);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500521
KP Singh403319b2020-11-24 15:12:08 +0000522static int __ima_inode_hash(struct inode *inode, char *buf, size_t buf_size)
Florent Revest6beea7a2020-01-13 10:42:44 +0100523{
Florent Revest6beea7a2020-01-13 10:42:44 +0100524 struct integrity_iint_cache *iint;
525 int hash_algo;
526
Florent Revest6beea7a2020-01-13 10:42:44 +0100527 if (!ima_policy_flag)
528 return -EOPNOTSUPP;
529
Florent Revest6beea7a2020-01-13 10:42:44 +0100530 iint = integrity_iint_find(inode);
531 if (!iint)
532 return -EOPNOTSUPP;
533
534 mutex_lock(&iint->mutex);
KP Singhaa662fc2020-09-16 18:02:42 +0000535
536 /*
537 * ima_file_hash can be called when ima_collect_measurement has still
538 * not been called, we might not always have a hash.
539 */
540 if (!iint->ima_hash) {
541 mutex_unlock(&iint->mutex);
542 return -EOPNOTSUPP;
543 }
544
Florent Revest6beea7a2020-01-13 10:42:44 +0100545 if (buf) {
546 size_t copied_size;
547
548 copied_size = min_t(size_t, iint->ima_hash->length, buf_size);
549 memcpy(buf, iint->ima_hash->digest, copied_size);
550 }
551 hash_algo = iint->ima_hash->algo;
552 mutex_unlock(&iint->mutex);
553
554 return hash_algo;
555}
KP Singh403319b2020-11-24 15:12:08 +0000556
557/**
558 * ima_file_hash - return the stored measurement if a file has been hashed and
559 * is in the iint cache.
560 * @file: pointer to the file
561 * @buf: buffer in which to store the hash
562 * @buf_size: length of the buffer
563 *
564 * On success, return the hash algorithm (as defined in the enum hash_algo).
565 * If buf is not NULL, this function also outputs the hash into buf.
566 * If the hash is larger than buf_size, then only buf_size bytes will be copied.
567 * It generally just makes sense to pass a buffer capable of holding the largest
568 * possible hash: IMA_MAX_DIGEST_SIZE.
569 * The file hash returned is based on the entire file, including the appended
570 * signature.
571 *
572 * If IMA is disabled or if no measurement is available, return -EOPNOTSUPP.
573 * If the parameters are incorrect, return -EINVAL.
574 */
575int ima_file_hash(struct file *file, char *buf, size_t buf_size)
576{
577 if (!file)
578 return -EINVAL;
579
580 return __ima_inode_hash(file_inode(file), buf, buf_size);
581}
Florent Revest6beea7a2020-01-13 10:42:44 +0100582EXPORT_SYMBOL_GPL(ima_file_hash);
583
584/**
KP Singh403319b2020-11-24 15:12:08 +0000585 * ima_inode_hash - return the stored measurement if the inode has been hashed
586 * and is in the iint cache.
587 * @inode: pointer to the inode
588 * @buf: buffer in which to store the hash
589 * @buf_size: length of the buffer
590 *
591 * On success, return the hash algorithm (as defined in the enum hash_algo).
592 * If buf is not NULL, this function also outputs the hash into buf.
593 * If the hash is larger than buf_size, then only buf_size bytes will be copied.
594 * It generally just makes sense to pass a buffer capable of holding the largest
595 * possible hash: IMA_MAX_DIGEST_SIZE.
596 * The hash returned is based on the entire contents, including the appended
597 * signature.
598 *
599 * If IMA is disabled or if no measurement is available, return -EOPNOTSUPP.
600 * If the parameters are incorrect, return -EINVAL.
601 */
602int ima_inode_hash(struct inode *inode, char *buf, size_t buf_size)
603{
604 if (!inode)
605 return -EINVAL;
606
607 return __ima_inode_hash(inode, buf, buf_size);
608}
609EXPORT_SYMBOL_GPL(ima_inode_hash);
610
611/**
Mimi Zoharfdb24102019-01-22 14:06:49 -0600612 * ima_post_create_tmpfile - mark newly created tmpfile as new
Christian Braunera2d23292021-01-21 14:19:45 +0100613 * @mnt_userns: user namespace of the mount the inode was found from
Mimi Zoharfdb24102019-01-22 14:06:49 -0600614 * @file : newly created tmpfile
615 *
616 * No measuring, appraising or auditing of newly created tmpfiles is needed.
617 * Skip calling process_measurement(), but indicate which newly, created
618 * tmpfiles are in policy.
619 */
Christian Braunera2d23292021-01-21 14:19:45 +0100620void ima_post_create_tmpfile(struct user_namespace *mnt_userns,
621 struct inode *inode)
Mimi Zoharfdb24102019-01-22 14:06:49 -0600622{
623 struct integrity_iint_cache *iint;
624 int must_appraise;
625
Mimi Zoharf873b282021-03-19 11:14:25 -0400626 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
627 return;
628
Christian Braunera2d23292021-01-21 14:19:45 +0100629 must_appraise = ima_must_appraise(mnt_userns, inode, MAY_ACCESS,
630 FILE_CHECK);
Mimi Zoharfdb24102019-01-22 14:06:49 -0600631 if (!must_appraise)
632 return;
633
634 /* Nothing to do if we can't allocate memory */
635 iint = integrity_inode_get(inode);
636 if (!iint)
637 return;
638
639 /* needed for writing the security xattrs */
640 set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
641 iint->ima_file_status = INTEGRITY_PASS;
642}
643
644/**
Mimi Zohar05d1a712016-02-29 19:52:05 -0500645 * ima_post_path_mknod - mark as a new inode
Christian Braunera2d23292021-01-21 14:19:45 +0100646 * @mnt_userns: user namespace of the mount the inode was found from
Mimi Zohar05d1a712016-02-29 19:52:05 -0500647 * @dentry: newly created dentry
648 *
649 * Mark files created via the mknodat syscall as new, so that the
650 * file data can be written later.
651 */
Christian Braunera2d23292021-01-21 14:19:45 +0100652void ima_post_path_mknod(struct user_namespace *mnt_userns,
653 struct dentry *dentry)
Mimi Zohar05d1a712016-02-29 19:52:05 -0500654{
655 struct integrity_iint_cache *iint;
656 struct inode *inode = dentry->d_inode;
657 int must_appraise;
658
Mimi Zoharf873b282021-03-19 11:14:25 -0400659 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
660 return;
661
Christian Braunera2d23292021-01-21 14:19:45 +0100662 must_appraise = ima_must_appraise(mnt_userns, inode, MAY_ACCESS,
663 FILE_CHECK);
Mimi Zohar05d1a712016-02-29 19:52:05 -0500664 if (!must_appraise)
665 return;
666
Mimi Zoharfdb24102019-01-22 14:06:49 -0600667 /* Nothing to do if we can't allocate memory */
Mimi Zohar05d1a712016-02-29 19:52:05 -0500668 iint = integrity_inode_get(inode);
Mimi Zoharfdb24102019-01-22 14:06:49 -0600669 if (!iint)
670 return;
671
672 /* needed for re-opening empty files */
673 iint->flags |= IMA_NEW_FILE;
Mimi Zohar05d1a712016-02-29 19:52:05 -0500674}
675
676/**
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500677 * ima_read_file - pre-measure/appraise hook decision based on policy
678 * @file: pointer to the file to be measured/appraised/audit
679 * @read_id: caller identifier
Kees Cook2039bda2020-10-02 10:38:23 -0700680 * @contents: whether a subsequent call will be made to ima_post_read_file()
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500681 *
682 * Permit reading a file based on policy. The policy rules are written
683 * in terms of the policy identifier. Appraising the integrity of
684 * a file requires a file descriptor.
685 *
686 * For permission return 0, otherwise return -EACCES.
687 */
Kees Cook2039bda2020-10-02 10:38:23 -0700688int ima_read_file(struct file *file, enum kernel_read_file_id read_id,
689 bool contents)
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500690{
Scott Branden34736da2020-10-02 10:38:24 -0700691 enum ima_hooks func;
692 u32 secid;
Kees Cook2039bda2020-10-02 10:38:23 -0700693
Mimi Zohar4f0496d2018-07-13 14:06:03 -0400694 /*
Mimi Zohar4f0496d2018-07-13 14:06:03 -0400695 * Do devices using pre-allocated memory run the risk of the
696 * firmware being accessible to the device prior to the completion
697 * of IMA's signature verification any more than when using two
Kees Cookc3074592020-10-02 10:38:13 -0700698 * buffers? It may be desirable to include the buffer address
699 * in this API and walk all the dma_map_single() mappings to check.
Mimi Zohar4f0496d2018-07-13 14:06:03 -0400700 */
Scott Branden34736da2020-10-02 10:38:24 -0700701
702 /*
703 * There will be a call made to ima_post_read_file() with
704 * a filled buffer, so we don't need to perform an extra
705 * read early here.
706 */
707 if (contents)
708 return 0;
709
710 /* Read entire file for all partial reads. */
711 func = read_idmap[read_id] ?: FILE_CHECK;
Paul Moore63269482021-09-29 11:01:21 -0400712 security_current_getsecid_subj(&secid);
Scott Branden34736da2020-10-02 10:38:24 -0700713 return process_measurement(file, current_cred(), secid, NULL,
714 0, MAY_READ, func);
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500715}
716
Matthew Garrett29d3c1c2019-08-19 17:18:01 -0700717const int read_idmap[READING_MAX_ID] = {
Mimi Zohard9ddf072016-01-14 20:59:14 -0500718 [READING_FIRMWARE] = FIRMWARE_CHECK,
719 [READING_MODULE] = MODULE_CHECK,
720 [READING_KEXEC_IMAGE] = KEXEC_KERNEL_CHECK,
721 [READING_KEXEC_INITRAMFS] = KEXEC_INITRAMFS_CHECK,
Mimi Zohar19f8a842016-01-15 10:17:12 -0500722 [READING_POLICY] = POLICY_CHECK
Mimi Zohard9ddf072016-01-14 20:59:14 -0500723};
724
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500725/**
Mimi Zoharcf222212016-01-14 17:57:47 -0500726 * ima_post_read_file - in memory collect/appraise/audit measurement
727 * @file: pointer to the file to be measured/appraised/audit
728 * @buf: pointer to in memory file contents
729 * @size: size of in memory file contents
730 * @read_id: caller identifier
731 *
732 * Measure/appraise/audit in memory file based on policy. Policy rules
733 * are written in terms of a policy identifier.
734 *
735 * On success return 0. On integrity appraisal error, assuming the file
736 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
737 */
738int ima_post_read_file(struct file *file, void *buf, loff_t size,
739 enum kernel_read_file_id read_id)
740{
Mimi Zohard9ddf072016-01-14 20:59:14 -0500741 enum ima_hooks func;
Matthew Garrettd906c102018-01-08 13:36:20 -0800742 u32 secid;
Mimi Zoharcf222212016-01-14 17:57:47 -0500743
Christoph Hellwiga7d3d032017-09-10 09:49:45 +0200744 /* permit signed certs */
745 if (!file && read_id == READING_X509_CERTIFICATE)
746 return 0;
747
Mimi Zoharcf222212016-01-14 17:57:47 -0500748 if (!file || !buf || size == 0) { /* should never happen */
749 if (ima_appraise & IMA_APPRAISE_ENFORCE)
750 return -EACCES;
751 return 0;
752 }
753
Mimi Zohard9ddf072016-01-14 20:59:14 -0500754 func = read_idmap[read_id] ?: FILE_CHECK;
Paul Moore63269482021-09-29 11:01:21 -0400755 security_current_getsecid_subj(&secid);
Matthew Garrettd906c102018-01-08 13:36:20 -0800756 return process_measurement(file, current_cred(), secid, buf, size,
Al Viro6035a272018-06-08 13:40:10 -0400757 MAY_READ, func);
Mimi Zohar5a9196d2014-07-22 10:39:48 -0400758}
759
Mimi Zohar16c267a2018-07-13 14:05:58 -0400760/**
761 * ima_load_data - appraise decision based on policy
762 * @id: kernel load data caller identifier
Kees Cookb64fcae2020-10-02 10:38:20 -0700763 * @contents: whether the full contents will be available in a later
764 * call to ima_post_load_data().
Mimi Zohar16c267a2018-07-13 14:05:58 -0400765 *
766 * Callers of this LSM hook can not measure, appraise, or audit the
767 * data provided by userspace. Enforce policy rules requring a file
768 * signature (eg. kexec'ed kernel image).
769 *
770 * For permission return 0, otherwise return -EACCES.
771 */
Kees Cookb64fcae2020-10-02 10:38:20 -0700772int ima_load_data(enum kernel_load_data_id id, bool contents)
Mimi Zohar16c267a2018-07-13 14:05:58 -0400773{
Nayna Jainb5ca1172018-10-09 23:00:34 +0530774 bool ima_enforce, sig_enforce;
Mimi Zoharc77b8cd2018-07-13 14:06:02 -0400775
Nayna Jainb5ca1172018-10-09 23:00:34 +0530776 ima_enforce =
777 (ima_appraise & IMA_APPRAISE_ENFORCE) == IMA_APPRAISE_ENFORCE;
Mimi Zohar16c267a2018-07-13 14:05:58 -0400778
779 switch (id) {
780 case LOADING_KEXEC_IMAGE:
Jiri Bohac99d5cadf2019-08-19 17:17:44 -0700781 if (IS_ENABLED(CONFIG_KEXEC_SIG)
Nayna Jainb5ca1172018-10-09 23:00:34 +0530782 && arch_ima_get_secureboot()) {
783 pr_err("impossible to appraise a kernel image without a file descriptor; try using kexec_file_load syscall.\n");
784 return -EACCES;
785 }
786
787 if (ima_enforce && (ima_appraise & IMA_APPRAISE_KEXEC)) {
Mimi Zohar16c267a2018-07-13 14:05:58 -0400788 pr_err("impossible to appraise a kernel image without a file descriptor; try using kexec_file_load syscall.\n");
789 return -EACCES; /* INTEGRITY_UNKNOWN */
790 }
Mimi Zoharfed25122018-07-13 14:06:00 -0400791 break;
792 case LOADING_FIRMWARE:
Kees Cook4f2d99b2020-10-02 10:38:21 -0700793 if (ima_enforce && (ima_appraise & IMA_APPRAISE_FIRMWARE) && !contents) {
Mimi Zoharfed25122018-07-13 14:06:00 -0400794 pr_err("Prevent firmware sysfs fallback loading.\n");
795 return -EACCES; /* INTEGRITY_UNKNOWN */
796 }
Mimi Zoharc77b8cd2018-07-13 14:06:02 -0400797 break;
798 case LOADING_MODULE:
799 sig_enforce = is_module_sig_enforced();
800
Nayna Jainb5ca1172018-10-09 23:00:34 +0530801 if (ima_enforce && (!sig_enforce
802 && (ima_appraise & IMA_APPRAISE_MODULES))) {
Mimi Zoharc77b8cd2018-07-13 14:06:02 -0400803 pr_err("impossible to appraise a module without a file descriptor. sig_enforce kernel parameter might help\n");
804 return -EACCES; /* INTEGRITY_UNKNOWN */
805 }
Gustavo A. R. Silva28073eb2020-11-20 12:25:46 -0600806 break;
Mimi Zohar16c267a2018-07-13 14:05:58 -0400807 default:
808 break;
809 }
810 return 0;
811}
812
Kees Cookb64fcae2020-10-02 10:38:20 -0700813/**
814 * ima_post_load_data - appraise decision based on policy
815 * @buf: pointer to in memory file contents
816 * @size: size of in memory file contents
817 * @id: kernel load data caller identifier
818 * @description: @id-specific description of contents
819 *
820 * Measure/appraise/audit in memory buffer based on policy. Policy rules
821 * are written in terms of a policy identifier.
822 *
823 * On success return 0. On integrity appraisal error, assuming the file
824 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
825 */
826int ima_post_load_data(char *buf, loff_t size,
827 enum kernel_load_data_id load_id,
828 char *description)
829{
Kees Cook4f2d99b2020-10-02 10:38:21 -0700830 if (load_id == LOADING_FIRMWARE) {
831 if ((ima_appraise & IMA_APPRAISE_FIRMWARE) &&
832 (ima_appraise & IMA_APPRAISE_ENFORCE)) {
833 pr_err("Prevent firmware loading_store.\n");
834 return -EACCES; /* INTEGRITY_UNKNOWN */
835 }
836 return 0;
837 }
838
Kees Cookb64fcae2020-10-02 10:38:20 -0700839 return 0;
840}
841
Roberto Sassuce5bb5a2021-07-23 10:53:03 +0200842/**
Tushar Sugandhi291af652021-01-07 20:07:02 -0800843 * process_buffer_measurement - Measure the buffer or the buffer data hash
Christian Braunera2d23292021-01-21 14:19:45 +0100844 * @mnt_userns: user namespace of the mount the inode was found from
Tyler Hicks48341772020-07-09 01:19:11 -0500845 * @inode: inode associated with the object being measured (NULL for KEY_CHECK)
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700846 * @buf: pointer to the buffer that needs to be added to the log.
847 * @size: size of buffer(in bytes).
848 * @eventname: event name to be used for the buffer entry.
Nayna Jaine14555e2019-10-30 23:31:30 -0400849 * @func: IMA hook
850 * @pcr: pcr to extend the measurement
Tushar Sugandhi2b4a2472021-01-07 20:07:01 -0800851 * @func_data: func specific data, may be NULL
Tushar Sugandhi291af652021-01-07 20:07:02 -0800852 * @buf_hash: measure buffer data hash
Roberto Sassuca3c9bd2021-07-23 10:53:04 +0200853 * @digest: buffer digest will be written to
854 * @digest_len: buffer length
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700855 *
Tushar Sugandhi291af652021-01-07 20:07:02 -0800856 * Based on policy, either the buffer data or buffer data hash is measured
Roberto Sassuce5bb5a2021-07-23 10:53:03 +0200857 *
Roberto Sassuca3c9bd2021-07-23 10:53:04 +0200858 * Return: 0 if the buffer has been successfully measured, 1 if the digest
859 * has been written to the passed location but not added to a measurement entry,
860 * a negative value otherwise.
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700861 */
Roberto Sassuce5bb5a2021-07-23 10:53:03 +0200862int process_buffer_measurement(struct user_namespace *mnt_userns,
863 struct inode *inode, const void *buf, int size,
864 const char *eventname, enum ima_hooks func,
865 int pcr, const char *func_data,
Roberto Sassuca3c9bd2021-07-23 10:53:04 +0200866 bool buf_hash, u8 *digest, size_t digest_len)
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700867{
868 int ret = 0;
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700869 const char *audit_cause = "ENOMEM";
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700870 struct ima_template_entry *entry = NULL;
871 struct integrity_iint_cache iint = {};
872 struct ima_event_data event_data = {.iint = &iint,
Prakhar Srivastava86b4da82019-06-23 23:23:30 -0700873 .filename = eventname,
874 .buf = buf,
875 .buf_len = size};
Lakshmi Ramasubramaniandea87d02020-11-12 12:39:59 -0800876 struct ima_template_desc *template;
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700877 struct {
878 struct ima_digest_data hdr;
879 char digest[IMA_MAX_DIGEST_SIZE];
880 } hash = {};
Tushar Sugandhi291af652021-01-07 20:07:02 -0800881 char digest_hash[IMA_MAX_DIGEST_SIZE];
882 int digest_hash_len = hash_digest_size[ima_hash_algo];
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700883 int violation = 0;
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700884 int action = 0;
Nayna Jaine14555e2019-10-30 23:31:30 -0400885 u32 secid;
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700886
Roberto Sassuca3c9bd2021-07-23 10:53:04 +0200887 if (digest && digest_len < digest_hash_len)
888 return -EINVAL;
889
890 if (!ima_policy_flag && !digest)
Roberto Sassuce5bb5a2021-07-23 10:53:03 +0200891 return -ENOENT;
Lakshmi Ramasubramanianc5563ba2019-12-11 08:47:02 -0800892
Lakshmi Ramasubramaniandea87d02020-11-12 12:39:59 -0800893 template = ima_template_desc_buf();
894 if (!template) {
895 ret = -EINVAL;
896 audit_cause = "ima_template_desc_buf";
897 goto out;
898 }
899
Nayna Jaine14555e2019-10-30 23:31:30 -0400900 /*
901 * Both LSM hooks and auxilary based buffer measurements are
902 * based on policy. To avoid code duplication, differentiate
903 * between the LSM hooks and auxilary buffer measurements,
904 * retrieving the policy rule information only for the LSM hook
905 * buffer measurements.
906 */
907 if (func) {
Paul Moore63269482021-09-29 11:01:21 -0400908 security_current_getsecid_subj(&secid);
Christian Braunera2d23292021-01-21 14:19:45 +0100909 action = ima_get_action(mnt_userns, inode, current_cred(),
910 secid, 0, func, &pcr, &template,
THOBY Simon1624dc02021-08-16 08:11:00 +0000911 func_data, NULL);
Roberto Sassuca3c9bd2021-07-23 10:53:04 +0200912 if (!(action & IMA_MEASURE) && !digest)
Roberto Sassuce5bb5a2021-07-23 10:53:03 +0200913 return -ENOENT;
Nayna Jaine14555e2019-10-30 23:31:30 -0400914 }
915
916 if (!pcr)
917 pcr = CONFIG_IMA_MEASURE_PCR_IDX;
918
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700919 iint.ima_hash = &hash.hdr;
920 iint.ima_hash->algo = ima_hash_algo;
921 iint.ima_hash->length = hash_digest_size[ima_hash_algo];
922
923 ret = ima_calc_buffer_hash(buf, size, iint.ima_hash);
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700924 if (ret < 0) {
925 audit_cause = "hashing_error";
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700926 goto out;
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700927 }
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700928
Tushar Sugandhi291af652021-01-07 20:07:02 -0800929 if (buf_hash) {
930 memcpy(digest_hash, hash.hdr.digest, digest_hash_len);
931
932 ret = ima_calc_buffer_hash(digest_hash, digest_hash_len,
933 iint.ima_hash);
934 if (ret < 0) {
935 audit_cause = "hashing_error";
936 goto out;
937 }
938
939 event_data.buf = digest_hash;
940 event_data.buf_len = digest_hash_len;
941 }
942
Roberto Sassuca3c9bd2021-07-23 10:53:04 +0200943 if (digest)
944 memcpy(digest, iint.ima_hash->digest, digest_hash_len);
945
946 if (!ima_policy_flag || (func && !(action & IMA_MEASURE)))
947 return 1;
948
Nayna Jaine14555e2019-10-30 23:31:30 -0400949 ret = ima_alloc_init_template(&event_data, &entry, template);
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700950 if (ret < 0) {
951 audit_cause = "alloc_entry";
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700952 goto out;
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700953 }
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700954
Tushar Sugandhi291af652021-01-07 20:07:02 -0800955 ret = ima_store_template(entry, violation, NULL, event_data.buf, pcr);
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700956 if (ret < 0) {
957 audit_cause = "store_entry";
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700958 ima_free_template_entry(entry);
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700959 }
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700960
961out:
Tushar Sugandhi72ec6112020-02-18 16:06:10 -0800962 if (ret < 0)
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700963 integrity_audit_message(AUDIT_INTEGRITY_PCR, NULL, eventname,
964 func_measure_str(func),
965 audit_cause, ret, 0, ret);
Tushar Sugandhi72ec6112020-02-18 16:06:10 -0800966
Roberto Sassuce5bb5a2021-07-23 10:53:03 +0200967 return ret;
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700968}
969
970/**
971 * ima_kexec_cmdline - measure kexec cmdline boot args
Tyler Hicks48341772020-07-09 01:19:11 -0500972 * @kernel_fd: file descriptor of the kexec kernel being loaded
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700973 * @buf: pointer to buffer
974 * @size: size of buffer
975 *
976 * Buffers can only be measured, not appraised.
977 */
Tyler Hicks48341772020-07-09 01:19:11 -0500978void ima_kexec_cmdline(int kernel_fd, const void *buf, int size)
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700979{
Tyler Hicks48341772020-07-09 01:19:11 -0500980 struct fd f;
981
982 if (!buf || !size)
983 return;
984
985 f = fdget(kernel_fd);
986 if (!f.file)
987 return;
988
Christian Braunera2d23292021-01-21 14:19:45 +0100989 process_buffer_measurement(file_mnt_user_ns(f.file), file_inode(f.file),
990 buf, size, "kexec-cmdline", KEXEC_CMDLINE, 0,
Roberto Sassuca3c9bd2021-07-23 10:53:04 +0200991 NULL, false, NULL, 0);
Tyler Hicks48341772020-07-09 01:19:11 -0500992 fdput(f);
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700993}
994
Tushar Sugandhid6e64502021-01-07 20:07:03 -0800995/**
996 * ima_measure_critical_data - measure kernel integrity critical data
Tushar Sugandhi9f5d7d22021-01-07 20:07:06 -0800997 * @event_label: unique event label for grouping and limiting critical data
Tushar Sugandhid6e64502021-01-07 20:07:03 -0800998 * @event_name: event name for the record in the IMA measurement list
999 * @buf: pointer to buffer data
1000 * @buf_len: length of buffer data (in bytes)
1001 * @hash: measure buffer data hash
Roberto Sassuca3c9bd2021-07-23 10:53:04 +02001002 * @digest: buffer digest will be written to
1003 * @digest_len: buffer length
Tushar Sugandhid6e64502021-01-07 20:07:03 -08001004 *
1005 * Measure data critical to the integrity of the kernel into the IMA log
1006 * and extend the pcr. Examples of critical data could be various data
1007 * structures, policies, and states stored in kernel memory that can
1008 * impact the integrity of the system.
Roberto Sassuce5bb5a2021-07-23 10:53:03 +02001009 *
Roberto Sassuca3c9bd2021-07-23 10:53:04 +02001010 * Return: 0 if the buffer has been successfully measured, 1 if the digest
1011 * has been written to the passed location but not added to a measurement entry,
1012 * a negative value otherwise.
Tushar Sugandhid6e64502021-01-07 20:07:03 -08001013 */
Roberto Sassuce5bb5a2021-07-23 10:53:03 +02001014int ima_measure_critical_data(const char *event_label,
1015 const char *event_name,
1016 const void *buf, size_t buf_len,
Roberto Sassuca3c9bd2021-07-23 10:53:04 +02001017 bool hash, u8 *digest, size_t digest_len)
Tushar Sugandhid6e64502021-01-07 20:07:03 -08001018{
Tushar Sugandhi9f5d7d22021-01-07 20:07:06 -08001019 if (!event_name || !event_label || !buf || !buf_len)
Roberto Sassuce5bb5a2021-07-23 10:53:03 +02001020 return -ENOPARAM;
Tushar Sugandhid6e64502021-01-07 20:07:03 -08001021
Roberto Sassuce5bb5a2021-07-23 10:53:03 +02001022 return process_buffer_measurement(&init_user_ns, NULL, buf, buf_len,
1023 event_name, CRITICAL_DATA, 0,
Roberto Sassuca3c9bd2021-07-23 10:53:04 +02001024 event_label, hash, digest,
1025 digest_len);
Tushar Sugandhid6e64502021-01-07 20:07:03 -08001026}
Tushar Sugandhi91ccbba2021-07-12 17:48:58 -07001027EXPORT_SYMBOL_GPL(ima_measure_critical_data);
Tushar Sugandhid6e64502021-01-07 20:07:03 -08001028
Mimi Zohar3323eec2009-02-04 09:06:58 -05001029static int __init init_ima(void)
1030{
1031 int error;
1032
Ard Biesheuvelb000d5c2020-10-13 10:18:04 +02001033 ima_appraise_parse_cmdline();
Mimi Zohar3f23d622016-12-19 16:22:51 -08001034 ima_init_template_list();
Mimi Zohare7a2ad72013-06-07 12:16:37 +02001035 hash_setup(CONFIG_IMA_DEFAULT_HASH);
Mimi Zohar3323eec2009-02-04 09:06:58 -05001036 error = ima_init();
Petr Vorelab603682018-03-23 14:41:08 +01001037
1038 if (error && strcmp(hash_algo_name[ima_hash_algo],
1039 CONFIG_IMA_DEFAULT_HASH) != 0) {
1040 pr_info("Allocating %s failed, going to use default hash algorithm %s\n",
1041 hash_algo_name[ima_hash_algo], CONFIG_IMA_DEFAULT_HASH);
1042 hash_setup_done = 0;
1043 hash_setup(CONFIG_IMA_DEFAULT_HASH);
1044 error = ima_init();
1045 }
1046
Roberto Sassue144d6b2020-03-25 11:47:07 +01001047 if (error)
1048 return error;
1049
Janne Karhunenb1694242019-06-14 15:20:15 +03001050 error = register_blocking_lsm_notifier(&ima_lsm_policy_notifier);
1051 if (error)
1052 pr_warn("Couldn't register LSM notifier, error %d\n", error);
1053
Petr Vorel4ecd9932018-05-10 17:15:48 +02001054 if (!error)
THOBY Simon4f2946a2021-08-16 08:11:01 +00001055 ima_update_policy_flags();
Petr Vorel4ecd9932018-05-10 17:15:48 +02001056
Mimi Zohar3323eec2009-02-04 09:06:58 -05001057 return error;
1058}
1059
Mimi Zohar3323eec2009-02-04 09:06:58 -05001060late_initcall(init_ima); /* Start IMA after the TPM is available */