ima_crypto.c 5.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * 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
13
 *	Calculates md5/sha1 file hash, template hash, boot-aggreate hash
14 15
 */

16 17
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

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

28 29 30
static struct crypto_shash *ima_shash_tfm;

int ima_init_crypto(void)
31
{
32
	long rc;
33

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

44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
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);
}

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

81
	desc.shash.tfm = tfm;
82 83
	desc.shash.flags = 0;

84 85
	hash->length = crypto_shash_digestsize(tfm);

86
	rc = crypto_shash_init(&desc.shash);
87 88 89
	if (rc != 0)
		return rc;

90 91 92
	i_size = i_size_read(file_inode(file));

	if (i_size == 0)
93
		goto out;
94 95 96 97 98

	rbuf = kzalloc(PAGE_SIZE, GFP_KERNEL);
	if (!rbuf)
		return -ENOMEM;

M
Mimi Zohar 已提交
99 100 101 102
	if (!(file->f_mode & FMODE_READ)) {
		file->f_mode |= FMODE_READ;
		read = 1;
	}
103

104 105 106 107 108 109 110 111
	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 已提交
112 113
		if (rbuf_len == 0)
			break;
114 115
		offset += rbuf_len;

116
		rc = crypto_shash_update(&desc.shash, rbuf, rbuf_len);
117 118 119
		if (rc)
			break;
	}
M
Mimi Zohar 已提交
120 121
	if (read)
		file->f_mode &= ~FMODE_READ;
122
	kfree(rbuf);
123
out:
124 125
	if (!rc)
		rc = crypto_shash_final(&desc.shash, hash->digest);
126 127 128
	return rc;
}

129 130
int ima_calc_file_hash(struct file *file, struct ima_digest_data *hash)
{
131
	struct crypto_shash *tfm;
132 133
	int rc;

134 135 136
	tfm = ima_alloc_tfm(hash->algo);
	if (IS_ERR(tfm))
		return PTR_ERR(tfm);
137 138 139

	rc = ima_calc_file_hash_tfm(file, hash, tfm);

140
	ima_free_tfm(tfm);
141 142 143 144

	return rc;
}

145
/*
146
 * Calculate the hash of template data
147
 */
148
static int ima_calc_field_array_hash_tfm(struct ima_field_data *field_data,
149
					 struct ima_template_desc *td,
150 151 152
					 int num_fields,
					 struct ima_digest_data *hash,
					 struct crypto_shash *tfm)
153
{
154 155
	struct {
		struct shash_desc shash;
156
		char ctx[crypto_shash_descsize(tfm)];
157
	} desc;
158
	int rc, i;
159

160
	desc.shash.tfm = tfm;
161
	desc.shash.flags = 0;
162

163
	hash->length = crypto_shash_digestsize(tfm);
164

165 166 167 168 169
	rc = crypto_shash_init(&desc.shash);
	if (rc != 0)
		return rc;

	for (i = 0; i < num_fields; i++) {
170 171 172 173
		u8 buffer[IMA_EVENT_NAME_LEN_MAX + 1] = { 0 };
		u8 *data_to_hash = field_data[i].data;
		u32 datalen = field_data[i].len;

174 175 176 177 178 179
		if (strcmp(td->name, IMA_TEMPLATE_IMA_NAME) != 0) {
			rc = crypto_shash_update(&desc.shash,
						(const u8 *) &field_data[i].len,
						sizeof(field_data[i].len));
			if (rc)
				break;
180 181 182 183
		} else if (strcmp(td->fields[i]->field_id, "n") == 0) {
			memcpy(buffer, data_to_hash, datalen);
			data_to_hash = buffer;
			datalen = IMA_EVENT_NAME_LEN_MAX + 1;
184
		}
185
		rc = crypto_shash_update(&desc.shash, data_to_hash, datalen);
186 187 188 189 190 191 192 193
		if (rc)
			break;
	}

	if (!rc)
		rc = crypto_shash_final(&desc.shash, hash->digest);

	return rc;
194 195
}

196 197
int ima_calc_field_array_hash(struct ima_field_data *field_data,
			      struct ima_template_desc *desc, int num_fields,
198
			      struct ima_digest_data *hash)
199 200 201 202 203 204 205 206
{
	struct crypto_shash *tfm;
	int rc;

	tfm = ima_alloc_tfm(hash->algo);
	if (IS_ERR(tfm))
		return PTR_ERR(tfm);

207 208
	rc = ima_calc_field_array_hash_tfm(field_data, desc, num_fields,
					   hash, tfm);
209 210 211 212 213 214

	ima_free_tfm(tfm);

	return rc;
}

215
static void __init ima_pcrread(int idx, u8 *pcr)
216 217 218 219 220
{
	if (!ima_used_chip)
		return;

	if (tpm_pcr_read(TPM_ANY_NUM, idx, pcr) != 0)
221
		pr_err("Error Communicating to TPM chip\n");
222 223 224 225 226
}

/*
 * Calculate the boot aggregate hash
 */
227 228
static int __init ima_calc_boot_aggregate_tfm(char *digest,
					      struct crypto_shash *tfm)
229
{
230
	u8 pcr_i[TPM_DIGEST_SIZE];
231
	int rc, i;
232 233
	struct {
		struct shash_desc shash;
234
		char ctx[crypto_shash_descsize(tfm)];
235 236
	} desc;

237
	desc.shash.tfm = tfm;
238
	desc.shash.flags = 0;
239

240
	rc = crypto_shash_init(&desc.shash);
241 242 243 244 245 246 247
	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 */
248
		rc = crypto_shash_update(&desc.shash, pcr_i, TPM_DIGEST_SIZE);
249 250
	}
	if (!rc)
251
		crypto_shash_final(&desc.shash, digest);
252 253
	return rc;
}
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270

int __init ima_calc_boot_aggregate(struct ima_digest_data *hash)
{
	struct crypto_shash *tfm;
	int rc;

	tfm = ima_alloc_tfm(hash->algo);
	if (IS_ERR(tfm))
		return PTR_ERR(tfm);

	hash->length = crypto_shash_digestsize(tfm);
	rc = ima_calc_boot_aggregate_tfm(hash->digest, tfm);

	ima_free_tfm(tfm);

	return rc;
}