blob: 4e085a17124f1a87154b675d833941e998271c13 [file] [log] [blame]
Mimi Zohar3323eec2009-02-04 09:06:58 -05001/*
2 * Copyright (C) 2005,2006,2007,2008 IBM Corporation
3 *
4 * Authors:
5 * Mimi Zohar <zohar@us.ibm.com>
6 * Kylene Hall <kjhall@us.ibm.com>
7 *
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.
11 *
12 * File: ima_crypto.c
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +020013 * Calculates md5/sha1 file hash, template hash, boot-aggreate hash
Mimi Zohar3323eec2009-02-04 09:06:58 -050014 */
15
Joe Perches20ee4512014-02-24 13:59:56 -080016#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17
Mimi Zohar3323eec2009-02-04 09:06:58 -050018#include <linux/kernel.h>
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +020019#include <linux/moduleparam.h>
20#include <linux/ratelimit.h>
Mimi Zohar3323eec2009-02-04 09:06:58 -050021#include <linux/file.h>
22#include <linux/crypto.h>
23#include <linux/scatterlist.h>
24#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Dmitry Kasatkin76bb28f2012-06-08 10:42:30 +030026#include <crypto/hash.h>
Dmitry Kasatkin1525b062014-10-30 12:39:39 +020027
Mimi Zohar3323eec2009-02-04 09:06:58 -050028#include "ima.h"
29
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +020030/* minimum file size for ahash use */
31static unsigned long ima_ahash_minsize;
32module_param_named(ahash_minsize, ima_ahash_minsize, ulong, 0644);
33MODULE_PARM_DESC(ahash_minsize, "Minimum file size for ahash use");
34
Dmitry Kasatkin6edf7a82014-05-06 14:47:13 +030035/* default is 0 - 1 page. */
36static int ima_maxorder;
37static unsigned int ima_bufsize = PAGE_SIZE;
38
39static int param_set_bufsize(const char *val, const struct kernel_param *kp)
40{
41 unsigned long long size;
42 int order;
43
44 size = memparse(val, NULL);
45 order = get_order(size);
46 if (order >= MAX_ORDER)
47 return -EINVAL;
48 ima_maxorder = order;
49 ima_bufsize = PAGE_SIZE << order;
50 return 0;
51}
52
Luis R. Rodriguez9c278472015-05-27 11:09:38 +093053static const struct kernel_param_ops param_ops_bufsize = {
Dmitry Kasatkin6edf7a82014-05-06 14:47:13 +030054 .set = param_set_bufsize,
55 .get = param_get_uint,
56};
57#define param_check_bufsize(name, p) __param_check(name, p, unsigned int)
58
59module_param_named(ahash_bufsize, ima_bufsize, bufsize, 0644);
60MODULE_PARM_DESC(ahash_bufsize, "Maximum ahash buffer size");
61
Dmitry Kasatkin76bb28f2012-06-08 10:42:30 +030062static struct crypto_shash *ima_shash_tfm;
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +020063static struct crypto_ahash *ima_ahash_tfm;
Mimi Zohar3323eec2009-02-04 09:06:58 -050064
Dmitry Kasatkine4a9c512014-09-03 10:19:58 +030065int __init ima_init_crypto(void)
Dmitry Kasatkin76bb28f2012-06-08 10:42:30 +030066{
67 long rc;
68
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +030069 ima_shash_tfm = crypto_alloc_shash(hash_algo_name[ima_hash_algo], 0, 0);
Dmitry Kasatkin76bb28f2012-06-08 10:42:30 +030070 if (IS_ERR(ima_shash_tfm)) {
71 rc = PTR_ERR(ima_shash_tfm);
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +030072 pr_err("Can not allocate %s (reason: %ld)\n",
73 hash_algo_name[ima_hash_algo], rc);
Mimi Zohar3323eec2009-02-04 09:06:58 -050074 return rc;
75 }
Petr Vorelab603682018-03-23 14:41:08 +010076 pr_info("Allocated hash algorithm: %s\n",
77 hash_algo_name[ima_hash_algo]);
Dmitry Kasatkin76bb28f2012-06-08 10:42:30 +030078 return 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -050079}
80
Dmitry Kasatkin723326b2013-07-04 17:40:01 +030081static struct crypto_shash *ima_alloc_tfm(enum hash_algo algo)
82{
83 struct crypto_shash *tfm = ima_shash_tfm;
84 int rc;
85
Dmitry Kasatkin23c19e22014-08-15 13:28:52 +030086 if (algo < 0 || algo >= HASH_ALGO__LAST)
87 algo = ima_hash_algo;
88
89 if (algo != ima_hash_algo) {
Dmitry Kasatkin723326b2013-07-04 17:40:01 +030090 tfm = crypto_alloc_shash(hash_algo_name[algo], 0, 0);
91 if (IS_ERR(tfm)) {
92 rc = PTR_ERR(tfm);
93 pr_err("Can not allocate %s (reason: %d)\n",
94 hash_algo_name[algo], rc);
95 }
96 }
97 return tfm;
98}
99
100static void ima_free_tfm(struct crypto_shash *tfm)
101{
102 if (tfm != ima_shash_tfm)
103 crypto_free_shash(tfm);
104}
105
Dmitry Kasatkin6edf7a82014-05-06 14:47:13 +0300106/**
107 * ima_alloc_pages() - Allocate contiguous pages.
108 * @max_size: Maximum amount of memory to allocate.
109 * @allocated_size: Returned size of actual allocation.
110 * @last_warn: Should the min_size allocation warn or not.
111 *
112 * Tries to do opportunistic allocation for memory first trying to allocate
113 * max_size amount of memory and then splitting that until zero order is
114 * reached. Allocation is tried without generating allocation warnings unless
115 * last_warn is set. Last_warn set affects only last allocation of zero order.
116 *
117 * By default, ima_maxorder is 0 and it is equivalent to kmalloc(GFP_KERNEL)
118 *
119 * Return pointer to allocated memory, or NULL on failure.
120 */
121static void *ima_alloc_pages(loff_t max_size, size_t *allocated_size,
122 int last_warn)
123{
124 void *ptr;
125 int order = ima_maxorder;
Mel Gorman71baba42015-11-06 16:28:28 -0800126 gfp_t gfp_mask = __GFP_RECLAIM | __GFP_NOWARN | __GFP_NORETRY;
Dmitry Kasatkin6edf7a82014-05-06 14:47:13 +0300127
128 if (order)
129 order = min(get_order(max_size), order);
130
131 for (; order; order--) {
132 ptr = (void *)__get_free_pages(gfp_mask, order);
133 if (ptr) {
134 *allocated_size = PAGE_SIZE << order;
135 return ptr;
136 }
137 }
138
139 /* order is zero - one page */
140
141 gfp_mask = GFP_KERNEL;
142
143 if (!last_warn)
144 gfp_mask |= __GFP_NOWARN;
145
146 ptr = (void *)__get_free_pages(gfp_mask, 0);
147 if (ptr) {
148 *allocated_size = PAGE_SIZE;
149 return ptr;
150 }
151
152 *allocated_size = 0;
153 return NULL;
154}
155
156/**
157 * ima_free_pages() - Free pages allocated by ima_alloc_pages().
158 * @ptr: Pointer to allocated pages.
159 * @size: Size of allocated buffer.
160 */
161static void ima_free_pages(void *ptr, size_t size)
162{
163 if (!ptr)
164 return;
165 free_pages((unsigned long)ptr, get_order(size));
166}
167
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200168static struct crypto_ahash *ima_alloc_atfm(enum hash_algo algo)
169{
170 struct crypto_ahash *tfm = ima_ahash_tfm;
171 int rc;
172
Mimi Zohar9a8d2892014-07-28 07:59:49 -0400173 if (algo < 0 || algo >= HASH_ALGO__LAST)
174 algo = ima_hash_algo;
175
176 if (algo != ima_hash_algo || !tfm) {
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200177 tfm = crypto_alloc_ahash(hash_algo_name[algo], 0, 0);
178 if (!IS_ERR(tfm)) {
179 if (algo == ima_hash_algo)
180 ima_ahash_tfm = tfm;
181 } else {
182 rc = PTR_ERR(tfm);
183 pr_err("Can not allocate %s (reason: %d)\n",
184 hash_algo_name[algo], rc);
185 }
186 }
187 return tfm;
188}
189
190static void ima_free_atfm(struct crypto_ahash *tfm)
191{
192 if (tfm != ima_ahash_tfm)
193 crypto_free_ahash(tfm);
194}
195
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100196static inline int ahash_wait(int err, struct crypto_wait *wait)
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200197{
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200198
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100199 err = crypto_wait_req(err, wait);
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200200
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100201 if (err)
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200202 pr_crit_ratelimited("ahash calculation failed: err: %d\n", err);
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200203
204 return err;
205}
206
207static int ima_calc_file_hash_atfm(struct file *file,
208 struct ima_digest_data *hash,
209 struct crypto_ahash *tfm)
210{
211 loff_t i_size, offset;
Dmitry Kasatkin32c2e672014-05-06 14:54:27 +0300212 char *rbuf[2] = { NULL, };
213 int rc, read = 0, rbuf_len, active = 0, ahash_rc = 0;
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200214 struct ahash_request *req;
215 struct scatterlist sg[1];
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100216 struct crypto_wait wait;
Dmitry Kasatkin32c2e672014-05-06 14:54:27 +0300217 size_t rbuf_size[2];
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200218
219 hash->length = crypto_ahash_digestsize(tfm);
220
221 req = ahash_request_alloc(tfm, GFP_KERNEL);
222 if (!req)
223 return -ENOMEM;
224
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100225 crypto_init_wait(&wait);
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200226 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG |
227 CRYPTO_TFM_REQ_MAY_SLEEP,
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100228 crypto_req_done, &wait);
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200229
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100230 rc = ahash_wait(crypto_ahash_init(req), &wait);
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200231 if (rc)
232 goto out1;
233
234 i_size = i_size_read(file_inode(file));
235
236 if (i_size == 0)
237 goto out2;
238
Dmitry Kasatkin6edf7a82014-05-06 14:47:13 +0300239 /*
240 * Try to allocate maximum size of memory.
241 * Fail if even a single page cannot be allocated.
242 */
Dmitry Kasatkin32c2e672014-05-06 14:54:27 +0300243 rbuf[0] = ima_alloc_pages(i_size, &rbuf_size[0], 1);
244 if (!rbuf[0]) {
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200245 rc = -ENOMEM;
246 goto out1;
247 }
248
Dmitry Kasatkin32c2e672014-05-06 14:54:27 +0300249 /* Only allocate one buffer if that is enough. */
250 if (i_size > rbuf_size[0]) {
251 /*
252 * Try to allocate secondary buffer. If that fails fallback to
253 * using single buffering. Use previous memory allocation size
254 * as baseline for possible allocation size.
255 */
256 rbuf[1] = ima_alloc_pages(i_size - rbuf_size[0],
257 &rbuf_size[1], 0);
258 }
259
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200260 if (!(file->f_mode & FMODE_READ)) {
261 file->f_mode |= FMODE_READ;
262 read = 1;
263 }
264
265 for (offset = 0; offset < i_size; offset += rbuf_len) {
Dmitry Kasatkin32c2e672014-05-06 14:54:27 +0300266 if (!rbuf[1] && offset) {
267 /* Not using two buffers, and it is not the first
268 * read/request, wait for the completion of the
269 * previous ahash_update() request.
270 */
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100271 rc = ahash_wait(ahash_rc, &wait);
Dmitry Kasatkin32c2e672014-05-06 14:54:27 +0300272 if (rc)
273 goto out3;
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200274 }
Dmitry Kasatkin32c2e672014-05-06 14:54:27 +0300275 /* read buffer */
276 rbuf_len = min_t(loff_t, i_size - offset, rbuf_size[active]);
Dmitry Kasatkine3c4abb2014-11-05 17:01:12 +0200277 rc = integrity_kernel_read(file, offset, rbuf[active],
278 rbuf_len);
Dmitry Kasatkin32c2e672014-05-06 14:54:27 +0300279 if (rc != rbuf_len)
280 goto out3;
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200281
Dmitry Kasatkin32c2e672014-05-06 14:54:27 +0300282 if (rbuf[1] && offset) {
283 /* Using two buffers, and it is not the first
284 * read/request, wait for the completion of the
285 * previous ahash_update() request.
286 */
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100287 rc = ahash_wait(ahash_rc, &wait);
Dmitry Kasatkin32c2e672014-05-06 14:54:27 +0300288 if (rc)
289 goto out3;
290 }
291
292 sg_init_one(&sg[0], rbuf[active], rbuf_len);
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200293 ahash_request_set_crypt(req, sg, NULL, rbuf_len);
294
Dmitry Kasatkin32c2e672014-05-06 14:54:27 +0300295 ahash_rc = crypto_ahash_update(req);
296
297 if (rbuf[1])
298 active = !active; /* swap buffers, if we use two */
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200299 }
Dmitry Kasatkin32c2e672014-05-06 14:54:27 +0300300 /* wait for the last update request to complete */
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100301 rc = ahash_wait(ahash_rc, &wait);
Dmitry Kasatkin32c2e672014-05-06 14:54:27 +0300302out3:
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200303 if (read)
304 file->f_mode &= ~FMODE_READ;
Dmitry Kasatkin32c2e672014-05-06 14:54:27 +0300305 ima_free_pages(rbuf[0], rbuf_size[0]);
306 ima_free_pages(rbuf[1], rbuf_size[1]);
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200307out2:
308 if (!rc) {
309 ahash_request_set_crypt(req, NULL, hash->digest, 0);
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100310 rc = ahash_wait(crypto_ahash_final(req), &wait);
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200311 }
312out1:
313 ahash_request_free(req);
314 return rc;
315}
316
317static int ima_calc_file_ahash(struct file *file, struct ima_digest_data *hash)
318{
319 struct crypto_ahash *tfm;
320 int rc;
321
322 tfm = ima_alloc_atfm(hash->algo);
323 if (IS_ERR(tfm))
324 return PTR_ERR(tfm);
325
326 rc = ima_calc_file_hash_atfm(file, hash, tfm);
327
328 ima_free_atfm(tfm);
329
330 return rc;
331}
332
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +0300333static int ima_calc_file_hash_tfm(struct file *file,
334 struct ima_digest_data *hash,
335 struct crypto_shash *tfm)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500336{
Mimi Zohar16bfa382009-08-21 14:32:49 -0400337 loff_t i_size, offset = 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500338 char *rbuf;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500339 int rc, read = 0;
Behan Webster357aabe2014-04-04 18:18:00 -0300340 SHASH_DESC_ON_STACK(shash, tfm);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500341
Behan Webster357aabe2014-04-04 18:18:00 -0300342 shash->tfm = tfm;
343 shash->flags = 0;
Dmitry Kasatkin76bb28f2012-06-08 10:42:30 +0300344
Dmitry Kasatkin723326b2013-07-04 17:40:01 +0300345 hash->length = crypto_shash_digestsize(tfm);
346
Behan Webster357aabe2014-04-04 18:18:00 -0300347 rc = crypto_shash_init(shash);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500348 if (rc != 0)
349 return rc;
350
Dmitry Kasatkin1d91ac62014-02-27 20:16:47 +0200351 i_size = i_size_read(file_inode(file));
352
353 if (i_size == 0)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500354 goto out;
Dmitry Kasatkin1d91ac62014-02-27 20:16:47 +0200355
356 rbuf = kzalloc(PAGE_SIZE, GFP_KERNEL);
357 if (!rbuf)
358 return -ENOMEM;
359
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500360 if (!(file->f_mode & FMODE_READ)) {
361 file->f_mode |= FMODE_READ;
362 read = 1;
363 }
Dmitry Kasatkin1d91ac62014-02-27 20:16:47 +0200364
Mimi Zohar3323eec2009-02-04 09:06:58 -0500365 while (offset < i_size) {
366 int rbuf_len;
367
Dmitry Kasatkine3c4abb2014-11-05 17:01:12 +0200368 rbuf_len = integrity_kernel_read(file, offset, rbuf, PAGE_SIZE);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500369 if (rbuf_len < 0) {
370 rc = rbuf_len;
371 break;
372 }
Mimi Zohar16bfa382009-08-21 14:32:49 -0400373 if (rbuf_len == 0)
374 break;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500375 offset += rbuf_len;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500376
Behan Webster357aabe2014-04-04 18:18:00 -0300377 rc = crypto_shash_update(shash, rbuf, rbuf_len);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500378 if (rc)
379 break;
380 }
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500381 if (read)
382 file->f_mode &= ~FMODE_READ;
Dmitry Kasatkin1d91ac62014-02-27 20:16:47 +0200383 kfree(rbuf);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500384out:
Dmitry Kasatkin1d91ac62014-02-27 20:16:47 +0200385 if (!rc)
Behan Webster357aabe2014-04-04 18:18:00 -0300386 rc = crypto_shash_final(shash, hash->digest);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500387 return rc;
388}
389
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200390static int ima_calc_file_shash(struct file *file, struct ima_digest_data *hash)
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +0300391{
Dmitry Kasatkin723326b2013-07-04 17:40:01 +0300392 struct crypto_shash *tfm;
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +0300393 int rc;
394
Dmitry Kasatkin723326b2013-07-04 17:40:01 +0300395 tfm = ima_alloc_tfm(hash->algo);
396 if (IS_ERR(tfm))
397 return PTR_ERR(tfm);
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +0300398
399 rc = ima_calc_file_hash_tfm(file, hash, tfm);
400
Dmitry Kasatkin723326b2013-07-04 17:40:01 +0300401 ima_free_tfm(tfm);
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +0300402
403 return rc;
404}
405
Mimi Zohar3323eec2009-02-04 09:06:58 -0500406/*
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200407 * ima_calc_file_hash - calculate file hash
408 *
409 * Asynchronous hash (ahash) allows using HW acceleration for calculating
410 * a hash. ahash performance varies for different data sizes on different
411 * crypto accelerators. shash performance might be better for smaller files.
412 * The 'ima.ahash_minsize' module parameter allows specifying the best
413 * minimum file size for using ahash on the system.
414 *
415 * If the ima.ahash_minsize parameter is not specified, this function uses
416 * shash for the hash calculation. If ahash fails, it falls back to using
417 * shash.
418 */
419int ima_calc_file_hash(struct file *file, struct ima_digest_data *hash)
420{
421 loff_t i_size;
422 int rc;
423
Mimi Zoharf3cc6b22017-06-17 23:56:23 -0400424 /*
425 * For consistency, fail file's opened with the O_DIRECT flag on
426 * filesystems mounted with/without DAX option.
427 */
428 if (file->f_flags & O_DIRECT) {
429 hash->length = hash_digest_size[ima_hash_algo];
430 hash->algo = ima_hash_algo;
431 return -EINVAL;
432 }
433
Dmitry Kasatkin3bcced32014-02-26 17:05:20 +0200434 i_size = i_size_read(file_inode(file));
435
436 if (ima_ahash_minsize && i_size >= ima_ahash_minsize) {
437 rc = ima_calc_file_ahash(file, hash);
438 if (!rc)
439 return 0;
440 }
441
442 return ima_calc_file_shash(file, hash);
443}
444
445/*
Roberto Sassua71dc652013-06-07 12:16:33 +0200446 * Calculate the hash of template data
Mimi Zohar3323eec2009-02-04 09:06:58 -0500447 */
Roberto Sassua71dc652013-06-07 12:16:33 +0200448static int ima_calc_field_array_hash_tfm(struct ima_field_data *field_data,
Roberto Sassub6f8f162013-11-08 19:21:39 +0100449 struct ima_template_desc *td,
Roberto Sassua71dc652013-06-07 12:16:33 +0200450 int num_fields,
451 struct ima_digest_data *hash,
452 struct crypto_shash *tfm)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500453{
Behan Webster357aabe2014-04-04 18:18:00 -0300454 SHASH_DESC_ON_STACK(shash, tfm);
Roberto Sassua71dc652013-06-07 12:16:33 +0200455 int rc, i;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500456
Behan Webster357aabe2014-04-04 18:18:00 -0300457 shash->tfm = tfm;
458 shash->flags = 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500459
Dmitry Kasatkinea593992013-06-07 12:16:24 +0200460 hash->length = crypto_shash_digestsize(tfm);
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +0300461
Behan Webster357aabe2014-04-04 18:18:00 -0300462 rc = crypto_shash_init(shash);
Roberto Sassua71dc652013-06-07 12:16:33 +0200463 if (rc != 0)
464 return rc;
465
466 for (i = 0; i < num_fields; i++) {
Roberto Sassue3b64c22014-02-03 13:56:05 +0100467 u8 buffer[IMA_EVENT_NAME_LEN_MAX + 1] = { 0 };
468 u8 *data_to_hash = field_data[i].data;
469 u32 datalen = field_data[i].len;
Andreas Steffen98e1d55d2016-12-19 16:23:00 -0800470 u32 datalen_to_hash =
471 !ima_canonical_fmt ? datalen : cpu_to_le32(datalen);
Roberto Sassue3b64c22014-02-03 13:56:05 +0100472
Roberto Sassub6f8f162013-11-08 19:21:39 +0100473 if (strcmp(td->name, IMA_TEMPLATE_IMA_NAME) != 0) {
Behan Webster357aabe2014-04-04 18:18:00 -0300474 rc = crypto_shash_update(shash,
Andreas Steffen98e1d55d2016-12-19 16:23:00 -0800475 (const u8 *) &datalen_to_hash,
476 sizeof(datalen_to_hash));
Roberto Sassub6f8f162013-11-08 19:21:39 +0100477 if (rc)
478 break;
Roberto Sassue3b64c22014-02-03 13:56:05 +0100479 } else if (strcmp(td->fields[i]->field_id, "n") == 0) {
480 memcpy(buffer, data_to_hash, datalen);
481 data_to_hash = buffer;
482 datalen = IMA_EVENT_NAME_LEN_MAX + 1;
Roberto Sassub6f8f162013-11-08 19:21:39 +0100483 }
Behan Webster357aabe2014-04-04 18:18:00 -0300484 rc = crypto_shash_update(shash, data_to_hash, datalen);
Roberto Sassua71dc652013-06-07 12:16:33 +0200485 if (rc)
486 break;
487 }
488
489 if (!rc)
Behan Webster357aabe2014-04-04 18:18:00 -0300490 rc = crypto_shash_final(shash, hash->digest);
Roberto Sassua71dc652013-06-07 12:16:33 +0200491
492 return rc;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500493}
494
Roberto Sassub6f8f162013-11-08 19:21:39 +0100495int ima_calc_field_array_hash(struct ima_field_data *field_data,
496 struct ima_template_desc *desc, int num_fields,
Roberto Sassua71dc652013-06-07 12:16:33 +0200497 struct ima_digest_data *hash)
Dmitry Kasatkinea593992013-06-07 12:16:24 +0200498{
499 struct crypto_shash *tfm;
500 int rc;
501
502 tfm = ima_alloc_tfm(hash->algo);
503 if (IS_ERR(tfm))
504 return PTR_ERR(tfm);
505
Roberto Sassub6f8f162013-11-08 19:21:39 +0100506 rc = ima_calc_field_array_hash_tfm(field_data, desc, num_fields,
507 hash, tfm);
Dmitry Kasatkinea593992013-06-07 12:16:24 +0200508
509 ima_free_tfm(tfm);
510
511 return rc;
512}
513
Mimi Zohar98304bc2015-12-28 11:56:09 -0500514static int calc_buffer_ahash_atfm(const void *buf, loff_t len,
515 struct ima_digest_data *hash,
516 struct crypto_ahash *tfm)
517{
518 struct ahash_request *req;
519 struct scatterlist sg;
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100520 struct crypto_wait wait;
Mimi Zohar98304bc2015-12-28 11:56:09 -0500521 int rc, ahash_rc = 0;
522
523 hash->length = crypto_ahash_digestsize(tfm);
524
525 req = ahash_request_alloc(tfm, GFP_KERNEL);
526 if (!req)
527 return -ENOMEM;
528
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100529 crypto_init_wait(&wait);
Mimi Zohar98304bc2015-12-28 11:56:09 -0500530 ahash_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG |
531 CRYPTO_TFM_REQ_MAY_SLEEP,
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100532 crypto_req_done, &wait);
Mimi Zohar98304bc2015-12-28 11:56:09 -0500533
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100534 rc = ahash_wait(crypto_ahash_init(req), &wait);
Mimi Zohar98304bc2015-12-28 11:56:09 -0500535 if (rc)
536 goto out;
537
538 sg_init_one(&sg, buf, len);
539 ahash_request_set_crypt(req, &sg, NULL, len);
540
541 ahash_rc = crypto_ahash_update(req);
542
543 /* wait for the update request to complete */
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100544 rc = ahash_wait(ahash_rc, &wait);
Mimi Zohar98304bc2015-12-28 11:56:09 -0500545 if (!rc) {
546 ahash_request_set_crypt(req, NULL, hash->digest, 0);
Gilad Ben-Yossef46f14142017-10-18 08:00:47 +0100547 rc = ahash_wait(crypto_ahash_final(req), &wait);
Mimi Zohar98304bc2015-12-28 11:56:09 -0500548 }
549out:
550 ahash_request_free(req);
551 return rc;
552}
553
554static int calc_buffer_ahash(const void *buf, loff_t len,
555 struct ima_digest_data *hash)
556{
557 struct crypto_ahash *tfm;
558 int rc;
559
560 tfm = ima_alloc_atfm(hash->algo);
561 if (IS_ERR(tfm))
562 return PTR_ERR(tfm);
563
564 rc = calc_buffer_ahash_atfm(buf, len, hash, tfm);
565
566 ima_free_atfm(tfm);
567
568 return rc;
569}
570
Dmitry Kasatkin11d76462014-04-17 12:01:40 +0300571static int calc_buffer_shash_tfm(const void *buf, loff_t size,
572 struct ima_digest_data *hash,
573 struct crypto_shash *tfm)
574{
575 SHASH_DESC_ON_STACK(shash, tfm);
576 unsigned int len;
577 int rc;
578
579 shash->tfm = tfm;
580 shash->flags = 0;
581
582 hash->length = crypto_shash_digestsize(tfm);
583
584 rc = crypto_shash_init(shash);
585 if (rc != 0)
586 return rc;
587
588 while (size) {
589 len = size < PAGE_SIZE ? size : PAGE_SIZE;
590 rc = crypto_shash_update(shash, buf, len);
591 if (rc)
592 break;
593 buf += len;
594 size -= len;
595 }
596
597 if (!rc)
598 rc = crypto_shash_final(shash, hash->digest);
599 return rc;
600}
601
Mimi Zohar98304bc2015-12-28 11:56:09 -0500602static int calc_buffer_shash(const void *buf, loff_t len,
603 struct ima_digest_data *hash)
Dmitry Kasatkin11d76462014-04-17 12:01:40 +0300604{
605 struct crypto_shash *tfm;
606 int rc;
607
608 tfm = ima_alloc_tfm(hash->algo);
609 if (IS_ERR(tfm))
610 return PTR_ERR(tfm);
611
612 rc = calc_buffer_shash_tfm(buf, len, hash, tfm);
613
614 ima_free_tfm(tfm);
615 return rc;
616}
617
Mimi Zohar98304bc2015-12-28 11:56:09 -0500618int ima_calc_buffer_hash(const void *buf, loff_t len,
619 struct ima_digest_data *hash)
620{
621 int rc;
622
623 if (ima_ahash_minsize && len >= ima_ahash_minsize) {
624 rc = calc_buffer_ahash(buf, len, hash);
625 if (!rc)
626 return 0;
627 }
628
629 return calc_buffer_shash(buf, len, hash);
630}
631
Eric Paris932995f2009-05-21 15:43:32 -0400632static void __init ima_pcrread(int idx, u8 *pcr)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500633{
634 if (!ima_used_chip)
635 return;
636
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +0200637 if (tpm_pcr_read(NULL, idx, pcr) != 0)
Joe Perches20ee4512014-02-24 13:59:56 -0800638 pr_err("Error Communicating to TPM chip\n");
Mimi Zohar3323eec2009-02-04 09:06:58 -0500639}
640
641/*
642 * Calculate the boot aggregate hash
643 */
Dmitry Kasatkin09ef5432013-06-07 12:16:25 +0200644static int __init ima_calc_boot_aggregate_tfm(char *digest,
645 struct crypto_shash *tfm)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500646{
Mimi Zohar140d8022013-03-11 20:29:47 -0400647 u8 pcr_i[TPM_DIGEST_SIZE];
Mimi Zohar3323eec2009-02-04 09:06:58 -0500648 int rc, i;
Behan Webster357aabe2014-04-04 18:18:00 -0300649 SHASH_DESC_ON_STACK(shash, tfm);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500650
Behan Webster357aabe2014-04-04 18:18:00 -0300651 shash->tfm = tfm;
652 shash->flags = 0;
Dmitry Kasatkin76bb28f2012-06-08 10:42:30 +0300653
Behan Webster357aabe2014-04-04 18:18:00 -0300654 rc = crypto_shash_init(shash);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500655 if (rc != 0)
656 return rc;
657
658 /* cumulative sha1 over tpm registers 0-7 */
659 for (i = TPM_PCR0; i < TPM_PCR8; i++) {
660 ima_pcrread(i, pcr_i);
661 /* now accumulate with current aggregate */
Behan Webster357aabe2014-04-04 18:18:00 -0300662 rc = crypto_shash_update(shash, pcr_i, TPM_DIGEST_SIZE);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500663 }
664 if (!rc)
Behan Webster357aabe2014-04-04 18:18:00 -0300665 crypto_shash_final(shash, digest);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500666 return rc;
667}
Dmitry Kasatkin09ef5432013-06-07 12:16:25 +0200668
669int __init ima_calc_boot_aggregate(struct ima_digest_data *hash)
670{
671 struct crypto_shash *tfm;
672 int rc;
673
674 tfm = ima_alloc_tfm(hash->algo);
675 if (IS_ERR(tfm))
676 return PTR_ERR(tfm);
677
678 hash->length = crypto_shash_digestsize(tfm);
679 rc = ima_calc_boot_aggregate_tfm(hash->digest, tfm);
680
681 ima_free_tfm(tfm);
682
683 return rc;
684}