1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2005,2006,2007,2008 IBM Corporation
6 * Reiner Sailer <sailer@watson.ibm.com>
7 * Leendert van Doorn <leendert@watson.ibm.com>
8 * Mimi Zohar <zohar@us.ibm.com>
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 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 hash 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_MAX_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 = ima_hash_algo;
59 iint->ima_hash->length = hash_digest_size[ima_hash_algo];
62 * With TPM 2.0 hash agility, TPM chips could support multiple TPM
63 * PCR banks, allowing firmware to configure and enable different
64 * banks. The SHA1 bank is not necessarily enabled.
66 * Use the same hash algorithm for reading the TPM PCRs as for
67 * calculating the boot aggregate digest. Preference is given to
68 * the configured IMA default hash algorithm. Otherwise, use the
69 * TCG required banks - SHA256 for TPM 2.0, SHA1 for TPM 1.2.
70 * Ultimately select SHA1 also for TPM 2.0 if the SHA256 PCR bank
74 result = ima_calc_boot_aggregate(&hash.hdr);
76 audit_cause = "hashing_error";
81 result = ima_alloc_init_template(&event_data, &entry, NULL);
83 audit_cause = "alloc_entry";
87 result = ima_store_template(entry, violation, NULL,
89 CONFIG_IMA_MEASURE_PCR_IDX);
91 ima_free_template_entry(entry);
92 audit_cause = "store_entry";
97 integrity_audit_msg(AUDIT_INTEGRITY_PCR, NULL, boot_aggregate_name, op,
98 audit_cause, result, 0);
102 #ifdef CONFIG_IMA_LOAD_X509
103 void __init ima_load_x509(void)
105 int unset_flags = ima_policy_flag & IMA_APPRAISE;
107 ima_policy_flag &= ~unset_flags;
108 integrity_load_x509(INTEGRITY_KEYRING_IMA, CONFIG_IMA_X509_PATH);
109 ima_policy_flag |= unset_flags;
113 int __init ima_init(void)
117 ima_tpm_chip = tpm_default_chip();
119 pr_info("No TPM chip found, activating TPM-bypass!\n");
121 rc = integrity_init_keyring(INTEGRITY_KEYRING_IMA);
125 rc = ima_init_crypto();
128 rc = ima_init_template();
132 /* It can be called before ima_init_digests(), it does not use TPM. */
133 ima_load_kexec_buffer();
135 rc = ima_init_digests();
138 rc = ima_add_boot_aggregate(); /* boot aggregate must be first entry */
148 ima_init_key_queue();