blob: a945374993f7d54a4768a92e25fb2ff2054b22a2 [file] [log] [blame]
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001/*
2 * Copyright (C) 2009 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19#include <linux/sched.h>
20#include <linux/pagemap.h>
21#include <linux/writeback.h>
22#include <linux/blkdev.h>
23#include <linux/rbtree.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Yan Zheng5d4f98a2009-06-10 10:45:14 -040025#include "ctree.h"
26#include "disk-io.h"
27#include "transaction.h"
28#include "volumes.h"
29#include "locking.h"
30#include "btrfs_inode.h"
31#include "async-thread.h"
Josef Bacik0af3d002010-06-21 14:48:16 -040032#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080033#include "inode-map.h"
Yan Zheng5d4f98a2009-06-10 10:45:14 -040034
35/*
36 * backref_node, mapping_node and tree_block start with this
37 */
38struct tree_entry {
39 struct rb_node rb_node;
40 u64 bytenr;
41};
42
43/*
44 * present a tree block in the backref cache
45 */
46struct backref_node {
47 struct rb_node rb_node;
48 u64 bytenr;
Yan, Zheng3fd0a552010-05-16 10:49:59 -040049
50 u64 new_bytenr;
51 /* objectid of tree block owner, can be not uptodate */
Yan Zheng5d4f98a2009-06-10 10:45:14 -040052 u64 owner;
Yan, Zheng3fd0a552010-05-16 10:49:59 -040053 /* link to pending, changed or detached list */
54 struct list_head list;
Yan Zheng5d4f98a2009-06-10 10:45:14 -040055 /* list of upper level blocks reference this block */
56 struct list_head upper;
57 /* list of child blocks in the cache */
58 struct list_head lower;
59 /* NULL if this node is not tree root */
60 struct btrfs_root *root;
61 /* extent buffer got by COW the block */
62 struct extent_buffer *eb;
63 /* level of tree block */
64 unsigned int level:8;
Yan, Zheng3fd0a552010-05-16 10:49:59 -040065 /* is the block in non-reference counted tree */
66 unsigned int cowonly:1;
67 /* 1 if no child node in the cache */
Yan Zheng5d4f98a2009-06-10 10:45:14 -040068 unsigned int lowest:1;
69 /* is the extent buffer locked */
70 unsigned int locked:1;
71 /* has the block been processed */
72 unsigned int processed:1;
73 /* have backrefs of this block been checked */
74 unsigned int checked:1;
Yan, Zheng3fd0a552010-05-16 10:49:59 -040075 /*
76 * 1 if corresponding block has been cowed but some upper
77 * level block pointers may not point to the new location
78 */
79 unsigned int pending:1;
80 /*
81 * 1 if the backref node isn't connected to any other
82 * backref node.
83 */
84 unsigned int detached:1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -040085};
86
87/*
88 * present a block pointer in the backref cache
89 */
90struct backref_edge {
91 struct list_head list[2];
92 struct backref_node *node[2];
Yan Zheng5d4f98a2009-06-10 10:45:14 -040093};
94
95#define LOWER 0
96#define UPPER 1
97
98struct backref_cache {
99 /* red black tree of all backref nodes in the cache */
100 struct rb_root rb_root;
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400101 /* for passing backref nodes to btrfs_reloc_cow_block */
102 struct backref_node *path[BTRFS_MAX_LEVEL];
103 /*
104 * list of blocks that have been cowed but some block
105 * pointers in upper level blocks may not reflect the
106 * new location
107 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400108 struct list_head pending[BTRFS_MAX_LEVEL];
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400109 /* list of backref nodes with no child node */
110 struct list_head leaves;
111 /* list of blocks that have been cowed in current transaction */
112 struct list_head changed;
113 /* list of detached backref node. */
114 struct list_head detached;
115
116 u64 last_trans;
117
118 int nr_nodes;
119 int nr_edges;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400120};
121
122/*
123 * map address of tree root to tree
124 */
125struct mapping_node {
126 struct rb_node rb_node;
127 u64 bytenr;
128 void *data;
129};
130
131struct mapping_tree {
132 struct rb_root rb_root;
133 spinlock_t lock;
134};
135
136/*
137 * present a tree block to process
138 */
139struct tree_block {
140 struct rb_node rb_node;
141 u64 bytenr;
142 struct btrfs_key key;
143 unsigned int level:8;
144 unsigned int key_ready:1;
145};
146
Yan, Zheng0257bb82009-09-24 09:17:31 -0400147#define MAX_EXTENTS 128
148
149struct file_extent_cluster {
150 u64 start;
151 u64 end;
152 u64 boundary[MAX_EXTENTS];
153 unsigned int nr;
154};
155
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400156struct reloc_control {
157 /* block group to relocate */
158 struct btrfs_block_group_cache *block_group;
159 /* extent tree */
160 struct btrfs_root *extent_root;
161 /* inode for moving data */
162 struct inode *data_inode;
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400163
164 struct btrfs_block_rsv *block_rsv;
165
166 struct backref_cache backref_cache;
167
168 struct file_extent_cluster cluster;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400169 /* tree blocks have been processed */
170 struct extent_io_tree processed_blocks;
171 /* map start of tree root to corresponding reloc tree */
172 struct mapping_tree reloc_root_tree;
173 /* list of reloc trees */
174 struct list_head reloc_roots;
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400175 /* size of metadata reservation for merging reloc trees */
176 u64 merging_rsv_size;
177 /* size of relocated tree nodes */
178 u64 nodes_relocated;
179
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400180 u64 search_start;
181 u64 extents_found;
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400182
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400183 unsigned int stage:8;
184 unsigned int create_reloc_tree:1;
185 unsigned int merge_reloc_tree:1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400186 unsigned int found_file_extent:1;
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400187 unsigned int commit_transaction:1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400188};
189
190/* stages of data relocation */
191#define MOVE_DATA_EXTENTS 0
192#define UPDATE_DATA_PTRS 1
193
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400194static void remove_backref_node(struct backref_cache *cache,
195 struct backref_node *node);
196static void __mark_block_processed(struct reloc_control *rc,
197 struct backref_node *node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400198
199static void mapping_tree_init(struct mapping_tree *tree)
200{
Eric Paris6bef4d32010-02-23 19:43:04 +0000201 tree->rb_root = RB_ROOT;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400202 spin_lock_init(&tree->lock);
203}
204
205static void backref_cache_init(struct backref_cache *cache)
206{
207 int i;
Eric Paris6bef4d32010-02-23 19:43:04 +0000208 cache->rb_root = RB_ROOT;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400209 for (i = 0; i < BTRFS_MAX_LEVEL; i++)
210 INIT_LIST_HEAD(&cache->pending[i]);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400211 INIT_LIST_HEAD(&cache->changed);
212 INIT_LIST_HEAD(&cache->detached);
213 INIT_LIST_HEAD(&cache->leaves);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400214}
215
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400216static void backref_cache_cleanup(struct backref_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400217{
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400218 struct backref_node *node;
219 int i;
220
221 while (!list_empty(&cache->detached)) {
222 node = list_entry(cache->detached.next,
223 struct backref_node, list);
224 remove_backref_node(cache, node);
225 }
226
227 while (!list_empty(&cache->leaves)) {
228 node = list_entry(cache->leaves.next,
229 struct backref_node, lower);
230 remove_backref_node(cache, node);
231 }
232
233 cache->last_trans = 0;
234
235 for (i = 0; i < BTRFS_MAX_LEVEL; i++)
236 BUG_ON(!list_empty(&cache->pending[i]));
237 BUG_ON(!list_empty(&cache->changed));
238 BUG_ON(!list_empty(&cache->detached));
239 BUG_ON(!RB_EMPTY_ROOT(&cache->rb_root));
240 BUG_ON(cache->nr_nodes);
241 BUG_ON(cache->nr_edges);
242}
243
244static struct backref_node *alloc_backref_node(struct backref_cache *cache)
245{
246 struct backref_node *node;
247
248 node = kzalloc(sizeof(*node), GFP_NOFS);
249 if (node) {
250 INIT_LIST_HEAD(&node->list);
251 INIT_LIST_HEAD(&node->upper);
252 INIT_LIST_HEAD(&node->lower);
253 RB_CLEAR_NODE(&node->rb_node);
254 cache->nr_nodes++;
255 }
256 return node;
257}
258
259static void free_backref_node(struct backref_cache *cache,
260 struct backref_node *node)
261{
262 if (node) {
263 cache->nr_nodes--;
264 kfree(node);
265 }
266}
267
268static struct backref_edge *alloc_backref_edge(struct backref_cache *cache)
269{
270 struct backref_edge *edge;
271
272 edge = kzalloc(sizeof(*edge), GFP_NOFS);
273 if (edge)
274 cache->nr_edges++;
275 return edge;
276}
277
278static void free_backref_edge(struct backref_cache *cache,
279 struct backref_edge *edge)
280{
281 if (edge) {
282 cache->nr_edges--;
283 kfree(edge);
284 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400285}
286
287static struct rb_node *tree_insert(struct rb_root *root, u64 bytenr,
288 struct rb_node *node)
289{
290 struct rb_node **p = &root->rb_node;
291 struct rb_node *parent = NULL;
292 struct tree_entry *entry;
293
294 while (*p) {
295 parent = *p;
296 entry = rb_entry(parent, struct tree_entry, rb_node);
297
298 if (bytenr < entry->bytenr)
299 p = &(*p)->rb_left;
300 else if (bytenr > entry->bytenr)
301 p = &(*p)->rb_right;
302 else
303 return parent;
304 }
305
306 rb_link_node(node, parent, p);
307 rb_insert_color(node, root);
308 return NULL;
309}
310
311static struct rb_node *tree_search(struct rb_root *root, u64 bytenr)
312{
313 struct rb_node *n = root->rb_node;
314 struct tree_entry *entry;
315
316 while (n) {
317 entry = rb_entry(n, struct tree_entry, rb_node);
318
319 if (bytenr < entry->bytenr)
320 n = n->rb_left;
321 else if (bytenr > entry->bytenr)
322 n = n->rb_right;
323 else
324 return n;
325 }
326 return NULL;
327}
328
Eric Sandeen48a3b632013-04-25 20:41:01 +0000329static void backref_tree_panic(struct rb_node *rb_node, int errno, u64 bytenr)
Jeff Mahoney43c04fb2011-10-03 23:22:33 -0400330{
331
332 struct btrfs_fs_info *fs_info = NULL;
333 struct backref_node *bnode = rb_entry(rb_node, struct backref_node,
334 rb_node);
335 if (bnode->root)
336 fs_info = bnode->root->fs_info;
337 btrfs_panic(fs_info, errno, "Inconsistency in backref cache "
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200338 "found at offset %llu\n", bytenr);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -0400339}
340
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400341/*
342 * walk up backref nodes until reach node presents tree root
343 */
344static struct backref_node *walk_up_backref(struct backref_node *node,
345 struct backref_edge *edges[],
346 int *index)
347{
348 struct backref_edge *edge;
349 int idx = *index;
350
351 while (!list_empty(&node->upper)) {
352 edge = list_entry(node->upper.next,
353 struct backref_edge, list[LOWER]);
354 edges[idx++] = edge;
355 node = edge->node[UPPER];
356 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400357 BUG_ON(node->detached);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400358 *index = idx;
359 return node;
360}
361
362/*
363 * walk down backref nodes to find start of next reference path
364 */
365static struct backref_node *walk_down_backref(struct backref_edge *edges[],
366 int *index)
367{
368 struct backref_edge *edge;
369 struct backref_node *lower;
370 int idx = *index;
371
372 while (idx > 0) {
373 edge = edges[idx - 1];
374 lower = edge->node[LOWER];
375 if (list_is_last(&edge->list[LOWER], &lower->upper)) {
376 idx--;
377 continue;
378 }
379 edge = list_entry(edge->list[LOWER].next,
380 struct backref_edge, list[LOWER]);
381 edges[idx - 1] = edge;
382 *index = idx;
383 return edge->node[UPPER];
384 }
385 *index = 0;
386 return NULL;
387}
388
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400389static void unlock_node_buffer(struct backref_node *node)
390{
391 if (node->locked) {
392 btrfs_tree_unlock(node->eb);
393 node->locked = 0;
394 }
395}
396
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400397static void drop_node_buffer(struct backref_node *node)
398{
399 if (node->eb) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400400 unlock_node_buffer(node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400401 free_extent_buffer(node->eb);
402 node->eb = NULL;
403 }
404}
405
406static void drop_backref_node(struct backref_cache *tree,
407 struct backref_node *node)
408{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400409 BUG_ON(!list_empty(&node->upper));
410
411 drop_node_buffer(node);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400412 list_del(&node->list);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400413 list_del(&node->lower);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400414 if (!RB_EMPTY_NODE(&node->rb_node))
415 rb_erase(&node->rb_node, &tree->rb_root);
416 free_backref_node(tree, node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400417}
418
419/*
420 * remove a backref node from the backref cache
421 */
422static void remove_backref_node(struct backref_cache *cache,
423 struct backref_node *node)
424{
425 struct backref_node *upper;
426 struct backref_edge *edge;
427
428 if (!node)
429 return;
430
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400431 BUG_ON(!node->lowest && !node->detached);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400432 while (!list_empty(&node->upper)) {
433 edge = list_entry(node->upper.next, struct backref_edge,
434 list[LOWER]);
435 upper = edge->node[UPPER];
436 list_del(&edge->list[LOWER]);
437 list_del(&edge->list[UPPER]);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400438 free_backref_edge(cache, edge);
439
440 if (RB_EMPTY_NODE(&upper->rb_node)) {
441 BUG_ON(!list_empty(&node->upper));
442 drop_backref_node(cache, node);
443 node = upper;
444 node->lowest = 1;
445 continue;
446 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400447 /*
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400448 * add the node to leaf node list if no other
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400449 * child block cached.
450 */
451 if (list_empty(&upper->lower)) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400452 list_add_tail(&upper->lower, &cache->leaves);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400453 upper->lowest = 1;
454 }
455 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400456
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400457 drop_backref_node(cache, node);
458}
459
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400460static void update_backref_node(struct backref_cache *cache,
461 struct backref_node *node, u64 bytenr)
462{
463 struct rb_node *rb_node;
464 rb_erase(&node->rb_node, &cache->rb_root);
465 node->bytenr = bytenr;
466 rb_node = tree_insert(&cache->rb_root, node->bytenr, &node->rb_node);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -0400467 if (rb_node)
468 backref_tree_panic(rb_node, -EEXIST, bytenr);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400469}
470
471/*
472 * update backref cache after a transaction commit
473 */
474static int update_backref_cache(struct btrfs_trans_handle *trans,
475 struct backref_cache *cache)
476{
477 struct backref_node *node;
478 int level = 0;
479
480 if (cache->last_trans == 0) {
481 cache->last_trans = trans->transid;
482 return 0;
483 }
484
485 if (cache->last_trans == trans->transid)
486 return 0;
487
488 /*
489 * detached nodes are used to avoid unnecessary backref
490 * lookup. transaction commit changes the extent tree.
491 * so the detached nodes are no longer useful.
492 */
493 while (!list_empty(&cache->detached)) {
494 node = list_entry(cache->detached.next,
495 struct backref_node, list);
496 remove_backref_node(cache, node);
497 }
498
499 while (!list_empty(&cache->changed)) {
500 node = list_entry(cache->changed.next,
501 struct backref_node, list);
502 list_del_init(&node->list);
503 BUG_ON(node->pending);
504 update_backref_node(cache, node, node->new_bytenr);
505 }
506
507 /*
508 * some nodes can be left in the pending list if there were
509 * errors during processing the pending nodes.
510 */
511 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
512 list_for_each_entry(node, &cache->pending[level], list) {
513 BUG_ON(!node->pending);
514 if (node->bytenr == node->new_bytenr)
515 continue;
516 update_backref_node(cache, node, node->new_bytenr);
517 }
518 }
519
520 cache->last_trans = 0;
521 return 1;
522}
523
David Sterbaf2a97a92011-05-05 12:44:41 +0200524
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400525static int should_ignore_root(struct btrfs_root *root)
526{
527 struct btrfs_root *reloc_root;
528
529 if (!root->ref_cows)
530 return 0;
531
532 reloc_root = root->reloc_root;
533 if (!reloc_root)
534 return 0;
535
536 if (btrfs_root_last_snapshot(&reloc_root->root_item) ==
537 root->fs_info->running_transaction->transid - 1)
538 return 0;
539 /*
540 * if there is reloc tree and it was created in previous
541 * transaction backref lookup can find the reloc tree,
542 * so backref node for the fs tree root is useless for
543 * relocation.
544 */
545 return 1;
546}
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400547/*
548 * find reloc tree by address of tree root
549 */
550static struct btrfs_root *find_reloc_root(struct reloc_control *rc,
551 u64 bytenr)
552{
553 struct rb_node *rb_node;
554 struct mapping_node *node;
555 struct btrfs_root *root = NULL;
556
557 spin_lock(&rc->reloc_root_tree.lock);
558 rb_node = tree_search(&rc->reloc_root_tree.rb_root, bytenr);
559 if (rb_node) {
560 node = rb_entry(rb_node, struct mapping_node, rb_node);
561 root = (struct btrfs_root *)node->data;
562 }
563 spin_unlock(&rc->reloc_root_tree.lock);
564 return root;
565}
566
567static int is_cowonly_root(u64 root_objectid)
568{
569 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID ||
570 root_objectid == BTRFS_EXTENT_TREE_OBJECTID ||
571 root_objectid == BTRFS_CHUNK_TREE_OBJECTID ||
572 root_objectid == BTRFS_DEV_TREE_OBJECTID ||
573 root_objectid == BTRFS_TREE_LOG_OBJECTID ||
574 root_objectid == BTRFS_CSUM_TREE_OBJECTID)
575 return 1;
576 return 0;
577}
578
579static struct btrfs_root *read_fs_root(struct btrfs_fs_info *fs_info,
580 u64 root_objectid)
581{
582 struct btrfs_key key;
583
584 key.objectid = root_objectid;
585 key.type = BTRFS_ROOT_ITEM_KEY;
586 if (is_cowonly_root(root_objectid))
587 key.offset = 0;
588 else
589 key.offset = (u64)-1;
590
Miao Xiec00869f2013-09-25 21:47:44 +0800591 return btrfs_get_fs_root(fs_info, &key, false);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400592}
593
594#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
595static noinline_for_stack
596struct btrfs_root *find_tree_root(struct reloc_control *rc,
597 struct extent_buffer *leaf,
598 struct btrfs_extent_ref_v0 *ref0)
599{
600 struct btrfs_root *root;
601 u64 root_objectid = btrfs_ref_root_v0(leaf, ref0);
602 u64 generation = btrfs_ref_generation_v0(leaf, ref0);
603
604 BUG_ON(root_objectid == BTRFS_TREE_RELOC_OBJECTID);
605
606 root = read_fs_root(rc->extent_root->fs_info, root_objectid);
607 BUG_ON(IS_ERR(root));
608
609 if (root->ref_cows &&
610 generation != btrfs_root_generation(&root->root_item))
611 return NULL;
612
613 return root;
614}
615#endif
616
617static noinline_for_stack
618int find_inline_backref(struct extent_buffer *leaf, int slot,
619 unsigned long *ptr, unsigned long *end)
620{
Josef Bacik3173a182013-03-07 14:22:04 -0500621 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400622 struct btrfs_extent_item *ei;
623 struct btrfs_tree_block_info *bi;
624 u32 item_size;
625
Josef Bacik3173a182013-03-07 14:22:04 -0500626 btrfs_item_key_to_cpu(leaf, &key, slot);
627
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400628 item_size = btrfs_item_size_nr(leaf, slot);
629#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
630 if (item_size < sizeof(*ei)) {
631 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
632 return 1;
633 }
634#endif
635 ei = btrfs_item_ptr(leaf, slot, struct btrfs_extent_item);
636 WARN_ON(!(btrfs_extent_flags(leaf, ei) &
637 BTRFS_EXTENT_FLAG_TREE_BLOCK));
638
Josef Bacik3173a182013-03-07 14:22:04 -0500639 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
640 item_size <= sizeof(*ei) + sizeof(*bi)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400641 WARN_ON(item_size < sizeof(*ei) + sizeof(*bi));
642 return 1;
643 }
Josef Bacikd062d132013-07-30 15:44:09 -0400644 if (key.type == BTRFS_METADATA_ITEM_KEY &&
645 item_size <= sizeof(*ei)) {
646 WARN_ON(item_size < sizeof(*ei));
647 return 1;
648 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400649
Josef Bacik3173a182013-03-07 14:22:04 -0500650 if (key.type == BTRFS_EXTENT_ITEM_KEY) {
651 bi = (struct btrfs_tree_block_info *)(ei + 1);
652 *ptr = (unsigned long)(bi + 1);
653 } else {
654 *ptr = (unsigned long)(ei + 1);
655 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400656 *end = (unsigned long)ei + item_size;
657 return 0;
658}
659
660/*
661 * build backref tree for a given tree block. root of the backref tree
662 * corresponds the tree block, leaves of the backref tree correspond
663 * roots of b-trees that reference the tree block.
664 *
665 * the basic idea of this function is check backrefs of a given block
666 * to find upper level blocks that refernece the block, and then check
667 * bakcrefs of these upper level blocks recursively. the recursion stop
668 * when tree root is reached or backrefs for the block is cached.
669 *
670 * NOTE: if we find backrefs for a block are cached, we know backrefs
671 * for all upper level blocks that directly/indirectly reference the
672 * block are also cached.
673 */
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400674static noinline_for_stack
675struct backref_node *build_backref_tree(struct reloc_control *rc,
676 struct btrfs_key *node_key,
677 int level, u64 bytenr)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400678{
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400679 struct backref_cache *cache = &rc->backref_cache;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400680 struct btrfs_path *path1;
681 struct btrfs_path *path2;
682 struct extent_buffer *eb;
683 struct btrfs_root *root;
684 struct backref_node *cur;
685 struct backref_node *upper;
686 struct backref_node *lower;
687 struct backref_node *node = NULL;
688 struct backref_node *exist = NULL;
689 struct backref_edge *edge;
690 struct rb_node *rb_node;
691 struct btrfs_key key;
692 unsigned long end;
693 unsigned long ptr;
694 LIST_HEAD(list);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400695 LIST_HEAD(useless);
696 int cowonly;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400697 int ret;
698 int err = 0;
Josef Bacikb6c60c82013-07-30 16:30:30 -0400699 bool need_check = true;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400700
701 path1 = btrfs_alloc_path();
702 path2 = btrfs_alloc_path();
703 if (!path1 || !path2) {
704 err = -ENOMEM;
705 goto out;
706 }
Josef Bacik026fd312011-05-13 10:32:11 -0400707 path1->reada = 1;
708 path2->reada = 2;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400709
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400710 node = alloc_backref_node(cache);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400711 if (!node) {
712 err = -ENOMEM;
713 goto out;
714 }
715
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400716 node->bytenr = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400717 node->level = level;
718 node->lowest = 1;
719 cur = node;
720again:
721 end = 0;
722 ptr = 0;
723 key.objectid = cur->bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -0500724 key.type = BTRFS_METADATA_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400725 key.offset = (u64)-1;
726
727 path1->search_commit_root = 1;
728 path1->skip_locking = 1;
729 ret = btrfs_search_slot(NULL, rc->extent_root, &key, path1,
730 0, 0);
731 if (ret < 0) {
732 err = ret;
733 goto out;
734 }
735 BUG_ON(!ret || !path1->slots[0]);
736
737 path1->slots[0]--;
738
739 WARN_ON(cur->checked);
740 if (!list_empty(&cur->upper)) {
741 /*
Justin P. Mattock70f23fd2011-05-10 10:16:21 +0200742 * the backref was added previously when processing
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400743 * backref of type BTRFS_TREE_BLOCK_REF_KEY
744 */
745 BUG_ON(!list_is_singular(&cur->upper));
746 edge = list_entry(cur->upper.next, struct backref_edge,
747 list[LOWER]);
748 BUG_ON(!list_empty(&edge->list[UPPER]));
749 exist = edge->node[UPPER];
750 /*
751 * add the upper level block to pending list if we need
752 * check its backrefs
753 */
754 if (!exist->checked)
755 list_add_tail(&edge->list[UPPER], &list);
756 } else {
757 exist = NULL;
758 }
759
760 while (1) {
761 cond_resched();
762 eb = path1->nodes[0];
763
764 if (ptr >= end) {
765 if (path1->slots[0] >= btrfs_header_nritems(eb)) {
766 ret = btrfs_next_leaf(rc->extent_root, path1);
767 if (ret < 0) {
768 err = ret;
769 goto out;
770 }
771 if (ret > 0)
772 break;
773 eb = path1->nodes[0];
774 }
775
776 btrfs_item_key_to_cpu(eb, &key, path1->slots[0]);
777 if (key.objectid != cur->bytenr) {
778 WARN_ON(exist);
779 break;
780 }
781
Josef Bacik3173a182013-03-07 14:22:04 -0500782 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
783 key.type == BTRFS_METADATA_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400784 ret = find_inline_backref(eb, path1->slots[0],
785 &ptr, &end);
786 if (ret)
787 goto next;
788 }
789 }
790
791 if (ptr < end) {
792 /* update key for inline back ref */
793 struct btrfs_extent_inline_ref *iref;
794 iref = (struct btrfs_extent_inline_ref *)ptr;
795 key.type = btrfs_extent_inline_ref_type(eb, iref);
796 key.offset = btrfs_extent_inline_ref_offset(eb, iref);
797 WARN_ON(key.type != BTRFS_TREE_BLOCK_REF_KEY &&
798 key.type != BTRFS_SHARED_BLOCK_REF_KEY);
799 }
800
801 if (exist &&
802 ((key.type == BTRFS_TREE_BLOCK_REF_KEY &&
803 exist->owner == key.offset) ||
804 (key.type == BTRFS_SHARED_BLOCK_REF_KEY &&
805 exist->bytenr == key.offset))) {
806 exist = NULL;
807 goto next;
808 }
809
810#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
811 if (key.type == BTRFS_SHARED_BLOCK_REF_KEY ||
812 key.type == BTRFS_EXTENT_REF_V0_KEY) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400813 if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400814 struct btrfs_extent_ref_v0 *ref0;
815 ref0 = btrfs_item_ptr(eb, path1->slots[0],
816 struct btrfs_extent_ref_v0);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400817 if (key.objectid == key.offset) {
Yan, Zheng046f2642010-05-31 08:58:47 +0000818 root = find_tree_root(rc, eb, ref0);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400819 if (root && !should_ignore_root(root))
820 cur->root = root;
821 else
822 list_add(&cur->list, &useless);
823 break;
824 }
Yan, Zheng046f2642010-05-31 08:58:47 +0000825 if (is_cowonly_root(btrfs_ref_root_v0(eb,
826 ref0)))
827 cur->cowonly = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400828 }
829#else
830 BUG_ON(key.type == BTRFS_EXTENT_REF_V0_KEY);
831 if (key.type == BTRFS_SHARED_BLOCK_REF_KEY) {
832#endif
833 if (key.objectid == key.offset) {
834 /*
835 * only root blocks of reloc trees use
836 * backref of this type.
837 */
838 root = find_reloc_root(rc, cur->bytenr);
839 BUG_ON(!root);
840 cur->root = root;
841 break;
842 }
843
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400844 edge = alloc_backref_edge(cache);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400845 if (!edge) {
846 err = -ENOMEM;
847 goto out;
848 }
849 rb_node = tree_search(&cache->rb_root, key.offset);
850 if (!rb_node) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400851 upper = alloc_backref_node(cache);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400852 if (!upper) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400853 free_backref_edge(cache, edge);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400854 err = -ENOMEM;
855 goto out;
856 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400857 upper->bytenr = key.offset;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400858 upper->level = cur->level + 1;
859 /*
860 * backrefs for the upper level block isn't
861 * cached, add the block to pending list
862 */
863 list_add_tail(&edge->list[UPPER], &list);
864 } else {
865 upper = rb_entry(rb_node, struct backref_node,
866 rb_node);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400867 BUG_ON(!upper->checked);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400868 INIT_LIST_HEAD(&edge->list[UPPER]);
869 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400870 list_add_tail(&edge->list[LOWER], &cur->upper);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400871 edge->node[LOWER] = cur;
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400872 edge->node[UPPER] = upper;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400873
874 goto next;
875 } else if (key.type != BTRFS_TREE_BLOCK_REF_KEY) {
876 goto next;
877 }
878
879 /* key.type == BTRFS_TREE_BLOCK_REF_KEY */
880 root = read_fs_root(rc->extent_root->fs_info, key.offset);
881 if (IS_ERR(root)) {
882 err = PTR_ERR(root);
883 goto out;
884 }
885
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400886 if (!root->ref_cows)
887 cur->cowonly = 1;
888
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400889 if (btrfs_root_level(&root->root_item) == cur->level) {
890 /* tree root */
891 BUG_ON(btrfs_root_bytenr(&root->root_item) !=
892 cur->bytenr);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400893 if (should_ignore_root(root))
894 list_add(&cur->list, &useless);
895 else
896 cur->root = root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400897 break;
898 }
899
900 level = cur->level + 1;
901
902 /*
903 * searching the tree to find upper level blocks
904 * reference the block.
905 */
906 path2->search_commit_root = 1;
907 path2->skip_locking = 1;
908 path2->lowest_level = level;
909 ret = btrfs_search_slot(NULL, root, node_key, path2, 0, 0);
910 path2->lowest_level = 0;
911 if (ret < 0) {
912 err = ret;
913 goto out;
914 }
Yan Zheng33c66f42009-07-22 09:59:00 -0400915 if (ret > 0 && path2->slots[level] > 0)
916 path2->slots[level]--;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400917
918 eb = path2->nodes[level];
919 WARN_ON(btrfs_node_blockptr(eb, path2->slots[level]) !=
920 cur->bytenr);
921
922 lower = cur;
Josef Bacikb6c60c82013-07-30 16:30:30 -0400923 need_check = true;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400924 for (; level < BTRFS_MAX_LEVEL; level++) {
925 if (!path2->nodes[level]) {
926 BUG_ON(btrfs_root_bytenr(&root->root_item) !=
927 lower->bytenr);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400928 if (should_ignore_root(root))
929 list_add(&lower->list, &useless);
930 else
931 lower->root = root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400932 break;
933 }
934
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400935 edge = alloc_backref_edge(cache);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400936 if (!edge) {
937 err = -ENOMEM;
938 goto out;
939 }
940
941 eb = path2->nodes[level];
942 rb_node = tree_search(&cache->rb_root, eb->start);
943 if (!rb_node) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400944 upper = alloc_backref_node(cache);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400945 if (!upper) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400946 free_backref_edge(cache, edge);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400947 err = -ENOMEM;
948 goto out;
949 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400950 upper->bytenr = eb->start;
951 upper->owner = btrfs_header_owner(eb);
952 upper->level = lower->level + 1;
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400953 if (!root->ref_cows)
954 upper->cowonly = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400955
956 /*
957 * if we know the block isn't shared
958 * we can void checking its backrefs.
959 */
960 if (btrfs_block_can_be_shared(root, eb))
961 upper->checked = 0;
962 else
963 upper->checked = 1;
964
965 /*
966 * add the block to pending list if we
Josef Bacikb6c60c82013-07-30 16:30:30 -0400967 * need check its backrefs, we only do this once
968 * while walking up a tree as we will catch
969 * anything else later on.
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400970 */
Josef Bacikb6c60c82013-07-30 16:30:30 -0400971 if (!upper->checked && need_check) {
972 need_check = false;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400973 list_add_tail(&edge->list[UPPER],
974 &list);
975 } else
976 INIT_LIST_HEAD(&edge->list[UPPER]);
977 } else {
978 upper = rb_entry(rb_node, struct backref_node,
979 rb_node);
980 BUG_ON(!upper->checked);
981 INIT_LIST_HEAD(&edge->list[UPPER]);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400982 if (!upper->owner)
983 upper->owner = btrfs_header_owner(eb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400984 }
985 list_add_tail(&edge->list[LOWER], &lower->upper);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400986 edge->node[LOWER] = lower;
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400987 edge->node[UPPER] = upper;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400988
989 if (rb_node)
990 break;
991 lower = upper;
992 upper = NULL;
993 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200994 btrfs_release_path(path2);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400995next:
996 if (ptr < end) {
997 ptr += btrfs_extent_inline_ref_size(key.type);
998 if (ptr >= end) {
999 WARN_ON(ptr > end);
1000 ptr = 0;
1001 end = 0;
1002 }
1003 }
1004 if (ptr >= end)
1005 path1->slots[0]++;
1006 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001007 btrfs_release_path(path1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001008
1009 cur->checked = 1;
1010 WARN_ON(exist);
1011
1012 /* the pending list isn't empty, take the first block to process */
1013 if (!list_empty(&list)) {
1014 edge = list_entry(list.next, struct backref_edge, list[UPPER]);
1015 list_del_init(&edge->list[UPPER]);
1016 cur = edge->node[UPPER];
1017 goto again;
1018 }
1019
1020 /*
1021 * everything goes well, connect backref nodes and insert backref nodes
1022 * into the cache.
1023 */
1024 BUG_ON(!node->checked);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001025 cowonly = node->cowonly;
1026 if (!cowonly) {
1027 rb_node = tree_insert(&cache->rb_root, node->bytenr,
1028 &node->rb_node);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -04001029 if (rb_node)
1030 backref_tree_panic(rb_node, -EEXIST, node->bytenr);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001031 list_add_tail(&node->lower, &cache->leaves);
1032 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001033
1034 list_for_each_entry(edge, &node->upper, list[LOWER])
1035 list_add_tail(&edge->list[UPPER], &list);
1036
1037 while (!list_empty(&list)) {
1038 edge = list_entry(list.next, struct backref_edge, list[UPPER]);
1039 list_del_init(&edge->list[UPPER]);
1040 upper = edge->node[UPPER];
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001041 if (upper->detached) {
1042 list_del(&edge->list[LOWER]);
1043 lower = edge->node[LOWER];
1044 free_backref_edge(cache, edge);
1045 if (list_empty(&lower->upper))
1046 list_add(&lower->list, &useless);
1047 continue;
1048 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001049
1050 if (!RB_EMPTY_NODE(&upper->rb_node)) {
1051 if (upper->lowest) {
1052 list_del_init(&upper->lower);
1053 upper->lowest = 0;
1054 }
1055
1056 list_add_tail(&edge->list[UPPER], &upper->lower);
1057 continue;
1058 }
1059
1060 BUG_ON(!upper->checked);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001061 BUG_ON(cowonly != upper->cowonly);
1062 if (!cowonly) {
1063 rb_node = tree_insert(&cache->rb_root, upper->bytenr,
1064 &upper->rb_node);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -04001065 if (rb_node)
1066 backref_tree_panic(rb_node, -EEXIST,
1067 upper->bytenr);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001068 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001069
1070 list_add_tail(&edge->list[UPPER], &upper->lower);
1071
1072 list_for_each_entry(edge, &upper->upper, list[LOWER])
1073 list_add_tail(&edge->list[UPPER], &list);
1074 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001075 /*
1076 * process useless backref nodes. backref nodes for tree leaves
1077 * are deleted from the cache. backref nodes for upper level
1078 * tree blocks are left in the cache to avoid unnecessary backref
1079 * lookup.
1080 */
1081 while (!list_empty(&useless)) {
1082 upper = list_entry(useless.next, struct backref_node, list);
1083 list_del_init(&upper->list);
1084 BUG_ON(!list_empty(&upper->upper));
1085 if (upper == node)
1086 node = NULL;
1087 if (upper->lowest) {
1088 list_del_init(&upper->lower);
1089 upper->lowest = 0;
1090 }
1091 while (!list_empty(&upper->lower)) {
1092 edge = list_entry(upper->lower.next,
1093 struct backref_edge, list[UPPER]);
1094 list_del(&edge->list[UPPER]);
1095 list_del(&edge->list[LOWER]);
1096 lower = edge->node[LOWER];
1097 free_backref_edge(cache, edge);
1098
1099 if (list_empty(&lower->upper))
1100 list_add(&lower->list, &useless);
1101 }
1102 __mark_block_processed(rc, upper);
1103 if (upper->level > 0) {
1104 list_add(&upper->list, &cache->detached);
1105 upper->detached = 1;
1106 } else {
1107 rb_erase(&upper->rb_node, &cache->rb_root);
1108 free_backref_node(cache, upper);
1109 }
1110 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001111out:
1112 btrfs_free_path(path1);
1113 btrfs_free_path(path2);
1114 if (err) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001115 while (!list_empty(&useless)) {
1116 lower = list_entry(useless.next,
1117 struct backref_node, upper);
1118 list_del_init(&lower->upper);
1119 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001120 upper = node;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001121 INIT_LIST_HEAD(&list);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001122 while (upper) {
1123 if (RB_EMPTY_NODE(&upper->rb_node)) {
1124 list_splice_tail(&upper->upper, &list);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001125 free_backref_node(cache, upper);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001126 }
1127
1128 if (list_empty(&list))
1129 break;
1130
1131 edge = list_entry(list.next, struct backref_edge,
1132 list[LOWER]);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001133 list_del(&edge->list[LOWER]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001134 upper = edge->node[UPPER];
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001135 free_backref_edge(cache, edge);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001136 }
1137 return ERR_PTR(err);
1138 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001139 BUG_ON(node && node->detached);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001140 return node;
1141}
1142
1143/*
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001144 * helper to add backref node for the newly created snapshot.
1145 * the backref node is created by cloning backref node that
1146 * corresponds to root of source tree
1147 */
1148static int clone_backref_node(struct btrfs_trans_handle *trans,
1149 struct reloc_control *rc,
1150 struct btrfs_root *src,
1151 struct btrfs_root *dest)
1152{
1153 struct btrfs_root *reloc_root = src->reloc_root;
1154 struct backref_cache *cache = &rc->backref_cache;
1155 struct backref_node *node = NULL;
1156 struct backref_node *new_node;
1157 struct backref_edge *edge;
1158 struct backref_edge *new_edge;
1159 struct rb_node *rb_node;
1160
1161 if (cache->last_trans > 0)
1162 update_backref_cache(trans, cache);
1163
1164 rb_node = tree_search(&cache->rb_root, src->commit_root->start);
1165 if (rb_node) {
1166 node = rb_entry(rb_node, struct backref_node, rb_node);
1167 if (node->detached)
1168 node = NULL;
1169 else
1170 BUG_ON(node->new_bytenr != reloc_root->node->start);
1171 }
1172
1173 if (!node) {
1174 rb_node = tree_search(&cache->rb_root,
1175 reloc_root->commit_root->start);
1176 if (rb_node) {
1177 node = rb_entry(rb_node, struct backref_node,
1178 rb_node);
1179 BUG_ON(node->detached);
1180 }
1181 }
1182
1183 if (!node)
1184 return 0;
1185
1186 new_node = alloc_backref_node(cache);
1187 if (!new_node)
1188 return -ENOMEM;
1189
1190 new_node->bytenr = dest->node->start;
1191 new_node->level = node->level;
1192 new_node->lowest = node->lowest;
Yan, Zheng6848ad62011-02-14 16:00:03 -05001193 new_node->checked = 1;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001194 new_node->root = dest;
1195
1196 if (!node->lowest) {
1197 list_for_each_entry(edge, &node->lower, list[UPPER]) {
1198 new_edge = alloc_backref_edge(cache);
1199 if (!new_edge)
1200 goto fail;
1201
1202 new_edge->node[UPPER] = new_node;
1203 new_edge->node[LOWER] = edge->node[LOWER];
1204 list_add_tail(&new_edge->list[UPPER],
1205 &new_node->lower);
1206 }
Miao Xie76b9e232011-11-10 20:45:05 -05001207 } else {
1208 list_add_tail(&new_node->lower, &cache->leaves);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001209 }
1210
1211 rb_node = tree_insert(&cache->rb_root, new_node->bytenr,
1212 &new_node->rb_node);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -04001213 if (rb_node)
1214 backref_tree_panic(rb_node, -EEXIST, new_node->bytenr);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001215
1216 if (!new_node->lowest) {
1217 list_for_each_entry(new_edge, &new_node->lower, list[UPPER]) {
1218 list_add_tail(&new_edge->list[LOWER],
1219 &new_edge->node[LOWER]->upper);
1220 }
1221 }
1222 return 0;
1223fail:
1224 while (!list_empty(&new_node->lower)) {
1225 new_edge = list_entry(new_node->lower.next,
1226 struct backref_edge, list[UPPER]);
1227 list_del(&new_edge->list[UPPER]);
1228 free_backref_edge(cache, new_edge);
1229 }
1230 free_backref_node(cache, new_node);
1231 return -ENOMEM;
1232}
1233
1234/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001235 * helper to add 'address of tree root -> reloc tree' mapping
1236 */
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04001237static int __must_check __add_reloc_root(struct btrfs_root *root)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001238{
1239 struct rb_node *rb_node;
1240 struct mapping_node *node;
1241 struct reloc_control *rc = root->fs_info->reloc_ctl;
1242
1243 node = kmalloc(sizeof(*node), GFP_NOFS);
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04001244 if (!node)
1245 return -ENOMEM;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001246
1247 node->bytenr = root->node->start;
1248 node->data = root;
1249
1250 spin_lock(&rc->reloc_root_tree.lock);
1251 rb_node = tree_insert(&rc->reloc_root_tree.rb_root,
1252 node->bytenr, &node->rb_node);
1253 spin_unlock(&rc->reloc_root_tree.lock);
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04001254 if (rb_node) {
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04001255 btrfs_panic(root->fs_info, -EEXIST, "Duplicate root found "
1256 "for start=%llu while inserting into relocation "
Joe Perches533574c2012-07-30 14:40:13 -07001257 "tree\n", node->bytenr);
Dan Carpenter23291a02012-06-25 05:15:23 -06001258 kfree(node);
1259 return -EEXIST;
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04001260 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001261
1262 list_add_tail(&root->root_list, &rc->reloc_roots);
1263 return 0;
1264}
1265
1266/*
1267 * helper to update/delete the 'address of tree root -> reloc tree'
1268 * mapping
1269 */
1270static int __update_reloc_root(struct btrfs_root *root, int del)
1271{
1272 struct rb_node *rb_node;
1273 struct mapping_node *node = NULL;
1274 struct reloc_control *rc = root->fs_info->reloc_ctl;
1275
1276 spin_lock(&rc->reloc_root_tree.lock);
1277 rb_node = tree_search(&rc->reloc_root_tree.rb_root,
1278 root->commit_root->start);
1279 if (rb_node) {
1280 node = rb_entry(rb_node, struct mapping_node, rb_node);
1281 rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
1282 }
1283 spin_unlock(&rc->reloc_root_tree.lock);
1284
Liu Bo8f71f3e2013-03-04 16:25:36 +00001285 if (!node)
1286 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001287 BUG_ON((struct btrfs_root *)node->data != root);
1288
1289 if (!del) {
1290 spin_lock(&rc->reloc_root_tree.lock);
1291 node->bytenr = root->node->start;
1292 rb_node = tree_insert(&rc->reloc_root_tree.rb_root,
1293 node->bytenr, &node->rb_node);
1294 spin_unlock(&rc->reloc_root_tree.lock);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -04001295 if (rb_node)
1296 backref_tree_panic(rb_node, -EEXIST, node->bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001297 } else {
Daniel J Blueman1daf3542012-04-27 12:41:46 -04001298 spin_lock(&root->fs_info->trans_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001299 list_del_init(&root->root_list);
Daniel J Blueman1daf3542012-04-27 12:41:46 -04001300 spin_unlock(&root->fs_info->trans_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001301 kfree(node);
1302 }
1303 return 0;
1304}
1305
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001306static struct btrfs_root *create_reloc_root(struct btrfs_trans_handle *trans,
1307 struct btrfs_root *root, u64 objectid)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001308{
1309 struct btrfs_root *reloc_root;
1310 struct extent_buffer *eb;
1311 struct btrfs_root_item *root_item;
1312 struct btrfs_key root_key;
Miao Xie5bc72472013-06-06 03:28:03 +00001313 u64 last_snap = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001314 int ret;
1315
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001316 root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
1317 BUG_ON(!root_item);
1318
1319 root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
1320 root_key.type = BTRFS_ROOT_ITEM_KEY;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001321 root_key.offset = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001322
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001323 if (root->root_key.objectid == objectid) {
1324 /* called by btrfs_init_reloc_root */
1325 ret = btrfs_copy_root(trans, root, root->commit_root, &eb,
1326 BTRFS_TREE_RELOC_OBJECTID);
1327 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001328
Miao Xie5bc72472013-06-06 03:28:03 +00001329 last_snap = btrfs_root_last_snapshot(&root->root_item);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001330 btrfs_set_root_last_snapshot(&root->root_item,
1331 trans->transid - 1);
1332 } else {
1333 /*
1334 * called by btrfs_reloc_post_snapshot_hook.
1335 * the source tree is a reloc tree, all tree blocks
1336 * modified after it was created have RELOC flag
1337 * set in their headers. so it's OK to not update
1338 * the 'last_snapshot'.
1339 */
1340 ret = btrfs_copy_root(trans, root, root->node, &eb,
1341 BTRFS_TREE_RELOC_OBJECTID);
1342 BUG_ON(ret);
1343 }
1344
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001345 memcpy(root_item, &root->root_item, sizeof(*root_item));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001346 btrfs_set_root_bytenr(root_item, eb->start);
1347 btrfs_set_root_level(root_item, btrfs_header_level(eb));
1348 btrfs_set_root_generation(root_item, trans->transid);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001349
1350 if (root->root_key.objectid == objectid) {
1351 btrfs_set_root_refs(root_item, 0);
1352 memset(&root_item->drop_progress, 0,
1353 sizeof(struct btrfs_disk_key));
1354 root_item->drop_level = 0;
Miao Xie5bc72472013-06-06 03:28:03 +00001355 /*
1356 * abuse rtransid, it is safe because it is impossible to
1357 * receive data into a relocation tree.
1358 */
1359 btrfs_set_root_rtransid(root_item, last_snap);
1360 btrfs_set_root_otransid(root_item, trans->transid);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001361 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001362
1363 btrfs_tree_unlock(eb);
1364 free_extent_buffer(eb);
1365
1366 ret = btrfs_insert_root(trans, root->fs_info->tree_root,
1367 &root_key, root_item);
1368 BUG_ON(ret);
1369 kfree(root_item);
1370
Miao Xiecb517ea2013-05-15 07:48:19 +00001371 reloc_root = btrfs_read_fs_root(root->fs_info->tree_root, &root_key);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001372 BUG_ON(IS_ERR(reloc_root));
1373 reloc_root->last_trans = trans->transid;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001374 return reloc_root;
1375}
1376
1377/*
1378 * create reloc tree for a given fs tree. reloc tree is just a
1379 * snapshot of the fs tree with special root objectid.
1380 */
1381int btrfs_init_reloc_root(struct btrfs_trans_handle *trans,
1382 struct btrfs_root *root)
1383{
1384 struct btrfs_root *reloc_root;
1385 struct reloc_control *rc = root->fs_info->reloc_ctl;
Miao Xie20dd2cb2013-09-25 21:47:45 +08001386 struct btrfs_block_rsv *rsv;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001387 int clear_rsv = 0;
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04001388 int ret;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001389
1390 if (root->reloc_root) {
1391 reloc_root = root->reloc_root;
1392 reloc_root->last_trans = trans->transid;
1393 return 0;
1394 }
1395
1396 if (!rc || !rc->create_reloc_tree ||
1397 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1398 return 0;
1399
Miao Xie20dd2cb2013-09-25 21:47:45 +08001400 if (!trans->reloc_reserved) {
1401 rsv = trans->block_rsv;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001402 trans->block_rsv = rc->block_rsv;
1403 clear_rsv = 1;
1404 }
1405 reloc_root = create_reloc_root(trans, root, root->root_key.objectid);
1406 if (clear_rsv)
Miao Xie20dd2cb2013-09-25 21:47:45 +08001407 trans->block_rsv = rsv;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001408
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04001409 ret = __add_reloc_root(reloc_root);
1410 BUG_ON(ret < 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001411 root->reloc_root = reloc_root;
1412 return 0;
1413}
1414
1415/*
1416 * update root item of reloc tree
1417 */
1418int btrfs_update_reloc_root(struct btrfs_trans_handle *trans,
1419 struct btrfs_root *root)
1420{
1421 struct btrfs_root *reloc_root;
1422 struct btrfs_root_item *root_item;
1423 int del = 0;
1424 int ret;
1425
1426 if (!root->reloc_root)
Chris Mason75857172011-06-13 20:00:16 -04001427 goto out;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001428
1429 reloc_root = root->reloc_root;
1430 root_item = &reloc_root->root_item;
1431
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001432 if (root->fs_info->reloc_ctl->merge_reloc_tree &&
1433 btrfs_root_refs(root_item) == 0) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001434 root->reloc_root = NULL;
1435 del = 1;
1436 }
1437
1438 __update_reloc_root(reloc_root, del);
1439
1440 if (reloc_root->commit_root != reloc_root->node) {
1441 btrfs_set_root_node(root_item, reloc_root->node);
1442 free_extent_buffer(reloc_root->commit_root);
1443 reloc_root->commit_root = btrfs_root_node(reloc_root);
1444 }
1445
1446 ret = btrfs_update_root(trans, root->fs_info->tree_root,
1447 &reloc_root->root_key, root_item);
1448 BUG_ON(ret);
Chris Mason75857172011-06-13 20:00:16 -04001449
1450out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001451 return 0;
1452}
1453
1454/*
1455 * helper to find first cached inode with inode number >= objectid
1456 * in a subvolume
1457 */
1458static struct inode *find_next_inode(struct btrfs_root *root, u64 objectid)
1459{
1460 struct rb_node *node;
1461 struct rb_node *prev;
1462 struct btrfs_inode *entry;
1463 struct inode *inode;
1464
1465 spin_lock(&root->inode_lock);
1466again:
1467 node = root->inode_tree.rb_node;
1468 prev = NULL;
1469 while (node) {
1470 prev = node;
1471 entry = rb_entry(node, struct btrfs_inode, rb_node);
1472
Li Zefan33345d012011-04-20 10:31:50 +08001473 if (objectid < btrfs_ino(&entry->vfs_inode))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001474 node = node->rb_left;
Li Zefan33345d012011-04-20 10:31:50 +08001475 else if (objectid > btrfs_ino(&entry->vfs_inode))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001476 node = node->rb_right;
1477 else
1478 break;
1479 }
1480 if (!node) {
1481 while (prev) {
1482 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Li Zefan33345d012011-04-20 10:31:50 +08001483 if (objectid <= btrfs_ino(&entry->vfs_inode)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001484 node = prev;
1485 break;
1486 }
1487 prev = rb_next(prev);
1488 }
1489 }
1490 while (node) {
1491 entry = rb_entry(node, struct btrfs_inode, rb_node);
1492 inode = igrab(&entry->vfs_inode);
1493 if (inode) {
1494 spin_unlock(&root->inode_lock);
1495 return inode;
1496 }
1497
Li Zefan33345d012011-04-20 10:31:50 +08001498 objectid = btrfs_ino(&entry->vfs_inode) + 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001499 if (cond_resched_lock(&root->inode_lock))
1500 goto again;
1501
1502 node = rb_next(node);
1503 }
1504 spin_unlock(&root->inode_lock);
1505 return NULL;
1506}
1507
1508static int in_block_group(u64 bytenr,
1509 struct btrfs_block_group_cache *block_group)
1510{
1511 if (bytenr >= block_group->key.objectid &&
1512 bytenr < block_group->key.objectid + block_group->key.offset)
1513 return 1;
1514 return 0;
1515}
1516
1517/*
1518 * get new location of data
1519 */
1520static int get_new_location(struct inode *reloc_inode, u64 *new_bytenr,
1521 u64 bytenr, u64 num_bytes)
1522{
1523 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
1524 struct btrfs_path *path;
1525 struct btrfs_file_extent_item *fi;
1526 struct extent_buffer *leaf;
1527 int ret;
1528
1529 path = btrfs_alloc_path();
1530 if (!path)
1531 return -ENOMEM;
1532
1533 bytenr -= BTRFS_I(reloc_inode)->index_cnt;
Li Zefan33345d012011-04-20 10:31:50 +08001534 ret = btrfs_lookup_file_extent(NULL, root, path, btrfs_ino(reloc_inode),
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001535 bytenr, 0);
1536 if (ret < 0)
1537 goto out;
1538 if (ret > 0) {
1539 ret = -ENOENT;
1540 goto out;
1541 }
1542
1543 leaf = path->nodes[0];
1544 fi = btrfs_item_ptr(leaf, path->slots[0],
1545 struct btrfs_file_extent_item);
1546
1547 BUG_ON(btrfs_file_extent_offset(leaf, fi) ||
1548 btrfs_file_extent_compression(leaf, fi) ||
1549 btrfs_file_extent_encryption(leaf, fi) ||
1550 btrfs_file_extent_other_encoding(leaf, fi));
1551
1552 if (num_bytes != btrfs_file_extent_disk_num_bytes(leaf, fi)) {
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001553 ret = -EINVAL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001554 goto out;
1555 }
1556
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001557 *new_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001558 ret = 0;
1559out:
1560 btrfs_free_path(path);
1561 return ret;
1562}
1563
1564/*
1565 * update file extent items in the tree leaf to point to
1566 * the new locations.
1567 */
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001568static noinline_for_stack
1569int replace_file_extents(struct btrfs_trans_handle *trans,
1570 struct reloc_control *rc,
1571 struct btrfs_root *root,
1572 struct extent_buffer *leaf)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001573{
1574 struct btrfs_key key;
1575 struct btrfs_file_extent_item *fi;
1576 struct inode *inode = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001577 u64 parent;
1578 u64 bytenr;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001579 u64 new_bytenr = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001580 u64 num_bytes;
1581 u64 end;
1582 u32 nritems;
1583 u32 i;
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001584 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001585 int first = 1;
1586 int dirty = 0;
1587
1588 if (rc->stage != UPDATE_DATA_PTRS)
1589 return 0;
1590
1591 /* reloc trees always use full backref */
1592 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1593 parent = leaf->start;
1594 else
1595 parent = 0;
1596
1597 nritems = btrfs_header_nritems(leaf);
1598 for (i = 0; i < nritems; i++) {
1599 cond_resched();
1600 btrfs_item_key_to_cpu(leaf, &key, i);
1601 if (key.type != BTRFS_EXTENT_DATA_KEY)
1602 continue;
1603 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
1604 if (btrfs_file_extent_type(leaf, fi) ==
1605 BTRFS_FILE_EXTENT_INLINE)
1606 continue;
1607 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1608 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
1609 if (bytenr == 0)
1610 continue;
1611 if (!in_block_group(bytenr, rc->block_group))
1612 continue;
1613
1614 /*
1615 * if we are modifying block in fs tree, wait for readpage
1616 * to complete and drop the extent cache
1617 */
1618 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001619 if (first) {
1620 inode = find_next_inode(root, key.objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001621 first = 0;
Li Zefan33345d012011-04-20 10:31:50 +08001622 } else if (inode && btrfs_ino(inode) < key.objectid) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001623 btrfs_add_delayed_iput(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001624 inode = find_next_inode(root, key.objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001625 }
Li Zefan33345d012011-04-20 10:31:50 +08001626 if (inode && btrfs_ino(inode) == key.objectid) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001627 end = key.offset +
1628 btrfs_file_extent_num_bytes(leaf, fi);
1629 WARN_ON(!IS_ALIGNED(key.offset,
1630 root->sectorsize));
1631 WARN_ON(!IS_ALIGNED(end, root->sectorsize));
1632 end--;
1633 ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001634 key.offset, end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001635 if (!ret)
1636 continue;
1637
1638 btrfs_drop_extent_cache(inode, key.offset, end,
1639 1);
1640 unlock_extent(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001641 key.offset, end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001642 }
1643 }
1644
1645 ret = get_new_location(rc->data_inode, &new_bytenr,
1646 bytenr, num_bytes);
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001647 if (ret) {
1648 /*
1649 * Don't have to abort since we've not changed anything
1650 * in the file extent yet.
1651 */
1652 break;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001653 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001654
1655 btrfs_set_file_extent_disk_bytenr(leaf, fi, new_bytenr);
1656 dirty = 1;
1657
1658 key.offset -= btrfs_file_extent_offset(leaf, fi);
1659 ret = btrfs_inc_extent_ref(trans, root, new_bytenr,
1660 num_bytes, parent,
1661 btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001662 key.objectid, key.offset, 1);
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001663 if (ret) {
1664 btrfs_abort_transaction(trans, root, ret);
1665 break;
1666 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001667
1668 ret = btrfs_free_extent(trans, root, bytenr, num_bytes,
1669 parent, btrfs_header_owner(leaf),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001670 key.objectid, key.offset, 1);
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001671 if (ret) {
1672 btrfs_abort_transaction(trans, root, ret);
1673 break;
1674 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001675 }
1676 if (dirty)
1677 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001678 if (inode)
1679 btrfs_add_delayed_iput(inode);
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001680 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001681}
1682
1683static noinline_for_stack
1684int memcmp_node_keys(struct extent_buffer *eb, int slot,
1685 struct btrfs_path *path, int level)
1686{
1687 struct btrfs_disk_key key1;
1688 struct btrfs_disk_key key2;
1689 btrfs_node_key(eb, &key1, slot);
1690 btrfs_node_key(path->nodes[level], &key2, path->slots[level]);
1691 return memcmp(&key1, &key2, sizeof(key1));
1692}
1693
1694/*
1695 * try to replace tree blocks in fs tree with the new blocks
1696 * in reloc tree. tree blocks haven't been modified since the
1697 * reloc tree was create can be replaced.
1698 *
1699 * if a block was replaced, level of the block + 1 is returned.
1700 * if no block got replaced, 0 is returned. if there are other
1701 * errors, a negative error number is returned.
1702 */
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001703static noinline_for_stack
1704int replace_path(struct btrfs_trans_handle *trans,
1705 struct btrfs_root *dest, struct btrfs_root *src,
1706 struct btrfs_path *path, struct btrfs_key *next_key,
1707 int lowest_level, int max_level)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001708{
1709 struct extent_buffer *eb;
1710 struct extent_buffer *parent;
1711 struct btrfs_key key;
1712 u64 old_bytenr;
1713 u64 new_bytenr;
1714 u64 old_ptr_gen;
1715 u64 new_ptr_gen;
1716 u64 last_snapshot;
1717 u32 blocksize;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001718 int cow = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001719 int level;
1720 int ret;
1721 int slot;
1722
1723 BUG_ON(src->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
1724 BUG_ON(dest->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001725
1726 last_snapshot = btrfs_root_last_snapshot(&src->root_item);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001727again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001728 slot = path->slots[lowest_level];
1729 btrfs_node_key_to_cpu(path->nodes[lowest_level], &key, slot);
1730
1731 eb = btrfs_lock_root_node(dest);
1732 btrfs_set_lock_blocking(eb);
1733 level = btrfs_header_level(eb);
1734
1735 if (level < lowest_level) {
1736 btrfs_tree_unlock(eb);
1737 free_extent_buffer(eb);
1738 return 0;
1739 }
1740
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001741 if (cow) {
1742 ret = btrfs_cow_block(trans, dest, eb, NULL, 0, &eb);
1743 BUG_ON(ret);
1744 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001745 btrfs_set_lock_blocking(eb);
1746
1747 if (next_key) {
1748 next_key->objectid = (u64)-1;
1749 next_key->type = (u8)-1;
1750 next_key->offset = (u64)-1;
1751 }
1752
1753 parent = eb;
1754 while (1) {
1755 level = btrfs_header_level(parent);
1756 BUG_ON(level < lowest_level);
1757
1758 ret = btrfs_bin_search(parent, &key, level, &slot);
1759 if (ret && slot > 0)
1760 slot--;
1761
1762 if (next_key && slot + 1 < btrfs_header_nritems(parent))
1763 btrfs_node_key_to_cpu(parent, next_key, slot + 1);
1764
1765 old_bytenr = btrfs_node_blockptr(parent, slot);
1766 blocksize = btrfs_level_size(dest, level - 1);
1767 old_ptr_gen = btrfs_node_ptr_generation(parent, slot);
1768
1769 if (level <= max_level) {
1770 eb = path->nodes[level];
1771 new_bytenr = btrfs_node_blockptr(eb,
1772 path->slots[level]);
1773 new_ptr_gen = btrfs_node_ptr_generation(eb,
1774 path->slots[level]);
1775 } else {
1776 new_bytenr = 0;
1777 new_ptr_gen = 0;
1778 }
1779
1780 if (new_bytenr > 0 && new_bytenr == old_bytenr) {
1781 WARN_ON(1);
1782 ret = level;
1783 break;
1784 }
1785
1786 if (new_bytenr == 0 || old_ptr_gen > last_snapshot ||
1787 memcmp_node_keys(parent, slot, path, level)) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001788 if (level <= lowest_level) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001789 ret = 0;
1790 break;
1791 }
1792
1793 eb = read_tree_block(dest, old_bytenr, blocksize,
1794 old_ptr_gen);
Josef Bacik416bc652013-04-23 14:17:42 -04001795 if (!eb || !extent_buffer_uptodate(eb)) {
1796 ret = (!eb) ? -ENOMEM : -EIO;
1797 free_extent_buffer(eb);
Stefan Behrens379cde72013-05-08 08:56:09 +00001798 break;
Josef Bacik416bc652013-04-23 14:17:42 -04001799 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001800 btrfs_tree_lock(eb);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001801 if (cow) {
1802 ret = btrfs_cow_block(trans, dest, eb, parent,
1803 slot, &eb);
1804 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001805 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001806 btrfs_set_lock_blocking(eb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001807
1808 btrfs_tree_unlock(parent);
1809 free_extent_buffer(parent);
1810
1811 parent = eb;
1812 continue;
1813 }
1814
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001815 if (!cow) {
1816 btrfs_tree_unlock(parent);
1817 free_extent_buffer(parent);
1818 cow = 1;
1819 goto again;
1820 }
1821
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001822 btrfs_node_key_to_cpu(path->nodes[level], &key,
1823 path->slots[level]);
David Sterbab3b4aa72011-04-21 01:20:15 +02001824 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001825
1826 path->lowest_level = level;
1827 ret = btrfs_search_slot(trans, src, &key, path, 0, 1);
1828 path->lowest_level = 0;
1829 BUG_ON(ret);
1830
1831 /*
1832 * swap blocks in fs tree and reloc tree.
1833 */
1834 btrfs_set_node_blockptr(parent, slot, new_bytenr);
1835 btrfs_set_node_ptr_generation(parent, slot, new_ptr_gen);
1836 btrfs_mark_buffer_dirty(parent);
1837
1838 btrfs_set_node_blockptr(path->nodes[level],
1839 path->slots[level], old_bytenr);
1840 btrfs_set_node_ptr_generation(path->nodes[level],
1841 path->slots[level], old_ptr_gen);
1842 btrfs_mark_buffer_dirty(path->nodes[level]);
1843
1844 ret = btrfs_inc_extent_ref(trans, src, old_bytenr, blocksize,
1845 path->nodes[level]->start,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001846 src->root_key.objectid, level - 1, 0,
1847 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001848 BUG_ON(ret);
1849 ret = btrfs_inc_extent_ref(trans, dest, new_bytenr, blocksize,
1850 0, dest->root_key.objectid, level - 1,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001851 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001852 BUG_ON(ret);
1853
1854 ret = btrfs_free_extent(trans, src, new_bytenr, blocksize,
1855 path->nodes[level]->start,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001856 src->root_key.objectid, level - 1, 0,
1857 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001858 BUG_ON(ret);
1859
1860 ret = btrfs_free_extent(trans, dest, old_bytenr, blocksize,
1861 0, dest->root_key.objectid, level - 1,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02001862 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001863 BUG_ON(ret);
1864
1865 btrfs_unlock_up_safe(path, 0);
1866
1867 ret = level;
1868 break;
1869 }
1870 btrfs_tree_unlock(parent);
1871 free_extent_buffer(parent);
1872 return ret;
1873}
1874
1875/*
1876 * helper to find next relocated block in reloc tree
1877 */
1878static noinline_for_stack
1879int walk_up_reloc_tree(struct btrfs_root *root, struct btrfs_path *path,
1880 int *level)
1881{
1882 struct extent_buffer *eb;
1883 int i;
1884 u64 last_snapshot;
1885 u32 nritems;
1886
1887 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
1888
1889 for (i = 0; i < *level; i++) {
1890 free_extent_buffer(path->nodes[i]);
1891 path->nodes[i] = NULL;
1892 }
1893
1894 for (i = *level; i < BTRFS_MAX_LEVEL && path->nodes[i]; i++) {
1895 eb = path->nodes[i];
1896 nritems = btrfs_header_nritems(eb);
1897 while (path->slots[i] + 1 < nritems) {
1898 path->slots[i]++;
1899 if (btrfs_node_ptr_generation(eb, path->slots[i]) <=
1900 last_snapshot)
1901 continue;
1902
1903 *level = i;
1904 return 0;
1905 }
1906 free_extent_buffer(path->nodes[i]);
1907 path->nodes[i] = NULL;
1908 }
1909 return 1;
1910}
1911
1912/*
1913 * walk down reloc tree to find relocated block of lowest level
1914 */
1915static noinline_for_stack
1916int walk_down_reloc_tree(struct btrfs_root *root, struct btrfs_path *path,
1917 int *level)
1918{
1919 struct extent_buffer *eb = NULL;
1920 int i;
1921 u64 bytenr;
1922 u64 ptr_gen = 0;
1923 u64 last_snapshot;
1924 u32 blocksize;
1925 u32 nritems;
1926
1927 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
1928
1929 for (i = *level; i > 0; i--) {
1930 eb = path->nodes[i];
1931 nritems = btrfs_header_nritems(eb);
1932 while (path->slots[i] < nritems) {
1933 ptr_gen = btrfs_node_ptr_generation(eb, path->slots[i]);
1934 if (ptr_gen > last_snapshot)
1935 break;
1936 path->slots[i]++;
1937 }
1938 if (path->slots[i] >= nritems) {
1939 if (i == *level)
1940 break;
1941 *level = i + 1;
1942 return 0;
1943 }
1944 if (i == 1) {
1945 *level = i;
1946 return 0;
1947 }
1948
1949 bytenr = btrfs_node_blockptr(eb, path->slots[i]);
1950 blocksize = btrfs_level_size(root, i - 1);
1951 eb = read_tree_block(root, bytenr, blocksize, ptr_gen);
Josef Bacik416bc652013-04-23 14:17:42 -04001952 if (!eb || !extent_buffer_uptodate(eb)) {
1953 free_extent_buffer(eb);
1954 return -EIO;
1955 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001956 BUG_ON(btrfs_header_level(eb) != i - 1);
1957 path->nodes[i - 1] = eb;
1958 path->slots[i - 1] = 0;
1959 }
1960 return 1;
1961}
1962
1963/*
1964 * invalidate extent cache for file extents whose key in range of
1965 * [min_key, max_key)
1966 */
1967static int invalidate_extent_cache(struct btrfs_root *root,
1968 struct btrfs_key *min_key,
1969 struct btrfs_key *max_key)
1970{
1971 struct inode *inode = NULL;
1972 u64 objectid;
1973 u64 start, end;
Li Zefan33345d012011-04-20 10:31:50 +08001974 u64 ino;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001975
1976 objectid = min_key->objectid;
1977 while (1) {
1978 cond_resched();
1979 iput(inode);
1980
1981 if (objectid > max_key->objectid)
1982 break;
1983
1984 inode = find_next_inode(root, objectid);
1985 if (!inode)
1986 break;
Li Zefan33345d012011-04-20 10:31:50 +08001987 ino = btrfs_ino(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001988
Li Zefan33345d012011-04-20 10:31:50 +08001989 if (ino > max_key->objectid) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001990 iput(inode);
1991 break;
1992 }
1993
Li Zefan33345d012011-04-20 10:31:50 +08001994 objectid = ino + 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001995 if (!S_ISREG(inode->i_mode))
1996 continue;
1997
Li Zefan33345d012011-04-20 10:31:50 +08001998 if (unlikely(min_key->objectid == ino)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001999 if (min_key->type > BTRFS_EXTENT_DATA_KEY)
2000 continue;
2001 if (min_key->type < BTRFS_EXTENT_DATA_KEY)
2002 start = 0;
2003 else {
2004 start = min_key->offset;
2005 WARN_ON(!IS_ALIGNED(start, root->sectorsize));
2006 }
2007 } else {
2008 start = 0;
2009 }
2010
Li Zefan33345d012011-04-20 10:31:50 +08002011 if (unlikely(max_key->objectid == ino)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002012 if (max_key->type < BTRFS_EXTENT_DATA_KEY)
2013 continue;
2014 if (max_key->type > BTRFS_EXTENT_DATA_KEY) {
2015 end = (u64)-1;
2016 } else {
2017 if (max_key->offset == 0)
2018 continue;
2019 end = max_key->offset;
2020 WARN_ON(!IS_ALIGNED(end, root->sectorsize));
2021 end--;
2022 }
2023 } else {
2024 end = (u64)-1;
2025 }
2026
2027 /* the lock_extent waits for readpage to complete */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002028 lock_extent(&BTRFS_I(inode)->io_tree, start, end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002029 btrfs_drop_extent_cache(inode, start, end, 1);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002030 unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002031 }
2032 return 0;
2033}
2034
2035static int find_next_key(struct btrfs_path *path, int level,
2036 struct btrfs_key *key)
2037
2038{
2039 while (level < BTRFS_MAX_LEVEL) {
2040 if (!path->nodes[level])
2041 break;
2042 if (path->slots[level] + 1 <
2043 btrfs_header_nritems(path->nodes[level])) {
2044 btrfs_node_key_to_cpu(path->nodes[level], key,
2045 path->slots[level] + 1);
2046 return 0;
2047 }
2048 level++;
2049 }
2050 return 1;
2051}
2052
2053/*
2054 * merge the relocated tree blocks in reloc tree with corresponding
2055 * fs tree.
2056 */
2057static noinline_for_stack int merge_reloc_root(struct reloc_control *rc,
2058 struct btrfs_root *root)
2059{
2060 LIST_HEAD(inode_list);
2061 struct btrfs_key key;
2062 struct btrfs_key next_key;
2063 struct btrfs_trans_handle *trans;
2064 struct btrfs_root *reloc_root;
2065 struct btrfs_root_item *root_item;
2066 struct btrfs_path *path;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002067 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002068 int level;
2069 int max_level;
2070 int replaced = 0;
2071 int ret;
2072 int err = 0;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002073 u32 min_reserved;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002074
2075 path = btrfs_alloc_path();
2076 if (!path)
2077 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04002078 path->reada = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002079
2080 reloc_root = root->reloc_root;
2081 root_item = &reloc_root->root_item;
2082
2083 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2084 level = btrfs_root_level(root_item);
2085 extent_buffer_get(reloc_root->node);
2086 path->nodes[level] = reloc_root->node;
2087 path->slots[level] = 0;
2088 } else {
2089 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
2090
2091 level = root_item->drop_level;
2092 BUG_ON(level == 0);
2093 path->lowest_level = level;
2094 ret = btrfs_search_slot(NULL, reloc_root, &key, path, 0, 0);
Yan Zheng33c66f42009-07-22 09:59:00 -04002095 path->lowest_level = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002096 if (ret < 0) {
2097 btrfs_free_path(path);
2098 return ret;
2099 }
2100
2101 btrfs_node_key_to_cpu(path->nodes[level], &next_key,
2102 path->slots[level]);
2103 WARN_ON(memcmp(&key, &next_key, sizeof(key)));
2104
2105 btrfs_unlock_up_safe(path, 0);
2106 }
2107
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002108 min_reserved = root->nodesize * (BTRFS_MAX_LEVEL - 1) * 2;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002109 memset(&next_key, 0, sizeof(next_key));
2110
2111 while (1) {
Yan, Zhenga22285a2010-05-16 10:48:46 -04002112 trans = btrfs_start_transaction(root, 0);
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00002113 BUG_ON(IS_ERR(trans));
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002114 trans->block_rsv = rc->block_rsv;
2115
Miao Xie08e007d2012-10-16 11:33:38 +00002116 ret = btrfs_block_rsv_refill(root, rc->block_rsv, min_reserved,
2117 BTRFS_RESERVE_FLUSH_ALL);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002118 if (ret) {
2119 BUG_ON(ret != -EAGAIN);
2120 ret = btrfs_commit_transaction(trans, root);
2121 BUG_ON(ret);
2122 continue;
2123 }
2124
2125 replaced = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002126 max_level = level;
2127
2128 ret = walk_down_reloc_tree(reloc_root, path, &level);
2129 if (ret < 0) {
2130 err = ret;
2131 goto out;
2132 }
2133 if (ret > 0)
2134 break;
2135
2136 if (!find_next_key(path, level, &key) &&
2137 btrfs_comp_cpu_keys(&next_key, &key) >= 0) {
2138 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002139 } else {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002140 ret = replace_path(trans, root, reloc_root, path,
2141 &next_key, level, max_level);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002142 }
2143 if (ret < 0) {
2144 err = ret;
2145 goto out;
2146 }
2147
2148 if (ret > 0) {
2149 level = ret;
2150 btrfs_node_key_to_cpu(path->nodes[level], &key,
2151 path->slots[level]);
2152 replaced = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002153 }
2154
2155 ret = walk_up_reloc_tree(reloc_root, path, &level);
2156 if (ret > 0)
2157 break;
2158
2159 BUG_ON(level == 0);
2160 /*
2161 * save the merging progress in the drop_progress.
2162 * this is OK since root refs == 1 in this case.
2163 */
2164 btrfs_node_key(path->nodes[level], &root_item->drop_progress,
2165 path->slots[level]);
2166 root_item->drop_level = level;
2167
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002168 btrfs_end_transaction_throttle(trans, root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002169
Liu Bob53d3f52012-11-14 14:34:34 +00002170 btrfs_btree_balance_dirty(root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002171
2172 if (replaced && rc->stage == UPDATE_DATA_PTRS)
2173 invalidate_extent_cache(root, &key, &next_key);
2174 }
2175
2176 /*
2177 * handle the case only one block in the fs tree need to be
2178 * relocated and the block is tree root.
2179 */
2180 leaf = btrfs_lock_root_node(root);
2181 ret = btrfs_cow_block(trans, root, leaf, NULL, 0, &leaf);
2182 btrfs_tree_unlock(leaf);
2183 free_extent_buffer(leaf);
2184 if (ret < 0)
2185 err = ret;
2186out:
2187 btrfs_free_path(path);
2188
2189 if (err == 0) {
2190 memset(&root_item->drop_progress, 0,
2191 sizeof(root_item->drop_progress));
2192 root_item->drop_level = 0;
2193 btrfs_set_root_refs(root_item, 0);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002194 btrfs_update_reloc_root(trans, root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002195 }
2196
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002197 btrfs_end_transaction_throttle(trans, root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002198
Liu Bob53d3f52012-11-14 14:34:34 +00002199 btrfs_btree_balance_dirty(root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002200
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002201 if (replaced && rc->stage == UPDATE_DATA_PTRS)
2202 invalidate_extent_cache(root, &key, &next_key);
2203
2204 return err;
2205}
2206
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002207static noinline_for_stack
2208int prepare_to_merge(struct reloc_control *rc, int err)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002209{
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002210 struct btrfs_root *root = rc->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002211 struct btrfs_root *reloc_root;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002212 struct btrfs_trans_handle *trans;
2213 LIST_HEAD(reloc_roots);
2214 u64 num_bytes = 0;
2215 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002216
Chris Mason75857172011-06-13 20:00:16 -04002217 mutex_lock(&root->fs_info->reloc_mutex);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002218 rc->merging_rsv_size += root->nodesize * (BTRFS_MAX_LEVEL - 1) * 2;
2219 rc->merging_rsv_size += rc->nodes_relocated * 2;
Chris Mason75857172011-06-13 20:00:16 -04002220 mutex_unlock(&root->fs_info->reloc_mutex);
2221
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002222again:
2223 if (!err) {
2224 num_bytes = rc->merging_rsv_size;
Miao Xie08e007d2012-10-16 11:33:38 +00002225 ret = btrfs_block_rsv_add(root, rc->block_rsv, num_bytes,
2226 BTRFS_RESERVE_FLUSH_ALL);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002227 if (ret)
2228 err = ret;
2229 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002230
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002231 trans = btrfs_join_transaction(rc->extent_root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00002232 if (IS_ERR(trans)) {
2233 if (!err)
2234 btrfs_block_rsv_release(rc->extent_root,
2235 rc->block_rsv, num_bytes);
2236 return PTR_ERR(trans);
2237 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002238
2239 if (!err) {
2240 if (num_bytes != rc->merging_rsv_size) {
2241 btrfs_end_transaction(trans, rc->extent_root);
2242 btrfs_block_rsv_release(rc->extent_root,
2243 rc->block_rsv, num_bytes);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002244 goto again;
2245 }
2246 }
2247
2248 rc->merge_reloc_tree = 1;
2249
2250 while (!list_empty(&rc->reloc_roots)) {
2251 reloc_root = list_entry(rc->reloc_roots.next,
2252 struct btrfs_root, root_list);
2253 list_del_init(&reloc_root->root_list);
2254
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002255 root = read_fs_root(reloc_root->fs_info,
2256 reloc_root->root_key.offset);
2257 BUG_ON(IS_ERR(root));
2258 BUG_ON(root->reloc_root != reloc_root);
2259
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002260 /*
2261 * set reference count to 1, so btrfs_recover_relocation
2262 * knows it should resumes merging
2263 */
2264 if (!err)
2265 btrfs_set_root_refs(&reloc_root->root_item, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002266 btrfs_update_reloc_root(trans, root);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002267
2268 list_add(&reloc_root->root_list, &reloc_roots);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002269 }
2270
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002271 list_splice(&reloc_roots, &rc->reloc_roots);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002272
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002273 if (!err)
2274 btrfs_commit_transaction(trans, rc->extent_root);
2275 else
2276 btrfs_end_transaction(trans, rc->extent_root);
2277 return err;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002278}
2279
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002280static noinline_for_stack
Liu Boaca1bba2013-03-04 16:25:37 +00002281void free_reloc_roots(struct list_head *list)
2282{
2283 struct btrfs_root *reloc_root;
2284
2285 while (!list_empty(list)) {
2286 reloc_root = list_entry(list->next, struct btrfs_root,
2287 root_list);
2288 __update_reloc_root(reloc_root, 1);
2289 free_extent_buffer(reloc_root->node);
2290 free_extent_buffer(reloc_root->commit_root);
2291 kfree(reloc_root);
2292 }
2293}
2294
2295static noinline_for_stack
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002296int merge_reloc_roots(struct reloc_control *rc)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002297{
Miao Xie5bc72472013-06-06 03:28:03 +00002298 struct btrfs_trans_handle *trans;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002299 struct btrfs_root *root;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002300 struct btrfs_root *reloc_root;
Miao Xie5bc72472013-06-06 03:28:03 +00002301 u64 last_snap;
2302 u64 otransid;
2303 u64 objectid;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002304 LIST_HEAD(reloc_roots);
2305 int found = 0;
Liu Boaca1bba2013-03-04 16:25:37 +00002306 int ret = 0;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002307again:
2308 root = rc->extent_root;
Chris Mason75857172011-06-13 20:00:16 -04002309
2310 /*
2311 * this serializes us with btrfs_record_root_in_transaction,
2312 * we have to make sure nobody is in the middle of
2313 * adding their roots to the list while we are
2314 * doing this splice
2315 */
2316 mutex_lock(&root->fs_info->reloc_mutex);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002317 list_splice_init(&rc->reloc_roots, &reloc_roots);
Chris Mason75857172011-06-13 20:00:16 -04002318 mutex_unlock(&root->fs_info->reloc_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002319
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002320 while (!list_empty(&reloc_roots)) {
2321 found = 1;
2322 reloc_root = list_entry(reloc_roots.next,
2323 struct btrfs_root, root_list);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002324
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002325 if (btrfs_root_refs(&reloc_root->root_item) > 0) {
2326 root = read_fs_root(reloc_root->fs_info,
2327 reloc_root->root_key.offset);
2328 BUG_ON(IS_ERR(root));
2329 BUG_ON(root->reloc_root != reloc_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002330
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002331 ret = merge_reloc_root(rc, root);
Josef Bacikb37b39c2013-07-23 16:57:15 -04002332 if (ret) {
2333 __update_reloc_root(reloc_root, 1);
2334 free_extent_buffer(reloc_root->node);
2335 free_extent_buffer(reloc_root->commit_root);
2336 kfree(reloc_root);
Liu Boaca1bba2013-03-04 16:25:37 +00002337 goto out;
Josef Bacikb37b39c2013-07-23 16:57:15 -04002338 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002339 } else {
2340 list_del_init(&reloc_root->root_list);
2341 }
Miao Xie5bc72472013-06-06 03:28:03 +00002342
2343 /*
2344 * we keep the old last snapshod transid in rtranid when we
2345 * created the relocation tree.
2346 */
2347 last_snap = btrfs_root_rtransid(&reloc_root->root_item);
2348 otransid = btrfs_root_otransid(&reloc_root->root_item);
2349 objectid = reloc_root->root_key.offset;
2350
Jeff Mahoney2c536792011-10-03 23:22:41 -04002351 ret = btrfs_drop_snapshot(reloc_root, rc->block_rsv, 0, 1);
Liu Boaca1bba2013-03-04 16:25:37 +00002352 if (ret < 0) {
2353 if (list_empty(&reloc_root->root_list))
2354 list_add_tail(&reloc_root->root_list,
2355 &reloc_roots);
2356 goto out;
Miao Xie5bc72472013-06-06 03:28:03 +00002357 } else if (!ret) {
2358 /*
2359 * recover the last snapshot tranid to avoid
2360 * the space balance break NOCOW.
2361 */
2362 root = read_fs_root(rc->extent_root->fs_info,
2363 objectid);
2364 if (IS_ERR(root))
2365 continue;
2366
Miao Xie5bc72472013-06-06 03:28:03 +00002367 trans = btrfs_join_transaction(root);
2368 BUG_ON(IS_ERR(trans));
2369
2370 /* Check if the fs/file tree was snapshoted or not. */
2371 if (btrfs_root_last_snapshot(&root->root_item) ==
2372 otransid - 1)
2373 btrfs_set_root_last_snapshot(&root->root_item,
2374 last_snap);
2375
2376 btrfs_end_transaction(trans, root);
Liu Boaca1bba2013-03-04 16:25:37 +00002377 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002378 }
2379
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002380 if (found) {
2381 found = 0;
2382 goto again;
2383 }
Liu Boaca1bba2013-03-04 16:25:37 +00002384out:
2385 if (ret) {
2386 btrfs_std_error(root->fs_info, ret);
2387 if (!list_empty(&reloc_roots))
2388 free_reloc_roots(&reloc_roots);
2389 }
2390
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002391 BUG_ON(!RB_EMPTY_ROOT(&rc->reloc_root_tree.rb_root));
Liu Boaca1bba2013-03-04 16:25:37 +00002392 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002393}
2394
2395static void free_block_list(struct rb_root *blocks)
2396{
2397 struct tree_block *block;
2398 struct rb_node *rb_node;
2399 while ((rb_node = rb_first(blocks))) {
2400 block = rb_entry(rb_node, struct tree_block, rb_node);
2401 rb_erase(rb_node, blocks);
2402 kfree(block);
2403 }
2404}
2405
2406static int record_reloc_root_in_trans(struct btrfs_trans_handle *trans,
2407 struct btrfs_root *reloc_root)
2408{
2409 struct btrfs_root *root;
2410
2411 if (reloc_root->last_trans == trans->transid)
2412 return 0;
2413
2414 root = read_fs_root(reloc_root->fs_info, reloc_root->root_key.offset);
2415 BUG_ON(IS_ERR(root));
2416 BUG_ON(root->reloc_root != reloc_root);
2417
2418 return btrfs_record_root_in_trans(trans, root);
2419}
2420
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002421static noinline_for_stack
2422struct btrfs_root *select_reloc_root(struct btrfs_trans_handle *trans,
2423 struct reloc_control *rc,
2424 struct backref_node *node,
2425 struct backref_edge *edges[], int *nr)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002426{
2427 struct backref_node *next;
2428 struct btrfs_root *root;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002429 int index = 0;
2430
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002431 next = node;
2432 while (1) {
2433 cond_resched();
2434 next = walk_up_backref(next, edges, &index);
2435 root = next->root;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002436 BUG_ON(!root);
2437 BUG_ON(!root->ref_cows);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002438
2439 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
2440 record_reloc_root_in_trans(trans, root);
2441 break;
2442 }
2443
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002444 btrfs_record_root_in_trans(trans, root);
2445 root = root->reloc_root;
2446
2447 if (next->new_bytenr != root->node->start) {
2448 BUG_ON(next->new_bytenr);
2449 BUG_ON(!list_empty(&next->list));
2450 next->new_bytenr = root->node->start;
2451 next->root = root;
2452 list_add_tail(&next->list,
2453 &rc->backref_cache.changed);
2454 __mark_block_processed(rc, next);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002455 break;
2456 }
2457
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002458 WARN_ON(1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002459 root = NULL;
2460 next = walk_down_backref(edges, &index);
2461 if (!next || next->level <= node->level)
2462 break;
2463 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002464 if (!root)
2465 return NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002466
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002467 *nr = index;
2468 next = node;
2469 /* setup backref node path for btrfs_reloc_cow_block */
2470 while (1) {
2471 rc->backref_cache.path[next->level] = next;
2472 if (--index < 0)
2473 break;
2474 next = edges[index]->node[UPPER];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002475 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002476 return root;
2477}
2478
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002479/*
2480 * select a tree root for relocation. return NULL if the block
2481 * is reference counted. we should use do_relocation() in this
2482 * case. return a tree root pointer if the block isn't reference
2483 * counted. return -ENOENT if the block is root of reloc tree.
2484 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002485static noinline_for_stack
2486struct btrfs_root *select_one_root(struct btrfs_trans_handle *trans,
2487 struct backref_node *node)
2488{
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002489 struct backref_node *next;
2490 struct btrfs_root *root;
2491 struct btrfs_root *fs_root = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002492 struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002493 int index = 0;
2494
2495 next = node;
2496 while (1) {
2497 cond_resched();
2498 next = walk_up_backref(next, edges, &index);
2499 root = next->root;
2500 BUG_ON(!root);
2501
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002502 /* no other choice for non-references counted tree */
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002503 if (!root->ref_cows)
2504 return root;
2505
2506 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID)
2507 fs_root = root;
2508
2509 if (next != node)
2510 return NULL;
2511
2512 next = walk_down_backref(edges, &index);
2513 if (!next || next->level <= node->level)
2514 break;
2515 }
2516
2517 if (!fs_root)
2518 return ERR_PTR(-ENOENT);
2519 return fs_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002520}
2521
2522static noinline_for_stack
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002523u64 calcu_metadata_size(struct reloc_control *rc,
2524 struct backref_node *node, int reserve)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002525{
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002526 struct backref_node *next = node;
2527 struct backref_edge *edge;
2528 struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
2529 u64 num_bytes = 0;
2530 int index = 0;
2531
2532 BUG_ON(reserve && node->processed);
2533
2534 while (next) {
2535 cond_resched();
2536 while (1) {
2537 if (next->processed && (reserve || next != node))
2538 break;
2539
2540 num_bytes += btrfs_level_size(rc->extent_root,
2541 next->level);
2542
2543 if (list_empty(&next->upper))
2544 break;
2545
2546 edge = list_entry(next->upper.next,
2547 struct backref_edge, list[LOWER]);
2548 edges[index++] = edge;
2549 next = edge->node[UPPER];
2550 }
2551 next = walk_down_backref(edges, &index);
2552 }
2553 return num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002554}
2555
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002556static int reserve_metadata_space(struct btrfs_trans_handle *trans,
2557 struct reloc_control *rc,
2558 struct backref_node *node)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002559{
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002560 struct btrfs_root *root = rc->extent_root;
2561 u64 num_bytes;
2562 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002563
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002564 num_bytes = calcu_metadata_size(rc, node, 1) * 2;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002565
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002566 trans->block_rsv = rc->block_rsv;
Miao Xie08e007d2012-10-16 11:33:38 +00002567 ret = btrfs_block_rsv_add(root, rc->block_rsv, num_bytes,
2568 BTRFS_RESERVE_FLUSH_ALL);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002569 if (ret) {
2570 if (ret == -EAGAIN)
2571 rc->commit_transaction = 1;
2572 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002573 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002574
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002575 return 0;
2576}
2577
2578static void release_metadata_space(struct reloc_control *rc,
2579 struct backref_node *node)
2580{
2581 u64 num_bytes = calcu_metadata_size(rc, node, 0) * 2;
2582 btrfs_block_rsv_release(rc->extent_root, rc->block_rsv, num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002583}
2584
2585/*
2586 * relocate a block tree, and then update pointers in upper level
2587 * blocks that reference the block to point to the new location.
2588 *
2589 * if called by link_to_upper, the block has already been relocated.
2590 * in that case this function just updates pointers.
2591 */
2592static int do_relocation(struct btrfs_trans_handle *trans,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002593 struct reloc_control *rc,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002594 struct backref_node *node,
2595 struct btrfs_key *key,
2596 struct btrfs_path *path, int lowest)
2597{
2598 struct backref_node *upper;
2599 struct backref_edge *edge;
2600 struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
2601 struct btrfs_root *root;
2602 struct extent_buffer *eb;
2603 u32 blocksize;
2604 u64 bytenr;
2605 u64 generation;
2606 int nr;
2607 int slot;
2608 int ret;
2609 int err = 0;
2610
2611 BUG_ON(lowest && node->eb);
2612
2613 path->lowest_level = node->level + 1;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002614 rc->backref_cache.path[node->level] = node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002615 list_for_each_entry(edge, &node->upper, list[LOWER]) {
2616 cond_resched();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002617
2618 upper = edge->node[UPPER];
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002619 root = select_reloc_root(trans, rc, upper, edges, &nr);
2620 BUG_ON(!root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002621
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002622 if (upper->eb && !upper->locked) {
2623 if (!lowest) {
2624 ret = btrfs_bin_search(upper->eb, key,
2625 upper->level, &slot);
2626 BUG_ON(ret);
2627 bytenr = btrfs_node_blockptr(upper->eb, slot);
2628 if (node->eb->start == bytenr)
2629 goto next;
2630 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002631 drop_node_buffer(upper);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002632 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002633
2634 if (!upper->eb) {
2635 ret = btrfs_search_slot(trans, root, key, path, 0, 1);
2636 if (ret < 0) {
2637 err = ret;
2638 break;
2639 }
2640 BUG_ON(ret > 0);
2641
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002642 if (!upper->eb) {
2643 upper->eb = path->nodes[upper->level];
2644 path->nodes[upper->level] = NULL;
2645 } else {
2646 BUG_ON(upper->eb != path->nodes[upper->level]);
2647 }
2648
2649 upper->locked = 1;
2650 path->locks[upper->level] = 0;
2651
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002652 slot = path->slots[upper->level];
David Sterbab3b4aa72011-04-21 01:20:15 +02002653 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002654 } else {
2655 ret = btrfs_bin_search(upper->eb, key, upper->level,
2656 &slot);
2657 BUG_ON(ret);
2658 }
2659
2660 bytenr = btrfs_node_blockptr(upper->eb, slot);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002661 if (lowest) {
2662 BUG_ON(bytenr != node->bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002663 } else {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002664 if (node->eb->start == bytenr)
2665 goto next;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002666 }
2667
2668 blocksize = btrfs_level_size(root, node->level);
2669 generation = btrfs_node_ptr_generation(upper->eb, slot);
2670 eb = read_tree_block(root, bytenr, blocksize, generation);
Josef Bacik416bc652013-04-23 14:17:42 -04002671 if (!eb || !extent_buffer_uptodate(eb)) {
2672 free_extent_buffer(eb);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00002673 err = -EIO;
2674 goto next;
2675 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002676 btrfs_tree_lock(eb);
2677 btrfs_set_lock_blocking(eb);
2678
2679 if (!node->eb) {
2680 ret = btrfs_cow_block(trans, root, eb, upper->eb,
2681 slot, &eb);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002682 btrfs_tree_unlock(eb);
2683 free_extent_buffer(eb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002684 if (ret < 0) {
2685 err = ret;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002686 goto next;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002687 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002688 BUG_ON(node->eb != eb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002689 } else {
2690 btrfs_set_node_blockptr(upper->eb, slot,
2691 node->eb->start);
2692 btrfs_set_node_ptr_generation(upper->eb, slot,
2693 trans->transid);
2694 btrfs_mark_buffer_dirty(upper->eb);
2695
2696 ret = btrfs_inc_extent_ref(trans, root,
2697 node->eb->start, blocksize,
2698 upper->eb->start,
2699 btrfs_header_owner(upper->eb),
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002700 node->level, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002701 BUG_ON(ret);
2702
2703 ret = btrfs_drop_subtree(trans, root, eb, upper->eb);
2704 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002705 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002706next:
2707 if (!upper->pending)
2708 drop_node_buffer(upper);
2709 else
2710 unlock_node_buffer(upper);
2711 if (err)
2712 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002713 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002714
2715 if (!err && node->pending) {
2716 drop_node_buffer(node);
2717 list_move_tail(&node->list, &rc->backref_cache.changed);
2718 node->pending = 0;
2719 }
2720
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002721 path->lowest_level = 0;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002722 BUG_ON(err == -ENOSPC);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002723 return err;
2724}
2725
2726static int link_to_upper(struct btrfs_trans_handle *trans,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002727 struct reloc_control *rc,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002728 struct backref_node *node,
2729 struct btrfs_path *path)
2730{
2731 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002732
2733 btrfs_node_key_to_cpu(node->eb, &key, 0);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002734 return do_relocation(trans, rc, node, &key, path, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002735}
2736
2737static int finish_pending_nodes(struct btrfs_trans_handle *trans,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002738 struct reloc_control *rc,
2739 struct btrfs_path *path, int err)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002740{
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002741 LIST_HEAD(list);
2742 struct backref_cache *cache = &rc->backref_cache;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002743 struct backref_node *node;
2744 int level;
2745 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002746
2747 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
2748 while (!list_empty(&cache->pending[level])) {
2749 node = list_entry(cache->pending[level].next,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002750 struct backref_node, list);
2751 list_move_tail(&node->list, &list);
2752 BUG_ON(!node->pending);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002753
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002754 if (!err) {
2755 ret = link_to_upper(trans, rc, node, path);
2756 if (ret < 0)
2757 err = ret;
2758 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002759 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002760 list_splice_init(&list, &cache->pending[level]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002761 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002762 return err;
2763}
2764
2765static void mark_block_processed(struct reloc_control *rc,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002766 u64 bytenr, u32 blocksize)
2767{
2768 set_extent_bits(&rc->processed_blocks, bytenr, bytenr + blocksize - 1,
2769 EXTENT_DIRTY, GFP_NOFS);
2770}
2771
2772static void __mark_block_processed(struct reloc_control *rc,
2773 struct backref_node *node)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002774{
2775 u32 blocksize;
2776 if (node->level == 0 ||
2777 in_block_group(node->bytenr, rc->block_group)) {
2778 blocksize = btrfs_level_size(rc->extent_root, node->level);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002779 mark_block_processed(rc, node->bytenr, blocksize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002780 }
2781 node->processed = 1;
2782}
2783
2784/*
2785 * mark a block and all blocks directly/indirectly reference the block
2786 * as processed.
2787 */
2788static void update_processed_blocks(struct reloc_control *rc,
2789 struct backref_node *node)
2790{
2791 struct backref_node *next = node;
2792 struct backref_edge *edge;
2793 struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
2794 int index = 0;
2795
2796 while (next) {
2797 cond_resched();
2798 while (1) {
2799 if (next->processed)
2800 break;
2801
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002802 __mark_block_processed(rc, next);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002803
2804 if (list_empty(&next->upper))
2805 break;
2806
2807 edge = list_entry(next->upper.next,
2808 struct backref_edge, list[LOWER]);
2809 edges[index++] = edge;
2810 next = edge->node[UPPER];
2811 }
2812 next = walk_down_backref(edges, &index);
2813 }
2814}
2815
2816static int tree_block_processed(u64 bytenr, u32 blocksize,
2817 struct reloc_control *rc)
2818{
2819 if (test_range_bit(&rc->processed_blocks, bytenr,
Chris Mason9655d292009-09-02 15:22:30 -04002820 bytenr + blocksize - 1, EXTENT_DIRTY, 1, NULL))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002821 return 1;
2822 return 0;
2823}
2824
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002825static int get_tree_block_key(struct reloc_control *rc,
2826 struct tree_block *block)
2827{
2828 struct extent_buffer *eb;
2829
2830 BUG_ON(block->key_ready);
2831 eb = read_tree_block(rc->extent_root, block->bytenr,
2832 block->key.objectid, block->key.offset);
Josef Bacik416bc652013-04-23 14:17:42 -04002833 if (!eb || !extent_buffer_uptodate(eb)) {
2834 free_extent_buffer(eb);
2835 return -EIO;
2836 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002837 WARN_ON(btrfs_header_level(eb) != block->level);
2838 if (block->level == 0)
2839 btrfs_item_key_to_cpu(eb, &block->key, 0);
2840 else
2841 btrfs_node_key_to_cpu(eb, &block->key, 0);
2842 free_extent_buffer(eb);
2843 block->key_ready = 1;
2844 return 0;
2845}
2846
2847static int reada_tree_block(struct reloc_control *rc,
2848 struct tree_block *block)
2849{
2850 BUG_ON(block->key_ready);
Josef Bacik3173a182013-03-07 14:22:04 -05002851 if (block->key.type == BTRFS_METADATA_ITEM_KEY)
2852 readahead_tree_block(rc->extent_root, block->bytenr,
2853 block->key.objectid,
2854 rc->extent_root->leafsize);
2855 else
2856 readahead_tree_block(rc->extent_root, block->bytenr,
2857 block->key.objectid, block->key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002858 return 0;
2859}
2860
2861/*
2862 * helper function to relocate a tree block
2863 */
2864static int relocate_tree_block(struct btrfs_trans_handle *trans,
2865 struct reloc_control *rc,
2866 struct backref_node *node,
2867 struct btrfs_key *key,
2868 struct btrfs_path *path)
2869{
2870 struct btrfs_root *root;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002871 int release = 0;
2872 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002873
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002874 if (!node)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002875 return 0;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002876
2877 BUG_ON(node->processed);
2878 root = select_one_root(trans, node);
2879 if (root == ERR_PTR(-ENOENT)) {
2880 update_processed_blocks(rc, node);
2881 goto out;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002882 }
2883
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002884 if (!root || root->ref_cows) {
2885 ret = reserve_metadata_space(trans, rc, node);
2886 if (ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002887 goto out;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002888 release = 1;
2889 }
2890
2891 if (root) {
2892 if (root->ref_cows) {
2893 BUG_ON(node->new_bytenr);
2894 BUG_ON(!list_empty(&node->list));
2895 btrfs_record_root_in_trans(trans, root);
2896 root = root->reloc_root;
2897 node->new_bytenr = root->node->start;
2898 node->root = root;
2899 list_add_tail(&node->list, &rc->backref_cache.changed);
2900 } else {
2901 path->lowest_level = node->level;
2902 ret = btrfs_search_slot(trans, root, key, path, 0, 1);
David Sterbab3b4aa72011-04-21 01:20:15 +02002903 btrfs_release_path(path);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002904 if (ret > 0)
2905 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002906 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002907 if (!ret)
2908 update_processed_blocks(rc, node);
2909 } else {
2910 ret = do_relocation(trans, rc, node, key, path, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002911 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002912out:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002913 if (ret || node->level == 0 || node->cowonly) {
2914 if (release)
2915 release_metadata_space(rc, node);
2916 remove_backref_node(&rc->backref_cache, node);
2917 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002918 return ret;
2919}
2920
2921/*
2922 * relocate a list of blocks
2923 */
2924static noinline_for_stack
2925int relocate_tree_blocks(struct btrfs_trans_handle *trans,
2926 struct reloc_control *rc, struct rb_root *blocks)
2927{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002928 struct backref_node *node;
2929 struct btrfs_path *path;
2930 struct tree_block *block;
2931 struct rb_node *rb_node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002932 int ret;
2933 int err = 0;
2934
2935 path = btrfs_alloc_path();
Liu Boe1a12672013-03-04 16:25:38 +00002936 if (!path) {
2937 err = -ENOMEM;
David Sterba34c2b292013-04-26 12:56:04 +00002938 goto out_free_blocks;
Liu Boe1a12672013-03-04 16:25:38 +00002939 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002940
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002941 rb_node = rb_first(blocks);
2942 while (rb_node) {
2943 block = rb_entry(rb_node, struct tree_block, rb_node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002944 if (!block->key_ready)
2945 reada_tree_block(rc, block);
2946 rb_node = rb_next(rb_node);
2947 }
2948
2949 rb_node = rb_first(blocks);
2950 while (rb_node) {
2951 block = rb_entry(rb_node, struct tree_block, rb_node);
David Sterba34c2b292013-04-26 12:56:04 +00002952 if (!block->key_ready) {
2953 err = get_tree_block_key(rc, block);
2954 if (err)
2955 goto out_free_path;
2956 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002957 rb_node = rb_next(rb_node);
2958 }
2959
2960 rb_node = rb_first(blocks);
2961 while (rb_node) {
2962 block = rb_entry(rb_node, struct tree_block, rb_node);
2963
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002964 node = build_backref_tree(rc, &block->key,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002965 block->level, block->bytenr);
2966 if (IS_ERR(node)) {
2967 err = PTR_ERR(node);
2968 goto out;
2969 }
2970
2971 ret = relocate_tree_block(trans, rc, node, &block->key,
2972 path);
2973 if (ret < 0) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002974 if (ret != -EAGAIN || rb_node == rb_first(blocks))
2975 err = ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002976 goto out;
2977 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002978 rb_node = rb_next(rb_node);
2979 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002980out:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002981 err = finish_pending_nodes(trans, rc, path, err);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002982
David Sterba34c2b292013-04-26 12:56:04 +00002983out_free_path:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002984 btrfs_free_path(path);
David Sterba34c2b292013-04-26 12:56:04 +00002985out_free_blocks:
Liu Boe1a12672013-03-04 16:25:38 +00002986 free_block_list(blocks);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002987 return err;
2988}
2989
2990static noinline_for_stack
Yan, Zhengefa56462010-05-16 10:49:59 -04002991int prealloc_file_extent_cluster(struct inode *inode,
2992 struct file_extent_cluster *cluster)
2993{
2994 u64 alloc_hint = 0;
2995 u64 start;
2996 u64 end;
2997 u64 offset = BTRFS_I(inode)->index_cnt;
2998 u64 num_bytes;
2999 int nr = 0;
3000 int ret = 0;
3001
3002 BUG_ON(cluster->start != cluster->boundary[0]);
3003 mutex_lock(&inode->i_mutex);
3004
3005 ret = btrfs_check_data_free_space(inode, cluster->end +
3006 1 - cluster->start);
3007 if (ret)
3008 goto out;
3009
3010 while (nr < cluster->nr) {
3011 start = cluster->boundary[nr] - offset;
3012 if (nr + 1 < cluster->nr)
3013 end = cluster->boundary[nr + 1] - 1 - offset;
3014 else
3015 end = cluster->end - offset;
3016
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003017 lock_extent(&BTRFS_I(inode)->io_tree, start, end);
Yan, Zhengefa56462010-05-16 10:49:59 -04003018 num_bytes = end + 1 - start;
3019 ret = btrfs_prealloc_file_range(inode, 0, start,
3020 num_bytes, num_bytes,
3021 end + 1, &alloc_hint);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003022 unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
Yan, Zhengefa56462010-05-16 10:49:59 -04003023 if (ret)
3024 break;
3025 nr++;
3026 }
3027 btrfs_free_reserved_data_space(inode, cluster->end +
3028 1 - cluster->start);
3029out:
3030 mutex_unlock(&inode->i_mutex);
3031 return ret;
3032}
3033
3034static noinline_for_stack
Yan, Zheng0257bb82009-09-24 09:17:31 -04003035int setup_extent_mapping(struct inode *inode, u64 start, u64 end,
3036 u64 block_start)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003037{
3038 struct btrfs_root *root = BTRFS_I(inode)->root;
3039 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
3040 struct extent_map *em;
Yan, Zheng0257bb82009-09-24 09:17:31 -04003041 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003042
David Sterba172ddd62011-04-21 00:48:27 +02003043 em = alloc_extent_map();
Yan, Zheng0257bb82009-09-24 09:17:31 -04003044 if (!em)
3045 return -ENOMEM;
3046
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003047 em->start = start;
Yan, Zheng0257bb82009-09-24 09:17:31 -04003048 em->len = end + 1 - start;
3049 em->block_len = em->len;
3050 em->block_start = block_start;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003051 em->bdev = root->fs_info->fs_devices->latest_bdev;
3052 set_bit(EXTENT_FLAG_PINNED, &em->flags);
3053
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003054 lock_extent(&BTRFS_I(inode)->io_tree, start, end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003055 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04003056 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04003057 ret = add_extent_mapping(em_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04003058 write_unlock(&em_tree->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003059 if (ret != -EEXIST) {
3060 free_extent_map(em);
3061 break;
3062 }
3063 btrfs_drop_extent_cache(inode, start, end, 0);
3064 }
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003065 unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003066 return ret;
3067}
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003068
Yan, Zheng0257bb82009-09-24 09:17:31 -04003069static int relocate_file_extent_cluster(struct inode *inode,
3070 struct file_extent_cluster *cluster)
3071{
3072 u64 page_start;
3073 u64 page_end;
3074 u64 offset = BTRFS_I(inode)->index_cnt;
3075 unsigned long index;
3076 unsigned long last_index;
Yan, Zheng0257bb82009-09-24 09:17:31 -04003077 struct page *page;
3078 struct file_ra_state *ra;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003079 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003080 int nr = 0;
3081 int ret = 0;
3082
3083 if (!cluster->nr)
3084 return 0;
3085
3086 ra = kzalloc(sizeof(*ra), GFP_NOFS);
3087 if (!ra)
3088 return -ENOMEM;
3089
Yan, Zhengefa56462010-05-16 10:49:59 -04003090 ret = prealloc_file_extent_cluster(inode, cluster);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003091 if (ret)
Yan, Zhengefa56462010-05-16 10:49:59 -04003092 goto out;
Yan, Zheng0257bb82009-09-24 09:17:31 -04003093
3094 file_ra_state_init(ra, inode->i_mapping);
3095
Yan, Zhengefa56462010-05-16 10:49:59 -04003096 ret = setup_extent_mapping(inode, cluster->start - offset,
3097 cluster->end - offset, cluster->start);
3098 if (ret)
3099 goto out;
3100
3101 index = (cluster->start - offset) >> PAGE_CACHE_SHIFT;
3102 last_index = (cluster->end - offset) >> PAGE_CACHE_SHIFT;
Yan, Zheng0257bb82009-09-24 09:17:31 -04003103 while (index <= last_index) {
Yan, Zhengefa56462010-05-16 10:49:59 -04003104 ret = btrfs_delalloc_reserve_metadata(inode, PAGE_CACHE_SIZE);
3105 if (ret)
3106 goto out;
3107
Yan, Zheng0257bb82009-09-24 09:17:31 -04003108 page = find_lock_page(inode->i_mapping, index);
3109 if (!page) {
3110 page_cache_sync_readahead(inode->i_mapping,
3111 ra, NULL, index,
3112 last_index + 1 - index);
Josef Bacika94733d2011-07-11 10:47:06 -04003113 page = find_or_create_page(inode->i_mapping, index,
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003114 mask);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003115 if (!page) {
Yan, Zhengefa56462010-05-16 10:49:59 -04003116 btrfs_delalloc_release_metadata(inode,
3117 PAGE_CACHE_SIZE);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003118 ret = -ENOMEM;
Yan, Zhengefa56462010-05-16 10:49:59 -04003119 goto out;
Yan, Zheng0257bb82009-09-24 09:17:31 -04003120 }
3121 }
3122
3123 if (PageReadahead(page)) {
3124 page_cache_async_readahead(inode->i_mapping,
3125 ra, NULL, page, index,
3126 last_index + 1 - index);
3127 }
3128
3129 if (!PageUptodate(page)) {
3130 btrfs_readpage(NULL, page);
3131 lock_page(page);
3132 if (!PageUptodate(page)) {
3133 unlock_page(page);
3134 page_cache_release(page);
Yan, Zhengefa56462010-05-16 10:49:59 -04003135 btrfs_delalloc_release_metadata(inode,
3136 PAGE_CACHE_SIZE);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003137 ret = -EIO;
Yan, Zhengefa56462010-05-16 10:49:59 -04003138 goto out;
Yan, Zheng0257bb82009-09-24 09:17:31 -04003139 }
3140 }
3141
Miao Xie4eee4fa2012-12-21 09:17:45 +00003142 page_start = page_offset(page);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003143 page_end = page_start + PAGE_CACHE_SIZE - 1;
3144
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003145 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003146
3147 set_page_extent_mapped(page);
3148
3149 if (nr < cluster->nr &&
3150 page_start + offset == cluster->boundary[nr]) {
3151 set_extent_bits(&BTRFS_I(inode)->io_tree,
3152 page_start, page_end,
3153 EXTENT_BOUNDARY, GFP_NOFS);
3154 nr++;
3155 }
Yan, Zheng0257bb82009-09-24 09:17:31 -04003156
Yan, Zhengefa56462010-05-16 10:49:59 -04003157 btrfs_set_extent_delalloc(inode, page_start, page_end, NULL);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003158 set_page_dirty(page);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003159
3160 unlock_extent(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003161 page_start, page_end);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003162 unlock_page(page);
3163 page_cache_release(page);
3164
3165 index++;
Yan, Zhengefa56462010-05-16 10:49:59 -04003166 balance_dirty_pages_ratelimited(inode->i_mapping);
3167 btrfs_throttle(BTRFS_I(inode)->root);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003168 }
3169 WARN_ON(nr != cluster->nr);
Yan, Zhengefa56462010-05-16 10:49:59 -04003170out:
Yan, Zheng0257bb82009-09-24 09:17:31 -04003171 kfree(ra);
3172 return ret;
3173}
3174
3175static noinline_for_stack
3176int relocate_data_extent(struct inode *inode, struct btrfs_key *extent_key,
3177 struct file_extent_cluster *cluster)
3178{
3179 int ret;
3180
3181 if (cluster->nr > 0 && extent_key->objectid != cluster->end + 1) {
3182 ret = relocate_file_extent_cluster(inode, cluster);
3183 if (ret)
3184 return ret;
3185 cluster->nr = 0;
3186 }
3187
3188 if (!cluster->nr)
3189 cluster->start = extent_key->objectid;
3190 else
3191 BUG_ON(cluster->nr >= MAX_EXTENTS);
3192 cluster->end = extent_key->objectid + extent_key->offset - 1;
3193 cluster->boundary[cluster->nr] = extent_key->objectid;
3194 cluster->nr++;
3195
3196 if (cluster->nr >= MAX_EXTENTS) {
3197 ret = relocate_file_extent_cluster(inode, cluster);
3198 if (ret)
3199 return ret;
3200 cluster->nr = 0;
3201 }
3202 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003203}
3204
3205#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3206static int get_ref_objectid_v0(struct reloc_control *rc,
3207 struct btrfs_path *path,
3208 struct btrfs_key *extent_key,
3209 u64 *ref_objectid, int *path_change)
3210{
3211 struct btrfs_key key;
3212 struct extent_buffer *leaf;
3213 struct btrfs_extent_ref_v0 *ref0;
3214 int ret;
3215 int slot;
3216
3217 leaf = path->nodes[0];
3218 slot = path->slots[0];
3219 while (1) {
3220 if (slot >= btrfs_header_nritems(leaf)) {
3221 ret = btrfs_next_leaf(rc->extent_root, path);
3222 if (ret < 0)
3223 return ret;
3224 BUG_ON(ret > 0);
3225 leaf = path->nodes[0];
3226 slot = path->slots[0];
3227 if (path_change)
3228 *path_change = 1;
3229 }
3230 btrfs_item_key_to_cpu(leaf, &key, slot);
3231 if (key.objectid != extent_key->objectid)
3232 return -ENOENT;
3233
3234 if (key.type != BTRFS_EXTENT_REF_V0_KEY) {
3235 slot++;
3236 continue;
3237 }
3238 ref0 = btrfs_item_ptr(leaf, slot,
3239 struct btrfs_extent_ref_v0);
3240 *ref_objectid = btrfs_ref_objectid_v0(leaf, ref0);
3241 break;
3242 }
3243 return 0;
3244}
3245#endif
3246
3247/*
3248 * helper to add a tree block to the list.
3249 * the major work is getting the generation and level of the block
3250 */
3251static int add_tree_block(struct reloc_control *rc,
3252 struct btrfs_key *extent_key,
3253 struct btrfs_path *path,
3254 struct rb_root *blocks)
3255{
3256 struct extent_buffer *eb;
3257 struct btrfs_extent_item *ei;
3258 struct btrfs_tree_block_info *bi;
3259 struct tree_block *block;
3260 struct rb_node *rb_node;
3261 u32 item_size;
3262 int level = -1;
3263 int generation;
3264
3265 eb = path->nodes[0];
3266 item_size = btrfs_item_size_nr(eb, path->slots[0]);
3267
Josef Bacik3173a182013-03-07 14:22:04 -05003268 if (extent_key->type == BTRFS_METADATA_ITEM_KEY ||
3269 item_size >= sizeof(*ei) + sizeof(*bi)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003270 ei = btrfs_item_ptr(eb, path->slots[0],
3271 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05003272 if (extent_key->type == BTRFS_EXTENT_ITEM_KEY) {
3273 bi = (struct btrfs_tree_block_info *)(ei + 1);
3274 level = btrfs_tree_block_level(eb, bi);
3275 } else {
3276 level = (int)extent_key->offset;
3277 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003278 generation = btrfs_extent_generation(eb, ei);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003279 } else {
3280#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3281 u64 ref_owner;
3282 int ret;
3283
3284 BUG_ON(item_size != sizeof(struct btrfs_extent_item_v0));
3285 ret = get_ref_objectid_v0(rc, path, extent_key,
3286 &ref_owner, NULL);
Andi Kleen411fc6b2010-10-29 15:14:31 -04003287 if (ret < 0)
3288 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003289 BUG_ON(ref_owner >= BTRFS_MAX_LEVEL);
3290 level = (int)ref_owner;
3291 /* FIXME: get real generation */
3292 generation = 0;
3293#else
3294 BUG();
3295#endif
3296 }
3297
David Sterbab3b4aa72011-04-21 01:20:15 +02003298 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003299
3300 BUG_ON(level == -1);
3301
3302 block = kmalloc(sizeof(*block), GFP_NOFS);
3303 if (!block)
3304 return -ENOMEM;
3305
3306 block->bytenr = extent_key->objectid;
Josef Bacik3173a182013-03-07 14:22:04 -05003307 block->key.objectid = rc->extent_root->leafsize;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003308 block->key.offset = generation;
3309 block->level = level;
3310 block->key_ready = 0;
3311
3312 rb_node = tree_insert(blocks, block->bytenr, &block->rb_node);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -04003313 if (rb_node)
3314 backref_tree_panic(rb_node, -EEXIST, block->bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003315
3316 return 0;
3317}
3318
3319/*
3320 * helper to add tree blocks for backref of type BTRFS_SHARED_DATA_REF_KEY
3321 */
3322static int __add_tree_block(struct reloc_control *rc,
3323 u64 bytenr, u32 blocksize,
3324 struct rb_root *blocks)
3325{
3326 struct btrfs_path *path;
3327 struct btrfs_key key;
3328 int ret;
Josef Bacikaee68ee2013-06-13 13:50:23 -04003329 bool skinny = btrfs_fs_incompat(rc->extent_root->fs_info,
3330 SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003331
3332 if (tree_block_processed(bytenr, blocksize, rc))
3333 return 0;
3334
3335 if (tree_search(blocks, bytenr))
3336 return 0;
3337
3338 path = btrfs_alloc_path();
3339 if (!path)
3340 return -ENOMEM;
Josef Bacikaee68ee2013-06-13 13:50:23 -04003341again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003342 key.objectid = bytenr;
Josef Bacikaee68ee2013-06-13 13:50:23 -04003343 if (skinny) {
3344 key.type = BTRFS_METADATA_ITEM_KEY;
3345 key.offset = (u64)-1;
3346 } else {
3347 key.type = BTRFS_EXTENT_ITEM_KEY;
3348 key.offset = blocksize;
3349 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003350
3351 path->search_commit_root = 1;
3352 path->skip_locking = 1;
3353 ret = btrfs_search_slot(NULL, rc->extent_root, &key, path, 0, 0);
3354 if (ret < 0)
3355 goto out;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003356
Josef Bacikaee68ee2013-06-13 13:50:23 -04003357 if (ret > 0 && skinny) {
3358 if (path->slots[0]) {
3359 path->slots[0]--;
3360 btrfs_item_key_to_cpu(path->nodes[0], &key,
3361 path->slots[0]);
3362 if (key.objectid == bytenr &&
3363 (key.type == BTRFS_METADATA_ITEM_KEY ||
3364 (key.type == BTRFS_EXTENT_ITEM_KEY &&
3365 key.offset == blocksize)))
3366 ret = 0;
3367 }
3368
3369 if (ret) {
3370 skinny = false;
3371 btrfs_release_path(path);
3372 goto again;
3373 }
Josef Bacik3173a182013-03-07 14:22:04 -05003374 }
3375 BUG_ON(ret);
3376
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003377 ret = add_tree_block(rc, &key, path, blocks);
3378out:
3379 btrfs_free_path(path);
3380 return ret;
3381}
3382
3383/*
3384 * helper to check if the block use full backrefs for pointers in it
3385 */
3386static int block_use_full_backref(struct reloc_control *rc,
3387 struct extent_buffer *eb)
3388{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003389 u64 flags;
3390 int ret;
3391
3392 if (btrfs_header_flag(eb, BTRFS_HEADER_FLAG_RELOC) ||
3393 btrfs_header_backref_rev(eb) < BTRFS_MIXED_BACKREF_REV)
3394 return 1;
3395
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003396 ret = btrfs_lookup_extent_info(NULL, rc->extent_root,
Josef Bacik3173a182013-03-07 14:22:04 -05003397 eb->start, btrfs_header_level(eb), 1,
3398 NULL, &flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003399 BUG_ON(ret);
3400
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003401 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)
3402 ret = 1;
3403 else
3404 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003405 return ret;
3406}
3407
Josef Bacik0af3d002010-06-21 14:48:16 -04003408static int delete_block_group_cache(struct btrfs_fs_info *fs_info,
3409 struct inode *inode, u64 ino)
3410{
3411 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04003412 struct btrfs_root *root = fs_info->tree_root;
3413 struct btrfs_trans_handle *trans;
Josef Bacik0af3d002010-06-21 14:48:16 -04003414 int ret = 0;
3415
3416 if (inode)
3417 goto truncate;
3418
3419 key.objectid = ino;
3420 key.type = BTRFS_INODE_ITEM_KEY;
3421 key.offset = 0;
3422
3423 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
Tsutomu Itohf54fb852012-09-06 03:08:59 -06003424 if (IS_ERR(inode) || is_bad_inode(inode)) {
3425 if (!IS_ERR(inode))
Josef Bacik0af3d002010-06-21 14:48:16 -04003426 iput(inode);
3427 return -ENOENT;
3428 }
3429
3430truncate:
Miao Xie7b61cd92013-05-13 13:55:09 +00003431 ret = btrfs_check_trunc_cache_free_space(root,
3432 &fs_info->global_block_rsv);
3433 if (ret)
3434 goto out;
3435
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003436 trans = btrfs_join_transaction(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04003437 if (IS_ERR(trans)) {
Tsutomu Itoh3612b492011-01-25 02:51:38 +00003438 ret = PTR_ERR(trans);
Josef Bacik0af3d002010-06-21 14:48:16 -04003439 goto out;
3440 }
3441
Filipe David Borba Manana74514322013-09-20 14:46:51 +01003442 ret = btrfs_truncate_free_space_cache(root, trans, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003443
Josef Bacik0af3d002010-06-21 14:48:16 -04003444 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00003445 btrfs_btree_balance_dirty(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04003446out:
3447 iput(inode);
3448 return ret;
3449}
3450
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003451/*
3452 * helper to add tree blocks for backref of type BTRFS_EXTENT_DATA_REF_KEY
3453 * this function scans fs tree to find blocks reference the data extent
3454 */
3455static int find_data_references(struct reloc_control *rc,
3456 struct btrfs_key *extent_key,
3457 struct extent_buffer *leaf,
3458 struct btrfs_extent_data_ref *ref,
3459 struct rb_root *blocks)
3460{
3461 struct btrfs_path *path;
3462 struct tree_block *block;
3463 struct btrfs_root *root;
3464 struct btrfs_file_extent_item *fi;
3465 struct rb_node *rb_node;
3466 struct btrfs_key key;
3467 u64 ref_root;
3468 u64 ref_objectid;
3469 u64 ref_offset;
3470 u32 ref_count;
3471 u32 nritems;
3472 int err = 0;
3473 int added = 0;
3474 int counted;
3475 int ret;
3476
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003477 ref_root = btrfs_extent_data_ref_root(leaf, ref);
3478 ref_objectid = btrfs_extent_data_ref_objectid(leaf, ref);
3479 ref_offset = btrfs_extent_data_ref_offset(leaf, ref);
3480 ref_count = btrfs_extent_data_ref_count(leaf, ref);
3481
Josef Bacik0af3d002010-06-21 14:48:16 -04003482 /*
3483 * This is an extent belonging to the free space cache, lets just delete
3484 * it and redo the search.
3485 */
3486 if (ref_root == BTRFS_ROOT_TREE_OBJECTID) {
3487 ret = delete_block_group_cache(rc->extent_root->fs_info,
3488 NULL, ref_objectid);
3489 if (ret != -ENOENT)
3490 return ret;
3491 ret = 0;
3492 }
3493
3494 path = btrfs_alloc_path();
3495 if (!path)
3496 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04003497 path->reada = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -04003498
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003499 root = read_fs_root(rc->extent_root->fs_info, ref_root);
3500 if (IS_ERR(root)) {
3501 err = PTR_ERR(root);
3502 goto out;
3503 }
3504
3505 key.objectid = ref_objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003506 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng84850e82011-08-29 09:25:53 +08003507 if (ref_offset > ((u64)-1 << 32))
3508 key.offset = 0;
3509 else
3510 key.offset = ref_offset;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003511
3512 path->search_commit_root = 1;
3513 path->skip_locking = 1;
3514 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3515 if (ret < 0) {
3516 err = ret;
3517 goto out;
3518 }
3519
3520 leaf = path->nodes[0];
3521 nritems = btrfs_header_nritems(leaf);
3522 /*
3523 * the references in tree blocks that use full backrefs
3524 * are not counted in
3525 */
3526 if (block_use_full_backref(rc, leaf))
3527 counted = 0;
3528 else
3529 counted = 1;
3530 rb_node = tree_search(blocks, leaf->start);
3531 if (rb_node) {
3532 if (counted)
3533 added = 1;
3534 else
3535 path->slots[0] = nritems;
3536 }
3537
3538 while (ref_count > 0) {
3539 while (path->slots[0] >= nritems) {
3540 ret = btrfs_next_leaf(root, path);
3541 if (ret < 0) {
3542 err = ret;
3543 goto out;
3544 }
3545 if (ret > 0) {
3546 WARN_ON(1);
3547 goto out;
3548 }
3549
3550 leaf = path->nodes[0];
3551 nritems = btrfs_header_nritems(leaf);
3552 added = 0;
3553
3554 if (block_use_full_backref(rc, leaf))
3555 counted = 0;
3556 else
3557 counted = 1;
3558 rb_node = tree_search(blocks, leaf->start);
3559 if (rb_node) {
3560 if (counted)
3561 added = 1;
3562 else
3563 path->slots[0] = nritems;
3564 }
3565 }
3566
3567 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
3568 if (key.objectid != ref_objectid ||
3569 key.type != BTRFS_EXTENT_DATA_KEY) {
3570 WARN_ON(1);
3571 break;
3572 }
3573
3574 fi = btrfs_item_ptr(leaf, path->slots[0],
3575 struct btrfs_file_extent_item);
3576
3577 if (btrfs_file_extent_type(leaf, fi) ==
3578 BTRFS_FILE_EXTENT_INLINE)
3579 goto next;
3580
3581 if (btrfs_file_extent_disk_bytenr(leaf, fi) !=
3582 extent_key->objectid)
3583 goto next;
3584
3585 key.offset -= btrfs_file_extent_offset(leaf, fi);
3586 if (key.offset != ref_offset)
3587 goto next;
3588
3589 if (counted)
3590 ref_count--;
3591 if (added)
3592 goto next;
3593
3594 if (!tree_block_processed(leaf->start, leaf->len, rc)) {
3595 block = kmalloc(sizeof(*block), GFP_NOFS);
3596 if (!block) {
3597 err = -ENOMEM;
3598 break;
3599 }
3600 block->bytenr = leaf->start;
3601 btrfs_item_key_to_cpu(leaf, &block->key, 0);
3602 block->level = 0;
3603 block->key_ready = 1;
3604 rb_node = tree_insert(blocks, block->bytenr,
3605 &block->rb_node);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -04003606 if (rb_node)
3607 backref_tree_panic(rb_node, -EEXIST,
3608 block->bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003609 }
3610 if (counted)
3611 added = 1;
3612 else
3613 path->slots[0] = nritems;
3614next:
3615 path->slots[0]++;
3616
3617 }
3618out:
3619 btrfs_free_path(path);
3620 return err;
3621}
3622
3623/*
Liu Bo2c016dc2012-12-26 15:32:17 +08003624 * helper to find all tree blocks that reference a given data extent
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003625 */
3626static noinline_for_stack
3627int add_data_references(struct reloc_control *rc,
3628 struct btrfs_key *extent_key,
3629 struct btrfs_path *path,
3630 struct rb_root *blocks)
3631{
3632 struct btrfs_key key;
3633 struct extent_buffer *eb;
3634 struct btrfs_extent_data_ref *dref;
3635 struct btrfs_extent_inline_ref *iref;
3636 unsigned long ptr;
3637 unsigned long end;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003638 u32 blocksize = btrfs_level_size(rc->extent_root, 0);
Filipe David Borba Manana647f63b2013-07-13 12:25:15 +01003639 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003640 int err = 0;
3641
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003642 eb = path->nodes[0];
3643 ptr = btrfs_item_ptr_offset(eb, path->slots[0]);
3644 end = ptr + btrfs_item_size_nr(eb, path->slots[0]);
3645#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3646 if (ptr + sizeof(struct btrfs_extent_item_v0) == end)
3647 ptr = end;
3648 else
3649#endif
3650 ptr += sizeof(struct btrfs_extent_item);
3651
3652 while (ptr < end) {
3653 iref = (struct btrfs_extent_inline_ref *)ptr;
3654 key.type = btrfs_extent_inline_ref_type(eb, iref);
3655 if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
3656 key.offset = btrfs_extent_inline_ref_offset(eb, iref);
3657 ret = __add_tree_block(rc, key.offset, blocksize,
3658 blocks);
3659 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
3660 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
3661 ret = find_data_references(rc, extent_key,
3662 eb, dref, blocks);
3663 } else {
3664 BUG();
3665 }
Filipe David Borba Manana647f63b2013-07-13 12:25:15 +01003666 if (ret) {
3667 err = ret;
3668 goto out;
3669 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003670 ptr += btrfs_extent_inline_ref_size(key.type);
3671 }
3672 WARN_ON(ptr > end);
3673
3674 while (1) {
3675 cond_resched();
3676 eb = path->nodes[0];
3677 if (path->slots[0] >= btrfs_header_nritems(eb)) {
3678 ret = btrfs_next_leaf(rc->extent_root, path);
3679 if (ret < 0) {
3680 err = ret;
3681 break;
3682 }
3683 if (ret > 0)
3684 break;
3685 eb = path->nodes[0];
3686 }
3687
3688 btrfs_item_key_to_cpu(eb, &key, path->slots[0]);
3689 if (key.objectid != extent_key->objectid)
3690 break;
3691
3692#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3693 if (key.type == BTRFS_SHARED_DATA_REF_KEY ||
3694 key.type == BTRFS_EXTENT_REF_V0_KEY) {
3695#else
3696 BUG_ON(key.type == BTRFS_EXTENT_REF_V0_KEY);
3697 if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
3698#endif
3699 ret = __add_tree_block(rc, key.offset, blocksize,
3700 blocks);
3701 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
3702 dref = btrfs_item_ptr(eb, path->slots[0],
3703 struct btrfs_extent_data_ref);
3704 ret = find_data_references(rc, extent_key,
3705 eb, dref, blocks);
3706 } else {
3707 ret = 0;
3708 }
3709 if (ret) {
3710 err = ret;
3711 break;
3712 }
3713 path->slots[0]++;
3714 }
Filipe David Borba Manana647f63b2013-07-13 12:25:15 +01003715out:
David Sterbab3b4aa72011-04-21 01:20:15 +02003716 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003717 if (err)
3718 free_block_list(blocks);
3719 return err;
3720}
3721
3722/*
Liu Bo2c016dc2012-12-26 15:32:17 +08003723 * helper to find next unprocessed extent
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003724 */
3725static noinline_for_stack
3726int find_next_extent(struct btrfs_trans_handle *trans,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003727 struct reloc_control *rc, struct btrfs_path *path,
3728 struct btrfs_key *extent_key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003729{
3730 struct btrfs_key key;
3731 struct extent_buffer *leaf;
3732 u64 start, end, last;
3733 int ret;
3734
3735 last = rc->block_group->key.objectid + rc->block_group->key.offset;
3736 while (1) {
3737 cond_resched();
3738 if (rc->search_start >= last) {
3739 ret = 1;
3740 break;
3741 }
3742
3743 key.objectid = rc->search_start;
3744 key.type = BTRFS_EXTENT_ITEM_KEY;
3745 key.offset = 0;
3746
3747 path->search_commit_root = 1;
3748 path->skip_locking = 1;
3749 ret = btrfs_search_slot(NULL, rc->extent_root, &key, path,
3750 0, 0);
3751 if (ret < 0)
3752 break;
3753next:
3754 leaf = path->nodes[0];
3755 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
3756 ret = btrfs_next_leaf(rc->extent_root, path);
3757 if (ret != 0)
3758 break;
3759 leaf = path->nodes[0];
3760 }
3761
3762 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
3763 if (key.objectid >= last) {
3764 ret = 1;
3765 break;
3766 }
3767
Josef Bacik3173a182013-03-07 14:22:04 -05003768 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
3769 key.type != BTRFS_METADATA_ITEM_KEY) {
3770 path->slots[0]++;
3771 goto next;
3772 }
3773
3774 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003775 key.objectid + key.offset <= rc->search_start) {
3776 path->slots[0]++;
3777 goto next;
3778 }
3779
Josef Bacik3173a182013-03-07 14:22:04 -05003780 if (key.type == BTRFS_METADATA_ITEM_KEY &&
3781 key.objectid + rc->extent_root->leafsize <=
3782 rc->search_start) {
3783 path->slots[0]++;
3784 goto next;
3785 }
3786
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003787 ret = find_first_extent_bit(&rc->processed_blocks,
3788 key.objectid, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04003789 EXTENT_DIRTY, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003790
3791 if (ret == 0 && start <= key.objectid) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003792 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003793 rc->search_start = end + 1;
3794 } else {
Josef Bacik3173a182013-03-07 14:22:04 -05003795 if (key.type == BTRFS_EXTENT_ITEM_KEY)
3796 rc->search_start = key.objectid + key.offset;
3797 else
3798 rc->search_start = key.objectid +
3799 rc->extent_root->leafsize;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003800 memcpy(extent_key, &key, sizeof(key));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003801 return 0;
3802 }
3803 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003804 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003805 return ret;
3806}
3807
3808static void set_reloc_control(struct reloc_control *rc)
3809{
3810 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
Chris Mason75857172011-06-13 20:00:16 -04003811
3812 mutex_lock(&fs_info->reloc_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003813 fs_info->reloc_ctl = rc;
Chris Mason75857172011-06-13 20:00:16 -04003814 mutex_unlock(&fs_info->reloc_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003815}
3816
3817static void unset_reloc_control(struct reloc_control *rc)
3818{
3819 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
Chris Mason75857172011-06-13 20:00:16 -04003820
3821 mutex_lock(&fs_info->reloc_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003822 fs_info->reloc_ctl = NULL;
Chris Mason75857172011-06-13 20:00:16 -04003823 mutex_unlock(&fs_info->reloc_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003824}
3825
3826static int check_extent_flags(u64 flags)
3827{
3828 if ((flags & BTRFS_EXTENT_FLAG_DATA) &&
3829 (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
3830 return 1;
3831 if (!(flags & BTRFS_EXTENT_FLAG_DATA) &&
3832 !(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
3833 return 1;
3834 if ((flags & BTRFS_EXTENT_FLAG_DATA) &&
3835 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
3836 return 1;
3837 return 0;
3838}
3839
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003840static noinline_for_stack
3841int prepare_to_relocate(struct reloc_control *rc)
3842{
3843 struct btrfs_trans_handle *trans;
3844 int ret;
3845
Miao Xie66d8f3d2012-09-06 04:02:28 -06003846 rc->block_rsv = btrfs_alloc_block_rsv(rc->extent_root,
3847 BTRFS_BLOCK_RSV_TEMP);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003848 if (!rc->block_rsv)
3849 return -ENOMEM;
3850
3851 /*
3852 * reserve some space for creating reloc trees.
3853 * btrfs_init_reloc_root will use them when there
3854 * is no reservation in transaction handle.
3855 */
Josef Bacik4a92b1b2011-08-30 12:34:28 -04003856 ret = btrfs_block_rsv_add(rc->extent_root, rc->block_rsv,
Miao Xie08e007d2012-10-16 11:33:38 +00003857 rc->extent_root->nodesize * 256,
3858 BTRFS_RESERVE_FLUSH_ALL);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003859 if (ret)
3860 return ret;
3861
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003862 memset(&rc->cluster, 0, sizeof(rc->cluster));
3863 rc->search_start = rc->block_group->key.objectid;
3864 rc->extents_found = 0;
3865 rc->nodes_relocated = 0;
3866 rc->merging_rsv_size = 0;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003867
3868 rc->create_reloc_tree = 1;
3869 set_reloc_control(rc);
3870
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003871 trans = btrfs_join_transaction(rc->extent_root);
Liu Bo28818942013-03-04 16:25:39 +00003872 if (IS_ERR(trans)) {
3873 unset_reloc_control(rc);
3874 /*
3875 * extent tree is not a ref_cow tree and has no reloc_root to
3876 * cleanup. And callers are responsible to free the above
3877 * block rsv.
3878 */
3879 return PTR_ERR(trans);
3880 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003881 btrfs_commit_transaction(trans, rc->extent_root);
3882 return 0;
3883}
Yan, Zheng76dda932009-09-21 16:00:26 -04003884
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003885static noinline_for_stack int relocate_block_group(struct reloc_control *rc)
3886{
3887 struct rb_root blocks = RB_ROOT;
3888 struct btrfs_key key;
3889 struct btrfs_trans_handle *trans = NULL;
3890 struct btrfs_path *path;
3891 struct btrfs_extent_item *ei;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003892 u64 flags;
3893 u32 item_size;
3894 int ret;
3895 int err = 0;
Chris Masonc87f08c2011-02-16 13:57:04 -05003896 int progress = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003897
3898 path = btrfs_alloc_path();
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003899 if (!path)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003900 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04003901 path->reada = 1;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003902
3903 ret = prepare_to_relocate(rc);
3904 if (ret) {
3905 err = ret;
3906 goto out_free;
Jiri Slaby2423fdf2010-01-06 16:57:22 +00003907 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003908
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003909 while (1) {
Chris Masonc87f08c2011-02-16 13:57:04 -05003910 progress++;
Yan, Zhenga22285a2010-05-16 10:48:46 -04003911 trans = btrfs_start_transaction(rc->extent_root, 0);
Liu Bo0f788c52013-03-04 16:25:40 +00003912 if (IS_ERR(trans)) {
3913 err = PTR_ERR(trans);
3914 trans = NULL;
3915 break;
3916 }
Chris Masonc87f08c2011-02-16 13:57:04 -05003917restart:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003918 if (update_backref_cache(trans, &rc->backref_cache)) {
3919 btrfs_end_transaction(trans, rc->extent_root);
3920 continue;
3921 }
3922
3923 ret = find_next_extent(trans, rc, path, &key);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003924 if (ret < 0)
3925 err = ret;
3926 if (ret != 0)
3927 break;
3928
3929 rc->extents_found++;
3930
3931 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3932 struct btrfs_extent_item);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003933 item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003934 if (item_size >= sizeof(*ei)) {
3935 flags = btrfs_extent_flags(path->nodes[0], ei);
3936 ret = check_extent_flags(flags);
3937 BUG_ON(ret);
3938
3939 } else {
3940#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3941 u64 ref_owner;
3942 int path_change = 0;
3943
3944 BUG_ON(item_size !=
3945 sizeof(struct btrfs_extent_item_v0));
3946 ret = get_ref_objectid_v0(rc, path, &key, &ref_owner,
3947 &path_change);
3948 if (ref_owner < BTRFS_FIRST_FREE_OBJECTID)
3949 flags = BTRFS_EXTENT_FLAG_TREE_BLOCK;
3950 else
3951 flags = BTRFS_EXTENT_FLAG_DATA;
3952
3953 if (path_change) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003954 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003955
3956 path->search_commit_root = 1;
3957 path->skip_locking = 1;
3958 ret = btrfs_search_slot(NULL, rc->extent_root,
3959 &key, path, 0, 0);
3960 if (ret < 0) {
3961 err = ret;
3962 break;
3963 }
3964 BUG_ON(ret > 0);
3965 }
3966#else
3967 BUG();
3968#endif
3969 }
3970
3971 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
3972 ret = add_tree_block(rc, &key, path, &blocks);
3973 } else if (rc->stage == UPDATE_DATA_PTRS &&
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003974 (flags & BTRFS_EXTENT_FLAG_DATA)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003975 ret = add_data_references(rc, &key, path, &blocks);
3976 } else {
David Sterbab3b4aa72011-04-21 01:20:15 +02003977 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003978 ret = 0;
3979 }
3980 if (ret < 0) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003981 err = ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003982 break;
3983 }
3984
3985 if (!RB_EMPTY_ROOT(&blocks)) {
3986 ret = relocate_tree_blocks(trans, rc, &blocks);
3987 if (ret < 0) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003988 if (ret != -EAGAIN) {
3989 err = ret;
3990 break;
3991 }
3992 rc->extents_found--;
3993 rc->search_start = key.objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003994 }
3995 }
3996
Josef Bacik36ba0222011-10-18 12:15:48 -04003997 ret = btrfs_block_rsv_check(rc->extent_root, rc->block_rsv, 5);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003998 if (ret < 0) {
Daniel J Blueman7654b722012-04-27 12:41:46 -04003999 if (ret != -ENOSPC) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004000 err = ret;
4001 WARN_ON(1);
4002 break;
4003 }
4004 rc->commit_transaction = 1;
4005 }
4006
4007 if (rc->commit_transaction) {
4008 rc->commit_transaction = 0;
4009 ret = btrfs_commit_transaction(trans, rc->extent_root);
4010 BUG_ON(ret);
4011 } else {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004012 btrfs_end_transaction_throttle(trans, rc->extent_root);
Liu Bob53d3f52012-11-14 14:34:34 +00004013 btrfs_btree_balance_dirty(rc->extent_root);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004014 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004015 trans = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004016
4017 if (rc->stage == MOVE_DATA_EXTENTS &&
4018 (flags & BTRFS_EXTENT_FLAG_DATA)) {
4019 rc->found_file_extent = 1;
Yan, Zheng0257bb82009-09-24 09:17:31 -04004020 ret = relocate_data_extent(rc->data_inode,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004021 &key, &rc->cluster);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004022 if (ret < 0) {
4023 err = ret;
4024 break;
4025 }
4026 }
4027 }
Chris Masonc87f08c2011-02-16 13:57:04 -05004028 if (trans && progress && err == -ENOSPC) {
4029 ret = btrfs_force_chunk_alloc(trans, rc->extent_root,
4030 rc->block_group->flags);
4031 if (ret == 0) {
4032 err = 0;
4033 progress = 0;
4034 goto restart;
4035 }
4036 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004037
David Sterbab3b4aa72011-04-21 01:20:15 +02004038 btrfs_release_path(path);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004039 clear_extent_bits(&rc->processed_blocks, 0, (u64)-1, EXTENT_DIRTY,
4040 GFP_NOFS);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004041
4042 if (trans) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004043 btrfs_end_transaction_throttle(trans, rc->extent_root);
Liu Bob53d3f52012-11-14 14:34:34 +00004044 btrfs_btree_balance_dirty(rc->extent_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004045 }
4046
Yan, Zheng0257bb82009-09-24 09:17:31 -04004047 if (!err) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004048 ret = relocate_file_extent_cluster(rc->data_inode,
4049 &rc->cluster);
Yan, Zheng0257bb82009-09-24 09:17:31 -04004050 if (ret < 0)
4051 err = ret;
4052 }
4053
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004054 rc->create_reloc_tree = 0;
4055 set_reloc_control(rc);
Yan, Zheng0257bb82009-09-24 09:17:31 -04004056
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004057 backref_cache_cleanup(&rc->backref_cache);
4058 btrfs_block_rsv_release(rc->extent_root, rc->block_rsv, (u64)-1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004059
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004060 err = prepare_to_merge(rc, err);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004061
4062 merge_reloc_roots(rc);
4063
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004064 rc->merge_reloc_tree = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004065 unset_reloc_control(rc);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004066 btrfs_block_rsv_release(rc->extent_root, rc->block_rsv, (u64)-1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004067
4068 /* get rid of pinned extents */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004069 trans = btrfs_join_transaction(rc->extent_root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004070 if (IS_ERR(trans))
4071 err = PTR_ERR(trans);
4072 else
4073 btrfs_commit_transaction(trans, rc->extent_root);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004074out_free:
4075 btrfs_free_block_rsv(rc->extent_root, rc->block_rsv);
4076 btrfs_free_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004077 return err;
4078}
4079
4080static int __insert_orphan_inode(struct btrfs_trans_handle *trans,
Yan, Zheng0257bb82009-09-24 09:17:31 -04004081 struct btrfs_root *root, u64 objectid)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004082{
4083 struct btrfs_path *path;
4084 struct btrfs_inode_item *item;
4085 struct extent_buffer *leaf;
4086 int ret;
4087
4088 path = btrfs_alloc_path();
4089 if (!path)
4090 return -ENOMEM;
4091
4092 ret = btrfs_insert_empty_inode(trans, root, path, objectid);
4093 if (ret)
4094 goto out;
4095
4096 leaf = path->nodes[0];
4097 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_inode_item);
4098 memset_extent_buffer(leaf, 0, (unsigned long)item, sizeof(*item));
4099 btrfs_set_inode_generation(leaf, item, 1);
Yan, Zheng0257bb82009-09-24 09:17:31 -04004100 btrfs_set_inode_size(leaf, item, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004101 btrfs_set_inode_mode(leaf, item, S_IFREG | 0600);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004102 btrfs_set_inode_flags(leaf, item, BTRFS_INODE_NOCOMPRESS |
4103 BTRFS_INODE_PREALLOC);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004104 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02004105 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004106out:
4107 btrfs_free_path(path);
4108 return ret;
4109}
4110
4111/*
4112 * helper to create inode for data relocation.
4113 * the inode is in data relocation tree and its link count is 0
4114 */
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004115static noinline_for_stack
4116struct inode *create_reloc_inode(struct btrfs_fs_info *fs_info,
4117 struct btrfs_block_group_cache *group)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004118{
4119 struct inode *inode = NULL;
4120 struct btrfs_trans_handle *trans;
4121 struct btrfs_root *root;
4122 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004123 u64 objectid = BTRFS_FIRST_FREE_OBJECTID;
4124 int err = 0;
4125
4126 root = read_fs_root(fs_info, BTRFS_DATA_RELOC_TREE_OBJECTID);
4127 if (IS_ERR(root))
4128 return ERR_CAST(root);
4129
Yan, Zhenga22285a2010-05-16 10:48:46 -04004130 trans = btrfs_start_transaction(root, 6);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004131 if (IS_ERR(trans))
4132 return ERR_CAST(trans);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004133
Li Zefan581bb052011-04-20 10:06:11 +08004134 err = btrfs_find_free_objectid(root, &objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004135 if (err)
4136 goto out;
4137
Yan, Zheng0257bb82009-09-24 09:17:31 -04004138 err = __insert_orphan_inode(trans, root, objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004139 BUG_ON(err);
4140
4141 key.objectid = objectid;
4142 key.type = BTRFS_INODE_ITEM_KEY;
4143 key.offset = 0;
Josef Bacik73f73412009-12-04 17:38:27 +00004144 inode = btrfs_iget(root->fs_info->sb, &key, root, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004145 BUG_ON(IS_ERR(inode) || is_bad_inode(inode));
4146 BTRFS_I(inode)->index_cnt = group->key.objectid;
4147
4148 err = btrfs_orphan_add(trans, inode);
4149out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004150 btrfs_end_transaction(trans, root);
Liu Bob53d3f52012-11-14 14:34:34 +00004151 btrfs_btree_balance_dirty(root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004152 if (err) {
4153 if (inode)
4154 iput(inode);
4155 inode = ERR_PTR(err);
4156 }
4157 return inode;
4158}
4159
Josef Bacika9995ee2013-05-31 13:04:36 -04004160static struct reloc_control *alloc_reloc_control(struct btrfs_fs_info *fs_info)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004161{
4162 struct reloc_control *rc;
4163
4164 rc = kzalloc(sizeof(*rc), GFP_NOFS);
4165 if (!rc)
4166 return NULL;
4167
4168 INIT_LIST_HEAD(&rc->reloc_roots);
4169 backref_cache_init(&rc->backref_cache);
4170 mapping_tree_init(&rc->reloc_root_tree);
Josef Bacika9995ee2013-05-31 13:04:36 -04004171 extent_io_tree_init(&rc->processed_blocks,
4172 fs_info->btree_inode->i_mapping);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004173 return rc;
4174}
4175
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004176/*
4177 * function to relocate all extents in a block group.
4178 */
4179int btrfs_relocate_block_group(struct btrfs_root *extent_root, u64 group_start)
4180{
4181 struct btrfs_fs_info *fs_info = extent_root->fs_info;
4182 struct reloc_control *rc;
Josef Bacik0af3d002010-06-21 14:48:16 -04004183 struct inode *inode;
4184 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004185 int ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004186 int rw = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004187 int err = 0;
4188
Josef Bacika9995ee2013-05-31 13:04:36 -04004189 rc = alloc_reloc_control(fs_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004190 if (!rc)
4191 return -ENOMEM;
4192
Yan, Zhengf0486c62010-05-16 10:46:25 -04004193 rc->extent_root = extent_root;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004194
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004195 rc->block_group = btrfs_lookup_block_group(fs_info, group_start);
4196 BUG_ON(!rc->block_group);
4197
Yan, Zhengf0486c62010-05-16 10:46:25 -04004198 if (!rc->block_group->ro) {
4199 ret = btrfs_set_block_group_ro(extent_root, rc->block_group);
4200 if (ret) {
4201 err = ret;
4202 goto out;
4203 }
4204 rw = 1;
4205 }
4206
Josef Bacik0af3d002010-06-21 14:48:16 -04004207 path = btrfs_alloc_path();
4208 if (!path) {
4209 err = -ENOMEM;
4210 goto out;
4211 }
4212
4213 inode = lookup_free_space_inode(fs_info->tree_root, rc->block_group,
4214 path);
4215 btrfs_free_path(path);
4216
4217 if (!IS_ERR(inode))
4218 ret = delete_block_group_cache(fs_info, inode, 0);
4219 else
4220 ret = PTR_ERR(inode);
4221
4222 if (ret && ret != -ENOENT) {
4223 err = ret;
4224 goto out;
4225 }
4226
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004227 rc->data_inode = create_reloc_inode(fs_info, rc->block_group);
4228 if (IS_ERR(rc->data_inode)) {
4229 err = PTR_ERR(rc->data_inode);
4230 rc->data_inode = NULL;
4231 goto out;
4232 }
4233
4234 printk(KERN_INFO "btrfs: relocating block group %llu flags %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02004235 rc->block_group->key.objectid, rc->block_group->flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004236
Miao Xieeb73c1b2013-05-15 07:48:22 +00004237 ret = btrfs_start_all_delalloc_inodes(fs_info, 0);
Miao Xie8ccf6f192012-10-25 09:28:04 +00004238 if (ret < 0) {
4239 err = ret;
4240 goto out;
4241 }
Josef Bacikf0de1812013-09-17 10:55:51 -04004242 btrfs_wait_all_ordered_extents(fs_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004243
4244 while (1) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004245 mutex_lock(&fs_info->cleaner_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004246 ret = relocate_block_group(rc);
Yan, Zheng76dda932009-09-21 16:00:26 -04004247 mutex_unlock(&fs_info->cleaner_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004248 if (ret < 0) {
4249 err = ret;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004250 goto out;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004251 }
4252
4253 if (rc->extents_found == 0)
4254 break;
4255
4256 printk(KERN_INFO "btrfs: found %llu extents\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02004257 rc->extents_found);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004258
4259 if (rc->stage == MOVE_DATA_EXTENTS && rc->found_file_extent) {
4260 btrfs_wait_ordered_range(rc->data_inode, 0, (u64)-1);
4261 invalidate_mapping_pages(rc->data_inode->i_mapping,
4262 0, -1);
4263 rc->stage = UPDATE_DATA_PTRS;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004264 }
4265 }
4266
Yan, Zheng0257bb82009-09-24 09:17:31 -04004267 filemap_write_and_wait_range(fs_info->btree_inode->i_mapping,
4268 rc->block_group->key.objectid,
4269 rc->block_group->key.objectid +
4270 rc->block_group->key.offset - 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004271
4272 WARN_ON(rc->block_group->pinned > 0);
4273 WARN_ON(rc->block_group->reserved > 0);
4274 WARN_ON(btrfs_block_group_used(&rc->block_group->item) > 0);
4275out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04004276 if (err && rw)
4277 btrfs_set_block_group_rw(extent_root, rc->block_group);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004278 iput(rc->data_inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004279 btrfs_put_block_group(rc->block_group);
4280 kfree(rc);
4281 return err;
4282}
4283
Yan, Zheng76dda932009-09-21 16:00:26 -04004284static noinline_for_stack int mark_garbage_root(struct btrfs_root *root)
4285{
4286 struct btrfs_trans_handle *trans;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004287 int ret, err;
Yan, Zheng76dda932009-09-21 16:00:26 -04004288
Yan, Zhenga22285a2010-05-16 10:48:46 -04004289 trans = btrfs_start_transaction(root->fs_info->tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004290 if (IS_ERR(trans))
4291 return PTR_ERR(trans);
Yan, Zheng76dda932009-09-21 16:00:26 -04004292
4293 memset(&root->root_item.drop_progress, 0,
4294 sizeof(root->root_item.drop_progress));
4295 root->root_item.drop_level = 0;
4296 btrfs_set_root_refs(&root->root_item, 0);
4297 ret = btrfs_update_root(trans, root->fs_info->tree_root,
4298 &root->root_key, &root->root_item);
Yan, Zheng76dda932009-09-21 16:00:26 -04004299
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004300 err = btrfs_end_transaction(trans, root->fs_info->tree_root);
4301 if (err)
4302 return err;
4303 return ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04004304}
4305
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004306/*
4307 * recover relocation interrupted by system crash.
4308 *
4309 * this function resumes merging reloc trees with corresponding fs trees.
4310 * this is important for keeping the sharing of tree blocks
4311 */
4312int btrfs_recover_relocation(struct btrfs_root *root)
4313{
4314 LIST_HEAD(reloc_roots);
4315 struct btrfs_key key;
4316 struct btrfs_root *fs_root;
4317 struct btrfs_root *reloc_root;
4318 struct btrfs_path *path;
4319 struct extent_buffer *leaf;
4320 struct reloc_control *rc = NULL;
4321 struct btrfs_trans_handle *trans;
4322 int ret;
4323 int err = 0;
4324
4325 path = btrfs_alloc_path();
4326 if (!path)
4327 return -ENOMEM;
Josef Bacik026fd312011-05-13 10:32:11 -04004328 path->reada = -1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004329
4330 key.objectid = BTRFS_TREE_RELOC_OBJECTID;
4331 key.type = BTRFS_ROOT_ITEM_KEY;
4332 key.offset = (u64)-1;
4333
4334 while (1) {
4335 ret = btrfs_search_slot(NULL, root->fs_info->tree_root, &key,
4336 path, 0, 0);
4337 if (ret < 0) {
4338 err = ret;
4339 goto out;
4340 }
4341 if (ret > 0) {
4342 if (path->slots[0] == 0)
4343 break;
4344 path->slots[0]--;
4345 }
4346 leaf = path->nodes[0];
4347 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02004348 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004349
4350 if (key.objectid != BTRFS_TREE_RELOC_OBJECTID ||
4351 key.type != BTRFS_ROOT_ITEM_KEY)
4352 break;
4353
Miao Xiecb517ea2013-05-15 07:48:19 +00004354 reloc_root = btrfs_read_fs_root(root, &key);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004355 if (IS_ERR(reloc_root)) {
4356 err = PTR_ERR(reloc_root);
4357 goto out;
4358 }
4359
4360 list_add(&reloc_root->root_list, &reloc_roots);
4361
4362 if (btrfs_root_refs(&reloc_root->root_item) > 0) {
4363 fs_root = read_fs_root(root->fs_info,
4364 reloc_root->root_key.offset);
4365 if (IS_ERR(fs_root)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004366 ret = PTR_ERR(fs_root);
4367 if (ret != -ENOENT) {
4368 err = ret;
4369 goto out;
4370 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004371 ret = mark_garbage_root(reloc_root);
4372 if (ret < 0) {
4373 err = ret;
4374 goto out;
4375 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004376 }
4377 }
4378
4379 if (key.offset == 0)
4380 break;
4381
4382 key.offset--;
4383 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004384 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004385
4386 if (list_empty(&reloc_roots))
4387 goto out;
4388
Josef Bacika9995ee2013-05-31 13:04:36 -04004389 rc = alloc_reloc_control(root->fs_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004390 if (!rc) {
4391 err = -ENOMEM;
4392 goto out;
4393 }
4394
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004395 rc->extent_root = root->fs_info->extent_root;
4396
4397 set_reloc_control(rc);
4398
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004399 trans = btrfs_join_transaction(rc->extent_root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004400 if (IS_ERR(trans)) {
4401 unset_reloc_control(rc);
4402 err = PTR_ERR(trans);
4403 goto out_free;
4404 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004405
4406 rc->merge_reloc_tree = 1;
4407
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004408 while (!list_empty(&reloc_roots)) {
4409 reloc_root = list_entry(reloc_roots.next,
4410 struct btrfs_root, root_list);
4411 list_del(&reloc_root->root_list);
4412
4413 if (btrfs_root_refs(&reloc_root->root_item) == 0) {
4414 list_add_tail(&reloc_root->root_list,
4415 &rc->reloc_roots);
4416 continue;
4417 }
4418
4419 fs_root = read_fs_root(root->fs_info,
4420 reloc_root->root_key.offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004421 if (IS_ERR(fs_root)) {
4422 err = PTR_ERR(fs_root);
4423 goto out_free;
4424 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004425
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04004426 err = __add_reloc_root(reloc_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004427 BUG_ON(err < 0); /* -ENOMEM or logic error */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004428 fs_root->reloc_root = reloc_root;
4429 }
4430
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004431 err = btrfs_commit_transaction(trans, rc->extent_root);
4432 if (err)
4433 goto out_free;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004434
4435 merge_reloc_roots(rc);
4436
4437 unset_reloc_control(rc);
4438
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004439 trans = btrfs_join_transaction(rc->extent_root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004440 if (IS_ERR(trans))
4441 err = PTR_ERR(trans);
4442 else
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004443 err = btrfs_commit_transaction(trans, rc->extent_root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004444out_free:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004445 kfree(rc);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004446out:
Liu Boaca1bba2013-03-04 16:25:37 +00004447 if (!list_empty(&reloc_roots))
4448 free_reloc_roots(&reloc_roots);
4449
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004450 btrfs_free_path(path);
4451
4452 if (err == 0) {
4453 /* cleanup orphan inode in data relocation tree */
4454 fs_root = read_fs_root(root->fs_info,
4455 BTRFS_DATA_RELOC_TREE_OBJECTID);
4456 if (IS_ERR(fs_root))
4457 err = PTR_ERR(fs_root);
Miao Xied7ce5842010-02-02 08:46:44 +00004458 else
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004459 err = btrfs_orphan_cleanup(fs_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004460 }
4461 return err;
4462}
4463
4464/*
4465 * helper to add ordered checksum for data relocation.
4466 *
4467 * cloning checksum properly handles the nodatasum extents.
4468 * it also saves CPU time to re-calculate the checksum.
4469 */
4470int btrfs_reloc_clone_csums(struct inode *inode, u64 file_pos, u64 len)
4471{
4472 struct btrfs_ordered_sum *sums;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004473 struct btrfs_ordered_extent *ordered;
4474 struct btrfs_root *root = BTRFS_I(inode)->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004475 int ret;
4476 u64 disk_bytenr;
Josef Bacik4577b012013-09-27 09:33:09 -04004477 u64 new_bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004478 LIST_HEAD(list);
4479
4480 ordered = btrfs_lookup_ordered_extent(inode, file_pos);
4481 BUG_ON(ordered->file_offset != file_pos || ordered->len != len);
4482
4483 disk_bytenr = file_pos + BTRFS_I(inode)->index_cnt;
4484 ret = btrfs_lookup_csums_range(root->fs_info->csum_root, disk_bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01004485 disk_bytenr + len - 1, &list, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004486 if (ret)
4487 goto out;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004488
4489 while (!list_empty(&list)) {
4490 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
4491 list_del_init(&sums->list);
4492
Josef Bacik4577b012013-09-27 09:33:09 -04004493 /*
4494 * We need to offset the new_bytenr based on where the csum is.
4495 * We need to do this because we will read in entire prealloc
4496 * extents but we may have written to say the middle of the
4497 * prealloc extent, so we need to make sure the csum goes with
4498 * the right disk offset.
4499 *
4500 * We can do this because the data reloc inode refers strictly
4501 * to the on disk bytes, so we don't have to worry about
4502 * disk_len vs real len like with real inodes since it's all
4503 * disk length.
4504 */
4505 new_bytenr = ordered->start + (sums->bytenr - disk_bytenr);
4506 sums->bytenr = new_bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004507
4508 btrfs_add_ordered_sum(inode, ordered, sums);
4509 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004510out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004511 btrfs_put_ordered_extent(ordered);
Andi Kleen411fc6b2010-10-29 15:14:31 -04004512 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004513}
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004514
Josef Bacik83d4cfd2013-08-30 15:09:51 -04004515int btrfs_reloc_cow_block(struct btrfs_trans_handle *trans,
4516 struct btrfs_root *root, struct extent_buffer *buf,
4517 struct extent_buffer *cow)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004518{
4519 struct reloc_control *rc;
4520 struct backref_node *node;
4521 int first_cow = 0;
4522 int level;
Josef Bacik83d4cfd2013-08-30 15:09:51 -04004523 int ret = 0;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004524
4525 rc = root->fs_info->reloc_ctl;
4526 if (!rc)
Josef Bacik83d4cfd2013-08-30 15:09:51 -04004527 return 0;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004528
4529 BUG_ON(rc->stage == UPDATE_DATA_PTRS &&
4530 root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID);
4531
4532 level = btrfs_header_level(buf);
4533 if (btrfs_header_generation(buf) <=
4534 btrfs_root_last_snapshot(&root->root_item))
4535 first_cow = 1;
4536
4537 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID &&
4538 rc->create_reloc_tree) {
4539 WARN_ON(!first_cow && level == 0);
4540
4541 node = rc->backref_cache.path[level];
4542 BUG_ON(node->bytenr != buf->start &&
4543 node->new_bytenr != buf->start);
4544
4545 drop_node_buffer(node);
4546 extent_buffer_get(cow);
4547 node->eb = cow;
4548 node->new_bytenr = cow->start;
4549
4550 if (!node->pending) {
4551 list_move_tail(&node->list,
4552 &rc->backref_cache.pending[level]);
4553 node->pending = 1;
4554 }
4555
4556 if (first_cow)
4557 __mark_block_processed(rc, node);
4558
4559 if (first_cow && level > 0)
4560 rc->nodes_relocated += buf->len;
4561 }
4562
Josef Bacik83d4cfd2013-08-30 15:09:51 -04004563 if (level == 0 && first_cow && rc->stage == UPDATE_DATA_PTRS)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004564 ret = replace_file_extents(trans, rc, root, cow);
Josef Bacik83d4cfd2013-08-30 15:09:51 -04004565 return ret;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004566}
4567
4568/*
4569 * called before creating snapshot. it calculates metadata reservation
4570 * requried for relocating tree blocks in the snapshot
4571 */
4572void btrfs_reloc_pre_snapshot(struct btrfs_trans_handle *trans,
4573 struct btrfs_pending_snapshot *pending,
4574 u64 *bytes_to_reserve)
4575{
4576 struct btrfs_root *root;
4577 struct reloc_control *rc;
4578
4579 root = pending->root;
4580 if (!root->reloc_root)
4581 return;
4582
4583 rc = root->fs_info->reloc_ctl;
4584 if (!rc->merge_reloc_tree)
4585 return;
4586
4587 root = root->reloc_root;
4588 BUG_ON(btrfs_root_refs(&root->root_item) == 0);
4589 /*
4590 * relocation is in the stage of merging trees. the space
4591 * used by merging a reloc tree is twice the size of
4592 * relocated tree nodes in the worst case. half for cowing
4593 * the reloc tree, half for cowing the fs tree. the space
4594 * used by cowing the reloc tree will be freed after the
4595 * tree is dropped. if we create snapshot, cowing the fs
4596 * tree may use more space than it frees. so we need
4597 * reserve extra space.
4598 */
4599 *bytes_to_reserve += rc->nodes_relocated;
4600}
4601
4602/*
4603 * called after snapshot is created. migrate block reservation
4604 * and create reloc root for the newly created snapshot
4605 */
Jeff Mahoney49b25e02012-03-01 17:24:58 +01004606int btrfs_reloc_post_snapshot(struct btrfs_trans_handle *trans,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004607 struct btrfs_pending_snapshot *pending)
4608{
4609 struct btrfs_root *root = pending->root;
4610 struct btrfs_root *reloc_root;
4611 struct btrfs_root *new_root;
4612 struct reloc_control *rc;
4613 int ret;
4614
4615 if (!root->reloc_root)
Jeff Mahoney49b25e02012-03-01 17:24:58 +01004616 return 0;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004617
4618 rc = root->fs_info->reloc_ctl;
4619 rc->merging_rsv_size += rc->nodes_relocated;
4620
4621 if (rc->merge_reloc_tree) {
4622 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
4623 rc->block_rsv,
4624 rc->nodes_relocated);
Jeff Mahoney49b25e02012-03-01 17:24:58 +01004625 if (ret)
4626 return ret;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004627 }
4628
4629 new_root = pending->snap;
4630 reloc_root = create_reloc_root(trans, root->reloc_root,
4631 new_root->root_key.objectid);
Jeff Mahoney49b25e02012-03-01 17:24:58 +01004632 if (IS_ERR(reloc_root))
4633 return PTR_ERR(reloc_root);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004634
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04004635 ret = __add_reloc_root(reloc_root);
4636 BUG_ON(ret < 0);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004637 new_root->reloc_root = reloc_root;
4638
Jeff Mahoney49b25e02012-03-01 17:24:58 +01004639 if (rc->create_reloc_tree)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004640 ret = clone_backref_node(trans, rc, root, reloc_root);
Jeff Mahoney49b25e02012-03-01 17:24:58 +01004641 return ret;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004642}