blob: 38309ce94d7170629afe9c6bb586a2570ec5ed11 [file] [log] [blame]
Michael Halcrow237fead2006-10-04 02:16:22 -07001/**
2 * eCryptfs: Linux filesystem encryption layer
3 *
4 * Copyright (C) 1997-2004 Erez Zadok
5 * Copyright (C) 2001-2004 Stony Brook University
Michael Halcrowdd2a3b72007-02-12 00:53:46 -08006 * Copyright (C) 2004-2007 International Business Machines Corp.
Michael Halcrow237fead2006-10-04 02:16:22 -07007 * Author(s): Michael A. Halcrow <mahalcro@us.ibm.com>
8 * Michael C. Thompsion <mcthomps@us.ibm.com>
9 *
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.
14 *
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.
19 *
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
23 * 02111-1307, USA.
24 */
25
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>
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -080033#include <linux/fs_stack.h>
Harvey Harrison0a688ad2008-07-23 21:30:07 -070034#include <asm/unaligned.h>
Michael Halcrow237fead2006-10-04 02:16:22 -070035#include "ecryptfs_kernel.h"
36
37static struct dentry *lock_parent(struct dentry *dentry)
38{
39 struct dentry *dir;
40
Miklos Szeredi8dc4e372008-05-12 14:02:04 -070041 dir = dget_parent(dentry);
Peter Zijlstra908e0a82007-03-07 20:41:30 -080042 mutex_lock_nested(&(dir->d_inode->i_mutex), I_MUTEX_PARENT);
Michael Halcrow237fead2006-10-04 02:16:22 -070043 return dir;
44}
45
Michael Halcrow237fead2006-10-04 02:16:22 -070046static void unlock_dir(struct dentry *dir)
47{
48 mutex_unlock(&dir->d_inode->i_mutex);
49 dput(dir);
50}
51
Michael Halcrow237fead2006-10-04 02:16:22 -070052/**
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
59 *
60 * Creates the file in the lower file system.
61 *
62 * Returns zero on success; non-zero on error condition
63 */
64static int
65ecryptfs_create_underlying_file(struct inode *lower_dir_inode,
66 struct dentry *dentry, int mode,
67 struct nameidata *nd)
68{
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;
73 int rc;
74
Jan Blunck4ac91372008-02-14 19:34:32 -080075 dentry_save = nd->path.dentry;
76 vfsmount_save = nd->path.mnt;
77 nd->path.dentry = lower_dentry;
78 nd->path.mnt = lower_mnt;
Michael Halcrow237fead2006-10-04 02:16:22 -070079 rc = vfs_create(lower_dir_inode, lower_dentry, mode, nd);
Jan Blunck4ac91372008-02-14 19:34:32 -080080 nd->path.dentry = dentry_save;
81 nd->path.mnt = vfsmount_save;
Michael Halcrow237fead2006-10-04 02:16:22 -070082 return rc;
83}
84
85/**
86 * ecryptfs_do_create
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
91 *
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.
95 *
96 * Returns zero on success; non-zero on error condition
97 */
98static int
99ecryptfs_do_create(struct inode *directory_inode,
100 struct dentry *ecryptfs_dentry, int mode,
101 struct nameidata *nd)
102{
103 int rc;
104 struct dentry *lower_dentry;
105 struct dentry *lower_dir_dentry;
106
107 lower_dentry = ecryptfs_dentry_to_lower(ecryptfs_dentry);
108 lower_dir_dentry = lock_parent(lower_dentry);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -0700109 if (IS_ERR(lower_dir_dentry)) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700110 ecryptfs_printk(KERN_ERR, "Error locking directory of "
111 "dentry\n");
112 rc = PTR_ERR(lower_dir_dentry);
113 goto out;
114 }
115 rc = ecryptfs_create_underlying_file(lower_dir_dentry->d_inode,
116 ecryptfs_dentry, mode, nd);
Michael Halcrow4981e082007-10-16 01:28:09 -0700117 if (rc) {
Michael Halcrowcaeeeec2008-01-08 15:33:02 -0800118 printk(KERN_ERR "%s: Failure to create dentry in lower fs; "
Harvey Harrison18d1dbf2008-04-29 00:59:48 -0700119 "rc = [%d]\n", __func__, rc);
Michael Halcrowcaeeeec2008-01-08 15:33:02 -0800120 goto out_lock;
Michael Halcrow237fead2006-10-04 02:16:22 -0700121 }
122 rc = ecryptfs_interpose(lower_dentry, ecryptfs_dentry,
123 directory_inode->i_sb, 0);
124 if (rc) {
125 ecryptfs_printk(KERN_ERR, "Failure in ecryptfs_interpose\n");
126 goto out_lock;
127 }
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800128 fsstack_copy_attr_times(directory_inode, lower_dir_dentry->d_inode);
129 fsstack_copy_inode_size(directory_inode, lower_dir_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700130out_lock:
131 unlock_dir(lower_dir_dentry);
132out:
133 return rc;
134}
135
136/**
137 * grow_file
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -0700138 * @ecryptfs_dentry: the eCryptfs dentry
Michael Halcrow237fead2006-10-04 02:16:22 -0700139 *
140 * This is the code which will grow the file to its correct size.
141 */
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -0700142static int grow_file(struct dentry *ecryptfs_dentry)
Michael Halcrow237fead2006-10-04 02:16:22 -0700143{
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -0700144 struct inode *ecryptfs_inode = ecryptfs_dentry->d_inode;
Michael Halcrow237fead2006-10-04 02:16:22 -0700145 struct file fake_file;
146 struct ecryptfs_file_info tmp_file_info;
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -0700147 char zero_virt[] = { 0x00 };
148 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700149
150 memset(&fake_file, 0, sizeof(fake_file));
Josef "Jeff" Sipekbd243a42006-12-08 02:36:48 -0800151 fake_file.f_path.dentry = ecryptfs_dentry;
Michael Halcrow237fead2006-10-04 02:16:22 -0700152 memset(&tmp_file_info, 0, sizeof(tmp_file_info));
153 ecryptfs_set_file_private(&fake_file, &tmp_file_info);
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -0700154 ecryptfs_set_file_lower(
155 &fake_file,
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 |=
161 ECRYPTFS_NEW_FILE;
Michael Halcrow237fead2006-10-04 02:16:22 -0700162 return rc;
163}
164
165/**
166 * ecryptfs_initialize_file
167 *
168 * Cause the file to be changed from a basic empty file to an ecryptfs
169 * file with a header and first data page.
170 *
171 * Returns zero on success
172 */
173static int ecryptfs_initialize_file(struct dentry *ecryptfs_dentry)
174{
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -0700175 struct ecryptfs_crypt_stat *crypt_stat =
176 &ecryptfs_inode_to_private(ecryptfs_dentry->d_inode)->crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700177 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700178
Michael Halcrow237fead2006-10-04 02:16:22 -0700179 if (S_ISDIR(ecryptfs_dentry->d_inode->i_mode)) {
180 ecryptfs_printk(KERN_DEBUG, "This is a directory\n");
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800181 crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED);
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -0700182 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700183 }
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800184 crypt_stat->flags |= ECRYPTFS_NEW_FILE;
Michael Halcrow237fead2006-10-04 02:16:22 -0700185 ecryptfs_printk(KERN_DEBUG, "Initializing crypto context\n");
186 rc = ecryptfs_new_file_context(ecryptfs_dentry);
187 if (rc) {
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -0700188 ecryptfs_printk(KERN_ERR, "Error creating new file "
189 "context; rc = [%d]\n", rc);
190 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700191 }
Michael Halcrow391b52f2008-07-23 21:30:08 -0700192 if (!ecryptfs_inode_to_private(ecryptfs_dentry->d_inode)->lower_file) {
193 rc = ecryptfs_init_persistent_file(ecryptfs_dentry);
194 if (rc) {
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);
199 goto out;
200 }
201 }
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -0700202 rc = ecryptfs_write_metadata(ecryptfs_dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700203 if (rc) {
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -0700204 printk(KERN_ERR "Error writing headers; rc = [%d]\n", rc);
205 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700206 }
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -0700207 rc = grow_file(ecryptfs_dentry);
Michael Halcrow5dda6992007-10-16 01:28:06 -0700208 if (rc)
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -0700209 printk(KERN_ERR "Error growing file; rc = [%d]\n", rc);
Michael Halcrow237fead2006-10-04 02:16:22 -0700210out:
211 return rc;
212}
213
214/**
215 * ecryptfs_create
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.
219 * @nd: nameidata
220 *
221 * Creates a new file.
222 *
223 * Returns zero on success; non-zero on error condition
224 */
225static int
226ecryptfs_create(struct inode *directory_inode, struct dentry *ecryptfs_dentry,
227 int mode, struct nameidata *nd)
228{
229 int rc;
230
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800231 /* ecryptfs_do_create() calls ecryptfs_interpose() */
Michael Halcrow237fead2006-10-04 02:16:22 -0700232 rc = ecryptfs_do_create(directory_inode, ecryptfs_dentry, mode, nd);
233 if (unlikely(rc)) {
234 ecryptfs_printk(KERN_WARNING, "Failed to create file in"
235 "lower filesystem\n");
236 goto out;
237 }
238 /* At this point, a file exists on "disk"; we need to make sure
239 * that this on disk file is prepared to be an ecryptfs file */
240 rc = ecryptfs_initialize_file(ecryptfs_dentry);
241out:
242 return rc;
243}
244
245/**
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800246 * ecryptfs_lookup_and_interpose_lower - Perform a lookup
Michael Halcrow237fead2006-10-04 02:16:22 -0700247 */
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800248int ecryptfs_lookup_and_interpose_lower(struct dentry *ecryptfs_dentry,
249 struct dentry *lower_dentry,
250 struct ecryptfs_crypt_stat *crypt_stat,
251 struct inode *ecryptfs_dir_inode,
252 struct nameidata *ecryptfs_nd)
Michael Halcrow237fead2006-10-04 02:16:22 -0700253{
Michael Halcrow237fead2006-10-04 02:16:22 -0700254 struct dentry *lower_dir_dentry;
Michael Halcrow237fead2006-10-04 02:16:22 -0700255 struct vfsmount *lower_mnt;
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800256 struct inode *lower_inode;
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800257 struct ecryptfs_mount_crypt_stat *mount_crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700258 char *page_virt = NULL;
Michael Halcrow237fead2006-10-04 02:16:22 -0700259 u64 file_size;
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800260 int rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700261
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800262 lower_dir_dentry = lower_dentry->d_parent;
263 lower_mnt = mntget(ecryptfs_dentry_to_lower_mnt(
264 ecryptfs_dentry->d_parent));
Michael Halcrow237fead2006-10-04 02:16:22 -0700265 lower_inode = lower_dentry->d_inode;
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800266 fsstack_copy_attr_atime(ecryptfs_dir_inode, lower_dir_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700267 BUG_ON(!atomic_read(&lower_dentry->d_count));
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800268 ecryptfs_set_dentry_private(ecryptfs_dentry,
Michael Halcrow237fead2006-10-04 02:16:22 -0700269 kmem_cache_alloc(ecryptfs_dentry_info_cache,
Christoph Lametere94b1762006-12-06 20:33:17 -0800270 GFP_KERNEL));
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800271 if (!ecryptfs_dentry_to_private(ecryptfs_dentry)) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700272 rc = -ENOMEM;
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800273 printk(KERN_ERR "%s: Out of memory whilst attempting "
274 "to allocate ecryptfs_dentry_info struct\n",
275 __func__);
Michael Halcrow237fead2006-10-04 02:16:22 -0700276 goto out_dput;
277 }
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800278 ecryptfs_set_dentry_lower(ecryptfs_dentry, lower_dentry);
279 ecryptfs_set_dentry_lower_mnt(ecryptfs_dentry, lower_mnt);
Michael Halcrow237fead2006-10-04 02:16:22 -0700280 if (!lower_dentry->d_inode) {
281 /* We want to add because we couldn't find in lower */
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800282 d_add(ecryptfs_dentry, NULL);
Michael Halcrow237fead2006-10-04 02:16:22 -0700283 goto out;
284 }
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800285 rc = ecryptfs_interpose(lower_dentry, ecryptfs_dentry,
286 ecryptfs_dir_inode->i_sb, 1);
Michael Halcrow237fead2006-10-04 02:16:22 -0700287 if (rc) {
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800288 printk(KERN_ERR "%s: Error interposing; rc = [%d]\n",
289 __func__, rc);
Michael Halcrow391b52f2008-07-23 21:30:08 -0700290 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700291 }
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800292 if (S_ISDIR(lower_inode->i_mode))
Michael Halcrow237fead2006-10-04 02:16:22 -0700293 goto out;
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800294 if (S_ISLNK(lower_inode->i_mode))
Michael Halcrow237fead2006-10-04 02:16:22 -0700295 goto out;
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800296 if (special_file(lower_inode->i_mode))
Ryusuke Konishi202a21d2007-08-10 13:00:51 -0700297 goto out;
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800298 if (!ecryptfs_nd)
Michael Halcrow237fead2006-10-04 02:16:22 -0700299 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700300 /* Released in this function */
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800301 page_virt = kmem_cache_zalloc(ecryptfs_header_cache_2, GFP_USER);
Michael Halcrow237fead2006-10-04 02:16:22 -0700302 if (!page_virt) {
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800303 printk(KERN_ERR "%s: Cannot kmem_cache_zalloc() a page\n",
304 __func__);
Michael Halcrow237fead2006-10-04 02:16:22 -0700305 rc = -ENOMEM;
Michael Halcrow391b52f2008-07-23 21:30:08 -0700306 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700307 }
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800308 if (!ecryptfs_inode_to_private(ecryptfs_dentry->d_inode)->lower_file) {
309 rc = ecryptfs_init_persistent_file(ecryptfs_dentry);
Michael Halcrow391b52f2008-07-23 21:30:08 -0700310 if (rc) {
311 printk(KERN_ERR "%s: Error attempting to initialize "
312 "the persistent file for the dentry with name "
313 "[%s]; rc = [%d]\n", __func__,
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800314 ecryptfs_dentry->d_name.name, rc);
315 goto out_free_kmem;
Michael Halcrow391b52f2008-07-23 21:30:08 -0700316 }
317 }
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -0700318 rc = ecryptfs_read_and_validate_header_region(page_virt,
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800319 ecryptfs_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700320 if (rc) {
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800321 rc = ecryptfs_read_and_validate_xattr_region(page_virt,
322 ecryptfs_dentry);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800323 if (rc) {
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800324 rc = 0;
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800325 goto out_free_kmem;
Michael Halcrow237fead2006-10-04 02:16:22 -0700326 }
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800327 crypt_stat->flags |= ECRYPTFS_METADATA_IN_XATTR;
Michael Halcrow237fead2006-10-04 02:16:22 -0700328 }
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800329 mount_crypt_stat = &ecryptfs_superblock_to_private(
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800330 ecryptfs_dentry->d_sb)->mount_crypt_stat;
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800331 if (mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED) {
332 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
Michael Halcrowcc11bef2008-02-06 01:38:32 -0800333 file_size = (crypt_stat->num_header_bytes_at_front
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800334 + i_size_read(lower_dentry->d_inode));
335 else
336 file_size = i_size_read(lower_dentry->d_inode);
337 } else {
Harvey Harrison0a688ad2008-07-23 21:30:07 -0700338 file_size = get_unaligned_be64(page_virt);
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800339 }
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800340 i_size_write(ecryptfs_dentry->d_inode, (loff_t)file_size);
341out_free_kmem:
Michael Halcrow237fead2006-10-04 02:16:22 -0700342 kmem_cache_free(ecryptfs_header_cache_2, page_virt);
343 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700344out_dput:
345 dput(lower_dentry);
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800346 d_drop(ecryptfs_dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700347out:
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800348 return rc;
349}
350
351/**
352 * ecryptfs_lookup
353 * @ecryptfs_dir_inode: The eCryptfs directory inode
354 * @ecryptfs_dentry: The eCryptfs dentry that we are looking up
355 * @ecryptfs_nd: nameidata; may be NULL
356 *
357 * Find a file on disk. If the file does not exist, then we'll add it to the
358 * dentry cache and continue on to read it from the disk.
359 */
360static struct dentry *ecryptfs_lookup(struct inode *ecryptfs_dir_inode,
361 struct dentry *ecryptfs_dentry,
362 struct nameidata *ecryptfs_nd)
363{
364 char *encrypted_and_encoded_name = NULL;
365 int encrypted_and_encoded_name_size;
366 struct ecryptfs_crypt_stat *crypt_stat = NULL;
367 struct ecryptfs_mount_crypt_stat *mount_crypt_stat = NULL;
368 struct ecryptfs_inode_info *inode_info;
369 struct dentry *lower_dir_dentry, *lower_dentry;
370 int rc = 0;
371
372 ecryptfs_dentry->d_op = &ecryptfs_dops;
373 if ((ecryptfs_dentry->d_name.len == 1
374 && !strcmp(ecryptfs_dentry->d_name.name, "."))
375 || (ecryptfs_dentry->d_name.len == 2
376 && !strcmp(ecryptfs_dentry->d_name.name, ".."))) {
377 goto out_d_drop;
378 }
379 lower_dir_dentry = ecryptfs_dentry_to_lower(ecryptfs_dentry->d_parent);
380 lower_dentry = lookup_one_len(ecryptfs_dentry->d_name.name,
381 lower_dir_dentry,
382 ecryptfs_dentry->d_name.len);
383 if (IS_ERR(lower_dentry)) {
384 rc = PTR_ERR(lower_dentry);
385 printk(KERN_ERR "%s: lookup_one_len() returned [%d] on "
386 "lower_dentry = [%s]\n", __func__, rc,
387 ecryptfs_dentry->d_name.name);
388 goto out_d_drop;
389 }
390 if (lower_dentry->d_inode)
391 goto lookup_and_interpose;
392 inode_info = ecryptfs_inode_to_private(ecryptfs_dentry->d_inode);
393 if (inode_info) {
394 crypt_stat = &inode_info->crypt_stat;
395 /* TODO: lock for crypt_stat comparison */
396 if (!(crypt_stat->flags & ECRYPTFS_POLICY_APPLIED))
397 ecryptfs_set_default_sizes(crypt_stat);
398 }
399 if (crypt_stat)
400 mount_crypt_stat = crypt_stat->mount_crypt_stat;
401 else
402 mount_crypt_stat = &ecryptfs_superblock_to_private(
403 ecryptfs_dentry->d_sb)->mount_crypt_stat;
404 if (!(crypt_stat && (crypt_stat->flags & ECRYPTFS_ENCRYPT_FILENAMES))
405 && !(mount_crypt_stat && (mount_crypt_stat->flags
406 & ECRYPTFS_GLOBAL_ENCRYPT_FILENAMES)))
407 goto lookup_and_interpose;
408 dput(lower_dentry);
409 rc = ecryptfs_encrypt_and_encode_filename(
410 &encrypted_and_encoded_name, &encrypted_and_encoded_name_size,
411 crypt_stat, mount_crypt_stat, ecryptfs_dentry->d_name.name,
412 ecryptfs_dentry->d_name.len);
413 if (rc) {
414 printk(KERN_ERR "%s: Error attempting to encrypt and encode "
415 "filename; rc = [%d]\n", __func__, rc);
416 goto out_d_drop;
417 }
418 lower_dentry = lookup_one_len(encrypted_and_encoded_name,
419 lower_dir_dentry,
420 encrypted_and_encoded_name_size - 1);
421 if (IS_ERR(lower_dentry)) {
422 rc = PTR_ERR(lower_dentry);
423 printk(KERN_ERR "%s: lookup_one_len() returned [%d] on "
424 "lower_dentry = [%s]\n", __func__, rc,
425 encrypted_and_encoded_name);
426 goto out_d_drop;
427 }
428lookup_and_interpose:
429 rc = ecryptfs_lookup_and_interpose_lower(ecryptfs_dentry, lower_dentry,
430 crypt_stat, ecryptfs_dir_inode,
431 ecryptfs_nd);
432 goto out;
433out_d_drop:
434 d_drop(ecryptfs_dentry);
435out:
436 kfree(encrypted_and_encoded_name);
Michael Halcrow237fead2006-10-04 02:16:22 -0700437 return ERR_PTR(rc);
438}
439
440static int ecryptfs_link(struct dentry *old_dentry, struct inode *dir,
441 struct dentry *new_dentry)
442{
443 struct dentry *lower_old_dentry;
444 struct dentry *lower_new_dentry;
445 struct dentry *lower_dir_dentry;
446 u64 file_size_save;
447 int rc;
448
449 file_size_save = i_size_read(old_dentry->d_inode);
450 lower_old_dentry = ecryptfs_dentry_to_lower(old_dentry);
451 lower_new_dentry = ecryptfs_dentry_to_lower(new_dentry);
452 dget(lower_old_dentry);
453 dget(lower_new_dentry);
454 lower_dir_dentry = lock_parent(lower_new_dentry);
455 rc = vfs_link(lower_old_dentry, lower_dir_dentry->d_inode,
456 lower_new_dentry);
457 if (rc || !lower_new_dentry->d_inode)
458 goto out_lock;
459 rc = ecryptfs_interpose(lower_new_dentry, new_dentry, dir->i_sb, 0);
460 if (rc)
461 goto out_lock;
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800462 fsstack_copy_attr_times(dir, lower_new_dentry->d_inode);
463 fsstack_copy_inode_size(dir, lower_new_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700464 old_dentry->d_inode->i_nlink =
465 ecryptfs_inode_to_lower(old_dentry->d_inode)->i_nlink;
466 i_size_write(new_dentry->d_inode, file_size_save);
467out_lock:
468 unlock_dir(lower_dir_dentry);
469 dput(lower_new_dentry);
470 dput(lower_old_dentry);
Michael Halcrowae56fb12006-11-16 01:19:30 -0800471 d_drop(lower_old_dentry);
Michael Halcrow45ec4aba2006-10-30 22:07:20 -0800472 d_drop(new_dentry);
473 d_drop(old_dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700474 return rc;
475}
476
477static int ecryptfs_unlink(struct inode *dir, struct dentry *dentry)
478{
479 int rc = 0;
480 struct dentry *lower_dentry = ecryptfs_dentry_to_lower(dentry);
481 struct inode *lower_dir_inode = ecryptfs_inode_to_lower(dir);
Miklos Szeredi8dc4e372008-05-12 14:02:04 -0700482 struct dentry *lower_dir_dentry;
Michael Halcrow237fead2006-10-04 02:16:22 -0700483
Miklos Szeredi8dc4e372008-05-12 14:02:04 -0700484 lower_dir_dentry = lock_parent(lower_dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700485 rc = vfs_unlink(lower_dir_inode, lower_dentry);
486 if (rc) {
Michael Halcrowae56fb12006-11-16 01:19:30 -0800487 printk(KERN_ERR "Error in vfs_unlink; rc = [%d]\n", rc);
Michael Halcrow237fead2006-10-04 02:16:22 -0700488 goto out_unlock;
489 }
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800490 fsstack_copy_attr_times(dir, lower_dir_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700491 dentry->d_inode->i_nlink =
492 ecryptfs_inode_to_lower(dentry->d_inode)->i_nlink;
493 dentry->d_inode->i_ctime = dir->i_ctime;
Michael Halcrowcaeeeec2008-01-08 15:33:02 -0800494 d_drop(dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700495out_unlock:
Miklos Szeredi8dc4e372008-05-12 14:02:04 -0700496 unlock_dir(lower_dir_dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700497 return rc;
498}
499
500static int ecryptfs_symlink(struct inode *dir, struct dentry *dentry,
501 const char *symname)
502{
503 int rc;
504 struct dentry *lower_dentry;
505 struct dentry *lower_dir_dentry;
Michael Halcrow237fead2006-10-04 02:16:22 -0700506 char *encoded_symname;
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800507 size_t encoded_symlen;
508 struct ecryptfs_mount_crypt_stat *mount_crypt_stat = NULL;
Michael Halcrow237fead2006-10-04 02:16:22 -0700509
510 lower_dentry = ecryptfs_dentry_to_lower(dentry);
511 dget(lower_dentry);
512 lower_dir_dentry = lock_parent(lower_dentry);
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800513 mount_crypt_stat = &ecryptfs_superblock_to_private(
514 dir->i_sb)->mount_crypt_stat;
515 rc = ecryptfs_encrypt_and_encode_filename(&encoded_symname,
516 &encoded_symlen,
517 NULL,
518 mount_crypt_stat, symname,
519 strlen(symname));
520 if (rc)
Michael Halcrow237fead2006-10-04 02:16:22 -0700521 goto out_lock;
Michael Halcrow237fead2006-10-04 02:16:22 -0700522 rc = vfs_symlink(lower_dir_dentry->d_inode, lower_dentry,
Miklos Szeredidb2e7472008-06-24 16:50:16 +0200523 encoded_symname);
Michael Halcrow237fead2006-10-04 02:16:22 -0700524 kfree(encoded_symname);
525 if (rc || !lower_dentry->d_inode)
526 goto out_lock;
527 rc = ecryptfs_interpose(lower_dentry, dentry, dir->i_sb, 0);
528 if (rc)
529 goto out_lock;
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800530 fsstack_copy_attr_times(dir, lower_dir_dentry->d_inode);
531 fsstack_copy_inode_size(dir, lower_dir_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700532out_lock:
533 unlock_dir(lower_dir_dentry);
534 dput(lower_dentry);
535 if (!dentry->d_inode)
536 d_drop(dentry);
537 return rc;
538}
539
540static int ecryptfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
541{
542 int rc;
543 struct dentry *lower_dentry;
544 struct dentry *lower_dir_dentry;
545
546 lower_dentry = ecryptfs_dentry_to_lower(dentry);
547 lower_dir_dentry = lock_parent(lower_dentry);
548 rc = vfs_mkdir(lower_dir_dentry->d_inode, lower_dentry, mode);
549 if (rc || !lower_dentry->d_inode)
550 goto out;
551 rc = ecryptfs_interpose(lower_dentry, dentry, dir->i_sb, 0);
552 if (rc)
553 goto out;
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800554 fsstack_copy_attr_times(dir, lower_dir_dentry->d_inode);
555 fsstack_copy_inode_size(dir, lower_dir_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700556 dir->i_nlink = lower_dir_dentry->d_inode->i_nlink;
557out:
558 unlock_dir(lower_dir_dentry);
559 if (!dentry->d_inode)
560 d_drop(dentry);
561 return rc;
562}
563
564static int ecryptfs_rmdir(struct inode *dir, struct dentry *dentry)
565{
Michael Halcrow237fead2006-10-04 02:16:22 -0700566 struct dentry *lower_dentry;
Michael Halcrow237fead2006-10-04 02:16:22 -0700567 struct dentry *lower_dir_dentry;
Michael Halcrow45ec4aba2006-10-30 22:07:20 -0800568 int rc;
Michael Halcrow237fead2006-10-04 02:16:22 -0700569
570 lower_dentry = ecryptfs_dentry_to_lower(dentry);
Michael Halcrow45ec4aba2006-10-30 22:07:20 -0800571 dget(dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700572 lower_dir_dentry = lock_parent(lower_dentry);
Michael Halcrow45ec4aba2006-10-30 22:07:20 -0800573 dget(lower_dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700574 rc = vfs_rmdir(lower_dir_dentry->d_inode, lower_dentry);
Michael Halcrow45ec4aba2006-10-30 22:07:20 -0800575 dput(lower_dentry);
576 if (!rc)
577 d_delete(lower_dentry);
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800578 fsstack_copy_attr_times(dir, lower_dir_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700579 dir->i_nlink = lower_dir_dentry->d_inode->i_nlink;
580 unlock_dir(lower_dir_dentry);
581 if (!rc)
582 d_drop(dentry);
Michael Halcrow45ec4aba2006-10-30 22:07:20 -0800583 dput(dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700584 return rc;
585}
586
587static int
588ecryptfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
589{
590 int rc;
591 struct dentry *lower_dentry;
592 struct dentry *lower_dir_dentry;
593
594 lower_dentry = ecryptfs_dentry_to_lower(dentry);
595 lower_dir_dentry = lock_parent(lower_dentry);
596 rc = vfs_mknod(lower_dir_dentry->d_inode, lower_dentry, mode, dev);
597 if (rc || !lower_dentry->d_inode)
598 goto out;
Michael Halcrow391b52f2008-07-23 21:30:08 -0700599 rc = ecryptfs_interpose(lower_dentry, dentry, dir->i_sb, 0);
Michael Halcrow237fead2006-10-04 02:16:22 -0700600 if (rc)
601 goto out;
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800602 fsstack_copy_attr_times(dir, lower_dir_dentry->d_inode);
603 fsstack_copy_inode_size(dir, lower_dir_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700604out:
605 unlock_dir(lower_dir_dentry);
606 if (!dentry->d_inode)
607 d_drop(dentry);
608 return rc;
609}
610
611static int
612ecryptfs_rename(struct inode *old_dir, struct dentry *old_dentry,
613 struct inode *new_dir, struct dentry *new_dentry)
614{
615 int rc;
616 struct dentry *lower_old_dentry;
617 struct dentry *lower_new_dentry;
618 struct dentry *lower_old_dir_dentry;
619 struct dentry *lower_new_dir_dentry;
620
621 lower_old_dentry = ecryptfs_dentry_to_lower(old_dentry);
622 lower_new_dentry = ecryptfs_dentry_to_lower(new_dentry);
623 dget(lower_old_dentry);
624 dget(lower_new_dentry);
625 lower_old_dir_dentry = dget_parent(lower_old_dentry);
626 lower_new_dir_dentry = dget_parent(lower_new_dentry);
627 lock_rename(lower_old_dir_dentry, lower_new_dir_dentry);
628 rc = vfs_rename(lower_old_dir_dentry->d_inode, lower_old_dentry,
629 lower_new_dir_dentry->d_inode, lower_new_dentry);
630 if (rc)
631 goto out_lock;
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800632 fsstack_copy_attr_all(new_dir, lower_new_dir_dentry->d_inode, NULL);
Michael Halcrow237fead2006-10-04 02:16:22 -0700633 if (new_dir != old_dir)
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800634 fsstack_copy_attr_all(old_dir, lower_old_dir_dentry->d_inode, NULL);
Michael Halcrow237fead2006-10-04 02:16:22 -0700635out_lock:
636 unlock_rename(lower_old_dir_dentry, lower_new_dir_dentry);
Michael Halcrowa9083082006-11-16 01:19:16 -0800637 dput(lower_new_dentry->d_parent);
638 dput(lower_old_dentry->d_parent);
Michael Halcrow237fead2006-10-04 02:16:22 -0700639 dput(lower_new_dentry);
640 dput(lower_old_dentry);
641 return rc;
642}
643
644static int
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800645ecryptfs_readlink(struct dentry *dentry, char __user *buf, int bufsiz)
Michael Halcrow237fead2006-10-04 02:16:22 -0700646{
Michael Halcrow237fead2006-10-04 02:16:22 -0700647 char *lower_buf;
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800648 struct dentry *lower_dentry;
Michael Halcrow237fead2006-10-04 02:16:22 -0700649 struct ecryptfs_crypt_stat *crypt_stat;
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800650 char *plaintext_name;
651 size_t plaintext_name_size;
652 mm_segment_t old_fs;
653 int rc;
Michael Halcrow237fead2006-10-04 02:16:22 -0700654
655 lower_dentry = ecryptfs_dentry_to_lower(dentry);
Al Viroacfa4382008-12-04 10:06:33 -0500656 if (!lower_dentry->d_inode->i_op->readlink) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700657 rc = -EINVAL;
658 goto out;
659 }
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800660 crypt_stat = &ecryptfs_inode_to_private(dentry->d_inode)->crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700661 /* Released in this function */
662 lower_buf = kmalloc(bufsiz, GFP_KERNEL);
663 if (lower_buf == NULL) {
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800664 printk(KERN_ERR "%s: Out of memory whilst attempting to "
665 "kmalloc [%d] bytes\n", __func__, bufsiz);
Michael Halcrow237fead2006-10-04 02:16:22 -0700666 rc = -ENOMEM;
667 goto out;
668 }
669 old_fs = get_fs();
670 set_fs(get_ds());
Michael Halcrow237fead2006-10-04 02:16:22 -0700671 rc = lower_dentry->d_inode->i_op->readlink(lower_dentry,
672 (char __user *)lower_buf,
673 bufsiz);
674 set_fs(old_fs);
675 if (rc >= 0) {
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800676 rc = ecryptfs_decode_and_decrypt_filename(&plaintext_name,
677 &plaintext_name_size,
678 dentry, lower_buf,
679 rc);
680 if (rc) {
681 printk(KERN_ERR "%s: Error attempting to decode and "
682 "decrypt filename; rc = [%d]\n", __func__,
683 rc);
Michael Halcrow237fead2006-10-04 02:16:22 -0700684 goto out_free_lower_buf;
Michael Halcrow237fead2006-10-04 02:16:22 -0700685 }
Michael Halcrowaddd65ad2009-01-06 14:42:00 -0800686 rc = copy_to_user(buf, plaintext_name, plaintext_name_size);
687 if (rc)
688 rc = -EFAULT;
689 else
690 rc = plaintext_name_size;
691 kfree(plaintext_name);
692 fsstack_copy_attr_atime(dentry->d_inode, lower_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700693 }
694out_free_lower_buf:
695 kfree(lower_buf);
696out:
697 return rc;
698}
699
700static void *ecryptfs_follow_link(struct dentry *dentry, struct nameidata *nd)
701{
702 char *buf;
703 int len = PAGE_SIZE, rc;
704 mm_segment_t old_fs;
705
706 /* Released in ecryptfs_put_link(); only release here on error */
707 buf = kmalloc(len, GFP_KERNEL);
708 if (!buf) {
709 rc = -ENOMEM;
710 goto out;
711 }
712 old_fs = get_fs();
713 set_fs(get_ds());
Michael Halcrow237fead2006-10-04 02:16:22 -0700714 rc = dentry->d_inode->i_op->readlink(dentry, (char __user *)buf, len);
Michael Halcrow237fead2006-10-04 02:16:22 -0700715 set_fs(old_fs);
716 if (rc < 0)
717 goto out_free;
Duane Griffina17d5232008-12-19 20:47:10 +0000718 else
719 buf[rc] = '\0';
Michael Halcrow237fead2006-10-04 02:16:22 -0700720 rc = 0;
721 nd_set_link(nd, buf);
722 goto out;
723out_free:
724 kfree(buf);
725out:
726 return ERR_PTR(rc);
727}
728
729static void
730ecryptfs_put_link(struct dentry *dentry, struct nameidata *nd, void *ptr)
731{
732 /* Free the char* */
733 kfree(nd_get_link(nd));
734}
735
736/**
737 * upper_size_to_lower_size
738 * @crypt_stat: Crypt_stat associated with file
739 * @upper_size: Size of the upper file
740 *
Michael Halcrowcc11bef2008-02-06 01:38:32 -0800741 * Calculate the required size of the lower file based on the
Michael Halcrow237fead2006-10-04 02:16:22 -0700742 * specified size of the upper file. This calculation is based on the
743 * number of headers in the underlying file and the extent size.
744 *
745 * Returns Calculated size of the lower file.
746 */
747static loff_t
748upper_size_to_lower_size(struct ecryptfs_crypt_stat *crypt_stat,
749 loff_t upper_size)
750{
751 loff_t lower_size;
752
Michael Halcrowcc11bef2008-02-06 01:38:32 -0800753 lower_size = crypt_stat->num_header_bytes_at_front;
Michael Halcrow237fead2006-10-04 02:16:22 -0700754 if (upper_size != 0) {
755 loff_t num_extents;
756
757 num_extents = upper_size >> crypt_stat->extent_shift;
758 if (upper_size & ~crypt_stat->extent_mask)
759 num_extents++;
760 lower_size += (num_extents * crypt_stat->extent_size);
761 }
762 return lower_size;
763}
764
765/**
766 * ecryptfs_truncate
767 * @dentry: The ecryptfs layer dentry
768 * @new_length: The length to expand the file to
769 *
770 * Function to handle truncations modifying the size of the file. Note
771 * that the file sizes are interpolated. When expanding, we are simply
772 * writing strings of 0's out. When truncating, we need to modify the
773 * underlying file size according to the page index interpolations.
774 *
775 * Returns zero on success; non-zero otherwise
776 */
777int ecryptfs_truncate(struct dentry *dentry, loff_t new_length)
778{
779 int rc = 0;
780 struct inode *inode = dentry->d_inode;
781 struct dentry *lower_dentry;
Michael Halcrow2ed92552007-10-16 01:28:10 -0700782 struct file fake_ecryptfs_file;
Michael Halcrow237fead2006-10-04 02:16:22 -0700783 struct ecryptfs_crypt_stat *crypt_stat;
784 loff_t i_size = i_size_read(inode);
785 loff_t lower_size_before_truncate;
786 loff_t lower_size_after_truncate;
787
788 if (unlikely((new_length == i_size)))
789 goto out;
790 crypt_stat = &ecryptfs_inode_to_private(dentry->d_inode)->crypt_stat;
791 /* Set up a fake ecryptfs file, this is used to interface with
792 * the file in the underlying filesystem so that the
793 * truncation has an effect there as well. */
794 memset(&fake_ecryptfs_file, 0, sizeof(fake_ecryptfs_file));
Josef "Jeff" Sipekbd243a42006-12-08 02:36:48 -0800795 fake_ecryptfs_file.f_path.dentry = dentry;
Michael Halcrow237fead2006-10-04 02:16:22 -0700796 /* Released at out_free: label */
797 ecryptfs_set_file_private(&fake_ecryptfs_file,
798 kmem_cache_alloc(ecryptfs_file_info_cache,
Christoph Lametere94b1762006-12-06 20:33:17 -0800799 GFP_KERNEL));
Michael Halcrow237fead2006-10-04 02:16:22 -0700800 if (unlikely(!ecryptfs_file_to_private(&fake_ecryptfs_file))) {
801 rc = -ENOMEM;
802 goto out;
803 }
804 lower_dentry = ecryptfs_dentry_to_lower(dentry);
Michael Halcrow2ed92552007-10-16 01:28:10 -0700805 ecryptfs_set_file_lower(
806 &fake_ecryptfs_file,
807 ecryptfs_inode_to_private(dentry->d_inode)->lower_file);
Michael Halcrow237fead2006-10-04 02:16:22 -0700808 /* Switch on growing or shrinking file */
809 if (new_length > i_size) {
Michael Halcrow2ed92552007-10-16 01:28:10 -0700810 char zero[] = { 0x00 };
Michael Halcrow240e2df2007-06-27 14:09:44 -0700811
Michael Halcrow2ed92552007-10-16 01:28:10 -0700812 /* Write a single 0 at the last position of the file;
813 * this triggers code that will fill in 0's throughout
814 * the intermediate portion of the previous end of the
815 * file and the new and of the file */
816 rc = ecryptfs_write(&fake_ecryptfs_file, zero,
817 (new_length - 1), 1);
818 } else { /* new_length < i_size_read(inode) */
819 /* We're chopping off all the pages down do the page
820 * in which new_length is located. Fill in the end of
821 * that page from (new_length & ~PAGE_CACHE_MASK) to
822 * PAGE_CACHE_SIZE with zeros. */
823 size_t num_zeros = (PAGE_CACHE_SIZE
824 - (new_length & ~PAGE_CACHE_MASK));
825
826 if (num_zeros) {
827 char *zeros_virt;
828
829 zeros_virt = kzalloc(num_zeros, GFP_KERNEL);
830 if (!zeros_virt) {
831 rc = -ENOMEM;
832 goto out_free;
833 }
834 rc = ecryptfs_write(&fake_ecryptfs_file, zeros_virt,
835 new_length, num_zeros);
836 kfree(zeros_virt);
Michael Halcrow5dda6992007-10-16 01:28:06 -0700837 if (rc) {
Michael Halcrow240e2df2007-06-27 14:09:44 -0700838 printk(KERN_ERR "Error attempting to zero out "
839 "the remainder of the end page on "
840 "reducing truncate; rc = [%d]\n", rc);
Michael Halcrow2ed92552007-10-16 01:28:10 -0700841 goto out_free;
Michael Halcrow240e2df2007-06-27 14:09:44 -0700842 }
843 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700844 vmtruncate(inode, new_length);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700845 rc = ecryptfs_write_inode_size_to_metadata(inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800846 if (rc) {
847 printk(KERN_ERR "Problem with "
848 "ecryptfs_write_inode_size_to_metadata; "
849 "rc = [%d]\n", rc);
Michael Halcrow2ed92552007-10-16 01:28:10 -0700850 goto out_free;
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800851 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700852 /* We are reducing the size of the ecryptfs file, and need to
853 * know if we need to reduce the size of the lower file. */
854 lower_size_before_truncate =
855 upper_size_to_lower_size(crypt_stat, i_size);
856 lower_size_after_truncate =
857 upper_size_to_lower_size(crypt_stat, new_length);
858 if (lower_size_after_truncate < lower_size_before_truncate)
859 vmtruncate(lower_dentry->d_inode,
860 lower_size_after_truncate);
861 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700862out_free:
863 if (ecryptfs_file_to_private(&fake_ecryptfs_file))
864 kmem_cache_free(ecryptfs_file_info_cache,
865 ecryptfs_file_to_private(&fake_ecryptfs_file));
866out:
867 return rc;
868}
869
870static int
Al Viroe6305c42008-07-15 21:03:57 -0400871ecryptfs_permission(struct inode *inode, int mask)
Michael Halcrow237fead2006-10-04 02:16:22 -0700872{
Al Virof419a2e2008-07-22 00:07:17 -0400873 return inode_permission(ecryptfs_inode_to_lower(inode), mask);
Michael Halcrow237fead2006-10-04 02:16:22 -0700874}
875
876/**
877 * ecryptfs_setattr
878 * @dentry: dentry handle to the inode to modify
879 * @ia: Structure with flags of what to change and values
880 *
881 * Updates the metadata of an inode. If the update is to the size
882 * i.e. truncation, then ecryptfs_truncate will handle the size modification
883 * of both the ecryptfs inode and the lower inode.
884 *
885 * All other metadata changes will be passed right to the lower filesystem,
886 * and we will just update our inode to look like the lower.
887 */
888static int ecryptfs_setattr(struct dentry *dentry, struct iattr *ia)
889{
890 int rc = 0;
891 struct dentry *lower_dentry;
892 struct inode *inode;
893 struct inode *lower_inode;
894 struct ecryptfs_crypt_stat *crypt_stat;
895
896 crypt_stat = &ecryptfs_inode_to_private(dentry->d_inode)->crypt_stat;
Michael Halcrowe10f2812007-06-27 14:09:44 -0700897 if (!(crypt_stat->flags & ECRYPTFS_STRUCT_INITIALIZED))
898 ecryptfs_init_crypt_stat(crypt_stat);
Michael Halcrow237fead2006-10-04 02:16:22 -0700899 inode = dentry->d_inode;
900 lower_inode = ecryptfs_inode_to_lower(inode);
Michael Halcrowe10f2812007-06-27 14:09:44 -0700901 lower_dentry = ecryptfs_dentry_to_lower(dentry);
902 mutex_lock(&crypt_stat->cs_mutex);
903 if (S_ISDIR(dentry->d_inode->i_mode))
904 crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED);
Michael Halcrow64ee4802007-07-19 01:47:54 -0700905 else if (S_ISREG(dentry->d_inode->i_mode)
906 && (!(crypt_stat->flags & ECRYPTFS_POLICY_APPLIED)
907 || !(crypt_stat->flags & ECRYPTFS_KEY_VALID))) {
Michael Halcrowe10f2812007-06-27 14:09:44 -0700908 struct ecryptfs_mount_crypt_stat *mount_crypt_stat;
Michael Halcrowe10f2812007-06-27 14:09:44 -0700909
Michael Halcrowe10f2812007-06-27 14:09:44 -0700910 mount_crypt_stat = &ecryptfs_superblock_to_private(
911 dentry->d_sb)->mount_crypt_stat;
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -0700912 rc = ecryptfs_read_metadata(dentry);
Michael Halcrow5dda6992007-10-16 01:28:06 -0700913 if (rc) {
Michael Halcrowe10f2812007-06-27 14:09:44 -0700914 if (!(mount_crypt_stat->flags
915 & ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED)) {
916 rc = -EIO;
Michael Halcrow25bd8172008-02-06 01:38:35 -0800917 printk(KERN_WARNING "Either the lower file "
Michael Halcrowe10f2812007-06-27 14:09:44 -0700918 "is not in a valid eCryptfs format, "
Michael Halcrow25bd8172008-02-06 01:38:35 -0800919 "or the key could not be retrieved. "
920 "Plaintext passthrough mode is not "
Michael Halcrowe10f2812007-06-27 14:09:44 -0700921 "enabled; returning -EIO\n");
Michael Halcrowe10f2812007-06-27 14:09:44 -0700922 mutex_unlock(&crypt_stat->cs_mutex);
Michael Halcrowe10f2812007-06-27 14:09:44 -0700923 goto out;
924 }
925 rc = 0;
926 crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED);
927 mutex_unlock(&crypt_stat->cs_mutex);
Michael Halcrowe10f2812007-06-27 14:09:44 -0700928 goto out;
929 }
Michael Halcrowe10f2812007-06-27 14:09:44 -0700930 }
931 mutex_unlock(&crypt_stat->cs_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700932 if (ia->ia_valid & ATTR_SIZE) {
933 ecryptfs_printk(KERN_DEBUG,
934 "ia->ia_valid = [0x%x] ATTR_SIZE" " = [0x%x]\n",
935 ia->ia_valid, ATTR_SIZE);
936 rc = ecryptfs_truncate(dentry, ia->ia_size);
937 /* ecryptfs_truncate handles resizing of the lower file */
938 ia->ia_valid &= ~ATTR_SIZE;
939 ecryptfs_printk(KERN_DEBUG, "ia->ia_valid = [%x]\n",
940 ia->ia_valid);
941 if (rc < 0)
942 goto out;
943 }
Jeff Layton1ac564e2007-10-18 03:05:17 -0700944
945 /*
946 * mode change is for clearing setuid/setgid bits. Allow lower fs
947 * to interpret this in its own way.
948 */
949 if (ia->ia_valid & (ATTR_KILL_SUID | ATTR_KILL_SGID))
950 ia->ia_valid &= ~ATTR_MODE;
951
Miklos Szeredi9c3580a2008-04-29 00:59:48 -0700952 mutex_lock(&lower_dentry->d_inode->i_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700953 rc = notify_change(lower_dentry, ia);
Miklos Szeredi9c3580a2008-04-29 00:59:48 -0700954 mutex_unlock(&lower_dentry->d_inode->i_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700955out:
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800956 fsstack_copy_attr_all(inode, lower_inode, NULL);
Michael Halcrow237fead2006-10-04 02:16:22 -0700957 return rc;
958}
959
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800960int
Michael Halcrow237fead2006-10-04 02:16:22 -0700961ecryptfs_setxattr(struct dentry *dentry, const char *name, const void *value,
962 size_t size, int flags)
963{
964 int rc = 0;
965 struct dentry *lower_dentry;
966
967 lower_dentry = ecryptfs_dentry_to_lower(dentry);
968 if (!lower_dentry->d_inode->i_op->setxattr) {
969 rc = -ENOSYS;
970 goto out;
971 }
972 mutex_lock(&lower_dentry->d_inode->i_mutex);
973 rc = lower_dentry->d_inode->i_op->setxattr(lower_dentry, name, value,
974 size, flags);
975 mutex_unlock(&lower_dentry->d_inode->i_mutex);
976out:
977 return rc;
978}
979
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800980ssize_t
Michael Halcrowd7cdc5f2007-10-16 01:28:10 -0700981ecryptfs_getxattr_lower(struct dentry *lower_dentry, const char *name,
982 void *value, size_t size)
983{
984 int rc = 0;
985
986 if (!lower_dentry->d_inode->i_op->getxattr) {
987 rc = -ENOSYS;
988 goto out;
989 }
990 mutex_lock(&lower_dentry->d_inode->i_mutex);
991 rc = lower_dentry->d_inode->i_op->getxattr(lower_dentry, name, value,
992 size);
993 mutex_unlock(&lower_dentry->d_inode->i_mutex);
994out:
995 return rc;
996}
997
Adrian Bunk7896b632008-02-06 01:38:32 -0800998static ssize_t
Michael Halcrow237fead2006-10-04 02:16:22 -0700999ecryptfs_getxattr(struct dentry *dentry, const char *name, void *value,
1000 size_t size)
1001{
Michael Halcrow2ed92552007-10-16 01:28:10 -07001002 return ecryptfs_getxattr_lower(ecryptfs_dentry_to_lower(dentry), name,
1003 value, size);
Michael Halcrow237fead2006-10-04 02:16:22 -07001004}
1005
1006static ssize_t
1007ecryptfs_listxattr(struct dentry *dentry, char *list, size_t size)
1008{
1009 int rc = 0;
1010 struct dentry *lower_dentry;
1011
1012 lower_dentry = ecryptfs_dentry_to_lower(dentry);
1013 if (!lower_dentry->d_inode->i_op->listxattr) {
1014 rc = -ENOSYS;
1015 goto out;
1016 }
1017 mutex_lock(&lower_dentry->d_inode->i_mutex);
1018 rc = lower_dentry->d_inode->i_op->listxattr(lower_dentry, list, size);
1019 mutex_unlock(&lower_dentry->d_inode->i_mutex);
1020out:
1021 return rc;
1022}
1023
1024static int ecryptfs_removexattr(struct dentry *dentry, const char *name)
1025{
1026 int rc = 0;
1027 struct dentry *lower_dentry;
1028
1029 lower_dentry = ecryptfs_dentry_to_lower(dentry);
1030 if (!lower_dentry->d_inode->i_op->removexattr) {
1031 rc = -ENOSYS;
1032 goto out;
1033 }
1034 mutex_lock(&lower_dentry->d_inode->i_mutex);
1035 rc = lower_dentry->d_inode->i_op->removexattr(lower_dentry, name);
1036 mutex_unlock(&lower_dentry->d_inode->i_mutex);
1037out:
1038 return rc;
1039}
1040
1041int ecryptfs_inode_test(struct inode *inode, void *candidate_lower_inode)
1042{
1043 if ((ecryptfs_inode_to_lower(inode)
1044 == (struct inode *)candidate_lower_inode))
1045 return 1;
1046 else
1047 return 0;
1048}
1049
1050int ecryptfs_inode_set(struct inode *inode, void *lower_inode)
1051{
1052 ecryptfs_init_inode(inode, (struct inode *)lower_inode);
1053 return 0;
1054}
1055
Arjan van de Ven754661f2007-02-12 00:55:38 -08001056const struct inode_operations ecryptfs_symlink_iops = {
Michael Halcrow237fead2006-10-04 02:16:22 -07001057 .readlink = ecryptfs_readlink,
1058 .follow_link = ecryptfs_follow_link,
1059 .put_link = ecryptfs_put_link,
1060 .permission = ecryptfs_permission,
1061 .setattr = ecryptfs_setattr,
1062 .setxattr = ecryptfs_setxattr,
1063 .getxattr = ecryptfs_getxattr,
1064 .listxattr = ecryptfs_listxattr,
1065 .removexattr = ecryptfs_removexattr
1066};
1067
Arjan van de Ven754661f2007-02-12 00:55:38 -08001068const struct inode_operations ecryptfs_dir_iops = {
Michael Halcrow237fead2006-10-04 02:16:22 -07001069 .create = ecryptfs_create,
1070 .lookup = ecryptfs_lookup,
1071 .link = ecryptfs_link,
1072 .unlink = ecryptfs_unlink,
1073 .symlink = ecryptfs_symlink,
1074 .mkdir = ecryptfs_mkdir,
1075 .rmdir = ecryptfs_rmdir,
1076 .mknod = ecryptfs_mknod,
1077 .rename = ecryptfs_rename,
1078 .permission = ecryptfs_permission,
1079 .setattr = ecryptfs_setattr,
1080 .setxattr = ecryptfs_setxattr,
1081 .getxattr = ecryptfs_getxattr,
1082 .listxattr = ecryptfs_listxattr,
1083 .removexattr = ecryptfs_removexattr
1084};
1085
Arjan van de Ven754661f2007-02-12 00:55:38 -08001086const struct inode_operations ecryptfs_main_iops = {
Michael Halcrow237fead2006-10-04 02:16:22 -07001087 .permission = ecryptfs_permission,
1088 .setattr = ecryptfs_setattr,
1089 .setxattr = ecryptfs_setxattr,
1090 .getxattr = ecryptfs_getxattr,
1091 .listxattr = ecryptfs_listxattr,
1092 .removexattr = ecryptfs_removexattr
1093};