blob: 5a01f35507dd96851a1f60ac1a7656ff6a156c55 [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>
Chris Masond1310b22008-01-24 16:13:08 -05006#include <linux/hardirq.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{
Christoph Hellwig9601e3f2009-04-13 15:33:09 +020014 extent_map_cache = kmem_cache_create("extent_map",
15 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
31 * @mask: flags for memory allocations during tree operations
32 *
33 * Initialize the extent tree @tree. Should be called for each new inode
34 * or other user of the extent_map interface.
35 */
Chris Masond1310b22008-01-24 16:13:08 -050036void extent_map_tree_init(struct extent_map_tree *tree, gfp_t mask)
Chris Masona52d9a82007-08-27 16:49:44 -040037{
Eric Paris6bef4d32010-02-23 19:43:04 +000038 tree->map = RB_ROOT;
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
44 * @mask: memory allocation flags
45 *
46 * Allocate a new extent_map structure. The new structure is
47 * returned with a reference count of one and needs to be
48 * freed using free_extent_map()
49 */
Chris Masona52d9a82007-08-27 16:49:44 -040050struct extent_map *alloc_extent_map(gfp_t mask)
51{
52 struct extent_map *em;
53 em = kmem_cache_alloc(extent_map_cache, mask);
54 if (!em || IS_ERR(em))
55 return em;
56 em->in_tree = 0;
Chris Masond1310b22008-01-24 16:13:08 -050057 em->flags = 0;
Chris Masona52d9a82007-08-27 16:49:44 -040058 atomic_set(&em->refs, 1);
59 return em;
60}
Chris Masona52d9a82007-08-27 16:49:44 -040061
Christoph Hellwig9d2423c2008-06-11 21:52:17 -040062/**
63 * free_extent_map - drop reference count of an extent_map
64 * @em: extent map beeing releasead
65 *
66 * Drops the reference out on @em by one and free the structure
67 * if the reference count hits zero.
68 */
Chris Masona52d9a82007-08-27 16:49:44 -040069void free_extent_map(struct extent_map *em)
70{
Chris Mason2bf5a722007-08-30 11:54:02 -040071 if (!em)
72 return;
Chris Masond1310b22008-01-24 16:13:08 -050073 WARN_ON(atomic_read(&em->refs) == 0);
Chris Masona52d9a82007-08-27 16:49:44 -040074 if (atomic_dec_and_test(&em->refs)) {
75 WARN_ON(em->in_tree);
76 kmem_cache_free(extent_map_cache, em);
77 }
78}
Chris Masona52d9a82007-08-27 16:49:44 -040079
Chris Masona52d9a82007-08-27 16:49:44 -040080static struct rb_node *tree_insert(struct rb_root *root, u64 offset,
81 struct rb_node *node)
82{
Chris Masond3977122009-01-05 21:25:51 -050083 struct rb_node **p = &root->rb_node;
84 struct rb_node *parent = NULL;
Chris Masond1310b22008-01-24 16:13:08 -050085 struct extent_map *entry;
Chris Masona52d9a82007-08-27 16:49:44 -040086
Chris Masond3977122009-01-05 21:25:51 -050087 while (*p) {
Chris Masona52d9a82007-08-27 16:49:44 -040088 parent = *p;
Chris Masond1310b22008-01-24 16:13:08 -050089 entry = rb_entry(parent, struct extent_map, rb_node);
90
91 WARN_ON(!entry->in_tree);
Chris Masona52d9a82007-08-27 16:49:44 -040092
93 if (offset < entry->start)
94 p = &(*p)->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -050095 else if (offset >= extent_map_end(entry))
Chris Masona52d9a82007-08-27 16:49:44 -040096 p = &(*p)->rb_right;
97 else
98 return parent;
99 }
100
Chris Masond1310b22008-01-24 16:13:08 -0500101 entry = rb_entry(node, struct extent_map, rb_node);
Chris Masona52d9a82007-08-27 16:49:44 -0400102 entry->in_tree = 1;
103 rb_link_node(node, parent, p);
104 rb_insert_color(node, root);
105 return NULL;
106}
107
Chris Masond352ac62008-09-29 15:18:18 -0400108/*
109 * search through the tree for an extent_map with a given offset. If
110 * it can't be found, try to find some neighboring extents
111 */
Chris Masona52d9a82007-08-27 16:49:44 -0400112static struct rb_node *__tree_search(struct rb_root *root, u64 offset,
Chris Mason5f564062008-01-22 16:47:59 -0500113 struct rb_node **prev_ret,
114 struct rb_node **next_ret)
Chris Masona52d9a82007-08-27 16:49:44 -0400115{
Chris Masond3977122009-01-05 21:25:51 -0500116 struct rb_node *n = root->rb_node;
Chris Masona52d9a82007-08-27 16:49:44 -0400117 struct rb_node *prev = NULL;
Chris Mason5f564062008-01-22 16:47:59 -0500118 struct rb_node *orig_prev = NULL;
Chris Masond1310b22008-01-24 16:13:08 -0500119 struct extent_map *entry;
120 struct extent_map *prev_entry = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400121
Chris Masond3977122009-01-05 21:25:51 -0500122 while (n) {
Chris Masond1310b22008-01-24 16:13:08 -0500123 entry = rb_entry(n, struct extent_map, rb_node);
Chris Masona52d9a82007-08-27 16:49:44 -0400124 prev = n;
125 prev_entry = entry;
126
Chris Masond1310b22008-01-24 16:13:08 -0500127 WARN_ON(!entry->in_tree);
128
Chris Masona52d9a82007-08-27 16:49:44 -0400129 if (offset < entry->start)
130 n = n->rb_left;
Chris Masond1310b22008-01-24 16:13:08 -0500131 else if (offset >= extent_map_end(entry))
Chris Masona52d9a82007-08-27 16:49:44 -0400132 n = n->rb_right;
133 else
134 return n;
135 }
Chris Mason5f564062008-01-22 16:47:59 -0500136
137 if (prev_ret) {
138 orig_prev = prev;
Chris Masond3977122009-01-05 21:25:51 -0500139 while (prev && offset >= extent_map_end(prev_entry)) {
Chris Mason5f564062008-01-22 16:47:59 -0500140 prev = rb_next(prev);
Chris Masond1310b22008-01-24 16:13:08 -0500141 prev_entry = rb_entry(prev, struct extent_map, rb_node);
Chris Mason5f564062008-01-22 16:47:59 -0500142 }
143 *prev_ret = prev;
144 prev = orig_prev;
Chris Masona52d9a82007-08-27 16:49:44 -0400145 }
Chris Mason5f564062008-01-22 16:47:59 -0500146
147 if (next_ret) {
Chris Masond1310b22008-01-24 16:13:08 -0500148 prev_entry = rb_entry(prev, struct extent_map, rb_node);
Chris Masond3977122009-01-05 21:25:51 -0500149 while (prev && offset < prev_entry->start) {
Chris Mason5f564062008-01-22 16:47:59 -0500150 prev = rb_prev(prev);
Chris Masond1310b22008-01-24 16:13:08 -0500151 prev_entry = rb_entry(prev, struct extent_map, rb_node);
Chris Mason5f564062008-01-22 16:47:59 -0500152 }
153 *next_ret = prev;
154 }
Chris Masona52d9a82007-08-27 16:49:44 -0400155 return NULL;
156}
157
Chris Masond352ac62008-09-29 15:18:18 -0400158/* check to see if two extent_map structs are adjacent and safe to merge */
Chris Masond1310b22008-01-24 16:13:08 -0500159static int mergable_maps(struct extent_map *prev, struct extent_map *next)
Chris Masona52d9a82007-08-27 16:49:44 -0400160{
Chris Mason7f3c74f2008-07-18 12:01:11 -0400161 if (test_bit(EXTENT_FLAG_PINNED, &prev->flags))
162 return 0;
163
Chris Masonc8b97812008-10-29 14:49:59 -0400164 /*
165 * don't merge compressed extents, we need to know their
166 * actual size
167 */
168 if (test_bit(EXTENT_FLAG_COMPRESSED, &prev->flags))
169 return 0;
170
Chris Masond1310b22008-01-24 16:13:08 -0500171 if (extent_map_end(prev) == next->start &&
172 prev->flags == next->flags &&
173 prev->bdev == next->bdev &&
174 ((next->block_start == EXTENT_MAP_HOLE &&
175 prev->block_start == EXTENT_MAP_HOLE) ||
176 (next->block_start == EXTENT_MAP_INLINE &&
177 prev->block_start == EXTENT_MAP_INLINE) ||
178 (next->block_start == EXTENT_MAP_DELALLOC &&
179 prev->block_start == EXTENT_MAP_DELALLOC) ||
180 (next->block_start < EXTENT_MAP_LAST_BYTE - 1 &&
181 next->block_start == extent_map_block_end(prev)))) {
182 return 1;
183 }
Chris Masona52d9a82007-08-27 16:49:44 -0400184 return 0;
185}
186
Chris Masona1ed8352009-09-11 12:27:37 -0400187int unpin_extent_cache(struct extent_map_tree *tree, u64 start, u64 len)
188{
189 int ret = 0;
190 struct extent_map *merge = NULL;
191 struct rb_node *rb;
192 struct extent_map *em;
193
194 write_lock(&tree->lock);
195 em = lookup_extent_mapping(tree, start, len);
196
Dan Carpenter4eb39912009-11-10 09:01:43 +0000197 WARN_ON(!em || em->start != start);
Chris Masona1ed8352009-09-11 12:27:37 -0400198
199 if (!em)
200 goto out;
201
202 clear_bit(EXTENT_FLAG_PINNED, &em->flags);
203
204 if (em->start != 0) {
205 rb = rb_prev(&em->rb_node);
206 if (rb)
207 merge = rb_entry(rb, struct extent_map, rb_node);
208 if (rb && mergable_maps(merge, em)) {
209 em->start = merge->start;
210 em->len += merge->len;
211 em->block_len += merge->block_len;
212 em->block_start = merge->block_start;
213 merge->in_tree = 0;
214 rb_erase(&merge->rb_node, &tree->map);
215 free_extent_map(merge);
216 }
217 }
218
219 rb = rb_next(&em->rb_node);
220 if (rb)
221 merge = rb_entry(rb, struct extent_map, rb_node);
222 if (rb && mergable_maps(em, merge)) {
223 em->len += merge->len;
224 em->block_len += merge->len;
225 rb_erase(&merge->rb_node, &tree->map);
226 merge->in_tree = 0;
227 free_extent_map(merge);
228 }
229
230 free_extent_map(em);
231out:
232 write_unlock(&tree->lock);
233 return ret;
234
235}
236
Christoph Hellwig9d2423c2008-06-11 21:52:17 -0400237/**
238 * add_extent_mapping - add new extent map to the extent tree
239 * @tree: tree to insert new map in
240 * @em: map to insert
241 *
242 * Insert @em into @tree or perform a simple forward/backward merge with
243 * existing mappings. The extent_map struct passed in will be inserted
244 * into the tree directly, with an additional reference taken, or a
245 * reference dropped if the merge attempt was sucessfull.
Chris Masona52d9a82007-08-27 16:49:44 -0400246 */
247int add_extent_mapping(struct extent_map_tree *tree,
248 struct extent_map *em)
249{
250 int ret = 0;
Chris Masond1310b22008-01-24 16:13:08 -0500251 struct extent_map *merge = NULL;
Chris Masona52d9a82007-08-27 16:49:44 -0400252 struct rb_node *rb;
Chris Mason7c2fe322008-08-20 08:51:50 -0400253 struct extent_map *exist;
Chris Masona52d9a82007-08-27 16:49:44 -0400254
Chris Mason7c2fe322008-08-20 08:51:50 -0400255 exist = lookup_extent_mapping(tree, em->start, em->len);
256 if (exist) {
257 free_extent_map(exist);
258 ret = -EEXIST;
259 goto out;
260 }
Chris Masond1310b22008-01-24 16:13:08 -0500261 rb = tree_insert(&tree->map, em->start, &em->rb_node);
Chris Masona52d9a82007-08-27 16:49:44 -0400262 if (rb) {
Chris Masona52d9a82007-08-27 16:49:44 -0400263 ret = -EEXIST;
264 goto out;
265 }
266 atomic_inc(&em->refs);
267 if (em->start != 0) {
268 rb = rb_prev(&em->rb_node);
269 if (rb)
Chris Masond1310b22008-01-24 16:13:08 -0500270 merge = rb_entry(rb, struct extent_map, rb_node);
271 if (rb && mergable_maps(merge, em)) {
272 em->start = merge->start;
273 em->len += merge->len;
Chris Masonc8b97812008-10-29 14:49:59 -0400274 em->block_len += merge->block_len;
Chris Masond1310b22008-01-24 16:13:08 -0500275 em->block_start = merge->block_start;
276 merge->in_tree = 0;
277 rb_erase(&merge->rb_node, &tree->map);
278 free_extent_map(merge);
Chris Masona52d9a82007-08-27 16:49:44 -0400279 }
280 }
Chris Masond1310b22008-01-24 16:13:08 -0500281 rb = rb_next(&em->rb_node);
282 if (rb)
283 merge = rb_entry(rb, struct extent_map, rb_node);
284 if (rb && mergable_maps(em, merge)) {
285 em->len += merge->len;
Chris Masonc8b97812008-10-29 14:49:59 -0400286 em->block_len += merge->len;
Chris Masond1310b22008-01-24 16:13:08 -0500287 rb_erase(&merge->rb_node, &tree->map);
288 merge->in_tree = 0;
289 free_extent_map(merge);
290 }
Chris Masona52d9a82007-08-27 16:49:44 -0400291out:
Chris Masona52d9a82007-08-27 16:49:44 -0400292 return ret;
293}
Chris Masona52d9a82007-08-27 16:49:44 -0400294
Chris Masond352ac62008-09-29 15:18:18 -0400295/* simple helper to do math around the end of an extent, handling wrap */
Chris Masond1310b22008-01-24 16:13:08 -0500296static u64 range_end(u64 start, u64 len)
297{
298 if (start + len < start)
299 return (u64)-1;
300 return start + len;
301}
302
Christoph Hellwig9d2423c2008-06-11 21:52:17 -0400303/**
304 * lookup_extent_mapping - lookup extent_map
305 * @tree: tree to lookup in
306 * @start: byte offset to start the search
307 * @len: length of the lookup range
308 *
309 * Find and return the first extent_map struct in @tree that intersects the
310 * [start, len] range. There may be additional objects in the tree that
311 * intersect, so check the object returned carefully to make sure that no
312 * additional lookups are needed.
Chris Masona52d9a82007-08-27 16:49:44 -0400313 */
314struct extent_map *lookup_extent_mapping(struct extent_map_tree *tree,
Chris Masond1310b22008-01-24 16:13:08 -0500315 u64 start, u64 len)
Chris Masona52d9a82007-08-27 16:49:44 -0400316{
317 struct extent_map *em;
318 struct rb_node *rb_node;
Christoph Hellwig306929f2008-06-10 10:21:04 -0400319 struct rb_node *prev = NULL;
320 struct rb_node *next = NULL;
321 u64 end = range_end(start, len);
322
Chris Mason5f564062008-01-22 16:47:59 -0500323 rb_node = __tree_search(&tree->map, start, &prev, &next);
324 if (!rb_node && prev) {
325 em = rb_entry(prev, struct extent_map, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500326 if (end > em->start && start < extent_map_end(em))
Chris Mason5f564062008-01-22 16:47:59 -0500327 goto found;
328 }
329 if (!rb_node && next) {
330 em = rb_entry(next, struct extent_map, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500331 if (end > em->start && start < extent_map_end(em))
Chris Mason5f564062008-01-22 16:47:59 -0500332 goto found;
333 }
Chris Masona52d9a82007-08-27 16:49:44 -0400334 if (!rb_node) {
335 em = NULL;
336 goto out;
337 }
338 if (IS_ERR(rb_node)) {
339 em = ERR_PTR(PTR_ERR(rb_node));
340 goto out;
341 }
342 em = rb_entry(rb_node, struct extent_map, rb_node);
Chris Masond1310b22008-01-24 16:13:08 -0500343 if (end > em->start && start < extent_map_end(em))
344 goto found;
345
346 em = NULL;
347 goto out;
348
Chris Mason5f564062008-01-22 16:47:59 -0500349found:
Chris Masona52d9a82007-08-27 16:49:44 -0400350 atomic_inc(&em->refs);
351out:
Chris Masona52d9a82007-08-27 16:49:44 -0400352 return em;
353}
Chris Masona52d9a82007-08-27 16:49:44 -0400354
Christoph Hellwig9d2423c2008-06-11 21:52:17 -0400355/**
Chris Masonb917b7c2009-09-18 16:07:03 -0400356 * search_extent_mapping - find a nearby extent map
357 * @tree: tree to lookup in
358 * @start: byte offset to start the search
359 * @len: length of the lookup range
360 *
361 * Find and return the first extent_map struct in @tree that intersects the
362 * [start, len] range.
363 *
364 * If one can't be found, any nearby extent may be returned
365 */
366struct extent_map *search_extent_mapping(struct extent_map_tree *tree,
367 u64 start, u64 len)
368{
369 struct extent_map *em;
370 struct rb_node *rb_node;
371 struct rb_node *prev = NULL;
372 struct rb_node *next = NULL;
373
374 rb_node = __tree_search(&tree->map, start, &prev, &next);
375 if (!rb_node && prev) {
376 em = rb_entry(prev, struct extent_map, rb_node);
377 goto found;
378 }
379 if (!rb_node && next) {
380 em = rb_entry(next, struct extent_map, rb_node);
381 goto found;
382 }
383 if (!rb_node) {
384 em = NULL;
385 goto out;
386 }
387 if (IS_ERR(rb_node)) {
388 em = ERR_PTR(PTR_ERR(rb_node));
389 goto out;
390 }
391 em = rb_entry(rb_node, struct extent_map, rb_node);
392 goto found;
393
394 em = NULL;
395 goto out;
396
397found:
398 atomic_inc(&em->refs);
399out:
400 return em;
401}
402
403/**
Christoph Hellwig9d2423c2008-06-11 21:52:17 -0400404 * remove_extent_mapping - removes an extent_map from the extent tree
405 * @tree: extent tree to remove from
406 * @em: extent map beeing removed
407 *
408 * Removes @em from @tree. No reference counts are dropped, and no checks
409 * are done to see if the range is in use
Chris Masona52d9a82007-08-27 16:49:44 -0400410 */
411int remove_extent_mapping(struct extent_map_tree *tree, struct extent_map *em)
412{
Chris Masond1310b22008-01-24 16:13:08 -0500413 int ret = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400414
Chris Mason7f3c74f2008-07-18 12:01:11 -0400415 WARN_ON(test_bit(EXTENT_FLAG_PINNED, &em->flags));
Chris Masond1310b22008-01-24 16:13:08 -0500416 rb_erase(&em->rb_node, &tree->map);
417 em->in_tree = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400418 return ret;
419}