ima: wrap event related data to the new ima_event_data structure
[deliverable/linux.git] / security / integrity / ima / ima_api.c
CommitLineData
3323eec9
MZ
1/*
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
2fe5d6de
MZ
12 * Implements must_appraise_or_measure, collect_measurement,
13 * appraise_measurement, store_measurement and store_template.
3323eec9
MZ
14 */
15#include <linux/module.h>
5a0e3ad6 16#include <linux/slab.h>
2fe5d6de
MZ
17#include <linux/file.h>
18#include <linux/fs.h>
19#include <linux/xattr.h>
20#include <linux/evm.h>
ea593993 21#include <crypto/hash_info.h>
3323eec9 22#include "ima.h"
2fe5d6de 23
a7ed7c60
RS
24/*
25 * 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
7bc5f447
RS
37/*
38 * ima_alloc_init_template - create and initialize a new template entry
39 */
23b57419
RS
40int ima_alloc_init_template(struct ima_event_data *event_data,
41 struct ima_template_entry **entry)
7bc5f447 42{
a71dc65d
RS
43 struct ima_template_desc *template_desc = ima_template_desc_current();
44 int i, result = 0;
7bc5f447 45
a71dc65d
RS
46 *entry = kzalloc(sizeof(**entry) + template_desc->num_fields *
47 sizeof(struct ima_field_data), GFP_NOFS);
48 if (!*entry)
7bc5f447
RS
49 return -ENOMEM;
50
a7ed7c60 51 (*entry)->template_desc = template_desc;
a71dc65d
RS
52 for (i = 0; i < template_desc->num_fields; i++) {
53 struct ima_template_field *field = template_desc->fields[i];
54 u32 len;
7bc5f447 55
23b57419 56 result = field->field_init(event_data,
a71dc65d
RS
57 &((*entry)->template_data[i]));
58 if (result != 0)
59 goto out;
7bc5f447 60
a71dc65d
RS
61 len = (*entry)->template_data[i].len;
62 (*entry)->template_data_len += sizeof(len);
63 (*entry)->template_data_len += len;
64 }
7bc5f447 65 return 0;
a71dc65d 66out:
a7ed7c60 67 ima_free_template_entry(*entry);
a71dc65d 68 *entry = NULL;
7bc5f447
RS
69 return result;
70}
71
3323eec9
MZ
72/*
73 * ima_store_template - store ima template measurements
74 *
75 * Calculate the hash of a template entry, add the template entry
76 * to an ordered list of measurement entries maintained inside the kernel,
77 * and also update the aggregate integrity value (maintained inside the
78 * configured TPM PCR) over the hashes of the current list of measurement
79 * entries.
80 *
81 * Applications retrieve the current kernel-held measurement list through
82 * the securityfs entries in /sys/kernel/security/ima. The signed aggregate
83 * TPM PCR (called quote) can be retrieved using a TPM user space library
84 * and is used to validate the measurement list.
85 *
86 * Returns 0 on success, error code otherwise
87 */
88int ima_store_template(struct ima_template_entry *entry,
9803d413
RS
89 int violation, struct inode *inode,
90 const unsigned char *filename)
3323eec9 91{
52a13284
MZ
92 static const char op[] = "add_template_measure";
93 static const char audit_cause[] = "hashing_error";
a71dc65d 94 char *template_name = entry->template_desc->name;
3323eec9 95 int result;
a35c3fb6
DK
96 struct {
97 struct ima_digest_data hdr;
140d8022 98 char digest[TPM_DIGEST_SIZE];
a35c3fb6 99 } hash;
3323eec9 100
3323eec9 101 if (!violation) {
a71dc65d
RS
102 int num_fields = entry->template_desc->num_fields;
103
ea593993
DK
104 /* this function uses default algo */
105 hash.hdr.algo = HASH_ALGO_SHA1;
a71dc65d 106 result = ima_calc_field_array_hash(&entry->template_data[0],
b6f8f16f 107 entry->template_desc,
a71dc65d 108 num_fields, &hash.hdr);
3323eec9
MZ
109 if (result < 0) {
110 integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode,
a71dc65d 111 template_name, op,
3323eec9
MZ
112 audit_cause, result, 0);
113 return result;
114 }
a35c3fb6 115 memcpy(entry->digest, hash.hdr.digest, hash.hdr.length);
3323eec9 116 }
9803d413 117 result = ima_add_template_entry(entry, violation, op, inode, filename);
3323eec9
MZ
118 return result;
119}
120
121/*
122 * ima_add_violation - add violation to measurement list.
123 *
124 * Violations are flagged in the measurement list with zero hash values.
125 * By extending the PCR with 0xFF's instead of with zeroes, the PCR
126 * value is invalidated.
127 */
7d802a22 128void ima_add_violation(struct file *file, const unsigned char *filename,
3323eec9
MZ
129 const char *op, const char *cause)
130{
131 struct ima_template_entry *entry;
31d4b761 132 struct inode *inode = file_inode(file);
23b57419 133 struct ima_event_data event_data = {NULL, file, filename, NULL, 0};
3323eec9
MZ
134 int violation = 1;
135 int result;
136
137 /* can overflow, only indicator */
138 atomic_long_inc(&ima_htable.violations);
139
23b57419 140 result = ima_alloc_init_template(&event_data, &entry);
7bc5f447 141 if (result < 0) {
3323eec9
MZ
142 result = -ENOMEM;
143 goto err_out;
144 }
9803d413 145 result = ima_store_template(entry, violation, inode, filename);
3323eec9 146 if (result < 0)
a7ed7c60 147 ima_free_template_entry(entry);
3323eec9
MZ
148err_out:
149 integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode, filename,
150 op, cause, result, 0);
151}
152
153/**
d9d300cd 154 * ima_get_action - appraise & measure decision based on policy.
3323eec9
MZ
155 * @inode: pointer to inode to measure
156 * @mask: contains the permission mask (MAY_READ, MAY_WRITE, MAY_EXECUTE)
16cac49f 157 * @function: calling function (FILE_CHECK, BPRM_CHECK, MMAP_CHECK, MODULE_CHECK)
3323eec9
MZ
158 *
159 * The policy is defined in terms of keypairs:
2bb930ab 160 * subj=, obj=, type=, func=, mask=, fsmagic=
3323eec9 161 * subj,obj, and type: are LSM specific.
2bb930ab
DK
162 * func: FILE_CHECK | BPRM_CHECK | MMAP_CHECK | MODULE_CHECK
163 * mask: contains the permission mask
3323eec9
MZ
164 * fsmagic: hex value
165 *
2fe5d6de
MZ
166 * Returns IMA_MEASURE, IMA_APPRAISE mask.
167 *
168 */
d9d300cd 169int ima_get_action(struct inode *inode, int mask, int function)
3323eec9 170{
e7c568e0 171 int flags = IMA_MEASURE | IMA_AUDIT | IMA_APPRAISE;
2fe5d6de 172
fd5f4e90 173 flags &= ima_policy_flag;
2fe5d6de
MZ
174
175 return ima_match_policy(inode, function, mask, flags);
176}
3323eec9 177
3323eec9
MZ
178/*
179 * ima_collect_measurement - collect file measurement
180 *
181 * Calculate the file hash, if it doesn't already exist,
182 * storing the measurement and i_version in the iint.
183 *
184 * Must be called with iint->mutex held.
185 *
186 * Return 0 on success, error code otherwise
187 */
f381c272 188int ima_collect_measurement(struct integrity_iint_cache *iint,
d3634d0f
DK
189 struct file *file,
190 struct evm_ima_xattr_data **xattr_value,
191 int *xattr_len)
3323eec9 192{
f9b2a735 193 const char *audit_cause = "failed";
496ad9aa 194 struct inode *inode = file_inode(file);
b583043e 195 const char *filename = file->f_path.dentry->d_name.name;
2fe5d6de 196 int result = 0;
a35c3fb6
DK
197 struct {
198 struct ima_digest_data hdr;
199 char digest[IMA_MAX_DIGEST_SIZE];
200 } hash;
3323eec9 201
d3634d0f 202 if (xattr_value)
b583043e 203 *xattr_len = ima_read_xattr(file->f_path.dentry, xattr_value);
d3634d0f 204
2fe5d6de 205 if (!(iint->flags & IMA_COLLECTED)) {
496ad9aa 206 u64 i_version = file_inode(file)->i_version;
3323eec9 207
f9b2a735
MZ
208 if (file->f_flags & O_DIRECT) {
209 audit_cause = "failed(directio)";
210 result = -EACCES;
211 goto out;
212 }
213
c7c8bb23 214 /* use default hash algorithm */
a35c3fb6 215 hash.hdr.algo = ima_hash_algo;
d3634d0f
DK
216
217 if (xattr_value)
a35c3fb6 218 ima_get_hash_algo(*xattr_value, *xattr_len, &hash.hdr);
d3634d0f 219
a35c3fb6 220 result = ima_calc_file_hash(file, &hash.hdr);
2fe5d6de 221 if (!result) {
a35c3fb6
DK
222 int length = sizeof(hash.hdr) + hash.hdr.length;
223 void *tmpbuf = krealloc(iint->ima_hash, length,
224 GFP_NOFS);
225 if (tmpbuf) {
226 iint->ima_hash = tmpbuf;
227 memcpy(iint->ima_hash, &hash, length);
228 iint->version = i_version;
229 iint->flags |= IMA_COLLECTED;
230 } else
231 result = -ENOMEM;
2fe5d6de 232 }
3323eec9 233 }
f9b2a735 234out:
2fe5d6de
MZ
235 if (result)
236 integrity_audit_msg(AUDIT_INTEGRITY_DATA, inode,
f9b2a735 237 filename, "collect_data", audit_cause,
2fe5d6de 238 result, 0);
3323eec9
MZ
239 return result;
240}
241
242/*
243 * ima_store_measurement - store file measurement
244 *
245 * Create an "ima" template and then store the template by calling
246 * ima_store_template.
247 *
248 * We only get here if the inode has not already been measured,
249 * but the measurement could already exist:
2bb930ab 250 * - multiple copies of the same file on either the same or
3323eec9
MZ
251 * different filesystems.
252 * - the inode was previously flushed as well as the iint info,
253 * containing the hashing info.
254 *
255 * Must be called with iint->mutex held.
256 */
f381c272 257void ima_store_measurement(struct integrity_iint_cache *iint,
bcbc9b0c
MZ
258 struct file *file, const unsigned char *filename,
259 struct evm_ima_xattr_data *xattr_value,
260 int xattr_len)
3323eec9 261{
52a13284
MZ
262 static const char op[] = "add_template_measure";
263 static const char audit_cause[] = "ENOMEM";
3323eec9 264 int result = -ENOMEM;
496ad9aa 265 struct inode *inode = file_inode(file);
3323eec9 266 struct ima_template_entry *entry;
23b57419
RS
267 struct ima_event_data event_data = {iint, file, filename,
268 xattr_value, xattr_len};
3323eec9
MZ
269 int violation = 0;
270
2fe5d6de
MZ
271 if (iint->flags & IMA_MEASURED)
272 return;
273
23b57419 274 result = ima_alloc_init_template(&event_data, &entry);
7bc5f447 275 if (result < 0) {
3323eec9
MZ
276 integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode, filename,
277 op, audit_cause, result, 0);
278 return;
279 }
3323eec9 280
9803d413 281 result = ima_store_template(entry, violation, inode, filename);
45fae749 282 if (!result || result == -EEXIST)
3323eec9 283 iint->flags |= IMA_MEASURED;
45fae749 284 if (result < 0)
a7ed7c60 285 ima_free_template_entry(entry);
3323eec9 286}
e7c568e0
PM
287
288void ima_audit_measurement(struct integrity_iint_cache *iint,
289 const unsigned char *filename)
290{
291 struct audit_buffer *ab;
a35c3fb6 292 char hash[(iint->ima_hash->length * 2) + 1];
5278aa52
MZ
293 const char *algo_name = hash_algo_name[iint->ima_hash->algo];
294 char algo_hash[sizeof(hash) + strlen(algo_name) + 2];
e7c568e0
PM
295 int i;
296
297 if (iint->flags & IMA_AUDITED)
298 return;
299
a35c3fb6
DK
300 for (i = 0; i < iint->ima_hash->length; i++)
301 hex_byte_pack(hash + (i * 2), iint->ima_hash->digest[i]);
e7c568e0
PM
302 hash[i * 2] = '\0';
303
304 ab = audit_log_start(current->audit_context, GFP_KERNEL,
305 AUDIT_INTEGRITY_RULE);
306 if (!ab)
307 return;
308
309 audit_log_format(ab, "file=");
310 audit_log_untrustedstring(ab, filename);
311 audit_log_format(ab, " hash=");
5278aa52
MZ
312 snprintf(algo_hash, sizeof(algo_hash), "%s:%s", algo_name, hash);
313 audit_log_untrustedstring(ab, algo_hash);
e7c568e0
PM
314
315 audit_log_task_info(ab, current);
316 audit_log_end(ab);
317
318 iint->flags |= IMA_AUDITED;
319}
ea1046d4
DK
320
321const char *ima_d_path(struct path *path, char **pathbuf)
322{
323 char *pathname = NULL;
324
456f5fd3 325 *pathbuf = __getname();
ea1046d4 326 if (*pathbuf) {
17f4bad3 327 pathname = d_absolute_path(path, *pathbuf, PATH_MAX);
ea1046d4 328 if (IS_ERR(pathname)) {
456f5fd3 329 __putname(*pathbuf);
ea1046d4
DK
330 *pathbuf = NULL;
331 pathname = NULL;
332 }
333 }
61997c43 334 return pathname ?: (const char *)path->dentry->d_name.name;
ea1046d4 335}
This page took 0.243027 seconds and 5 git commands to generate.