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 "ecryptfs_kernel.h"
36 static struct dentry
*lock_parent(struct dentry
*dentry
)
40 dir
= dget(dentry
->d_parent
);
41 mutex_lock_nested(&(dir
->d_inode
->i_mutex
), I_MUTEX_PARENT
);
45 static void unlock_parent(struct dentry
*dentry
)
47 mutex_unlock(&(dentry
->d_parent
->d_inode
->i_mutex
));
48 dput(dentry
->d_parent
);
51 static void unlock_dir(struct dentry
*dir
)
53 mutex_unlock(&dir
->d_inode
->i_mutex
);
58 * ecryptfs_create_underlying_file
59 * @lower_dir_inode: inode of the parent in the lower fs of the new file
60 * @lower_dentry: New file's dentry in the lower fs
61 * @ecryptfs_dentry: New file's dentry in ecryptfs
62 * @mode: The mode of the new file
63 * @nd: nameidata of ecryptfs' parent's dentry & vfsmount
65 * Creates the file in the lower file system.
67 * Returns zero on success; non-zero on error condition
70 ecryptfs_create_underlying_file(struct inode
*lower_dir_inode
,
71 struct dentry
*dentry
, int mode
,
74 struct dentry
*lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
75 struct vfsmount
*lower_mnt
= ecryptfs_dentry_to_lower_mnt(dentry
);
76 struct dentry
*dentry_save
;
77 struct vfsmount
*vfsmount_save
;
80 dentry_save
= nd
->dentry
;
81 vfsmount_save
= nd
->mnt
;
82 nd
->dentry
= lower_dentry
;
84 rc
= vfs_create(lower_dir_inode
, lower_dentry
, mode
, nd
);
85 nd
->dentry
= dentry_save
;
86 nd
->mnt
= vfsmount_save
;
92 * @directory_inode: inode of the new file's dentry's parent in ecryptfs
93 * @ecryptfs_dentry: New file's dentry in ecryptfs
94 * @mode: The mode of the new file
95 * @nd: nameidata of ecryptfs' parent's dentry & vfsmount
97 * Creates the underlying file and the eCryptfs inode which will link to
98 * it. It will also update the eCryptfs directory inode to mimic the
99 * stat of the lower directory inode.
101 * Returns zero on success; non-zero on error condition
104 ecryptfs_do_create(struct inode
*directory_inode
,
105 struct dentry
*ecryptfs_dentry
, int mode
,
106 struct nameidata
*nd
)
109 struct dentry
*lower_dentry
;
110 struct dentry
*lower_dir_dentry
;
112 lower_dentry
= ecryptfs_dentry_to_lower(ecryptfs_dentry
);
113 lower_dir_dentry
= lock_parent(lower_dentry
);
114 if (unlikely(IS_ERR(lower_dir_dentry
))) {
115 ecryptfs_printk(KERN_ERR
, "Error locking directory of "
117 rc
= PTR_ERR(lower_dir_dentry
);
120 rc
= ecryptfs_create_underlying_file(lower_dir_dentry
->d_inode
,
121 ecryptfs_dentry
, mode
, nd
);
123 printk(KERN_ERR
"%s: Failure to create dentry in lower fs; "
124 "rc = [%d]\n", __FUNCTION__
, rc
);
127 rc
= ecryptfs_interpose(lower_dentry
, ecryptfs_dentry
,
128 directory_inode
->i_sb
, 0);
130 ecryptfs_printk(KERN_ERR
, "Failure in ecryptfs_interpose\n");
133 fsstack_copy_attr_times(directory_inode
, lower_dir_dentry
->d_inode
);
134 fsstack_copy_inode_size(directory_inode
, lower_dir_dentry
->d_inode
);
136 unlock_dir(lower_dir_dentry
);
143 * @ecryptfs_dentry: the eCryptfs dentry
145 * This is the code which will grow the file to its correct size.
147 static int grow_file(struct dentry
*ecryptfs_dentry
)
149 struct inode
*ecryptfs_inode
= ecryptfs_dentry
->d_inode
;
150 struct file fake_file
;
151 struct ecryptfs_file_info tmp_file_info
;
152 char zero_virt
[] = { 0x00 };
155 memset(&fake_file
, 0, sizeof(fake_file
));
156 fake_file
.f_path
.dentry
= ecryptfs_dentry
;
157 memset(&tmp_file_info
, 0, sizeof(tmp_file_info
));
158 ecryptfs_set_file_private(&fake_file
, &tmp_file_info
);
159 ecryptfs_set_file_lower(
161 ecryptfs_inode_to_private(ecryptfs_inode
)->lower_file
);
162 rc
= ecryptfs_write(&fake_file
, zero_virt
, 0, 1);
163 i_size_write(ecryptfs_inode
, 0);
164 rc
= ecryptfs_write_inode_size_to_metadata(ecryptfs_inode
);
165 ecryptfs_inode_to_private(ecryptfs_inode
)->crypt_stat
.flags
|=
171 * ecryptfs_initialize_file
173 * Cause the file to be changed from a basic empty file to an ecryptfs
174 * file with a header and first data page.
176 * Returns zero on success
178 static int ecryptfs_initialize_file(struct dentry
*ecryptfs_dentry
)
180 struct ecryptfs_crypt_stat
*crypt_stat
=
181 &ecryptfs_inode_to_private(ecryptfs_dentry
->d_inode
)->crypt_stat
;
184 if (S_ISDIR(ecryptfs_dentry
->d_inode
->i_mode
)) {
185 ecryptfs_printk(KERN_DEBUG
, "This is a directory\n");
186 crypt_stat
->flags
&= ~(ECRYPTFS_ENCRYPTED
);
189 crypt_stat
->flags
|= ECRYPTFS_NEW_FILE
;
190 ecryptfs_printk(KERN_DEBUG
, "Initializing crypto context\n");
191 rc
= ecryptfs_new_file_context(ecryptfs_dentry
);
193 ecryptfs_printk(KERN_ERR
, "Error creating new file "
194 "context; rc = [%d]\n", rc
);
197 rc
= ecryptfs_write_metadata(ecryptfs_dentry
);
199 printk(KERN_ERR
"Error writing headers; rc = [%d]\n", rc
);
202 rc
= grow_file(ecryptfs_dentry
);
204 printk(KERN_ERR
"Error growing file; rc = [%d]\n", rc
);
211 * @dir: The inode of the directory in which to create the file.
212 * @dentry: The eCryptfs dentry
213 * @mode: The mode of the new file.
216 * Creates a new file.
218 * Returns zero on success; non-zero on error condition
221 ecryptfs_create(struct inode
*directory_inode
, struct dentry
*ecryptfs_dentry
,
222 int mode
, struct nameidata
*nd
)
226 /* ecryptfs_do_create() calls ecryptfs_interpose(), which opens
227 * the crypt_stat->lower_file (persistent file) */
228 rc
= ecryptfs_do_create(directory_inode
, ecryptfs_dentry
, mode
, nd
);
230 ecryptfs_printk(KERN_WARNING
, "Failed to create file in"
231 "lower filesystem\n");
234 /* At this point, a file exists on "disk"; we need to make sure
235 * that this on disk file is prepared to be an ecryptfs file */
236 rc
= ecryptfs_initialize_file(ecryptfs_dentry
);
244 * @dentry: The dentry
245 * @nd: nameidata, may be NULL
247 * Find a file on disk. If the file does not exist, then we'll add it to the
248 * dentry cache and continue on to read it from the disk.
250 static struct dentry
*ecryptfs_lookup(struct inode
*dir
, struct dentry
*dentry
,
251 struct nameidata
*nd
)
254 struct dentry
*lower_dir_dentry
;
255 struct dentry
*lower_dentry
;
256 struct vfsmount
*lower_mnt
;
259 struct ecryptfs_crypt_stat
*crypt_stat
= NULL
;
260 struct ecryptfs_mount_crypt_stat
*mount_crypt_stat
;
261 char *page_virt
= NULL
;
262 struct inode
*lower_inode
;
265 lower_dir_dentry
= ecryptfs_dentry_to_lower(dentry
->d_parent
);
266 dentry
->d_op
= &ecryptfs_dops
;
267 if ((dentry
->d_name
.len
== 1 && !strcmp(dentry
->d_name
.name
, "."))
268 || (dentry
->d_name
.len
== 2
269 && !strcmp(dentry
->d_name
.name
, ".."))) {
273 encoded_namelen
= ecryptfs_encode_filename(crypt_stat
,
277 if (encoded_namelen
< 0) {
278 rc
= encoded_namelen
;
282 ecryptfs_printk(KERN_DEBUG
, "encoded_name = [%s]; encoded_namelen "
283 "= [%d]\n", encoded_name
, encoded_namelen
);
284 lower_dentry
= lookup_one_len(encoded_name
, lower_dir_dentry
,
285 encoded_namelen
- 1);
287 if (IS_ERR(lower_dentry
)) {
288 ecryptfs_printk(KERN_ERR
, "ERR from lower_dentry\n");
289 rc
= PTR_ERR(lower_dentry
);
293 lower_mnt
= mntget(ecryptfs_dentry_to_lower_mnt(dentry
->d_parent
));
294 ecryptfs_printk(KERN_DEBUG
, "lower_dentry = [%p]; lower_dentry->"
295 "d_name.name = [%s]\n", lower_dentry
,
296 lower_dentry
->d_name
.name
);
297 lower_inode
= lower_dentry
->d_inode
;
298 fsstack_copy_attr_atime(dir
, lower_dir_dentry
->d_inode
);
299 BUG_ON(!atomic_read(&lower_dentry
->d_count
));
300 ecryptfs_set_dentry_private(dentry
,
301 kmem_cache_alloc(ecryptfs_dentry_info_cache
,
303 if (!ecryptfs_dentry_to_private(dentry
)) {
305 ecryptfs_printk(KERN_ERR
, "Out of memory whilst attempting "
306 "to allocate ecryptfs_dentry_info struct\n");
309 ecryptfs_set_dentry_lower(dentry
, lower_dentry
);
310 ecryptfs_set_dentry_lower_mnt(dentry
, lower_mnt
);
311 if (!lower_dentry
->d_inode
) {
312 /* We want to add because we couldn't find in lower */
316 rc
= ecryptfs_interpose(lower_dentry
, dentry
, dir
->i_sb
, 1);
318 ecryptfs_printk(KERN_ERR
, "Error interposing\n");
321 if (S_ISDIR(lower_inode
->i_mode
)) {
322 ecryptfs_printk(KERN_DEBUG
, "Is a directory; returning\n");
325 if (S_ISLNK(lower_inode
->i_mode
)) {
326 ecryptfs_printk(KERN_DEBUG
, "Is a symlink; returning\n");
329 if (special_file(lower_inode
->i_mode
)) {
330 ecryptfs_printk(KERN_DEBUG
, "Is a special file; returning\n");
334 ecryptfs_printk(KERN_DEBUG
, "We have a NULL nd, just leave"
335 "as we *think* we are about to unlink\n");
338 /* Released in this function */
339 page_virt
= kmem_cache_zalloc(ecryptfs_header_cache_2
,
343 ecryptfs_printk(KERN_ERR
,
344 "Cannot ecryptfs_kmalloc a page\n");
347 crypt_stat
= &ecryptfs_inode_to_private(dentry
->d_inode
)->crypt_stat
;
348 if (!(crypt_stat
->flags
& ECRYPTFS_POLICY_APPLIED
))
349 ecryptfs_set_default_sizes(crypt_stat
);
350 rc
= ecryptfs_read_and_validate_header_region(page_virt
,
353 rc
= ecryptfs_read_and_validate_xattr_region(page_virt
, dentry
);
355 printk(KERN_DEBUG
"Valid metadata not found in header "
356 "region or xattr region; treating file as "
359 kmem_cache_free(ecryptfs_header_cache_2
, page_virt
);
362 crypt_stat
->flags
|= ECRYPTFS_METADATA_IN_XATTR
;
364 mount_crypt_stat
= &ecryptfs_superblock_to_private(
365 dentry
->d_sb
)->mount_crypt_stat
;
366 if (mount_crypt_stat
->flags
& ECRYPTFS_ENCRYPTED_VIEW_ENABLED
) {
367 if (crypt_stat
->flags
& ECRYPTFS_METADATA_IN_XATTR
)
368 file_size
= (crypt_stat
->num_header_bytes_at_front
369 + i_size_read(lower_dentry
->d_inode
));
371 file_size
= i_size_read(lower_dentry
->d_inode
);
373 memcpy(&file_size
, page_virt
, sizeof(file_size
));
374 file_size
= be64_to_cpu(file_size
);
376 i_size_write(dentry
->d_inode
, (loff_t
)file_size
);
377 kmem_cache_free(ecryptfs_header_cache_2
, page_virt
);
387 static int ecryptfs_link(struct dentry
*old_dentry
, struct inode
*dir
,
388 struct dentry
*new_dentry
)
390 struct dentry
*lower_old_dentry
;
391 struct dentry
*lower_new_dentry
;
392 struct dentry
*lower_dir_dentry
;
396 file_size_save
= i_size_read(old_dentry
->d_inode
);
397 lower_old_dentry
= ecryptfs_dentry_to_lower(old_dentry
);
398 lower_new_dentry
= ecryptfs_dentry_to_lower(new_dentry
);
399 dget(lower_old_dentry
);
400 dget(lower_new_dentry
);
401 lower_dir_dentry
= lock_parent(lower_new_dentry
);
402 rc
= vfs_link(lower_old_dentry
, lower_dir_dentry
->d_inode
,
404 if (rc
|| !lower_new_dentry
->d_inode
)
406 rc
= ecryptfs_interpose(lower_new_dentry
, new_dentry
, dir
->i_sb
, 0);
409 fsstack_copy_attr_times(dir
, lower_new_dentry
->d_inode
);
410 fsstack_copy_inode_size(dir
, lower_new_dentry
->d_inode
);
411 old_dentry
->d_inode
->i_nlink
=
412 ecryptfs_inode_to_lower(old_dentry
->d_inode
)->i_nlink
;
413 i_size_write(new_dentry
->d_inode
, file_size_save
);
415 unlock_dir(lower_dir_dentry
);
416 dput(lower_new_dentry
);
417 dput(lower_old_dentry
);
418 d_drop(lower_old_dentry
);
424 static int ecryptfs_unlink(struct inode
*dir
, struct dentry
*dentry
)
427 struct dentry
*lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
428 struct inode
*lower_dir_inode
= ecryptfs_inode_to_lower(dir
);
430 lock_parent(lower_dentry
);
431 rc
= vfs_unlink(lower_dir_inode
, lower_dentry
);
433 printk(KERN_ERR
"Error in vfs_unlink; rc = [%d]\n", rc
);
436 fsstack_copy_attr_times(dir
, lower_dir_inode
);
437 dentry
->d_inode
->i_nlink
=
438 ecryptfs_inode_to_lower(dentry
->d_inode
)->i_nlink
;
439 dentry
->d_inode
->i_ctime
= dir
->i_ctime
;
442 unlock_parent(lower_dentry
);
446 static int ecryptfs_symlink(struct inode
*dir
, struct dentry
*dentry
,
450 struct dentry
*lower_dentry
;
451 struct dentry
*lower_dir_dentry
;
453 char *encoded_symname
;
455 struct ecryptfs_crypt_stat
*crypt_stat
= NULL
;
457 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
459 lower_dir_dentry
= lock_parent(lower_dentry
);
461 encoded_symlen
= ecryptfs_encode_filename(crypt_stat
, symname
,
464 if (encoded_symlen
< 0) {
468 rc
= vfs_symlink(lower_dir_dentry
->d_inode
, lower_dentry
,
469 encoded_symname
, mode
);
470 kfree(encoded_symname
);
471 if (rc
|| !lower_dentry
->d_inode
)
473 rc
= ecryptfs_interpose(lower_dentry
, dentry
, dir
->i_sb
, 0);
476 fsstack_copy_attr_times(dir
, lower_dir_dentry
->d_inode
);
477 fsstack_copy_inode_size(dir
, lower_dir_dentry
->d_inode
);
479 unlock_dir(lower_dir_dentry
);
481 if (!dentry
->d_inode
)
486 static int ecryptfs_mkdir(struct inode
*dir
, struct dentry
*dentry
, int mode
)
489 struct dentry
*lower_dentry
;
490 struct dentry
*lower_dir_dentry
;
492 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
493 lower_dir_dentry
= lock_parent(lower_dentry
);
494 rc
= vfs_mkdir(lower_dir_dentry
->d_inode
, lower_dentry
, mode
);
495 if (rc
|| !lower_dentry
->d_inode
)
497 rc
= ecryptfs_interpose(lower_dentry
, dentry
, dir
->i_sb
, 0);
500 fsstack_copy_attr_times(dir
, lower_dir_dentry
->d_inode
);
501 fsstack_copy_inode_size(dir
, lower_dir_dentry
->d_inode
);
502 dir
->i_nlink
= lower_dir_dentry
->d_inode
->i_nlink
;
504 unlock_dir(lower_dir_dentry
);
505 if (!dentry
->d_inode
)
510 static int ecryptfs_rmdir(struct inode
*dir
, struct dentry
*dentry
)
512 struct dentry
*lower_dentry
;
513 struct dentry
*lower_dir_dentry
;
516 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
518 lower_dir_dentry
= lock_parent(lower_dentry
);
520 rc
= vfs_rmdir(lower_dir_dentry
->d_inode
, lower_dentry
);
523 d_delete(lower_dentry
);
524 fsstack_copy_attr_times(dir
, lower_dir_dentry
->d_inode
);
525 dir
->i_nlink
= lower_dir_dentry
->d_inode
->i_nlink
;
526 unlock_dir(lower_dir_dentry
);
534 ecryptfs_mknod(struct inode
*dir
, struct dentry
*dentry
, int mode
, dev_t dev
)
537 struct dentry
*lower_dentry
;
538 struct dentry
*lower_dir_dentry
;
540 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
541 lower_dir_dentry
= lock_parent(lower_dentry
);
542 rc
= vfs_mknod(lower_dir_dentry
->d_inode
, lower_dentry
, mode
, dev
);
543 if (rc
|| !lower_dentry
->d_inode
)
545 rc
= ecryptfs_interpose(lower_dentry
, dentry
, dir
->i_sb
, 0);
548 fsstack_copy_attr_times(dir
, lower_dir_dentry
->d_inode
);
549 fsstack_copy_inode_size(dir
, lower_dir_dentry
->d_inode
);
551 unlock_dir(lower_dir_dentry
);
552 if (!dentry
->d_inode
)
558 ecryptfs_rename(struct inode
*old_dir
, struct dentry
*old_dentry
,
559 struct inode
*new_dir
, struct dentry
*new_dentry
)
562 struct dentry
*lower_old_dentry
;
563 struct dentry
*lower_new_dentry
;
564 struct dentry
*lower_old_dir_dentry
;
565 struct dentry
*lower_new_dir_dentry
;
567 lower_old_dentry
= ecryptfs_dentry_to_lower(old_dentry
);
568 lower_new_dentry
= ecryptfs_dentry_to_lower(new_dentry
);
569 dget(lower_old_dentry
);
570 dget(lower_new_dentry
);
571 lower_old_dir_dentry
= dget_parent(lower_old_dentry
);
572 lower_new_dir_dentry
= dget_parent(lower_new_dentry
);
573 lock_rename(lower_old_dir_dentry
, lower_new_dir_dentry
);
574 rc
= vfs_rename(lower_old_dir_dentry
->d_inode
, lower_old_dentry
,
575 lower_new_dir_dentry
->d_inode
, lower_new_dentry
);
578 fsstack_copy_attr_all(new_dir
, lower_new_dir_dentry
->d_inode
, NULL
);
579 if (new_dir
!= old_dir
)
580 fsstack_copy_attr_all(old_dir
, lower_old_dir_dentry
->d_inode
, NULL
);
582 unlock_rename(lower_old_dir_dentry
, lower_new_dir_dentry
);
583 dput(lower_new_dentry
->d_parent
);
584 dput(lower_old_dentry
->d_parent
);
585 dput(lower_new_dentry
);
586 dput(lower_old_dentry
);
591 ecryptfs_readlink(struct dentry
*dentry
, char __user
* buf
, int bufsiz
)
594 struct dentry
*lower_dentry
;
598 struct ecryptfs_crypt_stat
*crypt_stat
;
600 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
601 if (!lower_dentry
->d_inode
->i_op
||
602 !lower_dentry
->d_inode
->i_op
->readlink
) {
606 /* Released in this function */
607 lower_buf
= kmalloc(bufsiz
, GFP_KERNEL
);
608 if (lower_buf
== NULL
) {
609 ecryptfs_printk(KERN_ERR
, "Out of memory\n");
615 ecryptfs_printk(KERN_DEBUG
, "Calling readlink w/ "
616 "lower_dentry->d_name.name = [%s]\n",
617 lower_dentry
->d_name
.name
);
618 rc
= lower_dentry
->d_inode
->i_op
->readlink(lower_dentry
,
619 (char __user
*)lower_buf
,
624 rc
= ecryptfs_decode_filename(crypt_stat
, lower_buf
, rc
,
627 goto out_free_lower_buf
;
629 ecryptfs_printk(KERN_DEBUG
, "Copying [%d] bytes "
630 "to userspace: [%*s]\n", rc
,
632 if (copy_to_user(buf
, decoded_name
, rc
))
636 fsstack_copy_attr_atime(dentry
->d_inode
,
637 lower_dentry
->d_inode
);
645 static void *ecryptfs_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
648 int len
= PAGE_SIZE
, rc
;
651 /* Released in ecryptfs_put_link(); only release here on error */
652 buf
= kmalloc(len
, GFP_KERNEL
);
659 ecryptfs_printk(KERN_DEBUG
, "Calling readlink w/ "
660 "dentry->d_name.name = [%s]\n", dentry
->d_name
.name
);
661 rc
= dentry
->d_inode
->i_op
->readlink(dentry
, (char __user
*)buf
, len
);
667 nd_set_link(nd
, buf
);
676 ecryptfs_put_link(struct dentry
*dentry
, struct nameidata
*nd
, void *ptr
)
679 kfree(nd_get_link(nd
));
683 * upper_size_to_lower_size
684 * @crypt_stat: Crypt_stat associated with file
685 * @upper_size: Size of the upper file
687 * Calculate the required size of the lower file based on the
688 * specified size of the upper file. This calculation is based on the
689 * number of headers in the underlying file and the extent size.
691 * Returns Calculated size of the lower file.
694 upper_size_to_lower_size(struct ecryptfs_crypt_stat
*crypt_stat
,
699 lower_size
= crypt_stat
->num_header_bytes_at_front
;
700 if (upper_size
!= 0) {
703 num_extents
= upper_size
>> crypt_stat
->extent_shift
;
704 if (upper_size
& ~crypt_stat
->extent_mask
)
706 lower_size
+= (num_extents
* crypt_stat
->extent_size
);
713 * @dentry: The ecryptfs layer dentry
714 * @new_length: The length to expand the file to
716 * Function to handle truncations modifying the size of the file. Note
717 * that the file sizes are interpolated. When expanding, we are simply
718 * writing strings of 0's out. When truncating, we need to modify the
719 * underlying file size according to the page index interpolations.
721 * Returns zero on success; non-zero otherwise
723 int ecryptfs_truncate(struct dentry
*dentry
, loff_t new_length
)
726 struct inode
*inode
= dentry
->d_inode
;
727 struct dentry
*lower_dentry
;
728 struct file fake_ecryptfs_file
;
729 struct ecryptfs_crypt_stat
*crypt_stat
;
730 loff_t i_size
= i_size_read(inode
);
731 loff_t lower_size_before_truncate
;
732 loff_t lower_size_after_truncate
;
734 if (unlikely((new_length
== i_size
)))
736 crypt_stat
= &ecryptfs_inode_to_private(dentry
->d_inode
)->crypt_stat
;
737 /* Set up a fake ecryptfs file, this is used to interface with
738 * the file in the underlying filesystem so that the
739 * truncation has an effect there as well. */
740 memset(&fake_ecryptfs_file
, 0, sizeof(fake_ecryptfs_file
));
741 fake_ecryptfs_file
.f_path
.dentry
= dentry
;
742 /* Released at out_free: label */
743 ecryptfs_set_file_private(&fake_ecryptfs_file
,
744 kmem_cache_alloc(ecryptfs_file_info_cache
,
746 if (unlikely(!ecryptfs_file_to_private(&fake_ecryptfs_file
))) {
750 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
751 ecryptfs_set_file_lower(
753 ecryptfs_inode_to_private(dentry
->d_inode
)->lower_file
);
754 /* Switch on growing or shrinking file */
755 if (new_length
> i_size
) {
756 char zero
[] = { 0x00 };
758 /* Write a single 0 at the last position of the file;
759 * this triggers code that will fill in 0's throughout
760 * the intermediate portion of the previous end of the
761 * file and the new and of the file */
762 rc
= ecryptfs_write(&fake_ecryptfs_file
, zero
,
763 (new_length
- 1), 1);
764 } else { /* new_length < i_size_read(inode) */
765 /* We're chopping off all the pages down do the page
766 * in which new_length is located. Fill in the end of
767 * that page from (new_length & ~PAGE_CACHE_MASK) to
768 * PAGE_CACHE_SIZE with zeros. */
769 size_t num_zeros
= (PAGE_CACHE_SIZE
770 - (new_length
& ~PAGE_CACHE_MASK
));
775 zeros_virt
= kzalloc(num_zeros
, GFP_KERNEL
);
780 rc
= ecryptfs_write(&fake_ecryptfs_file
, zeros_virt
,
781 new_length
, num_zeros
);
784 printk(KERN_ERR
"Error attempting to zero out "
785 "the remainder of the end page on "
786 "reducing truncate; rc = [%d]\n", rc
);
790 vmtruncate(inode
, new_length
);
791 rc
= ecryptfs_write_inode_size_to_metadata(inode
);
793 printk(KERN_ERR
"Problem with "
794 "ecryptfs_write_inode_size_to_metadata; "
798 /* We are reducing the size of the ecryptfs file, and need to
799 * know if we need to reduce the size of the lower file. */
800 lower_size_before_truncate
=
801 upper_size_to_lower_size(crypt_stat
, i_size
);
802 lower_size_after_truncate
=
803 upper_size_to_lower_size(crypt_stat
, new_length
);
804 if (lower_size_after_truncate
< lower_size_before_truncate
)
805 vmtruncate(lower_dentry
->d_inode
,
806 lower_size_after_truncate
);
809 if (ecryptfs_file_to_private(&fake_ecryptfs_file
))
810 kmem_cache_free(ecryptfs_file_info_cache
,
811 ecryptfs_file_to_private(&fake_ecryptfs_file
));
817 ecryptfs_permission(struct inode
*inode
, int mask
, struct nameidata
*nd
)
822 struct vfsmount
*vfsmnt_save
= nd
->mnt
;
823 struct dentry
*dentry_save
= nd
->dentry
;
825 nd
->mnt
= ecryptfs_dentry_to_lower_mnt(nd
->dentry
);
826 nd
->dentry
= ecryptfs_dentry_to_lower(nd
->dentry
);
827 rc
= permission(ecryptfs_inode_to_lower(inode
), mask
, nd
);
828 nd
->mnt
= vfsmnt_save
;
829 nd
->dentry
= dentry_save
;
831 rc
= permission(ecryptfs_inode_to_lower(inode
), mask
, NULL
);
837 * @dentry: dentry handle to the inode to modify
838 * @ia: Structure with flags of what to change and values
840 * Updates the metadata of an inode. If the update is to the size
841 * i.e. truncation, then ecryptfs_truncate will handle the size modification
842 * of both the ecryptfs inode and the lower inode.
844 * All other metadata changes will be passed right to the lower filesystem,
845 * and we will just update our inode to look like the lower.
847 static int ecryptfs_setattr(struct dentry
*dentry
, struct iattr
*ia
)
850 struct dentry
*lower_dentry
;
852 struct inode
*lower_inode
;
853 struct ecryptfs_crypt_stat
*crypt_stat
;
855 crypt_stat
= &ecryptfs_inode_to_private(dentry
->d_inode
)->crypt_stat
;
856 if (!(crypt_stat
->flags
& ECRYPTFS_STRUCT_INITIALIZED
))
857 ecryptfs_init_crypt_stat(crypt_stat
);
858 inode
= dentry
->d_inode
;
859 lower_inode
= ecryptfs_inode_to_lower(inode
);
860 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
861 mutex_lock(&crypt_stat
->cs_mutex
);
862 if (S_ISDIR(dentry
->d_inode
->i_mode
))
863 crypt_stat
->flags
&= ~(ECRYPTFS_ENCRYPTED
);
864 else if (S_ISREG(dentry
->d_inode
->i_mode
)
865 && (!(crypt_stat
->flags
& ECRYPTFS_POLICY_APPLIED
)
866 || !(crypt_stat
->flags
& ECRYPTFS_KEY_VALID
))) {
867 struct ecryptfs_mount_crypt_stat
*mount_crypt_stat
;
869 mount_crypt_stat
= &ecryptfs_superblock_to_private(
870 dentry
->d_sb
)->mount_crypt_stat
;
871 rc
= ecryptfs_read_metadata(dentry
);
873 if (!(mount_crypt_stat
->flags
874 & ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED
)) {
876 printk(KERN_WARNING
"Either the lower file "
877 "is not in a valid eCryptfs format, "
878 "or the key could not be retrieved. "
879 "Plaintext passthrough mode is not "
880 "enabled; returning -EIO\n");
881 mutex_unlock(&crypt_stat
->cs_mutex
);
885 crypt_stat
->flags
&= ~(ECRYPTFS_ENCRYPTED
);
886 mutex_unlock(&crypt_stat
->cs_mutex
);
890 mutex_unlock(&crypt_stat
->cs_mutex
);
891 if (ia
->ia_valid
& ATTR_SIZE
) {
892 ecryptfs_printk(KERN_DEBUG
,
893 "ia->ia_valid = [0x%x] ATTR_SIZE" " = [0x%x]\n",
894 ia
->ia_valid
, ATTR_SIZE
);
895 rc
= ecryptfs_truncate(dentry
, ia
->ia_size
);
896 /* ecryptfs_truncate handles resizing of the lower file */
897 ia
->ia_valid
&= ~ATTR_SIZE
;
898 ecryptfs_printk(KERN_DEBUG
, "ia->ia_valid = [%x]\n",
905 * mode change is for clearing setuid/setgid bits. Allow lower fs
906 * to interpret this in its own way.
908 if (ia
->ia_valid
& (ATTR_KILL_SUID
| ATTR_KILL_SGID
))
909 ia
->ia_valid
&= ~ATTR_MODE
;
911 rc
= notify_change(lower_dentry
, ia
);
913 fsstack_copy_attr_all(inode
, lower_inode
, NULL
);
918 ecryptfs_setxattr(struct dentry
*dentry
, const char *name
, const void *value
,
919 size_t size
, int flags
)
922 struct dentry
*lower_dentry
;
924 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
925 if (!lower_dentry
->d_inode
->i_op
->setxattr
) {
929 mutex_lock(&lower_dentry
->d_inode
->i_mutex
);
930 rc
= lower_dentry
->d_inode
->i_op
->setxattr(lower_dentry
, name
, value
,
932 mutex_unlock(&lower_dentry
->d_inode
->i_mutex
);
938 ecryptfs_getxattr_lower(struct dentry
*lower_dentry
, const char *name
,
939 void *value
, size_t size
)
943 if (!lower_dentry
->d_inode
->i_op
->getxattr
) {
947 mutex_lock(&lower_dentry
->d_inode
->i_mutex
);
948 rc
= lower_dentry
->d_inode
->i_op
->getxattr(lower_dentry
, name
, value
,
950 mutex_unlock(&lower_dentry
->d_inode
->i_mutex
);
956 ecryptfs_getxattr(struct dentry
*dentry
, const char *name
, void *value
,
959 return ecryptfs_getxattr_lower(ecryptfs_dentry_to_lower(dentry
), name
,
964 ecryptfs_listxattr(struct dentry
*dentry
, char *list
, size_t size
)
967 struct dentry
*lower_dentry
;
969 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
970 if (!lower_dentry
->d_inode
->i_op
->listxattr
) {
974 mutex_lock(&lower_dentry
->d_inode
->i_mutex
);
975 rc
= lower_dentry
->d_inode
->i_op
->listxattr(lower_dentry
, list
, size
);
976 mutex_unlock(&lower_dentry
->d_inode
->i_mutex
);
981 static int ecryptfs_removexattr(struct dentry
*dentry
, const char *name
)
984 struct dentry
*lower_dentry
;
986 lower_dentry
= ecryptfs_dentry_to_lower(dentry
);
987 if (!lower_dentry
->d_inode
->i_op
->removexattr
) {
991 mutex_lock(&lower_dentry
->d_inode
->i_mutex
);
992 rc
= lower_dentry
->d_inode
->i_op
->removexattr(lower_dentry
, name
);
993 mutex_unlock(&lower_dentry
->d_inode
->i_mutex
);
998 int ecryptfs_inode_test(struct inode
*inode
, void *candidate_lower_inode
)
1000 if ((ecryptfs_inode_to_lower(inode
)
1001 == (struct inode
*)candidate_lower_inode
))
1007 int ecryptfs_inode_set(struct inode
*inode
, void *lower_inode
)
1009 ecryptfs_init_inode(inode
, (struct inode
*)lower_inode
);
1013 const struct inode_operations ecryptfs_symlink_iops
= {
1014 .readlink
= ecryptfs_readlink
,
1015 .follow_link
= ecryptfs_follow_link
,
1016 .put_link
= ecryptfs_put_link
,
1017 .permission
= ecryptfs_permission
,
1018 .setattr
= ecryptfs_setattr
,
1019 .setxattr
= ecryptfs_setxattr
,
1020 .getxattr
= ecryptfs_getxattr
,
1021 .listxattr
= ecryptfs_listxattr
,
1022 .removexattr
= ecryptfs_removexattr
1025 const struct inode_operations ecryptfs_dir_iops
= {
1026 .create
= ecryptfs_create
,
1027 .lookup
= ecryptfs_lookup
,
1028 .link
= ecryptfs_link
,
1029 .unlink
= ecryptfs_unlink
,
1030 .symlink
= ecryptfs_symlink
,
1031 .mkdir
= ecryptfs_mkdir
,
1032 .rmdir
= ecryptfs_rmdir
,
1033 .mknod
= ecryptfs_mknod
,
1034 .rename
= ecryptfs_rename
,
1035 .permission
= ecryptfs_permission
,
1036 .setattr
= ecryptfs_setattr
,
1037 .setxattr
= ecryptfs_setxattr
,
1038 .getxattr
= ecryptfs_getxattr
,
1039 .listxattr
= ecryptfs_listxattr
,
1040 .removexattr
= ecryptfs_removexattr
1043 const struct inode_operations ecryptfs_main_iops
= {
1044 .permission
= ecryptfs_permission
,
1045 .setattr
= ecryptfs_setattr
,
1046 .setxattr
= ecryptfs_setxattr
,
1047 .getxattr
= ecryptfs_getxattr
,
1048 .listxattr
= ecryptfs_listxattr
,
1049 .removexattr
= ecryptfs_removexattr