2 * Copyright (C) 2005,2006,2007,2008 IBM Corporation
5 * Mimi Zohar <zohar@us.ibm.com>
6 * Kylene Hall <kjhall@us.ibm.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, version 2 of the License.
13 * Calculates md5/sha1 file hash, template hash, boot-aggreate hash
16 #include <linux/kernel.h>
17 #include <linux/file.h>
18 #include <linux/crypto.h>
19 #include <linux/scatterlist.h>
20 #include <linux/err.h>
21 #include <linux/slab.h>
22 #include <crypto/hash.h>
23 #include <crypto/hash_info.h>
26 static struct crypto_shash *ima_shash_tfm;
28 int ima_init_crypto(void)
32 ima_shash_tfm = crypto_alloc_shash(hash_algo_name[ima_hash_algo], 0, 0);
33 if (IS_ERR(ima_shash_tfm)) {
34 rc = PTR_ERR(ima_shash_tfm);
35 pr_err("Can not allocate %s (reason: %ld)\n",
36 hash_algo_name[ima_hash_algo], rc);
42 static struct crypto_shash *ima_alloc_tfm(enum hash_algo algo)
44 struct crypto_shash *tfm = ima_shash_tfm;
47 if (algo != ima_hash_algo && algo < HASH_ALGO__LAST) {
48 tfm = crypto_alloc_shash(hash_algo_name[algo], 0, 0);
51 pr_err("Can not allocate %s (reason: %d)\n",
52 hash_algo_name[algo], rc);
58 static void ima_free_tfm(struct crypto_shash *tfm)
60 if (tfm != ima_shash_tfm)
61 crypto_free_shash(tfm);
65 * Calculate the MD5/SHA1 file digest
67 static int ima_calc_file_hash_tfm(struct file *file,
68 struct ima_digest_data *hash,
69 struct crypto_shash *tfm)
71 loff_t i_size, offset = 0;
75 struct shash_desc shash;
76 char ctx[crypto_shash_descsize(tfm)];
82 hash->length = crypto_shash_digestsize(tfm);
84 rc = crypto_shash_init(&desc.shash);
88 rbuf = kzalloc(PAGE_SIZE, GFP_KERNEL);
93 if (!(file->f_mode & FMODE_READ)) {
94 file->f_mode |= FMODE_READ;
97 i_size = i_size_read(file_inode(file));
98 while (offset < i_size) {
101 rbuf_len = kernel_read(file, offset, rbuf, PAGE_SIZE);
110 rc = crypto_shash_update(&desc.shash, rbuf, rbuf_len);
116 rc = crypto_shash_final(&desc.shash, hash->digest);
118 file->f_mode &= ~FMODE_READ;
123 int ima_calc_file_hash(struct file *file, struct ima_digest_data *hash)
125 struct crypto_shash *tfm;
128 tfm = ima_alloc_tfm(hash->algo);
132 rc = ima_calc_file_hash_tfm(file, hash, tfm);
140 * Calculate the hash of template data
142 static int ima_calc_field_array_hash_tfm(struct ima_field_data *field_data,
143 struct ima_template_desc *td,
145 struct ima_digest_data *hash,
146 struct crypto_shash *tfm)
149 struct shash_desc shash;
150 char ctx[crypto_shash_descsize(tfm)];
154 desc.shash.tfm = tfm;
155 desc.shash.flags = 0;
157 hash->length = crypto_shash_digestsize(tfm);
159 rc = crypto_shash_init(&desc.shash);
163 for (i = 0; i < num_fields; i++) {
164 if (strcmp(td->name, IMA_TEMPLATE_IMA_NAME) != 0) {
165 rc = crypto_shash_update(&desc.shash,
166 (const u8 *) &field_data[i].len,
167 sizeof(field_data[i].len));
171 rc = crypto_shash_update(&desc.shash, field_data[i].data,
178 rc = crypto_shash_final(&desc.shash, hash->digest);
183 int ima_calc_field_array_hash(struct ima_field_data *field_data,
184 struct ima_template_desc *desc, int num_fields,
185 struct ima_digest_data *hash)
187 struct crypto_shash *tfm;
190 tfm = ima_alloc_tfm(hash->algo);
194 rc = ima_calc_field_array_hash_tfm(field_data, desc, num_fields,
202 static void __init ima_pcrread(int idx, u8 *pcr)
207 if (tpm_pcr_read(TPM_ANY_NUM, idx, pcr) != 0)
208 pr_err("IMA: Error Communicating to TPM chip\n");
212 * Calculate the boot aggregate hash
214 static int __init ima_calc_boot_aggregate_tfm(char *digest,
215 struct crypto_shash *tfm)
217 u8 pcr_i[TPM_DIGEST_SIZE];
220 struct shash_desc shash;
221 char ctx[crypto_shash_descsize(tfm)];
224 desc.shash.tfm = tfm;
225 desc.shash.flags = 0;
227 rc = crypto_shash_init(&desc.shash);
231 /* cumulative sha1 over tpm registers 0-7 */
232 for (i = TPM_PCR0; i < TPM_PCR8; i++) {
233 ima_pcrread(i, pcr_i);
234 /* now accumulate with current aggregate */
235 rc = crypto_shash_update(&desc.shash, pcr_i, TPM_DIGEST_SIZE);
238 crypto_shash_final(&desc.shash, digest);
242 int __init ima_calc_boot_aggregate(struct ima_digest_data *hash)
244 struct crypto_shash *tfm;
247 tfm = ima_alloc_tfm(hash->algo);
251 hash->length = crypto_shash_digestsize(tfm);
252 rc = ima_calc_boot_aggregate_tfm(hash->digest, tfm);