blob: 85ae2b6fe03b73fe09258b4cf80e20695231a810 [file] [log] [blame]
Chris Masond1310b22008-01-24 16:13:08 -05001#include <linux/err.h>
Chris Masond1310b22008-01-24 16:13:08 -05002#include <linux/slab.h>
Chris Masona52d9a82007-08-27 16:49:44 -04003#include <linux/module.h>
4#include <linux/spinlock.h>
Chris Masond1310b22008-01-24 16:13:08 -05005#include <linux/hardirq.h>
Li Zefan261507a02010-12-17 14:21:50 +08006#include "ctree.h"
Chris Masona52d9a82007-08-27 16:49:44 -04007#include "extent_map.h"
8
Chris Mason86479a02007-09-10 19:58:16 -04009
Chris Masona52d9a82007-08-27 16:49:44 -040010static struct kmem_cache *extent_map_cache;
Chris Masonca664622007-11-27 11:16:35 -050011
Wyatt Banks2f4cbe62007-11-19 10:22:33 -050012int __init extent_map_init(void)
Chris Masona52d9a82007-08-27 16:49:44 -040013{
David Sterba837e1972012-09-07 03:00:48 -060014 extent_map_cache = kmem_cache_create("btrfs_extent_map",
Christoph Hellwig9601e3f2009-04-13 15:33:09 +020015 sizeof(struct extent_map), 0,
16 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD, NULL);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -050017 if (!extent_map_cache)
18 return -ENOMEM;
Wyatt Banks2f4cbe62007-11-19 10:22:33 -050019 return 0;
Chris Masona52d9a82007-08-27 16:49:44 -040020}
21
Christian Hesse17636e02007-12-11 09:25:06 -050022void extent_map_exit(void)
Chris Masona52d9a82007-08-27 16:49:44 -040023{
Chris Masona52d9a82007-08-27 16:49:44 -040024 if (extent_map_cache)
25 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{
Eric Paris6bef4d32010-02-23 19:43:04 +000037 tree->map = RB_ROOT;
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;
David Sterba172ddd62011-04-21 00:48:27 +020052 em = kmem_cache_alloc(extent_map_cache, GFP_NOFS);
Tsutomu Itohc26a9202011-02-14 00:45:29 +000053 if (!em)
54 return NULL;
Chris Masona52d9a82007-08-27 16:49:44 -040055 em->in_tree = 0;
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;
Chris Masona52d9a82007-08-27 16:49:44 -040059 atomic_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
66 * @em: extent map beeing releasead
67 *
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;
Chris Masond1310b22008-01-24 16:13:08 -050075 WARN_ON(atomic_read(&em->refs) == 0);
Chris Masona52d9a82007-08-27 16:49:44 -040076 if (atomic_dec_and_test(&em->refs)) {
77 WARN_ON(em->in_tree);
Josef Bacik5dc562c2012-08-17 13:14:17 -040078 WARN_ON(!list_empty(&em->list));
Chris Masona52d9a82007-08-27 16:49:44 -040079 kmem_cache_free(extent_map_cache, em);
80 }
81}
Chris Masona52d9a82007-08-27 16:49:44 -040082
Chris Masona52d9a82007-08-27 16:49:44 -040083static struct rb_node *tree_insert(struct rb_root *root, u64 offset,
84 struct rb_node *node)
85{
Chris Masond3977122009-01-05 21:25:51 -050086 struct rb_node **p = &root->rb_node;
87 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -050088 struct extent_map *entry;
Chris Masona52d9a82007-08-27 16:49:44 -040089
Chris Masond3977122009-01-05 21:25:51 -050090 while (*p) {
Chris Masona52d9a82007-08-27 16:49:44 -040091 parent = *p;
Chris Masond1310b22008-01-24 16:13:08 -050092 entry = rb_entry(parent, struct extent_map, rb_node);
93
94 WARN_ON(!entry->in_tree);
Chris Masona52d9a82007-08-27 16:49:44 -040095
96 if (offset < entry->start)
97 p = &(*p)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -050098 else if (offset >= extent_map_end(entry))
Chris Masona52d9a82007-08-27 16:49:44 -040099 p = &(*p)->rb_right;
100 else
101 return parent;
102 }
103
Chris Masond1310b22008-01-24 16:13:08 -0500104 entry = rb_entry(node, struct extent_map, rb_node);
Chris Masona52d9a82007-08-27 16:49:44 -0400105 entry->in_tree = 1;
106 rb_link_node(node, parent, p);
107 rb_insert_color(node, root);
108 return NULL;
109}
110
Chris Masond352ac62008-09-29 15:18:18 -0400111/*
112 * search through the tree for an extent_map with a given offset. If
113 * it can't be found, try to find some neighboring extents
114 */
Chris Masona52d9a82007-08-27 16:49:44 -0400115static struct rb_node *__tree_search(struct rb_root *root, u64 offset,
Chris Mason5f564062008-01-22 16:47:59 -0500116 struct rb_node **prev_ret,
117 struct rb_node **next_ret)
Chris Masona52d9a82007-08-27 16:49:44 -0400118{
Chris Masond3977122009-01-05 21:25:51 -0500119 struct rb_node *n = root->rb_node;
Chris Masona52d9a82007-08-27 16:49:44 -0400120 struct rb_node *prev = NULL;
Chris Mason5f564062008-01-22 16:47:59 -0500121 struct rb_node *orig_prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500122 struct extent_map *entry;
123 struct extent_map *prev_entry = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400124
Chris Masond3977122009-01-05 21:25:51 -0500125 while (n) {
Chris Masond1310b22008-01-24 16:13:08 -0500126 entry = rb_entry(n, struct extent_map, rb_node);
Chris Masona52d9a82007-08-27 16:49:44 -0400127 prev = n;
128 prev_entry = entry;
129
Chris Masond1310b22008-01-24 16:13:08 -0500130 WARN_ON(!entry->in_tree);
131
Chris Masona52d9a82007-08-27 16:49:44 -0400132 if (offset < entry->start)
133 n = n->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500134 else if (offset >= extent_map_end(entry))
Chris Masona52d9a82007-08-27 16:49:44 -0400135 n = n->rb_right;
136 else
137 return n;
138 }
Chris Mason5f564062008-01-22 16:47:59 -0500139
140 if (prev_ret) {
141 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500142 while (prev && offset >= extent_map_end(prev_entry)) {
Chris Mason5f564062008-01-22 16:47:59 -0500143 prev = rb_next(prev);
Chris Masond1310b22008-01-24 16:13:08 -0500144 prev_entry = rb_entry(prev, struct extent_map, rb_node);
Chris Mason5f564062008-01-22 16:47:59 -0500145 }
146 *prev_ret = prev;
147 prev = orig_prev;
Chris Masona52d9a82007-08-27 16:49:44 -0400148 }
Chris Mason5f564062008-01-22 16:47:59 -0500149
150 if (next_ret) {
Chris Masond1310b22008-01-24 16:13:08 -0500151 prev_entry = rb_entry(prev, struct extent_map, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500152 while (prev && offset < prev_entry->start) {
Chris Mason5f564062008-01-22 16:47:59 -0500153 prev = rb_prev(prev);
Chris Masond1310b22008-01-24 16:13:08 -0500154 prev_entry = rb_entry(prev, struct extent_map, rb_node);
Chris Mason5f564062008-01-22 16:47:59 -0500155 }
156 *next_ret = prev;
157 }
Chris Masona52d9a82007-08-27 16:49:44 -0400158 return NULL;
159}
160
Chris Masond352ac62008-09-29 15:18:18 -0400161/* check to see if two extent_map structs are adjacent and safe to merge */
Chris Masond1310b22008-01-24 16:13:08 -0500162static int mergable_maps(struct extent_map *prev, struct extent_map *next)
Chris Masona52d9a82007-08-27 16:49:44 -0400163{
Chris Mason7f3c74f2008-07-18 12:01:11 -0400164 if (test_bit(EXTENT_FLAG_PINNED, &prev->flags))
165 return 0;
166
Chris Masonc8b97812008-10-29 14:49:59 -0400167 /*
168 * don't merge compressed extents, we need to know their
169 * actual size
170 */
171 if (test_bit(EXTENT_FLAG_COMPRESSED, &prev->flags))
172 return 0;
173
Chris Masond1310b22008-01-24 16:13:08 -0500174 if (extent_map_end(prev) == next->start &&
175 prev->flags == next->flags &&
176 prev->bdev == next->bdev &&
177 ((next->block_start == EXTENT_MAP_HOLE &&
178 prev->block_start == EXTENT_MAP_HOLE) ||
179 (next->block_start == EXTENT_MAP_INLINE &&
180 prev->block_start == EXTENT_MAP_INLINE) ||
181 (next->block_start == EXTENT_MAP_DELALLOC &&
182 prev->block_start == EXTENT_MAP_DELALLOC) ||
183 (next->block_start < EXTENT_MAP_LAST_BYTE - 1 &&
184 next->block_start == extent_map_block_end(prev)))) {
185 return 1;
186 }
Chris Masona52d9a82007-08-27 16:49:44 -0400187 return 0;
188}
189
Li Zefan4d2c8f622011-07-14 03:18:33 +0000190static void try_merge_map(struct extent_map_tree *tree, struct extent_map *em)
Chris Masona1ed8352009-09-11 12:27:37 -0400191{
Chris Masona1ed8352009-09-11 12:27:37 -0400192 struct extent_map *merge = NULL;
193 struct rb_node *rb;
Chris Masona1ed8352009-09-11 12:27:37 -0400194
195 if (em->start != 0) {
196 rb = rb_prev(&em->rb_node);
197 if (rb)
198 merge = rb_entry(rb, struct extent_map, rb_node);
199 if (rb && mergable_maps(merge, em)) {
200 em->start = merge->start;
201 em->len += merge->len;
202 em->block_len += merge->block_len;
203 em->block_start = merge->block_start;
204 merge->in_tree = 0;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400205 if (merge->generation > em->generation) {
Liu Bo4e2f84e2012-08-27 10:52:20 -0600206 em->mod_start = em->start;
207 em->mod_len = em->len;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400208 em->generation = merge->generation;
209 list_move(&em->list, &tree->modified_extents);
210 }
211
212 list_del_init(&merge->list);
Chris Masona1ed8352009-09-11 12:27:37 -0400213 rb_erase(&merge->rb_node, &tree->map);
214 free_extent_map(merge);
215 }
216 }
217
218 rb = rb_next(&em->rb_node);
219 if (rb)
220 merge = rb_entry(rb, struct extent_map, rb_node);
221 if (rb && mergable_maps(em, merge)) {
222 em->len += merge->len;
223 em->block_len += merge->len;
224 rb_erase(&merge->rb_node, &tree->map);
225 merge->in_tree = 0;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400226 if (merge->generation > em->generation) {
Liu Bo4e2f84e2012-08-27 10:52:20 -0600227 em->mod_len = em->len;
Josef Bacik5dc562c2012-08-17 13:14:17 -0400228 em->generation = merge->generation;
229 list_move(&em->list, &tree->modified_extents);
230 }
231 list_del_init(&merge->list);
Chris Masona1ed8352009-09-11 12:27:37 -0400232 free_extent_map(merge);
233 }
Li Zefan4d2c8f622011-07-14 03:18:33 +0000234}
235
Josef Bacik5dc562c2012-08-17 13:14:17 -0400236/**
237 * unpint_extent_cache - unpin an extent from the cache
238 * @tree: tree to unpin the extent in
239 * @start: logical offset in the file
240 * @len: length of the extent
241 * @gen: generation that this extent has been modified in
242 * @prealloc: if this is set we need to clear the prealloc flag
243 *
244 * Called after an extent has been written to disk properly. Set the generation
245 * to the generation that actually added the file item to the inode so we know
246 * we need to sync this extent when we call fsync().
247 */
248int unpin_extent_cache(struct extent_map_tree *tree, u64 start, u64 len,
249 u64 gen)
Li Zefan4d2c8f622011-07-14 03:18:33 +0000250{
251 int ret = 0;
252 struct extent_map *em;
Liu Bo4e2f84e2012-08-27 10:52:20 -0600253 bool prealloc = false;
Li Zefan4d2c8f622011-07-14 03:18:33 +0000254
255 write_lock(&tree->lock);
256 em = lookup_extent_mapping(tree, start, len);
257
258 WARN_ON(!em || em->start != start);
259
260 if (!em)
261 goto out;
262
Josef Bacik5dc562c2012-08-17 13:14:17 -0400263 list_move(&em->list, &tree->modified_extents);
264 em->generation = gen;
Li Zefan4d2c8f622011-07-14 03:18:33 +0000265 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
Liu Bo4e2f84e2012-08-27 10:52:20 -0600266 em->mod_start = em->start;
267 em->mod_len = em->len;
268
Josef Bacikb11e2342012-12-03 10:58:15 -0500269 if (test_bit(EXTENT_FLAG_FILLING, &em->flags)) {
Liu Bo4e2f84e2012-08-27 10:52:20 -0600270 prealloc = true;
Josef Bacikb11e2342012-12-03 10:58:15 -0500271 clear_bit(EXTENT_FLAG_FILLING, &em->flags);
Liu Bo4e2f84e2012-08-27 10:52:20 -0600272 }
Li Zefan4d2c8f622011-07-14 03:18:33 +0000273
274 try_merge_map(tree, em);
Liu Bo4e2f84e2012-08-27 10:52:20 -0600275
276 if (prealloc) {
277 em->mod_start = em->start;
278 em->mod_len = em->len;
279 }
280
Chris Masona1ed8352009-09-11 12:27:37 -0400281 free_extent_map(em);
282out:
283 write_unlock(&tree->lock);
284 return ret;
285
286}
287
Christoph Hellwig9d2423c2008-06-11 21:52:17 -0400288/**
289 * add_extent_mapping - add new extent map to the extent tree
290 * @tree: tree to insert new map in
291 * @em: map to insert
292 *
293 * Insert @em into @tree or perform a simple forward/backward merge with
294 * existing mappings. The extent_map struct passed in will be inserted
295 * into the tree directly, with an additional reference taken, or a
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300296 * reference dropped if the merge attempt was successful.
Chris Masona52d9a82007-08-27 16:49:44 -0400297 */
298int add_extent_mapping(struct extent_map_tree *tree,
299 struct extent_map *em)
300{
301 int ret = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400302 struct rb_node *rb;
Chris Mason7c2fe322008-08-20 08:51:50 -0400303 struct extent_map *exist;
Chris Masona52d9a82007-08-27 16:49:44 -0400304
Chris Mason7c2fe322008-08-20 08:51:50 -0400305 exist = lookup_extent_mapping(tree, em->start, em->len);
306 if (exist) {
307 free_extent_map(exist);
308 ret = -EEXIST;
309 goto out;
310 }
Chris Masond1310b22008-01-24 16:13:08 -0500311 rb = tree_insert(&tree->map, em->start, &em->rb_node);
Chris Masona52d9a82007-08-27 16:49:44 -0400312 if (rb) {
Chris Masona52d9a82007-08-27 16:49:44 -0400313 ret = -EEXIST;
314 goto out;
315 }
316 atomic_inc(&em->refs);
Li Zefan4d2c8f622011-07-14 03:18:33 +0000317
Liu Bo4e2f84e2012-08-27 10:52:20 -0600318 em->mod_start = em->start;
319 em->mod_len = em->len;
320
Li Zefan4d2c8f622011-07-14 03:18:33 +0000321 try_merge_map(tree, em);
Chris Masona52d9a82007-08-27 16:49:44 -0400322out:
Chris Masona52d9a82007-08-27 16:49:44 -0400323 return ret;
324}
Chris Masona52d9a82007-08-27 16:49:44 -0400325
Chris Masond352ac62008-09-29 15:18:18 -0400326/* simple helper to do math around the end of an extent, handling wrap */
Chris Masond1310b22008-01-24 16:13:08 -0500327static u64 range_end(u64 start, u64 len)
328{
329 if (start + len < start)
330 return (u64)-1;
331 return start + len;
332}
333
Li Zefaned64f062011-07-14 03:18:15 +0000334struct extent_map *__lookup_extent_mapping(struct extent_map_tree *tree,
335 u64 start, u64 len, int strict)
336{
337 struct extent_map *em;
338 struct rb_node *rb_node;
339 struct rb_node *prev = NULL;
340 struct rb_node *next = NULL;
341 u64 end = range_end(start, len);
342
343 rb_node = __tree_search(&tree->map, start, &prev, &next);
344 if (!rb_node) {
345 if (prev)
346 rb_node = prev;
347 else if (next)
348 rb_node = next;
349 else
350 return NULL;
351 }
352
353 em = rb_entry(rb_node, struct extent_map, rb_node);
354
355 if (strict && !(end > em->start && start < extent_map_end(em)))
356 return NULL;
357
358 atomic_inc(&em->refs);
359 return em;
360}
361
Christoph Hellwig9d2423c2008-06-11 21:52:17 -0400362/**
363 * lookup_extent_mapping - lookup extent_map
364 * @tree: tree to lookup in
365 * @start: byte offset to start the search
366 * @len: length of the lookup range
367 *
368 * Find and return the first extent_map struct in @tree that intersects the
369 * [start, len] range. There may be additional objects in the tree that
370 * intersect, so check the object returned carefully to make sure that no
371 * additional lookups are needed.
Chris Masona52d9a82007-08-27 16:49:44 -0400372 */
373struct extent_map *lookup_extent_mapping(struct extent_map_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500374 u64 start, u64 len)
Chris Masona52d9a82007-08-27 16:49:44 -0400375{
Li Zefaned64f062011-07-14 03:18:15 +0000376 return __lookup_extent_mapping(tree, start, len, 1);
Chris Masona52d9a82007-08-27 16:49:44 -0400377}
Chris Masona52d9a82007-08-27 16:49:44 -0400378
Christoph Hellwig9d2423c2008-06-11 21:52:17 -0400379/**
Chris Masonb917b7c2009-09-18 16:07:03 -0400380 * search_extent_mapping - find a nearby extent map
381 * @tree: tree to lookup in
382 * @start: byte offset to start the search
383 * @len: length of the lookup range
384 *
385 * Find and return the first extent_map struct in @tree that intersects the
386 * [start, len] range.
387 *
388 * If one can't be found, any nearby extent may be returned
389 */
390struct extent_map *search_extent_mapping(struct extent_map_tree *tree,
391 u64 start, u64 len)
392{
Li Zefaned64f062011-07-14 03:18:15 +0000393 return __lookup_extent_mapping(tree, start, len, 0);
Chris Masonb917b7c2009-09-18 16:07:03 -0400394}
395
396/**
Christoph Hellwig9d2423c2008-06-11 21:52:17 -0400397 * remove_extent_mapping - removes an extent_map from the extent tree
398 * @tree: extent tree to remove from
399 * @em: extent map beeing removed
400 *
401 * Removes @em from @tree. No reference counts are dropped, and no checks
402 * are done to see if the range is in use
Chris Masona52d9a82007-08-27 16:49:44 -0400403 */
404int remove_extent_mapping(struct extent_map_tree *tree, struct extent_map *em)
405{
Chris Masond1310b22008-01-24 16:13:08 -0500406 int ret = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400407
Chris Mason7f3c74f2008-07-18 12:01:11 -0400408 WARN_ON(test_bit(EXTENT_FLAG_PINNED, &em->flags));
Chris Masond1310b22008-01-24 16:13:08 -0500409 rb_erase(&em->rb_node, &tree->map);
Josef Bacikff44c6e2012-09-14 12:59:20 -0400410 if (!test_bit(EXTENT_FLAG_LOGGING, &em->flags))
411 list_del_init(&em->list);
Chris Masond1310b22008-01-24 16:13:08 -0500412 em->in_tree = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400413 return ret;
414}