blob: 418f35e38015a7cc337dbb6a7c9423c4b7ebaf8b [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 */
Mimi Zohard1588472016-12-19 16:22:42 -080032#ifdef CONFIG_IMA_KEXEC
33static unsigned long binary_runtime_size;
34#else
35static unsigned long binary_runtime_size = ULONG_MAX;
36#endif
Mimi Zohar3323eec2009-02-04 09:06:58 -050037
38/* key: inode (before secure-hashing a file) */
39struct ima_h_table ima_htable = {
40 .len = ATOMIC_LONG_INIT(0),
41 .violations = ATOMIC_LONG_INIT(0),
42 .queue[0 ... IMA_MEASURE_HTABLE_SIZE - 1] = HLIST_HEAD_INIT
43};
44
45/* mutex protects atomicity of extending measurement list
46 * and extending the TPM PCR aggregate. Since tpm_extend can take
47 * long (and the tpm driver uses a mutex), we can't use the spinlock.
48 */
49static DEFINE_MUTEX(ima_extend_list_mutex);
50
51/* lookup up the digest value in the hash table, and return the entry */
Eric Richter67696f62016-06-01 13:14:05 -050052static struct ima_queue_entry *ima_lookup_digest_entry(u8 *digest_value,
53 int pcr)
Mimi Zohar3323eec2009-02-04 09:06:58 -050054{
55 struct ima_queue_entry *qe, *ret = NULL;
56 unsigned int key;
Mimi Zohar3323eec2009-02-04 09:06:58 -050057 int rc;
58
59 key = ima_hash_key(digest_value);
60 rcu_read_lock();
Sasha Levinb67bfe02013-02-27 17:06:00 -080061 hlist_for_each_entry_rcu(qe, &ima_htable.queue[key], hnext) {
Mimi Zohar140d8022013-03-11 20:29:47 -040062 rc = memcmp(qe->entry->digest, digest_value, TPM_DIGEST_SIZE);
Eric Richter67696f62016-06-01 13:14:05 -050063 if ((rc == 0) && (qe->entry->pcr == pcr)) {
Mimi Zohar3323eec2009-02-04 09:06:58 -050064 ret = qe;
65 break;
66 }
67 }
68 rcu_read_unlock();
69 return ret;
70}
71
Mimi Zohard1588472016-12-19 16:22:42 -080072/*
73 * Calculate the memory required for serializing a single
74 * binary_runtime_measurement list entry, which contains a
75 * couple of variable length fields (e.g template name and data).
76 */
77static int get_binary_runtime_size(struct ima_template_entry *entry)
78{
79 int size = 0;
80
81 size += sizeof(u32); /* pcr */
82 size += sizeof(entry->digest);
83 size += sizeof(int); /* template name size field */
Roberto Sassue4586c792017-05-16 14:53:47 +020084 size += strlen(entry->template_desc->name);
Mimi Zohard1588472016-12-19 16:22:42 -080085 size += sizeof(entry->template_data_len);
86 size += entry->template_data_len;
87 return size;
88}
89
Mimi Zohar3323eec2009-02-04 09:06:58 -050090/* ima_add_template_entry helper function:
Mimi Zohardcfc5692016-12-19 16:22:38 -080091 * - Add template entry to the measurement list and hash table, for
92 * all entries except those carried across kexec.
Mimi Zohar3323eec2009-02-04 09:06:58 -050093 *
94 * (Called with ima_extend_list_mutex held.)
95 */
Mimi Zohardcfc5692016-12-19 16:22:38 -080096static int ima_add_digest_entry(struct ima_template_entry *entry,
97 bool update_htable)
Mimi Zohar3323eec2009-02-04 09:06:58 -050098{
99 struct ima_queue_entry *qe;
100 unsigned int key;
101
102 qe = kmalloc(sizeof(*qe), GFP_KERNEL);
103 if (qe == NULL) {
Joe Perches20ee4512014-02-24 13:59:56 -0800104 pr_err("OUT OF MEMORY ERROR creating queue entry\n");
Mimi Zohar3323eec2009-02-04 09:06:58 -0500105 return -ENOMEM;
106 }
107 qe->entry = entry;
108
109 INIT_LIST_HEAD(&qe->later);
110 list_add_tail_rcu(&qe->later, &ima_measurements);
111
112 atomic_long_inc(&ima_htable.len);
Mimi Zohardcfc5692016-12-19 16:22:38 -0800113 if (update_htable) {
114 key = ima_hash_key(entry->digest);
115 hlist_add_head_rcu(&qe->hnext, &ima_htable.queue[key]);
116 }
Mimi Zohard1588472016-12-19 16:22:42 -0800117
118 if (binary_runtime_size != ULONG_MAX) {
119 int size;
120
121 size = get_binary_runtime_size(entry);
122 binary_runtime_size = (binary_runtime_size < ULONG_MAX - size) ?
123 binary_runtime_size + size : ULONG_MAX;
124 }
Mimi Zohar3323eec2009-02-04 09:06:58 -0500125 return 0;
126}
127
Mimi Zohard1588472016-12-19 16:22:42 -0800128/*
129 * Return the amount of memory required for serializing the
130 * entire binary_runtime_measurement list, including the ima_kexec_hdr
131 * structure.
132 */
133unsigned long ima_get_binary_runtime_size(void)
134{
135 if (binary_runtime_size >= (ULONG_MAX - sizeof(struct ima_kexec_hdr)))
136 return ULONG_MAX;
137 else
138 return binary_runtime_size + sizeof(struct ima_kexec_hdr);
139};
140
Eric Richter544e1ce2016-06-01 13:14:07 -0500141static int ima_pcr_extend(const u8 *hash, int pcr)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500142{
143 int result = 0;
144
145 if (!ima_used_chip)
146 return result;
147
Jarkko Sakkinenaad887f2017-11-05 13:16:26 +0200148 result = tpm_pcr_extend(NULL, pcr, hash);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500149 if (result != 0)
Joe Perches20ee4512014-02-24 13:59:56 -0800150 pr_err("Error Communicating to TPM chip, result: %d\n", result);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500151 return result;
152}
153
Mimi Zohard1588472016-12-19 16:22:42 -0800154/*
155 * Add template entry to the measurement list and hash table, and
156 * extend the pcr.
157 *
158 * On systems which support carrying the IMA measurement list across
159 * kexec, maintain the total memory size required for serializing the
160 * binary_runtime_measurements.
Mimi Zohar3323eec2009-02-04 09:06:58 -0500161 */
162int ima_add_template_entry(struct ima_template_entry *entry, int violation,
Roberto Sassu9803d412013-06-07 12:16:27 +0200163 const char *op, struct inode *inode,
164 const unsigned char *filename)
Mimi Zohar3323eec2009-02-04 09:06:58 -0500165{
Mimi Zohar140d8022013-03-11 20:29:47 -0400166 u8 digest[TPM_DIGEST_SIZE];
Mimi Zohar3323eec2009-02-04 09:06:58 -0500167 const char *audit_cause = "hash_added";
Roberto Sassu7b7e5912011-12-19 15:57:28 +0100168 char tpm_audit_cause[AUDIT_CAUSE_LEN_MAX];
Mimi Zohar3323eec2009-02-04 09:06:58 -0500169 int audit_info = 1;
Roberto Sassu7b7e5912011-12-19 15:57:28 +0100170 int result = 0, tpmresult = 0;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500171
172 mutex_lock(&ima_extend_list_mutex);
173 if (!violation) {
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200174 memcpy(digest, entry->digest, sizeof(digest));
Eric Richter67696f62016-06-01 13:14:05 -0500175 if (ima_lookup_digest_entry(digest, entry->pcr)) {
Mimi Zohar3323eec2009-02-04 09:06:58 -0500176 audit_cause = "hash_exists";
Roberto Sassu45fae742011-12-19 15:57:27 +0100177 result = -EEXIST;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500178 goto out;
179 }
180 }
181
Mimi Zohardcfc5692016-12-19 16:22:38 -0800182 result = ima_add_digest_entry(entry, 1);
Mimi Zohar3323eec2009-02-04 09:06:58 -0500183 if (result < 0) {
184 audit_cause = "ENOMEM";
185 audit_info = 0;
186 goto out;
187 }
188
189 if (violation) /* invalidate pcr */
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200190 memset(digest, 0xff, sizeof(digest));
Mimi Zohar3323eec2009-02-04 09:06:58 -0500191
Eric Richter544e1ce2016-06-01 13:14:07 -0500192 tpmresult = ima_pcr_extend(digest, entry->pcr);
Roberto Sassu7b7e5912011-12-19 15:57:28 +0100193 if (tpmresult != 0) {
194 snprintf(tpm_audit_cause, AUDIT_CAUSE_LEN_MAX, "TPM_error(%d)",
195 tpmresult);
196 audit_cause = tpm_audit_cause;
Mimi Zohar3323eec2009-02-04 09:06:58 -0500197 audit_info = 0;
198 }
199out:
200 mutex_unlock(&ima_extend_list_mutex);
Roberto Sassu9803d412013-06-07 12:16:27 +0200201 integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode, filename,
Mimi Zohar3323eec2009-02-04 09:06:58 -0500202 op, audit_cause, result, audit_info);
203 return result;
204}
Mimi Zohar94c3aac2016-12-19 16:22:35 -0800205
206int ima_restore_measurement_entry(struct ima_template_entry *entry)
207{
208 int result = 0;
209
210 mutex_lock(&ima_extend_list_mutex);
Mimi Zohardcfc5692016-12-19 16:22:38 -0800211 result = ima_add_digest_entry(entry, 0);
Mimi Zohar94c3aac2016-12-19 16:22:35 -0800212 mutex_unlock(&ima_extend_list_mutex);
213 return result;
214}