blob: 5b14a0946d6ed909f90bfb809c4a72c14594bda5 [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
Mimi Zohar3323eec2009-02-04 09:06:58 -050038char *ima_hash = "sha1";
39static int __init hash_setup(char *str)
40{
Mimi Zohar07ff7a02009-05-05 13:13:10 -040041 if (strncmp(str, "md5", 3) == 0)
42 ima_hash = "md5";
Mimi Zohar3323eec2009-02-04 09:06:58 -050043 return 1;
44}
45__setup("ima_hash=", hash_setup);
46
Eric Parise0d5bd22009-12-04 15:48:00 -050047/*
Mimi Zohar890275b52010-11-02 10:13:07 -040048 * ima_rdwr_violation_check
Mimi Zohar8eb988c2010-01-20 15:35:41 -050049 *
Mimi Zohar890275b52010-11-02 10:13:07 -040050 * Only invalidate the PCR for measured files:
Mimi Zohar8eb988c2010-01-20 15:35:41 -050051 * - Opening a file for write when already open for read,
52 * results in a time of measure, time of use (ToMToU) error.
53 * - Opening a file for read when already open for write,
54 * could result in a file measurement error.
55 *
56 */
Mimi Zohar890275b52010-11-02 10:13:07 -040057static void ima_rdwr_violation_check(struct file *file)
Mimi Zohar8eb988c2010-01-20 15:35:41 -050058{
59 struct dentry *dentry = file->f_path.dentry;
60 struct inode *inode = dentry->d_inode;
61 fmode_t mode = file->f_mode;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -050062 int must_measure;
Eric Parisad16ad02010-10-25 14:41:45 -040063 bool send_tomtou = false, send_writers = false;
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +030064 char *pathbuf = NULL;
65 const char *pathname;
Mimi Zohar8eb988c2010-01-20 15:35:41 -050066
Mimi Zohar890275b52010-11-02 10:13:07 -040067 if (!S_ISREG(inode->i_mode) || !ima_initialized)
Mimi Zohar8eb988c2010-01-20 15:35:41 -050068 return;
Eric Parisa178d202010-10-25 14:41:59 -040069
Mimi Zohar890275b52010-11-02 10:13:07 -040070 mutex_lock(&inode->i_mutex); /* file metadata: permissions, xattr */
Eric Parisad16ad02010-10-25 14:41:45 -040071
Mimi Zohar8eb988c2010-01-20 15:35:41 -050072 if (mode & FMODE_WRITE) {
Mimi Zohara68a27b2010-11-02 10:10:56 -040073 if (atomic_read(&inode->i_readcount) && IS_IMA(inode))
Eric Parisad16ad02010-10-25 14:41:45 -040074 send_tomtou = true;
Mimi Zohar8eb988c2010-01-20 15:35:41 -050075 goto out;
76 }
Eric Parisad16ad02010-10-25 14:41:45 -040077
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -050078 must_measure = ima_must_measure(inode, MAY_READ, FILE_CHECK);
79 if (!must_measure)
Eric Parisbade72d2010-10-25 14:42:25 -040080 goto out;
81
Eric Parisad16ad02010-10-25 14:41:45 -040082 if (atomic_read(&inode->i_writecount) > 0)
83 send_writers = true;
Mimi Zohar8eb988c2010-01-20 15:35:41 -050084out:
Mimi Zohar890275b52010-11-02 10:13:07 -040085 mutex_unlock(&inode->i_mutex);
Eric Parisad16ad02010-10-25 14:41:45 -040086
Mimi Zohar08e1b762012-06-20 09:32:55 -040087 if (!send_tomtou && !send_writers)
88 return;
89
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +030090 pathname = ima_d_path(&file->f_path, &pathbuf);
91 if (!pathname || strlen(pathname) > IMA_EVENT_NAME_LEN_MAX)
92 pathname = dentry->d_name.name;
93
Eric Parisad16ad02010-10-25 14:41:45 -040094 if (send_tomtou)
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +030095 ima_add_violation(inode, pathname,
Mimi Zohar08e1b762012-06-20 09:32:55 -040096 "invalid_pcr", "ToMToU");
Eric Parisad16ad02010-10-25 14:41:45 -040097 if (send_writers)
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +030098 ima_add_violation(inode, pathname,
Mimi Zohar08e1b762012-06-20 09:32:55 -040099 "invalid_pcr", "open_writers");
100 kfree(pathbuf);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500101}
102
Mimi Zoharf381c272011-03-09 14:13:22 -0500103static void ima_check_last_writer(struct integrity_iint_cache *iint,
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500104 struct inode *inode, struct file *file)
Eric Parisbc7d2a32010-10-25 14:42:05 -0400105{
Al Viro4b2a2c62011-07-26 04:30:35 -0400106 fmode_t mode = file->f_mode;
Eric Paris497f3232010-10-25 14:41:32 -0400107
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500108 if (!(mode & FMODE_WRITE))
109 return;
110
111 mutex_lock(&inode->i_mutex);
112 if (atomic_read(&inode->i_writecount) == 1 &&
113 iint->version != inode->i_version) {
Dmitry Kasatkin45e24722012-09-12 20:51:32 +0300114 iint->flags &= ~IMA_DONE_MASK;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500115 if (iint->flags & IMA_APPRAISE)
116 ima_update_xattr(iint, file);
117 }
118 mutex_unlock(&inode->i_mutex);
Eric Parisbc7d2a32010-10-25 14:42:05 -0400119}
120
Mimi Zohar3323eec2009-02-04 09:06:58 -0500121/**
122 * ima_file_free - called on __fput()
123 * @file: pointer to file structure being freed
124 *
Mimi Zohar890275b52010-11-02 10:13:07 -0400125 * Flag files that changed, based on i_version
Mimi Zohar3323eec2009-02-04 09:06:58 -0500126 */
127void ima_file_free(struct file *file)
128{
129 struct inode *inode = file->f_dentry->d_inode;
Mimi Zoharf381c272011-03-09 14:13:22 -0500130 struct integrity_iint_cache *iint;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500131
Mimi Zohare9505982010-08-31 09:38:51 -0400132 if (!iint_initialized || !S_ISREG(inode->i_mode))
Mimi Zohar3323eec2009-02-04 09:06:58 -0500133 return;
Eric Paris196f5182010-10-25 14:42:19 -0400134
Mimi Zoharf381c272011-03-09 14:13:22 -0500135 iint = integrity_iint_find(inode);
Mimi Zohar854fdd52010-11-02 10:14:22 -0400136 if (!iint)
137 return;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500138
Mimi Zohar854fdd52010-11-02 10:14:22 -0400139 ima_check_last_writer(iint, inode, file);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500140}
141
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300142static int process_measurement(struct file *file, const char *filename,
Mimi Zohar3323eec2009-02-04 09:06:58 -0500143 int mask, int function)
144{
145 struct inode *inode = file->f_dentry->d_inode;
Mimi Zoharf381c272011-03-09 14:13:22 -0500146 struct integrity_iint_cache *iint;
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300147 char *pathbuf = NULL;
148 const char *pathname = NULL;
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500149 int rc = -ENOMEM, action, must_appraise, _func;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500150
151 if (!ima_initialized || !S_ISREG(inode->i_mode))
152 return 0;
Eric Parisbc7d2a32010-10-25 14:42:05 -0400153
Mimi Zohard79d72e2012-12-03 17:08:11 -0500154 /* Return an IMA_MEASURE, IMA_APPRAISE, IMA_AUDIT action
155 * bitmask based on the appraise/audit/measurement policy.
156 * Included is the appraise submask.
157 */
Dmitry Kasatkind9d300c2012-06-27 11:26:14 +0300158 action = ima_get_action(inode, mask, function);
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500159 if (!action)
160 return 0;
161
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500162 must_appraise = action & IMA_APPRAISE;
Eric Parisbc7d2a32010-10-25 14:42:05 -0400163
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500164 /* Is the appraise rule hook specific? */
165 _func = (action & IMA_FILE_APPRAISE) ? FILE_CHECK : function;
166
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500167 mutex_lock(&inode->i_mutex);
168
Dmitry Kasatkinbf2276d2011-10-19 12:04:40 +0300169 iint = integrity_inode_get(inode);
170 if (!iint)
171 goto out;
172
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500173 /* Determine if already appraised/measured based on bitmask
Mimi Zohard79d72e2012-12-03 17:08:11 -0500174 * (IMA_MEASURE, IMA_MEASURED, IMA_XXXX_APPRAISE, IMA_XXXX_APPRAISED,
175 * IMA_AUDIT, IMA_AUDITED)
176 */
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500177 iint->flags |= action;
Dmitry Kasatkin0e5a2472012-06-08 13:58:49 +0300178 action &= IMA_DO_MASK;
Dmitry Kasatkin45e24722012-09-12 20:51:32 +0300179 action &= ~((iint->flags & IMA_DONE_MASK) >> 1);
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500180
181 /* Nothing to do, just return existing appraised status */
182 if (!action) {
Mimi Zohard79d72e2012-12-03 17:08:11 -0500183 if (must_appraise)
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500184 rc = ima_get_cache_status(iint, _func);
Dmitry Kasatkina175b8b2012-09-27 15:06:28 +0300185 goto out_digsig;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500186 }
Mimi Zohar3323eec2009-02-04 09:06:58 -0500187
188 rc = ima_collect_measurement(iint, file);
Mimi Zohar08e1b762012-06-20 09:32:55 -0400189 if (rc != 0)
Dmitry Kasatkina175b8b2012-09-27 15:06:28 +0300190 goto out_digsig;
Mimi Zohar08e1b762012-06-20 09:32:55 -0400191
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300192 if (function != BPRM_CHECK)
193 pathname = ima_d_path(&file->f_path, &pathbuf);
194
195 if (!pathname)
196 pathname = filename;
197
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500198 if (action & IMA_MEASURE)
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300199 ima_store_measurement(iint, file, pathname);
Mimi Zohard79d72e2012-12-03 17:08:11 -0500200 if (action & IMA_APPRAISE_SUBMASK)
Mimi Zohar5a73fcf2012-12-05 15:14:38 -0500201 rc = ima_appraise_measurement(_func, iint, file, pathname);
Peter Moodye7c568e2012-06-14 10:04:36 -0700202 if (action & IMA_AUDIT)
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300203 ima_audit_measurement(iint, pathname);
Mimi Zohar08e1b762012-06-20 09:32:55 -0400204 kfree(pathbuf);
Dmitry Kasatkina175b8b2012-09-27 15:06:28 +0300205out_digsig:
206 if ((mask & MAY_WRITE) && (iint->flags & IMA_DIGSIG))
207 rc = -EACCES;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500208out:
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500209 mutex_unlock(&inode->i_mutex);
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300210 if ((rc && must_appraise) && (ima_appraise & IMA_APPRAISE_ENFORCE))
211 return -EACCES;
212 return 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500213}
214
215/**
216 * ima_file_mmap - based on policy, collect/store measurement.
217 * @file: pointer to the file to be measured (May be NULL)
218 * @prot: contains the protection that will be applied by the kernel.
219 *
220 * Measure files being mmapped executable based on the ima_must_measure()
221 * policy decision.
222 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300223 * On success return 0. On integrity appraisal error, assuming the file
224 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500225 */
226int ima_file_mmap(struct file *file, unsigned long prot)
227{
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300228 if (file && (prot & PROT_EXEC))
229 return process_measurement(file, file->f_dentry->d_name.name,
Mimi Zohar16cac492012-12-13 11:15:04 -0500230 MAY_EXEC, MMAP_CHECK);
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300231 return 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500232}
233
234/**
235 * ima_bprm_check - based on policy, collect/store measurement.
236 * @bprm: contains the linux_binprm structure
237 *
238 * The OS protects against an executable file, already open for write,
239 * from being executed in deny_write_access() and an executable file,
240 * already open for execute, from being modified in get_write_access().
241 * So we can be certain that what we verify and measure here is actually
242 * what is being executed.
243 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300244 * On success return 0. On integrity appraisal error, assuming the file
245 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500246 */
247int ima_bprm_check(struct linux_binprm *bprm)
248{
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300249 return process_measurement(bprm->file,
Mimi Zoharfbbb4562012-05-14 21:50:11 -0400250 (strcmp(bprm->filename, bprm->interp) == 0) ?
251 bprm->filename : bprm->interp,
Mimi Zohar3323eec2009-02-04 09:06:58 -0500252 MAY_EXEC, BPRM_CHECK);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500253}
254
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500255/**
256 * ima_path_check - based on policy, collect/store measurement.
257 * @file: pointer to the file to be measured
258 * @mask: contains MAY_READ, MAY_WRITE or MAY_EXECUTE
259 *
260 * Measure files based on the ima_must_measure() policy decision.
261 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300262 * On success return 0. On integrity appraisal error, assuming the file
263 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500264 */
Mimi Zohar9bbb6ca2010-01-26 17:02:40 -0500265int ima_file_check(struct file *file, int mask)
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500266{
Mimi Zohar890275b52010-11-02 10:13:07 -0400267 ima_rdwr_violation_check(file);
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300268 return process_measurement(file, file->f_dentry->d_name.name,
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500269 mask & (MAY_READ | MAY_WRITE | MAY_EXEC),
Mimi Zohar1e93d002010-01-26 17:02:41 -0500270 FILE_CHECK);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500271}
Mimi Zohar9bbb6ca2010-01-26 17:02:40 -0500272EXPORT_SYMBOL_GPL(ima_file_check);
Mimi Zohar8eb988c2010-01-20 15:35:41 -0500273
Mimi Zoharfdf90722012-10-16 12:40:08 +1030274/**
275 * ima_module_check - based on policy, collect/store/appraise measurement.
276 * @file: pointer to the file to be measured/appraised
277 *
278 * Measure/appraise kernel modules based on policy.
279 *
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300280 * On success return 0. On integrity appraisal error, assuming the file
281 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
Mimi Zoharfdf90722012-10-16 12:40:08 +1030282 */
283int ima_module_check(struct file *file)
284{
Mimi Zohara7f2a362012-12-21 08:34:21 -0500285 if (!file) {
Mimi Zohara7f2a362012-12-21 08:34:21 -0500286#ifndef CONFIG_MODULE_SIG_FORCE
Mimi Zohara2c2c3a72013-02-24 23:42:36 -0500287 if ((ima_appraise & IMA_APPRAISE_MODULES) &&
288 (ima_appraise & IMA_APPRAISE_ENFORCE))
Linus Torvalds33673dc2013-02-21 08:18:12 -0800289 return -EACCES; /* INTEGRITY_UNKNOWN */
Mimi Zohara7f2a362012-12-21 08:34:21 -0500290#endif
Linus Torvalds33673dc2013-02-21 08:18:12 -0800291 return 0; /* We rely on module signature checking */
292 }
Dmitry Kasatkin750943a2012-09-27 15:57:10 +0300293 return process_measurement(file, file->f_dentry->d_name.name,
294 MAY_EXEC, MODULE_CHECK);
Mimi Zoharfdf90722012-10-16 12:40:08 +1030295}
296
Mimi Zohar3323eec2009-02-04 09:06:58 -0500297static int __init init_ima(void)
298{
299 int error;
300
Mimi Zohar3323eec2009-02-04 09:06:58 -0500301 error = ima_init();
Dmitry Kasatkin7ff22672012-06-25 12:18:11 +0300302 if (!error)
303 ima_initialized = 1;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500304 return error;
305}
306
Mimi Zohar3323eec2009-02-04 09:06:58 -0500307late_initcall(init_ima); /* Start IMA after the TPM is available */
308
309MODULE_DESCRIPTION("Integrity Measurement Architecture");
310MODULE_LICENSE("GPL");