ima_crypto.c 4.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * Copyright (C) 2005,2006,2007,2008 IBM Corporation
 *
 * Authors:
 * Mimi Zohar <zohar@us.ibm.com>
 * Kylene Hall <kjhall@us.ibm.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, version 2 of the License.
 *
 * File: ima_crypto.c
 * 	Calculates md5/sha1 file hash, template hash, boot-aggreate hash
 */

#include <linux/kernel.h>
#include <linux/file.h>
#include <linux/crypto.h>
#include <linux/scatterlist.h>
#include <linux/err.h>
21
#include <linux/slab.h>
22
#include <crypto/hash.h>
23
#include <crypto/hash_info.h>
24 25
#include "ima.h"

26 27 28
static struct crypto_shash *ima_shash_tfm;

int ima_init_crypto(void)
29
{
30
	long rc;
31

32
	ima_shash_tfm = crypto_alloc_shash(hash_algo_name[ima_hash_algo], 0, 0);
33 34
	if (IS_ERR(ima_shash_tfm)) {
		rc = PTR_ERR(ima_shash_tfm);
35 36
		pr_err("Can not allocate %s (reason: %ld)\n",
		       hash_algo_name[ima_hash_algo], rc);
37 38
		return rc;
	}
39
	return 0;
40 41
}

42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
static struct crypto_shash *ima_alloc_tfm(enum hash_algo algo)
{
	struct crypto_shash *tfm = ima_shash_tfm;
	int rc;

	if (algo != ima_hash_algo && algo < HASH_ALGO__LAST) {
		tfm = crypto_alloc_shash(hash_algo_name[algo], 0, 0);
		if (IS_ERR(tfm)) {
			rc = PTR_ERR(tfm);
			pr_err("Can not allocate %s (reason: %d)\n",
			       hash_algo_name[algo], rc);
		}
	}
	return tfm;
}

static void ima_free_tfm(struct crypto_shash *tfm)
{
	if (tfm != ima_shash_tfm)
		crypto_free_shash(tfm);
}

64 65 66
/*
 * Calculate the MD5/SHA1 file digest
 */
67 68 69
static int ima_calc_file_hash_tfm(struct file *file,
				  struct ima_digest_data *hash,
				  struct crypto_shash *tfm)
70
{
M
Mimi Zohar 已提交
71
	loff_t i_size, offset = 0;
72
	char *rbuf;
M
Mimi Zohar 已提交
73
	int rc, read = 0;
74 75
	struct {
		struct shash_desc shash;
76
		char ctx[crypto_shash_descsize(tfm)];
77
	} desc;
78

79
	desc.shash.tfm = tfm;
80 81
	desc.shash.flags = 0;

82 83
	hash->length = crypto_shash_digestsize(tfm);

84
	rc = crypto_shash_init(&desc.shash);
85 86 87 88 89 90 91 92
	if (rc != 0)
		return rc;

	rbuf = kzalloc(PAGE_SIZE, GFP_KERNEL);
	if (!rbuf) {
		rc = -ENOMEM;
		goto out;
	}
M
Mimi Zohar 已提交
93 94 95 96
	if (!(file->f_mode & FMODE_READ)) {
		file->f_mode |= FMODE_READ;
		read = 1;
	}
A
Al Viro 已提交
97
	i_size = i_size_read(file_inode(file));
98 99 100 101 102 103 104 105
	while (offset < i_size) {
		int rbuf_len;

		rbuf_len = kernel_read(file, offset, rbuf, PAGE_SIZE);
		if (rbuf_len < 0) {
			rc = rbuf_len;
			break;
		}
M
Mimi Zohar 已提交
106 107
		if (rbuf_len == 0)
			break;
108 109
		offset += rbuf_len;

110
		rc = crypto_shash_update(&desc.shash, rbuf, rbuf_len);
111 112 113 114 115
		if (rc)
			break;
	}
	kfree(rbuf);
	if (!rc)
116
		rc = crypto_shash_final(&desc.shash, hash->digest);
M
Mimi Zohar 已提交
117 118
	if (read)
		file->f_mode &= ~FMODE_READ;
119 120 121 122
out:
	return rc;
}

123 124
int ima_calc_file_hash(struct file *file, struct ima_digest_data *hash)
{
125
	struct crypto_shash *tfm;
126 127
	int rc;

128 129 130
	tfm = ima_alloc_tfm(hash->algo);
	if (IS_ERR(tfm))
		return PTR_ERR(tfm);
131 132 133

	rc = ima_calc_file_hash_tfm(file, hash, tfm);

134
	ima_free_tfm(tfm);
135 136 137 138

	return rc;
}

139
/*
140
 * Calculate the hash of a given buffer
141
 */
142
int ima_calc_buffer_hash(const void *buf, int len, struct ima_digest_data *hash)
143
{
144 145 146 147
	struct {
		struct shash_desc shash;
		char ctx[crypto_shash_descsize(ima_shash_tfm)];
	} desc;
148

149 150
	desc.shash.tfm = ima_shash_tfm;
	desc.shash.flags = 0;
151

152 153 154 155 156
	/* this function uses default algo */
	hash->algo = ima_hash_algo;
	hash->length = crypto_shash_digestsize(ima_shash_tfm);

	return crypto_shash_digest(&desc.shash, buf, len, hash->digest);
157 158
}

159
static void __init ima_pcrread(int idx, u8 *pcr)
160 161 162 163 164
{
	if (!ima_used_chip)
		return;

	if (tpm_pcr_read(TPM_ANY_NUM, idx, pcr) != 0)
165
		pr_err("IMA: Error Communicating to TPM chip\n");
166 167 168 169 170
}

/*
 * Calculate the boot aggregate hash
 */
171
int __init ima_calc_boot_aggregate(char *digest)
172
{
173
	u8 pcr_i[TPM_DIGEST_SIZE];
174
	int rc, i;
175 176 177 178 179 180 181
	struct {
		struct shash_desc shash;
		char ctx[crypto_shash_descsize(ima_shash_tfm)];
	} desc;

	desc.shash.tfm = ima_shash_tfm;
	desc.shash.flags = 0;
182

183
	rc = crypto_shash_init(&desc.shash);
184 185 186 187 188 189 190
	if (rc != 0)
		return rc;

	/* cumulative sha1 over tpm registers 0-7 */
	for (i = TPM_PCR0; i < TPM_PCR8; i++) {
		ima_pcrread(i, pcr_i);
		/* now accumulate with current aggregate */
191
		rc = crypto_shash_update(&desc.shash, pcr_i, TPM_DIGEST_SIZE);
192 193
	}
	if (!rc)
194
		crypto_shash_final(&desc.shash, digest);
195 196
	return rc;
}