blob: f82cf9b8e92bebeab506aa6dd19906d297e64e4f [file] [log] [blame]
Mimi Zohar3323eec92009-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 Zohar3323eec92009-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>
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +030027#include <crypto/hash_info.h>
Mimi Zohar3323eec92009-02-04 09:06:58 -050028
29#include "ima.h"
30
31int ima_initialized;
32
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -050033#ifdef CONFIG_IMA_APPRAISE
34int ima_appraise = IMA_APPRAISE_ENFORCE;
35#else
36int ima_appraise;
37#endif
38
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +030039int ima_hash_algo = HASH_ALGO_SHA1;
Mimi Zohare7a2ad72013-06-07 12:16:37 +020040static int hash_setup_done;
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +030041
Mimi Zohar3323eec92009-02-04 09:06:58 -050042static int __init hash_setup(char *str)
43{
Mimi Zohare7a2ad72013-06-07 12:16:37 +020044 struct ima_template_desc *template_desc = ima_template_desc_current();
45 int i;
46
47 if (hash_setup_done)
48 return 1;
49
50 if (strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) == 0) {
51 if (strncmp(str, "sha1", 4) == 0)
52 ima_hash_algo = HASH_ALGO_SHA1;
53 else if (strncmp(str, "md5", 3) == 0)
54 ima_hash_algo = HASH_ALGO_MD5;
55 goto out;
56 }
57
58 for (i = 0; i < HASH_ALGO__LAST; i++) {
59 if (strcmp(str, hash_algo_name[i]) == 0) {
60 ima_hash_algo = i;
61 break;
62 }
63 }
64out:
65 hash_setup_done = 1;
Mimi Zohar3323eec92009-02-04 09:06:58 -050066 return 1;
67}
68__setup("ima_hash=", hash_setup);
69
Eric Parise0d5bd22009-12-04 15:48:00 -050070/*
Mimi Zohar890275b52010-11-02 10:13:07 -040071 * ima_rdwr_violation_check
Mimi Zohar8eb988c2010-01-20 15:35:41 -050072 *
Mimi Zohar890275b52010-11-02 10:13:07 -040073 * Only invalidate the PCR for measured files:
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020074 * - Opening a file for write when already open for read,
Mimi Zohar8eb988c2010-01-20 15:35:41 -050075 * results in a time of measure, time of use (ToMToU) error.
76 * - Opening a file for read when already open for write,
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020077 * could result in a file measurement error.
Mimi Zohar8eb988c2010-01-20 15:35:41 -050078 *
79 */
Mimi Zohar890275b52010-11-02 10:13:07 -040080static void ima_rdwr_violation_check(struct file *file)
Mimi Zohar8eb988c2010-01-20 15:35:41 -050081{
David Howellsc77cece2013-06-13 23:37:49 +010082 struct inode *inode = file_inode(file);
Mimi Zohar8eb988c2010-01-20 15:35:41 -050083 fmode_t mode = file->f_mode;
Eric Parisad16ad02010-10-25 14:41:45 -040084 bool send_tomtou = false, send_writers = false;
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +030085 char *pathbuf = NULL;
86 const char *pathname;
Mimi Zohar8eb988c2010-01-20 15:35:41 -050087
Mimi Zohar890275b52010-11-02 10:13:07 -040088 if (!S_ISREG(inode->i_mode) || !ima_initialized)
Mimi Zohar8eb988c2010-01-20 15:35:41 -050089 return;
Eric Parisa178d202010-10-25 14:41:59 -040090
Mimi Zohar8eb988c2010-01-20 15:35:41 -050091 if (mode & FMODE_WRITE) {
Dmitry Kasatkin14503eb2014-03-27 10:29:28 +020092 if (atomic_read(&inode->i_readcount) && IS_IMA(inode)) {
93 struct integrity_iint_cache *iint;
94 iint = integrity_iint_find(inode);
95 /* IMA_MEASURE is set from reader side */
96 if (iint && (iint->flags & IMA_MEASURE))
97 send_tomtou = true;
98 }
Dmitry Kasatkinb882fae2014-03-27 10:54:11 +020099 } else {
100 if ((atomic_read(&inode->i_writecount) > 0) &&
101 ima_must_measure(inode, MAY_READ, FILE_CHECK))
102 send_writers = true;
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500103 }
Eric Parisad16ad02010-10-25 14:41:45 -0400104
Mimi Zohar08e1b762012-06-20 09:32:55 -0400105 if (!send_tomtou && !send_writers)
106 return;
107
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300108 pathname = ima_d_path(&file->f_path, &pathbuf);
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300109
Eric Parisad16ad02010-10-25 14:41:45 -0400110 if (send_tomtou)
Roberto Sassu7d802a22013-06-07 12:16:26 +0200111 ima_add_violation(file, pathname, "invalid_pcr", "ToMToU");
Eric Parisad16ad02010-10-25 14:41:45 -0400112 if (send_writers)
Roberto Sassu7d802a22013-06-07 12:16:26 +0200113 ima_add_violation(file, pathname,
Mimi Zohar08e1b762012-06-20 09:32:55 -0400114 "invalid_pcr", "open_writers");
115 kfree(pathbuf);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500116}
117
Mimi Zoharf381c272011-03-09 14:13:22 -0500118static void ima_check_last_writer(struct integrity_iint_cache *iint,
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500119 struct inode *inode, struct file *file)
Eric Parisbc7d2a32010-10-25 14:42:05 -0400120{
Al Viro4b2a2c62011-07-26 04:30:35 -0400121 fmode_t mode = file->f_mode;
Eric Paris497f3232010-10-25 14:41:32 -0400122
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500123 if (!(mode & FMODE_WRITE))
124 return;
125
126 mutex_lock(&inode->i_mutex);
Dmitry Kasatkinb151d6b2014-06-27 18:04:27 +0300127 if (atomic_read(&inode->i_writecount) == 1) {
128 if ((iint->version != inode->i_version) ||
129 (iint->flags & IMA_NEW_FILE)) {
130 iint->flags &= ~(IMA_DONE_MASK | IMA_NEW_FILE);
131 if (iint->flags & IMA_APPRAISE)
132 ima_update_xattr(iint, file);
133 }
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500134 }
135 mutex_unlock(&inode->i_mutex);
Eric Parisbc7d2a32010-10-25 14:42:05 -0400136}
137
Mimi Zohar3323eec92009-02-04 09:06:58 -0500138/**
139 * ima_file_free - called on __fput()
140 * @file: pointer to file structure being freed
141 *
Mimi Zohar890275b52010-11-02 10:13:07 -0400142 * Flag files that changed, based on i_version
Mimi Zohar3323eec92009-02-04 09:06:58 -0500143 */
144void ima_file_free(struct file *file)
145{
Al Viro496ad9a2013-01-23 17:07:38 -0500146 struct inode *inode = file_inode(file);
Mimi Zoharf381c272011-03-09 14:13:22 -0500147 struct integrity_iint_cache *iint;
Mimi Zohar3323eec92009-02-04 09:06:58 -0500148
Mimi Zohare9505982010-08-31 09:38:51 -0400149 if (!iint_initialized || !S_ISREG(inode->i_mode))
Mimi Zohar3323eec92009-02-04 09:06:58 -0500150 return;
Eric Paris196f5182010-10-25 14:42:19 -0400151
Mimi Zoharf381c272011-03-09 14:13:22 -0500152 iint = integrity_iint_find(inode);
Mimi Zohar854fdd52010-11-02 10:14:22 -0400153 if (!iint)
154 return;
Mimi Zohar3323eec92009-02-04 09:06:58 -0500155
Mimi Zohar854fdd52010-11-02 10:14:22 -0400156 ima_check_last_writer(iint, inode, file);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500157}
158
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300159static int process_measurement(struct file *file, const char *filename,
Dmitry Kasatkin3034a142014-06-27 18:15:44 +0300160 int mask, int function, int opened)
Mimi Zohar3323eec92009-02-04 09:06:58 -0500161{
Al Viro496ad9a2013-01-23 17:07:38 -0500162 struct inode *inode = file_inode(file);
Mimi Zoharf381c272011-03-09 14:13:22 -0500163 struct integrity_iint_cache *iint;
Dmitry Kasatkin209b43c2014-06-13 18:55:48 +0300164 struct ima_template_desc *template_desc;
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300165 char *pathbuf = NULL;
166 const char *pathname = NULL;
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500167 int rc = -ENOMEM, action, must_appraise, _func;
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300168 struct evm_ima_xattr_data *xattr_value = NULL, **xattr_ptr = NULL;
169 int xattr_len = 0;
Mimi Zohar3323eec92009-02-04 09:06:58 -0500170
171 if (!ima_initialized || !S_ISREG(inode->i_mode))
172 return 0;
Eric Parisbc7d2a32010-10-25 14:42:05 -0400173
Mimi Zohard79d72e2012-12-03 17:08:11 -0500174 /* Return an IMA_MEASURE, IMA_APPRAISE, IMA_AUDIT action
175 * bitmask based on the appraise/audit/measurement policy.
176 * Included is the appraise submask.
177 */
Dmitry Kasatkind9d300c2012-06-27 11:26:14 +0300178 action = ima_get_action(inode, mask, function);
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500179 if (!action)
180 return 0;
181
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500182 must_appraise = action & IMA_APPRAISE;
Eric Parisbc7d2a32010-10-25 14:42:05 -0400183
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500184 /* Is the appraise rule hook specific? */
185 _func = (action & IMA_FILE_APPRAISE) ? FILE_CHECK : function;
186
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500187 mutex_lock(&inode->i_mutex);
188
Dmitry Kasatkinbf2276d2011-10-19 12:04:40 +0300189 iint = integrity_inode_get(inode);
190 if (!iint)
191 goto out;
192
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500193 /* Determine if already appraised/measured based on bitmask
Mimi Zohard79d72e2012-12-03 17:08:11 -0500194 * (IMA_MEASURE, IMA_MEASURED, IMA_XXXX_APPRAISE, IMA_XXXX_APPRAISED,
195 * IMA_AUDIT, IMA_AUDITED)
196 */
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500197 iint->flags |= action;
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +0300198 action &= IMA_DO_MASK;
Dmitry Kasatkin45e24722012-09-12 20:51:32 +0300199 action &= ~((iint->flags & IMA_DONE_MASK) >> 1);
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500200
201 /* Nothing to do, just return existing appraised status */
202 if (!action) {
Mimi Zohard79d72e2012-12-03 17:08:11 -0500203 if (must_appraise)
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500204 rc = ima_get_cache_status(iint, _func);
Dmitry Kasatkina175b8b2012-09-27 15:06:28 +0300205 goto out_digsig;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500206 }
Mimi Zohar3323eec92009-02-04 09:06:58 -0500207
Dmitry Kasatkin209b43c2014-06-13 18:55:48 +0300208 template_desc = ima_template_desc_current();
Roberto Sassuadd1c052013-06-07 12:16:39 +0200209 if (strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) == 0) {
210 if (action & IMA_APPRAISE_SUBMASK)
211 xattr_ptr = &xattr_value;
212 } else
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300213 xattr_ptr = &xattr_value;
214
215 rc = ima_collect_measurement(iint, file, xattr_ptr, &xattr_len);
Mimi Zoharf9b2a732014-05-12 09:28:11 -0400216 if (rc != 0) {
217 if (file->f_flags & O_DIRECT)
218 rc = (iint->flags & IMA_PERMIT_DIRECTIO) ? 0 : -EACCES;
Dmitry Kasatkina175b8b2012-09-27 15:06:28 +0300219 goto out_digsig;
Mimi Zoharf9b2a732014-05-12 09:28:11 -0400220 }
Mimi Zohar08e1b762012-06-20 09:32:55 -0400221
Dmitry Kasatkin61997c42013-11-13 22:23:20 +0200222 pathname = filename ?: ima_d_path(&file->f_path, &pathbuf);
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300223
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500224 if (action & IMA_MEASURE)
Mimi Zoharbcbc9b02013-07-23 11:15:00 -0400225 ima_store_measurement(iint, file, pathname,
226 xattr_value, xattr_len);
Mimi Zohard79d72e2012-12-03 17:08:11 -0500227 if (action & IMA_APPRAISE_SUBMASK)
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300228 rc = ima_appraise_measurement(_func, iint, file, pathname,
Dmitry Kasatkin3034a142014-06-27 18:15:44 +0300229 xattr_value, xattr_len, opened);
Peter Moodye7c568e2012-06-14 10:04:36 -0700230 if (action & IMA_AUDIT)
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300231 ima_audit_measurement(iint, pathname);
Mimi Zohar08e1b762012-06-20 09:32:55 -0400232 kfree(pathbuf);
Dmitry Kasatkina175b8b2012-09-27 15:06:28 +0300233out_digsig:
234 if ((mask & MAY_WRITE) && (iint->flags & IMA_DIGSIG))
235 rc = -EACCES;
Mimi Zohar3323eec92009-02-04 09:06:58 -0500236out:
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500237 mutex_unlock(&inode->i_mutex);
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300238 kfree(xattr_value);
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300239 if ((rc && must_appraise) && (ima_appraise & IMA_APPRAISE_ENFORCE))
240 return -EACCES;
241 return 0;
Mimi Zohar3323eec92009-02-04 09:06:58 -0500242}
243
244/**
245 * ima_file_mmap - based on policy, collect/store measurement.
246 * @file: pointer to the file to be measured (May be NULL)
247 * @prot: contains the protection that will be applied by the kernel.
248 *
249 * Measure files being mmapped executable based on the ima_must_measure()
250 * policy decision.
251 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300252 * On success return 0. On integrity appraisal error, assuming the file
253 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar3323eec92009-02-04 09:06:58 -0500254 */
255int ima_file_mmap(struct file *file, unsigned long prot)
256{
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300257 if (file && (prot & PROT_EXEC))
Dmitry Kasatkin3034a142014-06-27 18:15:44 +0300258 return process_measurement(file, NULL, MAY_EXEC, MMAP_CHECK, 0);
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300259 return 0;
Mimi Zohar3323eec92009-02-04 09:06:58 -0500260}
261
262/**
263 * ima_bprm_check - based on policy, collect/store measurement.
264 * @bprm: contains the linux_binprm structure
265 *
266 * The OS protects against an executable file, already open for write,
267 * from being executed in deny_write_access() and an executable file,
268 * already open for execute, from being modified in get_write_access().
269 * So we can be certain that what we verify and measure here is actually
270 * what is being executed.
271 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300272 * On success return 0. On integrity appraisal error, assuming the file
273 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar3323eec92009-02-04 09:06:58 -0500274 */
275int ima_bprm_check(struct linux_binprm *bprm)
276{
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300277 return process_measurement(bprm->file,
Dmitry Kasatkin089bc8e2013-10-10 15:56:13 +0900278 (strcmp(bprm->filename, bprm->interp) == 0) ?
279 bprm->filename : bprm->interp,
Dmitry Kasatkin3034a142014-06-27 18:15:44 +0300280 MAY_EXEC, BPRM_CHECK, 0);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500281}
282
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500283/**
284 * ima_path_check - based on policy, collect/store measurement.
285 * @file: pointer to the file to be measured
286 * @mask: contains MAY_READ, MAY_WRITE or MAY_EXECUTE
287 *
288 * Measure files based on the ima_must_measure() policy decision.
289 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300290 * On success return 0. On integrity appraisal error, assuming the file
291 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500292 */
Dmitry Kasatkin3034a142014-06-27 18:15:44 +0300293int ima_file_check(struct file *file, int mask, int opened)
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500294{
Mimi Zohar890275b52010-11-02 10:13:07 -0400295 ima_rdwr_violation_check(file);
Mimi Zohardf2c2af2013-04-15 11:27:20 -0400296 return process_measurement(file, NULL,
Dmitry Kasatkin089bc8e2013-10-10 15:56:13 +0900297 mask & (MAY_READ | MAY_WRITE | MAY_EXEC),
Dmitry Kasatkin3034a142014-06-27 18:15:44 +0300298 FILE_CHECK, opened);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500299}
Mimi Zohar9bbb6ca2010-01-26 17:02:40 -0500300EXPORT_SYMBOL_GPL(ima_file_check);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500301
Mimi Zoharfdf90722012-10-16 12:40:08 +1030302/**
303 * ima_module_check - based on policy, collect/store/appraise measurement.
304 * @file: pointer to the file to be measured/appraised
305 *
306 * Measure/appraise kernel modules based on policy.
307 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300308 * On success return 0. On integrity appraisal error, assuming the file
309 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zoharfdf90722012-10-16 12:40:08 +1030310 */
311int ima_module_check(struct file *file)
312{
Mimi Zohara7f2a362012-12-21 08:34:21 -0500313 if (!file) {
Mimi Zohara7f2a362012-12-21 08:34:21 -0500314#ifndef CONFIG_MODULE_SIG_FORCE
Mimi Zohara2c2c3a2013-02-24 23:42:36 -0500315 if ((ima_appraise & IMA_APPRAISE_MODULES) &&
316 (ima_appraise & IMA_APPRAISE_ENFORCE))
Linus Torvalds33673dc2013-02-21 08:18:12 -0800317 return -EACCES; /* INTEGRITY_UNKNOWN */
Mimi Zohara7f2a362012-12-21 08:34:21 -0500318#endif
Linus Torvalds33673dc2013-02-21 08:18:12 -0800319 return 0; /* We rely on module signature checking */
320 }
Dmitry Kasatkin3034a142014-06-27 18:15:44 +0300321 return process_measurement(file, NULL, MAY_EXEC, MODULE_CHECK, 0);
Mimi Zoharfdf90722012-10-16 12:40:08 +1030322}
323
Mimi Zohar5a9196d2014-07-22 10:39:48 -0400324int ima_fw_from_file(struct file *file, char *buf, size_t size)
325{
326 if (!file) {
327 if ((ima_appraise & IMA_APPRAISE_FIRMWARE) &&
328 (ima_appraise & IMA_APPRAISE_ENFORCE))
329 return -EACCES; /* INTEGRITY_UNKNOWN */
330 return 0;
331 }
Dmitry Kasatkin3034a142014-06-27 18:15:44 +0300332 return process_measurement(file, NULL, MAY_EXEC, FIRMWARE_CHECK, 0);
Mimi Zohar5a9196d2014-07-22 10:39:48 -0400333}
334
Mimi Zohar3323eec92009-02-04 09:06:58 -0500335static int __init init_ima(void)
336{
337 int error;
338
Mimi Zohare7a2ad72013-06-07 12:16:37 +0200339 hash_setup(CONFIG_IMA_DEFAULT_HASH);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500340 error = ima_init();
Mimi Zohar7d2ce232013-08-13 08:47:43 -0400341 if (error)
342 goto out;
343
344 error = ima_init_keyring(INTEGRITY_KEYRING_IMA);
345 if (error)
346 goto out;
347 ima_initialized = 1;
348out:
Mimi Zohar3323eec92009-02-04 09:06:58 -0500349 return error;
350}
351
Mimi Zohar3323eec92009-02-04 09:06:58 -0500352late_initcall(init_ima); /* Start IMA after the TPM is available */
353
354MODULE_DESCRIPTION("Integrity Measurement Architecture");
355MODULE_LICENSE("GPL");