1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18#include <linux/module.h>
19#include <linux/file.h>
20#include <linux/binfmts.h>
21#include <linux/kernel_read_file.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>
28#include <linux/fs.h>
29
30#include "ima.h"
31
32#ifdef CONFIG_IMA_APPRAISE
33int ima_appraise = IMA_APPRAISE_ENFORCE;
34#else
35int ima_appraise;
36#endif
37
38int ima_hash_algo = HASH_ALGO_SHA1;
39static int hash_setup_done;
40
41static struct notifier_block ima_lsm_policy_notifier = {
42 .notifier_call = ima_lsm_policy_change,
43};
44
45static int __init hash_setup(char *str)
46{
47 struct ima_template_desc *template_desc = ima_template_desc_current();
48 int i;
49
50 if (hash_setup_done)
51 return 1;
52
53 if (strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) == 0) {
54 if (strncmp(str, "sha1", 4) == 0) {
55 ima_hash_algo = HASH_ALGO_SHA1;
56 } else if (strncmp(str, "md5", 3) == 0) {
57 ima_hash_algo = HASH_ALGO_MD5;
58 } else {
59 pr_err("invalid hash algorithm \"%s\" for template \"%s\"",
60 str, IMA_TEMPLATE_IMA_NAME);
61 return 1;
62 }
63 goto out;
64 }
65
66 i = match_string(hash_algo_name, HASH_ALGO__LAST, str);
67 if (i < 0) {
68 pr_err("invalid hash algorithm \"%s\"", str);
69 return 1;
70 }
71
72 ima_hash_algo = i;
73out:
74 hash_setup_done = 1;
75 return 1;
76}
77__setup("ima_hash=", hash_setup);
78
79
80static int mmap_violation_check(enum ima_hooks func, struct file *file,
81 char **pathbuf, const char **pathname,
82 char *filename)
83{
84 struct inode *inode;
85 int rc = 0;
86
87 if ((func == MMAP_CHECK) && mapping_writably_mapped(file->f_mapping)) {
88 rc = -ETXTBSY;
89 inode = file_inode(file);
90
91 if (!*pathbuf)
92 *pathname = ima_d_path(&file->f_path, pathbuf,
93 filename);
94 integrity_audit_msg(AUDIT_INTEGRITY_DATA, inode, *pathname,
95 "mmap_file", "mmapped_writers", rc, 0);
96 }
97 return rc;
98}
99
100
101
102
103
104
105
106
107
108
109
110static void ima_rdwr_violation_check(struct file *file,
111 struct integrity_iint_cache *iint,
112 int must_measure,
113 char **pathbuf,
114 const char **pathname,
115 char *filename)
116{
117 struct inode *inode = file_inode(file);
118 fmode_t mode = file->f_mode;
119 bool send_tomtou = false, send_writers = false;
120
121 if (mode & FMODE_WRITE) {
122 if (atomic_read(&inode->i_readcount) && IS_IMA(inode)) {
123 if (!iint)
124 iint = integrity_iint_find(inode);
125
126 if (iint && test_bit(IMA_MUST_MEASURE,
127 &iint->atomic_flags))
128 send_tomtou = true;
129 }
130 } else {
131 if (must_measure)
132 set_bit(IMA_MUST_MEASURE, &iint->atomic_flags);
133 if (inode_is_open_for_write(inode) && must_measure)
134 send_writers = true;
135 }
136
137 if (!send_tomtou && !send_writers)
138 return;
139
140 *pathname = ima_d_path(&file->f_path, pathbuf, filename);
141
142 if (send_tomtou)
143 ima_add_violation(file, *pathname, iint,
144 "invalid_pcr", "ToMToU");
145 if (send_writers)
146 ima_add_violation(file, *pathname, iint,
147 "invalid_pcr", "open_writers");
148}
149
150static void ima_check_last_writer(struct integrity_iint_cache *iint,
151 struct inode *inode, struct file *file)
152{
153 fmode_t mode = file->f_mode;
154 bool update;
155
156 if (!(mode & FMODE_WRITE))
157 return;
158
159 mutex_lock(&iint->mutex);
160 if (atomic_read(&inode->i_writecount) == 1) {
161 update = test_and_clear_bit(IMA_UPDATE_XATTR,
162 &iint->atomic_flags);
163 if (!IS_I_VERSION(inode) ||
164 !inode_eq_iversion(inode, iint->version) ||
165 (iint->flags & IMA_NEW_FILE)) {
166 iint->flags &= ~(IMA_DONE_MASK | IMA_NEW_FILE);
167 iint->measured_pcrs = 0;
168 if (update)
169 ima_update_xattr(iint, file);
170 }
171 }
172 mutex_unlock(&iint->mutex);
173}
174
175
176
177
178
179
180
181void ima_file_free(struct file *file)
182{
183 struct inode *inode = file_inode(file);
184 struct integrity_iint_cache *iint;
185
186 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
187 return;
188
189 iint = integrity_iint_find(inode);
190 if (!iint)
191 return;
192
193 ima_check_last_writer(iint, inode, file);
194}
195
196static int process_measurement(struct file *file, const struct cred *cred,
197 u32 secid, char *buf, loff_t size, int mask,
198 enum ima_hooks func)
199{
200 struct inode *inode = file_inode(file);
201 struct integrity_iint_cache *iint = NULL;
202 struct ima_template_desc *template_desc = NULL;
203 char *pathbuf = NULL;
204 char filename[NAME_MAX];
205 const char *pathname = NULL;
206 int rc = 0, action, must_appraise = 0;
207 int pcr = CONFIG_IMA_MEASURE_PCR_IDX;
208 struct evm_ima_xattr_data *xattr_value = NULL;
209 struct modsig *modsig = NULL;
210 int xattr_len = 0;
211 bool violation_check;
212 enum hash_algo hash_algo;
213
214 if (!ima_policy_flag || !S_ISREG(inode->i_mode))
215 return 0;
216
217
218
219
220
221 action = ima_get_action(file_mnt_user_ns(file), inode, cred, secid,
222 mask, func, &pcr, &template_desc, NULL);
223 violation_check = ((func == FILE_CHECK || func == MMAP_CHECK) &&
224 (ima_policy_flag & IMA_MEASURE));
225 if (!action && !violation_check)
226 return 0;
227
228 must_appraise = action & IMA_APPRAISE;
229
230
231 if (action & IMA_FILE_APPRAISE)
232 func = FILE_CHECK;
233
234 inode_lock(inode);
235
236 if (action) {
237 iint = integrity_inode_get(inode);
238 if (!iint)
239 rc = -ENOMEM;
240 }
241
242 if (!rc && violation_check)
243 ima_rdwr_violation_check(file, iint, action & IMA_MEASURE,
244 &pathbuf, &pathname, filename);
245
246 inode_unlock(inode);
247
248 if (rc)
249 goto out;
250 if (!action)
251 goto out;
252
253 mutex_lock(&iint->mutex);
254
255 if (test_and_clear_bit(IMA_CHANGE_ATTR, &iint->atomic_flags))
256
257 iint->flags &= ~(IMA_APPRAISE | IMA_APPRAISED |
258 IMA_APPRAISE_SUBMASK | IMA_APPRAISED_SUBMASK |
259 IMA_ACTION_FLAGS);
260
261
262
263
264
265
266 if (test_and_clear_bit(IMA_CHANGE_XATTR, &iint->atomic_flags) ||
267 ((inode->i_sb->s_iflags & SB_I_IMA_UNVERIFIABLE_SIGNATURE) &&
268 !(inode->i_sb->s_iflags & SB_I_UNTRUSTED_MOUNTER) &&
269 !(action & IMA_FAIL_UNVERIFIABLE_SIGS))) {
270 iint->flags &= ~IMA_DONE_MASK;
271 iint->measured_pcrs = 0;
272 }
273
274
275
276
277
278 iint->flags |= action;
279 action &= IMA_DO_MASK;
280 action &= ~((iint->flags & (IMA_DONE_MASK ^ IMA_MEASURED)) >> 1);
281
282
283 if ((action & IMA_MEASURE) && (iint->measured_pcrs & (0x1 << pcr)))
284 action ^= IMA_MEASURE;
285
286
287 if ((action & IMA_HASH) &&
288 !(test_bit(IMA_DIGSIG, &iint->atomic_flags))) {
289 xattr_len = ima_read_xattr(file_dentry(file), &xattr_value);
290 if ((xattr_value && xattr_len > 2) &&
291 (xattr_value->type == EVM_IMA_XATTR_DIGSIG))
292 set_bit(IMA_DIGSIG, &iint->atomic_flags);
293 iint->flags |= IMA_HASHED;
294 action ^= IMA_HASH;
295 set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
296 }
297
298
299 if (!action) {
300 if (must_appraise) {
301 rc = mmap_violation_check(func, file, &pathbuf,
302 &pathname, filename);
303 if (!rc)
304 rc = ima_get_cache_status(iint, func);
305 }
306 goto out_locked;
307 }
308
309 if ((action & IMA_APPRAISE_SUBMASK) ||
310 strcmp(template_desc->name, IMA_TEMPLATE_IMA_NAME) != 0) {
311
312 xattr_len = ima_read_xattr(file_dentry(file), &xattr_value);
313
314
315
316
317
318
319 if (iint->flags & IMA_MODSIG_ALLOWED) {
320 rc = ima_read_modsig(func, buf, size, &modsig);
321
322 if (!rc && ima_template_has_modsig(template_desc) &&
323 iint->flags & IMA_MEASURED)
324 action |= IMA_MEASURE;
325 }
326 }
327
328 hash_algo = ima_get_hash_algo(xattr_value, xattr_len);
329
330 rc = ima_collect_measurement(iint, file, buf, size, hash_algo, modsig);
331 if (rc != 0 && rc != -EBADF && rc != -EINVAL)
332 goto out_locked;
333
334 if (!pathbuf)
335 pathname = ima_d_path(&file->f_path, &pathbuf, filename);
336
337 if (action & IMA_MEASURE)
338 ima_store_measurement(iint, file, pathname,
339 xattr_value, xattr_len, modsig, pcr,
340 template_desc);
341 if (rc == 0 && (action & IMA_APPRAISE_SUBMASK)) {
342 rc = ima_check_blacklist(iint, modsig, pcr);
343 if (rc != -EPERM) {
344 inode_lock(inode);
345 rc = ima_appraise_measurement(func, iint, file,
346 pathname, xattr_value,
347 xattr_len, modsig);
348 inode_unlock(inode);
349 }
350 if (!rc)
351 rc = mmap_violation_check(func, file, &pathbuf,
352 &pathname, filename);
353 }
354 if (action & IMA_AUDIT)
355 ima_audit_measurement(iint, pathname);
356
357 if ((file->f_flags & O_DIRECT) && (iint->flags & IMA_PERMIT_DIRECTIO))
358 rc = 0;
359out_locked:
360 if ((mask & MAY_WRITE) && test_bit(IMA_DIGSIG, &iint->atomic_flags) &&
361 !(iint->flags & IMA_NEW_FILE))
362 rc = -EACCES;
363 mutex_unlock(&iint->mutex);
364 kfree(xattr_value);
365 ima_free_modsig(modsig);
366out:
367 if (pathbuf)
368 __putname(pathbuf);
369 if (must_appraise) {
370 if (rc && (ima_appraise & IMA_APPRAISE_ENFORCE))
371 return -EACCES;
372 if (file->f_mode & FMODE_WRITE)
373 set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
374 }
375 return 0;
376}
377
378
379
380
381
382
383
384
385
386
387
388
389int ima_file_mmap(struct file *file, unsigned long prot)
390{
391 u32 secid;
392
393 if (file && (prot & PROT_EXEC)) {
394 security_task_getsecid(current, &secid);
395 return process_measurement(file, current_cred(), secid, NULL,
396 0, MAY_EXEC, MMAP_CHECK);
397 }
398
399 return 0;
400}
401
402
403
404
405
406
407
408
409
410
411
412
413
414int ima_file_mprotect(struct vm_area_struct *vma, unsigned long prot)
415{
416 struct ima_template_desc *template = NULL;
417 struct file *file = vma->vm_file;
418 char filename[NAME_MAX];
419 char *pathbuf = NULL;
420 const char *pathname = NULL;
421 struct inode *inode;
422 int result = 0;
423 int action;
424 u32 secid;
425 int pcr;
426
427
428 if (!(ima_policy_flag & IMA_APPRAISE) || !vma->vm_file ||
429 !(prot & PROT_EXEC) || (vma->vm_flags & VM_EXEC))
430 return 0;
431
432 security_task_getsecid(current, &secid);
433 inode = file_inode(vma->vm_file);
434 action = ima_get_action(file_mnt_user_ns(vma->vm_file), inode,
435 current_cred(), secid, MAY_EXEC, MMAP_CHECK,
436 &pcr, &template, 0);
437
438
439 if (!(action & (IMA_MEASURE | IMA_APPRAISE_SUBMASK)))
440 return 0;
441
442 if (action & IMA_APPRAISE_SUBMASK)
443 result = -EPERM;
444
445 file = vma->vm_file;
446 pathname = ima_d_path(&file->f_path, &pathbuf, filename);
447 integrity_audit_msg(AUDIT_INTEGRITY_DATA, inode, pathname,
448 "collect_data", "failed-mprotect", result, 0);
449 if (pathbuf)
450 __putname(pathbuf);
451
452 return result;
453}
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468int ima_bprm_check(struct linux_binprm *bprm)
469{
470 int ret;
471 u32 secid;
472
473 security_task_getsecid(current, &secid);
474 ret = process_measurement(bprm->file, current_cred(), secid, NULL, 0,
475 MAY_EXEC, BPRM_CHECK);
476 if (ret)
477 return ret;
478
479 security_cred_getsecid(bprm->cred, &secid);
480 return process_measurement(bprm->file, bprm->cred, secid, NULL, 0,
481 MAY_EXEC, CREDS_CHECK);
482}
483
484
485
486
487
488
489
490
491
492
493
494int ima_file_check(struct file *file, int mask)
495{
496 u32 secid;
497
498 security_task_getsecid(current, &secid);
499 return process_measurement(file, current_cred(), secid, NULL, 0,
500 mask & (MAY_READ | MAY_WRITE | MAY_EXEC |
501 MAY_APPEND), FILE_CHECK);
502}
503EXPORT_SYMBOL_GPL(ima_file_check);
504
505static int __ima_inode_hash(struct inode *inode, char *buf, size_t buf_size)
506{
507 struct integrity_iint_cache *iint;
508 int hash_algo;
509
510 if (!ima_policy_flag)
511 return -EOPNOTSUPP;
512
513 iint = integrity_iint_find(inode);
514 if (!iint)
515 return -EOPNOTSUPP;
516
517 mutex_lock(&iint->mutex);
518
519
520
521
522
523 if (!iint->ima_hash) {
524 mutex_unlock(&iint->mutex);
525 return -EOPNOTSUPP;
526 }
527
528 if (buf) {
529 size_t copied_size;
530
531 copied_size = min_t(size_t, iint->ima_hash->length, buf_size);
532 memcpy(buf, iint->ima_hash->digest, copied_size);
533 }
534 hash_algo = iint->ima_hash->algo;
535 mutex_unlock(&iint->mutex);
536
537 return hash_algo;
538}
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558int ima_file_hash(struct file *file, char *buf, size_t buf_size)
559{
560 if (!file)
561 return -EINVAL;
562
563 return __ima_inode_hash(file_inode(file), buf, buf_size);
564}
565EXPORT_SYMBOL_GPL(ima_file_hash);
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585int ima_inode_hash(struct inode *inode, char *buf, size_t buf_size)
586{
587 if (!inode)
588 return -EINVAL;
589
590 return __ima_inode_hash(inode, buf, buf_size);
591}
592EXPORT_SYMBOL_GPL(ima_inode_hash);
593
594
595
596
597
598
599
600
601
602
603void ima_post_create_tmpfile(struct user_namespace *mnt_userns,
604 struct inode *inode)
605{
606 struct integrity_iint_cache *iint;
607 int must_appraise;
608
609 must_appraise = ima_must_appraise(mnt_userns, inode, MAY_ACCESS,
610 FILE_CHECK);
611 if (!must_appraise)
612 return;
613
614
615 iint = integrity_inode_get(inode);
616 if (!iint)
617 return;
618
619
620 set_bit(IMA_UPDATE_XATTR, &iint->atomic_flags);
621 iint->ima_file_status = INTEGRITY_PASS;
622}
623
624
625
626
627
628
629
630
631
632void ima_post_path_mknod(struct user_namespace *mnt_userns,
633 struct dentry *dentry)
634{
635 struct integrity_iint_cache *iint;
636 struct inode *inode = dentry->d_inode;
637 int must_appraise;
638
639 must_appraise = ima_must_appraise(mnt_userns, inode, MAY_ACCESS,
640 FILE_CHECK);
641 if (!must_appraise)
642 return;
643
644
645 iint = integrity_inode_get(inode);
646 if (!iint)
647 return;
648
649
650 iint->flags |= IMA_NEW_FILE;
651}
652
653
654
655
656
657
658
659
660
661
662
663
664
665int ima_read_file(struct file *file, enum kernel_read_file_id read_id,
666 bool contents)
667{
668 enum ima_hooks func;
669 u32 secid;
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684 if (contents)
685 return 0;
686
687
688 func = read_idmap[read_id] ?: FILE_CHECK;
689 security_task_getsecid(current, &secid);
690 return process_measurement(file, current_cred(), secid, NULL,
691 0, MAY_READ, func);
692}
693
694const int read_idmap[READING_MAX_ID] = {
695 [READING_FIRMWARE] = FIRMWARE_CHECK,
696 [READING_MODULE] = MODULE_CHECK,
697 [READING_KEXEC_IMAGE] = KEXEC_KERNEL_CHECK,
698 [READING_KEXEC_INITRAMFS] = KEXEC_INITRAMFS_CHECK,
699 [READING_POLICY] = POLICY_CHECK
700};
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715int ima_post_read_file(struct file *file, void *buf, loff_t size,
716 enum kernel_read_file_id read_id)
717{
718 enum ima_hooks func;
719 u32 secid;
720
721
722 if (!file && read_id == READING_X509_CERTIFICATE)
723 return 0;
724
725 if (!file || !buf || size == 0) {
726 if (ima_appraise & IMA_APPRAISE_ENFORCE)
727 return -EACCES;
728 return 0;
729 }
730
731 func = read_idmap[read_id] ?: FILE_CHECK;
732 security_task_getsecid(current, &secid);
733 return process_measurement(file, current_cred(), secid, buf, size,
734 MAY_READ, func);
735}
736
737
738
739
740
741
742
743
744
745
746
747
748
749int ima_load_data(enum kernel_load_data_id id, bool contents)
750{
751 bool ima_enforce, sig_enforce;
752
753 ima_enforce =
754 (ima_appraise & IMA_APPRAISE_ENFORCE) == IMA_APPRAISE_ENFORCE;
755
756 switch (id) {
757 case LOADING_KEXEC_IMAGE:
758 if (IS_ENABLED(CONFIG_KEXEC_SIG)
759 && arch_ima_get_secureboot()) {
760 pr_err("impossible to appraise a kernel image without a file descriptor; try using kexec_file_load syscall.\n");
761 return -EACCES;
762 }
763
764 if (ima_enforce && (ima_appraise & IMA_APPRAISE_KEXEC)) {
765 pr_err("impossible to appraise a kernel image without a file descriptor; try using kexec_file_load syscall.\n");
766 return -EACCES;
767 }
768 break;
769 case LOADING_FIRMWARE:
770 if (ima_enforce && (ima_appraise & IMA_APPRAISE_FIRMWARE) && !contents) {
771 pr_err("Prevent firmware sysfs fallback loading.\n");
772 return -EACCES;
773 }
774 break;
775 case LOADING_MODULE:
776 sig_enforce = is_module_sig_enforced();
777
778 if (ima_enforce && (!sig_enforce
779 && (ima_appraise & IMA_APPRAISE_MODULES))) {
780 pr_err("impossible to appraise a module without a file descriptor. sig_enforce kernel parameter might help\n");
781 return -EACCES;
782 }
783 default:
784 break;
785 }
786 return 0;
787}
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802int ima_post_load_data(char *buf, loff_t size,
803 enum kernel_load_data_id load_id,
804 char *description)
805{
806 if (load_id == LOADING_FIRMWARE) {
807 if ((ima_appraise & IMA_APPRAISE_FIRMWARE) &&
808 (ima_appraise & IMA_APPRAISE_ENFORCE)) {
809 pr_err("Prevent firmware loading_store.\n");
810 return -EACCES;
811 }
812 return 0;
813 }
814
815 return 0;
816}
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832void process_buffer_measurement(struct user_namespace *mnt_userns,
833 struct inode *inode, const void *buf, int size,
834 const char *eventname, enum ima_hooks func,
835 int pcr, const char *func_data,
836 bool buf_hash)
837{
838 int ret = 0;
839 const char *audit_cause = "ENOMEM";
840 struct ima_template_entry *entry = NULL;
841 struct integrity_iint_cache iint = {};
842 struct ima_event_data event_data = {.iint = &iint,
843 .filename = eventname,
844 .buf = buf,
845 .buf_len = size};
846 struct ima_template_desc *template;
847 struct {
848 struct ima_digest_data hdr;
849 char digest[IMA_MAX_DIGEST_SIZE];
850 } hash = {};
851 char digest_hash[IMA_MAX_DIGEST_SIZE];
852 int digest_hash_len = hash_digest_size[ima_hash_algo];
853 int violation = 0;
854 int action = 0;
855 u32 secid;
856
857 if (!ima_policy_flag)
858 return;
859
860 template = ima_template_desc_buf();
861 if (!template) {
862 ret = -EINVAL;
863 audit_cause = "ima_template_desc_buf";
864 goto out;
865 }
866
867
868
869
870
871
872
873
874 if (func) {
875 security_task_getsecid(current, &secid);
876 action = ima_get_action(mnt_userns, inode, current_cred(),
877 secid, 0, func, &pcr, &template,
878 func_data);
879 if (!(action & IMA_MEASURE))
880 return;
881 }
882
883 if (!pcr)
884 pcr = CONFIG_IMA_MEASURE_PCR_IDX;
885
886 iint.ima_hash = &hash.hdr;
887 iint.ima_hash->algo = ima_hash_algo;
888 iint.ima_hash->length = hash_digest_size[ima_hash_algo];
889
890 ret = ima_calc_buffer_hash(buf, size, iint.ima_hash);
891 if (ret < 0) {
892 audit_cause = "hashing_error";
893 goto out;
894 }
895
896 if (buf_hash) {
897 memcpy(digest_hash, hash.hdr.digest, digest_hash_len);
898
899 ret = ima_calc_buffer_hash(digest_hash, digest_hash_len,
900 iint.ima_hash);
901 if (ret < 0) {
902 audit_cause = "hashing_error";
903 goto out;
904 }
905
906 event_data.buf = digest_hash;
907 event_data.buf_len = digest_hash_len;
908 }
909
910 ret = ima_alloc_init_template(&event_data, &entry, template);
911 if (ret < 0) {
912 audit_cause = "alloc_entry";
913 goto out;
914 }
915
916 ret = ima_store_template(entry, violation, NULL, event_data.buf, pcr);
917 if (ret < 0) {
918 audit_cause = "store_entry";
919 ima_free_template_entry(entry);
920 }
921
922out:
923 if (ret < 0)
924 integrity_audit_message(AUDIT_INTEGRITY_PCR, NULL, eventname,
925 func_measure_str(func),
926 audit_cause, ret, 0, ret);
927
928 return;
929}
930
931
932
933
934
935
936
937
938
939void ima_kexec_cmdline(int kernel_fd, const void *buf, int size)
940{
941 struct fd f;
942
943 if (!buf || !size)
944 return;
945
946 f = fdget(kernel_fd);
947 if (!f.file)
948 return;
949
950 process_buffer_measurement(file_mnt_user_ns(f.file), file_inode(f.file),
951 buf, size, "kexec-cmdline", KEXEC_CMDLINE, 0,
952 NULL, false);
953 fdput(f);
954}
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969void ima_measure_critical_data(const char *event_label,
970 const char *event_name,
971 const void *buf, size_t buf_len,
972 bool hash)
973{
974 if (!event_name || !event_label || !buf || !buf_len)
975 return;
976
977 process_buffer_measurement(&init_user_ns, NULL, buf, buf_len, event_name,
978 CRITICAL_DATA, 0, event_label,
979 hash);
980}
981
982static int __init init_ima(void)
983{
984 int error;
985
986 ima_appraise_parse_cmdline();
987 ima_init_template_list();
988 hash_setup(CONFIG_IMA_DEFAULT_HASH);
989 error = ima_init();
990
991 if (error && strcmp(hash_algo_name[ima_hash_algo],
992 CONFIG_IMA_DEFAULT_HASH) != 0) {
993 pr_info("Allocating %s failed, going to use default hash algorithm %s\n",
994 hash_algo_name[ima_hash_algo], CONFIG_IMA_DEFAULT_HASH);
995 hash_setup_done = 0;
996 hash_setup(CONFIG_IMA_DEFAULT_HASH);
997 error = ima_init();
998 }
999
1000 if (error)
1001 return error;
1002
1003 error = register_blocking_lsm_notifier(&ima_lsm_policy_notifier);
1004 if (error)
1005 pr_warn("Couldn't register LSM notifier, error %d\n", error);
1006
1007 if (!error)
1008 ima_update_policy_flag();
1009
1010 return error;
1011}
1012
1013late_initcall(init_ima);
1014