dentry.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. #include <linux/dcache.h>
  25. #include <linux/namei.h>
  26. #include "ecryptfs_kernel.h"
  27. /**
  28. * ecryptfs_d_revalidate - revalidate an ecryptfs dentry
  29. * @dentry: The ecryptfs dentry
  30. * @nd: The associated nameidata
  31. *
  32. * Called when the VFS needs to revalidate a dentry. This
  33. * is called whenever a name lookup finds a dentry in the
  34. * dcache. Most filesystems leave this as NULL, because all their
  35. * dentries in the dcache are valid.
  36. *
  37. * Returns 1 if valid, 0 otherwise.
  38. *
  39. */
  40. static int ecryptfs_d_revalidate(struct dentry *dentry, struct nameidata *nd)
  41. {
  42. struct dentry *lower_dentry = ecryptfs_dentry_to_lower(dentry);
  43. struct vfsmount *lower_mnt = ecryptfs_dentry_to_lower_mnt(dentry);
  44. struct dentry *dentry_save;
  45. struct vfsmount *vfsmount_save;
  46. int rc = 1;
  47. if (!lower_dentry->d_op || !lower_dentry->d_op->d_revalidate)
  48. goto out;
  49. dentry_save = nd->dentry;
  50. vfsmount_save = nd->mnt;
  51. nd->dentry = lower_dentry;
  52. nd->mnt = lower_mnt;
  53. rc = lower_dentry->d_op->d_revalidate(lower_dentry, nd);
  54. nd->dentry = dentry_save;
  55. nd->mnt = vfsmount_save;
  56. out:
  57. return rc;
  58. }
  59. struct kmem_cache *ecryptfs_dentry_info_cache;
  60. /**
  61. * ecryptfs_d_release
  62. * @dentry: The ecryptfs dentry
  63. *
  64. * Called when a dentry is really deallocated.
  65. */
  66. static void ecryptfs_d_release(struct dentry *dentry)
  67. {
  68. struct dentry *lower_dentry;
  69. lower_dentry = ecryptfs_dentry_to_lower(dentry);
  70. if (ecryptfs_dentry_to_private(dentry))
  71. kmem_cache_free(ecryptfs_dentry_info_cache,
  72. ecryptfs_dentry_to_private(dentry));
  73. if (lower_dentry)
  74. dput(lower_dentry);
  75. return;
  76. }
  77. struct dentry_operations ecryptfs_dops = {
  78. .d_revalidate = ecryptfs_d_revalidate,
  79. .d_release = ecryptfs_d_release,
  80. };