blob: 7192a810bbe64433c255994307a7492fc7f83261 [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>
Michael Halcrow237fead2006-10-04 02:16:22 -070034#include "ecryptfs_kernel.h"
35
36static struct dentry *lock_parent(struct dentry *dentry)
37{
38 struct dentry *dir;
39
40 dir = dget(dentry->d_parent);
Peter Zijlstra908e0a82007-03-07 20:41:30 -080041 mutex_lock_nested(&(dir->d_inode->i_mutex), I_MUTEX_PARENT);
Michael Halcrow237fead2006-10-04 02:16:22 -070042 return dir;
43}
44
45static void unlock_parent(struct dentry *dentry)
46{
47 mutex_unlock(&(dentry->d_parent->d_inode->i_mutex));
48 dput(dentry->d_parent);
49}
50
51static void unlock_dir(struct dentry *dir)
52{
53 mutex_unlock(&dir->d_inode->i_mutex);
54 dput(dir);
55}
56
Michael Halcrow237fead2006-10-04 02:16:22 -070057/**
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
64 *
65 * Creates the file in the lower file system.
66 *
67 * Returns zero on success; non-zero on error condition
68 */
69static int
70ecryptfs_create_underlying_file(struct inode *lower_dir_inode,
71 struct dentry *dentry, int mode,
72 struct nameidata *nd)
73{
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;
78 int rc;
79
80 dentry_save = nd->dentry;
81 vfsmount_save = nd->mnt;
82 nd->dentry = lower_dentry;
83 nd->mnt = lower_mnt;
84 rc = vfs_create(lower_dir_inode, lower_dentry, mode, nd);
85 nd->dentry = dentry_save;
86 nd->mnt = vfsmount_save;
87 return rc;
88}
89
90/**
91 * ecryptfs_do_create
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
96 *
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.
100 *
101 * Returns zero on success; non-zero on error condition
102 */
103static int
104ecryptfs_do_create(struct inode *directory_inode,
105 struct dentry *ecryptfs_dentry, int mode,
106 struct nameidata *nd)
107{
108 int rc;
109 struct dentry *lower_dentry;
110 struct dentry *lower_dir_dentry;
111
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 "
116 "dentry\n");
117 rc = PTR_ERR(lower_dir_dentry);
118 goto out;
119 }
120 rc = ecryptfs_create_underlying_file(lower_dir_dentry->d_inode,
121 ecryptfs_dentry, mode, nd);
122 if (unlikely(rc)) {
123 ecryptfs_printk(KERN_ERR,
124 "Failure to create underlying file\n");
125 goto out_lock;
126 }
127 rc = ecryptfs_interpose(lower_dentry, ecryptfs_dentry,
128 directory_inode->i_sb, 0);
129 if (rc) {
130 ecryptfs_printk(KERN_ERR, "Failure in ecryptfs_interpose\n");
131 goto out_lock;
132 }
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800133 fsstack_copy_attr_times(directory_inode, lower_dir_dentry->d_inode);
134 fsstack_copy_inode_size(directory_inode, lower_dir_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700135out_lock:
136 unlock_dir(lower_dir_dentry);
137out:
138 return rc;
139}
140
141/**
142 * grow_file
143 * @ecryptfs_dentry: the ecryptfs dentry
144 * @lower_file: The lower file
145 * @inode: The ecryptfs inode
146 * @lower_inode: The lower inode
147 *
148 * This is the code which will grow the file to its correct size.
149 */
150static int grow_file(struct dentry *ecryptfs_dentry, struct file *lower_file,
151 struct inode *inode, struct inode *lower_inode)
152{
153 int rc = 0;
154 struct file fake_file;
155 struct ecryptfs_file_info tmp_file_info;
156
157 memset(&fake_file, 0, sizeof(fake_file));
Josef "Jeff" Sipekbd243a42006-12-08 02:36:48 -0800158 fake_file.f_path.dentry = ecryptfs_dentry;
Michael Halcrow237fead2006-10-04 02:16:22 -0700159 memset(&tmp_file_info, 0, sizeof(tmp_file_info));
160 ecryptfs_set_file_private(&fake_file, &tmp_file_info);
161 ecryptfs_set_file_lower(&fake_file, lower_file);
162 rc = ecryptfs_fill_zeros(&fake_file, 1);
163 if (rc) {
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800164 ecryptfs_inode_to_private(inode)->crypt_stat.flags |=
165 ECRYPTFS_SECURITY_WARNING;
Michael Halcrow237fead2006-10-04 02:16:22 -0700166 ecryptfs_printk(KERN_WARNING, "Error attempting to fill zeros "
167 "in file; rc = [%d]\n", rc);
168 goto out;
169 }
170 i_size_write(inode, 0);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700171 rc = ecryptfs_write_inode_size_to_metadata(inode);
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800172 ecryptfs_inode_to_private(inode)->crypt_stat.flags |= ECRYPTFS_NEW_FILE;
Michael Halcrow237fead2006-10-04 02:16:22 -0700173out:
174 return rc;
175}
176
177/**
178 * ecryptfs_initialize_file
179 *
180 * Cause the file to be changed from a basic empty file to an ecryptfs
181 * file with a header and first data page.
182 *
183 * Returns zero on success
184 */
185static int ecryptfs_initialize_file(struct dentry *ecryptfs_dentry)
186{
187 int rc = 0;
188 int lower_flags;
189 struct ecryptfs_crypt_stat *crypt_stat;
190 struct dentry *lower_dentry;
Michael Halcrow237fead2006-10-04 02:16:22 -0700191 struct file *lower_file;
192 struct inode *inode, *lower_inode;
193 struct vfsmount *lower_mnt;
194
195 lower_dentry = ecryptfs_dentry_to_lower(ecryptfs_dentry);
196 ecryptfs_printk(KERN_DEBUG, "lower_dentry->d_name.name = [%s]\n",
197 lower_dentry->d_name.name);
198 inode = ecryptfs_dentry->d_inode;
199 crypt_stat = &ecryptfs_inode_to_private(inode)->crypt_stat;
Michael Halcrow70456602007-02-12 00:53:48 -0800200 lower_flags = ((O_CREAT | O_TRUNC) & O_ACCMODE) | O_RDWR;
Michael Halcrow237fead2006-10-04 02:16:22 -0700201 lower_mnt = ecryptfs_dentry_to_lower_mnt(ecryptfs_dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700202 /* Corresponding fput() at end of this function */
Michael Halcrow5dda6992007-10-16 01:28:06 -0700203 rc = ecryptfs_open_lower_file(&lower_file, lower_dentry, lower_mnt,
204 lower_flags);
205 if (rc) {
Michael Halcrow237fead2006-10-04 02:16:22 -0700206 ecryptfs_printk(KERN_ERR,
207 "Error opening dentry; rc = [%i]\n", rc);
208 goto out;
209 }
Michael Halcrow7ff1d742006-10-30 22:07:19 -0800210 lower_inode = lower_dentry->d_inode;
Michael Halcrow237fead2006-10-04 02:16:22 -0700211 if (S_ISDIR(ecryptfs_dentry->d_inode->i_mode)) {
212 ecryptfs_printk(KERN_DEBUG, "This is a directory\n");
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800213 crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED);
Michael Halcrow237fead2006-10-04 02:16:22 -0700214 goto out_fput;
215 }
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800216 crypt_stat->flags |= ECRYPTFS_NEW_FILE;
Michael Halcrow237fead2006-10-04 02:16:22 -0700217 ecryptfs_printk(KERN_DEBUG, "Initializing crypto context\n");
218 rc = ecryptfs_new_file_context(ecryptfs_dentry);
219 if (rc) {
220 ecryptfs_printk(KERN_DEBUG, "Error creating new file "
221 "context\n");
222 goto out_fput;
223 }
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800224 rc = ecryptfs_write_metadata(ecryptfs_dentry, lower_file);
Michael Halcrow237fead2006-10-04 02:16:22 -0700225 if (rc) {
226 ecryptfs_printk(KERN_DEBUG, "Error writing headers\n");
227 goto out_fput;
228 }
229 rc = grow_file(ecryptfs_dentry, lower_file, inode, lower_inode);
230out_fput:
Michael Halcrow5dda6992007-10-16 01:28:06 -0700231 rc = ecryptfs_close_lower_file(lower_file);
232 if (rc)
Michael Halcrow7ff1d742006-10-30 22:07:19 -0800233 printk(KERN_ERR "Error closing lower_file\n");
Michael Halcrow237fead2006-10-04 02:16:22 -0700234out:
235 return rc;
236}
237
238/**
239 * ecryptfs_create
240 * @dir: The inode of the directory in which to create the file.
241 * @dentry: The eCryptfs dentry
242 * @mode: The mode of the new file.
243 * @nd: nameidata
244 *
245 * Creates a new file.
246 *
247 * Returns zero on success; non-zero on error condition
248 */
249static int
250ecryptfs_create(struct inode *directory_inode, struct dentry *ecryptfs_dentry,
251 int mode, struct nameidata *nd)
252{
253 int rc;
254
255 rc = ecryptfs_do_create(directory_inode, ecryptfs_dentry, mode, nd);
256 if (unlikely(rc)) {
257 ecryptfs_printk(KERN_WARNING, "Failed to create file in"
258 "lower filesystem\n");
259 goto out;
260 }
261 /* At this point, a file exists on "disk"; we need to make sure
262 * that this on disk file is prepared to be an ecryptfs file */
263 rc = ecryptfs_initialize_file(ecryptfs_dentry);
264out:
265 return rc;
266}
267
268/**
269 * ecryptfs_lookup
270 * @dir: inode
271 * @dentry: The dentry
272 * @nd: nameidata, may be NULL
273 *
274 * Find a file on disk. If the file does not exist, then we'll add it to the
275 * dentry cache and continue on to read it from the disk.
276 */
277static struct dentry *ecryptfs_lookup(struct inode *dir, struct dentry *dentry,
278 struct nameidata *nd)
279{
280 int rc = 0;
281 struct dentry *lower_dir_dentry;
282 struct dentry *lower_dentry;
283 struct vfsmount *lower_mnt;
Michael Halcrow237fead2006-10-04 02:16:22 -0700284 char *encoded_name;
Mika Kukkonenc381bfc2007-07-17 04:04:53 -0700285 int encoded_namelen;
Michael Halcrow237fead2006-10-04 02:16:22 -0700286 struct ecryptfs_crypt_stat *crypt_stat = NULL;
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800287 struct ecryptfs_mount_crypt_stat *mount_crypt_stat;
Michael Halcrow237fead2006-10-04 02:16:22 -0700288 char *page_virt = NULL;
289 struct inode *lower_inode;
290 u64 file_size;
291
292 lower_dir_dentry = ecryptfs_dentry_to_lower(dentry->d_parent);
293 dentry->d_op = &ecryptfs_dops;
294 if ((dentry->d_name.len == 1 && !strcmp(dentry->d_name.name, "."))
Michael Halcrow45ec4aba2006-10-30 22:07:20 -0800295 || (dentry->d_name.len == 2
296 && !strcmp(dentry->d_name.name, ".."))) {
297 d_drop(dentry);
298 goto out;
299 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700300 encoded_namelen = ecryptfs_encode_filename(crypt_stat,
301 dentry->d_name.name,
302 dentry->d_name.len,
303 &encoded_name);
304 if (encoded_namelen < 0) {
305 rc = encoded_namelen;
Michael Halcrow45ec4aba2006-10-30 22:07:20 -0800306 d_drop(dentry);
307 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700308 }
309 ecryptfs_printk(KERN_DEBUG, "encoded_name = [%s]; encoded_namelen "
310 "= [%d]\n", encoded_name, encoded_namelen);
311 lower_dentry = lookup_one_len(encoded_name, lower_dir_dentry,
312 encoded_namelen - 1);
313 kfree(encoded_name);
Michael Halcrow237fead2006-10-04 02:16:22 -0700314 if (IS_ERR(lower_dentry)) {
315 ecryptfs_printk(KERN_ERR, "ERR from lower_dentry\n");
316 rc = PTR_ERR(lower_dentry);
Michael Halcrow45ec4aba2006-10-30 22:07:20 -0800317 d_drop(dentry);
318 goto out;
Michael Halcrow237fead2006-10-04 02:16:22 -0700319 }
Michael Halcrow45ec4aba2006-10-30 22:07:20 -0800320 lower_mnt = mntget(ecryptfs_dentry_to_lower_mnt(dentry->d_parent));
Michael Halcrow237fead2006-10-04 02:16:22 -0700321 ecryptfs_printk(KERN_DEBUG, "lower_dentry = [%p]; lower_dentry->"
322 "d_name.name = [%s]\n", lower_dentry,
323 lower_dentry->d_name.name);
324 lower_inode = lower_dentry->d_inode;
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800325 fsstack_copy_attr_atime(dir, lower_dir_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700326 BUG_ON(!atomic_read(&lower_dentry->d_count));
327 ecryptfs_set_dentry_private(dentry,
328 kmem_cache_alloc(ecryptfs_dentry_info_cache,
Christoph Lametere94b1762006-12-06 20:33:17 -0800329 GFP_KERNEL));
Michael Halcrow237fead2006-10-04 02:16:22 -0700330 if (!ecryptfs_dentry_to_private(dentry)) {
331 rc = -ENOMEM;
332 ecryptfs_printk(KERN_ERR, "Out of memory whilst attempting "
333 "to allocate ecryptfs_dentry_info struct\n");
334 goto out_dput;
335 }
336 ecryptfs_set_dentry_lower(dentry, lower_dentry);
337 ecryptfs_set_dentry_lower_mnt(dentry, lower_mnt);
338 if (!lower_dentry->d_inode) {
339 /* We want to add because we couldn't find in lower */
340 d_add(dentry, NULL);
341 goto out;
342 }
343 rc = ecryptfs_interpose(lower_dentry, dentry, dir->i_sb, 1);
344 if (rc) {
345 ecryptfs_printk(KERN_ERR, "Error interposing\n");
346 goto out_dput;
347 }
348 if (S_ISDIR(lower_inode->i_mode)) {
349 ecryptfs_printk(KERN_DEBUG, "Is a directory; returning\n");
350 goto out;
351 }
352 if (S_ISLNK(lower_inode->i_mode)) {
353 ecryptfs_printk(KERN_DEBUG, "Is a symlink; returning\n");
354 goto out;
355 }
Ryusuke Konishi202a21d2007-08-10 13:00:51 -0700356 if (special_file(lower_inode->i_mode)) {
357 ecryptfs_printk(KERN_DEBUG, "Is a special file; returning\n");
358 goto out;
359 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700360 if (!nd) {
361 ecryptfs_printk(KERN_DEBUG, "We have a NULL nd, just leave"
362 "as we *think* we are about to unlink\n");
363 goto out;
364 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700365 /* Released in this function */
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800366 page_virt = kmem_cache_zalloc(ecryptfs_header_cache_2,
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800367 GFP_USER);
Michael Halcrow237fead2006-10-04 02:16:22 -0700368 if (!page_virt) {
369 rc = -ENOMEM;
370 ecryptfs_printk(KERN_ERR,
371 "Cannot ecryptfs_kmalloc a page\n");
372 goto out_dput;
373 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700374 crypt_stat = &ecryptfs_inode_to_private(dentry->d_inode)->crypt_stat;
Michael Halcrowe2bd99e2007-02-12 00:53:49 -0800375 if (!(crypt_stat->flags & ECRYPTFS_POLICY_APPLIED))
Michael Halcrow237fead2006-10-04 02:16:22 -0700376 ecryptfs_set_default_sizes(crypt_stat);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800377 rc = ecryptfs_read_and_validate_header_region(page_virt, lower_dentry,
378 nd->mnt);
Michael Halcrow237fead2006-10-04 02:16:22 -0700379 if (rc) {
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800380 rc = ecryptfs_read_and_validate_xattr_region(page_virt, dentry);
381 if (rc) {
382 printk(KERN_DEBUG "Valid metadata not found in header "
383 "region or xattr region; treating file as "
384 "unencrypted\n");
385 rc = 0;
Michael Halcrow237fead2006-10-04 02:16:22 -0700386 kmem_cache_free(ecryptfs_header_cache_2, page_virt);
387 goto out;
388 }
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800389 crypt_stat->flags |= ECRYPTFS_METADATA_IN_XATTR;
Michael Halcrow237fead2006-10-04 02:16:22 -0700390 }
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800391 mount_crypt_stat = &ecryptfs_superblock_to_private(
392 dentry->d_sb)->mount_crypt_stat;
393 if (mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED) {
394 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
Michael Halcrow45eaab72007-10-16 01:28:05 -0700395 file_size = ((crypt_stat->extent_size
396 * crypt_stat->num_header_extents_at_front)
Michael Halcrowe77a56d2007-02-12 00:53:47 -0800397 + i_size_read(lower_dentry->d_inode));
398 else
399 file_size = i_size_read(lower_dentry->d_inode);
400 } else {
401 memcpy(&file_size, page_virt, sizeof(file_size));
402 file_size = be64_to_cpu(file_size);
403 }
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800404 i_size_write(dentry->d_inode, (loff_t)file_size);
Michael Halcrow237fead2006-10-04 02:16:22 -0700405 kmem_cache_free(ecryptfs_header_cache_2, page_virt);
406 goto out;
407
408out_dput:
409 dput(lower_dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700410 d_drop(dentry);
411out:
412 return ERR_PTR(rc);
413}
414
415static int ecryptfs_link(struct dentry *old_dentry, struct inode *dir,
416 struct dentry *new_dentry)
417{
418 struct dentry *lower_old_dentry;
419 struct dentry *lower_new_dentry;
420 struct dentry *lower_dir_dentry;
421 u64 file_size_save;
422 int rc;
423
424 file_size_save = i_size_read(old_dentry->d_inode);
425 lower_old_dentry = ecryptfs_dentry_to_lower(old_dentry);
426 lower_new_dentry = ecryptfs_dentry_to_lower(new_dentry);
427 dget(lower_old_dentry);
428 dget(lower_new_dentry);
429 lower_dir_dentry = lock_parent(lower_new_dentry);
430 rc = vfs_link(lower_old_dentry, lower_dir_dentry->d_inode,
431 lower_new_dentry);
432 if (rc || !lower_new_dentry->d_inode)
433 goto out_lock;
434 rc = ecryptfs_interpose(lower_new_dentry, new_dentry, dir->i_sb, 0);
435 if (rc)
436 goto out_lock;
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800437 fsstack_copy_attr_times(dir, lower_new_dentry->d_inode);
438 fsstack_copy_inode_size(dir, lower_new_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700439 old_dentry->d_inode->i_nlink =
440 ecryptfs_inode_to_lower(old_dentry->d_inode)->i_nlink;
441 i_size_write(new_dentry->d_inode, file_size_save);
442out_lock:
443 unlock_dir(lower_dir_dentry);
444 dput(lower_new_dentry);
445 dput(lower_old_dentry);
Michael Halcrowae56fb12006-11-16 01:19:30 -0800446 d_drop(lower_old_dentry);
Michael Halcrow45ec4aba2006-10-30 22:07:20 -0800447 d_drop(new_dentry);
448 d_drop(old_dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700449 return rc;
450}
451
452static int ecryptfs_unlink(struct inode *dir, struct dentry *dentry)
453{
454 int rc = 0;
455 struct dentry *lower_dentry = ecryptfs_dentry_to_lower(dentry);
456 struct inode *lower_dir_inode = ecryptfs_inode_to_lower(dir);
457
458 lock_parent(lower_dentry);
459 rc = vfs_unlink(lower_dir_inode, lower_dentry);
460 if (rc) {
Michael Halcrowae56fb12006-11-16 01:19:30 -0800461 printk(KERN_ERR "Error in vfs_unlink; rc = [%d]\n", rc);
Michael Halcrow237fead2006-10-04 02:16:22 -0700462 goto out_unlock;
463 }
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800464 fsstack_copy_attr_times(dir, lower_dir_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700465 dentry->d_inode->i_nlink =
466 ecryptfs_inode_to_lower(dentry->d_inode)->i_nlink;
467 dentry->d_inode->i_ctime = dir->i_ctime;
468out_unlock:
469 unlock_parent(lower_dentry);
470 return rc;
471}
472
473static int ecryptfs_symlink(struct inode *dir, struct dentry *dentry,
474 const char *symname)
475{
476 int rc;
477 struct dentry *lower_dentry;
478 struct dentry *lower_dir_dentry;
479 umode_t mode;
480 char *encoded_symname;
Mika Kukkonenc381bfc2007-07-17 04:04:53 -0700481 int encoded_symlen;
Michael Halcrow237fead2006-10-04 02:16:22 -0700482 struct ecryptfs_crypt_stat *crypt_stat = NULL;
483
484 lower_dentry = ecryptfs_dentry_to_lower(dentry);
485 dget(lower_dentry);
486 lower_dir_dentry = lock_parent(lower_dentry);
487 mode = S_IALLUGO;
488 encoded_symlen = ecryptfs_encode_filename(crypt_stat, symname,
489 strlen(symname),
490 &encoded_symname);
491 if (encoded_symlen < 0) {
492 rc = encoded_symlen;
493 goto out_lock;
494 }
495 rc = vfs_symlink(lower_dir_dentry->d_inode, lower_dentry,
496 encoded_symname, mode);
497 kfree(encoded_symname);
498 if (rc || !lower_dentry->d_inode)
499 goto out_lock;
500 rc = ecryptfs_interpose(lower_dentry, dentry, dir->i_sb, 0);
501 if (rc)
502 goto out_lock;
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800503 fsstack_copy_attr_times(dir, lower_dir_dentry->d_inode);
504 fsstack_copy_inode_size(dir, lower_dir_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700505out_lock:
506 unlock_dir(lower_dir_dentry);
507 dput(lower_dentry);
508 if (!dentry->d_inode)
509 d_drop(dentry);
510 return rc;
511}
512
513static int ecryptfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
514{
515 int rc;
516 struct dentry *lower_dentry;
517 struct dentry *lower_dir_dentry;
518
519 lower_dentry = ecryptfs_dentry_to_lower(dentry);
520 lower_dir_dentry = lock_parent(lower_dentry);
521 rc = vfs_mkdir(lower_dir_dentry->d_inode, lower_dentry, mode);
522 if (rc || !lower_dentry->d_inode)
523 goto out;
524 rc = ecryptfs_interpose(lower_dentry, dentry, dir->i_sb, 0);
525 if (rc)
526 goto out;
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800527 fsstack_copy_attr_times(dir, lower_dir_dentry->d_inode);
528 fsstack_copy_inode_size(dir, lower_dir_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700529 dir->i_nlink = lower_dir_dentry->d_inode->i_nlink;
530out:
531 unlock_dir(lower_dir_dentry);
532 if (!dentry->d_inode)
533 d_drop(dentry);
534 return rc;
535}
536
537static int ecryptfs_rmdir(struct inode *dir, struct dentry *dentry)
538{
Michael Halcrow237fead2006-10-04 02:16:22 -0700539 struct dentry *lower_dentry;
Michael Halcrow237fead2006-10-04 02:16:22 -0700540 struct dentry *lower_dir_dentry;
Michael Halcrow45ec4aba2006-10-30 22:07:20 -0800541 int rc;
Michael Halcrow237fead2006-10-04 02:16:22 -0700542
543 lower_dentry = ecryptfs_dentry_to_lower(dentry);
Michael Halcrow45ec4aba2006-10-30 22:07:20 -0800544 dget(dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700545 lower_dir_dentry = lock_parent(lower_dentry);
Michael Halcrow45ec4aba2006-10-30 22:07:20 -0800546 dget(lower_dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700547 rc = vfs_rmdir(lower_dir_dentry->d_inode, lower_dentry);
Michael Halcrow45ec4aba2006-10-30 22:07:20 -0800548 dput(lower_dentry);
549 if (!rc)
550 d_delete(lower_dentry);
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800551 fsstack_copy_attr_times(dir, lower_dir_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700552 dir->i_nlink = lower_dir_dentry->d_inode->i_nlink;
553 unlock_dir(lower_dir_dentry);
554 if (!rc)
555 d_drop(dentry);
Michael Halcrow45ec4aba2006-10-30 22:07:20 -0800556 dput(dentry);
Michael Halcrow237fead2006-10-04 02:16:22 -0700557 return rc;
558}
559
560static int
561ecryptfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
562{
563 int rc;
564 struct dentry *lower_dentry;
565 struct dentry *lower_dir_dentry;
566
567 lower_dentry = ecryptfs_dentry_to_lower(dentry);
568 lower_dir_dentry = lock_parent(lower_dentry);
569 rc = vfs_mknod(lower_dir_dentry->d_inode, lower_dentry, mode, dev);
570 if (rc || !lower_dentry->d_inode)
571 goto out;
572 rc = ecryptfs_interpose(lower_dentry, dentry, dir->i_sb, 0);
573 if (rc)
574 goto out;
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800575 fsstack_copy_attr_times(dir, lower_dir_dentry->d_inode);
576 fsstack_copy_inode_size(dir, lower_dir_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700577out:
578 unlock_dir(lower_dir_dentry);
579 if (!dentry->d_inode)
580 d_drop(dentry);
581 return rc;
582}
583
584static int
585ecryptfs_rename(struct inode *old_dir, struct dentry *old_dentry,
586 struct inode *new_dir, struct dentry *new_dentry)
587{
588 int rc;
589 struct dentry *lower_old_dentry;
590 struct dentry *lower_new_dentry;
591 struct dentry *lower_old_dir_dentry;
592 struct dentry *lower_new_dir_dentry;
593
594 lower_old_dentry = ecryptfs_dentry_to_lower(old_dentry);
595 lower_new_dentry = ecryptfs_dentry_to_lower(new_dentry);
596 dget(lower_old_dentry);
597 dget(lower_new_dentry);
598 lower_old_dir_dentry = dget_parent(lower_old_dentry);
599 lower_new_dir_dentry = dget_parent(lower_new_dentry);
600 lock_rename(lower_old_dir_dentry, lower_new_dir_dentry);
601 rc = vfs_rename(lower_old_dir_dentry->d_inode, lower_old_dentry,
602 lower_new_dir_dentry->d_inode, lower_new_dentry);
603 if (rc)
604 goto out_lock;
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800605 fsstack_copy_attr_all(new_dir, lower_new_dir_dentry->d_inode, NULL);
Michael Halcrow237fead2006-10-04 02:16:22 -0700606 if (new_dir != old_dir)
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800607 fsstack_copy_attr_all(old_dir, lower_old_dir_dentry->d_inode, NULL);
Michael Halcrow237fead2006-10-04 02:16:22 -0700608out_lock:
609 unlock_rename(lower_old_dir_dentry, lower_new_dir_dentry);
Michael Halcrowa9083082006-11-16 01:19:16 -0800610 dput(lower_new_dentry->d_parent);
611 dput(lower_old_dentry->d_parent);
Michael Halcrow237fead2006-10-04 02:16:22 -0700612 dput(lower_new_dentry);
613 dput(lower_old_dentry);
614 return rc;
615}
616
617static int
618ecryptfs_readlink(struct dentry *dentry, char __user * buf, int bufsiz)
619{
620 int rc;
621 struct dentry *lower_dentry;
622 char *decoded_name;
623 char *lower_buf;
624 mm_segment_t old_fs;
625 struct ecryptfs_crypt_stat *crypt_stat;
626
627 lower_dentry = ecryptfs_dentry_to_lower(dentry);
628 if (!lower_dentry->d_inode->i_op ||
629 !lower_dentry->d_inode->i_op->readlink) {
630 rc = -EINVAL;
631 goto out;
632 }
633 /* Released in this function */
634 lower_buf = kmalloc(bufsiz, GFP_KERNEL);
635 if (lower_buf == NULL) {
636 ecryptfs_printk(KERN_ERR, "Out of memory\n");
637 rc = -ENOMEM;
638 goto out;
639 }
640 old_fs = get_fs();
641 set_fs(get_ds());
642 ecryptfs_printk(KERN_DEBUG, "Calling readlink w/ "
643 "lower_dentry->d_name.name = [%s]\n",
644 lower_dentry->d_name.name);
645 rc = lower_dentry->d_inode->i_op->readlink(lower_dentry,
646 (char __user *)lower_buf,
647 bufsiz);
648 set_fs(old_fs);
649 if (rc >= 0) {
650 crypt_stat = NULL;
651 rc = ecryptfs_decode_filename(crypt_stat, lower_buf, rc,
652 &decoded_name);
653 if (rc == -ENOMEM)
654 goto out_free_lower_buf;
655 if (rc > 0) {
656 ecryptfs_printk(KERN_DEBUG, "Copying [%d] bytes "
657 "to userspace: [%*s]\n", rc,
658 decoded_name);
659 if (copy_to_user(buf, decoded_name, rc))
660 rc = -EFAULT;
661 }
662 kfree(decoded_name);
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800663 fsstack_copy_attr_atime(dentry->d_inode,
664 lower_dentry->d_inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700665 }
666out_free_lower_buf:
667 kfree(lower_buf);
668out:
669 return rc;
670}
671
672static void *ecryptfs_follow_link(struct dentry *dentry, struct nameidata *nd)
673{
674 char *buf;
675 int len = PAGE_SIZE, rc;
676 mm_segment_t old_fs;
677
678 /* Released in ecryptfs_put_link(); only release here on error */
679 buf = kmalloc(len, GFP_KERNEL);
680 if (!buf) {
681 rc = -ENOMEM;
682 goto out;
683 }
684 old_fs = get_fs();
685 set_fs(get_ds());
686 ecryptfs_printk(KERN_DEBUG, "Calling readlink w/ "
687 "dentry->d_name.name = [%s]\n", dentry->d_name.name);
688 rc = dentry->d_inode->i_op->readlink(dentry, (char __user *)buf, len);
689 buf[rc] = '\0';
690 set_fs(old_fs);
691 if (rc < 0)
692 goto out_free;
693 rc = 0;
694 nd_set_link(nd, buf);
695 goto out;
696out_free:
697 kfree(buf);
698out:
699 return ERR_PTR(rc);
700}
701
702static void
703ecryptfs_put_link(struct dentry *dentry, struct nameidata *nd, void *ptr)
704{
705 /* Free the char* */
706 kfree(nd_get_link(nd));
707}
708
709/**
710 * upper_size_to_lower_size
711 * @crypt_stat: Crypt_stat associated with file
712 * @upper_size: Size of the upper file
713 *
714 * Calculate the requried size of the lower file based on the
715 * specified size of the upper file. This calculation is based on the
716 * number of headers in the underlying file and the extent size.
717 *
718 * Returns Calculated size of the lower file.
719 */
720static loff_t
721upper_size_to_lower_size(struct ecryptfs_crypt_stat *crypt_stat,
722 loff_t upper_size)
723{
724 loff_t lower_size;
725
Michael Halcrow45eaab72007-10-16 01:28:05 -0700726 lower_size = (crypt_stat->extent_size
727 * crypt_stat->num_header_extents_at_front);
Michael Halcrow237fead2006-10-04 02:16:22 -0700728 if (upper_size != 0) {
729 loff_t num_extents;
730
731 num_extents = upper_size >> crypt_stat->extent_shift;
732 if (upper_size & ~crypt_stat->extent_mask)
733 num_extents++;
734 lower_size += (num_extents * crypt_stat->extent_size);
735 }
736 return lower_size;
737}
738
739/**
740 * ecryptfs_truncate
741 * @dentry: The ecryptfs layer dentry
742 * @new_length: The length to expand the file to
743 *
744 * Function to handle truncations modifying the size of the file. Note
745 * that the file sizes are interpolated. When expanding, we are simply
746 * writing strings of 0's out. When truncating, we need to modify the
747 * underlying file size according to the page index interpolations.
748 *
749 * Returns zero on success; non-zero otherwise
750 */
751int ecryptfs_truncate(struct dentry *dentry, loff_t new_length)
752{
753 int rc = 0;
754 struct inode *inode = dentry->d_inode;
755 struct dentry *lower_dentry;
756 struct vfsmount *lower_mnt;
757 struct file fake_ecryptfs_file, *lower_file = NULL;
758 struct ecryptfs_crypt_stat *crypt_stat;
759 loff_t i_size = i_size_read(inode);
760 loff_t lower_size_before_truncate;
761 loff_t lower_size_after_truncate;
762
763 if (unlikely((new_length == i_size)))
764 goto out;
765 crypt_stat = &ecryptfs_inode_to_private(dentry->d_inode)->crypt_stat;
766 /* Set up a fake ecryptfs file, this is used to interface with
767 * the file in the underlying filesystem so that the
768 * truncation has an effect there as well. */
769 memset(&fake_ecryptfs_file, 0, sizeof(fake_ecryptfs_file));
Josef "Jeff" Sipekbd243a42006-12-08 02:36:48 -0800770 fake_ecryptfs_file.f_path.dentry = dentry;
Michael Halcrow237fead2006-10-04 02:16:22 -0700771 /* Released at out_free: label */
772 ecryptfs_set_file_private(&fake_ecryptfs_file,
773 kmem_cache_alloc(ecryptfs_file_info_cache,
Christoph Lametere94b1762006-12-06 20:33:17 -0800774 GFP_KERNEL));
Michael Halcrow237fead2006-10-04 02:16:22 -0700775 if (unlikely(!ecryptfs_file_to_private(&fake_ecryptfs_file))) {
776 rc = -ENOMEM;
777 goto out;
778 }
779 lower_dentry = ecryptfs_dentry_to_lower(dentry);
780 /* This dget & mntget is released through fput at out_fput: */
Michael Halcrow237fead2006-10-04 02:16:22 -0700781 lower_mnt = ecryptfs_dentry_to_lower_mnt(dentry);
Michael Halcrow5dda6992007-10-16 01:28:06 -0700782 rc = ecryptfs_open_lower_file(&lower_file, lower_dentry, lower_mnt,
783 O_RDWR);
784 if (rc) {
Michael Halcrow7ff1d742006-10-30 22:07:19 -0800785 ecryptfs_printk(KERN_ERR,
786 "Error opening dentry; rc = [%i]\n", rc);
Michael Halcrow237fead2006-10-04 02:16:22 -0700787 goto out_free;
788 }
789 ecryptfs_set_file_lower(&fake_ecryptfs_file, lower_file);
790 /* Switch on growing or shrinking file */
791 if (new_length > i_size) {
792 rc = ecryptfs_fill_zeros(&fake_ecryptfs_file, new_length);
793 if (rc) {
794 ecryptfs_printk(KERN_ERR,
795 "Problem with fill_zeros\n");
796 goto out_fput;
797 }
798 i_size_write(inode, new_length);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700799 rc = ecryptfs_write_inode_size_to_metadata(inode);
Michael Halcrow237fead2006-10-04 02:16:22 -0700800 if (rc) {
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800801 printk(KERN_ERR "Problem with "
802 "ecryptfs_write_inode_size_to_metadata; "
803 "rc = [%d]\n", rc);
Michael Halcrow237fead2006-10-04 02:16:22 -0700804 goto out_fput;
805 }
806 } else { /* new_length < i_size_read(inode) */
Michael Halcrow240e2df2007-06-27 14:09:44 -0700807 pgoff_t index = 0;
808 int end_pos_in_page = -1;
809
810 if (new_length != 0) {
811 index = ((new_length - 1) >> PAGE_CACHE_SHIFT);
812 end_pos_in_page = ((new_length - 1) & ~PAGE_CACHE_MASK);
813 }
814 if (end_pos_in_page != (PAGE_CACHE_SIZE - 1)) {
Michael Halcrow5dda6992007-10-16 01:28:06 -0700815 rc = ecryptfs_write_zeros(&fake_ecryptfs_file,
816 index,
817 (end_pos_in_page + 1),
818 ((PAGE_CACHE_SIZE - 1)
819 - end_pos_in_page));
820 if (rc) {
Michael Halcrow240e2df2007-06-27 14:09:44 -0700821 printk(KERN_ERR "Error attempting to zero out "
822 "the remainder of the end page on "
823 "reducing truncate; rc = [%d]\n", rc);
824 goto out_fput;
825 }
826 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700827 vmtruncate(inode, new_length);
Michael Halcrow0216f7f2007-10-16 01:28:08 -0700828 rc = ecryptfs_write_inode_size_to_metadata(inode);
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800829 if (rc) {
830 printk(KERN_ERR "Problem with "
831 "ecryptfs_write_inode_size_to_metadata; "
832 "rc = [%d]\n", rc);
833 goto out_fput;
834 }
Michael Halcrow237fead2006-10-04 02:16:22 -0700835 /* We are reducing the size of the ecryptfs file, and need to
836 * know if we need to reduce the size of the lower file. */
837 lower_size_before_truncate =
838 upper_size_to_lower_size(crypt_stat, i_size);
839 lower_size_after_truncate =
840 upper_size_to_lower_size(crypt_stat, new_length);
841 if (lower_size_after_truncate < lower_size_before_truncate)
842 vmtruncate(lower_dentry->d_inode,
843 lower_size_after_truncate);
844 }
845 /* Update the access times */
846 lower_dentry->d_inode->i_mtime = lower_dentry->d_inode->i_ctime
847 = CURRENT_TIME;
848 mark_inode_dirty_sync(inode);
849out_fput:
Michael Halcrow5dda6992007-10-16 01:28:06 -0700850 rc = ecryptfs_close_lower_file(lower_file);
851 if (rc)
Michael Halcrow7ff1d742006-10-30 22:07:19 -0800852 printk(KERN_ERR "Error closing lower_file\n");
Michael Halcrow237fead2006-10-04 02:16:22 -0700853out_free:
854 if (ecryptfs_file_to_private(&fake_ecryptfs_file))
855 kmem_cache_free(ecryptfs_file_info_cache,
856 ecryptfs_file_to_private(&fake_ecryptfs_file));
857out:
858 return rc;
859}
860
861static int
862ecryptfs_permission(struct inode *inode, int mask, struct nameidata *nd)
863{
864 int rc;
865
866 if (nd) {
867 struct vfsmount *vfsmnt_save = nd->mnt;
868 struct dentry *dentry_save = nd->dentry;
869
870 nd->mnt = ecryptfs_dentry_to_lower_mnt(nd->dentry);
871 nd->dentry = ecryptfs_dentry_to_lower(nd->dentry);
872 rc = permission(ecryptfs_inode_to_lower(inode), mask, nd);
873 nd->mnt = vfsmnt_save;
874 nd->dentry = dentry_save;
875 } else
876 rc = permission(ecryptfs_inode_to_lower(inode), mask, NULL);
877 return rc;
878}
879
880/**
881 * ecryptfs_setattr
882 * @dentry: dentry handle to the inode to modify
883 * @ia: Structure with flags of what to change and values
884 *
885 * Updates the metadata of an inode. If the update is to the size
886 * i.e. truncation, then ecryptfs_truncate will handle the size modification
887 * of both the ecryptfs inode and the lower inode.
888 *
889 * All other metadata changes will be passed right to the lower filesystem,
890 * and we will just update our inode to look like the lower.
891 */
892static int ecryptfs_setattr(struct dentry *dentry, struct iattr *ia)
893{
894 int rc = 0;
895 struct dentry *lower_dentry;
896 struct inode *inode;
897 struct inode *lower_inode;
898 struct ecryptfs_crypt_stat *crypt_stat;
899
900 crypt_stat = &ecryptfs_inode_to_private(dentry->d_inode)->crypt_stat;
Michael Halcrowe10f2812007-06-27 14:09:44 -0700901 if (!(crypt_stat->flags & ECRYPTFS_STRUCT_INITIALIZED))
902 ecryptfs_init_crypt_stat(crypt_stat);
Michael Halcrow237fead2006-10-04 02:16:22 -0700903 inode = dentry->d_inode;
904 lower_inode = ecryptfs_inode_to_lower(inode);
Michael Halcrowe10f2812007-06-27 14:09:44 -0700905 lower_dentry = ecryptfs_dentry_to_lower(dentry);
906 mutex_lock(&crypt_stat->cs_mutex);
907 if (S_ISDIR(dentry->d_inode->i_mode))
908 crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED);
Michael Halcrow64ee4802007-07-19 01:47:54 -0700909 else if (S_ISREG(dentry->d_inode->i_mode)
910 && (!(crypt_stat->flags & ECRYPTFS_POLICY_APPLIED)
911 || !(crypt_stat->flags & ECRYPTFS_KEY_VALID))) {
Michael Halcrowe10f2812007-06-27 14:09:44 -0700912 struct vfsmount *lower_mnt;
913 struct file *lower_file = NULL;
914 struct ecryptfs_mount_crypt_stat *mount_crypt_stat;
915 int lower_flags;
916
917 lower_mnt = ecryptfs_dentry_to_lower_mnt(dentry);
918 lower_flags = O_RDONLY;
Michael Halcrow5dda6992007-10-16 01:28:06 -0700919 rc = ecryptfs_open_lower_file(&lower_file, lower_dentry,
920 lower_mnt, lower_flags);
921 if (rc) {
Michael Halcrowe10f2812007-06-27 14:09:44 -0700922 printk(KERN_ERR
923 "Error opening lower file; rc = [%d]\n", rc);
924 mutex_unlock(&crypt_stat->cs_mutex);
925 goto out;
926 }
927 mount_crypt_stat = &ecryptfs_superblock_to_private(
928 dentry->d_sb)->mount_crypt_stat;
Michael Halcrow5dda6992007-10-16 01:28:06 -0700929 rc = ecryptfs_read_metadata(dentry, lower_file);
930 if (rc) {
Michael Halcrowe10f2812007-06-27 14:09:44 -0700931 if (!(mount_crypt_stat->flags
932 & ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED)) {
933 rc = -EIO;
934 printk(KERN_WARNING "Attempt to read file that "
935 "is not in a valid eCryptfs format, "
936 "and plaintext passthrough mode is not "
937 "enabled; returning -EIO\n");
938
939 mutex_unlock(&crypt_stat->cs_mutex);
940 fput(lower_file);
941 goto out;
942 }
943 rc = 0;
944 crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED);
945 mutex_unlock(&crypt_stat->cs_mutex);
946 fput(lower_file);
947 goto out;
948 }
949 fput(lower_file);
950 }
951 mutex_unlock(&crypt_stat->cs_mutex);
Michael Halcrow237fead2006-10-04 02:16:22 -0700952 if (ia->ia_valid & ATTR_SIZE) {
953 ecryptfs_printk(KERN_DEBUG,
954 "ia->ia_valid = [0x%x] ATTR_SIZE" " = [0x%x]\n",
955 ia->ia_valid, ATTR_SIZE);
956 rc = ecryptfs_truncate(dentry, ia->ia_size);
957 /* ecryptfs_truncate handles resizing of the lower file */
958 ia->ia_valid &= ~ATTR_SIZE;
959 ecryptfs_printk(KERN_DEBUG, "ia->ia_valid = [%x]\n",
960 ia->ia_valid);
961 if (rc < 0)
962 goto out;
963 }
964 rc = notify_change(lower_dentry, ia);
965out:
Josef "Jeff" Sipek0cc72dc2006-12-08 02:36:31 -0800966 fsstack_copy_attr_all(inode, lower_inode, NULL);
Michael Halcrow237fead2006-10-04 02:16:22 -0700967 return rc;
968}
969
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800970int
Michael Halcrow237fead2006-10-04 02:16:22 -0700971ecryptfs_setxattr(struct dentry *dentry, const char *name, const void *value,
972 size_t size, int flags)
973{
974 int rc = 0;
975 struct dentry *lower_dentry;
976
977 lower_dentry = ecryptfs_dentry_to_lower(dentry);
978 if (!lower_dentry->d_inode->i_op->setxattr) {
979 rc = -ENOSYS;
980 goto out;
981 }
982 mutex_lock(&lower_dentry->d_inode->i_mutex);
983 rc = lower_dentry->d_inode->i_op->setxattr(lower_dentry, name, value,
984 size, flags);
985 mutex_unlock(&lower_dentry->d_inode->i_mutex);
986out:
987 return rc;
988}
989
Michael Halcrowdd2a3b72007-02-12 00:53:46 -0800990ssize_t
Michael Halcrow237fead2006-10-04 02:16:22 -0700991ecryptfs_getxattr(struct dentry *dentry, const char *name, void *value,
992 size_t size)
993{
994 int rc = 0;
995 struct dentry *lower_dentry;
996
997 lower_dentry = ecryptfs_dentry_to_lower(dentry);
998 if (!lower_dentry->d_inode->i_op->getxattr) {
999 rc = -ENOSYS;
1000 goto out;
1001 }
1002 mutex_lock(&lower_dentry->d_inode->i_mutex);
1003 rc = lower_dentry->d_inode->i_op->getxattr(lower_dentry, name, value,
1004 size);
1005 mutex_unlock(&lower_dentry->d_inode->i_mutex);
1006out:
1007 return rc;
1008}
1009
1010static ssize_t
1011ecryptfs_listxattr(struct dentry *dentry, char *list, size_t size)
1012{
1013 int rc = 0;
1014 struct dentry *lower_dentry;
1015
1016 lower_dentry = ecryptfs_dentry_to_lower(dentry);
1017 if (!lower_dentry->d_inode->i_op->listxattr) {
1018 rc = -ENOSYS;
1019 goto out;
1020 }
1021 mutex_lock(&lower_dentry->d_inode->i_mutex);
1022 rc = lower_dentry->d_inode->i_op->listxattr(lower_dentry, list, size);
1023 mutex_unlock(&lower_dentry->d_inode->i_mutex);
1024out:
1025 return rc;
1026}
1027
1028static int ecryptfs_removexattr(struct dentry *dentry, const char *name)
1029{
1030 int rc = 0;
1031 struct dentry *lower_dentry;
1032
1033 lower_dentry = ecryptfs_dentry_to_lower(dentry);
1034 if (!lower_dentry->d_inode->i_op->removexattr) {
1035 rc = -ENOSYS;
1036 goto out;
1037 }
1038 mutex_lock(&lower_dentry->d_inode->i_mutex);
1039 rc = lower_dentry->d_inode->i_op->removexattr(lower_dentry, name);
1040 mutex_unlock(&lower_dentry->d_inode->i_mutex);
1041out:
1042 return rc;
1043}
1044
1045int ecryptfs_inode_test(struct inode *inode, void *candidate_lower_inode)
1046{
1047 if ((ecryptfs_inode_to_lower(inode)
1048 == (struct inode *)candidate_lower_inode))
1049 return 1;
1050 else
1051 return 0;
1052}
1053
1054int ecryptfs_inode_set(struct inode *inode, void *lower_inode)
1055{
1056 ecryptfs_init_inode(inode, (struct inode *)lower_inode);
1057 return 0;
1058}
1059
Arjan van de Ven754661f2007-02-12 00:55:38 -08001060const struct inode_operations ecryptfs_symlink_iops = {
Michael Halcrow237fead2006-10-04 02:16:22 -07001061 .readlink = ecryptfs_readlink,
1062 .follow_link = ecryptfs_follow_link,
1063 .put_link = ecryptfs_put_link,
1064 .permission = ecryptfs_permission,
1065 .setattr = ecryptfs_setattr,
1066 .setxattr = ecryptfs_setxattr,
1067 .getxattr = ecryptfs_getxattr,
1068 .listxattr = ecryptfs_listxattr,
1069 .removexattr = ecryptfs_removexattr
1070};
1071
Arjan van de Ven754661f2007-02-12 00:55:38 -08001072const struct inode_operations ecryptfs_dir_iops = {
Michael Halcrow237fead2006-10-04 02:16:22 -07001073 .create = ecryptfs_create,
1074 .lookup = ecryptfs_lookup,
1075 .link = ecryptfs_link,
1076 .unlink = ecryptfs_unlink,
1077 .symlink = ecryptfs_symlink,
1078 .mkdir = ecryptfs_mkdir,
1079 .rmdir = ecryptfs_rmdir,
1080 .mknod = ecryptfs_mknod,
1081 .rename = ecryptfs_rename,
1082 .permission = ecryptfs_permission,
1083 .setattr = ecryptfs_setattr,
1084 .setxattr = ecryptfs_setxattr,
1085 .getxattr = ecryptfs_getxattr,
1086 .listxattr = ecryptfs_listxattr,
1087 .removexattr = ecryptfs_removexattr
1088};
1089
Arjan van de Ven754661f2007-02-12 00:55:38 -08001090const struct inode_operations ecryptfs_main_iops = {
Michael Halcrow237fead2006-10-04 02:16:22 -07001091 .permission = ecryptfs_permission,
1092 .setattr = ecryptfs_setattr,
1093 .setxattr = ecryptfs_setxattr,
1094 .getxattr = ecryptfs_getxattr,
1095 .listxattr = ecryptfs_listxattr,
1096 .removexattr = ecryptfs_removexattr
1097};