nfs4filelayout.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. /*
  2. * NFSv4 file layout driver data structures.
  3. *
  4. * Copyright (c) 2002
  5. * The Regents of the University of Michigan
  6. * All Rights Reserved
  7. *
  8. * Dean Hildebrand <dhildebz@umich.edu>
  9. *
  10. * Permission is granted to use, copy, create derivative works, and
  11. * redistribute this software and such derivative works for any purpose,
  12. * so long as the name of the University of Michigan is not used in
  13. * any advertising or publicity pertaining to the use or distribution
  14. * of this software without specific, written prior authorization. If
  15. * the above copyright notice or any other identification of the
  16. * University of Michigan is included in any copy of any portion of
  17. * this software, then the disclaimer below must also be included.
  18. *
  19. * This software is provided as is, without representation or warranty
  20. * of any kind either express or implied, including without limitation
  21. * the implied warranties of merchantability, fitness for a particular
  22. * purpose, or noninfringement. The Regents of the University of
  23. * Michigan shall not be liable for any damages, including special,
  24. * indirect, incidental, or consequential damages, with respect to any
  25. * claim arising out of or in connection with the use of the software,
  26. * even if it has been or is hereafter advised of the possibility of
  27. * such damages.
  28. */
  29. #ifndef FS_NFS_NFS4FILELAYOUT_H
  30. #define FS_NFS_NFS4FILELAYOUT_H
  31. #include "pnfs.h"
  32. /*
  33. * Default data server connection timeout and retrans vaules.
  34. * Set by module paramters dataserver_timeo and dataserver_retrans.
  35. */
  36. #define NFS4_DEF_DS_TIMEO 60
  37. #define NFS4_DEF_DS_RETRANS 5
  38. /*
  39. * Field testing shows we need to support up to 4096 stripe indices.
  40. * We store each index as a u8 (u32 on the wire) to keep the memory footprint
  41. * reasonable. This in turn means we support a maximum of 256
  42. * RFC 5661 multipath_list4 structures.
  43. */
  44. #define NFS4_PNFS_MAX_STRIPE_CNT 4096
  45. #define NFS4_PNFS_MAX_MULTI_CNT 256 /* 256 fit into a u8 stripe_index */
  46. /* error codes for internal use */
  47. #define NFS4ERR_RESET_TO_MDS 12001
  48. enum stripetype4 {
  49. STRIPE_SPARSE = 1,
  50. STRIPE_DENSE = 2
  51. };
  52. /* Individual ip address */
  53. struct nfs4_pnfs_ds_addr {
  54. struct sockaddr_storage da_addr;
  55. size_t da_addrlen;
  56. struct list_head da_node; /* nfs4_pnfs_dev_hlist dev_dslist */
  57. char *da_remotestr; /* human readable addr+port */
  58. };
  59. struct nfs4_pnfs_ds {
  60. struct list_head ds_node; /* nfs4_pnfs_dev_hlist dev_dslist */
  61. char *ds_remotestr; /* comma sep list of addrs */
  62. struct list_head ds_addrs;
  63. struct nfs_client *ds_clp;
  64. atomic_t ds_count;
  65. };
  66. struct nfs4_file_layout_dsaddr {
  67. struct nfs4_deviceid_node id_node;
  68. u32 stripe_count;
  69. u8 *stripe_indices;
  70. u32 ds_num;
  71. struct nfs4_pnfs_ds *ds_list[1];
  72. };
  73. struct nfs4_filelayout_segment {
  74. struct pnfs_layout_segment generic_hdr;
  75. u32 stripe_type;
  76. u32 commit_through_mds;
  77. u32 stripe_unit;
  78. u32 first_stripe_index;
  79. u64 pattern_offset;
  80. struct nfs4_file_layout_dsaddr *dsaddr; /* Point to GETDEVINFO data */
  81. unsigned int num_fh;
  82. struct nfs_fh **fh_array;
  83. };
  84. struct nfs4_filelayout {
  85. struct pnfs_layout_hdr generic_hdr;
  86. struct pnfs_ds_commit_info commit_info;
  87. };
  88. static inline struct nfs4_filelayout *
  89. FILELAYOUT_FROM_HDR(struct pnfs_layout_hdr *lo)
  90. {
  91. return container_of(lo, struct nfs4_filelayout, generic_hdr);
  92. }
  93. static inline struct nfs4_filelayout_segment *
  94. FILELAYOUT_LSEG(struct pnfs_layout_segment *lseg)
  95. {
  96. return container_of(lseg,
  97. struct nfs4_filelayout_segment,
  98. generic_hdr);
  99. }
  100. static inline struct nfs4_deviceid_node *
  101. FILELAYOUT_DEVID_NODE(struct pnfs_layout_segment *lseg)
  102. {
  103. return &FILELAYOUT_LSEG(lseg)->dsaddr->id_node;
  104. }
  105. static inline void
  106. filelayout_mark_devid_invalid(struct nfs4_deviceid_node *node)
  107. {
  108. u32 *p = (u32 *)&node->deviceid;
  109. printk(KERN_WARNING "NFS: Deviceid [%x%x%x%x] marked out of use.\n",
  110. p[0], p[1], p[2], p[3]);
  111. set_bit(NFS_DEVICEID_INVALID, &node->flags);
  112. }
  113. static inline bool
  114. filelayout_test_layout_invalid(struct pnfs_layout_hdr *lo)
  115. {
  116. return test_bit(NFS_LAYOUT_INVALID, &lo->plh_flags);
  117. }
  118. static inline bool
  119. filelayout_test_devid_invalid(struct nfs4_deviceid_node *node)
  120. {
  121. return test_bit(NFS_DEVICEID_INVALID, &node->flags);
  122. }
  123. static inline bool
  124. filelayout_reset_to_mds(struct pnfs_layout_segment *lseg)
  125. {
  126. return filelayout_test_devid_invalid(FILELAYOUT_DEVID_NODE(lseg)) ||
  127. filelayout_test_layout_invalid(lseg->pls_layout);
  128. }
  129. extern struct nfs_fh *
  130. nfs4_fl_select_ds_fh(struct pnfs_layout_segment *lseg, u32 j);
  131. extern void print_ds(struct nfs4_pnfs_ds *ds);
  132. u32 nfs4_fl_calc_j_index(struct pnfs_layout_segment *lseg, loff_t offset);
  133. u32 nfs4_fl_calc_ds_index(struct pnfs_layout_segment *lseg, u32 j);
  134. struct nfs4_pnfs_ds *nfs4_fl_prepare_ds(struct pnfs_layout_segment *lseg,
  135. u32 ds_idx);
  136. extern void nfs4_fl_put_deviceid(struct nfs4_file_layout_dsaddr *dsaddr);
  137. extern void nfs4_fl_free_deviceid(struct nfs4_file_layout_dsaddr *dsaddr);
  138. struct nfs4_file_layout_dsaddr *
  139. get_device_info(struct inode *inode, struct nfs4_deviceid *dev_id, gfp_t gfp_flags);
  140. void nfs4_ds_disconnect(struct nfs_client *clp);
  141. #endif /* FS_NFS_NFS4FILELAYOUT_H */