1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2005,2006,2007,2008 IBM Corporation
11 * initialization and cleanup functions
14 #include <linux/init.h>
15 #include <linux/scatterlist.h>
16 #include <linux/slab.h>
17 #include <linux/err.h>
21 /* name for boot aggregate entry */
22 static const char boot_aggregate_name[] = "boot_aggregate";
23 struct tpm_chip *ima_tpm_chip;
25 /* Add the boot aggregate to the IMA measurement list and extend
28 * Calculate the boot aggregate, a SHA1 over tpm registers 0-7,
29 * assuming a TPM chip exists, and zeroes if the TPM chip does not
30 * exist. Add the boot aggregate measurement to the measurement
31 * list and extend the PCR register.
33 * If a tpm chip does not exist, indicate the core root of trust is
34 * not hardware based by invalidating the aggregate PCR value.
35 * (The aggregate PCR value is invalidated by adding one value to
36 * the measurement list and extending the aggregate PCR value with
37 * a different value.) Violations add a zero entry to the measurement
38 * list and extend the aggregate PCR value with ff...ff's.
40 static int __init ima_add_boot_aggregate(void)
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 };
51 struct ima_digest_data hdr;
52 char digest[TPM_DIGEST_SIZE];
55 memset(iint, 0, sizeof(*iint));
56 memset(&hash, 0, sizeof(hash));
57 iint->ima_hash = &hash.hdr;
58 iint->ima_hash->algo = HASH_ALGO_SHA1;
59 iint->ima_hash->length = SHA1_DIGEST_SIZE;
62 result = ima_calc_boot_aggregate(&hash.hdr);
64 audit_cause = "hashing_error";
69 result = ima_alloc_init_template(&event_data, &entry, NULL);
71 audit_cause = "alloc_entry";
75 result = ima_store_template(entry, violation, NULL,
77 CONFIG_IMA_MEASURE_PCR_IDX);
79 ima_free_template_entry(entry);
80 audit_cause = "store_entry";
85 integrity_audit_msg(AUDIT_INTEGRITY_PCR, NULL, boot_aggregate_name, op,
86 audit_cause, result, 0);
90 #ifdef CONFIG_IMA_LOAD_X509
91 void __init ima_load_x509(void)
93 int unset_flags = ima_policy_flag & IMA_APPRAISE;
95 ima_policy_flag &= ~unset_flags;
96 integrity_load_x509(INTEGRITY_KEYRING_IMA, CONFIG_IMA_X509_PATH);
97 ima_policy_flag |= unset_flags;
101 int __init ima_init(void)
105 ima_tpm_chip = tpm_default_chip();
107 pr_info("No TPM chip found, activating TPM-bypass!\n");
109 rc = integrity_init_keyring(INTEGRITY_KEYRING_IMA);
113 rc = ima_init_crypto();
116 rc = ima_init_template();
120 /* It can be called before ima_init_digests(), it does not use TPM. */
121 ima_load_kexec_buffer();
123 rc = ima_init_digests();
126 rc = ima_add_boot_aggregate(); /* boot aggregate must be first entry */
136 ima_init_key_queue();