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 <crypto/hash_info.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
;
58 for (i
= 0; i
< HASH_ALGO__LAST
; i
++) {
59 if (strcmp(str
, hash_algo_name
[i
]) == 0) {
68 __setup("ima_hash=", hash_setup
);
71 * ima_rdwr_violation_check
73 * Only invalidate the PCR for measured files:
74 * - Opening a file for write when already open for read,
75 * results in a time of measure, time of use (ToMToU) error.
76 * - Opening a file for read when already open for write,
77 * could result in a file measurement error.
80 static void ima_rdwr_violation_check(struct file
*file
,
81 struct integrity_iint_cache
*iint
,
84 const char **pathname
)
86 struct inode
*inode
= file_inode(file
);
87 fmode_t mode
= file
->f_mode
;
88 bool send_tomtou
= false, send_writers
= false;
90 if (mode
& FMODE_WRITE
) {
91 if (atomic_read(&inode
->i_readcount
) && IS_IMA(inode
)) {
93 iint
= integrity_iint_find(inode
);
94 /* IMA_MEASURE is set from reader side */
95 if (iint
&& (iint
->flags
& IMA_MEASURE
))
99 if ((atomic_read(&inode
->i_writecount
) > 0) && must_measure
)
103 if (!send_tomtou
&& !send_writers
)
106 *pathname
= ima_d_path(&file
->f_path
, pathbuf
);
109 ima_add_violation(file
, *pathname
, iint
,
110 "invalid_pcr", "ToMToU");
112 ima_add_violation(file
, *pathname
, iint
,
113 "invalid_pcr", "open_writers");
116 static void ima_check_last_writer(struct integrity_iint_cache
*iint
,
117 struct inode
*inode
, struct file
*file
)
119 fmode_t mode
= file
->f_mode
;
121 if (!(mode
& FMODE_WRITE
))
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
);
137 * ima_file_free - called on __fput()
138 * @file: pointer to file structure being freed
140 * Flag files that changed, based on i_version
142 void ima_file_free(struct file
*file
)
144 struct inode
*inode
= file_inode(file
);
145 struct integrity_iint_cache
*iint
;
147 if (!ima_policy_flag
|| !S_ISREG(inode
->i_mode
))
150 iint
= integrity_iint_find(inode
);
154 ima_check_last_writer(iint
, inode
, file
);
157 static int process_measurement(struct file
*file
, int mask
, int function
,
160 struct inode
*inode
= file_inode(file
);
161 struct integrity_iint_cache
*iint
= NULL
;
162 struct ima_template_desc
*template_desc
;
163 char *pathbuf
= NULL
;
164 const char *pathname
= NULL
;
165 int rc
= -ENOMEM
, action
, must_appraise
;
166 struct evm_ima_xattr_data
*xattr_value
= NULL
, **xattr_ptr
= NULL
;
168 bool violation_check
;
170 if (!ima_policy_flag
|| !S_ISREG(inode
->i_mode
))
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.
177 action
= ima_get_action(inode
, mask
, function
);
178 violation_check
= ((function
== FILE_CHECK
|| function
== MMAP_CHECK
) &&
179 (ima_policy_flag
& IMA_MEASURE
));
180 if (!action
&& !violation_check
)
183 must_appraise
= action
& IMA_APPRAISE
;
185 /* Is the appraise rule hook specific? */
186 if (action
& IMA_FILE_APPRAISE
)
187 function
= FILE_CHECK
;
192 iint
= integrity_inode_get(inode
);
197 if (violation_check
) {
198 ima_rdwr_violation_check(file
, iint
, action
& IMA_MEASURE
,
199 &pathbuf
, &pathname
);
206 /* Determine if already appraised/measured based on bitmask
207 * (IMA_MEASURE, IMA_MEASURED, IMA_XXXX_APPRAISE, IMA_XXXX_APPRAISED,
208 * IMA_AUDIT, IMA_AUDITED)
210 iint
->flags
|= action
;
211 action
&= IMA_DO_MASK
;
212 action
&= ~((iint
->flags
& IMA_DONE_MASK
) >> 1);
214 /* Nothing to do, just return existing appraised status */
217 rc
= ima_get_cache_status(iint
, function
);
221 template_desc
= ima_template_desc_current();
222 if ((action
& IMA_APPRAISE_SUBMASK
) ||
223 strcmp(template_desc
->name
, IMA_TEMPLATE_IMA_NAME
) != 0)
224 xattr_ptr
= &xattr_value
;
226 rc
= ima_collect_measurement(iint
, file
, xattr_ptr
, &xattr_len
);
228 if (file
->f_flags
& O_DIRECT
)
229 rc
= (iint
->flags
& IMA_PERMIT_DIRECTIO
) ? 0 : -EACCES
;
233 if (!pathname
) /* ima_rdwr_violation possibly pre-fetched */
234 pathname
= ima_d_path(&file
->f_path
, &pathbuf
);
236 if (action
& IMA_MEASURE
)
237 ima_store_measurement(iint
, file
, pathname
,
238 xattr_value
, xattr_len
);
239 if (action
& IMA_APPRAISE_SUBMASK
)
240 rc
= ima_appraise_measurement(function
, iint
, file
, pathname
,
241 xattr_value
, xattr_len
, opened
);
242 if (action
& IMA_AUDIT
)
243 ima_audit_measurement(iint
, pathname
);
246 if ((mask
& MAY_WRITE
) && (iint
->flags
& IMA_DIGSIG
))
254 if ((rc
&& must_appraise
) && (ima_appraise
& IMA_APPRAISE_ENFORCE
))
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.
264 * Measure files being mmapped executable based on the ima_must_measure()
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.
270 int ima_file_mmap(struct file
*file
, unsigned long prot
)
272 if (file
&& (prot
& PROT_EXEC
))
273 return process_measurement(file
, MAY_EXEC
, MMAP_CHECK
, 0);
278 * ima_bprm_check - based on policy, collect/store measurement.
279 * @bprm: contains the linux_binprm structure
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.
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.
290 int ima_bprm_check(struct linux_binprm
*bprm
)
292 return process_measurement(bprm
->file
, MAY_EXEC
, BPRM_CHECK
, 0);
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
300 * Measure files based on the ima_must_measure() policy decision.
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.
305 int ima_file_check(struct file
*file
, int mask
, int opened
)
307 return process_measurement(file
,
308 mask
& (MAY_READ
| MAY_WRITE
| MAY_EXEC
),
311 EXPORT_SYMBOL_GPL(ima_file_check
);
314 * ima_module_check - based on policy, collect/store/appraise measurement.
315 * @file: pointer to the file to be measured/appraised
317 * Measure/appraise kernel modules based on policy.
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.
322 int ima_module_check(struct file
*file
)
325 #ifndef CONFIG_MODULE_SIG_FORCE
326 if ((ima_appraise
& IMA_APPRAISE_MODULES
) &&
327 (ima_appraise
& IMA_APPRAISE_ENFORCE
))
328 return -EACCES
; /* INTEGRITY_UNKNOWN */
330 return 0; /* We rely on module signature checking */
332 return process_measurement(file
, MAY_EXEC
, MODULE_CHECK
, 0);
335 int ima_fw_from_file(struct file
*file
, char *buf
, size_t size
)
338 if ((ima_appraise
& IMA_APPRAISE_FIRMWARE
) &&
339 (ima_appraise
& IMA_APPRAISE_ENFORCE
))
340 return -EACCES
; /* INTEGRITY_UNKNOWN */
343 return process_measurement(file
, MAY_EXEC
, FIRMWARE_CHECK
, 0);
346 static int __init
init_ima(void)
350 hash_setup(CONFIG_IMA_DEFAULT_HASH
);
354 ima_update_policy_flag();
359 late_initcall(init_ima
); /* Start IMA after the TPM is available */
361 MODULE_DESCRIPTION("Integrity Measurement Architecture");
362 MODULE_LICENSE("GPL");