xref: /linux/fs/ecryptfs/main.c (revision 069ddcda37b2cf5bb4b6031a944c0e9359213262)
1237fead6SMichael Halcrow /**
2237fead6SMichael Halcrow  * eCryptfs: Linux filesystem encryption layer
3237fead6SMichael Halcrow  *
4237fead6SMichael Halcrow  * Copyright (C) 1997-2003 Erez Zadok
5237fead6SMichael Halcrow  * Copyright (C) 2001-2003 Stony Brook University
6dd2a3b7aSMichael Halcrow  * Copyright (C) 2004-2007 International Business Machines Corp.
7237fead6SMichael Halcrow  *   Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>
8237fead6SMichael Halcrow  *              Michael C. Thompson <mcthomps@us.ibm.com>
9dddfa461SMichael Halcrow  *              Tyler Hicks <tyhicks@ou.edu>
10237fead6SMichael Halcrow  *
11237fead6SMichael Halcrow  * This program is free software; you can redistribute it and/or
12237fead6SMichael Halcrow  * modify it under the terms of the GNU General Public License as
13237fead6SMichael Halcrow  * published by the Free Software Foundation; either version 2 of the
14237fead6SMichael Halcrow  * License, or (at your option) any later version.
15237fead6SMichael Halcrow  *
16237fead6SMichael Halcrow  * This program is distributed in the hope that it will be useful, but
17237fead6SMichael Halcrow  * WITHOUT ANY WARRANTY; without even the implied warranty of
18237fead6SMichael Halcrow  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19237fead6SMichael Halcrow  * General Public License for more details.
20237fead6SMichael Halcrow  *
21237fead6SMichael Halcrow  * You should have received a copy of the GNU General Public License
22237fead6SMichael Halcrow  * along with this program; if not, write to the Free Software
23237fead6SMichael Halcrow  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
24237fead6SMichael Halcrow  * 02111-1307, USA.
25237fead6SMichael Halcrow  */
26237fead6SMichael Halcrow 
27237fead6SMichael Halcrow #include <linux/dcache.h>
28237fead6SMichael Halcrow #include <linux/file.h>
29237fead6SMichael Halcrow #include <linux/module.h>
30237fead6SMichael Halcrow #include <linux/namei.h>
31237fead6SMichael Halcrow #include <linux/skbuff.h>
32237fead6SMichael Halcrow #include <linux/crypto.h>
33237fead6SMichael Halcrow #include <linux/mount.h>
34237fead6SMichael Halcrow #include <linux/pagemap.h>
35237fead6SMichael Halcrow #include <linux/key.h>
36237fead6SMichael Halcrow #include <linux/parser.h>
370cc72dc7SJosef "Jeff" Sipek #include <linux/fs_stack.h>
385a0e3ad6STejun Heo #include <linux/slab.h>
39070baa51SRoberto Sassu #include <linux/magic.h>
40237fead6SMichael Halcrow #include "ecryptfs_kernel.h"
41237fead6SMichael Halcrow 
42237fead6SMichael Halcrow /**
43237fead6SMichael Halcrow  * Module parameter that defines the ecryptfs_verbosity level.
44237fead6SMichael Halcrow  */
45237fead6SMichael Halcrow int ecryptfs_verbosity = 0;
46237fead6SMichael Halcrow 
47237fead6SMichael Halcrow module_param(ecryptfs_verbosity, int, 0);
48237fead6SMichael Halcrow MODULE_PARM_DESC(ecryptfs_verbosity,
49237fead6SMichael Halcrow 		 "Initial verbosity level (0 or 1; defaults to "
50237fead6SMichael Halcrow 		 "0, which is Quiet)");
51237fead6SMichael Halcrow 
52dddfa461SMichael Halcrow /**
53624ae528STyler Hicks  * Module parameter that defines the number of message buffer elements
54dddfa461SMichael Halcrow  */
55dddfa461SMichael Halcrow unsigned int ecryptfs_message_buf_len = ECRYPTFS_DEFAULT_MSG_CTX_ELEMS;
56dddfa461SMichael Halcrow 
57dddfa461SMichael Halcrow module_param(ecryptfs_message_buf_len, uint, 0);
58dddfa461SMichael Halcrow MODULE_PARM_DESC(ecryptfs_message_buf_len,
59dddfa461SMichael Halcrow 		 "Number of message buffer elements");
60dddfa461SMichael Halcrow 
61dddfa461SMichael Halcrow /**
62dddfa461SMichael Halcrow  * Module parameter that defines the maximum guaranteed amount of time to wait
63624ae528STyler Hicks  * for a response from ecryptfsd.  The actual sleep time will be, more than
64dddfa461SMichael Halcrow  * likely, a small amount greater than this specified value, but only less if
65624ae528STyler Hicks  * the message successfully arrives.
66dddfa461SMichael Halcrow  */
67dddfa461SMichael Halcrow signed long ecryptfs_message_wait_timeout = ECRYPTFS_MAX_MSG_CTX_TTL / HZ;
68dddfa461SMichael Halcrow 
69dddfa461SMichael Halcrow module_param(ecryptfs_message_wait_timeout, long, 0);
70dddfa461SMichael Halcrow MODULE_PARM_DESC(ecryptfs_message_wait_timeout,
71dddfa461SMichael Halcrow 		 "Maximum number of seconds that an operation will "
72dddfa461SMichael Halcrow 		 "sleep while waiting for a message response from "
73dddfa461SMichael Halcrow 		 "userspace");
74dddfa461SMichael Halcrow 
75dddfa461SMichael Halcrow /**
76dddfa461SMichael Halcrow  * Module parameter that is an estimate of the maximum number of users
77dddfa461SMichael Halcrow  * that will be concurrently using eCryptfs. Set this to the right
78dddfa461SMichael Halcrow  * value to balance performance and memory use.
79dddfa461SMichael Halcrow  */
80dddfa461SMichael Halcrow unsigned int ecryptfs_number_of_users = ECRYPTFS_DEFAULT_NUM_USERS;
81dddfa461SMichael Halcrow 
82dddfa461SMichael Halcrow module_param(ecryptfs_number_of_users, uint, 0);
83dddfa461SMichael Halcrow MODULE_PARM_DESC(ecryptfs_number_of_users, "An estimate of the number of "
84dddfa461SMichael Halcrow 		 "concurrent users of eCryptfs");
85dddfa461SMichael Halcrow 
86237fead6SMichael Halcrow void __ecryptfs_printk(const char *fmt, ...)
87237fead6SMichael Halcrow {
88237fead6SMichael Halcrow 	va_list args;
89237fead6SMichael Halcrow 	va_start(args, fmt);
90237fead6SMichael Halcrow 	if (fmt[1] == '7') { /* KERN_DEBUG */
91237fead6SMichael Halcrow 		if (ecryptfs_verbosity >= 1)
92237fead6SMichael Halcrow 			vprintk(fmt, args);
93237fead6SMichael Halcrow 	} else
94237fead6SMichael Halcrow 		vprintk(fmt, args);
95237fead6SMichael Halcrow 	va_end(args);
96237fead6SMichael Halcrow }
97237fead6SMichael Halcrow 
98237fead6SMichael Halcrow /**
99332ab16fSTyler Hicks  * ecryptfs_init_lower_file
1004981e081SMichael Halcrow  * @ecryptfs_dentry: Fully initialized eCryptfs dentry object, with
1014981e081SMichael Halcrow  *                   the lower dentry and the lower mount set
1024981e081SMichael Halcrow  *
1034981e081SMichael Halcrow  * eCryptfs only ever keeps a single open file for every lower
1044981e081SMichael Halcrow  * inode. All I/O operations to the lower inode occur through that
1054981e081SMichael Halcrow  * file. When the first eCryptfs dentry that interposes with the first
1064981e081SMichael Halcrow  * lower dentry for that inode is created, this function creates the
107332ab16fSTyler Hicks  * lower file struct and associates it with the eCryptfs
108332ab16fSTyler Hicks  * inode. When all eCryptfs files associated with the inode are released, the
109332ab16fSTyler Hicks  * file is closed.
1104981e081SMichael Halcrow  *
111332ab16fSTyler Hicks  * The lower file will be opened with read/write permissions, if
1124981e081SMichael Halcrow  * possible. Otherwise, it is opened read-only.
1134981e081SMichael Halcrow  *
114332ab16fSTyler Hicks  * This function does nothing if a lower file is already
1154981e081SMichael Halcrow  * associated with the eCryptfs inode.
1164981e081SMichael Halcrow  *
1174981e081SMichael Halcrow  * Returns zero on success; non-zero otherwise
1184981e081SMichael Halcrow  */
119332ab16fSTyler Hicks static int ecryptfs_init_lower_file(struct dentry *dentry,
120332ab16fSTyler Hicks 				    struct file **lower_file)
1214981e081SMichael Halcrow {
122745ca247SDavid Howells 	const struct cred *cred = current_cred();
123332ab16fSTyler Hicks 	struct dentry *lower_dentry = ecryptfs_dentry_to_lower(dentry);
124332ab16fSTyler Hicks 	struct vfsmount *lower_mnt = ecryptfs_dentry_to_lower_mnt(dentry);
125332ab16fSTyler Hicks 	int rc;
1264981e081SMichael Halcrow 
127332ab16fSTyler Hicks 	rc = ecryptfs_privileged_open(lower_file, lower_dentry, lower_mnt,
128332ab16fSTyler Hicks 				      cred);
129ac22ba23STyler Hicks 	if (rc) {
130332ab16fSTyler Hicks 		printk(KERN_ERR "Error opening lower file "
131746f1e55SMichael Halcrow 		       "for lower_dentry [0x%p] and lower_mnt [0x%p]; "
132746f1e55SMichael Halcrow 		       "rc = [%d]\n", lower_dentry, lower_mnt, rc);
133332ab16fSTyler Hicks 		(*lower_file) = NULL;
1344981e081SMichael Halcrow 	}
1354981e081SMichael Halcrow 	return rc;
1364981e081SMichael Halcrow }
1374981e081SMichael Halcrow 
1383b06b3ebSTyler Hicks int ecryptfs_get_lower_file(struct dentry *dentry, struct inode *inode)
139332ab16fSTyler Hicks {
1403b06b3ebSTyler Hicks 	struct ecryptfs_inode_info *inode_info;
141332ab16fSTyler Hicks 	int count, rc = 0;
142332ab16fSTyler Hicks 
1433b06b3ebSTyler Hicks 	inode_info = ecryptfs_inode_to_private(inode);
144332ab16fSTyler Hicks 	mutex_lock(&inode_info->lower_file_mutex);
145332ab16fSTyler Hicks 	count = atomic_inc_return(&inode_info->lower_file_count);
146332ab16fSTyler Hicks 	if (WARN_ON_ONCE(count < 1))
147332ab16fSTyler Hicks 		rc = -EINVAL;
148332ab16fSTyler Hicks 	else if (count == 1) {
149332ab16fSTyler Hicks 		rc = ecryptfs_init_lower_file(dentry,
150332ab16fSTyler Hicks 					      &inode_info->lower_file);
151332ab16fSTyler Hicks 		if (rc)
152332ab16fSTyler Hicks 			atomic_set(&inode_info->lower_file_count, 0);
153332ab16fSTyler Hicks 	}
154332ab16fSTyler Hicks 	mutex_unlock(&inode_info->lower_file_mutex);
155332ab16fSTyler Hicks 	return rc;
156332ab16fSTyler Hicks }
157332ab16fSTyler Hicks 
158332ab16fSTyler Hicks void ecryptfs_put_lower_file(struct inode *inode)
159332ab16fSTyler Hicks {
160332ab16fSTyler Hicks 	struct ecryptfs_inode_info *inode_info;
161332ab16fSTyler Hicks 
162332ab16fSTyler Hicks 	inode_info = ecryptfs_inode_to_private(inode);
163332ab16fSTyler Hicks 	if (atomic_dec_and_mutex_lock(&inode_info->lower_file_count,
164332ab16fSTyler Hicks 				      &inode_info->lower_file_mutex)) {
165332ab16fSTyler Hicks 		fput(inode_info->lower_file);
166332ab16fSTyler Hicks 		inode_info->lower_file = NULL;
167332ab16fSTyler Hicks 		mutex_unlock(&inode_info->lower_file_mutex);
168332ab16fSTyler Hicks 	}
169332ab16fSTyler Hicks }
170332ab16fSTyler Hicks 
1712830bfd6SEric Sandeen enum { ecryptfs_opt_sig, ecryptfs_opt_ecryptfs_sig,
1722830bfd6SEric Sandeen        ecryptfs_opt_cipher, ecryptfs_opt_ecryptfs_cipher,
1732830bfd6SEric Sandeen        ecryptfs_opt_ecryptfs_key_bytes,
17417398957SMichael Halcrow        ecryptfs_opt_passthrough, ecryptfs_opt_xattr_metadata,
17587c94c4dSMichael Halcrow        ecryptfs_opt_encrypted_view, ecryptfs_opt_fnek_sig,
17687c94c4dSMichael Halcrow        ecryptfs_opt_fn_cipher, ecryptfs_opt_fn_cipher_key_bytes,
177f16feb51SRoberto Sassu        ecryptfs_opt_unlink_sigs, ecryptfs_opt_mount_auth_tok_only,
17876435548SJohn Johansen        ecryptfs_opt_check_dev_ruid,
179f16feb51SRoberto Sassu        ecryptfs_opt_err };
180237fead6SMichael Halcrow 
181a447c093SSteven Whitehouse static const match_table_t tokens = {
182237fead6SMichael Halcrow 	{ecryptfs_opt_sig, "sig=%s"},
183237fead6SMichael Halcrow 	{ecryptfs_opt_ecryptfs_sig, "ecryptfs_sig=%s"},
184237fead6SMichael Halcrow 	{ecryptfs_opt_cipher, "cipher=%s"},
185237fead6SMichael Halcrow 	{ecryptfs_opt_ecryptfs_cipher, "ecryptfs_cipher=%s"},
186237fead6SMichael Halcrow 	{ecryptfs_opt_ecryptfs_key_bytes, "ecryptfs_key_bytes=%u"},
187237fead6SMichael Halcrow 	{ecryptfs_opt_passthrough, "ecryptfs_passthrough"},
18817398957SMichael Halcrow 	{ecryptfs_opt_xattr_metadata, "ecryptfs_xattr_metadata"},
18917398957SMichael Halcrow 	{ecryptfs_opt_encrypted_view, "ecryptfs_encrypted_view"},
19087c94c4dSMichael Halcrow 	{ecryptfs_opt_fnek_sig, "ecryptfs_fnek_sig=%s"},
19187c94c4dSMichael Halcrow 	{ecryptfs_opt_fn_cipher, "ecryptfs_fn_cipher=%s"},
19287c94c4dSMichael Halcrow 	{ecryptfs_opt_fn_cipher_key_bytes, "ecryptfs_fn_key_bytes=%u"},
193e77cc8d2STyler Hicks 	{ecryptfs_opt_unlink_sigs, "ecryptfs_unlink_sigs"},
194f16feb51SRoberto Sassu 	{ecryptfs_opt_mount_auth_tok_only, "ecryptfs_mount_auth_tok_only"},
19576435548SJohn Johansen 	{ecryptfs_opt_check_dev_ruid, "ecryptfs_check_dev_ruid"},
196237fead6SMichael Halcrow 	{ecryptfs_opt_err, NULL}
197237fead6SMichael Halcrow };
198237fead6SMichael Halcrow 
199f4aad16aSMichael Halcrow static int ecryptfs_init_global_auth_toks(
200f4aad16aSMichael Halcrow 	struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
201237fead6SMichael Halcrow {
202f4aad16aSMichael Halcrow 	struct ecryptfs_global_auth_tok *global_auth_tok;
2030e1fc5efSRoberto Sassu 	struct ecryptfs_auth_tok *auth_tok;
204237fead6SMichael Halcrow 	int rc = 0;
205237fead6SMichael Halcrow 
206f4aad16aSMichael Halcrow 	list_for_each_entry(global_auth_tok,
207f4aad16aSMichael Halcrow 			    &mount_crypt_stat->global_auth_tok_list,
208f4aad16aSMichael Halcrow 			    mount_crypt_stat_list) {
2095dda6992SMichael Halcrow 		rc = ecryptfs_keyring_auth_tok_for_sig(
2100e1fc5efSRoberto Sassu 			&global_auth_tok->global_auth_tok_key, &auth_tok,
2115dda6992SMichael Halcrow 			global_auth_tok->sig);
2125dda6992SMichael Halcrow 		if (rc) {
213f4aad16aSMichael Halcrow 			printk(KERN_ERR "Could not find valid key in user "
214f4aad16aSMichael Halcrow 			       "session keyring for sig specified in mount "
215f4aad16aSMichael Halcrow 			       "option: [%s]\n", global_auth_tok->sig);
216f4aad16aSMichael Halcrow 			global_auth_tok->flags |= ECRYPTFS_AUTH_TOK_INVALID;
217982363c9SEric Sandeen 			goto out;
218b5695d04SRoberto Sassu 		} else {
219f4aad16aSMichael Halcrow 			global_auth_tok->flags &= ~ECRYPTFS_AUTH_TOK_INVALID;
220b5695d04SRoberto Sassu 			up_write(&(global_auth_tok->global_auth_tok_key)->sem);
221b5695d04SRoberto Sassu 		}
222237fead6SMichael Halcrow 	}
223982363c9SEric Sandeen out:
224237fead6SMichael Halcrow 	return rc;
225237fead6SMichael Halcrow }
226237fead6SMichael Halcrow 
227f4aad16aSMichael Halcrow static void ecryptfs_init_mount_crypt_stat(
228f4aad16aSMichael Halcrow 	struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
229f4aad16aSMichael Halcrow {
230f4aad16aSMichael Halcrow 	memset((void *)mount_crypt_stat, 0,
231f4aad16aSMichael Halcrow 	       sizeof(struct ecryptfs_mount_crypt_stat));
232f4aad16aSMichael Halcrow 	INIT_LIST_HEAD(&mount_crypt_stat->global_auth_tok_list);
233f4aad16aSMichael Halcrow 	mutex_init(&mount_crypt_stat->global_auth_tok_list_mutex);
234f4aad16aSMichael Halcrow 	mount_crypt_stat->flags |= ECRYPTFS_MOUNT_CRYPT_STAT_INITIALIZED;
235f4aad16aSMichael Halcrow }
236f4aad16aSMichael Halcrow 
237237fead6SMichael Halcrow /**
238237fead6SMichael Halcrow  * ecryptfs_parse_options
239237fead6SMichael Halcrow  * @sb: The ecryptfs super block
24025985edcSLucas De Marchi  * @options: The options passed to the kernel
24176435548SJohn Johansen  * @check_ruid: set to 1 if device uid should be checked against the ruid
242237fead6SMichael Halcrow  *
243237fead6SMichael Halcrow  * Parse mount options:
244237fead6SMichael Halcrow  * debug=N 	   - ecryptfs_verbosity level for debug output
245237fead6SMichael Halcrow  * sig=XXX	   - description(signature) of the key to use
246237fead6SMichael Halcrow  *
247237fead6SMichael Halcrow  * Returns the dentry object of the lower-level (lower/interposed)
248237fead6SMichael Halcrow  * directory; We want to mount our stackable file system on top of
249237fead6SMichael Halcrow  * that lower directory.
250237fead6SMichael Halcrow  *
251237fead6SMichael Halcrow  * The signature of the key to use must be the description of a key
252237fead6SMichael Halcrow  * already in the keyring. Mounting will fail if the key can not be
253237fead6SMichael Halcrow  * found.
254237fead6SMichael Halcrow  *
255237fead6SMichael Halcrow  * Returns zero on success; non-zero on error
256237fead6SMichael Halcrow  */
25776435548SJohn Johansen static int ecryptfs_parse_options(struct ecryptfs_sb_info *sbi, char *options,
25876435548SJohn Johansen 				  uid_t *check_ruid)
259237fead6SMichael Halcrow {
260237fead6SMichael Halcrow 	char *p;
261237fead6SMichael Halcrow 	int rc = 0;
262237fead6SMichael Halcrow 	int sig_set = 0;
263237fead6SMichael Halcrow 	int cipher_name_set = 0;
26487c94c4dSMichael Halcrow 	int fn_cipher_name_set = 0;
265237fead6SMichael Halcrow 	int cipher_key_bytes;
266237fead6SMichael Halcrow 	int cipher_key_bytes_set = 0;
26787c94c4dSMichael Halcrow 	int fn_cipher_key_bytes;
26887c94c4dSMichael Halcrow 	int fn_cipher_key_bytes_set = 0;
269237fead6SMichael Halcrow 	struct ecryptfs_mount_crypt_stat *mount_crypt_stat =
2702ccde7c6SAl Viro 		&sbi->mount_crypt_stat;
271237fead6SMichael Halcrow 	substring_t args[MAX_OPT_ARGS];
272237fead6SMichael Halcrow 	int token;
273237fead6SMichael Halcrow 	char *sig_src;
274237fead6SMichael Halcrow 	char *cipher_name_dst;
275237fead6SMichael Halcrow 	char *cipher_name_src;
27687c94c4dSMichael Halcrow 	char *fn_cipher_name_dst;
27787c94c4dSMichael Halcrow 	char *fn_cipher_name_src;
27887c94c4dSMichael Halcrow 	char *fnek_dst;
27987c94c4dSMichael Halcrow 	char *fnek_src;
280237fead6SMichael Halcrow 	char *cipher_key_bytes_src;
28187c94c4dSMichael Halcrow 	char *fn_cipher_key_bytes_src;
282237fead6SMichael Halcrow 
28376435548SJohn Johansen 	*check_ruid = 0;
28476435548SJohn Johansen 
285237fead6SMichael Halcrow 	if (!options) {
286237fead6SMichael Halcrow 		rc = -EINVAL;
287237fead6SMichael Halcrow 		goto out;
288237fead6SMichael Halcrow 	}
289956159c3SMichael Halcrow 	ecryptfs_init_mount_crypt_stat(mount_crypt_stat);
290237fead6SMichael Halcrow 	while ((p = strsep(&options, ",")) != NULL) {
291237fead6SMichael Halcrow 		if (!*p)
292237fead6SMichael Halcrow 			continue;
293237fead6SMichael Halcrow 		token = match_token(p, tokens, args);
294237fead6SMichael Halcrow 		switch (token) {
295237fead6SMichael Halcrow 		case ecryptfs_opt_sig:
296237fead6SMichael Halcrow 		case ecryptfs_opt_ecryptfs_sig:
297237fead6SMichael Halcrow 			sig_src = args[0].from;
298f4aad16aSMichael Halcrow 			rc = ecryptfs_add_global_auth_tok(mount_crypt_stat,
29984814d64STyler Hicks 							  sig_src, 0);
300f4aad16aSMichael Halcrow 			if (rc) {
301f4aad16aSMichael Halcrow 				printk(KERN_ERR "Error attempting to register "
302f4aad16aSMichael Halcrow 				       "global sig; rc = [%d]\n", rc);
303f4aad16aSMichael Halcrow 				goto out;
304f4aad16aSMichael Halcrow 			}
305237fead6SMichael Halcrow 			sig_set = 1;
306237fead6SMichael Halcrow 			break;
307237fead6SMichael Halcrow 		case ecryptfs_opt_cipher:
308237fead6SMichael Halcrow 		case ecryptfs_opt_ecryptfs_cipher:
309237fead6SMichael Halcrow 			cipher_name_src = args[0].from;
310237fead6SMichael Halcrow 			cipher_name_dst =
311237fead6SMichael Halcrow 				mount_crypt_stat->
312237fead6SMichael Halcrow 				global_default_cipher_name;
313237fead6SMichael Halcrow 			strncpy(cipher_name_dst, cipher_name_src,
314237fead6SMichael Halcrow 				ECRYPTFS_MAX_CIPHER_NAME_SIZE);
31587c94c4dSMichael Halcrow 			cipher_name_dst[ECRYPTFS_MAX_CIPHER_NAME_SIZE] = '\0';
316237fead6SMichael Halcrow 			cipher_name_set = 1;
317237fead6SMichael Halcrow 			break;
318237fead6SMichael Halcrow 		case ecryptfs_opt_ecryptfs_key_bytes:
319237fead6SMichael Halcrow 			cipher_key_bytes_src = args[0].from;
320237fead6SMichael Halcrow 			cipher_key_bytes =
321237fead6SMichael Halcrow 				(int)simple_strtol(cipher_key_bytes_src,
322237fead6SMichael Halcrow 						   &cipher_key_bytes_src, 0);
323237fead6SMichael Halcrow 			mount_crypt_stat->global_default_cipher_key_size =
324237fead6SMichael Halcrow 				cipher_key_bytes;
325237fead6SMichael Halcrow 			cipher_key_bytes_set = 1;
326237fead6SMichael Halcrow 			break;
327237fead6SMichael Halcrow 		case ecryptfs_opt_passthrough:
328237fead6SMichael Halcrow 			mount_crypt_stat->flags |=
329237fead6SMichael Halcrow 				ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED;
330237fead6SMichael Halcrow 			break;
33117398957SMichael Halcrow 		case ecryptfs_opt_xattr_metadata:
33217398957SMichael Halcrow 			mount_crypt_stat->flags |=
33317398957SMichael Halcrow 				ECRYPTFS_XATTR_METADATA_ENABLED;
33417398957SMichael Halcrow 			break;
33517398957SMichael Halcrow 		case ecryptfs_opt_encrypted_view:
33617398957SMichael Halcrow 			mount_crypt_stat->flags |=
33717398957SMichael Halcrow 				ECRYPTFS_XATTR_METADATA_ENABLED;
33817398957SMichael Halcrow 			mount_crypt_stat->flags |=
33917398957SMichael Halcrow 				ECRYPTFS_ENCRYPTED_VIEW_ENABLED;
34017398957SMichael Halcrow 			break;
34187c94c4dSMichael Halcrow 		case ecryptfs_opt_fnek_sig:
34287c94c4dSMichael Halcrow 			fnek_src = args[0].from;
34387c94c4dSMichael Halcrow 			fnek_dst =
34487c94c4dSMichael Halcrow 				mount_crypt_stat->global_default_fnek_sig;
34587c94c4dSMichael Halcrow 			strncpy(fnek_dst, fnek_src, ECRYPTFS_SIG_SIZE_HEX);
34687c94c4dSMichael Halcrow 			mount_crypt_stat->global_default_fnek_sig[
34787c94c4dSMichael Halcrow 				ECRYPTFS_SIG_SIZE_HEX] = '\0';
34887c94c4dSMichael Halcrow 			rc = ecryptfs_add_global_auth_tok(
34987c94c4dSMichael Halcrow 				mount_crypt_stat,
35084814d64STyler Hicks 				mount_crypt_stat->global_default_fnek_sig,
35184814d64STyler Hicks 				ECRYPTFS_AUTH_TOK_FNEK);
35287c94c4dSMichael Halcrow 			if (rc) {
35387c94c4dSMichael Halcrow 				printk(KERN_ERR "Error attempting to register "
35487c94c4dSMichael Halcrow 				       "global fnek sig [%s]; rc = [%d]\n",
35587c94c4dSMichael Halcrow 				       mount_crypt_stat->global_default_fnek_sig,
35687c94c4dSMichael Halcrow 				       rc);
35787c94c4dSMichael Halcrow 				goto out;
35887c94c4dSMichael Halcrow 			}
35987c94c4dSMichael Halcrow 			mount_crypt_stat->flags |=
36087c94c4dSMichael Halcrow 				(ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES
36187c94c4dSMichael Halcrow 				 | ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK);
36287c94c4dSMichael Halcrow 			break;
36387c94c4dSMichael Halcrow 		case ecryptfs_opt_fn_cipher:
36487c94c4dSMichael Halcrow 			fn_cipher_name_src = args[0].from;
36587c94c4dSMichael Halcrow 			fn_cipher_name_dst =
36687c94c4dSMichael Halcrow 				mount_crypt_stat->global_default_fn_cipher_name;
36787c94c4dSMichael Halcrow 			strncpy(fn_cipher_name_dst, fn_cipher_name_src,
36887c94c4dSMichael Halcrow 				ECRYPTFS_MAX_CIPHER_NAME_SIZE);
36987c94c4dSMichael Halcrow 			mount_crypt_stat->global_default_fn_cipher_name[
37087c94c4dSMichael Halcrow 				ECRYPTFS_MAX_CIPHER_NAME_SIZE] = '\0';
37187c94c4dSMichael Halcrow 			fn_cipher_name_set = 1;
37287c94c4dSMichael Halcrow 			break;
37387c94c4dSMichael Halcrow 		case ecryptfs_opt_fn_cipher_key_bytes:
37487c94c4dSMichael Halcrow 			fn_cipher_key_bytes_src = args[0].from;
37587c94c4dSMichael Halcrow 			fn_cipher_key_bytes =
37687c94c4dSMichael Halcrow 				(int)simple_strtol(fn_cipher_key_bytes_src,
37787c94c4dSMichael Halcrow 						   &fn_cipher_key_bytes_src, 0);
37887c94c4dSMichael Halcrow 			mount_crypt_stat->global_default_fn_cipher_key_bytes =
37987c94c4dSMichael Halcrow 				fn_cipher_key_bytes;
38087c94c4dSMichael Halcrow 			fn_cipher_key_bytes_set = 1;
38187c94c4dSMichael Halcrow 			break;
382e77cc8d2STyler Hicks 		case ecryptfs_opt_unlink_sigs:
383e77cc8d2STyler Hicks 			mount_crypt_stat->flags |= ECRYPTFS_UNLINK_SIGS;
384e77cc8d2STyler Hicks 			break;
385f16feb51SRoberto Sassu 		case ecryptfs_opt_mount_auth_tok_only:
386f16feb51SRoberto Sassu 			mount_crypt_stat->flags |=
387f16feb51SRoberto Sassu 				ECRYPTFS_GLOBAL_MOUNT_AUTH_TOK_ONLY;
388f16feb51SRoberto Sassu 			break;
38976435548SJohn Johansen 		case ecryptfs_opt_check_dev_ruid:
39076435548SJohn Johansen 			*check_ruid = 1;
39176435548SJohn Johansen 			break;
392237fead6SMichael Halcrow 		case ecryptfs_opt_err:
393237fead6SMichael Halcrow 		default:
39487c94c4dSMichael Halcrow 			printk(KERN_WARNING
39587c94c4dSMichael Halcrow 			       "%s: eCryptfs: unrecognized option [%s]\n",
39687c94c4dSMichael Halcrow 			       __func__, p);
397237fead6SMichael Halcrow 		}
398237fead6SMichael Halcrow 	}
399237fead6SMichael Halcrow 	if (!sig_set) {
400237fead6SMichael Halcrow 		rc = -EINVAL;
401956159c3SMichael Halcrow 		ecryptfs_printk(KERN_ERR, "You must supply at least one valid "
402956159c3SMichael Halcrow 				"auth tok signature as a mount "
403237fead6SMichael Halcrow 				"parameter; see the eCryptfs README\n");
404237fead6SMichael Halcrow 		goto out;
405237fead6SMichael Halcrow 	}
406237fead6SMichael Halcrow 	if (!cipher_name_set) {
4078f236809SMiklos Szeredi 		int cipher_name_len = strlen(ECRYPTFS_DEFAULT_CIPHER);
4088f236809SMiklos Szeredi 
4098f236809SMiklos Szeredi 		BUG_ON(cipher_name_len >= ECRYPTFS_MAX_CIPHER_NAME_SIZE);
4108f236809SMiklos Szeredi 		strcpy(mount_crypt_stat->global_default_cipher_name,
4118f236809SMiklos Szeredi 		       ECRYPTFS_DEFAULT_CIPHER);
412237fead6SMichael Halcrow 	}
41387c94c4dSMichael Halcrow 	if ((mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES)
41487c94c4dSMichael Halcrow 	    && !fn_cipher_name_set)
41587c94c4dSMichael Halcrow 		strcpy(mount_crypt_stat->global_default_fn_cipher_name,
41687c94c4dSMichael Halcrow 		       mount_crypt_stat->global_default_cipher_name);
41787c94c4dSMichael Halcrow 	if (!cipher_key_bytes_set)
418e5d9cbdeSMichael Halcrow 		mount_crypt_stat->global_default_cipher_key_size = 0;
41987c94c4dSMichael Halcrow 	if ((mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES)
42087c94c4dSMichael Halcrow 	    && !fn_cipher_key_bytes_set)
42187c94c4dSMichael Halcrow 		mount_crypt_stat->global_default_fn_cipher_key_bytes =
42287c94c4dSMichael Halcrow 			mount_crypt_stat->global_default_cipher_key_size;
423af440f52SEric Sandeen 	mutex_lock(&key_tfm_list_mutex);
424af440f52SEric Sandeen 	if (!ecryptfs_tfm_exists(mount_crypt_stat->global_default_cipher_name,
42587c94c4dSMichael Halcrow 				 NULL)) {
4265dda6992SMichael Halcrow 		rc = ecryptfs_add_new_key_tfm(
427f4aad16aSMichael Halcrow 			NULL, mount_crypt_stat->global_default_cipher_name,
4285dda6992SMichael Halcrow 			mount_crypt_stat->global_default_cipher_key_size);
4295dda6992SMichael Halcrow 		if (rc) {
43087c94c4dSMichael Halcrow 			printk(KERN_ERR "Error attempting to initialize "
43187c94c4dSMichael Halcrow 			       "cipher with name = [%s] and key size = [%td]; "
43287c94c4dSMichael Halcrow 			       "rc = [%d]\n",
433237fead6SMichael Halcrow 			       mount_crypt_stat->global_default_cipher_name,
43487c94c4dSMichael Halcrow 			       mount_crypt_stat->global_default_cipher_key_size,
43587c94c4dSMichael Halcrow 			       rc);
436237fead6SMichael Halcrow 			rc = -EINVAL;
43787c94c4dSMichael Halcrow 			mutex_unlock(&key_tfm_list_mutex);
438237fead6SMichael Halcrow 			goto out;
439237fead6SMichael Halcrow 		}
44087c94c4dSMichael Halcrow 	}
44187c94c4dSMichael Halcrow 	if ((mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES)
44287c94c4dSMichael Halcrow 	    && !ecryptfs_tfm_exists(
44387c94c4dSMichael Halcrow 		    mount_crypt_stat->global_default_fn_cipher_name, NULL)) {
44487c94c4dSMichael Halcrow 		rc = ecryptfs_add_new_key_tfm(
44587c94c4dSMichael Halcrow 			NULL, mount_crypt_stat->global_default_fn_cipher_name,
44687c94c4dSMichael Halcrow 			mount_crypt_stat->global_default_fn_cipher_key_bytes);
4475dda6992SMichael Halcrow 		if (rc) {
44887c94c4dSMichael Halcrow 			printk(KERN_ERR "Error attempting to initialize "
44987c94c4dSMichael Halcrow 			       "cipher with name = [%s] and key size = [%td]; "
45087c94c4dSMichael Halcrow 			       "rc = [%d]\n",
45187c94c4dSMichael Halcrow 			       mount_crypt_stat->global_default_fn_cipher_name,
45287c94c4dSMichael Halcrow 			       mount_crypt_stat->global_default_fn_cipher_key_bytes,
45387c94c4dSMichael Halcrow 			       rc);
45487c94c4dSMichael Halcrow 			rc = -EINVAL;
45587c94c4dSMichael Halcrow 			mutex_unlock(&key_tfm_list_mutex);
45687c94c4dSMichael Halcrow 			goto out;
45787c94c4dSMichael Halcrow 		}
45887c94c4dSMichael Halcrow 	}
45987c94c4dSMichael Halcrow 	mutex_unlock(&key_tfm_list_mutex);
46087c94c4dSMichael Halcrow 	rc = ecryptfs_init_global_auth_toks(mount_crypt_stat);
46187c94c4dSMichael Halcrow 	if (rc)
462f4aad16aSMichael Halcrow 		printk(KERN_WARNING "One or more global auth toks could not "
463f4aad16aSMichael Halcrow 		       "properly register; rc = [%d]\n", rc);
464237fead6SMichael Halcrow out:
465237fead6SMichael Halcrow 	return rc;
466237fead6SMichael Halcrow }
467237fead6SMichael Halcrow 
468237fead6SMichael Halcrow struct kmem_cache *ecryptfs_sb_info_cache;
4694403158bSAl Viro static struct file_system_type ecryptfs_fs_type;
470237fead6SMichael Halcrow 
471237fead6SMichael Halcrow /**
472237fead6SMichael Halcrow  * ecryptfs_get_sb
473237fead6SMichael Halcrow  * @fs_type
474237fead6SMichael Halcrow  * @flags
475237fead6SMichael Halcrow  * @dev_name: The path to mount over
476237fead6SMichael Halcrow  * @raw_data: The options passed into the kernel
477237fead6SMichael Halcrow  */
4784d143bebSAl Viro static struct dentry *ecryptfs_mount(struct file_system_type *fs_type, int flags,
4794d143bebSAl Viro 			const char *dev_name, void *raw_data)
480237fead6SMichael Halcrow {
4812ccde7c6SAl Viro 	struct super_block *s;
4822ccde7c6SAl Viro 	struct ecryptfs_sb_info *sbi;
4832ccde7c6SAl Viro 	struct ecryptfs_dentry_info *root_info;
4842ccde7c6SAl Viro 	const char *err = "Getting sb failed";
48566cb7666SAl Viro 	struct inode *inode;
48666cb7666SAl Viro 	struct path path;
48776435548SJohn Johansen 	uid_t check_ruid;
488237fead6SMichael Halcrow 	int rc;
489237fead6SMichael Halcrow 
4902ccde7c6SAl Viro 	sbi = kmem_cache_zalloc(ecryptfs_sb_info_cache, GFP_KERNEL);
4912ccde7c6SAl Viro 	if (!sbi) {
4922ccde7c6SAl Viro 		rc = -ENOMEM;
493237fead6SMichael Halcrow 		goto out;
494237fead6SMichael Halcrow 	}
4952ccde7c6SAl Viro 
49676435548SJohn Johansen 	rc = ecryptfs_parse_options(sbi, raw_data, &check_ruid);
497237fead6SMichael Halcrow 	if (rc) {
4982ccde7c6SAl Viro 		err = "Error parsing options";
499237fead6SMichael Halcrow 		goto out;
5002ccde7c6SAl Viro 	}
5012ccde7c6SAl Viro 
5022ccde7c6SAl Viro 	s = sget(fs_type, NULL, set_anon_super, NULL);
5032ccde7c6SAl Viro 	if (IS_ERR(s)) {
5042ccde7c6SAl Viro 		rc = PTR_ERR(s);
5052ccde7c6SAl Viro 		goto out;
5062ccde7c6SAl Viro 	}
5072ccde7c6SAl Viro 
5082ccde7c6SAl Viro 	rc = bdi_setup_and_register(&sbi->bdi, "ecryptfs", BDI_CAP_MAP_COPY);
50966cb7666SAl Viro 	if (rc)
51066cb7666SAl Viro 		goto out1;
5112ccde7c6SAl Viro 
5122ccde7c6SAl Viro 	ecryptfs_set_superblock_private(s, sbi);
5132ccde7c6SAl Viro 	s->s_bdi = &sbi->bdi;
5142ccde7c6SAl Viro 
5152ccde7c6SAl Viro 	/* ->kill_sb() will take care of sbi after that point */
5162ccde7c6SAl Viro 	sbi = NULL;
5172ccde7c6SAl Viro 	s->s_op = &ecryptfs_sops;
51866cb7666SAl Viro 	s->s_d_op = &ecryptfs_dops;
51966cb7666SAl Viro 
52066cb7666SAl Viro 	err = "Reading sb failed";
52166cb7666SAl Viro 	rc = kern_path(dev_name, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &path);
52266cb7666SAl Viro 	if (rc) {
52366cb7666SAl Viro 		ecryptfs_printk(KERN_WARNING, "kern_path() failed\n");
52466cb7666SAl Viro 		goto out1;
52566cb7666SAl Viro 	}
52666cb7666SAl Viro 	if (path.dentry->d_sb->s_type == &ecryptfs_fs_type) {
52766cb7666SAl Viro 		rc = -EINVAL;
52866cb7666SAl Viro 		printk(KERN_ERR "Mount on filesystem of type "
52966cb7666SAl Viro 			"eCryptfs explicitly disallowed due to "
53066cb7666SAl Viro 			"known incompatibilities\n");
53166cb7666SAl Viro 		goto out_free;
53266cb7666SAl Viro 	}
53376435548SJohn Johansen 
53476435548SJohn Johansen 	if (check_ruid && path.dentry->d_inode->i_uid != current_uid()) {
53576435548SJohn Johansen 		rc = -EPERM;
53676435548SJohn Johansen 		printk(KERN_ERR "Mount of device (uid: %d) not owned by "
53776435548SJohn Johansen 		       "requested user (uid: %d)\n",
53876435548SJohn Johansen 		       path.dentry->d_inode->i_uid, current_uid());
53976435548SJohn Johansen 		goto out_free;
54076435548SJohn Johansen 	}
54176435548SJohn Johansen 
54266cb7666SAl Viro 	ecryptfs_set_superblock_lower(s, path.dentry->d_sb);
543*069ddcdaSTyler Hicks 
544*069ddcdaSTyler Hicks 	/**
545*069ddcdaSTyler Hicks 	 * Set the POSIX ACL flag based on whether they're enabled in the lower
546*069ddcdaSTyler Hicks 	 * mount. Force a read-only eCryptfs mount if the lower mount is ro.
547*069ddcdaSTyler Hicks 	 * Allow a ro eCryptfs mount even when the lower mount is rw.
548*069ddcdaSTyler Hicks 	 */
549*069ddcdaSTyler Hicks 	s->s_flags = flags & ~MS_POSIXACL;
550*069ddcdaSTyler Hicks 	s->s_flags |= path.dentry->d_sb->s_flags & (MS_RDONLY | MS_POSIXACL);
551*069ddcdaSTyler Hicks 
55266cb7666SAl Viro 	s->s_maxbytes = path.dentry->d_sb->s_maxbytes;
55366cb7666SAl Viro 	s->s_blocksize = path.dentry->d_sb->s_blocksize;
554070baa51SRoberto Sassu 	s->s_magic = ECRYPTFS_SUPER_MAGIC;
55566cb7666SAl Viro 
55666cb7666SAl Viro 	inode = ecryptfs_get_inode(path.dentry->d_inode, s);
55766cb7666SAl Viro 	rc = PTR_ERR(inode);
55866cb7666SAl Viro 	if (IS_ERR(inode))
55966cb7666SAl Viro 		goto out_free;
56066cb7666SAl Viro 
56148fde701SAl Viro 	s->s_root = d_make_root(inode);
56266cb7666SAl Viro 	if (!s->s_root) {
56366cb7666SAl Viro 		rc = -ENOMEM;
56466cb7666SAl Viro 		goto out_free;
56566cb7666SAl Viro 	}
5662ccde7c6SAl Viro 
5672ccde7c6SAl Viro 	rc = -ENOMEM;
5682ccde7c6SAl Viro 	root_info = kmem_cache_zalloc(ecryptfs_dentry_info_cache, GFP_KERNEL);
56966cb7666SAl Viro 	if (!root_info)
57066cb7666SAl Viro 		goto out_free;
57166cb7666SAl Viro 
5722ccde7c6SAl Viro 	/* ->kill_sb() will take care of root_info */
5732ccde7c6SAl Viro 	ecryptfs_set_dentry_private(s->s_root, root_info);
57466cb7666SAl Viro 	ecryptfs_set_dentry_lower(s->s_root, path.dentry);
57566cb7666SAl Viro 	ecryptfs_set_dentry_lower_mnt(s->s_root, path.mnt);
57666cb7666SAl Viro 
5772ccde7c6SAl Viro 	s->s_flags |= MS_ACTIVE;
5784d143bebSAl Viro 	return dget(s->s_root);
5792ccde7c6SAl Viro 
58066cb7666SAl Viro out_free:
58166cb7666SAl Viro 	path_put(&path);
58266cb7666SAl Viro out1:
58366cb7666SAl Viro 	deactivate_locked_super(s);
584237fead6SMichael Halcrow out:
5852ccde7c6SAl Viro 	if (sbi) {
5862ccde7c6SAl Viro 		ecryptfs_destroy_mount_crypt_stat(&sbi->mount_crypt_stat);
5872ccde7c6SAl Viro 		kmem_cache_free(ecryptfs_sb_info_cache, sbi);
5882ccde7c6SAl Viro 	}
5892ccde7c6SAl Viro 	printk(KERN_ERR "%s; rc = [%d]\n", err, rc);
5904d143bebSAl Viro 	return ERR_PTR(rc);
591237fead6SMichael Halcrow }
592237fead6SMichael Halcrow 
593237fead6SMichael Halcrow /**
594237fead6SMichael Halcrow  * ecryptfs_kill_block_super
595237fead6SMichael Halcrow  * @sb: The ecryptfs super block
596237fead6SMichael Halcrow  *
597237fead6SMichael Halcrow  * Used to bring the superblock down and free the private data.
598237fead6SMichael Halcrow  */
599237fead6SMichael Halcrow static void ecryptfs_kill_block_super(struct super_block *sb)
600237fead6SMichael Halcrow {
601decabd66SAl Viro 	struct ecryptfs_sb_info *sb_info = ecryptfs_superblock_to_private(sb);
602decabd66SAl Viro 	kill_anon_super(sb);
603decabd66SAl Viro 	if (!sb_info)
604decabd66SAl Viro 		return;
605decabd66SAl Viro 	ecryptfs_destroy_mount_crypt_stat(&sb_info->mount_crypt_stat);
606decabd66SAl Viro 	bdi_destroy(&sb_info->bdi);
607decabd66SAl Viro 	kmem_cache_free(ecryptfs_sb_info_cache, sb_info);
608237fead6SMichael Halcrow }
609237fead6SMichael Halcrow 
610237fead6SMichael Halcrow static struct file_system_type ecryptfs_fs_type = {
611237fead6SMichael Halcrow 	.owner = THIS_MODULE,
612237fead6SMichael Halcrow 	.name = "ecryptfs",
6134d143bebSAl Viro 	.mount = ecryptfs_mount,
614237fead6SMichael Halcrow 	.kill_sb = ecryptfs_kill_block_super,
615237fead6SMichael Halcrow 	.fs_flags = 0
616237fead6SMichael Halcrow };
617237fead6SMichael Halcrow 
618237fead6SMichael Halcrow /**
619237fead6SMichael Halcrow  * inode_info_init_once
620237fead6SMichael Halcrow  *
621237fead6SMichael Halcrow  * Initializes the ecryptfs_inode_info_cache when it is created
622237fead6SMichael Halcrow  */
623237fead6SMichael Halcrow static void
62451cc5068SAlexey Dobriyan inode_info_init_once(void *vptr)
625237fead6SMichael Halcrow {
626237fead6SMichael Halcrow 	struct ecryptfs_inode_info *ei = (struct ecryptfs_inode_info *)vptr;
627237fead6SMichael Halcrow 
628237fead6SMichael Halcrow 	inode_init_once(&ei->vfs_inode);
629237fead6SMichael Halcrow }
630237fead6SMichael Halcrow 
631237fead6SMichael Halcrow static struct ecryptfs_cache_info {
632e18b890bSChristoph Lameter 	struct kmem_cache **cache;
633237fead6SMichael Halcrow 	const char *name;
634237fead6SMichael Halcrow 	size_t size;
63551cc5068SAlexey Dobriyan 	void (*ctor)(void *obj);
636237fead6SMichael Halcrow } ecryptfs_cache_infos[] = {
637237fead6SMichael Halcrow 	{
638237fead6SMichael Halcrow 		.cache = &ecryptfs_auth_tok_list_item_cache,
639237fead6SMichael Halcrow 		.name = "ecryptfs_auth_tok_list_item",
640237fead6SMichael Halcrow 		.size = sizeof(struct ecryptfs_auth_tok_list_item),
641237fead6SMichael Halcrow 	},
642237fead6SMichael Halcrow 	{
643237fead6SMichael Halcrow 		.cache = &ecryptfs_file_info_cache,
644237fead6SMichael Halcrow 		.name = "ecryptfs_file_cache",
645237fead6SMichael Halcrow 		.size = sizeof(struct ecryptfs_file_info),
646237fead6SMichael Halcrow 	},
647237fead6SMichael Halcrow 	{
648237fead6SMichael Halcrow 		.cache = &ecryptfs_dentry_info_cache,
649237fead6SMichael Halcrow 		.name = "ecryptfs_dentry_info_cache",
650237fead6SMichael Halcrow 		.size = sizeof(struct ecryptfs_dentry_info),
651237fead6SMichael Halcrow 	},
652237fead6SMichael Halcrow 	{
653237fead6SMichael Halcrow 		.cache = &ecryptfs_inode_info_cache,
654237fead6SMichael Halcrow 		.name = "ecryptfs_inode_cache",
655237fead6SMichael Halcrow 		.size = sizeof(struct ecryptfs_inode_info),
656237fead6SMichael Halcrow 		.ctor = inode_info_init_once,
657237fead6SMichael Halcrow 	},
658237fead6SMichael Halcrow 	{
659237fead6SMichael Halcrow 		.cache = &ecryptfs_sb_info_cache,
660237fead6SMichael Halcrow 		.name = "ecryptfs_sb_cache",
661237fead6SMichael Halcrow 		.size = sizeof(struct ecryptfs_sb_info),
662237fead6SMichael Halcrow 	},
663237fead6SMichael Halcrow 	{
66430632870STyler Hicks 		.cache = &ecryptfs_header_cache,
66530632870STyler Hicks 		.name = "ecryptfs_headers",
666237fead6SMichael Halcrow 		.size = PAGE_CACHE_SIZE,
667237fead6SMichael Halcrow 	},
668237fead6SMichael Halcrow 	{
669dd2a3b7aSMichael Halcrow 		.cache = &ecryptfs_xattr_cache,
670dd2a3b7aSMichael Halcrow 		.name = "ecryptfs_xattr_cache",
671dd2a3b7aSMichael Halcrow 		.size = PAGE_CACHE_SIZE,
672dd2a3b7aSMichael Halcrow 	},
673dd2a3b7aSMichael Halcrow 	{
674eb95e7ffSMichael Halcrow 		.cache = &ecryptfs_key_record_cache,
675eb95e7ffSMichael Halcrow 		.name = "ecryptfs_key_record_cache",
676eb95e7ffSMichael Halcrow 		.size = sizeof(struct ecryptfs_key_record),
677eb95e7ffSMichael Halcrow 	},
678956159c3SMichael Halcrow 	{
679956159c3SMichael Halcrow 		.cache = &ecryptfs_key_sig_cache,
680956159c3SMichael Halcrow 		.name = "ecryptfs_key_sig_cache",
681956159c3SMichael Halcrow 		.size = sizeof(struct ecryptfs_key_sig),
682956159c3SMichael Halcrow 	},
683956159c3SMichael Halcrow 	{
684956159c3SMichael Halcrow 		.cache = &ecryptfs_global_auth_tok_cache,
685956159c3SMichael Halcrow 		.name = "ecryptfs_global_auth_tok_cache",
686956159c3SMichael Halcrow 		.size = sizeof(struct ecryptfs_global_auth_tok),
687956159c3SMichael Halcrow 	},
688956159c3SMichael Halcrow 	{
689956159c3SMichael Halcrow 		.cache = &ecryptfs_key_tfm_cache,
690956159c3SMichael Halcrow 		.name = "ecryptfs_key_tfm_cache",
691956159c3SMichael Halcrow 		.size = sizeof(struct ecryptfs_key_tfm),
692956159c3SMichael Halcrow 	},
693746f1e55SMichael Halcrow 	{
694746f1e55SMichael Halcrow 		.cache = &ecryptfs_open_req_cache,
695746f1e55SMichael Halcrow 		.name = "ecryptfs_open_req_cache",
696746f1e55SMichael Halcrow 		.size = sizeof(struct ecryptfs_open_req),
697746f1e55SMichael Halcrow 	},
698237fead6SMichael Halcrow };
699237fead6SMichael Halcrow 
700237fead6SMichael Halcrow static void ecryptfs_free_kmem_caches(void)
701237fead6SMichael Halcrow {
702237fead6SMichael Halcrow 	int i;
703237fead6SMichael Halcrow 
704237fead6SMichael Halcrow 	for (i = 0; i < ARRAY_SIZE(ecryptfs_cache_infos); i++) {
705237fead6SMichael Halcrow 		struct ecryptfs_cache_info *info;
706237fead6SMichael Halcrow 
707237fead6SMichael Halcrow 		info = &ecryptfs_cache_infos[i];
708237fead6SMichael Halcrow 		if (*(info->cache))
709237fead6SMichael Halcrow 			kmem_cache_destroy(*(info->cache));
710237fead6SMichael Halcrow 	}
711237fead6SMichael Halcrow }
712237fead6SMichael Halcrow 
713237fead6SMichael Halcrow /**
714237fead6SMichael Halcrow  * ecryptfs_init_kmem_caches
715237fead6SMichael Halcrow  *
716237fead6SMichael Halcrow  * Returns zero on success; non-zero otherwise
717237fead6SMichael Halcrow  */
718237fead6SMichael Halcrow static int ecryptfs_init_kmem_caches(void)
719237fead6SMichael Halcrow {
720237fead6SMichael Halcrow 	int i;
721237fead6SMichael Halcrow 
722237fead6SMichael Halcrow 	for (i = 0; i < ARRAY_SIZE(ecryptfs_cache_infos); i++) {
723237fead6SMichael Halcrow 		struct ecryptfs_cache_info *info;
724237fead6SMichael Halcrow 
725237fead6SMichael Halcrow 		info = &ecryptfs_cache_infos[i];
726237fead6SMichael Halcrow 		*(info->cache) = kmem_cache_create(info->name, info->size,
72720c2df83SPaul Mundt 				0, SLAB_HWCACHE_ALIGN, info->ctor);
728237fead6SMichael Halcrow 		if (!*(info->cache)) {
729237fead6SMichael Halcrow 			ecryptfs_free_kmem_caches();
730237fead6SMichael Halcrow 			ecryptfs_printk(KERN_WARNING, "%s: "
731237fead6SMichael Halcrow 					"kmem_cache_create failed\n",
732237fead6SMichael Halcrow 					info->name);
733237fead6SMichael Halcrow 			return -ENOMEM;
734237fead6SMichael Halcrow 		}
735237fead6SMichael Halcrow 	}
736237fead6SMichael Halcrow 	return 0;
737237fead6SMichael Halcrow }
738237fead6SMichael Halcrow 
7396e90aa97SGreg Kroah-Hartman static struct kobject *ecryptfs_kobj;
740237fead6SMichael Halcrow 
741386f275fSKay Sievers static ssize_t version_show(struct kobject *kobj,
742386f275fSKay Sievers 			    struct kobj_attribute *attr, char *buff)
743237fead6SMichael Halcrow {
744237fead6SMichael Halcrow 	return snprintf(buff, PAGE_SIZE, "%d\n", ECRYPTFS_VERSIONING_MASK);
745237fead6SMichael Halcrow }
746237fead6SMichael Halcrow 
747386f275fSKay Sievers static struct kobj_attribute version_attr = __ATTR_RO(version);
748237fead6SMichael Halcrow 
74930a468b1SGreg Kroah-Hartman static struct attribute *attributes[] = {
75030a468b1SGreg Kroah-Hartman 	&version_attr.attr,
75130a468b1SGreg Kroah-Hartman 	NULL,
75230a468b1SGreg Kroah-Hartman };
75330a468b1SGreg Kroah-Hartman 
75430a468b1SGreg Kroah-Hartman static struct attribute_group attr_group = {
75530a468b1SGreg Kroah-Hartman 	.attrs = attributes,
75630a468b1SGreg Kroah-Hartman };
757237fead6SMichael Halcrow 
758237fead6SMichael Halcrow static int do_sysfs_registration(void)
759237fead6SMichael Halcrow {
760237fead6SMichael Halcrow 	int rc;
761237fead6SMichael Halcrow 
7626e90aa97SGreg Kroah-Hartman 	ecryptfs_kobj = kobject_create_and_add("ecryptfs", fs_kobj);
7636e90aa97SGreg Kroah-Hartman 	if (!ecryptfs_kobj) {
764917e865dSGreg Kroah-Hartman 		printk(KERN_ERR "Unable to create ecryptfs kset\n");
765917e865dSGreg Kroah-Hartman 		rc = -ENOMEM;
766237fead6SMichael Halcrow 		goto out;
767237fead6SMichael Halcrow 	}
7686e90aa97SGreg Kroah-Hartman 	rc = sysfs_create_group(ecryptfs_kobj, &attr_group);
769237fead6SMichael Halcrow 	if (rc) {
770237fead6SMichael Halcrow 		printk(KERN_ERR
77130a468b1SGreg Kroah-Hartman 		       "Unable to create ecryptfs version attributes\n");
772197b12d6SGreg Kroah-Hartman 		kobject_put(ecryptfs_kobj);
773237fead6SMichael Halcrow 	}
774237fead6SMichael Halcrow out:
775237fead6SMichael Halcrow 	return rc;
776237fead6SMichael Halcrow }
777237fead6SMichael Halcrow 
778a75de1b3SRyusuke Konishi static void do_sysfs_unregistration(void)
779a75de1b3SRyusuke Konishi {
7806e90aa97SGreg Kroah-Hartman 	sysfs_remove_group(ecryptfs_kobj, &attr_group);
781197b12d6SGreg Kroah-Hartman 	kobject_put(ecryptfs_kobj);
782a75de1b3SRyusuke Konishi }
783a75de1b3SRyusuke Konishi 
784237fead6SMichael Halcrow static int __init ecryptfs_init(void)
785237fead6SMichael Halcrow {
786237fead6SMichael Halcrow 	int rc;
787237fead6SMichael Halcrow 
788237fead6SMichael Halcrow 	if (ECRYPTFS_DEFAULT_EXTENT_SIZE > PAGE_CACHE_SIZE) {
789237fead6SMichael Halcrow 		rc = -EINVAL;
790237fead6SMichael Halcrow 		ecryptfs_printk(KERN_ERR, "The eCryptfs extent size is "
791237fead6SMichael Halcrow 				"larger than the host's page size, and so "
792237fead6SMichael Halcrow 				"eCryptfs cannot run on this system. The "
793888d57bbSJoe Perches 				"default eCryptfs extent size is [%u] bytes; "
794888d57bbSJoe Perches 				"the page size is [%lu] bytes.\n",
795888d57bbSJoe Perches 				ECRYPTFS_DEFAULT_EXTENT_SIZE,
796888d57bbSJoe Perches 				(unsigned long)PAGE_CACHE_SIZE);
797237fead6SMichael Halcrow 		goto out;
798237fead6SMichael Halcrow 	}
799237fead6SMichael Halcrow 	rc = ecryptfs_init_kmem_caches();
800237fead6SMichael Halcrow 	if (rc) {
801237fead6SMichael Halcrow 		printk(KERN_ERR
802237fead6SMichael Halcrow 		       "Failed to allocate one or more kmem_cache objects\n");
803237fead6SMichael Halcrow 		goto out;
804237fead6SMichael Halcrow 	}
805237fead6SMichael Halcrow 	rc = do_sysfs_registration();
806237fead6SMichael Halcrow 	if (rc) {
807237fead6SMichael Halcrow 		printk(KERN_ERR "sysfs registration failed\n");
8080794f569SAl Viro 		goto out_free_kmem_caches;
809237fead6SMichael Halcrow 	}
810746f1e55SMichael Halcrow 	rc = ecryptfs_init_kthread();
811746f1e55SMichael Halcrow 	if (rc) {
812746f1e55SMichael Halcrow 		printk(KERN_ERR "%s: kthread initialization failed; "
813746f1e55SMichael Halcrow 		       "rc = [%d]\n", __func__, rc);
814746f1e55SMichael Halcrow 		goto out_do_sysfs_unregistration;
815746f1e55SMichael Halcrow 	}
816624ae528STyler Hicks 	rc = ecryptfs_init_messaging();
817dddfa461SMichael Halcrow 	if (rc) {
81825985edcSLucas De Marchi 		printk(KERN_ERR "Failure occurred while attempting to "
819624ae528STyler Hicks 				"initialize the communications channel to "
820624ae528STyler Hicks 				"ecryptfsd\n");
821746f1e55SMichael Halcrow 		goto out_destroy_kthread;
822956159c3SMichael Halcrow 	}
823956159c3SMichael Halcrow 	rc = ecryptfs_init_crypto();
824956159c3SMichael Halcrow 	if (rc) {
825956159c3SMichael Halcrow 		printk(KERN_ERR "Failure whilst attempting to init crypto; "
826956159c3SMichael Halcrow 		       "rc = [%d]\n", rc);
827cf81f89dSMichael Halcrow 		goto out_release_messaging;
828dddfa461SMichael Halcrow 	}
8290794f569SAl Viro 	rc = register_filesystem(&ecryptfs_fs_type);
8300794f569SAl Viro 	if (rc) {
8310794f569SAl Viro 		printk(KERN_ERR "Failed to register filesystem\n");
8320794f569SAl Viro 		goto out_destroy_crypto;
8330794f569SAl Viro 	}
8342830bfd6SEric Sandeen 	if (ecryptfs_verbosity > 0)
8352830bfd6SEric Sandeen 		printk(KERN_CRIT "eCryptfs verbosity set to %d. Secret values "
8362830bfd6SEric Sandeen 			"will be written to the syslog!\n", ecryptfs_verbosity);
8372830bfd6SEric Sandeen 
838cf81f89dSMichael Halcrow 	goto out;
8390794f569SAl Viro out_destroy_crypto:
8400794f569SAl Viro 	ecryptfs_destroy_crypto();
841cf81f89dSMichael Halcrow out_release_messaging:
842624ae528STyler Hicks 	ecryptfs_release_messaging();
843746f1e55SMichael Halcrow out_destroy_kthread:
844746f1e55SMichael Halcrow 	ecryptfs_destroy_kthread();
845cf81f89dSMichael Halcrow out_do_sysfs_unregistration:
846cf81f89dSMichael Halcrow 	do_sysfs_unregistration();
847cf81f89dSMichael Halcrow out_free_kmem_caches:
848cf81f89dSMichael Halcrow 	ecryptfs_free_kmem_caches();
849237fead6SMichael Halcrow out:
850237fead6SMichael Halcrow 	return rc;
851237fead6SMichael Halcrow }
852237fead6SMichael Halcrow 
853237fead6SMichael Halcrow static void __exit ecryptfs_exit(void)
854237fead6SMichael Halcrow {
855cf81f89dSMichael Halcrow 	int rc;
856cf81f89dSMichael Halcrow 
857cf81f89dSMichael Halcrow 	rc = ecryptfs_destroy_crypto();
858cf81f89dSMichael Halcrow 	if (rc)
859cf81f89dSMichael Halcrow 		printk(KERN_ERR "Failure whilst attempting to destroy crypto; "
860cf81f89dSMichael Halcrow 		       "rc = [%d]\n", rc);
861624ae528STyler Hicks 	ecryptfs_release_messaging();
862746f1e55SMichael Halcrow 	ecryptfs_destroy_kthread();
863cf81f89dSMichael Halcrow 	do_sysfs_unregistration();
864237fead6SMichael Halcrow 	unregister_filesystem(&ecryptfs_fs_type);
865237fead6SMichael Halcrow 	ecryptfs_free_kmem_caches();
866237fead6SMichael Halcrow }
867237fead6SMichael Halcrow 
868237fead6SMichael Halcrow MODULE_AUTHOR("Michael A. Halcrow <mhalcrow@us.ibm.com>");
869237fead6SMichael Halcrow MODULE_DESCRIPTION("eCryptfs");
870237fead6SMichael Halcrow 
871237fead6SMichael Halcrow MODULE_LICENSE("GPL");
872237fead6SMichael Halcrow 
873237fead6SMichael Halcrow module_init(ecryptfs_init)
874237fead6SMichael Halcrow module_exit(ecryptfs_exit)
875