xfs_export.c 6.5 KB

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