ecryptfs: string copy cleanup
[linux-2.6] / fs / ecryptfs / main.c
1 /**
2  * eCryptfs: Linux filesystem encryption layer
3  *
4  * Copyright (C) 1997-2003 Erez Zadok
5  * Copyright (C) 2001-2003 Stony Brook University
6  * Copyright (C) 2004-2007 International Business Machines Corp.
7  *   Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>
8  *              Michael C. Thompson <mcthomps@us.ibm.com>
9  *              Tyler Hicks <tyhicks@ou.edu>
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License as
13  * published by the Free Software Foundation; either version 2 of the
14  * License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful, but
17  * WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
24  * 02111-1307, USA.
25  */
26
27 #include <linux/dcache.h>
28 #include <linux/file.h>
29 #include <linux/module.h>
30 #include <linux/namei.h>
31 #include <linux/skbuff.h>
32 #include <linux/crypto.h>
33 #include <linux/netlink.h>
34 #include <linux/mount.h>
35 #include <linux/pagemap.h>
36 #include <linux/key.h>
37 #include <linux/parser.h>
38 #include <linux/fs_stack.h>
39 #include "ecryptfs_kernel.h"
40
41 /**
42  * Module parameter that defines the ecryptfs_verbosity level.
43  */
44 int ecryptfs_verbosity = 0;
45
46 module_param(ecryptfs_verbosity, int, 0);
47 MODULE_PARM_DESC(ecryptfs_verbosity,
48                  "Initial verbosity level (0 or 1; defaults to "
49                  "0, which is Quiet)");
50
51 /**
52  * Module parameter that defines the number of netlink message buffer
53  * elements
54  */
55 unsigned int ecryptfs_message_buf_len = ECRYPTFS_DEFAULT_MSG_CTX_ELEMS;
56
57 module_param(ecryptfs_message_buf_len, uint, 0);
58 MODULE_PARM_DESC(ecryptfs_message_buf_len,
59                  "Number of message buffer elements");
60
61 /**
62  * Module parameter that defines the maximum guaranteed amount of time to wait
63  * for a response through netlink.  The actual sleep time will be, more than
64  * likely, a small amount greater than this specified value, but only less if
65  * the netlink message successfully arrives.
66  */
67 signed long ecryptfs_message_wait_timeout = ECRYPTFS_MAX_MSG_CTX_TTL / HZ;
68
69 module_param(ecryptfs_message_wait_timeout, long, 0);
70 MODULE_PARM_DESC(ecryptfs_message_wait_timeout,
71                  "Maximum number of seconds that an operation will "
72                  "sleep while waiting for a message response from "
73                  "userspace");
74
75 /**
76  * Module parameter that is an estimate of the maximum number of users
77  * that will be concurrently using eCryptfs. Set this to the right
78  * value to balance performance and memory use.
79  */
80 unsigned int ecryptfs_number_of_users = ECRYPTFS_DEFAULT_NUM_USERS;
81
82 module_param(ecryptfs_number_of_users, uint, 0);
83 MODULE_PARM_DESC(ecryptfs_number_of_users, "An estimate of the number of "
84                  "concurrent users of eCryptfs");
85
86 unsigned int ecryptfs_transport = ECRYPTFS_DEFAULT_TRANSPORT;
87
88 void __ecryptfs_printk(const char *fmt, ...)
89 {
90         va_list args;
91         va_start(args, fmt);
92         if (fmt[1] == '7') { /* KERN_DEBUG */
93                 if (ecryptfs_verbosity >= 1)
94                         vprintk(fmt, args);
95         } else
96                 vprintk(fmt, args);
97         va_end(args);
98 }
99
100 /**
101  * ecryptfs_init_persistent_file
102  * @ecryptfs_dentry: Fully initialized eCryptfs dentry object, with
103  *                   the lower dentry and the lower mount set
104  *
105  * eCryptfs only ever keeps a single open file for every lower
106  * inode. All I/O operations to the lower inode occur through that
107  * file. When the first eCryptfs dentry that interposes with the first
108  * lower dentry for that inode is created, this function creates the
109  * persistent file struct and associates it with the eCryptfs
110  * inode. When the eCryptfs inode is destroyed, the file is closed.
111  *
112  * The persistent file will be opened with read/write permissions, if
113  * possible. Otherwise, it is opened read-only.
114  *
115  * This function does nothing if a lower persistent file is already
116  * associated with the eCryptfs inode.
117  *
118  * Returns zero on success; non-zero otherwise
119  */
120 static int ecryptfs_init_persistent_file(struct dentry *ecryptfs_dentry)
121 {
122         struct ecryptfs_inode_info *inode_info =
123                 ecryptfs_inode_to_private(ecryptfs_dentry->d_inode);
124         int rc = 0;
125
126         mutex_lock(&inode_info->lower_file_mutex);
127         if (!inode_info->lower_file) {
128                 struct dentry *lower_dentry;
129                 struct vfsmount *lower_mnt =
130                         ecryptfs_dentry_to_lower_mnt(ecryptfs_dentry);
131
132                 lower_dentry = ecryptfs_dentry_to_lower(ecryptfs_dentry);
133                 rc = ecryptfs_privileged_open(&inode_info->lower_file,
134                                                      lower_dentry, lower_mnt);
135                 if (rc || IS_ERR(inode_info->lower_file)) {
136                         printk(KERN_ERR "Error opening lower persistent file "
137                                "for lower_dentry [0x%p] and lower_mnt [0x%p]; "
138                                "rc = [%d]\n", lower_dentry, lower_mnt, rc);
139                         rc = PTR_ERR(inode_info->lower_file);
140                         inode_info->lower_file = NULL;
141                 }
142         }
143         mutex_unlock(&inode_info->lower_file_mutex);
144         return rc;
145 }
146
147 /**
148  * ecryptfs_interpose
149  * @lower_dentry: Existing dentry in the lower filesystem
150  * @dentry: ecryptfs' dentry
151  * @sb: ecryptfs's super_block
152  * @flag: If set to true, then d_add is called, else d_instantiate is called
153  *
154  * Interposes upper and lower dentries.
155  *
156  * Returns zero on success; non-zero otherwise
157  */
158 int ecryptfs_interpose(struct dentry *lower_dentry, struct dentry *dentry,
159                        struct super_block *sb, int flag)
160 {
161         struct inode *lower_inode;
162         struct inode *inode;
163         int rc = 0;
164
165         lower_inode = lower_dentry->d_inode;
166         if (lower_inode->i_sb != ecryptfs_superblock_to_lower(sb)) {
167                 rc = -EXDEV;
168                 goto out;
169         }
170         if (!igrab(lower_inode)) {
171                 rc = -ESTALE;
172                 goto out;
173         }
174         inode = iget5_locked(sb, (unsigned long)lower_inode,
175                              ecryptfs_inode_test, ecryptfs_inode_set,
176                              lower_inode);
177         if (!inode) {
178                 rc = -EACCES;
179                 iput(lower_inode);
180                 goto out;
181         }
182         if (inode->i_state & I_NEW)
183                 unlock_new_inode(inode);
184         else
185                 iput(lower_inode);
186         if (S_ISLNK(lower_inode->i_mode))
187                 inode->i_op = &ecryptfs_symlink_iops;
188         else if (S_ISDIR(lower_inode->i_mode))
189                 inode->i_op = &ecryptfs_dir_iops;
190         if (S_ISDIR(lower_inode->i_mode))
191                 inode->i_fop = &ecryptfs_dir_fops;
192         if (special_file(lower_inode->i_mode))
193                 init_special_inode(inode, lower_inode->i_mode,
194                                    lower_inode->i_rdev);
195         dentry->d_op = &ecryptfs_dops;
196         if (flag)
197                 d_add(dentry, inode);
198         else
199                 d_instantiate(dentry, inode);
200         fsstack_copy_attr_all(inode, lower_inode, NULL);
201         /* This size will be overwritten for real files w/ headers and
202          * other metadata */
203         fsstack_copy_inode_size(inode, lower_inode);
204         rc = ecryptfs_init_persistent_file(dentry);
205         if (rc) {
206                 printk(KERN_ERR "%s: Error attempting to initialize the "
207                        "persistent file for the dentry with name [%s]; "
208                        "rc = [%d]\n", __func__, dentry->d_name.name, rc);
209                 goto out;
210         }
211 out:
212         return rc;
213 }
214
215 enum { ecryptfs_opt_sig, ecryptfs_opt_ecryptfs_sig,
216        ecryptfs_opt_cipher, ecryptfs_opt_ecryptfs_cipher,
217        ecryptfs_opt_ecryptfs_key_bytes,
218        ecryptfs_opt_passthrough, ecryptfs_opt_xattr_metadata,
219        ecryptfs_opt_encrypted_view, ecryptfs_opt_err };
220
221 static match_table_t tokens = {
222         {ecryptfs_opt_sig, "sig=%s"},
223         {ecryptfs_opt_ecryptfs_sig, "ecryptfs_sig=%s"},
224         {ecryptfs_opt_cipher, "cipher=%s"},
225         {ecryptfs_opt_ecryptfs_cipher, "ecryptfs_cipher=%s"},
226         {ecryptfs_opt_ecryptfs_key_bytes, "ecryptfs_key_bytes=%u"},
227         {ecryptfs_opt_passthrough, "ecryptfs_passthrough"},
228         {ecryptfs_opt_xattr_metadata, "ecryptfs_xattr_metadata"},
229         {ecryptfs_opt_encrypted_view, "ecryptfs_encrypted_view"},
230         {ecryptfs_opt_err, NULL}
231 };
232
233 static int ecryptfs_init_global_auth_toks(
234         struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
235 {
236         struct ecryptfs_global_auth_tok *global_auth_tok;
237         int rc = 0;
238
239         list_for_each_entry(global_auth_tok,
240                             &mount_crypt_stat->global_auth_tok_list,
241                             mount_crypt_stat_list) {
242                 rc = ecryptfs_keyring_auth_tok_for_sig(
243                         &global_auth_tok->global_auth_tok_key,
244                         &global_auth_tok->global_auth_tok,
245                         global_auth_tok->sig);
246                 if (rc) {
247                         printk(KERN_ERR "Could not find valid key in user "
248                                "session keyring for sig specified in mount "
249                                "option: [%s]\n", global_auth_tok->sig);
250                         global_auth_tok->flags |= ECRYPTFS_AUTH_TOK_INVALID;
251                         goto out;
252                 } else
253                         global_auth_tok->flags &= ~ECRYPTFS_AUTH_TOK_INVALID;
254         }
255 out:
256         return rc;
257 }
258
259 static void ecryptfs_init_mount_crypt_stat(
260         struct ecryptfs_mount_crypt_stat *mount_crypt_stat)
261 {
262         memset((void *)mount_crypt_stat, 0,
263                sizeof(struct ecryptfs_mount_crypt_stat));
264         INIT_LIST_HEAD(&mount_crypt_stat->global_auth_tok_list);
265         mutex_init(&mount_crypt_stat->global_auth_tok_list_mutex);
266         mount_crypt_stat->flags |= ECRYPTFS_MOUNT_CRYPT_STAT_INITIALIZED;
267 }
268
269 /**
270  * ecryptfs_parse_options
271  * @sb: The ecryptfs super block
272  * @options: The options pased to the kernel
273  *
274  * Parse mount options:
275  * debug=N         - ecryptfs_verbosity level for debug output
276  * sig=XXX         - description(signature) of the key to use
277  *
278  * Returns the dentry object of the lower-level (lower/interposed)
279  * directory; We want to mount our stackable file system on top of
280  * that lower directory.
281  *
282  * The signature of the key to use must be the description of a key
283  * already in the keyring. Mounting will fail if the key can not be
284  * found.
285  *
286  * Returns zero on success; non-zero on error
287  */
288 static int ecryptfs_parse_options(struct super_block *sb, char *options)
289 {
290         char *p;
291         int rc = 0;
292         int sig_set = 0;
293         int cipher_name_set = 0;
294         int cipher_key_bytes;
295         int cipher_key_bytes_set = 0;
296         struct ecryptfs_mount_crypt_stat *mount_crypt_stat =
297                 &ecryptfs_superblock_to_private(sb)->mount_crypt_stat;
298         substring_t args[MAX_OPT_ARGS];
299         int token;
300         char *sig_src;
301         char *cipher_name_dst;
302         char *cipher_name_src;
303         char *cipher_key_bytes_src;
304
305         if (!options) {
306                 rc = -EINVAL;
307                 goto out;
308         }
309         ecryptfs_init_mount_crypt_stat(mount_crypt_stat);
310         while ((p = strsep(&options, ",")) != NULL) {
311                 if (!*p)
312                         continue;
313                 token = match_token(p, tokens, args);
314                 switch (token) {
315                 case ecryptfs_opt_sig:
316                 case ecryptfs_opt_ecryptfs_sig:
317                         sig_src = args[0].from;
318                         rc = ecryptfs_add_global_auth_tok(mount_crypt_stat,
319                                                           sig_src);
320                         if (rc) {
321                                 printk(KERN_ERR "Error attempting to register "
322                                        "global sig; rc = [%d]\n", rc);
323                                 goto out;
324                         }
325                         sig_set = 1;
326                         break;
327                 case ecryptfs_opt_cipher:
328                 case ecryptfs_opt_ecryptfs_cipher:
329                         cipher_name_src = args[0].from;
330                         cipher_name_dst =
331                                 mount_crypt_stat->
332                                 global_default_cipher_name;
333                         strncpy(cipher_name_dst, cipher_name_src,
334                                 ECRYPTFS_MAX_CIPHER_NAME_SIZE);
335                         ecryptfs_printk(KERN_DEBUG,
336                                         "The mount_crypt_stat "
337                                         "global_default_cipher_name set to: "
338                                         "[%s]\n", cipher_name_dst);
339                         cipher_name_set = 1;
340                         break;
341                 case ecryptfs_opt_ecryptfs_key_bytes:
342                         cipher_key_bytes_src = args[0].from;
343                         cipher_key_bytes =
344                                 (int)simple_strtol(cipher_key_bytes_src,
345                                                    &cipher_key_bytes_src, 0);
346                         mount_crypt_stat->global_default_cipher_key_size =
347                                 cipher_key_bytes;
348                         ecryptfs_printk(KERN_DEBUG,
349                                         "The mount_crypt_stat "
350                                         "global_default_cipher_key_size "
351                                         "set to: [%d]\n", mount_crypt_stat->
352                                         global_default_cipher_key_size);
353                         cipher_key_bytes_set = 1;
354                         break;
355                 case ecryptfs_opt_passthrough:
356                         mount_crypt_stat->flags |=
357                                 ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED;
358                         break;
359                 case ecryptfs_opt_xattr_metadata:
360                         mount_crypt_stat->flags |=
361                                 ECRYPTFS_XATTR_METADATA_ENABLED;
362                         break;
363                 case ecryptfs_opt_encrypted_view:
364                         mount_crypt_stat->flags |=
365                                 ECRYPTFS_XATTR_METADATA_ENABLED;
366                         mount_crypt_stat->flags |=
367                                 ECRYPTFS_ENCRYPTED_VIEW_ENABLED;
368                         break;
369                 case ecryptfs_opt_err:
370                 default:
371                         ecryptfs_printk(KERN_WARNING,
372                                         "eCryptfs: unrecognized option '%s'\n",
373                                         p);
374                 }
375         }
376         if (!sig_set) {
377                 rc = -EINVAL;
378                 ecryptfs_printk(KERN_ERR, "You must supply at least one valid "
379                                 "auth tok signature as a mount "
380                                 "parameter; see the eCryptfs README\n");
381                 goto out;
382         }
383         if (!cipher_name_set) {
384                 int cipher_name_len = strlen(ECRYPTFS_DEFAULT_CIPHER);
385
386                 BUG_ON(cipher_name_len >= ECRYPTFS_MAX_CIPHER_NAME_SIZE);
387
388                 strcpy(mount_crypt_stat->global_default_cipher_name,
389                        ECRYPTFS_DEFAULT_CIPHER);
390         }
391         if (!cipher_key_bytes_set) {
392                 mount_crypt_stat->global_default_cipher_key_size = 0;
393         }
394         mutex_lock(&key_tfm_list_mutex);
395         if (!ecryptfs_tfm_exists(mount_crypt_stat->global_default_cipher_name,
396                                  NULL))
397                 rc = ecryptfs_add_new_key_tfm(
398                         NULL, mount_crypt_stat->global_default_cipher_name,
399                         mount_crypt_stat->global_default_cipher_key_size);
400         mutex_unlock(&key_tfm_list_mutex);
401         if (rc) {
402                 printk(KERN_ERR "Error attempting to initialize cipher with "
403                        "name = [%s] and key size = [%td]; rc = [%d]\n",
404                        mount_crypt_stat->global_default_cipher_name,
405                        mount_crypt_stat->global_default_cipher_key_size, rc);
406                 rc = -EINVAL;
407                 goto out;
408         }
409         rc = ecryptfs_init_global_auth_toks(mount_crypt_stat);
410         if (rc) {
411                 printk(KERN_WARNING "One or more global auth toks could not "
412                        "properly register; rc = [%d]\n", rc);
413         }
414 out:
415         return rc;
416 }
417
418 struct kmem_cache *ecryptfs_sb_info_cache;
419
420 /**
421  * ecryptfs_fill_super
422  * @sb: The ecryptfs super block
423  * @raw_data: The options passed to mount
424  * @silent: Not used but required by function prototype
425  *
426  * Sets up what we can of the sb, rest is done in ecryptfs_read_super
427  *
428  * Returns zero on success; non-zero otherwise
429  */
430 static int
431 ecryptfs_fill_super(struct super_block *sb, void *raw_data, int silent)
432 {
433         int rc = 0;
434
435         /* Released in ecryptfs_put_super() */
436         ecryptfs_set_superblock_private(sb,
437                                         kmem_cache_zalloc(ecryptfs_sb_info_cache,
438                                                          GFP_KERNEL));
439         if (!ecryptfs_superblock_to_private(sb)) {
440                 ecryptfs_printk(KERN_WARNING, "Out of memory\n");
441                 rc = -ENOMEM;
442                 goto out;
443         }
444         sb->s_op = &ecryptfs_sops;
445         /* Released through deactivate_super(sb) from get_sb_nodev */
446         sb->s_root = d_alloc(NULL, &(const struct qstr) {
447                              .hash = 0,.name = "/",.len = 1});
448         if (!sb->s_root) {
449                 ecryptfs_printk(KERN_ERR, "d_alloc failed\n");
450                 rc = -ENOMEM;
451                 goto out;
452         }
453         sb->s_root->d_op = &ecryptfs_dops;
454         sb->s_root->d_sb = sb;
455         sb->s_root->d_parent = sb->s_root;
456         /* Released in d_release when dput(sb->s_root) is called */
457         /* through deactivate_super(sb) from get_sb_nodev() */
458         ecryptfs_set_dentry_private(sb->s_root,
459                                     kmem_cache_zalloc(ecryptfs_dentry_info_cache,
460                                                      GFP_KERNEL));
461         if (!ecryptfs_dentry_to_private(sb->s_root)) {
462                 ecryptfs_printk(KERN_ERR,
463                                 "dentry_info_cache alloc failed\n");
464                 rc = -ENOMEM;
465                 goto out;
466         }
467         rc = 0;
468 out:
469         /* Should be able to rely on deactivate_super called from
470          * get_sb_nodev */
471         return rc;
472 }
473
474 /**
475  * ecryptfs_read_super
476  * @sb: The ecryptfs super block
477  * @dev_name: The path to mount over
478  *
479  * Read the super block of the lower filesystem, and use
480  * ecryptfs_interpose to create our initial inode and super block
481  * struct.
482  */
483 static int ecryptfs_read_super(struct super_block *sb, const char *dev_name)
484 {
485         int rc;
486         struct nameidata nd;
487         struct dentry *lower_root;
488         struct vfsmount *lower_mnt;
489
490         memset(&nd, 0, sizeof(struct nameidata));
491         rc = path_lookup(dev_name, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, &nd);
492         if (rc) {
493                 ecryptfs_printk(KERN_WARNING, "path_lookup() failed\n");
494                 goto out;
495         }
496         lower_root = nd.path.dentry;
497         lower_mnt = nd.path.mnt;
498         ecryptfs_set_superblock_lower(sb, lower_root->d_sb);
499         sb->s_maxbytes = lower_root->d_sb->s_maxbytes;
500         sb->s_blocksize = lower_root->d_sb->s_blocksize;
501         ecryptfs_set_dentry_lower(sb->s_root, lower_root);
502         ecryptfs_set_dentry_lower_mnt(sb->s_root, lower_mnt);
503         rc = ecryptfs_interpose(lower_root, sb->s_root, sb, 0);
504         if (rc)
505                 goto out_free;
506         rc = 0;
507         goto out;
508 out_free:
509         path_put(&nd.path);
510 out:
511         return rc;
512 }
513
514 /**
515  * ecryptfs_get_sb
516  * @fs_type
517  * @flags
518  * @dev_name: The path to mount over
519  * @raw_data: The options passed into the kernel
520  *
521  * The whole ecryptfs_get_sb process is broken into 4 functions:
522  * ecryptfs_parse_options(): handle options passed to ecryptfs, if any
523  * ecryptfs_fill_super(): used by get_sb_nodev, fills out the super_block
524  *                        with as much information as it can before needing
525  *                        the lower filesystem.
526  * ecryptfs_read_super(): this accesses the lower filesystem and uses
527  *                        ecryptfs_interpolate to perform most of the linking
528  * ecryptfs_interpolate(): links the lower filesystem into ecryptfs
529  */
530 static int ecryptfs_get_sb(struct file_system_type *fs_type, int flags,
531                         const char *dev_name, void *raw_data,
532                         struct vfsmount *mnt)
533 {
534         int rc;
535         struct super_block *sb;
536
537         rc = get_sb_nodev(fs_type, flags, raw_data, ecryptfs_fill_super, mnt);
538         if (rc < 0) {
539                 printk(KERN_ERR "Getting sb failed; rc = [%d]\n", rc);
540                 goto out;
541         }
542         sb = mnt->mnt_sb;
543         rc = ecryptfs_parse_options(sb, raw_data);
544         if (rc) {
545                 printk(KERN_ERR "Error parsing options; rc = [%d]\n", rc);
546                 goto out_abort;
547         }
548         rc = ecryptfs_read_super(sb, dev_name);
549         if (rc) {
550                 printk(KERN_ERR "Reading sb failed; rc = [%d]\n", rc);
551                 goto out_abort;
552         }
553         goto out;
554 out_abort:
555         dput(sb->s_root);
556         up_write(&sb->s_umount);
557         deactivate_super(sb);
558 out:
559         return rc;
560 }
561
562 /**
563  * ecryptfs_kill_block_super
564  * @sb: The ecryptfs super block
565  *
566  * Used to bring the superblock down and free the private data.
567  * Private data is free'd in ecryptfs_put_super()
568  */
569 static void ecryptfs_kill_block_super(struct super_block *sb)
570 {
571         generic_shutdown_super(sb);
572 }
573
574 static struct file_system_type ecryptfs_fs_type = {
575         .owner = THIS_MODULE,
576         .name = "ecryptfs",
577         .get_sb = ecryptfs_get_sb,
578         .kill_sb = ecryptfs_kill_block_super,
579         .fs_flags = 0
580 };
581
582 /**
583  * inode_info_init_once
584  *
585  * Initializes the ecryptfs_inode_info_cache when it is created
586  */
587 static void
588 inode_info_init_once(struct kmem_cache *cachep, void *vptr)
589 {
590         struct ecryptfs_inode_info *ei = (struct ecryptfs_inode_info *)vptr;
591
592         inode_init_once(&ei->vfs_inode);
593 }
594
595 static struct ecryptfs_cache_info {
596         struct kmem_cache **cache;
597         const char *name;
598         size_t size;
599         void (*ctor)(struct kmem_cache *cache, void *obj);
600 } ecryptfs_cache_infos[] = {
601         {
602                 .cache = &ecryptfs_auth_tok_list_item_cache,
603                 .name = "ecryptfs_auth_tok_list_item",
604                 .size = sizeof(struct ecryptfs_auth_tok_list_item),
605         },
606         {
607                 .cache = &ecryptfs_file_info_cache,
608                 .name = "ecryptfs_file_cache",
609                 .size = sizeof(struct ecryptfs_file_info),
610         },
611         {
612                 .cache = &ecryptfs_dentry_info_cache,
613                 .name = "ecryptfs_dentry_info_cache",
614                 .size = sizeof(struct ecryptfs_dentry_info),
615         },
616         {
617                 .cache = &ecryptfs_inode_info_cache,
618                 .name = "ecryptfs_inode_cache",
619                 .size = sizeof(struct ecryptfs_inode_info),
620                 .ctor = inode_info_init_once,
621         },
622         {
623                 .cache = &ecryptfs_sb_info_cache,
624                 .name = "ecryptfs_sb_cache",
625                 .size = sizeof(struct ecryptfs_sb_info),
626         },
627         {
628                 .cache = &ecryptfs_header_cache_1,
629                 .name = "ecryptfs_headers_1",
630                 .size = PAGE_CACHE_SIZE,
631         },
632         {
633                 .cache = &ecryptfs_header_cache_2,
634                 .name = "ecryptfs_headers_2",
635                 .size = PAGE_CACHE_SIZE,
636         },
637         {
638                 .cache = &ecryptfs_xattr_cache,
639                 .name = "ecryptfs_xattr_cache",
640                 .size = PAGE_CACHE_SIZE,
641         },
642         {
643                 .cache = &ecryptfs_key_record_cache,
644                 .name = "ecryptfs_key_record_cache",
645                 .size = sizeof(struct ecryptfs_key_record),
646         },
647         {
648                 .cache = &ecryptfs_key_sig_cache,
649                 .name = "ecryptfs_key_sig_cache",
650                 .size = sizeof(struct ecryptfs_key_sig),
651         },
652         {
653                 .cache = &ecryptfs_global_auth_tok_cache,
654                 .name = "ecryptfs_global_auth_tok_cache",
655                 .size = sizeof(struct ecryptfs_global_auth_tok),
656         },
657         {
658                 .cache = &ecryptfs_key_tfm_cache,
659                 .name = "ecryptfs_key_tfm_cache",
660                 .size = sizeof(struct ecryptfs_key_tfm),
661         },
662         {
663                 .cache = &ecryptfs_open_req_cache,
664                 .name = "ecryptfs_open_req_cache",
665                 .size = sizeof(struct ecryptfs_open_req),
666         },
667 };
668
669 static void ecryptfs_free_kmem_caches(void)
670 {
671         int i;
672
673         for (i = 0; i < ARRAY_SIZE(ecryptfs_cache_infos); i++) {
674                 struct ecryptfs_cache_info *info;
675
676                 info = &ecryptfs_cache_infos[i];
677                 if (*(info->cache))
678                         kmem_cache_destroy(*(info->cache));
679         }
680 }
681
682 /**
683  * ecryptfs_init_kmem_caches
684  *
685  * Returns zero on success; non-zero otherwise
686  */
687 static int ecryptfs_init_kmem_caches(void)
688 {
689         int i;
690
691         for (i = 0; i < ARRAY_SIZE(ecryptfs_cache_infos); i++) {
692                 struct ecryptfs_cache_info *info;
693
694                 info = &ecryptfs_cache_infos[i];
695                 *(info->cache) = kmem_cache_create(info->name, info->size,
696                                 0, SLAB_HWCACHE_ALIGN, info->ctor);
697                 if (!*(info->cache)) {
698                         ecryptfs_free_kmem_caches();
699                         ecryptfs_printk(KERN_WARNING, "%s: "
700                                         "kmem_cache_create failed\n",
701                                         info->name);
702                         return -ENOMEM;
703                 }
704         }
705         return 0;
706 }
707
708 static struct kobject *ecryptfs_kobj;
709
710 static ssize_t version_show(struct kobject *kobj,
711                             struct kobj_attribute *attr, char *buff)
712 {
713         return snprintf(buff, PAGE_SIZE, "%d\n", ECRYPTFS_VERSIONING_MASK);
714 }
715
716 static struct kobj_attribute version_attr = __ATTR_RO(version);
717
718 static struct attribute *attributes[] = {
719         &version_attr.attr,
720         NULL,
721 };
722
723 static struct attribute_group attr_group = {
724         .attrs = attributes,
725 };
726
727 static int do_sysfs_registration(void)
728 {
729         int rc;
730
731         ecryptfs_kobj = kobject_create_and_add("ecryptfs", fs_kobj);
732         if (!ecryptfs_kobj) {
733                 printk(KERN_ERR "Unable to create ecryptfs kset\n");
734                 rc = -ENOMEM;
735                 goto out;
736         }
737         rc = sysfs_create_group(ecryptfs_kobj, &attr_group);
738         if (rc) {
739                 printk(KERN_ERR
740                        "Unable to create ecryptfs version attributes\n");
741                 kobject_put(ecryptfs_kobj);
742         }
743 out:
744         return rc;
745 }
746
747 static void do_sysfs_unregistration(void)
748 {
749         sysfs_remove_group(ecryptfs_kobj, &attr_group);
750         kobject_put(ecryptfs_kobj);
751 }
752
753 static int __init ecryptfs_init(void)
754 {
755         int rc;
756
757         if (ECRYPTFS_DEFAULT_EXTENT_SIZE > PAGE_CACHE_SIZE) {
758                 rc = -EINVAL;
759                 ecryptfs_printk(KERN_ERR, "The eCryptfs extent size is "
760                                 "larger than the host's page size, and so "
761                                 "eCryptfs cannot run on this system. The "
762                                 "default eCryptfs extent size is [%d] bytes; "
763                                 "the page size is [%d] bytes.\n",
764                                 ECRYPTFS_DEFAULT_EXTENT_SIZE, PAGE_CACHE_SIZE);
765                 goto out;
766         }
767         rc = ecryptfs_init_kmem_caches();
768         if (rc) {
769                 printk(KERN_ERR
770                        "Failed to allocate one or more kmem_cache objects\n");
771                 goto out;
772         }
773         rc = register_filesystem(&ecryptfs_fs_type);
774         if (rc) {
775                 printk(KERN_ERR "Failed to register filesystem\n");
776                 goto out_free_kmem_caches;
777         }
778         rc = do_sysfs_registration();
779         if (rc) {
780                 printk(KERN_ERR "sysfs registration failed\n");
781                 goto out_unregister_filesystem;
782         }
783         rc = ecryptfs_init_kthread();
784         if (rc) {
785                 printk(KERN_ERR "%s: kthread initialization failed; "
786                        "rc = [%d]\n", __func__, rc);
787                 goto out_do_sysfs_unregistration;
788         }
789         rc = ecryptfs_init_messaging(ecryptfs_transport);
790         if (rc) {
791                 printk(KERN_ERR "Failure occured while attempting to "
792                                 "initialize the eCryptfs netlink socket\n");
793                 goto out_destroy_kthread;
794         }
795         rc = ecryptfs_init_crypto();
796         if (rc) {
797                 printk(KERN_ERR "Failure whilst attempting to init crypto; "
798                        "rc = [%d]\n", rc);
799                 goto out_release_messaging;
800         }
801         if (ecryptfs_verbosity > 0)
802                 printk(KERN_CRIT "eCryptfs verbosity set to %d. Secret values "
803                         "will be written to the syslog!\n", ecryptfs_verbosity);
804
805         goto out;
806 out_release_messaging:
807         ecryptfs_release_messaging(ecryptfs_transport);
808 out_destroy_kthread:
809         ecryptfs_destroy_kthread();
810 out_do_sysfs_unregistration:
811         do_sysfs_unregistration();
812 out_unregister_filesystem:
813         unregister_filesystem(&ecryptfs_fs_type);
814 out_free_kmem_caches:
815         ecryptfs_free_kmem_caches();
816 out:
817         return rc;
818 }
819
820 static void __exit ecryptfs_exit(void)
821 {
822         int rc;
823
824         rc = ecryptfs_destroy_crypto();
825         if (rc)
826                 printk(KERN_ERR "Failure whilst attempting to destroy crypto; "
827                        "rc = [%d]\n", rc);
828         ecryptfs_release_messaging(ecryptfs_transport);
829         ecryptfs_destroy_kthread();
830         do_sysfs_unregistration();
831         unregister_filesystem(&ecryptfs_fs_type);
832         ecryptfs_free_kmem_caches();
833 }
834
835 MODULE_AUTHOR("Michael A. Halcrow <mhalcrow@us.ibm.com>");
836 MODULE_DESCRIPTION("eCryptfs");
837
838 MODULE_LICENSE("GPL");
839
840 module_init(ecryptfs_init)
841 module_exit(ecryptfs_exit)