• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2010 IBM Corporation
3  *
4  * Authors:
5  * Mimi Zohar <zohar@us.ibm.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, version 2 of the License.
10  *
11  * File: evm_secfs.c
12  *	- Used to signal when key is on keyring
13  *	- Get the key and enable EVM
14  */
15 
16 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
17 
18 #include <linux/audit.h>
19 #include <linux/uaccess.h>
20 #include <linux/module.h>
21 #include <linux/mutex.h>
22 #include "evm.h"
23 
24 static struct dentry *evm_dir;
25 static struct dentry *evm_init_tpm;
26 static struct dentry *evm_symlink;
27 
28 #ifdef CONFIG_EVM_ADD_XATTRS
29 static struct dentry *evm_xattrs;
30 static DEFINE_MUTEX(xattr_list_mutex);
31 static int evm_xattrs_locked;
32 #endif
33 
34 /**
35  * evm_read_key - read() for <securityfs>/evm
36  *
37  * @filp: file pointer, not actually used
38  * @buf: where to put the result
39  * @count: maximum to send along
40  * @ppos: where to start
41  *
42  * Returns number of bytes read or error code, as appropriate
43  */
evm_read_key(struct file * filp,char __user * buf,size_t count,loff_t * ppos)44 static ssize_t evm_read_key(struct file *filp, char __user *buf,
45 			    size_t count, loff_t *ppos)
46 {
47 	char temp[80];
48 	ssize_t rc;
49 
50 	if (*ppos != 0)
51 		return 0;
52 
53 	sprintf(temp, "%d", (evm_initialized & ~EVM_SETUP_COMPLETE));
54 	rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
55 
56 	return rc;
57 }
58 
59 /**
60  * evm_write_key - write() for <securityfs>/evm
61  * @file: file pointer, not actually used
62  * @buf: where to get the data from
63  * @count: bytes sent
64  * @ppos: where to start
65  *
66  * Used to signal that key is on the kernel key ring.
67  * - get the integrity hmac key from the kernel key ring
68  * - create list of hmac protected extended attributes
69  * Returns number of bytes written or error code, as appropriate
70  */
evm_write_key(struct file * file,const char __user * buf,size_t count,loff_t * ppos)71 static ssize_t evm_write_key(struct file *file, const char __user *buf,
72 			     size_t count, loff_t *ppos)
73 {
74 	int i, ret;
75 
76 	if (!capable(CAP_SYS_ADMIN) || (evm_initialized & EVM_SETUP_COMPLETE))
77 		return -EPERM;
78 
79 	ret = kstrtoint_from_user(buf, count, 0, &i);
80 
81 	if (ret)
82 		return ret;
83 
84 	/* Reject invalid values */
85 	if (!i || (i & ~EVM_INIT_MASK) != 0)
86 		return -EINVAL;
87 
88 	/* Don't allow a request to freshly enable metadata writes if
89 	 * keys are loaded.
90 	 */
91 	if ((i & EVM_ALLOW_METADATA_WRITES) &&
92 	    ((evm_initialized & EVM_KEY_MASK) != 0) &&
93 	    !(evm_initialized & EVM_ALLOW_METADATA_WRITES))
94 		return -EPERM;
95 
96 	if (i & EVM_INIT_HMAC) {
97 		ret = evm_init_key();
98 		if (ret != 0)
99 			return ret;
100 		/* Forbid further writes after the symmetric key is loaded */
101 		i |= EVM_SETUP_COMPLETE;
102 	}
103 
104 	evm_initialized |= i;
105 
106 	/* Don't allow protected metadata modification if a symmetric key
107 	 * is loaded
108 	 */
109 	if (evm_initialized & EVM_INIT_HMAC)
110 		evm_initialized &= ~(EVM_ALLOW_METADATA_WRITES);
111 
112 	return count;
113 }
114 
115 static const struct file_operations evm_key_ops = {
116 	.read		= evm_read_key,
117 	.write		= evm_write_key,
118 };
119 
120 #ifdef CONFIG_EVM_ADD_XATTRS
121 /**
122  * evm_read_xattrs - read() for <securityfs>/evm_xattrs
123  *
124  * @filp: file pointer, not actually used
125  * @buf: where to put the result
126  * @count: maximum to send along
127  * @ppos: where to start
128  *
129  * Returns number of bytes read or error code, as appropriate
130  */
evm_read_xattrs(struct file * filp,char __user * buf,size_t count,loff_t * ppos)131 static ssize_t evm_read_xattrs(struct file *filp, char __user *buf,
132 			       size_t count, loff_t *ppos)
133 {
134 	char *temp;
135 	int offset = 0;
136 	ssize_t rc, size = 0;
137 	struct xattr_list *xattr;
138 
139 	if (*ppos != 0)
140 		return 0;
141 
142 	rc = mutex_lock_interruptible(&xattr_list_mutex);
143 	if (rc)
144 		return -ERESTARTSYS;
145 
146 	list_for_each_entry(xattr, &evm_config_xattrnames, list)
147 		size += strlen(xattr->name) + 1;
148 
149 	temp = kmalloc(size + 1, GFP_KERNEL);
150 	if (!temp) {
151 		mutex_unlock(&xattr_list_mutex);
152 		return -ENOMEM;
153 	}
154 
155 	list_for_each_entry(xattr, &evm_config_xattrnames, list) {
156 		sprintf(temp + offset, "%s\n", xattr->name);
157 		offset += strlen(xattr->name) + 1;
158 	}
159 
160 	mutex_unlock(&xattr_list_mutex);
161 	rc = simple_read_from_buffer(buf, count, ppos, temp, strlen(temp));
162 
163 	kfree(temp);
164 
165 	return rc;
166 }
167 
168 /**
169  * evm_write_xattrs - write() for <securityfs>/evm_xattrs
170  * @file: file pointer, not actually used
171  * @buf: where to get the data from
172  * @count: bytes sent
173  * @ppos: where to start
174  *
175  * Returns number of bytes written or error code, as appropriate
176  */
evm_write_xattrs(struct file * file,const char __user * buf,size_t count,loff_t * ppos)177 static ssize_t evm_write_xattrs(struct file *file, const char __user *buf,
178 				size_t count, loff_t *ppos)
179 {
180 	int len, err;
181 	struct xattr_list *xattr, *tmp;
182 	struct audit_buffer *ab;
183 	struct iattr newattrs;
184 	struct inode *inode;
185 
186 	if (!capable(CAP_SYS_ADMIN) || evm_xattrs_locked)
187 		return -EPERM;
188 
189 	if (*ppos != 0)
190 		return -EINVAL;
191 
192 	if (count > XATTR_NAME_MAX)
193 		return -E2BIG;
194 
195 	ab = audit_log_start(NULL, GFP_KERNEL, AUDIT_INTEGRITY_EVM_XATTR);
196 	if (!ab)
197 		return -ENOMEM;
198 
199 	xattr = kmalloc(sizeof(struct xattr_list), GFP_KERNEL);
200 	if (!xattr) {
201 		err = -ENOMEM;
202 		goto out;
203 	}
204 
205 	xattr->name = memdup_user_nul(buf, count);
206 	if (IS_ERR(xattr->name)) {
207 		err = PTR_ERR(xattr->name);
208 		xattr->name = NULL;
209 		goto out;
210 	}
211 
212 	/* Remove any trailing newline */
213 	len = strlen(xattr->name);
214 	if (len && xattr->name[len-1] == '\n')
215 		xattr->name[len-1] = '\0';
216 
217 	if (strcmp(xattr->name, ".") == 0) {
218 		evm_xattrs_locked = 1;
219 		newattrs.ia_mode = S_IFREG | 0440;
220 		newattrs.ia_valid = ATTR_MODE;
221 		inode = evm_xattrs->d_inode;
222 		inode_lock(inode);
223 		err = simple_setattr(evm_xattrs, &newattrs);
224 		inode_unlock(inode);
225 		audit_log_format(ab, "locked");
226 		if (!err)
227 			err = count;
228 		goto out;
229 	}
230 
231 	audit_log_format(ab, "xattr=");
232 	audit_log_untrustedstring(ab, xattr->name);
233 
234 	if (strncmp(xattr->name, XATTR_SECURITY_PREFIX,
235 		    XATTR_SECURITY_PREFIX_LEN) != 0) {
236 		err = -EINVAL;
237 		goto out;
238 	}
239 
240 	/*
241 	 * xattr_list_mutex guards against races in evm_read_xattrs().
242 	 * Entries are only added to the evm_config_xattrnames list
243 	 * and never deleted. Therefore, the list is traversed
244 	 * using list_for_each_entry_lockless() without holding
245 	 * the mutex in evm_calc_hmac_or_hash(), evm_find_protected_xattrs()
246 	 * and evm_protected_xattr().
247 	 */
248 	mutex_lock(&xattr_list_mutex);
249 	list_for_each_entry(tmp, &evm_config_xattrnames, list) {
250 		if (strcmp(xattr->name, tmp->name) == 0) {
251 			err = -EEXIST;
252 			mutex_unlock(&xattr_list_mutex);
253 			goto out;
254 		}
255 	}
256 	list_add_tail_rcu(&xattr->list, &evm_config_xattrnames);
257 	mutex_unlock(&xattr_list_mutex);
258 
259 	audit_log_format(ab, " res=0");
260 	audit_log_end(ab);
261 	return count;
262 out:
263 	audit_log_format(ab, " res=%d", err);
264 	audit_log_end(ab);
265 	if (xattr) {
266 		kfree(xattr->name);
267 		kfree(xattr);
268 	}
269 	return err;
270 }
271 
272 static const struct file_operations evm_xattr_ops = {
273 	.read		= evm_read_xattrs,
274 	.write		= evm_write_xattrs,
275 };
276 
evm_init_xattrs(void)277 static int evm_init_xattrs(void)
278 {
279 	evm_xattrs = securityfs_create_file("evm_xattrs", 0660, evm_dir, NULL,
280 					    &evm_xattr_ops);
281 	if (!evm_xattrs || IS_ERR(evm_xattrs))
282 		return -EFAULT;
283 
284 	return 0;
285 }
286 #else
evm_init_xattrs(void)287 static int evm_init_xattrs(void)
288 {
289 	return 0;
290 }
291 #endif
292 
evm_init_secfs(void)293 int __init evm_init_secfs(void)
294 {
295 	int error = 0;
296 
297 	evm_dir = securityfs_create_dir("evm", integrity_dir);
298 	if (!evm_dir || IS_ERR(evm_dir))
299 		return -EFAULT;
300 
301 	evm_init_tpm = securityfs_create_file("evm", 0660,
302 					      evm_dir, NULL, &evm_key_ops);
303 	if (!evm_init_tpm || IS_ERR(evm_init_tpm)) {
304 		error = -EFAULT;
305 		goto out;
306 	}
307 
308 	evm_symlink = securityfs_create_symlink("evm", NULL,
309 						"integrity/evm/evm", NULL);
310 	if (!evm_symlink || IS_ERR(evm_symlink)) {
311 		error = -EFAULT;
312 		goto out;
313 	}
314 
315 	if (evm_init_xattrs() != 0) {
316 		error = -EFAULT;
317 		goto out;
318 	}
319 
320 	return 0;
321 out:
322 	securityfs_remove(evm_symlink);
323 	securityfs_remove(evm_init_tpm);
324 	securityfs_remove(evm_dir);
325 	return error;
326 }
327