Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 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 |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 12 | * Implements must_appraise_or_measure, collect_measurement, |
| 13 | * appraise_measurement, store_measurement and store_template. |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 14 | */ |
| 15 | #include <linux/module.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 16 | #include <linux/slab.h> |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 17 | #include <linux/file.h> |
| 18 | #include <linux/fs.h> |
| 19 | #include <linux/xattr.h> |
| 20 | #include <linux/evm.h> |
Dmitry Kasatkin | ea59399 | 2013-06-07 12:16:24 +0200 | [diff] [blame] | 21 | #include <crypto/hash_info.h> |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 22 | #include "ima.h" |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 23 | |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 24 | /* |
Roberto Sassu | a7ed7c6 | 2013-12-02 19:40:34 +0100 | [diff] [blame] | 25 | * ima_free_template_entry - free an existing template entry |
| 26 | */ |
| 27 | void 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 Sassu | 7bc5f44 | 2013-06-07 12:16:28 +0200 | [diff] [blame] | 38 | * ima_alloc_init_template - create and initialize a new template entry |
| 39 | */ |
| 40 | int ima_alloc_init_template(struct integrity_iint_cache *iint, |
| 41 | struct file *file, const unsigned char *filename, |
Mimi Zohar | bcbc9b0c | 2013-07-23 11:15:00 -0400 | [diff] [blame] | 42 | struct evm_ima_xattr_data *xattr_value, |
| 43 | int xattr_len, struct ima_template_entry **entry) |
Roberto Sassu | 7bc5f44 | 2013-06-07 12:16:28 +0200 | [diff] [blame] | 44 | { |
Roberto Sassu | a71dc65 | 2013-06-07 12:16:33 +0200 | [diff] [blame] | 45 | struct ima_template_desc *template_desc = ima_template_desc_current(); |
| 46 | int i, result = 0; |
Roberto Sassu | 7bc5f44 | 2013-06-07 12:16:28 +0200 | [diff] [blame] | 47 | |
Roberto Sassu | a71dc65 | 2013-06-07 12:16:33 +0200 | [diff] [blame] | 48 | *entry = kzalloc(sizeof(**entry) + template_desc->num_fields * |
| 49 | sizeof(struct ima_field_data), GFP_NOFS); |
| 50 | if (!*entry) |
Roberto Sassu | 7bc5f44 | 2013-06-07 12:16:28 +0200 | [diff] [blame] | 51 | return -ENOMEM; |
| 52 | |
Roberto Sassu | a7ed7c6 | 2013-12-02 19:40:34 +0100 | [diff] [blame] | 53 | (*entry)->template_desc = template_desc; |
Roberto Sassu | a71dc65 | 2013-06-07 12:16:33 +0200 | [diff] [blame] | 54 | for (i = 0; i < template_desc->num_fields; i++) { |
| 55 | struct ima_template_field *field = template_desc->fields[i]; |
| 56 | u32 len; |
Roberto Sassu | 7bc5f44 | 2013-06-07 12:16:28 +0200 | [diff] [blame] | 57 | |
Roberto Sassu | a71dc65 | 2013-06-07 12:16:33 +0200 | [diff] [blame] | 58 | result = field->field_init(iint, file, filename, |
Mimi Zohar | bcbc9b0c | 2013-07-23 11:15:00 -0400 | [diff] [blame] | 59 | xattr_value, xattr_len, |
Roberto Sassu | a71dc65 | 2013-06-07 12:16:33 +0200 | [diff] [blame] | 60 | &((*entry)->template_data[i])); |
| 61 | if (result != 0) |
| 62 | goto out; |
Roberto Sassu | 7bc5f44 | 2013-06-07 12:16:28 +0200 | [diff] [blame] | 63 | |
Roberto Sassu | a71dc65 | 2013-06-07 12:16:33 +0200 | [diff] [blame] | 64 | len = (*entry)->template_data[i].len; |
| 65 | (*entry)->template_data_len += sizeof(len); |
| 66 | (*entry)->template_data_len += len; |
| 67 | } |
Roberto Sassu | 7bc5f44 | 2013-06-07 12:16:28 +0200 | [diff] [blame] | 68 | return 0; |
Roberto Sassu | a71dc65 | 2013-06-07 12:16:33 +0200 | [diff] [blame] | 69 | out: |
Roberto Sassu | a7ed7c6 | 2013-12-02 19:40:34 +0100 | [diff] [blame] | 70 | ima_free_template_entry(*entry); |
Roberto Sassu | a71dc65 | 2013-06-07 12:16:33 +0200 | [diff] [blame] | 71 | *entry = NULL; |
Roberto Sassu | 7bc5f44 | 2013-06-07 12:16:28 +0200 | [diff] [blame] | 72 | return result; |
| 73 | } |
| 74 | |
| 75 | /* |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 76 | * 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 | */ |
| 91 | int ima_store_template(struct ima_template_entry *entry, |
Roberto Sassu | 9803d41 | 2013-06-07 12:16:27 +0200 | [diff] [blame] | 92 | int violation, struct inode *inode, |
| 93 | const unsigned char *filename) |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 94 | { |
Mimi Zohar | 52a1328 | 2013-12-11 14:44:04 -0500 | [diff] [blame] | 95 | static const char op[] = "add_template_measure"; |
| 96 | static const char audit_cause[] = "hashing_error"; |
Roberto Sassu | a71dc65 | 2013-06-07 12:16:33 +0200 | [diff] [blame] | 97 | char *template_name = entry->template_desc->name; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 98 | int result; |
Dmitry Kasatkin | a35c3fb | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 99 | struct { |
| 100 | struct ima_digest_data hdr; |
Mimi Zohar | 140d802 | 2013-03-11 20:29:47 -0400 | [diff] [blame] | 101 | char digest[TPM_DIGEST_SIZE]; |
Dmitry Kasatkin | a35c3fb | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 102 | } hash; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 103 | |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 104 | if (!violation) { |
Roberto Sassu | a71dc65 | 2013-06-07 12:16:33 +0200 | [diff] [blame] | 105 | int num_fields = entry->template_desc->num_fields; |
| 106 | |
Dmitry Kasatkin | ea59399 | 2013-06-07 12:16:24 +0200 | [diff] [blame] | 107 | /* this function uses default algo */ |
| 108 | hash.hdr.algo = HASH_ALGO_SHA1; |
Roberto Sassu | a71dc65 | 2013-06-07 12:16:33 +0200 | [diff] [blame] | 109 | result = ima_calc_field_array_hash(&entry->template_data[0], |
Roberto Sassu | b6f8f16 | 2013-11-08 19:21:39 +0100 | [diff] [blame] | 110 | entry->template_desc, |
Roberto Sassu | a71dc65 | 2013-06-07 12:16:33 +0200 | [diff] [blame] | 111 | num_fields, &hash.hdr); |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 112 | if (result < 0) { |
| 113 | integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode, |
Roberto Sassu | a71dc65 | 2013-06-07 12:16:33 +0200 | [diff] [blame] | 114 | template_name, op, |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 115 | audit_cause, result, 0); |
| 116 | return result; |
| 117 | } |
Dmitry Kasatkin | a35c3fb | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 118 | memcpy(entry->digest, hash.hdr.digest, hash.hdr.length); |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 119 | } |
Roberto Sassu | 9803d41 | 2013-06-07 12:16:27 +0200 | [diff] [blame] | 120 | result = ima_add_template_entry(entry, violation, op, inode, filename); |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 121 | 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 Sassu | 7d802a2 | 2013-06-07 12:16:26 +0200 | [diff] [blame] | 131 | void ima_add_violation(struct file *file, const unsigned char *filename, |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 132 | const char *op, const char *cause) |
| 133 | { |
| 134 | struct ima_template_entry *entry; |
Libo Chen | 31d4b76 | 2013-12-11 14:11:28 +0800 | [diff] [blame] | 135 | struct inode *inode = file_inode(file); |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 136 | int violation = 1; |
| 137 | int result; |
| 138 | |
| 139 | /* can overflow, only indicator */ |
| 140 | atomic_long_inc(&ima_htable.violations); |
| 141 | |
Mimi Zohar | bcbc9b0c | 2013-07-23 11:15:00 -0400 | [diff] [blame] | 142 | result = ima_alloc_init_template(NULL, file, filename, |
| 143 | NULL, 0, &entry); |
Roberto Sassu | 7bc5f44 | 2013-06-07 12:16:28 +0200 | [diff] [blame] | 144 | if (result < 0) { |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 145 | result = -ENOMEM; |
| 146 | goto err_out; |
| 147 | } |
Roberto Sassu | 9803d41 | 2013-06-07 12:16:27 +0200 | [diff] [blame] | 148 | result = ima_store_template(entry, violation, inode, filename); |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 149 | if (result < 0) |
Roberto Sassu | a7ed7c6 | 2013-12-02 19:40:34 +0100 | [diff] [blame] | 150 | ima_free_template_entry(entry); |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 151 | err_out: |
| 152 | integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode, filename, |
| 153 | op, cause, result, 0); |
| 154 | } |
| 155 | |
| 156 | /** |
Dmitry Kasatkin | d9d300c | 2012-06-27 11:26:14 +0300 | [diff] [blame] | 157 | * ima_get_action - appraise & measure decision based on policy. |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 158 | * @inode: pointer to inode to measure |
| 159 | * @mask: contains the permission mask (MAY_READ, MAY_WRITE, MAY_EXECUTE) |
Mimi Zohar | 16cac49 | 2012-12-13 11:15:04 -0500 | [diff] [blame] | 160 | * @function: calling function (FILE_CHECK, BPRM_CHECK, MMAP_CHECK, MODULE_CHECK) |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 161 | * |
| 162 | * The policy is defined in terms of keypairs: |
Dmitry Kasatkin | 2bb930a | 2014-03-04 18:04:20 +0200 | [diff] [blame] | 163 | * subj=, obj=, type=, func=, mask=, fsmagic= |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 164 | * subj,obj, and type: are LSM specific. |
Dmitry Kasatkin | 2bb930a | 2014-03-04 18:04:20 +0200 | [diff] [blame] | 165 | * func: FILE_CHECK | BPRM_CHECK | MMAP_CHECK | MODULE_CHECK |
| 166 | * mask: contains the permission mask |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 167 | * fsmagic: hex value |
| 168 | * |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 169 | * Returns IMA_MEASURE, IMA_APPRAISE mask. |
| 170 | * |
| 171 | */ |
Dmitry Kasatkin | d9d300c | 2012-06-27 11:26:14 +0300 | [diff] [blame] | 172 | int ima_get_action(struct inode *inode, int mask, int function) |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 173 | { |
Peter Moody | e7c568e | 2012-06-14 10:04:36 -0700 | [diff] [blame] | 174 | int flags = IMA_MEASURE | IMA_AUDIT | IMA_APPRAISE; |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 175 | |
| 176 | if (!ima_appraise) |
| 177 | flags &= ~IMA_APPRAISE; |
| 178 | |
| 179 | return ima_match_policy(inode, function, mask, flags); |
| 180 | } |
| 181 | |
Mimi Zohar | 1adace9 | 2011-02-22 10:19:43 -0500 | [diff] [blame] | 182 | int ima_must_measure(struct inode *inode, int mask, int function) |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 183 | { |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 184 | return ima_match_policy(inode, function, mask, IMA_MEASURE); |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | /* |
| 188 | * ima_collect_measurement - collect file measurement |
| 189 | * |
| 190 | * Calculate the file hash, if it doesn't already exist, |
| 191 | * storing the measurement and i_version in the iint. |
| 192 | * |
| 193 | * Must be called with iint->mutex held. |
| 194 | * |
| 195 | * Return 0 on success, error code otherwise |
| 196 | */ |
Mimi Zohar | f381c27 | 2011-03-09 14:13:22 -0500 | [diff] [blame] | 197 | int ima_collect_measurement(struct integrity_iint_cache *iint, |
Dmitry Kasatkin | d3634d0 | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 198 | struct file *file, |
| 199 | struct evm_ima_xattr_data **xattr_value, |
| 200 | int *xattr_len) |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 201 | { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 202 | struct inode *inode = file_inode(file); |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 203 | const char *filename = file->f_dentry->d_name.name; |
| 204 | int result = 0; |
Dmitry Kasatkin | a35c3fb | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 205 | struct { |
| 206 | struct ima_digest_data hdr; |
| 207 | char digest[IMA_MAX_DIGEST_SIZE]; |
| 208 | } hash; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 209 | |
Dmitry Kasatkin | d3634d0 | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 210 | if (xattr_value) |
| 211 | *xattr_len = ima_read_xattr(file->f_dentry, xattr_value); |
| 212 | |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 213 | if (!(iint->flags & IMA_COLLECTED)) { |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 214 | u64 i_version = file_inode(file)->i_version; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 215 | |
Dmitry Kasatkin | c7c8bb2 | 2013-04-25 10:43:56 +0300 | [diff] [blame] | 216 | /* use default hash algorithm */ |
Dmitry Kasatkin | a35c3fb | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 217 | hash.hdr.algo = ima_hash_algo; |
Dmitry Kasatkin | d3634d0 | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 218 | |
| 219 | if (xattr_value) |
Dmitry Kasatkin | a35c3fb | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 220 | ima_get_hash_algo(*xattr_value, *xattr_len, &hash.hdr); |
Dmitry Kasatkin | d3634d0 | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 221 | |
Dmitry Kasatkin | a35c3fb | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 222 | result = ima_calc_file_hash(file, &hash.hdr); |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 223 | if (!result) { |
Dmitry Kasatkin | a35c3fb | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 224 | int length = sizeof(hash.hdr) + hash.hdr.length; |
| 225 | void *tmpbuf = krealloc(iint->ima_hash, length, |
| 226 | GFP_NOFS); |
| 227 | if (tmpbuf) { |
| 228 | iint->ima_hash = tmpbuf; |
| 229 | memcpy(iint->ima_hash, &hash, length); |
| 230 | iint->version = i_version; |
| 231 | iint->flags |= IMA_COLLECTED; |
| 232 | } else |
| 233 | result = -ENOMEM; |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 234 | } |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 235 | } |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 236 | if (result) |
| 237 | integrity_audit_msg(AUDIT_INTEGRITY_DATA, inode, |
| 238 | filename, "collect_data", "failed", |
| 239 | result, 0); |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 240 | return result; |
| 241 | } |
| 242 | |
| 243 | /* |
| 244 | * ima_store_measurement - store file measurement |
| 245 | * |
| 246 | * Create an "ima" template and then store the template by calling |
| 247 | * ima_store_template. |
| 248 | * |
| 249 | * We only get here if the inode has not already been measured, |
| 250 | * but the measurement could already exist: |
Dmitry Kasatkin | 2bb930a | 2014-03-04 18:04:20 +0200 | [diff] [blame] | 251 | * - multiple copies of the same file on either the same or |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 252 | * different filesystems. |
| 253 | * - the inode was previously flushed as well as the iint info, |
| 254 | * containing the hashing info. |
| 255 | * |
| 256 | * Must be called with iint->mutex held. |
| 257 | */ |
Mimi Zohar | f381c27 | 2011-03-09 14:13:22 -0500 | [diff] [blame] | 258 | void ima_store_measurement(struct integrity_iint_cache *iint, |
Mimi Zohar | bcbc9b0c | 2013-07-23 11:15:00 -0400 | [diff] [blame] | 259 | struct file *file, const unsigned char *filename, |
| 260 | struct evm_ima_xattr_data *xattr_value, |
| 261 | int xattr_len) |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 262 | { |
Mimi Zohar | 52a1328 | 2013-12-11 14:44:04 -0500 | [diff] [blame] | 263 | static const char op[] = "add_template_measure"; |
| 264 | static const char audit_cause[] = "ENOMEM"; |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 265 | int result = -ENOMEM; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 266 | struct inode *inode = file_inode(file); |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 267 | struct ima_template_entry *entry; |
| 268 | int violation = 0; |
| 269 | |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 270 | if (iint->flags & IMA_MEASURED) |
| 271 | return; |
| 272 | |
Mimi Zohar | bcbc9b0c | 2013-07-23 11:15:00 -0400 | [diff] [blame] | 273 | result = ima_alloc_init_template(iint, file, filename, |
| 274 | xattr_value, xattr_len, &entry); |
Roberto Sassu | 7bc5f44 | 2013-06-07 12:16:28 +0200 | [diff] [blame] | 275 | if (result < 0) { |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 276 | integrity_audit_msg(AUDIT_INTEGRITY_PCR, inode, filename, |
| 277 | op, audit_cause, result, 0); |
| 278 | return; |
| 279 | } |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 280 | |
Roberto Sassu | 9803d41 | 2013-06-07 12:16:27 +0200 | [diff] [blame] | 281 | result = ima_store_template(entry, violation, inode, filename); |
Roberto Sassu | 45fae74 | 2011-12-19 15:57:27 +0100 | [diff] [blame] | 282 | if (!result || result == -EEXIST) |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 283 | iint->flags |= IMA_MEASURED; |
Roberto Sassu | 45fae74 | 2011-12-19 15:57:27 +0100 | [diff] [blame] | 284 | if (result < 0) |
Roberto Sassu | a7ed7c6 | 2013-12-02 19:40:34 +0100 | [diff] [blame] | 285 | ima_free_template_entry(entry); |
Mimi Zohar | 3323eec | 2009-02-04 09:06:58 -0500 | [diff] [blame] | 286 | } |
Peter Moody | e7c568e | 2012-06-14 10:04:36 -0700 | [diff] [blame] | 287 | |
| 288 | void ima_audit_measurement(struct integrity_iint_cache *iint, |
| 289 | const unsigned char *filename) |
| 290 | { |
| 291 | struct audit_buffer *ab; |
Dmitry Kasatkin | a35c3fb | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 292 | char hash[(iint->ima_hash->length * 2) + 1]; |
Mimi Zohar | 5278aa5 | 2013-06-07 12:16:38 +0200 | [diff] [blame] | 293 | const char *algo_name = hash_algo_name[iint->ima_hash->algo]; |
| 294 | char algo_hash[sizeof(hash) + strlen(algo_name) + 2]; |
Peter Moody | e7c568e | 2012-06-14 10:04:36 -0700 | [diff] [blame] | 295 | int i; |
| 296 | |
| 297 | if (iint->flags & IMA_AUDITED) |
| 298 | return; |
| 299 | |
Dmitry Kasatkin | a35c3fb | 2013-04-25 10:44:04 +0300 | [diff] [blame] | 300 | for (i = 0; i < iint->ima_hash->length; i++) |
| 301 | hex_byte_pack(hash + (i * 2), iint->ima_hash->digest[i]); |
Peter Moody | e7c568e | 2012-06-14 10:04:36 -0700 | [diff] [blame] | 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="); |
Mimi Zohar | 5278aa5 | 2013-06-07 12:16:38 +0200 | [diff] [blame] | 312 | snprintf(algo_hash, sizeof(algo_hash), "%s:%s", algo_name, hash); |
| 313 | audit_log_untrustedstring(ab, algo_hash); |
Peter Moody | e7c568e | 2012-06-14 10:04:36 -0700 | [diff] [blame] | 314 | |
| 315 | audit_log_task_info(ab, current); |
| 316 | audit_log_end(ab); |
| 317 | |
| 318 | iint->flags |= IMA_AUDITED; |
| 319 | } |
Dmitry Kasatkin | ea1046d | 2012-09-04 00:40:17 +0300 | [diff] [blame] | 320 | |
| 321 | const char *ima_d_path(struct path *path, char **pathbuf) |
| 322 | { |
| 323 | char *pathname = NULL; |
| 324 | |
| 325 | /* We will allow 11 spaces for ' (deleted)' to be appended */ |
| 326 | *pathbuf = kmalloc(PATH_MAX + 11, GFP_KERNEL); |
| 327 | if (*pathbuf) { |
| 328 | pathname = d_path(path, *pathbuf, PATH_MAX + 11); |
| 329 | if (IS_ERR(pathname)) { |
| 330 | kfree(*pathbuf); |
| 331 | *pathbuf = NULL; |
| 332 | pathname = NULL; |
| 333 | } |
| 334 | } |
Dmitry Kasatkin | 61997c4 | 2013-11-13 22:23:20 +0200 | [diff] [blame] | 335 | return pathname ?: (const char *)path->dentry->d_name.name; |
Dmitry Kasatkin | ea1046d | 2012-09-04 00:40:17 +0300 | [diff] [blame] | 336 | } |