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)) { 1657149f255STyler Hicks filemap_write_and_wait(inode->i_mapping); 166332ab16fSTyler Hicks fput(inode_info->lower_file); 167332ab16fSTyler Hicks inode_info->lower_file = NULL; 168332ab16fSTyler Hicks mutex_unlock(&inode_info->lower_file_mutex); 169332ab16fSTyler Hicks } 170332ab16fSTyler Hicks } 171332ab16fSTyler Hicks 1722830bfd6SEric Sandeen enum { ecryptfs_opt_sig, ecryptfs_opt_ecryptfs_sig, 1732830bfd6SEric Sandeen ecryptfs_opt_cipher, ecryptfs_opt_ecryptfs_cipher, 1742830bfd6SEric Sandeen ecryptfs_opt_ecryptfs_key_bytes, 17517398957SMichael Halcrow ecryptfs_opt_passthrough, ecryptfs_opt_xattr_metadata, 17687c94c4dSMichael Halcrow ecryptfs_opt_encrypted_view, ecryptfs_opt_fnek_sig, 17787c94c4dSMichael Halcrow ecryptfs_opt_fn_cipher, ecryptfs_opt_fn_cipher_key_bytes, 178f16feb51SRoberto Sassu ecryptfs_opt_unlink_sigs, ecryptfs_opt_mount_auth_tok_only, 17976435548SJohn Johansen ecryptfs_opt_check_dev_ruid, 180f16feb51SRoberto Sassu ecryptfs_opt_err }; 181237fead6SMichael Halcrow 182a447c093SSteven Whitehouse static const match_table_t tokens = { 183237fead6SMichael Halcrow {ecryptfs_opt_sig, "sig=%s"}, 184237fead6SMichael Halcrow {ecryptfs_opt_ecryptfs_sig, "ecryptfs_sig=%s"}, 185237fead6SMichael Halcrow {ecryptfs_opt_cipher, "cipher=%s"}, 186237fead6SMichael Halcrow {ecryptfs_opt_ecryptfs_cipher, "ecryptfs_cipher=%s"}, 187237fead6SMichael Halcrow {ecryptfs_opt_ecryptfs_key_bytes, "ecryptfs_key_bytes=%u"}, 188237fead6SMichael Halcrow {ecryptfs_opt_passthrough, "ecryptfs_passthrough"}, 18917398957SMichael Halcrow {ecryptfs_opt_xattr_metadata, "ecryptfs_xattr_metadata"}, 19017398957SMichael Halcrow {ecryptfs_opt_encrypted_view, "ecryptfs_encrypted_view"}, 19187c94c4dSMichael Halcrow {ecryptfs_opt_fnek_sig, "ecryptfs_fnek_sig=%s"}, 19287c94c4dSMichael Halcrow {ecryptfs_opt_fn_cipher, "ecryptfs_fn_cipher=%s"}, 19387c94c4dSMichael Halcrow {ecryptfs_opt_fn_cipher_key_bytes, "ecryptfs_fn_key_bytes=%u"}, 194e77cc8d2STyler Hicks {ecryptfs_opt_unlink_sigs, "ecryptfs_unlink_sigs"}, 195f16feb51SRoberto Sassu {ecryptfs_opt_mount_auth_tok_only, "ecryptfs_mount_auth_tok_only"}, 19676435548SJohn Johansen {ecryptfs_opt_check_dev_ruid, "ecryptfs_check_dev_ruid"}, 197237fead6SMichael Halcrow {ecryptfs_opt_err, NULL} 198237fead6SMichael Halcrow }; 199237fead6SMichael Halcrow 200f4aad16aSMichael Halcrow static int ecryptfs_init_global_auth_toks( 201f4aad16aSMichael Halcrow struct ecryptfs_mount_crypt_stat *mount_crypt_stat) 202237fead6SMichael Halcrow { 203f4aad16aSMichael Halcrow struct ecryptfs_global_auth_tok *global_auth_tok; 2040e1fc5efSRoberto Sassu struct ecryptfs_auth_tok *auth_tok; 205237fead6SMichael Halcrow int rc = 0; 206237fead6SMichael Halcrow 207f4aad16aSMichael Halcrow list_for_each_entry(global_auth_tok, 208f4aad16aSMichael Halcrow &mount_crypt_stat->global_auth_tok_list, 209f4aad16aSMichael Halcrow mount_crypt_stat_list) { 2105dda6992SMichael Halcrow rc = ecryptfs_keyring_auth_tok_for_sig( 2110e1fc5efSRoberto Sassu &global_auth_tok->global_auth_tok_key, &auth_tok, 2125dda6992SMichael Halcrow global_auth_tok->sig); 2135dda6992SMichael Halcrow if (rc) { 214f4aad16aSMichael Halcrow printk(KERN_ERR "Could not find valid key in user " 215f4aad16aSMichael Halcrow "session keyring for sig specified in mount " 216f4aad16aSMichael Halcrow "option: [%s]\n", global_auth_tok->sig); 217f4aad16aSMichael Halcrow global_auth_tok->flags |= ECRYPTFS_AUTH_TOK_INVALID; 218982363c9SEric Sandeen goto out; 219b5695d04SRoberto Sassu } else { 220f4aad16aSMichael Halcrow global_auth_tok->flags &= ~ECRYPTFS_AUTH_TOK_INVALID; 221b5695d04SRoberto Sassu up_write(&(global_auth_tok->global_auth_tok_key)->sem); 222b5695d04SRoberto Sassu } 223237fead6SMichael Halcrow } 224982363c9SEric Sandeen out: 225237fead6SMichael Halcrow return rc; 226237fead6SMichael Halcrow } 227237fead6SMichael Halcrow 228f4aad16aSMichael Halcrow static void ecryptfs_init_mount_crypt_stat( 229f4aad16aSMichael Halcrow struct ecryptfs_mount_crypt_stat *mount_crypt_stat) 230f4aad16aSMichael Halcrow { 231f4aad16aSMichael Halcrow memset((void *)mount_crypt_stat, 0, 232f4aad16aSMichael Halcrow sizeof(struct ecryptfs_mount_crypt_stat)); 233f4aad16aSMichael Halcrow INIT_LIST_HEAD(&mount_crypt_stat->global_auth_tok_list); 234f4aad16aSMichael Halcrow mutex_init(&mount_crypt_stat->global_auth_tok_list_mutex); 235f4aad16aSMichael Halcrow mount_crypt_stat->flags |= ECRYPTFS_MOUNT_CRYPT_STAT_INITIALIZED; 236f4aad16aSMichael Halcrow } 237f4aad16aSMichael Halcrow 238237fead6SMichael Halcrow /** 239237fead6SMichael Halcrow * ecryptfs_parse_options 240237fead6SMichael Halcrow * @sb: The ecryptfs super block 24125985edcSLucas De Marchi * @options: The options passed to the kernel 24276435548SJohn Johansen * @check_ruid: set to 1 if device uid should be checked against the ruid 243237fead6SMichael Halcrow * 244237fead6SMichael Halcrow * Parse mount options: 245237fead6SMichael Halcrow * debug=N - ecryptfs_verbosity level for debug output 246237fead6SMichael Halcrow * sig=XXX - description(signature) of the key to use 247237fead6SMichael Halcrow * 248237fead6SMichael Halcrow * Returns the dentry object of the lower-level (lower/interposed) 249237fead6SMichael Halcrow * directory; We want to mount our stackable file system on top of 250237fead6SMichael Halcrow * that lower directory. 251237fead6SMichael Halcrow * 252237fead6SMichael Halcrow * The signature of the key to use must be the description of a key 253237fead6SMichael Halcrow * already in the keyring. Mounting will fail if the key can not be 254237fead6SMichael Halcrow * found. 255237fead6SMichael Halcrow * 256237fead6SMichael Halcrow * Returns zero on success; non-zero on error 257237fead6SMichael Halcrow */ 25876435548SJohn Johansen static int ecryptfs_parse_options(struct ecryptfs_sb_info *sbi, char *options, 25976435548SJohn Johansen uid_t *check_ruid) 260237fead6SMichael Halcrow { 261237fead6SMichael Halcrow char *p; 262237fead6SMichael Halcrow int rc = 0; 263237fead6SMichael Halcrow int sig_set = 0; 264237fead6SMichael Halcrow int cipher_name_set = 0; 26587c94c4dSMichael Halcrow int fn_cipher_name_set = 0; 266237fead6SMichael Halcrow int cipher_key_bytes; 267237fead6SMichael Halcrow int cipher_key_bytes_set = 0; 26887c94c4dSMichael Halcrow int fn_cipher_key_bytes; 26987c94c4dSMichael Halcrow int fn_cipher_key_bytes_set = 0; 270237fead6SMichael Halcrow struct ecryptfs_mount_crypt_stat *mount_crypt_stat = 2712ccde7c6SAl Viro &sbi->mount_crypt_stat; 272237fead6SMichael Halcrow substring_t args[MAX_OPT_ARGS]; 273237fead6SMichael Halcrow int token; 274237fead6SMichael Halcrow char *sig_src; 275237fead6SMichael Halcrow char *cipher_name_dst; 276237fead6SMichael Halcrow char *cipher_name_src; 27787c94c4dSMichael Halcrow char *fn_cipher_name_dst; 27887c94c4dSMichael Halcrow char *fn_cipher_name_src; 27987c94c4dSMichael Halcrow char *fnek_dst; 28087c94c4dSMichael Halcrow char *fnek_src; 281237fead6SMichael Halcrow char *cipher_key_bytes_src; 28287c94c4dSMichael Halcrow char *fn_cipher_key_bytes_src; 2835f5b331dSTim Sally u8 cipher_code; 284237fead6SMichael Halcrow 28576435548SJohn Johansen *check_ruid = 0; 28676435548SJohn Johansen 287237fead6SMichael Halcrow if (!options) { 288237fead6SMichael Halcrow rc = -EINVAL; 289237fead6SMichael Halcrow goto out; 290237fead6SMichael Halcrow } 291956159c3SMichael Halcrow ecryptfs_init_mount_crypt_stat(mount_crypt_stat); 292237fead6SMichael Halcrow while ((p = strsep(&options, ",")) != NULL) { 293237fead6SMichael Halcrow if (!*p) 294237fead6SMichael Halcrow continue; 295237fead6SMichael Halcrow token = match_token(p, tokens, args); 296237fead6SMichael Halcrow switch (token) { 297237fead6SMichael Halcrow case ecryptfs_opt_sig: 298237fead6SMichael Halcrow case ecryptfs_opt_ecryptfs_sig: 299237fead6SMichael Halcrow sig_src = args[0].from; 300f4aad16aSMichael Halcrow rc = ecryptfs_add_global_auth_tok(mount_crypt_stat, 30184814d64STyler Hicks sig_src, 0); 302f4aad16aSMichael Halcrow if (rc) { 303f4aad16aSMichael Halcrow printk(KERN_ERR "Error attempting to register " 304f4aad16aSMichael Halcrow "global sig; rc = [%d]\n", rc); 305f4aad16aSMichael Halcrow goto out; 306f4aad16aSMichael Halcrow } 307237fead6SMichael Halcrow sig_set = 1; 308237fead6SMichael Halcrow break; 309237fead6SMichael Halcrow case ecryptfs_opt_cipher: 310237fead6SMichael Halcrow case ecryptfs_opt_ecryptfs_cipher: 311237fead6SMichael Halcrow cipher_name_src = args[0].from; 312237fead6SMichael Halcrow cipher_name_dst = 313237fead6SMichael Halcrow mount_crypt_stat-> 314237fead6SMichael Halcrow global_default_cipher_name; 315237fead6SMichael Halcrow strncpy(cipher_name_dst, cipher_name_src, 316237fead6SMichael Halcrow ECRYPTFS_MAX_CIPHER_NAME_SIZE); 31787c94c4dSMichael Halcrow cipher_name_dst[ECRYPTFS_MAX_CIPHER_NAME_SIZE] = '\0'; 318237fead6SMichael Halcrow cipher_name_set = 1; 319237fead6SMichael Halcrow break; 320237fead6SMichael Halcrow case ecryptfs_opt_ecryptfs_key_bytes: 321237fead6SMichael Halcrow cipher_key_bytes_src = args[0].from; 322237fead6SMichael Halcrow cipher_key_bytes = 323237fead6SMichael Halcrow (int)simple_strtol(cipher_key_bytes_src, 324237fead6SMichael Halcrow &cipher_key_bytes_src, 0); 325237fead6SMichael Halcrow mount_crypt_stat->global_default_cipher_key_size = 326237fead6SMichael Halcrow cipher_key_bytes; 327237fead6SMichael Halcrow cipher_key_bytes_set = 1; 328237fead6SMichael Halcrow break; 329237fead6SMichael Halcrow case ecryptfs_opt_passthrough: 330237fead6SMichael Halcrow mount_crypt_stat->flags |= 331237fead6SMichael Halcrow ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED; 332237fead6SMichael Halcrow break; 33317398957SMichael Halcrow case ecryptfs_opt_xattr_metadata: 33417398957SMichael Halcrow mount_crypt_stat->flags |= 33517398957SMichael Halcrow ECRYPTFS_XATTR_METADATA_ENABLED; 33617398957SMichael Halcrow break; 33717398957SMichael Halcrow case ecryptfs_opt_encrypted_view: 33817398957SMichael Halcrow mount_crypt_stat->flags |= 33917398957SMichael Halcrow ECRYPTFS_XATTR_METADATA_ENABLED; 34017398957SMichael Halcrow mount_crypt_stat->flags |= 34117398957SMichael Halcrow ECRYPTFS_ENCRYPTED_VIEW_ENABLED; 34217398957SMichael Halcrow break; 34387c94c4dSMichael Halcrow case ecryptfs_opt_fnek_sig: 34487c94c4dSMichael Halcrow fnek_src = args[0].from; 34587c94c4dSMichael Halcrow fnek_dst = 34687c94c4dSMichael Halcrow mount_crypt_stat->global_default_fnek_sig; 34787c94c4dSMichael Halcrow strncpy(fnek_dst, fnek_src, ECRYPTFS_SIG_SIZE_HEX); 34887c94c4dSMichael Halcrow mount_crypt_stat->global_default_fnek_sig[ 34987c94c4dSMichael Halcrow ECRYPTFS_SIG_SIZE_HEX] = '\0'; 35087c94c4dSMichael Halcrow rc = ecryptfs_add_global_auth_tok( 35187c94c4dSMichael Halcrow mount_crypt_stat, 35284814d64STyler Hicks mount_crypt_stat->global_default_fnek_sig, 35384814d64STyler Hicks ECRYPTFS_AUTH_TOK_FNEK); 35487c94c4dSMichael Halcrow if (rc) { 35587c94c4dSMichael Halcrow printk(KERN_ERR "Error attempting to register " 35687c94c4dSMichael Halcrow "global fnek sig [%s]; rc = [%d]\n", 35787c94c4dSMichael Halcrow mount_crypt_stat->global_default_fnek_sig, 35887c94c4dSMichael Halcrow rc); 35987c94c4dSMichael Halcrow goto out; 36087c94c4dSMichael Halcrow } 36187c94c4dSMichael Halcrow mount_crypt_stat->flags |= 36287c94c4dSMichael Halcrow (ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES 36387c94c4dSMichael Halcrow | ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK); 36487c94c4dSMichael Halcrow break; 36587c94c4dSMichael Halcrow case ecryptfs_opt_fn_cipher: 36687c94c4dSMichael Halcrow fn_cipher_name_src = args[0].from; 36787c94c4dSMichael Halcrow fn_cipher_name_dst = 36887c94c4dSMichael Halcrow mount_crypt_stat->global_default_fn_cipher_name; 36987c94c4dSMichael Halcrow strncpy(fn_cipher_name_dst, fn_cipher_name_src, 37087c94c4dSMichael Halcrow ECRYPTFS_MAX_CIPHER_NAME_SIZE); 37187c94c4dSMichael Halcrow mount_crypt_stat->global_default_fn_cipher_name[ 37287c94c4dSMichael Halcrow ECRYPTFS_MAX_CIPHER_NAME_SIZE] = '\0'; 37387c94c4dSMichael Halcrow fn_cipher_name_set = 1; 37487c94c4dSMichael Halcrow break; 37587c94c4dSMichael Halcrow case ecryptfs_opt_fn_cipher_key_bytes: 37687c94c4dSMichael Halcrow fn_cipher_key_bytes_src = args[0].from; 37787c94c4dSMichael Halcrow fn_cipher_key_bytes = 37887c94c4dSMichael Halcrow (int)simple_strtol(fn_cipher_key_bytes_src, 37987c94c4dSMichael Halcrow &fn_cipher_key_bytes_src, 0); 38087c94c4dSMichael Halcrow mount_crypt_stat->global_default_fn_cipher_key_bytes = 38187c94c4dSMichael Halcrow fn_cipher_key_bytes; 38287c94c4dSMichael Halcrow fn_cipher_key_bytes_set = 1; 38387c94c4dSMichael Halcrow break; 384e77cc8d2STyler Hicks case ecryptfs_opt_unlink_sigs: 385e77cc8d2STyler Hicks mount_crypt_stat->flags |= ECRYPTFS_UNLINK_SIGS; 386e77cc8d2STyler Hicks break; 387f16feb51SRoberto Sassu case ecryptfs_opt_mount_auth_tok_only: 388f16feb51SRoberto Sassu mount_crypt_stat->flags |= 389f16feb51SRoberto Sassu ECRYPTFS_GLOBAL_MOUNT_AUTH_TOK_ONLY; 390f16feb51SRoberto Sassu break; 39176435548SJohn Johansen case ecryptfs_opt_check_dev_ruid: 39276435548SJohn Johansen *check_ruid = 1; 39376435548SJohn Johansen break; 394237fead6SMichael Halcrow case ecryptfs_opt_err: 395237fead6SMichael Halcrow default: 39687c94c4dSMichael Halcrow printk(KERN_WARNING 39787c94c4dSMichael Halcrow "%s: eCryptfs: unrecognized option [%s]\n", 39887c94c4dSMichael Halcrow __func__, p); 399237fead6SMichael Halcrow } 400237fead6SMichael Halcrow } 401237fead6SMichael Halcrow if (!sig_set) { 402237fead6SMichael Halcrow rc = -EINVAL; 403956159c3SMichael Halcrow ecryptfs_printk(KERN_ERR, "You must supply at least one valid " 404956159c3SMichael Halcrow "auth tok signature as a mount " 405237fead6SMichael Halcrow "parameter; see the eCryptfs README\n"); 406237fead6SMichael Halcrow goto out; 407237fead6SMichael Halcrow } 408237fead6SMichael Halcrow if (!cipher_name_set) { 4098f236809SMiklos Szeredi int cipher_name_len = strlen(ECRYPTFS_DEFAULT_CIPHER); 4108f236809SMiklos Szeredi 4118f236809SMiklos Szeredi BUG_ON(cipher_name_len >= ECRYPTFS_MAX_CIPHER_NAME_SIZE); 4128f236809SMiklos Szeredi strcpy(mount_crypt_stat->global_default_cipher_name, 4138f236809SMiklos Szeredi ECRYPTFS_DEFAULT_CIPHER); 414237fead6SMichael Halcrow } 41587c94c4dSMichael Halcrow if ((mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES) 41687c94c4dSMichael Halcrow && !fn_cipher_name_set) 41787c94c4dSMichael Halcrow strcpy(mount_crypt_stat->global_default_fn_cipher_name, 41887c94c4dSMichael Halcrow mount_crypt_stat->global_default_cipher_name); 41987c94c4dSMichael Halcrow if (!cipher_key_bytes_set) 420e5d9cbdeSMichael Halcrow mount_crypt_stat->global_default_cipher_key_size = 0; 42187c94c4dSMichael Halcrow if ((mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES) 42287c94c4dSMichael Halcrow && !fn_cipher_key_bytes_set) 42387c94c4dSMichael Halcrow mount_crypt_stat->global_default_fn_cipher_key_bytes = 42487c94c4dSMichael Halcrow mount_crypt_stat->global_default_cipher_key_size; 4255f5b331dSTim Sally 4265f5b331dSTim Sally cipher_code = ecryptfs_code_for_cipher_string( 4275f5b331dSTim Sally mount_crypt_stat->global_default_cipher_name, 4285f5b331dSTim Sally mount_crypt_stat->global_default_cipher_key_size); 4295f5b331dSTim Sally if (!cipher_code) { 4305f5b331dSTim Sally ecryptfs_printk(KERN_ERR, 4315f5b331dSTim Sally "eCryptfs doesn't support cipher: %s", 4325f5b331dSTim Sally mount_crypt_stat->global_default_cipher_name); 4335f5b331dSTim Sally rc = -EINVAL; 4345f5b331dSTim Sally goto out; 4355f5b331dSTim Sally } 4365f5b331dSTim Sally 437af440f52SEric Sandeen mutex_lock(&key_tfm_list_mutex); 438af440f52SEric Sandeen if (!ecryptfs_tfm_exists(mount_crypt_stat->global_default_cipher_name, 43987c94c4dSMichael Halcrow NULL)) { 4405dda6992SMichael Halcrow rc = ecryptfs_add_new_key_tfm( 441f4aad16aSMichael Halcrow NULL, mount_crypt_stat->global_default_cipher_name, 4425dda6992SMichael Halcrow mount_crypt_stat->global_default_cipher_key_size); 4435dda6992SMichael Halcrow if (rc) { 44487c94c4dSMichael Halcrow printk(KERN_ERR "Error attempting to initialize " 44587c94c4dSMichael Halcrow "cipher with name = [%s] and key size = [%td]; " 44687c94c4dSMichael Halcrow "rc = [%d]\n", 447237fead6SMichael Halcrow mount_crypt_stat->global_default_cipher_name, 44887c94c4dSMichael Halcrow mount_crypt_stat->global_default_cipher_key_size, 44987c94c4dSMichael Halcrow rc); 450237fead6SMichael Halcrow rc = -EINVAL; 45187c94c4dSMichael Halcrow mutex_unlock(&key_tfm_list_mutex); 452237fead6SMichael Halcrow goto out; 453237fead6SMichael Halcrow } 45487c94c4dSMichael Halcrow } 45587c94c4dSMichael Halcrow if ((mount_crypt_stat->flags & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES) 45687c94c4dSMichael Halcrow && !ecryptfs_tfm_exists( 45787c94c4dSMichael Halcrow mount_crypt_stat->global_default_fn_cipher_name, NULL)) { 45887c94c4dSMichael Halcrow rc = ecryptfs_add_new_key_tfm( 45987c94c4dSMichael Halcrow NULL, mount_crypt_stat->global_default_fn_cipher_name, 46087c94c4dSMichael Halcrow mount_crypt_stat->global_default_fn_cipher_key_bytes); 4615dda6992SMichael Halcrow if (rc) { 46287c94c4dSMichael Halcrow printk(KERN_ERR "Error attempting to initialize " 46387c94c4dSMichael Halcrow "cipher with name = [%s] and key size = [%td]; " 46487c94c4dSMichael Halcrow "rc = [%d]\n", 46587c94c4dSMichael Halcrow mount_crypt_stat->global_default_fn_cipher_name, 46687c94c4dSMichael Halcrow mount_crypt_stat->global_default_fn_cipher_key_bytes, 46787c94c4dSMichael Halcrow rc); 46887c94c4dSMichael Halcrow rc = -EINVAL; 46987c94c4dSMichael Halcrow mutex_unlock(&key_tfm_list_mutex); 47087c94c4dSMichael Halcrow goto out; 47187c94c4dSMichael Halcrow } 47287c94c4dSMichael Halcrow } 47387c94c4dSMichael Halcrow mutex_unlock(&key_tfm_list_mutex); 47487c94c4dSMichael Halcrow rc = ecryptfs_init_global_auth_toks(mount_crypt_stat); 47587c94c4dSMichael Halcrow if (rc) 476f4aad16aSMichael Halcrow printk(KERN_WARNING "One or more global auth toks could not " 477f4aad16aSMichael Halcrow "properly register; rc = [%d]\n", rc); 478237fead6SMichael Halcrow out: 479237fead6SMichael Halcrow return rc; 480237fead6SMichael Halcrow } 481237fead6SMichael Halcrow 482237fead6SMichael Halcrow struct kmem_cache *ecryptfs_sb_info_cache; 4834403158bSAl Viro static struct file_system_type ecryptfs_fs_type; 484237fead6SMichael Halcrow 485237fead6SMichael Halcrow /** 486237fead6SMichael Halcrow * ecryptfs_get_sb 487237fead6SMichael Halcrow * @fs_type 488237fead6SMichael Halcrow * @flags 489237fead6SMichael Halcrow * @dev_name: The path to mount over 490237fead6SMichael Halcrow * @raw_data: The options passed into the kernel 491237fead6SMichael Halcrow */ 4924d143bebSAl Viro static struct dentry *ecryptfs_mount(struct file_system_type *fs_type, int flags, 4934d143bebSAl Viro const char *dev_name, void *raw_data) 494237fead6SMichael Halcrow { 4952ccde7c6SAl Viro struct super_block *s; 4962ccde7c6SAl Viro struct ecryptfs_sb_info *sbi; 4972ccde7c6SAl Viro struct ecryptfs_dentry_info *root_info; 4982ccde7c6SAl Viro const char *err = "Getting sb failed"; 49966cb7666SAl Viro struct inode *inode; 50066cb7666SAl Viro struct path path; 50176435548SJohn Johansen uid_t check_ruid; 502237fead6SMichael Halcrow int rc; 503237fead6SMichael Halcrow 5042ccde7c6SAl Viro sbi = kmem_cache_zalloc(ecryptfs_sb_info_cache, GFP_KERNEL); 5052ccde7c6SAl Viro if (!sbi) { 5062ccde7c6SAl Viro rc = -ENOMEM; 507237fead6SMichael Halcrow goto out; 508237fead6SMichael Halcrow } 5092ccde7c6SAl Viro 51076435548SJohn Johansen rc = ecryptfs_parse_options(sbi, raw_data, &check_ruid); 511237fead6SMichael Halcrow if (rc) { 5122ccde7c6SAl Viro err = "Error parsing options"; 513237fead6SMichael Halcrow goto out; 5142ccde7c6SAl Viro } 5152ccde7c6SAl Viro 5169249e17fSDavid Howells s = sget(fs_type, NULL, set_anon_super, flags, NULL); 5172ccde7c6SAl Viro if (IS_ERR(s)) { 5182ccde7c6SAl Viro rc = PTR_ERR(s); 5192ccde7c6SAl Viro goto out; 5202ccde7c6SAl Viro } 5212ccde7c6SAl Viro 5222ccde7c6SAl Viro rc = bdi_setup_and_register(&sbi->bdi, "ecryptfs", BDI_CAP_MAP_COPY); 52366cb7666SAl Viro if (rc) 52466cb7666SAl Viro goto out1; 5252ccde7c6SAl Viro 5262ccde7c6SAl Viro ecryptfs_set_superblock_private(s, sbi); 5272ccde7c6SAl Viro s->s_bdi = &sbi->bdi; 5282ccde7c6SAl Viro 5292ccde7c6SAl Viro /* ->kill_sb() will take care of sbi after that point */ 5302ccde7c6SAl Viro sbi = NULL; 5312ccde7c6SAl Viro s->s_op = &ecryptfs_sops; 53266cb7666SAl Viro s->s_d_op = &ecryptfs_dops; 53366cb7666SAl Viro 53466cb7666SAl Viro err = "Reading sb failed"; 53566cb7666SAl Viro rc = kern_path(dev_name, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &path); 53666cb7666SAl Viro if (rc) { 53766cb7666SAl Viro ecryptfs_printk(KERN_WARNING, "kern_path() failed\n"); 53866cb7666SAl Viro goto out1; 53966cb7666SAl Viro } 54066cb7666SAl Viro if (path.dentry->d_sb->s_type == &ecryptfs_fs_type) { 54166cb7666SAl Viro rc = -EINVAL; 54266cb7666SAl Viro printk(KERN_ERR "Mount on filesystem of type " 54366cb7666SAl Viro "eCryptfs explicitly disallowed due to " 54466cb7666SAl Viro "known incompatibilities\n"); 54566cb7666SAl Viro goto out_free; 54666cb7666SAl Viro } 54776435548SJohn Johansen 548cdf8c58aSEric W. Biederman if (check_ruid && !uid_eq(path.dentry->d_inode->i_uid, current_uid())) { 54976435548SJohn Johansen rc = -EPERM; 55076435548SJohn Johansen printk(KERN_ERR "Mount of device (uid: %d) not owned by " 55176435548SJohn Johansen "requested user (uid: %d)\n", 552cdf8c58aSEric W. Biederman i_uid_read(path.dentry->d_inode), 553cdf8c58aSEric W. Biederman from_kuid(&init_user_ns, current_uid())); 55476435548SJohn Johansen goto out_free; 55576435548SJohn Johansen } 55676435548SJohn Johansen 55766cb7666SAl Viro ecryptfs_set_superblock_lower(s, path.dentry->d_sb); 558069ddcdaSTyler Hicks 559069ddcdaSTyler Hicks /** 560069ddcdaSTyler Hicks * Set the POSIX ACL flag based on whether they're enabled in the lower 561069ddcdaSTyler Hicks * mount. Force a read-only eCryptfs mount if the lower mount is ro. 562069ddcdaSTyler Hicks * Allow a ro eCryptfs mount even when the lower mount is rw. 563069ddcdaSTyler Hicks */ 564069ddcdaSTyler Hicks s->s_flags = flags & ~MS_POSIXACL; 565069ddcdaSTyler Hicks s->s_flags |= path.dentry->d_sb->s_flags & (MS_RDONLY | MS_POSIXACL); 566069ddcdaSTyler Hicks 56766cb7666SAl Viro s->s_maxbytes = path.dentry->d_sb->s_maxbytes; 56866cb7666SAl Viro s->s_blocksize = path.dentry->d_sb->s_blocksize; 569070baa51SRoberto Sassu s->s_magic = ECRYPTFS_SUPER_MAGIC; 57066cb7666SAl Viro 57166cb7666SAl Viro inode = ecryptfs_get_inode(path.dentry->d_inode, s); 57266cb7666SAl Viro rc = PTR_ERR(inode); 57366cb7666SAl Viro if (IS_ERR(inode)) 57466cb7666SAl Viro goto out_free; 57566cb7666SAl Viro 57648fde701SAl Viro s->s_root = d_make_root(inode); 57766cb7666SAl Viro if (!s->s_root) { 57866cb7666SAl Viro rc = -ENOMEM; 57966cb7666SAl Viro goto out_free; 58066cb7666SAl Viro } 5812ccde7c6SAl Viro 5822ccde7c6SAl Viro rc = -ENOMEM; 5832ccde7c6SAl Viro root_info = kmem_cache_zalloc(ecryptfs_dentry_info_cache, GFP_KERNEL); 58466cb7666SAl Viro if (!root_info) 58566cb7666SAl Viro goto out_free; 58666cb7666SAl Viro 5872ccde7c6SAl Viro /* ->kill_sb() will take care of root_info */ 5882ccde7c6SAl Viro ecryptfs_set_dentry_private(s->s_root, root_info); 58966cb7666SAl Viro ecryptfs_set_dentry_lower(s->s_root, path.dentry); 59066cb7666SAl Viro ecryptfs_set_dentry_lower_mnt(s->s_root, path.mnt); 59166cb7666SAl Viro 5922ccde7c6SAl Viro s->s_flags |= MS_ACTIVE; 5934d143bebSAl Viro return dget(s->s_root); 5942ccde7c6SAl Viro 59566cb7666SAl Viro out_free: 59666cb7666SAl Viro path_put(&path); 59766cb7666SAl Viro out1: 59866cb7666SAl Viro deactivate_locked_super(s); 599237fead6SMichael Halcrow out: 6002ccde7c6SAl Viro if (sbi) { 6012ccde7c6SAl Viro ecryptfs_destroy_mount_crypt_stat(&sbi->mount_crypt_stat); 6022ccde7c6SAl Viro kmem_cache_free(ecryptfs_sb_info_cache, sbi); 6032ccde7c6SAl Viro } 6042ccde7c6SAl Viro printk(KERN_ERR "%s; rc = [%d]\n", err, rc); 6054d143bebSAl Viro return ERR_PTR(rc); 606237fead6SMichael Halcrow } 607237fead6SMichael Halcrow 608237fead6SMichael Halcrow /** 609237fead6SMichael Halcrow * ecryptfs_kill_block_super 610237fead6SMichael Halcrow * @sb: The ecryptfs super block 611237fead6SMichael Halcrow * 612237fead6SMichael Halcrow * Used to bring the superblock down and free the private data. 613237fead6SMichael Halcrow */ 614237fead6SMichael Halcrow static void ecryptfs_kill_block_super(struct super_block *sb) 615237fead6SMichael Halcrow { 616decabd66SAl Viro struct ecryptfs_sb_info *sb_info = ecryptfs_superblock_to_private(sb); 617decabd66SAl Viro kill_anon_super(sb); 618decabd66SAl Viro if (!sb_info) 619decabd66SAl Viro return; 620decabd66SAl Viro ecryptfs_destroy_mount_crypt_stat(&sb_info->mount_crypt_stat); 621decabd66SAl Viro bdi_destroy(&sb_info->bdi); 622decabd66SAl Viro kmem_cache_free(ecryptfs_sb_info_cache, sb_info); 623237fead6SMichael Halcrow } 624237fead6SMichael Halcrow 625237fead6SMichael Halcrow static struct file_system_type ecryptfs_fs_type = { 626237fead6SMichael Halcrow .owner = THIS_MODULE, 627237fead6SMichael Halcrow .name = "ecryptfs", 6284d143bebSAl Viro .mount = ecryptfs_mount, 629237fead6SMichael Halcrow .kill_sb = ecryptfs_kill_block_super, 630237fead6SMichael Halcrow .fs_flags = 0 631237fead6SMichael Halcrow }; 632*7f78e035SEric W. Biederman MODULE_ALIAS_FS("ecryptfs"); 633237fead6SMichael Halcrow 634237fead6SMichael Halcrow /** 635237fead6SMichael Halcrow * inode_info_init_once 636237fead6SMichael Halcrow * 637237fead6SMichael Halcrow * Initializes the ecryptfs_inode_info_cache when it is created 638237fead6SMichael Halcrow */ 639237fead6SMichael Halcrow static void 64051cc5068SAlexey Dobriyan inode_info_init_once(void *vptr) 641237fead6SMichael Halcrow { 642237fead6SMichael Halcrow struct ecryptfs_inode_info *ei = (struct ecryptfs_inode_info *)vptr; 643237fead6SMichael Halcrow 644237fead6SMichael Halcrow inode_init_once(&ei->vfs_inode); 645237fead6SMichael Halcrow } 646237fead6SMichael Halcrow 647237fead6SMichael Halcrow static struct ecryptfs_cache_info { 648e18b890bSChristoph Lameter struct kmem_cache **cache; 649237fead6SMichael Halcrow const char *name; 650237fead6SMichael Halcrow size_t size; 65151cc5068SAlexey Dobriyan void (*ctor)(void *obj); 652237fead6SMichael Halcrow } ecryptfs_cache_infos[] = { 653237fead6SMichael Halcrow { 654237fead6SMichael Halcrow .cache = &ecryptfs_auth_tok_list_item_cache, 655237fead6SMichael Halcrow .name = "ecryptfs_auth_tok_list_item", 656237fead6SMichael Halcrow .size = sizeof(struct ecryptfs_auth_tok_list_item), 657237fead6SMichael Halcrow }, 658237fead6SMichael Halcrow { 659237fead6SMichael Halcrow .cache = &ecryptfs_file_info_cache, 660237fead6SMichael Halcrow .name = "ecryptfs_file_cache", 661237fead6SMichael Halcrow .size = sizeof(struct ecryptfs_file_info), 662237fead6SMichael Halcrow }, 663237fead6SMichael Halcrow { 664237fead6SMichael Halcrow .cache = &ecryptfs_dentry_info_cache, 665237fead6SMichael Halcrow .name = "ecryptfs_dentry_info_cache", 666237fead6SMichael Halcrow .size = sizeof(struct ecryptfs_dentry_info), 667237fead6SMichael Halcrow }, 668237fead6SMichael Halcrow { 669237fead6SMichael Halcrow .cache = &ecryptfs_inode_info_cache, 670237fead6SMichael Halcrow .name = "ecryptfs_inode_cache", 671237fead6SMichael Halcrow .size = sizeof(struct ecryptfs_inode_info), 672237fead6SMichael Halcrow .ctor = inode_info_init_once, 673237fead6SMichael Halcrow }, 674237fead6SMichael Halcrow { 675237fead6SMichael Halcrow .cache = &ecryptfs_sb_info_cache, 676237fead6SMichael Halcrow .name = "ecryptfs_sb_cache", 677237fead6SMichael Halcrow .size = sizeof(struct ecryptfs_sb_info), 678237fead6SMichael Halcrow }, 679237fead6SMichael Halcrow { 68030632870STyler Hicks .cache = &ecryptfs_header_cache, 68130632870STyler Hicks .name = "ecryptfs_headers", 682237fead6SMichael Halcrow .size = PAGE_CACHE_SIZE, 683237fead6SMichael Halcrow }, 684237fead6SMichael Halcrow { 685dd2a3b7aSMichael Halcrow .cache = &ecryptfs_xattr_cache, 686dd2a3b7aSMichael Halcrow .name = "ecryptfs_xattr_cache", 687dd2a3b7aSMichael Halcrow .size = PAGE_CACHE_SIZE, 688dd2a3b7aSMichael Halcrow }, 689dd2a3b7aSMichael Halcrow { 690eb95e7ffSMichael Halcrow .cache = &ecryptfs_key_record_cache, 691eb95e7ffSMichael Halcrow .name = "ecryptfs_key_record_cache", 692eb95e7ffSMichael Halcrow .size = sizeof(struct ecryptfs_key_record), 693eb95e7ffSMichael Halcrow }, 694956159c3SMichael Halcrow { 695956159c3SMichael Halcrow .cache = &ecryptfs_key_sig_cache, 696956159c3SMichael Halcrow .name = "ecryptfs_key_sig_cache", 697956159c3SMichael Halcrow .size = sizeof(struct ecryptfs_key_sig), 698956159c3SMichael Halcrow }, 699956159c3SMichael Halcrow { 700956159c3SMichael Halcrow .cache = &ecryptfs_global_auth_tok_cache, 701956159c3SMichael Halcrow .name = "ecryptfs_global_auth_tok_cache", 702956159c3SMichael Halcrow .size = sizeof(struct ecryptfs_global_auth_tok), 703956159c3SMichael Halcrow }, 704956159c3SMichael Halcrow { 705956159c3SMichael Halcrow .cache = &ecryptfs_key_tfm_cache, 706956159c3SMichael Halcrow .name = "ecryptfs_key_tfm_cache", 707956159c3SMichael Halcrow .size = sizeof(struct ecryptfs_key_tfm), 708956159c3SMichael Halcrow }, 709237fead6SMichael Halcrow }; 710237fead6SMichael Halcrow 711237fead6SMichael Halcrow static void ecryptfs_free_kmem_caches(void) 712237fead6SMichael Halcrow { 713237fead6SMichael Halcrow int i; 714237fead6SMichael Halcrow 7158c0a8537SKirill A. Shutemov /* 7168c0a8537SKirill A. Shutemov * Make sure all delayed rcu free inodes are flushed before we 7178c0a8537SKirill A. Shutemov * destroy cache. 7188c0a8537SKirill A. Shutemov */ 7198c0a8537SKirill A. Shutemov rcu_barrier(); 7208c0a8537SKirill A. Shutemov 721237fead6SMichael Halcrow for (i = 0; i < ARRAY_SIZE(ecryptfs_cache_infos); i++) { 722237fead6SMichael Halcrow struct ecryptfs_cache_info *info; 723237fead6SMichael Halcrow 724237fead6SMichael Halcrow info = &ecryptfs_cache_infos[i]; 725237fead6SMichael Halcrow if (*(info->cache)) 726237fead6SMichael Halcrow kmem_cache_destroy(*(info->cache)); 727237fead6SMichael Halcrow } 728237fead6SMichael Halcrow } 729237fead6SMichael Halcrow 730237fead6SMichael Halcrow /** 731237fead6SMichael Halcrow * ecryptfs_init_kmem_caches 732237fead6SMichael Halcrow * 733237fead6SMichael Halcrow * Returns zero on success; non-zero otherwise 734237fead6SMichael Halcrow */ 735237fead6SMichael Halcrow static int ecryptfs_init_kmem_caches(void) 736237fead6SMichael Halcrow { 737237fead6SMichael Halcrow int i; 738237fead6SMichael Halcrow 739237fead6SMichael Halcrow for (i = 0; i < ARRAY_SIZE(ecryptfs_cache_infos); i++) { 740237fead6SMichael Halcrow struct ecryptfs_cache_info *info; 741237fead6SMichael Halcrow 742237fead6SMichael Halcrow info = &ecryptfs_cache_infos[i]; 743237fead6SMichael Halcrow *(info->cache) = kmem_cache_create(info->name, info->size, 74420c2df83SPaul Mundt 0, SLAB_HWCACHE_ALIGN, info->ctor); 745237fead6SMichael Halcrow if (!*(info->cache)) { 746237fead6SMichael Halcrow ecryptfs_free_kmem_caches(); 747237fead6SMichael Halcrow ecryptfs_printk(KERN_WARNING, "%s: " 748237fead6SMichael Halcrow "kmem_cache_create failed\n", 749237fead6SMichael Halcrow info->name); 750237fead6SMichael Halcrow return -ENOMEM; 751237fead6SMichael Halcrow } 752237fead6SMichael Halcrow } 753237fead6SMichael Halcrow return 0; 754237fead6SMichael Halcrow } 755237fead6SMichael Halcrow 7566e90aa97SGreg Kroah-Hartman static struct kobject *ecryptfs_kobj; 757237fead6SMichael Halcrow 758386f275fSKay Sievers static ssize_t version_show(struct kobject *kobj, 759386f275fSKay Sievers struct kobj_attribute *attr, char *buff) 760237fead6SMichael Halcrow { 761237fead6SMichael Halcrow return snprintf(buff, PAGE_SIZE, "%d\n", ECRYPTFS_VERSIONING_MASK); 762237fead6SMichael Halcrow } 763237fead6SMichael Halcrow 764386f275fSKay Sievers static struct kobj_attribute version_attr = __ATTR_RO(version); 765237fead6SMichael Halcrow 76630a468b1SGreg Kroah-Hartman static struct attribute *attributes[] = { 76730a468b1SGreg Kroah-Hartman &version_attr.attr, 76830a468b1SGreg Kroah-Hartman NULL, 76930a468b1SGreg Kroah-Hartman }; 77030a468b1SGreg Kroah-Hartman 77130a468b1SGreg Kroah-Hartman static struct attribute_group attr_group = { 77230a468b1SGreg Kroah-Hartman .attrs = attributes, 77330a468b1SGreg Kroah-Hartman }; 774237fead6SMichael Halcrow 775237fead6SMichael Halcrow static int do_sysfs_registration(void) 776237fead6SMichael Halcrow { 777237fead6SMichael Halcrow int rc; 778237fead6SMichael Halcrow 7796e90aa97SGreg Kroah-Hartman ecryptfs_kobj = kobject_create_and_add("ecryptfs", fs_kobj); 7806e90aa97SGreg Kroah-Hartman if (!ecryptfs_kobj) { 781917e865dSGreg Kroah-Hartman printk(KERN_ERR "Unable to create ecryptfs kset\n"); 782917e865dSGreg Kroah-Hartman rc = -ENOMEM; 783237fead6SMichael Halcrow goto out; 784237fead6SMichael Halcrow } 7856e90aa97SGreg Kroah-Hartman rc = sysfs_create_group(ecryptfs_kobj, &attr_group); 786237fead6SMichael Halcrow if (rc) { 787237fead6SMichael Halcrow printk(KERN_ERR 78830a468b1SGreg Kroah-Hartman "Unable to create ecryptfs version attributes\n"); 789197b12d6SGreg Kroah-Hartman kobject_put(ecryptfs_kobj); 790237fead6SMichael Halcrow } 791237fead6SMichael Halcrow out: 792237fead6SMichael Halcrow return rc; 793237fead6SMichael Halcrow } 794237fead6SMichael Halcrow 795a75de1b3SRyusuke Konishi static void do_sysfs_unregistration(void) 796a75de1b3SRyusuke Konishi { 7976e90aa97SGreg Kroah-Hartman sysfs_remove_group(ecryptfs_kobj, &attr_group); 798197b12d6SGreg Kroah-Hartman kobject_put(ecryptfs_kobj); 799a75de1b3SRyusuke Konishi } 800a75de1b3SRyusuke Konishi 801237fead6SMichael Halcrow static int __init ecryptfs_init(void) 802237fead6SMichael Halcrow { 803237fead6SMichael Halcrow int rc; 804237fead6SMichael Halcrow 805237fead6SMichael Halcrow if (ECRYPTFS_DEFAULT_EXTENT_SIZE > PAGE_CACHE_SIZE) { 806237fead6SMichael Halcrow rc = -EINVAL; 807237fead6SMichael Halcrow ecryptfs_printk(KERN_ERR, "The eCryptfs extent size is " 808237fead6SMichael Halcrow "larger than the host's page size, and so " 809237fead6SMichael Halcrow "eCryptfs cannot run on this system. The " 810888d57bbSJoe Perches "default eCryptfs extent size is [%u] bytes; " 811888d57bbSJoe Perches "the page size is [%lu] bytes.\n", 812888d57bbSJoe Perches ECRYPTFS_DEFAULT_EXTENT_SIZE, 813888d57bbSJoe Perches (unsigned long)PAGE_CACHE_SIZE); 814237fead6SMichael Halcrow goto out; 815237fead6SMichael Halcrow } 816237fead6SMichael Halcrow rc = ecryptfs_init_kmem_caches(); 817237fead6SMichael Halcrow if (rc) { 818237fead6SMichael Halcrow printk(KERN_ERR 819237fead6SMichael Halcrow "Failed to allocate one or more kmem_cache objects\n"); 820237fead6SMichael Halcrow goto out; 821237fead6SMichael Halcrow } 822237fead6SMichael Halcrow rc = do_sysfs_registration(); 823237fead6SMichael Halcrow if (rc) { 824237fead6SMichael Halcrow printk(KERN_ERR "sysfs registration failed\n"); 8250794f569SAl Viro goto out_free_kmem_caches; 826237fead6SMichael Halcrow } 827746f1e55SMichael Halcrow rc = ecryptfs_init_kthread(); 828746f1e55SMichael Halcrow if (rc) { 829746f1e55SMichael Halcrow printk(KERN_ERR "%s: kthread initialization failed; " 830746f1e55SMichael Halcrow "rc = [%d]\n", __func__, rc); 831746f1e55SMichael Halcrow goto out_do_sysfs_unregistration; 832746f1e55SMichael Halcrow } 833624ae528STyler Hicks rc = ecryptfs_init_messaging(); 834dddfa461SMichael Halcrow if (rc) { 83525985edcSLucas De Marchi printk(KERN_ERR "Failure occurred while attempting to " 836624ae528STyler Hicks "initialize the communications channel to " 837624ae528STyler Hicks "ecryptfsd\n"); 838746f1e55SMichael Halcrow goto out_destroy_kthread; 839956159c3SMichael Halcrow } 840956159c3SMichael Halcrow rc = ecryptfs_init_crypto(); 841956159c3SMichael Halcrow if (rc) { 842956159c3SMichael Halcrow printk(KERN_ERR "Failure whilst attempting to init crypto; " 843956159c3SMichael Halcrow "rc = [%d]\n", rc); 844cf81f89dSMichael Halcrow goto out_release_messaging; 845dddfa461SMichael Halcrow } 8460794f569SAl Viro rc = register_filesystem(&ecryptfs_fs_type); 8470794f569SAl Viro if (rc) { 8480794f569SAl Viro printk(KERN_ERR "Failed to register filesystem\n"); 8490794f569SAl Viro goto out_destroy_crypto; 8500794f569SAl Viro } 8512830bfd6SEric Sandeen if (ecryptfs_verbosity > 0) 8522830bfd6SEric Sandeen printk(KERN_CRIT "eCryptfs verbosity set to %d. Secret values " 8532830bfd6SEric Sandeen "will be written to the syslog!\n", ecryptfs_verbosity); 8542830bfd6SEric Sandeen 855cf81f89dSMichael Halcrow goto out; 8560794f569SAl Viro out_destroy_crypto: 8570794f569SAl Viro ecryptfs_destroy_crypto(); 858cf81f89dSMichael Halcrow out_release_messaging: 859624ae528STyler Hicks ecryptfs_release_messaging(); 860746f1e55SMichael Halcrow out_destroy_kthread: 861746f1e55SMichael Halcrow ecryptfs_destroy_kthread(); 862cf81f89dSMichael Halcrow out_do_sysfs_unregistration: 863cf81f89dSMichael Halcrow do_sysfs_unregistration(); 864cf81f89dSMichael Halcrow out_free_kmem_caches: 865cf81f89dSMichael Halcrow ecryptfs_free_kmem_caches(); 866237fead6SMichael Halcrow out: 867237fead6SMichael Halcrow return rc; 868237fead6SMichael Halcrow } 869237fead6SMichael Halcrow 870237fead6SMichael Halcrow static void __exit ecryptfs_exit(void) 871237fead6SMichael Halcrow { 872cf81f89dSMichael Halcrow int rc; 873cf81f89dSMichael Halcrow 874cf81f89dSMichael Halcrow rc = ecryptfs_destroy_crypto(); 875cf81f89dSMichael Halcrow if (rc) 876cf81f89dSMichael Halcrow printk(KERN_ERR "Failure whilst attempting to destroy crypto; " 877cf81f89dSMichael Halcrow "rc = [%d]\n", rc); 878624ae528STyler Hicks ecryptfs_release_messaging(); 879746f1e55SMichael Halcrow ecryptfs_destroy_kthread(); 880cf81f89dSMichael Halcrow do_sysfs_unregistration(); 881237fead6SMichael Halcrow unregister_filesystem(&ecryptfs_fs_type); 882237fead6SMichael Halcrow ecryptfs_free_kmem_caches(); 883237fead6SMichael Halcrow } 884237fead6SMichael Halcrow 885237fead6SMichael Halcrow MODULE_AUTHOR("Michael A. Halcrow <mhalcrow@us.ibm.com>"); 886237fead6SMichael Halcrow MODULE_DESCRIPTION("eCryptfs"); 887237fead6SMichael Halcrow 888237fead6SMichael Halcrow MODULE_LICENSE("GPL"); 889237fead6SMichael Halcrow 890237fead6SMichael Halcrow module_init(ecryptfs_init) 891237fead6SMichael Halcrow module_exit(ecryptfs_exit) 892