Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[deliverable/linux.git] / security / integrity / ima / ima_main.c
CommitLineData
3323eec9
MZ
1/*
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
e0d5bd2a 16 * implements the IMA hooks: ima_bprm_check, ima_file_mmap,
9bbb6cad 17 * and ima_file_check.
3323eec9
MZ
18 */
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>
5a0e3ad6 24#include <linux/slab.h>
2fe5d6de 25#include <linux/xattr.h>
d5813a57 26#include <linux/ima.h>
c7c8bb23 27#include <crypto/hash_info.h>
3323eec9
MZ
28
29#include "ima.h"
30
31int ima_initialized;
32
2fe5d6de
MZ
33#ifdef CONFIG_IMA_APPRAISE
34int ima_appraise = IMA_APPRAISE_ENFORCE;
35#else
36int ima_appraise;
37#endif
38
c7c8bb23 39int ima_hash_algo = HASH_ALGO_SHA1;
e7a2ad7e 40static int hash_setup_done;
c7c8bb23 41
3323eec9
MZ
42static int __init hash_setup(char *str)
43{
e7a2ad7e
MZ
44 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;
3323eec9
MZ
66 return 1;
67}
68__setup("ima_hash=", hash_setup);
69
8eb988c7 70/*
890275b5 71 * ima_rdwr_violation_check
8eb988c7 72 *
890275b5 73 * Only invalidate the PCR for measured files:
2bb930ab 74 * - Opening a file for write when already open for read,
8eb988c7
MZ
75 * results in a time of measure, time of use (ToMToU) error.
76 * - Opening a file for read when already open for write,
2bb930ab 77 * could result in a file measurement error.
8eb988c7
MZ
78 *
79 */
f7a859ff
RS
80static void ima_rdwr_violation_check(struct file *file,
81 struct integrity_iint_cache *iint,
1b68bdf9 82 int must_measure,
f7a859ff
RS
83 char **pathbuf,
84 const char **pathname)
8eb988c7 85{
c77cecee 86 struct inode *inode = file_inode(file);
8eb988c7 87 fmode_t mode = file->f_mode;
ad16ad00 88 bool send_tomtou = false, send_writers = false;
a178d202 89
8eb988c7 90 if (mode & FMODE_WRITE) {
14503eb9 91 if (atomic_read(&inode->i_readcount) && IS_IMA(inode)) {
f7a859ff
RS
92 if (!iint)
93 iint = integrity_iint_find(inode);
14503eb9
DK
94 /* IMA_MEASURE is set from reader side */
95 if (iint && (iint->flags & IMA_MEASURE))
96 send_tomtou = true;
97 }
b882fae2 98 } else {
1b68bdf9 99 if ((atomic_read(&inode->i_writecount) > 0) && must_measure)
b882fae2 100 send_writers = true;
8eb988c7 101 }
ad16ad00 102
08e1b76a
MZ
103 if (!send_tomtou && !send_writers)
104 return;
105
f7a859ff 106 *pathname = ima_d_path(&file->f_path, pathbuf);
ea1046d4 107
ad16ad00 108 if (send_tomtou)
8d94eb9b
RS
109 ima_add_violation(file, *pathname, iint,
110 "invalid_pcr", "ToMToU");
ad16ad00 111 if (send_writers)
8d94eb9b 112 ima_add_violation(file, *pathname, iint,
08e1b76a 113 "invalid_pcr", "open_writers");
8eb988c7
MZ
114}
115
f381c272 116static void ima_check_last_writer(struct integrity_iint_cache *iint,
2fe5d6de 117 struct inode *inode, struct file *file)
bc7d2a3e 118{
4b2a2c67 119 fmode_t mode = file->f_mode;
bc7d2a3e 120
2fe5d6de
MZ
121 if (!(mode & FMODE_WRITE))
122 return;
123
124 mutex_lock(&inode->i_mutex);
b151d6b0
DK
125 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);
129 if (iint->flags & IMA_APPRAISE)
130 ima_update_xattr(iint, file);
131 }
2fe5d6de
MZ
132 }
133 mutex_unlock(&inode->i_mutex);
bc7d2a3e
EP
134}
135
3323eec9
MZ
136/**
137 * ima_file_free - called on __fput()
138 * @file: pointer to file structure being freed
139 *
890275b5 140 * Flag files that changed, based on i_version
3323eec9
MZ
141 */
142void ima_file_free(struct file *file)
143{
496ad9aa 144 struct inode *inode = file_inode(file);
f381c272 145 struct integrity_iint_cache *iint;
3323eec9 146
0f34a006 147 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
3323eec9 148 return;
196f5181 149
f381c272 150 iint = integrity_iint_find(inode);
854fdd55
MZ
151 if (!iint)
152 return;
3323eec9 153
854fdd55 154 ima_check_last_writer(iint, inode, file);
3323eec9
MZ
155}
156
17f4bad3
DK
157static int process_measurement(struct file *file, int mask, int function,
158 int opened)
3323eec9 159{
496ad9aa 160 struct inode *inode = file_inode(file);
f7a859ff 161 struct integrity_iint_cache *iint = NULL;
209b43ca 162 struct ima_template_desc *template_desc;
ea1046d4
DK
163 char *pathbuf = NULL;
164 const char *pathname = NULL;
3a8a2ead 165 int rc = -ENOMEM, action, must_appraise;
d3634d0f
DK
166 struct evm_ima_xattr_data *xattr_value = NULL, **xattr_ptr = NULL;
167 int xattr_len = 0;
f7a859ff 168 bool violation_check;
3323eec9 169
a756024e 170 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
3323eec9 171 return 0;
bc7d2a3e 172
d79d72e0
MZ
173 /* Return an IMA_MEASURE, IMA_APPRAISE, IMA_AUDIT action
174 * bitmask based on the appraise/audit/measurement policy.
175 * Included is the appraise submask.
176 */
d9d300cd 177 action = ima_get_action(inode, mask, function);
1b68bdf9 178 violation_check = ((function == FILE_CHECK || function == MMAP_CHECK) &&
f7a859ff
RS
179 (ima_policy_flag & IMA_MEASURE));
180 if (!action && !violation_check)
2fe5d6de
MZ
181 return 0;
182
2fe5d6de 183 must_appraise = action & IMA_APPRAISE;
bc7d2a3e 184
5a73fcfa 185 /* Is the appraise rule hook specific? */
3a8a2ead
DK
186 if (action & IMA_FILE_APPRAISE)
187 function = FILE_CHECK;
5a73fcfa 188
2fe5d6de
MZ
189 mutex_lock(&inode->i_mutex);
190
f7a859ff
RS
191 if (action) {
192 iint = integrity_inode_get(inode);
193 if (!iint)
194 goto out;
195 }
196
197 if (violation_check) {
1b68bdf9
RS
198 ima_rdwr_violation_check(file, iint, action & IMA_MEASURE,
199 &pathbuf, &pathname);
f7a859ff
RS
200 if (!action) {
201 rc = 0;
202 goto out_free;
203 }
204 }
bf2276d1 205
2fe5d6de 206 /* Determine if already appraised/measured based on bitmask
d79d72e0
MZ
207 * (IMA_MEASURE, IMA_MEASURED, IMA_XXXX_APPRAISE, IMA_XXXX_APPRAISED,
208 * IMA_AUDIT, IMA_AUDITED)
209 */
2fe5d6de 210 iint->flags |= action;
0e5a247c 211 action &= IMA_DO_MASK;
45e2472e 212 action &= ~((iint->flags & IMA_DONE_MASK) >> 1);
2fe5d6de
MZ
213
214 /* Nothing to do, just return existing appraised status */
215 if (!action) {
d79d72e0 216 if (must_appraise)
3a8a2ead 217 rc = ima_get_cache_status(iint, function);
a175b8bb 218 goto out_digsig;
2fe5d6de 219 }
3323eec9 220
209b43ca 221 template_desc = ima_template_desc_current();
f68c05f4
DK
222 if ((action & IMA_APPRAISE_SUBMASK) ||
223 strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) != 0)
d3634d0f
DK
224 xattr_ptr = &xattr_value;
225
226 rc = ima_collect_measurement(iint, file, xattr_ptr, &xattr_len);
f9b2a735
MZ
227 if (rc != 0) {
228 if (file->f_flags & O_DIRECT)
229 rc = (iint->flags & IMA_PERMIT_DIRECTIO) ? 0 : -EACCES;
a175b8bb 230 goto out_digsig;
f9b2a735 231 }
08e1b76a 232
f7a859ff
RS
233 if (!pathname) /* ima_rdwr_violation possibly pre-fetched */
234 pathname = ima_d_path(&file->f_path, &pathbuf);
08e1b76a 235
2fe5d6de 236 if (action & IMA_MEASURE)
bcbc9b0c
MZ
237 ima_store_measurement(iint, file, pathname,
238 xattr_value, xattr_len);
d79d72e0 239 if (action & IMA_APPRAISE_SUBMASK)
3a8a2ead 240 rc = ima_appraise_measurement(function, iint, file, pathname,
3034a146 241 xattr_value, xattr_len, opened);
e7c568e0 242 if (action & IMA_AUDIT)
ea1046d4 243 ima_audit_measurement(iint, pathname);
f7a859ff 244
a175b8bb
DK
245out_digsig:
246 if ((mask & MAY_WRITE) && (iint->flags & IMA_DIGSIG))
247 rc = -EACCES;
f7a859ff
RS
248 kfree(xattr_value);
249out_free:
456f5fd3
DK
250 if (pathbuf)
251 __putname(pathbuf);
3323eec9 252out:
2fe5d6de 253 mutex_unlock(&inode->i_mutex);
750943a3
DK
254 if ((rc && must_appraise) && (ima_appraise & IMA_APPRAISE_ENFORCE))
255 return -EACCES;
256 return 0;
3323eec9
MZ
257}
258
259/**
260 * ima_file_mmap - based on policy, collect/store measurement.
261 * @file: pointer to the file to be measured (May be NULL)
262 * @prot: contains the protection that will be applied by the kernel.
263 *
264 * Measure files being mmapped executable based on the ima_must_measure()
265 * policy decision.
266 *
750943a3
DK
267 * On success return 0. On integrity appraisal error, assuming the file
268 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
3323eec9
MZ
269 */
270int ima_file_mmap(struct file *file, unsigned long prot)
271{
750943a3 272 if (file && (prot & PROT_EXEC))
17f4bad3 273 return process_measurement(file, MAY_EXEC, MMAP_CHECK, 0);
750943a3 274 return 0;
3323eec9
MZ
275}
276
277/**
278 * ima_bprm_check - based on policy, collect/store measurement.
279 * @bprm: contains the linux_binprm structure
280 *
281 * The OS protects against an executable file, already open for write,
282 * from being executed in deny_write_access() and an executable file,
283 * already open for execute, from being modified in get_write_access().
284 * So we can be certain that what we verify and measure here is actually
285 * what is being executed.
286 *
750943a3
DK
287 * On success return 0. On integrity appraisal error, assuming the file
288 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
3323eec9
MZ
289 */
290int ima_bprm_check(struct linux_binprm *bprm)
291{
17f4bad3 292 return process_measurement(bprm->file, MAY_EXEC, BPRM_CHECK, 0);
3323eec9
MZ
293}
294
8eb988c7
MZ
295/**
296 * ima_path_check - based on policy, collect/store measurement.
297 * @file: pointer to the file to be measured
298 * @mask: contains MAY_READ, MAY_WRITE or MAY_EXECUTE
299 *
300 * Measure files based on the ima_must_measure() policy decision.
301 *
750943a3
DK
302 * On success return 0. On integrity appraisal error, assuming the file
303 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
8eb988c7 304 */
3034a146 305int ima_file_check(struct file *file, int mask, int opened)
8eb988c7 306{
17f4bad3 307 return process_measurement(file,
089bc8e9 308 mask & (MAY_READ | MAY_WRITE | MAY_EXEC),
3034a146 309 FILE_CHECK, opened);
8eb988c7 310}
9bbb6cad 311EXPORT_SYMBOL_GPL(ima_file_check);
8eb988c7 312
fdf90729
MZ
313/**
314 * ima_module_check - based on policy, collect/store/appraise measurement.
315 * @file: pointer to the file to be measured/appraised
316 *
317 * Measure/appraise kernel modules based on policy.
318 *
750943a3
DK
319 * On success return 0. On integrity appraisal error, assuming the file
320 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
fdf90729
MZ
321 */
322int ima_module_check(struct file *file)
323{
a7f2a366 324 if (!file) {
a7f2a366 325#ifndef CONFIG_MODULE_SIG_FORCE
a2c2c3a7
MZ
326 if ((ima_appraise & IMA_APPRAISE_MODULES) &&
327 (ima_appraise & IMA_APPRAISE_ENFORCE))
33673dcb 328 return -EACCES; /* INTEGRITY_UNKNOWN */
a7f2a366 329#endif
33673dcb
LT
330 return 0; /* We rely on module signature checking */
331 }
17f4bad3 332 return process_measurement(file, MAY_EXEC, MODULE_CHECK, 0);
fdf90729
MZ
333}
334
5a9196d7
MZ
335int ima_fw_from_file(struct file *file, char *buf, size_t size)
336{
337 if (!file) {
338 if ((ima_appraise & IMA_APPRAISE_FIRMWARE) &&
339 (ima_appraise & IMA_APPRAISE_ENFORCE))
340 return -EACCES; /* INTEGRITY_UNKNOWN */
341 return 0;
342 }
17f4bad3 343 return process_measurement(file, MAY_EXEC, FIRMWARE_CHECK, 0);
5a9196d7
MZ
344}
345
3323eec9
MZ
346static int __init init_ima(void)
347{
348 int error;
349
e7a2ad7e 350 hash_setup(CONFIG_IMA_DEFAULT_HASH);
3323eec9 351 error = ima_init();
a756024e 352 if (!error) {
31b70f66 353 ima_initialized = 1;
a756024e
RS
354 ima_update_policy_flag();
355 }
3323eec9
MZ
356 return error;
357}
358
359late_initcall(init_ima); /* Start IMA after the TPM is available */
360
361MODULE_DESCRIPTION("Integrity Measurement Architecture");
362MODULE_LICENSE("GPL");
This page took 0.249521 seconds and 5 git commands to generate.