blob: 9dd9c5f4d7361152017be4aef51e4b1b73affd7c [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) {
54 if (strncmp(str, "sha1", 4) == 0)
55 ima_hash_algo = HASH_ALGO_SHA1;
56 else if (strncmp(str, "md5", 3) == 0)
57 ima_hash_algo = HASH_ALGO_MD5;
Boshi Wangebe7c0a2017-10-20 16:01:03 +080058 else
59 return 1;
Mimi Zohare7a2ad72013-06-07 12:16:37 +020060 goto out;
61 }
62
Yisheng Xieb4df8602018-05-21 19:58:02 +080063 i = match_string(hash_algo_name, HASH_ALGO__LAST, str);
64 if (i < 0)
Boshi Wangebe7c0a2017-10-20 16:01:03 +080065 return 1;
Yisheng Xieb4df8602018-05-21 19:58:02 +080066
67 ima_hash_algo = i;
Mimi Zohare7a2ad72013-06-07 12:16:37 +020068out:
69 hash_setup_done = 1;
Mimi Zohar3323eec2009-02-04 09:06:58 -050070 return 1;
71}
72__setup("ima_hash=", hash_setup);
73
Mimi Zohar2cd47372019-04-30 08:34:44 -040074/* Prevent mmap'ing a file execute that is already mmap'ed write */
75static int mmap_violation_check(enum ima_hooks func, struct file *file,
76 char **pathbuf, const char **pathname,
77 char *filename)
78{
79 struct inode *inode;
80 int rc = 0;
81
82 if ((func == MMAP_CHECK) && mapping_writably_mapped(file->f_mapping)) {
83 rc = -ETXTBSY;
84 inode = file_inode(file);
85
86 if (!*pathbuf) /* ima_rdwr_violation possibly pre-fetched */
87 *pathname = ima_d_path(&file->f_path, pathbuf,
88 filename);
89 integrity_audit_msg(AUDIT_INTEGRITY_DATA, inode, *pathname,
90 "mmap_file", "mmapped_writers", rc, 0);
91 }
92 return rc;
93}
94
Eric Parise0d5bd22009-12-04 15:48:00 -050095/*
Mimi Zohar890275b52010-11-02 10:13:07 -040096 * ima_rdwr_violation_check
Mimi Zohar8eb988c2010-01-20 15:35:41 -050097 *
Mimi Zohar890275b52010-11-02 10:13:07 -040098 * Only invalidate the PCR for measured files:
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020099 * - Opening a file for write when already open for read,
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500100 * results in a time of measure, time of use (ToMToU) error.
101 * - Opening a file for read when already open for write,
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200102 * could result in a file measurement error.
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500103 *
104 */
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200105static void ima_rdwr_violation_check(struct file *file,
106 struct integrity_iint_cache *iint,
Roberto Sassu1b68bdf2014-09-12 19:35:56 +0200107 int must_measure,
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200108 char **pathbuf,
Roberto Sassu4e8581e2017-11-30 11:56:02 +0100109 const char **pathname,
110 char *filename)
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500111{
David Howellsc77cece2013-06-13 23:37:49 +0100112 struct inode *inode = file_inode(file);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500113 fmode_t mode = file->f_mode;
Eric Parisad16ad02010-10-25 14:41:45 -0400114 bool send_tomtou = false, send_writers = false;
Eric Parisa178d202010-10-25 14:41:59 -0400115
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500116 if (mode & FMODE_WRITE) {
Dmitry Kasatkin14503eb2014-03-27 10:29:28 +0200117 if (atomic_read(&inode->i_readcount) && IS_IMA(inode)) {
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200118 if (!iint)
119 iint = integrity_iint_find(inode);
Dmitry Kasatkin14503eb2014-03-27 10:29:28 +0200120 /* IMA_MEASURE is set from reader side */
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200121 if (iint && test_bit(IMA_MUST_MEASURE,
122 &iint->atomic_flags))
Dmitry Kasatkin14503eb2014-03-27 10:29:28 +0200123 send_tomtou = true;
124 }
Dmitry Kasatkinb882fae2014-03-27 10:54:11 +0200125 } else {
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200126 if (must_measure)
127 set_bit(IMA_MUST_MEASURE, &iint->atomic_flags);
Nikolay Borisoveed9de32018-12-11 10:31:40 +0200128 if (inode_is_open_for_write(inode) && must_measure)
Dmitry Kasatkinb882fae2014-03-27 10:54:11 +0200129 send_writers = true;
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500130 }
Eric Parisad16ad02010-10-25 14:41:45 -0400131
Mimi Zohar08e1b762012-06-20 09:32:55 -0400132 if (!send_tomtou && !send_writers)
133 return;
134
Mimi Zoharbc15ed62017-01-17 06:45:41 -0500135 *pathname = ima_d_path(&file->f_path, pathbuf, filename);
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300136
Eric Parisad16ad02010-10-25 14:41:45 -0400137 if (send_tomtou)
Roberto Sassu8d94eb92015-04-11 17:12:39 +0200138 ima_add_violation(file, *pathname, iint,
139 "invalid_pcr", "ToMToU");
Eric Parisad16ad02010-10-25 14:41:45 -0400140 if (send_writers)
Roberto Sassu8d94eb92015-04-11 17:12:39 +0200141 ima_add_violation(file, *pathname, iint,
Mimi Zohar08e1b762012-06-20 09:32:55 -0400142 "invalid_pcr", "open_writers");
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500143}
144
Mimi Zoharf381c272011-03-09 14:13:22 -0500145static void ima_check_last_writer(struct integrity_iint_cache *iint,
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500146 struct inode *inode, struct file *file)
Eric Parisbc7d2a32010-10-25 14:42:05 -0400147{
Al Viro4b2a2c62011-07-26 04:30:35 -0400148 fmode_t mode = file->f_mode;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200149 bool update;
Eric Paris497f3232010-10-25 14:41:32 -0400150
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500151 if (!(mode & FMODE_WRITE))
152 return;
153
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200154 mutex_lock(&iint->mutex);
Dmitry Kasatkinb151d6b2014-06-27 18:04:27 +0300155 if (atomic_read(&inode->i_writecount) == 1) {
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200156 update = test_and_clear_bit(IMA_UPDATE_XATTR,
157 &iint->atomic_flags);
Sascha Hauerac0bf022017-12-11 06:35:20 -0500158 if (!IS_I_VERSION(inode) ||
Goffredo Baroncellic472c072018-02-01 08:15:25 -0500159 !inode_eq_iversion(inode, iint->version) ||
Dmitry Kasatkinb151d6b2014-06-27 18:04:27 +0300160 (iint->flags & IMA_NEW_FILE)) {
161 iint->flags &= ~(IMA_DONE_MASK | IMA_NEW_FILE);
Eric Richtera4226382016-06-01 13:14:06 -0500162 iint->measured_pcrs = 0;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200163 if (update)
Dmitry Kasatkinb151d6b2014-06-27 18:04:27 +0300164 ima_update_xattr(iint, file);
165 }
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500166 }
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200167 mutex_unlock(&iint->mutex);
Eric Parisbc7d2a32010-10-25 14:42:05 -0400168}
169
Mimi Zohar3323eec2009-02-04 09:06:58 -0500170/**
171 * ima_file_free - called on __fput()
172 * @file: pointer to file structure being freed
173 *
Mimi Zohar890275b52010-11-02 10:13:07 -0400174 * Flag files that changed, based on i_version
Mimi Zohar3323eec2009-02-04 09:06:58 -0500175 */
176void ima_file_free(struct file *file)
177{
Al Viro496ad9a2013-01-23 17:07:38 -0500178 struct inode *inode = file_inode(file);
Mimi Zoharf381c272011-03-09 14:13:22 -0500179 struct integrity_iint_cache *iint;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500180
Dmitry Kasatkin0f34a002014-09-24 11:05:10 +0300181 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500182 return;
Eric Paris196f5182010-10-25 14:42:19 -0400183
Mimi Zoharf381c272011-03-09 14:13:22 -0500184 iint = integrity_iint_find(inode);
Mimi Zohar854fdd52010-11-02 10:14:22 -0400185 if (!iint)
186 return;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500187
Mimi Zohar854fdd52010-11-02 10:14:22 -0400188 ima_check_last_writer(iint, inode, file);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500189}
190
Matthew Garrettd906c102018-01-08 13:36:20 -0800191static int process_measurement(struct file *file, const struct cred *cred,
192 u32 secid, char *buf, loff_t size, int mask,
Al Viro6035a272018-06-08 13:40:10 -0400193 enum ima_hooks func)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500194{
Al Viro496ad9a2013-01-23 17:07:38 -0500195 struct inode *inode = file_inode(file);
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200196 struct integrity_iint_cache *iint = NULL;
Matthew Garrett19453ce02019-06-19 15:46:11 -0700197 struct ima_template_desc *template_desc = NULL;
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300198 char *pathbuf = NULL;
Mimi Zoharbc15ed62017-01-17 06:45:41 -0500199 char filename[NAME_MAX];
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300200 const char *pathname = NULL;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200201 int rc = 0, action, must_appraise = 0;
Eric Richter725de7f2016-06-01 13:14:02 -0500202 int pcr = CONFIG_IMA_MEASURE_PCR_IDX;
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200203 struct evm_ima_xattr_data *xattr_value = NULL;
Thiago Jung Bauermann39b07092019-06-27 23:19:30 -0300204 struct modsig *modsig = NULL;
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300205 int xattr_len = 0;
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200206 bool violation_check;
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200207 enum hash_algo hash_algo;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500208
Roberto Sassua7560242014-09-12 19:35:54 +0200209 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500210 return 0;
Eric Parisbc7d2a32010-10-25 14:42:05 -0400211
Mimi Zohard79d72e2012-12-03 17:08:11 -0500212 /* Return an IMA_MEASURE, IMA_APPRAISE, IMA_AUDIT action
213 * bitmask based on the appraise/audit/measurement policy.
214 * Included is the appraise submask.
215 */
Matthew Garrett19453ce02019-06-19 15:46:11 -0700216 action = ima_get_action(inode, cred, secid, mask, func, &pcr,
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800217 &template_desc, NULL);
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500218 violation_check = ((func == FILE_CHECK || func == MMAP_CHECK) &&
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200219 (ima_policy_flag & IMA_MEASURE));
220 if (!action && !violation_check)
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500221 return 0;
222
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500223 must_appraise = action & IMA_APPRAISE;
Eric Parisbc7d2a32010-10-25 14:42:05 -0400224
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500225 /* Is the appraise rule hook specific? */
Dmitry Kasatkin3a8a2ea2014-09-03 10:19:57 +0300226 if (action & IMA_FILE_APPRAISE)
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500227 func = FILE_CHECK;
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500228
Al Viro59551022016-01-22 15:40:57 -0500229 inode_lock(inode);
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500230
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200231 if (action) {
232 iint = integrity_inode_get(inode);
233 if (!iint)
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200234 rc = -ENOMEM;
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200235 }
236
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200237 if (!rc && violation_check)
Roberto Sassu1b68bdf2014-09-12 19:35:56 +0200238 ima_rdwr_violation_check(file, iint, action & IMA_MEASURE,
Roberto Sassu4e8581e2017-11-30 11:56:02 +0100239 &pathbuf, &pathname, filename);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200240
241 inode_unlock(inode);
242
243 if (rc)
244 goto out;
245 if (!action)
246 goto out;
247
248 mutex_lock(&iint->mutex);
249
250 if (test_and_clear_bit(IMA_CHANGE_ATTR, &iint->atomic_flags))
251 /* reset appraisal flags if ima_inode_post_setattr was called */
252 iint->flags &= ~(IMA_APPRAISE | IMA_APPRAISED |
253 IMA_APPRAISE_SUBMASK | IMA_APPRAISED_SUBMASK |
254 IMA_ACTION_FLAGS);
255
Mimi Zohard77ccdc2018-02-21 11:35:20 -0500256 /*
257 * Re-evaulate the file if either the xattr has changed or the
258 * kernel has no way of detecting file change on the filesystem.
259 * (Limited to privileged mounted filesystems.)
260 */
261 if (test_and_clear_bit(IMA_CHANGE_XATTR, &iint->atomic_flags) ||
262 ((inode->i_sb->s_iflags & SB_I_IMA_UNVERIFIABLE_SIGNATURE) &&
Mimi Zohar9e670282018-02-21 11:36:32 -0500263 !(inode->i_sb->s_iflags & SB_I_UNTRUSTED_MOUNTER) &&
264 !(action & IMA_FAIL_UNVERIFIABLE_SIGS))) {
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200265 iint->flags &= ~IMA_DONE_MASK;
Mimi Zohard77ccdc2018-02-21 11:35:20 -0500266 iint->measured_pcrs = 0;
267 }
Dmitry Kasatkinbf2276d2011-10-19 12:04:40 +0300268
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500269 /* Determine if already appraised/measured based on bitmask
Mimi Zohard79d72e2012-12-03 17:08:11 -0500270 * (IMA_MEASURE, IMA_MEASURED, IMA_XXXX_APPRAISE, IMA_XXXX_APPRAISED,
271 * IMA_AUDIT, IMA_AUDITED)
272 */
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500273 iint->flags |= action;
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +0300274 action &= IMA_DO_MASK;
Eric Richtera4226382016-06-01 13:14:06 -0500275 action &= ~((iint->flags & (IMA_DONE_MASK ^ IMA_MEASURED)) >> 1);
276
277 /* If target pcr is already measured, unset IMA_MEASURE action */
278 if ((action & IMA_MEASURE) && (iint->measured_pcrs & (0x1 << pcr)))
279 action ^= IMA_MEASURE;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500280
Mimi Zoharda1b0022016-09-29 10:04:52 -0400281 /* HASH sets the digital signature and update flags, nothing else */
282 if ((action & IMA_HASH) &&
283 !(test_bit(IMA_DIGSIG, &iint->atomic_flags))) {
284 xattr_len = ima_read_xattr(file_dentry(file), &xattr_value);
285 if ((xattr_value && xattr_len > 2) &&
286 (xattr_value->type == EVM_IMA_XATTR_DIGSIG))
287 set_bit(IMA_DIGSIG, &iint->atomic_flags);
288 iint->flags |= IMA_HASHED;
289 action ^= IMA_HASH;
290 set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
291 }
292
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500293 /* Nothing to do, just return existing appraised status */
294 if (!action) {
Mimi Zohar2cd47372019-04-30 08:34:44 -0400295 if (must_appraise) {
296 rc = mmap_violation_check(func, file, &pathbuf,
297 &pathname, filename);
298 if (!rc)
299 rc = ima_get_cache_status(iint, func);
300 }
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200301 goto out_locked;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500302 }
Mimi Zohar3323eec2009-02-04 09:06:58 -0500303
Dmitry Kasatkinf68c05f2014-08-22 09:43:55 +0300304 if ((action & IMA_APPRAISE_SUBMASK) ||
Thiago Jung Bauermann39b07092019-06-27 23:19:30 -0300305 strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) != 0) {
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200306 /* read 'security.ima' */
Miklos Szeredie71b9df2016-09-16 12:44:20 +0200307 xattr_len = ima_read_xattr(file_dentry(file), &xattr_value);
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300308
Thiago Jung Bauermanne5092252019-06-27 23:19:33 -0300309 /*
310 * Read the appended modsig if allowed by the policy, and allow
311 * an additional measurement list entry, if needed, based on the
312 * template format and whether the file was already measured.
313 */
314 if (iint->flags & IMA_MODSIG_ALLOWED) {
315 rc = ima_read_modsig(func, buf, size, &modsig);
316
317 if (!rc && ima_template_has_modsig(template_desc) &&
318 iint->flags & IMA_MEASURED)
319 action |= IMA_MEASURE;
320 }
Thiago Jung Bauermann39b07092019-06-27 23:19:30 -0300321 }
322
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200323 hash_algo = ima_get_hash_algo(xattr_value, xattr_len);
324
Thiago Jung Bauermann15588222019-06-27 23:19:31 -0300325 rc = ima_collect_measurement(iint, file, buf, size, hash_algo, modsig);
Mimi Zoharf3cc6b22017-06-17 23:56:23 -0400326 if (rc != 0 && rc != -EBADF && rc != -EINVAL)
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200327 goto out_locked;
Mimi Zohar08e1b762012-06-20 09:32:55 -0400328
Mimi Zoharbc15ed62017-01-17 06:45:41 -0500329 if (!pathbuf) /* ima_rdwr_violation possibly pre-fetched */
330 pathname = ima_d_path(&file->f_path, &pathbuf, filename);
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300331
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500332 if (action & IMA_MEASURE)
Mimi Zoharbcbc9b0c2013-07-23 11:15:00 -0400333 ima_store_measurement(iint, file, pathname,
Thiago Jung Bauermann3878d502019-06-27 23:19:32 -0300334 xattr_value, xattr_len, modsig, pcr,
Matthew Garrett19453ce02019-06-19 15:46:11 -0700335 template_desc);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200336 if (rc == 0 && (action & IMA_APPRAISE_SUBMASK)) {
Nayna Jain273df862019-10-30 23:31:32 -0400337 rc = ima_check_blacklist(iint, modsig, pcr);
338 if (rc != -EPERM) {
339 inode_lock(inode);
340 rc = ima_appraise_measurement(func, iint, file,
341 pathname, xattr_value,
342 xattr_len, modsig);
343 inode_unlock(inode);
344 }
Mimi Zohar2cd47372019-04-30 08:34:44 -0400345 if (!rc)
346 rc = mmap_violation_check(func, file, &pathbuf,
347 &pathname, filename);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200348 }
Peter Moodye7c568e2012-06-14 10:04:36 -0700349 if (action & IMA_AUDIT)
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300350 ima_audit_measurement(iint, pathname);
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200351
Mimi Zoharf3cc6b22017-06-17 23:56:23 -0400352 if ((file->f_flags & O_DIRECT) && (iint->flags & IMA_PERMIT_DIRECTIO))
353 rc = 0;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200354out_locked:
355 if ((mask & MAY_WRITE) && test_bit(IMA_DIGSIG, &iint->atomic_flags) &&
Mimi Zohar05d1a712016-02-29 19:52:05 -0500356 !(iint->flags & IMA_NEW_FILE))
Dmitry Kasatkina175b8b2012-09-27 15:06:28 +0300357 rc = -EACCES;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200358 mutex_unlock(&iint->mutex);
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200359 kfree(xattr_value);
Thiago Jung Bauermann39b07092019-06-27 23:19:30 -0300360 ima_free_modsig(modsig);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200361out:
Dmitry Kasatkin456f5fd2014-10-01 21:43:10 +0300362 if (pathbuf)
363 __putname(pathbuf);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200364 if (must_appraise) {
365 if (rc && (ima_appraise & IMA_APPRAISE_ENFORCE))
366 return -EACCES;
367 if (file->f_mode & FMODE_WRITE)
368 set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
369 }
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300370 return 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500371}
372
373/**
374 * ima_file_mmap - based on policy, collect/store measurement.
375 * @file: pointer to the file to be measured (May be NULL)
376 * @prot: contains the protection that will be applied by the kernel.
377 *
378 * Measure files being mmapped executable based on the ima_must_measure()
379 * policy decision.
380 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300381 * On success return 0. On integrity appraisal error, assuming the file
382 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500383 */
384int ima_file_mmap(struct file *file, unsigned long prot)
385{
Matthew Garrettd906c102018-01-08 13:36:20 -0800386 u32 secid;
387
388 if (file && (prot & PROT_EXEC)) {
389 security_task_getsecid(current, &secid);
390 return process_measurement(file, current_cred(), secid, NULL,
Al Viro6035a272018-06-08 13:40:10 -0400391 0, MAY_EXEC, MMAP_CHECK);
Matthew Garrettd906c102018-01-08 13:36:20 -0800392 }
393
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300394 return 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500395}
396
397/**
Mimi Zohar8eb613c2020-05-03 01:00:02 -0400398 * ima_file_mprotect - based on policy, limit mprotect change
399 * @prot: contains the protection that will be applied by the kernel.
400 *
401 * Files can be mmap'ed read/write and later changed to execute to circumvent
402 * IMA's mmap appraisal policy rules. Due to locking issues (mmap semaphore
403 * would be taken before i_mutex), files can not be measured or appraised at
404 * this point. Eliminate this integrity gap by denying the mprotect
405 * PROT_EXECUTE change, if an mmap appraise policy rule exists.
406 *
407 * On mprotect change success, return 0. On failure, return -EACESS.
408 */
409int ima_file_mprotect(struct vm_area_struct *vma, unsigned long prot)
410{
411 struct ima_template_desc *template;
412 struct file *file = vma->vm_file;
413 char filename[NAME_MAX];
414 char *pathbuf = NULL;
415 const char *pathname = NULL;
416 struct inode *inode;
417 int result = 0;
418 int action;
419 u32 secid;
420 int pcr;
421
422 /* Is mprotect making an mmap'ed file executable? */
Mimi Zohar4235b1a2020-06-10 09:18:26 -0400423 if (!(ima_policy_flag & IMA_APPRAISE) || !vma->vm_file ||
424 !(prot & PROT_EXEC) || (vma->vm_flags & VM_EXEC))
Mimi Zohar8eb613c2020-05-03 01:00:02 -0400425 return 0;
426
427 security_task_getsecid(current, &secid);
428 inode = file_inode(vma->vm_file);
429 action = ima_get_action(inode, current_cred(), secid, MAY_EXEC,
430 MMAP_CHECK, &pcr, &template, 0);
431
432 /* Is the mmap'ed file in policy? */
433 if (!(action & (IMA_MEASURE | IMA_APPRAISE_SUBMASK)))
434 return 0;
435
436 if (action & IMA_APPRAISE_SUBMASK)
437 result = -EPERM;
438
439 file = vma->vm_file;
440 pathname = ima_d_path(&file->f_path, &pathbuf, filename);
441 integrity_audit_msg(AUDIT_INTEGRITY_DATA, inode, pathname,
442 "collect_data", "failed-mprotect", result, 0);
443 if (pathbuf)
444 __putname(pathbuf);
445
446 return result;
447}
448
449/**
Mimi Zohar3323eec2009-02-04 09:06:58 -0500450 * ima_bprm_check - based on policy, collect/store measurement.
451 * @bprm: contains the linux_binprm structure
452 *
453 * The OS protects against an executable file, already open for write,
454 * from being executed in deny_write_access() and an executable file,
455 * already open for execute, from being modified in get_write_access().
456 * So we can be certain that what we verify and measure here is actually
457 * what is being executed.
458 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300459 * On success return 0. On integrity appraisal error, assuming the file
460 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500461 */
462int ima_bprm_check(struct linux_binprm *bprm)
463{
Matthew Garrettd906c102018-01-08 13:36:20 -0800464 int ret;
465 u32 secid;
466
467 security_task_getsecid(current, &secid);
468 ret = process_measurement(bprm->file, current_cred(), secid, NULL, 0,
Al Viro6035a272018-06-08 13:40:10 -0400469 MAY_EXEC, BPRM_CHECK);
Matthew Garrettd906c102018-01-08 13:36:20 -0800470 if (ret)
471 return ret;
472
473 security_cred_getsecid(bprm->cred, &secid);
474 return process_measurement(bprm->file, bprm->cred, secid, NULL, 0,
Al Viro6035a272018-06-08 13:40:10 -0400475 MAY_EXEC, CREDS_CHECK);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500476}
477
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500478/**
479 * ima_path_check - based on policy, collect/store measurement.
480 * @file: pointer to the file to be measured
Lans Zhang20f482a2017-01-06 12:38:11 +0800481 * @mask: contains MAY_READ, MAY_WRITE, MAY_EXEC or MAY_APPEND
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500482 *
483 * Measure files based on the ima_must_measure() policy decision.
484 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300485 * On success return 0. On integrity appraisal error, assuming the file
486 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500487 */
Al Viro6035a272018-06-08 13:40:10 -0400488int ima_file_check(struct file *file, int mask)
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500489{
Matthew Garrettd906c102018-01-08 13:36:20 -0800490 u32 secid;
491
492 security_task_getsecid(current, &secid);
493 return process_measurement(file, current_cred(), secid, NULL, 0,
Lans Zhang20f482a2017-01-06 12:38:11 +0800494 mask & (MAY_READ | MAY_WRITE | MAY_EXEC |
Al Viro6035a272018-06-08 13:40:10 -0400495 MAY_APPEND), FILE_CHECK);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500496}
Mimi Zohar9bbb6ca2010-01-26 17:02:40 -0500497EXPORT_SYMBOL_GPL(ima_file_check);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500498
Mimi Zoharfdf90722012-10-16 12:40:08 +1030499/**
Florent Revest6beea7a2020-01-13 10:42:44 +0100500 * ima_file_hash - return the stored measurement if a file has been hashed and
501 * is in the iint cache.
502 * @file: pointer to the file
503 * @buf: buffer in which to store the hash
504 * @buf_size: length of the buffer
505 *
506 * On success, return the hash algorithm (as defined in the enum hash_algo).
507 * If buf is not NULL, this function also outputs the hash into buf.
508 * If the hash is larger than buf_size, then only buf_size bytes will be copied.
509 * It generally just makes sense to pass a buffer capable of holding the largest
510 * possible hash: IMA_MAX_DIGEST_SIZE.
511 * The file hash returned is based on the entire file, including the appended
512 * signature.
513 *
514 * If IMA is disabled or if no measurement is available, return -EOPNOTSUPP.
515 * If the parameters are incorrect, return -EINVAL.
516 */
517int ima_file_hash(struct file *file, char *buf, size_t buf_size)
518{
519 struct inode *inode;
520 struct integrity_iint_cache *iint;
521 int hash_algo;
522
523 if (!file)
524 return -EINVAL;
525
526 if (!ima_policy_flag)
527 return -EOPNOTSUPP;
528
529 inode = file_inode(file);
530 iint = integrity_iint_find(inode);
531 if (!iint)
532 return -EOPNOTSUPP;
533
534 mutex_lock(&iint->mutex);
535 if (buf) {
536 size_t copied_size;
537
538 copied_size = min_t(size_t, iint->ima_hash->length, buf_size);
539 memcpy(buf, iint->ima_hash->digest, copied_size);
540 }
541 hash_algo = iint->ima_hash->algo;
542 mutex_unlock(&iint->mutex);
543
544 return hash_algo;
545}
546EXPORT_SYMBOL_GPL(ima_file_hash);
547
548/**
Mimi Zoharfdb24102019-01-22 14:06:49 -0600549 * ima_post_create_tmpfile - mark newly created tmpfile as new
550 * @file : newly created tmpfile
551 *
552 * No measuring, appraising or auditing of newly created tmpfiles is needed.
553 * Skip calling process_measurement(), but indicate which newly, created
554 * tmpfiles are in policy.
555 */
556void ima_post_create_tmpfile(struct inode *inode)
557{
558 struct integrity_iint_cache *iint;
559 int must_appraise;
560
561 must_appraise = ima_must_appraise(inode, MAY_ACCESS, FILE_CHECK);
562 if (!must_appraise)
563 return;
564
565 /* Nothing to do if we can't allocate memory */
566 iint = integrity_inode_get(inode);
567 if (!iint)
568 return;
569
570 /* needed for writing the security xattrs */
571 set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
572 iint->ima_file_status = INTEGRITY_PASS;
573}
574
575/**
Mimi Zohar05d1a712016-02-29 19:52:05 -0500576 * ima_post_path_mknod - mark as a new inode
577 * @dentry: newly created dentry
578 *
579 * Mark files created via the mknodat syscall as new, so that the
580 * file data can be written later.
581 */
582void ima_post_path_mknod(struct dentry *dentry)
583{
584 struct integrity_iint_cache *iint;
585 struct inode *inode = dentry->d_inode;
586 int must_appraise;
587
588 must_appraise = ima_must_appraise(inode, MAY_ACCESS, FILE_CHECK);
589 if (!must_appraise)
590 return;
591
Mimi Zoharfdb24102019-01-22 14:06:49 -0600592 /* Nothing to do if we can't allocate memory */
Mimi Zohar05d1a712016-02-29 19:52:05 -0500593 iint = integrity_inode_get(inode);
Mimi Zoharfdb24102019-01-22 14:06:49 -0600594 if (!iint)
595 return;
596
597 /* needed for re-opening empty files */
598 iint->flags |= IMA_NEW_FILE;
Mimi Zohar05d1a712016-02-29 19:52:05 -0500599}
600
601/**
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500602 * ima_read_file - pre-measure/appraise hook decision based on policy
603 * @file: pointer to the file to be measured/appraised/audit
604 * @read_id: caller identifier
605 *
606 * Permit reading a file based on policy. The policy rules are written
607 * in terms of the policy identifier. Appraising the integrity of
608 * a file requires a file descriptor.
609 *
610 * For permission return 0, otherwise return -EACCES.
611 */
612int ima_read_file(struct file *file, enum kernel_read_file_id read_id)
613{
Mimi Zohar4f0496d2018-07-13 14:06:03 -0400614 /*
Mimi Zohar4f0496d2018-07-13 14:06:03 -0400615 * Do devices using pre-allocated memory run the risk of the
616 * firmware being accessible to the device prior to the completion
617 * of IMA's signature verification any more than when using two
Kees Cookc3074592020-10-02 10:38:13 -0700618 * buffers? It may be desirable to include the buffer address
619 * in this API and walk all the dma_map_single() mappings to check.
Mimi Zohar4f0496d2018-07-13 14:06:03 -0400620 */
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500621 return 0;
622}
623
Matthew Garrett29d3c1c2019-08-19 17:18:01 -0700624const int read_idmap[READING_MAX_ID] = {
Mimi Zohard9ddf072016-01-14 20:59:14 -0500625 [READING_FIRMWARE] = FIRMWARE_CHECK,
626 [READING_MODULE] = MODULE_CHECK,
627 [READING_KEXEC_IMAGE] = KEXEC_KERNEL_CHECK,
628 [READING_KEXEC_INITRAMFS] = KEXEC_INITRAMFS_CHECK,
Mimi Zohar19f8a842016-01-15 10:17:12 -0500629 [READING_POLICY] = POLICY_CHECK
Mimi Zohard9ddf072016-01-14 20:59:14 -0500630};
631
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500632/**
Mimi Zoharcf222212016-01-14 17:57:47 -0500633 * ima_post_read_file - in memory collect/appraise/audit measurement
634 * @file: pointer to the file to be measured/appraised/audit
635 * @buf: pointer to in memory file contents
636 * @size: size of in memory file contents
637 * @read_id: caller identifier
638 *
639 * Measure/appraise/audit in memory file based on policy. Policy rules
640 * are written in terms of a policy identifier.
641 *
642 * On success return 0. On integrity appraisal error, assuming the file
643 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
644 */
645int ima_post_read_file(struct file *file, void *buf, loff_t size,
646 enum kernel_read_file_id read_id)
647{
Mimi Zohard9ddf072016-01-14 20:59:14 -0500648 enum ima_hooks func;
Matthew Garrettd906c102018-01-08 13:36:20 -0800649 u32 secid;
Mimi Zoharcf222212016-01-14 17:57:47 -0500650
Mimi Zohare40ba6d2015-11-19 12:39:22 -0500651 if (!file && read_id == READING_FIRMWARE) {
652 if ((ima_appraise & IMA_APPRAISE_FIRMWARE) &&
Mimi Zoharfed25122018-07-13 14:06:00 -0400653 (ima_appraise & IMA_APPRAISE_ENFORCE)) {
654 pr_err("Prevent firmware loading_store.\n");
Mimi Zohare40ba6d2015-11-19 12:39:22 -0500655 return -EACCES; /* INTEGRITY_UNKNOWN */
Mimi Zoharfed25122018-07-13 14:06:00 -0400656 }
Mimi Zohare40ba6d2015-11-19 12:39:22 -0500657 return 0;
658 }
659
Christoph Hellwiga7d3d032017-09-10 09:49:45 +0200660 /* permit signed certs */
661 if (!file && read_id == READING_X509_CERTIFICATE)
662 return 0;
663
Mimi Zoharcf222212016-01-14 17:57:47 -0500664 if (!file || !buf || size == 0) { /* should never happen */
665 if (ima_appraise & IMA_APPRAISE_ENFORCE)
666 return -EACCES;
667 return 0;
668 }
669
Mimi Zohard9ddf072016-01-14 20:59:14 -0500670 func = read_idmap[read_id] ?: FILE_CHECK;
Matthew Garrettd906c102018-01-08 13:36:20 -0800671 security_task_getsecid(current, &secid);
672 return process_measurement(file, current_cred(), secid, buf, size,
Al Viro6035a272018-06-08 13:40:10 -0400673 MAY_READ, func);
Mimi Zohar5a9196d2014-07-22 10:39:48 -0400674}
675
Mimi Zohar16c267a2018-07-13 14:05:58 -0400676/**
677 * ima_load_data - appraise decision based on policy
678 * @id: kernel load data caller identifier
Kees Cookb64fcae2020-10-02 10:38:20 -0700679 * @contents: whether the full contents will be available in a later
680 * call to ima_post_load_data().
Mimi Zohar16c267a2018-07-13 14:05:58 -0400681 *
682 * Callers of this LSM hook can not measure, appraise, or audit the
683 * data provided by userspace. Enforce policy rules requring a file
684 * signature (eg. kexec'ed kernel image).
685 *
686 * For permission return 0, otherwise return -EACCES.
687 */
Kees Cookb64fcae2020-10-02 10:38:20 -0700688int ima_load_data(enum kernel_load_data_id id, bool contents)
Mimi Zohar16c267a2018-07-13 14:05:58 -0400689{
Nayna Jainb5ca1172018-10-09 23:00:34 +0530690 bool ima_enforce, sig_enforce;
Mimi Zoharc77b8cd2018-07-13 14:06:02 -0400691
Nayna Jainb5ca1172018-10-09 23:00:34 +0530692 ima_enforce =
693 (ima_appraise & IMA_APPRAISE_ENFORCE) == IMA_APPRAISE_ENFORCE;
Mimi Zohar16c267a2018-07-13 14:05:58 -0400694
695 switch (id) {
696 case LOADING_KEXEC_IMAGE:
Jiri Bohac99d5cadf2019-08-19 17:17:44 -0700697 if (IS_ENABLED(CONFIG_KEXEC_SIG)
Nayna Jainb5ca1172018-10-09 23:00:34 +0530698 && arch_ima_get_secureboot()) {
699 pr_err("impossible to appraise a kernel image without a file descriptor; try using kexec_file_load syscall.\n");
700 return -EACCES;
701 }
702
703 if (ima_enforce && (ima_appraise & IMA_APPRAISE_KEXEC)) {
Mimi Zohar16c267a2018-07-13 14:05:58 -0400704 pr_err("impossible to appraise a kernel image without a file descriptor; try using kexec_file_load syscall.\n");
705 return -EACCES; /* INTEGRITY_UNKNOWN */
706 }
Mimi Zoharfed25122018-07-13 14:06:00 -0400707 break;
708 case LOADING_FIRMWARE:
Nayna Jainb5ca1172018-10-09 23:00:34 +0530709 if (ima_enforce && (ima_appraise & IMA_APPRAISE_FIRMWARE)) {
Mimi Zoharfed25122018-07-13 14:06:00 -0400710 pr_err("Prevent firmware sysfs fallback loading.\n");
711 return -EACCES; /* INTEGRITY_UNKNOWN */
712 }
Mimi Zoharc77b8cd2018-07-13 14:06:02 -0400713 break;
714 case LOADING_MODULE:
715 sig_enforce = is_module_sig_enforced();
716
Nayna Jainb5ca1172018-10-09 23:00:34 +0530717 if (ima_enforce && (!sig_enforce
718 && (ima_appraise & IMA_APPRAISE_MODULES))) {
Mimi Zoharc77b8cd2018-07-13 14:06:02 -0400719 pr_err("impossible to appraise a module without a file descriptor. sig_enforce kernel parameter might help\n");
720 return -EACCES; /* INTEGRITY_UNKNOWN */
721 }
Mimi Zohar16c267a2018-07-13 14:05:58 -0400722 default:
723 break;
724 }
725 return 0;
726}
727
Kees Cookb64fcae2020-10-02 10:38:20 -0700728/**
729 * ima_post_load_data - appraise decision based on policy
730 * @buf: pointer to in memory file contents
731 * @size: size of in memory file contents
732 * @id: kernel load data caller identifier
733 * @description: @id-specific description of contents
734 *
735 * Measure/appraise/audit in memory buffer based on policy. Policy rules
736 * are written in terms of a policy identifier.
737 *
738 * On success return 0. On integrity appraisal error, assuming the file
739 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
740 */
741int ima_post_load_data(char *buf, loff_t size,
742 enum kernel_load_data_id load_id,
743 char *description)
744{
745 return 0;
746}
747
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700748/*
749 * process_buffer_measurement - Measure the buffer to ima log.
Tyler Hicks48341772020-07-09 01:19:11 -0500750 * @inode: inode associated with the object being measured (NULL for KEY_CHECK)
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700751 * @buf: pointer to the buffer that needs to be added to the log.
752 * @size: size of buffer(in bytes).
753 * @eventname: event name to be used for the buffer entry.
Nayna Jaine14555e2019-10-30 23:31:30 -0400754 * @func: IMA hook
755 * @pcr: pcr to extend the measurement
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800756 * @keyring: keyring name to determine the action to be performed
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700757 *
758 * Based on policy, the buffer is measured into the ima log.
759 */
Tyler Hicks48341772020-07-09 01:19:11 -0500760void process_buffer_measurement(struct inode *inode, const void *buf, int size,
Nayna Jaine14555e2019-10-30 23:31:30 -0400761 const char *eventname, enum ima_hooks func,
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800762 int pcr, const char *keyring)
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700763{
764 int ret = 0;
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700765 const char *audit_cause = "ENOMEM";
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700766 struct ima_template_entry *entry = NULL;
767 struct integrity_iint_cache iint = {};
768 struct ima_event_data event_data = {.iint = &iint,
Prakhar Srivastava86b4da82019-06-23 23:23:30 -0700769 .filename = eventname,
770 .buf = buf,
771 .buf_len = size};
Nayna Jaine14555e2019-10-30 23:31:30 -0400772 struct ima_template_desc *template = NULL;
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700773 struct {
774 struct ima_digest_data hdr;
775 char digest[IMA_MAX_DIGEST_SIZE];
776 } hash = {};
777 int violation = 0;
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700778 int action = 0;
Nayna Jaine14555e2019-10-30 23:31:30 -0400779 u32 secid;
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700780
Lakshmi Ramasubramanianc5563ba2019-12-11 08:47:02 -0800781 if (!ima_policy_flag)
782 return;
783
Nayna Jaine14555e2019-10-30 23:31:30 -0400784 /*
785 * Both LSM hooks and auxilary based buffer measurements are
786 * based on policy. To avoid code duplication, differentiate
787 * between the LSM hooks and auxilary buffer measurements,
788 * retrieving the policy rule information only for the LSM hook
789 * buffer measurements.
790 */
791 if (func) {
792 security_task_getsecid(current, &secid);
Tyler Hicks48341772020-07-09 01:19:11 -0500793 action = ima_get_action(inode, current_cred(), secid, 0, func,
Lakshmi Ramasubramaniane9085e02019-12-11 08:47:06 -0800794 &pcr, &template, keyring);
Nayna Jaine14555e2019-10-30 23:31:30 -0400795 if (!(action & IMA_MEASURE))
796 return;
797 }
798
799 if (!pcr)
800 pcr = CONFIG_IMA_MEASURE_PCR_IDX;
801
802 if (!template) {
803 template = lookup_template_desc("ima-buf");
804 ret = template_desc_init_fields(template->fmt,
805 &(template->fields),
806 &(template->num_fields));
807 if (ret < 0) {
808 pr_err("template %s init failed, result: %d\n",
809 (strlen(template->name) ?
810 template->name : template->fmt), ret);
811 return;
812 }
813 }
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700814
815 iint.ima_hash = &hash.hdr;
816 iint.ima_hash->algo = ima_hash_algo;
817 iint.ima_hash->length = hash_digest_size[ima_hash_algo];
818
819 ret = ima_calc_buffer_hash(buf, size, iint.ima_hash);
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700820 if (ret < 0) {
821 audit_cause = "hashing_error";
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700822 goto out;
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700823 }
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700824
Nayna Jaine14555e2019-10-30 23:31:30 -0400825 ret = ima_alloc_init_template(&event_data, &entry, template);
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700826 if (ret < 0) {
827 audit_cause = "alloc_entry";
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700828 goto out;
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700829 }
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700830
831 ret = ima_store_template(entry, violation, NULL, buf, pcr);
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700832 if (ret < 0) {
833 audit_cause = "store_entry";
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700834 ima_free_template_entry(entry);
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700835 }
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700836
837out:
Tushar Sugandhi72ec6112020-02-18 16:06:10 -0800838 if (ret < 0)
Lakshmi Ramasubramanian34e980b2020-06-18 14:10:12 -0700839 integrity_audit_message(AUDIT_INTEGRITY_PCR, NULL, eventname,
840 func_measure_str(func),
841 audit_cause, ret, 0, ret);
Tushar Sugandhi72ec6112020-02-18 16:06:10 -0800842
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700843 return;
844}
845
846/**
847 * ima_kexec_cmdline - measure kexec cmdline boot args
Tyler Hicks48341772020-07-09 01:19:11 -0500848 * @kernel_fd: file descriptor of the kexec kernel being loaded
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700849 * @buf: pointer to buffer
850 * @size: size of buffer
851 *
852 * Buffers can only be measured, not appraised.
853 */
Tyler Hicks48341772020-07-09 01:19:11 -0500854void ima_kexec_cmdline(int kernel_fd, const void *buf, int size)
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700855{
Tyler Hicks48341772020-07-09 01:19:11 -0500856 struct fd f;
857
858 if (!buf || !size)
859 return;
860
861 f = fdget(kernel_fd);
862 if (!f.file)
863 return;
864
865 process_buffer_measurement(file_inode(f.file), buf, size,
866 "kexec-cmdline", KEXEC_CMDLINE, 0, NULL);
867 fdput(f);
Prakhar Srivastavab0935122019-06-23 23:23:29 -0700868}
869
Mimi Zohar3323eec2009-02-04 09:06:58 -0500870static int __init init_ima(void)
871{
872 int error;
873
Mimi Zohar3f23d622016-12-19 16:22:51 -0800874 ima_init_template_list();
Mimi Zohare7a2ad72013-06-07 12:16:37 +0200875 hash_setup(CONFIG_IMA_DEFAULT_HASH);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500876 error = ima_init();
Petr Vorelab603682018-03-23 14:41:08 +0100877
878 if (error && strcmp(hash_algo_name[ima_hash_algo],
879 CONFIG_IMA_DEFAULT_HASH) != 0) {
880 pr_info("Allocating %s failed, going to use default hash algorithm %s\n",
881 hash_algo_name[ima_hash_algo], CONFIG_IMA_DEFAULT_HASH);
882 hash_setup_done = 0;
883 hash_setup(CONFIG_IMA_DEFAULT_HASH);
884 error = ima_init();
885 }
886
Roberto Sassue144d6b2020-03-25 11:47:07 +0100887 if (error)
888 return error;
889
Janne Karhunenb1694242019-06-14 15:20:15 +0300890 error = register_blocking_lsm_notifier(&ima_lsm_policy_notifier);
891 if (error)
892 pr_warn("Couldn't register LSM notifier, error %d\n", error);
893
Petr Vorel4ecd9932018-05-10 17:15:48 +0200894 if (!error)
Roberto Sassua7560242014-09-12 19:35:54 +0200895 ima_update_policy_flag();
Petr Vorel4ecd9932018-05-10 17:15:48 +0200896
Mimi Zohar3323eec2009-02-04 09:06:58 -0500897 return error;
898}
899
Mimi Zohar3323eec2009-02-04 09:06:58 -0500900late_initcall(init_ima); /* Start IMA after the TPM is available */