]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - security/integrity/ima/ima_main.c
ima: extend ima_get_action() to return the policy pcr
[mirror_ubuntu-artful-kernel.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>
3323eec9
MZ
27
28#include "ima.h"
29
30int ima_initialized;
31
2fe5d6de
MZ
32#ifdef CONFIG_IMA_APPRAISE
33int ima_appraise = IMA_APPRAISE_ENFORCE;
34#else
35int ima_appraise;
36#endif
37
c7c8bb23 38int ima_hash_algo = HASH_ALGO_SHA1;
e7a2ad7e 39static int hash_setup_done;
c7c8bb23 40
3323eec9
MZ
41static int __init hash_setup(char *str)
42{
e7a2ad7e
MZ
43 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;
3323eec9
MZ
65 return 1;
66}
67__setup("ima_hash=", hash_setup);
68
8eb988c7 69/*
890275b5 70 * ima_rdwr_violation_check
8eb988c7 71 *
890275b5 72 * Only invalidate the PCR for measured files:
2bb930ab 73 * - Opening a file for write when already open for read,
8eb988c7
MZ
74 * results in a time of measure, time of use (ToMToU) error.
75 * - Opening a file for read when already open for write,
2bb930ab 76 * could result in a file measurement error.
8eb988c7
MZ
77 *
78 */
f7a859ff
RS
79static void ima_rdwr_violation_check(struct file *file,
80 struct integrity_iint_cache *iint,
1b68bdf9 81 int must_measure,
f7a859ff
RS
82 char **pathbuf,
83 const char **pathname)
8eb988c7 84{
c77cecee 85 struct inode *inode = file_inode(file);
8eb988c7 86 fmode_t mode = file->f_mode;
ad16ad00 87 bool send_tomtou = false, send_writers = false;
a178d202 88
8eb988c7 89 if (mode & FMODE_WRITE) {
14503eb9 90 if (atomic_read(&inode->i_readcount) && IS_IMA(inode)) {
f7a859ff
RS
91 if (!iint)
92 iint = integrity_iint_find(inode);
14503eb9
DK
93 /* IMA_MEASURE is set from reader side */
94 if (iint && (iint->flags & IMA_MEASURE))
95 send_tomtou = true;
96 }
b882fae2 97 } else {
1b68bdf9 98 if ((atomic_read(&inode->i_writecount) > 0) && must_measure)
b882fae2 99 send_writers = true;
8eb988c7 100 }
ad16ad00 101
08e1b76a
MZ
102 if (!send_tomtou && !send_writers)
103 return;
104
f7a859ff 105 *pathname = ima_d_path(&file->f_path, pathbuf);
ea1046d4 106
ad16ad00 107 if (send_tomtou)
8d94eb9b
RS
108 ima_add_violation(file, *pathname, iint,
109 "invalid_pcr", "ToMToU");
ad16ad00 110 if (send_writers)
8d94eb9b 111 ima_add_violation(file, *pathname, iint,
08e1b76a 112 "invalid_pcr", "open_writers");
8eb988c7
MZ
113}
114
f381c272 115static void ima_check_last_writer(struct integrity_iint_cache *iint,
2fe5d6de 116 struct inode *inode, struct file *file)
bc7d2a3e 117{
4b2a2c67 118 fmode_t mode = file->f_mode;
bc7d2a3e 119
2fe5d6de
MZ
120 if (!(mode & FMODE_WRITE))
121 return;
122
5955102c 123 inode_lock(inode);
b151d6b0
DK
124 if (atomic_read(&inode->i_writecount) == 1) {
125 if ((iint->version != inode->i_version) ||
126 (iint->flags & IMA_NEW_FILE)) {
127 iint->flags &= ~(IMA_DONE_MASK | IMA_NEW_FILE);
128 if (iint->flags & IMA_APPRAISE)
129 ima_update_xattr(iint, file);
130 }
2fe5d6de 131 }
5955102c 132 inode_unlock(inode);
bc7d2a3e
EP
133}
134
3323eec9
MZ
135/**
136 * ima_file_free - called on __fput()
137 * @file: pointer to file structure being freed
138 *
890275b5 139 * Flag files that changed, based on i_version
3323eec9
MZ
140 */
141void ima_file_free(struct file *file)
142{
496ad9aa 143 struct inode *inode = file_inode(file);
f381c272 144 struct integrity_iint_cache *iint;
3323eec9 145
0f34a006 146 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
3323eec9 147 return;
196f5181 148
f381c272 149 iint = integrity_iint_find(inode);
854fdd55
MZ
150 if (!iint)
151 return;
3323eec9 152
854fdd55 153 ima_check_last_writer(iint, inode, file);
3323eec9
MZ
154}
155
cf222217
MZ
156static int process_measurement(struct file *file, char *buf, loff_t size,
157 int mask, enum ima_hooks func, int opened)
3323eec9 158{
496ad9aa 159 struct inode *inode = file_inode(file);
f7a859ff 160 struct integrity_iint_cache *iint = NULL;
209b43ca 161 struct ima_template_desc *template_desc;
ea1046d4
DK
162 char *pathbuf = NULL;
163 const char *pathname = NULL;
3a8a2ead 164 int rc = -ENOMEM, action, must_appraise;
725de7fa 165 int pcr = CONFIG_IMA_MEASURE_PCR_IDX;
1525b06d 166 struct evm_ima_xattr_data *xattr_value = NULL;
d3634d0f 167 int xattr_len = 0;
f7a859ff 168 bool violation_check;
1525b06d 169 enum hash_algo hash_algo;
3323eec9 170
a756024e 171 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
3323eec9 172 return 0;
bc7d2a3e 173
d79d72e0
MZ
174 /* 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 */
725de7fa 178 action = ima_get_action(inode, mask, func, &pcr);
4ad87a3d 179 violation_check = ((func == FILE_CHECK || func == MMAP_CHECK) &&
f7a859ff
RS
180 (ima_policy_flag & IMA_MEASURE));
181 if (!action && !violation_check)
2fe5d6de
MZ
182 return 0;
183
2fe5d6de 184 must_appraise = action & IMA_APPRAISE;
bc7d2a3e 185
5a73fcfa 186 /* Is the appraise rule hook specific? */
3a8a2ead 187 if (action & IMA_FILE_APPRAISE)
4ad87a3d 188 func = FILE_CHECK;
5a73fcfa 189
5955102c 190 inode_lock(inode);
2fe5d6de 191
f7a859ff
RS
192 if (action) {
193 iint = integrity_inode_get(inode);
194 if (!iint)
195 goto out;
196 }
197
198 if (violation_check) {
1b68bdf9
RS
199 ima_rdwr_violation_check(file, iint, action & IMA_MEASURE,
200 &pathbuf, &pathname);
f7a859ff
RS
201 if (!action) {
202 rc = 0;
203 goto out_free;
204 }
205 }
bf2276d1 206
2fe5d6de 207 /* Determine if already appraised/measured based on bitmask
d79d72e0
MZ
208 * (IMA_MEASURE, IMA_MEASURED, IMA_XXXX_APPRAISE, IMA_XXXX_APPRAISED,
209 * IMA_AUDIT, IMA_AUDITED)
210 */
2fe5d6de 211 iint->flags |= action;
0e5a247c 212 action &= IMA_DO_MASK;
45e2472e 213 action &= ~((iint->flags & IMA_DONE_MASK) >> 1);
2fe5d6de
MZ
214
215 /* Nothing to do, just return existing appraised status */
216 if (!action) {
d79d72e0 217 if (must_appraise)
4ad87a3d 218 rc = ima_get_cache_status(iint, func);
a175b8bb 219 goto out_digsig;
2fe5d6de 220 }
3323eec9 221
209b43ca 222 template_desc = ima_template_desc_current();
f68c05f4
DK
223 if ((action & IMA_APPRAISE_SUBMASK) ||
224 strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) != 0)
1525b06d
DK
225 /* read 'security.ima' */
226 xattr_len = ima_read_xattr(file->f_path.dentry, &xattr_value);
d3634d0f 227
1525b06d
DK
228 hash_algo = ima_get_hash_algo(xattr_value, xattr_len);
229
cf222217 230 rc = ima_collect_measurement(iint, file, buf, size, hash_algo);
f9b2a735
MZ
231 if (rc != 0) {
232 if (file->f_flags & O_DIRECT)
233 rc = (iint->flags & IMA_PERMIT_DIRECTIO) ? 0 : -EACCES;
a175b8bb 234 goto out_digsig;
f9b2a735 235 }
08e1b76a 236
f7a859ff
RS
237 if (!pathname) /* ima_rdwr_violation possibly pre-fetched */
238 pathname = ima_d_path(&file->f_path, &pathbuf);
08e1b76a 239
2fe5d6de 240 if (action & IMA_MEASURE)
bcbc9b0c
MZ
241 ima_store_measurement(iint, file, pathname,
242 xattr_value, xattr_len);
d79d72e0 243 if (action & IMA_APPRAISE_SUBMASK)
4ad87a3d 244 rc = ima_appraise_measurement(func, iint, file, pathname,
3034a146 245 xattr_value, xattr_len, opened);
e7c568e0 246 if (action & IMA_AUDIT)
ea1046d4 247 ima_audit_measurement(iint, pathname);
f7a859ff 248
a175b8bb 249out_digsig:
05d1a717
MZ
250 if ((mask & MAY_WRITE) && (iint->flags & IMA_DIGSIG) &&
251 !(iint->flags & IMA_NEW_FILE))
a175b8bb 252 rc = -EACCES;
f7a859ff
RS
253 kfree(xattr_value);
254out_free:
456f5fd3
DK
255 if (pathbuf)
256 __putname(pathbuf);
3323eec9 257out:
5955102c 258 inode_unlock(inode);
750943a3
DK
259 if ((rc && must_appraise) && (ima_appraise & IMA_APPRAISE_ENFORCE))
260 return -EACCES;
261 return 0;
3323eec9
MZ
262}
263
264/**
265 * ima_file_mmap - based on policy, collect/store measurement.
266 * @file: pointer to the file to be measured (May be NULL)
267 * @prot: contains the protection that will be applied by the kernel.
268 *
269 * Measure files being mmapped executable based on the ima_must_measure()
270 * policy decision.
271 *
750943a3
DK
272 * On success return 0. On integrity appraisal error, assuming the file
273 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
3323eec9
MZ
274 */
275int ima_file_mmap(struct file *file, unsigned long prot)
276{
750943a3 277 if (file && (prot & PROT_EXEC))
cf222217
MZ
278 return process_measurement(file, NULL, 0, MAY_EXEC,
279 MMAP_CHECK, 0);
750943a3 280 return 0;
3323eec9
MZ
281}
282
283/**
284 * ima_bprm_check - based on policy, collect/store measurement.
285 * @bprm: contains the linux_binprm structure
286 *
287 * The OS protects against an executable file, already open for write,
288 * from being executed in deny_write_access() and an executable file,
289 * already open for execute, from being modified in get_write_access().
290 * So we can be certain that what we verify and measure here is actually
291 * what is being executed.
292 *
750943a3
DK
293 * On success return 0. On integrity appraisal error, assuming the file
294 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
3323eec9
MZ
295 */
296int ima_bprm_check(struct linux_binprm *bprm)
297{
cf222217
MZ
298 return process_measurement(bprm->file, NULL, 0, MAY_EXEC,
299 BPRM_CHECK, 0);
3323eec9
MZ
300}
301
8eb988c7
MZ
302/**
303 * ima_path_check - based on policy, collect/store measurement.
304 * @file: pointer to the file to be measured
305 * @mask: contains MAY_READ, MAY_WRITE or MAY_EXECUTE
306 *
307 * Measure files based on the ima_must_measure() policy decision.
308 *
750943a3
DK
309 * On success return 0. On integrity appraisal error, assuming the file
310 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
8eb988c7 311 */
3034a146 312int ima_file_check(struct file *file, int mask, int opened)
8eb988c7 313{
cf222217 314 return process_measurement(file, NULL, 0,
089bc8e9 315 mask & (MAY_READ | MAY_WRITE | MAY_EXEC),
3034a146 316 FILE_CHECK, opened);
8eb988c7 317}
9bbb6cad 318EXPORT_SYMBOL_GPL(ima_file_check);
8eb988c7 319
05d1a717
MZ
320/**
321 * ima_post_path_mknod - mark as a new inode
322 * @dentry: newly created dentry
323 *
324 * Mark files created via the mknodat syscall as new, so that the
325 * file data can be written later.
326 */
327void ima_post_path_mknod(struct dentry *dentry)
328{
329 struct integrity_iint_cache *iint;
330 struct inode *inode = dentry->d_inode;
331 int must_appraise;
332
333 must_appraise = ima_must_appraise(inode, MAY_ACCESS, FILE_CHECK);
334 if (!must_appraise)
335 return;
336
337 iint = integrity_inode_get(inode);
338 if (iint)
339 iint->flags |= IMA_NEW_FILE;
340}
341
39eeb4fb
MZ
342/**
343 * ima_read_file - pre-measure/appraise hook decision based on policy
344 * @file: pointer to the file to be measured/appraised/audit
345 * @read_id: caller identifier
346 *
347 * Permit reading a file based on policy. The policy rules are written
348 * in terms of the policy identifier. Appraising the integrity of
349 * a file requires a file descriptor.
350 *
351 * For permission return 0, otherwise return -EACCES.
352 */
353int ima_read_file(struct file *file, enum kernel_read_file_id read_id)
354{
a1db7420
MZ
355 if (!file && read_id == READING_MODULE) {
356#ifndef CONFIG_MODULE_SIG_FORCE
357 if ((ima_appraise & IMA_APPRAISE_MODULES) &&
358 (ima_appraise & IMA_APPRAISE_ENFORCE))
359 return -EACCES; /* INTEGRITY_UNKNOWN */
360#endif
361 return 0; /* We rely on module signature checking */
362 }
39eeb4fb
MZ
363 return 0;
364}
365
d9ddf077
MZ
366static int read_idmap[READING_MAX_ID] = {
367 [READING_FIRMWARE] = FIRMWARE_CHECK,
368 [READING_MODULE] = MODULE_CHECK,
369 [READING_KEXEC_IMAGE] = KEXEC_KERNEL_CHECK,
370 [READING_KEXEC_INITRAMFS] = KEXEC_INITRAMFS_CHECK,
19f8a847 371 [READING_POLICY] = POLICY_CHECK
d9ddf077
MZ
372};
373
cf222217
MZ
374/**
375 * ima_post_read_file - in memory collect/appraise/audit measurement
376 * @file: pointer to the file to be measured/appraised/audit
377 * @buf: pointer to in memory file contents
378 * @size: size of in memory file contents
379 * @read_id: caller identifier
380 *
381 * Measure/appraise/audit in memory file based on policy. Policy rules
382 * are written in terms of a policy identifier.
383 *
384 * On success return 0. On integrity appraisal error, assuming the file
385 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
386 */
387int ima_post_read_file(struct file *file, void *buf, loff_t size,
388 enum kernel_read_file_id read_id)
389{
d9ddf077 390 enum ima_hooks func;
cf222217 391
e40ba6d5
MZ
392 if (!file && read_id == READING_FIRMWARE) {
393 if ((ima_appraise & IMA_APPRAISE_FIRMWARE) &&
394 (ima_appraise & IMA_APPRAISE_ENFORCE))
395 return -EACCES; /* INTEGRITY_UNKNOWN */
396 return 0;
397 }
398
a1db7420
MZ
399 if (!file && read_id == READING_MODULE) /* MODULE_SIG_FORCE enabled */
400 return 0;
401
cf222217
MZ
402 if (!file || !buf || size == 0) { /* should never happen */
403 if (ima_appraise & IMA_APPRAISE_ENFORCE)
404 return -EACCES;
405 return 0;
406 }
407
d9ddf077 408 func = read_idmap[read_id] ?: FILE_CHECK;
cf222217 409 return process_measurement(file, buf, size, MAY_READ, func, 0);
5a9196d7
MZ
410}
411
3323eec9
MZ
412static int __init init_ima(void)
413{
414 int error;
415
e7a2ad7e 416 hash_setup(CONFIG_IMA_DEFAULT_HASH);
3323eec9 417 error = ima_init();
a756024e 418 if (!error) {
31b70f66 419 ima_initialized = 1;
a756024e
RS
420 ima_update_policy_flag();
421 }
3323eec9
MZ
422 return error;
423}
424
425late_initcall(init_ima); /* Start IMA after the TPM is available */
426
427MODULE_DESCRIPTION("Integrity Measurement Architecture");
428MODULE_LICENSE("GPL");