blob: a042a193c12085b63e7b1437e97e4d388f14b36b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
David Sterbac1d7c512018-04-03 19:23:33 +02002
Chris Masond1310b22008-01-24 16:13:08 -05003#include <linux/err.h>
Chris Masond1310b22008-01-24 16:13:08 -05004#include <linux/slab.h>
Chris Masona52d9a82007-08-27 16:49:44 -04005#include <linux/spinlock.h>
Li Zefan261507a02010-12-17 14:21:50 +08006#include "ctree.h"
Chris Masona52d9a82007-08-27 16:49:44 -04007#include "extent_map.h"
Anand Jainebb87652016-03-10 17:26:59 +08008#include "compression.h"
Chris Masona52d9a82007-08-27 16:49:44 -04009
Chris Mason86479a02007-09-10 19:58:16 -040010
Chris Masona52d9a82007-08-27 16:49:44 -040011static struct kmem_cache *extent_map_cache;
Chris Masonca664622007-11-27 11:16:35 -050012
Wyatt Banks2f4cbe62007-11-19 10:22:33 -050013int __init extent_map_init(void)
Chris Masona52d9a82007-08-27 16:49:44 -040014{
David Sterba837e1972012-09-07 03:00:48 -060015 extent_map_cache = kmem_cache_create("btrfs_extent_map",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +020016 sizeof(struct extent_map), 0,
Nikolay Borisovfba4b692016-06-23 21:17:08 +030017 SLAB_MEM_SPREAD, NULL);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -050018 if (!extent_map_cache)
19 return -ENOMEM;
Wyatt Banks2f4cbe62007-11-19 10:22:33 -050020 return 0;
Chris Masona52d9a82007-08-27 16:49:44 -040021}
22
David Sterbae67c7182018-02-19 17:24:18 +010023void __cold extent_map_exit(void)
Chris Masona52d9a82007-08-27 16:49:44 -040024{
Kinglong Mee5598e902016-01-29 21:36:35 +080025 kmem_cache_destroy(extent_map_cache);
Chris Masona52d9a82007-08-27 16:49:44 -040026}
27
Christoph Hellwig9d2423c2008-06-11 21:52:17 -040028/**
29 * extent_map_tree_init - initialize extent map tree
30 * @tree: tree to initialize
Christoph Hellwig9d2423c2008-06-11 21:52:17 -040031 *
32 * Initialize the extent tree @tree. Should be called for each new inode
33 * or other user of the extent_map interface.
34 */
David Sterbaa8067e02011-04-21 00:34:43 +020035void extent_map_tree_init(struct extent_map_tree *tree)
Chris Masona52d9a82007-08-27 16:49:44 -040036{
Liu Bo07e1ce02018-08-23 03:51:52 +080037 tree->map = RB_ROOT_CACHED;
Josef Bacik5dc562c2012-08-17 13:14:17 -040038 INIT_LIST_HEAD(&tree->modified_extents);
Chris Mason890871b2009-09-02 16:24:52 -040039 rwlock_init(&tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -040040}
Chris Masona52d9a82007-08-27 16:49:44 -040041
Christoph Hellwig9d2423c2008-06-11 21:52:17 -040042/**
43 * alloc_extent_map - allocate new extent map structure
Christoph Hellwig9d2423c2008-06-11 21:52:17 -040044 *
45 * Allocate a new extent_map structure. The new structure is
46 * returned with a reference count of one and needs to be
47 * freed using free_extent_map()
48 */
David Sterba172ddd62011-04-21 00:48:27 +020049struct extent_map *alloc_extent_map(void)
Chris Masona52d9a82007-08-27 16:49:44 -040050{
51 struct extent_map *em;
Josef Bacik70c8a912012-10-11 16:54:30 -040052 em = kmem_cache_zalloc(extent_map_cache, GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +000053 if (!em)
54 return NULL;
Filipe Mananacbc0e922014-02-25 14:15:12 +000055 RB_CLEAR_NODE(&em->rb_node);
Chris Masond1310b22008-01-24 16:13:08 -050056 em->flags = 0;
Li Zefan261507a02010-12-17 14:21:50 +080057 em->compress_type = BTRFS_COMPRESS_NONE;
Josef Bacik5dc562c2012-08-17 13:14:17 -040058 em->generation = 0;
Elena Reshetova490b54d2017-03-03 10:55:12 +020059 refcount_set(&em->refs, 1);
Josef Bacik5dc562c2012-08-17 13:14:17 -040060 INIT_LIST_HEAD(&em->list);
Chris Masona52d9a82007-08-27 16:49:44 -040061 return em;
62}
Chris Masona52d9a82007-08-27 16:49:44 -040063
Christoph Hellwig9d2423c2008-06-11 21:52:17 -040064/**
65 * free_extent_map - drop reference count of an extent_map
Nicholas D Steeves01327612016-05-19 21:18:45 -040066 * @em: extent map being released
Christoph Hellwig9d2423c2008-06-11 21:52:17 -040067 *
68 * Drops the reference out on @em by one and free the structure
69 * if the reference count hits zero.
70 */
Chris Masona52d9a82007-08-27 16:49:44 -040071void free_extent_map(struct extent_map *em)
72{
Chris Mason2bf5a722007-08-30 11:54:02 -040073 if (!em)
74 return;
Elena Reshetova490b54d2017-03-03 10:55:12 +020075 WARN_ON(refcount_read(&em->refs) == 0);
76 if (refcount_dec_and_test(&em->refs)) {
Filipe Mananacbc0e922014-02-25 14:15:12 +000077 WARN_ON(extent_map_in_tree(em));
Josef Bacik5dc562c2012-08-17 13:14:17 -040078 WARN_ON(!list_empty(&em->list));
Wang Shilong298a8f92014-06-19 10:42:52 +080079 if (test_bit(EXTENT_FLAG_FS_MAPPING, &em->flags))
Jeff Mahoney95617d62015-06-03 10:55:48 -040080 kfree(em->map_lookup);
Chris Masona52d9a82007-08-27 16:49:44 -040081 kmem_cache_free(extent_map_cache, em);
82 }
83}
Chris Masona52d9a82007-08-27 16:49:44 -040084
Filipe David Borba Manana32193c12013-11-25 03:23:51 +000085/* simple helper to do math around the end of an extent, handling wrap */
86static u64 range_end(u64 start, u64 len)
87{
88 if (start + len < start)
89 return (u64)-1;
90 return start + len;
91}
92
Liu Bo07e1ce02018-08-23 03:51:52 +080093static int tree_insert(struct rb_root_cached *root, struct extent_map *em)
Chris Masona52d9a82007-08-27 16:49:44 -040094{
Liu Bo07e1ce02018-08-23 03:51:52 +080095 struct rb_node **p = &root->rb_root.rb_node;
Chris Masond3977122009-01-05 21:25:51 -050096 struct rb_node *parent = NULL;
Filipe David Borba Manana32193c12013-11-25 03:23:51 +000097 struct extent_map *entry = NULL;
98 struct rb_node *orig_parent = NULL;
99 u64 end = range_end(em->start, em->len);
Liu Bo07e1ce02018-08-23 03:51:52 +0800100 bool leftmost = true;
Chris Masona52d9a82007-08-27 16:49:44 -0400101
Chris Masond3977122009-01-05 21:25:51 -0500102 while (*p) {
Chris Masona52d9a82007-08-27 16:49:44 -0400103 parent = *p;
Chris Masond1310b22008-01-24 16:13:08 -0500104 entry = rb_entry(parent, struct extent_map, rb_node);
105
Liu Bo07e1ce02018-08-23 03:51:52 +0800106 if (em->start < entry->start) {
Chris Masona52d9a82007-08-27 16:49:44 -0400107 p = &(*p)->rb_left;
Liu Bo07e1ce02018-08-23 03:51:52 +0800108 } else if (em->start >= extent_map_end(entry)) {
Chris Masona52d9a82007-08-27 16:49:44 -0400109 p = &(*p)->rb_right;
Liu Bo07e1ce02018-08-23 03:51:52 +0800110 leftmost = false;
111 } else {
Filipe David Borba Manana32193c12013-11-25 03:23:51 +0000112 return -EEXIST;
Liu Bo07e1ce02018-08-23 03:51:52 +0800113 }
Chris Masona52d9a82007-08-27 16:49:44 -0400114 }
115
Filipe David Borba Manana32193c12013-11-25 03:23:51 +0000116 orig_parent = parent;
117 while (parent && em->start >= extent_map_end(entry)) {
118 parent = rb_next(parent);
119 entry = rb_entry(parent, struct extent_map, rb_node);
120 }
121 if (parent)
122 if (end > entry->start && em->start < extent_map_end(entry))
123 return -EEXIST;
124
125 parent = orig_parent;
126 entry = rb_entry(parent, struct extent_map, rb_node);
127 while (parent && em->start < entry->start) {
128 parent = rb_prev(parent);
129 entry = rb_entry(parent, struct extent_map, rb_node);
130 }
131 if (parent)
132 if (end > entry->start && em->start < extent_map_end(entry))
133 return -EEXIST;
134
Filipe David Borba Manana32193c12013-11-25 03:23:51 +0000135 rb_link_node(&em->rb_node, orig_parent, p);
Liu Bo07e1ce02018-08-23 03:51:52 +0800136 rb_insert_color_cached(&em->rb_node, root, leftmost);
Filipe David Borba Manana32193c12013-11-25 03:23:51 +0000137 return 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400138}
139
Chris Masond352ac62008-09-29 15:18:18 -0400140/*
141 * search through the tree for an extent_map with a given offset. If
142 * it can't be found, try to find some neighboring extents
143 */
Chris Masona52d9a82007-08-27 16:49:44 -0400144static struct rb_node *__tree_search(struct rb_root *root, u64 offset,
Chris Mason5f564062008-01-22 16:47:59 -0500145 struct rb_node **prev_ret,
146 struct rb_node **next_ret)
Chris Masona52d9a82007-08-27 16:49:44 -0400147{
Chris Masond3977122009-01-05 21:25:51 -0500148 struct rb_node *n = root->rb_node;
Chris Masona52d9a82007-08-27 16:49:44 -0400149 struct rb_node *prev = NULL;
Chris Mason5f564062008-01-22 16:47:59 -0500150 struct rb_node *orig_prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500151 struct extent_map *entry;
152 struct extent_map *prev_entry = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400153
Chris Masond3977122009-01-05 21:25:51 -0500154 while (n) {
Chris Masond1310b22008-01-24 16:13:08 -0500155 entry = rb_entry(n, struct extent_map, rb_node);
Chris Masona52d9a82007-08-27 16:49:44 -0400156 prev = n;
157 prev_entry = entry;
158
159 if (offset < entry->start)
160 n = n->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500161 else if (offset >= extent_map_end(entry))
Chris Masona52d9a82007-08-27 16:49:44 -0400162 n = n->rb_right;
163 else
164 return n;
165 }
Chris Mason5f564062008-01-22 16:47:59 -0500166
167 if (prev_ret) {
168 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500169 while (prev && offset >= extent_map_end(prev_entry)) {
Chris Mason5f564062008-01-22 16:47:59 -0500170 prev = rb_next(prev);
Chris Masond1310b22008-01-24 16:13:08 -0500171 prev_entry = rb_entry(prev, struct extent_map, rb_node);
Chris Mason5f564062008-01-22 16:47:59 -0500172 }
173 *prev_ret = prev;
174 prev = orig_prev;
Chris Masona52d9a82007-08-27 16:49:44 -0400175 }
Chris Mason5f564062008-01-22 16:47:59 -0500176
177 if (next_ret) {
Chris Masond1310b22008-01-24 16:13:08 -0500178 prev_entry = rb_entry(prev, struct extent_map, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500179 while (prev && offset < prev_entry->start) {
Chris Mason5f564062008-01-22 16:47:59 -0500180 prev = rb_prev(prev);
Chris Masond1310b22008-01-24 16:13:08 -0500181 prev_entry = rb_entry(prev, struct extent_map, rb_node);
Chris Mason5f564062008-01-22 16:47:59 -0500182 }
183 *next_ret = prev;
184 }
Chris Masona52d9a82007-08-27 16:49:44 -0400185 return NULL;
186}
187
Chris Masond352ac62008-09-29 15:18:18 -0400188/* check to see if two extent_map structs are adjacent and safe to merge */
Chris Masond1310b22008-01-24 16:13:08 -0500189static int mergable_maps(struct extent_map *prev, struct extent_map *next)
Chris Masona52d9a82007-08-27 16:49:44 -0400190{
Chris Mason7f3c74f2008-07-18 12:01:11 -0400191 if (test_bit(EXTENT_FLAG_PINNED, &prev->flags))
192 return 0;
193
Chris Masonc8b97812008-10-29 14:49:59 -0400194 /*
195 * don't merge compressed extents, we need to know their
196 * actual size
197 */
198 if (test_bit(EXTENT_FLAG_COMPRESSED, &prev->flags))
199 return 0;
200
Josef Bacik201a9032013-01-24 12:02:07 -0500201 if (test_bit(EXTENT_FLAG_LOGGING, &prev->flags) ||
202 test_bit(EXTENT_FLAG_LOGGING, &next->flags))
203 return 0;
204
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400205 /*
206 * We don't want to merge stuff that hasn't been written to the log yet
207 * since it may not reflect exactly what is on disk, and that would be
208 * bad.
209 */
210 if (!list_empty(&prev->list) || !list_empty(&next->list))
211 return 0;
212
Chris Masond1310b22008-01-24 16:13:08 -0500213 if (extent_map_end(prev) == next->start &&
214 prev->flags == next->flags &&
215 prev->bdev == next->bdev &&
216 ((next->block_start == EXTENT_MAP_HOLE &&
217 prev->block_start == EXTENT_MAP_HOLE) ||
218 (next->block_start == EXTENT_MAP_INLINE &&
219 prev->block_start == EXTENT_MAP_INLINE) ||
220 (next->block_start == EXTENT_MAP_DELALLOC &&
221 prev->block_start == EXTENT_MAP_DELALLOC) ||
222 (next->block_start < EXTENT_MAP_LAST_BYTE - 1 &&
223 next->block_start == extent_map_block_end(prev)))) {
224 return 1;
225 }
Chris Masona52d9a82007-08-27 16:49:44 -0400226 return 0;
227}
228
Li Zefan4d2c8f622011-07-14 03:18:33 +0000229static void try_merge_map(struct extent_map_tree *tree, struct extent_map *em)
Chris Masona1ed8352009-09-11 12:27:37 -0400230{
Chris Masona1ed8352009-09-11 12:27:37 -0400231 struct extent_map *merge = NULL;
232 struct rb_node *rb;
Chris Masona1ed8352009-09-11 12:27:37 -0400233
234 if (em->start != 0) {
235 rb = rb_prev(&em->rb_node);
236 if (rb)
237 merge = rb_entry(rb, struct extent_map, rb_node);
238 if (rb && mergable_maps(merge, em)) {
239 em->start = merge->start;
Josef Bacik70c8a912012-10-11 16:54:30 -0400240 em->orig_start = merge->orig_start;
Chris Masona1ed8352009-09-11 12:27:37 -0400241 em->len += merge->len;
242 em->block_len += merge->block_len;
243 em->block_start = merge->block_start;
Josef Bacik70c8a912012-10-11 16:54:30 -0400244 em->mod_len = (em->mod_len + em->mod_start) - merge->mod_start;
245 em->mod_start = merge->mod_start;
246 em->generation = max(em->generation, merge->generation);
Josef Bacik5dc562c2012-08-17 13:14:17 -0400247
Liu Bo07e1ce02018-08-23 03:51:52 +0800248 rb_erase_cached(&merge->rb_node, &tree->map);
Filipe Mananacbc0e922014-02-25 14:15:12 +0000249 RB_CLEAR_NODE(&merge->rb_node);
Chris Masona1ed8352009-09-11 12:27:37 -0400250 free_extent_map(merge);
251 }
252 }
253
254 rb = rb_next(&em->rb_node);
255 if (rb)
256 merge = rb_entry(rb, struct extent_map, rb_node);
257 if (rb && mergable_maps(em, merge)) {
258 em->len += merge->len;
Filipe David Borba Mananad527afe2013-11-30 11:28:35 +0000259 em->block_len += merge->block_len;
Liu Bo07e1ce02018-08-23 03:51:52 +0800260 rb_erase_cached(&merge->rb_node, &tree->map);
Filipe Mananacbc0e922014-02-25 14:15:12 +0000261 RB_CLEAR_NODE(&merge->rb_node);
Josef Bacik70c8a912012-10-11 16:54:30 -0400262 em->mod_len = (merge->mod_start + merge->mod_len) - em->mod_start;
263 em->generation = max(em->generation, merge->generation);
Chris Masona1ed8352009-09-11 12:27:37 -0400264 free_extent_map(merge);
265 }
Li Zefan4d2c8f622011-07-14 03:18:33 +0000266}
267
Josef Bacik5dc562c2012-08-17 13:14:17 -0400268/**
Liu Bo52b1de92012-10-30 17:13:52 +0800269 * unpin_extent_cache - unpin an extent from the cache
Josef Bacik5dc562c2012-08-17 13:14:17 -0400270 * @tree: tree to unpin the extent in
271 * @start: logical offset in the file
272 * @len: length of the extent
273 * @gen: generation that this extent has been modified in
Josef Bacik5dc562c2012-08-17 13:14:17 -0400274 *
275 * Called after an extent has been written to disk properly. Set the generation
276 * to the generation that actually added the file item to the inode so we know
277 * we need to sync this extent when we call fsync().
278 */
279int unpin_extent_cache(struct extent_map_tree *tree, u64 start, u64 len,
280 u64 gen)
Li Zefan4d2c8f622011-07-14 03:18:33 +0000281{
282 int ret = 0;
283 struct extent_map *em;
Liu Bo4e2f84e2012-08-27 10:52:20 -0600284 bool prealloc = false;
Li Zefan4d2c8f622011-07-14 03:18:33 +0000285
286 write_lock(&tree->lock);
287 em = lookup_extent_mapping(tree, start, len);
288
289 WARN_ON(!em || em->start != start);
290
291 if (!em)
292 goto out;
293
Josef Bacik5dc562c2012-08-17 13:14:17 -0400294 em->generation = gen;
Li Zefan4d2c8f622011-07-14 03:18:33 +0000295 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo4e2f84e2012-08-27 10:52:20 -0600296 em->mod_start = em->start;
297 em->mod_len = em->len;
298
Josef Bacikb11e2342012-12-03 10:58:15 -0500299 if (test_bit(EXTENT_FLAG_FILLING, &em->flags)) {
Liu Bo4e2f84e2012-08-27 10:52:20 -0600300 prealloc = true;
Josef Bacikb11e2342012-12-03 10:58:15 -0500301 clear_bit(EXTENT_FLAG_FILLING, &em->flags);
Liu Bo4e2f84e2012-08-27 10:52:20 -0600302 }
Li Zefan4d2c8f622011-07-14 03:18:33 +0000303
304 try_merge_map(tree, em);
Liu Bo4e2f84e2012-08-27 10:52:20 -0600305
306 if (prealloc) {
307 em->mod_start = em->start;
308 em->mod_len = em->len;
309 }
310
Chris Masona1ed8352009-09-11 12:27:37 -0400311 free_extent_map(em);
312out:
313 write_unlock(&tree->lock);
314 return ret;
315
316}
317
Josef Bacik201a9032013-01-24 12:02:07 -0500318void clear_em_logging(struct extent_map_tree *tree, struct extent_map *em)
319{
320 clear_bit(EXTENT_FLAG_LOGGING, &em->flags);
Filipe Mananacbc0e922014-02-25 14:15:12 +0000321 if (extent_map_in_tree(em))
Josef Bacik222c81d2013-01-28 09:45:20 -0500322 try_merge_map(tree, em);
Josef Bacik201a9032013-01-24 12:02:07 -0500323}
324
Filipe Manana176840b2014-02-25 14:15:13 +0000325static inline void setup_extent_mapping(struct extent_map_tree *tree,
326 struct extent_map *em,
327 int modified)
328{
Elena Reshetova490b54d2017-03-03 10:55:12 +0200329 refcount_inc(&em->refs);
Filipe Manana176840b2014-02-25 14:15:13 +0000330 em->mod_start = em->start;
331 em->mod_len = em->len;
332
333 if (modified)
334 list_move(&em->list, &tree->modified_extents);
335 else
336 try_merge_map(tree, em);
337}
338
Christoph Hellwig9d2423c2008-06-11 21:52:17 -0400339/**
340 * add_extent_mapping - add new extent map to the extent tree
341 * @tree: tree to insert new map in
342 * @em: map to insert
343 *
344 * Insert @em into @tree or perform a simple forward/backward merge with
345 * existing mappings. The extent_map struct passed in will be inserted
346 * into the tree directly, with an additional reference taken, or a
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300347 * reference dropped if the merge attempt was successful.
Chris Masona52d9a82007-08-27 16:49:44 -0400348 */
349int add_extent_mapping(struct extent_map_tree *tree,
Josef Bacik09a2a8f92013-04-05 16:51:15 -0400350 struct extent_map *em, int modified)
Chris Masona52d9a82007-08-27 16:49:44 -0400351{
352 int ret = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400353
Filipe David Borba Manana32193c12013-11-25 03:23:51 +0000354 ret = tree_insert(&tree->map, em);
355 if (ret)
Chris Mason7c2fe322008-08-20 08:51:50 -0400356 goto out;
Filipe David Borba Manana32193c12013-11-25 03:23:51 +0000357
Filipe Manana176840b2014-02-25 14:15:13 +0000358 setup_extent_mapping(tree, em, modified);
Chris Masona52d9a82007-08-27 16:49:44 -0400359out:
Chris Masona52d9a82007-08-27 16:49:44 -0400360 return ret;
361}
Chris Masona52d9a82007-08-27 16:49:44 -0400362
Eric Sandeen48a3b632013-04-25 20:41:01 +0000363static struct extent_map *
364__lookup_extent_mapping(struct extent_map_tree *tree,
365 u64 start, u64 len, int strict)
Li Zefaned64f062011-07-14 03:18:15 +0000366{
367 struct extent_map *em;
368 struct rb_node *rb_node;
369 struct rb_node *prev = NULL;
370 struct rb_node *next = NULL;
371 u64 end = range_end(start, len);
372
Liu Bo07e1ce02018-08-23 03:51:52 +0800373 rb_node = __tree_search(&tree->map.rb_root, start, &prev, &next);
Li Zefaned64f062011-07-14 03:18:15 +0000374 if (!rb_node) {
375 if (prev)
376 rb_node = prev;
377 else if (next)
378 rb_node = next;
379 else
380 return NULL;
381 }
382
383 em = rb_entry(rb_node, struct extent_map, rb_node);
384
385 if (strict && !(end > em->start && start < extent_map_end(em)))
386 return NULL;
387
Elena Reshetova490b54d2017-03-03 10:55:12 +0200388 refcount_inc(&em->refs);
Li Zefaned64f062011-07-14 03:18:15 +0000389 return em;
390}
391
Christoph Hellwig9d2423c2008-06-11 21:52:17 -0400392/**
393 * lookup_extent_mapping - lookup extent_map
394 * @tree: tree to lookup in
395 * @start: byte offset to start the search
396 * @len: length of the lookup range
397 *
398 * Find and return the first extent_map struct in @tree that intersects the
399 * [start, len] range. There may be additional objects in the tree that
400 * intersect, so check the object returned carefully to make sure that no
401 * additional lookups are needed.
Chris Masona52d9a82007-08-27 16:49:44 -0400402 */
403struct extent_map *lookup_extent_mapping(struct extent_map_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500404 u64 start, u64 len)
Chris Masona52d9a82007-08-27 16:49:44 -0400405{
Li Zefaned64f062011-07-14 03:18:15 +0000406 return __lookup_extent_mapping(tree, start, len, 1);
Chris Masona52d9a82007-08-27 16:49:44 -0400407}
Chris Masona52d9a82007-08-27 16:49:44 -0400408
Christoph Hellwig9d2423c2008-06-11 21:52:17 -0400409/**
Chris Masonb917b7c2009-09-18 16:07:03 -0400410 * search_extent_mapping - find a nearby extent map
411 * @tree: tree to lookup in
412 * @start: byte offset to start the search
413 * @len: length of the lookup range
414 *
415 * Find and return the first extent_map struct in @tree that intersects the
416 * [start, len] range.
417 *
418 * If one can't be found, any nearby extent may be returned
419 */
420struct extent_map *search_extent_mapping(struct extent_map_tree *tree,
421 u64 start, u64 len)
422{
Li Zefaned64f062011-07-14 03:18:15 +0000423 return __lookup_extent_mapping(tree, start, len, 0);
Chris Masonb917b7c2009-09-18 16:07:03 -0400424}
425
426/**
Christoph Hellwig9d2423c2008-06-11 21:52:17 -0400427 * remove_extent_mapping - removes an extent_map from the extent tree
428 * @tree: extent tree to remove from
Adam Buchbinderbb7ab3b2016-03-04 11:23:12 -0800429 * @em: extent map being removed
Christoph Hellwig9d2423c2008-06-11 21:52:17 -0400430 *
431 * Removes @em from @tree. No reference counts are dropped, and no checks
432 * are done to see if the range is in use
Chris Masona52d9a82007-08-27 16:49:44 -0400433 */
zhong jiangc1766dd2018-09-13 11:01:15 +0800434void remove_extent_mapping(struct extent_map_tree *tree, struct extent_map *em)
Chris Masona52d9a82007-08-27 16:49:44 -0400435{
Chris Mason7f3c74f2008-07-18 12:01:11 -0400436 WARN_ON(test_bit(EXTENT_FLAG_PINNED, &em->flags));
Liu Bo07e1ce02018-08-23 03:51:52 +0800437 rb_erase_cached(&em->rb_node, &tree->map);
Josef Bacikff44c6e2012-09-14 12:59:20 -0400438 if (!test_bit(EXTENT_FLAG_LOGGING, &em->flags))
439 list_del_init(&em->list);
Filipe Mananacbc0e922014-02-25 14:15:12 +0000440 RB_CLEAR_NODE(&em->rb_node);
Chris Masona52d9a82007-08-27 16:49:44 -0400441}
Filipe Manana176840b2014-02-25 14:15:13 +0000442
443void replace_extent_mapping(struct extent_map_tree *tree,
444 struct extent_map *cur,
445 struct extent_map *new,
446 int modified)
447{
448 WARN_ON(test_bit(EXTENT_FLAG_PINNED, &cur->flags));
449 ASSERT(extent_map_in_tree(cur));
450 if (!test_bit(EXTENT_FLAG_LOGGING, &cur->flags))
451 list_del_init(&cur->list);
Liu Bo07e1ce02018-08-23 03:51:52 +0800452 rb_replace_node_cached(&cur->rb_node, &new->rb_node, &tree->map);
Filipe Manana176840b2014-02-25 14:15:13 +0000453 RB_CLEAR_NODE(&cur->rb_node);
454
455 setup_extent_mapping(tree, new, modified);
456}
Liu Boc04e61b2018-01-05 12:51:11 -0700457
458static struct extent_map *next_extent_map(struct extent_map *em)
459{
460 struct rb_node *next;
461
462 next = rb_next(&em->rb_node);
463 if (!next)
464 return NULL;
465 return container_of(next, struct extent_map, rb_node);
466}
467
468static struct extent_map *prev_extent_map(struct extent_map *em)
469{
470 struct rb_node *prev;
471
472 prev = rb_prev(&em->rb_node);
473 if (!prev)
474 return NULL;
475 return container_of(prev, struct extent_map, rb_node);
476}
477
Andrea Gelmini52042d82018-11-28 12:05:13 +0100478/*
479 * Helper for btrfs_get_extent. Given an existing extent in the tree,
Liu Boc04e61b2018-01-05 12:51:11 -0700480 * the existing extent is the nearest extent to map_start,
481 * and an extent that you want to insert, deal with overlap and insert
482 * the best fitted new extent into the tree.
483 */
Liu Bo5f4791f2018-01-05 12:51:17 -0700484static noinline int merge_extent_mapping(struct extent_map_tree *em_tree,
485 struct extent_map *existing,
486 struct extent_map *em,
487 u64 map_start)
Liu Boc04e61b2018-01-05 12:51:11 -0700488{
489 struct extent_map *prev;
490 struct extent_map *next;
491 u64 start;
492 u64 end;
493 u64 start_diff;
494
495 BUG_ON(map_start < em->start || map_start >= extent_map_end(em));
496
497 if (existing->start > map_start) {
498 next = existing;
499 prev = prev_extent_map(next);
500 } else {
501 prev = existing;
502 next = next_extent_map(prev);
503 }
504
505 start = prev ? extent_map_end(prev) : em->start;
506 start = max_t(u64, start, em->start);
507 end = next ? next->start : extent_map_end(em);
508 end = min_t(u64, end, extent_map_end(em));
509 start_diff = start - em->start;
510 em->start = start;
511 em->len = end - start;
512 if (em->block_start < EXTENT_MAP_LAST_BYTE &&
513 !test_bit(EXTENT_FLAG_COMPRESSED, &em->flags)) {
514 em->block_start += start_diff;
515 em->block_len = em->len;
516 }
517 return add_extent_mapping(em_tree, em, 0);
518}
519
520/**
521 * btrfs_add_extent_mapping - add extent mapping into em_tree
David Sterbaf46b24c2018-04-03 21:45:57 +0200522 * @fs_info - used for tracepoint
Liu Boc04e61b2018-01-05 12:51:11 -0700523 * @em_tree - the extent tree into which we want to insert the extent mapping
524 * @em_in - extent we are inserting
525 * @start - start of the logical range btrfs_get_extent() is requesting
526 * @len - length of the logical range btrfs_get_extent() is requesting
527 *
528 * Note that @em_in's range may be different from [start, start+len),
529 * but they must be overlapped.
530 *
531 * Insert @em_in into @em_tree. In case there is an overlapping range, handle
532 * the -EEXIST by either:
533 * a) Returning the existing extent in @em_in if @start is within the
534 * existing em.
535 * b) Merge the existing extent with @em_in passed in.
536 *
537 * Return 0 on success, otherwise -EEXIST.
538 *
539 */
David Sterbaf46b24c2018-04-03 21:45:57 +0200540int btrfs_add_extent_mapping(struct btrfs_fs_info *fs_info,
541 struct extent_map_tree *em_tree,
Liu Boc04e61b2018-01-05 12:51:11 -0700542 struct extent_map **em_in, u64 start, u64 len)
543{
544 int ret;
545 struct extent_map *em = *em_in;
546
547 ret = add_extent_mapping(em_tree, em, 0);
548 /* it is possible that someone inserted the extent into the tree
549 * while we had the lock dropped. It is also possible that
550 * an overlapping map exists in the tree
551 */
552 if (ret == -EEXIST) {
553 struct extent_map *existing;
554
555 ret = 0;
556
557 existing = search_extent_mapping(em_tree, start, len);
Liu Bo393da912018-01-05 12:51:16 -0700558
David Sterbaf46b24c2018-04-03 21:45:57 +0200559 trace_btrfs_handle_em_exist(fs_info, existing, em, start, len);
Liu Bo393da912018-01-05 12:51:16 -0700560
Liu Boc04e61b2018-01-05 12:51:11 -0700561 /*
562 * existing will always be non-NULL, since there must be
563 * extent causing the -EEXIST.
564 */
565 if (start >= existing->start &&
566 start < extent_map_end(existing)) {
567 free_extent_map(em);
568 *em_in = existing;
569 ret = 0;
570 } else {
Liu Bo9a7e10e2018-01-05 12:51:15 -0700571 u64 orig_start = em->start;
572 u64 orig_len = em->len;
573
Liu Boc04e61b2018-01-05 12:51:11 -0700574 /*
575 * The existing extent map is the one nearest to
576 * the [start, start + len) range which overlaps
577 */
578 ret = merge_extent_mapping(em_tree, existing,
579 em, start);
Liu Boc04e61b2018-01-05 12:51:11 -0700580 if (ret) {
581 free_extent_map(em);
582 *em_in = NULL;
Liu Bo9a7e10e2018-01-05 12:51:15 -0700583 WARN_ONCE(ret,
584"unexpected error %d: merge existing(start %llu len %llu) with em(start %llu len %llu)\n",
585 ret, existing->start, existing->len,
586 orig_start, orig_len);
Liu Boc04e61b2018-01-05 12:51:11 -0700587 }
Liu Bo9a7e10e2018-01-05 12:51:15 -0700588 free_extent_map(existing);
Liu Boc04e61b2018-01-05 12:51:11 -0700589 }
590 }
591
592 ASSERT(ret == 0 || ret == -EEXIST);
593 return ret;
594}