blob: b286f37712d506de48285467b55d739e423e881c [file] [log] [blame]
Mimi Zohar3323eec2009-02-04 09:06:58 -05001/*
2 * Copyright (C) 2005,2006,2007,2008 IBM Corporation
3 *
4 * Authors:
5 * Reiner Sailer <sailer@watson.ibm.com>
6 * Serge Hallyn <serue@us.ibm.com>
7 * Kylene Hall <kylene@us.ibm.com>
8 * Mimi Zohar <zohar@us.ibm.com>
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation, version 2 of the
13 * License.
14 *
15 * File: ima_main.c
Eric Parise0d5bd22009-12-04 15:48:00 -050016 * implements the IMA hooks: ima_bprm_check, ima_file_mmap,
Mimi Zohar9bbb6ca2010-01-26 17:02:40 -050017 * and ima_file_check.
Mimi Zohar3323eec2009-02-04 09:06:58 -050018 */
Petr Vorelab603682018-03-23 14:41:08 +010019
20#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21
Mimi Zohar3323eec2009-02-04 09:06:58 -050022#include <linux/module.h>
23#include <linux/file.h>
24#include <linux/binfmts.h>
25#include <linux/mount.h>
26#include <linux/mman.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -050028#include <linux/xattr.h>
James Morrisd5813a52011-08-30 10:19:50 +100029#include <linux/ima.h>
Jeff Layton3b370b22017-12-11 06:35:21 -050030#include <linux/iversion.h>
Mimi Zohard77ccdc2018-02-21 11:35:20 -050031#include <linux/fs.h>
Mimi Zohar3323eec2009-02-04 09:06:58 -050032
33#include "ima.h"
34
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -050035#ifdef CONFIG_IMA_APPRAISE
36int ima_appraise = IMA_APPRAISE_ENFORCE;
37#else
38int ima_appraise;
39#endif
40
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +030041int ima_hash_algo = HASH_ALGO_SHA1;
Mimi Zohare7a2ad72013-06-07 12:16:37 +020042static int hash_setup_done;
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +030043
Mimi Zohar3323eec2009-02-04 09:06:58 -050044static int __init hash_setup(char *str)
45{
Mimi Zohare7a2ad72013-06-07 12:16:37 +020046 struct ima_template_desc *template_desc = ima_template_desc_current();
47 int i;
48
49 if (hash_setup_done)
50 return 1;
51
52 if (strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) == 0) {
53 if (strncmp(str, "sha1", 4) == 0)
54 ima_hash_algo = HASH_ALGO_SHA1;
55 else if (strncmp(str, "md5", 3) == 0)
56 ima_hash_algo = HASH_ALGO_MD5;
Boshi Wangebe7c0a2017-10-20 16:01:03 +080057 else
58 return 1;
Mimi Zohare7a2ad72013-06-07 12:16:37 +020059 goto out;
60 }
61
Yisheng Xieb4df8602018-05-21 19:58:02 +080062 i = match_string(hash_algo_name, HASH_ALGO__LAST, str);
63 if (i < 0)
Boshi Wangebe7c0a2017-10-20 16:01:03 +080064 return 1;
Yisheng Xieb4df8602018-05-21 19:58:02 +080065
66 ima_hash_algo = i;
Mimi Zohare7a2ad72013-06-07 12:16:37 +020067out:
68 hash_setup_done = 1;
Mimi Zohar3323eec2009-02-04 09:06:58 -050069 return 1;
70}
71__setup("ima_hash=", hash_setup);
72
Eric Parise0d5bd22009-12-04 15:48:00 -050073/*
Mimi Zohar890275b52010-11-02 10:13:07 -040074 * ima_rdwr_violation_check
Mimi Zohar8eb988c2010-01-20 15:35:41 -050075 *
Mimi Zohar890275b52010-11-02 10:13:07 -040076 * Only invalidate the PCR for measured files:
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020077 * - Opening a file for write when already open for read,
Mimi Zohar8eb988c2010-01-20 15:35:41 -050078 * results in a time of measure, time of use (ToMToU) error.
79 * - Opening a file for read when already open for write,
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020080 * could result in a file measurement error.
Mimi Zohar8eb988c2010-01-20 15:35:41 -050081 *
82 */
Roberto Sassuf7a859f2014-09-12 19:35:55 +020083static void ima_rdwr_violation_check(struct file *file,
84 struct integrity_iint_cache *iint,
Roberto Sassu1b68bdf2014-09-12 19:35:56 +020085 int must_measure,
Roberto Sassuf7a859f2014-09-12 19:35:55 +020086 char **pathbuf,
Roberto Sassu4e8581e2017-11-30 11:56:02 +010087 const char **pathname,
88 char *filename)
Mimi Zohar8eb988c2010-01-20 15:35:41 -050089{
David Howellsc77cece2013-06-13 23:37:49 +010090 struct inode *inode = file_inode(file);
Mimi Zohar8eb988c2010-01-20 15:35:41 -050091 fmode_t mode = file->f_mode;
Eric Parisad16ad02010-10-25 14:41:45 -040092 bool send_tomtou = false, send_writers = false;
Eric Parisa178d202010-10-25 14:41:59 -040093
Mimi Zohar8eb988c2010-01-20 15:35:41 -050094 if (mode & FMODE_WRITE) {
Dmitry Kasatkin14503eb2014-03-27 10:29:28 +020095 if (atomic_read(&inode->i_readcount) && IS_IMA(inode)) {
Roberto Sassuf7a859f2014-09-12 19:35:55 +020096 if (!iint)
97 iint = integrity_iint_find(inode);
Dmitry Kasatkin14503eb2014-03-27 10:29:28 +020098 /* IMA_MEASURE is set from reader side */
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +020099 if (iint && test_bit(IMA_MUST_MEASURE,
100 &iint->atomic_flags))
Dmitry Kasatkin14503eb2014-03-27 10:29:28 +0200101 send_tomtou = true;
102 }
Dmitry Kasatkinb882fae2014-03-27 10:54:11 +0200103 } else {
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200104 if (must_measure)
105 set_bit(IMA_MUST_MEASURE, &iint->atomic_flags);
Roberto Sassu1b68bdf2014-09-12 19:35:56 +0200106 if ((atomic_read(&inode->i_writecount) > 0) && must_measure)
Dmitry Kasatkinb882fae2014-03-27 10:54:11 +0200107 send_writers = true;
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500108 }
Eric Parisad16ad02010-10-25 14:41:45 -0400109
Mimi Zohar08e1b762012-06-20 09:32:55 -0400110 if (!send_tomtou && !send_writers)
111 return;
112
Mimi Zoharbc15ed62017-01-17 06:45:41 -0500113 *pathname = ima_d_path(&file->f_path, pathbuf, filename);
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300114
Eric Parisad16ad02010-10-25 14:41:45 -0400115 if (send_tomtou)
Roberto Sassu8d94eb92015-04-11 17:12:39 +0200116 ima_add_violation(file, *pathname, iint,
117 "invalid_pcr", "ToMToU");
Eric Parisad16ad02010-10-25 14:41:45 -0400118 if (send_writers)
Roberto Sassu8d94eb92015-04-11 17:12:39 +0200119 ima_add_violation(file, *pathname, iint,
Mimi Zohar08e1b762012-06-20 09:32:55 -0400120 "invalid_pcr", "open_writers");
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500121}
122
Mimi Zoharf381c272011-03-09 14:13:22 -0500123static void ima_check_last_writer(struct integrity_iint_cache *iint,
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500124 struct inode *inode, struct file *file)
Eric Parisbc7d2a32010-10-25 14:42:05 -0400125{
Al Viro4b2a2c62011-07-26 04:30:35 -0400126 fmode_t mode = file->f_mode;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200127 bool update;
Eric Paris497f3232010-10-25 14:41:32 -0400128
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500129 if (!(mode & FMODE_WRITE))
130 return;
131
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200132 mutex_lock(&iint->mutex);
Dmitry Kasatkinb151d6b2014-06-27 18:04:27 +0300133 if (atomic_read(&inode->i_writecount) == 1) {
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200134 update = test_and_clear_bit(IMA_UPDATE_XATTR,
135 &iint->atomic_flags);
Sascha Hauerac0bf022017-12-11 06:35:20 -0500136 if (!IS_I_VERSION(inode) ||
Goffredo Baroncellic472c072018-02-01 08:15:25 -0500137 !inode_eq_iversion(inode, iint->version) ||
Dmitry Kasatkinb151d6b2014-06-27 18:04:27 +0300138 (iint->flags & IMA_NEW_FILE)) {
139 iint->flags &= ~(IMA_DONE_MASK | IMA_NEW_FILE);
Eric Richtera4226382016-06-01 13:14:06 -0500140 iint->measured_pcrs = 0;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200141 if (update)
Dmitry Kasatkinb151d6b2014-06-27 18:04:27 +0300142 ima_update_xattr(iint, file);
143 }
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500144 }
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200145 mutex_unlock(&iint->mutex);
Eric Parisbc7d2a32010-10-25 14:42:05 -0400146}
147
Mimi Zohar3323eec2009-02-04 09:06:58 -0500148/**
149 * ima_file_free - called on __fput()
150 * @file: pointer to file structure being freed
151 *
Mimi Zohar890275b52010-11-02 10:13:07 -0400152 * Flag files that changed, based on i_version
Mimi Zohar3323eec2009-02-04 09:06:58 -0500153 */
154void ima_file_free(struct file *file)
155{
Al Viro496ad9a2013-01-23 17:07:38 -0500156 struct inode *inode = file_inode(file);
Mimi Zoharf381c272011-03-09 14:13:22 -0500157 struct integrity_iint_cache *iint;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500158
Dmitry Kasatkin0f34a002014-09-24 11:05:10 +0300159 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500160 return;
Eric Paris196f5182010-10-25 14:42:19 -0400161
Mimi Zoharf381c272011-03-09 14:13:22 -0500162 iint = integrity_iint_find(inode);
Mimi Zohar854fdd52010-11-02 10:14:22 -0400163 if (!iint)
164 return;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500165
Mimi Zohar854fdd52010-11-02 10:14:22 -0400166 ima_check_last_writer(iint, inode, file);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500167}
168
Matthew Garrettd906c102018-01-08 13:36:20 -0800169static int process_measurement(struct file *file, const struct cred *cred,
170 u32 secid, char *buf, loff_t size, int mask,
Al Viro6035a272018-06-08 13:40:10 -0400171 enum ima_hooks func)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500172{
Al Viro496ad9a2013-01-23 17:07:38 -0500173 struct inode *inode = file_inode(file);
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200174 struct integrity_iint_cache *iint = NULL;
Dmitry Kasatkin209b43c2014-06-13 18:55:48 +0300175 struct ima_template_desc *template_desc;
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300176 char *pathbuf = NULL;
Mimi Zoharbc15ed62017-01-17 06:45:41 -0500177 char filename[NAME_MAX];
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300178 const char *pathname = NULL;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200179 int rc = 0, action, must_appraise = 0;
Eric Richter725de7f2016-06-01 13:14:02 -0500180 int pcr = CONFIG_IMA_MEASURE_PCR_IDX;
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200181 struct evm_ima_xattr_data *xattr_value = NULL;
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300182 int xattr_len = 0;
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200183 bool violation_check;
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200184 enum hash_algo hash_algo;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500185
Roberto Sassua7560242014-09-12 19:35:54 +0200186 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500187 return 0;
Eric Parisbc7d2a32010-10-25 14:42:05 -0400188
Mimi Zohard79d72e2012-12-03 17:08:11 -0500189 /* Return an IMA_MEASURE, IMA_APPRAISE, IMA_AUDIT action
190 * bitmask based on the appraise/audit/measurement policy.
191 * Included is the appraise submask.
192 */
Matthew Garrettd906c102018-01-08 13:36:20 -0800193 action = ima_get_action(inode, cred, secid, mask, func, &pcr);
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500194 violation_check = ((func == FILE_CHECK || func == MMAP_CHECK) &&
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200195 (ima_policy_flag & IMA_MEASURE));
196 if (!action && !violation_check)
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500197 return 0;
198
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500199 must_appraise = action & IMA_APPRAISE;
Eric Parisbc7d2a32010-10-25 14:42:05 -0400200
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500201 /* Is the appraise rule hook specific? */
Dmitry Kasatkin3a8a2ea2014-09-03 10:19:57 +0300202 if (action & IMA_FILE_APPRAISE)
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500203 func = FILE_CHECK;
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500204
Al Viro59551022016-01-22 15:40:57 -0500205 inode_lock(inode);
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500206
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200207 if (action) {
208 iint = integrity_inode_get(inode);
209 if (!iint)
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200210 rc = -ENOMEM;
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200211 }
212
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200213 if (!rc && violation_check)
Roberto Sassu1b68bdf2014-09-12 19:35:56 +0200214 ima_rdwr_violation_check(file, iint, action & IMA_MEASURE,
Roberto Sassu4e8581e2017-11-30 11:56:02 +0100215 &pathbuf, &pathname, filename);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200216
217 inode_unlock(inode);
218
219 if (rc)
220 goto out;
221 if (!action)
222 goto out;
223
224 mutex_lock(&iint->mutex);
225
226 if (test_and_clear_bit(IMA_CHANGE_ATTR, &iint->atomic_flags))
227 /* reset appraisal flags if ima_inode_post_setattr was called */
228 iint->flags &= ~(IMA_APPRAISE | IMA_APPRAISED |
229 IMA_APPRAISE_SUBMASK | IMA_APPRAISED_SUBMASK |
230 IMA_ACTION_FLAGS);
231
Mimi Zohard77ccdc2018-02-21 11:35:20 -0500232 /*
233 * Re-evaulate the file if either the xattr has changed or the
234 * kernel has no way of detecting file change on the filesystem.
235 * (Limited to privileged mounted filesystems.)
236 */
237 if (test_and_clear_bit(IMA_CHANGE_XATTR, &iint->atomic_flags) ||
238 ((inode->i_sb->s_iflags & SB_I_IMA_UNVERIFIABLE_SIGNATURE) &&
Mimi Zohar9e670282018-02-21 11:36:32 -0500239 !(inode->i_sb->s_iflags & SB_I_UNTRUSTED_MOUNTER) &&
240 !(action & IMA_FAIL_UNVERIFIABLE_SIGS))) {
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200241 iint->flags &= ~IMA_DONE_MASK;
Mimi Zohard77ccdc2018-02-21 11:35:20 -0500242 iint->measured_pcrs = 0;
243 }
Dmitry Kasatkinbf2276d2011-10-19 12:04:40 +0300244
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500245 /* Determine if already appraised/measured based on bitmask
Mimi Zohard79d72e2012-12-03 17:08:11 -0500246 * (IMA_MEASURE, IMA_MEASURED, IMA_XXXX_APPRAISE, IMA_XXXX_APPRAISED,
247 * IMA_AUDIT, IMA_AUDITED)
248 */
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500249 iint->flags |= action;
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +0300250 action &= IMA_DO_MASK;
Eric Richtera4226382016-06-01 13:14:06 -0500251 action &= ~((iint->flags & (IMA_DONE_MASK ^ IMA_MEASURED)) >> 1);
252
253 /* If target pcr is already measured, unset IMA_MEASURE action */
254 if ((action & IMA_MEASURE) && (iint->measured_pcrs & (0x1 << pcr)))
255 action ^= IMA_MEASURE;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500256
Mimi Zoharda1b0022016-09-29 10:04:52 -0400257 /* HASH sets the digital signature and update flags, nothing else */
258 if ((action & IMA_HASH) &&
259 !(test_bit(IMA_DIGSIG, &iint->atomic_flags))) {
260 xattr_len = ima_read_xattr(file_dentry(file), &xattr_value);
261 if ((xattr_value && xattr_len > 2) &&
262 (xattr_value->type == EVM_IMA_XATTR_DIGSIG))
263 set_bit(IMA_DIGSIG, &iint->atomic_flags);
264 iint->flags |= IMA_HASHED;
265 action ^= IMA_HASH;
266 set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
267 }
268
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500269 /* Nothing to do, just return existing appraised status */
270 if (!action) {
Mimi Zohard79d72e2012-12-03 17:08:11 -0500271 if (must_appraise)
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500272 rc = ima_get_cache_status(iint, func);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200273 goto out_locked;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500274 }
Mimi Zohar3323eec2009-02-04 09:06:58 -0500275
Dmitry Kasatkin209b43c2014-06-13 18:55:48 +0300276 template_desc = ima_template_desc_current();
Dmitry Kasatkinf68c05f2014-08-22 09:43:55 +0300277 if ((action & IMA_APPRAISE_SUBMASK) ||
278 strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) != 0)
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200279 /* read 'security.ima' */
Miklos Szeredie71b9df2016-09-16 12:44:20 +0200280 xattr_len = ima_read_xattr(file_dentry(file), &xattr_value);
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300281
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200282 hash_algo = ima_get_hash_algo(xattr_value, xattr_len);
283
Mimi Zoharcf222212016-01-14 17:57:47 -0500284 rc = ima_collect_measurement(iint, file, buf, size, hash_algo);
Mimi Zoharf3cc6b22017-06-17 23:56:23 -0400285 if (rc != 0 && rc != -EBADF && rc != -EINVAL)
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200286 goto out_locked;
Mimi Zohar08e1b762012-06-20 09:32:55 -0400287
Mimi Zoharbc15ed62017-01-17 06:45:41 -0500288 if (!pathbuf) /* ima_rdwr_violation possibly pre-fetched */
289 pathname = ima_d_path(&file->f_path, &pathbuf, filename);
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300290
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500291 if (action & IMA_MEASURE)
Mimi Zoharbcbc9b0c2013-07-23 11:15:00 -0400292 ima_store_measurement(iint, file, pathname,
Eric Richter14b1da82016-06-01 13:14:03 -0500293 xattr_value, xattr_len, pcr);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200294 if (rc == 0 && (action & IMA_APPRAISE_SUBMASK)) {
295 inode_lock(inode);
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500296 rc = ima_appraise_measurement(func, iint, file, pathname,
Al Viro6035a272018-06-08 13:40:10 -0400297 xattr_value, xattr_len);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200298 inode_unlock(inode);
299 }
Peter Moodye7c568e2012-06-14 10:04:36 -0700300 if (action & IMA_AUDIT)
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300301 ima_audit_measurement(iint, pathname);
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200302
Mimi Zoharf3cc6b22017-06-17 23:56:23 -0400303 if ((file->f_flags & O_DIRECT) && (iint->flags & IMA_PERMIT_DIRECTIO))
304 rc = 0;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200305out_locked:
306 if ((mask & MAY_WRITE) && test_bit(IMA_DIGSIG, &iint->atomic_flags) &&
Mimi Zohar05d1a712016-02-29 19:52:05 -0500307 !(iint->flags & IMA_NEW_FILE))
Dmitry Kasatkina175b8b2012-09-27 15:06:28 +0300308 rc = -EACCES;
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200309 mutex_unlock(&iint->mutex);
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200310 kfree(xattr_value);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200311out:
Dmitry Kasatkin456f5fd2014-10-01 21:43:10 +0300312 if (pathbuf)
313 __putname(pathbuf);
Dmitry Kasatkin0d73a552017-12-05 21:06:34 +0200314 if (must_appraise) {
315 if (rc && (ima_appraise & IMA_APPRAISE_ENFORCE))
316 return -EACCES;
317 if (file->f_mode & FMODE_WRITE)
318 set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
319 }
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300320 return 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500321}
322
323/**
324 * ima_file_mmap - based on policy, collect/store measurement.
325 * @file: pointer to the file to be measured (May be NULL)
326 * @prot: contains the protection that will be applied by the kernel.
327 *
328 * Measure files being mmapped executable based on the ima_must_measure()
329 * policy decision.
330 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300331 * On success return 0. On integrity appraisal error, assuming the file
332 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500333 */
334int ima_file_mmap(struct file *file, unsigned long prot)
335{
Matthew Garrettd906c102018-01-08 13:36:20 -0800336 u32 secid;
337
338 if (file && (prot & PROT_EXEC)) {
339 security_task_getsecid(current, &secid);
340 return process_measurement(file, current_cred(), secid, NULL,
Al Viro6035a272018-06-08 13:40:10 -0400341 0, MAY_EXEC, MMAP_CHECK);
Matthew Garrettd906c102018-01-08 13:36:20 -0800342 }
343
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300344 return 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500345}
346
347/**
348 * ima_bprm_check - based on policy, collect/store measurement.
349 * @bprm: contains the linux_binprm structure
350 *
351 * The OS protects against an executable file, already open for write,
352 * from being executed in deny_write_access() and an executable file,
353 * already open for execute, from being modified in get_write_access().
354 * So we can be certain that what we verify and measure here is actually
355 * what is being executed.
356 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300357 * On success return 0. On integrity appraisal error, assuming the file
358 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500359 */
360int ima_bprm_check(struct linux_binprm *bprm)
361{
Matthew Garrettd906c102018-01-08 13:36:20 -0800362 int ret;
363 u32 secid;
364
365 security_task_getsecid(current, &secid);
366 ret = process_measurement(bprm->file, current_cred(), secid, NULL, 0,
Al Viro6035a272018-06-08 13:40:10 -0400367 MAY_EXEC, BPRM_CHECK);
Matthew Garrettd906c102018-01-08 13:36:20 -0800368 if (ret)
369 return ret;
370
371 security_cred_getsecid(bprm->cred, &secid);
372 return process_measurement(bprm->file, bprm->cred, secid, NULL, 0,
Al Viro6035a272018-06-08 13:40:10 -0400373 MAY_EXEC, CREDS_CHECK);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500374}
375
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500376/**
377 * ima_path_check - based on policy, collect/store measurement.
378 * @file: pointer to the file to be measured
Lans Zhang20f482a2017-01-06 12:38:11 +0800379 * @mask: contains MAY_READ, MAY_WRITE, MAY_EXEC or MAY_APPEND
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500380 *
381 * Measure files based on the ima_must_measure() policy decision.
382 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300383 * On success return 0. On integrity appraisal error, assuming the file
384 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500385 */
Al Viro6035a272018-06-08 13:40:10 -0400386int ima_file_check(struct file *file, int mask)
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500387{
Matthew Garrettd906c102018-01-08 13:36:20 -0800388 u32 secid;
389
390 security_task_getsecid(current, &secid);
391 return process_measurement(file, current_cred(), secid, NULL, 0,
Lans Zhang20f482a2017-01-06 12:38:11 +0800392 mask & (MAY_READ | MAY_WRITE | MAY_EXEC |
Al Viro6035a272018-06-08 13:40:10 -0400393 MAY_APPEND), FILE_CHECK);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500394}
Mimi Zohar9bbb6ca2010-01-26 17:02:40 -0500395EXPORT_SYMBOL_GPL(ima_file_check);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500396
Mimi Zoharfdf90722012-10-16 12:40:08 +1030397/**
Mimi Zohar05d1a712016-02-29 19:52:05 -0500398 * ima_post_path_mknod - mark as a new inode
399 * @dentry: newly created dentry
400 *
401 * Mark files created via the mknodat syscall as new, so that the
402 * file data can be written later.
403 */
404void ima_post_path_mknod(struct dentry *dentry)
405{
406 struct integrity_iint_cache *iint;
407 struct inode *inode = dentry->d_inode;
408 int must_appraise;
409
410 must_appraise = ima_must_appraise(inode, MAY_ACCESS, FILE_CHECK);
411 if (!must_appraise)
412 return;
413
414 iint = integrity_inode_get(inode);
415 if (iint)
416 iint->flags |= IMA_NEW_FILE;
417}
418
419/**
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500420 * ima_read_file - pre-measure/appraise hook decision based on policy
421 * @file: pointer to the file to be measured/appraised/audit
422 * @read_id: caller identifier
423 *
424 * Permit reading a file based on policy. The policy rules are written
425 * in terms of the policy identifier. Appraising the integrity of
426 * a file requires a file descriptor.
427 *
428 * For permission return 0, otherwise return -EACCES.
429 */
430int ima_read_file(struct file *file, enum kernel_read_file_id read_id)
431{
Bruno E. O. Meneguele7c9bc092017-10-24 15:37:01 -0200432 bool sig_enforce = is_module_sig_enforced();
433
Mimi Zohara1db7422015-12-30 07:35:30 -0500434 if (!file && read_id == READING_MODULE) {
Bruno E. O. Meneguele7c9bc092017-10-24 15:37:01 -0200435 if (!sig_enforce && (ima_appraise & IMA_APPRAISE_MODULES) &&
Bruno E. O. Meneguele9c655be2017-12-05 11:35:32 -0200436 (ima_appraise & IMA_APPRAISE_ENFORCE)) {
437 pr_err("impossible to appraise a module without a file descriptor. sig_enforce kernel parameter might help\n");
Mimi Zohara1db7422015-12-30 07:35:30 -0500438 return -EACCES; /* INTEGRITY_UNKNOWN */
Bruno E. O. Meneguele9c655be2017-12-05 11:35:32 -0200439 }
Mimi Zohara1db7422015-12-30 07:35:30 -0500440 return 0; /* We rely on module signature checking */
441 }
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500442 return 0;
443}
444
Mimi Zohard9ddf072016-01-14 20:59:14 -0500445static int read_idmap[READING_MAX_ID] = {
446 [READING_FIRMWARE] = FIRMWARE_CHECK,
Mimi Zoharfd90bc52018-04-27 14:31:40 -0400447 [READING_FIRMWARE_PREALLOC_BUFFER] = FIRMWARE_CHECK,
Mimi Zohard9ddf072016-01-14 20:59:14 -0500448 [READING_MODULE] = MODULE_CHECK,
449 [READING_KEXEC_IMAGE] = KEXEC_KERNEL_CHECK,
450 [READING_KEXEC_INITRAMFS] = KEXEC_INITRAMFS_CHECK,
Mimi Zohar19f8a842016-01-15 10:17:12 -0500451 [READING_POLICY] = POLICY_CHECK
Mimi Zohard9ddf072016-01-14 20:59:14 -0500452};
453
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500454/**
Mimi Zoharcf222212016-01-14 17:57:47 -0500455 * ima_post_read_file - in memory collect/appraise/audit measurement
456 * @file: pointer to the file to be measured/appraised/audit
457 * @buf: pointer to in memory file contents
458 * @size: size of in memory file contents
459 * @read_id: caller identifier
460 *
461 * Measure/appraise/audit in memory file based on policy. Policy rules
462 * are written in terms of a policy identifier.
463 *
464 * On success return 0. On integrity appraisal error, assuming the file
465 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
466 */
467int ima_post_read_file(struct file *file, void *buf, loff_t size,
468 enum kernel_read_file_id read_id)
469{
Mimi Zohard9ddf072016-01-14 20:59:14 -0500470 enum ima_hooks func;
Matthew Garrettd906c102018-01-08 13:36:20 -0800471 u32 secid;
Mimi Zoharcf222212016-01-14 17:57:47 -0500472
Mimi Zohare40ba6d2015-11-19 12:39:22 -0500473 if (!file && read_id == READING_FIRMWARE) {
474 if ((ima_appraise & IMA_APPRAISE_FIRMWARE) &&
475 (ima_appraise & IMA_APPRAISE_ENFORCE))
476 return -EACCES; /* INTEGRITY_UNKNOWN */
477 return 0;
478 }
479
Mimi Zohara1db7422015-12-30 07:35:30 -0500480 if (!file && read_id == READING_MODULE) /* MODULE_SIG_FORCE enabled */
481 return 0;
482
Christoph Hellwiga7d3d032017-09-10 09:49:45 +0200483 /* permit signed certs */
484 if (!file && read_id == READING_X509_CERTIFICATE)
485 return 0;
486
Mimi Zoharcf222212016-01-14 17:57:47 -0500487 if (!file || !buf || size == 0) { /* should never happen */
488 if (ima_appraise & IMA_APPRAISE_ENFORCE)
489 return -EACCES;
490 return 0;
491 }
492
Mimi Zohard9ddf072016-01-14 20:59:14 -0500493 func = read_idmap[read_id] ?: FILE_CHECK;
Matthew Garrettd906c102018-01-08 13:36:20 -0800494 security_task_getsecid(current, &secid);
495 return process_measurement(file, current_cred(), secid, buf, size,
Al Viro6035a272018-06-08 13:40:10 -0400496 MAY_READ, func);
Mimi Zohar5a9196d2014-07-22 10:39:48 -0400497}
498
Mimi Zohar3323eec2009-02-04 09:06:58 -0500499static int __init init_ima(void)
500{
501 int error;
502
Mimi Zohar3f23d622016-12-19 16:22:51 -0800503 ima_init_template_list();
Mimi Zohare7a2ad72013-06-07 12:16:37 +0200504 hash_setup(CONFIG_IMA_DEFAULT_HASH);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500505 error = ima_init();
Petr Vorelab603682018-03-23 14:41:08 +0100506
507 if (error && strcmp(hash_algo_name[ima_hash_algo],
508 CONFIG_IMA_DEFAULT_HASH) != 0) {
509 pr_info("Allocating %s failed, going to use default hash algorithm %s\n",
510 hash_algo_name[ima_hash_algo], CONFIG_IMA_DEFAULT_HASH);
511 hash_setup_done = 0;
512 hash_setup(CONFIG_IMA_DEFAULT_HASH);
513 error = ima_init();
514 }
515
Petr Vorel4ecd9932018-05-10 17:15:48 +0200516 if (!error)
Roberto Sassua7560242014-09-12 19:35:54 +0200517 ima_update_policy_flag();
Petr Vorel4ecd9932018-05-10 17:15:48 +0200518
Mimi Zohar3323eec2009-02-04 09:06:58 -0500519 return error;
520}
521
Mimi Zohar3323eec2009-02-04 09:06:58 -0500522late_initcall(init_ima); /* Start IMA after the TPM is available */
523
524MODULE_DESCRIPTION("Integrity Measurement Architecture");
525MODULE_LICENSE("GPL");