Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2005-2010 IBM Corporation |
| 3 | * |
| 4 | * Author: |
| 5 | * Mimi Zohar <zohar@us.ibm.com> |
| 6 | * Kylene Hall <kjhall@us.ibm.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation, version 2 of the License. |
| 11 | * |
| 12 | * File: evm_main.c |
| 13 | * implements evm_inode_setxattr, evm_inode_post_setxattr, |
| 14 | * evm_inode_removexattr, and evm_verifyxattr |
| 15 | */ |
| 16 | |
Joe Perches | 20ee451 | 2014-02-24 13:59:56 -0800 | [diff] [blame] | 17 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 18 | |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 19 | #include <linux/module.h> |
| 20 | #include <linux/crypto.h> |
Mimi Zohar | 9b97b6c | 2013-02-21 09:31:22 -0500 | [diff] [blame] | 21 | #include <linux/audit.h> |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 22 | #include <linux/xattr.h> |
| 23 | #include <linux/integrity.h> |
Mimi Zohar | 3e1be52 | 2011-03-09 14:38:26 -0500 | [diff] [blame] | 24 | #include <linux/evm.h> |
Dmitry Kasatkin | d46eb36 | 2011-03-09 15:07:36 -0500 | [diff] [blame] | 25 | #include <crypto/hash.h> |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 26 | #include "evm.h" |
| 27 | |
| 28 | int evm_initialized; |
| 29 | |
Mimi Zohar | 9b97b6c | 2013-02-21 09:31:22 -0500 | [diff] [blame] | 30 | static char *integrity_status_msg[] = { |
| 31 | "pass", "fail", "no_label", "no_xattrs", "unknown" |
| 32 | }; |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 33 | char *evm_hmac = "hmac(sha1)"; |
Dmitry Kasatkin | 15647eb | 2011-09-01 14:41:40 +0300 | [diff] [blame] | 34 | char *evm_hash = "sha1"; |
Dmitry Kasatkin | d3b3367 | 2014-03-28 14:31:04 +0200 | [diff] [blame^] | 35 | int evm_hmac_attrs; |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 36 | |
| 37 | char *evm_config_xattrnames[] = { |
| 38 | #ifdef CONFIG_SECURITY_SELINUX |
| 39 | XATTR_NAME_SELINUX, |
| 40 | #endif |
| 41 | #ifdef CONFIG_SECURITY_SMACK |
| 42 | XATTR_NAME_SMACK, |
| 43 | #endif |
Mimi Zohar | 2fe5d6d | 2012-02-13 10:15:05 -0500 | [diff] [blame] | 44 | #ifdef CONFIG_IMA_APPRAISE |
| 45 | XATTR_NAME_IMA, |
| 46 | #endif |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 47 | XATTR_NAME_CAPS, |
| 48 | NULL |
| 49 | }; |
| 50 | |
Mimi Zohar | 7102ebc | 2011-05-12 18:33:20 -0400 | [diff] [blame] | 51 | static int evm_fixmode; |
| 52 | static int __init evm_set_fixmode(char *str) |
| 53 | { |
| 54 | if (strncmp(str, "fix", 3) == 0) |
| 55 | evm_fixmode = 1; |
| 56 | return 0; |
| 57 | } |
| 58 | __setup("evm=", evm_set_fixmode); |
| 59 | |
Dmitry Kasatkin | d3b3367 | 2014-03-28 14:31:04 +0200 | [diff] [blame^] | 60 | static void __init evm_init_config(void) |
| 61 | { |
| 62 | #ifdef CONFIG_EVM_ATTR_FSUUID |
| 63 | evm_hmac_attrs |= EVM_ATTR_FSUUID; |
| 64 | #endif |
| 65 | pr_info("HMAC attrs: 0x%x\n", evm_hmac_attrs); |
| 66 | } |
| 67 | |
Dmitry Kasatkin | 15647eb | 2011-09-01 14:41:40 +0300 | [diff] [blame] | 68 | static int evm_find_protected_xattrs(struct dentry *dentry) |
| 69 | { |
| 70 | struct inode *inode = dentry->d_inode; |
| 71 | char **xattr; |
| 72 | int error; |
| 73 | int count = 0; |
| 74 | |
Al Viro | 627bf81 | 2014-02-01 04:43:32 -0500 | [diff] [blame] | 75 | if (!inode->i_op->getxattr) |
Dmitry Kasatkin | 15647eb | 2011-09-01 14:41:40 +0300 | [diff] [blame] | 76 | return -EOPNOTSUPP; |
| 77 | |
| 78 | for (xattr = evm_config_xattrnames; *xattr != NULL; xattr++) { |
| 79 | error = inode->i_op->getxattr(dentry, *xattr, NULL, 0); |
| 80 | if (error < 0) { |
| 81 | if (error == -ENODATA) |
| 82 | continue; |
| 83 | return error; |
| 84 | } |
| 85 | count++; |
| 86 | } |
| 87 | |
| 88 | return count; |
| 89 | } |
| 90 | |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 91 | /* |
| 92 | * evm_verify_hmac - calculate and compare the HMAC with the EVM xattr |
| 93 | * |
| 94 | * Compute the HMAC on the dentry's protected set of extended attributes |
Mimi Zohar | 7102ebc | 2011-05-12 18:33:20 -0400 | [diff] [blame] | 95 | * and compare it against the stored security.evm xattr. |
| 96 | * |
| 97 | * For performance: |
| 98 | * - use the previoulsy retrieved xattr value and length to calculate the |
| 99 | * HMAC.) |
| 100 | * - cache the verification result in the iint, when available. |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 101 | * |
| 102 | * Returns integrity status |
| 103 | */ |
| 104 | static enum integrity_status evm_verify_hmac(struct dentry *dentry, |
| 105 | const char *xattr_name, |
| 106 | char *xattr_value, |
| 107 | size_t xattr_value_len, |
| 108 | struct integrity_iint_cache *iint) |
| 109 | { |
Dmitry Kasatkin | 15647eb | 2011-09-01 14:41:40 +0300 | [diff] [blame] | 110 | struct evm_ima_xattr_data *xattr_data = NULL; |
| 111 | struct evm_ima_xattr_data calc; |
Mimi Zohar | 566be59 | 2011-08-22 09:14:18 -0400 | [diff] [blame] | 112 | enum integrity_status evm_status = INTEGRITY_PASS; |
Dmitry Kasatkin | 15647eb | 2011-09-01 14:41:40 +0300 | [diff] [blame] | 113 | int rc, xattr_len; |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 114 | |
Mimi Zohar | 7102ebc | 2011-05-12 18:33:20 -0400 | [diff] [blame] | 115 | if (iint && iint->evm_status == INTEGRITY_PASS) |
Dmitry Kasatkin | 24e0198 | 2011-05-06 11:34:17 +0300 | [diff] [blame] | 116 | return iint->evm_status; |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 117 | |
Dmitry Kasatkin | 6d38ca01 | 2011-05-06 11:34:14 +0300 | [diff] [blame] | 118 | /* if status is not PASS, try to check again - against -ENOMEM */ |
| 119 | |
Dmitry Kasatkin | 15647eb | 2011-09-01 14:41:40 +0300 | [diff] [blame] | 120 | /* first need to know the sig type */ |
| 121 | rc = vfs_getxattr_alloc(dentry, XATTR_NAME_EVM, (char **)&xattr_data, 0, |
| 122 | GFP_NOFS); |
| 123 | if (rc <= 0) { |
| 124 | if (rc == 0) |
| 125 | evm_status = INTEGRITY_FAIL; /* empty */ |
| 126 | else if (rc == -ENODATA) { |
| 127 | rc = evm_find_protected_xattrs(dentry); |
| 128 | if (rc > 0) |
| 129 | evm_status = INTEGRITY_NOLABEL; |
| 130 | else if (rc == 0) |
| 131 | evm_status = INTEGRITY_NOXATTRS; /* new file */ |
| 132 | } |
Mimi Zohar | 566be59 | 2011-08-22 09:14:18 -0400 | [diff] [blame] | 133 | goto out; |
| 134 | } |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 135 | |
Dmitry Kasatkin | b1aaab2 | 2013-10-10 16:12:03 +0900 | [diff] [blame] | 136 | xattr_len = rc; |
Dmitry Kasatkin | 15647eb | 2011-09-01 14:41:40 +0300 | [diff] [blame] | 137 | |
| 138 | /* check value type */ |
| 139 | switch (xattr_data->type) { |
| 140 | case EVM_XATTR_HMAC: |
| 141 | rc = evm_calc_hmac(dentry, xattr_name, xattr_value, |
| 142 | xattr_value_len, calc.digest); |
| 143 | if (rc) |
| 144 | break; |
| 145 | rc = memcmp(xattr_data->digest, calc.digest, |
| 146 | sizeof(calc.digest)); |
| 147 | if (rc) |
| 148 | rc = -EINVAL; |
| 149 | break; |
| 150 | case EVM_IMA_XATTR_DIGSIG: |
| 151 | rc = evm_calc_hash(dentry, xattr_name, xattr_value, |
| 152 | xattr_value_len, calc.digest); |
| 153 | if (rc) |
| 154 | break; |
| 155 | rc = integrity_digsig_verify(INTEGRITY_KEYRING_EVM, |
Dmitry Kasatkin | b1aaab2 | 2013-10-10 16:12:03 +0900 | [diff] [blame] | 156 | (const char *)xattr_data, xattr_len, |
Dmitry Kasatkin | 15647eb | 2011-09-01 14:41:40 +0300 | [diff] [blame] | 157 | calc.digest, sizeof(calc.digest)); |
| 158 | if (!rc) { |
| 159 | /* we probably want to replace rsa with hmac here */ |
| 160 | evm_update_evmxattr(dentry, xattr_name, xattr_value, |
| 161 | xattr_value_len); |
| 162 | } |
| 163 | break; |
| 164 | default: |
| 165 | rc = -EINVAL; |
| 166 | break; |
| 167 | } |
| 168 | |
| 169 | if (rc) |
| 170 | evm_status = (rc == -ENODATA) ? |
| 171 | INTEGRITY_NOXATTRS : INTEGRITY_FAIL; |
Mimi Zohar | 7102ebc | 2011-05-12 18:33:20 -0400 | [diff] [blame] | 172 | out: |
| 173 | if (iint) |
| 174 | iint->evm_status = evm_status; |
Dmitry Kasatkin | 15647eb | 2011-09-01 14:41:40 +0300 | [diff] [blame] | 175 | kfree(xattr_data); |
Mimi Zohar | 7102ebc | 2011-05-12 18:33:20 -0400 | [diff] [blame] | 176 | return evm_status; |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | static int evm_protected_xattr(const char *req_xattr_name) |
| 180 | { |
| 181 | char **xattrname; |
| 182 | int namelen; |
| 183 | int found = 0; |
| 184 | |
| 185 | namelen = strlen(req_xattr_name); |
| 186 | for (xattrname = evm_config_xattrnames; *xattrname != NULL; xattrname++) { |
| 187 | if ((strlen(*xattrname) == namelen) |
| 188 | && (strncmp(req_xattr_name, *xattrname, namelen) == 0)) { |
| 189 | found = 1; |
| 190 | break; |
| 191 | } |
Mimi Zohar | cb723180 | 2011-03-09 14:40:44 -0500 | [diff] [blame] | 192 | if (strncmp(req_xattr_name, |
| 193 | *xattrname + XATTR_SECURITY_PREFIX_LEN, |
| 194 | strlen(req_xattr_name)) == 0) { |
| 195 | found = 1; |
| 196 | break; |
| 197 | } |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 198 | } |
| 199 | return found; |
| 200 | } |
| 201 | |
| 202 | /** |
| 203 | * evm_verifyxattr - verify the integrity of the requested xattr |
| 204 | * @dentry: object of the verify xattr |
| 205 | * @xattr_name: requested xattr |
| 206 | * @xattr_value: requested xattr value |
| 207 | * @xattr_value_len: requested xattr value length |
| 208 | * |
| 209 | * Calculate the HMAC for the given dentry and verify it against the stored |
| 210 | * security.evm xattr. For performance, use the xattr value and length |
| 211 | * previously retrieved to calculate the HMAC. |
| 212 | * |
| 213 | * Returns the xattr integrity status. |
| 214 | * |
| 215 | * This function requires the caller to lock the inode's i_mutex before it |
| 216 | * is executed. |
| 217 | */ |
| 218 | enum integrity_status evm_verifyxattr(struct dentry *dentry, |
| 219 | const char *xattr_name, |
Dmitry Kasatkin | 2960e6c | 2011-05-06 11:34:13 +0300 | [diff] [blame] | 220 | void *xattr_value, size_t xattr_value_len, |
| 221 | struct integrity_iint_cache *iint) |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 222 | { |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 223 | if (!evm_initialized || !evm_protected_xattr(xattr_name)) |
| 224 | return INTEGRITY_UNKNOWN; |
| 225 | |
Dmitry Kasatkin | 2960e6c | 2011-05-06 11:34:13 +0300 | [diff] [blame] | 226 | if (!iint) { |
| 227 | iint = integrity_iint_find(dentry->d_inode); |
| 228 | if (!iint) |
| 229 | return INTEGRITY_UNKNOWN; |
| 230 | } |
| 231 | return evm_verify_hmac(dentry, xattr_name, xattr_value, |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 232 | xattr_value_len, iint); |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 233 | } |
| 234 | EXPORT_SYMBOL_GPL(evm_verifyxattr); |
| 235 | |
| 236 | /* |
Mimi Zohar | 7102ebc | 2011-05-12 18:33:20 -0400 | [diff] [blame] | 237 | * evm_verify_current_integrity - verify the dentry's metadata integrity |
| 238 | * @dentry: pointer to the affected dentry |
| 239 | * |
| 240 | * Verify and return the dentry's metadata integrity. The exceptions are |
| 241 | * before EVM is initialized or in 'fix' mode. |
| 242 | */ |
| 243 | static enum integrity_status evm_verify_current_integrity(struct dentry *dentry) |
| 244 | { |
| 245 | struct inode *inode = dentry->d_inode; |
| 246 | |
| 247 | if (!evm_initialized || !S_ISREG(inode->i_mode) || evm_fixmode) |
| 248 | return 0; |
| 249 | return evm_verify_hmac(dentry, NULL, NULL, 0, NULL); |
| 250 | } |
| 251 | |
Mimi Zohar | a924ce0 | 2011-08-11 01:22:30 -0400 | [diff] [blame] | 252 | /* |
| 253 | * evm_protect_xattr - protect the EVM extended attribute |
| 254 | * |
Mimi Zohar | bf6d0f5 | 2011-08-18 18:07:44 -0400 | [diff] [blame] | 255 | * Prevent security.evm from being modified or removed without the |
| 256 | * necessary permissions or when the existing value is invalid. |
| 257 | * |
| 258 | * The posix xattr acls are 'system' prefixed, which normally would not |
| 259 | * affect security.evm. An interesting side affect of writing posix xattr |
| 260 | * acls is their modifying of the i_mode, which is included in security.evm. |
| 261 | * For posix xattr acls only, permit security.evm, even if it currently |
| 262 | * doesn't exist, to be updated. |
Mimi Zohar | a924ce0 | 2011-08-11 01:22:30 -0400 | [diff] [blame] | 263 | */ |
| 264 | static int evm_protect_xattr(struct dentry *dentry, const char *xattr_name, |
| 265 | const void *xattr_value, size_t xattr_value_len) |
| 266 | { |
| 267 | enum integrity_status evm_status; |
| 268 | |
| 269 | if (strcmp(xattr_name, XATTR_NAME_EVM) == 0) { |
| 270 | if (!capable(CAP_SYS_ADMIN)) |
| 271 | return -EPERM; |
Mimi Zohar | bf6d0f5 | 2011-08-18 18:07:44 -0400 | [diff] [blame] | 272 | } else if (!evm_protected_xattr(xattr_name)) { |
| 273 | if (!posix_xattr_acl(xattr_name)) |
| 274 | return 0; |
| 275 | evm_status = evm_verify_current_integrity(dentry); |
| 276 | if ((evm_status == INTEGRITY_PASS) || |
Mimi Zohar | 566be59 | 2011-08-22 09:14:18 -0400 | [diff] [blame] | 277 | (evm_status == INTEGRITY_NOXATTRS)) |
Mimi Zohar | bf6d0f5 | 2011-08-18 18:07:44 -0400 | [diff] [blame] | 278 | return 0; |
Mimi Zohar | 9b97b6c | 2013-02-21 09:31:22 -0500 | [diff] [blame] | 279 | goto out; |
Mimi Zohar | bf6d0f5 | 2011-08-18 18:07:44 -0400 | [diff] [blame] | 280 | } |
Mimi Zohar | a924ce0 | 2011-08-11 01:22:30 -0400 | [diff] [blame] | 281 | evm_status = evm_verify_current_integrity(dentry); |
Mimi Zohar | 9b97b6c | 2013-02-21 09:31:22 -0500 | [diff] [blame] | 282 | out: |
| 283 | if (evm_status != INTEGRITY_PASS) |
| 284 | integrity_audit_msg(AUDIT_INTEGRITY_METADATA, dentry->d_inode, |
| 285 | dentry->d_name.name, "appraise_metadata", |
| 286 | integrity_status_msg[evm_status], |
| 287 | -EPERM, 0); |
Mimi Zohar | a924ce0 | 2011-08-11 01:22:30 -0400 | [diff] [blame] | 288 | return evm_status == INTEGRITY_PASS ? 0 : -EPERM; |
| 289 | } |
| 290 | |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 291 | /** |
| 292 | * evm_inode_setxattr - protect the EVM extended attribute |
| 293 | * @dentry: pointer to the affected dentry |
| 294 | * @xattr_name: pointer to the affected extended attribute name |
| 295 | * @xattr_value: pointer to the new extended attribute value |
| 296 | * @xattr_value_len: pointer to the new extended attribute value length |
| 297 | * |
Mimi Zohar | 7102ebc | 2011-05-12 18:33:20 -0400 | [diff] [blame] | 298 | * Updating 'security.evm' requires CAP_SYS_ADMIN privileges and that |
| 299 | * the current value is valid. |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 300 | */ |
| 301 | int evm_inode_setxattr(struct dentry *dentry, const char *xattr_name, |
| 302 | const void *xattr_value, size_t xattr_value_len) |
| 303 | { |
Mimi Zohar | a924ce0 | 2011-08-11 01:22:30 -0400 | [diff] [blame] | 304 | return evm_protect_xattr(dentry, xattr_name, xattr_value, |
| 305 | xattr_value_len); |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 306 | } |
| 307 | |
| 308 | /** |
| 309 | * evm_inode_removexattr - protect the EVM extended attribute |
| 310 | * @dentry: pointer to the affected dentry |
| 311 | * @xattr_name: pointer to the affected extended attribute name |
| 312 | * |
Mimi Zohar | 7102ebc | 2011-05-12 18:33:20 -0400 | [diff] [blame] | 313 | * Removing 'security.evm' requires CAP_SYS_ADMIN privileges and that |
| 314 | * the current value is valid. |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 315 | */ |
| 316 | int evm_inode_removexattr(struct dentry *dentry, const char *xattr_name) |
| 317 | { |
Mimi Zohar | a924ce0 | 2011-08-11 01:22:30 -0400 | [diff] [blame] | 318 | return evm_protect_xattr(dentry, xattr_name, NULL, 0); |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | /** |
| 322 | * evm_inode_post_setxattr - update 'security.evm' to reflect the changes |
| 323 | * @dentry: pointer to the affected dentry |
| 324 | * @xattr_name: pointer to the affected extended attribute name |
| 325 | * @xattr_value: pointer to the new extended attribute value |
| 326 | * @xattr_value_len: pointer to the new extended attribute value length |
| 327 | * |
| 328 | * Update the HMAC stored in 'security.evm' to reflect the change. |
| 329 | * |
| 330 | * No need to take the i_mutex lock here, as this function is called from |
| 331 | * __vfs_setxattr_noperm(). The caller of which has taken the inode's |
| 332 | * i_mutex lock. |
| 333 | */ |
| 334 | void evm_inode_post_setxattr(struct dentry *dentry, const char *xattr_name, |
| 335 | const void *xattr_value, size_t xattr_value_len) |
| 336 | { |
Mimi Zohar | bf6d0f5 | 2011-08-18 18:07:44 -0400 | [diff] [blame] | 337 | if (!evm_initialized || (!evm_protected_xattr(xattr_name) |
| 338 | && !posix_xattr_acl(xattr_name))) |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 339 | return; |
| 340 | |
| 341 | evm_update_evmxattr(dentry, xattr_name, xattr_value, xattr_value_len); |
| 342 | return; |
| 343 | } |
| 344 | |
| 345 | /** |
| 346 | * evm_inode_post_removexattr - update 'security.evm' after removing the xattr |
| 347 | * @dentry: pointer to the affected dentry |
| 348 | * @xattr_name: pointer to the affected extended attribute name |
| 349 | * |
| 350 | * Update the HMAC stored in 'security.evm' to reflect removal of the xattr. |
| 351 | */ |
| 352 | void evm_inode_post_removexattr(struct dentry *dentry, const char *xattr_name) |
| 353 | { |
| 354 | struct inode *inode = dentry->d_inode; |
| 355 | |
| 356 | if (!evm_initialized || !evm_protected_xattr(xattr_name)) |
| 357 | return; |
| 358 | |
| 359 | mutex_lock(&inode->i_mutex); |
| 360 | evm_update_evmxattr(dentry, xattr_name, NULL, 0); |
| 361 | mutex_unlock(&inode->i_mutex); |
| 362 | return; |
| 363 | } |
| 364 | |
| 365 | /** |
Mimi Zohar | 817b54a | 2011-05-13 12:53:38 -0400 | [diff] [blame] | 366 | * evm_inode_setattr - prevent updating an invalid EVM extended attribute |
| 367 | * @dentry: pointer to the affected dentry |
| 368 | */ |
| 369 | int evm_inode_setattr(struct dentry *dentry, struct iattr *attr) |
| 370 | { |
| 371 | unsigned int ia_valid = attr->ia_valid; |
| 372 | enum integrity_status evm_status; |
| 373 | |
Mimi Zohar | a924ce0 | 2011-08-11 01:22:30 -0400 | [diff] [blame] | 374 | if (!(ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))) |
Mimi Zohar | 817b54a | 2011-05-13 12:53:38 -0400 | [diff] [blame] | 375 | return 0; |
| 376 | evm_status = evm_verify_current_integrity(dentry); |
Mimi Zohar | 566be59 | 2011-08-22 09:14:18 -0400 | [diff] [blame] | 377 | if ((evm_status == INTEGRITY_PASS) || |
| 378 | (evm_status == INTEGRITY_NOXATTRS)) |
| 379 | return 0; |
Mimi Zohar | 9b97b6c | 2013-02-21 09:31:22 -0500 | [diff] [blame] | 380 | integrity_audit_msg(AUDIT_INTEGRITY_METADATA, dentry->d_inode, |
| 381 | dentry->d_name.name, "appraise_metadata", |
| 382 | integrity_status_msg[evm_status], -EPERM, 0); |
Mimi Zohar | 566be59 | 2011-08-22 09:14:18 -0400 | [diff] [blame] | 383 | return -EPERM; |
Mimi Zohar | 817b54a | 2011-05-13 12:53:38 -0400 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | /** |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 387 | * evm_inode_post_setattr - update 'security.evm' after modifying metadata |
| 388 | * @dentry: pointer to the affected dentry |
| 389 | * @ia_valid: for the UID and GID status |
| 390 | * |
| 391 | * For now, update the HMAC stored in 'security.evm' to reflect UID/GID |
| 392 | * changes. |
| 393 | * |
| 394 | * This function is called from notify_change(), which expects the caller |
| 395 | * to lock the inode's i_mutex. |
| 396 | */ |
| 397 | void evm_inode_post_setattr(struct dentry *dentry, int ia_valid) |
| 398 | { |
| 399 | if (!evm_initialized) |
| 400 | return; |
| 401 | |
| 402 | if (ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID)) |
| 403 | evm_update_evmxattr(dentry, NULL, NULL, 0); |
| 404 | return; |
| 405 | } |
| 406 | |
Mimi Zohar | cb723180 | 2011-03-09 14:40:44 -0500 | [diff] [blame] | 407 | /* |
| 408 | * evm_inode_init_security - initializes security.evm |
| 409 | */ |
| 410 | int evm_inode_init_security(struct inode *inode, |
| 411 | const struct xattr *lsm_xattr, |
| 412 | struct xattr *evm_xattr) |
| 413 | { |
| 414 | struct evm_ima_xattr_data *xattr_data; |
| 415 | int rc; |
| 416 | |
| 417 | if (!evm_initialized || !evm_protected_xattr(lsm_xattr->name)) |
Mimi Zohar | 5a4730b | 2011-08-11 00:22:52 -0400 | [diff] [blame] | 418 | return 0; |
Mimi Zohar | cb723180 | 2011-03-09 14:40:44 -0500 | [diff] [blame] | 419 | |
| 420 | xattr_data = kzalloc(sizeof(*xattr_data), GFP_NOFS); |
| 421 | if (!xattr_data) |
| 422 | return -ENOMEM; |
| 423 | |
| 424 | xattr_data->type = EVM_XATTR_HMAC; |
| 425 | rc = evm_init_hmac(inode, lsm_xattr, xattr_data->digest); |
| 426 | if (rc < 0) |
| 427 | goto out; |
| 428 | |
| 429 | evm_xattr->value = xattr_data; |
| 430 | evm_xattr->value_len = sizeof(*xattr_data); |
Tetsuo Handa | 9548906 | 2013-07-25 05:44:02 +0900 | [diff] [blame] | 431 | evm_xattr->name = XATTR_EVM_SUFFIX; |
Mimi Zohar | cb723180 | 2011-03-09 14:40:44 -0500 | [diff] [blame] | 432 | return 0; |
| 433 | out: |
| 434 | kfree(xattr_data); |
| 435 | return rc; |
| 436 | } |
| 437 | EXPORT_SYMBOL_GPL(evm_inode_init_security); |
| 438 | |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 439 | static int __init init_evm(void) |
| 440 | { |
| 441 | int error; |
| 442 | |
Dmitry Kasatkin | d3b3367 | 2014-03-28 14:31:04 +0200 | [diff] [blame^] | 443 | evm_init_config(); |
| 444 | |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 445 | error = evm_init_secfs(); |
| 446 | if (error < 0) { |
Joe Perches | 20ee451 | 2014-02-24 13:59:56 -0800 | [diff] [blame] | 447 | pr_info("Error registering secfs\n"); |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 448 | goto err; |
| 449 | } |
Dmitry Kasatkin | 15647eb | 2011-09-01 14:41:40 +0300 | [diff] [blame] | 450 | |
| 451 | return 0; |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 452 | err: |
| 453 | return error; |
| 454 | } |
| 455 | |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 456 | /* |
| 457 | * evm_display_config - list the EVM protected security extended attributes |
| 458 | */ |
| 459 | static int __init evm_display_config(void) |
| 460 | { |
| 461 | char **xattrname; |
| 462 | |
| 463 | for (xattrname = evm_config_xattrnames; *xattrname != NULL; xattrname++) |
Joe Perches | 20ee451 | 2014-02-24 13:59:56 -0800 | [diff] [blame] | 464 | pr_info("%s\n", *xattrname); |
Mimi Zohar | 66dbc325 | 2011-03-15 16:12:09 -0400 | [diff] [blame] | 465 | return 0; |
| 466 | } |
| 467 | |
| 468 | pure_initcall(evm_display_config); |
| 469 | late_initcall(init_evm); |
| 470 | |
| 471 | MODULE_DESCRIPTION("Extended Verification Module"); |
| 472 | MODULE_LICENSE("GPL"); |