]> Git Repo - linux.git/blame - fs/ecryptfs/inode.c
eCryptfs: Replace %Z with %z
[linux.git] / fs / ecryptfs / inode.c
CommitLineData
237fead6
MH
1/**
2 * eCryptfs: Linux filesystem encryption layer
3 *
4 * Copyright (C) 1997-2004 Erez Zadok
5 * Copyright (C) 2001-2004 Stony Brook University
dd2a3b7a 6 * Copyright (C) 2004-2007 International Business Machines Corp.
237fead6
MH
7 * Author(s): Michael A. Halcrow <[email protected]>
8 * Michael C. Thompsion <[email protected]>
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>
0cc72dc7 33#include <linux/fs_stack.h>
0a688ad7 34#include <asm/unaligned.h>
237fead6
MH
35#include "ecryptfs_kernel.h"
36
37static struct dentry *lock_parent(struct dentry *dentry)
38{
39 struct dentry *dir;
40
8dc4e373 41 dir = dget_parent(dentry);
908e0a8a 42 mutex_lock_nested(&(dir->d_inode->i_mutex), I_MUTEX_PARENT);
237fead6
MH
43 return dir;
44}
45
237fead6
MH
46static void unlock_dir(struct dentry *dir)
47{
48 mutex_unlock(&dir->d_inode->i_mutex);
49 dput(dir);
50}
51
237fead6
MH
52/**
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
4ac91378
JB
75 dentry_save = nd->path.dentry;
76 vfsmount_save = nd->path.mnt;
77 nd->path.dentry = lower_dentry;
78 nd->path.mnt = lower_mnt;
237fead6 79 rc = vfs_create(lower_dir_inode, lower_dentry, mode, nd);
4ac91378
JB
80 nd->path.dentry = dentry_save;
81 nd->path.mnt = vfsmount_save;
237fead6
MH
82 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);
801678c5 109 if (IS_ERR(lower_dir_dentry)) {
237fead6
MH
110 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);
4981e081 117 if (rc) {
caeeeecf 118 printk(KERN_ERR "%s: Failure to create dentry in lower fs; "
18d1dbf1 119 "rc = [%d]\n", __func__, rc);
caeeeecf 120 goto out_lock;
237fead6
MH
121 }
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 }
0cc72dc7
JJS
128 fsstack_copy_attr_times(directory_inode, lower_dir_dentry->d_inode);
129 fsstack_copy_inode_size(directory_inode, lower_dir_dentry->d_inode);
237fead6
MH
130out_lock:
131 unlock_dir(lower_dir_dentry);
132out:
133 return rc;
134}
135
136/**
137 * grow_file
d7cdc5fe 138 * @ecryptfs_dentry: the eCryptfs dentry
237fead6
MH
139 *
140 * This is the code which will grow the file to its correct size.
141 */
d7cdc5fe 142static int grow_file(struct dentry *ecryptfs_dentry)
237fead6 143{
d7cdc5fe 144 struct inode *ecryptfs_inode = ecryptfs_dentry->d_inode;
237fead6
MH
145 struct file fake_file;
146 struct ecryptfs_file_info tmp_file_info;
d7cdc5fe
MH
147 char zero_virt[] = { 0x00 };
148 int rc = 0;
237fead6
MH
149
150 memset(&fake_file, 0, sizeof(fake_file));
bd243a4b 151 fake_file.f_path.dentry = ecryptfs_dentry;
237fead6
MH
152 memset(&tmp_file_info, 0, sizeof(tmp_file_info));
153 ecryptfs_set_file_private(&fake_file, &tmp_file_info);
d7cdc5fe
MH
154 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;
237fead6
MH
162 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{
d7cdc5fe
MH
175 struct ecryptfs_crypt_stat *crypt_stat =
176 &ecryptfs_inode_to_private(ecryptfs_dentry->d_inode)->crypt_stat;
237fead6 177 int rc = 0;
237fead6 178
237fead6
MH
179 if (S_ISDIR(ecryptfs_dentry->d_inode->i_mode)) {
180 ecryptfs_printk(KERN_DEBUG, "This is a directory\n");
e2bd99ec 181 crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED);
d7cdc5fe 182 goto out;
237fead6 183 }
e2bd99ec 184 crypt_stat->flags |= ECRYPTFS_NEW_FILE;
237fead6
MH
185 ecryptfs_printk(KERN_DEBUG, "Initializing crypto context\n");
186 rc = ecryptfs_new_file_context(ecryptfs_dentry);
187 if (rc) {
d7cdc5fe
MH
188 ecryptfs_printk(KERN_ERR, "Error creating new file "
189 "context; rc = [%d]\n", rc);
190 goto out;
237fead6 191 }
391b52f9
MH
192 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 }
d7cdc5fe 202 rc = ecryptfs_write_metadata(ecryptfs_dentry);
237fead6 203 if (rc) {
d7cdc5fe
MH
204 printk(KERN_ERR "Error writing headers; rc = [%d]\n", rc);
205 goto out;
237fead6 206 }
d7cdc5fe 207 rc = grow_file(ecryptfs_dentry);
5dda6992 208 if (rc)
d7cdc5fe 209 printk(KERN_ERR "Error growing file; rc = [%d]\n", rc);
237fead6
MH
210out:
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
addd65ad 231 /* ecryptfs_do_create() calls ecryptfs_interpose() */
237fead6
MH
232 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/**
addd65ad 246 * ecryptfs_lookup_and_interpose_lower - Perform a lookup
237fead6 247 */
addd65ad
MH
248int 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)
237fead6 253{
237fead6 254 struct dentry *lower_dir_dentry;
237fead6 255 struct vfsmount *lower_mnt;
addd65ad 256 struct inode *lower_inode;
e77a56dd 257 struct ecryptfs_mount_crypt_stat *mount_crypt_stat;
237fead6 258 char *page_virt = NULL;
237fead6 259 u64 file_size;
addd65ad 260 int rc = 0;
237fead6 261
addd65ad
MH
262 lower_dir_dentry = lower_dentry->d_parent;
263 lower_mnt = mntget(ecryptfs_dentry_to_lower_mnt(
264 ecryptfs_dentry->d_parent));
237fead6 265 lower_inode = lower_dentry->d_inode;
addd65ad 266 fsstack_copy_attr_atime(ecryptfs_dir_inode, lower_dir_dentry->d_inode);
237fead6 267 BUG_ON(!atomic_read(&lower_dentry->d_count));
addd65ad 268 ecryptfs_set_dentry_private(ecryptfs_dentry,
237fead6 269 kmem_cache_alloc(ecryptfs_dentry_info_cache,
e94b1766 270 GFP_KERNEL));
addd65ad 271 if (!ecryptfs_dentry_to_private(ecryptfs_dentry)) {
237fead6 272 rc = -ENOMEM;
addd65ad
MH
273 printk(KERN_ERR "%s: Out of memory whilst attempting "
274 "to allocate ecryptfs_dentry_info struct\n",
275 __func__);
237fead6
MH
276 goto out_dput;
277 }
addd65ad
MH
278 ecryptfs_set_dentry_lower(ecryptfs_dentry, lower_dentry);
279 ecryptfs_set_dentry_lower_mnt(ecryptfs_dentry, lower_mnt);
237fead6
MH
280 if (!lower_dentry->d_inode) {
281 /* We want to add because we couldn't find in lower */
addd65ad 282 d_add(ecryptfs_dentry, NULL);
237fead6
MH
283 goto out;
284 }
addd65ad
MH
285 rc = ecryptfs_interpose(lower_dentry, ecryptfs_dentry,
286 ecryptfs_dir_inode->i_sb, 1);
237fead6 287 if (rc) {
addd65ad
MH
288 printk(KERN_ERR "%s: Error interposing; rc = [%d]\n",
289 __func__, rc);
391b52f9 290 goto out;
237fead6 291 }
addd65ad 292 if (S_ISDIR(lower_inode->i_mode))
237fead6 293 goto out;
addd65ad 294 if (S_ISLNK(lower_inode->i_mode))
237fead6 295 goto out;
addd65ad 296 if (special_file(lower_inode->i_mode))
202a21d6 297 goto out;
addd65ad 298 if (!ecryptfs_nd)
237fead6 299 goto out;
237fead6 300 /* Released in this function */
addd65ad 301 page_virt = kmem_cache_zalloc(ecryptfs_header_cache_2, GFP_USER);
237fead6 302 if (!page_virt) {
addd65ad
MH
303 printk(KERN_ERR "%s: Cannot kmem_cache_zalloc() a page\n",
304 __func__);
237fead6 305 rc = -ENOMEM;
391b52f9 306 goto out;
237fead6 307 }
addd65ad
MH
308 if (!ecryptfs_inode_to_private(ecryptfs_dentry->d_inode)->lower_file) {
309 rc = ecryptfs_init_persistent_file(ecryptfs_dentry);
391b52f9
MH
310 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__,
addd65ad
MH
314 ecryptfs_dentry->d_name.name, rc);
315 goto out_free_kmem;
391b52f9
MH
316 }
317 }
d7cdc5fe 318 rc = ecryptfs_read_and_validate_header_region(page_virt,
addd65ad 319 ecryptfs_dentry->d_inode);
237fead6 320 if (rc) {
addd65ad
MH
321 rc = ecryptfs_read_and_validate_xattr_region(page_virt,
322 ecryptfs_dentry);
dd2a3b7a 323 if (rc) {
dd2a3b7a 324 rc = 0;
addd65ad 325 goto out_free_kmem;
237fead6 326 }
dd2a3b7a 327 crypt_stat->flags |= ECRYPTFS_METADATA_IN_XATTR;
237fead6 328 }
e77a56dd 329 mount_crypt_stat = &ecryptfs_superblock_to_private(
addd65ad 330 ecryptfs_dentry->d_sb)->mount_crypt_stat;
e77a56dd
MH
331 if (mount_crypt_stat->flags & ECRYPTFS_ENCRYPTED_VIEW_ENABLED) {
332 if (crypt_stat->flags & ECRYPTFS_METADATA_IN_XATTR)
cc11beff 333 file_size = (crypt_stat->num_header_bytes_at_front
e77a56dd
MH
334 + i_size_read(lower_dentry->d_inode));
335 else
336 file_size = i_size_read(lower_dentry->d_inode);
337 } else {
0a688ad7 338 file_size = get_unaligned_be64(page_virt);
e77a56dd 339 }
addd65ad
MH
340 i_size_write(ecryptfs_dentry->d_inode, (loff_t)file_size);
341out_free_kmem:
237fead6
MH
342 kmem_cache_free(ecryptfs_header_cache_2, page_virt);
343 goto out;
237fead6
MH
344out_dput:
345 dput(lower_dentry);
addd65ad
MH
346 d_drop(ecryptfs_dentry);
347out:
348 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);
237fead6 435out:
addd65ad 436 kfree(encrypted_and_encoded_name);
237fead6
MH
437 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;
0cc72dc7
JJS
462 fsstack_copy_attr_times(dir, lower_new_dentry->d_inode);
463 fsstack_copy_inode_size(dir, lower_new_dentry->d_inode);
237fead6
MH
464 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);
ae56fb16 471 d_drop(lower_old_dentry);
45ec4aba
MH
472 d_drop(new_dentry);
473 d_drop(old_dentry);
237fead6
MH
474 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);
8dc4e373 482 struct dentry *lower_dir_dentry;
237fead6 483
8dc4e373 484 lower_dir_dentry = lock_parent(lower_dentry);
237fead6
MH
485 rc = vfs_unlink(lower_dir_inode, lower_dentry);
486 if (rc) {
ae56fb16 487 printk(KERN_ERR "Error in vfs_unlink; rc = [%d]\n", rc);
237fead6
MH
488 goto out_unlock;
489 }
0cc72dc7 490 fsstack_copy_attr_times(dir, lower_dir_inode);
237fead6
MH
491 dentry->d_inode->i_nlink =
492 ecryptfs_inode_to_lower(dentry->d_inode)->i_nlink;
493 dentry->d_inode->i_ctime = dir->i_ctime;
caeeeecf 494 d_drop(dentry);
237fead6 495out_unlock:
8dc4e373 496 unlock_dir(lower_dir_dentry);
237fead6
MH
497 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;
237fead6 506 char *encoded_symname;
addd65ad
MH
507 size_t encoded_symlen;
508 struct ecryptfs_mount_crypt_stat *mount_crypt_stat = NULL;
237fead6
MH
509
510 lower_dentry = ecryptfs_dentry_to_lower(dentry);
511 dget(lower_dentry);
512 lower_dir_dentry = lock_parent(lower_dentry);
addd65ad
MH
513 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)
237fead6 521 goto out_lock;
237fead6 522 rc = vfs_symlink(lower_dir_dentry->d_inode, lower_dentry,
db2e747b 523 encoded_symname);
237fead6
MH
524 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;
0cc72dc7
JJS
530 fsstack_copy_attr_times(dir, lower_dir_dentry->d_inode);
531 fsstack_copy_inode_size(dir, lower_dir_dentry->d_inode);
237fead6
MH
532out_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;
0cc72dc7
JJS
554 fsstack_copy_attr_times(dir, lower_dir_dentry->d_inode);
555 fsstack_copy_inode_size(dir, lower_dir_dentry->d_inode);
237fead6
MH
556 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{
237fead6 566 struct dentry *lower_dentry;
237fead6 567 struct dentry *lower_dir_dentry;
45ec4aba 568 int rc;
237fead6
MH
569
570 lower_dentry = ecryptfs_dentry_to_lower(dentry);
45ec4aba 571 dget(dentry);
237fead6 572 lower_dir_dentry = lock_parent(lower_dentry);
45ec4aba 573 dget(lower_dentry);
237fead6 574 rc = vfs_rmdir(lower_dir_dentry->d_inode, lower_dentry);
45ec4aba
MH
575 dput(lower_dentry);
576 if (!rc)
577 d_delete(lower_dentry);
0cc72dc7 578 fsstack_copy_attr_times(dir, lower_dir_dentry->d_inode);
237fead6
MH
579 dir->i_nlink = lower_dir_dentry->d_inode->i_nlink;
580 unlock_dir(lower_dir_dentry);
581 if (!rc)
582 d_drop(dentry);
45ec4aba 583 dput(dentry);
237fead6
MH
584 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;
391b52f9 599 rc = ecryptfs_interpose(lower_dentry, dentry, dir->i_sb, 0);
237fead6
MH
600 if (rc)
601 goto out;
0cc72dc7
JJS
602 fsstack_copy_attr_times(dir, lower_dir_dentry->d_inode);
603 fsstack_copy_inode_size(dir, lower_dir_dentry->d_inode);
237fead6
MH
604out:
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;
0cc72dc7 632 fsstack_copy_attr_all(new_dir, lower_new_dir_dentry->d_inode, NULL);
237fead6 633 if (new_dir != old_dir)
0cc72dc7 634 fsstack_copy_attr_all(old_dir, lower_old_dir_dentry->d_inode, NULL);
237fead6
MH
635out_lock:
636 unlock_rename(lower_old_dir_dentry, lower_new_dir_dentry);
a9083081
MH
637 dput(lower_new_dentry->d_parent);
638 dput(lower_old_dentry->d_parent);
237fead6
MH
639 dput(lower_new_dentry);
640 dput(lower_old_dentry);
641 return rc;
642}
643
644static int
addd65ad 645ecryptfs_readlink(struct dentry *dentry, char __user *buf, int bufsiz)
237fead6 646{
237fead6 647 char *lower_buf;
addd65ad 648 struct dentry *lower_dentry;
237fead6 649 struct ecryptfs_crypt_stat *crypt_stat;
addd65ad
MH
650 char *plaintext_name;
651 size_t plaintext_name_size;
652 mm_segment_t old_fs;
653 int rc;
237fead6
MH
654
655 lower_dentry = ecryptfs_dentry_to_lower(dentry);
acfa4380 656 if (!lower_dentry->d_inode->i_op->readlink) {
237fead6
MH
657 rc = -EINVAL;
658 goto out;
659 }
addd65ad 660 crypt_stat = &ecryptfs_inode_to_private(dentry->d_inode)->crypt_stat;
237fead6
MH
661 /* Released in this function */
662 lower_buf = kmalloc(bufsiz, GFP_KERNEL);
663 if (lower_buf == NULL) {
addd65ad
MH
664 printk(KERN_ERR "%s: Out of memory whilst attempting to "
665 "kmalloc [%d] bytes\n", __func__, bufsiz);
237fead6
MH
666 rc = -ENOMEM;
667 goto out;
668 }
669 old_fs = get_fs();
670 set_fs(get_ds());
237fead6
MH
671 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) {
addd65ad
MH
676 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);
237fead6 684 goto out_free_lower_buf;
237fead6 685 }
addd65ad
MH
686 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);
237fead6
MH
693 }
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());
237fead6 714 rc = dentry->d_inode->i_op->readlink(dentry, (char __user *)buf, len);
237fead6
MH
715 set_fs(old_fs);
716 if (rc < 0)
717 goto out_free;
a17d5232
DG
718 else
719 buf[rc] = '\0';
237fead6
MH
720 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 *
cc11beff 741 * Calculate the required size of the lower file based on the
237fead6
MH
742 * 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
cc11beff 753 lower_size = crypt_stat->num_header_bytes_at_front;
237fead6
MH
754 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;
2ed92554 782 struct file fake_ecryptfs_file;
237fead6
MH
783 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));
bd243a4b 795 fake_ecryptfs_file.f_path.dentry = dentry;
237fead6
MH
796 /* Released at out_free: label */
797 ecryptfs_set_file_private(&fake_ecryptfs_file,
798 kmem_cache_alloc(ecryptfs_file_info_cache,
e94b1766 799 GFP_KERNEL));
237fead6
MH
800 if (unlikely(!ecryptfs_file_to_private(&fake_ecryptfs_file))) {
801 rc = -ENOMEM;
802 goto out;
803 }
804 lower_dentry = ecryptfs_dentry_to_lower(dentry);
2ed92554
MH
805 ecryptfs_set_file_lower(
806 &fake_ecryptfs_file,
807 ecryptfs_inode_to_private(dentry->d_inode)->lower_file);
237fead6
MH
808 /* Switch on growing or shrinking file */
809 if (new_length > i_size) {
2ed92554
MH
810 char zero[] = { 0x00 };
811
812 /* 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);
237fead6 818 } else { /* new_length < i_size_read(inode) */
2ed92554
MH
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);
5dda6992 837 if (rc) {
240e2df5
MH
838 printk(KERN_ERR "Error attempting to zero out "
839 "the remainder of the end page on "
840 "reducing truncate; rc = [%d]\n", rc);
2ed92554 841 goto out_free;
240e2df5
MH
842 }
843 }
237fead6 844 vmtruncate(inode, new_length);
0216f7f7 845 rc = ecryptfs_write_inode_size_to_metadata(inode);
dd2a3b7a
MH
846 if (rc) {
847 printk(KERN_ERR "Problem with "
848 "ecryptfs_write_inode_size_to_metadata; "
849 "rc = [%d]\n", rc);
2ed92554 850 goto out_free;
dd2a3b7a 851 }
237fead6
MH
852 /* 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 }
237fead6
MH
862out_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
e6305c43 871ecryptfs_permission(struct inode *inode, int mask)
237fead6 872{
f419a2e3 873 return inode_permission(ecryptfs_inode_to_lower(inode), mask);
237fead6
MH
874}
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;
e10f281b
MH
897 if (!(crypt_stat->flags & ECRYPTFS_STRUCT_INITIALIZED))
898 ecryptfs_init_crypt_stat(crypt_stat);
237fead6
MH
899 inode = dentry->d_inode;
900 lower_inode = ecryptfs_inode_to_lower(inode);
e10f281b
MH
901 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);
64ee4808
MH
905 else if (S_ISREG(dentry->d_inode->i_mode)
906 && (!(crypt_stat->flags & ECRYPTFS_POLICY_APPLIED)
907 || !(crypt_stat->flags & ECRYPTFS_KEY_VALID))) {
e10f281b 908 struct ecryptfs_mount_crypt_stat *mount_crypt_stat;
e10f281b 909
e10f281b
MH
910 mount_crypt_stat = &ecryptfs_superblock_to_private(
911 dentry->d_sb)->mount_crypt_stat;
d7cdc5fe 912 rc = ecryptfs_read_metadata(dentry);
5dda6992 913 if (rc) {
e10f281b
MH
914 if (!(mount_crypt_stat->flags
915 & ECRYPTFS_PLAINTEXT_PASSTHROUGH_ENABLED)) {
916 rc = -EIO;
25bd8174 917 printk(KERN_WARNING "Either the lower file "
e10f281b 918 "is not in a valid eCryptfs format, "
25bd8174
MH
919 "or the key could not be retrieved. "
920 "Plaintext passthrough mode is not "
e10f281b 921 "enabled; returning -EIO\n");
e10f281b 922 mutex_unlock(&crypt_stat->cs_mutex);
e10f281b
MH
923 goto out;
924 }
925 rc = 0;
926 crypt_stat->flags &= ~(ECRYPTFS_ENCRYPTED);
927 mutex_unlock(&crypt_stat->cs_mutex);
e10f281b
MH
928 goto out;
929 }
e10f281b
MH
930 }
931 mutex_unlock(&crypt_stat->cs_mutex);
237fead6
MH
932 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 }
1ac564ec
JL
944
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
9c3580aa 952 mutex_lock(&lower_dentry->d_inode->i_mutex);
237fead6 953 rc = notify_change(lower_dentry, ia);
9c3580aa 954 mutex_unlock(&lower_dentry->d_inode->i_mutex);
237fead6 955out:
0cc72dc7 956 fsstack_copy_attr_all(inode, lower_inode, NULL);
237fead6
MH
957 return rc;
958}
959
dd2a3b7a 960int
237fead6
MH
961ecryptfs_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
d7cdc5fe
MH
980ssize_t
981ecryptfs_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
7896b631 998static ssize_t
237fead6
MH
999ecryptfs_getxattr(struct dentry *dentry, const char *name, void *value,
1000 size_t size)
1001{
2ed92554
MH
1002 return ecryptfs_getxattr_lower(ecryptfs_dentry_to_lower(dentry), name,
1003 value, size);
237fead6
MH
1004}
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
754661f1 1056const struct inode_operations ecryptfs_symlink_iops = {
237fead6
MH
1057 .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
754661f1 1068const struct inode_operations ecryptfs_dir_iops = {
237fead6
MH
1069 .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
754661f1 1086const struct inode_operations ecryptfs_main_iops = {
237fead6
MH
1087 .permission = ecryptfs_permission,
1088 .setattr = ecryptfs_setattr,
1089 .setxattr = ecryptfs_setxattr,
1090 .getxattr = ecryptfs_getxattr,
1091 .listxattr = ecryptfs_listxattr,
1092 .removexattr = ecryptfs_removexattr
1093};
This page took 0.496072 seconds and 4 git commands to generate.