blob: d47f92e97f80016f11eeb2e17bcf5aebd091464e [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 */
19#include <linux/module.h>
20#include <linux/file.h>
21#include <linux/binfmts.h>
22#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>
Mimi Zohar3323eec2009-02-04 09:06:58 -050027
28#include "ima.h"
29
30int ima_initialized;
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
Mimi Zohar3323eec2009-02-04 09:06:58 -050041static int __init hash_setup(char *str)
42{
Mimi Zohare7a2ad72013-06-07 12:16:37 +020043 struct ima_template_desc *template_desc = ima_template_desc_current();
44 int i;
45
46 if (hash_setup_done)
47 return 1;
48
49 if (strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) == 0) {
50 if (strncmp(str, "sha1", 4) == 0)
51 ima_hash_algo = HASH_ALGO_SHA1;
52 else if (strncmp(str, "md5", 3) == 0)
53 ima_hash_algo = HASH_ALGO_MD5;
54 goto out;
55 }
56
57 for (i = 0; i < HASH_ALGO__LAST; i++) {
58 if (strcmp(str, hash_algo_name[i]) == 0) {
59 ima_hash_algo = i;
60 break;
61 }
62 }
63out:
64 hash_setup_done = 1;
Mimi Zohar3323eec2009-02-04 09:06:58 -050065 return 1;
66}
67__setup("ima_hash=", hash_setup);
68
Eric Parise0d5bd22009-12-04 15:48:00 -050069/*
Mimi Zohar890275b52010-11-02 10:13:07 -040070 * ima_rdwr_violation_check
Mimi Zohar8eb988c2010-01-20 15:35:41 -050071 *
Mimi Zohar890275b52010-11-02 10:13:07 -040072 * Only invalidate the PCR for measured files:
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020073 * - Opening a file for write when already open for read,
Mimi Zohar8eb988c2010-01-20 15:35:41 -050074 * results in a time of measure, time of use (ToMToU) error.
75 * - Opening a file for read when already open for write,
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020076 * could result in a file measurement error.
Mimi Zohar8eb988c2010-01-20 15:35:41 -050077 *
78 */
Roberto Sassuf7a859f2014-09-12 19:35:55 +020079static void ima_rdwr_violation_check(struct file *file,
80 struct integrity_iint_cache *iint,
Roberto Sassu1b68bdf2014-09-12 19:35:56 +020081 int must_measure,
Roberto Sassuf7a859f2014-09-12 19:35:55 +020082 char **pathbuf,
83 const char **pathname)
Mimi Zohar8eb988c2010-01-20 15:35:41 -050084{
David Howellsc77cece2013-06-13 23:37:49 +010085 struct inode *inode = file_inode(file);
Mimi Zoharbc15ed62017-01-17 06:45:41 -050086 char filename[NAME_MAX];
Mimi Zohar8eb988c2010-01-20 15:35:41 -050087 fmode_t mode = file->f_mode;
Eric Parisad16ad02010-10-25 14:41:45 -040088 bool send_tomtou = false, send_writers = false;
Eric Parisa178d202010-10-25 14:41:59 -040089
Mimi Zohar8eb988c2010-01-20 15:35:41 -050090 if (mode & FMODE_WRITE) {
Dmitry Kasatkin14503eb2014-03-27 10:29:28 +020091 if (atomic_read(&inode->i_readcount) && IS_IMA(inode)) {
Roberto Sassuf7a859f2014-09-12 19:35:55 +020092 if (!iint)
93 iint = integrity_iint_find(inode);
Dmitry Kasatkin14503eb2014-03-27 10:29:28 +020094 /* IMA_MEASURE is set from reader side */
95 if (iint && (iint->flags & IMA_MEASURE))
96 send_tomtou = true;
97 }
Dmitry Kasatkinb882fae2014-03-27 10:54:11 +020098 } else {
Roberto Sassu1b68bdf2014-09-12 19:35:56 +020099 if ((atomic_read(&inode->i_writecount) > 0) && must_measure)
Dmitry Kasatkinb882fae2014-03-27 10:54:11 +0200100 send_writers = true;
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500101 }
Eric Parisad16ad02010-10-25 14:41:45 -0400102
Mimi Zohar08e1b762012-06-20 09:32:55 -0400103 if (!send_tomtou && !send_writers)
104 return;
105
Mimi Zoharbc15ed62017-01-17 06:45:41 -0500106 *pathname = ima_d_path(&file->f_path, pathbuf, filename);
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300107
Eric Parisad16ad02010-10-25 14:41:45 -0400108 if (send_tomtou)
Roberto Sassu8d94eb92015-04-11 17:12:39 +0200109 ima_add_violation(file, *pathname, iint,
110 "invalid_pcr", "ToMToU");
Eric Parisad16ad02010-10-25 14:41:45 -0400111 if (send_writers)
Roberto Sassu8d94eb92015-04-11 17:12:39 +0200112 ima_add_violation(file, *pathname, iint,
Mimi Zohar08e1b762012-06-20 09:32:55 -0400113 "invalid_pcr", "open_writers");
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500114}
115
Mimi Zoharf381c272011-03-09 14:13:22 -0500116static void ima_check_last_writer(struct integrity_iint_cache *iint,
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500117 struct inode *inode, struct file *file)
Eric Parisbc7d2a32010-10-25 14:42:05 -0400118{
Al Viro4b2a2c62011-07-26 04:30:35 -0400119 fmode_t mode = file->f_mode;
Eric Paris497f3232010-10-25 14:41:32 -0400120
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500121 if (!(mode & FMODE_WRITE))
122 return;
123
Al Viro59551022016-01-22 15:40:57 -0500124 inode_lock(inode);
Dmitry Kasatkinb151d6b2014-06-27 18:04:27 +0300125 if (atomic_read(&inode->i_writecount) == 1) {
126 if ((iint->version != inode->i_version) ||
127 (iint->flags & IMA_NEW_FILE)) {
128 iint->flags &= ~(IMA_DONE_MASK | IMA_NEW_FILE);
Eric Richtera4226382016-06-01 13:14:06 -0500129 iint->measured_pcrs = 0;
Dmitry Kasatkinb151d6b2014-06-27 18:04:27 +0300130 if (iint->flags & IMA_APPRAISE)
131 ima_update_xattr(iint, file);
132 }
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500133 }
Al Viro59551022016-01-22 15:40:57 -0500134 inode_unlock(inode);
Eric Parisbc7d2a32010-10-25 14:42:05 -0400135}
136
Mimi Zohar3323eec2009-02-04 09:06:58 -0500137/**
138 * ima_file_free - called on __fput()
139 * @file: pointer to file structure being freed
140 *
Mimi Zohar890275b52010-11-02 10:13:07 -0400141 * Flag files that changed, based on i_version
Mimi Zohar3323eec2009-02-04 09:06:58 -0500142 */
143void ima_file_free(struct file *file)
144{
Al Viro496ad9a2013-01-23 17:07:38 -0500145 struct inode *inode = file_inode(file);
Mimi Zoharf381c272011-03-09 14:13:22 -0500146 struct integrity_iint_cache *iint;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500147
Dmitry Kasatkin0f34a002014-09-24 11:05:10 +0300148 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500149 return;
Eric Paris196f5182010-10-25 14:42:19 -0400150
Mimi Zoharf381c272011-03-09 14:13:22 -0500151 iint = integrity_iint_find(inode);
Mimi Zohar854fdd52010-11-02 10:14:22 -0400152 if (!iint)
153 return;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500154
Mimi Zohar854fdd52010-11-02 10:14:22 -0400155 ima_check_last_writer(iint, inode, file);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500156}
157
Mimi Zoharcf222212016-01-14 17:57:47 -0500158static int process_measurement(struct file *file, char *buf, loff_t size,
159 int mask, enum ima_hooks func, int opened)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500160{
Al Viro496ad9a2013-01-23 17:07:38 -0500161 struct inode *inode = file_inode(file);
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200162 struct integrity_iint_cache *iint = NULL;
Dmitry Kasatkin209b43c2014-06-13 18:55:48 +0300163 struct ima_template_desc *template_desc;
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300164 char *pathbuf = NULL;
Mimi Zoharbc15ed62017-01-17 06:45:41 -0500165 char filename[NAME_MAX];
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300166 const char *pathname = NULL;
Dmitry Kasatkin3a8a2ea2014-09-03 10:19:57 +0300167 int rc = -ENOMEM, action, must_appraise;
Eric Richter725de7f2016-06-01 13:14:02 -0500168 int pcr = CONFIG_IMA_MEASURE_PCR_IDX;
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200169 struct evm_ima_xattr_data *xattr_value = NULL;
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300170 int xattr_len = 0;
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200171 bool violation_check;
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200172 enum hash_algo hash_algo;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500173
Roberto Sassua7560242014-09-12 19:35:54 +0200174 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500175 return 0;
Eric Parisbc7d2a32010-10-25 14:42:05 -0400176
Mimi Zohard79d72e2012-12-03 17:08:11 -0500177 /* Return an IMA_MEASURE, IMA_APPRAISE, IMA_AUDIT action
178 * bitmask based on the appraise/audit/measurement policy.
179 * Included is the appraise submask.
180 */
Eric Richter725de7f2016-06-01 13:14:02 -0500181 action = ima_get_action(inode, mask, func, &pcr);
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500182 violation_check = ((func == FILE_CHECK || func == MMAP_CHECK) &&
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200183 (ima_policy_flag & IMA_MEASURE));
184 if (!action && !violation_check)
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500185 return 0;
186
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500187 must_appraise = action & IMA_APPRAISE;
Eric Parisbc7d2a32010-10-25 14:42:05 -0400188
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500189 /* Is the appraise rule hook specific? */
Dmitry Kasatkin3a8a2ea2014-09-03 10:19:57 +0300190 if (action & IMA_FILE_APPRAISE)
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500191 func = FILE_CHECK;
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500192
Al Viro59551022016-01-22 15:40:57 -0500193 inode_lock(inode);
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500194
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200195 if (action) {
196 iint = integrity_inode_get(inode);
197 if (!iint)
198 goto out;
199 }
200
201 if (violation_check) {
Roberto Sassu1b68bdf2014-09-12 19:35:56 +0200202 ima_rdwr_violation_check(file, iint, action & IMA_MEASURE,
203 &pathbuf, &pathname);
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200204 if (!action) {
205 rc = 0;
206 goto out_free;
207 }
208 }
Dmitry Kasatkinbf2276d2011-10-19 12:04:40 +0300209
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500210 /* Determine if already appraised/measured based on bitmask
Mimi Zohard79d72e2012-12-03 17:08:11 -0500211 * (IMA_MEASURE, IMA_MEASURED, IMA_XXXX_APPRAISE, IMA_XXXX_APPRAISED,
212 * IMA_AUDIT, IMA_AUDITED)
213 */
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500214 iint->flags |= action;
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +0300215 action &= IMA_DO_MASK;
Eric Richtera4226382016-06-01 13:14:06 -0500216 action &= ~((iint->flags & (IMA_DONE_MASK ^ IMA_MEASURED)) >> 1);
217
218 /* If target pcr is already measured, unset IMA_MEASURE action */
219 if ((action & IMA_MEASURE) && (iint->measured_pcrs & (0x1 << pcr)))
220 action ^= IMA_MEASURE;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500221
222 /* Nothing to do, just return existing appraised status */
223 if (!action) {
Mimi Zohard79d72e2012-12-03 17:08:11 -0500224 if (must_appraise)
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500225 rc = ima_get_cache_status(iint, func);
Dmitry Kasatkina175b8b2012-09-27 15:06:28 +0300226 goto out_digsig;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500227 }
Mimi Zohar3323eec2009-02-04 09:06:58 -0500228
Dmitry Kasatkin209b43c2014-06-13 18:55:48 +0300229 template_desc = ima_template_desc_current();
Dmitry Kasatkinf68c05f2014-08-22 09:43:55 +0300230 if ((action & IMA_APPRAISE_SUBMASK) ||
231 strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) != 0)
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200232 /* read 'security.ima' */
Miklos Szeredie71b9df2016-09-16 12:44:20 +0200233 xattr_len = ima_read_xattr(file_dentry(file), &xattr_value);
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300234
Dmitry Kasatkin1525b062014-10-30 12:39:39 +0200235 hash_algo = ima_get_hash_algo(xattr_value, xattr_len);
236
Mimi Zoharcf222212016-01-14 17:57:47 -0500237 rc = ima_collect_measurement(iint, file, buf, size, hash_algo);
Mimi Zoharf3cc6b22017-06-17 23:56:23 -0400238 if (rc != 0 && rc != -EBADF && rc != -EINVAL)
Dmitry Kasatkina175b8b2012-09-27 15:06:28 +0300239 goto out_digsig;
Mimi Zohar08e1b762012-06-20 09:32:55 -0400240
Mimi Zoharbc15ed62017-01-17 06:45:41 -0500241 if (!pathbuf) /* ima_rdwr_violation possibly pre-fetched */
242 pathname = ima_d_path(&file->f_path, &pathbuf, filename);
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300243
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500244 if (action & IMA_MEASURE)
Mimi Zoharbcbc9b0c2013-07-23 11:15:00 -0400245 ima_store_measurement(iint, file, pathname,
Eric Richter14b1da82016-06-01 13:14:03 -0500246 xattr_value, xattr_len, pcr);
Mimi Zoharf3cc6b22017-06-17 23:56:23 -0400247 if (rc == 0 && (action & IMA_APPRAISE_SUBMASK))
Mimi Zohar4ad87a32016-01-14 20:59:14 -0500248 rc = ima_appraise_measurement(func, iint, file, pathname,
Dmitry Kasatkin3034a142014-06-27 18:15:44 +0300249 xattr_value, xattr_len, opened);
Peter Moodye7c568e2012-06-14 10:04:36 -0700250 if (action & IMA_AUDIT)
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300251 ima_audit_measurement(iint, pathname);
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200252
Mimi Zoharf3cc6b22017-06-17 23:56:23 -0400253 if ((file->f_flags & O_DIRECT) && (iint->flags & IMA_PERMIT_DIRECTIO))
254 rc = 0;
Dmitry Kasatkina175b8b2012-09-27 15:06:28 +0300255out_digsig:
Mimi Zohar05d1a712016-02-29 19:52:05 -0500256 if ((mask & MAY_WRITE) && (iint->flags & IMA_DIGSIG) &&
257 !(iint->flags & IMA_NEW_FILE))
Dmitry Kasatkina175b8b2012-09-27 15:06:28 +0300258 rc = -EACCES;
Roberto Sassuf7a859f2014-09-12 19:35:55 +0200259 kfree(xattr_value);
260out_free:
Dmitry Kasatkin456f5fd2014-10-01 21:43:10 +0300261 if (pathbuf)
262 __putname(pathbuf);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500263out:
Al Viro59551022016-01-22 15:40:57 -0500264 inode_unlock(inode);
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300265 if ((rc && must_appraise) && (ima_appraise & IMA_APPRAISE_ENFORCE))
266 return -EACCES;
267 return 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500268}
269
270/**
271 * ima_file_mmap - based on policy, collect/store measurement.
272 * @file: pointer to the file to be measured (May be NULL)
273 * @prot: contains the protection that will be applied by the kernel.
274 *
275 * Measure files being mmapped executable based on the ima_must_measure()
276 * policy decision.
277 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300278 * On success return 0. On integrity appraisal error, assuming the file
279 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500280 */
281int ima_file_mmap(struct file *file, unsigned long prot)
282{
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300283 if (file && (prot & PROT_EXEC))
Mimi Zoharcf222212016-01-14 17:57:47 -0500284 return process_measurement(file, NULL, 0, MAY_EXEC,
285 MMAP_CHECK, 0);
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300286 return 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500287}
288
289/**
290 * ima_bprm_check - based on policy, collect/store measurement.
291 * @bprm: contains the linux_binprm structure
292 *
293 * The OS protects against an executable file, already open for write,
294 * from being executed in deny_write_access() and an executable file,
295 * already open for execute, from being modified in get_write_access().
296 * So we can be certain that what we verify and measure here is actually
297 * what is being executed.
298 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300299 * On success return 0. On integrity appraisal error, assuming the file
300 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500301 */
302int ima_bprm_check(struct linux_binprm *bprm)
303{
Mimi Zoharcf222212016-01-14 17:57:47 -0500304 return process_measurement(bprm->file, NULL, 0, MAY_EXEC,
305 BPRM_CHECK, 0);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500306}
307
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500308/**
309 * ima_path_check - based on policy, collect/store measurement.
310 * @file: pointer to the file to be measured
Lans Zhang20f482a2017-01-06 12:38:11 +0800311 * @mask: contains MAY_READ, MAY_WRITE, MAY_EXEC or MAY_APPEND
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500312 *
313 * Measure files based on the ima_must_measure() policy decision.
314 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300315 * On success return 0. On integrity appraisal error, assuming the file
316 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500317 */
Dmitry Kasatkin3034a142014-06-27 18:15:44 +0300318int ima_file_check(struct file *file, int mask, int opened)
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500319{
Mimi Zoharcf222212016-01-14 17:57:47 -0500320 return process_measurement(file, NULL, 0,
Lans Zhang20f482a2017-01-06 12:38:11 +0800321 mask & (MAY_READ | MAY_WRITE | MAY_EXEC |
322 MAY_APPEND), FILE_CHECK, opened);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500323}
Mimi Zohar9bbb6ca2010-01-26 17:02:40 -0500324EXPORT_SYMBOL_GPL(ima_file_check);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500325
Mimi Zoharfdf90722012-10-16 12:40:08 +1030326/**
Mimi Zohar05d1a712016-02-29 19:52:05 -0500327 * ima_post_path_mknod - mark as a new inode
328 * @dentry: newly created dentry
329 *
330 * Mark files created via the mknodat syscall as new, so that the
331 * file data can be written later.
332 */
333void ima_post_path_mknod(struct dentry *dentry)
334{
335 struct integrity_iint_cache *iint;
336 struct inode *inode = dentry->d_inode;
337 int must_appraise;
338
339 must_appraise = ima_must_appraise(inode, MAY_ACCESS, FILE_CHECK);
340 if (!must_appraise)
341 return;
342
343 iint = integrity_inode_get(inode);
344 if (iint)
345 iint->flags |= IMA_NEW_FILE;
346}
347
348/**
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500349 * ima_read_file - pre-measure/appraise hook decision based on policy
350 * @file: pointer to the file to be measured/appraised/audit
351 * @read_id: caller identifier
352 *
353 * Permit reading a file based on policy. The policy rules are written
354 * in terms of the policy identifier. Appraising the integrity of
355 * a file requires a file descriptor.
356 *
357 * For permission return 0, otherwise return -EACCES.
358 */
359int ima_read_file(struct file *file, enum kernel_read_file_id read_id)
360{
Mimi Zohara1db7422015-12-30 07:35:30 -0500361 if (!file && read_id == READING_MODULE) {
362#ifndef CONFIG_MODULE_SIG_FORCE
363 if ((ima_appraise & IMA_APPRAISE_MODULES) &&
364 (ima_appraise & IMA_APPRAISE_ENFORCE))
365 return -EACCES; /* INTEGRITY_UNKNOWN */
366#endif
367 return 0; /* We rely on module signature checking */
368 }
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500369 return 0;
370}
371
Mimi Zohard9ddf072016-01-14 20:59:14 -0500372static int read_idmap[READING_MAX_ID] = {
373 [READING_FIRMWARE] = FIRMWARE_CHECK,
374 [READING_MODULE] = MODULE_CHECK,
375 [READING_KEXEC_IMAGE] = KEXEC_KERNEL_CHECK,
376 [READING_KEXEC_INITRAMFS] = KEXEC_INITRAMFS_CHECK,
Mimi Zohar19f8a842016-01-15 10:17:12 -0500377 [READING_POLICY] = POLICY_CHECK
Mimi Zohard9ddf072016-01-14 20:59:14 -0500378};
379
Mimi Zohar39eeb4f2016-01-30 22:23:26 -0500380/**
Mimi Zoharcf222212016-01-14 17:57:47 -0500381 * ima_post_read_file - in memory collect/appraise/audit measurement
382 * @file: pointer to the file to be measured/appraised/audit
383 * @buf: pointer to in memory file contents
384 * @size: size of in memory file contents
385 * @read_id: caller identifier
386 *
387 * Measure/appraise/audit in memory file based on policy. Policy rules
388 * are written in terms of a policy identifier.
389 *
390 * On success return 0. On integrity appraisal error, assuming the file
391 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
392 */
393int ima_post_read_file(struct file *file, void *buf, loff_t size,
394 enum kernel_read_file_id read_id)
395{
Mimi Zohard9ddf072016-01-14 20:59:14 -0500396 enum ima_hooks func;
Mimi Zoharcf222212016-01-14 17:57:47 -0500397
Mimi Zohare40ba6d2015-11-19 12:39:22 -0500398 if (!file && read_id == READING_FIRMWARE) {
399 if ((ima_appraise & IMA_APPRAISE_FIRMWARE) &&
400 (ima_appraise & IMA_APPRAISE_ENFORCE))
401 return -EACCES; /* INTEGRITY_UNKNOWN */
402 return 0;
403 }
404
Mimi Zohara1db7422015-12-30 07:35:30 -0500405 if (!file && read_id == READING_MODULE) /* MODULE_SIG_FORCE enabled */
406 return 0;
407
Christoph Hellwiga7d3d032017-09-10 09:49:45 +0200408 /* permit signed certs */
409 if (!file && read_id == READING_X509_CERTIFICATE)
410 return 0;
411
Mimi Zoharcf222212016-01-14 17:57:47 -0500412 if (!file || !buf || size == 0) { /* should never happen */
413 if (ima_appraise & IMA_APPRAISE_ENFORCE)
414 return -EACCES;
415 return 0;
416 }
417
Mimi Zohard9ddf072016-01-14 20:59:14 -0500418 func = read_idmap[read_id] ?: FILE_CHECK;
Mimi Zoharcf222212016-01-14 17:57:47 -0500419 return process_measurement(file, buf, size, MAY_READ, func, 0);
Mimi Zohar5a9196d2014-07-22 10:39:48 -0400420}
421
Mimi Zohar3323eec2009-02-04 09:06:58 -0500422static int __init init_ima(void)
423{
424 int error;
425
Mimi Zohar3f23d622016-12-19 16:22:51 -0800426 ima_init_template_list();
Mimi Zohare7a2ad72013-06-07 12:16:37 +0200427 hash_setup(CONFIG_IMA_DEFAULT_HASH);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500428 error = ima_init();
Roberto Sassua7560242014-09-12 19:35:54 +0200429 if (!error) {
Dmitry Kasatkin31b70f62014-06-27 13:01:32 +0300430 ima_initialized = 1;
Roberto Sassua7560242014-09-12 19:35:54 +0200431 ima_update_policy_flag();
432 }
Mimi Zohar3323eec2009-02-04 09:06:58 -0500433 return error;
434}
435
Mimi Zohar3323eec2009-02-04 09:06:58 -0500436late_initcall(init_ima); /* Start IMA after the TPM is available */
437
438MODULE_DESCRIPTION("Integrity Measurement Architecture");
439MODULE_LICENSE("GPL");