blob: 7d4247535f9ee978b2dfd7be191ebe676e1e39cd [file] [log] [blame]
Mimi Zohar66dbc322011-03-15 16:12:09 -04001/*
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
17#include <linux/module.h>
18#include <linux/crypto.h>
19#include <linux/xattr.h>
20#include <linux/integrity.h>
Mimi Zohar3e1be522011-03-09 14:38:26 -050021#include <linux/evm.h>
Dmitry Kasatkind46eb362011-03-09 15:07:36 -050022#include <crypto/hash.h>
Mimi Zohar66dbc322011-03-15 16:12:09 -040023#include "evm.h"
24
25int evm_initialized;
26
27char *evm_hmac = "hmac(sha1)";
28
29char *evm_config_xattrnames[] = {
30#ifdef CONFIG_SECURITY_SELINUX
31 XATTR_NAME_SELINUX,
32#endif
33#ifdef CONFIG_SECURITY_SMACK
34 XATTR_NAME_SMACK,
35#endif
36 XATTR_NAME_CAPS,
37 NULL
38};
39
Mimi Zohar7102ebc2011-05-12 18:33:20 -040040static int evm_fixmode;
41static int __init evm_set_fixmode(char *str)
42{
43 if (strncmp(str, "fix", 3) == 0)
44 evm_fixmode = 1;
45 return 0;
46}
47__setup("evm=", evm_set_fixmode);
48
Mimi Zohar66dbc322011-03-15 16:12:09 -040049/*
50 * evm_verify_hmac - calculate and compare the HMAC with the EVM xattr
51 *
52 * Compute the HMAC on the dentry's protected set of extended attributes
Mimi Zohar7102ebc2011-05-12 18:33:20 -040053 * and compare it against the stored security.evm xattr.
54 *
55 * For performance:
56 * - use the previoulsy retrieved xattr value and length to calculate the
57 * HMAC.)
58 * - cache the verification result in the iint, when available.
Mimi Zohar66dbc322011-03-15 16:12:09 -040059 *
60 * Returns integrity status
61 */
62static enum integrity_status evm_verify_hmac(struct dentry *dentry,
63 const char *xattr_name,
64 char *xattr_value,
65 size_t xattr_value_len,
66 struct integrity_iint_cache *iint)
67{
Dmitry Kasatkin6be5cc52011-03-09 14:28:20 -050068 struct evm_ima_xattr_data xattr_data;
Mimi Zohar7102ebc2011-05-12 18:33:20 -040069 enum integrity_status evm_status;
Mimi Zohar66dbc322011-03-15 16:12:09 -040070 int rc;
71
Mimi Zohar7102ebc2011-05-12 18:33:20 -040072 if (iint && iint->evm_status == INTEGRITY_PASS)
Dmitry Kasatkin24e01982011-05-06 11:34:17 +030073 return iint->evm_status;
Mimi Zohar66dbc322011-03-15 16:12:09 -040074
Dmitry Kasatkin6d38ca012011-05-06 11:34:14 +030075 /* if status is not PASS, try to check again - against -ENOMEM */
76
Mimi Zohar66dbc322011-03-15 16:12:09 -040077 rc = evm_calc_hmac(dentry, xattr_name, xattr_value,
Dmitry Kasatkin6be5cc52011-03-09 14:28:20 -050078 xattr_value_len, xattr_data.digest);
Mimi Zohar66dbc322011-03-15 16:12:09 -040079 if (rc < 0)
Dmitry Kasatkin6d38ca012011-05-06 11:34:14 +030080 goto err_out;
Mimi Zohar66dbc322011-03-15 16:12:09 -040081
Dmitry Kasatkin6be5cc52011-03-09 14:28:20 -050082 xattr_data.type = EVM_XATTR_HMAC;
83 rc = vfs_xattr_cmp(dentry, XATTR_NAME_EVM, (u8 *)&xattr_data,
84 sizeof xattr_data, GFP_NOFS);
Mimi Zohar66dbc322011-03-15 16:12:09 -040085 if (rc < 0)
86 goto err_out;
Mimi Zohar7102ebc2011-05-12 18:33:20 -040087 evm_status = INTEGRITY_PASS;
88 goto out;
Mimi Zohar66dbc322011-03-15 16:12:09 -040089
90err_out:
91 switch (rc) {
92 case -ENODATA: /* file not labelled */
Mimi Zohar7102ebc2011-05-12 18:33:20 -040093 evm_status = INTEGRITY_NOLABEL;
Mimi Zohar66dbc322011-03-15 16:12:09 -040094 break;
Mimi Zohar66dbc322011-03-15 16:12:09 -040095 default:
Mimi Zohar7102ebc2011-05-12 18:33:20 -040096 evm_status = INTEGRITY_FAIL;
Mimi Zohar66dbc322011-03-15 16:12:09 -040097 }
Mimi Zohar7102ebc2011-05-12 18:33:20 -040098out:
99 if (iint)
100 iint->evm_status = evm_status;
101 return evm_status;
Mimi Zohar66dbc322011-03-15 16:12:09 -0400102}
103
104static int evm_protected_xattr(const char *req_xattr_name)
105{
106 char **xattrname;
107 int namelen;
108 int found = 0;
109
110 namelen = strlen(req_xattr_name);
111 for (xattrname = evm_config_xattrnames; *xattrname != NULL; xattrname++) {
112 if ((strlen(*xattrname) == namelen)
113 && (strncmp(req_xattr_name, *xattrname, namelen) == 0)) {
114 found = 1;
115 break;
116 }
Mimi Zoharcb723182011-03-09 14:40:44 -0500117 if (strncmp(req_xattr_name,
118 *xattrname + XATTR_SECURITY_PREFIX_LEN,
119 strlen(req_xattr_name)) == 0) {
120 found = 1;
121 break;
122 }
Mimi Zohar66dbc322011-03-15 16:12:09 -0400123 }
124 return found;
125}
126
127/**
128 * evm_verifyxattr - verify the integrity of the requested xattr
129 * @dentry: object of the verify xattr
130 * @xattr_name: requested xattr
131 * @xattr_value: requested xattr value
132 * @xattr_value_len: requested xattr value length
133 *
134 * Calculate the HMAC for the given dentry and verify it against the stored
135 * security.evm xattr. For performance, use the xattr value and length
136 * previously retrieved to calculate the HMAC.
137 *
138 * Returns the xattr integrity status.
139 *
140 * This function requires the caller to lock the inode's i_mutex before it
141 * is executed.
142 */
143enum integrity_status evm_verifyxattr(struct dentry *dentry,
144 const char *xattr_name,
Dmitry Kasatkin2960e6c2011-05-06 11:34:13 +0300145 void *xattr_value, size_t xattr_value_len,
146 struct integrity_iint_cache *iint)
Mimi Zohar66dbc322011-03-15 16:12:09 -0400147{
Mimi Zohar66dbc322011-03-15 16:12:09 -0400148 if (!evm_initialized || !evm_protected_xattr(xattr_name))
149 return INTEGRITY_UNKNOWN;
150
Dmitry Kasatkin2960e6c2011-05-06 11:34:13 +0300151 if (!iint) {
152 iint = integrity_iint_find(dentry->d_inode);
153 if (!iint)
154 return INTEGRITY_UNKNOWN;
155 }
156 return evm_verify_hmac(dentry, xattr_name, xattr_value,
Mimi Zohar66dbc322011-03-15 16:12:09 -0400157 xattr_value_len, iint);
Mimi Zohar66dbc322011-03-15 16:12:09 -0400158}
159EXPORT_SYMBOL_GPL(evm_verifyxattr);
160
161/*
Mimi Zohar7102ebc2011-05-12 18:33:20 -0400162 * evm_verify_current_integrity - verify the dentry's metadata integrity
163 * @dentry: pointer to the affected dentry
164 *
165 * Verify and return the dentry's metadata integrity. The exceptions are
166 * before EVM is initialized or in 'fix' mode.
167 */
168static enum integrity_status evm_verify_current_integrity(struct dentry *dentry)
169{
170 struct inode *inode = dentry->d_inode;
171
172 if (!evm_initialized || !S_ISREG(inode->i_mode) || evm_fixmode)
173 return 0;
174 return evm_verify_hmac(dentry, NULL, NULL, 0, NULL);
175}
176
Mimi Zohara924ce02011-08-11 01:22:30 -0400177/*
178 * evm_protect_xattr - protect the EVM extended attribute
179 *
180 * Prevent security.evm from being modified or removed.
181 */
182static int evm_protect_xattr(struct dentry *dentry, const char *xattr_name,
183 const void *xattr_value, size_t xattr_value_len)
184{
185 enum integrity_status evm_status;
186
187 if (strcmp(xattr_name, XATTR_NAME_EVM) == 0) {
188 if (!capable(CAP_SYS_ADMIN))
189 return -EPERM;
190 } else if (!evm_protected_xattr(xattr_name))
191 return 0;
192
193 evm_status = evm_verify_current_integrity(dentry);
194 return evm_status == INTEGRITY_PASS ? 0 : -EPERM;
195}
196
Mimi Zohar66dbc322011-03-15 16:12:09 -0400197/**
198 * evm_inode_setxattr - protect the EVM extended attribute
199 * @dentry: pointer to the affected dentry
200 * @xattr_name: pointer to the affected extended attribute name
201 * @xattr_value: pointer to the new extended attribute value
202 * @xattr_value_len: pointer to the new extended attribute value length
203 *
Mimi Zohar7102ebc2011-05-12 18:33:20 -0400204 * Updating 'security.evm' requires CAP_SYS_ADMIN privileges and that
205 * the current value is valid.
Mimi Zohar66dbc322011-03-15 16:12:09 -0400206 */
207int evm_inode_setxattr(struct dentry *dentry, const char *xattr_name,
208 const void *xattr_value, size_t xattr_value_len)
209{
Mimi Zohara924ce02011-08-11 01:22:30 -0400210 return evm_protect_xattr(dentry, xattr_name, xattr_value,
211 xattr_value_len);
Mimi Zohar66dbc322011-03-15 16:12:09 -0400212}
213
214/**
215 * evm_inode_removexattr - protect the EVM extended attribute
216 * @dentry: pointer to the affected dentry
217 * @xattr_name: pointer to the affected extended attribute name
218 *
Mimi Zohar7102ebc2011-05-12 18:33:20 -0400219 * Removing 'security.evm' requires CAP_SYS_ADMIN privileges and that
220 * the current value is valid.
Mimi Zohar66dbc322011-03-15 16:12:09 -0400221 */
222int evm_inode_removexattr(struct dentry *dentry, const char *xattr_name)
223{
Mimi Zohara924ce02011-08-11 01:22:30 -0400224 return evm_protect_xattr(dentry, xattr_name, NULL, 0);
Mimi Zohar66dbc322011-03-15 16:12:09 -0400225}
226
227/**
228 * evm_inode_post_setxattr - update 'security.evm' to reflect the changes
229 * @dentry: pointer to the affected dentry
230 * @xattr_name: pointer to the affected extended attribute name
231 * @xattr_value: pointer to the new extended attribute value
232 * @xattr_value_len: pointer to the new extended attribute value length
233 *
234 * Update the HMAC stored in 'security.evm' to reflect the change.
235 *
236 * No need to take the i_mutex lock here, as this function is called from
237 * __vfs_setxattr_noperm(). The caller of which has taken the inode's
238 * i_mutex lock.
239 */
240void evm_inode_post_setxattr(struct dentry *dentry, const char *xattr_name,
241 const void *xattr_value, size_t xattr_value_len)
242{
243 if (!evm_initialized || !evm_protected_xattr(xattr_name))
244 return;
245
246 evm_update_evmxattr(dentry, xattr_name, xattr_value, xattr_value_len);
247 return;
248}
249
250/**
251 * evm_inode_post_removexattr - update 'security.evm' after removing the xattr
252 * @dentry: pointer to the affected dentry
253 * @xattr_name: pointer to the affected extended attribute name
254 *
255 * Update the HMAC stored in 'security.evm' to reflect removal of the xattr.
256 */
257void evm_inode_post_removexattr(struct dentry *dentry, const char *xattr_name)
258{
259 struct inode *inode = dentry->d_inode;
260
261 if (!evm_initialized || !evm_protected_xattr(xattr_name))
262 return;
263
264 mutex_lock(&inode->i_mutex);
265 evm_update_evmxattr(dentry, xattr_name, NULL, 0);
266 mutex_unlock(&inode->i_mutex);
267 return;
268}
269
270/**
Mimi Zohar817b54a2011-05-13 12:53:38 -0400271 * evm_inode_setattr - prevent updating an invalid EVM extended attribute
272 * @dentry: pointer to the affected dentry
273 */
274int evm_inode_setattr(struct dentry *dentry, struct iattr *attr)
275{
276 unsigned int ia_valid = attr->ia_valid;
277 enum integrity_status evm_status;
278
Mimi Zohara924ce02011-08-11 01:22:30 -0400279 if (!(ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID)))
Mimi Zohar817b54a2011-05-13 12:53:38 -0400280 return 0;
281 evm_status = evm_verify_current_integrity(dentry);
282 return evm_status == INTEGRITY_PASS ? 0 : -EPERM;
283}
284
285/**
Mimi Zohar66dbc322011-03-15 16:12:09 -0400286 * evm_inode_post_setattr - update 'security.evm' after modifying metadata
287 * @dentry: pointer to the affected dentry
288 * @ia_valid: for the UID and GID status
289 *
290 * For now, update the HMAC stored in 'security.evm' to reflect UID/GID
291 * changes.
292 *
293 * This function is called from notify_change(), which expects the caller
294 * to lock the inode's i_mutex.
295 */
296void evm_inode_post_setattr(struct dentry *dentry, int ia_valid)
297{
298 if (!evm_initialized)
299 return;
300
301 if (ia_valid & (ATTR_MODE | ATTR_UID | ATTR_GID))
302 evm_update_evmxattr(dentry, NULL, NULL, 0);
303 return;
304}
305
Mimi Zoharcb723182011-03-09 14:40:44 -0500306/*
307 * evm_inode_init_security - initializes security.evm
308 */
309int evm_inode_init_security(struct inode *inode,
310 const struct xattr *lsm_xattr,
311 struct xattr *evm_xattr)
312{
313 struct evm_ima_xattr_data *xattr_data;
314 int rc;
315
316 if (!evm_initialized || !evm_protected_xattr(lsm_xattr->name))
Mimi Zohar5a4730b2011-08-11 00:22:52 -0400317 return 0;
Mimi Zoharcb723182011-03-09 14:40:44 -0500318
319 xattr_data = kzalloc(sizeof(*xattr_data), GFP_NOFS);
320 if (!xattr_data)
321 return -ENOMEM;
322
323 xattr_data->type = EVM_XATTR_HMAC;
324 rc = evm_init_hmac(inode, lsm_xattr, xattr_data->digest);
325 if (rc < 0)
326 goto out;
327
328 evm_xattr->value = xattr_data;
329 evm_xattr->value_len = sizeof(*xattr_data);
330 evm_xattr->name = kstrdup(XATTR_EVM_SUFFIX, GFP_NOFS);
331 return 0;
332out:
333 kfree(xattr_data);
334 return rc;
335}
336EXPORT_SYMBOL_GPL(evm_inode_init_security);
337
Mimi Zohar66dbc322011-03-15 16:12:09 -0400338static int __init init_evm(void)
339{
340 int error;
341
Mimi Zohar66dbc322011-03-15 16:12:09 -0400342 error = evm_init_secfs();
343 if (error < 0) {
344 printk(KERN_INFO "EVM: Error registering secfs\n");
345 goto err;
346 }
347err:
348 return error;
349}
350
351static void __exit cleanup_evm(void)
352{
353 evm_cleanup_secfs();
Dmitry Kasatkind46eb362011-03-09 15:07:36 -0500354 if (hmac_tfm)
355 crypto_free_shash(hmac_tfm);
Mimi Zohar66dbc322011-03-15 16:12:09 -0400356}
357
358/*
359 * evm_display_config - list the EVM protected security extended attributes
360 */
361static int __init evm_display_config(void)
362{
363 char **xattrname;
364
365 for (xattrname = evm_config_xattrnames; *xattrname != NULL; xattrname++)
366 printk(KERN_INFO "EVM: %s\n", *xattrname);
367 return 0;
368}
369
370pure_initcall(evm_display_config);
371late_initcall(init_evm);
372
373MODULE_DESCRIPTION("Extended Verification Module");
374MODULE_LICENSE("GPL");