1
2
3
4
5
6
7
8
9
10
11
12
13
14#include <linux/init.h>
15#include <linux/scatterlist.h>
16#include <linux/slab.h>
17#include <linux/err.h>
18
19#include "ima.h"
20
21
22const char boot_aggregate_name[] = "boot_aggregate";
23struct tpm_chip *ima_tpm_chip;
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40static int __init ima_add_boot_aggregate(void)
41{
42 static const char op[] = "add_boot_aggregate";
43 const char *audit_cause = "ENOMEM";
44 struct ima_template_entry *entry;
45 struct integrity_iint_cache tmp_iint, *iint = &tmp_iint;
46 struct ima_event_data event_data = { .iint = iint,
47 .filename = boot_aggregate_name };
48 int result = -ENOMEM;
49 int violation = 0;
50 struct {
51 struct ima_digest_data hdr;
52 char digest[TPM_MAX_DIGEST_SIZE];
53 } hash;
54
55 memset(iint, 0, sizeof(*iint));
56 memset(&hash, 0, sizeof(hash));
57 iint->ima_hash = &hash.hdr;
58 iint->ima_hash->algo = ima_hash_algo;
59 iint->ima_hash->length = hash_digest_size[ima_hash_algo];
60
61
62
63
64
65
66
67
68
69
70
71
72
73 if (ima_tpm_chip) {
74 result = ima_calc_boot_aggregate(&hash.hdr);
75 if (result < 0) {
76 audit_cause = "hashing_error";
77 goto err_out;
78 }
79 }
80
81 result = ima_alloc_init_template(&event_data, &entry, NULL);
82 if (result < 0) {
83 audit_cause = "alloc_entry";
84 goto err_out;
85 }
86
87 result = ima_store_template(entry, violation, NULL,
88 boot_aggregate_name,
89 CONFIG_IMA_MEASURE_PCR_IDX);
90 if (result < 0) {
91 ima_free_template_entry(entry);
92 audit_cause = "store_entry";
93 goto err_out;
94 }
95 return 0;
96err_out:
97 integrity_audit_msg(AUDIT_INTEGRITY_PCR, NULL, boot_aggregate_name, op,
98 audit_cause, result, 0);
99 return result;
100}
101
102#ifdef CONFIG_IMA_LOAD_X509
103void __init ima_load_x509(void)
104{
105 int unset_flags = ima_policy_flag & IMA_APPRAISE;
106
107 ima_policy_flag &= ~unset_flags;
108 integrity_load_x509(INTEGRITY_KEYRING_IMA, CONFIG_IMA_X509_PATH);
109 ima_policy_flag |= unset_flags;
110}
111#endif
112
113int __init ima_init(void)
114{
115 int rc;
116
117 ima_tpm_chip = tpm_default_chip();
118 if (!ima_tpm_chip)
119 pr_info("No TPM chip found, activating TPM-bypass!\n");
120
121 rc = integrity_init_keyring(INTEGRITY_KEYRING_IMA);
122 if (rc)
123 return rc;
124
125 rc = ima_init_crypto();
126 if (rc)
127 return rc;
128 rc = ima_init_template();
129 if (rc != 0)
130 return rc;
131
132
133 ima_load_kexec_buffer();
134
135 rc = ima_init_digests();
136 if (rc != 0)
137 return rc;
138 rc = ima_add_boot_aggregate();
139 if (rc != 0)
140 return rc;
141
142 ima_init_policy();
143
144 rc = ima_fs_init();
145 if (rc != 0)
146 return rc;
147
148 ima_init_key_queue();
149
150 return rc;
151}
152