blob: 552705d5a78d0bbd518cb416e146846cf23df7e4 [file] [log] [blame]
Mimi Zohar3323eec2009-02-04 09:06:58 -05001/*
2 * Copyright (C) 2005,2006,2007,2008 IBM Corporation
3 *
4 * Authors:
5 * Serge Hallyn <serue@us.ibm.com>
6 * Reiner Sailer <sailer@watson.ibm.com>
7 * Mimi Zohar <zohar@us.ibm.com>
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation, version 2 of the
12 * License.
13 *
14 * File: ima_queue.c
15 * Implements queues that store template measurements and
16 * maintains aggregate over the stored measurements
17 * in the pre-configured TPM PCR (if available).
18 * The measurement list is append-only. No entry is
19 * ever removed or changed during the boot-cycle.
20 */
Joe Perches20ee4512014-02-24 13:59:56 -080021
22#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23
Mimi Zohar3323eec2009-02-04 09:06:58 -050024#include <linux/module.h>
25#include <linux/rculist.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Mimi Zohar3323eec2009-02-04 09:06:58 -050027#include "ima.h"
28
Roberto Sassu7b7e5912011-12-19 15:57:28 +010029#define AUDIT_CAUSE_LEN_MAX 32
30
Mimi Zohar3323eec2009-02-04 09:06:58 -050031LIST_HEAD(ima_measurements); /* list of all measurements */
32
33/* key: inode (before secure-hashing a file) */
34struct ima_h_table ima_htable = {
35 .len = ATOMIC_LONG_INIT(0),
36 .violations = ATOMIC_LONG_INIT(0),
37 .queue[0 ... IMA_MEASURE_HTABLE_SIZE - 1] = HLIST_HEAD_INIT
38};
39
40/* mutex protects atomicity of extending measurement list
41 * and extending the TPM PCR aggregate. Since tpm_extend can take
42 * long (and the tpm driver uses a mutex), we can't use the spinlock.
43 */
44static DEFINE_MUTEX(ima_extend_list_mutex);
45
46/* lookup up the digest value in the hash table, and return the entry */
47static struct ima_queue_entry *ima_lookup_digest_entry(u8 *digest_value)
48{
49 struct ima_queue_entry *qe, *ret = NULL;
50 unsigned int key;
Mimi Zohar3323eec2009-02-04 09:06:58 -050051 int rc;
52
53 key = ima_hash_key(digest_value);
54 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -080055 hlist_for_each_entry_rcu(qe, &ima_htable.queue[key], hnext) {
Mimi Zohar140d8022013-03-11 20:29:47 -040056 rc = memcmp(qe->entry->digest, digest_value, TPM_DIGEST_SIZE);
Mimi Zohar3323eec2009-02-04 09:06:58 -050057 if (rc == 0) {
58 ret = qe;
59 break;
60 }
61 }
62 rcu_read_unlock();
63 return ret;
64}
65
66/* ima_add_template_entry helper function:
67 * - Add template entry to measurement list and hash table.
68 *
69 * (Called with ima_extend_list_mutex held.)
70 */
71static int ima_add_digest_entry(struct ima_template_entry *entry)
72{
73 struct ima_queue_entry *qe;
74 unsigned int key;
75
76 qe = kmalloc(sizeof(*qe), GFP_KERNEL);
77 if (qe == NULL) {
Joe Perches20ee4512014-02-24 13:59:56 -080078 pr_err("OUT OF MEMORY ERROR creating queue entry\n");
Mimi Zohar3323eec2009-02-04 09:06:58 -050079 return -ENOMEM;
80 }
81 qe->entry = entry;
82
83 INIT_LIST_HEAD(&qe->later);
84 list_add_tail_rcu(&qe->later, &ima_measurements);
85
86 atomic_long_inc(&ima_htable.len);
87 key = ima_hash_key(entry->digest);
88 hlist_add_head_rcu(&qe->hnext, &ima_htable.queue[key]);
89 return 0;
90}
91
92static int ima_pcr_extend(const u8 *hash)
93{
94 int result = 0;
95
96 if (!ima_used_chip)
97 return result;
98
99 result = tpm_pcr_extend(TPM_ANY_NUM, CONFIG_IMA_MEASURE_PCR_IDX, hash);
100 if (result != 0)
Joe Perches20ee4512014-02-24 13:59:56 -0800101 pr_err("Error Communicating to TPM chip, result: %d\n", result);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500102 return result;
103}
104
105/* Add template entry to the measurement list and hash table,
106 * and extend the pcr.
107 */
108int ima_add_template_entry(struct ima_template_entry *entry, int violation,
Roberto Sassu9803d412013-06-07 12:16:27 +0200109 const char *op, struct inode *inode,
110 const unsigned char *filename)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500111{
Mimi Zohar140d8022013-03-11 20:29:47 -0400112 u8 digest[TPM_DIGEST_SIZE];
Mimi Zohar3323eec2009-02-04 09:06:58 -0500113 const char *audit_cause = "hash_added";
Roberto Sassu7b7e5912011-12-19 15:57:28 +0100114 char tpm_audit_cause[AUDIT_CAUSE_LEN_MAX];
Mimi Zohar3323eec2009-02-04 09:06:58 -0500115 int audit_info = 1;
Roberto Sassu7b7e5912011-12-19 15:57:28 +0100116 int result = 0, tpmresult = 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500117
118 mutex_lock(&ima_extend_list_mutex);
119 if (!violation) {
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200120 memcpy(digest, entry->digest, sizeof(digest));
Mimi Zohar3323eec2009-02-04 09:06:58 -0500121 if (ima_lookup_digest_entry(digest)) {
122 audit_cause = "hash_exists";
Roberto Sassu45fae742011-12-19 15:57:27 +0100123 result = -EEXIST;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500124 goto out;
125 }
126 }
127
128 result = ima_add_digest_entry(entry);
129 if (result < 0) {
130 audit_cause = "ENOMEM";
131 audit_info = 0;
132 goto out;
133 }
134
135 if (violation) /* invalidate pcr */
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200136 memset(digest, 0xff, sizeof(digest));
Mimi Zohar3323eec2009-02-04 09:06:58 -0500137
Roberto Sassu7b7e5912011-12-19 15:57:28 +0100138 tpmresult = ima_pcr_extend(digest);
139 if (tpmresult != 0) {
140 snprintf(tpm_audit_cause, AUDIT_CAUSE_LEN_MAX, "TPM_error(%d)",
141 tpmresult);
142 audit_cause = tpm_audit_cause;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500143 audit_info = 0;
144 }
145out:
146 mutex_unlock(&ima_extend_list_mutex);
Roberto Sassu9803d412013-06-07 12:16:27 +0200147 integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode, filename,
Mimi Zohar3323eec2009-02-04 09:06:58 -0500148 op, audit_cause, result, audit_info);
149 return result;
150}