2 * eCryptfs: Linux filesystem encryption layer
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>
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.
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.
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
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/dcache.h>
36 #include <linux/pagemap.h>
37 #include <linux/key.h>
38 #include <linux/parser.h>
39 #include <linux/fs_stack.h>
40 #include "ecryptfs_kernel.h"
43 * Module parameter that defines the ecryptfs_verbosity level.
45 int ecryptfs_verbosity
= 0;
47 module_param(ecryptfs_verbosity
, int, 0);
48 MODULE_PARM_DESC(ecryptfs_verbosity
,
49 "Initial verbosity level (0 or 1; defaults to "
50 "0, which is Quiet)");
53 * Module parameter that defines the number of netlink message buffer
56 unsigned int ecryptfs_message_buf_len
= ECRYPTFS_DEFAULT_MSG_CTX_ELEMS
;
58 module_param(ecryptfs_message_buf_len
, uint
, 0);
59 MODULE_PARM_DESC(ecryptfs_message_buf_len
,
60 "Number of message buffer elements");
63 * Module parameter that defines the maximum guaranteed amount of time to wait
64 * for a response through netlink. The actual sleep time will be, more than
65 * likely, a small amount greater than this specified value, but only less if
66 * the netlink message successfully arrives.
68 signed long ecryptfs_message_wait_timeout
= ECRYPTFS_MAX_MSG_CTX_TTL
/ HZ
;
70 module_param(ecryptfs_message_wait_timeout
, long, 0);
71 MODULE_PARM_DESC(ecryptfs_message_wait_timeout
,
72 "Maximum number of seconds that an operation will "
73 "sleep while waiting for a message response from "
77 * Module parameter that is an estimate of the maximum number of users
78 * that will be concurrently using eCryptfs. Set this to the right
79 * value to balance performance and memory use.
81 unsigned int ecryptfs_number_of_users
= ECRYPTFS_DEFAULT_NUM_USERS
;
83 module_param(ecryptfs_number_of_users
, uint
, 0);
84 MODULE_PARM_DESC(ecryptfs_number_of_users
, "An estimate of the number of "
85 "concurrent users of eCryptfs");
87 unsigned int ecryptfs_transport
= ECRYPTFS_DEFAULT_TRANSPORT
;
89 void __ecryptfs_printk(const char *fmt
, ...)
93 if (fmt
[1] == '7') { /* KERN_DEBUG */
94 if (ecryptfs_verbosity
>= 1)
103 * @lower_dentry: Existing dentry in the lower filesystem
104 * @dentry: ecryptfs' dentry
105 * @sb: ecryptfs's super_block
106 * @flag: If set to true, then d_add is called, else d_instantiate is called
108 * Interposes upper and lower dentries.
110 * Returns zero on success; non-zero otherwise
112 int ecryptfs_interpose(struct dentry
*lower_dentry
, struct dentry
*dentry
,
113 struct super_block
*sb
, int flag
)
115 struct inode
*lower_inode
;
119 lower_inode
= lower_dentry
->d_inode
;
120 if (lower_inode
->i_sb
!= ecryptfs_superblock_to_lower(sb
)) {
124 if (!igrab(lower_inode
)) {
128 inode
= iget5_locked(sb
, (unsigned long)lower_inode
,
129 ecryptfs_inode_test
, ecryptfs_inode_set
,
136 if (inode
->i_state
& I_NEW
)
137 unlock_new_inode(inode
);
140 if (S_ISLNK(lower_inode
->i_mode
))
141 inode
->i_op
= &ecryptfs_symlink_iops
;
142 else if (S_ISDIR(lower_inode
->i_mode
))
143 inode
->i_op
= &ecryptfs_dir_iops
;
144 if (S_ISDIR(lower_inode
->i_mode
))
145 inode
->i_fop
= &ecryptfs_dir_fops
;
146 if (special_file(lower_inode
->i_mode
))
147 init_special_inode(inode
, lower_inode
->i_mode
,
148 lower_inode
->i_rdev
);
149 dentry
->d_op
= &ecryptfs_dops
;
151 d_add(dentry
, inode
);
153 d_instantiate(dentry
, inode
);
154 fsstack_copy_attr_all(inode
, lower_inode
, NULL
);
155 /* This size will be overwritten for real files w/ headers and
157 fsstack_copy_inode_size(inode
, lower_inode
);
162 enum { ecryptfs_opt_sig
, ecryptfs_opt_ecryptfs_sig
, ecryptfs_opt_debug
,
163 ecryptfs_opt_ecryptfs_debug
, ecryptfs_opt_cipher
,
164 ecryptfs_opt_ecryptfs_cipher
, ecryptfs_opt_ecryptfs_key_bytes
,
165 ecryptfs_opt_passthrough
, ecryptfs_opt_xattr_metadata
,
166 ecryptfs_opt_encrypted_view
, ecryptfs_opt_err
};
168 static match_table_t tokens
= {
169 {ecryptfs_opt_sig
, "sig=%s"},
170 {ecryptfs_opt_ecryptfs_sig
, "ecryptfs_sig=%s"},
171 {ecryptfs_opt_debug
, "debug=%u"},
172 {ecryptfs_opt_ecryptfs_debug
, "ecryptfs_debug=%u"},
173 {ecryptfs_opt_cipher
, "cipher=%s"},
174 {ecryptfs_opt_ecryptfs_cipher
, "ecryptfs_cipher=%s"},
175 {ecryptfs_opt_ecryptfs_key_bytes
, "ecryptfs_key_bytes=%u"},
176 {ecryptfs_opt_passthrough
, "ecryptfs_passthrough"},
177 {ecryptfs_opt_xattr_metadata
, "ecryptfs_xattr_metadata"},
178 {ecryptfs_opt_encrypted_view
, "ecryptfs_encrypted_view"},
179 {ecryptfs_opt_err
, NULL
}
183 * ecryptfs_verify_version
184 * @version: The version number to confirm
186 * Returns zero on good version; non-zero otherwise
188 static int ecryptfs_verify_version(u16 version
)
194 major
= ((version
>> 8) & 0xFF);
195 minor
= (version
& 0xFF);
196 if (major
!= ECRYPTFS_VERSION_MAJOR
) {
197 ecryptfs_printk(KERN_ERR
, "Major version number mismatch. "
198 "Expected [%d]; got [%d]\n",
199 ECRYPTFS_VERSION_MAJOR
, major
);
203 if (minor
!= ECRYPTFS_VERSION_MINOR
) {
204 ecryptfs_printk(KERN_ERR
, "Minor version number mismatch. "
205 "Expected [%d]; got [%d]\n",
206 ECRYPTFS_VERSION_MINOR
, minor
);
215 * ecryptfs_parse_options
216 * @sb: The ecryptfs super block
217 * @options: The options pased to the kernel
219 * Parse mount options:
220 * debug=N - ecryptfs_verbosity level for debug output
221 * sig=XXX - description(signature) of the key to use
223 * Returns the dentry object of the lower-level (lower/interposed)
224 * directory; We want to mount our stackable file system on top of
225 * that lower directory.
227 * The signature of the key to use must be the description of a key
228 * already in the keyring. Mounting will fail if the key can not be
231 * Returns zero on success; non-zero on error
233 static int ecryptfs_parse_options(struct super_block
*sb
, char *options
)
238 int cipher_name_set
= 0;
239 int cipher_key_bytes
;
240 int cipher_key_bytes_set
= 0;
241 struct key
*auth_tok_key
= NULL
;
242 struct ecryptfs_auth_tok
*auth_tok
= NULL
;
243 struct ecryptfs_mount_crypt_stat
*mount_crypt_stat
=
244 &ecryptfs_superblock_to_private(sb
)->mount_crypt_stat
;
245 substring_t args
[MAX_OPT_ARGS
];
250 char *cipher_name_dst
;
251 char *cipher_name_src
;
252 char *cipher_key_bytes_src
;
259 while ((p
= strsep(&options
, ",")) != NULL
) {
262 token
= match_token(p
, tokens
, args
);
264 case ecryptfs_opt_sig
:
265 case ecryptfs_opt_ecryptfs_sig
:
266 sig_src
= args
[0].from
;
268 mount_crypt_stat
->global_auth_tok_sig
;
269 memcpy(sig_dst
, sig_src
, ECRYPTFS_SIG_SIZE_HEX
);
270 sig_dst
[ECRYPTFS_SIG_SIZE_HEX
] = '\0';
271 ecryptfs_printk(KERN_DEBUG
,
272 "The mount_crypt_stat "
273 "global_auth_tok_sig set to: "
277 case ecryptfs_opt_debug
:
278 case ecryptfs_opt_ecryptfs_debug
:
279 debug_src
= args
[0].from
;
281 (int)simple_strtol(debug_src
, &debug_src
,
283 ecryptfs_printk(KERN_DEBUG
,
284 "Verbosity set to [%d]" "\n",
287 case ecryptfs_opt_cipher
:
288 case ecryptfs_opt_ecryptfs_cipher
:
289 cipher_name_src
= args
[0].from
;
292 global_default_cipher_name
;
293 strncpy(cipher_name_dst
, cipher_name_src
,
294 ECRYPTFS_MAX_CIPHER_NAME_SIZE
);
295 ecryptfs_printk(KERN_DEBUG
,
296 "The mount_crypt_stat "
297 "global_default_cipher_name set to: "
298 "[%s]\n", cipher_name_dst
);
301 case ecryptfs_opt_ecryptfs_key_bytes
:
302 cipher_key_bytes_src
= args
[0].from
;
304 (int)simple_strtol(cipher_key_bytes_src
,
305 &cipher_key_bytes_src
, 0);
306 mount_crypt_stat
->global_default_cipher_key_size
=
308 ecryptfs_printk(KERN_DEBUG
,
309 "The mount_crypt_stat "
310 "global_default_cipher_key_size "
311 "set to: [%d]\n", mount_crypt_stat
->
312 global_default_cipher_key_size
);
313 cipher_key_bytes_set
= 1;
315 case ecryptfs_opt_passthrough
:
316 mount_crypt_stat
->flags
|=
317 ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED
;
319 case ecryptfs_opt_xattr_metadata
:
320 mount_crypt_stat
->flags
|=
321 ECRYPTFS_XATTR_METADATA_ENABLED
;
323 case ecryptfs_opt_encrypted_view
:
324 mount_crypt_stat
->flags
|=
325 ECRYPTFS_XATTR_METADATA_ENABLED
;
326 mount_crypt_stat
->flags
|=
327 ECRYPTFS_ENCRYPTED_VIEW_ENABLED
;
329 case ecryptfs_opt_err
:
331 ecryptfs_printk(KERN_WARNING
,
332 "eCryptfs: unrecognized option '%s'\n",
336 /* Do not support lack of mount-wide signature in 0.1
340 ecryptfs_printk(KERN_ERR
, "You must supply a valid "
341 "passphrase auth tok signature as a mount "
342 "parameter; see the eCryptfs README\n");
345 if (!cipher_name_set
) {
346 cipher_name_len
= strlen(ECRYPTFS_DEFAULT_CIPHER
);
347 if (unlikely(cipher_name_len
348 >= ECRYPTFS_MAX_CIPHER_NAME_SIZE
)) {
353 memcpy(mount_crypt_stat
->global_default_cipher_name
,
354 ECRYPTFS_DEFAULT_CIPHER
, cipher_name_len
);
355 mount_crypt_stat
->global_default_cipher_name
[cipher_name_len
]
358 if (!cipher_key_bytes_set
) {
359 mount_crypt_stat
->global_default_cipher_key_size
= 0;
361 rc
= ecryptfs_process_cipher(
362 &mount_crypt_stat
->global_key_tfm
,
363 mount_crypt_stat
->global_default_cipher_name
,
364 &mount_crypt_stat
->global_default_cipher_key_size
);
366 printk(KERN_ERR
"Error attempting to initialize cipher [%s] "
367 "with key size [%Zd] bytes; rc = [%d]\n",
368 mount_crypt_stat
->global_default_cipher_name
,
369 mount_crypt_stat
->global_default_cipher_key_size
, rc
);
370 mount_crypt_stat
->global_key_tfm
= NULL
;
371 mount_crypt_stat
->global_auth_tok_key
= NULL
;
375 mutex_init(&mount_crypt_stat
->global_key_tfm_mutex
);
376 ecryptfs_printk(KERN_DEBUG
, "Requesting the key with description: "
377 "[%s]\n", mount_crypt_stat
->global_auth_tok_sig
);
378 /* The reference to this key is held until umount is done The
379 * call to key_put is done in ecryptfs_put_super() */
380 auth_tok_key
= request_key(&key_type_user
,
381 mount_crypt_stat
->global_auth_tok_sig
,
383 if (!auth_tok_key
|| IS_ERR(auth_tok_key
)) {
384 ecryptfs_printk(KERN_ERR
, "Could not find key with "
385 "description: [%s]\n",
386 mount_crypt_stat
->global_auth_tok_sig
);
387 process_request_key_err(PTR_ERR(auth_tok_key
));
391 auth_tok
= ecryptfs_get_key_payload_data(auth_tok_key
);
392 if (ecryptfs_verify_version(auth_tok
->version
)) {
393 ecryptfs_printk(KERN_ERR
, "Data structure version mismatch. "
394 "Userspace tools must match eCryptfs kernel "
395 "module with major version [%d] and minor "
396 "version [%d]\n", ECRYPTFS_VERSION_MAJOR
,
397 ECRYPTFS_VERSION_MINOR
);
401 if (auth_tok
->token_type
!= ECRYPTFS_PASSWORD
402 && auth_tok
->token_type
!= ECRYPTFS_PRIVATE_KEY
) {
403 ecryptfs_printk(KERN_ERR
, "Invalid auth_tok structure "
404 "returned from key query\n");
408 mount_crypt_stat
->global_auth_tok_key
= auth_tok_key
;
409 mount_crypt_stat
->global_auth_tok
= auth_tok
;
414 struct kmem_cache
*ecryptfs_sb_info_cache
;
417 * ecryptfs_fill_super
418 * @sb: The ecryptfs super block
419 * @raw_data: The options passed to mount
420 * @silent: Not used but required by function prototype
422 * Sets up what we can of the sb, rest is done in ecryptfs_read_super
424 * Returns zero on success; non-zero otherwise
427 ecryptfs_fill_super(struct super_block
*sb
, void *raw_data
, int silent
)
431 /* Released in ecryptfs_put_super() */
432 ecryptfs_set_superblock_private(sb
,
433 kmem_cache_zalloc(ecryptfs_sb_info_cache
,
435 if (!ecryptfs_superblock_to_private(sb
)) {
436 ecryptfs_printk(KERN_WARNING
, "Out of memory\n");
440 sb
->s_op
= &ecryptfs_sops
;
441 /* Released through deactivate_super(sb) from get_sb_nodev */
442 sb
->s_root
= d_alloc(NULL
, &(const struct qstr
) {
443 .hash
= 0,.name
= "/",.len
= 1});
445 ecryptfs_printk(KERN_ERR
, "d_alloc failed\n");
449 sb
->s_root
->d_op
= &ecryptfs_dops
;
450 sb
->s_root
->d_sb
= sb
;
451 sb
->s_root
->d_parent
= sb
->s_root
;
452 /* Released in d_release when dput(sb->s_root) is called */
453 /* through deactivate_super(sb) from get_sb_nodev() */
454 ecryptfs_set_dentry_private(sb
->s_root
,
455 kmem_cache_zalloc(ecryptfs_dentry_info_cache
,
457 if (!ecryptfs_dentry_to_private(sb
->s_root
)) {
458 ecryptfs_printk(KERN_ERR
,
459 "dentry_info_cache alloc failed\n");
465 /* Should be able to rely on deactivate_super called from
471 * ecryptfs_read_super
472 * @sb: The ecryptfs super block
473 * @dev_name: The path to mount over
475 * Read the super block of the lower filesystem, and use
476 * ecryptfs_interpose to create our initial inode and super block
479 static int ecryptfs_read_super(struct super_block
*sb
, const char *dev_name
)
483 struct dentry
*lower_root
;
484 struct vfsmount
*lower_mnt
;
486 memset(&nd
, 0, sizeof(struct nameidata
));
487 rc
= path_lookup(dev_name
, LOOKUP_FOLLOW
| LOOKUP_DIRECTORY
, &nd
);
489 ecryptfs_printk(KERN_WARNING
, "path_lookup() failed\n");
492 lower_root
= nd
.dentry
;
494 ecryptfs_set_superblock_lower(sb
, lower_root
->d_sb
);
495 sb
->s_maxbytes
= lower_root
->d_sb
->s_maxbytes
;
496 ecryptfs_set_dentry_lower(sb
->s_root
, lower_root
);
497 ecryptfs_set_dentry_lower_mnt(sb
->s_root
, lower_mnt
);
498 if ((rc
= ecryptfs_interpose(lower_root
, sb
->s_root
, sb
, 0)))
512 * @dev_name: The path to mount over
513 * @raw_data: The options passed into the kernel
515 * The whole ecryptfs_get_sb process is broken into 4 functions:
516 * ecryptfs_parse_options(): handle options passed to ecryptfs, if any
517 * ecryptfs_fill_super(): used by get_sb_nodev, fills out the super_block
518 * with as much information as it can before needing
519 * the lower filesystem.
520 * ecryptfs_read_super(): this accesses the lower filesystem and uses
521 * ecryptfs_interpolate to perform most of the linking
522 * ecryptfs_interpolate(): links the lower filesystem into ecryptfs
524 static int ecryptfs_get_sb(struct file_system_type
*fs_type
, int flags
,
525 const char *dev_name
, void *raw_data
,
526 struct vfsmount
*mnt
)
529 struct super_block
*sb
;
531 rc
= get_sb_nodev(fs_type
, flags
, raw_data
, ecryptfs_fill_super
, mnt
);
533 printk(KERN_ERR
"Getting sb failed; rc = [%d]\n", rc
);
537 rc
= ecryptfs_parse_options(sb
, raw_data
);
539 printk(KERN_ERR
"Error parsing options; rc = [%d]\n", rc
);
542 rc
= ecryptfs_read_super(sb
, dev_name
);
544 printk(KERN_ERR
"Reading sb failed; rc = [%d]\n", rc
);
550 up_write(&sb
->s_umount
);
551 deactivate_super(sb
);
557 * ecryptfs_kill_block_super
558 * @sb: The ecryptfs super block
560 * Used to bring the superblock down and free the private data.
561 * Private data is free'd in ecryptfs_put_super()
563 static void ecryptfs_kill_block_super(struct super_block
*sb
)
565 generic_shutdown_super(sb
);
568 static struct file_system_type ecryptfs_fs_type
= {
569 .owner
= THIS_MODULE
,
571 .get_sb
= ecryptfs_get_sb
,
572 .kill_sb
= ecryptfs_kill_block_super
,
577 * inode_info_init_once
579 * Initializes the ecryptfs_inode_info_cache when it is created
582 inode_info_init_once(void *vptr
, struct kmem_cache
*cachep
, unsigned long flags
)
584 struct ecryptfs_inode_info
*ei
= (struct ecryptfs_inode_info
*)vptr
;
586 inode_init_once(&ei
->vfs_inode
);
589 static struct ecryptfs_cache_info
{
590 struct kmem_cache
**cache
;
593 void (*ctor
)(void*, struct kmem_cache
*, unsigned long);
594 } ecryptfs_cache_infos
[] = {
596 .cache
= &ecryptfs_auth_tok_list_item_cache
,
597 .name
= "ecryptfs_auth_tok_list_item",
598 .size
= sizeof(struct ecryptfs_auth_tok_list_item
),
601 .cache
= &ecryptfs_file_info_cache
,
602 .name
= "ecryptfs_file_cache",
603 .size
= sizeof(struct ecryptfs_file_info
),
606 .cache
= &ecryptfs_dentry_info_cache
,
607 .name
= "ecryptfs_dentry_info_cache",
608 .size
= sizeof(struct ecryptfs_dentry_info
),
611 .cache
= &ecryptfs_inode_info_cache
,
612 .name
= "ecryptfs_inode_cache",
613 .size
= sizeof(struct ecryptfs_inode_info
),
614 .ctor
= inode_info_init_once
,
617 .cache
= &ecryptfs_sb_info_cache
,
618 .name
= "ecryptfs_sb_cache",
619 .size
= sizeof(struct ecryptfs_sb_info
),
622 .cache
= &ecryptfs_header_cache_0
,
623 .name
= "ecryptfs_headers_0",
624 .size
= PAGE_CACHE_SIZE
,
627 .cache
= &ecryptfs_header_cache_1
,
628 .name
= "ecryptfs_headers_1",
629 .size
= PAGE_CACHE_SIZE
,
632 .cache
= &ecryptfs_header_cache_2
,
633 .name
= "ecryptfs_headers_2",
634 .size
= PAGE_CACHE_SIZE
,
637 .cache
= &ecryptfs_xattr_cache
,
638 .name
= "ecryptfs_xattr_cache",
639 .size
= PAGE_CACHE_SIZE
,
642 .cache
= &ecryptfs_lower_page_cache
,
643 .name
= "ecryptfs_lower_page_cache",
644 .size
= PAGE_CACHE_SIZE
,
647 .cache
= &ecryptfs_key_record_cache
,
648 .name
= "ecryptfs_key_record_cache",
649 .size
= sizeof(struct ecryptfs_key_record
),
653 static void ecryptfs_free_kmem_caches(void)
657 for (i
= 0; i
< ARRAY_SIZE(ecryptfs_cache_infos
); i
++) {
658 struct ecryptfs_cache_info
*info
;
660 info
= &ecryptfs_cache_infos
[i
];
662 kmem_cache_destroy(*(info
->cache
));
667 * ecryptfs_init_kmem_caches
669 * Returns zero on success; non-zero otherwise
671 static int ecryptfs_init_kmem_caches(void)
675 for (i
= 0; i
< ARRAY_SIZE(ecryptfs_cache_infos
); i
++) {
676 struct ecryptfs_cache_info
*info
;
678 info
= &ecryptfs_cache_infos
[i
];
679 *(info
->cache
) = kmem_cache_create(info
->name
, info
->size
,
680 0, SLAB_HWCACHE_ALIGN
, info
->ctor
, NULL
);
681 if (!*(info
->cache
)) {
682 ecryptfs_free_kmem_caches();
683 ecryptfs_printk(KERN_WARNING
, "%s: "
684 "kmem_cache_create failed\n",
692 struct ecryptfs_obj
{
694 struct list_head slot_list
;
698 struct ecryptfs_attribute
{
699 struct attribute attr
;
700 ssize_t(*show
) (struct ecryptfs_obj
*, char *);
701 ssize_t(*store
) (struct ecryptfs_obj
*, const char *, size_t);
705 ecryptfs_attr_store(struct kobject
*kobj
,
706 struct attribute
*attr
, const char *buf
, size_t len
)
708 struct ecryptfs_obj
*obj
= container_of(kobj
, struct ecryptfs_obj
,
710 struct ecryptfs_attribute
*attribute
=
711 container_of(attr
, struct ecryptfs_attribute
, attr
);
713 return (attribute
->store
? attribute
->store(obj
, buf
, len
) : 0);
717 ecryptfs_attr_show(struct kobject
*kobj
, struct attribute
*attr
, char *buf
)
719 struct ecryptfs_obj
*obj
= container_of(kobj
, struct ecryptfs_obj
,
721 struct ecryptfs_attribute
*attribute
=
722 container_of(attr
, struct ecryptfs_attribute
, attr
);
724 return (attribute
->show
? attribute
->show(obj
, buf
) : 0);
727 static struct sysfs_ops ecryptfs_sysfs_ops
= {
728 .show
= ecryptfs_attr_show
,
729 .store
= ecryptfs_attr_store
732 static struct kobj_type ecryptfs_ktype
= {
733 .sysfs_ops
= &ecryptfs_sysfs_ops
736 static decl_subsys(ecryptfs
, &ecryptfs_ktype
, NULL
);
738 static ssize_t
version_show(struct ecryptfs_obj
*obj
, char *buff
)
740 return snprintf(buff
, PAGE_SIZE
, "%d\n", ECRYPTFS_VERSIONING_MASK
);
743 static struct ecryptfs_attribute sysfs_attr_version
= __ATTR_RO(version
);
745 static struct ecryptfs_version_str_map_elem
{
748 } ecryptfs_version_str_map
[] = {
749 {ECRYPTFS_VERSIONING_PASSPHRASE
, "passphrase"},
750 {ECRYPTFS_VERSIONING_PUBKEY
, "pubkey"},
751 {ECRYPTFS_VERSIONING_PLAINTEXT_PASSTHROUGH
, "plaintext passthrough"},
752 {ECRYPTFS_VERSIONING_POLICY
, "policy"},
753 {ECRYPTFS_VERSIONING_XATTR
, "metadata in extended attribute"}
756 static ssize_t
version_str_show(struct ecryptfs_obj
*obj
, char *buff
)
759 int remaining
= PAGE_SIZE
;
760 int total_written
= 0;
763 for (i
= 0; i
< ARRAY_SIZE(ecryptfs_version_str_map
); i
++) {
766 if (!(ECRYPTFS_VERSIONING_MASK
767 & ecryptfs_version_str_map
[i
].flag
))
769 entry_size
= strlen(ecryptfs_version_str_map
[i
].str
);
770 if ((entry_size
+ 2) > remaining
)
772 memcpy(buff
, ecryptfs_version_str_map
[i
].str
, entry_size
);
773 buff
[entry_size
++] = '\n';
774 buff
[entry_size
] = '\0';
776 total_written
+= entry_size
;
777 remaining
-= entry_size
;
780 return total_written
;
783 static struct ecryptfs_attribute sysfs_attr_version_str
= __ATTR_RO(version_str
);
785 static int do_sysfs_registration(void)
789 if ((rc
= subsystem_register(&ecryptfs_subsys
))) {
791 "Unable to register ecryptfs sysfs subsystem\n");
794 rc
= sysfs_create_file(&ecryptfs_subsys
.kobj
,
795 &sysfs_attr_version
.attr
);
798 "Unable to create ecryptfs version attribute\n");
799 subsystem_unregister(&ecryptfs_subsys
);
802 rc
= sysfs_create_file(&ecryptfs_subsys
.kobj
,
803 &sysfs_attr_version_str
.attr
);
806 "Unable to create ecryptfs version_str attribute\n");
807 sysfs_remove_file(&ecryptfs_subsys
.kobj
,
808 &sysfs_attr_version
.attr
);
809 subsystem_unregister(&ecryptfs_subsys
);
816 static int __init
ecryptfs_init(void)
820 if (ECRYPTFS_DEFAULT_EXTENT_SIZE
> PAGE_CACHE_SIZE
) {
822 ecryptfs_printk(KERN_ERR
, "The eCryptfs extent size is "
823 "larger than the host's page size, and so "
824 "eCryptfs cannot run on this system. The "
825 "default eCryptfs extent size is [%d] bytes; "
826 "the page size is [%d] bytes.\n",
827 ECRYPTFS_DEFAULT_EXTENT_SIZE
, PAGE_CACHE_SIZE
);
830 rc
= ecryptfs_init_kmem_caches();
833 "Failed to allocate one or more kmem_cache objects\n");
836 rc
= register_filesystem(&ecryptfs_fs_type
);
838 printk(KERN_ERR
"Failed to register filesystem\n");
839 ecryptfs_free_kmem_caches();
842 kobj_set_kset_s(&ecryptfs_subsys
, fs_subsys
);
843 sysfs_attr_version
.attr
.owner
= THIS_MODULE
;
844 sysfs_attr_version_str
.attr
.owner
= THIS_MODULE
;
845 rc
= do_sysfs_registration();
847 printk(KERN_ERR
"sysfs registration failed\n");
848 unregister_filesystem(&ecryptfs_fs_type
);
849 ecryptfs_free_kmem_caches();
852 rc
= ecryptfs_init_messaging(ecryptfs_transport
);
854 ecryptfs_printk(KERN_ERR
, "Failure occured while attempting to "
855 "initialize the eCryptfs netlink socket\n");
861 static void __exit
ecryptfs_exit(void)
863 sysfs_remove_file(&ecryptfs_subsys
.kobj
,
864 &sysfs_attr_version
.attr
);
865 sysfs_remove_file(&ecryptfs_subsys
.kobj
,
866 &sysfs_attr_version_str
.attr
);
867 subsystem_unregister(&ecryptfs_subsys
);
868 ecryptfs_release_messaging(ecryptfs_transport
);
869 unregister_filesystem(&ecryptfs_fs_type
);
870 ecryptfs_free_kmem_caches();
873 MODULE_AUTHOR("Michael A. Halcrow <mhalcrow@us.ibm.com>");
874 MODULE_DESCRIPTION("eCryptfs");
876 MODULE_LICENSE("GPL");
878 module_init(ecryptfs_init
)
879 module_exit(ecryptfs_exit
)