exportfs.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. #ifndef LINUX_EXPORTFS_H
  2. #define LINUX_EXPORTFS_H 1
  3. #include <linux/types.h>
  4. struct dentry;
  5. struct inode;
  6. struct super_block;
  7. struct vfsmount;
  8. /*
  9. * The fileid_type identifies how the file within the filesystem is encoded.
  10. * In theory this is freely set and parsed by the filesystem, but we try to
  11. * stick to conventions so we can share some generic code and don't confuse
  12. * sniffers like ethereal/wireshark.
  13. *
  14. * The filesystem must not use the value '0' or '0xff'.
  15. */
  16. enum fid_type {
  17. /*
  18. * The root, or export point, of the filesystem.
  19. * (Never actually passed down to the filesystem.
  20. */
  21. FILEID_ROOT = 0,
  22. /*
  23. * 32bit inode number, 32 bit generation number.
  24. */
  25. FILEID_INO32_GEN = 1,
  26. /*
  27. * 32bit inode number, 32 bit generation number,
  28. * 32 bit parent directory inode number.
  29. */
  30. FILEID_INO32_GEN_PARENT = 2,
  31. /*
  32. * 32 bit block number, 16 bit partition reference,
  33. * 16 bit unused, 32 bit generation number.
  34. */
  35. FILEID_UDF_WITHOUT_PARENT = 0x51,
  36. /*
  37. * 32 bit block number, 16 bit partition reference,
  38. * 16 bit unused, 32 bit generation number,
  39. * 32 bit parent block number, 32 bit parent generation number
  40. */
  41. FILEID_UDF_WITH_PARENT = 0x52,
  42. };
  43. struct fid {
  44. union {
  45. struct {
  46. u32 ino;
  47. u32 gen;
  48. u32 parent_ino;
  49. u32 parent_gen;
  50. } i32;
  51. struct {
  52. u32 block;
  53. u16 partref;
  54. u16 parent_partref;
  55. u32 generation;
  56. u32 parent_block;
  57. u32 parent_generation;
  58. } udf;
  59. __u32 raw[0];
  60. };
  61. };
  62. /**
  63. * struct export_operations - for nfsd to communicate with file systems
  64. * @encode_fh: encode a file handle fragment from a dentry
  65. * @fh_to_dentry: find the implied object and get a dentry for it
  66. * @fh_to_parent: find the implied object's parent and get a dentry for it
  67. * @get_name: find the name for a given inode in a given directory
  68. * @get_parent: find the parent of a given directory
  69. *
  70. * See Documentation/filesystems/Exporting for details on how to use
  71. * this interface correctly.
  72. *
  73. * encode_fh:
  74. * @encode_fh should store in the file handle fragment @fh (using at most
  75. * @max_len bytes) information that can be used by @decode_fh to recover the
  76. * file refered to by the &struct dentry @de. If the @connectable flag is
  77. * set, the encode_fh() should store sufficient information so that a good
  78. * attempt can be made to find not only the file but also it's place in the
  79. * filesystem. This typically means storing a reference to de->d_parent in
  80. * the filehandle fragment. encode_fh() should return the number of bytes
  81. * stored or a negative error code such as %-ENOSPC
  82. *
  83. * fh_to_dentry:
  84. * @fh_to_dentry is given a &struct super_block (@sb) and a file handle
  85. * fragment (@fh, @fh_len). It should return a &struct dentry which refers
  86. * to the same file that the file handle fragment refers to. If it cannot,
  87. * it should return a %NULL pointer if the file was found but no acceptable
  88. * &dentries were available, or an %ERR_PTR error code indicating why it
  89. * couldn't be found (e.g. %ENOENT or %ENOMEM). Any suitable dentry can be
  90. * returned including, if necessary, a new dentry created with d_alloc_root.
  91. * The caller can then find any other extant dentries by following the
  92. * d_alias links.
  93. *
  94. * fh_to_parent:
  95. * Same as @fh_to_dentry, except that it returns a pointer to the parent
  96. * dentry if it was encoded into the filehandle fragment by @encode_fh.
  97. *
  98. * get_name:
  99. * @get_name should find a name for the given @child in the given @parent
  100. * directory. The name should be stored in the @name (with the
  101. * understanding that it is already pointing to a a %NAME_MAX+1 sized
  102. * buffer. get_name() should return %0 on success, a negative error code
  103. * or error. @get_name will be called without @parent->i_mutex held.
  104. *
  105. * get_parent:
  106. * @get_parent should find the parent directory for the given @child which
  107. * is also a directory. In the event that it cannot be found, or storage
  108. * space cannot be allocated, a %ERR_PTR should be returned.
  109. *
  110. * Locking rules:
  111. * get_parent is called with child->d_inode->i_mutex down
  112. * get_name is not (which is possibly inconsistent)
  113. */
  114. struct export_operations {
  115. int (*encode_fh)(struct dentry *de, __u32 *fh, int *max_len,
  116. int connectable);
  117. struct dentry * (*fh_to_dentry)(struct super_block *sb, struct fid *fid,
  118. int fh_len, int fh_type);
  119. struct dentry * (*fh_to_parent)(struct super_block *sb, struct fid *fid,
  120. int fh_len, int fh_type);
  121. int (*get_name)(struct dentry *parent, char *name,
  122. struct dentry *child);
  123. struct dentry * (*get_parent)(struct dentry *child);
  124. };
  125. extern int exportfs_encode_fh(struct dentry *dentry, struct fid *fid,
  126. int *max_len, int connectable);
  127. extern struct dentry *exportfs_decode_fh(struct vfsmount *mnt, struct fid *fid,
  128. int fh_len, int fileid_type, int (*acceptable)(void *, struct dentry *),
  129. void *context);
  130. /*
  131. * Generic helpers for filesystems.
  132. */
  133. extern struct dentry *generic_fh_to_dentry(struct super_block *sb,
  134. struct fid *fid, int fh_len, int fh_type,
  135. struct inode *(*get_inode) (struct super_block *sb, u64 ino, u32 gen));
  136. extern struct dentry *generic_fh_to_parent(struct super_block *sb,
  137. struct fid *fid, int fh_len, int fh_type,
  138. struct inode *(*get_inode) (struct super_block *sb, u64 ino, u32 gen));
  139. #endif /* LINUX_EXPORTFS_H */