2 * eCryptfs: Linux filesystem encryption layer
4 * Copyright (C) 1997-2004 Erez Zadok
5 * Copyright (C) 2001-2004 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. Thompsion <mcthomps@us.ibm.com>
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of the
13 * License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
26 #include <linux/file.h>
27 #include <linux/vmalloc.h>
28 #include <linux/pagemap.h>
29 #include <linux/dcache.h>
30 #include <linux/namei.h>
31 #include <linux/mount.h>
32 #include <linux/crypto.h>
33 #include <linux/fs_stack.h>
34 #include <asm/unaligned.h>
35 #include "ecryptfs_kernel.h"
37 static struct dentry
*lock_parent(struct dentry
*dentry
)
41 dir
= dget_parent(dentry
);
42 mutex_lock_nested(&(dir
->d_inode
->i_mutex
), I_MUTEX_PARENT
);
46 static void unlock_dir(struct dentry
*dir
)
48 mutex_unlock(&dir
->d_inode
->i_mutex
);
53 * ecryptfs_create_underlying_file
54 * @lower_dir_inode: inode of the parent in the lower fs of the new file
55 * @lower_dentry: New file's dentry in the lower fs
56 * @ecryptfs_dentry: New file's dentry in ecryptfs
57 * @mode: The mode of the new file
58 * @nd: nameidata of ecryptfs' parent's dentry & vfsmount
60 * Creates the file in the lower file system.
62 * Returns zero on success; non-zero on error condition
65 ecryptfs_create_underlying_file(struct inode
*lower_dir_inode
,
66 struct dentry
*dentry
, int mode
,
69 struct dentry
*lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
70 struct vfsmount
*lower_mnt
= ecryptfs_dentry_to_lower_mnt(dentry
);
71 struct dentry
*dentry_save
;
72 struct vfsmount
*vfsmount_save
;
75 dentry_save
= nd
->path
.dentry
;
76 vfsmount_save
= nd
->path
.mnt
;
77 nd
->path
.dentry
= lower_dentry
;
78 nd
->path
.mnt
= lower_mnt
;
79 rc
= vfs_create(lower_dir_inode
, lower_dentry
, mode
, nd
);
80 nd
->path
.dentry
= dentry_save
;
81 nd
->path
.mnt
= vfsmount_save
;
87 * @directory_inode: inode of the new file's dentry's parent in ecryptfs
88 * @ecryptfs_dentry: New file's dentry in ecryptfs
89 * @mode: The mode of the new file
90 * @nd: nameidata of ecryptfs' parent's dentry & vfsmount
92 * Creates the underlying file and the eCryptfs inode which will link to
93 * it. It will also update the eCryptfs directory inode to mimic the
94 * stat of the lower directory inode.
96 * Returns zero on success; non-zero on error condition
99 ecryptfs_do_create(struct inode
*directory_inode
,
100 struct dentry
*ecryptfs_dentry
, int mode
,
101 struct nameidata
*nd
)
104 struct dentry
*lower_dentry
;
105 struct dentry
*lower_dir_dentry
;
107 lower_dentry
= ecryptfs_dentry_to_lower(ecryptfs_dentry
);
108 lower_dir_dentry
= lock_parent(lower_dentry
);
109 if (IS_ERR(lower_dir_dentry
)) {
110 ecryptfs_printk(KERN_ERR
, "Error locking directory of "
112 rc
= PTR_ERR(lower_dir_dentry
);
115 rc
= ecryptfs_create_underlying_file(lower_dir_dentry
->d_inode
,
116 ecryptfs_dentry
, mode
, nd
);
118 printk(KERN_ERR
"%s: Failure to create dentry in lower fs; "
119 "rc = [%d]\n", __func__
, rc
);
122 rc
= ecryptfs_interpose(lower_dentry
, ecryptfs_dentry
,
123 directory_inode
->i_sb
, 0);
125 ecryptfs_printk(KERN_ERR
, "Failure in ecryptfs_interpose\n");
128 fsstack_copy_attr_times(directory_inode
, lower_dir_dentry
->d_inode
);
129 fsstack_copy_inode_size(directory_inode
, lower_dir_dentry
->d_inode
);
131 unlock_dir(lower_dir_dentry
);
138 * @ecryptfs_dentry: the eCryptfs dentry
140 * This is the code which will grow the file to its correct size.
142 static int grow_file(struct dentry
*ecryptfs_dentry
)
144 struct inode
*ecryptfs_inode
= ecryptfs_dentry
->d_inode
;
145 struct file fake_file
;
146 struct ecryptfs_file_info tmp_file_info
;
147 char zero_virt
[] = { 0x00 };
150 memset(&fake_file
, 0, sizeof(fake_file
));
151 fake_file
.f_path
.dentry
= ecryptfs_dentry
;
152 memset(&tmp_file_info
, 0, sizeof(tmp_file_info
));
153 ecryptfs_set_file_private(&fake_file
, &tmp_file_info
);
154 ecryptfs_set_file_lower(
156 ecryptfs_inode_to_private(ecryptfs_inode
)->lower_file
);
157 rc
= ecryptfs_write(&fake_file
, zero_virt
, 0, 1);
158 i_size_write(ecryptfs_inode
, 0);
159 rc
= ecryptfs_write_inode_size_to_metadata(ecryptfs_inode
);
160 ecryptfs_inode_to_private(ecryptfs_inode
)->crypt_stat
.flags
|=
166 * ecryptfs_initialize_file
168 * Cause the file to be changed from a basic empty file to an ecryptfs
169 * file with a header and first data page.
171 * Returns zero on success
173 static int ecryptfs_initialize_file(struct dentry
*ecryptfs_dentry
)
175 struct ecryptfs_crypt_stat
*crypt_stat
=
176 &ecryptfs_inode_to_private(ecryptfs_dentry
->d_inode
)->crypt_stat
;
179 if (S_ISDIR(ecryptfs_dentry
->d_inode
->i_mode
)) {
180 ecryptfs_printk(KERN_DEBUG
, "This is a directory\n");
181 crypt_stat
->flags
&= ~(ECRYPTFS_ENCRYPTED
);
184 crypt_stat
->flags
|= ECRYPTFS_NEW_FILE
;
185 ecryptfs_printk(KERN_DEBUG
, "Initializing crypto context\n");
186 rc
= ecryptfs_new_file_context(ecryptfs_dentry
);
188 ecryptfs_printk(KERN_ERR
, "Error creating new file "
189 "context; rc = [%d]\n", rc
);
192 if (!ecryptfs_inode_to_private(ecryptfs_dentry
->d_inode
)->lower_file
) {
193 rc
= ecryptfs_init_persistent_file(ecryptfs_dentry
);
195 printk(KERN_ERR
"%s: Error attempting to initialize "
196 "the persistent file for the dentry with name "
197 "[%s]; rc = [%d]\n", __func__
,
198 ecryptfs_dentry
->d_name
.name
, rc
);
202 rc
= ecryptfs_write_metadata(ecryptfs_dentry
);
204 printk(KERN_ERR
"Error writing headers; rc = [%d]\n", rc
);
207 rc
= grow_file(ecryptfs_dentry
);
209 printk(KERN_ERR
"Error growing file; rc = [%d]\n", rc
);
216 * @dir: The inode of the directory in which to create the file.
217 * @dentry: The eCryptfs dentry
218 * @mode: The mode of the new file.
221 * Creates a new file.
223 * Returns zero on success; non-zero on error condition
226 ecryptfs_create(struct inode
*directory_inode
, struct dentry
*ecryptfs_dentry
,
227 int mode
, struct nameidata
*nd
)
231 /* ecryptfs_do_create() calls ecryptfs_interpose(), which opens
232 * the crypt_stat->lower_file (persistent file) */
233 rc
= ecryptfs_do_create(directory_inode
, ecryptfs_dentry
, mode
, nd
);
235 ecryptfs_printk(KERN_WARNING
, "Failed to create file in"
236 "lower filesystem\n");
239 /* At this point, a file exists on "disk"; we need to make sure
240 * that this on disk file is prepared to be an ecryptfs file */
241 rc
= ecryptfs_initialize_file(ecryptfs_dentry
);
249 * @dentry: The dentry
250 * @nd: nameidata, may be NULL
252 * Find a file on disk. If the file does not exist, then we'll add it to the
253 * dentry cache and continue on to read it from the disk.
255 static struct dentry
*ecryptfs_lookup(struct inode
*dir
, struct dentry
*dentry
,
256 struct nameidata
*nd
)
259 struct dentry
*lower_dir_dentry
;
260 struct dentry
*lower_dentry
;
261 struct vfsmount
*lower_mnt
;
264 struct ecryptfs_crypt_stat
*crypt_stat
= NULL
;
265 struct ecryptfs_mount_crypt_stat
*mount_crypt_stat
;
266 char *page_virt
= NULL
;
267 struct inode
*lower_inode
;
270 lower_dir_dentry
= ecryptfs_dentry_to_lower(dentry
->d_parent
);
271 dentry
->d_op
= &ecryptfs_dops
;
272 if ((dentry
->d_name
.len
== 1 && !strcmp(dentry
->d_name
.name
, "."))
273 || (dentry
->d_name
.len
== 2
274 && !strcmp(dentry
->d_name
.name
, ".."))) {
278 encoded_namelen
= ecryptfs_encode_filename(crypt_stat
,
282 if (encoded_namelen
< 0) {
283 rc
= encoded_namelen
;
287 ecryptfs_printk(KERN_DEBUG
, "encoded_name = [%s]; encoded_namelen "
288 "= [%d]\n", encoded_name
, encoded_namelen
);
289 lower_dentry
= lookup_one_len(encoded_name
, lower_dir_dentry
,
290 encoded_namelen
- 1);
292 if (IS_ERR(lower_dentry
)) {
293 ecryptfs_printk(KERN_ERR
, "ERR from lower_dentry\n");
294 rc
= PTR_ERR(lower_dentry
);
298 lower_mnt
= mntget(ecryptfs_dentry_to_lower_mnt(dentry
->d_parent
));
299 ecryptfs_printk(KERN_DEBUG
, "lower_dentry = [%p]; lower_dentry->"
300 "d_name.name = [%s]\n", lower_dentry
,
301 lower_dentry
->d_name
.name
);
302 lower_inode
= lower_dentry
->d_inode
;
303 fsstack_copy_attr_atime(dir
, lower_dir_dentry
->d_inode
);
304 BUG_ON(!atomic_read(&lower_dentry
->d_count
));
305 ecryptfs_set_dentry_private(dentry
,
306 kmem_cache_alloc(ecryptfs_dentry_info_cache
,
308 if (!ecryptfs_dentry_to_private(dentry
)) {
310 ecryptfs_printk(KERN_ERR
, "Out of memory whilst attempting "
311 "to allocate ecryptfs_dentry_info struct\n");
314 ecryptfs_set_dentry_lower(dentry
, lower_dentry
);
315 ecryptfs_set_dentry_lower_mnt(dentry
, lower_mnt
);
316 if (!lower_dentry
->d_inode
) {
317 /* We want to add because we couldn't find in lower */
321 rc
= ecryptfs_interpose(lower_dentry
, dentry
, dir
->i_sb
,
322 ECRYPTFS_INTERPOSE_FLAG_D_ADD
);
324 ecryptfs_printk(KERN_ERR
, "Error interposing\n");
327 if (S_ISDIR(lower_inode
->i_mode
)) {
328 ecryptfs_printk(KERN_DEBUG
, "Is a directory; returning\n");
331 if (S_ISLNK(lower_inode
->i_mode
)) {
332 ecryptfs_printk(KERN_DEBUG
, "Is a symlink; returning\n");
335 if (special_file(lower_inode
->i_mode
)) {
336 ecryptfs_printk(KERN_DEBUG
, "Is a special file; returning\n");
340 ecryptfs_printk(KERN_DEBUG
, "We have a NULL nd, just leave"
341 "as we *think* we are about to unlink\n");
344 /* Released in this function */
345 page_virt
= kmem_cache_zalloc(ecryptfs_header_cache_2
,
349 ecryptfs_printk(KERN_ERR
,
350 "Cannot ecryptfs_kmalloc a page\n");
353 crypt_stat
= &ecryptfs_inode_to_private(dentry
->d_inode
)->crypt_stat
;
354 if (!(crypt_stat
->flags
& ECRYPTFS_POLICY_APPLIED
))
355 ecryptfs_set_default_sizes(crypt_stat
);
356 if (!ecryptfs_inode_to_private(dentry
->d_inode
)->lower_file
) {
357 rc
= ecryptfs_init_persistent_file(dentry
);
359 printk(KERN_ERR
"%s: Error attempting to initialize "
360 "the persistent file for the dentry with name "
361 "[%s]; rc = [%d]\n", __func__
,
362 dentry
->d_name
.name
, rc
);
366 rc
= ecryptfs_read_and_validate_header_region(page_virt
,
369 rc
= ecryptfs_read_and_validate_xattr_region(page_virt
, dentry
);
371 printk(KERN_DEBUG
"Valid metadata not found in header "
372 "region or xattr region; treating file as "
375 kmem_cache_free(ecryptfs_header_cache_2
, page_virt
);
378 crypt_stat
->flags
|= ECRYPTFS_METADATA_IN_XATTR
;
380 mount_crypt_stat
= &ecryptfs_superblock_to_private(
381 dentry
->d_sb
)->mount_crypt_stat
;
382 if (mount_crypt_stat
->flags
& ECRYPTFS_ENCRYPTED_VIEW_ENABLED
) {
383 if (crypt_stat
->flags
& ECRYPTFS_METADATA_IN_XATTR
)
384 file_size
= (crypt_stat
->num_header_bytes_at_front
385 + i_size_read(lower_dentry
->d_inode
));
387 file_size
= i_size_read(lower_dentry
->d_inode
);
389 file_size
= get_unaligned_be64(page_virt
);
391 i_size_write(dentry
->d_inode
, (loff_t
)file_size
);
392 kmem_cache_free(ecryptfs_header_cache_2
, page_virt
);
402 static int ecryptfs_link(struct dentry
*old_dentry
, struct inode
*dir
,
403 struct dentry
*new_dentry
)
405 struct dentry
*lower_old_dentry
;
406 struct dentry
*lower_new_dentry
;
407 struct dentry
*lower_dir_dentry
;
411 file_size_save
= i_size_read(old_dentry
->d_inode
);
412 lower_old_dentry
= ecryptfs_dentry_to_lower(old_dentry
);
413 lower_new_dentry
= ecryptfs_dentry_to_lower(new_dentry
);
414 dget(lower_old_dentry
);
415 dget(lower_new_dentry
);
416 lower_dir_dentry
= lock_parent(lower_new_dentry
);
417 rc
= vfs_link(lower_old_dentry
, lower_dir_dentry
->d_inode
,
419 if (rc
|| !lower_new_dentry
->d_inode
)
421 rc
= ecryptfs_interpose(lower_new_dentry
, new_dentry
, dir
->i_sb
, 0);
424 fsstack_copy_attr_times(dir
, lower_new_dentry
->d_inode
);
425 fsstack_copy_inode_size(dir
, lower_new_dentry
->d_inode
);
426 old_dentry
->d_inode
->i_nlink
=
427 ecryptfs_inode_to_lower(old_dentry
->d_inode
)->i_nlink
;
428 i_size_write(new_dentry
->d_inode
, file_size_save
);
430 unlock_dir(lower_dir_dentry
);
431 dput(lower_new_dentry
);
432 dput(lower_old_dentry
);
433 d_drop(lower_old_dentry
);
439 static int ecryptfs_unlink(struct inode
*dir
, struct dentry
*dentry
)
442 struct dentry
*lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
443 struct inode
*lower_dir_inode
= ecryptfs_inode_to_lower(dir
);
444 struct dentry
*lower_dir_dentry
;
446 lower_dir_dentry
= lock_parent(lower_dentry
);
447 rc
= vfs_unlink(lower_dir_inode
, lower_dentry
);
449 printk(KERN_ERR
"Error in vfs_unlink; rc = [%d]\n", rc
);
452 fsstack_copy_attr_times(dir
, lower_dir_inode
);
453 dentry
->d_inode
->i_nlink
=
454 ecryptfs_inode_to_lower(dentry
->d_inode
)->i_nlink
;
455 dentry
->d_inode
->i_ctime
= dir
->i_ctime
;
458 unlock_dir(lower_dir_dentry
);
462 static int ecryptfs_symlink(struct inode
*dir
, struct dentry
*dentry
,
466 struct dentry
*lower_dentry
;
467 struct dentry
*lower_dir_dentry
;
468 char *encoded_symname
;
470 struct ecryptfs_crypt_stat
*crypt_stat
= NULL
;
472 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
474 lower_dir_dentry
= lock_parent(lower_dentry
);
475 encoded_symlen
= ecryptfs_encode_filename(crypt_stat
, symname
,
478 if (encoded_symlen
< 0) {
482 rc
= vfs_symlink(lower_dir_dentry
->d_inode
, lower_dentry
,
484 kfree(encoded_symname
);
485 if (rc
|| !lower_dentry
->d_inode
)
487 rc
= ecryptfs_interpose(lower_dentry
, dentry
, dir
->i_sb
, 0);
490 fsstack_copy_attr_times(dir
, lower_dir_dentry
->d_inode
);
491 fsstack_copy_inode_size(dir
, lower_dir_dentry
->d_inode
);
493 unlock_dir(lower_dir_dentry
);
495 if (!dentry
->d_inode
)
500 static int ecryptfs_mkdir(struct inode
*dir
, struct dentry
*dentry
, int mode
)
503 struct dentry
*lower_dentry
;
504 struct dentry
*lower_dir_dentry
;
506 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
507 lower_dir_dentry
= lock_parent(lower_dentry
);
508 rc
= vfs_mkdir(lower_dir_dentry
->d_inode
, lower_dentry
, mode
);
509 if (rc
|| !lower_dentry
->d_inode
)
511 rc
= ecryptfs_interpose(lower_dentry
, dentry
, dir
->i_sb
, 0);
514 fsstack_copy_attr_times(dir
, lower_dir_dentry
->d_inode
);
515 fsstack_copy_inode_size(dir
, lower_dir_dentry
->d_inode
);
516 dir
->i_nlink
= lower_dir_dentry
->d_inode
->i_nlink
;
518 unlock_dir(lower_dir_dentry
);
519 if (!dentry
->d_inode
)
524 static int ecryptfs_rmdir(struct inode
*dir
, struct dentry
*dentry
)
526 struct dentry
*lower_dentry
;
527 struct dentry
*lower_dir_dentry
;
530 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
532 lower_dir_dentry
= lock_parent(lower_dentry
);
534 rc
= vfs_rmdir(lower_dir_dentry
->d_inode
, lower_dentry
);
537 d_delete(lower_dentry
);
538 fsstack_copy_attr_times(dir
, lower_dir_dentry
->d_inode
);
539 dir
->i_nlink
= lower_dir_dentry
->d_inode
->i_nlink
;
540 unlock_dir(lower_dir_dentry
);
548 ecryptfs_mknod(struct inode
*dir
, struct dentry
*dentry
, int mode
, dev_t dev
)
551 struct dentry
*lower_dentry
;
552 struct dentry
*lower_dir_dentry
;
554 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
555 lower_dir_dentry
= lock_parent(lower_dentry
);
556 rc
= vfs_mknod(lower_dir_dentry
->d_inode
, lower_dentry
, mode
, dev
);
557 if (rc
|| !lower_dentry
->d_inode
)
559 rc
= ecryptfs_interpose(lower_dentry
, dentry
, dir
->i_sb
, 0);
562 fsstack_copy_attr_times(dir
, lower_dir_dentry
->d_inode
);
563 fsstack_copy_inode_size(dir
, lower_dir_dentry
->d_inode
);
565 unlock_dir(lower_dir_dentry
);
566 if (!dentry
->d_inode
)
572 ecryptfs_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
573 struct inode
*new_dir
, struct dentry
*new_dentry
)
576 struct dentry
*lower_old_dentry
;
577 struct dentry
*lower_new_dentry
;
578 struct dentry
*lower_old_dir_dentry
;
579 struct dentry
*lower_new_dir_dentry
;
581 lower_old_dentry
= ecryptfs_dentry_to_lower(old_dentry
);
582 lower_new_dentry
= ecryptfs_dentry_to_lower(new_dentry
);
583 dget(lower_old_dentry
);
584 dget(lower_new_dentry
);
585 lower_old_dir_dentry
= dget_parent(lower_old_dentry
);
586 lower_new_dir_dentry
= dget_parent(lower_new_dentry
);
587 lock_rename(lower_old_dir_dentry
, lower_new_dir_dentry
);
588 rc
= vfs_rename(lower_old_dir_dentry
->d_inode
, lower_old_dentry
,
589 lower_new_dir_dentry
->d_inode
, lower_new_dentry
);
592 fsstack_copy_attr_all(new_dir
, lower_new_dir_dentry
->d_inode
, NULL
);
593 if (new_dir
!= old_dir
)
594 fsstack_copy_attr_all(old_dir
, lower_old_dir_dentry
->d_inode
, NULL
);
596 unlock_rename(lower_old_dir_dentry
, lower_new_dir_dentry
);
597 dput(lower_new_dentry
->d_parent
);
598 dput(lower_old_dentry
->d_parent
);
599 dput(lower_new_dentry
);
600 dput(lower_old_dentry
);
605 ecryptfs_readlink(struct dentry
*dentry
, char __user
* buf
, int bufsiz
)
608 struct dentry
*lower_dentry
;
612 struct ecryptfs_crypt_stat
*crypt_stat
;
614 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
615 if (!lower_dentry
->d_inode
->i_op
||
616 !lower_dentry
->d_inode
->i_op
->readlink
) {
620 /* Released in this function */
621 lower_buf
= kmalloc(bufsiz
, GFP_KERNEL
);
622 if (lower_buf
== NULL
) {
623 ecryptfs_printk(KERN_ERR
, "Out of memory\n");
629 ecryptfs_printk(KERN_DEBUG
, "Calling readlink w/ "
630 "lower_dentry->d_name.name = [%s]\n",
631 lower_dentry
->d_name
.name
);
632 rc
= lower_dentry
->d_inode
->i_op
->readlink(lower_dentry
,
633 (char __user
*)lower_buf
,
638 rc
= ecryptfs_decode_filename(crypt_stat
, lower_buf
, rc
,
641 goto out_free_lower_buf
;
643 ecryptfs_printk(KERN_DEBUG
, "Copying [%d] bytes "
644 "to userspace: [%*s]\n", rc
,
646 if (copy_to_user(buf
, decoded_name
, rc
))
650 fsstack_copy_attr_atime(dentry
->d_inode
,
651 lower_dentry
->d_inode
);
659 static void *ecryptfs_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
662 int len
= PAGE_SIZE
, rc
;
665 /* Released in ecryptfs_put_link(); only release here on error */
666 buf
= kmalloc(len
, GFP_KERNEL
);
673 ecryptfs_printk(KERN_DEBUG
, "Calling readlink w/ "
674 "dentry->d_name.name = [%s]\n", dentry
->d_name
.name
);
675 rc
= dentry
->d_inode
->i_op
->readlink(dentry
, (char __user
*)buf
, len
);
682 nd_set_link(nd
, buf
);
691 ecryptfs_put_link(struct dentry
*dentry
, struct nameidata
*nd
, void *ptr
)
694 kfree(nd_get_link(nd
));
698 * upper_size_to_lower_size
699 * @crypt_stat: Crypt_stat associated with file
700 * @upper_size: Size of the upper file
702 * Calculate the required size of the lower file based on the
703 * specified size of the upper file. This calculation is based on the
704 * number of headers in the underlying file and the extent size.
706 * Returns Calculated size of the lower file.
709 upper_size_to_lower_size(struct ecryptfs_crypt_stat
*crypt_stat
,
714 lower_size
= crypt_stat
->num_header_bytes_at_front
;
715 if (upper_size
!= 0) {
718 num_extents
= upper_size
>> crypt_stat
->extent_shift
;
719 if (upper_size
& ~crypt_stat
->extent_mask
)
721 lower_size
+= (num_extents
* crypt_stat
->extent_size
);
728 * @dentry: The ecryptfs layer dentry
729 * @new_length: The length to expand the file to
731 * Function to handle truncations modifying the size of the file. Note
732 * that the file sizes are interpolated. When expanding, we are simply
733 * writing strings of 0's out. When truncating, we need to modify the
734 * underlying file size according to the page index interpolations.
736 * Returns zero on success; non-zero otherwise
738 int ecryptfs_truncate(struct dentry
*dentry
, loff_t new_length
)
741 struct inode
*inode
= dentry
->d_inode
;
742 struct dentry
*lower_dentry
;
743 struct file fake_ecryptfs_file
;
744 struct ecryptfs_crypt_stat
*crypt_stat
;
745 loff_t i_size
= i_size_read(inode
);
746 loff_t lower_size_before_truncate
;
747 loff_t lower_size_after_truncate
;
749 if (unlikely((new_length
== i_size
)))
751 crypt_stat
= &ecryptfs_inode_to_private(dentry
->d_inode
)->crypt_stat
;
752 /* Set up a fake ecryptfs file, this is used to interface with
753 * the file in the underlying filesystem so that the
754 * truncation has an effect there as well. */
755 memset(&fake_ecryptfs_file
, 0, sizeof(fake_ecryptfs_file
));
756 fake_ecryptfs_file
.f_path
.dentry
= dentry
;
757 /* Released at out_free: label */
758 ecryptfs_set_file_private(&fake_ecryptfs_file
,
759 kmem_cache_alloc(ecryptfs_file_info_cache
,
761 if (unlikely(!ecryptfs_file_to_private(&fake_ecryptfs_file
))) {
765 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
766 ecryptfs_set_file_lower(
768 ecryptfs_inode_to_private(dentry
->d_inode
)->lower_file
);
769 /* Switch on growing or shrinking file */
770 if (new_length
> i_size
) {
771 char zero
[] = { 0x00 };
773 /* Write a single 0 at the last position of the file;
774 * this triggers code that will fill in 0's throughout
775 * the intermediate portion of the previous end of the
776 * file and the new and of the file */
777 rc
= ecryptfs_write(&fake_ecryptfs_file
, zero
,
778 (new_length
- 1), 1);
779 } else { /* new_length < i_size_read(inode) */
780 /* We're chopping off all the pages down do the page
781 * in which new_length is located. Fill in the end of
782 * that page from (new_length & ~PAGE_CACHE_MASK) to
783 * PAGE_CACHE_SIZE with zeros. */
784 size_t num_zeros
= (PAGE_CACHE_SIZE
785 - (new_length
& ~PAGE_CACHE_MASK
));
790 zeros_virt
= kzalloc(num_zeros
, GFP_KERNEL
);
795 rc
= ecryptfs_write(&fake_ecryptfs_file
, zeros_virt
,
796 new_length
, num_zeros
);
799 printk(KERN_ERR
"Error attempting to zero out "
800 "the remainder of the end page on "
801 "reducing truncate; rc = [%d]\n", rc
);
805 vmtruncate(inode
, new_length
);
806 rc
= ecryptfs_write_inode_size_to_metadata(inode
);
808 printk(KERN_ERR
"Problem with "
809 "ecryptfs_write_inode_size_to_metadata; "
813 /* We are reducing the size of the ecryptfs file, and need to
814 * know if we need to reduce the size of the lower file. */
815 lower_size_before_truncate
=
816 upper_size_to_lower_size(crypt_stat
, i_size
);
817 lower_size_after_truncate
=
818 upper_size_to_lower_size(crypt_stat
, new_length
);
819 if (lower_size_after_truncate
< lower_size_before_truncate
)
820 vmtruncate(lower_dentry
->d_inode
,
821 lower_size_after_truncate
);
824 if (ecryptfs_file_to_private(&fake_ecryptfs_file
))
825 kmem_cache_free(ecryptfs_file_info_cache
,
826 ecryptfs_file_to_private(&fake_ecryptfs_file
));
832 ecryptfs_permission(struct inode
*inode
, int mask
)
834 return inode_permission(ecryptfs_inode_to_lower(inode
), mask
);
839 * @dentry: dentry handle to the inode to modify
840 * @ia: Structure with flags of what to change and values
842 * Updates the metadata of an inode. If the update is to the size
843 * i.e. truncation, then ecryptfs_truncate will handle the size modification
844 * of both the ecryptfs inode and the lower inode.
846 * All other metadata changes will be passed right to the lower filesystem,
847 * and we will just update our inode to look like the lower.
849 static int ecryptfs_setattr(struct dentry
*dentry
, struct iattr
*ia
)
852 struct dentry
*lower_dentry
;
854 struct inode
*lower_inode
;
855 struct ecryptfs_crypt_stat
*crypt_stat
;
857 crypt_stat
= &ecryptfs_inode_to_private(dentry
->d_inode
)->crypt_stat
;
858 if (!(crypt_stat
->flags
& ECRYPTFS_STRUCT_INITIALIZED
))
859 ecryptfs_init_crypt_stat(crypt_stat
);
860 inode
= dentry
->d_inode
;
861 lower_inode
= ecryptfs_inode_to_lower(inode
);
862 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
863 mutex_lock(&crypt_stat
->cs_mutex
);
864 if (S_ISDIR(dentry
->d_inode
->i_mode
))
865 crypt_stat
->flags
&= ~(ECRYPTFS_ENCRYPTED
);
866 else if (S_ISREG(dentry
->d_inode
->i_mode
)
867 && (!(crypt_stat
->flags
& ECRYPTFS_POLICY_APPLIED
)
868 || !(crypt_stat
->flags
& ECRYPTFS_KEY_VALID
))) {
869 struct ecryptfs_mount_crypt_stat
*mount_crypt_stat
;
871 mount_crypt_stat
= &ecryptfs_superblock_to_private(
872 dentry
->d_sb
)->mount_crypt_stat
;
873 rc
= ecryptfs_read_metadata(dentry
);
875 if (!(mount_crypt_stat
->flags
876 & ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED
)) {
878 printk(KERN_WARNING
"Either the lower file "
879 "is not in a valid eCryptfs format, "
880 "or the key could not be retrieved. "
881 "Plaintext passthrough mode is not "
882 "enabled; returning -EIO\n");
883 mutex_unlock(&crypt_stat
->cs_mutex
);
887 crypt_stat
->flags
&= ~(ECRYPTFS_ENCRYPTED
);
888 mutex_unlock(&crypt_stat
->cs_mutex
);
892 mutex_unlock(&crypt_stat
->cs_mutex
);
893 if (ia
->ia_valid
& ATTR_SIZE
) {
894 ecryptfs_printk(KERN_DEBUG
,
895 "ia->ia_valid = [0x%x] ATTR_SIZE" " = [0x%x]\n",
896 ia
->ia_valid
, ATTR_SIZE
);
897 rc
= ecryptfs_truncate(dentry
, ia
->ia_size
);
898 /* ecryptfs_truncate handles resizing of the lower file */
899 ia
->ia_valid
&= ~ATTR_SIZE
;
900 ecryptfs_printk(KERN_DEBUG
, "ia->ia_valid = [%x]\n",
907 * mode change is for clearing setuid/setgid bits. Allow lower fs
908 * to interpret this in its own way.
910 if (ia
->ia_valid
& (ATTR_KILL_SUID
| ATTR_KILL_SGID
))
911 ia
->ia_valid
&= ~ATTR_MODE
;
913 mutex_lock(&lower_dentry
->d_inode
->i_mutex
);
914 rc
= notify_change(lower_dentry
, ia
);
915 mutex_unlock(&lower_dentry
->d_inode
->i_mutex
);
917 fsstack_copy_attr_all(inode
, lower_inode
, NULL
);
922 ecryptfs_setxattr(struct dentry
*dentry
, const char *name
, const void *value
,
923 size_t size
, int flags
)
926 struct dentry
*lower_dentry
;
928 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
929 if (!lower_dentry
->d_inode
->i_op
->setxattr
) {
933 mutex_lock(&lower_dentry
->d_inode
->i_mutex
);
934 rc
= lower_dentry
->d_inode
->i_op
->setxattr(lower_dentry
, name
, value
,
936 mutex_unlock(&lower_dentry
->d_inode
->i_mutex
);
942 ecryptfs_getxattr_lower(struct dentry
*lower_dentry
, const char *name
,
943 void *value
, size_t size
)
947 if (!lower_dentry
->d_inode
->i_op
->getxattr
) {
951 mutex_lock(&lower_dentry
->d_inode
->i_mutex
);
952 rc
= lower_dentry
->d_inode
->i_op
->getxattr(lower_dentry
, name
, value
,
954 mutex_unlock(&lower_dentry
->d_inode
->i_mutex
);
960 ecryptfs_getxattr(struct dentry
*dentry
, const char *name
, void *value
,
963 return ecryptfs_getxattr_lower(ecryptfs_dentry_to_lower(dentry
), name
,
968 ecryptfs_listxattr(struct dentry
*dentry
, char *list
, size_t size
)
971 struct dentry
*lower_dentry
;
973 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
974 if (!lower_dentry
->d_inode
->i_op
->listxattr
) {
978 mutex_lock(&lower_dentry
->d_inode
->i_mutex
);
979 rc
= lower_dentry
->d_inode
->i_op
->listxattr(lower_dentry
, list
, size
);
980 mutex_unlock(&lower_dentry
->d_inode
->i_mutex
);
985 static int ecryptfs_removexattr(struct dentry
*dentry
, const char *name
)
988 struct dentry
*lower_dentry
;
990 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
991 if (!lower_dentry
->d_inode
->i_op
->removexattr
) {
995 mutex_lock(&lower_dentry
->d_inode
->i_mutex
);
996 rc
= lower_dentry
->d_inode
->i_op
->removexattr(lower_dentry
, name
);
997 mutex_unlock(&lower_dentry
->d_inode
->i_mutex
);
1002 int ecryptfs_inode_test(struct inode
*inode
, void *candidate_lower_inode
)
1004 if ((ecryptfs_inode_to_lower(inode
)
1005 == (struct inode
*)candidate_lower_inode
))
1011 int ecryptfs_inode_set(struct inode
*inode
, void *lower_inode
)
1013 ecryptfs_init_inode(inode
, (struct inode
*)lower_inode
);
1017 const struct inode_operations ecryptfs_symlink_iops
= {
1018 .readlink
= ecryptfs_readlink
,
1019 .follow_link
= ecryptfs_follow_link
,
1020 .put_link
= ecryptfs_put_link
,
1021 .permission
= ecryptfs_permission
,
1022 .setattr
= ecryptfs_setattr
,
1023 .setxattr
= ecryptfs_setxattr
,
1024 .getxattr
= ecryptfs_getxattr
,
1025 .listxattr
= ecryptfs_listxattr
,
1026 .removexattr
= ecryptfs_removexattr
1029 const struct inode_operations ecryptfs_dir_iops
= {
1030 .create
= ecryptfs_create
,
1031 .lookup
= ecryptfs_lookup
,
1032 .link
= ecryptfs_link
,
1033 .unlink
= ecryptfs_unlink
,
1034 .symlink
= ecryptfs_symlink
,
1035 .mkdir
= ecryptfs_mkdir
,
1036 .rmdir
= ecryptfs_rmdir
,
1037 .mknod
= ecryptfs_mknod
,
1038 .rename
= ecryptfs_rename
,
1039 .permission
= ecryptfs_permission
,
1040 .setattr
= ecryptfs_setattr
,
1041 .setxattr
= ecryptfs_setxattr
,
1042 .getxattr
= ecryptfs_getxattr
,
1043 .listxattr
= ecryptfs_listxattr
,
1044 .removexattr
= ecryptfs_removexattr
1047 const struct inode_operations ecryptfs_main_iops
= {
1048 .permission
= ecryptfs_permission
,
1049 .setattr
= ecryptfs_setattr
,
1050 .setxattr
= ecryptfs_setxattr
,
1051 .getxattr
= ecryptfs_getxattr
,
1052 .listxattr
= ecryptfs_listxattr
,
1053 .removexattr
= ecryptfs_removexattr