1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Integrity Measurement Architecture
4  *
5  * Copyright (C) 2005,2006,2007,2008 IBM Corporation
6  *
7  * Authors:
8  * Reiner Sailer <sailer@watson.ibm.com>
9  * Serge Hallyn <serue@us.ibm.com>
10  * Kylene Hall <kylene@us.ibm.com>
11  * Mimi Zohar <zohar@us.ibm.com>
12  *
13  * File: ima_main.c
14  *	implements the IMA hooks: ima_bprm_check, ima_file_mmap,
15  *	and ima_file_check.
16  */
17 
18 #include <linux/module.h>
19 #include <linux/file.h>
20 #include <linux/binfmts.h>
21 #include <linux/mount.h>
22 #include <linux/mman.h>
23 #include <linux/slab.h>
24 #include <linux/xattr.h>
25 #include <linux/ima.h>
26 #include <linux/iversion.h>
27 #include <linux/fs.h>
28 
29 #include "ima.h"
30 
31 #ifdef CONFIG_IMA_APPRAISE
32 int ima_appraise = IMA_APPRAISE_ENFORCE;
33 #else
34 int ima_appraise;
35 #endif
36 
37 int ima_hash_algo = HASH_ALGO_SHA1;
38 static int hash_setup_done;
39 
40 static struct notifier_block ima_lsm_policy_notifier = {
41 	.notifier_call = ima_lsm_policy_change,
42 };
43 
44 static int __init hash_setup(char *str)
45 {
46 	struct ima_template_desc *template_desc = ima_template_desc_current();
47 	int i;
48 
49 	if (hash_setup_done)
50 		return 1;
51 
52 	if (strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) == 0) {
53 		if (strncmp(str, "sha1", 4) == 0)
54 			ima_hash_algo = HASH_ALGO_SHA1;
55 		else if (strncmp(str, "md5", 3) == 0)
56 			ima_hash_algo = HASH_ALGO_MD5;
57 		else
58 			return 1;
59 		goto out;
60 	}
61 
62 	i = match_string(hash_algo_name, HASH_ALGO__LAST, str);
63 	if (i < 0)
64 		return 1;
65 
66 	ima_hash_algo = i;
67 out:
68 	hash_setup_done = 1;
69 	return 1;
70 }
71 __setup("ima_hash=", hash_setup);
72 
73 /* Prevent mmap'ing a file execute that is already mmap'ed write */
74 static int mmap_violation_check(enum ima_hooks func, struct file *file,
75 				char **pathbuf, const char **pathname,
76 				char *filename)
77 {
78 	struct inode *inode;
79 	int rc = 0;
80 
81 	if ((func == MMAP_CHECK) && mapping_writably_mapped(file->f_mapping)) {
82 		rc = -ETXTBSY;
83 		inode = file_inode(file);
84 
85 		if (!*pathbuf)	/* ima_rdwr_violation possibly pre-fetched */
86 			*pathname = ima_d_path(&file->f_path, pathbuf,
87 					       filename);
88 		integrity_audit_msg(AUDIT_INTEGRITY_DATA, inode, *pathname,
89 				    "mmap_file", "mmapped_writers", rc, 0);
90 	}
91 	return rc;
92 }
93 
94 /*
95  * ima_rdwr_violation_check
96  *
97  * Only invalidate the PCR for measured files:
98  *	- Opening a file for write when already open for read,
99  *	  results in a time of measure, time of use (ToMToU) error.
100  *	- Opening a file for read when already open for write,
101  *	  could result in a file measurement error.
102  *
103  */
104 static void ima_rdwr_violation_check(struct file *file,
105 				     struct integrity_iint_cache *iint,
106 				     int must_measure,
107 				     char **pathbuf,
108 				     const char **pathname,
109 				     char *filename)
110 {
111 	struct inode *inode = file_inode(file);
112 	fmode_t mode = file->f_mode;
113 	bool send_tomtou = false, send_writers = false;
114 
115 	if (mode & FMODE_WRITE) {
116 		if (atomic_read(&inode->i_readcount) && IS_IMA(inode)) {
117 			if (!iint)
118 				iint = integrity_iint_find(inode);
119 			/* IMA_MEASURE is set from reader side */
120 			if (iint && test_bit(IMA_MUST_MEASURE,
121 						&iint->atomic_flags))
122 				send_tomtou = true;
123 		}
124 	} else {
125 		if (must_measure)
126 			set_bit(IMA_MUST_MEASURE, &iint->atomic_flags);
127 		if (inode_is_open_for_write(inode) && must_measure)
128 			send_writers = true;
129 	}
130 
131 	if (!send_tomtou && !send_writers)
132 		return;
133 
134 	*pathname = ima_d_path(&file->f_path, pathbuf, filename);
135 
136 	if (send_tomtou)
137 		ima_add_violation(file, *pathname, iint,
138 				  "invalid_pcr", "ToMToU");
139 	if (send_writers)
140 		ima_add_violation(file, *pathname, iint,
141 				  "invalid_pcr", "open_writers");
142 }
143 
144 static void ima_check_last_writer(struct integrity_iint_cache *iint,
145 				  struct inode *inode, struct file *file)
146 {
147 	fmode_t mode = file->f_mode;
148 	bool update;
149 
150 	if (!(mode & FMODE_WRITE))
151 		return;
152 
153 	mutex_lock(&iint->mutex);
154 	if (atomic_read(&inode->i_writecount) == 1) {
155 		update = test_and_clear_bit(IMA_UPDATE_XATTR,
156 					    &iint->atomic_flags);
157 		if (!IS_I_VERSION(inode) ||
158 		    !inode_eq_iversion(inode, iint->version) ||
159 		    (iint->flags & IMA_NEW_FILE)) {
160 			iint->flags &= ~(IMA_DONE_MASK | IMA_NEW_FILE);
161 			iint->measured_pcrs = 0;
162 			if (update)
163 				ima_update_xattr(iint, file);
164 		}
165 	}
166 	mutex_unlock(&iint->mutex);
167 }
168 
169 /**
170  * ima_file_free - called on __fput()
171  * @file: pointer to file structure being freed
172  *
173  * Flag files that changed, based on i_version
174  */
175 void ima_file_free(struct file *file)
176 {
177 	struct inode *inode = file_inode(file);
178 	struct integrity_iint_cache *iint;
179 
180 	if (!ima_policy_flag || !S_ISREG(inode->i_mode))
181 		return;
182 
183 	iint = integrity_iint_find(inode);
184 	if (!iint)
185 		return;
186 
187 	ima_check_last_writer(iint, inode, file);
188 }
189 
190 static int process_measurement(struct file *file, const struct cred *cred,
191 			       u32 secid, char *buf, loff_t size, int mask,
192 			       enum ima_hooks func)
193 {
194 	struct inode *inode = file_inode(file);
195 	struct integrity_iint_cache *iint = NULL;
196 	struct ima_template_desc *template_desc = NULL;
197 	char *pathbuf = NULL;
198 	char filename[NAME_MAX];
199 	const char *pathname = NULL;
200 	int rc = 0, action, must_appraise = 0;
201 	int pcr = CONFIG_IMA_MEASURE_PCR_IDX;
202 	struct evm_ima_xattr_data *xattr_value = NULL;
203 	struct modsig *modsig = NULL;
204 	int xattr_len = 0;
205 	bool violation_check;
206 	enum hash_algo hash_algo;
207 
208 	if (!ima_policy_flag || !S_ISREG(inode->i_mode))
209 		return 0;
210 
211 	/* Return an IMA_MEASURE, IMA_APPRAISE, IMA_AUDIT action
212 	 * bitmask based on the appraise/audit/measurement policy.
213 	 * Included is the appraise submask.
214 	 */
215 	action = ima_get_action(inode, cred, secid, mask, func, &pcr,
216 				&template_desc, NULL);
217 	violation_check = ((func == FILE_CHECK || func == MMAP_CHECK) &&
218 			   (ima_policy_flag & IMA_MEASURE));
219 	if (!action && !violation_check)
220 		return 0;
221 
222 	must_appraise = action & IMA_APPRAISE;
223 
224 	/*  Is the appraise rule hook specific?  */
225 	if (action & IMA_FILE_APPRAISE)
226 		func = FILE_CHECK;
227 
228 	inode_lock(inode);
229 
230 	if (action) {
231 		iint = integrity_inode_get(inode);
232 		if (!iint)
233 			rc = -ENOMEM;
234 	}
235 
236 	if (!rc && violation_check)
237 		ima_rdwr_violation_check(file, iint, action & IMA_MEASURE,
238 					 &pathbuf, &pathname, filename);
239 
240 	inode_unlock(inode);
241 
242 	if (rc)
243 		goto out;
244 	if (!action)
245 		goto out;
246 
247 	mutex_lock(&iint->mutex);
248 
249 	if (test_and_clear_bit(IMA_CHANGE_ATTR, &iint->atomic_flags))
250 		/* reset appraisal flags if ima_inode_post_setattr was called */
251 		iint->flags &= ~(IMA_APPRAISE | IMA_APPRAISED |
252 				 IMA_APPRAISE_SUBMASK | IMA_APPRAISED_SUBMASK |
253 				 IMA_ACTION_FLAGS);
254 
255 	/*
256 	 * Re-evaulate the file if either the xattr has changed or the
257 	 * kernel has no way of detecting file change on the filesystem.
258 	 * (Limited to privileged mounted filesystems.)
259 	 */
260 	if (test_and_clear_bit(IMA_CHANGE_XATTR, &iint->atomic_flags) ||
261 	    ((inode->i_sb->s_iflags & SB_I_IMA_UNVERIFIABLE_SIGNATURE) &&
262 	     !(inode->i_sb->s_iflags & SB_I_UNTRUSTED_MOUNTER) &&
263 	     !(action & IMA_FAIL_UNVERIFIABLE_SIGS))) {
264 		iint->flags &= ~IMA_DONE_MASK;
265 		iint->measured_pcrs = 0;
266 	}
267 
268 	/* Determine if already appraised/measured based on bitmask
269 	 * (IMA_MEASURE, IMA_MEASURED, IMA_XXXX_APPRAISE, IMA_XXXX_APPRAISED,
270 	 *  IMA_AUDIT, IMA_AUDITED)
271 	 */
272 	iint->flags |= action;
273 	action &= IMA_DO_MASK;
274 	action &= ~((iint->flags & (IMA_DONE_MASK ^ IMA_MEASURED)) >> 1);
275 
276 	/* If target pcr is already measured, unset IMA_MEASURE action */
277 	if ((action & IMA_MEASURE) && (iint->measured_pcrs & (0x1 << pcr)))
278 		action ^= IMA_MEASURE;
279 
280 	/* HASH sets the digital signature and update flags, nothing else */
281 	if ((action & IMA_HASH) &&
282 	    !(test_bit(IMA_DIGSIG, &iint->atomic_flags))) {
283 		xattr_len = ima_read_xattr(file_dentry(file), &xattr_value);
284 		if ((xattr_value && xattr_len > 2) &&
285 		    (xattr_value->type == EVM_IMA_XATTR_DIGSIG))
286 			set_bit(IMA_DIGSIG, &iint->atomic_flags);
287 		iint->flags |= IMA_HASHED;
288 		action ^= IMA_HASH;
289 		set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
290 	}
291 
292 	/* Nothing to do, just return existing appraised status */
293 	if (!action) {
294 		if (must_appraise) {
295 			rc = mmap_violation_check(func, file, &pathbuf,
296 						  &pathname, filename);
297 			if (!rc)
298 				rc = ima_get_cache_status(iint, func);
299 		}
300 		goto out_locked;
301 	}
302 
303 	if ((action & IMA_APPRAISE_SUBMASK) ||
304 	    strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) != 0) {
305 		/* read 'security.ima' */
306 		xattr_len = ima_read_xattr(file_dentry(file), &xattr_value);
307 
308 		/*
309 		 * Read the appended modsig if allowed by the policy, and allow
310 		 * an additional measurement list entry, if needed, based on the
311 		 * template format and whether the file was already measured.
312 		 */
313 		if (iint->flags & IMA_MODSIG_ALLOWED) {
314 			rc = ima_read_modsig(func, buf, size, &modsig);
315 
316 			if (!rc && ima_template_has_modsig(template_desc) &&
317 			    iint->flags & IMA_MEASURED)
318 				action |= IMA_MEASURE;
319 		}
320 	}
321 
322 	hash_algo = ima_get_hash_algo(xattr_value, xattr_len);
323 
324 	rc = ima_collect_measurement(iint, file, buf, size, hash_algo, modsig);
325 	if (rc != 0 && rc != -EBADF && rc != -EINVAL)
326 		goto out_locked;
327 
328 	if (!pathbuf)	/* ima_rdwr_violation possibly pre-fetched */
329 		pathname = ima_d_path(&file->f_path, &pathbuf, filename);
330 
331 	if (action & IMA_MEASURE)
332 		ima_store_measurement(iint, file, pathname,
333 				      xattr_value, xattr_len, modsig, pcr,
334 				      template_desc);
335 	if (rc == 0 && (action & IMA_APPRAISE_SUBMASK)) {
336 		rc = ima_check_blacklist(iint, modsig, pcr);
337 		if (rc != -EPERM) {
338 			inode_lock(inode);
339 			rc = ima_appraise_measurement(func, iint, file,
340 						      pathname, xattr_value,
341 						      xattr_len, modsig);
342 			inode_unlock(inode);
343 		}
344 		if (!rc)
345 			rc = mmap_violation_check(func, file, &pathbuf,
346 						  &pathname, filename);
347 	}
348 	if (action & IMA_AUDIT)
349 		ima_audit_measurement(iint, pathname);
350 
351 	if ((file->f_flags & O_DIRECT) && (iint->flags & IMA_PERMIT_DIRECTIO))
352 		rc = 0;
353 out_locked:
354 	if ((mask & MAY_WRITE) && test_bit(IMA_DIGSIG, &iint->atomic_flags) &&
355 	     !(iint->flags & IMA_NEW_FILE))
356 		rc = -EACCES;
357 	mutex_unlock(&iint->mutex);
358 	kfree(xattr_value);
359 	ima_free_modsig(modsig);
360 out:
361 	if (pathbuf)
362 		__putname(pathbuf);
363 	if (must_appraise) {
364 		if (rc && (ima_appraise & IMA_APPRAISE_ENFORCE))
365 			return -EACCES;
366 		if (file->f_mode & FMODE_WRITE)
367 			set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
368 	}
369 	return 0;
370 }
371 
372 /**
373  * ima_file_mmap - based on policy, collect/store measurement.
374  * @file: pointer to the file to be measured (May be NULL)
375  * @prot: contains the protection that will be applied by the kernel.
376  *
377  * Measure files being mmapped executable based on the ima_must_measure()
378  * policy decision.
379  *
380  * On success return 0.  On integrity appraisal error, assuming the file
381  * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
382  */
383 int ima_file_mmap(struct file *file, unsigned long prot)
384 {
385 	u32 secid;
386 
387 	if (file && (prot & PROT_EXEC)) {
388 		security_task_getsecid(current, &secid);
389 		return process_measurement(file, current_cred(), secid, NULL,
390 					   0, MAY_EXEC, MMAP_CHECK);
391 	}
392 
393 	return 0;
394 }
395 
396 /**
397  * ima_bprm_check - based on policy, collect/store measurement.
398  * @bprm: contains the linux_binprm structure
399  *
400  * The OS protects against an executable file, already open for write,
401  * from being executed in deny_write_access() and an executable file,
402  * already open for execute, from being modified in get_write_access().
403  * So we can be certain that what we verify and measure here is actually
404  * what is being executed.
405  *
406  * On success return 0.  On integrity appraisal error, assuming the file
407  * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
408  */
409 int ima_bprm_check(struct linux_binprm *bprm)
410 {
411 	int ret;
412 	u32 secid;
413 
414 	security_task_getsecid(current, &secid);
415 	ret = process_measurement(bprm->file, current_cred(), secid, NULL, 0,
416 				  MAY_EXEC, BPRM_CHECK);
417 	if (ret)
418 		return ret;
419 
420 	security_cred_getsecid(bprm->cred, &secid);
421 	return process_measurement(bprm->file, bprm->cred, secid, NULL, 0,
422 				   MAY_EXEC, CREDS_CHECK);
423 }
424 
425 /**
426  * ima_path_check - based on policy, collect/store measurement.
427  * @file: pointer to the file to be measured
428  * @mask: contains MAY_READ, MAY_WRITE, MAY_EXEC or MAY_APPEND
429  *
430  * Measure files based on the ima_must_measure() policy decision.
431  *
432  * On success return 0.  On integrity appraisal error, assuming the file
433  * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
434  */
435 int ima_file_check(struct file *file, int mask)
436 {
437 	u32 secid;
438 
439 	security_task_getsecid(current, &secid);
440 	return process_measurement(file, current_cred(), secid, NULL, 0,
441 				   mask & (MAY_READ | MAY_WRITE | MAY_EXEC |
442 					   MAY_APPEND), FILE_CHECK);
443 }
444 EXPORT_SYMBOL_GPL(ima_file_check);
445 
446 /**
447  * ima_file_hash - return the stored measurement if a file has been hashed and
448  * is in the iint cache.
449  * @file: pointer to the file
450  * @buf: buffer in which to store the hash
451  * @buf_size: length of the buffer
452  *
453  * On success, return the hash algorithm (as defined in the enum hash_algo).
454  * If buf is not NULL, this function also outputs the hash into buf.
455  * If the hash is larger than buf_size, then only buf_size bytes will be copied.
456  * It generally just makes sense to pass a buffer capable of holding the largest
457  * possible hash: IMA_MAX_DIGEST_SIZE.
458  * The file hash returned is based on the entire file, including the appended
459  * signature.
460  *
461  * If IMA is disabled or if no measurement is available, return -EOPNOTSUPP.
462  * If the parameters are incorrect, return -EINVAL.
463  */
464 int ima_file_hash(struct file *file, char *buf, size_t buf_size)
465 {
466 	struct inode *inode;
467 	struct integrity_iint_cache *iint;
468 	int hash_algo;
469 
470 	if (!file)
471 		return -EINVAL;
472 
473 	if (!ima_policy_flag)
474 		return -EOPNOTSUPP;
475 
476 	inode = file_inode(file);
477 	iint = integrity_iint_find(inode);
478 	if (!iint)
479 		return -EOPNOTSUPP;
480 
481 	mutex_lock(&iint->mutex);
482 	if (buf) {
483 		size_t copied_size;
484 
485 		copied_size = min_t(size_t, iint->ima_hash->length, buf_size);
486 		memcpy(buf, iint->ima_hash->digest, copied_size);
487 	}
488 	hash_algo = iint->ima_hash->algo;
489 	mutex_unlock(&iint->mutex);
490 
491 	return hash_algo;
492 }
493 EXPORT_SYMBOL_GPL(ima_file_hash);
494 
495 /**
496  * ima_post_create_tmpfile - mark newly created tmpfile as new
497  * @file : newly created tmpfile
498  *
499  * No measuring, appraising or auditing of newly created tmpfiles is needed.
500  * Skip calling process_measurement(), but indicate which newly, created
501  * tmpfiles are in policy.
502  */
503 void ima_post_create_tmpfile(struct inode *inode)
504 {
505 	struct integrity_iint_cache *iint;
506 	int must_appraise;
507 
508 	must_appraise = ima_must_appraise(inode, MAY_ACCESS, FILE_CHECK);
509 	if (!must_appraise)
510 		return;
511 
512 	/* Nothing to do if we can't allocate memory */
513 	iint = integrity_inode_get(inode);
514 	if (!iint)
515 		return;
516 
517 	/* needed for writing the security xattrs */
518 	set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
519 	iint->ima_file_status = INTEGRITY_PASS;
520 }
521 
522 /**
523  * ima_post_path_mknod - mark as a new inode
524  * @dentry: newly created dentry
525  *
526  * Mark files created via the mknodat syscall as new, so that the
527  * file data can be written later.
528  */
529 void ima_post_path_mknod(struct dentry *dentry)
530 {
531 	struct integrity_iint_cache *iint;
532 	struct inode *inode = dentry->d_inode;
533 	int must_appraise;
534 
535 	must_appraise = ima_must_appraise(inode, MAY_ACCESS, FILE_CHECK);
536 	if (!must_appraise)
537 		return;
538 
539 	/* Nothing to do if we can't allocate memory */
540 	iint = integrity_inode_get(inode);
541 	if (!iint)
542 		return;
543 
544 	/* needed for re-opening empty files */
545 	iint->flags |= IMA_NEW_FILE;
546 }
547 
548 /**
549  * ima_read_file - pre-measure/appraise hook decision based on policy
550  * @file: pointer to the file to be measured/appraised/audit
551  * @read_id: caller identifier
552  *
553  * Permit reading a file based on policy. The policy rules are written
554  * in terms of the policy identifier.  Appraising the integrity of
555  * a file requires a file descriptor.
556  *
557  * For permission return 0, otherwise return -EACCES.
558  */
559 int ima_read_file(struct file *file, enum kernel_read_file_id read_id)
560 {
561 	/*
562 	 * READING_FIRMWARE_PREALLOC_BUFFER
563 	 *
564 	 * Do devices using pre-allocated memory run the risk of the
565 	 * firmware being accessible to the device prior to the completion
566 	 * of IMA's signature verification any more than when using two
567 	 * buffers?
568 	 */
569 	return 0;
570 }
571 
572 const int read_idmap[READING_MAX_ID] = {
573 	[READING_FIRMWARE] = FIRMWARE_CHECK,
574 	[READING_FIRMWARE_PREALLOC_BUFFER] = FIRMWARE_CHECK,
575 	[READING_MODULE] = MODULE_CHECK,
576 	[READING_KEXEC_IMAGE] = KEXEC_KERNEL_CHECK,
577 	[READING_KEXEC_INITRAMFS] = KEXEC_INITRAMFS_CHECK,
578 	[READING_POLICY] = POLICY_CHECK
579 };
580 
581 /**
582  * ima_post_read_file - in memory collect/appraise/audit measurement
583  * @file: pointer to the file to be measured/appraised/audit
584  * @buf: pointer to in memory file contents
585  * @size: size of in memory file contents
586  * @read_id: caller identifier
587  *
588  * Measure/appraise/audit in memory file based on policy.  Policy rules
589  * are written in terms of a policy identifier.
590  *
591  * On success return 0.  On integrity appraisal error, assuming the file
592  * is in policy and IMA-appraisal is in enforcing mode, return -EACCES.
593  */
594 int ima_post_read_file(struct file *file, void *buf, loff_t size,
595 		       enum kernel_read_file_id read_id)
596 {
597 	enum ima_hooks func;
598 	u32 secid;
599 
600 	if (!file && read_id == READING_FIRMWARE) {
601 		if ((ima_appraise & IMA_APPRAISE_FIRMWARE) &&
602 		    (ima_appraise & IMA_APPRAISE_ENFORCE)) {
603 			pr_err("Prevent firmware loading_store.\n");
604 			return -EACCES;	/* INTEGRITY_UNKNOWN */
605 		}
606 		return 0;
607 	}
608 
609 	/* permit signed certs */
610 	if (!file && read_id == READING_X509_CERTIFICATE)
611 		return 0;
612 
613 	if (!file || !buf || size == 0) { /* should never happen */
614 		if (ima_appraise & IMA_APPRAISE_ENFORCE)
615 			return -EACCES;
616 		return 0;
617 	}
618 
619 	func = read_idmap[read_id] ?: FILE_CHECK;
620 	security_task_getsecid(current, &secid);
621 	return process_measurement(file, current_cred(), secid, buf, size,
622 				   MAY_READ, func);
623 }
624 
625 /**
626  * ima_load_data - appraise decision based on policy
627  * @id: kernel load data caller identifier
628  *
629  * Callers of this LSM hook can not measure, appraise, or audit the
630  * data provided by userspace.  Enforce policy rules requring a file
631  * signature (eg. kexec'ed kernel image).
632  *
633  * For permission return 0, otherwise return -EACCES.
634  */
635 int ima_load_data(enum kernel_load_data_id id)
636 {
637 	bool ima_enforce, sig_enforce;
638 
639 	ima_enforce =
640 		(ima_appraise & IMA_APPRAISE_ENFORCE) == IMA_APPRAISE_ENFORCE;
641 
642 	switch (id) {
643 	case LOADING_KEXEC_IMAGE:
644 		if (IS_ENABLED(CONFIG_KEXEC_SIG)
645 		    && arch_ima_get_secureboot()) {
646 			pr_err("impossible to appraise a kernel image without a file descriptor; try using kexec_file_load syscall.\n");
647 			return -EACCES;
648 		}
649 
650 		if (ima_enforce && (ima_appraise & IMA_APPRAISE_KEXEC)) {
651 			pr_err("impossible to appraise a kernel image without a file descriptor; try using kexec_file_load syscall.\n");
652 			return -EACCES;	/* INTEGRITY_UNKNOWN */
653 		}
654 		break;
655 	case LOADING_FIRMWARE:
656 		if (ima_enforce && (ima_appraise & IMA_APPRAISE_FIRMWARE)) {
657 			pr_err("Prevent firmware sysfs fallback loading.\n");
658 			return -EACCES;	/* INTEGRITY_UNKNOWN */
659 		}
660 		break;
661 	case LOADING_MODULE:
662 		sig_enforce = is_module_sig_enforced();
663 
664 		if (ima_enforce && (!sig_enforce
665 				    && (ima_appraise & IMA_APPRAISE_MODULES))) {
666 			pr_err("impossible to appraise a module without a file descriptor. sig_enforce kernel parameter might help\n");
667 			return -EACCES;	/* INTEGRITY_UNKNOWN */
668 		}
669 	default:
670 		break;
671 	}
672 	return 0;
673 }
674 
675 /*
676  * process_buffer_measurement - Measure the buffer to ima log.
677  * @buf: pointer to the buffer that needs to be added to the log.
678  * @size: size of buffer(in bytes).
679  * @eventname: event name to be used for the buffer entry.
680  * @func: IMA hook
681  * @pcr: pcr to extend the measurement
682  * @keyring: keyring name to determine the action to be performed
683  *
684  * Based on policy, the buffer is measured into the ima log.
685  */
686 void process_buffer_measurement(const void *buf, int size,
687 				const char *eventname, enum ima_hooks func,
688 				int pcr, const char *keyring)
689 {
690 	int ret = 0;
691 	struct ima_template_entry *entry = NULL;
692 	struct integrity_iint_cache iint = {};
693 	struct ima_event_data event_data = {.iint = &iint,
694 					    .filename = eventname,
695 					    .buf = buf,
696 					    .buf_len = size};
697 	struct ima_template_desc *template = NULL;
698 	struct {
699 		struct ima_digest_data hdr;
700 		char digest[IMA_MAX_DIGEST_SIZE];
701 	} hash = {};
702 	int violation = 0;
703 	int action = 0;
704 	u32 secid;
705 
706 	if (!ima_policy_flag)
707 		return;
708 
709 	/*
710 	 * Both LSM hooks and auxilary based buffer measurements are
711 	 * based on policy.  To avoid code duplication, differentiate
712 	 * between the LSM hooks and auxilary buffer measurements,
713 	 * retrieving the policy rule information only for the LSM hook
714 	 * buffer measurements.
715 	 */
716 	if (func) {
717 		security_task_getsecid(current, &secid);
718 		action = ima_get_action(NULL, current_cred(), secid, 0, func,
719 					&pcr, &template, keyring);
720 		if (!(action & IMA_MEASURE))
721 			return;
722 	}
723 
724 	if (!pcr)
725 		pcr = CONFIG_IMA_MEASURE_PCR_IDX;
726 
727 	if (!template) {
728 		template = lookup_template_desc("ima-buf");
729 		ret = template_desc_init_fields(template->fmt,
730 						&(template->fields),
731 						&(template->num_fields));
732 		if (ret < 0) {
733 			pr_err("template %s init failed, result: %d\n",
734 			       (strlen(template->name) ?
735 				template->name : template->fmt), ret);
736 			return;
737 		}
738 	}
739 
740 	iint.ima_hash = &hash.hdr;
741 	iint.ima_hash->algo = ima_hash_algo;
742 	iint.ima_hash->length = hash_digest_size[ima_hash_algo];
743 
744 	ret = ima_calc_buffer_hash(buf, size, iint.ima_hash);
745 	if (ret < 0)
746 		goto out;
747 
748 	ret = ima_alloc_init_template(&event_data, &entry, template);
749 	if (ret < 0)
750 		goto out;
751 
752 	ret = ima_store_template(entry, violation, NULL, buf, pcr);
753 
754 	if (ret < 0)
755 		ima_free_template_entry(entry);
756 
757 out:
758 	if (ret < 0)
759 		pr_devel("%s: failed, result: %d\n", __func__, ret);
760 
761 	return;
762 }
763 
764 /**
765  * ima_kexec_cmdline - measure kexec cmdline boot args
766  * @buf: pointer to buffer
767  * @size: size of buffer
768  *
769  * Buffers can only be measured, not appraised.
770  */
771 void ima_kexec_cmdline(const void *buf, int size)
772 {
773 	if (buf && size != 0)
774 		process_buffer_measurement(buf, size, "kexec-cmdline",
775 					   KEXEC_CMDLINE, 0, NULL);
776 }
777 
778 static int __init init_ima(void)
779 {
780 	int error;
781 
782 	ima_init_template_list();
783 	hash_setup(CONFIG_IMA_DEFAULT_HASH);
784 	error = ima_init();
785 
786 	if (error && strcmp(hash_algo_name[ima_hash_algo],
787 			    CONFIG_IMA_DEFAULT_HASH) != 0) {
788 		pr_info("Allocating %s failed, going to use default hash algorithm %s\n",
789 			hash_algo_name[ima_hash_algo], CONFIG_IMA_DEFAULT_HASH);
790 		hash_setup_done = 0;
791 		hash_setup(CONFIG_IMA_DEFAULT_HASH);
792 		error = ima_init();
793 	}
794 
795 	error = register_blocking_lsm_notifier(&ima_lsm_policy_notifier);
796 	if (error)
797 		pr_warn("Couldn't register LSM notifier, error %d\n", error);
798 
799 	if (!error)
800 		ima_update_policy_flag();
801 
802 	return error;
803 }
804 
805 late_initcall(init_ima);	/* Start IMA after the TPM is available */
806