xfs_export.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  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_dmapi.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_vfsops.h"
  32. static struct dentry dotdot = { .d_name.name = "..", .d_name.len = 2, };
  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 dentry *dentry,
  55. __u32 *fh,
  56. int *max_len,
  57. int connectable)
  58. {
  59. struct fid *fid = (struct fid *)fh;
  60. struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fh;
  61. struct inode *inode = dentry->d_inode;
  62. int fileid_type;
  63. int len;
  64. /* Directories don't need their parent encoded, they have ".." */
  65. if (S_ISDIR(inode->i_mode))
  66. fileid_type = FILEID_INO32_GEN;
  67. else
  68. fileid_type = FILEID_INO32_GEN_PARENT;
  69. /* filesystem may contain 64bit inode numbers */
  70. if (!(XFS_M(inode->i_sb)->m_flags & XFS_MOUNT_SMALL_INUMS))
  71. fileid_type |= XFS_FILEID_TYPE_64FLAG;
  72. /*
  73. * Only encode if there is enough space given. In practice
  74. * this means we can't export a filesystem with 64bit inodes
  75. * over NFSv2 with the subtree_check export option; the other
  76. * seven combinations work. The real answer is "don't use v2".
  77. */
  78. len = xfs_fileid_length(fileid_type);
  79. if (*max_len < len)
  80. return 255;
  81. *max_len = len;
  82. switch (fileid_type) {
  83. case FILEID_INO32_GEN_PARENT:
  84. spin_lock(&dentry->d_lock);
  85. fid->i32.parent_ino = dentry->d_parent->d_inode->i_ino;
  86. fid->i32.parent_gen = dentry->d_parent->d_inode->i_generation;
  87. spin_unlock(&dentry->d_lock);
  88. /*FALLTHRU*/
  89. case FILEID_INO32_GEN:
  90. fid->i32.ino = inode->i_ino;
  91. fid->i32.gen = inode->i_generation;
  92. break;
  93. case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
  94. spin_lock(&dentry->d_lock);
  95. fid64->parent_ino = dentry->d_parent->d_inode->i_ino;
  96. fid64->parent_gen = dentry->d_parent->d_inode->i_generation;
  97. spin_unlock(&dentry->d_lock);
  98. /*FALLTHRU*/
  99. case FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG:
  100. fid64->ino = inode->i_ino;
  101. fid64->gen = inode->i_generation;
  102. break;
  103. }
  104. return fileid_type;
  105. }
  106. STATIC struct inode *
  107. xfs_nfs_get_inode(
  108. struct super_block *sb,
  109. u64 ino,
  110. u32 generation)
  111. {
  112. xfs_fid_t xfid;
  113. bhv_vnode_t *vp;
  114. int error;
  115. xfid.fid_len = sizeof(xfs_fid_t) - sizeof(xfid.fid_len);
  116. xfid.fid_pad = 0;
  117. xfid.fid_ino = ino;
  118. xfid.fid_gen = generation;
  119. error = xfs_vget(XFS_M(sb), &vp, &xfid);
  120. if (error)
  121. return ERR_PTR(-error);
  122. return vp ? vn_to_inode(vp) : NULL;
  123. }
  124. STATIC struct dentry *
  125. xfs_fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
  126. int fh_len, int fileid_type)
  127. {
  128. struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fid;
  129. struct inode *inode = NULL;
  130. struct dentry *result;
  131. if (fh_len < xfs_fileid_length(fileid_type))
  132. return NULL;
  133. switch (fileid_type) {
  134. case FILEID_INO32_GEN_PARENT:
  135. case FILEID_INO32_GEN:
  136. inode = xfs_nfs_get_inode(sb, fid->i32.ino, fid->i32.gen);
  137. break;
  138. case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
  139. case FILEID_INO32_GEN | XFS_FILEID_TYPE_64FLAG:
  140. inode = xfs_nfs_get_inode(sb, fid64->ino, fid64->gen);
  141. break;
  142. }
  143. if (!inode)
  144. return NULL;
  145. if (IS_ERR(inode))
  146. return ERR_PTR(PTR_ERR(inode));
  147. result = d_alloc_anon(inode);
  148. if (!result) {
  149. iput(inode);
  150. return ERR_PTR(-ENOMEM);
  151. }
  152. return result;
  153. }
  154. STATIC struct dentry *
  155. xfs_fs_fh_to_parent(struct super_block *sb, struct fid *fid,
  156. int fh_len, int fileid_type)
  157. {
  158. struct xfs_fid64 *fid64 = (struct xfs_fid64 *)fid;
  159. struct inode *inode = NULL;
  160. struct dentry *result;
  161. switch (fileid_type) {
  162. case FILEID_INO32_GEN_PARENT:
  163. inode = xfs_nfs_get_inode(sb, fid->i32.parent_ino,
  164. fid->i32.parent_gen);
  165. break;
  166. case FILEID_INO32_GEN_PARENT | XFS_FILEID_TYPE_64FLAG:
  167. inode = xfs_nfs_get_inode(sb, fid64->parent_ino,
  168. fid64->parent_gen);
  169. break;
  170. }
  171. if (!inode)
  172. return NULL;
  173. if (IS_ERR(inode))
  174. return ERR_PTR(PTR_ERR(inode));
  175. result = d_alloc_anon(inode);
  176. if (!result) {
  177. iput(inode);
  178. return ERR_PTR(-ENOMEM);
  179. }
  180. return result;
  181. }
  182. STATIC struct dentry *
  183. xfs_fs_get_parent(
  184. struct dentry *child)
  185. {
  186. int error;
  187. bhv_vnode_t *cvp;
  188. struct dentry *parent;
  189. cvp = NULL;
  190. error = xfs_lookup(XFS_I(child->d_inode), &dotdot, &cvp);
  191. if (unlikely(error))
  192. return ERR_PTR(-error);
  193. parent = d_alloc_anon(vn_to_inode(cvp));
  194. if (unlikely(!parent)) {
  195. VN_RELE(cvp);
  196. return ERR_PTR(-ENOMEM);
  197. }
  198. return parent;
  199. }
  200. const struct export_operations xfs_export_operations = {
  201. .encode_fh = xfs_fs_encode_fh,
  202. .fh_to_dentry = xfs_fs_fh_to_dentry,
  203. .fh_to_parent = xfs_fs_fh_to_parent,
  204. .get_parent = xfs_fs_get_parent,
  205. };