ext4_extents.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. /*
  2. * Copyright (c) 2003-2006, Cluster File Systems, Inc, info@clusterfs.com
  3. * Written by Alex Tomas <alex@clusterfs.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will 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 Licens
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-
  17. */
  18. #ifndef _EXT4_EXTENTS
  19. #define _EXT4_EXTENTS
  20. #include "ext4.h"
  21. /*
  22. * With AGGRESSIVE_TEST defined, the capacity of index/leaf blocks
  23. * becomes very small, so index split, in-depth growing and
  24. * other hard changes happen much more often.
  25. * This is for debug purposes only.
  26. */
  27. #define AGGRESSIVE_TEST_
  28. /*
  29. * With EXTENTS_STATS defined, the number of blocks and extents
  30. * are collected in the truncate path. They'll be shown at
  31. * umount time.
  32. */
  33. #define EXTENTS_STATS__
  34. /*
  35. * If CHECK_BINSEARCH is defined, then the results of the binary search
  36. * will also be checked by linear search.
  37. */
  38. #define CHECK_BINSEARCH__
  39. /*
  40. * Turn on EXT_DEBUG to get lots of info about extents operations.
  41. */
  42. #define EXT_DEBUG__
  43. #ifdef EXT_DEBUG
  44. #define ext_debug(fmt, ...) printk(fmt, ##__VA_ARGS__)
  45. #else
  46. #define ext_debug(fmt, ...) no_printk(fmt, ##__VA_ARGS__)
  47. #endif
  48. /*
  49. * If EXT_STATS is defined then stats numbers are collected.
  50. * These number will be displayed at umount time.
  51. */
  52. #define EXT_STATS_
  53. /*
  54. * ext4_inode has i_block array (60 bytes total).
  55. * The first 12 bytes store ext4_extent_header;
  56. * the remainder stores an array of ext4_extent.
  57. * For non-inode extent blocks, ext4_extent_tail
  58. * follows the array.
  59. */
  60. /*
  61. * This is the extent tail on-disk structure.
  62. * All other extent structures are 12 bytes long. It turns out that
  63. * block_size % 12 >= 4 for at least all powers of 2 greater than 512, which
  64. * covers all valid ext4 block sizes. Therefore, this tail structure can be
  65. * crammed into the end of the block without having to rebalance the tree.
  66. */
  67. struct ext4_extent_tail {
  68. __le32 et_checksum; /* crc32c(uuid+inum+extent_block) */
  69. };
  70. /*
  71. * This is the extent on-disk structure.
  72. * It's used at the bottom of the tree.
  73. */
  74. struct ext4_extent {
  75. __le32 ee_block; /* first logical block extent covers */
  76. __le16 ee_len; /* number of blocks covered by extent */
  77. __le16 ee_start_hi; /* high 16 bits of physical block */
  78. __le32 ee_start_lo; /* low 32 bits of physical block */
  79. };
  80. /*
  81. * This is index on-disk structure.
  82. * It's used at all the levels except the bottom.
  83. */
  84. struct ext4_extent_idx {
  85. __le32 ei_block; /* index covers logical blocks from 'block' */
  86. __le32 ei_leaf_lo; /* pointer to the physical block of the next *
  87. * level. leaf or next index could be there */
  88. __le16 ei_leaf_hi; /* high 16 bits of physical block */
  89. __u16 ei_unused;
  90. };
  91. /*
  92. * Each block (leaves and indexes), even inode-stored has header.
  93. */
  94. struct ext4_extent_header {
  95. __le16 eh_magic; /* probably will support different formats */
  96. __le16 eh_entries; /* number of valid entries */
  97. __le16 eh_max; /* capacity of store in entries */
  98. __le16 eh_depth; /* has tree real underlying blocks? */
  99. __le32 eh_generation; /* generation of the tree */
  100. };
  101. #define EXT4_EXT_MAGIC cpu_to_le16(0xf30a)
  102. #define EXT4_EXTENT_TAIL_OFFSET(hdr) \
  103. (sizeof(struct ext4_extent_header) + \
  104. (sizeof(struct ext4_extent) * le16_to_cpu((hdr)->eh_max)))
  105. static inline struct ext4_extent_tail *
  106. find_ext4_extent_tail(struct ext4_extent_header *eh)
  107. {
  108. return (struct ext4_extent_tail *)(((void *)eh) +
  109. EXT4_EXTENT_TAIL_OFFSET(eh));
  110. }
  111. /*
  112. * Array of ext4_ext_path contains path to some extent.
  113. * Creation/lookup routines use it for traversal/splitting/etc.
  114. * Truncate uses it to simulate recursive walking.
  115. */
  116. struct ext4_ext_path {
  117. ext4_fsblk_t p_block;
  118. __u16 p_depth;
  119. struct ext4_extent *p_ext;
  120. struct ext4_extent_idx *p_idx;
  121. struct ext4_extent_header *p_hdr;
  122. struct buffer_head *p_bh;
  123. };
  124. /*
  125. * structure for external API
  126. */
  127. /*
  128. * to be called by ext4_ext_walk_space()
  129. * negative retcode - error
  130. * positive retcode - signal for ext4_ext_walk_space(), see below
  131. * callback must return valid extent (passed or newly created)
  132. */
  133. typedef int (*ext_prepare_callback)(struct inode *, ext4_lblk_t,
  134. struct ext4_ext_cache *,
  135. struct ext4_extent *, void *);
  136. #define EXT_CONTINUE 0
  137. #define EXT_BREAK 1
  138. #define EXT_REPEAT 2
  139. /*
  140. * Maximum number of logical blocks in a file; ext4_extent's ee_block is
  141. * __le32.
  142. */
  143. #define EXT_MAX_BLOCKS 0xffffffff
  144. /*
  145. * EXT_INIT_MAX_LEN is the maximum number of blocks we can have in an
  146. * initialized extent. This is 2^15 and not (2^16 - 1), since we use the
  147. * MSB of ee_len field in the extent datastructure to signify if this
  148. * particular extent is an initialized extent or an uninitialized (i.e.
  149. * preallocated).
  150. * EXT_UNINIT_MAX_LEN is the maximum number of blocks we can have in an
  151. * uninitialized extent.
  152. * If ee_len is <= 0x8000, it is an initialized extent. Otherwise, it is an
  153. * uninitialized one. In other words, if MSB of ee_len is set, it is an
  154. * uninitialized extent with only one special scenario when ee_len = 0x8000.
  155. * In this case we can not have an uninitialized extent of zero length and
  156. * thus we make it as a special case of initialized extent with 0x8000 length.
  157. * This way we get better extent-to-group alignment for initialized extents.
  158. * Hence, the maximum number of blocks we can have in an *initialized*
  159. * extent is 2^15 (32768) and in an *uninitialized* extent is 2^15-1 (32767).
  160. */
  161. #define EXT_INIT_MAX_LEN (1UL << 15)
  162. #define EXT_UNINIT_MAX_LEN (EXT_INIT_MAX_LEN - 1)
  163. #define EXT_FIRST_EXTENT(__hdr__) \
  164. ((struct ext4_extent *) (((char *) (__hdr__)) + \
  165. sizeof(struct ext4_extent_header)))
  166. #define EXT_FIRST_INDEX(__hdr__) \
  167. ((struct ext4_extent_idx *) (((char *) (__hdr__)) + \
  168. sizeof(struct ext4_extent_header)))
  169. #define EXT_HAS_FREE_INDEX(__path__) \
  170. (le16_to_cpu((__path__)->p_hdr->eh_entries) \
  171. < le16_to_cpu((__path__)->p_hdr->eh_max))
  172. #define EXT_LAST_EXTENT(__hdr__) \
  173. (EXT_FIRST_EXTENT((__hdr__)) + le16_to_cpu((__hdr__)->eh_entries) - 1)
  174. #define EXT_LAST_INDEX(__hdr__) \
  175. (EXT_FIRST_INDEX((__hdr__)) + le16_to_cpu((__hdr__)->eh_entries) - 1)
  176. #define EXT_MAX_EXTENT(__hdr__) \
  177. (EXT_FIRST_EXTENT((__hdr__)) + le16_to_cpu((__hdr__)->eh_max) - 1)
  178. #define EXT_MAX_INDEX(__hdr__) \
  179. (EXT_FIRST_INDEX((__hdr__)) + le16_to_cpu((__hdr__)->eh_max) - 1)
  180. static inline struct ext4_extent_header *ext_inode_hdr(struct inode *inode)
  181. {
  182. return (struct ext4_extent_header *) EXT4_I(inode)->i_data;
  183. }
  184. static inline struct ext4_extent_header *ext_block_hdr(struct buffer_head *bh)
  185. {
  186. return (struct ext4_extent_header *) bh->b_data;
  187. }
  188. static inline unsigned short ext_depth(struct inode *inode)
  189. {
  190. return le16_to_cpu(ext_inode_hdr(inode)->eh_depth);
  191. }
  192. static inline void
  193. ext4_ext_invalidate_cache(struct inode *inode)
  194. {
  195. EXT4_I(inode)->i_cached_extent.ec_len = 0;
  196. }
  197. static inline void ext4_ext_mark_uninitialized(struct ext4_extent *ext)
  198. {
  199. /* We can not have an uninitialized extent of zero length! */
  200. BUG_ON((le16_to_cpu(ext->ee_len) & ~EXT_INIT_MAX_LEN) == 0);
  201. ext->ee_len |= cpu_to_le16(EXT_INIT_MAX_LEN);
  202. }
  203. static inline int ext4_ext_is_uninitialized(struct ext4_extent *ext)
  204. {
  205. /* Extent with ee_len of 0x8000 is treated as an initialized extent */
  206. return (le16_to_cpu(ext->ee_len) > EXT_INIT_MAX_LEN);
  207. }
  208. static inline int ext4_ext_get_actual_len(struct ext4_extent *ext)
  209. {
  210. return (le16_to_cpu(ext->ee_len) <= EXT_INIT_MAX_LEN ?
  211. le16_to_cpu(ext->ee_len) :
  212. (le16_to_cpu(ext->ee_len) - EXT_INIT_MAX_LEN));
  213. }
  214. static inline void ext4_ext_mark_initialized(struct ext4_extent *ext)
  215. {
  216. ext->ee_len = cpu_to_le16(ext4_ext_get_actual_len(ext));
  217. }
  218. /*
  219. * ext4_ext_pblock:
  220. * combine low and high parts of physical block number into ext4_fsblk_t
  221. */
  222. static inline ext4_fsblk_t ext4_ext_pblock(struct ext4_extent *ex)
  223. {
  224. ext4_fsblk_t block;
  225. block = le32_to_cpu(ex->ee_start_lo);
  226. block |= ((ext4_fsblk_t) le16_to_cpu(ex->ee_start_hi) << 31) << 1;
  227. return block;
  228. }
  229. /*
  230. * ext4_idx_pblock:
  231. * combine low and high parts of a leaf physical block number into ext4_fsblk_t
  232. */
  233. static inline ext4_fsblk_t ext4_idx_pblock(struct ext4_extent_idx *ix)
  234. {
  235. ext4_fsblk_t block;
  236. block = le32_to_cpu(ix->ei_leaf_lo);
  237. block |= ((ext4_fsblk_t) le16_to_cpu(ix->ei_leaf_hi) << 31) << 1;
  238. return block;
  239. }
  240. /*
  241. * ext4_ext_store_pblock:
  242. * stores a large physical block number into an extent struct,
  243. * breaking it into parts
  244. */
  245. static inline void ext4_ext_store_pblock(struct ext4_extent *ex,
  246. ext4_fsblk_t pb)
  247. {
  248. ex->ee_start_lo = cpu_to_le32((unsigned long) (pb & 0xffffffff));
  249. ex->ee_start_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) &
  250. 0xffff);
  251. }
  252. /*
  253. * ext4_idx_store_pblock:
  254. * stores a large physical block number into an index struct,
  255. * breaking it into parts
  256. */
  257. static inline void ext4_idx_store_pblock(struct ext4_extent_idx *ix,
  258. ext4_fsblk_t pb)
  259. {
  260. ix->ei_leaf_lo = cpu_to_le32((unsigned long) (pb & 0xffffffff));
  261. ix->ei_leaf_hi = cpu_to_le16((unsigned long) ((pb >> 31) >> 1) &
  262. 0xffff);
  263. }
  264. extern int ext4_ext_calc_metadata_amount(struct inode *inode,
  265. ext4_lblk_t lblocks);
  266. extern int ext4_extent_tree_init(handle_t *, struct inode *);
  267. extern int ext4_ext_calc_credits_for_single_extent(struct inode *inode,
  268. int num,
  269. struct ext4_ext_path *path);
  270. extern int ext4_can_extents_be_merged(struct inode *inode,
  271. struct ext4_extent *ex1,
  272. struct ext4_extent *ex2);
  273. extern int ext4_ext_insert_extent(handle_t *, struct inode *, struct ext4_ext_path *, struct ext4_extent *, int);
  274. extern struct ext4_ext_path *ext4_ext_find_extent(struct inode *, ext4_lblk_t,
  275. struct ext4_ext_path *);
  276. extern void ext4_ext_drop_refs(struct ext4_ext_path *);
  277. extern int ext4_ext_check_inode(struct inode *inode);
  278. extern int ext4_find_delalloc_cluster(struct inode *inode, ext4_lblk_t lblk,
  279. int search_hint_reverse);
  280. #endif /* _EXT4_EXTENTS */