blob: 473f039fcd7c783f222a1be18e19c5b62b0e9271 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
David Sterba9888c342018-04-03 19:16:55 +02002
3#ifndef BTRFS_EXTENT_MAP_H
4#define BTRFS_EXTENT_MAP_H
Chris Masona52d9a82007-08-27 16:49:44 -04005
6#include <linux/rbtree.h>
Elena Reshetova490b54d2017-03-03 10:55:12 +02007#include <linux/refcount.h>
Chris Masona52d9a82007-08-27 16:49:44 -04008
Dulshani Gunawardhanae248e042013-10-31 10:31:13 +05309#define EXTENT_MAP_LAST_BYTE ((u64)-4)
10#define EXTENT_MAP_HOLE ((u64)-3)
11#define EXTENT_MAP_INLINE ((u64)-2)
Nikolay Borisov951e05a2019-01-08 16:53:46 +020012/* used only during fiemap calls */
Dulshani Gunawardhanae248e042013-10-31 10:31:13 +053013#define EXTENT_MAP_DELALLOC ((u64)-1)
Chris Masona52d9a82007-08-27 16:49:44 -040014
David Sterba50b5b602018-11-27 15:11:43 +010015/* bits for the extent_map::flags field */
16enum {
17 /* this entry not yet on disk, don't free it */
18 EXTENT_FLAG_PINNED,
19 EXTENT_FLAG_COMPRESSED,
20 /* pre-allocated extent */
21 EXTENT_FLAG_PREALLOC,
22 /* Logging this extent */
23 EXTENT_FLAG_LOGGING,
24 /* Filling in a preallocated extent */
25 EXTENT_FLAG_FILLING,
26 /* filesystem extent mapping type */
27 EXTENT_FLAG_FS_MAPPING,
28};
Chris Mason7f3c74f2008-07-18 12:01:11 -040029
Chris Masond1310b22008-01-24 16:13:08 -050030struct extent_map {
31 struct rb_node rb_node;
Chris Mason5f39d392007-10-15 16:14:19 -040032
Chris Masond1310b22008-01-24 16:13:08 -050033 /* all of these are in bytes */
34 u64 start;
35 u64 len;
Liu Bo4e2f84e2012-08-27 10:52:20 -060036 u64 mod_start;
37 u64 mod_len;
Yan Zhengff5b7ee2008-11-10 07:34:43 -050038 u64 orig_start;
Josef Bacikb4939682012-12-03 10:31:19 -050039 u64 orig_block_len;
Josef Bacikcc95bef2013-04-04 14:31:27 -040040 u64 ram_bytes;
Chris Masond1310b22008-01-24 16:13:08 -050041 u64 block_start;
Chris Masonc8b97812008-10-29 14:49:59 -040042 u64 block_len;
Josef Bacik5dc562c2012-08-17 13:14:17 -040043 u64 generation;
Chris Masond1310b22008-01-24 16:13:08 -050044 unsigned long flags;
Jeff Mahoney95617d62015-06-03 10:55:48 -040045 union {
46 struct block_device *bdev;
47
48 /*
49 * used for chunk mappings
50 * flags & EXTENT_FLAG_FS_MAPPING must be set
51 */
52 struct map_lookup *map_lookup;
53 };
Elena Reshetova490b54d2017-03-03 10:55:12 +020054 refcount_t refs;
David Sterbac08782d2012-01-26 15:01:12 -050055 unsigned int compress_type;
Josef Bacik5dc562c2012-08-17 13:14:17 -040056 struct list_head list;
Chris Mason07157aa2007-08-30 08:50:51 -040057};
58
Chris Masona52d9a82007-08-27 16:49:44 -040059struct extent_map_tree {
Liu Bo07e1ce02018-08-23 03:51:52 +080060 struct rb_root_cached map;
Josef Bacik5dc562c2012-08-17 13:14:17 -040061 struct list_head modified_extents;
Chris Mason890871b2009-09-02 16:24:52 -040062 rwlock_t lock;
Chris Masona52d9a82007-08-27 16:49:44 -040063};
64
Filipe Mananacbc0e922014-02-25 14:15:12 +000065static inline int extent_map_in_tree(const struct extent_map *em)
66{
67 return !RB_EMPTY_NODE(&em->rb_node);
68}
69
Chris Masond1310b22008-01-24 16:13:08 -050070static inline u64 extent_map_end(struct extent_map *em)
71{
72 if (em->start + em->len < em->start)
73 return (u64)-1;
74 return em->start + em->len;
75}
Chris Masona52d9a82007-08-27 16:49:44 -040076
Chris Masond1310b22008-01-24 16:13:08 -050077static inline u64 extent_map_block_end(struct extent_map *em)
78{
Chris Masonc8b97812008-10-29 14:49:59 -040079 if (em->block_start + em->block_len < em->block_start)
Chris Masond1310b22008-01-24 16:13:08 -050080 return (u64)-1;
Chris Masonc8b97812008-10-29 14:49:59 -040081 return em->block_start + em->block_len;
Chris Masond1310b22008-01-24 16:13:08 -050082}
Chris Mason07157aa2007-08-30 08:50:51 -040083
David Sterbaa8067e02011-04-21 00:34:43 +020084void extent_map_tree_init(struct extent_map_tree *tree);
Chris Masona52d9a82007-08-27 16:49:44 -040085struct extent_map *lookup_extent_mapping(struct extent_map_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -050086 u64 start, u64 len);
Chris Masona52d9a82007-08-27 16:49:44 -040087int add_extent_mapping(struct extent_map_tree *tree,
Josef Bacik09a2a8f92013-04-05 16:51:15 -040088 struct extent_map *em, int modified);
zhong jiangc1766dd2018-09-13 11:01:15 +080089void remove_extent_mapping(struct extent_map_tree *tree, struct extent_map *em);
Filipe Manana176840b2014-02-25 14:15:13 +000090void replace_extent_mapping(struct extent_map_tree *tree,
91 struct extent_map *cur,
92 struct extent_map *new,
93 int modified);
Chris Masond1310b22008-01-24 16:13:08 -050094
David Sterba172ddd62011-04-21 00:48:27 +020095struct extent_map *alloc_extent_map(void);
Chris Masona52d9a82007-08-27 16:49:44 -040096void free_extent_map(struct extent_map *em);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -050097int __init extent_map_init(void);
David Sterbae67c7182018-02-19 17:24:18 +010098void __cold extent_map_exit(void);
Josef Bacik5dc562c2012-08-17 13:14:17 -040099int unpin_extent_cache(struct extent_map_tree *tree, u64 start, u64 len, u64 gen);
Josef Bacik201a9032013-01-24 12:02:07 -0500100void clear_em_logging(struct extent_map_tree *tree, struct extent_map *em);
Chris Masonb917b7c2009-09-18 16:07:03 -0400101struct extent_map *search_extent_mapping(struct extent_map_tree *tree,
102 u64 start, u64 len);
David Sterbaf46b24c2018-04-03 21:45:57 +0200103int btrfs_add_extent_mapping(struct btrfs_fs_info *fs_info,
104 struct extent_map_tree *em_tree,
Liu Boc04e61b2018-01-05 12:51:11 -0700105 struct extent_map **em_in, u64 start, u64 len);
David Sterba9888c342018-04-03 19:16:55 +0200106
Chris Masona52d9a82007-08-27 16:49:44 -0400107#endif