2 * Copyright (C) 2005,2006,2007,2008 IBM Corporation
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>
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
16 * implements the IMA hooks: ima_bprm_check, ima_file_mmap,
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>
24 #include <linux/slab.h>
25 #include <linux/xattr.h>
26 #include <linux/ima.h>
27 #include <linux/iversion.h>
33 #ifdef CONFIG_IMA_APPRAISE
34 int ima_appraise
= IMA_APPRAISE_ENFORCE
;
39 int ima_hash_algo
= HASH_ALGO_SHA1
;
40 static int hash_setup_done
;
42 static int __init
hash_setup(char *str
)
44 struct ima_template_desc
*template_desc
= ima_template_desc_current();
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
;
60 for (i
= 0; i
< HASH_ALGO__LAST
; i
++) {
61 if (strcmp(str
, hash_algo_name
[i
]) == 0) {
66 if (i
== HASH_ALGO__LAST
)
72 __setup("ima_hash=", hash_setup
);
75 * ima_rdwr_violation_check
77 * Only invalidate the PCR for measured files:
78 * - Opening a file for write when already open for read,
79 * results in a time of measure, time of use (ToMToU) error.
80 * - Opening a file for read when already open for write,
81 * could result in a file measurement error.
84 static void ima_rdwr_violation_check(struct file
*file
,
85 struct integrity_iint_cache
*iint
,
88 const char **pathname
,
91 struct inode
*inode
= file_inode(file
);
92 fmode_t mode
= file
->f_mode
;
93 bool send_tomtou
= false, send_writers
= false;
95 if (mode
& FMODE_WRITE
) {
96 if (atomic_read(&inode
->i_readcount
) && IS_IMA(inode
)) {
98 iint
= integrity_iint_find(inode
);
99 /* IMA_MEASURE is set from reader side */
100 if (iint
&& test_bit(IMA_MUST_MEASURE
,
101 &iint
->atomic_flags
))
106 set_bit(IMA_MUST_MEASURE
, &iint
->atomic_flags
);
107 if ((atomic_read(&inode
->i_writecount
) > 0) && must_measure
)
111 if (!send_tomtou
&& !send_writers
)
114 *pathname
= ima_d_path(&file
->f_path
, pathbuf
, filename
);
117 ima_add_violation(file
, *pathname
, iint
,
118 "invalid_pcr", "ToMToU");
120 ima_add_violation(file
, *pathname
, iint
,
121 "invalid_pcr", "open_writers");
124 static void ima_check_last_writer(struct integrity_iint_cache
*iint
,
125 struct inode
*inode
, struct file
*file
)
127 fmode_t mode
= file
->f_mode
;
130 if (!(mode
& FMODE_WRITE
))
133 mutex_lock(&iint
->mutex
);
134 if (atomic_read(&inode
->i_writecount
) == 1) {
135 update
= test_and_clear_bit(IMA_UPDATE_XATTR
,
136 &iint
->atomic_flags
);
137 if (!IS_I_VERSION(inode
) ||
138 !inode_eq_iversion(inode
, iint
->version
) ||
139 (iint
->flags
& IMA_NEW_FILE
)) {
140 iint
->flags
&= ~(IMA_DONE_MASK
| IMA_NEW_FILE
);
141 iint
->measured_pcrs
= 0;
143 ima_update_xattr(iint
, file
);
146 mutex_unlock(&iint
->mutex
);
150 * ima_file_free - called on __fput()
151 * @file: pointer to file structure being freed
153 * Flag files that changed, based on i_version
155 void ima_file_free(struct file
*file
)
157 struct inode
*inode
= file_inode(file
);
158 struct integrity_iint_cache
*iint
;
160 if (!ima_policy_flag
|| !S_ISREG(inode
->i_mode
))
163 iint
= integrity_iint_find(inode
);
167 ima_check_last_writer(iint
, inode
, file
);
170 static int process_measurement(struct file
*file
, char *buf
, loff_t size
,
171 int mask
, enum ima_hooks func
, int opened
)
173 struct inode
*inode
= file_inode(file
);
174 struct integrity_iint_cache
*iint
= NULL
;
175 struct ima_template_desc
*template_desc
;
176 char *pathbuf
= NULL
;
177 char filename
[NAME_MAX
];
178 const char *pathname
= NULL
;
179 int rc
= 0, action
, must_appraise
= 0;
180 int pcr
= CONFIG_IMA_MEASURE_PCR_IDX
;
181 struct evm_ima_xattr_data
*xattr_value
= NULL
;
183 bool violation_check
;
184 enum hash_algo hash_algo
;
186 if (!ima_policy_flag
|| !S_ISREG(inode
->i_mode
))
189 /* Return an IMA_MEASURE, IMA_APPRAISE, IMA_AUDIT action
190 * bitmask based on the appraise/audit/measurement policy.
191 * Included is the appraise submask.
193 action
= ima_get_action(inode
, mask
, func
, &pcr
);
194 violation_check
= ((func
== FILE_CHECK
|| func
== MMAP_CHECK
) &&
195 (ima_policy_flag
& IMA_MEASURE
));
196 if (!action
&& !violation_check
)
199 must_appraise
= action
& IMA_APPRAISE
;
201 /* Is the appraise rule hook specific? */
202 if (action
& IMA_FILE_APPRAISE
)
208 iint
= integrity_inode_get(inode
);
213 if (!rc
&& violation_check
)
214 ima_rdwr_violation_check(file
, iint
, action
& IMA_MEASURE
,
215 &pathbuf
, &pathname
, filename
);
224 mutex_lock(&iint
->mutex
);
226 if (test_and_clear_bit(IMA_CHANGE_ATTR
, &iint
->atomic_flags
))
227 /* reset appraisal flags if ima_inode_post_setattr was called */
228 iint
->flags
&= ~(IMA_APPRAISE
| IMA_APPRAISED
|
229 IMA_APPRAISE_SUBMASK
| IMA_APPRAISED_SUBMASK
|
232 if (test_and_clear_bit(IMA_CHANGE_XATTR
, &iint
->atomic_flags
))
233 /* reset all flags if ima_inode_setxattr was called */
234 iint
->flags
&= ~IMA_DONE_MASK
;
236 /* Determine if already appraised/measured based on bitmask
237 * (IMA_MEASURE, IMA_MEASURED, IMA_XXXX_APPRAISE, IMA_XXXX_APPRAISED,
238 * IMA_AUDIT, IMA_AUDITED)
240 iint
->flags
|= action
;
241 action
&= IMA_DO_MASK
;
242 action
&= ~((iint
->flags
& (IMA_DONE_MASK
^ IMA_MEASURED
)) >> 1);
244 /* If target pcr is already measured, unset IMA_MEASURE action */
245 if ((action
& IMA_MEASURE
) && (iint
->measured_pcrs
& (0x1 << pcr
)))
246 action
^= IMA_MEASURE
;
248 /* HASH sets the digital signature and update flags, nothing else */
249 if ((action
& IMA_HASH
) &&
250 !(test_bit(IMA_DIGSIG
, &iint
->atomic_flags
))) {
251 xattr_len
= ima_read_xattr(file_dentry(file
), &xattr_value
);
252 if ((xattr_value
&& xattr_len
> 2) &&
253 (xattr_value
->type
== EVM_IMA_XATTR_DIGSIG
))
254 set_bit(IMA_DIGSIG
, &iint
->atomic_flags
);
255 iint
->flags
|= IMA_HASHED
;
257 set_bit(IMA_UPDATE_XATTR
, &iint
->atomic_flags
);
260 /* Nothing to do, just return existing appraised status */
263 rc
= ima_get_cache_status(iint
, func
);
267 template_desc
= ima_template_desc_current();
268 if ((action
& IMA_APPRAISE_SUBMASK
) ||
269 strcmp(template_desc
->name
, IMA_TEMPLATE_IMA_NAME
) != 0)
270 /* read 'security.ima' */
271 xattr_len
= ima_read_xattr(file_dentry(file
), &xattr_value
);
273 hash_algo
= ima_get_hash_algo(xattr_value
, xattr_len
);
275 rc
= ima_collect_measurement(iint
, file
, buf
, size
, hash_algo
);
276 if (rc
!= 0 && rc
!= -EBADF
&& rc
!= -EINVAL
)
279 if (!pathbuf
) /* ima_rdwr_violation possibly pre-fetched */
280 pathname
= ima_d_path(&file
->f_path
, &pathbuf
, filename
);
282 if (action
& IMA_MEASURE
)
283 ima_store_measurement(iint
, file
, pathname
,
284 xattr_value
, xattr_len
, pcr
);
285 if (rc
== 0 && (action
& IMA_APPRAISE_SUBMASK
)) {
287 rc
= ima_appraise_measurement(func
, iint
, file
, pathname
,
288 xattr_value
, xattr_len
, opened
);
291 if (action
& IMA_AUDIT
)
292 ima_audit_measurement(iint
, pathname
);
294 if ((file
->f_flags
& O_DIRECT
) && (iint
->flags
& IMA_PERMIT_DIRECTIO
))
297 if ((mask
& MAY_WRITE
) && test_bit(IMA_DIGSIG
, &iint
->atomic_flags
) &&
298 !(iint
->flags
& IMA_NEW_FILE
))
300 mutex_unlock(&iint
->mutex
);
306 if (rc
&& (ima_appraise
& IMA_APPRAISE_ENFORCE
))
308 if (file
->f_mode
& FMODE_WRITE
)
309 set_bit(IMA_UPDATE_XATTR
, &iint
->atomic_flags
);
315 * ima_file_mmap - based on policy, collect/store measurement.
316 * @file: pointer to the file to be measured (May be NULL)
317 * @prot: contains the protection that will be applied by the kernel.
319 * Measure files being mmapped executable based on the ima_must_measure()
322 * On success return 0. On integrity appraisal error, assuming the file
323 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
325 int ima_file_mmap(struct file
*file
, unsigned long prot
)
327 if (file
&& (prot
& PROT_EXEC
))
328 return process_measurement(file
, NULL
, 0, MAY_EXEC
,
334 * ima_bprm_check - based on policy, collect/store measurement.
335 * @bprm: contains the linux_binprm structure
337 * The OS protects against an executable file, already open for write,
338 * from being executed in deny_write_access() and an executable file,
339 * already open for execute, from being modified in get_write_access().
340 * So we can be certain that what we verify and measure here is actually
341 * what is being executed.
343 * On success return 0. On integrity appraisal error, assuming the file
344 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
346 int ima_bprm_check(struct linux_binprm
*bprm
)
348 return process_measurement(bprm
->file
, NULL
, 0, MAY_EXEC
,
353 * ima_path_check - based on policy, collect/store measurement.
354 * @file: pointer to the file to be measured
355 * @mask: contains MAY_READ, MAY_WRITE, MAY_EXEC or MAY_APPEND
357 * Measure files based on the ima_must_measure() policy decision.
359 * On success return 0. On integrity appraisal error, assuming the file
360 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
362 int ima_file_check(struct file
*file
, int mask
, int opened
)
364 return process_measurement(file
, NULL
, 0,
365 mask
& (MAY_READ
| MAY_WRITE
| MAY_EXEC
|
366 MAY_APPEND
), FILE_CHECK
, opened
);
368 EXPORT_SYMBOL_GPL(ima_file_check
);
371 * ima_post_path_mknod - mark as a new inode
372 * @dentry: newly created dentry
374 * Mark files created via the mknodat syscall as new, so that the
375 * file data can be written later.
377 void ima_post_path_mknod(struct dentry
*dentry
)
379 struct integrity_iint_cache
*iint
;
380 struct inode
*inode
= dentry
->d_inode
;
383 must_appraise
= ima_must_appraise(inode
, MAY_ACCESS
, FILE_CHECK
);
387 iint
= integrity_inode_get(inode
);
389 iint
->flags
|= IMA_NEW_FILE
;
393 * ima_read_file - pre-measure/appraise hook decision based on policy
394 * @file: pointer to the file to be measured/appraised/audit
395 * @read_id: caller identifier
397 * Permit reading a file based on policy. The policy rules are written
398 * in terms of the policy identifier. Appraising the integrity of
399 * a file requires a file descriptor.
401 * For permission return 0, otherwise return -EACCES.
403 int ima_read_file(struct file
*file
, enum kernel_read_file_id read_id
)
405 bool sig_enforce
= is_module_sig_enforced();
407 if (!file
&& read_id
== READING_MODULE
) {
408 if (!sig_enforce
&& (ima_appraise
& IMA_APPRAISE_MODULES
) &&
409 (ima_appraise
& IMA_APPRAISE_ENFORCE
)) {
410 pr_err("impossible to appraise a module without a file descriptor. sig_enforce kernel parameter might help\n");
411 return -EACCES
; /* INTEGRITY_UNKNOWN */
413 return 0; /* We rely on module signature checking */
418 static int read_idmap
[READING_MAX_ID
] = {
419 [READING_FIRMWARE
] = FIRMWARE_CHECK
,
420 [READING_MODULE
] = MODULE_CHECK
,
421 [READING_KEXEC_IMAGE
] = KEXEC_KERNEL_CHECK
,
422 [READING_KEXEC_INITRAMFS
] = KEXEC_INITRAMFS_CHECK
,
423 [READING_POLICY
] = POLICY_CHECK
427 * ima_post_read_file - in memory collect/appraise/audit measurement
428 * @file: pointer to the file to be measured/appraised/audit
429 * @buf: pointer to in memory file contents
430 * @size: size of in memory file contents
431 * @read_id: caller identifier
433 * Measure/appraise/audit in memory file based on policy. Policy rules
434 * are written in terms of a policy identifier.
436 * On success return 0. On integrity appraisal error, assuming the file
437 * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
439 int ima_post_read_file(struct file
*file
, void *buf
, loff_t size
,
440 enum kernel_read_file_id read_id
)
444 if (!file
&& read_id
== READING_FIRMWARE
) {
445 if ((ima_appraise
& IMA_APPRAISE_FIRMWARE
) &&
446 (ima_appraise
& IMA_APPRAISE_ENFORCE
))
447 return -EACCES
; /* INTEGRITY_UNKNOWN */
451 if (!file
&& read_id
== READING_MODULE
) /* MODULE_SIG_FORCE enabled */
454 /* permit signed certs */
455 if (!file
&& read_id
== READING_X509_CERTIFICATE
)
458 if (!file
|| !buf
|| size
== 0) { /* should never happen */
459 if (ima_appraise
& IMA_APPRAISE_ENFORCE
)
464 func
= read_idmap
[read_id
] ?: FILE_CHECK
;
465 return process_measurement(file
, buf
, size
, MAY_READ
, func
, 0);
468 static int __init
init_ima(void)
472 ima_init_template_list();
473 hash_setup(CONFIG_IMA_DEFAULT_HASH
);
477 ima_update_policy_flag();
482 late_initcall(init_ima
); /* Start IMA after the TPM is available */
484 MODULE_DESCRIPTION("Integrity Measurement Architecture");
485 MODULE_LICENSE("GPL");