xfs_export.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  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_mount.h"
  27. #include "xfs_export.h"
  28. #include "xfs_vnodeops.h"
  29. #include "xfs_bmap_btree.h"
  30. #include "xfs_inode.h"
  31. #include "xfs_inode_item.h"
  32. #include "xfs_trace.h"
  33. /*
  34. * Note that we only accept fileids which are long enough rather than allow
  35. * the parent generation number to default to zero. XFS considers zero a
  36. * valid generation number not an invalid/wildcard value.
  37. */
  38. static int xfs_fileid_length(int fileid_type)
  39. {
  40. switch (fileid_type) {
  41. case FILEID_INO32_GEN:
  42. return 2;
  43. case FILEID_INO32_GEN_PARENT:
  44. return 4;
  45. case FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG:
  46. return 3;
  47. case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
  48. return 6;
  49. }
  50. return 255; /* invalid */
  51. }
  52. STATIC int
  53. xfs_fs_encode_fh(
  54. struct inode *inode,
  55. __u32 *fh,
  56. int *max_len,
  57. struct inode *parent)
  58. {
  59. struct fid *fid = (struct fid *)fh;
  60. struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fh;
  61. int fileid_type;
  62. int len;
  63. /* Directories don't need their parent encoded, they have ".." */
  64. if (!parent)
  65. fileid_type = FILEID_INO32_GEN;
  66. else
  67. fileid_type = FILEID_INO32_GEN_PARENT;
  68. /*
  69. * If the the filesystem may contain 64bit inode numbers, we need
  70. * to use larger file handles that can represent them.
  71. *
  72. * While we only allocate inodes that do not fit into 32 bits any
  73. * large enough filesystem may contain them, thus the slightly
  74. * confusing looking conditional below.
  75. */
  76. if (!(XFS_M(inode->i_sb)->m_flags & XFS_MOUNT_SMALL_INUMS) ||
  77. (XFS_M(inode->i_sb)->m_flags & XFS_MOUNT_32BITINODES))
  78. fileid_type |= XFS_FILEID_TYPE_64FLAG;
  79. /*
  80. * Only encode if there is enough space given. In practice
  81. * this means we can't export a filesystem with 64bit inodes
  82. * over NFSv2 with the subtree_check export option; the other
  83. * seven combinations work. The real answer is "don't use v2".
  84. */
  85. len = xfs_fileid_length(fileid_type);
  86. if (*max_len < len) {
  87. *max_len = len;
  88. return 255;
  89. }
  90. *max_len = len;
  91. switch (fileid_type) {
  92. case FILEID_INO32_GEN_PARENT:
  93. fid->i32.parent_ino = XFS_I(parent)->i_ino;
  94. fid->i32.parent_gen = parent->i_generation;
  95. /*FALLTHRU*/
  96. case FILEID_INO32_GEN:
  97. fid->i32.ino = XFS_I(inode)->i_ino;
  98. fid->i32.gen = inode->i_generation;
  99. break;
  100. case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
  101. fid64->parent_ino = XFS_I(parent)->i_ino;
  102. fid64->parent_gen = parent->i_generation;
  103. /*FALLTHRU*/
  104. case FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG:
  105. fid64->ino = XFS_I(inode)->i_ino;
  106. fid64->gen = inode->i_generation;
  107. break;
  108. }
  109. return fileid_type;
  110. }
  111. STATIC struct inode *
  112. xfs_nfs_get_inode(
  113. struct super_block *sb,
  114. u64 ino,
  115. u32 generation)
  116. {
  117. xfs_mount_t *mp = XFS_M(sb);
  118. xfs_inode_t *ip;
  119. int error;
  120. /*
  121. * NFS can sometimes send requests for ino 0. Fail them gracefully.
  122. */
  123. if (ino == 0)
  124. return ERR_PTR(-ESTALE);
  125. /*
  126. * The XFS_IGET_UNTRUSTED means that an invalid inode number is just
  127. * fine and not an indication of a corrupted filesystem as clients can
  128. * send invalid file handles and we have to handle it gracefully..
  129. */
  130. error = xfs_iget(mp, NULL, ino, XFS_IGET_UNTRUSTED, 0, &ip);
  131. if (error) {
  132. /*
  133. * EINVAL means the inode cluster doesn't exist anymore.
  134. * This implies the filehandle is stale, so we should
  135. * translate it here.
  136. * We don't use ESTALE directly down the chain to not
  137. * confuse applications using bulkstat that expect EINVAL.
  138. */
  139. if (error == EINVAL || error == ENOENT)
  140. error = ESTALE;
  141. return ERR_PTR(-error);
  142. }
  143. if (ip->i_d.di_gen != generation) {
  144. IRELE(ip);
  145. return ERR_PTR(-ESTALE);
  146. }
  147. return VFS_I(ip);
  148. }
  149. STATIC struct dentry *
  150. xfs_fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
  151. int fh_len, int fileid_type)
  152. {
  153. struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fid;
  154. struct inode *inode = NULL;
  155. if (fh_len < xfs_fileid_length(fileid_type))
  156. return NULL;
  157. switch (fileid_type) {
  158. case FILEID_INO32_GEN_PARENT:
  159. case FILEID_INO32_GEN:
  160. inode = xfs_nfs_get_inode(sb, fid->i32.ino, fid->i32.gen);
  161. break;
  162. case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
  163. case FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG:
  164. inode = xfs_nfs_get_inode(sb, fid64->ino, fid64->gen);
  165. break;
  166. }
  167. return d_obtain_alias(inode);
  168. }
  169. STATIC struct dentry *
  170. xfs_fs_fh_to_parent(struct super_block *sb, struct fid *fid,
  171. int fh_len, int fileid_type)
  172. {
  173. struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fid;
  174. struct inode *inode = NULL;
  175. if (fh_len < xfs_fileid_length(fileid_type))
  176. return NULL;
  177. switch (fileid_type) {
  178. case FILEID_INO32_GEN_PARENT:
  179. inode = xfs_nfs_get_inode(sb, fid->i32.parent_ino,
  180. fid->i32.parent_gen);
  181. break;
  182. case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
  183. inode = xfs_nfs_get_inode(sb, fid64->parent_ino,
  184. fid64->parent_gen);
  185. break;
  186. }
  187. return d_obtain_alias(inode);
  188. }
  189. STATIC struct dentry *
  190. xfs_fs_get_parent(
  191. struct dentry *child)
  192. {
  193. int error;
  194. struct xfs_inode *cip;
  195. error = xfs_lookup(XFS_I(child->d_inode), &xfs_name_dotdot, &cip, NULL);
  196. if (unlikely(error))
  197. return ERR_PTR(-error);
  198. return d_obtain_alias(VFS_I(cip));
  199. }
  200. STATIC int
  201. xfs_fs_nfs_commit_metadata(
  202. struct inode *inode)
  203. {
  204. struct xfs_inode *ip = XFS_I(inode);
  205. struct xfs_mount *mp = ip->i_mount;
  206. xfs_lsn_t lsn = 0;
  207. xfs_ilock(ip, XFS_ILOCK_SHARED);
  208. if (xfs_ipincount(ip))
  209. lsn = ip->i_itemp->ili_last_lsn;
  210. xfs_iunlock(ip, XFS_ILOCK_SHARED);
  211. if (!lsn)
  212. return 0;
  213. return _xfs_log_force_lsn(mp, lsn, XFS_LOG_SYNC, NULL);
  214. }
  215. const struct export_operations xfs_export_operations = {
  216. .encode_fh = xfs_fs_encode_fh,
  217. .fh_to_dentry = xfs_fs_fh_to_dentry,
  218. .fh_to_parent = xfs_fs_fh_to_parent,
  219. .get_parent = xfs_fs_get_parent,
  220. .commit_metadata = xfs_fs_nfs_commit_metadata,
  221. };