blob: fd3ebfb8c3c5e80bf440c21e6541d976325bcef2 [file] [log] [blame]
Chris Masond1310b22008-01-24 16:13:08 -05001#include <linux/err.h>
Chris Masona52d9a82007-08-27 16:49:44 -04002#include <linux/gfp.h>
Chris Masond1310b22008-01-24 16:13:08 -05003#include <linux/slab.h>
Chris Masona52d9a82007-08-27 16:49:44 -04004#include <linux/module.h>
5#include <linux/spinlock.h>
Jens Axboe0a2118d2007-10-19 09:23:05 -04006#include <linux/version.h>
Chris Masond1310b22008-01-24 16:13:08 -05007#include <linux/hardirq.h>
Chris Masona52d9a82007-08-27 16:49:44 -04008#include "extent_map.h"
9
Chris Mason86479a02007-09-10 19:58:16 -040010/* temporary define until extent_map moves out of btrfs */
11struct kmem_cache *btrfs_cache_create(const char *name, size_t size,
12 unsigned long extra_flags,
13 void (*ctor)(void *, struct kmem_cache *,
14 unsigned long));
15
Chris Masona52d9a82007-08-27 16:49:44 -040016static struct kmem_cache *extent_map_cache;
Chris Masonca664622007-11-27 11:16:35 -050017
Wyatt Banks2f4cbe62007-11-19 10:22:33 -050018int __init extent_map_init(void)
Chris Masona52d9a82007-08-27 16:49:44 -040019{
Chris Mason86479a02007-09-10 19:58:16 -040020 extent_map_cache = btrfs_cache_create("extent_map",
Chris Mason6d36dcd2007-10-15 16:14:37 -040021 sizeof(struct extent_map), 0,
Chris Masona52d9a82007-08-27 16:49:44 -040022 NULL);
Wyatt Banks2f4cbe62007-11-19 10:22:33 -050023 if (!extent_map_cache)
24 return -ENOMEM;
Wyatt Banks2f4cbe62007-11-19 10:22:33 -050025 return 0;
Chris Masona52d9a82007-08-27 16:49:44 -040026}
27
Christian Hesse17636e02007-12-11 09:25:06 -050028void extent_map_exit(void)
Chris Masona52d9a82007-08-27 16:49:44 -040029{
Chris Masona52d9a82007-08-27 16:49:44 -040030 if (extent_map_cache)
31 kmem_cache_destroy(extent_map_cache);
Chris Masona52d9a82007-08-27 16:49:44 -040032}
33
Christoph Hellwig9d2423c2008-06-11 21:52:17 -040034/**
35 * extent_map_tree_init - initialize extent map tree
36 * @tree: tree to initialize
37 * @mask: flags for memory allocations during tree operations
38 *
39 * Initialize the extent tree @tree. Should be called for each new inode
40 * or other user of the extent_map interface.
41 */
Chris Masond1310b22008-01-24 16:13:08 -050042void extent_map_tree_init(struct extent_map_tree *tree, gfp_t mask)
Chris Masona52d9a82007-08-27 16:49:44 -040043{
44 tree->map.rb_node = NULL;
Chris Masond1310b22008-01-24 16:13:08 -050045 spin_lock_init(&tree->lock);
Chris Masona52d9a82007-08-27 16:49:44 -040046}
47EXPORT_SYMBOL(extent_map_tree_init);
48
Christoph Hellwig9d2423c2008-06-11 21:52:17 -040049/**
50 * alloc_extent_map - allocate new extent map structure
51 * @mask: memory allocation flags
52 *
53 * Allocate a new extent_map structure. The new structure is
54 * returned with a reference count of one and needs to be
55 * freed using free_extent_map()
56 */
Chris Masona52d9a82007-08-27 16:49:44 -040057struct extent_map *alloc_extent_map(gfp_t mask)
58{
59 struct extent_map *em;
60 em = kmem_cache_alloc(extent_map_cache, mask);
61 if (!em || IS_ERR(em))
62 return em;
63 em->in_tree = 0;
Chris Masond1310b22008-01-24 16:13:08 -050064 em->flags = 0;
Chris Masona52d9a82007-08-27 16:49:44 -040065 atomic_set(&em->refs, 1);
66 return em;
67}
68EXPORT_SYMBOL(alloc_extent_map);
69
Christoph Hellwig9d2423c2008-06-11 21:52:17 -040070/**
71 * free_extent_map - drop reference count of an extent_map
72 * @em: extent map beeing releasead
73 *
74 * Drops the reference out on @em by one and free the structure
75 * if the reference count hits zero.
76 */
Chris Masona52d9a82007-08-27 16:49:44 -040077void free_extent_map(struct extent_map *em)
78{
Chris Mason2bf5a722007-08-30 11:54:02 -040079 if (!em)
80 return;
Chris Masond1310b22008-01-24 16:13:08 -050081 WARN_ON(atomic_read(&em->refs) == 0);
Chris Masona52d9a82007-08-27 16:49:44 -040082 if (atomic_dec_and_test(&em->refs)) {
83 WARN_ON(em->in_tree);
84 kmem_cache_free(extent_map_cache, em);
85 }
86}
87EXPORT_SYMBOL(free_extent_map);
88
Chris Masona52d9a82007-08-27 16:49:44 -040089static struct rb_node *tree_insert(struct rb_root *root, u64 offset,
90 struct rb_node *node)
91{
92 struct rb_node ** p = &root->rb_node;
93 struct rb_node * parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -050094 struct extent_map *entry;
Chris Masona52d9a82007-08-27 16:49:44 -040095
96 while(*p) {
97 parent = *p;
Chris Masond1310b22008-01-24 16:13:08 -050098 entry = rb_entry(parent, struct extent_map, rb_node);
99
100 WARN_ON(!entry->in_tree);
Chris Masona52d9a82007-08-27 16:49:44 -0400101
102 if (offset < entry->start)
103 p = &(*p)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500104 else if (offset >= extent_map_end(entry))
Chris Masona52d9a82007-08-27 16:49:44 -0400105 p = &(*p)->rb_right;
106 else
107 return parent;
108 }
109
Chris Masond1310b22008-01-24 16:13:08 -0500110 entry = rb_entry(node, struct extent_map, rb_node);
Chris Masona52d9a82007-08-27 16:49:44 -0400111 entry->in_tree = 1;
112 rb_link_node(node, parent, p);
113 rb_insert_color(node, root);
114 return NULL;
115}
116
Chris Masond352ac62008-09-29 15:18:18 -0400117/*
118 * search through the tree for an extent_map with a given offset. If
119 * it can't be found, try to find some neighboring extents
120 */
Chris Masona52d9a82007-08-27 16:49:44 -0400121static struct rb_node *__tree_search(struct rb_root *root, u64 offset,
Chris Mason5f564062008-01-22 16:47:59 -0500122 struct rb_node **prev_ret,
123 struct rb_node **next_ret)
Chris Masona52d9a82007-08-27 16:49:44 -0400124{
125 struct rb_node * n = root->rb_node;
126 struct rb_node *prev = NULL;
Chris Mason5f564062008-01-22 16:47:59 -0500127 struct rb_node *orig_prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500128 struct extent_map *entry;
129 struct extent_map *prev_entry = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400130
131 while(n) {
Chris Masond1310b22008-01-24 16:13:08 -0500132 entry = rb_entry(n, struct extent_map, rb_node);
Chris Masona52d9a82007-08-27 16:49:44 -0400133 prev = n;
134 prev_entry = entry;
135
Chris Masond1310b22008-01-24 16:13:08 -0500136 WARN_ON(!entry->in_tree);
137
Chris Masona52d9a82007-08-27 16:49:44 -0400138 if (offset < entry->start)
139 n = n->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500140 else if (offset >= extent_map_end(entry))
Chris Masona52d9a82007-08-27 16:49:44 -0400141 n = n->rb_right;
142 else
143 return n;
144 }
Chris Mason5f564062008-01-22 16:47:59 -0500145
146 if (prev_ret) {
147 orig_prev = prev;
Chris Masond1310b22008-01-24 16:13:08 -0500148 while(prev && offset >= extent_map_end(prev_entry)) {
Chris Mason5f564062008-01-22 16:47:59 -0500149 prev = rb_next(prev);
Chris Masond1310b22008-01-24 16:13:08 -0500150 prev_entry = rb_entry(prev, struct extent_map, rb_node);
Chris Mason5f564062008-01-22 16:47:59 -0500151 }
152 *prev_ret = prev;
153 prev = orig_prev;
Chris Masona52d9a82007-08-27 16:49:44 -0400154 }
Chris Mason5f564062008-01-22 16:47:59 -0500155
156 if (next_ret) {
Chris Masond1310b22008-01-24 16:13:08 -0500157 prev_entry = rb_entry(prev, struct extent_map, rb_node);
Chris Mason5f564062008-01-22 16:47:59 -0500158 while(prev && offset < prev_entry->start) {
159 prev = rb_prev(prev);
Chris Masond1310b22008-01-24 16:13:08 -0500160 prev_entry = rb_entry(prev, struct extent_map, rb_node);
Chris Mason5f564062008-01-22 16:47:59 -0500161 }
162 *next_ret = prev;
163 }
Chris Masona52d9a82007-08-27 16:49:44 -0400164 return NULL;
165}
166
Chris Masond352ac62008-09-29 15:18:18 -0400167/*
168 * look for an offset in the tree, and if it can't be found, return
169 * the first offset we can find smaller than 'offset'.
170 */
Chris Masona52d9a82007-08-27 16:49:44 -0400171static inline struct rb_node *tree_search(struct rb_root *root, u64 offset)
172{
173 struct rb_node *prev;
174 struct rb_node *ret;
Chris Mason5f564062008-01-22 16:47:59 -0500175 ret = __tree_search(root, offset, &prev, NULL);
Chris Masona52d9a82007-08-27 16:49:44 -0400176 if (!ret)
177 return prev;
178 return ret;
179}
180
Chris Masond352ac62008-09-29 15:18:18 -0400181/* check to see if two extent_map structs are adjacent and safe to merge */
Chris Masond1310b22008-01-24 16:13:08 -0500182static int mergable_maps(struct extent_map *prev, struct extent_map *next)
Chris Masona52d9a82007-08-27 16:49:44 -0400183{
Chris Mason7f3c74f2008-07-18 12:01:11 -0400184 if (test_bit(EXTENT_FLAG_PINNED, &prev->flags))
185 return 0;
186
Chris Masonc8b97812008-10-29 14:49:59 -0400187 /*
188 * don't merge compressed extents, we need to know their
189 * actual size
190 */
191 if (test_bit(EXTENT_FLAG_COMPRESSED, &prev->flags))
192 return 0;
193
Chris Masond1310b22008-01-24 16:13:08 -0500194 if (extent_map_end(prev) == next->start &&
195 prev->flags == next->flags &&
196 prev->bdev == next->bdev &&
197 ((next->block_start == EXTENT_MAP_HOLE &&
198 prev->block_start == EXTENT_MAP_HOLE) ||
199 (next->block_start == EXTENT_MAP_INLINE &&
200 prev->block_start == EXTENT_MAP_INLINE) ||
201 (next->block_start == EXTENT_MAP_DELALLOC &&
202 prev->block_start == EXTENT_MAP_DELALLOC) ||
203 (next->block_start < EXTENT_MAP_LAST_BYTE - 1 &&
204 next->block_start == extent_map_block_end(prev)))) {
205 return 1;
206 }
Chris Masona52d9a82007-08-27 16:49:44 -0400207 return 0;
208}
209
Christoph Hellwig9d2423c2008-06-11 21:52:17 -0400210/**
211 * add_extent_mapping - add new extent map to the extent tree
212 * @tree: tree to insert new map in
213 * @em: map to insert
214 *
215 * Insert @em into @tree or perform a simple forward/backward merge with
216 * existing mappings. The extent_map struct passed in will be inserted
217 * into the tree directly, with an additional reference taken, or a
218 * reference dropped if the merge attempt was sucessfull.
Chris Masona52d9a82007-08-27 16:49:44 -0400219 */
220int add_extent_mapping(struct extent_map_tree *tree,
221 struct extent_map *em)
222{
223 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500224 struct extent_map *merge = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400225 struct rb_node *rb;
Chris Mason7c2fe322008-08-20 08:51:50 -0400226 struct extent_map *exist;
Chris Masona52d9a82007-08-27 16:49:44 -0400227
Chris Mason7c2fe322008-08-20 08:51:50 -0400228 exist = lookup_extent_mapping(tree, em->start, em->len);
229 if (exist) {
230 free_extent_map(exist);
231 ret = -EEXIST;
232 goto out;
233 }
David Woodhouse64f26f72008-07-24 10:09:43 -0400234 assert_spin_locked(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500235 rb = tree_insert(&tree->map, em->start, &em->rb_node);
Chris Masona52d9a82007-08-27 16:49:44 -0400236 if (rb) {
Chris Masona52d9a82007-08-27 16:49:44 -0400237 ret = -EEXIST;
Chris Masone6dcd2d2008-07-17 12:53:50 -0400238 free_extent_map(merge);
Chris Masona52d9a82007-08-27 16:49:44 -0400239 goto out;
240 }
241 atomic_inc(&em->refs);
242 if (em->start != 0) {
243 rb = rb_prev(&em->rb_node);
244 if (rb)
Chris Masond1310b22008-01-24 16:13:08 -0500245 merge = rb_entry(rb, struct extent_map, rb_node);
246 if (rb && mergable_maps(merge, em)) {
247 em->start = merge->start;
248 em->len += merge->len;
Chris Masonc8b97812008-10-29 14:49:59 -0400249 em->block_len += merge->block_len;
Chris Masond1310b22008-01-24 16:13:08 -0500250 em->block_start = merge->block_start;
251 merge->in_tree = 0;
252 rb_erase(&merge->rb_node, &tree->map);
253 free_extent_map(merge);
Chris Masona52d9a82007-08-27 16:49:44 -0400254 }
255 }
Chris Masond1310b22008-01-24 16:13:08 -0500256 rb = rb_next(&em->rb_node);
257 if (rb)
258 merge = rb_entry(rb, struct extent_map, rb_node);
259 if (rb && mergable_maps(em, merge)) {
260 em->len += merge->len;
Chris Masonc8b97812008-10-29 14:49:59 -0400261 em->block_len += merge->len;
Chris Masond1310b22008-01-24 16:13:08 -0500262 rb_erase(&merge->rb_node, &tree->map);
263 merge->in_tree = 0;
264 free_extent_map(merge);
265 }
Chris Masona52d9a82007-08-27 16:49:44 -0400266out:
Chris Masona52d9a82007-08-27 16:49:44 -0400267 return ret;
268}
269EXPORT_SYMBOL(add_extent_mapping);
270
Chris Masond352ac62008-09-29 15:18:18 -0400271/* simple helper to do math around the end of an extent, handling wrap */
Chris Masond1310b22008-01-24 16:13:08 -0500272static u64 range_end(u64 start, u64 len)
273{
274 if (start + len < start)
275 return (u64)-1;
276 return start + len;
277}
278
Christoph Hellwig9d2423c2008-06-11 21:52:17 -0400279/**
280 * lookup_extent_mapping - lookup extent_map
281 * @tree: tree to lookup in
282 * @start: byte offset to start the search
283 * @len: length of the lookup range
284 *
285 * Find and return the first extent_map struct in @tree that intersects the
286 * [start, len] range. There may be additional objects in the tree that
287 * intersect, so check the object returned carefully to make sure that no
288 * additional lookups are needed.
Chris Masona52d9a82007-08-27 16:49:44 -0400289 */
290struct extent_map *lookup_extent_mapping(struct extent_map_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500291 u64 start, u64 len)
Chris Masona52d9a82007-08-27 16:49:44 -0400292{
293 struct extent_map *em;
294 struct rb_node *rb_node;
Christoph Hellwig306929f2008-06-10 10:21:04 -0400295 struct rb_node *prev = NULL;
296 struct rb_node *next = NULL;
297 u64 end = range_end(start, len);
298
David Woodhouse64f26f72008-07-24 10:09:43 -0400299 assert_spin_locked(&tree->lock);
Chris Mason5f564062008-01-22 16:47:59 -0500300 rb_node = __tree_search(&tree->map, start, &prev, &next);
301 if (!rb_node && prev) {
302 em = rb_entry(prev, struct extent_map, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500303 if (end > em->start && start < extent_map_end(em))
Chris Mason5f564062008-01-22 16:47:59 -0500304 goto found;
305 }
306 if (!rb_node && next) {
307 em = rb_entry(next, struct extent_map, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500308 if (end > em->start && start < extent_map_end(em))
Chris Mason5f564062008-01-22 16:47:59 -0500309 goto found;
310 }
Chris Masona52d9a82007-08-27 16:49:44 -0400311 if (!rb_node) {
312 em = NULL;
313 goto out;
314 }
315 if (IS_ERR(rb_node)) {
316 em = ERR_PTR(PTR_ERR(rb_node));
317 goto out;
318 }
319 em = rb_entry(rb_node, struct extent_map, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500320 if (end > em->start && start < extent_map_end(em))
321 goto found;
322
323 em = NULL;
324 goto out;
325
Chris Mason5f564062008-01-22 16:47:59 -0500326found:
Chris Masona52d9a82007-08-27 16:49:44 -0400327 atomic_inc(&em->refs);
328out:
Chris Masona52d9a82007-08-27 16:49:44 -0400329 return em;
330}
331EXPORT_SYMBOL(lookup_extent_mapping);
332
Christoph Hellwig9d2423c2008-06-11 21:52:17 -0400333/**
334 * remove_extent_mapping - removes an extent_map from the extent tree
335 * @tree: extent tree to remove from
336 * @em: extent map beeing removed
337 *
338 * Removes @em from @tree. No reference counts are dropped, and no checks
339 * are done to see if the range is in use
Chris Masona52d9a82007-08-27 16:49:44 -0400340 */
341int remove_extent_mapping(struct extent_map_tree *tree, struct extent_map *em)
342{
Chris Masond1310b22008-01-24 16:13:08 -0500343 int ret = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400344
Chris Mason7f3c74f2008-07-18 12:01:11 -0400345 WARN_ON(test_bit(EXTENT_FLAG_PINNED, &em->flags));
David Woodhouse64f26f72008-07-24 10:09:43 -0400346 assert_spin_locked(&tree->lock);
Chris Masond1310b22008-01-24 16:13:08 -0500347 rb_erase(&em->rb_node, &tree->map);
348 em->in_tree = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400349 return ret;
350}
351EXPORT_SYMBOL(remove_extent_mapping);