blob: 2d1af8899cabd73871e0daadefcfe2414a53a6b8 [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
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +030038int 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
Mimi Zohar2cd47372019-04-30 08:34:44 -040079/* Prevent mmap'ing a file execute that is already mmap'ed write */
80static int mmap_violation_check(enum ima_hooks func, struct file *file,
81 char **pathbuf, const char **pathname,
82 char *filename)
83{
84 struct inode *inode;
85 int rc = 0;
86
87 if ((func == MMAP_CHECK) && mapping_writably_mapped(file->f_mapping)) {
88 rc = -ETXTBSY;
89 inode = file_inode(file);
90
91 if (!*pathbuf) /* ima_rdwr_violation possibly pre-fetched */
92 *pathname = ima_d_path(&file->f_path, pathbuf,
93 filename);
94 integrity_audit_msg(AUDIT_INTEGRITY_DATA, inode, *pathname,
95 "mmap_file", "mmapped_writers", rc, 0);
96 }
97 return rc;
98}
99
Eric Parise0d5bd22009-12-04 15:48:00 -0500100/*
Mimi Zohar890275b52010-11-02 10:13:07 -0400101 * ima_rdwr_violation_check
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500102 *
Mimi Zohar890275b52010-11-02 10:13:07 -0400103 * Only invalidate the PCR for measured files:
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200104 * - Opening a file for write when already open for read,
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500105 * results in a time of measure, time of use (ToMToU) error.
106 * - Opening a file for read when already open for write,
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200107 * could result in a file measurement error.
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500108 *
109 */
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200110static void ima_rdwr_violation_check(struct file *file,
111 struct integrity_iint_cache *iint,
Roberto Sassu1b68bdf2014-09-12 19:35:56 +0200112 int must_measure,
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200113 char **pathbuf,
Roberto Sassu4e8581e2017-11-30 11:56:02 +0100114 const char **pathname,
115 char *filename)
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500116{
David Howellsc77cece2013-06-13 23:37:49 +0100117 struct inode *inode = file_inode(file);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500118 fmode_t mode = file->f_mode;
Eric Parisad16ad02010-10-25 14:41:45 -0400119 bool send_tomtou = false, send_writers = false;
Eric Parisa178d202010-10-25 14:41:59 -0400120
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500121 if (mode & FMODE_WRITE) {
Dmitry Kasatkin14503eb2014-03-27 10:29:28 +0200122 if (atomic_read(&inode->i_readcount) && IS_IMA(inode)) {
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200123 if (!iint)
124 iint = integrity_iint_find(inode);
Dmitry Kasatkin14503eb2014-03-27 10:29:28 +0200125 /* IMA_MEASURE is set from reader side */
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200126 if (iint && test_bit(IMA_MUST_MEASURE,
127 &iint->atomic_flags))
Dmitry Kasatkin14503eb2014-03-27 10:29:28 +0200128 send_tomtou = true;
129 }
Dmitry Kasatkinb882fae2014-03-27 10:54:11 +0200130 } else {
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200131 if (must_measure)
132 set_bit(IMA_MUST_MEASURE, &iint->atomic_flags);
Nikolay Borisoveed9de32018-12-11 10:31:40 +0200133 if (inode_is_open_for_write(inode) && must_measure)
Dmitry Kasatkinb882fae2014-03-27 10:54:11 +0200134 send_writers = true;
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500135 }
Eric Parisad16ad02010-10-25 14:41:45 -0400136
Mimi Zohar08e1b762012-06-20 09:32:55 -0400137 if (!send_tomtou && !send_writers)
138 return;
139
Mimi Zoharbc15ed62017-01-17 06:45:41 -0500140 *pathname = ima_d_path(&file->f_path, pathbuf, filename);
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300141
Eric Parisad16ad02010-10-25 14:41:45 -0400142 if (send_tomtou)
Roberto Sassu8d94eb92015-04-11 17:12:39 +0200143 ima_add_violation(file, *pathname, iint,
144 "invalid_pcr", "ToMToU");
Eric Parisad16ad02010-10-25 14:41:45 -0400145 if (send_writers)
Roberto Sassu8d94eb92015-04-11 17:12:39 +0200146 ima_add_violation(file, *pathname, iint,
Mimi Zohar08e1b762012-06-20 09:32:55 -0400147 "invalid_pcr", "open_writers");
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500148}
149
Mimi Zoharf381c272011-03-09 14:13:22 -0500150static void ima_check_last_writer(struct integrity_iint_cache *iint,
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500151 struct inode *inode, struct file *file)
Eric Parisbc7d2a32010-10-25 14:42:05 -0400152{
Al Viro4b2a2c62011-07-26 04:30:35 -0400153 fmode_t mode = file->f_mode;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200154 bool update;
Eric Paris497f3232010-10-25 14:41:32 -0400155
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500156 if (!(mode & FMODE_WRITE))
157 return;
158
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200159 mutex_lock(&iint->mutex);
Dmitry Kasatkinb151d6b2014-06-27 18:04:27 +0300160 if (atomic_read(&inode->i_writecount) == 1) {
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200161 update = test_and_clear_bit(IMA_UPDATE_XATTR,
162 &iint->atomic_flags);
Sascha Hauerac0bf022017-12-11 06:35:20 -0500163 if (!IS_I_VERSION(inode) ||
Goffredo Baroncellic472c072018-02-01 08:15:25 -0500164 !inode_eq_iversion(inode, iint->version) ||
Dmitry Kasatkinb151d6b2014-06-27 18:04:27 +0300165 (iint->flags & IMA_NEW_FILE)) {
166 iint->flags &= ~(IMA_DONE_MASK | IMA_NEW_FILE);
Eric Richtera4226382016-06-01 13:14:06 -0500167 iint->measured_pcrs = 0;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200168 if (update)
Dmitry Kasatkinb151d6b2014-06-27 18:04:27 +0300169 ima_update_xattr(iint, file);
170 }
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500171 }
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200172 mutex_unlock(&iint->mutex);
Eric Parisbc7d2a32010-10-25 14:42:05 -0400173}
174
Mimi Zohar3323eec2009-02-04 09:06:58 -0500175/**
176 * ima_file_free - called on __fput()
177 * @file: pointer to file structure being freed
178 *
Mimi Zohar890275b52010-11-02 10:13:07 -0400179 * Flag files that changed, based on i_version
Mimi Zohar3323eec2009-02-04 09:06:58 -0500180 */
181void ima_file_free(struct file *file)
182{
Al Viro496ad9a2013-01-23 17:07:38 -0500183 struct inode *inode = file_inode(file);
Mimi Zoharf381c272011-03-09 14:13:22 -0500184 struct integrity_iint_cache *iint;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500185
Dmitry Kasatkin0f34a002014-09-24 11:05:10 +0300186 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500187 return;
Eric Paris196f5182010-10-25 14:42:19 -0400188
Mimi Zoharf381c272011-03-09 14:13:22 -0500189 iint = integrity_iint_find(inode);
Mimi Zohar854fdd52010-11-02 10:14:22 -0400190 if (!iint)
191 return;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500192
Mimi Zohar854fdd52010-11-02 10:14:22 -0400193 ima_check_last_writer(iint, inode, file);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500194}
195
Matthew Garrettd906c102018-01-08 13:36:20 -0800196static int process_measurement(struct file *file, const struct cred *cred,
197 u32 secid, char *buf, loff_t size, int mask,
Al Viro6035a272018-06-08 13:40:10 -0400198 enum ima_hooks func)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500199{
Al Viro496ad9a2013-01-23 17:07:38 -0500200 struct inode *inode = file_inode(file);
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200201 struct integrity_iint_cache *iint = NULL;
Matthew Garrett19453ce02019-06-19 15:46:11 -0700202 struct ima_template_desc *template_desc = NULL;
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300203 char *pathbuf = NULL;
Mimi Zoharbc15ed62017-01-17 06:45:41 -0500204 char filename[NAME_MAX];
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300205 const char *pathname = NULL;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200206 int rc = 0, action, must_appraise = 0;
Eric Richter725de7f2016-06-01 13:14:02 -0500207 int pcr = CONFIG_IMA_MEASURE_PCR_IDX;
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200208 struct evm_ima_xattr_data *xattr_value = NULL;
Thiago Jung Bauermann39b07092019-06-27 23:19:30 -0300209 struct modsig *modsig = NULL;
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300210 int xattr_len = 0;
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200211 bool violation_check;
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200212 enum hash_algo hash_algo;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500213
Roberto Sassua7560242014-09-12 19:35:54 +0200214 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500215 return 0;
Eric Parisbc7d2a32010-10-25 14:42:05 -0400216
Mimi Zohard79d72e2012-12-03 17:08:11 -0500217 /* Return an IMA_MEASURE, IMA_APPRAISE, IMA_AUDIT action
218 * bitmask based on the appraise/audit/measurement policy.
219 * Included is the appraise submask.
220 */
Matthew Garrett19453ce02019-06-19 15:46:11 -0700221 action = ima_get_action(inode, cred, secid, mask, func, &pcr,
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800222 &template_desc, NULL);
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500223 violation_check = ((func == FILE_CHECK || func == MMAP_CHECK) &&
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200224 (ima_policy_flag & IMA_MEASURE));
225 if (!action && !violation_check)
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500226 return 0;
227
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500228 must_appraise = action & IMA_APPRAISE;
Eric Parisbc7d2a32010-10-25 14:42:05 -0400229
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500230 /* Is the appraise rule hook specific? */
Dmitry Kasatkin3a8a2ea2014-09-03 10:19:57 +0300231 if (action & IMA_FILE_APPRAISE)
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500232 func = FILE_CHECK;
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500233
Al Viro59551022016-01-22 15:40:57 -0500234 inode_lock(inode);
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500235
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200236 if (action) {
237 iint = integrity_inode_get(inode);
238 if (!iint)
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200239 rc = -ENOMEM;
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200240 }
241
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200242 if (!rc && violation_check)
Roberto Sassu1b68bdf2014-09-12 19:35:56 +0200243 ima_rdwr_violation_check(file, iint, action & IMA_MEASURE,
Roberto Sassu4e8581e2017-11-30 11:56:02 +0100244 &pathbuf, &pathname, filename);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200245
246 inode_unlock(inode);
247
248 if (rc)
249 goto out;
250 if (!action)
251 goto out;
252
253 mutex_lock(&iint->mutex);
254
255 if (test_and_clear_bit(IMA_CHANGE_ATTR, &iint->atomic_flags))
256 /* reset appraisal flags if ima_inode_post_setattr was called */
257 iint->flags &= ~(IMA_APPRAISE | IMA_APPRAISED |
258 IMA_APPRAISE_SUBMASK | IMA_APPRAISED_SUBMASK |
259 IMA_ACTION_FLAGS);
260
Mimi Zohard77ccdc2018-02-21 11:35:20 -0500261 /*
262 * Re-evaulate the file if either the xattr has changed or the
263 * kernel has no way of detecting file change on the filesystem.
264 * (Limited to privileged mounted filesystems.)
265 */
266 if (test_and_clear_bit(IMA_CHANGE_XATTR, &iint->atomic_flags) ||
267 ((inode->i_sb->s_iflags & SB_I_IMA_UNVERIFIABLE_SIGNATURE) &&
Mimi Zohar9e670282018-02-21 11:36:32 -0500268 !(inode->i_sb->s_iflags & SB_I_UNTRUSTED_MOUNTER) &&
269 !(action & IMA_FAIL_UNVERIFIABLE_SIGS))) {
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200270 iint->flags &= ~IMA_DONE_MASK;
Mimi Zohard77ccdc2018-02-21 11:35:20 -0500271 iint->measured_pcrs = 0;
272 }
Dmitry Kasatkinbf2276d2011-10-19 12:04:40 +0300273
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500274 /* Determine if already appraised/measured based on bitmask
Mimi Zohard79d72e2012-12-03 17:08:11 -0500275 * (IMA_MEASURE, IMA_MEASURED, IMA_XXXX_APPRAISE, IMA_XXXX_APPRAISED,
276 * IMA_AUDIT, IMA_AUDITED)
277 */
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500278 iint->flags |= action;
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +0300279 action &= IMA_DO_MASK;
Eric Richtera4226382016-06-01 13:14:06 -0500280 action &= ~((iint->flags & (IMA_DONE_MASK ^ IMA_MEASURED)) >> 1);
281
282 /* If target pcr is already measured, unset IMA_MEASURE action */
283 if ((action & IMA_MEASURE) && (iint->measured_pcrs & (0x1 << pcr)))
284 action ^= IMA_MEASURE;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500285
Mimi Zoharda1b0022016-09-29 10:04:52 -0400286 /* HASH sets the digital signature and update flags, nothing else */
287 if ((action & IMA_HASH) &&
288 !(test_bit(IMA_DIGSIG, &iint->atomic_flags))) {
289 xattr_len = ima_read_xattr(file_dentry(file), &xattr_value);
290 if ((xattr_value && xattr_len > 2) &&
291 (xattr_value->type == EVM_IMA_XATTR_DIGSIG))
292 set_bit(IMA_DIGSIG, &iint->atomic_flags);
293 iint->flags |= IMA_HASHED;
294 action ^= IMA_HASH;
295 set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
296 }
297
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500298 /* Nothing to do, just return existing appraised status */
299 if (!action) {
Mimi Zohar2cd47372019-04-30 08:34:44 -0400300 if (must_appraise) {
301 rc = mmap_violation_check(func, file, &pathbuf,
302 &pathname, filename);
303 if (!rc)
304 rc = ima_get_cache_status(iint, func);
305 }
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200306 goto out_locked;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500307 }
Mimi Zohar3323eec2009-02-04 09:06:58 -0500308
Dmitry Kasatkinf68c05f2014-08-22 09:43:55 +0300309 if ((action & IMA_APPRAISE_SUBMASK) ||
Thiago Jung Bauermann39b07092019-06-27 23:19:30 -0300310 strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) != 0) {
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200311 /* read 'security.ima' */
Miklos Szeredie71b9df2016-09-16 12:44:20 +0200312 xattr_len = ima_read_xattr(file_dentry(file), &xattr_value);
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300313
Thiago Jung Bauermanne5092252019-06-27 23:19:33 -0300314 /*
315 * Read the appended modsig if allowed by the policy, and allow
316 * an additional measurement list entry, if needed, based on the
317 * template format and whether the file was already measured.
318 */
319 if (iint->flags & IMA_MODSIG_ALLOWED) {
320 rc = ima_read_modsig(func, buf, size, &modsig);
321
322 if (!rc && ima_template_has_modsig(template_desc) &&
323 iint->flags & IMA_MEASURED)
324 action |= IMA_MEASURE;
325 }
Thiago Jung Bauermann39b07092019-06-27 23:19:30 -0300326 }
327
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200328 hash_algo = ima_get_hash_algo(xattr_value, xattr_len);
329
Thiago Jung Bauermann15588222019-06-27 23:19:31 -0300330 rc = ima_collect_measurement(iint, file, buf, size, hash_algo, modsig);
Mimi Zoharf3cc6b22017-06-17 23:56:23 -0400331 if (rc != 0 && rc != -EBADF && rc != -EINVAL)
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200332 goto out_locked;
Mimi Zohar08e1b762012-06-20 09:32:55 -0400333
Mimi Zoharbc15ed62017-01-17 06:45:41 -0500334 if (!pathbuf) /* ima_rdwr_violation possibly pre-fetched */
335 pathname = ima_d_path(&file->f_path, &pathbuf, filename);
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300336
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500337 if (action & IMA_MEASURE)
Mimi Zoharbcbc9b0c2013-07-23 11:15:00 -0400338 ima_store_measurement(iint, file, pathname,
Thiago Jung Bauermann3878d502019-06-27 23:19:32 -0300339 xattr_value, xattr_len, modsig, pcr,
Matthew Garrett19453ce02019-06-19 15:46:11 -0700340 template_desc);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200341 if (rc == 0 && (action & IMA_APPRAISE_SUBMASK)) {
Nayna Jain273df862019-10-30 23:31:32 -0400342 rc = ima_check_blacklist(iint, modsig, pcr);
343 if (rc != -EPERM) {
344 inode_lock(inode);
345 rc = ima_appraise_measurement(func, iint, file,
346 pathname, xattr_value,
347 xattr_len, modsig);
348 inode_unlock(inode);
349 }
Mimi Zohar2cd47372019-04-30 08:34:44 -0400350 if (!rc)
351 rc = mmap_violation_check(func, file, &pathbuf,
352 &pathname, filename);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200353 }
Peter Moodye7c568e2012-06-14 10:04:36 -0700354 if (action & IMA_AUDIT)
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300355 ima_audit_measurement(iint, pathname);
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200356
Mimi Zoharf3cc6b22017-06-17 23:56:23 -0400357 if ((file->f_flags & O_DIRECT) && (iint->flags & IMA_PERMIT_DIRECTIO))
358 rc = 0;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200359out_locked:
360 if ((mask & MAY_WRITE) && test_bit(IMA_DIGSIG, &iint->atomic_flags) &&
Mimi Zohar05d1a712016-02-29 19:52:05 -0500361 !(iint->flags & IMA_NEW_FILE))
Dmitry Kasatkina175b8b2012-09-27 15:06:28 +0300362 rc = -EACCES;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200363 mutex_unlock(&iint->mutex);
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200364 kfree(xattr_value);
Thiago Jung Bauermann39b07092019-06-27 23:19:30 -0300365 ima_free_modsig(modsig);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200366out:
Dmitry Kasatkin456f5fd2014-10-01 21:43:10 +0300367 if (pathbuf)
368 __putname(pathbuf);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200369 if (must_appraise) {
370 if (rc && (ima_appraise & IMA_APPRAISE_ENFORCE))
371 return -EACCES;
372 if (file->f_mode & FMODE_WRITE)
373 set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
374 }
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300375 return 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500376}
377
378/**
379 * ima_file_mmap - based on policy, collect/store measurement.
380 * @file: pointer to the file to be measured (May be NULL)
381 * @prot: contains the protection that will be applied by the kernel.
382 *
383 * Measure files being mmapped executable based on the ima_must_measure()
384 * policy decision.
385 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300386 * On success return 0. On integrity appraisal error, assuming the file
387 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500388 */
389int ima_file_mmap(struct file *file, unsigned long prot)
390{
Matthew Garrettd906c102018-01-08 13:36:20 -0800391 u32 secid;
392
393 if (file && (prot & PROT_EXEC)) {
394 security_task_getsecid(current, &secid);
395 return process_measurement(file, current_cred(), secid, NULL,
Al Viro6035a272018-06-08 13:40:10 -0400396 0, MAY_EXEC, MMAP_CHECK);
Matthew Garrettd906c102018-01-08 13:36:20 -0800397 }
398
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300399 return 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500400}
401
402/**
Mimi Zohar8eb613c2020-05-03 01:00:02 -0400403 * ima_file_mprotect - based on policy, limit mprotect change
404 * @prot: contains the protection that will be applied by the kernel.
405 *
406 * Files can be mmap'ed read/write and later changed to execute to circumvent
407 * IMA's mmap appraisal policy rules. Due to locking issues (mmap semaphore
408 * would be taken before i_mutex), files can not be measured or appraised at
409 * this point. Eliminate this integrity gap by denying the mprotect
410 * PROT_EXECUTE change, if an mmap appraise policy rule exists.
411 *
412 * On mprotect change success, return 0. On failure, return -EACESS.
413 */
414int ima_file_mprotect(struct vm_area_struct *vma, unsigned long prot)
415{
416 struct ima_template_desc *template;
417 struct file *file = vma->vm_file;
418 char filename[NAME_MAX];
419 char *pathbuf = NULL;
420 const char *pathname = NULL;
421 struct inode *inode;
422 int result = 0;
423 int action;
424 u32 secid;
425 int pcr;
426
427 /* Is mprotect making an mmap'ed file executable? */
Mimi Zohar4235b1a2020-06-10 09:18:26 -0400428 if (!(ima_policy_flag & IMA_APPRAISE) || !vma->vm_file ||
429 !(prot & PROT_EXEC) || (vma->vm_flags & VM_EXEC))
Mimi Zohar8eb613c2020-05-03 01:00:02 -0400430 return 0;
431
432 security_task_getsecid(current, &secid);
433 inode = file_inode(vma->vm_file);
434 action = ima_get_action(inode, current_cred(), secid, MAY_EXEC,
435 MMAP_CHECK, &pcr, &template, 0);
436
437 /* Is the mmap'ed file in policy? */
438 if (!(action & (IMA_MEASURE | IMA_APPRAISE_SUBMASK)))
439 return 0;
440
441 if (action & IMA_APPRAISE_SUBMASK)
442 result = -EPERM;
443
444 file = vma->vm_file;
445 pathname = ima_d_path(&file->f_path, &pathbuf, filename);
446 integrity_audit_msg(AUDIT_INTEGRITY_DATA, inode, pathname,
447 "collect_data", "failed-mprotect", result, 0);
448 if (pathbuf)
449 __putname(pathbuf);
450
451 return result;
452}
453
454/**
Mimi Zohar3323eec2009-02-04 09:06:58 -0500455 * ima_bprm_check - based on policy, collect/store measurement.
456 * @bprm: contains the linux_binprm structure
457 *
458 * The OS protects against an executable file, already open for write,
459 * from being executed in deny_write_access() and an executable file,
460 * already open for execute, from being modified in get_write_access().
461 * So we can be certain that what we verify and measure here is actually
462 * what is being executed.
463 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300464 * On success return 0. On integrity appraisal error, assuming the file
465 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500466 */
467int ima_bprm_check(struct linux_binprm *bprm)
468{
Matthew Garrettd906c102018-01-08 13:36:20 -0800469 int ret;
470 u32 secid;
471
472 security_task_getsecid(current, &secid);
473 ret = process_measurement(bprm->file, current_cred(), secid, NULL, 0,
Al Viro6035a272018-06-08 13:40:10 -0400474 MAY_EXEC, BPRM_CHECK);
Matthew Garrettd906c102018-01-08 13:36:20 -0800475 if (ret)
476 return ret;
477
478 security_cred_getsecid(bprm->cred, &secid);
479 return process_measurement(bprm->file, bprm->cred, secid, NULL, 0,
Al Viro6035a272018-06-08 13:40:10 -0400480 MAY_EXEC, CREDS_CHECK);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500481}
482
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500483/**
484 * ima_path_check - based on policy, collect/store measurement.
485 * @file: pointer to the file to be measured
Lans Zhang20f482a2017-01-06 12:38:11 +0800486 * @mask: contains MAY_READ, MAY_WRITE, MAY_EXEC or MAY_APPEND
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500487 *
488 * Measure files based on the ima_must_measure() policy decision.
489 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300490 * On success return 0. On integrity appraisal error, assuming the file
491 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500492 */
Al Viro6035a272018-06-08 13:40:10 -0400493int ima_file_check(struct file *file, int mask)
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500494{
Matthew Garrettd906c102018-01-08 13:36:20 -0800495 u32 secid;
496
497 security_task_getsecid(current, &secid);
498 return process_measurement(file, current_cred(), secid, NULL, 0,
Lans Zhang20f482a2017-01-06 12:38:11 +0800499 mask & (MAY_READ | MAY_WRITE | MAY_EXEC |
Al Viro6035a272018-06-08 13:40:10 -0400500 MAY_APPEND), FILE_CHECK);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500501}
Mimi Zohar9bbb6ca2010-01-26 17:02:40 -0500502EXPORT_SYMBOL_GPL(ima_file_check);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500503
Mimi Zoharfdf90722012-10-16 12:40:08 +1030504/**
Florent Revest6beea7a2020-01-13 10:42:44 +0100505 * ima_file_hash - return the stored measurement if a file has been hashed and
506 * is in the iint cache.
507 * @file: pointer to the file
508 * @buf: buffer in which to store the hash
509 * @buf_size: length of the buffer
510 *
511 * On success, return the hash algorithm (as defined in the enum hash_algo).
512 * If buf is not NULL, this function also outputs the hash into buf.
513 * If the hash is larger than buf_size, then only buf_size bytes will be copied.
514 * It generally just makes sense to pass a buffer capable of holding the largest
515 * possible hash: IMA_MAX_DIGEST_SIZE.
516 * The file hash returned is based on the entire file, including the appended
517 * signature.
518 *
519 * If IMA is disabled or if no measurement is available, return -EOPNOTSUPP.
520 * If the parameters are incorrect, return -EINVAL.
521 */
522int ima_file_hash(struct file *file, char *buf, size_t buf_size)
523{
524 struct inode *inode;
525 struct integrity_iint_cache *iint;
526 int hash_algo;
527
528 if (!file)
529 return -EINVAL;
530
531 if (!ima_policy_flag)
532 return -EOPNOTSUPP;
533
534 inode = file_inode(file);
535 iint = integrity_iint_find(inode);
536 if (!iint)
537 return -EOPNOTSUPP;
538
539 mutex_lock(&iint->mutex);
KP Singhaa662fc2020-09-16 18:02:42 +0000540
541 /*
542 * ima_file_hash can be called when ima_collect_measurement has still
543 * not been called, we might not always have a hash.
544 */
545 if (!iint->ima_hash) {
546 mutex_unlock(&iint->mutex);
547 return -EOPNOTSUPP;
548 }
549
Florent Revest6beea7a2020-01-13 10:42:44 +0100550 if (buf) {
551 size_t copied_size;
552
553 copied_size = min_t(size_t, iint->ima_hash->length, buf_size);
554 memcpy(buf, iint->ima_hash->digest, copied_size);
555 }
556 hash_algo = iint->ima_hash->algo;
557 mutex_unlock(&iint->mutex);
558
559 return hash_algo;
560}
561EXPORT_SYMBOL_GPL(ima_file_hash);
562
563/**
Mimi Zoharfdb24102019-01-22 14:06:49 -0600564 * ima_post_create_tmpfile - mark newly created tmpfile as new
565 * @file : newly created tmpfile
566 *
567 * No measuring, appraising or auditing of newly created tmpfiles is needed.
568 * Skip calling process_measurement(), but indicate which newly, created
569 * tmpfiles are in policy.
570 */
571void ima_post_create_tmpfile(struct inode *inode)
572{
573 struct integrity_iint_cache *iint;
574 int must_appraise;
575
576 must_appraise = ima_must_appraise(inode, MAY_ACCESS, FILE_CHECK);
577 if (!must_appraise)
578 return;
579
580 /* Nothing to do if we can't allocate memory */
581 iint = integrity_inode_get(inode);
582 if (!iint)
583 return;
584
585 /* needed for writing the security xattrs */
586 set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
587 iint->ima_file_status = INTEGRITY_PASS;
588}
589
590/**
Mimi Zohar05d1a712016-02-29 19:52:05 -0500591 * ima_post_path_mknod - mark as a new inode
592 * @dentry: newly created dentry
593 *
594 * Mark files created via the mknodat syscall as new, so that the
595 * file data can be written later.
596 */
597void ima_post_path_mknod(struct dentry *dentry)
598{
599 struct integrity_iint_cache *iint;
600 struct inode *inode = dentry->d_inode;
601 int must_appraise;
602
603 must_appraise = ima_must_appraise(inode, MAY_ACCESS, FILE_CHECK);
604 if (!must_appraise)
605 return;
606
Mimi Zoharfdb24102019-01-22 14:06:49 -0600607 /* Nothing to do if we can't allocate memory */
Mimi Zohar05d1a712016-02-29 19:52:05 -0500608 iint = integrity_inode_get(inode);
Mimi Zoharfdb24102019-01-22 14:06:49 -0600609 if (!iint)
610 return;
611
612 /* needed for re-opening empty files */
613 iint->flags |= IMA_NEW_FILE;
Mimi Zohar05d1a712016-02-29 19:52:05 -0500614}
615
616/**
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500617 * ima_read_file - pre-measure/appraise hook decision based on policy
618 * @file: pointer to the file to be measured/appraised/audit
619 * @read_id: caller identifier
Kees Cook2039bda2020-10-02 10:38:23 -0700620 * @contents: whether a subsequent call will be made to ima_post_read_file()
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500621 *
622 * Permit reading a file based on policy. The policy rules are written
623 * in terms of the policy identifier. Appraising the integrity of
624 * a file requires a file descriptor.
625 *
626 * For permission return 0, otherwise return -EACCES.
627 */
Kees Cook2039bda2020-10-02 10:38:23 -0700628int ima_read_file(struct file *file, enum kernel_read_file_id read_id,
629 bool contents)
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500630{
Scott Branden34736da2020-10-02 10:38:24 -0700631 enum ima_hooks func;
632 u32 secid;
Kees Cook2039bda2020-10-02 10:38:23 -0700633
Mimi Zohar4f0496d2018-07-13 14:06:03 -0400634 /*
Mimi Zohar4f0496d2018-07-13 14:06:03 -0400635 * Do devices using pre-allocated memory run the risk of the
636 * firmware being accessible to the device prior to the completion
637 * of IMA's signature verification any more than when using two
Kees Cookc3074592020-10-02 10:38:13 -0700638 * buffers? It may be desirable to include the buffer address
639 * in this API and walk all the dma_map_single() mappings to check.
Mimi Zohar4f0496d2018-07-13 14:06:03 -0400640 */
Scott Branden34736da2020-10-02 10:38:24 -0700641
642 /*
643 * There will be a call made to ima_post_read_file() with
644 * a filled buffer, so we don't need to perform an extra
645 * read early here.
646 */
647 if (contents)
648 return 0;
649
650 /* Read entire file for all partial reads. */
651 func = read_idmap[read_id] ?: FILE_CHECK;
652 security_task_getsecid(current, &secid);
653 return process_measurement(file, current_cred(), secid, NULL,
654 0, MAY_READ, func);
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500655}
656
Matthew Garrett29d3c1c2019-08-19 17:18:01 -0700657const int read_idmap[READING_MAX_ID] = {
Mimi Zohard9ddf072016-01-14 20:59:14 -0500658 [READING_FIRMWARE] = FIRMWARE_CHECK,
659 [READING_MODULE] = MODULE_CHECK,
660 [READING_KEXEC_IMAGE] = KEXEC_KERNEL_CHECK,
661 [READING_KEXEC_INITRAMFS] = KEXEC_INITRAMFS_CHECK,
Mimi Zohar19f8a842016-01-15 10:17:12 -0500662 [READING_POLICY] = POLICY_CHECK
Mimi Zohard9ddf072016-01-14 20:59:14 -0500663};
664
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500665/**
Mimi Zoharcf222212016-01-14 17:57:47 -0500666 * ima_post_read_file - in memory collect/appraise/audit measurement
667 * @file: pointer to the file to be measured/appraised/audit
668 * @buf: pointer to in memory file contents
669 * @size: size of in memory file contents
670 * @read_id: caller identifier
671 *
672 * Measure/appraise/audit in memory file based on policy. Policy rules
673 * are written in terms of a policy identifier.
674 *
675 * On success return 0. On integrity appraisal error, assuming the file
676 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
677 */
678int ima_post_read_file(struct file *file, void *buf, loff_t size,
679 enum kernel_read_file_id read_id)
680{
Mimi Zohard9ddf072016-01-14 20:59:14 -0500681 enum ima_hooks func;
Matthew Garrettd906c102018-01-08 13:36:20 -0800682 u32 secid;
Mimi Zoharcf222212016-01-14 17:57:47 -0500683
Christoph Hellwiga7d3d032017-09-10 09:49:45 +0200684 /* permit signed certs */
685 if (!file && read_id == READING_X509_CERTIFICATE)
686 return 0;
687
Mimi Zoharcf222212016-01-14 17:57:47 -0500688 if (!file || !buf || size == 0) { /* should never happen */
689 if (ima_appraise & IMA_APPRAISE_ENFORCE)
690 return -EACCES;
691 return 0;
692 }
693
Mimi Zohard9ddf072016-01-14 20:59:14 -0500694 func = read_idmap[read_id] ?: FILE_CHECK;
Matthew Garrettd906c102018-01-08 13:36:20 -0800695 security_task_getsecid(current, &secid);
696 return process_measurement(file, current_cred(), secid, buf, size,
Al Viro6035a272018-06-08 13:40:10 -0400697 MAY_READ, func);
Mimi Zohar5a9196d2014-07-22 10:39:48 -0400698}
699
Mimi Zohar16c267a2018-07-13 14:05:58 -0400700/**
701 * ima_load_data - appraise decision based on policy
702 * @id: kernel load data caller identifier
Kees Cookb64fcae2020-10-02 10:38:20 -0700703 * @contents: whether the full contents will be available in a later
704 * call to ima_post_load_data().
Mimi Zohar16c267a2018-07-13 14:05:58 -0400705 *
706 * Callers of this LSM hook can not measure, appraise, or audit the
707 * data provided by userspace. Enforce policy rules requring a file
708 * signature (eg. kexec'ed kernel image).
709 *
710 * For permission return 0, otherwise return -EACCES.
711 */
Kees Cookb64fcae2020-10-02 10:38:20 -0700712int ima_load_data(enum kernel_load_data_id id, bool contents)
Mimi Zohar16c267a2018-07-13 14:05:58 -0400713{
Nayna Jainb5ca1172018-10-09 23:00:34 +0530714 bool ima_enforce, sig_enforce;
Mimi Zoharc77b8cd2018-07-13 14:06:02 -0400715
Nayna Jainb5ca1172018-10-09 23:00:34 +0530716 ima_enforce =
717 (ima_appraise & IMA_APPRAISE_ENFORCE) == IMA_APPRAISE_ENFORCE;
Mimi Zohar16c267a2018-07-13 14:05:58 -0400718
719 switch (id) {
720 case LOADING_KEXEC_IMAGE:
Jiri Bohac99d5cadf2019-08-19 17:17:44 -0700721 if (IS_ENABLED(CONFIG_KEXEC_SIG)
Nayna Jainb5ca1172018-10-09 23:00:34 +0530722 && arch_ima_get_secureboot()) {
723 pr_err("impossible to appraise a kernel image without a file descriptor; try using kexec_file_load syscall.\n");
724 return -EACCES;
725 }
726
727 if (ima_enforce && (ima_appraise & IMA_APPRAISE_KEXEC)) {
Mimi Zohar16c267a2018-07-13 14:05:58 -0400728 pr_err("impossible to appraise a kernel image without a file descriptor; try using kexec_file_load syscall.\n");
729 return -EACCES; /* INTEGRITY_UNKNOWN */
730 }
Mimi Zoharfed25122018-07-13 14:06:00 -0400731 break;
732 case LOADING_FIRMWARE:
Kees Cook4f2d99b2020-10-02 10:38:21 -0700733 if (ima_enforce && (ima_appraise & IMA_APPRAISE_FIRMWARE) && !contents) {
Mimi Zoharfed25122018-07-13 14:06:00 -0400734 pr_err("Prevent firmware sysfs fallback loading.\n");
735 return -EACCES; /* INTEGRITY_UNKNOWN */
736 }
Mimi Zoharc77b8cd2018-07-13 14:06:02 -0400737 break;
738 case LOADING_MODULE:
739 sig_enforce = is_module_sig_enforced();
740
Nayna Jainb5ca1172018-10-09 23:00:34 +0530741 if (ima_enforce && (!sig_enforce
742 && (ima_appraise & IMA_APPRAISE_MODULES))) {
Mimi Zoharc77b8cd2018-07-13 14:06:02 -0400743 pr_err("impossible to appraise a module without a file descriptor. sig_enforce kernel parameter might help\n");
744 return -EACCES; /* INTEGRITY_UNKNOWN */
745 }
Mimi Zohar16c267a2018-07-13 14:05:58 -0400746 default:
747 break;
748 }
749 return 0;
750}
751
Kees Cookb64fcae2020-10-02 10:38:20 -0700752/**
753 * ima_post_load_data - appraise decision based on policy
754 * @buf: pointer to in memory file contents
755 * @size: size of in memory file contents
756 * @id: kernel load data caller identifier
757 * @description: @id-specific description of contents
758 *
759 * Measure/appraise/audit in memory buffer based on policy. Policy rules
760 * are written in terms of a policy identifier.
761 *
762 * On success return 0. On integrity appraisal error, assuming the file
763 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
764 */
765int ima_post_load_data(char *buf, loff_t size,
766 enum kernel_load_data_id load_id,
767 char *description)
768{
Kees Cook4f2d99b2020-10-02 10:38:21 -0700769 if (load_id == LOADING_FIRMWARE) {
770 if ((ima_appraise & IMA_APPRAISE_FIRMWARE) &&
771 (ima_appraise & IMA_APPRAISE_ENFORCE)) {
772 pr_err("Prevent firmware loading_store.\n");
773 return -EACCES; /* INTEGRITY_UNKNOWN */
774 }
775 return 0;
776 }
777
Kees Cookb64fcae2020-10-02 10:38:20 -0700778 return 0;
779}
780
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700781/*
782 * process_buffer_measurement - Measure the buffer to ima log.
Tyler Hicks48341772020-07-09 01:19:11 -0500783 * @inode: inode associated with the object being measured (NULL for KEY_CHECK)
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700784 * @buf: pointer to the buffer that needs to be added to the log.
785 * @size: size of buffer(in bytes).
786 * @eventname: event name to be used for the buffer entry.
Nayna Jaine14555e2019-10-30 23:31:30 -0400787 * @func: IMA hook
788 * @pcr: pcr to extend the measurement
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800789 * @keyring: keyring name to determine the action to be performed
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700790 *
791 * Based on policy, the buffer is measured into the ima log.
792 */
Tyler Hicks48341772020-07-09 01:19:11 -0500793void process_buffer_measurement(struct inode *inode, const void *buf, int size,
Nayna Jaine14555e2019-10-30 23:31:30 -0400794 const char *eventname, enum ima_hooks func,
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800795 int pcr, const char *keyring)
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700796{
797 int ret = 0;
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700798 const char *audit_cause = "ENOMEM";
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700799 struct ima_template_entry *entry = NULL;
800 struct integrity_iint_cache iint = {};
801 struct ima_event_data event_data = {.iint = &iint,
Prakhar Srivastava86b4da82019-06-23 23:23:30 -0700802 .filename = eventname,
803 .buf = buf,
804 .buf_len = size};
Nayna Jaine14555e2019-10-30 23:31:30 -0400805 struct ima_template_desc *template = NULL;
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700806 struct {
807 struct ima_digest_data hdr;
808 char digest[IMA_MAX_DIGEST_SIZE];
809 } hash = {};
810 int violation = 0;
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700811 int action = 0;
Nayna Jaine14555e2019-10-30 23:31:30 -0400812 u32 secid;
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700813
Lakshmi Ramasubramanianc5563ba2019-12-11 08:47:02 -0800814 if (!ima_policy_flag)
815 return;
816
Nayna Jaine14555e2019-10-30 23:31:30 -0400817 /*
818 * Both LSM hooks and auxilary based buffer measurements are
819 * based on policy. To avoid code duplication, differentiate
820 * between the LSM hooks and auxilary buffer measurements,
821 * retrieving the policy rule information only for the LSM hook
822 * buffer measurements.
823 */
824 if (func) {
825 security_task_getsecid(current, &secid);
Tyler Hicks48341772020-07-09 01:19:11 -0500826 action = ima_get_action(inode, current_cred(), secid, 0, func,
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800827 &pcr, &template, keyring);
Nayna Jaine14555e2019-10-30 23:31:30 -0400828 if (!(action & IMA_MEASURE))
829 return;
830 }
831
832 if (!pcr)
833 pcr = CONFIG_IMA_MEASURE_PCR_IDX;
834
835 if (!template) {
836 template = lookup_template_desc("ima-buf");
837 ret = template_desc_init_fields(template->fmt,
838 &(template->fields),
839 &(template->num_fields));
840 if (ret < 0) {
841 pr_err("template %s init failed, result: %d\n",
842 (strlen(template->name) ?
843 template->name : template->fmt), ret);
844 return;
845 }
846 }
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700847
848 iint.ima_hash = &hash.hdr;
849 iint.ima_hash->algo = ima_hash_algo;
850 iint.ima_hash->length = hash_digest_size[ima_hash_algo];
851
852 ret = ima_calc_buffer_hash(buf, size, iint.ima_hash);
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700853 if (ret < 0) {
854 audit_cause = "hashing_error";
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700855 goto out;
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700856 }
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700857
Nayna Jaine14555e2019-10-30 23:31:30 -0400858 ret = ima_alloc_init_template(&event_data, &entry, template);
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700859 if (ret < 0) {
860 audit_cause = "alloc_entry";
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700861 goto out;
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700862 }
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700863
864 ret = ima_store_template(entry, violation, NULL, buf, pcr);
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700865 if (ret < 0) {
866 audit_cause = "store_entry";
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700867 ima_free_template_entry(entry);
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700868 }
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700869
870out:
Tushar Sugandhi72ec6112020-02-18 16:06:10 -0800871 if (ret < 0)
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700872 integrity_audit_message(AUDIT_INTEGRITY_PCR, NULL, eventname,
873 func_measure_str(func),
874 audit_cause, ret, 0, ret);
Tushar Sugandhi72ec6112020-02-18 16:06:10 -0800875
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700876 return;
877}
878
879/**
880 * ima_kexec_cmdline - measure kexec cmdline boot args
Tyler Hicks48341772020-07-09 01:19:11 -0500881 * @kernel_fd: file descriptor of the kexec kernel being loaded
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700882 * @buf: pointer to buffer
883 * @size: size of buffer
884 *
885 * Buffers can only be measured, not appraised.
886 */
Tyler Hicks48341772020-07-09 01:19:11 -0500887void ima_kexec_cmdline(int kernel_fd, const void *buf, int size)
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700888{
Tyler Hicks48341772020-07-09 01:19:11 -0500889 struct fd f;
890
891 if (!buf || !size)
892 return;
893
894 f = fdget(kernel_fd);
895 if (!f.file)
896 return;
897
898 process_buffer_measurement(file_inode(f.file), buf, size,
899 "kexec-cmdline", KEXEC_CMDLINE, 0, NULL);
900 fdput(f);
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700901}
902
Mimi Zohar3323eec2009-02-04 09:06:58 -0500903static int __init init_ima(void)
904{
905 int error;
906
Mimi Zohar3f23d622016-12-19 16:22:51 -0800907 ima_init_template_list();
Mimi Zohare7a2ad72013-06-07 12:16:37 +0200908 hash_setup(CONFIG_IMA_DEFAULT_HASH);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500909 error = ima_init();
Petr Vorelab603682018-03-23 14:41:08 +0100910
911 if (error && strcmp(hash_algo_name[ima_hash_algo],
912 CONFIG_IMA_DEFAULT_HASH) != 0) {
913 pr_info("Allocating %s failed, going to use default hash algorithm %s\n",
914 hash_algo_name[ima_hash_algo], CONFIG_IMA_DEFAULT_HASH);
915 hash_setup_done = 0;
916 hash_setup(CONFIG_IMA_DEFAULT_HASH);
917 error = ima_init();
918 }
919
Roberto Sassue144d6b2020-03-25 11:47:07 +0100920 if (error)
921 return error;
922
Janne Karhunenb1694242019-06-14 15:20:15 +0300923 error = register_blocking_lsm_notifier(&ima_lsm_policy_notifier);
924 if (error)
925 pr_warn("Couldn't register LSM notifier, error %d\n", error);
926
Petr Vorel4ecd9932018-05-10 17:15:48 +0200927 if (!error)
Roberto Sassua7560242014-09-12 19:35:54 +0200928 ima_update_policy_flag();
Petr Vorel4ecd9932018-05-10 17:15:48 +0200929
Mimi Zohar3323eec2009-02-04 09:06:58 -0500930 return error;
931}
932
Mimi Zohar3323eec2009-02-04 09:06:58 -0500933late_initcall(init_ima); /* Start IMA after the TPM is available */