blob: 86885979918c187fef5298c86ba9de7a97ab968b [file] [log] [blame]
Mimi Zohar3323eec92009-02-04 09:06:58 -05001/*
2 * Copyright (C) 2008 IBM Corporation
3 *
4 * Author: Mimi Zohar <zohar@us.ibm.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, version 2 of the
9 * License.
10 *
11 * File: ima_api.c
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -050012 * Implements must_appraise_or_measure, collect_measurement,
13 * appraise_measurement, store_measurement and store_template.
Mimi Zohar3323eec92009-02-04 09:06:58 -050014 */
15#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -050017#include <linux/file.h>
18#include <linux/fs.h>
19#include <linux/xattr.h>
20#include <linux/evm.h>
Dmitry Kasatkinea593992013-06-07 12:16:24 +020021#include <crypto/hash_info.h>
Mimi Zohar3323eec92009-02-04 09:06:58 -050022#include "ima.h"
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -050023
Mimi Zohar3323eec92009-02-04 09:06:58 -050024/*
Roberto Sassua7ed7c62013-12-02 19:40:34 +010025 * ima_free_template_entry - free an existing template entry
26 */
27void ima_free_template_entry(struct ima_template_entry *entry)
28{
29 int i;
30
31 for (i = 0; i < entry->template_desc->num_fields; i++)
32 kfree(entry->template_data[i].data);
33
34 kfree(entry);
35}
36
37/*
Roberto Sassu7bc5f442013-06-07 12:16:28 +020038 * ima_alloc_init_template - create and initialize a new template entry
39 */
40int ima_alloc_init_template(struct integrity_iint_cache *iint,
41 struct file *file, const unsigned char *filename,
Mimi Zoharbcbc9b02013-07-23 11:15:00 -040042 struct evm_ima_xattr_data *xattr_value,
43 int xattr_len, struct ima_template_entry **entry)
Roberto Sassu7bc5f442013-06-07 12:16:28 +020044{
Roberto Sassua71dc652013-06-07 12:16:33 +020045 struct ima_template_desc *template_desc = ima_template_desc_current();
46 int i, result = 0;
Roberto Sassu7bc5f442013-06-07 12:16:28 +020047
Roberto Sassua71dc652013-06-07 12:16:33 +020048 *entry = kzalloc(sizeof(**entry) + template_desc->num_fields *
49 sizeof(struct ima_field_data), GFP_NOFS);
50 if (!*entry)
Roberto Sassu7bc5f442013-06-07 12:16:28 +020051 return -ENOMEM;
52
Roberto Sassua7ed7c62013-12-02 19:40:34 +010053 (*entry)->template_desc = template_desc;
Roberto Sassua71dc652013-06-07 12:16:33 +020054 for (i = 0; i < template_desc->num_fields; i++) {
55 struct ima_template_field *field = template_desc->fields[i];
56 u32 len;
Roberto Sassu7bc5f442013-06-07 12:16:28 +020057
Roberto Sassua71dc652013-06-07 12:16:33 +020058 result = field->field_init(iint, file, filename,
Mimi Zoharbcbc9b02013-07-23 11:15:00 -040059 xattr_value, xattr_len,
Roberto Sassua71dc652013-06-07 12:16:33 +020060 &((*entry)->template_data[i]));
61 if (result != 0)
62 goto out;
Roberto Sassu7bc5f442013-06-07 12:16:28 +020063
Roberto Sassua71dc652013-06-07 12:16:33 +020064 len = (*entry)->template_data[i].len;
65 (*entry)->template_data_len += sizeof(len);
66 (*entry)->template_data_len += len;
67 }
Roberto Sassu7bc5f442013-06-07 12:16:28 +020068 return 0;
Roberto Sassua71dc652013-06-07 12:16:33 +020069out:
Roberto Sassua7ed7c62013-12-02 19:40:34 +010070 ima_free_template_entry(*entry);
Roberto Sassua71dc652013-06-07 12:16:33 +020071 *entry = NULL;
Roberto Sassu7bc5f442013-06-07 12:16:28 +020072 return result;
73}
74
75/*
Mimi Zohar3323eec92009-02-04 09:06:58 -050076 * ima_store_template - store ima template measurements
77 *
78 * Calculate the hash of a template entry, add the template entry
79 * to an ordered list of measurement entries maintained inside the kernel,
80 * and also update the aggregate integrity value (maintained inside the
81 * configured TPM PCR) over the hashes of the current list of measurement
82 * entries.
83 *
84 * Applications retrieve the current kernel-held measurement list through
85 * the securityfs entries in /sys/kernel/security/ima. The signed aggregate
86 * TPM PCR (called quote) can be retrieved using a TPM user space library
87 * and is used to validate the measurement list.
88 *
89 * Returns 0 on success, error code otherwise
90 */
91int ima_store_template(struct ima_template_entry *entry,
Roberto Sassu9803d412013-06-07 12:16:27 +020092 int violation, struct inode *inode,
93 const unsigned char *filename)
Mimi Zohar3323eec92009-02-04 09:06:58 -050094{
Mimi Zohar52a13282013-12-11 14:44:04 -050095 static const char op[] = "add_template_measure";
96 static const char audit_cause[] = "hashing_error";
Roberto Sassua71dc652013-06-07 12:16:33 +020097 char *template_name = entry->template_desc->name;
Mimi Zohar3323eec92009-02-04 09:06:58 -050098 int result;
Dmitry Kasatkina35c3fb2013-04-25 10:44:04 +030099 struct {
100 struct ima_digest_data hdr;
Mimi Zohar140d8022013-03-11 20:29:47 -0400101 char digest[TPM_DIGEST_SIZE];
Dmitry Kasatkina35c3fb2013-04-25 10:44:04 +0300102 } hash;
Mimi Zohar3323eec92009-02-04 09:06:58 -0500103
Mimi Zohar3323eec92009-02-04 09:06:58 -0500104 if (!violation) {
Roberto Sassua71dc652013-06-07 12:16:33 +0200105 int num_fields = entry->template_desc->num_fields;
106
Dmitry Kasatkinea593992013-06-07 12:16:24 +0200107 /* this function uses default algo */
108 hash.hdr.algo = HASH_ALGO_SHA1;
Roberto Sassua71dc652013-06-07 12:16:33 +0200109 result = ima_calc_field_array_hash(&entry->template_data[0],
Roberto Sassub6f8f162013-11-08 19:21:39 +0100110 entry->template_desc,
Roberto Sassua71dc652013-06-07 12:16:33 +0200111 num_fields, &hash.hdr);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500112 if (result < 0) {
113 integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode,
Roberto Sassua71dc652013-06-07 12:16:33 +0200114 template_name, op,
Mimi Zohar3323eec92009-02-04 09:06:58 -0500115 audit_cause, result, 0);
116 return result;
117 }
Dmitry Kasatkina35c3fb2013-04-25 10:44:04 +0300118 memcpy(entry->digest, hash.hdr.digest, hash.hdr.length);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500119 }
Roberto Sassu9803d412013-06-07 12:16:27 +0200120 result = ima_add_template_entry(entry, violation, op, inode, filename);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500121 return result;
122}
123
124/*
125 * ima_add_violation - add violation to measurement list.
126 *
127 * Violations are flagged in the measurement list with zero hash values.
128 * By extending the PCR with 0xFF's instead of with zeroes, the PCR
129 * value is invalidated.
130 */
Roberto Sassu7d802a22013-06-07 12:16:26 +0200131void ima_add_violation(struct file *file, const unsigned char *filename,
Mimi Zohar3323eec92009-02-04 09:06:58 -0500132 const char *op, const char *cause)
133{
134 struct ima_template_entry *entry;
Libo Chen31d4b762013-12-11 14:11:28 +0800135 struct inode *inode = file_inode(file);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500136 int violation = 1;
137 int result;
138
139 /* can overflow, only indicator */
140 atomic_long_inc(&ima_htable.violations);
141
Mimi Zoharbcbc9b02013-07-23 11:15:00 -0400142 result = ima_alloc_init_template(NULL, file, filename,
143 NULL, 0, &entry);
Roberto Sassu7bc5f442013-06-07 12:16:28 +0200144 if (result < 0) {
Mimi Zohar3323eec92009-02-04 09:06:58 -0500145 result = -ENOMEM;
146 goto err_out;
147 }
Roberto Sassu9803d412013-06-07 12:16:27 +0200148 result = ima_store_template(entry, violation, inode, filename);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500149 if (result < 0)
Roberto Sassua7ed7c62013-12-02 19:40:34 +0100150 ima_free_template_entry(entry);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500151err_out:
152 integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode, filename,
153 op, cause, result, 0);
154}
155
156/**
Dmitry Kasatkind9d300c2012-06-27 11:26:14 +0300157 * ima_get_action - appraise & measure decision based on policy.
Mimi Zohar3323eec92009-02-04 09:06:58 -0500158 * @inode: pointer to inode to measure
159 * @mask: contains the permission mask (MAY_READ, MAY_WRITE, MAY_EXECUTE)
Mimi Zohar16cac492012-12-13 11:15:04 -0500160 * @function: calling function (FILE_CHECK, BPRM_CHECK, MMAP_CHECK, MODULE_CHECK)
Mimi Zohar3323eec92009-02-04 09:06:58 -0500161 *
162 * The policy is defined in terms of keypairs:
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200163 * subj=, obj=, type=, func=, mask=, fsmagic=
Mimi Zohar3323eec92009-02-04 09:06:58 -0500164 * subj,obj, and type: are LSM specific.
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200165 * func: FILE_CHECK | BPRM_CHECK | MMAP_CHECK | MODULE_CHECK
166 * mask: contains the permission mask
Mimi Zohar3323eec92009-02-04 09:06:58 -0500167 * fsmagic: hex value
168 *
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500169 * Returns IMA_MEASURE, IMA_APPRAISE mask.
170 *
171 */
Dmitry Kasatkind9d300c2012-06-27 11:26:14 +0300172int ima_get_action(struct inode *inode, int mask, int function)
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500173{
Peter Moodye7c568e2012-06-14 10:04:36 -0700174 int flags = IMA_MEASURE | IMA_AUDIT | IMA_APPRAISE;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500175
176 if (!ima_appraise)
177 flags &= ~IMA_APPRAISE;
178
179 return ima_match_policy(inode, function, mask, flags);
180}
181
Mimi Zohar3323eec92009-02-04 09:06:58 -0500182/*
183 * ima_collect_measurement - collect file measurement
184 *
185 * Calculate the file hash, if it doesn't already exist,
186 * storing the measurement and i_version in the iint.
187 *
188 * Must be called with iint->mutex held.
189 *
190 * Return 0 on success, error code otherwise
191 */
Mimi Zoharf381c272011-03-09 14:13:22 -0500192int ima_collect_measurement(struct integrity_iint_cache *iint,
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300193 struct file *file,
194 struct evm_ima_xattr_data **xattr_value,
195 int *xattr_len)
Mimi Zohar3323eec92009-02-04 09:06:58 -0500196{
Mimi Zoharf9b2a732014-05-12 09:28:11 -0400197 const char *audit_cause = "failed";
Al Viro496ad9a2013-01-23 17:07:38 -0500198 struct inode *inode = file_inode(file);
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500199 const char *filename = file->f_dentry->d_name.name;
200 int result = 0;
Dmitry Kasatkina35c3fb2013-04-25 10:44:04 +0300201 struct {
202 struct ima_digest_data hdr;
203 char digest[IMA_MAX_DIGEST_SIZE];
204 } hash;
Mimi Zohar3323eec92009-02-04 09:06:58 -0500205
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300206 if (xattr_value)
207 *xattr_len = ima_read_xattr(file->f_dentry, xattr_value);
208
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500209 if (!(iint->flags & IMA_COLLECTED)) {
Al Viro496ad9a2013-01-23 17:07:38 -0500210 u64 i_version = file_inode(file)->i_version;
Mimi Zohar3323eec92009-02-04 09:06:58 -0500211
Mimi Zoharf9b2a732014-05-12 09:28:11 -0400212 if (file->f_flags & O_DIRECT) {
213 audit_cause = "failed(directio)";
214 result = -EACCES;
215 goto out;
216 }
217
Dmitry Kasatkinc7c8bb22013-04-25 10:43:56 +0300218 /* use default hash algorithm */
Dmitry Kasatkina35c3fb2013-04-25 10:44:04 +0300219 hash.hdr.algo = ima_hash_algo;
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300220
221 if (xattr_value)
Dmitry Kasatkina35c3fb2013-04-25 10:44:04 +0300222 ima_get_hash_algo(*xattr_value, *xattr_len, &hash.hdr);
Dmitry Kasatkind3634d02013-04-25 10:44:04 +0300223
Dmitry Kasatkina35c3fb2013-04-25 10:44:04 +0300224 result = ima_calc_file_hash(file, &hash.hdr);
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500225 if (!result) {
Dmitry Kasatkina35c3fb2013-04-25 10:44:04 +0300226 int length = sizeof(hash.hdr) + hash.hdr.length;
227 void *tmpbuf = krealloc(iint->ima_hash, length,
228 GFP_NOFS);
229 if (tmpbuf) {
230 iint->ima_hash = tmpbuf;
231 memcpy(iint->ima_hash, &hash, length);
232 iint->version = i_version;
233 iint->flags |= IMA_COLLECTED;
234 } else
235 result = -ENOMEM;
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500236 }
Mimi Zohar3323eec92009-02-04 09:06:58 -0500237 }
Mimi Zoharf9b2a732014-05-12 09:28:11 -0400238out:
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500239 if (result)
240 integrity_audit_msg(AUDIT_INTEGRITY_DATA, inode,
Mimi Zoharf9b2a732014-05-12 09:28:11 -0400241 filename, "collect_data", audit_cause,
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500242 result, 0);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500243 return result;
244}
245
246/*
247 * ima_store_measurement - store file measurement
248 *
249 * Create an "ima" template and then store the template by calling
250 * ima_store_template.
251 *
252 * We only get here if the inode has not already been measured,
253 * but the measurement could already exist:
Dmitry Kasatkin2bb930a2014-03-04 18:04:20 +0200254 * - multiple copies of the same file on either the same or
Mimi Zohar3323eec92009-02-04 09:06:58 -0500255 * different filesystems.
256 * - the inode was previously flushed as well as the iint info,
257 * containing the hashing info.
258 *
259 * Must be called with iint->mutex held.
260 */
Mimi Zoharf381c272011-03-09 14:13:22 -0500261void ima_store_measurement(struct integrity_iint_cache *iint,
Mimi Zoharbcbc9b02013-07-23 11:15:00 -0400262 struct file *file, const unsigned char *filename,
263 struct evm_ima_xattr_data *xattr_value,
264 int xattr_len)
Mimi Zohar3323eec92009-02-04 09:06:58 -0500265{
Mimi Zohar52a13282013-12-11 14:44:04 -0500266 static const char op[] = "add_template_measure";
267 static const char audit_cause[] = "ENOMEM";
Mimi Zohar3323eec92009-02-04 09:06:58 -0500268 int result = -ENOMEM;
Al Viro496ad9a2013-01-23 17:07:38 -0500269 struct inode *inode = file_inode(file);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500270 struct ima_template_entry *entry;
271 int violation = 0;
272
Mimi Zohar2fe5d6d2012-02-13 10:15:05 -0500273 if (iint->flags & IMA_MEASURED)
274 return;
275
Mimi Zoharbcbc9b02013-07-23 11:15:00 -0400276 result = ima_alloc_init_template(iint, file, filename,
277 xattr_value, xattr_len, &entry);
Roberto Sassu7bc5f442013-06-07 12:16:28 +0200278 if (result < 0) {
Mimi Zohar3323eec92009-02-04 09:06:58 -0500279 integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode, filename,
280 op, audit_cause, result, 0);
281 return;
282 }
Mimi Zohar3323eec92009-02-04 09:06:58 -0500283
Roberto Sassu9803d412013-06-07 12:16:27 +0200284 result = ima_store_template(entry, violation, inode, filename);
Roberto Sassu45fae742011-12-19 15:57:27 +0100285 if (!result || result == -EEXIST)
Mimi Zohar3323eec92009-02-04 09:06:58 -0500286 iint->flags |= IMA_MEASURED;
Roberto Sassu45fae742011-12-19 15:57:27 +0100287 if (result < 0)
Roberto Sassua7ed7c62013-12-02 19:40:34 +0100288 ima_free_template_entry(entry);
Mimi Zohar3323eec92009-02-04 09:06:58 -0500289}
Peter Moodye7c568e2012-06-14 10:04:36 -0700290
291void ima_audit_measurement(struct integrity_iint_cache *iint,
292 const unsigned char *filename)
293{
294 struct audit_buffer *ab;
Dmitry Kasatkina35c3fb2013-04-25 10:44:04 +0300295 char hash[(iint->ima_hash->length * 2) + 1];
Mimi Zohar5278aa52013-06-07 12:16:38 +0200296 const char *algo_name = hash_algo_name[iint->ima_hash->algo];
297 char algo_hash[sizeof(hash) + strlen(algo_name) + 2];
Peter Moodye7c568e2012-06-14 10:04:36 -0700298 int i;
299
300 if (iint->flags & IMA_AUDITED)
301 return;
302
Dmitry Kasatkina35c3fb2013-04-25 10:44:04 +0300303 for (i = 0; i < iint->ima_hash->length; i++)
304 hex_byte_pack(hash + (i * 2), iint->ima_hash->digest[i]);
Peter Moodye7c568e2012-06-14 10:04:36 -0700305 hash[i * 2] = '\0';
306
307 ab = audit_log_start(current->audit_context, GFP_KERNEL,
308 AUDIT_INTEGRITY_RULE);
309 if (!ab)
310 return;
311
312 audit_log_format(ab, "file=");
313 audit_log_untrustedstring(ab, filename);
314 audit_log_format(ab, " hash=");
Mimi Zohar5278aa52013-06-07 12:16:38 +0200315 snprintf(algo_hash, sizeof(algo_hash), "%s:%s", algo_name, hash);
316 audit_log_untrustedstring(ab, algo_hash);
Peter Moodye7c568e2012-06-14 10:04:36 -0700317
318 audit_log_task_info(ab, current);
319 audit_log_end(ab);
320
321 iint->flags |= IMA_AUDITED;
322}
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300323
324const char *ima_d_path(struct path *path, char **pathbuf)
325{
326 char *pathname = NULL;
327
Dmitry Kasatkin17f4bad2014-08-19 16:48:39 +0300328 *pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300329 if (*pathbuf) {
Dmitry Kasatkin17f4bad2014-08-19 16:48:39 +0300330 pathname = d_absolute_path(path, *pathbuf, PATH_MAX);
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300331 if (IS_ERR(pathname)) {
332 kfree(*pathbuf);
333 *pathbuf = NULL;
334 pathname = NULL;
335 }
336 }
Dmitry Kasatkin61997c42013-11-13 22:23:20 +0200337 return pathname ?: (const char *)path->dentry->d_name.name;
Dmitry Kasatkinea1046d2012-09-04 00:40:17 +0300338}