ext4_extents.h 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) 2003-2006, Cluster File Systems, Inc, info@clusterfs.com
  4. * Written by Alex Tomas <alex@clusterfs.com>
  5. */
  6. #ifndef _EXT4_EXTENTS
  7. #define _EXT4_EXTENTS
  8. #include "ext4.h"
  9. /*
  10. * With AGGRESSIVE_TEST defined, the capacity of index/leaf blocks
  11. * becomes very small, so index split, in-depth growing and
  12. * other hard changes happen much more often.
  13. * This is for debug purposes only.
  14. */
  15. #define AGGRESSIVE_TEST_
  16. /*
  17. * With EXTENTS_STATS defined, the number of blocks and extents
  18. * are collected in the truncate path. They'll be shown at
  19. * umount time.
  20. */
  21. #define EXTENTS_STATS__
  22. /*
  23. * If CHECK_BINSEARCH is defined, then the results of the binary search
  24. * will also be checked by linear search.
  25. */
  26. #define CHECK_BINSEARCH__
  27. /*
  28. * ext4_inode has i_block array (60 bytes total).
  29. * The first 12 bytes store ext4_extent_header;
  30. * the remainder stores an array of ext4_extent.
  31. * For non-inode extent blocks, ext4_extent_tail
  32. * follows the array.
  33. */
  34. /*
  35. * This is the extent tail on-disk structure.
  36. * All other extent structures are 12 bytes long. It turns out that
  37. * block_size % 12 >= 4 for at least all powers of 2 greater than 512, which
  38. * covers all valid ext4 block sizes. Therefore, this tail structure can be
  39. * crammed into the end of the block without having to rebalance the tree.
  40. */
  41. struct ext4_extent_tail {
  42. __le32 et_checksum; /* crc32c(uuid+inum+extent_block) */
  43. };
  44. /*
  45. * This is the extent on-disk structure.
  46. * It's used at the bottom of the tree.
  47. */
  48. struct ext4_extent {
  49. __le32 ee_block; /* first logical block extent covers */
  50. __le16 ee_len; /* number of blocks covered by extent */
  51. __le16 ee_start_hi; /* high 16 bits of physical block */
  52. __le32 ee_start_lo; /* low 32 bits of physical block */
  53. };
  54. /*
  55. * This is index on-disk structure.
  56. * It's used at all the levels except the bottom.
  57. */
  58. struct ext4_extent_idx {
  59. __le32 ei_block; /* index covers logical blocks from 'block' */
  60. __le32 ei_leaf_lo; /* pointer to the physical block of the next *
  61. * level. leaf or next index could be there */
  62. __le16 ei_leaf_hi; /* high 16 bits of physical block */
  63. __u16 ei_unused;
  64. };
  65. /*
  66. * Each block (leaves and indexes), even inode-stored has header.
  67. */
  68. struct ext4_extent_header {
  69. __le16 eh_magic; /* probably will support different formats */
  70. __le16 eh_entries; /* number of valid entries */
  71. __le16 eh_max; /* capacity of store in entries */
  72. __le16 eh_depth; /* has tree real underlying blocks? */
  73. __le32 eh_generation; /* generation of the tree */
  74. };
  75. #define EXT4_EXT_MAGIC cpu_to_le16(0xf30a)
  76. #define EXT4_MAX_EXTENT_DEPTH 5
  77. #define EXT4_EXTENT_TAIL_OFFSET(hdr) \
  78. (sizeof(struct ext4_extent_header) + \
  79. (sizeof(struct ext4_extent) * le16_to_cpu((hdr)->eh_max)))
  80. static inline struct ext4_extent_tail *
  81. find_ext4_extent_tail(struct ext4_extent_header *eh)
  82. {
  83. return (struct ext4_extent_tail *)(((void *)eh) +
  84. EXT4_EXTENT_TAIL_OFFSET(eh));
  85. }
  86. /*
  87. * Array of ext4_ext_path contains path to some extent.
  88. * Creation/lookup routines use it for traversal/splitting/etc.
  89. * Truncate uses it to simulate recursive walking.
  90. */
  91. struct ext4_ext_path {
  92. ext4_fsblk_t p_block;
  93. __u16 p_depth;
  94. __u16 p_maxdepth;
  95. struct ext4_extent *p_ext;
  96. struct ext4_extent_idx *p_idx;
  97. struct ext4_extent_header *p_hdr;
  98. struct buffer_head *p_bh;
  99. };
  100. /*
  101. * Used to record a portion of a cluster found at the beginning or end
  102. * of an extent while traversing the extent tree during space removal.
  103. * A partial cluster may be removed if it does not contain blocks shared
  104. * with extents that aren't being deleted (tofree state). Otherwise,
  105. * it cannot be removed (nofree state).
  106. */
  107. struct partial_cluster {
  108. ext4_fsblk_t pclu; /* physical cluster number */
  109. ext4_lblk_t lblk; /* logical block number within logical cluster */
  110. enum {initial, tofree, nofree} state;
  111. };
  112. /*
  113. * structure for external API
  114. */
  115. /*
  116. * EXT_INIT_MAX_LEN is the maximum number of blocks we can have in an
  117. * initialized extent. This is 2^15 and not (2^16 - 1), since we use the
  118. * MSB of ee_len field in the extent datastructure to signify if this
  119. * particular extent is an initialized extent or an unwritten (i.e.
  120. * preallocated).
  121. * EXT_UNWRITTEN_MAX_LEN is the maximum number of blocks we can have in an
  122. * unwritten extent.
  123. * If ee_len is <= 0x8000, it is an initialized extent. Otherwise, it is an
  124. * unwritten one. In other words, if MSB of ee_len is set, it is an
  125. * unwritten extent with only one special scenario when ee_len = 0x8000.
  126. * In this case we can not have an unwritten extent of zero length and
  127. * thus we make it as a special case of initialized extent with 0x8000 length.
  128. * This way we get better extent-to-group alignment for initialized extents.
  129. * Hence, the maximum number of blocks we can have in an *initialized*
  130. * extent is 2^15 (32768) and in an *unwritten* extent is 2^15-1 (32767).
  131. */
  132. #define EXT_INIT_MAX_LEN (1UL << 15)
  133. #define EXT_UNWRITTEN_MAX_LEN (EXT_INIT_MAX_LEN - 1)
  134. #define EXT_FIRST_EXTENT(__hdr__) \
  135. ((struct ext4_extent *) (((char *) (__hdr__)) + \
  136. sizeof(struct ext4_extent_header)))
  137. #define EXT_FIRST_INDEX(__hdr__) \
  138. ((struct ext4_extent_idx *) (((char *) (__hdr__)) + \
  139. sizeof(struct ext4_extent_header)))
  140. #define EXT_HAS_FREE_INDEX(__path__) \
  141. (le16_to_cpu((__path__)->p_hdr->eh_entries) \
  142. < le16_to_cpu((__path__)->p_hdr->eh_max))
  143. #define EXT_LAST_EXTENT(__hdr__) \
  144. (EXT_FIRST_EXTENT((__hdr__)) + le16_to_cpu((__hdr__)->eh_entries) - 1)
  145. #define EXT_LAST_INDEX(__hdr__) \
  146. (EXT_FIRST_INDEX((__hdr__)) + le16_to_cpu((__hdr__)->eh_entries) - 1)
  147. #define EXT_MAX_EXTENT(__hdr__) \
  148. ((le16_to_cpu((__hdr__)->eh_max)) ? \
  149. ((EXT_FIRST_EXTENT((__hdr__)) + le16_to_cpu((__hdr__)->eh_max) - 1)) \
  150. : NULL)
  151. #define EXT_MAX_INDEX(__hdr__) \
  152. ((le16_to_cpu((__hdr__)->eh_max)) ? \
  153. ((EXT_FIRST_INDEX((__hdr__)) + le16_to_cpu((__hdr__)->eh_max) - 1)) \
  154. : NULL)
  155. static inline struct ext4_extent_header *ext_inode_hdr(struct inode *inode)
  156. {
  157. return (struct ext4_extent_header *) EXT4_I(inode)->i_data;
  158. }
  159. static inline struct ext4_extent_header *ext_block_hdr(struct buffer_head *bh)
  160. {
  161. return (struct ext4_extent_header *) bh->b_data;
  162. }
  163. static inline unsigned short ext_depth(struct inode *inode)
  164. {
  165. return le16_to_cpu(ext_inode_hdr(inode)->eh_depth);
  166. }
  167. static inline void ext4_ext_mark_unwritten(struct ext4_extent *ext)
  168. {
  169. /* We can not have an unwritten extent of zero length! */
  170. BUG_ON((le16_to_cpu(ext->ee_len) & ~EXT_INIT_MAX_LEN) == 0);
  171. ext->ee_len |= cpu_to_le16(EXT_INIT_MAX_LEN);
  172. }
  173. static inline int ext4_ext_is_unwritten(struct ext4_extent *ext)
  174. {
  175. /* Extent with ee_len of 0x8000 is treated as an initialized extent */
  176. return (le16_to_cpu(ext->ee_len) > EXT_INIT_MAX_LEN);
  177. }
  178. static inline int ext4_ext_get_actual_len(struct ext4_extent *ext)
  179. {
  180. return (le16_to_cpu(ext->ee_len) <= EXT_INIT_MAX_LEN ?
  181. le16_to_cpu(ext->ee_len) :
  182. (le16_to_cpu(ext->ee_len) - EXT_INIT_MAX_LEN));
  183. }
  184. static inline void ext4_ext_mark_initialized(struct ext4_extent *ext)
  185. {
  186. ext->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ext));
  187. }
  188. /*
  189. * ext4_ext_pblock:
  190. * combine low and high parts of physical block number into ext4_fsblk_t
  191. */
  192. static inline ext4_fsblk_t ext4_ext_pblock(struct ext4_extent *ex)
  193. {
  194. ext4_fsblk_t block;
  195. block = le32_to_cpu(ex->ee_start_lo);
  196. block |= ((ext4_fsblk_t) le16_to_cpu(ex->ee_start_hi) << 31) << 1;
  197. return block;
  198. }
  199. /*
  200. * ext4_idx_pblock:
  201. * combine low and high parts of a leaf physical block number into ext4_fsblk_t
  202. */
  203. static inline ext4_fsblk_t ext4_idx_pblock(struct ext4_extent_idx *ix)
  204. {
  205. ext4_fsblk_t block;
  206. block = le32_to_cpu(ix->ei_leaf_lo);
  207. block |= ((ext4_fsblk_t) le16_to_cpu(ix->ei_leaf_hi) << 31) << 1;
  208. return block;
  209. }
  210. /*
  211. * ext4_ext_store_pblock:
  212. * stores a large physical block number into an extent struct,
  213. * breaking it into parts
  214. */
  215. static inline void ext4_ext_store_pblock(struct ext4_extent *ex,
  216. ext4_fsblk_t pb)
  217. {
  218. ex->ee_start_lo = cpu_to_le32((unsigned long) (pb & 0xffffffff));
  219. ex->ee_start_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) &
  220. 0xffff);
  221. }
  222. /*
  223. * ext4_idx_store_pblock:
  224. * stores a large physical block number into an index struct,
  225. * breaking it into parts
  226. */
  227. static inline void ext4_idx_store_pblock(struct ext4_extent_idx *ix,
  228. ext4_fsblk_t pb)
  229. {
  230. ix->ei_leaf_lo = cpu_to_le32((unsigned long) (pb & 0xffffffff));
  231. ix->ei_leaf_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) &
  232. 0xffff);
  233. }
  234. extern int __ext4_ext_dirty(const char *where, unsigned int line,
  235. handle_t *handle, struct inode *inode,
  236. struct ext4_ext_path *path);
  237. extern int ext4_ext_zeroout(struct inode *inode, struct ext4_extent *ex);
  238. #if IS_ENABLED(CONFIG_EXT4_KUNIT_TESTS)
  239. extern int ext4_ext_space_root_idx_test(struct inode *inode, int check);
  240. extern struct ext4_ext_path *ext4_split_convert_extents_test(
  241. handle_t *handle, struct inode *inode,
  242. struct ext4_map_blocks *map,
  243. struct ext4_ext_path *path,
  244. int flags, unsigned int *allocated);
  245. #endif
  246. #endif /* _EXT4_EXTENTS */