xfs_export.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. /*
  2. * Copyright (c) 2004-2005 Silicon Graphics, Inc.
  3. * All Rights Reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it would be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write the Free Software Foundation,
  16. * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #include "xfs.h"
  19. #include "xfs_types.h"
  20. #include "xfs_inum.h"
  21. #include "xfs_log.h"
  22. #include "xfs_trans.h"
  23. #include "xfs_sb.h"
  24. #include "xfs_ag.h"
  25. #include "xfs_dir2.h"
  26. #include "xfs_dmapi.h"
  27. #include "xfs_mount.h"
  28. #include "xfs_export.h"
  29. #include "xfs_vnodeops.h"
  30. #include "xfs_bmap_btree.h"
  31. #include "xfs_inode.h"
  32. /*
  33. * Note that we only accept fileids which are long enough rather than allow
  34. * the parent generation number to default to zero. XFS considers zero a
  35. * valid generation number not an invalid/wildcard value.
  36. */
  37. static int xfs_fileid_length(int fileid_type)
  38. {
  39. switch (fileid_type) {
  40. case FILEID_INO32_GEN:
  41. return 2;
  42. case FILEID_INO32_GEN_PARENT:
  43. return 4;
  44. case FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG:
  45. return 3;
  46. case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
  47. return 6;
  48. }
  49. return 255; /* invalid */
  50. }
  51. STATIC int
  52. xfs_fs_encode_fh(
  53. struct dentry *dentry,
  54. __u32 *fh,
  55. int *max_len,
  56. int connectable)
  57. {
  58. struct fid *fid = (struct fid *)fh;
  59. struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fh;
  60. struct inode *inode = dentry->d_inode;
  61. int fileid_type;
  62. int len;
  63. /* Directories don't need their parent encoded, they have ".." */
  64. if (S_ISDIR(inode->i_mode) || !connectable)
  65. fileid_type = FILEID_INO32_GEN;
  66. else
  67. fileid_type = FILEID_INO32_GEN_PARENT;
  68. /* filesystem may contain 64bit inode numbers */
  69. if (!(XFS_M(inode->i_sb)->m_flags & XFS_MOUNT_SMALL_INUMS))
  70. fileid_type |= XFS_FILEID_TYPE_64FLAG;
  71. /*
  72. * Only encode if there is enough space given. In practice
  73. * this means we can't export a filesystem with 64bit inodes
  74. * over NFSv2 with the subtree_check export option; the other
  75. * seven combinations work. The real answer is "don't use v2".
  76. */
  77. len = xfs_fileid_length(fileid_type);
  78. if (*max_len < len)
  79. return 255;
  80. *max_len = len;
  81. switch (fileid_type) {
  82. case FILEID_INO32_GEN_PARENT:
  83. spin_lock(&dentry->d_lock);
  84. fid->i32.parent_ino = dentry->d_parent->d_inode->i_ino;
  85. fid->i32.parent_gen = dentry->d_parent->d_inode->i_generation;
  86. spin_unlock(&dentry->d_lock);
  87. /*FALLTHRU*/
  88. case FILEID_INO32_GEN:
  89. fid->i32.ino = inode->i_ino;
  90. fid->i32.gen = inode->i_generation;
  91. break;
  92. case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
  93. spin_lock(&dentry->d_lock);
  94. fid64->parent_ino = dentry->d_parent->d_inode->i_ino;
  95. fid64->parent_gen = dentry->d_parent->d_inode->i_generation;
  96. spin_unlock(&dentry->d_lock);
  97. /*FALLTHRU*/
  98. case FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG:
  99. fid64->ino = inode->i_ino;
  100. fid64->gen = inode->i_generation;
  101. break;
  102. }
  103. return fileid_type;
  104. }
  105. STATIC struct inode *
  106. xfs_nfs_get_inode(
  107. struct super_block *sb,
  108. u64 ino,
  109. u32 generation)
  110. {
  111. xfs_mount_t *mp = XFS_M(sb);
  112. xfs_inode_t *ip;
  113. int error;
  114. /*
  115. * NFS can sometimes send requests for ino 0. Fail them gracefully.
  116. */
  117. if (ino == 0)
  118. return ERR_PTR(-ESTALE);
  119. error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_SHARED, &ip, 0);
  120. if (error)
  121. return ERR_PTR(-error);
  122. if (!ip)
  123. return ERR_PTR(-EIO);
  124. if (ip->i_d.di_gen != generation) {
  125. xfs_iput_new(ip, XFS_ILOCK_SHARED);
  126. return ERR_PTR(-ENOENT);
  127. }
  128. xfs_iunlock(ip, XFS_ILOCK_SHARED);
  129. return VFS_I(ip);
  130. }
  131. STATIC struct dentry *
  132. xfs_fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
  133. int fh_len, int fileid_type)
  134. {
  135. struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fid;
  136. struct inode *inode = NULL;
  137. if (fh_len < xfs_fileid_length(fileid_type))
  138. return NULL;
  139. switch (fileid_type) {
  140. case FILEID_INO32_GEN_PARENT:
  141. case FILEID_INO32_GEN:
  142. inode = xfs_nfs_get_inode(sb, fid->i32.ino, fid->i32.gen);
  143. break;
  144. case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
  145. case FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG:
  146. inode = xfs_nfs_get_inode(sb, fid64->ino, fid64->gen);
  147. break;
  148. }
  149. return d_obtain_alias(inode);
  150. }
  151. STATIC struct dentry *
  152. xfs_fs_fh_to_parent(struct super_block *sb, struct fid *fid,
  153. int fh_len, int fileid_type)
  154. {
  155. struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fid;
  156. struct inode *inode = NULL;
  157. switch (fileid_type) {
  158. case FILEID_INO32_GEN_PARENT:
  159. inode = xfs_nfs_get_inode(sb, fid->i32.parent_ino,
  160. fid->i32.parent_gen);
  161. break;
  162. case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
  163. inode = xfs_nfs_get_inode(sb, fid64->parent_ino,
  164. fid64->parent_gen);
  165. break;
  166. }
  167. return d_obtain_alias(inode);
  168. }
  169. STATIC struct dentry *
  170. xfs_fs_get_parent(
  171. struct dentry *child)
  172. {
  173. int error;
  174. struct xfs_inode *cip;
  175. error = xfs_lookup(XFS_I(child->d_inode), &xfs_name_dotdot, &cip, NULL);
  176. if (unlikely(error))
  177. return ERR_PTR(-error);
  178. return d_obtain_alias(VFS_I(cip));
  179. }
  180. const struct export_operations xfs_export_operations = {
  181. .encode_fh = xfs_fs_encode_fh,
  182. .fh_to_dentry = xfs_fs_fh_to_dentry,
  183. .fh_to_parent = xfs_fs_fh_to_parent,
  184. .get_parent = xfs_fs_get_parent,
  185. };