]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - fs/btrfs/relocation.c
btrfs: reduce lock contention when creating snapshot
[mirror_ubuntu-hirsute-kernel.git] / fs / btrfs / relocation.c
CommitLineData
c1d7c514 1// SPDX-License-Identifier: GPL-2.0
5d4f98a2
YZ
2/*
3 * Copyright (C) 2009 Oracle. All rights reserved.
5d4f98a2
YZ
4 */
5
6#include <linux/sched.h>
7#include <linux/pagemap.h>
8#include <linux/writeback.h>
9#include <linux/blkdev.h>
10#include <linux/rbtree.h>
5a0e3ad6 11#include <linux/slab.h>
726a3421 12#include <linux/error-injection.h>
5d4f98a2
YZ
13#include "ctree.h"
14#include "disk-io.h"
15#include "transaction.h"
16#include "volumes.h"
17#include "locking.h"
18#include "btrfs_inode.h"
19#include "async-thread.h"
0af3d00b 20#include "free-space-cache.h"
581bb050 21#include "inode-map.h"
62b99540 22#include "qgroup.h"
cdccee99 23#include "print-tree.h"
86736342 24#include "delalloc-space.h"
aac0023c 25#include "block-group.h"
19b546d7 26#include "backref.h"
e9a28dc5 27#include "misc.h"
5d4f98a2 28
0c891389
QW
29/*
30 * Relocation overview
31 *
32 * [What does relocation do]
33 *
34 * The objective of relocation is to relocate all extents of the target block
35 * group to other block groups.
36 * This is utilized by resize (shrink only), profile converting, compacting
37 * space, or balance routine to spread chunks over devices.
38 *
39 * Before | After
40 * ------------------------------------------------------------------
41 * BG A: 10 data extents | BG A: deleted
42 * BG B: 2 data extents | BG B: 10 data extents (2 old + 8 relocated)
43 * BG C: 1 extents | BG C: 3 data extents (1 old + 2 relocated)
44 *
45 * [How does relocation work]
46 *
47 * 1. Mark the target block group read-only
48 * New extents won't be allocated from the target block group.
49 *
50 * 2.1 Record each extent in the target block group
51 * To build a proper map of extents to be relocated.
52 *
53 * 2.2 Build data reloc tree and reloc trees
54 * Data reloc tree will contain an inode, recording all newly relocated
55 * data extents.
56 * There will be only one data reloc tree for one data block group.
57 *
58 * Reloc tree will be a special snapshot of its source tree, containing
59 * relocated tree blocks.
60 * Each tree referring to a tree block in target block group will get its
61 * reloc tree built.
62 *
63 * 2.3 Swap source tree with its corresponding reloc tree
64 * Each involved tree only refers to new extents after swap.
65 *
66 * 3. Cleanup reloc trees and data reloc tree.
67 * As old extents in the target block group are still referenced by reloc
68 * trees, we need to clean them up before really freeing the target block
69 * group.
70 *
71 * The main complexity is in steps 2.2 and 2.3.
72 *
73 * The entry point of relocation is relocate_block_group() function.
74 */
75
2a979612 76#define RELOCATION_RESERVED_NODES 256
5d4f98a2
YZ
77/*
78 * map address of tree root to tree
79 */
80struct mapping_node {
e9a28dc5
QW
81 struct {
82 struct rb_node rb_node;
83 u64 bytenr;
84 }; /* Use rb_simle_node for search/insert */
5d4f98a2
YZ
85 void *data;
86};
87
88struct mapping_tree {
89 struct rb_root rb_root;
90 spinlock_t lock;
91};
92
93/*
94 * present a tree block to process
95 */
96struct tree_block {
e9a28dc5
QW
97 struct {
98 struct rb_node rb_node;
99 u64 bytenr;
100 }; /* Use rb_simple_node for search/insert */
5d4f98a2
YZ
101 struct btrfs_key key;
102 unsigned int level:8;
103 unsigned int key_ready:1;
104};
105
0257bb82
YZ
106#define MAX_EXTENTS 128
107
108struct file_extent_cluster {
109 u64 start;
110 u64 end;
111 u64 boundary[MAX_EXTENTS];
112 unsigned int nr;
113};
114
5d4f98a2
YZ
115struct reloc_control {
116 /* block group to relocate */
32da5386 117 struct btrfs_block_group *block_group;
5d4f98a2
YZ
118 /* extent tree */
119 struct btrfs_root *extent_root;
120 /* inode for moving data */
121 struct inode *data_inode;
3fd0a558
YZ
122
123 struct btrfs_block_rsv *block_rsv;
124
a26195a5 125 struct btrfs_backref_cache backref_cache;
3fd0a558
YZ
126
127 struct file_extent_cluster cluster;
5d4f98a2
YZ
128 /* tree blocks have been processed */
129 struct extent_io_tree processed_blocks;
130 /* map start of tree root to corresponding reloc tree */
131 struct mapping_tree reloc_root_tree;
132 /* list of reloc trees */
133 struct list_head reloc_roots;
d2311e69
QW
134 /* list of subvolume trees that get relocated */
135 struct list_head dirty_subvol_roots;
3fd0a558
YZ
136 /* size of metadata reservation for merging reloc trees */
137 u64 merging_rsv_size;
138 /* size of relocated tree nodes */
139 u64 nodes_relocated;
0647bf56
WS
140 /* reserved size for block group relocation*/
141 u64 reserved_bytes;
3fd0a558 142
5d4f98a2
YZ
143 u64 search_start;
144 u64 extents_found;
3fd0a558 145
3fd0a558
YZ
146 unsigned int stage:8;
147 unsigned int create_reloc_tree:1;
148 unsigned int merge_reloc_tree:1;
5d4f98a2 149 unsigned int found_file_extent:1;
5d4f98a2
YZ
150};
151
152/* stages of data relocation */
153#define MOVE_DATA_EXTENTS 0
154#define UPDATE_DATA_PTRS 1
155
9569cc20 156static void mark_block_processed(struct reloc_control *rc,
a26195a5 157 struct btrfs_backref_node *node)
9569cc20
QW
158{
159 u32 blocksize;
160
161 if (node->level == 0 ||
162 in_range(node->bytenr, rc->block_group->start,
163 rc->block_group->length)) {
164 blocksize = rc->extent_root->fs_info->nodesize;
165 set_extent_bits(&rc->processed_blocks, node->bytenr,
166 node->bytenr + blocksize - 1, EXTENT_DIRTY);
167 }
168 node->processed = 1;
169}
170
5d4f98a2
YZ
171
172static void mapping_tree_init(struct mapping_tree *tree)
173{
6bef4d31 174 tree->rb_root = RB_ROOT;
5d4f98a2
YZ
175 spin_lock_init(&tree->lock);
176}
177
5d4f98a2
YZ
178/*
179 * walk up backref nodes until reach node presents tree root
180 */
a26195a5
QW
181static struct btrfs_backref_node *walk_up_backref(
182 struct btrfs_backref_node *node,
183 struct btrfs_backref_edge *edges[], int *index)
5d4f98a2 184{
a26195a5 185 struct btrfs_backref_edge *edge;
5d4f98a2
YZ
186 int idx = *index;
187
188 while (!list_empty(&node->upper)) {
189 edge = list_entry(node->upper.next,
a26195a5 190 struct btrfs_backref_edge, list[LOWER]);
5d4f98a2
YZ
191 edges[idx++] = edge;
192 node = edge->node[UPPER];
193 }
3fd0a558 194 BUG_ON(node->detached);
5d4f98a2
YZ
195 *index = idx;
196 return node;
197}
198
199/*
200 * walk down backref nodes to find start of next reference path
201 */
a26195a5
QW
202static struct btrfs_backref_node *walk_down_backref(
203 struct btrfs_backref_edge *edges[], int *index)
5d4f98a2 204{
a26195a5
QW
205 struct btrfs_backref_edge *edge;
206 struct btrfs_backref_node *lower;
5d4f98a2
YZ
207 int idx = *index;
208
209 while (idx > 0) {
210 edge = edges[idx - 1];
211 lower = edge->node[LOWER];
212 if (list_is_last(&edge->list[LOWER], &lower->upper)) {
213 idx--;
214 continue;
215 }
216 edge = list_entry(edge->list[LOWER].next,
a26195a5 217 struct btrfs_backref_edge, list[LOWER]);
5d4f98a2
YZ
218 edges[idx - 1] = edge;
219 *index = idx;
220 return edge->node[UPPER];
221 }
222 *index = 0;
223 return NULL;
224}
5d4f98a2 225
a26195a5
QW
226static void update_backref_node(struct btrfs_backref_cache *cache,
227 struct btrfs_backref_node *node, u64 bytenr)
3fd0a558
YZ
228{
229 struct rb_node *rb_node;
230 rb_erase(&node->rb_node, &cache->rb_root);
231 node->bytenr = bytenr;
e9a28dc5 232 rb_node = rb_simple_insert(&cache->rb_root, node->bytenr, &node->rb_node);
43c04fb1 233 if (rb_node)
982c92cb 234 btrfs_backref_panic(cache->fs_info, bytenr, -EEXIST);
3fd0a558
YZ
235}
236
237/*
238 * update backref cache after a transaction commit
239 */
240static int update_backref_cache(struct btrfs_trans_handle *trans,
a26195a5 241 struct btrfs_backref_cache *cache)
3fd0a558 242{
a26195a5 243 struct btrfs_backref_node *node;
3fd0a558
YZ
244 int level = 0;
245
246 if (cache->last_trans == 0) {
247 cache->last_trans = trans->transid;
248 return 0;
249 }
250
251 if (cache->last_trans == trans->transid)
252 return 0;
253
254 /*
255 * detached nodes are used to avoid unnecessary backref
256 * lookup. transaction commit changes the extent tree.
257 * so the detached nodes are no longer useful.
258 */
259 while (!list_empty(&cache->detached)) {
260 node = list_entry(cache->detached.next,
a26195a5 261 struct btrfs_backref_node, list);
023acb07 262 btrfs_backref_cleanup_node(cache, node);
3fd0a558
YZ
263 }
264
265 while (!list_empty(&cache->changed)) {
266 node = list_entry(cache->changed.next,
a26195a5 267 struct btrfs_backref_node, list);
3fd0a558
YZ
268 list_del_init(&node->list);
269 BUG_ON(node->pending);
270 update_backref_node(cache, node, node->new_bytenr);
271 }
272
273 /*
274 * some nodes can be left in the pending list if there were
275 * errors during processing the pending nodes.
276 */
277 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
278 list_for_each_entry(node, &cache->pending[level], list) {
279 BUG_ON(!node->pending);
280 if (node->bytenr == node->new_bytenr)
281 continue;
282 update_backref_node(cache, node, node->new_bytenr);
283 }
284 }
285
286 cache->last_trans = 0;
287 return 1;
288}
289
6282675e
QW
290static bool reloc_root_is_dead(struct btrfs_root *root)
291{
292 /*
293 * Pair with set_bit/clear_bit in clean_dirty_subvols and
294 * btrfs_update_reloc_root. We need to see the updated bit before
295 * trying to access reloc_root
296 */
297 smp_rmb();
298 if (test_bit(BTRFS_ROOT_DEAD_RELOC_TREE, &root->state))
299 return true;
300 return false;
301}
302
303/*
304 * Check if this subvolume tree has valid reloc tree.
305 *
306 * Reloc tree after swap is considered dead, thus not considered as valid.
307 * This is enough for most callers, as they don't distinguish dead reloc root
55465730
QW
308 * from no reloc root. But btrfs_should_ignore_reloc_root() below is a
309 * special case.
6282675e
QW
310 */
311static bool have_reloc_root(struct btrfs_root *root)
312{
313 if (reloc_root_is_dead(root))
314 return false;
315 if (!root->reloc_root)
316 return false;
317 return true;
318}
f2a97a9d 319
55465730 320int btrfs_should_ignore_reloc_root(struct btrfs_root *root)
3fd0a558
YZ
321{
322 struct btrfs_root *reloc_root;
323
92a7cc42 324 if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
3fd0a558
YZ
325 return 0;
326
6282675e
QW
327 /* This root has been merged with its reloc tree, we can ignore it */
328 if (reloc_root_is_dead(root))
329 return 1;
330
3fd0a558
YZ
331 reloc_root = root->reloc_root;
332 if (!reloc_root)
333 return 0;
334
4d4225fc
JB
335 if (btrfs_header_generation(reloc_root->commit_root) ==
336 root->fs_info->running_transaction->transid)
3fd0a558
YZ
337 return 0;
338 /*
339 * if there is reloc tree and it was created in previous
340 * transaction backref lookup can find the reloc tree,
341 * so backref node for the fs tree root is useless for
342 * relocation.
343 */
344 return 1;
345}
55465730 346
5d4f98a2
YZ
347/*
348 * find reloc tree by address of tree root
349 */
2433bea5 350struct btrfs_root *find_reloc_root(struct btrfs_fs_info *fs_info, u64 bytenr)
5d4f98a2 351{
2433bea5 352 struct reloc_control *rc = fs_info->reloc_ctl;
5d4f98a2
YZ
353 struct rb_node *rb_node;
354 struct mapping_node *node;
355 struct btrfs_root *root = NULL;
356
2433bea5 357 ASSERT(rc);
5d4f98a2 358 spin_lock(&rc->reloc_root_tree.lock);
e9a28dc5 359 rb_node = rb_simple_search(&rc->reloc_root_tree.rb_root, bytenr);
5d4f98a2
YZ
360 if (rb_node) {
361 node = rb_entry(rb_node, struct mapping_node, rb_node);
362 root = (struct btrfs_root *)node->data;
363 }
364 spin_unlock(&rc->reloc_root_tree.lock);
00246528 365 return btrfs_grab_root(root);
5d4f98a2
YZ
366}
367
5d4f98a2
YZ
368static struct btrfs_root *read_fs_root(struct btrfs_fs_info *fs_info,
369 u64 root_objectid)
370{
371 struct btrfs_key key;
372
373 key.objectid = root_objectid;
374 key.type = BTRFS_ROOT_ITEM_KEY;
e1922118 375 key.offset = (u64)-1;
5d4f98a2 376
bc44d7c4 377 return btrfs_get_fs_root(fs_info, &key, false);
5d4f98a2
YZ
378}
379
29db137b
QW
380/*
381 * For useless nodes, do two major clean ups:
382 *
383 * - Cleanup the children edges and nodes
384 * If child node is also orphan (no parent) during cleanup, then the child
385 * node will also be cleaned up.
386 *
387 * - Freeing up leaves (level 0), keeps nodes detached
388 * For nodes, the node is still cached as "detached"
389 *
390 * Return false if @node is not in the @useless_nodes list.
391 * Return true if @node is in the @useless_nodes list.
392 */
393static bool handle_useless_nodes(struct reloc_control *rc,
a26195a5 394 struct btrfs_backref_node *node)
29db137b 395{
a26195a5 396 struct btrfs_backref_cache *cache = &rc->backref_cache;
29db137b
QW
397 struct list_head *useless_node = &cache->useless_node;
398 bool ret = false;
399
400 while (!list_empty(useless_node)) {
a26195a5 401 struct btrfs_backref_node *cur;
29db137b 402
a26195a5 403 cur = list_first_entry(useless_node, struct btrfs_backref_node,
29db137b
QW
404 list);
405 list_del_init(&cur->list);
406
407 /* Only tree root nodes can be added to @useless_nodes */
408 ASSERT(list_empty(&cur->upper));
409
410 if (cur == node)
411 ret = true;
412
413 /* The node is the lowest node */
414 if (cur->lowest) {
415 list_del_init(&cur->lower);
416 cur->lowest = 0;
417 }
418
419 /* Cleanup the lower edges */
420 while (!list_empty(&cur->lower)) {
a26195a5
QW
421 struct btrfs_backref_edge *edge;
422 struct btrfs_backref_node *lower;
29db137b
QW
423
424 edge = list_entry(cur->lower.next,
a26195a5 425 struct btrfs_backref_edge, list[UPPER]);
29db137b
QW
426 list_del(&edge->list[UPPER]);
427 list_del(&edge->list[LOWER]);
428 lower = edge->node[LOWER];
741188d3 429 btrfs_backref_free_edge(cache, edge);
29db137b
QW
430
431 /* Child node is also orphan, queue for cleanup */
432 if (list_empty(&lower->upper))
433 list_add(&lower->list, useless_node);
434 }
435 /* Mark this block processed for relocation */
436 mark_block_processed(rc, cur);
437
438 /*
439 * Backref nodes for tree leaves are deleted from the cache.
440 * Backref nodes for upper level tree blocks are left in the
441 * cache to avoid unnecessary backref lookup.
442 */
443 if (cur->level > 0) {
444 list_add(&cur->list, &cache->detached);
445 cur->detached = 1;
446 } else {
447 rb_erase(&cur->rb_node, &cache->rb_root);
741188d3 448 btrfs_backref_free_node(cache, cur);
29db137b
QW
449 }
450 }
451 return ret;
452}
453
e7d571c7
QW
454/*
455 * Build backref tree for a given tree block. Root of the backref tree
456 * corresponds the tree block, leaves of the backref tree correspond roots of
457 * b-trees that reference the tree block.
458 *
459 * The basic idea of this function is check backrefs of a given block to find
460 * upper level blocks that reference the block, and then check backrefs of
461 * these upper level blocks recursively. The recursion stops when tree root is
462 * reached or backrefs for the block is cached.
463 *
464 * NOTE: if we find that backrefs for a block are cached, we know backrefs for
465 * all upper level blocks that directly/indirectly reference the block are also
466 * cached.
467 */
a26195a5 468static noinline_for_stack struct btrfs_backref_node *build_backref_tree(
e7d571c7
QW
469 struct reloc_control *rc, struct btrfs_key *node_key,
470 int level, u64 bytenr)
471{
472 struct btrfs_backref_iter *iter;
a26195a5 473 struct btrfs_backref_cache *cache = &rc->backref_cache;
e7d571c7
QW
474 /* For searching parent of TREE_BLOCK_REF */
475 struct btrfs_path *path;
a26195a5 476 struct btrfs_backref_node *cur;
a26195a5
QW
477 struct btrfs_backref_node *node = NULL;
478 struct btrfs_backref_edge *edge;
e7d571c7
QW
479 int ret;
480 int err = 0;
5d4f98a2 481
e7d571c7
QW
482 iter = btrfs_backref_iter_alloc(rc->extent_root->fs_info, GFP_NOFS);
483 if (!iter)
484 return ERR_PTR(-ENOMEM);
485 path = btrfs_alloc_path();
486 if (!path) {
487 err = -ENOMEM;
488 goto out;
489 }
490
b1818dab 491 node = btrfs_backref_alloc_node(cache, bytenr, level);
e7d571c7
QW
492 if (!node) {
493 err = -ENOMEM;
494 goto out;
5d4f98a2
YZ
495 }
496
e7d571c7
QW
497 node->lowest = 1;
498 cur = node;
499
500 /* Breadth-first search to build backref cache */
501 do {
1b60d2ec
QW
502 ret = btrfs_backref_add_tree_node(cache, path, iter, node_key,
503 cur);
e7d571c7
QW
504 if (ret < 0) {
505 err = ret;
506 goto out;
507 }
508 edge = list_first_entry_or_null(&cache->pending_edge,
a26195a5 509 struct btrfs_backref_edge, list[UPPER]);
e7d571c7
QW
510 /*
511 * The pending list isn't empty, take the first block to
512 * process
513 */
514 if (edge) {
515 list_del_init(&edge->list[UPPER]);
516 cur = edge->node[UPPER];
517 }
518 } while (edge);
519
1f872924 520 /* Finish the upper linkage of newly added edges/nodes */
fc997ed0 521 ret = btrfs_backref_finish_upper_links(cache, node);
1f872924
QW
522 if (ret < 0) {
523 err = ret;
524 goto out;
3fd0a558 525 }
5d4f98a2 526
29db137b
QW
527 if (handle_useless_nodes(rc, node))
528 node = NULL;
5d4f98a2 529out:
71f572a9
QW
530 btrfs_backref_iter_free(iter);
531 btrfs_free_path(path);
5d4f98a2 532 if (err) {
1b23ea18 533 btrfs_backref_error_cleanup(cache, node);
5d4f98a2
YZ
534 return ERR_PTR(err);
535 }
75bfb9af 536 ASSERT(!node || !node->detached);
84780289
QW
537 ASSERT(list_empty(&cache->useless_node) &&
538 list_empty(&cache->pending_edge));
5d4f98a2
YZ
539 return node;
540}
541
3fd0a558
YZ
542/*
543 * helper to add backref node for the newly created snapshot.
544 * the backref node is created by cloning backref node that
545 * corresponds to root of source tree
546 */
547static int clone_backref_node(struct btrfs_trans_handle *trans,
548 struct reloc_control *rc,
549 struct btrfs_root *src,
550 struct btrfs_root *dest)
551{
552 struct btrfs_root *reloc_root = src->reloc_root;
a26195a5
QW
553 struct btrfs_backref_cache *cache = &rc->backref_cache;
554 struct btrfs_backref_node *node = NULL;
555 struct btrfs_backref_node *new_node;
556 struct btrfs_backref_edge *edge;
557 struct btrfs_backref_edge *new_edge;
3fd0a558
YZ
558 struct rb_node *rb_node;
559
560 if (cache->last_trans > 0)
561 update_backref_cache(trans, cache);
562
e9a28dc5 563 rb_node = rb_simple_search(&cache->rb_root, src->commit_root->start);
3fd0a558 564 if (rb_node) {
a26195a5 565 node = rb_entry(rb_node, struct btrfs_backref_node, rb_node);
3fd0a558
YZ
566 if (node->detached)
567 node = NULL;
568 else
569 BUG_ON(node->new_bytenr != reloc_root->node->start);
570 }
571
572 if (!node) {
e9a28dc5
QW
573 rb_node = rb_simple_search(&cache->rb_root,
574 reloc_root->commit_root->start);
3fd0a558 575 if (rb_node) {
a26195a5 576 node = rb_entry(rb_node, struct btrfs_backref_node,
3fd0a558
YZ
577 rb_node);
578 BUG_ON(node->detached);
579 }
580 }
581
582 if (!node)
583 return 0;
584
b1818dab
QW
585 new_node = btrfs_backref_alloc_node(cache, dest->node->start,
586 node->level);
3fd0a558
YZ
587 if (!new_node)
588 return -ENOMEM;
589
3fd0a558 590 new_node->lowest = node->lowest;
6848ad64 591 new_node->checked = 1;
00246528 592 new_node->root = btrfs_grab_root(dest);
0b530bc5 593 ASSERT(new_node->root);
3fd0a558
YZ
594
595 if (!node->lowest) {
596 list_for_each_entry(edge, &node->lower, list[UPPER]) {
47254d07 597 new_edge = btrfs_backref_alloc_edge(cache);
3fd0a558
YZ
598 if (!new_edge)
599 goto fail;
600
f39911e5
QW
601 btrfs_backref_link_edge(new_edge, edge->node[LOWER],
602 new_node, LINK_UPPER);
3fd0a558 603 }
76b9e23d
MX
604 } else {
605 list_add_tail(&new_node->lower, &cache->leaves);
3fd0a558
YZ
606 }
607
e9a28dc5
QW
608 rb_node = rb_simple_insert(&cache->rb_root, new_node->bytenr,
609 &new_node->rb_node);
43c04fb1 610 if (rb_node)
982c92cb 611 btrfs_backref_panic(trans->fs_info, new_node->bytenr, -EEXIST);
3fd0a558
YZ
612
613 if (!new_node->lowest) {
614 list_for_each_entry(new_edge, &new_node->lower, list[UPPER]) {
615 list_add_tail(&new_edge->list[LOWER],
616 &new_edge->node[LOWER]->upper);
617 }
618 }
619 return 0;
620fail:
621 while (!list_empty(&new_node->lower)) {
622 new_edge = list_entry(new_node->lower.next,
a26195a5 623 struct btrfs_backref_edge, list[UPPER]);
3fd0a558 624 list_del(&new_edge->list[UPPER]);
741188d3 625 btrfs_backref_free_edge(cache, new_edge);
3fd0a558 626 }
741188d3 627 btrfs_backref_free_node(cache, new_node);
3fd0a558
YZ
628 return -ENOMEM;
629}
630
5d4f98a2
YZ
631/*
632 * helper to add 'address of tree root -> reloc tree' mapping
633 */
ffd7b339 634static int __must_check __add_reloc_root(struct btrfs_root *root)
5d4f98a2 635{
0b246afa 636 struct btrfs_fs_info *fs_info = root->fs_info;
5d4f98a2
YZ
637 struct rb_node *rb_node;
638 struct mapping_node *node;
0b246afa 639 struct reloc_control *rc = fs_info->reloc_ctl;
5d4f98a2
YZ
640
641 node = kmalloc(sizeof(*node), GFP_NOFS);
ffd7b339
JM
642 if (!node)
643 return -ENOMEM;
5d4f98a2 644
ea287ab1 645 node->bytenr = root->commit_root->start;
5d4f98a2
YZ
646 node->data = root;
647
648 spin_lock(&rc->reloc_root_tree.lock);
e9a28dc5
QW
649 rb_node = rb_simple_insert(&rc->reloc_root_tree.rb_root,
650 node->bytenr, &node->rb_node);
5d4f98a2 651 spin_unlock(&rc->reloc_root_tree.lock);
ffd7b339 652 if (rb_node) {
0b246afa 653 btrfs_panic(fs_info, -EEXIST,
5d163e0e
JM
654 "Duplicate root found for start=%llu while inserting into relocation tree",
655 node->bytenr);
ffd7b339 656 }
5d4f98a2
YZ
657
658 list_add_tail(&root->root_list, &rc->reloc_roots);
659 return 0;
660}
661
662/*
c974c464 663 * helper to delete the 'address of tree root -> reloc tree'
5d4f98a2
YZ
664 * mapping
665 */
c974c464 666static void __del_reloc_root(struct btrfs_root *root)
5d4f98a2 667{
0b246afa 668 struct btrfs_fs_info *fs_info = root->fs_info;
5d4f98a2
YZ
669 struct rb_node *rb_node;
670 struct mapping_node *node = NULL;
0b246afa 671 struct reloc_control *rc = fs_info->reloc_ctl;
f44deb74 672 bool put_ref = false;
5d4f98a2 673
65c6e82b 674 if (rc && root->node) {
389305b2 675 spin_lock(&rc->reloc_root_tree.lock);
e9a28dc5
QW
676 rb_node = rb_simple_search(&rc->reloc_root_tree.rb_root,
677 root->commit_root->start);
389305b2
QW
678 if (rb_node) {
679 node = rb_entry(rb_node, struct mapping_node, rb_node);
680 rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
ea287ab1 681 RB_CLEAR_NODE(&node->rb_node);
389305b2
QW
682 }
683 spin_unlock(&rc->reloc_root_tree.lock);
684 if (!node)
685 return;
686 BUG_ON((struct btrfs_root *)node->data != root);
5d4f98a2 687 }
5d4f98a2 688
f44deb74
JB
689 /*
690 * We only put the reloc root here if it's on the list. There's a lot
691 * of places where the pattern is to splice the rc->reloc_roots, process
692 * the reloc roots, and then add the reloc root back onto
693 * rc->reloc_roots. If we call __del_reloc_root while it's off of the
694 * list we don't want the reference being dropped, because the guy
695 * messing with the list is in charge of the reference.
696 */
0b246afa 697 spin_lock(&fs_info->trans_lock);
f44deb74
JB
698 if (!list_empty(&root->root_list)) {
699 put_ref = true;
700 list_del_init(&root->root_list);
701 }
0b246afa 702 spin_unlock(&fs_info->trans_lock);
f44deb74
JB
703 if (put_ref)
704 btrfs_put_root(root);
c974c464
WS
705 kfree(node);
706}
707
708/*
709 * helper to update the 'address of tree root -> reloc tree'
710 * mapping
711 */
ea287ab1 712static int __update_reloc_root(struct btrfs_root *root)
c974c464 713{
0b246afa 714 struct btrfs_fs_info *fs_info = root->fs_info;
c974c464
WS
715 struct rb_node *rb_node;
716 struct mapping_node *node = NULL;
0b246afa 717 struct reloc_control *rc = fs_info->reloc_ctl;
c974c464
WS
718
719 spin_lock(&rc->reloc_root_tree.lock);
e9a28dc5
QW
720 rb_node = rb_simple_search(&rc->reloc_root_tree.rb_root,
721 root->commit_root->start);
c974c464
WS
722 if (rb_node) {
723 node = rb_entry(rb_node, struct mapping_node, rb_node);
724 rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
5d4f98a2 725 }
c974c464
WS
726 spin_unlock(&rc->reloc_root_tree.lock);
727
728 if (!node)
729 return 0;
730 BUG_ON((struct btrfs_root *)node->data != root);
731
732 spin_lock(&rc->reloc_root_tree.lock);
ea287ab1 733 node->bytenr = root->node->start;
e9a28dc5
QW
734 rb_node = rb_simple_insert(&rc->reloc_root_tree.rb_root,
735 node->bytenr, &node->rb_node);
c974c464
WS
736 spin_unlock(&rc->reloc_root_tree.lock);
737 if (rb_node)
982c92cb 738 btrfs_backref_panic(fs_info, node->bytenr, -EEXIST);
5d4f98a2
YZ
739 return 0;
740}
741
3fd0a558
YZ
742static struct btrfs_root *create_reloc_root(struct btrfs_trans_handle *trans,
743 struct btrfs_root *root, u64 objectid)
5d4f98a2 744{
0b246afa 745 struct btrfs_fs_info *fs_info = root->fs_info;
5d4f98a2
YZ
746 struct btrfs_root *reloc_root;
747 struct extent_buffer *eb;
748 struct btrfs_root_item *root_item;
749 struct btrfs_key root_key;
750 int ret;
751
5d4f98a2
YZ
752 root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
753 BUG_ON(!root_item);
754
755 root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
756 root_key.type = BTRFS_ROOT_ITEM_KEY;
3fd0a558 757 root_key.offset = objectid;
5d4f98a2 758
3fd0a558 759 if (root->root_key.objectid == objectid) {
054570a1
FM
760 u64 commit_root_gen;
761
3fd0a558
YZ
762 /* called by btrfs_init_reloc_root */
763 ret = btrfs_copy_root(trans, root, root->commit_root, &eb,
764 BTRFS_TREE_RELOC_OBJECTID);
765 BUG_ON(ret);
054570a1
FM
766 /*
767 * Set the last_snapshot field to the generation of the commit
768 * root - like this ctree.c:btrfs_block_can_be_shared() behaves
769 * correctly (returns true) when the relocation root is created
770 * either inside the critical section of a transaction commit
771 * (through transaction.c:qgroup_account_snapshot()) and when
772 * it's created before the transaction commit is started.
773 */
774 commit_root_gen = btrfs_header_generation(root->commit_root);
775 btrfs_set_root_last_snapshot(&root->root_item, commit_root_gen);
3fd0a558
YZ
776 } else {
777 /*
778 * called by btrfs_reloc_post_snapshot_hook.
779 * the source tree is a reloc tree, all tree blocks
780 * modified after it was created have RELOC flag
781 * set in their headers. so it's OK to not update
782 * the 'last_snapshot'.
783 */
784 ret = btrfs_copy_root(trans, root, root->node, &eb,
785 BTRFS_TREE_RELOC_OBJECTID);
786 BUG_ON(ret);
787 }
5d4f98a2 788
5d4f98a2 789 memcpy(root_item, &root->root_item, sizeof(*root_item));
5d4f98a2
YZ
790 btrfs_set_root_bytenr(root_item, eb->start);
791 btrfs_set_root_level(root_item, btrfs_header_level(eb));
792 btrfs_set_root_generation(root_item, trans->transid);
3fd0a558
YZ
793
794 if (root->root_key.objectid == objectid) {
795 btrfs_set_root_refs(root_item, 0);
796 memset(&root_item->drop_progress, 0,
797 sizeof(struct btrfs_disk_key));
798 root_item->drop_level = 0;
799 }
5d4f98a2
YZ
800
801 btrfs_tree_unlock(eb);
802 free_extent_buffer(eb);
803
0b246afa 804 ret = btrfs_insert_root(trans, fs_info->tree_root,
5d4f98a2
YZ
805 &root_key, root_item);
806 BUG_ON(ret);
807 kfree(root_item);
808
3dbf1738 809 reloc_root = btrfs_read_tree_root(fs_info->tree_root, &root_key);
5d4f98a2 810 BUG_ON(IS_ERR(reloc_root));
92a7cc42 811 set_bit(BTRFS_ROOT_SHAREABLE, &reloc_root->state);
5d4f98a2 812 reloc_root->last_trans = trans->transid;
3fd0a558
YZ
813 return reloc_root;
814}
815
816/*
817 * create reloc tree for a given fs tree. reloc tree is just a
818 * snapshot of the fs tree with special root objectid.
f44deb74
JB
819 *
820 * The reloc_root comes out of here with two references, one for
821 * root->reloc_root, and another for being on the rc->reloc_roots list.
3fd0a558
YZ
822 */
823int btrfs_init_reloc_root(struct btrfs_trans_handle *trans,
824 struct btrfs_root *root)
825{
0b246afa 826 struct btrfs_fs_info *fs_info = root->fs_info;
3fd0a558 827 struct btrfs_root *reloc_root;
0b246afa 828 struct reloc_control *rc = fs_info->reloc_ctl;
20dd2cbf 829 struct btrfs_block_rsv *rsv;
3fd0a558 830 int clear_rsv = 0;
ffd7b339 831 int ret;
3fd0a558 832
aec7db3b 833 if (!rc)
2abc726a
JB
834 return 0;
835
1fac4a54
QW
836 /*
837 * The subvolume has reloc tree but the swap is finished, no need to
838 * create/update the dead reloc tree
839 */
6282675e 840 if (reloc_root_is_dead(root))
1fac4a54
QW
841 return 0;
842
aec7db3b
JB
843 /*
844 * This is subtle but important. We do not do
845 * record_root_in_transaction for reloc roots, instead we record their
846 * corresponding fs root, and then here we update the last trans for the
847 * reloc root. This means that we have to do this for the entire life
848 * of the reloc root, regardless of which stage of the relocation we are
849 * in.
850 */
3fd0a558
YZ
851 if (root->reloc_root) {
852 reloc_root = root->reloc_root;
853 reloc_root->last_trans = trans->transid;
854 return 0;
855 }
856
aec7db3b
JB
857 /*
858 * We are merging reloc roots, we do not need new reloc trees. Also
859 * reloc trees never need their own reloc tree.
860 */
861 if (!rc->create_reloc_tree ||
862 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
863 return 0;
864
20dd2cbf
MX
865 if (!trans->reloc_reserved) {
866 rsv = trans->block_rsv;
3fd0a558
YZ
867 trans->block_rsv = rc->block_rsv;
868 clear_rsv = 1;
869 }
870 reloc_root = create_reloc_root(trans, root, root->root_key.objectid);
871 if (clear_rsv)
20dd2cbf 872 trans->block_rsv = rsv;
5d4f98a2 873
ffd7b339
JM
874 ret = __add_reloc_root(reloc_root);
875 BUG_ON(ret < 0);
f44deb74 876 root->reloc_root = btrfs_grab_root(reloc_root);
5d4f98a2
YZ
877 return 0;
878}
879
880/*
881 * update root item of reloc tree
882 */
883int btrfs_update_reloc_root(struct btrfs_trans_handle *trans,
884 struct btrfs_root *root)
885{
0b246afa 886 struct btrfs_fs_info *fs_info = root->fs_info;
5d4f98a2
YZ
887 struct btrfs_root *reloc_root;
888 struct btrfs_root_item *root_item;
5d4f98a2
YZ
889 int ret;
890
6282675e 891 if (!have_reloc_root(root))
7585717f 892 goto out;
5d4f98a2
YZ
893
894 reloc_root = root->reloc_root;
895 root_item = &reloc_root->root_item;
896
f44deb74
JB
897 /*
898 * We are probably ok here, but __del_reloc_root() will drop its ref of
899 * the root. We have the ref for root->reloc_root, but just in case
900 * hold it while we update the reloc root.
901 */
902 btrfs_grab_root(reloc_root);
903
d2311e69 904 /* root->reloc_root will stay until current relocation finished */
0b246afa 905 if (fs_info->reloc_ctl->merge_reloc_tree &&
3fd0a558 906 btrfs_root_refs(root_item) == 0) {
d2311e69 907 set_bit(BTRFS_ROOT_DEAD_RELOC_TREE, &root->state);
6282675e
QW
908 /*
909 * Mark the tree as dead before we change reloc_root so
910 * have_reloc_root will not touch it from now on.
911 */
912 smp_wmb();
c974c464 913 __del_reloc_root(reloc_root);
5d4f98a2
YZ
914 }
915
5d4f98a2 916 if (reloc_root->commit_root != reloc_root->node) {
ea287ab1 917 __update_reloc_root(reloc_root);
5d4f98a2
YZ
918 btrfs_set_root_node(root_item, reloc_root->node);
919 free_extent_buffer(reloc_root->commit_root);
920 reloc_root->commit_root = btrfs_root_node(reloc_root);
921 }
922
0b246afa 923 ret = btrfs_update_root(trans, fs_info->tree_root,
5d4f98a2
YZ
924 &reloc_root->root_key, root_item);
925 BUG_ON(ret);
f44deb74 926 btrfs_put_root(reloc_root);
7585717f 927out:
5d4f98a2
YZ
928 return 0;
929}
930
931/*
932 * helper to find first cached inode with inode number >= objectid
933 * in a subvolume
934 */
935static struct inode *find_next_inode(struct btrfs_root *root, u64 objectid)
936{
937 struct rb_node *node;
938 struct rb_node *prev;
939 struct btrfs_inode *entry;
940 struct inode *inode;
941
942 spin_lock(&root->inode_lock);
943again:
944 node = root->inode_tree.rb_node;
945 prev = NULL;
946 while (node) {
947 prev = node;
948 entry = rb_entry(node, struct btrfs_inode, rb_node);
949
4a0cc7ca 950 if (objectid < btrfs_ino(entry))
5d4f98a2 951 node = node->rb_left;
4a0cc7ca 952 else if (objectid > btrfs_ino(entry))
5d4f98a2
YZ
953 node = node->rb_right;
954 else
955 break;
956 }
957 if (!node) {
958 while (prev) {
959 entry = rb_entry(prev, struct btrfs_inode, rb_node);
4a0cc7ca 960 if (objectid <= btrfs_ino(entry)) {
5d4f98a2
YZ
961 node = prev;
962 break;
963 }
964 prev = rb_next(prev);
965 }
966 }
967 while (node) {
968 entry = rb_entry(node, struct btrfs_inode, rb_node);
969 inode = igrab(&entry->vfs_inode);
970 if (inode) {
971 spin_unlock(&root->inode_lock);
972 return inode;
973 }
974
4a0cc7ca 975 objectid = btrfs_ino(entry) + 1;
5d4f98a2
YZ
976 if (cond_resched_lock(&root->inode_lock))
977 goto again;
978
979 node = rb_next(node);
980 }
981 spin_unlock(&root->inode_lock);
982 return NULL;
983}
984
5d4f98a2
YZ
985/*
986 * get new location of data
987 */
988static int get_new_location(struct inode *reloc_inode, u64 *new_bytenr,
989 u64 bytenr, u64 num_bytes)
990{
991 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
992 struct btrfs_path *path;
993 struct btrfs_file_extent_item *fi;
994 struct extent_buffer *leaf;
995 int ret;
996
997 path = btrfs_alloc_path();
998 if (!path)
999 return -ENOMEM;
1000
1001 bytenr -= BTRFS_I(reloc_inode)->index_cnt;
f85b7379
DS
1002 ret = btrfs_lookup_file_extent(NULL, root, path,
1003 btrfs_ino(BTRFS_I(reloc_inode)), bytenr, 0);
5d4f98a2
YZ
1004 if (ret < 0)
1005 goto out;
1006 if (ret > 0) {
1007 ret = -ENOENT;
1008 goto out;
1009 }
1010
1011 leaf = path->nodes[0];
1012 fi = btrfs_item_ptr(leaf, path->slots[0],
1013 struct btrfs_file_extent_item);
1014
1015 BUG_ON(btrfs_file_extent_offset(leaf, fi) ||
1016 btrfs_file_extent_compression(leaf, fi) ||
1017 btrfs_file_extent_encryption(leaf, fi) ||
1018 btrfs_file_extent_other_encoding(leaf, fi));
1019
1020 if (num_bytes != btrfs_file_extent_disk_num_bytes(leaf, fi)) {
83d4cfd4 1021 ret = -EINVAL;
5d4f98a2
YZ
1022 goto out;
1023 }
1024
3fd0a558 1025 *new_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5d4f98a2
YZ
1026 ret = 0;
1027out:
1028 btrfs_free_path(path);
1029 return ret;
1030}
1031
1032/*
1033 * update file extent items in the tree leaf to point to
1034 * the new locations.
1035 */
3fd0a558
YZ
1036static noinline_for_stack
1037int replace_file_extents(struct btrfs_trans_handle *trans,
1038 struct reloc_control *rc,
1039 struct btrfs_root *root,
1040 struct extent_buffer *leaf)
5d4f98a2 1041{
0b246afa 1042 struct btrfs_fs_info *fs_info = root->fs_info;
5d4f98a2
YZ
1043 struct btrfs_key key;
1044 struct btrfs_file_extent_item *fi;
1045 struct inode *inode = NULL;
5d4f98a2
YZ
1046 u64 parent;
1047 u64 bytenr;
3fd0a558 1048 u64 new_bytenr = 0;
5d4f98a2
YZ
1049 u64 num_bytes;
1050 u64 end;
1051 u32 nritems;
1052 u32 i;
83d4cfd4 1053 int ret = 0;
5d4f98a2
YZ
1054 int first = 1;
1055 int dirty = 0;
1056
1057 if (rc->stage != UPDATE_DATA_PTRS)
1058 return 0;
1059
1060 /* reloc trees always use full backref */
1061 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1062 parent = leaf->start;
1063 else
1064 parent = 0;
1065
1066 nritems = btrfs_header_nritems(leaf);
1067 for (i = 0; i < nritems; i++) {
82fa113f
QW
1068 struct btrfs_ref ref = { 0 };
1069
5d4f98a2
YZ
1070 cond_resched();
1071 btrfs_item_key_to_cpu(leaf, &key, i);
1072 if (key.type != BTRFS_EXTENT_DATA_KEY)
1073 continue;
1074 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
1075 if (btrfs_file_extent_type(leaf, fi) ==
1076 BTRFS_FILE_EXTENT_INLINE)
1077 continue;
1078 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1079 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
1080 if (bytenr == 0)
1081 continue;
9569cc20
QW
1082 if (!in_range(bytenr, rc->block_group->start,
1083 rc->block_group->length))
5d4f98a2
YZ
1084 continue;
1085
1086 /*
1087 * if we are modifying block in fs tree, wait for readpage
1088 * to complete and drop the extent cache
1089 */
1090 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
5d4f98a2
YZ
1091 if (first) {
1092 inode = find_next_inode(root, key.objectid);
5d4f98a2 1093 first = 0;
4a0cc7ca 1094 } else if (inode && btrfs_ino(BTRFS_I(inode)) < key.objectid) {
3fd0a558 1095 btrfs_add_delayed_iput(inode);
5d4f98a2 1096 inode = find_next_inode(root, key.objectid);
5d4f98a2 1097 }
4a0cc7ca 1098 if (inode && btrfs_ino(BTRFS_I(inode)) == key.objectid) {
5d4f98a2
YZ
1099 end = key.offset +
1100 btrfs_file_extent_num_bytes(leaf, fi);
1101 WARN_ON(!IS_ALIGNED(key.offset,
0b246afa
JM
1102 fs_info->sectorsize));
1103 WARN_ON(!IS_ALIGNED(end, fs_info->sectorsize));
5d4f98a2
YZ
1104 end--;
1105 ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
d0082371 1106 key.offset, end);
5d4f98a2
YZ
1107 if (!ret)
1108 continue;
1109
dcdbc059
NB
1110 btrfs_drop_extent_cache(BTRFS_I(inode),
1111 key.offset, end, 1);
5d4f98a2 1112 unlock_extent(&BTRFS_I(inode)->io_tree,
d0082371 1113 key.offset, end);
5d4f98a2
YZ
1114 }
1115 }
1116
1117 ret = get_new_location(rc->data_inode, &new_bytenr,
1118 bytenr, num_bytes);
83d4cfd4
JB
1119 if (ret) {
1120 /*
1121 * Don't have to abort since we've not changed anything
1122 * in the file extent yet.
1123 */
1124 break;
3fd0a558 1125 }
5d4f98a2
YZ
1126
1127 btrfs_set_file_extent_disk_bytenr(leaf, fi, new_bytenr);
1128 dirty = 1;
1129
1130 key.offset -= btrfs_file_extent_offset(leaf, fi);
82fa113f
QW
1131 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, new_bytenr,
1132 num_bytes, parent);
1133 ref.real_root = root->root_key.objectid;
1134 btrfs_init_data_ref(&ref, btrfs_header_owner(leaf),
1135 key.objectid, key.offset);
1136 ret = btrfs_inc_extent_ref(trans, &ref);
83d4cfd4 1137 if (ret) {
66642832 1138 btrfs_abort_transaction(trans, ret);
83d4cfd4
JB
1139 break;
1140 }
5d4f98a2 1141
ffd4bb2a
QW
1142 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr,
1143 num_bytes, parent);
1144 ref.real_root = root->root_key.objectid;
1145 btrfs_init_data_ref(&ref, btrfs_header_owner(leaf),
1146 key.objectid, key.offset);
1147 ret = btrfs_free_extent(trans, &ref);
83d4cfd4 1148 if (ret) {
66642832 1149 btrfs_abort_transaction(trans, ret);
83d4cfd4
JB
1150 break;
1151 }
5d4f98a2
YZ
1152 }
1153 if (dirty)
1154 btrfs_mark_buffer_dirty(leaf);
3fd0a558
YZ
1155 if (inode)
1156 btrfs_add_delayed_iput(inode);
83d4cfd4 1157 return ret;
5d4f98a2
YZ
1158}
1159
1160static noinline_for_stack
1161int memcmp_node_keys(struct extent_buffer *eb, int slot,
1162 struct btrfs_path *path, int level)
1163{
1164 struct btrfs_disk_key key1;
1165 struct btrfs_disk_key key2;
1166 btrfs_node_key(eb, &key1, slot);
1167 btrfs_node_key(path->nodes[level], &key2, path->slots[level]);
1168 return memcmp(&key1, &key2, sizeof(key1));
1169}
1170
1171/*
1172 * try to replace tree blocks in fs tree with the new blocks
1173 * in reloc tree. tree blocks haven't been modified since the
1174 * reloc tree was create can be replaced.
1175 *
1176 * if a block was replaced, level of the block + 1 is returned.
1177 * if no block got replaced, 0 is returned. if there are other
1178 * errors, a negative error number is returned.
1179 */
3fd0a558 1180static noinline_for_stack
3d0174f7 1181int replace_path(struct btrfs_trans_handle *trans, struct reloc_control *rc,
3fd0a558
YZ
1182 struct btrfs_root *dest, struct btrfs_root *src,
1183 struct btrfs_path *path, struct btrfs_key *next_key,
1184 int lowest_level, int max_level)
5d4f98a2 1185{
0b246afa 1186 struct btrfs_fs_info *fs_info = dest->fs_info;
5d4f98a2
YZ
1187 struct extent_buffer *eb;
1188 struct extent_buffer *parent;
82fa113f 1189 struct btrfs_ref ref = { 0 };
5d4f98a2
YZ
1190 struct btrfs_key key;
1191 u64 old_bytenr;
1192 u64 new_bytenr;
1193 u64 old_ptr_gen;
1194 u64 new_ptr_gen;
1195 u64 last_snapshot;
1196 u32 blocksize;
3fd0a558 1197 int cow = 0;
5d4f98a2
YZ
1198 int level;
1199 int ret;
1200 int slot;
1201
1202 BUG_ON(src->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
1203 BUG_ON(dest->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID);
5d4f98a2
YZ
1204
1205 last_snapshot = btrfs_root_last_snapshot(&src->root_item);
3fd0a558 1206again:
5d4f98a2
YZ
1207 slot = path->slots[lowest_level];
1208 btrfs_node_key_to_cpu(path->nodes[lowest_level], &key, slot);
1209
1210 eb = btrfs_lock_root_node(dest);
8bead258 1211 btrfs_set_lock_blocking_write(eb);
5d4f98a2
YZ
1212 level = btrfs_header_level(eb);
1213
1214 if (level < lowest_level) {
1215 btrfs_tree_unlock(eb);
1216 free_extent_buffer(eb);
1217 return 0;
1218 }
1219
3fd0a558
YZ
1220 if (cow) {
1221 ret = btrfs_cow_block(trans, dest, eb, NULL, 0, &eb);
1222 BUG_ON(ret);
1223 }
8bead258 1224 btrfs_set_lock_blocking_write(eb);
5d4f98a2
YZ
1225
1226 if (next_key) {
1227 next_key->objectid = (u64)-1;
1228 next_key->type = (u8)-1;
1229 next_key->offset = (u64)-1;
1230 }
1231
1232 parent = eb;
1233 while (1) {
581c1760
QW
1234 struct btrfs_key first_key;
1235
5d4f98a2
YZ
1236 level = btrfs_header_level(parent);
1237 BUG_ON(level < lowest_level);
1238
e3b83361 1239 ret = btrfs_bin_search(parent, &key, &slot);
cbca7d59
FM
1240 if (ret < 0)
1241 break;
5d4f98a2
YZ
1242 if (ret && slot > 0)
1243 slot--;
1244
1245 if (next_key && slot + 1 < btrfs_header_nritems(parent))
1246 btrfs_node_key_to_cpu(parent, next_key, slot + 1);
1247
1248 old_bytenr = btrfs_node_blockptr(parent, slot);
0b246afa 1249 blocksize = fs_info->nodesize;
5d4f98a2 1250 old_ptr_gen = btrfs_node_ptr_generation(parent, slot);
17515f1b 1251 btrfs_node_key_to_cpu(parent, &first_key, slot);
5d4f98a2
YZ
1252
1253 if (level <= max_level) {
1254 eb = path->nodes[level];
1255 new_bytenr = btrfs_node_blockptr(eb,
1256 path->slots[level]);
1257 new_ptr_gen = btrfs_node_ptr_generation(eb,
1258 path->slots[level]);
1259 } else {
1260 new_bytenr = 0;
1261 new_ptr_gen = 0;
1262 }
1263
fae7f21c 1264 if (WARN_ON(new_bytenr > 0 && new_bytenr == old_bytenr)) {
5d4f98a2
YZ
1265 ret = level;
1266 break;
1267 }
1268
1269 if (new_bytenr == 0 || old_ptr_gen > last_snapshot ||
1270 memcmp_node_keys(parent, slot, path, level)) {
3fd0a558 1271 if (level <= lowest_level) {
5d4f98a2
YZ
1272 ret = 0;
1273 break;
1274 }
1275
581c1760
QW
1276 eb = read_tree_block(fs_info, old_bytenr, old_ptr_gen,
1277 level - 1, &first_key);
64c043de
LB
1278 if (IS_ERR(eb)) {
1279 ret = PTR_ERR(eb);
264813ac 1280 break;
64c043de
LB
1281 } else if (!extent_buffer_uptodate(eb)) {
1282 ret = -EIO;
416bc658 1283 free_extent_buffer(eb);
379cde74 1284 break;
416bc658 1285 }
5d4f98a2 1286 btrfs_tree_lock(eb);
3fd0a558
YZ
1287 if (cow) {
1288 ret = btrfs_cow_block(trans, dest, eb, parent,
1289 slot, &eb);
1290 BUG_ON(ret);
5d4f98a2 1291 }
8bead258 1292 btrfs_set_lock_blocking_write(eb);
5d4f98a2
YZ
1293
1294 btrfs_tree_unlock(parent);
1295 free_extent_buffer(parent);
1296
1297 parent = eb;
1298 continue;
1299 }
1300
3fd0a558
YZ
1301 if (!cow) {
1302 btrfs_tree_unlock(parent);
1303 free_extent_buffer(parent);
1304 cow = 1;
1305 goto again;
1306 }
1307
5d4f98a2
YZ
1308 btrfs_node_key_to_cpu(path->nodes[level], &key,
1309 path->slots[level]);
b3b4aa74 1310 btrfs_release_path(path);
5d4f98a2
YZ
1311
1312 path->lowest_level = level;
1313 ret = btrfs_search_slot(trans, src, &key, path, 0, 1);
1314 path->lowest_level = 0;
1315 BUG_ON(ret);
1316
824d8dff
QW
1317 /*
1318 * Info qgroup to trace both subtrees.
1319 *
1320 * We must trace both trees.
1321 * 1) Tree reloc subtree
1322 * If not traced, we will leak data numbers
1323 * 2) Fs subtree
1324 * If not traced, we will double count old data
f616f5cd
QW
1325 *
1326 * We don't scan the subtree right now, but only record
1327 * the swapped tree blocks.
1328 * The real subtree rescan is delayed until we have new
1329 * CoW on the subtree root node before transaction commit.
824d8dff 1330 */
370a11b8
QW
1331 ret = btrfs_qgroup_add_swapped_blocks(trans, dest,
1332 rc->block_group, parent, slot,
1333 path->nodes[level], path->slots[level],
1334 last_snapshot);
1335 if (ret < 0)
1336 break;
5d4f98a2
YZ
1337 /*
1338 * swap blocks in fs tree and reloc tree.
1339 */
1340 btrfs_set_node_blockptr(parent, slot, new_bytenr);
1341 btrfs_set_node_ptr_generation(parent, slot, new_ptr_gen);
1342 btrfs_mark_buffer_dirty(parent);
1343
1344 btrfs_set_node_blockptr(path->nodes[level],
1345 path->slots[level], old_bytenr);
1346 btrfs_set_node_ptr_generation(path->nodes[level],
1347 path->slots[level], old_ptr_gen);
1348 btrfs_mark_buffer_dirty(path->nodes[level]);
1349
82fa113f
QW
1350 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, old_bytenr,
1351 blocksize, path->nodes[level]->start);
1352 ref.skip_qgroup = true;
1353 btrfs_init_tree_ref(&ref, level - 1, src->root_key.objectid);
1354 ret = btrfs_inc_extent_ref(trans, &ref);
5d4f98a2 1355 BUG_ON(ret);
82fa113f
QW
1356 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, new_bytenr,
1357 blocksize, 0);
1358 ref.skip_qgroup = true;
1359 btrfs_init_tree_ref(&ref, level - 1, dest->root_key.objectid);
1360 ret = btrfs_inc_extent_ref(trans, &ref);
5d4f98a2
YZ
1361 BUG_ON(ret);
1362
ffd4bb2a
QW
1363 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, new_bytenr,
1364 blocksize, path->nodes[level]->start);
1365 btrfs_init_tree_ref(&ref, level - 1, src->root_key.objectid);
1366 ref.skip_qgroup = true;
1367 ret = btrfs_free_extent(trans, &ref);
5d4f98a2
YZ
1368 BUG_ON(ret);
1369
ffd4bb2a
QW
1370 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, old_bytenr,
1371 blocksize, 0);
1372 btrfs_init_tree_ref(&ref, level - 1, dest->root_key.objectid);
1373 ref.skip_qgroup = true;
1374 ret = btrfs_free_extent(trans, &ref);
5d4f98a2
YZ
1375 BUG_ON(ret);
1376
1377 btrfs_unlock_up_safe(path, 0);
1378
1379 ret = level;
1380 break;
1381 }
1382 btrfs_tree_unlock(parent);
1383 free_extent_buffer(parent);
1384 return ret;
1385}
1386
1387/*
1388 * helper to find next relocated block in reloc tree
1389 */
1390static noinline_for_stack
1391int walk_up_reloc_tree(struct btrfs_root *root, struct btrfs_path *path,
1392 int *level)
1393{
1394 struct extent_buffer *eb;
1395 int i;
1396 u64 last_snapshot;
1397 u32 nritems;
1398
1399 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
1400
1401 for (i = 0; i < *level; i++) {
1402 free_extent_buffer(path->nodes[i]);
1403 path->nodes[i] = NULL;
1404 }
1405
1406 for (i = *level; i < BTRFS_MAX_LEVEL && path->nodes[i]; i++) {
1407 eb = path->nodes[i];
1408 nritems = btrfs_header_nritems(eb);
1409 while (path->slots[i] + 1 < nritems) {
1410 path->slots[i]++;
1411 if (btrfs_node_ptr_generation(eb, path->slots[i]) <=
1412 last_snapshot)
1413 continue;
1414
1415 *level = i;
1416 return 0;
1417 }
1418 free_extent_buffer(path->nodes[i]);
1419 path->nodes[i] = NULL;
1420 }
1421 return 1;
1422}
1423
1424/*
1425 * walk down reloc tree to find relocated block of lowest level
1426 */
1427static noinline_for_stack
1428int walk_down_reloc_tree(struct btrfs_root *root, struct btrfs_path *path,
1429 int *level)
1430{
2ff7e61e 1431 struct btrfs_fs_info *fs_info = root->fs_info;
5d4f98a2
YZ
1432 struct extent_buffer *eb = NULL;
1433 int i;
1434 u64 bytenr;
1435 u64 ptr_gen = 0;
1436 u64 last_snapshot;
5d4f98a2
YZ
1437 u32 nritems;
1438
1439 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
1440
1441 for (i = *level; i > 0; i--) {
581c1760
QW
1442 struct btrfs_key first_key;
1443
5d4f98a2
YZ
1444 eb = path->nodes[i];
1445 nritems = btrfs_header_nritems(eb);
1446 while (path->slots[i] < nritems) {
1447 ptr_gen = btrfs_node_ptr_generation(eb, path->slots[i]);
1448 if (ptr_gen > last_snapshot)
1449 break;
1450 path->slots[i]++;
1451 }
1452 if (path->slots[i] >= nritems) {
1453 if (i == *level)
1454 break;
1455 *level = i + 1;
1456 return 0;
1457 }
1458 if (i == 1) {
1459 *level = i;
1460 return 0;
1461 }
1462
1463 bytenr = btrfs_node_blockptr(eb, path->slots[i]);
581c1760
QW
1464 btrfs_node_key_to_cpu(eb, &first_key, path->slots[i]);
1465 eb = read_tree_block(fs_info, bytenr, ptr_gen, i - 1,
1466 &first_key);
64c043de
LB
1467 if (IS_ERR(eb)) {
1468 return PTR_ERR(eb);
1469 } else if (!extent_buffer_uptodate(eb)) {
416bc658
JB
1470 free_extent_buffer(eb);
1471 return -EIO;
1472 }
5d4f98a2
YZ
1473 BUG_ON(btrfs_header_level(eb) != i - 1);
1474 path->nodes[i - 1] = eb;
1475 path->slots[i - 1] = 0;
1476 }
1477 return 1;
1478}
1479
1480/*
1481 * invalidate extent cache for file extents whose key in range of
1482 * [min_key, max_key)
1483 */
1484static int invalidate_extent_cache(struct btrfs_root *root,
1485 struct btrfs_key *min_key,
1486 struct btrfs_key *max_key)
1487{
0b246afa 1488 struct btrfs_fs_info *fs_info = root->fs_info;
5d4f98a2
YZ
1489 struct inode *inode = NULL;
1490 u64 objectid;
1491 u64 start, end;
33345d01 1492 u64 ino;
5d4f98a2
YZ
1493
1494 objectid = min_key->objectid;
1495 while (1) {
1496 cond_resched();
1497 iput(inode);
1498
1499 if (objectid > max_key->objectid)
1500 break;
1501
1502 inode = find_next_inode(root, objectid);
1503 if (!inode)
1504 break;
4a0cc7ca 1505 ino = btrfs_ino(BTRFS_I(inode));
5d4f98a2 1506
33345d01 1507 if (ino > max_key->objectid) {
5d4f98a2
YZ
1508 iput(inode);
1509 break;
1510 }
1511
33345d01 1512 objectid = ino + 1;
5d4f98a2
YZ
1513 if (!S_ISREG(inode->i_mode))
1514 continue;
1515
33345d01 1516 if (unlikely(min_key->objectid == ino)) {
5d4f98a2
YZ
1517 if (min_key->type > BTRFS_EXTENT_DATA_KEY)
1518 continue;
1519 if (min_key->type < BTRFS_EXTENT_DATA_KEY)
1520 start = 0;
1521 else {
1522 start = min_key->offset;
0b246afa 1523 WARN_ON(!IS_ALIGNED(start, fs_info->sectorsize));
5d4f98a2
YZ
1524 }
1525 } else {
1526 start = 0;
1527 }
1528
33345d01 1529 if (unlikely(max_key->objectid == ino)) {
5d4f98a2
YZ
1530 if (max_key->type < BTRFS_EXTENT_DATA_KEY)
1531 continue;
1532 if (max_key->type > BTRFS_EXTENT_DATA_KEY) {
1533 end = (u64)-1;
1534 } else {
1535 if (max_key->offset == 0)
1536 continue;
1537 end = max_key->offset;
0b246afa 1538 WARN_ON(!IS_ALIGNED(end, fs_info->sectorsize));
5d4f98a2
YZ
1539 end--;
1540 }
1541 } else {
1542 end = (u64)-1;
1543 }
1544
1545 /* the lock_extent waits for readpage to complete */
d0082371 1546 lock_extent(&BTRFS_I(inode)->io_tree, start, end);
dcdbc059 1547 btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 1);
d0082371 1548 unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
5d4f98a2
YZ
1549 }
1550 return 0;
1551}
1552
1553static int find_next_key(struct btrfs_path *path, int level,
1554 struct btrfs_key *key)
1555
1556{
1557 while (level < BTRFS_MAX_LEVEL) {
1558 if (!path->nodes[level])
1559 break;
1560 if (path->slots[level] + 1 <
1561 btrfs_header_nritems(path->nodes[level])) {
1562 btrfs_node_key_to_cpu(path->nodes[level], key,
1563 path->slots[level] + 1);
1564 return 0;
1565 }
1566 level++;
1567 }
1568 return 1;
1569}
1570
d2311e69
QW
1571/*
1572 * Insert current subvolume into reloc_control::dirty_subvol_roots
1573 */
1574static void insert_dirty_subvol(struct btrfs_trans_handle *trans,
1575 struct reloc_control *rc,
1576 struct btrfs_root *root)
1577{
1578 struct btrfs_root *reloc_root = root->reloc_root;
1579 struct btrfs_root_item *reloc_root_item;
1580
1581 /* @root must be a subvolume tree root with a valid reloc tree */
1582 ASSERT(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
1583 ASSERT(reloc_root);
1584
1585 reloc_root_item = &reloc_root->root_item;
1586 memset(&reloc_root_item->drop_progress, 0,
1587 sizeof(reloc_root_item->drop_progress));
1588 reloc_root_item->drop_level = 0;
1589 btrfs_set_root_refs(reloc_root_item, 0);
1590 btrfs_update_reloc_root(trans, root);
1591
1592 if (list_empty(&root->reloc_dirty_list)) {
00246528 1593 btrfs_grab_root(root);
d2311e69
QW
1594 list_add_tail(&root->reloc_dirty_list, &rc->dirty_subvol_roots);
1595 }
1596}
1597
1598static int clean_dirty_subvols(struct reloc_control *rc)
1599{
1600 struct btrfs_root *root;
1601 struct btrfs_root *next;
1602 int ret = 0;
30d40577 1603 int ret2;
d2311e69
QW
1604
1605 list_for_each_entry_safe(root, next, &rc->dirty_subvol_roots,
1606 reloc_dirty_list) {
30d40577
QW
1607 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
1608 /* Merged subvolume, cleanup its reloc root */
1609 struct btrfs_root *reloc_root = root->reloc_root;
d2311e69 1610
30d40577
QW
1611 list_del_init(&root->reloc_dirty_list);
1612 root->reloc_root = NULL;
6282675e
QW
1613 /*
1614 * Need barrier to ensure clear_bit() only happens after
1615 * root->reloc_root = NULL. Pairs with have_reloc_root.
1616 */
1617 smp_wmb();
1fac4a54 1618 clear_bit(BTRFS_ROOT_DEAD_RELOC_TREE, &root->state);
f28de8d8 1619 if (reloc_root) {
f44deb74
JB
1620 /*
1621 * btrfs_drop_snapshot drops our ref we hold for
1622 * ->reloc_root. If it fails however we must
1623 * drop the ref ourselves.
1624 */
f28de8d8 1625 ret2 = btrfs_drop_snapshot(reloc_root, 0, 1);
f44deb74
JB
1626 if (ret2 < 0) {
1627 btrfs_put_root(reloc_root);
1628 if (!ret)
1629 ret = ret2;
1630 }
f28de8d8 1631 }
00246528 1632 btrfs_put_root(root);
30d40577
QW
1633 } else {
1634 /* Orphan reloc tree, just clean it up */
0078a9f9 1635 ret2 = btrfs_drop_snapshot(root, 0, 1);
f44deb74
JB
1636 if (ret2 < 0) {
1637 btrfs_put_root(root);
1638 if (!ret)
1639 ret = ret2;
1640 }
d2311e69 1641 }
d2311e69
QW
1642 }
1643 return ret;
1644}
1645
5d4f98a2
YZ
1646/*
1647 * merge the relocated tree blocks in reloc tree with corresponding
1648 * fs tree.
1649 */
1650static noinline_for_stack int merge_reloc_root(struct reloc_control *rc,
1651 struct btrfs_root *root)
1652{
0b246afa 1653 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
5d4f98a2
YZ
1654 struct btrfs_key key;
1655 struct btrfs_key next_key;
9e6a0c52 1656 struct btrfs_trans_handle *trans = NULL;
5d4f98a2
YZ
1657 struct btrfs_root *reloc_root;
1658 struct btrfs_root_item *root_item;
1659 struct btrfs_path *path;
3fd0a558 1660 struct extent_buffer *leaf;
5d4f98a2
YZ
1661 int level;
1662 int max_level;
1663 int replaced = 0;
1664 int ret;
1665 int err = 0;
3fd0a558 1666 u32 min_reserved;
5d4f98a2
YZ
1667
1668 path = btrfs_alloc_path();
1669 if (!path)
1670 return -ENOMEM;
e4058b54 1671 path->reada = READA_FORWARD;
5d4f98a2
YZ
1672
1673 reloc_root = root->reloc_root;
1674 root_item = &reloc_root->root_item;
1675
1676 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
1677 level = btrfs_root_level(root_item);
67439dad 1678 atomic_inc(&reloc_root->node->refs);
5d4f98a2
YZ
1679 path->nodes[level] = reloc_root->node;
1680 path->slots[level] = 0;
1681 } else {
1682 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
1683
1684 level = root_item->drop_level;
1685 BUG_ON(level == 0);
1686 path->lowest_level = level;
1687 ret = btrfs_search_slot(NULL, reloc_root, &key, path, 0, 0);
33c66f43 1688 path->lowest_level = 0;
5d4f98a2
YZ
1689 if (ret < 0) {
1690 btrfs_free_path(path);
1691 return ret;
1692 }
1693
1694 btrfs_node_key_to_cpu(path->nodes[level], &next_key,
1695 path->slots[level]);
1696 WARN_ON(memcmp(&key, &next_key, sizeof(key)));
1697
1698 btrfs_unlock_up_safe(path, 0);
1699 }
1700
0b246afa 1701 min_reserved = fs_info->nodesize * (BTRFS_MAX_LEVEL - 1) * 2;
3fd0a558 1702 memset(&next_key, 0, sizeof(next_key));
5d4f98a2 1703
3fd0a558 1704 while (1) {
08e007d2
MX
1705 ret = btrfs_block_rsv_refill(root, rc->block_rsv, min_reserved,
1706 BTRFS_RESERVE_FLUSH_ALL);
3fd0a558 1707 if (ret) {
9e6a0c52
JB
1708 err = ret;
1709 goto out;
5d4f98a2 1710 }
9e6a0c52
JB
1711 trans = btrfs_start_transaction(root, 0);
1712 if (IS_ERR(trans)) {
1713 err = PTR_ERR(trans);
1714 trans = NULL;
1715 goto out;
1716 }
2abc726a
JB
1717
1718 /*
1719 * At this point we no longer have a reloc_control, so we can't
1720 * depend on btrfs_init_reloc_root to update our last_trans.
1721 *
1722 * But that's ok, we started the trans handle on our
1723 * corresponding fs_root, which means it's been added to the
1724 * dirty list. At commit time we'll still call
1725 * btrfs_update_reloc_root() and update our root item
1726 * appropriately.
1727 */
1728 reloc_root->last_trans = trans->transid;
9e6a0c52 1729 trans->block_rsv = rc->block_rsv;
5d4f98a2 1730
5d4f98a2 1731 replaced = 0;
5d4f98a2
YZ
1732 max_level = level;
1733
1734 ret = walk_down_reloc_tree(reloc_root, path, &level);
1735 if (ret < 0) {
1736 err = ret;
1737 goto out;
1738 }
1739 if (ret > 0)
1740 break;
1741
1742 if (!find_next_key(path, level, &key) &&
1743 btrfs_comp_cpu_keys(&next_key, &key) >= 0) {
1744 ret = 0;
5d4f98a2 1745 } else {
3d0174f7 1746 ret = replace_path(trans, rc, root, reloc_root, path,
3fd0a558 1747 &next_key, level, max_level);
5d4f98a2
YZ
1748 }
1749 if (ret < 0) {
1750 err = ret;
1751 goto out;
1752 }
1753
1754 if (ret > 0) {
1755 level = ret;
1756 btrfs_node_key_to_cpu(path->nodes[level], &key,
1757 path->slots[level]);
1758 replaced = 1;
5d4f98a2
YZ
1759 }
1760
1761 ret = walk_up_reloc_tree(reloc_root, path, &level);
1762 if (ret > 0)
1763 break;
1764
1765 BUG_ON(level == 0);
1766 /*
1767 * save the merging progress in the drop_progress.
1768 * this is OK since root refs == 1 in this case.
1769 */
1770 btrfs_node_key(path->nodes[level], &root_item->drop_progress,
1771 path->slots[level]);
1772 root_item->drop_level = level;
1773
3a45bb20 1774 btrfs_end_transaction_throttle(trans);
9e6a0c52 1775 trans = NULL;
5d4f98a2 1776
2ff7e61e 1777 btrfs_btree_balance_dirty(fs_info);
5d4f98a2
YZ
1778
1779 if (replaced && rc->stage == UPDATE_DATA_PTRS)
1780 invalidate_extent_cache(root, &key, &next_key);
1781 }
1782
1783 /*
1784 * handle the case only one block in the fs tree need to be
1785 * relocated and the block is tree root.
1786 */
1787 leaf = btrfs_lock_root_node(root);
1788 ret = btrfs_cow_block(trans, root, leaf, NULL, 0, &leaf);
1789 btrfs_tree_unlock(leaf);
1790 free_extent_buffer(leaf);
1791 if (ret < 0)
1792 err = ret;
1793out:
1794 btrfs_free_path(path);
1795
d2311e69
QW
1796 if (err == 0)
1797 insert_dirty_subvol(trans, rc, root);
5d4f98a2 1798
9e6a0c52 1799 if (trans)
3a45bb20 1800 btrfs_end_transaction_throttle(trans);
5d4f98a2 1801
2ff7e61e 1802 btrfs_btree_balance_dirty(fs_info);
5d4f98a2 1803
5d4f98a2
YZ
1804 if (replaced && rc->stage == UPDATE_DATA_PTRS)
1805 invalidate_extent_cache(root, &key, &next_key);
1806
1807 return err;
1808}
1809
3fd0a558
YZ
1810static noinline_for_stack
1811int prepare_to_merge(struct reloc_control *rc, int err)
5d4f98a2 1812{
3fd0a558 1813 struct btrfs_root *root = rc->extent_root;
0b246afa 1814 struct btrfs_fs_info *fs_info = root->fs_info;
5d4f98a2 1815 struct btrfs_root *reloc_root;
3fd0a558
YZ
1816 struct btrfs_trans_handle *trans;
1817 LIST_HEAD(reloc_roots);
1818 u64 num_bytes = 0;
1819 int ret;
3fd0a558 1820
0b246afa
JM
1821 mutex_lock(&fs_info->reloc_mutex);
1822 rc->merging_rsv_size += fs_info->nodesize * (BTRFS_MAX_LEVEL - 1) * 2;
3fd0a558 1823 rc->merging_rsv_size += rc->nodes_relocated * 2;
0b246afa 1824 mutex_unlock(&fs_info->reloc_mutex);
7585717f 1825
3fd0a558
YZ
1826again:
1827 if (!err) {
1828 num_bytes = rc->merging_rsv_size;
08e007d2
MX
1829 ret = btrfs_block_rsv_add(root, rc->block_rsv, num_bytes,
1830 BTRFS_RESERVE_FLUSH_ALL);
3fd0a558
YZ
1831 if (ret)
1832 err = ret;
1833 }
1834
7a7eaa40 1835 trans = btrfs_join_transaction(rc->extent_root);
3612b495
TI
1836 if (IS_ERR(trans)) {
1837 if (!err)
2ff7e61e 1838 btrfs_block_rsv_release(fs_info, rc->block_rsv,
63f018be 1839 num_bytes, NULL);
3612b495
TI
1840 return PTR_ERR(trans);
1841 }
3fd0a558
YZ
1842
1843 if (!err) {
1844 if (num_bytes != rc->merging_rsv_size) {
3a45bb20 1845 btrfs_end_transaction(trans);
2ff7e61e 1846 btrfs_block_rsv_release(fs_info, rc->block_rsv,
63f018be 1847 num_bytes, NULL);
3fd0a558
YZ
1848 goto again;
1849 }
1850 }
5d4f98a2 1851
3fd0a558
YZ
1852 rc->merge_reloc_tree = 1;
1853
1854 while (!list_empty(&rc->reloc_roots)) {
1855 reloc_root = list_entry(rc->reloc_roots.next,
1856 struct btrfs_root, root_list);
1857 list_del_init(&reloc_root->root_list);
5d4f98a2 1858
0b246afa 1859 root = read_fs_root(fs_info, reloc_root->root_key.offset);
5d4f98a2
YZ
1860 BUG_ON(IS_ERR(root));
1861 BUG_ON(root->reloc_root != reloc_root);
1862
3fd0a558
YZ
1863 /*
1864 * set reference count to 1, so btrfs_recover_relocation
1865 * knows it should resumes merging
1866 */
1867 if (!err)
1868 btrfs_set_root_refs(&reloc_root->root_item, 1);
5d4f98a2 1869 btrfs_update_reloc_root(trans, root);
5d4f98a2 1870
3fd0a558 1871 list_add(&reloc_root->root_list, &reloc_roots);
00246528 1872 btrfs_put_root(root);
3fd0a558 1873 }
5d4f98a2 1874
3fd0a558 1875 list_splice(&reloc_roots, &rc->reloc_roots);
5d4f98a2 1876
3fd0a558 1877 if (!err)
3a45bb20 1878 btrfs_commit_transaction(trans);
3fd0a558 1879 else
3a45bb20 1880 btrfs_end_transaction(trans);
3fd0a558 1881 return err;
5d4f98a2
YZ
1882}
1883
aca1bba6
LB
1884static noinline_for_stack
1885void free_reloc_roots(struct list_head *list)
1886{
a7571232 1887 struct btrfs_root *reloc_root, *tmp;
aca1bba6 1888
a7571232 1889 list_for_each_entry_safe(reloc_root, tmp, list, root_list)
bb166d72 1890 __del_reloc_root(reloc_root);
aca1bba6
LB
1891}
1892
3fd0a558 1893static noinline_for_stack
94404e82 1894void merge_reloc_roots(struct reloc_control *rc)
5d4f98a2 1895{
0b246afa 1896 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
5d4f98a2 1897 struct btrfs_root *root;
3fd0a558
YZ
1898 struct btrfs_root *reloc_root;
1899 LIST_HEAD(reloc_roots);
1900 int found = 0;
aca1bba6 1901 int ret = 0;
3fd0a558
YZ
1902again:
1903 root = rc->extent_root;
7585717f
CM
1904
1905 /*
1906 * this serializes us with btrfs_record_root_in_transaction,
1907 * we have to make sure nobody is in the middle of
1908 * adding their roots to the list while we are
1909 * doing this splice
1910 */
0b246afa 1911 mutex_lock(&fs_info->reloc_mutex);
3fd0a558 1912 list_splice_init(&rc->reloc_roots, &reloc_roots);
0b246afa 1913 mutex_unlock(&fs_info->reloc_mutex);
5d4f98a2 1914
3fd0a558
YZ
1915 while (!list_empty(&reloc_roots)) {
1916 found = 1;
1917 reloc_root = list_entry(reloc_roots.next,
1918 struct btrfs_root, root_list);
5d4f98a2 1919
3fd0a558 1920 if (btrfs_root_refs(&reloc_root->root_item) > 0) {
0b246afa 1921 root = read_fs_root(fs_info,
3fd0a558
YZ
1922 reloc_root->root_key.offset);
1923 BUG_ON(IS_ERR(root));
1924 BUG_ON(root->reloc_root != reloc_root);
5d4f98a2 1925
3fd0a558 1926 ret = merge_reloc_root(rc, root);
00246528 1927 btrfs_put_root(root);
b37b39cd 1928 if (ret) {
25e293c2
WS
1929 if (list_empty(&reloc_root->root_list))
1930 list_add_tail(&reloc_root->root_list,
1931 &reloc_roots);
aca1bba6 1932 goto out;
b37b39cd 1933 }
3fd0a558
YZ
1934 } else {
1935 list_del_init(&reloc_root->root_list);
30d40577
QW
1936 /* Don't forget to queue this reloc root for cleanup */
1937 list_add_tail(&reloc_root->reloc_dirty_list,
1938 &rc->dirty_subvol_roots);
3fd0a558 1939 }
5d4f98a2
YZ
1940 }
1941
3fd0a558
YZ
1942 if (found) {
1943 found = 0;
1944 goto again;
1945 }
aca1bba6
LB
1946out:
1947 if (ret) {
0b246afa 1948 btrfs_handle_fs_error(fs_info, ret, NULL);
a7571232 1949 free_reloc_roots(&reloc_roots);
467bb1d2
WS
1950
1951 /* new reloc root may be added */
0b246afa 1952 mutex_lock(&fs_info->reloc_mutex);
467bb1d2 1953 list_splice_init(&rc->reloc_roots, &reloc_roots);
0b246afa 1954 mutex_unlock(&fs_info->reloc_mutex);
a7571232 1955 free_reloc_roots(&reloc_roots);
aca1bba6
LB
1956 }
1957
7b7b7431
JB
1958 /*
1959 * We used to have
1960 *
1961 * BUG_ON(!RB_EMPTY_ROOT(&rc->reloc_root_tree.rb_root));
1962 *
1963 * here, but it's wrong. If we fail to start the transaction in
1964 * prepare_to_merge() we will have only 0 ref reloc roots, none of which
1965 * have actually been removed from the reloc_root_tree rb tree. This is
1966 * fine because we're bailing here, and we hold a reference on the root
1967 * for the list that holds it, so these roots will be cleaned up when we
1968 * do the reloc_dirty_list afterwards. Meanwhile the root->reloc_root
1969 * will be cleaned up on unmount.
1970 *
1971 * The remaining nodes will be cleaned up by free_reloc_control.
1972 */
5d4f98a2
YZ
1973}
1974
1975static void free_block_list(struct rb_root *blocks)
1976{
1977 struct tree_block *block;
1978 struct rb_node *rb_node;
1979 while ((rb_node = rb_first(blocks))) {
1980 block = rb_entry(rb_node, struct tree_block, rb_node);
1981 rb_erase(rb_node, blocks);
1982 kfree(block);
1983 }
1984}
1985
1986static int record_reloc_root_in_trans(struct btrfs_trans_handle *trans,
1987 struct btrfs_root *reloc_root)
1988{
0b246afa 1989 struct btrfs_fs_info *fs_info = reloc_root->fs_info;
5d4f98a2 1990 struct btrfs_root *root;
442b1ac5 1991 int ret;
5d4f98a2
YZ
1992
1993 if (reloc_root->last_trans == trans->transid)
1994 return 0;
1995
0b246afa 1996 root = read_fs_root(fs_info, reloc_root->root_key.offset);
5d4f98a2
YZ
1997 BUG_ON(IS_ERR(root));
1998 BUG_ON(root->reloc_root != reloc_root);
442b1ac5 1999 ret = btrfs_record_root_in_trans(trans, root);
00246528 2000 btrfs_put_root(root);
5d4f98a2 2001
442b1ac5 2002 return ret;
5d4f98a2
YZ
2003}
2004
3fd0a558
YZ
2005static noinline_for_stack
2006struct btrfs_root *select_reloc_root(struct btrfs_trans_handle *trans,
2007 struct reloc_control *rc,
a26195a5
QW
2008 struct btrfs_backref_node *node,
2009 struct btrfs_backref_edge *edges[])
5d4f98a2 2010{
a26195a5 2011 struct btrfs_backref_node *next;
5d4f98a2 2012 struct btrfs_root *root;
3fd0a558
YZ
2013 int index = 0;
2014
5d4f98a2
YZ
2015 next = node;
2016 while (1) {
2017 cond_resched();
2018 next = walk_up_backref(next, edges, &index);
2019 root = next->root;
3fd0a558 2020 BUG_ON(!root);
92a7cc42 2021 BUG_ON(!test_bit(BTRFS_ROOT_SHAREABLE, &root->state));
5d4f98a2
YZ
2022
2023 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
2024 record_reloc_root_in_trans(trans, root);
2025 break;
2026 }
2027
3fd0a558
YZ
2028 btrfs_record_root_in_trans(trans, root);
2029 root = root->reloc_root;
2030
2031 if (next->new_bytenr != root->node->start) {
2032 BUG_ON(next->new_bytenr);
2033 BUG_ON(!list_empty(&next->list));
2034 next->new_bytenr = root->node->start;
00246528
JB
2035 btrfs_put_root(next->root);
2036 next->root = btrfs_grab_root(root);
0b530bc5 2037 ASSERT(next->root);
3fd0a558
YZ
2038 list_add_tail(&next->list,
2039 &rc->backref_cache.changed);
9569cc20 2040 mark_block_processed(rc, next);
5d4f98a2
YZ
2041 break;
2042 }
2043
3fd0a558 2044 WARN_ON(1);
5d4f98a2
YZ
2045 root = NULL;
2046 next = walk_down_backref(edges, &index);
2047 if (!next || next->level <= node->level)
2048 break;
2049 }
3fd0a558
YZ
2050 if (!root)
2051 return NULL;
5d4f98a2 2052
3fd0a558
YZ
2053 next = node;
2054 /* setup backref node path for btrfs_reloc_cow_block */
2055 while (1) {
2056 rc->backref_cache.path[next->level] = next;
2057 if (--index < 0)
2058 break;
2059 next = edges[index]->node[UPPER];
5d4f98a2 2060 }
5d4f98a2
YZ
2061 return root;
2062}
2063
3fd0a558 2064/*
92a7cc42
QW
2065 * Select a tree root for relocation.
2066 *
2067 * Return NULL if the block is not shareable. We should use do_relocation() in
2068 * this case.
2069 *
2070 * Return a tree root pointer if the block is shareable.
2071 * Return -ENOENT if the block is root of reloc tree.
3fd0a558 2072 */
5d4f98a2 2073static noinline_for_stack
a26195a5 2074struct btrfs_root *select_one_root(struct btrfs_backref_node *node)
5d4f98a2 2075{
a26195a5 2076 struct btrfs_backref_node *next;
3fd0a558
YZ
2077 struct btrfs_root *root;
2078 struct btrfs_root *fs_root = NULL;
a26195a5 2079 struct btrfs_backref_edge *edges[BTRFS_MAX_LEVEL - 1];
3fd0a558
YZ
2080 int index = 0;
2081
2082 next = node;
2083 while (1) {
2084 cond_resched();
2085 next = walk_up_backref(next, edges, &index);
2086 root = next->root;
2087 BUG_ON(!root);
2088
92a7cc42
QW
2089 /* No other choice for non-shareable tree */
2090 if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state))
3fd0a558
YZ
2091 return root;
2092
2093 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID)
2094 fs_root = root;
2095
2096 if (next != node)
2097 return NULL;
2098
2099 next = walk_down_backref(edges, &index);
2100 if (!next || next->level <= node->level)
2101 break;
2102 }
2103
2104 if (!fs_root)
2105 return ERR_PTR(-ENOENT);
2106 return fs_root;
5d4f98a2
YZ
2107}
2108
2109static noinline_for_stack
3fd0a558 2110u64 calcu_metadata_size(struct reloc_control *rc,
a26195a5 2111 struct btrfs_backref_node *node, int reserve)
5d4f98a2 2112{
0b246afa 2113 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
a26195a5
QW
2114 struct btrfs_backref_node *next = node;
2115 struct btrfs_backref_edge *edge;
2116 struct btrfs_backref_edge *edges[BTRFS_MAX_LEVEL - 1];
3fd0a558
YZ
2117 u64 num_bytes = 0;
2118 int index = 0;
2119
2120 BUG_ON(reserve && node->processed);
2121
2122 while (next) {
2123 cond_resched();
2124 while (1) {
2125 if (next->processed && (reserve || next != node))
2126 break;
2127
0b246afa 2128 num_bytes += fs_info->nodesize;
3fd0a558
YZ
2129
2130 if (list_empty(&next->upper))
2131 break;
2132
2133 edge = list_entry(next->upper.next,
a26195a5 2134 struct btrfs_backref_edge, list[LOWER]);
3fd0a558
YZ
2135 edges[index++] = edge;
2136 next = edge->node[UPPER];
2137 }
2138 next = walk_down_backref(edges, &index);
2139 }
2140 return num_bytes;
5d4f98a2
YZ
2141}
2142
3fd0a558
YZ
2143static int reserve_metadata_space(struct btrfs_trans_handle *trans,
2144 struct reloc_control *rc,
a26195a5 2145 struct btrfs_backref_node *node)
5d4f98a2 2146{
3fd0a558 2147 struct btrfs_root *root = rc->extent_root;
da17066c 2148 struct btrfs_fs_info *fs_info = root->fs_info;
3fd0a558
YZ
2149 u64 num_bytes;
2150 int ret;
0647bf56 2151 u64 tmp;
3fd0a558
YZ
2152
2153 num_bytes = calcu_metadata_size(rc, node, 1) * 2;
5d4f98a2 2154
3fd0a558 2155 trans->block_rsv = rc->block_rsv;
0647bf56 2156 rc->reserved_bytes += num_bytes;
8ca17f0f
JB
2157
2158 /*
2159 * We are under a transaction here so we can only do limited flushing.
2160 * If we get an enospc just kick back -EAGAIN so we know to drop the
2161 * transaction and try to refill when we can flush all the things.
2162 */
0647bf56 2163 ret = btrfs_block_rsv_refill(root, rc->block_rsv, num_bytes,
8ca17f0f 2164 BTRFS_RESERVE_FLUSH_LIMIT);
3fd0a558 2165 if (ret) {
da17066c 2166 tmp = fs_info->nodesize * RELOCATION_RESERVED_NODES;
8ca17f0f
JB
2167 while (tmp <= rc->reserved_bytes)
2168 tmp <<= 1;
2169 /*
2170 * only one thread can access block_rsv at this point,
2171 * so we don't need hold lock to protect block_rsv.
2172 * we expand more reservation size here to allow enough
52042d8e 2173 * space for relocation and we will return earlier in
8ca17f0f
JB
2174 * enospc case.
2175 */
da17066c
JM
2176 rc->block_rsv->size = tmp + fs_info->nodesize *
2177 RELOCATION_RESERVED_NODES;
8ca17f0f 2178 return -EAGAIN;
5d4f98a2 2179 }
3fd0a558 2180
3fd0a558
YZ
2181 return 0;
2182}
2183
5d4f98a2
YZ
2184/*
2185 * relocate a block tree, and then update pointers in upper level
2186 * blocks that reference the block to point to the new location.
2187 *
2188 * if called by link_to_upper, the block has already been relocated.
2189 * in that case this function just updates pointers.
2190 */
2191static int do_relocation(struct btrfs_trans_handle *trans,
3fd0a558 2192 struct reloc_control *rc,
a26195a5 2193 struct btrfs_backref_node *node,
5d4f98a2
YZ
2194 struct btrfs_key *key,
2195 struct btrfs_path *path, int lowest)
2196{
2ff7e61e 2197 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
a26195a5
QW
2198 struct btrfs_backref_node *upper;
2199 struct btrfs_backref_edge *edge;
2200 struct btrfs_backref_edge *edges[BTRFS_MAX_LEVEL - 1];
5d4f98a2
YZ
2201 struct btrfs_root *root;
2202 struct extent_buffer *eb;
2203 u32 blocksize;
2204 u64 bytenr;
2205 u64 generation;
5d4f98a2
YZ
2206 int slot;
2207 int ret;
2208 int err = 0;
2209
2210 BUG_ON(lowest && node->eb);
2211
2212 path->lowest_level = node->level + 1;
3fd0a558 2213 rc->backref_cache.path[node->level] = node;
5d4f98a2 2214 list_for_each_entry(edge, &node->upper, list[LOWER]) {
581c1760 2215 struct btrfs_key first_key;
82fa113f 2216 struct btrfs_ref ref = { 0 };
581c1760 2217
5d4f98a2 2218 cond_resched();
5d4f98a2
YZ
2219
2220 upper = edge->node[UPPER];
dc4103f9 2221 root = select_reloc_root(trans, rc, upper, edges);
3fd0a558
YZ
2222 BUG_ON(!root);
2223
2224 if (upper->eb && !upper->locked) {
2225 if (!lowest) {
e3b83361 2226 ret = btrfs_bin_search(upper->eb, key, &slot);
cbca7d59
FM
2227 if (ret < 0) {
2228 err = ret;
2229 goto next;
2230 }
3fd0a558
YZ
2231 BUG_ON(ret);
2232 bytenr = btrfs_node_blockptr(upper->eb, slot);
2233 if (node->eb->start == bytenr)
2234 goto next;
2235 }
b0fe7078 2236 btrfs_backref_drop_node_buffer(upper);
3fd0a558 2237 }
5d4f98a2
YZ
2238
2239 if (!upper->eb) {
2240 ret = btrfs_search_slot(trans, root, key, path, 0, 1);
3561b9db
LB
2241 if (ret) {
2242 if (ret < 0)
2243 err = ret;
2244 else
2245 err = -ENOENT;
2246
2247 btrfs_release_path(path);
5d4f98a2
YZ
2248 break;
2249 }
5d4f98a2 2250
3fd0a558
YZ
2251 if (!upper->eb) {
2252 upper->eb = path->nodes[upper->level];
2253 path->nodes[upper->level] = NULL;
2254 } else {
2255 BUG_ON(upper->eb != path->nodes[upper->level]);
2256 }
5d4f98a2 2257
3fd0a558
YZ
2258 upper->locked = 1;
2259 path->locks[upper->level] = 0;
5d4f98a2 2260
3fd0a558 2261 slot = path->slots[upper->level];
b3b4aa74 2262 btrfs_release_path(path);
5d4f98a2 2263 } else {
e3b83361 2264 ret = btrfs_bin_search(upper->eb, key, &slot);
cbca7d59
FM
2265 if (ret < 0) {
2266 err = ret;
2267 goto next;
2268 }
5d4f98a2
YZ
2269 BUG_ON(ret);
2270 }
2271
2272 bytenr = btrfs_node_blockptr(upper->eb, slot);
3fd0a558 2273 if (lowest) {
4547f4d8
LB
2274 if (bytenr != node->bytenr) {
2275 btrfs_err(root->fs_info,
2276 "lowest leaf/node mismatch: bytenr %llu node->bytenr %llu slot %d upper %llu",
2277 bytenr, node->bytenr, slot,
2278 upper->eb->start);
2279 err = -EIO;
2280 goto next;
2281 }
5d4f98a2 2282 } else {
3fd0a558
YZ
2283 if (node->eb->start == bytenr)
2284 goto next;
5d4f98a2
YZ
2285 }
2286
da17066c 2287 blocksize = root->fs_info->nodesize;
5d4f98a2 2288 generation = btrfs_node_ptr_generation(upper->eb, slot);
581c1760
QW
2289 btrfs_node_key_to_cpu(upper->eb, &first_key, slot);
2290 eb = read_tree_block(fs_info, bytenr, generation,
2291 upper->level - 1, &first_key);
64c043de
LB
2292 if (IS_ERR(eb)) {
2293 err = PTR_ERR(eb);
2294 goto next;
2295 } else if (!extent_buffer_uptodate(eb)) {
416bc658 2296 free_extent_buffer(eb);
97d9a8a4
TI
2297 err = -EIO;
2298 goto next;
2299 }
5d4f98a2 2300 btrfs_tree_lock(eb);
8bead258 2301 btrfs_set_lock_blocking_write(eb);
5d4f98a2
YZ
2302
2303 if (!node->eb) {
2304 ret = btrfs_cow_block(trans, root, eb, upper->eb,
2305 slot, &eb);
3fd0a558
YZ
2306 btrfs_tree_unlock(eb);
2307 free_extent_buffer(eb);
5d4f98a2
YZ
2308 if (ret < 0) {
2309 err = ret;
3fd0a558 2310 goto next;
5d4f98a2 2311 }
3fd0a558 2312 BUG_ON(node->eb != eb);
5d4f98a2
YZ
2313 } else {
2314 btrfs_set_node_blockptr(upper->eb, slot,
2315 node->eb->start);
2316 btrfs_set_node_ptr_generation(upper->eb, slot,
2317 trans->transid);
2318 btrfs_mark_buffer_dirty(upper->eb);
2319
82fa113f
QW
2320 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF,
2321 node->eb->start, blocksize,
2322 upper->eb->start);
2323 ref.real_root = root->root_key.objectid;
2324 btrfs_init_tree_ref(&ref, node->level,
2325 btrfs_header_owner(upper->eb));
2326 ret = btrfs_inc_extent_ref(trans, &ref);
5d4f98a2
YZ
2327 BUG_ON(ret);
2328
2329 ret = btrfs_drop_subtree(trans, root, eb, upper->eb);
2330 BUG_ON(ret);
5d4f98a2 2331 }
3fd0a558
YZ
2332next:
2333 if (!upper->pending)
b0fe7078 2334 btrfs_backref_drop_node_buffer(upper);
3fd0a558 2335 else
b0fe7078 2336 btrfs_backref_unlock_node_buffer(upper);
3fd0a558
YZ
2337 if (err)
2338 break;
5d4f98a2 2339 }
3fd0a558
YZ
2340
2341 if (!err && node->pending) {
b0fe7078 2342 btrfs_backref_drop_node_buffer(node);
3fd0a558
YZ
2343 list_move_tail(&node->list, &rc->backref_cache.changed);
2344 node->pending = 0;
2345 }
2346
5d4f98a2 2347 path->lowest_level = 0;
3fd0a558 2348 BUG_ON(err == -ENOSPC);
5d4f98a2
YZ
2349 return err;
2350}
2351
2352static int link_to_upper(struct btrfs_trans_handle *trans,
3fd0a558 2353 struct reloc_control *rc,
a26195a5 2354 struct btrfs_backref_node *node,
5d4f98a2
YZ
2355 struct btrfs_path *path)
2356{
2357 struct btrfs_key key;
5d4f98a2
YZ
2358
2359 btrfs_node_key_to_cpu(node->eb, &key, 0);
3fd0a558 2360 return do_relocation(trans, rc, node, &key, path, 0);
5d4f98a2
YZ
2361}
2362
2363static int finish_pending_nodes(struct btrfs_trans_handle *trans,
3fd0a558
YZ
2364 struct reloc_control *rc,
2365 struct btrfs_path *path, int err)
5d4f98a2 2366{
3fd0a558 2367 LIST_HEAD(list);
a26195a5
QW
2368 struct btrfs_backref_cache *cache = &rc->backref_cache;
2369 struct btrfs_backref_node *node;
5d4f98a2
YZ
2370 int level;
2371 int ret;
5d4f98a2
YZ
2372
2373 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
2374 while (!list_empty(&cache->pending[level])) {
2375 node = list_entry(cache->pending[level].next,
a26195a5 2376 struct btrfs_backref_node, list);
3fd0a558
YZ
2377 list_move_tail(&node->list, &list);
2378 BUG_ON(!node->pending);
5d4f98a2 2379
3fd0a558
YZ
2380 if (!err) {
2381 ret = link_to_upper(trans, rc, node, path);
2382 if (ret < 0)
2383 err = ret;
2384 }
5d4f98a2 2385 }
3fd0a558 2386 list_splice_init(&list, &cache->pending[level]);
5d4f98a2 2387 }
5d4f98a2
YZ
2388 return err;
2389}
2390
5d4f98a2
YZ
2391/*
2392 * mark a block and all blocks directly/indirectly reference the block
2393 * as processed.
2394 */
2395static void update_processed_blocks(struct reloc_control *rc,
a26195a5 2396 struct btrfs_backref_node *node)
5d4f98a2 2397{
a26195a5
QW
2398 struct btrfs_backref_node *next = node;
2399 struct btrfs_backref_edge *edge;
2400 struct btrfs_backref_edge *edges[BTRFS_MAX_LEVEL - 1];
5d4f98a2
YZ
2401 int index = 0;
2402
2403 while (next) {
2404 cond_resched();
2405 while (1) {
2406 if (next->processed)
2407 break;
2408
9569cc20 2409 mark_block_processed(rc, next);
5d4f98a2
YZ
2410
2411 if (list_empty(&next->upper))
2412 break;
2413
2414 edge = list_entry(next->upper.next,
a26195a5 2415 struct btrfs_backref_edge, list[LOWER]);
5d4f98a2
YZ
2416 edges[index++] = edge;
2417 next = edge->node[UPPER];
2418 }
2419 next = walk_down_backref(edges, &index);
2420 }
2421}
2422
7476dfda 2423static int tree_block_processed(u64 bytenr, struct reloc_control *rc)
3fd0a558 2424{
da17066c 2425 u32 blocksize = rc->extent_root->fs_info->nodesize;
7476dfda 2426
3fd0a558
YZ
2427 if (test_range_bit(&rc->processed_blocks, bytenr,
2428 bytenr + blocksize - 1, EXTENT_DIRTY, 1, NULL))
2429 return 1;
2430 return 0;
5d4f98a2
YZ
2431}
2432
2ff7e61e 2433static int get_tree_block_key(struct btrfs_fs_info *fs_info,
5d4f98a2
YZ
2434 struct tree_block *block)
2435{
2436 struct extent_buffer *eb;
2437
581c1760
QW
2438 eb = read_tree_block(fs_info, block->bytenr, block->key.offset,
2439 block->level, NULL);
64c043de
LB
2440 if (IS_ERR(eb)) {
2441 return PTR_ERR(eb);
2442 } else if (!extent_buffer_uptodate(eb)) {
416bc658
JB
2443 free_extent_buffer(eb);
2444 return -EIO;
2445 }
5d4f98a2
YZ
2446 if (block->level == 0)
2447 btrfs_item_key_to_cpu(eb, &block->key, 0);
2448 else
2449 btrfs_node_key_to_cpu(eb, &block->key, 0);
2450 free_extent_buffer(eb);
2451 block->key_ready = 1;
2452 return 0;
2453}
2454
5d4f98a2
YZ
2455/*
2456 * helper function to relocate a tree block
2457 */
2458static int relocate_tree_block(struct btrfs_trans_handle *trans,
2459 struct reloc_control *rc,
a26195a5 2460 struct btrfs_backref_node *node,
5d4f98a2
YZ
2461 struct btrfs_key *key,
2462 struct btrfs_path *path)
2463{
2464 struct btrfs_root *root;
3fd0a558
YZ
2465 int ret = 0;
2466
2467 if (!node)
2468 return 0;
5d4f98a2 2469
5f6b2e5c
JB
2470 /*
2471 * If we fail here we want to drop our backref_node because we are going
2472 * to start over and regenerate the tree for it.
2473 */
2474 ret = reserve_metadata_space(trans, rc, node);
2475 if (ret)
2476 goto out;
2477
3fd0a558 2478 BUG_ON(node->processed);
147d256e 2479 root = select_one_root(node);
3fd0a558 2480 if (root == ERR_PTR(-ENOENT)) {
5d4f98a2 2481 update_processed_blocks(rc, node);
3fd0a558 2482 goto out;
5d4f98a2
YZ
2483 }
2484
3fd0a558 2485 if (root) {
92a7cc42 2486 if (test_bit(BTRFS_ROOT_SHAREABLE, &root->state)) {
3fd0a558
YZ
2487 BUG_ON(node->new_bytenr);
2488 BUG_ON(!list_empty(&node->list));
2489 btrfs_record_root_in_trans(trans, root);
2490 root = root->reloc_root;
2491 node->new_bytenr = root->node->start;
00246528
JB
2492 btrfs_put_root(node->root);
2493 node->root = btrfs_grab_root(root);
0b530bc5 2494 ASSERT(node->root);
3fd0a558
YZ
2495 list_add_tail(&node->list, &rc->backref_cache.changed);
2496 } else {
2497 path->lowest_level = node->level;
2498 ret = btrfs_search_slot(trans, root, key, path, 0, 1);
b3b4aa74 2499 btrfs_release_path(path);
3fd0a558
YZ
2500 if (ret > 0)
2501 ret = 0;
2502 }
2503 if (!ret)
2504 update_processed_blocks(rc, node);
2505 } else {
2506 ret = do_relocation(trans, rc, node, key, path, 1);
2507 }
5d4f98a2 2508out:
0647bf56 2509 if (ret || node->level == 0 || node->cowonly)
023acb07 2510 btrfs_backref_cleanup_node(&rc->backref_cache, node);
5d4f98a2
YZ
2511 return ret;
2512}
2513
2514/*
2515 * relocate a list of blocks
2516 */
2517static noinline_for_stack
2518int relocate_tree_blocks(struct btrfs_trans_handle *trans,
2519 struct reloc_control *rc, struct rb_root *blocks)
2520{
2ff7e61e 2521 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
a26195a5 2522 struct btrfs_backref_node *node;
5d4f98a2
YZ
2523 struct btrfs_path *path;
2524 struct tree_block *block;
98ff7b94 2525 struct tree_block *next;
5d4f98a2
YZ
2526 int ret;
2527 int err = 0;
2528
2529 path = btrfs_alloc_path();
e1a12670
LB
2530 if (!path) {
2531 err = -ENOMEM;
34c2b290 2532 goto out_free_blocks;
e1a12670 2533 }
5d4f98a2 2534
98ff7b94
QW
2535 /* Kick in readahead for tree blocks with missing keys */
2536 rbtree_postorder_for_each_entry_safe(block, next, blocks, rb_node) {
5d4f98a2 2537 if (!block->key_ready)
2ff7e61e 2538 readahead_tree_block(fs_info, block->bytenr);
5d4f98a2
YZ
2539 }
2540
98ff7b94
QW
2541 /* Get first keys */
2542 rbtree_postorder_for_each_entry_safe(block, next, blocks, rb_node) {
34c2b290 2543 if (!block->key_ready) {
2ff7e61e 2544 err = get_tree_block_key(fs_info, block);
34c2b290
DS
2545 if (err)
2546 goto out_free_path;
2547 }
5d4f98a2
YZ
2548 }
2549
98ff7b94
QW
2550 /* Do tree relocation */
2551 rbtree_postorder_for_each_entry_safe(block, next, blocks, rb_node) {
3fd0a558 2552 node = build_backref_tree(rc, &block->key,
5d4f98a2
YZ
2553 block->level, block->bytenr);
2554 if (IS_ERR(node)) {
2555 err = PTR_ERR(node);
2556 goto out;
2557 }
2558
2559 ret = relocate_tree_block(trans, rc, node, &block->key,
2560 path);
2561 if (ret < 0) {
50dbbb71
JB
2562 err = ret;
2563 break;
5d4f98a2 2564 }
5d4f98a2 2565 }
5d4f98a2 2566out:
3fd0a558 2567 err = finish_pending_nodes(trans, rc, path, err);
5d4f98a2 2568
34c2b290 2569out_free_path:
5d4f98a2 2570 btrfs_free_path(path);
34c2b290 2571out_free_blocks:
e1a12670 2572 free_block_list(blocks);
5d4f98a2
YZ
2573 return err;
2574}
2575
efa56464
YZ
2576static noinline_for_stack
2577int prealloc_file_extent_cluster(struct inode *inode,
2578 struct file_extent_cluster *cluster)
2579{
2580 u64 alloc_hint = 0;
2581 u64 start;
2582 u64 end;
2583 u64 offset = BTRFS_I(inode)->index_cnt;
2584 u64 num_bytes;
2585 int nr = 0;
2586 int ret = 0;
dcb40c19
WX
2587 u64 prealloc_start = cluster->start - offset;
2588 u64 prealloc_end = cluster->end - offset;
18513091 2589 u64 cur_offset;
364ecf36 2590 struct extent_changeset *data_reserved = NULL;
efa56464
YZ
2591
2592 BUG_ON(cluster->start != cluster->boundary[0]);
5955102c 2593 inode_lock(inode);
efa56464 2594
364ecf36 2595 ret = btrfs_check_data_free_space(inode, &data_reserved, prealloc_start,
dcb40c19 2596 prealloc_end + 1 - prealloc_start);
efa56464
YZ
2597 if (ret)
2598 goto out;
2599
18513091 2600 cur_offset = prealloc_start;
efa56464
YZ
2601 while (nr < cluster->nr) {
2602 start = cluster->boundary[nr] - offset;
2603 if (nr + 1 < cluster->nr)
2604 end = cluster->boundary[nr + 1] - 1 - offset;
2605 else
2606 end = cluster->end - offset;
2607
d0082371 2608 lock_extent(&BTRFS_I(inode)->io_tree, start, end);
efa56464 2609 num_bytes = end + 1 - start;
18513091 2610 if (cur_offset < start)
bc42bda2
QW
2611 btrfs_free_reserved_data_space(inode, data_reserved,
2612 cur_offset, start - cur_offset);
efa56464
YZ
2613 ret = btrfs_prealloc_file_range(inode, 0, start,
2614 num_bytes, num_bytes,
2615 end + 1, &alloc_hint);
18513091 2616 cur_offset = end + 1;
d0082371 2617 unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
efa56464
YZ
2618 if (ret)
2619 break;
2620 nr++;
2621 }
18513091 2622 if (cur_offset < prealloc_end)
bc42bda2
QW
2623 btrfs_free_reserved_data_space(inode, data_reserved,
2624 cur_offset, prealloc_end + 1 - cur_offset);
efa56464 2625out:
5955102c 2626 inode_unlock(inode);
364ecf36 2627 extent_changeset_free(data_reserved);
efa56464
YZ
2628 return ret;
2629}
2630
5d4f98a2 2631static noinline_for_stack
0257bb82
YZ
2632int setup_extent_mapping(struct inode *inode, u64 start, u64 end,
2633 u64 block_start)
2634{
0257bb82
YZ
2635 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
2636 struct extent_map *em;
2637 int ret = 0;
2638
172ddd60 2639 em = alloc_extent_map();
0257bb82
YZ
2640 if (!em)
2641 return -ENOMEM;
2642
2643 em->start = start;
2644 em->len = end + 1 - start;
2645 em->block_len = em->len;
2646 em->block_start = block_start;
0257bb82
YZ
2647 set_bit(EXTENT_FLAG_PINNED, &em->flags);
2648
d0082371 2649 lock_extent(&BTRFS_I(inode)->io_tree, start, end);
0257bb82
YZ
2650 while (1) {
2651 write_lock(&em_tree->lock);
09a2a8f9 2652 ret = add_extent_mapping(em_tree, em, 0);
0257bb82
YZ
2653 write_unlock(&em_tree->lock);
2654 if (ret != -EEXIST) {
2655 free_extent_map(em);
2656 break;
2657 }
dcdbc059 2658 btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 0);
0257bb82 2659 }
d0082371 2660 unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
0257bb82
YZ
2661 return ret;
2662}
2663
726a3421
QW
2664/*
2665 * Allow error injection to test balance cancellation
2666 */
2667int btrfs_should_cancel_balance(struct btrfs_fs_info *fs_info)
2668{
2669 return atomic_read(&fs_info->balance_cancel_req);
2670}
2671ALLOW_ERROR_INJECTION(btrfs_should_cancel_balance, TRUE);
2672
0257bb82
YZ
2673static int relocate_file_extent_cluster(struct inode *inode,
2674 struct file_extent_cluster *cluster)
5d4f98a2 2675{
2ff7e61e 2676 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5d4f98a2
YZ
2677 u64 page_start;
2678 u64 page_end;
0257bb82
YZ
2679 u64 offset = BTRFS_I(inode)->index_cnt;
2680 unsigned long index;
5d4f98a2 2681 unsigned long last_index;
5d4f98a2
YZ
2682 struct page *page;
2683 struct file_ra_state *ra;
3b16a4e3 2684 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
0257bb82 2685 int nr = 0;
5d4f98a2
YZ
2686 int ret = 0;
2687
0257bb82
YZ
2688 if (!cluster->nr)
2689 return 0;
2690
5d4f98a2
YZ
2691 ra = kzalloc(sizeof(*ra), GFP_NOFS);
2692 if (!ra)
2693 return -ENOMEM;
2694
efa56464
YZ
2695 ret = prealloc_file_extent_cluster(inode, cluster);
2696 if (ret)
2697 goto out;
0257bb82 2698
efa56464 2699 file_ra_state_init(ra, inode->i_mapping);
5d4f98a2 2700
0257bb82
YZ
2701 ret = setup_extent_mapping(inode, cluster->start - offset,
2702 cluster->end - offset, cluster->start);
5d4f98a2 2703 if (ret)
efa56464 2704 goto out;
5d4f98a2 2705
09cbfeaf
KS
2706 index = (cluster->start - offset) >> PAGE_SHIFT;
2707 last_index = (cluster->end - offset) >> PAGE_SHIFT;
0257bb82 2708 while (index <= last_index) {
9f3db423
NB
2709 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode),
2710 PAGE_SIZE);
efa56464
YZ
2711 if (ret)
2712 goto out;
2713
0257bb82 2714 page = find_lock_page(inode->i_mapping, index);
5d4f98a2 2715 if (!page) {
0257bb82
YZ
2716 page_cache_sync_readahead(inode->i_mapping,
2717 ra, NULL, index,
2718 last_index + 1 - index);
a94733d0 2719 page = find_or_create_page(inode->i_mapping, index,
3b16a4e3 2720 mask);
0257bb82 2721 if (!page) {
691fa059 2722 btrfs_delalloc_release_metadata(BTRFS_I(inode),
43b18595 2723 PAGE_SIZE, true);
44db1216 2724 btrfs_delalloc_release_extents(BTRFS_I(inode),
8702ba93 2725 PAGE_SIZE);
0257bb82 2726 ret = -ENOMEM;
efa56464 2727 goto out;
0257bb82 2728 }
5d4f98a2 2729 }
0257bb82
YZ
2730
2731 if (PageReadahead(page)) {
2732 page_cache_async_readahead(inode->i_mapping,
2733 ra, NULL, page, index,
2734 last_index + 1 - index);
2735 }
2736
5d4f98a2
YZ
2737 if (!PageUptodate(page)) {
2738 btrfs_readpage(NULL, page);
2739 lock_page(page);
2740 if (!PageUptodate(page)) {
2741 unlock_page(page);
09cbfeaf 2742 put_page(page);
691fa059 2743 btrfs_delalloc_release_metadata(BTRFS_I(inode),
43b18595 2744 PAGE_SIZE, true);
8b62f87b 2745 btrfs_delalloc_release_extents(BTRFS_I(inode),
8702ba93 2746 PAGE_SIZE);
5d4f98a2 2747 ret = -EIO;
efa56464 2748 goto out;
5d4f98a2
YZ
2749 }
2750 }
5d4f98a2 2751
4eee4fa4 2752 page_start = page_offset(page);
09cbfeaf 2753 page_end = page_start + PAGE_SIZE - 1;
0257bb82 2754
d0082371 2755 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end);
0257bb82 2756
5d4f98a2
YZ
2757 set_page_extent_mapped(page);
2758
0257bb82
YZ
2759 if (nr < cluster->nr &&
2760 page_start + offset == cluster->boundary[nr]) {
2761 set_extent_bits(&BTRFS_I(inode)->io_tree,
2762 page_start, page_end,
ceeb0ae7 2763 EXTENT_BOUNDARY);
0257bb82
YZ
2764 nr++;
2765 }
5d4f98a2 2766
765f3ceb 2767 ret = btrfs_set_extent_delalloc(inode, page_start, page_end, 0,
330a5827 2768 NULL);
765f3ceb
NB
2769 if (ret) {
2770 unlock_page(page);
2771 put_page(page);
2772 btrfs_delalloc_release_metadata(BTRFS_I(inode),
43b18595 2773 PAGE_SIZE, true);
765f3ceb 2774 btrfs_delalloc_release_extents(BTRFS_I(inode),
8702ba93 2775 PAGE_SIZE);
765f3ceb
NB
2776
2777 clear_extent_bits(&BTRFS_I(inode)->io_tree,
2778 page_start, page_end,
2779 EXTENT_LOCKED | EXTENT_BOUNDARY);
2780 goto out;
2781
2782 }
5d4f98a2 2783 set_page_dirty(page);
5d4f98a2 2784
0257bb82 2785 unlock_extent(&BTRFS_I(inode)->io_tree,
d0082371 2786 page_start, page_end);
5d4f98a2 2787 unlock_page(page);
09cbfeaf 2788 put_page(page);
0257bb82
YZ
2789
2790 index++;
8702ba93 2791 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE);
efa56464 2792 balance_dirty_pages_ratelimited(inode->i_mapping);
2ff7e61e 2793 btrfs_throttle(fs_info);
7f913c7c
QW
2794 if (btrfs_should_cancel_balance(fs_info)) {
2795 ret = -ECANCELED;
2796 goto out;
2797 }
5d4f98a2 2798 }
0257bb82 2799 WARN_ON(nr != cluster->nr);
efa56464 2800out:
5d4f98a2 2801 kfree(ra);
5d4f98a2
YZ
2802 return ret;
2803}
2804
2805static noinline_for_stack
0257bb82
YZ
2806int relocate_data_extent(struct inode *inode, struct btrfs_key *extent_key,
2807 struct file_extent_cluster *cluster)
5d4f98a2 2808{
0257bb82 2809 int ret;
5d4f98a2 2810
0257bb82
YZ
2811 if (cluster->nr > 0 && extent_key->objectid != cluster->end + 1) {
2812 ret = relocate_file_extent_cluster(inode, cluster);
2813 if (ret)
2814 return ret;
2815 cluster->nr = 0;
5d4f98a2 2816 }
5d4f98a2 2817
0257bb82
YZ
2818 if (!cluster->nr)
2819 cluster->start = extent_key->objectid;
2820 else
2821 BUG_ON(cluster->nr >= MAX_EXTENTS);
2822 cluster->end = extent_key->objectid + extent_key->offset - 1;
2823 cluster->boundary[cluster->nr] = extent_key->objectid;
2824 cluster->nr++;
2825
2826 if (cluster->nr >= MAX_EXTENTS) {
2827 ret = relocate_file_extent_cluster(inode, cluster);
2828 if (ret)
2829 return ret;
2830 cluster->nr = 0;
2831 }
2832 return 0;
5d4f98a2
YZ
2833}
2834
5d4f98a2
YZ
2835/*
2836 * helper to add a tree block to the list.
2837 * the major work is getting the generation and level of the block
2838 */
2839static int add_tree_block(struct reloc_control *rc,
2840 struct btrfs_key *extent_key,
2841 struct btrfs_path *path,
2842 struct rb_root *blocks)
2843{
2844 struct extent_buffer *eb;
2845 struct btrfs_extent_item *ei;
2846 struct btrfs_tree_block_info *bi;
2847 struct tree_block *block;
2848 struct rb_node *rb_node;
2849 u32 item_size;
2850 int level = -1;
7fdf4b60 2851 u64 generation;
5d4f98a2
YZ
2852
2853 eb = path->nodes[0];
2854 item_size = btrfs_item_size_nr(eb, path->slots[0]);
2855
3173a18f
JB
2856 if (extent_key->type == BTRFS_METADATA_ITEM_KEY ||
2857 item_size >= sizeof(*ei) + sizeof(*bi)) {
5d4f98a2
YZ
2858 ei = btrfs_item_ptr(eb, path->slots[0],
2859 struct btrfs_extent_item);
3173a18f
JB
2860 if (extent_key->type == BTRFS_EXTENT_ITEM_KEY) {
2861 bi = (struct btrfs_tree_block_info *)(ei + 1);
2862 level = btrfs_tree_block_level(eb, bi);
2863 } else {
2864 level = (int)extent_key->offset;
2865 }
5d4f98a2 2866 generation = btrfs_extent_generation(eb, ei);
6d8ff4e4 2867 } else if (unlikely(item_size == sizeof(struct btrfs_extent_item_v0))) {
ba3c2b19
NB
2868 btrfs_print_v0_err(eb->fs_info);
2869 btrfs_handle_fs_error(eb->fs_info, -EINVAL, NULL);
2870 return -EINVAL;
5d4f98a2 2871 } else {
5d4f98a2 2872 BUG();
5d4f98a2
YZ
2873 }
2874
b3b4aa74 2875 btrfs_release_path(path);
5d4f98a2
YZ
2876
2877 BUG_ON(level == -1);
2878
2879 block = kmalloc(sizeof(*block), GFP_NOFS);
2880 if (!block)
2881 return -ENOMEM;
2882
2883 block->bytenr = extent_key->objectid;
da17066c 2884 block->key.objectid = rc->extent_root->fs_info->nodesize;
5d4f98a2
YZ
2885 block->key.offset = generation;
2886 block->level = level;
2887 block->key_ready = 0;
2888
e9a28dc5 2889 rb_node = rb_simple_insert(blocks, block->bytenr, &block->rb_node);
43c04fb1 2890 if (rb_node)
982c92cb
QW
2891 btrfs_backref_panic(rc->extent_root->fs_info, block->bytenr,
2892 -EEXIST);
5d4f98a2
YZ
2893
2894 return 0;
2895}
2896
2897/*
2898 * helper to add tree blocks for backref of type BTRFS_SHARED_DATA_REF_KEY
2899 */
2900static int __add_tree_block(struct reloc_control *rc,
2901 u64 bytenr, u32 blocksize,
2902 struct rb_root *blocks)
2903{
0b246afa 2904 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
5d4f98a2
YZ
2905 struct btrfs_path *path;
2906 struct btrfs_key key;
2907 int ret;
0b246afa 2908 bool skinny = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
5d4f98a2 2909
7476dfda 2910 if (tree_block_processed(bytenr, rc))
5d4f98a2
YZ
2911 return 0;
2912
e9a28dc5 2913 if (rb_simple_search(blocks, bytenr))
5d4f98a2
YZ
2914 return 0;
2915
2916 path = btrfs_alloc_path();
2917 if (!path)
2918 return -ENOMEM;
aee68ee5 2919again:
5d4f98a2 2920 key.objectid = bytenr;
aee68ee5
JB
2921 if (skinny) {
2922 key.type = BTRFS_METADATA_ITEM_KEY;
2923 key.offset = (u64)-1;
2924 } else {
2925 key.type = BTRFS_EXTENT_ITEM_KEY;
2926 key.offset = blocksize;
2927 }
5d4f98a2
YZ
2928
2929 path->search_commit_root = 1;
2930 path->skip_locking = 1;
2931 ret = btrfs_search_slot(NULL, rc->extent_root, &key, path, 0, 0);
2932 if (ret < 0)
2933 goto out;
5d4f98a2 2934
aee68ee5
JB
2935 if (ret > 0 && skinny) {
2936 if (path->slots[0]) {
2937 path->slots[0]--;
2938 btrfs_item_key_to_cpu(path->nodes[0], &key,
2939 path->slots[0]);
2940 if (key.objectid == bytenr &&
2941 (key.type == BTRFS_METADATA_ITEM_KEY ||
2942 (key.type == BTRFS_EXTENT_ITEM_KEY &&
2943 key.offset == blocksize)))
2944 ret = 0;
2945 }
2946
2947 if (ret) {
2948 skinny = false;
2949 btrfs_release_path(path);
2950 goto again;
2951 }
3173a18f 2952 }
cdccee99
LB
2953 if (ret) {
2954 ASSERT(ret == 1);
2955 btrfs_print_leaf(path->nodes[0]);
2956 btrfs_err(fs_info,
2957 "tree block extent item (%llu) is not found in extent tree",
2958 bytenr);
2959 WARN_ON(1);
2960 ret = -EINVAL;
2961 goto out;
2962 }
3173a18f 2963
5d4f98a2
YZ
2964 ret = add_tree_block(rc, &key, path, blocks);
2965out:
2966 btrfs_free_path(path);
2967 return ret;
2968}
2969
0af3d00b 2970static int delete_block_group_cache(struct btrfs_fs_info *fs_info,
32da5386 2971 struct btrfs_block_group *block_group,
1bbc621e
CM
2972 struct inode *inode,
2973 u64 ino)
0af3d00b
JB
2974{
2975 struct btrfs_key key;
0af3d00b
JB
2976 struct btrfs_root *root = fs_info->tree_root;
2977 struct btrfs_trans_handle *trans;
0af3d00b
JB
2978 int ret = 0;
2979
2980 if (inode)
2981 goto truncate;
2982
2983 key.objectid = ino;
2984 key.type = BTRFS_INODE_ITEM_KEY;
2985 key.offset = 0;
2986
4c66e0d4 2987 inode = btrfs_iget(fs_info->sb, &key, root);
2e19f1f9 2988 if (IS_ERR(inode))
0af3d00b 2989 return -ENOENT;
0af3d00b
JB
2990
2991truncate:
2ff7e61e 2992 ret = btrfs_check_trunc_cache_free_space(fs_info,
7b61cd92
MX
2993 &fs_info->global_block_rsv);
2994 if (ret)
2995 goto out;
2996
7a7eaa40 2997 trans = btrfs_join_transaction(root);
0af3d00b 2998 if (IS_ERR(trans)) {
3612b495 2999 ret = PTR_ERR(trans);
0af3d00b
JB
3000 goto out;
3001 }
3002
77ab86bf 3003 ret = btrfs_truncate_free_space_cache(trans, block_group, inode);
0af3d00b 3004
3a45bb20 3005 btrfs_end_transaction(trans);
2ff7e61e 3006 btrfs_btree_balance_dirty(fs_info);
0af3d00b
JB
3007out:
3008 iput(inode);
3009 return ret;
3010}
3011
5d4f98a2 3012/*
19b546d7
QW
3013 * Locate the free space cache EXTENT_DATA in root tree leaf and delete the
3014 * cache inode, to avoid free space cache data extent blocking data relocation.
5d4f98a2 3015 */
19b546d7
QW
3016static int delete_v1_space_cache(struct extent_buffer *leaf,
3017 struct btrfs_block_group *block_group,
3018 u64 data_bytenr)
5d4f98a2 3019{
19b546d7
QW
3020 u64 space_cache_ino;
3021 struct btrfs_file_extent_item *ei;
5d4f98a2 3022 struct btrfs_key key;
19b546d7
QW
3023 bool found = false;
3024 int i;
5d4f98a2
YZ
3025 int ret;
3026
19b546d7
QW
3027 if (btrfs_header_owner(leaf) != BTRFS_ROOT_TREE_OBJECTID)
3028 return 0;
5d4f98a2 3029
19b546d7
QW
3030 for (i = 0; i < btrfs_header_nritems(leaf); i++) {
3031 btrfs_item_key_to_cpu(leaf, &key, i);
3032 if (key.type != BTRFS_EXTENT_DATA_KEY)
3033 continue;
3034 ei = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
3035 if (btrfs_file_extent_type(leaf, ei) == BTRFS_FILE_EXTENT_REG &&
3036 btrfs_file_extent_disk_bytenr(leaf, ei) == data_bytenr) {
3037 found = true;
3038 space_cache_ino = key.objectid;
5d4f98a2 3039 break;
5d4f98a2 3040 }
5d4f98a2 3041 }
19b546d7
QW
3042 if (!found)
3043 return -ENOENT;
3044 ret = delete_block_group_cache(leaf->fs_info, block_group, NULL,
3045 space_cache_ino);
3046 return ret;
5d4f98a2
YZ
3047}
3048
3049/*
2c016dc2 3050 * helper to find all tree blocks that reference a given data extent
5d4f98a2
YZ
3051 */
3052static noinline_for_stack
3053int add_data_references(struct reloc_control *rc,
3054 struct btrfs_key *extent_key,
3055 struct btrfs_path *path,
3056 struct rb_root *blocks)
3057{
19b546d7
QW
3058 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
3059 struct ulist *leaves = NULL;
3060 struct ulist_iterator leaf_uiter;
3061 struct ulist_node *ref_node = NULL;
3062 const u32 blocksize = fs_info->nodesize;
647f63bd 3063 int ret = 0;
5d4f98a2 3064
19b546d7
QW
3065 btrfs_release_path(path);
3066 ret = btrfs_find_all_leafs(NULL, fs_info, extent_key->objectid,
3067 0, &leaves, NULL, true);
3068 if (ret < 0)
3069 return ret;
5d4f98a2 3070
19b546d7
QW
3071 ULIST_ITER_INIT(&leaf_uiter);
3072 while ((ref_node = ulist_next(leaves, &leaf_uiter))) {
3073 struct extent_buffer *eb;
5d4f98a2 3074
19b546d7
QW
3075 eb = read_tree_block(fs_info, ref_node->val, 0, 0, NULL);
3076 if (IS_ERR(eb)) {
3077 ret = PTR_ERR(eb);
5d4f98a2 3078 break;
5d4f98a2 3079 }
19b546d7
QW
3080 ret = delete_v1_space_cache(eb, rc->block_group,
3081 extent_key->objectid);
3082 free_extent_buffer(eb);
3083 if (ret < 0)
3084 break;
3085 ret = __add_tree_block(rc, ref_node->val, blocksize, blocks);
3086 if (ret < 0)
5d4f98a2 3087 break;
5d4f98a2 3088 }
19b546d7 3089 if (ret < 0)
5d4f98a2 3090 free_block_list(blocks);
19b546d7
QW
3091 ulist_free(leaves);
3092 return ret;
5d4f98a2
YZ
3093}
3094
3095/*
2c016dc2 3096 * helper to find next unprocessed extent
5d4f98a2
YZ
3097 */
3098static noinline_for_stack
147d256e 3099int find_next_extent(struct reloc_control *rc, struct btrfs_path *path,
3fd0a558 3100 struct btrfs_key *extent_key)
5d4f98a2 3101{
0b246afa 3102 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
5d4f98a2
YZ
3103 struct btrfs_key key;
3104 struct extent_buffer *leaf;
3105 u64 start, end, last;
3106 int ret;
3107
b3470b5d 3108 last = rc->block_group->start + rc->block_group->length;
5d4f98a2
YZ
3109 while (1) {
3110 cond_resched();
3111 if (rc->search_start >= last) {
3112 ret = 1;
3113 break;
3114 }
3115
3116 key.objectid = rc->search_start;
3117 key.type = BTRFS_EXTENT_ITEM_KEY;
3118 key.offset = 0;
3119
3120 path->search_commit_root = 1;
3121 path->skip_locking = 1;
3122 ret = btrfs_search_slot(NULL, rc->extent_root, &key, path,
3123 0, 0);
3124 if (ret < 0)
3125 break;
3126next:
3127 leaf = path->nodes[0];
3128 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
3129 ret = btrfs_next_leaf(rc->extent_root, path);
3130 if (ret != 0)
3131 break;
3132 leaf = path->nodes[0];
3133 }
3134
3135 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
3136 if (key.objectid >= last) {
3137 ret = 1;
3138 break;
3139 }
3140
3173a18f
JB
3141 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
3142 key.type != BTRFS_METADATA_ITEM_KEY) {
3143 path->slots[0]++;
3144 goto next;
3145 }
3146
3147 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
5d4f98a2
YZ
3148 key.objectid + key.offset <= rc->search_start) {
3149 path->slots[0]++;
3150 goto next;
3151 }
3152
3173a18f 3153 if (key.type == BTRFS_METADATA_ITEM_KEY &&
0b246afa 3154 key.objectid + fs_info->nodesize <=
3173a18f
JB
3155 rc->search_start) {
3156 path->slots[0]++;
3157 goto next;
3158 }
3159
5d4f98a2
YZ
3160 ret = find_first_extent_bit(&rc->processed_blocks,
3161 key.objectid, &start, &end,
e6138876 3162 EXTENT_DIRTY, NULL);
5d4f98a2
YZ
3163
3164 if (ret == 0 && start <= key.objectid) {
b3b4aa74 3165 btrfs_release_path(path);
5d4f98a2
YZ
3166 rc->search_start = end + 1;
3167 } else {
3173a18f
JB
3168 if (key.type == BTRFS_EXTENT_ITEM_KEY)
3169 rc->search_start = key.objectid + key.offset;
3170 else
3171 rc->search_start = key.objectid +
0b246afa 3172 fs_info->nodesize;
3fd0a558 3173 memcpy(extent_key, &key, sizeof(key));
5d4f98a2
YZ
3174 return 0;
3175 }
3176 }
b3b4aa74 3177 btrfs_release_path(path);
5d4f98a2
YZ
3178 return ret;
3179}
3180
3181static void set_reloc_control(struct reloc_control *rc)
3182{
3183 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
7585717f
CM
3184
3185 mutex_lock(&fs_info->reloc_mutex);
5d4f98a2 3186 fs_info->reloc_ctl = rc;
7585717f 3187 mutex_unlock(&fs_info->reloc_mutex);
5d4f98a2
YZ
3188}
3189
3190static void unset_reloc_control(struct reloc_control *rc)
3191{
3192 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
7585717f
CM
3193
3194 mutex_lock(&fs_info->reloc_mutex);
5d4f98a2 3195 fs_info->reloc_ctl = NULL;
7585717f 3196 mutex_unlock(&fs_info->reloc_mutex);
5d4f98a2
YZ
3197}
3198
3199static int check_extent_flags(u64 flags)
3200{
3201 if ((flags & BTRFS_EXTENT_FLAG_DATA) &&
3202 (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
3203 return 1;
3204 if (!(flags & BTRFS_EXTENT_FLAG_DATA) &&
3205 !(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
3206 return 1;
3207 if ((flags & BTRFS_EXTENT_FLAG_DATA) &&
3208 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
3209 return 1;
3210 return 0;
3211}
3212
3fd0a558
YZ
3213static noinline_for_stack
3214int prepare_to_relocate(struct reloc_control *rc)
3215{
3216 struct btrfs_trans_handle *trans;
ac2fabac 3217 int ret;
3fd0a558 3218
2ff7e61e 3219 rc->block_rsv = btrfs_alloc_block_rsv(rc->extent_root->fs_info,
66d8f3dd 3220 BTRFS_BLOCK_RSV_TEMP);
3fd0a558
YZ
3221 if (!rc->block_rsv)
3222 return -ENOMEM;
3223
3fd0a558 3224 memset(&rc->cluster, 0, sizeof(rc->cluster));
b3470b5d 3225 rc->search_start = rc->block_group->start;
3fd0a558
YZ
3226 rc->extents_found = 0;
3227 rc->nodes_relocated = 0;
3228 rc->merging_rsv_size = 0;
0647bf56 3229 rc->reserved_bytes = 0;
da17066c 3230 rc->block_rsv->size = rc->extent_root->fs_info->nodesize *
0647bf56 3231 RELOCATION_RESERVED_NODES;
ac2fabac
JB
3232 ret = btrfs_block_rsv_refill(rc->extent_root,
3233 rc->block_rsv, rc->block_rsv->size,
3234 BTRFS_RESERVE_FLUSH_ALL);
3235 if (ret)
3236 return ret;
3fd0a558
YZ
3237
3238 rc->create_reloc_tree = 1;
3239 set_reloc_control(rc);
3240
7a7eaa40 3241 trans = btrfs_join_transaction(rc->extent_root);
28818947
LB
3242 if (IS_ERR(trans)) {
3243 unset_reloc_control(rc);
3244 /*
3245 * extent tree is not a ref_cow tree and has no reloc_root to
3246 * cleanup. And callers are responsible to free the above
3247 * block rsv.
3248 */
3249 return PTR_ERR(trans);
3250 }
3a45bb20 3251 btrfs_commit_transaction(trans);
3fd0a558
YZ
3252 return 0;
3253}
76dda93c 3254
5d4f98a2
YZ
3255static noinline_for_stack int relocate_block_group(struct reloc_control *rc)
3256{
2ff7e61e 3257 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
5d4f98a2
YZ
3258 struct rb_root blocks = RB_ROOT;
3259 struct btrfs_key key;
3260 struct btrfs_trans_handle *trans = NULL;
3261 struct btrfs_path *path;
3262 struct btrfs_extent_item *ei;
5d4f98a2
YZ
3263 u64 flags;
3264 u32 item_size;
3265 int ret;
3266 int err = 0;
c87f08ca 3267 int progress = 0;
5d4f98a2
YZ
3268
3269 path = btrfs_alloc_path();
3fd0a558 3270 if (!path)
5d4f98a2 3271 return -ENOMEM;
e4058b54 3272 path->reada = READA_FORWARD;
5d4f98a2 3273
3fd0a558
YZ
3274 ret = prepare_to_relocate(rc);
3275 if (ret) {
3276 err = ret;
3277 goto out_free;
3278 }
5d4f98a2
YZ
3279
3280 while (1) {
0647bf56
WS
3281 rc->reserved_bytes = 0;
3282 ret = btrfs_block_rsv_refill(rc->extent_root,
3283 rc->block_rsv, rc->block_rsv->size,
3284 BTRFS_RESERVE_FLUSH_ALL);
3285 if (ret) {
3286 err = ret;
3287 break;
3288 }
c87f08ca 3289 progress++;
a22285a6 3290 trans = btrfs_start_transaction(rc->extent_root, 0);
0f788c58
LB
3291 if (IS_ERR(trans)) {
3292 err = PTR_ERR(trans);
3293 trans = NULL;
3294 break;
3295 }
c87f08ca 3296restart:
3fd0a558 3297 if (update_backref_cache(trans, &rc->backref_cache)) {
3a45bb20 3298 btrfs_end_transaction(trans);
42a657f5 3299 trans = NULL;
3fd0a558
YZ
3300 continue;
3301 }
3302
147d256e 3303 ret = find_next_extent(rc, path, &key);
5d4f98a2
YZ
3304 if (ret < 0)
3305 err = ret;
3306 if (ret != 0)
3307 break;
3308
3309 rc->extents_found++;
3310
3311 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
3312 struct btrfs_extent_item);
3fd0a558 3313 item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]);
5d4f98a2
YZ
3314 if (item_size >= sizeof(*ei)) {
3315 flags = btrfs_extent_flags(path->nodes[0], ei);
3316 ret = check_extent_flags(flags);
3317 BUG_ON(ret);
6d8ff4e4 3318 } else if (unlikely(item_size == sizeof(struct btrfs_extent_item_v0))) {
ba3c2b19
NB
3319 err = -EINVAL;
3320 btrfs_print_v0_err(trans->fs_info);
3321 btrfs_abort_transaction(trans, err);
3322 break;
5d4f98a2 3323 } else {
5d4f98a2 3324 BUG();
5d4f98a2
YZ
3325 }
3326
3327 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
3328 ret = add_tree_block(rc, &key, path, &blocks);
3329 } else if (rc->stage == UPDATE_DATA_PTRS &&
3fd0a558 3330 (flags & BTRFS_EXTENT_FLAG_DATA)) {
5d4f98a2
YZ
3331 ret = add_data_references(rc, &key, path, &blocks);
3332 } else {
b3b4aa74 3333 btrfs_release_path(path);
5d4f98a2
YZ
3334 ret = 0;
3335 }
3336 if (ret < 0) {
3fd0a558 3337 err = ret;
5d4f98a2
YZ
3338 break;
3339 }
3340
3341 if (!RB_EMPTY_ROOT(&blocks)) {
3342 ret = relocate_tree_blocks(trans, rc, &blocks);
3343 if (ret < 0) {
3fd0a558
YZ
3344 if (ret != -EAGAIN) {
3345 err = ret;
3346 break;
3347 }
3348 rc->extents_found--;
3349 rc->search_start = key.objectid;
3350 }
3351 }
3352
3a45bb20 3353 btrfs_end_transaction_throttle(trans);
2ff7e61e 3354 btrfs_btree_balance_dirty(fs_info);
5d4f98a2 3355 trans = NULL;
5d4f98a2
YZ
3356
3357 if (rc->stage == MOVE_DATA_EXTENTS &&
3358 (flags & BTRFS_EXTENT_FLAG_DATA)) {
3359 rc->found_file_extent = 1;
0257bb82 3360 ret = relocate_data_extent(rc->data_inode,
3fd0a558 3361 &key, &rc->cluster);
5d4f98a2
YZ
3362 if (ret < 0) {
3363 err = ret;
3364 break;
3365 }
3366 }
f31ea088
QW
3367 if (btrfs_should_cancel_balance(fs_info)) {
3368 err = -ECANCELED;
3369 break;
3370 }
5d4f98a2 3371 }
c87f08ca 3372 if (trans && progress && err == -ENOSPC) {
43a7e99d 3373 ret = btrfs_force_chunk_alloc(trans, rc->block_group->flags);
9689457b 3374 if (ret == 1) {
c87f08ca
CM
3375 err = 0;
3376 progress = 0;
3377 goto restart;
3378 }
3379 }
3fd0a558 3380
b3b4aa74 3381 btrfs_release_path(path);
91166212 3382 clear_extent_bits(&rc->processed_blocks, 0, (u64)-1, EXTENT_DIRTY);
5d4f98a2
YZ
3383
3384 if (trans) {
3a45bb20 3385 btrfs_end_transaction_throttle(trans);
2ff7e61e 3386 btrfs_btree_balance_dirty(fs_info);
5d4f98a2
YZ
3387 }
3388
0257bb82 3389 if (!err) {
3fd0a558
YZ
3390 ret = relocate_file_extent_cluster(rc->data_inode,
3391 &rc->cluster);
0257bb82
YZ
3392 if (ret < 0)
3393 err = ret;
3394 }
3395
3fd0a558
YZ
3396 rc->create_reloc_tree = 0;
3397 set_reloc_control(rc);
0257bb82 3398
13fe1bdb 3399 btrfs_backref_release_cache(&rc->backref_cache);
63f018be 3400 btrfs_block_rsv_release(fs_info, rc->block_rsv, (u64)-1, NULL);
5d4f98a2 3401
7f913c7c
QW
3402 /*
3403 * Even in the case when the relocation is cancelled, we should all go
3404 * through prepare_to_merge() and merge_reloc_roots().
3405 *
3406 * For error (including cancelled balance), prepare_to_merge() will
3407 * mark all reloc trees orphan, then queue them for cleanup in
3408 * merge_reloc_roots()
3409 */
3fd0a558 3410 err = prepare_to_merge(rc, err);
5d4f98a2
YZ
3411
3412 merge_reloc_roots(rc);
3413
3fd0a558 3414 rc->merge_reloc_tree = 0;
5d4f98a2 3415 unset_reloc_control(rc);
63f018be 3416 btrfs_block_rsv_release(fs_info, rc->block_rsv, (u64)-1, NULL);
5d4f98a2
YZ
3417
3418 /* get rid of pinned extents */
7a7eaa40 3419 trans = btrfs_join_transaction(rc->extent_root);
62b99540 3420 if (IS_ERR(trans)) {
3612b495 3421 err = PTR_ERR(trans);
62b99540
QW
3422 goto out_free;
3423 }
3a45bb20 3424 btrfs_commit_transaction(trans);
6217b0fa 3425out_free:
d2311e69
QW
3426 ret = clean_dirty_subvols(rc);
3427 if (ret < 0 && !err)
3428 err = ret;
2ff7e61e 3429 btrfs_free_block_rsv(fs_info, rc->block_rsv);
3fd0a558 3430 btrfs_free_path(path);
5d4f98a2
YZ
3431 return err;
3432}
3433
3434static int __insert_orphan_inode(struct btrfs_trans_handle *trans,
0257bb82 3435 struct btrfs_root *root, u64 objectid)
5d4f98a2
YZ
3436{
3437 struct btrfs_path *path;
3438 struct btrfs_inode_item *item;
3439 struct extent_buffer *leaf;
3440 int ret;
3441
3442 path = btrfs_alloc_path();
3443 if (!path)
3444 return -ENOMEM;
3445
3446 ret = btrfs_insert_empty_inode(trans, root, path, objectid);
3447 if (ret)
3448 goto out;
3449
3450 leaf = path->nodes[0];
3451 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_inode_item);
b159fa28 3452 memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
5d4f98a2 3453 btrfs_set_inode_generation(leaf, item, 1);
0257bb82 3454 btrfs_set_inode_size(leaf, item, 0);
5d4f98a2 3455 btrfs_set_inode_mode(leaf, item, S_IFREG | 0600);
3fd0a558
YZ
3456 btrfs_set_inode_flags(leaf, item, BTRFS_INODE_NOCOMPRESS |
3457 BTRFS_INODE_PREALLOC);
5d4f98a2 3458 btrfs_mark_buffer_dirty(leaf);
5d4f98a2
YZ
3459out:
3460 btrfs_free_path(path);
3461 return ret;
3462}
3463
3464/*
3465 * helper to create inode for data relocation.
3466 * the inode is in data relocation tree and its link count is 0
3467 */
3fd0a558
YZ
3468static noinline_for_stack
3469struct inode *create_reloc_inode(struct btrfs_fs_info *fs_info,
32da5386 3470 struct btrfs_block_group *group)
5d4f98a2
YZ
3471{
3472 struct inode *inode = NULL;
3473 struct btrfs_trans_handle *trans;
3474 struct btrfs_root *root;
3475 struct btrfs_key key;
4624900d 3476 u64 objectid;
5d4f98a2
YZ
3477 int err = 0;
3478
aeb935a4 3479 root = btrfs_grab_root(fs_info->data_reloc_root);
a22285a6 3480 trans = btrfs_start_transaction(root, 6);
76deacf0 3481 if (IS_ERR(trans)) {
00246528 3482 btrfs_put_root(root);
3fd0a558 3483 return ERR_CAST(trans);
76deacf0 3484 }
5d4f98a2 3485
581bb050 3486 err = btrfs_find_free_objectid(root, &objectid);
5d4f98a2
YZ
3487 if (err)
3488 goto out;
3489
0257bb82 3490 err = __insert_orphan_inode(trans, root, objectid);
5d4f98a2
YZ
3491 BUG_ON(err);
3492
3493 key.objectid = objectid;
3494 key.type = BTRFS_INODE_ITEM_KEY;
3495 key.offset = 0;
4c66e0d4 3496 inode = btrfs_iget(fs_info->sb, &key, root);
2e19f1f9 3497 BUG_ON(IS_ERR(inode));
b3470b5d 3498 BTRFS_I(inode)->index_cnt = group->start;
5d4f98a2 3499
73f2e545 3500 err = btrfs_orphan_add(trans, BTRFS_I(inode));
5d4f98a2 3501out:
00246528 3502 btrfs_put_root(root);
3a45bb20 3503 btrfs_end_transaction(trans);
2ff7e61e 3504 btrfs_btree_balance_dirty(fs_info);
5d4f98a2
YZ
3505 if (err) {
3506 if (inode)
3507 iput(inode);
3508 inode = ERR_PTR(err);
3509 }
3510 return inode;
3511}
3512
c258d6e3 3513static struct reloc_control *alloc_reloc_control(struct btrfs_fs_info *fs_info)
3fd0a558
YZ
3514{
3515 struct reloc_control *rc;
3516
3517 rc = kzalloc(sizeof(*rc), GFP_NOFS);
3518 if (!rc)
3519 return NULL;
3520
3521 INIT_LIST_HEAD(&rc->reloc_roots);
d2311e69 3522 INIT_LIST_HEAD(&rc->dirty_subvol_roots);
584fb121 3523 btrfs_backref_init_cache(fs_info, &rc->backref_cache, 1);
3fd0a558 3524 mapping_tree_init(&rc->reloc_root_tree);
43eb5f29
QW
3525 extent_io_tree_init(fs_info, &rc->processed_blocks,
3526 IO_TREE_RELOC_BLOCKS, NULL);
3fd0a558
YZ
3527 return rc;
3528}
3529
1a0afa0e
JB
3530static void free_reloc_control(struct reloc_control *rc)
3531{
3532 struct mapping_node *node, *tmp;
3533
3534 free_reloc_roots(&rc->reloc_roots);
3535 rbtree_postorder_for_each_entry_safe(node, tmp,
3536 &rc->reloc_root_tree.rb_root, rb_node)
3537 kfree(node);
3538
3539 kfree(rc);
3540}
3541
ebce0e01
AB
3542/*
3543 * Print the block group being relocated
3544 */
3545static void describe_relocation(struct btrfs_fs_info *fs_info,
32da5386 3546 struct btrfs_block_group *block_group)
ebce0e01 3547{
f89e09cf 3548 char buf[128] = {'\0'};
ebce0e01 3549
f89e09cf 3550 btrfs_describe_block_groups(block_group->flags, buf, sizeof(buf));
ebce0e01
AB
3551
3552 btrfs_info(fs_info,
3553 "relocating block group %llu flags %s",
b3470b5d 3554 block_group->start, buf);
ebce0e01
AB
3555}
3556
430640e3
QW
3557static const char *stage_to_string(int stage)
3558{
3559 if (stage == MOVE_DATA_EXTENTS)
3560 return "move data extents";
3561 if (stage == UPDATE_DATA_PTRS)
3562 return "update data pointers";
3563 return "unknown";
3564}
3565
5d4f98a2
YZ
3566/*
3567 * function to relocate all extents in a block group.
3568 */
6bccf3ab 3569int btrfs_relocate_block_group(struct btrfs_fs_info *fs_info, u64 group_start)
5d4f98a2 3570{
32da5386 3571 struct btrfs_block_group *bg;
6bccf3ab 3572 struct btrfs_root *extent_root = fs_info->extent_root;
5d4f98a2 3573 struct reloc_control *rc;
0af3d00b
JB
3574 struct inode *inode;
3575 struct btrfs_path *path;
5d4f98a2 3576 int ret;
f0486c68 3577 int rw = 0;
5d4f98a2
YZ
3578 int err = 0;
3579
eede2bf3
OS
3580 bg = btrfs_lookup_block_group(fs_info, group_start);
3581 if (!bg)
3582 return -ENOENT;
3583
3584 if (btrfs_pinned_by_swapfile(fs_info, bg)) {
3585 btrfs_put_block_group(bg);
3586 return -ETXTBSY;
3587 }
3588
c258d6e3 3589 rc = alloc_reloc_control(fs_info);
eede2bf3
OS
3590 if (!rc) {
3591 btrfs_put_block_group(bg);
5d4f98a2 3592 return -ENOMEM;
eede2bf3 3593 }
5d4f98a2 3594
f0486c68 3595 rc->extent_root = extent_root;
eede2bf3 3596 rc->block_group = bg;
5d4f98a2 3597
b12de528 3598 ret = btrfs_inc_block_group_ro(rc->block_group, true);
868f401a
Z
3599 if (ret) {
3600 err = ret;
3601 goto out;
f0486c68 3602 }
868f401a 3603 rw = 1;
f0486c68 3604
0af3d00b
JB
3605 path = btrfs_alloc_path();
3606 if (!path) {
3607 err = -ENOMEM;
3608 goto out;
3609 }
3610
7949f339 3611 inode = lookup_free_space_inode(rc->block_group, path);
0af3d00b
JB
3612 btrfs_free_path(path);
3613
3614 if (!IS_ERR(inode))
1bbc621e 3615 ret = delete_block_group_cache(fs_info, rc->block_group, inode, 0);
0af3d00b
JB
3616 else
3617 ret = PTR_ERR(inode);
3618
3619 if (ret && ret != -ENOENT) {
3620 err = ret;
3621 goto out;
3622 }
3623
5d4f98a2
YZ
3624 rc->data_inode = create_reloc_inode(fs_info, rc->block_group);
3625 if (IS_ERR(rc->data_inode)) {
3626 err = PTR_ERR(rc->data_inode);
3627 rc->data_inode = NULL;
3628 goto out;
3629 }
3630
0b246afa 3631 describe_relocation(fs_info, rc->block_group);
5d4f98a2 3632
9cfa3e34 3633 btrfs_wait_block_group_reservations(rc->block_group);
f78c436c 3634 btrfs_wait_nocow_writers(rc->block_group);
6374e57a 3635 btrfs_wait_ordered_roots(fs_info, U64_MAX,
b3470b5d
DS
3636 rc->block_group->start,
3637 rc->block_group->length);
5d4f98a2
YZ
3638
3639 while (1) {
430640e3
QW
3640 int finishes_stage;
3641
76dda93c 3642 mutex_lock(&fs_info->cleaner_mutex);
5d4f98a2 3643 ret = relocate_block_group(rc);
76dda93c 3644 mutex_unlock(&fs_info->cleaner_mutex);
ff612ba7 3645 if (ret < 0)
5d4f98a2 3646 err = ret;
5d4f98a2 3647
430640e3 3648 finishes_stage = rc->stage;
ff612ba7
JB
3649 /*
3650 * We may have gotten ENOSPC after we already dirtied some
3651 * extents. If writeout happens while we're relocating a
3652 * different block group we could end up hitting the
3653 * BUG_ON(rc->stage == UPDATE_DATA_PTRS) in
3654 * btrfs_reloc_cow_block. Make sure we write everything out
3655 * properly so we don't trip over this problem, and then break
3656 * out of the loop if we hit an error.
3657 */
5d4f98a2 3658 if (rc->stage == MOVE_DATA_EXTENTS && rc->found_file_extent) {
0ef8b726
JB
3659 ret = btrfs_wait_ordered_range(rc->data_inode, 0,
3660 (u64)-1);
ff612ba7 3661 if (ret)
0ef8b726 3662 err = ret;
5d4f98a2
YZ
3663 invalidate_mapping_pages(rc->data_inode->i_mapping,
3664 0, -1);
3665 rc->stage = UPDATE_DATA_PTRS;
5d4f98a2 3666 }
ff612ba7
JB
3667
3668 if (err < 0)
3669 goto out;
3670
3671 if (rc->extents_found == 0)
3672 break;
3673
430640e3
QW
3674 btrfs_info(fs_info, "found %llu extents, stage: %s",
3675 rc->extents_found, stage_to_string(finishes_stage));
5d4f98a2
YZ
3676 }
3677
5d4f98a2
YZ
3678 WARN_ON(rc->block_group->pinned > 0);
3679 WARN_ON(rc->block_group->reserved > 0);
bf38be65 3680 WARN_ON(rc->block_group->used > 0);
5d4f98a2 3681out:
f0486c68 3682 if (err && rw)
2ff7e61e 3683 btrfs_dec_block_group_ro(rc->block_group);
5d4f98a2 3684 iput(rc->data_inode);
5d4f98a2 3685 btrfs_put_block_group(rc->block_group);
1a0afa0e 3686 free_reloc_control(rc);
5d4f98a2
YZ
3687 return err;
3688}
3689
76dda93c
YZ
3690static noinline_for_stack int mark_garbage_root(struct btrfs_root *root)
3691{
0b246afa 3692 struct btrfs_fs_info *fs_info = root->fs_info;
76dda93c 3693 struct btrfs_trans_handle *trans;
79787eaa 3694 int ret, err;
76dda93c 3695
0b246afa 3696 trans = btrfs_start_transaction(fs_info->tree_root, 0);
79787eaa
JM
3697 if (IS_ERR(trans))
3698 return PTR_ERR(trans);
76dda93c
YZ
3699
3700 memset(&root->root_item.drop_progress, 0,
3701 sizeof(root->root_item.drop_progress));
3702 root->root_item.drop_level = 0;
3703 btrfs_set_root_refs(&root->root_item, 0);
0b246afa 3704 ret = btrfs_update_root(trans, fs_info->tree_root,
76dda93c 3705 &root->root_key, &root->root_item);
76dda93c 3706
3a45bb20 3707 err = btrfs_end_transaction(trans);
79787eaa
JM
3708 if (err)
3709 return err;
3710 return ret;
76dda93c
YZ
3711}
3712
5d4f98a2
YZ
3713/*
3714 * recover relocation interrupted by system crash.
3715 *
3716 * this function resumes merging reloc trees with corresponding fs trees.
3717 * this is important for keeping the sharing of tree blocks
3718 */
3719int btrfs_recover_relocation(struct btrfs_root *root)
3720{
0b246afa 3721 struct btrfs_fs_info *fs_info = root->fs_info;
5d4f98a2
YZ
3722 LIST_HEAD(reloc_roots);
3723 struct btrfs_key key;
3724 struct btrfs_root *fs_root;
3725 struct btrfs_root *reloc_root;
3726 struct btrfs_path *path;
3727 struct extent_buffer *leaf;
3728 struct reloc_control *rc = NULL;
3729 struct btrfs_trans_handle *trans;
3730 int ret;
3731 int err = 0;
3732
3733 path = btrfs_alloc_path();
3734 if (!path)
3735 return -ENOMEM;
e4058b54 3736 path->reada = READA_BACK;
5d4f98a2
YZ
3737
3738 key.objectid = BTRFS_TREE_RELOC_OBJECTID;
3739 key.type = BTRFS_ROOT_ITEM_KEY;
3740 key.offset = (u64)-1;
3741
3742 while (1) {
0b246afa 3743 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key,
5d4f98a2
YZ
3744 path, 0, 0);
3745 if (ret < 0) {
3746 err = ret;
3747 goto out;
3748 }
3749 if (ret > 0) {
3750 if (path->slots[0] == 0)
3751 break;
3752 path->slots[0]--;
3753 }
3754 leaf = path->nodes[0];
3755 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
b3b4aa74 3756 btrfs_release_path(path);
5d4f98a2
YZ
3757
3758 if (key.objectid != BTRFS_TREE_RELOC_OBJECTID ||
3759 key.type != BTRFS_ROOT_ITEM_KEY)
3760 break;
3761
3dbf1738 3762 reloc_root = btrfs_read_tree_root(root, &key);
5d4f98a2
YZ
3763 if (IS_ERR(reloc_root)) {
3764 err = PTR_ERR(reloc_root);
3765 goto out;
3766 }
3767
92a7cc42 3768 set_bit(BTRFS_ROOT_SHAREABLE, &reloc_root->state);
5d4f98a2
YZ
3769 list_add(&reloc_root->root_list, &reloc_roots);
3770
3771 if (btrfs_root_refs(&reloc_root->root_item) > 0) {
0b246afa 3772 fs_root = read_fs_root(fs_info,
5d4f98a2
YZ
3773 reloc_root->root_key.offset);
3774 if (IS_ERR(fs_root)) {
76dda93c
YZ
3775 ret = PTR_ERR(fs_root);
3776 if (ret != -ENOENT) {
3777 err = ret;
3778 goto out;
3779 }
79787eaa
JM
3780 ret = mark_garbage_root(reloc_root);
3781 if (ret < 0) {
3782 err = ret;
3783 goto out;
3784 }
932fd26d 3785 } else {
00246528 3786 btrfs_put_root(fs_root);
5d4f98a2
YZ
3787 }
3788 }
3789
3790 if (key.offset == 0)
3791 break;
3792
3793 key.offset--;
3794 }
b3b4aa74 3795 btrfs_release_path(path);
5d4f98a2
YZ
3796
3797 if (list_empty(&reloc_roots))
3798 goto out;
3799
c258d6e3 3800 rc = alloc_reloc_control(fs_info);
5d4f98a2
YZ
3801 if (!rc) {
3802 err = -ENOMEM;
3803 goto out;
3804 }
3805
0b246afa 3806 rc->extent_root = fs_info->extent_root;
5d4f98a2
YZ
3807
3808 set_reloc_control(rc);
3809
7a7eaa40 3810 trans = btrfs_join_transaction(rc->extent_root);
3612b495 3811 if (IS_ERR(trans)) {
3612b495 3812 err = PTR_ERR(trans);
fb2d83ee 3813 goto out_unset;
3612b495 3814 }
3fd0a558
YZ
3815
3816 rc->merge_reloc_tree = 1;
3817
5d4f98a2
YZ
3818 while (!list_empty(&reloc_roots)) {
3819 reloc_root = list_entry(reloc_roots.next,
3820 struct btrfs_root, root_list);
3821 list_del(&reloc_root->root_list);
3822
3823 if (btrfs_root_refs(&reloc_root->root_item) == 0) {
3824 list_add_tail(&reloc_root->root_list,
3825 &rc->reloc_roots);
3826 continue;
3827 }
3828
0b246afa 3829 fs_root = read_fs_root(fs_info, reloc_root->root_key.offset);
79787eaa
JM
3830 if (IS_ERR(fs_root)) {
3831 err = PTR_ERR(fs_root);
ca1aa281 3832 list_add_tail(&reloc_root->root_list, &reloc_roots);
1402d17d 3833 btrfs_end_transaction(trans);
fb2d83ee 3834 goto out_unset;
79787eaa 3835 }
5d4f98a2 3836
ffd7b339 3837 err = __add_reloc_root(reloc_root);
79787eaa 3838 BUG_ON(err < 0); /* -ENOMEM or logic error */
f44deb74 3839 fs_root->reloc_root = btrfs_grab_root(reloc_root);
00246528 3840 btrfs_put_root(fs_root);
5d4f98a2
YZ
3841 }
3842
3a45bb20 3843 err = btrfs_commit_transaction(trans);
79787eaa 3844 if (err)
fb2d83ee 3845 goto out_unset;
5d4f98a2
YZ
3846
3847 merge_reloc_roots(rc);
3848
3849 unset_reloc_control(rc);
3850
7a7eaa40 3851 trans = btrfs_join_transaction(rc->extent_root);
62b99540 3852 if (IS_ERR(trans)) {
3612b495 3853 err = PTR_ERR(trans);
6217b0fa 3854 goto out_clean;
62b99540 3855 }
3a45bb20 3856 err = btrfs_commit_transaction(trans);
6217b0fa 3857out_clean:
d2311e69
QW
3858 ret = clean_dirty_subvols(rc);
3859 if (ret < 0 && !err)
3860 err = ret;
fb2d83ee
JB
3861out_unset:
3862 unset_reloc_control(rc);
1a0afa0e 3863 free_reloc_control(rc);
3612b495 3864out:
a7571232 3865 free_reloc_roots(&reloc_roots);
aca1bba6 3866
5d4f98a2
YZ
3867 btrfs_free_path(path);
3868
3869 if (err == 0) {
3870 /* cleanup orphan inode in data relocation tree */
aeb935a4
QW
3871 fs_root = btrfs_grab_root(fs_info->data_reloc_root);
3872 ASSERT(fs_root);
3873 err = btrfs_orphan_cleanup(fs_root);
3874 btrfs_put_root(fs_root);
5d4f98a2
YZ
3875 }
3876 return err;
3877}
3878
3879/*
3880 * helper to add ordered checksum for data relocation.
3881 *
3882 * cloning checksum properly handles the nodatasum extents.
3883 * it also saves CPU time to re-calculate the checksum.
3884 */
3885int btrfs_reloc_clone_csums(struct inode *inode, u64 file_pos, u64 len)
3886{
0b246afa 3887 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
5d4f98a2 3888 struct btrfs_ordered_sum *sums;
5d4f98a2 3889 struct btrfs_ordered_extent *ordered;
5d4f98a2
YZ
3890 int ret;
3891 u64 disk_bytenr;
4577b014 3892 u64 new_bytenr;
5d4f98a2
YZ
3893 LIST_HEAD(list);
3894
3895 ordered = btrfs_lookup_ordered_extent(inode, file_pos);
bffe633e 3896 BUG_ON(ordered->file_offset != file_pos || ordered->num_bytes != len);
5d4f98a2
YZ
3897
3898 disk_bytenr = file_pos + BTRFS_I(inode)->index_cnt;
0b246afa 3899 ret = btrfs_lookup_csums_range(fs_info->csum_root, disk_bytenr,
a2de733c 3900 disk_bytenr + len - 1, &list, 0);
79787eaa
JM
3901 if (ret)
3902 goto out;
5d4f98a2
YZ
3903
3904 while (!list_empty(&list)) {
3905 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
3906 list_del_init(&sums->list);
3907
4577b014
JB
3908 /*
3909 * We need to offset the new_bytenr based on where the csum is.
3910 * We need to do this because we will read in entire prealloc
3911 * extents but we may have written to say the middle of the
3912 * prealloc extent, so we need to make sure the csum goes with
3913 * the right disk offset.
3914 *
3915 * We can do this because the data reloc inode refers strictly
3916 * to the on disk bytes, so we don't have to worry about
3917 * disk_len vs real len like with real inodes since it's all
3918 * disk length.
3919 */
bffe633e 3920 new_bytenr = ordered->disk_bytenr + sums->bytenr - disk_bytenr;
4577b014 3921 sums->bytenr = new_bytenr;
5d4f98a2 3922
f9756261 3923 btrfs_add_ordered_sum(ordered, sums);
5d4f98a2 3924 }
79787eaa 3925out:
5d4f98a2 3926 btrfs_put_ordered_extent(ordered);
411fc6bc 3927 return ret;
5d4f98a2 3928}
3fd0a558 3929
83d4cfd4
JB
3930int btrfs_reloc_cow_block(struct btrfs_trans_handle *trans,
3931 struct btrfs_root *root, struct extent_buffer *buf,
3932 struct extent_buffer *cow)
3fd0a558 3933{
0b246afa 3934 struct btrfs_fs_info *fs_info = root->fs_info;
3fd0a558 3935 struct reloc_control *rc;
a26195a5 3936 struct btrfs_backref_node *node;
3fd0a558
YZ
3937 int first_cow = 0;
3938 int level;
83d4cfd4 3939 int ret = 0;
3fd0a558 3940
0b246afa 3941 rc = fs_info->reloc_ctl;
3fd0a558 3942 if (!rc)
83d4cfd4 3943 return 0;
3fd0a558
YZ
3944
3945 BUG_ON(rc->stage == UPDATE_DATA_PTRS &&
3946 root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID);
3947
3948 level = btrfs_header_level(buf);
3949 if (btrfs_header_generation(buf) <=
3950 btrfs_root_last_snapshot(&root->root_item))
3951 first_cow = 1;
3952
3953 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID &&
3954 rc->create_reloc_tree) {
3955 WARN_ON(!first_cow && level == 0);
3956
3957 node = rc->backref_cache.path[level];
3958 BUG_ON(node->bytenr != buf->start &&
3959 node->new_bytenr != buf->start);
3960
b0fe7078 3961 btrfs_backref_drop_node_buffer(node);
67439dad 3962 atomic_inc(&cow->refs);
3fd0a558
YZ
3963 node->eb = cow;
3964 node->new_bytenr = cow->start;
3965
3966 if (!node->pending) {
3967 list_move_tail(&node->list,
3968 &rc->backref_cache.pending[level]);
3969 node->pending = 1;
3970 }
3971
3972 if (first_cow)
9569cc20 3973 mark_block_processed(rc, node);
3fd0a558
YZ
3974
3975 if (first_cow && level > 0)
3976 rc->nodes_relocated += buf->len;
3977 }
3978
83d4cfd4 3979 if (level == 0 && first_cow && rc->stage == UPDATE_DATA_PTRS)
3fd0a558 3980 ret = replace_file_extents(trans, rc, root, cow);
83d4cfd4 3981 return ret;
3fd0a558
YZ
3982}
3983
3984/*
3985 * called before creating snapshot. it calculates metadata reservation
01327610 3986 * required for relocating tree blocks in the snapshot
3fd0a558 3987 */
147d256e 3988void btrfs_reloc_pre_snapshot(struct btrfs_pending_snapshot *pending,
3fd0a558
YZ
3989 u64 *bytes_to_reserve)
3990{
10995c04
QW
3991 struct btrfs_root *root = pending->root;
3992 struct reloc_control *rc = root->fs_info->reloc_ctl;
3fd0a558 3993
6282675e 3994 if (!rc || !have_reloc_root(root))
3fd0a558
YZ
3995 return;
3996
3fd0a558
YZ
3997 if (!rc->merge_reloc_tree)
3998 return;
3999
4000 root = root->reloc_root;
4001 BUG_ON(btrfs_root_refs(&root->root_item) == 0);
4002 /*
4003 * relocation is in the stage of merging trees. the space
4004 * used by merging a reloc tree is twice the size of
4005 * relocated tree nodes in the worst case. half for cowing
4006 * the reloc tree, half for cowing the fs tree. the space
4007 * used by cowing the reloc tree will be freed after the
4008 * tree is dropped. if we create snapshot, cowing the fs
4009 * tree may use more space than it frees. so we need
4010 * reserve extra space.
4011 */
4012 *bytes_to_reserve += rc->nodes_relocated;
4013}
4014
4015/*
4016 * called after snapshot is created. migrate block reservation
4017 * and create reloc root for the newly created snapshot
f44deb74
JB
4018 *
4019 * This is similar to btrfs_init_reloc_root(), we come out of here with two
4020 * references held on the reloc_root, one for root->reloc_root and one for
4021 * rc->reloc_roots.
3fd0a558 4022 */
49b25e05 4023int btrfs_reloc_post_snapshot(struct btrfs_trans_handle *trans,
3fd0a558
YZ
4024 struct btrfs_pending_snapshot *pending)
4025{
4026 struct btrfs_root *root = pending->root;
4027 struct btrfs_root *reloc_root;
4028 struct btrfs_root *new_root;
10995c04 4029 struct reloc_control *rc = root->fs_info->reloc_ctl;
3fd0a558
YZ
4030 int ret;
4031
6282675e 4032 if (!rc || !have_reloc_root(root))
49b25e05 4033 return 0;
3fd0a558
YZ
4034
4035 rc = root->fs_info->reloc_ctl;
4036 rc->merging_rsv_size += rc->nodes_relocated;
4037
4038 if (rc->merge_reloc_tree) {
4039 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
4040 rc->block_rsv,
3a584174 4041 rc->nodes_relocated, true);
49b25e05
JM
4042 if (ret)
4043 return ret;
3fd0a558
YZ
4044 }
4045
4046 new_root = pending->snap;
4047 reloc_root = create_reloc_root(trans, root->reloc_root,
4048 new_root->root_key.objectid);
49b25e05
JM
4049 if (IS_ERR(reloc_root))
4050 return PTR_ERR(reloc_root);
3fd0a558 4051
ffd7b339
JM
4052 ret = __add_reloc_root(reloc_root);
4053 BUG_ON(ret < 0);
f44deb74 4054 new_root->reloc_root = btrfs_grab_root(reloc_root);
3fd0a558 4055
49b25e05 4056 if (rc->create_reloc_tree)
3fd0a558 4057 ret = clone_backref_node(trans, rc, root, reloc_root);
49b25e05 4058 return ret;
3fd0a558 4059}