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