Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 1 | /** |
| 2 | * eCryptfs: Linux filesystem encryption layer |
| 3 | * |
| 4 | * Copyright (C) 1997-2003 Erez Zadok |
| 5 | * Copyright (C) 2001-2003 Stony Brook University |
| 6 | * Copyright (C) 2004-2006 International Business Machines Corp. |
| 7 | * Author(s): Michael A. Halcrow <mahalcro@us.ibm.com> |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation; either version 2 of the |
| 12 | * License, or (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, but |
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
| 22 | * 02111-1307, USA. |
| 23 | */ |
| 24 | |
| 25 | #include <linux/dcache.h> |
| 26 | #include <linux/namei.h> |
Michael Halcrow | 45ec4aba | 2006-10-30 22:07:20 -0800 | [diff] [blame] | 27 | #include <linux/mount.h> |
Josef "Jeff" Sipek | 0cc72dc | 2006-12-08 02:36:31 -0800 | [diff] [blame] | 28 | #include <linux/fs_stack.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 29 | #include <linux/slab.h> |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 30 | #include "ecryptfs_kernel.h" |
| 31 | |
| 32 | /** |
| 33 | * ecryptfs_d_revalidate - revalidate an ecryptfs dentry |
| 34 | * @dentry: The ecryptfs dentry |
Al Viro | 0b728e1 | 2012-06-10 16:03:43 -0400 | [diff] [blame] | 35 | * @flags: lookup flags |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 36 | * |
| 37 | * Called when the VFS needs to revalidate a dentry. This |
| 38 | * is called whenever a name lookup finds a dentry in the |
| 39 | * dcache. Most filesystems leave this as NULL, because all their |
| 40 | * dentries in the dcache are valid. |
| 41 | * |
| 42 | * Returns 1 if valid, 0 otherwise. |
| 43 | * |
| 44 | */ |
Al Viro | 0b728e1 | 2012-06-10 16:03:43 -0400 | [diff] [blame] | 45 | static int ecryptfs_d_revalidate(struct dentry *dentry, unsigned int flags) |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 46 | { |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 47 | struct dentry *lower_dentry; |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 48 | int rc = 1; |
| 49 | |
Al Viro | 0b728e1 | 2012-06-10 16:03:43 -0400 | [diff] [blame] | 50 | if (flags & LOOKUP_RCU) |
Nick Piggin | 34286d6 | 2011-01-07 17:49:57 +1100 | [diff] [blame] | 51 | return -ECHILD; |
| 52 | |
| 53 | lower_dentry = ecryptfs_dentry_to_lower(dentry); |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 54 | if (!lower_dentry->d_op || !lower_dentry->d_op->d_revalidate) |
| 55 | goto out; |
Al Viro | 0b728e1 | 2012-06-10 16:03:43 -0400 | [diff] [blame] | 56 | rc = lower_dentry->d_op->d_revalidate(lower_dentry, flags); |
Michael Halcrow | ae56fb1 | 2006-11-16 01:19:30 -0800 | [diff] [blame] | 57 | if (dentry->d_inode) { |
| 58 | struct inode *lower_inode = |
| 59 | ecryptfs_inode_to_lower(dentry->d_inode); |
| 60 | |
Erez Zadok | 9afa2fb | 2009-12-02 19:51:54 -0500 | [diff] [blame] | 61 | fsstack_copy_attr_all(dentry->d_inode, lower_inode); |
Michael Halcrow | ae56fb1 | 2006-11-16 01:19:30 -0800 | [diff] [blame] | 62 | } |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 63 | out: |
| 64 | return rc; |
| 65 | } |
| 66 | |
| 67 | struct kmem_cache *ecryptfs_dentry_info_cache; |
| 68 | |
| 69 | /** |
| 70 | * ecryptfs_d_release |
| 71 | * @dentry: The ecryptfs dentry |
| 72 | * |
| 73 | * Called when a dentry is really deallocated. |
| 74 | */ |
| 75 | static void ecryptfs_d_release(struct dentry *dentry) |
| 76 | { |
Michael Halcrow | b228b8e | 2007-03-16 13:38:22 -0800 | [diff] [blame] | 77 | if (ecryptfs_dentry_to_private(dentry)) { |
| 78 | if (ecryptfs_dentry_to_lower(dentry)) { |
Michael Halcrow | b228b8e | 2007-03-16 13:38:22 -0800 | [diff] [blame] | 79 | dput(ecryptfs_dentry_to_lower(dentry)); |
Michael Halcrow | 5366dc9f | 2008-03-19 17:00:58 -0700 | [diff] [blame] | 80 | mntput(ecryptfs_dentry_to_lower_mnt(dentry)); |
Michael Halcrow | b228b8e | 2007-03-16 13:38:22 -0800 | [diff] [blame] | 81 | } |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 82 | kmem_cache_free(ecryptfs_dentry_info_cache, |
| 83 | ecryptfs_dentry_to_private(dentry)); |
Michael Halcrow | 45ec4aba | 2006-10-30 22:07:20 -0800 | [diff] [blame] | 84 | } |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 85 | return; |
| 86 | } |
| 87 | |
Al Viro | 5a3fd05 | 2009-02-20 05:57:52 +0000 | [diff] [blame] | 88 | const struct dentry_operations ecryptfs_dops = { |
Michael Halcrow | 237fead | 2006-10-04 02:16:22 -0700 | [diff] [blame] | 89 | .d_revalidate = ecryptfs_d_revalidate, |
| 90 | .d_release = ecryptfs_d_release, |
| 91 | }; |