blob: a459ecddcce4e62d61b0758580156e0820fef559 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002/*
3 * Copyright (C) 2009 Oracle. All rights reserved.
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004 */
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/slab.h>
Yan Zheng5d4f98a2009-06-10 10:45:14 -040012#include "ctree.h"
13#include "disk-io.h"
14#include "transaction.h"
15#include "volumes.h"
16#include "locking.h"
17#include "btrfs_inode.h"
18#include "async-thread.h"
Josef Bacik0af3d002010-06-21 14:48:16 -040019#include "free-space-cache.h"
Li Zefan581bb052011-04-20 10:06:11 +080020#include "inode-map.h"
Qu Wenruo62b99542016-08-15 10:36:51 +080021#include "qgroup.h"
Liu Bocdccee92017-08-18 15:15:23 -060022#include "print-tree.h"
Yan Zheng5d4f98a2009-06-10 10:45:14 -040023
24/*
25 * backref_node, mapping_node and tree_block start with this
26 */
27struct tree_entry {
28 struct rb_node rb_node;
29 u64 bytenr;
30};
31
32/*
33 * present a tree block in the backref cache
34 */
35struct backref_node {
36 struct rb_node rb_node;
37 u64 bytenr;
Yan, Zheng3fd0a552010-05-16 10:49:59 -040038
39 u64 new_bytenr;
40 /* objectid of tree block owner, can be not uptodate */
Yan Zheng5d4f98a2009-06-10 10:45:14 -040041 u64 owner;
Yan, Zheng3fd0a552010-05-16 10:49:59 -040042 /* link to pending, changed or detached list */
43 struct list_head list;
Yan Zheng5d4f98a2009-06-10 10:45:14 -040044 /* list of upper level blocks reference this block */
45 struct list_head upper;
46 /* list of child blocks in the cache */
47 struct list_head lower;
48 /* NULL if this node is not tree root */
49 struct btrfs_root *root;
50 /* extent buffer got by COW the block */
51 struct extent_buffer *eb;
52 /* level of tree block */
53 unsigned int level:8;
Yan, Zheng3fd0a552010-05-16 10:49:59 -040054 /* is the block in non-reference counted tree */
55 unsigned int cowonly:1;
56 /* 1 if no child node in the cache */
Yan Zheng5d4f98a2009-06-10 10:45:14 -040057 unsigned int lowest:1;
58 /* is the extent buffer locked */
59 unsigned int locked:1;
60 /* has the block been processed */
61 unsigned int processed:1;
62 /* have backrefs of this block been checked */
63 unsigned int checked:1;
Yan, Zheng3fd0a552010-05-16 10:49:59 -040064 /*
65 * 1 if corresponding block has been cowed but some upper
66 * level block pointers may not point to the new location
67 */
68 unsigned int pending:1;
69 /*
70 * 1 if the backref node isn't connected to any other
71 * backref node.
72 */
73 unsigned int detached:1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -040074};
75
76/*
77 * present a block pointer in the backref cache
78 */
79struct backref_edge {
80 struct list_head list[2];
81 struct backref_node *node[2];
Yan Zheng5d4f98a2009-06-10 10:45:14 -040082};
83
84#define LOWER 0
85#define UPPER 1
Wang Shilong0647bf52013-11-20 09:01:52 +080086#define RELOCATION_RESERVED_NODES 256
Yan Zheng5d4f98a2009-06-10 10:45:14 -040087
88struct backref_cache {
89 /* red black tree of all backref nodes in the cache */
90 struct rb_root rb_root;
Yan, Zheng3fd0a552010-05-16 10:49:59 -040091 /* for passing backref nodes to btrfs_reloc_cow_block */
92 struct backref_node *path[BTRFS_MAX_LEVEL];
93 /*
94 * list of blocks that have been cowed but some block
95 * pointers in upper level blocks may not reflect the
96 * new location
97 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -040098 struct list_head pending[BTRFS_MAX_LEVEL];
Yan, Zheng3fd0a552010-05-16 10:49:59 -040099 /* list of backref nodes with no child node */
100 struct list_head leaves;
101 /* list of blocks that have been cowed in current transaction */
102 struct list_head changed;
103 /* list of detached backref node. */
104 struct list_head detached;
105
106 u64 last_trans;
107
108 int nr_nodes;
109 int nr_edges;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400110};
111
112/*
113 * map address of tree root to tree
114 */
115struct mapping_node {
116 struct rb_node rb_node;
117 u64 bytenr;
118 void *data;
119};
120
121struct mapping_tree {
122 struct rb_root rb_root;
123 spinlock_t lock;
124};
125
126/*
127 * present a tree block to process
128 */
129struct tree_block {
130 struct rb_node rb_node;
131 u64 bytenr;
132 struct btrfs_key key;
133 unsigned int level:8;
134 unsigned int key_ready:1;
135};
136
Yan, Zheng0257bb82009-09-24 09:17:31 -0400137#define MAX_EXTENTS 128
138
139struct file_extent_cluster {
140 u64 start;
141 u64 end;
142 u64 boundary[MAX_EXTENTS];
143 unsigned int nr;
144};
145
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400146struct reloc_control {
147 /* block group to relocate */
148 struct btrfs_block_group_cache *block_group;
149 /* extent tree */
150 struct btrfs_root *extent_root;
151 /* inode for moving data */
152 struct inode *data_inode;
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400153
154 struct btrfs_block_rsv *block_rsv;
155
156 struct backref_cache backref_cache;
157
158 struct file_extent_cluster cluster;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400159 /* tree blocks have been processed */
160 struct extent_io_tree processed_blocks;
161 /* map start of tree root to corresponding reloc tree */
162 struct mapping_tree reloc_root_tree;
163 /* list of reloc trees */
164 struct list_head reloc_roots;
Qu Wenruod2311e62019-01-23 15:15:14 +0800165 /* list of subvolume trees that get relocated */
166 struct list_head dirty_subvol_roots;
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400167 /* size of metadata reservation for merging reloc trees */
168 u64 merging_rsv_size;
169 /* size of relocated tree nodes */
170 u64 nodes_relocated;
Wang Shilong0647bf52013-11-20 09:01:52 +0800171 /* reserved size for block group relocation*/
172 u64 reserved_bytes;
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400173
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400174 u64 search_start;
175 u64 extents_found;
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400176
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400177 unsigned int stage:8;
178 unsigned int create_reloc_tree:1;
179 unsigned int merge_reloc_tree:1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400180 unsigned int found_file_extent:1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400181};
182
183/* stages of data relocation */
184#define MOVE_DATA_EXTENTS 0
185#define UPDATE_DATA_PTRS 1
186
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400187static void remove_backref_node(struct backref_cache *cache,
188 struct backref_node *node);
189static void __mark_block_processed(struct reloc_control *rc,
190 struct backref_node *node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400191
192static void mapping_tree_init(struct mapping_tree *tree)
193{
Eric Paris6bef4d32010-02-23 19:43:04 +0000194 tree->rb_root = RB_ROOT;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400195 spin_lock_init(&tree->lock);
196}
197
198static void backref_cache_init(struct backref_cache *cache)
199{
200 int i;
Eric Paris6bef4d32010-02-23 19:43:04 +0000201 cache->rb_root = RB_ROOT;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400202 for (i = 0; i < BTRFS_MAX_LEVEL; i++)
203 INIT_LIST_HEAD(&cache->pending[i]);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400204 INIT_LIST_HEAD(&cache->changed);
205 INIT_LIST_HEAD(&cache->detached);
206 INIT_LIST_HEAD(&cache->leaves);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400207}
208
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400209static void backref_cache_cleanup(struct backref_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400210{
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400211 struct backref_node *node;
212 int i;
213
214 while (!list_empty(&cache->detached)) {
215 node = list_entry(cache->detached.next,
216 struct backref_node, list);
217 remove_backref_node(cache, node);
218 }
219
220 while (!list_empty(&cache->leaves)) {
221 node = list_entry(cache->leaves.next,
222 struct backref_node, lower);
223 remove_backref_node(cache, node);
224 }
225
226 cache->last_trans = 0;
227
228 for (i = 0; i < BTRFS_MAX_LEVEL; i++)
Liu Bof4907092016-07-11 18:52:57 -0700229 ASSERT(list_empty(&cache->pending[i]));
230 ASSERT(list_empty(&cache->changed));
231 ASSERT(list_empty(&cache->detached));
232 ASSERT(RB_EMPTY_ROOT(&cache->rb_root));
233 ASSERT(!cache->nr_nodes);
234 ASSERT(!cache->nr_edges);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400235}
236
237static struct backref_node *alloc_backref_node(struct backref_cache *cache)
238{
239 struct backref_node *node;
240
241 node = kzalloc(sizeof(*node), GFP_NOFS);
242 if (node) {
243 INIT_LIST_HEAD(&node->list);
244 INIT_LIST_HEAD(&node->upper);
245 INIT_LIST_HEAD(&node->lower);
246 RB_CLEAR_NODE(&node->rb_node);
247 cache->nr_nodes++;
248 }
249 return node;
250}
251
252static void free_backref_node(struct backref_cache *cache,
253 struct backref_node *node)
254{
255 if (node) {
256 cache->nr_nodes--;
257 kfree(node);
258 }
259}
260
261static struct backref_edge *alloc_backref_edge(struct backref_cache *cache)
262{
263 struct backref_edge *edge;
264
265 edge = kzalloc(sizeof(*edge), GFP_NOFS);
266 if (edge)
267 cache->nr_edges++;
268 return edge;
269}
270
271static void free_backref_edge(struct backref_cache *cache,
272 struct backref_edge *edge)
273{
274 if (edge) {
275 cache->nr_edges--;
276 kfree(edge);
277 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400278}
279
280static struct rb_node *tree_insert(struct rb_root *root, u64 bytenr,
281 struct rb_node *node)
282{
283 struct rb_node **p = &root->rb_node;
284 struct rb_node *parent = NULL;
285 struct tree_entry *entry;
286
287 while (*p) {
288 parent = *p;
289 entry = rb_entry(parent, struct tree_entry, rb_node);
290
291 if (bytenr < entry->bytenr)
292 p = &(*p)->rb_left;
293 else if (bytenr > entry->bytenr)
294 p = &(*p)->rb_right;
295 else
296 return parent;
297 }
298
299 rb_link_node(node, parent, p);
300 rb_insert_color(node, root);
301 return NULL;
302}
303
304static struct rb_node *tree_search(struct rb_root *root, u64 bytenr)
305{
306 struct rb_node *n = root->rb_node;
307 struct tree_entry *entry;
308
309 while (n) {
310 entry = rb_entry(n, struct tree_entry, rb_node);
311
312 if (bytenr < entry->bytenr)
313 n = n->rb_left;
314 else if (bytenr > entry->bytenr)
315 n = n->rb_right;
316 else
317 return n;
318 }
319 return NULL;
320}
321
Eric Sandeen48a3b632013-04-25 20:41:01 +0000322static void backref_tree_panic(struct rb_node *rb_node, int errno, u64 bytenr)
Jeff Mahoney43c04fb2011-10-03 23:22:33 -0400323{
324
325 struct btrfs_fs_info *fs_info = NULL;
326 struct backref_node *bnode = rb_entry(rb_node, struct backref_node,
327 rb_node);
328 if (bnode->root)
329 fs_info = bnode->root->fs_info;
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400330 btrfs_panic(fs_info, errno,
331 "Inconsistency in backref cache found at offset %llu",
332 bytenr);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -0400333}
334
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400335/*
336 * walk up backref nodes until reach node presents tree root
337 */
338static struct backref_node *walk_up_backref(struct backref_node *node,
339 struct backref_edge *edges[],
340 int *index)
341{
342 struct backref_edge *edge;
343 int idx = *index;
344
345 while (!list_empty(&node->upper)) {
346 edge = list_entry(node->upper.next,
347 struct backref_edge, list[LOWER]);
348 edges[idx++] = edge;
349 node = edge->node[UPPER];
350 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400351 BUG_ON(node->detached);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400352 *index = idx;
353 return node;
354}
355
356/*
357 * walk down backref nodes to find start of next reference path
358 */
359static struct backref_node *walk_down_backref(struct backref_edge *edges[],
360 int *index)
361{
362 struct backref_edge *edge;
363 struct backref_node *lower;
364 int idx = *index;
365
366 while (idx > 0) {
367 edge = edges[idx - 1];
368 lower = edge->node[LOWER];
369 if (list_is_last(&edge->list[LOWER], &lower->upper)) {
370 idx--;
371 continue;
372 }
373 edge = list_entry(edge->list[LOWER].next,
374 struct backref_edge, list[LOWER]);
375 edges[idx - 1] = edge;
376 *index = idx;
377 return edge->node[UPPER];
378 }
379 *index = 0;
380 return NULL;
381}
382
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400383static void unlock_node_buffer(struct backref_node *node)
384{
385 if (node->locked) {
386 btrfs_tree_unlock(node->eb);
387 node->locked = 0;
388 }
389}
390
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400391static void drop_node_buffer(struct backref_node *node)
392{
393 if (node->eb) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400394 unlock_node_buffer(node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400395 free_extent_buffer(node->eb);
396 node->eb = NULL;
397 }
398}
399
400static void drop_backref_node(struct backref_cache *tree,
401 struct backref_node *node)
402{
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400403 BUG_ON(!list_empty(&node->upper));
404
405 drop_node_buffer(node);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400406 list_del(&node->list);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400407 list_del(&node->lower);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400408 if (!RB_EMPTY_NODE(&node->rb_node))
409 rb_erase(&node->rb_node, &tree->rb_root);
410 free_backref_node(tree, node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400411}
412
413/*
414 * remove a backref node from the backref cache
415 */
416static void remove_backref_node(struct backref_cache *cache,
417 struct backref_node *node)
418{
419 struct backref_node *upper;
420 struct backref_edge *edge;
421
422 if (!node)
423 return;
424
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400425 BUG_ON(!node->lowest && !node->detached);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400426 while (!list_empty(&node->upper)) {
427 edge = list_entry(node->upper.next, struct backref_edge,
428 list[LOWER]);
429 upper = edge->node[UPPER];
430 list_del(&edge->list[LOWER]);
431 list_del(&edge->list[UPPER]);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400432 free_backref_edge(cache, edge);
433
434 if (RB_EMPTY_NODE(&upper->rb_node)) {
435 BUG_ON(!list_empty(&node->upper));
436 drop_backref_node(cache, node);
437 node = upper;
438 node->lowest = 1;
439 continue;
440 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400441 /*
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400442 * add the node to leaf node list if no other
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400443 * child block cached.
444 */
445 if (list_empty(&upper->lower)) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400446 list_add_tail(&upper->lower, &cache->leaves);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400447 upper->lowest = 1;
448 }
449 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400450
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400451 drop_backref_node(cache, node);
452}
453
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400454static void update_backref_node(struct backref_cache *cache,
455 struct backref_node *node, u64 bytenr)
456{
457 struct rb_node *rb_node;
458 rb_erase(&node->rb_node, &cache->rb_root);
459 node->bytenr = bytenr;
460 rb_node = tree_insert(&cache->rb_root, node->bytenr, &node->rb_node);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -0400461 if (rb_node)
462 backref_tree_panic(rb_node, -EEXIST, bytenr);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400463}
464
465/*
466 * update backref cache after a transaction commit
467 */
468static int update_backref_cache(struct btrfs_trans_handle *trans,
469 struct backref_cache *cache)
470{
471 struct backref_node *node;
472 int level = 0;
473
474 if (cache->last_trans == 0) {
475 cache->last_trans = trans->transid;
476 return 0;
477 }
478
479 if (cache->last_trans == trans->transid)
480 return 0;
481
482 /*
483 * detached nodes are used to avoid unnecessary backref
484 * lookup. transaction commit changes the extent tree.
485 * so the detached nodes are no longer useful.
486 */
487 while (!list_empty(&cache->detached)) {
488 node = list_entry(cache->detached.next,
489 struct backref_node, list);
490 remove_backref_node(cache, node);
491 }
492
493 while (!list_empty(&cache->changed)) {
494 node = list_entry(cache->changed.next,
495 struct backref_node, list);
496 list_del_init(&node->list);
497 BUG_ON(node->pending);
498 update_backref_node(cache, node, node->new_bytenr);
499 }
500
501 /*
502 * some nodes can be left in the pending list if there were
503 * errors during processing the pending nodes.
504 */
505 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
506 list_for_each_entry(node, &cache->pending[level], list) {
507 BUG_ON(!node->pending);
508 if (node->bytenr == node->new_bytenr)
509 continue;
510 update_backref_node(cache, node, node->new_bytenr);
511 }
512 }
513
514 cache->last_trans = 0;
515 return 1;
516}
517
David Sterbaf2a97a92011-05-05 12:44:41 +0200518
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400519static int should_ignore_root(struct btrfs_root *root)
520{
521 struct btrfs_root *reloc_root;
522
Miao Xie27cdeb72014-04-02 19:51:05 +0800523 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400524 return 0;
525
526 reloc_root = root->reloc_root;
527 if (!reloc_root)
528 return 0;
529
530 if (btrfs_root_last_snapshot(&reloc_root->root_item) ==
531 root->fs_info->running_transaction->transid - 1)
532 return 0;
533 /*
534 * if there is reloc tree and it was created in previous
535 * transaction backref lookup can find the reloc tree,
536 * so backref node for the fs tree root is useless for
537 * relocation.
538 */
539 return 1;
540}
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400541/*
542 * find reloc tree by address of tree root
543 */
544static struct btrfs_root *find_reloc_root(struct reloc_control *rc,
545 u64 bytenr)
546{
547 struct rb_node *rb_node;
548 struct mapping_node *node;
549 struct btrfs_root *root = NULL;
550
551 spin_lock(&rc->reloc_root_tree.lock);
552 rb_node = tree_search(&rc->reloc_root_tree.rb_root, bytenr);
553 if (rb_node) {
554 node = rb_entry(rb_node, struct mapping_node, rb_node);
555 root = (struct btrfs_root *)node->data;
556 }
557 spin_unlock(&rc->reloc_root_tree.lock);
558 return root;
559}
560
561static int is_cowonly_root(u64 root_objectid)
562{
563 if (root_objectid == BTRFS_ROOT_TREE_OBJECTID ||
564 root_objectid == BTRFS_EXTENT_TREE_OBJECTID ||
565 root_objectid == BTRFS_CHUNK_TREE_OBJECTID ||
566 root_objectid == BTRFS_DEV_TREE_OBJECTID ||
567 root_objectid == BTRFS_TREE_LOG_OBJECTID ||
Wang Shilong66463742013-12-10 00:14:34 +0800568 root_objectid == BTRFS_CSUM_TREE_OBJECTID ||
569 root_objectid == BTRFS_UUID_TREE_OBJECTID ||
David Sterba3e4c5ef2016-01-25 16:47:10 +0100570 root_objectid == BTRFS_QUOTA_TREE_OBJECTID ||
571 root_objectid == BTRFS_FREE_SPACE_TREE_OBJECTID)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400572 return 1;
573 return 0;
574}
575
576static struct btrfs_root *read_fs_root(struct btrfs_fs_info *fs_info,
577 u64 root_objectid)
578{
579 struct btrfs_key key;
580
581 key.objectid = root_objectid;
582 key.type = BTRFS_ROOT_ITEM_KEY;
583 if (is_cowonly_root(root_objectid))
584 key.offset = 0;
585 else
586 key.offset = (u64)-1;
587
Miao Xiec00869f2013-09-25 21:47:44 +0800588 return btrfs_get_fs_root(fs_info, &key, false);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400589}
590
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400591static noinline_for_stack
592int find_inline_backref(struct extent_buffer *leaf, int slot,
593 unsigned long *ptr, unsigned long *end)
594{
Josef Bacik3173a182013-03-07 14:22:04 -0500595 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400596 struct btrfs_extent_item *ei;
597 struct btrfs_tree_block_info *bi;
598 u32 item_size;
599
Josef Bacik3173a182013-03-07 14:22:04 -0500600 btrfs_item_key_to_cpu(leaf, &key, slot);
601
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400602 item_size = btrfs_item_size_nr(leaf, slot);
Nikolay Borisovba3c2b12018-06-26 16:57:36 +0300603 if (item_size < sizeof(*ei)) {
604 btrfs_print_v0_err(leaf->fs_info);
605 btrfs_handle_fs_error(leaf->fs_info, -EINVAL, NULL);
606 return 1;
607 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400608 ei = btrfs_item_ptr(leaf, slot, struct btrfs_extent_item);
609 WARN_ON(!(btrfs_extent_flags(leaf, ei) &
610 BTRFS_EXTENT_FLAG_TREE_BLOCK));
611
Josef Bacik3173a182013-03-07 14:22:04 -0500612 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
613 item_size <= sizeof(*ei) + sizeof(*bi)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400614 WARN_ON(item_size < sizeof(*ei) + sizeof(*bi));
615 return 1;
616 }
Josef Bacikd062d132013-07-30 15:44:09 -0400617 if (key.type == BTRFS_METADATA_ITEM_KEY &&
618 item_size <= sizeof(*ei)) {
619 WARN_ON(item_size < sizeof(*ei));
620 return 1;
621 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400622
Josef Bacik3173a182013-03-07 14:22:04 -0500623 if (key.type == BTRFS_EXTENT_ITEM_KEY) {
624 bi = (struct btrfs_tree_block_info *)(ei + 1);
625 *ptr = (unsigned long)(bi + 1);
626 } else {
627 *ptr = (unsigned long)(ei + 1);
628 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400629 *end = (unsigned long)ei + item_size;
630 return 0;
631}
632
633/*
634 * build backref tree for a given tree block. root of the backref tree
635 * corresponds the tree block, leaves of the backref tree correspond
636 * roots of b-trees that reference the tree block.
637 *
638 * the basic idea of this function is check backrefs of a given block
Nicholas D Steeves01327612016-05-19 21:18:45 -0400639 * to find upper level blocks that reference the block, and then check
640 * backrefs of these upper level blocks recursively. the recursion stop
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400641 * when tree root is reached or backrefs for the block is cached.
642 *
643 * NOTE: if we find backrefs for a block are cached, we know backrefs
644 * for all upper level blocks that directly/indirectly reference the
645 * block are also cached.
646 */
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400647static noinline_for_stack
648struct backref_node *build_backref_tree(struct reloc_control *rc,
649 struct btrfs_key *node_key,
650 int level, u64 bytenr)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400651{
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400652 struct backref_cache *cache = &rc->backref_cache;
Qu Wenruofa6ac712018-09-25 14:37:46 +0800653 struct btrfs_path *path1; /* For searching extent root */
654 struct btrfs_path *path2; /* For searching parent of TREE_BLOCK_REF */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400655 struct extent_buffer *eb;
656 struct btrfs_root *root;
657 struct backref_node *cur;
658 struct backref_node *upper;
659 struct backref_node *lower;
660 struct backref_node *node = NULL;
661 struct backref_node *exist = NULL;
662 struct backref_edge *edge;
663 struct rb_node *rb_node;
664 struct btrfs_key key;
665 unsigned long end;
666 unsigned long ptr;
Qu Wenruofa6ac712018-09-25 14:37:46 +0800667 LIST_HEAD(list); /* Pending edge list, upper node needs to be checked */
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400668 LIST_HEAD(useless);
669 int cowonly;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400670 int ret;
671 int err = 0;
Josef Bacikb6c60c82013-07-30 16:30:30 -0400672 bool need_check = true;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400673
674 path1 = btrfs_alloc_path();
675 path2 = btrfs_alloc_path();
676 if (!path1 || !path2) {
677 err = -ENOMEM;
678 goto out;
679 }
David Sterbae4058b52015-11-27 16:31:35 +0100680 path1->reada = READA_FORWARD;
681 path2->reada = READA_FORWARD;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400682
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400683 node = alloc_backref_node(cache);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400684 if (!node) {
685 err = -ENOMEM;
686 goto out;
687 }
688
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400689 node->bytenr = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400690 node->level = level;
691 node->lowest = 1;
692 cur = node;
693again:
694 end = 0;
695 ptr = 0;
696 key.objectid = cur->bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -0500697 key.type = BTRFS_METADATA_ITEM_KEY;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400698 key.offset = (u64)-1;
699
700 path1->search_commit_root = 1;
701 path1->skip_locking = 1;
702 ret = btrfs_search_slot(NULL, rc->extent_root, &key, path1,
703 0, 0);
704 if (ret < 0) {
705 err = ret;
706 goto out;
707 }
Josef Bacik75bfb9af2014-09-19 10:40:00 -0400708 ASSERT(ret);
709 ASSERT(path1->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400710
711 path1->slots[0]--;
712
713 WARN_ON(cur->checked);
714 if (!list_empty(&cur->upper)) {
715 /*
Justin P. Mattock70f23fd2011-05-10 10:16:21 +0200716 * the backref was added previously when processing
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400717 * backref of type BTRFS_TREE_BLOCK_REF_KEY
718 */
Josef Bacik75bfb9af2014-09-19 10:40:00 -0400719 ASSERT(list_is_singular(&cur->upper));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400720 edge = list_entry(cur->upper.next, struct backref_edge,
721 list[LOWER]);
Josef Bacik75bfb9af2014-09-19 10:40:00 -0400722 ASSERT(list_empty(&edge->list[UPPER]));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400723 exist = edge->node[UPPER];
724 /*
725 * add the upper level block to pending list if we need
726 * check its backrefs
727 */
728 if (!exist->checked)
729 list_add_tail(&edge->list[UPPER], &list);
730 } else {
731 exist = NULL;
732 }
733
734 while (1) {
735 cond_resched();
736 eb = path1->nodes[0];
737
738 if (ptr >= end) {
739 if (path1->slots[0] >= btrfs_header_nritems(eb)) {
740 ret = btrfs_next_leaf(rc->extent_root, path1);
741 if (ret < 0) {
742 err = ret;
743 goto out;
744 }
745 if (ret > 0)
746 break;
747 eb = path1->nodes[0];
748 }
749
750 btrfs_item_key_to_cpu(eb, &key, path1->slots[0]);
751 if (key.objectid != cur->bytenr) {
752 WARN_ON(exist);
753 break;
754 }
755
Josef Bacik3173a182013-03-07 14:22:04 -0500756 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
757 key.type == BTRFS_METADATA_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400758 ret = find_inline_backref(eb, path1->slots[0],
759 &ptr, &end);
760 if (ret)
761 goto next;
762 }
763 }
764
765 if (ptr < end) {
766 /* update key for inline back ref */
767 struct btrfs_extent_inline_ref *iref;
Liu Bo3de28d52017-08-18 15:15:19 -0600768 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400769 iref = (struct btrfs_extent_inline_ref *)ptr;
Liu Bo3de28d52017-08-18 15:15:19 -0600770 type = btrfs_get_extent_inline_ref_type(eb, iref,
771 BTRFS_REF_TYPE_BLOCK);
772 if (type == BTRFS_REF_TYPE_INVALID) {
Su Yueaf431dc2018-06-22 16:18:01 +0800773 err = -EUCLEAN;
Liu Bo3de28d52017-08-18 15:15:19 -0600774 goto out;
775 }
776 key.type = type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400777 key.offset = btrfs_extent_inline_ref_offset(eb, iref);
Liu Bo3de28d52017-08-18 15:15:19 -0600778
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400779 WARN_ON(key.type != BTRFS_TREE_BLOCK_REF_KEY &&
780 key.type != BTRFS_SHARED_BLOCK_REF_KEY);
781 }
782
Qu Wenruofa6ac712018-09-25 14:37:46 +0800783 /*
784 * Parent node found and matches current inline ref, no need to
785 * rebuild this node for this inline ref.
786 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400787 if (exist &&
788 ((key.type == BTRFS_TREE_BLOCK_REF_KEY &&
789 exist->owner == key.offset) ||
790 (key.type == BTRFS_SHARED_BLOCK_REF_KEY &&
791 exist->bytenr == key.offset))) {
792 exist = NULL;
793 goto next;
794 }
795
Qu Wenruofa6ac712018-09-25 14:37:46 +0800796 /* SHARED_BLOCK_REF means key.offset is the parent bytenr */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400797 if (key.type == BTRFS_SHARED_BLOCK_REF_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400798 if (key.objectid == key.offset) {
799 /*
Qu Wenruofa6ac712018-09-25 14:37:46 +0800800 * Only root blocks of reloc trees use backref
801 * pointing to itself.
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400802 */
803 root = find_reloc_root(rc, cur->bytenr);
Josef Bacik75bfb9af2014-09-19 10:40:00 -0400804 ASSERT(root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400805 cur->root = root;
806 break;
807 }
808
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400809 edge = alloc_backref_edge(cache);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400810 if (!edge) {
811 err = -ENOMEM;
812 goto out;
813 }
814 rb_node = tree_search(&cache->rb_root, key.offset);
815 if (!rb_node) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400816 upper = alloc_backref_node(cache);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400817 if (!upper) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400818 free_backref_edge(cache, edge);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400819 err = -ENOMEM;
820 goto out;
821 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400822 upper->bytenr = key.offset;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400823 upper->level = cur->level + 1;
824 /*
825 * backrefs for the upper level block isn't
826 * cached, add the block to pending list
827 */
828 list_add_tail(&edge->list[UPPER], &list);
829 } else {
830 upper = rb_entry(rb_node, struct backref_node,
831 rb_node);
Josef Bacik75bfb9af2014-09-19 10:40:00 -0400832 ASSERT(upper->checked);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400833 INIT_LIST_HEAD(&edge->list[UPPER]);
834 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400835 list_add_tail(&edge->list[LOWER], &cur->upper);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400836 edge->node[LOWER] = cur;
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400837 edge->node[UPPER] = upper;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400838
839 goto next;
David Sterba6d8ff4e2018-06-26 16:20:59 +0200840 } else if (unlikely(key.type == BTRFS_EXTENT_REF_V0_KEY)) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +0300841 err = -EINVAL;
842 btrfs_print_v0_err(rc->extent_root->fs_info);
843 btrfs_handle_fs_error(rc->extent_root->fs_info, err,
844 NULL);
845 goto out;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400846 } else if (key.type != BTRFS_TREE_BLOCK_REF_KEY) {
847 goto next;
848 }
849
Qu Wenruofa6ac712018-09-25 14:37:46 +0800850 /*
851 * key.type == BTRFS_TREE_BLOCK_REF_KEY, inline ref offset
852 * means the root objectid. We need to search the tree to get
853 * its parent bytenr.
854 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400855 root = read_fs_root(rc->extent_root->fs_info, key.offset);
856 if (IS_ERR(root)) {
857 err = PTR_ERR(root);
858 goto out;
859 }
860
Miao Xie27cdeb72014-04-02 19:51:05 +0800861 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400862 cur->cowonly = 1;
863
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400864 if (btrfs_root_level(&root->root_item) == cur->level) {
865 /* tree root */
Josef Bacik75bfb9af2014-09-19 10:40:00 -0400866 ASSERT(btrfs_root_bytenr(&root->root_item) ==
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400867 cur->bytenr);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400868 if (should_ignore_root(root))
869 list_add(&cur->list, &useless);
870 else
871 cur->root = root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400872 break;
873 }
874
875 level = cur->level + 1;
876
Qu Wenruofa6ac712018-09-25 14:37:46 +0800877 /* Search the tree to find parent blocks referring the block. */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400878 path2->search_commit_root = 1;
879 path2->skip_locking = 1;
880 path2->lowest_level = level;
881 ret = btrfs_search_slot(NULL, root, node_key, path2, 0, 0);
882 path2->lowest_level = 0;
883 if (ret < 0) {
884 err = ret;
885 goto out;
886 }
Yan Zheng33c66f42009-07-22 09:59:00 -0400887 if (ret > 0 && path2->slots[level] > 0)
888 path2->slots[level]--;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400889
890 eb = path2->nodes[level];
Liu Bo3561b9d2016-09-14 08:51:46 -0700891 if (btrfs_node_blockptr(eb, path2->slots[level]) !=
892 cur->bytenr) {
893 btrfs_err(root->fs_info,
894 "couldn't find block (%llu) (level %d) in tree (%llu) with key (%llu %u %llu)",
Misono Tomohiro4fd786e2018-08-06 14:25:24 +0900895 cur->bytenr, level - 1,
896 root->root_key.objectid,
Liu Bo3561b9d2016-09-14 08:51:46 -0700897 node_key->objectid, node_key->type,
898 node_key->offset);
899 err = -ENOENT;
900 goto out;
901 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400902 lower = cur;
Josef Bacikb6c60c82013-07-30 16:30:30 -0400903 need_check = true;
Qu Wenruofa6ac712018-09-25 14:37:46 +0800904
905 /* Add all nodes and edges in the path */
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400906 for (; level < BTRFS_MAX_LEVEL; level++) {
907 if (!path2->nodes[level]) {
Josef Bacik75bfb9af2014-09-19 10:40:00 -0400908 ASSERT(btrfs_root_bytenr(&root->root_item) ==
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400909 lower->bytenr);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400910 if (should_ignore_root(root))
911 list_add(&lower->list, &useless);
912 else
913 lower->root = root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400914 break;
915 }
916
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400917 edge = alloc_backref_edge(cache);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400918 if (!edge) {
919 err = -ENOMEM;
920 goto out;
921 }
922
923 eb = path2->nodes[level];
924 rb_node = tree_search(&cache->rb_root, eb->start);
925 if (!rb_node) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400926 upper = alloc_backref_node(cache);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400927 if (!upper) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400928 free_backref_edge(cache, edge);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400929 err = -ENOMEM;
930 goto out;
931 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400932 upper->bytenr = eb->start;
933 upper->owner = btrfs_header_owner(eb);
934 upper->level = lower->level + 1;
Miao Xie27cdeb72014-04-02 19:51:05 +0800935 if (!test_bit(BTRFS_ROOT_REF_COWS,
936 &root->state))
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400937 upper->cowonly = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400938
939 /*
940 * if we know the block isn't shared
941 * we can void checking its backrefs.
942 */
943 if (btrfs_block_can_be_shared(root, eb))
944 upper->checked = 0;
945 else
946 upper->checked = 1;
947
948 /*
949 * add the block to pending list if we
Josef Bacikb6c60c82013-07-30 16:30:30 -0400950 * need check its backrefs, we only do this once
951 * while walking up a tree as we will catch
952 * anything else later on.
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400953 */
Josef Bacikb6c60c82013-07-30 16:30:30 -0400954 if (!upper->checked && need_check) {
955 need_check = false;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400956 list_add_tail(&edge->list[UPPER],
957 &list);
Josef Bacikbbe90512014-09-19 15:43:34 -0400958 } else {
959 if (upper->checked)
960 need_check = true;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400961 INIT_LIST_HEAD(&edge->list[UPPER]);
Josef Bacikbbe90512014-09-19 15:43:34 -0400962 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400963 } else {
964 upper = rb_entry(rb_node, struct backref_node,
965 rb_node);
Josef Bacik75bfb9af2014-09-19 10:40:00 -0400966 ASSERT(upper->checked);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400967 INIT_LIST_HEAD(&edge->list[UPPER]);
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400968 if (!upper->owner)
969 upper->owner = btrfs_header_owner(eb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400970 }
971 list_add_tail(&edge->list[LOWER], &lower->upper);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400972 edge->node[LOWER] = lower;
Yan, Zheng3fd0a552010-05-16 10:49:59 -0400973 edge->node[UPPER] = upper;
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400974
975 if (rb_node)
976 break;
977 lower = upper;
978 upper = NULL;
979 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200980 btrfs_release_path(path2);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400981next:
982 if (ptr < end) {
983 ptr += btrfs_extent_inline_ref_size(key.type);
984 if (ptr >= end) {
985 WARN_ON(ptr > end);
986 ptr = 0;
987 end = 0;
988 }
989 }
990 if (ptr >= end)
991 path1->slots[0]++;
992 }
David Sterbab3b4aa72011-04-21 01:20:15 +0200993 btrfs_release_path(path1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400994
995 cur->checked = 1;
996 WARN_ON(exist);
997
998 /* the pending list isn't empty, take the first block to process */
999 if (!list_empty(&list)) {
1000 edge = list_entry(list.next, struct backref_edge, list[UPPER]);
1001 list_del_init(&edge->list[UPPER]);
1002 cur = edge->node[UPPER];
1003 goto again;
1004 }
1005
1006 /*
1007 * everything goes well, connect backref nodes and insert backref nodes
1008 * into the cache.
1009 */
Josef Bacik75bfb9af2014-09-19 10:40:00 -04001010 ASSERT(node->checked);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001011 cowonly = node->cowonly;
1012 if (!cowonly) {
1013 rb_node = tree_insert(&cache->rb_root, node->bytenr,
1014 &node->rb_node);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -04001015 if (rb_node)
1016 backref_tree_panic(rb_node, -EEXIST, node->bytenr);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001017 list_add_tail(&node->lower, &cache->leaves);
1018 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001019
1020 list_for_each_entry(edge, &node->upper, list[LOWER])
1021 list_add_tail(&edge->list[UPPER], &list);
1022
1023 while (!list_empty(&list)) {
1024 edge = list_entry(list.next, struct backref_edge, list[UPPER]);
1025 list_del_init(&edge->list[UPPER]);
1026 upper = edge->node[UPPER];
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001027 if (upper->detached) {
1028 list_del(&edge->list[LOWER]);
1029 lower = edge->node[LOWER];
1030 free_backref_edge(cache, edge);
1031 if (list_empty(&lower->upper))
1032 list_add(&lower->list, &useless);
1033 continue;
1034 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001035
1036 if (!RB_EMPTY_NODE(&upper->rb_node)) {
1037 if (upper->lowest) {
1038 list_del_init(&upper->lower);
1039 upper->lowest = 0;
1040 }
1041
1042 list_add_tail(&edge->list[UPPER], &upper->lower);
1043 continue;
1044 }
1045
Josef Bacik75bfb9af2014-09-19 10:40:00 -04001046 if (!upper->checked) {
1047 /*
1048 * Still want to blow up for developers since this is a
1049 * logic bug.
1050 */
1051 ASSERT(0);
1052 err = -EINVAL;
1053 goto out;
1054 }
1055 if (cowonly != upper->cowonly) {
1056 ASSERT(0);
1057 err = -EINVAL;
1058 goto out;
1059 }
1060
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001061 if (!cowonly) {
1062 rb_node = tree_insert(&cache->rb_root, upper->bytenr,
1063 &upper->rb_node);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -04001064 if (rb_node)
1065 backref_tree_panic(rb_node, -EEXIST,
1066 upper->bytenr);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001067 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001068
1069 list_add_tail(&edge->list[UPPER], &upper->lower);
1070
1071 list_for_each_entry(edge, &upper->upper, list[LOWER])
1072 list_add_tail(&edge->list[UPPER], &list);
1073 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001074 /*
1075 * process useless backref nodes. backref nodes for tree leaves
1076 * are deleted from the cache. backref nodes for upper level
1077 * tree blocks are left in the cache to avoid unnecessary backref
1078 * lookup.
1079 */
1080 while (!list_empty(&useless)) {
1081 upper = list_entry(useless.next, struct backref_node, list);
1082 list_del_init(&upper->list);
Josef Bacik75bfb9af2014-09-19 10:40:00 -04001083 ASSERT(list_empty(&upper->upper));
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001084 if (upper == node)
1085 node = NULL;
1086 if (upper->lowest) {
1087 list_del_init(&upper->lower);
1088 upper->lowest = 0;
1089 }
1090 while (!list_empty(&upper->lower)) {
1091 edge = list_entry(upper->lower.next,
1092 struct backref_edge, list[UPPER]);
1093 list_del(&edge->list[UPPER]);
1094 list_del(&edge->list[LOWER]);
1095 lower = edge->node[LOWER];
1096 free_backref_edge(cache, edge);
1097
1098 if (list_empty(&lower->upper))
1099 list_add(&lower->list, &useless);
1100 }
1101 __mark_block_processed(rc, upper);
1102 if (upper->level > 0) {
1103 list_add(&upper->list, &cache->detached);
1104 upper->detached = 1;
1105 } else {
1106 rb_erase(&upper->rb_node, &cache->rb_root);
1107 free_backref_node(cache, upper);
1108 }
1109 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001110out:
1111 btrfs_free_path(path1);
1112 btrfs_free_path(path2);
1113 if (err) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001114 while (!list_empty(&useless)) {
1115 lower = list_entry(useless.next,
Josef Bacik75bfb9af2014-09-19 10:40:00 -04001116 struct backref_node, list);
1117 list_del_init(&lower->list);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001118 }
Josef Bacik75bfb9af2014-09-19 10:40:00 -04001119 while (!list_empty(&list)) {
1120 edge = list_first_entry(&list, struct backref_edge,
1121 list[UPPER]);
1122 list_del(&edge->list[UPPER]);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001123 list_del(&edge->list[LOWER]);
Josef Bacik75bfb9af2014-09-19 10:40:00 -04001124 lower = edge->node[LOWER];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001125 upper = edge->node[UPPER];
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001126 free_backref_edge(cache, edge);
Josef Bacik75bfb9af2014-09-19 10:40:00 -04001127
1128 /*
1129 * Lower is no longer linked to any upper backref nodes
1130 * and isn't in the cache, we can free it ourselves.
1131 */
1132 if (list_empty(&lower->upper) &&
1133 RB_EMPTY_NODE(&lower->rb_node))
1134 list_add(&lower->list, &useless);
1135
1136 if (!RB_EMPTY_NODE(&upper->rb_node))
1137 continue;
1138
Nicholas D Steeves01327612016-05-19 21:18:45 -04001139 /* Add this guy's upper edges to the list to process */
Josef Bacik75bfb9af2014-09-19 10:40:00 -04001140 list_for_each_entry(edge, &upper->upper, list[LOWER])
1141 list_add_tail(&edge->list[UPPER], &list);
1142 if (list_empty(&upper->upper))
1143 list_add(&upper->list, &useless);
1144 }
1145
1146 while (!list_empty(&useless)) {
1147 lower = list_entry(useless.next,
1148 struct backref_node, list);
1149 list_del_init(&lower->list);
Liu Bo0fd8c3d2016-07-12 10:29:37 -07001150 if (lower == node)
1151 node = NULL;
Josef Bacik75bfb9af2014-09-19 10:40:00 -04001152 free_backref_node(cache, lower);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001153 }
Liu Bo0fd8c3d2016-07-12 10:29:37 -07001154
1155 free_backref_node(cache, node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001156 return ERR_PTR(err);
1157 }
Josef Bacik75bfb9af2014-09-19 10:40:00 -04001158 ASSERT(!node || !node->detached);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001159 return node;
1160}
1161
1162/*
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001163 * helper to add backref node for the newly created snapshot.
1164 * the backref node is created by cloning backref node that
1165 * corresponds to root of source tree
1166 */
1167static int clone_backref_node(struct btrfs_trans_handle *trans,
1168 struct reloc_control *rc,
1169 struct btrfs_root *src,
1170 struct btrfs_root *dest)
1171{
1172 struct btrfs_root *reloc_root = src->reloc_root;
1173 struct backref_cache *cache = &rc->backref_cache;
1174 struct backref_node *node = NULL;
1175 struct backref_node *new_node;
1176 struct backref_edge *edge;
1177 struct backref_edge *new_edge;
1178 struct rb_node *rb_node;
1179
1180 if (cache->last_trans > 0)
1181 update_backref_cache(trans, cache);
1182
1183 rb_node = tree_search(&cache->rb_root, src->commit_root->start);
1184 if (rb_node) {
1185 node = rb_entry(rb_node, struct backref_node, rb_node);
1186 if (node->detached)
1187 node = NULL;
1188 else
1189 BUG_ON(node->new_bytenr != reloc_root->node->start);
1190 }
1191
1192 if (!node) {
1193 rb_node = tree_search(&cache->rb_root,
1194 reloc_root->commit_root->start);
1195 if (rb_node) {
1196 node = rb_entry(rb_node, struct backref_node,
1197 rb_node);
1198 BUG_ON(node->detached);
1199 }
1200 }
1201
1202 if (!node)
1203 return 0;
1204
1205 new_node = alloc_backref_node(cache);
1206 if (!new_node)
1207 return -ENOMEM;
1208
1209 new_node->bytenr = dest->node->start;
1210 new_node->level = node->level;
1211 new_node->lowest = node->lowest;
Yan, Zheng6848ad62011-02-14 16:00:03 -05001212 new_node->checked = 1;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001213 new_node->root = dest;
1214
1215 if (!node->lowest) {
1216 list_for_each_entry(edge, &node->lower, list[UPPER]) {
1217 new_edge = alloc_backref_edge(cache);
1218 if (!new_edge)
1219 goto fail;
1220
1221 new_edge->node[UPPER] = new_node;
1222 new_edge->node[LOWER] = edge->node[LOWER];
1223 list_add_tail(&new_edge->list[UPPER],
1224 &new_node->lower);
1225 }
Miao Xie76b9e232011-11-10 20:45:05 -05001226 } else {
1227 list_add_tail(&new_node->lower, &cache->leaves);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001228 }
1229
1230 rb_node = tree_insert(&cache->rb_root, new_node->bytenr,
1231 &new_node->rb_node);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -04001232 if (rb_node)
1233 backref_tree_panic(rb_node, -EEXIST, new_node->bytenr);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001234
1235 if (!new_node->lowest) {
1236 list_for_each_entry(new_edge, &new_node->lower, list[UPPER]) {
1237 list_add_tail(&new_edge->list[LOWER],
1238 &new_edge->node[LOWER]->upper);
1239 }
1240 }
1241 return 0;
1242fail:
1243 while (!list_empty(&new_node->lower)) {
1244 new_edge = list_entry(new_node->lower.next,
1245 struct backref_edge, list[UPPER]);
1246 list_del(&new_edge->list[UPPER]);
1247 free_backref_edge(cache, new_edge);
1248 }
1249 free_backref_node(cache, new_node);
1250 return -ENOMEM;
1251}
1252
1253/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001254 * helper to add 'address of tree root -> reloc tree' mapping
1255 */
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04001256static int __must_check __add_reloc_root(struct btrfs_root *root)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001257{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001258 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001259 struct rb_node *rb_node;
1260 struct mapping_node *node;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001261 struct reloc_control *rc = fs_info->reloc_ctl;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001262
1263 node = kmalloc(sizeof(*node), GFP_NOFS);
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04001264 if (!node)
1265 return -ENOMEM;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001266
1267 node->bytenr = root->node->start;
1268 node->data = root;
1269
1270 spin_lock(&rc->reloc_root_tree.lock);
1271 rb_node = tree_insert(&rc->reloc_root_tree.rb_root,
1272 node->bytenr, &node->rb_node);
1273 spin_unlock(&rc->reloc_root_tree.lock);
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04001274 if (rb_node) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001275 btrfs_panic(fs_info, -EEXIST,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04001276 "Duplicate root found for start=%llu while inserting into relocation tree",
1277 node->bytenr);
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04001278 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001279
1280 list_add_tail(&root->root_list, &rc->reloc_roots);
1281 return 0;
1282}
1283
1284/*
Wang Shilongc974c462013-12-11 19:29:51 +08001285 * helper to delete the 'address of tree root -> reloc tree'
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001286 * mapping
1287 */
Wang Shilongc974c462013-12-11 19:29:51 +08001288static void __del_reloc_root(struct btrfs_root *root)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001289{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001290 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001291 struct rb_node *rb_node;
1292 struct mapping_node *node = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001293 struct reloc_control *rc = fs_info->reloc_ctl;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001294
Qu Wenruo65c6e822018-08-21 09:42:03 +08001295 if (rc && root->node) {
Qu Wenruo389305b2018-07-03 17:10:07 +08001296 spin_lock(&rc->reloc_root_tree.lock);
1297 rb_node = tree_search(&rc->reloc_root_tree.rb_root,
1298 root->node->start);
1299 if (rb_node) {
1300 node = rb_entry(rb_node, struct mapping_node, rb_node);
1301 rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
1302 }
1303 spin_unlock(&rc->reloc_root_tree.lock);
1304 if (!node)
1305 return;
1306 BUG_ON((struct btrfs_root *)node->data != root);
Wang Shilongc974c462013-12-11 19:29:51 +08001307 }
Wang Shilongc974c462013-12-11 19:29:51 +08001308
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001309 spin_lock(&fs_info->trans_lock);
Wang Shilongc974c462013-12-11 19:29:51 +08001310 list_del_init(&root->root_list);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001311 spin_unlock(&fs_info->trans_lock);
Wang Shilongc974c462013-12-11 19:29:51 +08001312 kfree(node);
1313}
1314
1315/*
1316 * helper to update the 'address of tree root -> reloc tree'
1317 * mapping
1318 */
1319static int __update_reloc_root(struct btrfs_root *root, u64 new_bytenr)
1320{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001321 struct btrfs_fs_info *fs_info = root->fs_info;
Wang Shilongc974c462013-12-11 19:29:51 +08001322 struct rb_node *rb_node;
1323 struct mapping_node *node = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001324 struct reloc_control *rc = fs_info->reloc_ctl;
Wang Shilongc974c462013-12-11 19:29:51 +08001325
1326 spin_lock(&rc->reloc_root_tree.lock);
1327 rb_node = tree_search(&rc->reloc_root_tree.rb_root,
1328 root->node->start);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001329 if (rb_node) {
1330 node = rb_entry(rb_node, struct mapping_node, rb_node);
1331 rb_erase(&node->rb_node, &rc->reloc_root_tree.rb_root);
1332 }
1333 spin_unlock(&rc->reloc_root_tree.lock);
1334
Liu Bo8f71f3e2013-03-04 16:25:36 +00001335 if (!node)
1336 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001337 BUG_ON((struct btrfs_root *)node->data != root);
1338
Wang Shilongc974c462013-12-11 19:29:51 +08001339 spin_lock(&rc->reloc_root_tree.lock);
1340 node->bytenr = new_bytenr;
1341 rb_node = tree_insert(&rc->reloc_root_tree.rb_root,
1342 node->bytenr, &node->rb_node);
1343 spin_unlock(&rc->reloc_root_tree.lock);
1344 if (rb_node)
1345 backref_tree_panic(rb_node, -EEXIST, node->bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001346 return 0;
1347}
1348
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001349static struct btrfs_root *create_reloc_root(struct btrfs_trans_handle *trans,
1350 struct btrfs_root *root, u64 objectid)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001351{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001352 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001353 struct btrfs_root *reloc_root;
1354 struct extent_buffer *eb;
1355 struct btrfs_root_item *root_item;
1356 struct btrfs_key root_key;
1357 int ret;
1358
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001359 root_item = kmalloc(sizeof(*root_item), GFP_NOFS);
1360 BUG_ON(!root_item);
1361
1362 root_key.objectid = BTRFS_TREE_RELOC_OBJECTID;
1363 root_key.type = BTRFS_ROOT_ITEM_KEY;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001364 root_key.offset = objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001365
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001366 if (root->root_key.objectid == objectid) {
Filipe Manana054570a2016-11-01 11:23:31 +00001367 u64 commit_root_gen;
1368
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001369 /* called by btrfs_init_reloc_root */
1370 ret = btrfs_copy_root(trans, root, root->commit_root, &eb,
1371 BTRFS_TREE_RELOC_OBJECTID);
1372 BUG_ON(ret);
Filipe Manana054570a2016-11-01 11:23:31 +00001373 /*
1374 * Set the last_snapshot field to the generation of the commit
1375 * root - like this ctree.c:btrfs_block_can_be_shared() behaves
1376 * correctly (returns true) when the relocation root is created
1377 * either inside the critical section of a transaction commit
1378 * (through transaction.c:qgroup_account_snapshot()) and when
1379 * it's created before the transaction commit is started.
1380 */
1381 commit_root_gen = btrfs_header_generation(root->commit_root);
1382 btrfs_set_root_last_snapshot(&root->root_item, commit_root_gen);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001383 } else {
1384 /*
1385 * called by btrfs_reloc_post_snapshot_hook.
1386 * the source tree is a reloc tree, all tree blocks
1387 * modified after it was created have RELOC flag
1388 * set in their headers. so it's OK to not update
1389 * the 'last_snapshot'.
1390 */
1391 ret = btrfs_copy_root(trans, root, root->node, &eb,
1392 BTRFS_TREE_RELOC_OBJECTID);
1393 BUG_ON(ret);
1394 }
1395
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001396 memcpy(root_item, &root->root_item, sizeof(*root_item));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001397 btrfs_set_root_bytenr(root_item, eb->start);
1398 btrfs_set_root_level(root_item, btrfs_header_level(eb));
1399 btrfs_set_root_generation(root_item, trans->transid);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001400
1401 if (root->root_key.objectid == objectid) {
1402 btrfs_set_root_refs(root_item, 0);
1403 memset(&root_item->drop_progress, 0,
1404 sizeof(struct btrfs_disk_key));
1405 root_item->drop_level = 0;
1406 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001407
1408 btrfs_tree_unlock(eb);
1409 free_extent_buffer(eb);
1410
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001411 ret = btrfs_insert_root(trans, fs_info->tree_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001412 &root_key, root_item);
1413 BUG_ON(ret);
1414 kfree(root_item);
1415
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001416 reloc_root = btrfs_read_fs_root(fs_info->tree_root, &root_key);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001417 BUG_ON(IS_ERR(reloc_root));
1418 reloc_root->last_trans = trans->transid;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001419 return reloc_root;
1420}
1421
1422/*
1423 * create reloc tree for a given fs tree. reloc tree is just a
1424 * snapshot of the fs tree with special root objectid.
1425 */
1426int btrfs_init_reloc_root(struct btrfs_trans_handle *trans,
1427 struct btrfs_root *root)
1428{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001429 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001430 struct btrfs_root *reloc_root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001431 struct reloc_control *rc = fs_info->reloc_ctl;
Miao Xie20dd2cb2013-09-25 21:47:45 +08001432 struct btrfs_block_rsv *rsv;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001433 int clear_rsv = 0;
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04001434 int ret;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001435
1436 if (root->reloc_root) {
1437 reloc_root = root->reloc_root;
1438 reloc_root->last_trans = trans->transid;
1439 return 0;
1440 }
1441
1442 if (!rc || !rc->create_reloc_tree ||
1443 root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1444 return 0;
1445
Miao Xie20dd2cb2013-09-25 21:47:45 +08001446 if (!trans->reloc_reserved) {
1447 rsv = trans->block_rsv;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001448 trans->block_rsv = rc->block_rsv;
1449 clear_rsv = 1;
1450 }
1451 reloc_root = create_reloc_root(trans, root, root->root_key.objectid);
1452 if (clear_rsv)
Miao Xie20dd2cb2013-09-25 21:47:45 +08001453 trans->block_rsv = rsv;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001454
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04001455 ret = __add_reloc_root(reloc_root);
1456 BUG_ON(ret < 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001457 root->reloc_root = reloc_root;
1458 return 0;
1459}
1460
1461/*
1462 * update root item of reloc tree
1463 */
1464int btrfs_update_reloc_root(struct btrfs_trans_handle *trans,
1465 struct btrfs_root *root)
1466{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001467 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001468 struct btrfs_root *reloc_root;
1469 struct btrfs_root_item *root_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001470 int ret;
1471
Qu Wenruod2311e62019-01-23 15:15:14 +08001472 if (test_bit(BTRFS_ROOT_DEAD_RELOC_TREE, &root->state) ||
1473 !root->reloc_root)
Chris Mason75857172011-06-13 20:00:16 -04001474 goto out;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001475
1476 reloc_root = root->reloc_root;
1477 root_item = &reloc_root->root_item;
1478
Qu Wenruod2311e62019-01-23 15:15:14 +08001479 /* root->reloc_root will stay until current relocation finished */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001480 if (fs_info->reloc_ctl->merge_reloc_tree &&
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001481 btrfs_root_refs(root_item) == 0) {
Qu Wenruod2311e62019-01-23 15:15:14 +08001482 set_bit(BTRFS_ROOT_DEAD_RELOC_TREE, &root->state);
Wang Shilongc974c462013-12-11 19:29:51 +08001483 __del_reloc_root(reloc_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001484 }
1485
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001486 if (reloc_root->commit_root != reloc_root->node) {
1487 btrfs_set_root_node(root_item, reloc_root->node);
1488 free_extent_buffer(reloc_root->commit_root);
1489 reloc_root->commit_root = btrfs_root_node(reloc_root);
1490 }
1491
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001492 ret = btrfs_update_root(trans, fs_info->tree_root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001493 &reloc_root->root_key, root_item);
1494 BUG_ON(ret);
Chris Mason75857172011-06-13 20:00:16 -04001495
1496out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001497 return 0;
1498}
1499
1500/*
1501 * helper to find first cached inode with inode number >= objectid
1502 * in a subvolume
1503 */
1504static struct inode *find_next_inode(struct btrfs_root *root, u64 objectid)
1505{
1506 struct rb_node *node;
1507 struct rb_node *prev;
1508 struct btrfs_inode *entry;
1509 struct inode *inode;
1510
1511 spin_lock(&root->inode_lock);
1512again:
1513 node = root->inode_tree.rb_node;
1514 prev = NULL;
1515 while (node) {
1516 prev = node;
1517 entry = rb_entry(node, struct btrfs_inode, rb_node);
1518
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001519 if (objectid < btrfs_ino(entry))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001520 node = node->rb_left;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001521 else if (objectid > btrfs_ino(entry))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001522 node = node->rb_right;
1523 else
1524 break;
1525 }
1526 if (!node) {
1527 while (prev) {
1528 entry = rb_entry(prev, struct btrfs_inode, rb_node);
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001529 if (objectid <= btrfs_ino(entry)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001530 node = prev;
1531 break;
1532 }
1533 prev = rb_next(prev);
1534 }
1535 }
1536 while (node) {
1537 entry = rb_entry(node, struct btrfs_inode, rb_node);
1538 inode = igrab(&entry->vfs_inode);
1539 if (inode) {
1540 spin_unlock(&root->inode_lock);
1541 return inode;
1542 }
1543
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001544 objectid = btrfs_ino(entry) + 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001545 if (cond_resched_lock(&root->inode_lock))
1546 goto again;
1547
1548 node = rb_next(node);
1549 }
1550 spin_unlock(&root->inode_lock);
1551 return NULL;
1552}
1553
1554static int in_block_group(u64 bytenr,
1555 struct btrfs_block_group_cache *block_group)
1556{
1557 if (bytenr >= block_group->key.objectid &&
1558 bytenr < block_group->key.objectid + block_group->key.offset)
1559 return 1;
1560 return 0;
1561}
1562
1563/*
1564 * get new location of data
1565 */
1566static int get_new_location(struct inode *reloc_inode, u64 *new_bytenr,
1567 u64 bytenr, u64 num_bytes)
1568{
1569 struct btrfs_root *root = BTRFS_I(reloc_inode)->root;
1570 struct btrfs_path *path;
1571 struct btrfs_file_extent_item *fi;
1572 struct extent_buffer *leaf;
1573 int ret;
1574
1575 path = btrfs_alloc_path();
1576 if (!path)
1577 return -ENOMEM;
1578
1579 bytenr -= BTRFS_I(reloc_inode)->index_cnt;
David Sterbaf85b7372017-01-20 14:54:07 +01001580 ret = btrfs_lookup_file_extent(NULL, root, path,
1581 btrfs_ino(BTRFS_I(reloc_inode)), bytenr, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001582 if (ret < 0)
1583 goto out;
1584 if (ret > 0) {
1585 ret = -ENOENT;
1586 goto out;
1587 }
1588
1589 leaf = path->nodes[0];
1590 fi = btrfs_item_ptr(leaf, path->slots[0],
1591 struct btrfs_file_extent_item);
1592
1593 BUG_ON(btrfs_file_extent_offset(leaf, fi) ||
1594 btrfs_file_extent_compression(leaf, fi) ||
1595 btrfs_file_extent_encryption(leaf, fi) ||
1596 btrfs_file_extent_other_encoding(leaf, fi));
1597
1598 if (num_bytes != btrfs_file_extent_disk_num_bytes(leaf, fi)) {
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001599 ret = -EINVAL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001600 goto out;
1601 }
1602
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001603 *new_bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001604 ret = 0;
1605out:
1606 btrfs_free_path(path);
1607 return ret;
1608}
1609
1610/*
1611 * update file extent items in the tree leaf to point to
1612 * the new locations.
1613 */
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001614static noinline_for_stack
1615int replace_file_extents(struct btrfs_trans_handle *trans,
1616 struct reloc_control *rc,
1617 struct btrfs_root *root,
1618 struct extent_buffer *leaf)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001619{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001620 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001621 struct btrfs_key key;
1622 struct btrfs_file_extent_item *fi;
1623 struct inode *inode = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001624 u64 parent;
1625 u64 bytenr;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001626 u64 new_bytenr = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001627 u64 num_bytes;
1628 u64 end;
1629 u32 nritems;
1630 u32 i;
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001631 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001632 int first = 1;
1633 int dirty = 0;
1634
1635 if (rc->stage != UPDATE_DATA_PTRS)
1636 return 0;
1637
1638 /* reloc trees always use full backref */
1639 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
1640 parent = leaf->start;
1641 else
1642 parent = 0;
1643
1644 nritems = btrfs_header_nritems(leaf);
1645 for (i = 0; i < nritems; i++) {
Qu Wenruo82fa1132019-04-04 14:45:35 +08001646 struct btrfs_ref ref = { 0 };
1647
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001648 cond_resched();
1649 btrfs_item_key_to_cpu(leaf, &key, i);
1650 if (key.type != BTRFS_EXTENT_DATA_KEY)
1651 continue;
1652 fi = btrfs_item_ptr(leaf, i, struct btrfs_file_extent_item);
1653 if (btrfs_file_extent_type(leaf, fi) ==
1654 BTRFS_FILE_EXTENT_INLINE)
1655 continue;
1656 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1657 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
1658 if (bytenr == 0)
1659 continue;
1660 if (!in_block_group(bytenr, rc->block_group))
1661 continue;
1662
1663 /*
1664 * if we are modifying block in fs tree, wait for readpage
1665 * to complete and drop the extent cache
1666 */
1667 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001668 if (first) {
1669 inode = find_next_inode(root, key.objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001670 first = 0;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001671 } else if (inode && btrfs_ino(BTRFS_I(inode)) < key.objectid) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001672 btrfs_add_delayed_iput(inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001673 inode = find_next_inode(root, key.objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001674 }
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02001675 if (inode && btrfs_ino(BTRFS_I(inode)) == key.objectid) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001676 end = key.offset +
1677 btrfs_file_extent_num_bytes(leaf, fi);
1678 WARN_ON(!IS_ALIGNED(key.offset,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001679 fs_info->sectorsize));
1680 WARN_ON(!IS_ALIGNED(end, fs_info->sectorsize));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001681 end--;
1682 ret = try_lock_extent(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001683 key.offset, end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001684 if (!ret)
1685 continue;
1686
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02001687 btrfs_drop_extent_cache(BTRFS_I(inode),
1688 key.offset, end, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001689 unlock_extent(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01001690 key.offset, end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001691 }
1692 }
1693
1694 ret = get_new_location(rc->data_inode, &new_bytenr,
1695 bytenr, num_bytes);
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001696 if (ret) {
1697 /*
1698 * Don't have to abort since we've not changed anything
1699 * in the file extent yet.
1700 */
1701 break;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001702 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001703
1704 btrfs_set_file_extent_disk_bytenr(leaf, fi, new_bytenr);
1705 dirty = 1;
1706
1707 key.offset -= btrfs_file_extent_offset(leaf, fi);
Qu Wenruo82fa1132019-04-04 14:45:35 +08001708 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, new_bytenr,
1709 num_bytes, parent);
1710 ref.real_root = root->root_key.objectid;
1711 btrfs_init_data_ref(&ref, btrfs_header_owner(leaf),
1712 key.objectid, key.offset);
1713 ret = btrfs_inc_extent_ref(trans, &ref);
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001714 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001715 btrfs_abort_transaction(trans, ret);
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001716 break;
1717 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001718
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001719 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr,
1720 num_bytes, parent);
1721 ref.real_root = root->root_key.objectid;
1722 btrfs_init_data_ref(&ref, btrfs_header_owner(leaf),
1723 key.objectid, key.offset);
1724 ret = btrfs_free_extent(trans, &ref);
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001725 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04001726 btrfs_abort_transaction(trans, ret);
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001727 break;
1728 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001729 }
1730 if (dirty)
1731 btrfs_mark_buffer_dirty(leaf);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001732 if (inode)
1733 btrfs_add_delayed_iput(inode);
Josef Bacik83d4cfd2013-08-30 15:09:51 -04001734 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001735}
1736
1737static noinline_for_stack
1738int memcmp_node_keys(struct extent_buffer *eb, int slot,
1739 struct btrfs_path *path, int level)
1740{
1741 struct btrfs_disk_key key1;
1742 struct btrfs_disk_key key2;
1743 btrfs_node_key(eb, &key1, slot);
1744 btrfs_node_key(path->nodes[level], &key2, path->slots[level]);
1745 return memcmp(&key1, &key2, sizeof(key1));
1746}
1747
1748/*
1749 * try to replace tree blocks in fs tree with the new blocks
1750 * in reloc tree. tree blocks haven't been modified since the
1751 * reloc tree was create can be replaced.
1752 *
1753 * if a block was replaced, level of the block + 1 is returned.
1754 * if no block got replaced, 0 is returned. if there are other
1755 * errors, a negative error number is returned.
1756 */
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001757static noinline_for_stack
Qu Wenruo3d0174f2018-09-27 14:42:35 +08001758int replace_path(struct btrfs_trans_handle *trans, struct reloc_control *rc,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001759 struct btrfs_root *dest, struct btrfs_root *src,
1760 struct btrfs_path *path, struct btrfs_key *next_key,
1761 int lowest_level, int max_level)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001762{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001763 struct btrfs_fs_info *fs_info = dest->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001764 struct extent_buffer *eb;
1765 struct extent_buffer *parent;
Qu Wenruo82fa1132019-04-04 14:45:35 +08001766 struct btrfs_ref ref = { 0 };
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001767 struct btrfs_key key;
1768 u64 old_bytenr;
1769 u64 new_bytenr;
1770 u64 old_ptr_gen;
1771 u64 new_ptr_gen;
1772 u64 last_snapshot;
1773 u32 blocksize;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001774 int cow = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001775 int level;
1776 int ret;
1777 int slot;
1778
1779 BUG_ON(src->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
1780 BUG_ON(dest->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001781
1782 last_snapshot = btrfs_root_last_snapshot(&src->root_item);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001783again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001784 slot = path->slots[lowest_level];
1785 btrfs_node_key_to_cpu(path->nodes[lowest_level], &key, slot);
1786
1787 eb = btrfs_lock_root_node(dest);
David Sterba8bead252018-04-04 02:03:48 +02001788 btrfs_set_lock_blocking_write(eb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001789 level = btrfs_header_level(eb);
1790
1791 if (level < lowest_level) {
1792 btrfs_tree_unlock(eb);
1793 free_extent_buffer(eb);
1794 return 0;
1795 }
1796
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001797 if (cow) {
1798 ret = btrfs_cow_block(trans, dest, eb, NULL, 0, &eb);
1799 BUG_ON(ret);
1800 }
David Sterba8bead252018-04-04 02:03:48 +02001801 btrfs_set_lock_blocking_write(eb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001802
1803 if (next_key) {
1804 next_key->objectid = (u64)-1;
1805 next_key->type = (u8)-1;
1806 next_key->offset = (u64)-1;
1807 }
1808
1809 parent = eb;
1810 while (1) {
Qu Wenruo581c1762018-03-29 09:08:11 +08001811 struct btrfs_key first_key;
1812
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001813 level = btrfs_header_level(parent);
1814 BUG_ON(level < lowest_level);
1815
1816 ret = btrfs_bin_search(parent, &key, level, &slot);
Filipe Mananacbca7d52019-02-18 16:57:26 +00001817 if (ret < 0)
1818 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001819 if (ret && slot > 0)
1820 slot--;
1821
1822 if (next_key && slot + 1 < btrfs_header_nritems(parent))
1823 btrfs_node_key_to_cpu(parent, next_key, slot + 1);
1824
1825 old_bytenr = btrfs_node_blockptr(parent, slot);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001826 blocksize = fs_info->nodesize;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001827 old_ptr_gen = btrfs_node_ptr_generation(parent, slot);
Qu Wenruo17515f12018-04-23 17:32:04 +08001828 btrfs_node_key_to_cpu(parent, &first_key, slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001829
1830 if (level <= max_level) {
1831 eb = path->nodes[level];
1832 new_bytenr = btrfs_node_blockptr(eb,
1833 path->slots[level]);
1834 new_ptr_gen = btrfs_node_ptr_generation(eb,
1835 path->slots[level]);
1836 } else {
1837 new_bytenr = 0;
1838 new_ptr_gen = 0;
1839 }
1840
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301841 if (WARN_ON(new_bytenr > 0 && new_bytenr == old_bytenr)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001842 ret = level;
1843 break;
1844 }
1845
1846 if (new_bytenr == 0 || old_ptr_gen > last_snapshot ||
1847 memcmp_node_keys(parent, slot, path, level)) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001848 if (level <= lowest_level) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001849 ret = 0;
1850 break;
1851 }
1852
Qu Wenruo581c1762018-03-29 09:08:11 +08001853 eb = read_tree_block(fs_info, old_bytenr, old_ptr_gen,
1854 level - 1, &first_key);
Liu Bo64c043d2015-05-25 17:30:15 +08001855 if (IS_ERR(eb)) {
1856 ret = PTR_ERR(eb);
Liu Bo264813a2016-03-21 14:59:53 -07001857 break;
Liu Bo64c043d2015-05-25 17:30:15 +08001858 } else if (!extent_buffer_uptodate(eb)) {
1859 ret = -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04001860 free_extent_buffer(eb);
Stefan Behrens379cde72013-05-08 08:56:09 +00001861 break;
Josef Bacik416bc652013-04-23 14:17:42 -04001862 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001863 btrfs_tree_lock(eb);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001864 if (cow) {
1865 ret = btrfs_cow_block(trans, dest, eb, parent,
1866 slot, &eb);
1867 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001868 }
David Sterba8bead252018-04-04 02:03:48 +02001869 btrfs_set_lock_blocking_write(eb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001870
1871 btrfs_tree_unlock(parent);
1872 free_extent_buffer(parent);
1873
1874 parent = eb;
1875 continue;
1876 }
1877
Yan, Zheng3fd0a552010-05-16 10:49:59 -04001878 if (!cow) {
1879 btrfs_tree_unlock(parent);
1880 free_extent_buffer(parent);
1881 cow = 1;
1882 goto again;
1883 }
1884
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001885 btrfs_node_key_to_cpu(path->nodes[level], &key,
1886 path->slots[level]);
David Sterbab3b4aa72011-04-21 01:20:15 +02001887 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001888
1889 path->lowest_level = level;
1890 ret = btrfs_search_slot(trans, src, &key, path, 0, 1);
1891 path->lowest_level = 0;
1892 BUG_ON(ret);
1893
1894 /*
Qu Wenruo824d8df2016-10-18 09:31:29 +08001895 * Info qgroup to trace both subtrees.
1896 *
1897 * We must trace both trees.
1898 * 1) Tree reloc subtree
1899 * If not traced, we will leak data numbers
1900 * 2) Fs subtree
1901 * If not traced, we will double count old data
Qu Wenruof616f5c2019-01-23 15:15:17 +08001902 *
1903 * We don't scan the subtree right now, but only record
1904 * the swapped tree blocks.
1905 * The real subtree rescan is delayed until we have new
1906 * CoW on the subtree root node before transaction commit.
Qu Wenruo824d8df2016-10-18 09:31:29 +08001907 */
Qu Wenruo370a11b2019-01-23 15:15:16 +08001908 ret = btrfs_qgroup_add_swapped_blocks(trans, dest,
1909 rc->block_group, parent, slot,
1910 path->nodes[level], path->slots[level],
1911 last_snapshot);
1912 if (ret < 0)
1913 break;
Qu Wenruo824d8df2016-10-18 09:31:29 +08001914 /*
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001915 * swap blocks in fs tree and reloc tree.
1916 */
1917 btrfs_set_node_blockptr(parent, slot, new_bytenr);
1918 btrfs_set_node_ptr_generation(parent, slot, new_ptr_gen);
1919 btrfs_mark_buffer_dirty(parent);
1920
1921 btrfs_set_node_blockptr(path->nodes[level],
1922 path->slots[level], old_bytenr);
1923 btrfs_set_node_ptr_generation(path->nodes[level],
1924 path->slots[level], old_ptr_gen);
1925 btrfs_mark_buffer_dirty(path->nodes[level]);
1926
Qu Wenruo82fa1132019-04-04 14:45:35 +08001927 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, old_bytenr,
1928 blocksize, path->nodes[level]->start);
1929 ref.skip_qgroup = true;
1930 btrfs_init_tree_ref(&ref, level - 1, src->root_key.objectid);
1931 ret = btrfs_inc_extent_ref(trans, &ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001932 BUG_ON(ret);
Qu Wenruo82fa1132019-04-04 14:45:35 +08001933 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF, new_bytenr,
1934 blocksize, 0);
1935 ref.skip_qgroup = true;
1936 btrfs_init_tree_ref(&ref, level - 1, dest->root_key.objectid);
1937 ret = btrfs_inc_extent_ref(trans, &ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001938 BUG_ON(ret);
1939
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001940 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, new_bytenr,
1941 blocksize, path->nodes[level]->start);
1942 btrfs_init_tree_ref(&ref, level - 1, src->root_key.objectid);
1943 ref.skip_qgroup = true;
1944 ret = btrfs_free_extent(trans, &ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001945 BUG_ON(ret);
1946
Qu Wenruoffd4bb22019-04-04 14:45:36 +08001947 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, old_bytenr,
1948 blocksize, 0);
1949 btrfs_init_tree_ref(&ref, level - 1, dest->root_key.objectid);
1950 ref.skip_qgroup = true;
1951 ret = btrfs_free_extent(trans, &ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001952 BUG_ON(ret);
1953
1954 btrfs_unlock_up_safe(path, 0);
1955
1956 ret = level;
1957 break;
1958 }
1959 btrfs_tree_unlock(parent);
1960 free_extent_buffer(parent);
1961 return ret;
1962}
1963
1964/*
1965 * helper to find next relocated block in reloc tree
1966 */
1967static noinline_for_stack
1968int walk_up_reloc_tree(struct btrfs_root *root, struct btrfs_path *path,
1969 int *level)
1970{
1971 struct extent_buffer *eb;
1972 int i;
1973 u64 last_snapshot;
1974 u32 nritems;
1975
1976 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
1977
1978 for (i = 0; i < *level; i++) {
1979 free_extent_buffer(path->nodes[i]);
1980 path->nodes[i] = NULL;
1981 }
1982
1983 for (i = *level; i < BTRFS_MAX_LEVEL && path->nodes[i]; i++) {
1984 eb = path->nodes[i];
1985 nritems = btrfs_header_nritems(eb);
1986 while (path->slots[i] + 1 < nritems) {
1987 path->slots[i]++;
1988 if (btrfs_node_ptr_generation(eb, path->slots[i]) <=
1989 last_snapshot)
1990 continue;
1991
1992 *level = i;
1993 return 0;
1994 }
1995 free_extent_buffer(path->nodes[i]);
1996 path->nodes[i] = NULL;
1997 }
1998 return 1;
1999}
2000
2001/*
2002 * walk down reloc tree to find relocated block of lowest level
2003 */
2004static noinline_for_stack
2005int walk_down_reloc_tree(struct btrfs_root *root, struct btrfs_path *path,
2006 int *level)
2007{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002008 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002009 struct extent_buffer *eb = NULL;
2010 int i;
2011 u64 bytenr;
2012 u64 ptr_gen = 0;
2013 u64 last_snapshot;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002014 u32 nritems;
2015
2016 last_snapshot = btrfs_root_last_snapshot(&root->root_item);
2017
2018 for (i = *level; i > 0; i--) {
Qu Wenruo581c1762018-03-29 09:08:11 +08002019 struct btrfs_key first_key;
2020
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002021 eb = path->nodes[i];
2022 nritems = btrfs_header_nritems(eb);
2023 while (path->slots[i] < nritems) {
2024 ptr_gen = btrfs_node_ptr_generation(eb, path->slots[i]);
2025 if (ptr_gen > last_snapshot)
2026 break;
2027 path->slots[i]++;
2028 }
2029 if (path->slots[i] >= nritems) {
2030 if (i == *level)
2031 break;
2032 *level = i + 1;
2033 return 0;
2034 }
2035 if (i == 1) {
2036 *level = i;
2037 return 0;
2038 }
2039
2040 bytenr = btrfs_node_blockptr(eb, path->slots[i]);
Qu Wenruo581c1762018-03-29 09:08:11 +08002041 btrfs_node_key_to_cpu(eb, &first_key, path->slots[i]);
2042 eb = read_tree_block(fs_info, bytenr, ptr_gen, i - 1,
2043 &first_key);
Liu Bo64c043d2015-05-25 17:30:15 +08002044 if (IS_ERR(eb)) {
2045 return PTR_ERR(eb);
2046 } else if (!extent_buffer_uptodate(eb)) {
Josef Bacik416bc652013-04-23 14:17:42 -04002047 free_extent_buffer(eb);
2048 return -EIO;
2049 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002050 BUG_ON(btrfs_header_level(eb) != i - 1);
2051 path->nodes[i - 1] = eb;
2052 path->slots[i - 1] = 0;
2053 }
2054 return 1;
2055}
2056
2057/*
2058 * invalidate extent cache for file extents whose key in range of
2059 * [min_key, max_key)
2060 */
2061static int invalidate_extent_cache(struct btrfs_root *root,
2062 struct btrfs_key *min_key,
2063 struct btrfs_key *max_key)
2064{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002065 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002066 struct inode *inode = NULL;
2067 u64 objectid;
2068 u64 start, end;
Li Zefan33345d012011-04-20 10:31:50 +08002069 u64 ino;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002070
2071 objectid = min_key->objectid;
2072 while (1) {
2073 cond_resched();
2074 iput(inode);
2075
2076 if (objectid > max_key->objectid)
2077 break;
2078
2079 inode = find_next_inode(root, objectid);
2080 if (!inode)
2081 break;
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +02002082 ino = btrfs_ino(BTRFS_I(inode));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002083
Li Zefan33345d012011-04-20 10:31:50 +08002084 if (ino > max_key->objectid) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002085 iput(inode);
2086 break;
2087 }
2088
Li Zefan33345d012011-04-20 10:31:50 +08002089 objectid = ino + 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002090 if (!S_ISREG(inode->i_mode))
2091 continue;
2092
Li Zefan33345d012011-04-20 10:31:50 +08002093 if (unlikely(min_key->objectid == ino)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002094 if (min_key->type > BTRFS_EXTENT_DATA_KEY)
2095 continue;
2096 if (min_key->type < BTRFS_EXTENT_DATA_KEY)
2097 start = 0;
2098 else {
2099 start = min_key->offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002100 WARN_ON(!IS_ALIGNED(start, fs_info->sectorsize));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002101 }
2102 } else {
2103 start = 0;
2104 }
2105
Li Zefan33345d012011-04-20 10:31:50 +08002106 if (unlikely(max_key->objectid == ino)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002107 if (max_key->type < BTRFS_EXTENT_DATA_KEY)
2108 continue;
2109 if (max_key->type > BTRFS_EXTENT_DATA_KEY) {
2110 end = (u64)-1;
2111 } else {
2112 if (max_key->offset == 0)
2113 continue;
2114 end = max_key->offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002115 WARN_ON(!IS_ALIGNED(end, fs_info->sectorsize));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002116 end--;
2117 }
2118 } else {
2119 end = (u64)-1;
2120 }
2121
2122 /* the lock_extent waits for readpage to complete */
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002123 lock_extent(&BTRFS_I(inode)->io_tree, start, end);
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02002124 btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 1);
Jeff Mahoneyd0082372012-03-01 14:57:19 +01002125 unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002126 }
2127 return 0;
2128}
2129
2130static int find_next_key(struct btrfs_path *path, int level,
2131 struct btrfs_key *key)
2132
2133{
2134 while (level < BTRFS_MAX_LEVEL) {
2135 if (!path->nodes[level])
2136 break;
2137 if (path->slots[level] + 1 <
2138 btrfs_header_nritems(path->nodes[level])) {
2139 btrfs_node_key_to_cpu(path->nodes[level], key,
2140 path->slots[level] + 1);
2141 return 0;
2142 }
2143 level++;
2144 }
2145 return 1;
2146}
2147
2148/*
Qu Wenruod2311e62019-01-23 15:15:14 +08002149 * Insert current subvolume into reloc_control::dirty_subvol_roots
2150 */
2151static void insert_dirty_subvol(struct btrfs_trans_handle *trans,
2152 struct reloc_control *rc,
2153 struct btrfs_root *root)
2154{
2155 struct btrfs_root *reloc_root = root->reloc_root;
2156 struct btrfs_root_item *reloc_root_item;
2157
2158 /* @root must be a subvolume tree root with a valid reloc tree */
2159 ASSERT(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
2160 ASSERT(reloc_root);
2161
2162 reloc_root_item = &reloc_root->root_item;
2163 memset(&reloc_root_item->drop_progress, 0,
2164 sizeof(reloc_root_item->drop_progress));
2165 reloc_root_item->drop_level = 0;
2166 btrfs_set_root_refs(reloc_root_item, 0);
2167 btrfs_update_reloc_root(trans, root);
2168
2169 if (list_empty(&root->reloc_dirty_list)) {
2170 btrfs_grab_fs_root(root);
2171 list_add_tail(&root->reloc_dirty_list, &rc->dirty_subvol_roots);
2172 }
2173}
2174
2175static int clean_dirty_subvols(struct reloc_control *rc)
2176{
2177 struct btrfs_root *root;
2178 struct btrfs_root *next;
2179 int ret = 0;
2180
2181 list_for_each_entry_safe(root, next, &rc->dirty_subvol_roots,
2182 reloc_dirty_list) {
2183 struct btrfs_root *reloc_root = root->reloc_root;
2184
2185 clear_bit(BTRFS_ROOT_DEAD_RELOC_TREE, &root->state);
2186 list_del_init(&root->reloc_dirty_list);
2187 root->reloc_root = NULL;
2188 if (reloc_root) {
2189 int ret2;
2190
2191 ret2 = btrfs_drop_snapshot(reloc_root, NULL, 0, 1);
2192 if (ret2 < 0 && !ret)
2193 ret = ret2;
2194 }
2195 btrfs_put_fs_root(root);
2196 }
2197 return ret;
2198}
2199
2200/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002201 * merge the relocated tree blocks in reloc tree with corresponding
2202 * fs tree.
2203 */
2204static noinline_for_stack int merge_reloc_root(struct reloc_control *rc,
2205 struct btrfs_root *root)
2206{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002207 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002208 struct btrfs_key key;
2209 struct btrfs_key next_key;
Josef Bacik9e6a0c522013-10-31 10:07:19 -04002210 struct btrfs_trans_handle *trans = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002211 struct btrfs_root *reloc_root;
2212 struct btrfs_root_item *root_item;
2213 struct btrfs_path *path;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002214 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002215 int level;
2216 int max_level;
2217 int replaced = 0;
2218 int ret;
2219 int err = 0;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002220 u32 min_reserved;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002221
2222 path = btrfs_alloc_path();
2223 if (!path)
2224 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01002225 path->reada = READA_FORWARD;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002226
2227 reloc_root = root->reloc_root;
2228 root_item = &reloc_root->root_item;
2229
2230 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2231 level = btrfs_root_level(root_item);
2232 extent_buffer_get(reloc_root->node);
2233 path->nodes[level] = reloc_root->node;
2234 path->slots[level] = 0;
2235 } else {
2236 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
2237
2238 level = root_item->drop_level;
2239 BUG_ON(level == 0);
2240 path->lowest_level = level;
2241 ret = btrfs_search_slot(NULL, reloc_root, &key, path, 0, 0);
Yan Zheng33c66f42009-07-22 09:59:00 -04002242 path->lowest_level = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002243 if (ret < 0) {
2244 btrfs_free_path(path);
2245 return ret;
2246 }
2247
2248 btrfs_node_key_to_cpu(path->nodes[level], &next_key,
2249 path->slots[level]);
2250 WARN_ON(memcmp(&key, &next_key, sizeof(key)));
2251
2252 btrfs_unlock_up_safe(path, 0);
2253 }
2254
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002255 min_reserved = fs_info->nodesize * (BTRFS_MAX_LEVEL - 1) * 2;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002256 memset(&next_key, 0, sizeof(next_key));
2257
2258 while (1) {
Miao Xie08e007d2012-10-16 11:33:38 +00002259 ret = btrfs_block_rsv_refill(root, rc->block_rsv, min_reserved,
2260 BTRFS_RESERVE_FLUSH_ALL);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002261 if (ret) {
Josef Bacik9e6a0c522013-10-31 10:07:19 -04002262 err = ret;
2263 goto out;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002264 }
Josef Bacik9e6a0c522013-10-31 10:07:19 -04002265 trans = btrfs_start_transaction(root, 0);
2266 if (IS_ERR(trans)) {
2267 err = PTR_ERR(trans);
2268 trans = NULL;
2269 goto out;
2270 }
2271 trans->block_rsv = rc->block_rsv;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002272
2273 replaced = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002274 max_level = level;
2275
2276 ret = walk_down_reloc_tree(reloc_root, path, &level);
2277 if (ret < 0) {
2278 err = ret;
2279 goto out;
2280 }
2281 if (ret > 0)
2282 break;
2283
2284 if (!find_next_key(path, level, &key) &&
2285 btrfs_comp_cpu_keys(&next_key, &key) >= 0) {
2286 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002287 } else {
Qu Wenruo3d0174f2018-09-27 14:42:35 +08002288 ret = replace_path(trans, rc, root, reloc_root, path,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002289 &next_key, level, max_level);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002290 }
2291 if (ret < 0) {
2292 err = ret;
2293 goto out;
2294 }
2295
2296 if (ret > 0) {
2297 level = ret;
2298 btrfs_node_key_to_cpu(path->nodes[level], &key,
2299 path->slots[level]);
2300 replaced = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002301 }
2302
2303 ret = walk_up_reloc_tree(reloc_root, path, &level);
2304 if (ret > 0)
2305 break;
2306
2307 BUG_ON(level == 0);
2308 /*
2309 * save the merging progress in the drop_progress.
2310 * this is OK since root refs == 1 in this case.
2311 */
2312 btrfs_node_key(path->nodes[level], &root_item->drop_progress,
2313 path->slots[level]);
2314 root_item->drop_level = level;
2315
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002316 btrfs_end_transaction_throttle(trans);
Josef Bacik9e6a0c522013-10-31 10:07:19 -04002317 trans = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002318
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002319 btrfs_btree_balance_dirty(fs_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002320
2321 if (replaced && rc->stage == UPDATE_DATA_PTRS)
2322 invalidate_extent_cache(root, &key, &next_key);
2323 }
2324
2325 /*
2326 * handle the case only one block in the fs tree need to be
2327 * relocated and the block is tree root.
2328 */
2329 leaf = btrfs_lock_root_node(root);
2330 ret = btrfs_cow_block(trans, root, leaf, NULL, 0, &leaf);
2331 btrfs_tree_unlock(leaf);
2332 free_extent_buffer(leaf);
2333 if (ret < 0)
2334 err = ret;
2335out:
2336 btrfs_free_path(path);
2337
Qu Wenruod2311e62019-01-23 15:15:14 +08002338 if (err == 0)
2339 insert_dirty_subvol(trans, rc, root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002340
Josef Bacik9e6a0c522013-10-31 10:07:19 -04002341 if (trans)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002342 btrfs_end_transaction_throttle(trans);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002343
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002344 btrfs_btree_balance_dirty(fs_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002345
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002346 if (replaced && rc->stage == UPDATE_DATA_PTRS)
2347 invalidate_extent_cache(root, &key, &next_key);
2348
2349 return err;
2350}
2351
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002352static noinline_for_stack
2353int prepare_to_merge(struct reloc_control *rc, int err)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002354{
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002355 struct btrfs_root *root = rc->extent_root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002356 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002357 struct btrfs_root *reloc_root;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002358 struct btrfs_trans_handle *trans;
2359 LIST_HEAD(reloc_roots);
2360 u64 num_bytes = 0;
2361 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002362
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002363 mutex_lock(&fs_info->reloc_mutex);
2364 rc->merging_rsv_size += fs_info->nodesize * (BTRFS_MAX_LEVEL - 1) * 2;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002365 rc->merging_rsv_size += rc->nodes_relocated * 2;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002366 mutex_unlock(&fs_info->reloc_mutex);
Chris Mason75857172011-06-13 20:00:16 -04002367
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002368again:
2369 if (!err) {
2370 num_bytes = rc->merging_rsv_size;
Miao Xie08e007d2012-10-16 11:33:38 +00002371 ret = btrfs_block_rsv_add(root, rc->block_rsv, num_bytes,
2372 BTRFS_RESERVE_FLUSH_ALL);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002373 if (ret)
2374 err = ret;
2375 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002376
Josef Bacik7a7eaa42011-04-13 12:54:33 -04002377 trans = btrfs_join_transaction(rc->extent_root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00002378 if (IS_ERR(trans)) {
2379 if (!err)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002380 btrfs_block_rsv_release(fs_info, rc->block_rsv,
2381 num_bytes);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00002382 return PTR_ERR(trans);
2383 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002384
2385 if (!err) {
2386 if (num_bytes != rc->merging_rsv_size) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002387 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002388 btrfs_block_rsv_release(fs_info, rc->block_rsv,
2389 num_bytes);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002390 goto again;
2391 }
2392 }
2393
2394 rc->merge_reloc_tree = 1;
2395
2396 while (!list_empty(&rc->reloc_roots)) {
2397 reloc_root = list_entry(rc->reloc_roots.next,
2398 struct btrfs_root, root_list);
2399 list_del_init(&reloc_root->root_list);
2400
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002401 root = read_fs_root(fs_info, reloc_root->root_key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002402 BUG_ON(IS_ERR(root));
2403 BUG_ON(root->reloc_root != reloc_root);
2404
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002405 /*
2406 * set reference count to 1, so btrfs_recover_relocation
2407 * knows it should resumes merging
2408 */
2409 if (!err)
2410 btrfs_set_root_refs(&reloc_root->root_item, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002411 btrfs_update_reloc_root(trans, root);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002412
2413 list_add(&reloc_root->root_list, &reloc_roots);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002414 }
2415
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002416 list_splice(&reloc_roots, &rc->reloc_roots);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002417
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002418 if (!err)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002419 btrfs_commit_transaction(trans);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002420 else
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002421 btrfs_end_transaction(trans);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002422 return err;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002423}
2424
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002425static noinline_for_stack
Liu Boaca1bba2013-03-04 16:25:37 +00002426void free_reloc_roots(struct list_head *list)
2427{
2428 struct btrfs_root *reloc_root;
2429
2430 while (!list_empty(list)) {
2431 reloc_root = list_entry(list->next, struct btrfs_root,
2432 root_list);
Naohiro Aotabb166d72017-08-25 14:15:14 +09002433 __del_reloc_root(reloc_root);
Josef Bacik6bdf1312016-09-02 15:25:43 -04002434 free_extent_buffer(reloc_root->node);
2435 free_extent_buffer(reloc_root->commit_root);
2436 reloc_root->node = NULL;
2437 reloc_root->commit_root = NULL;
Liu Boaca1bba2013-03-04 16:25:37 +00002438 }
2439}
2440
2441static noinline_for_stack
David Sterba94404e82014-07-30 01:53:30 +02002442void merge_reloc_roots(struct reloc_control *rc)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002443{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002444 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002445 struct btrfs_root *root;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002446 struct btrfs_root *reloc_root;
2447 LIST_HEAD(reloc_roots);
2448 int found = 0;
Liu Boaca1bba2013-03-04 16:25:37 +00002449 int ret = 0;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002450again:
2451 root = rc->extent_root;
Chris Mason75857172011-06-13 20:00:16 -04002452
2453 /*
2454 * this serializes us with btrfs_record_root_in_transaction,
2455 * we have to make sure nobody is in the middle of
2456 * adding their roots to the list while we are
2457 * doing this splice
2458 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002459 mutex_lock(&fs_info->reloc_mutex);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002460 list_splice_init(&rc->reloc_roots, &reloc_roots);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002461 mutex_unlock(&fs_info->reloc_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002462
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002463 while (!list_empty(&reloc_roots)) {
2464 found = 1;
2465 reloc_root = list_entry(reloc_roots.next,
2466 struct btrfs_root, root_list);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002467
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002468 if (btrfs_root_refs(&reloc_root->root_item) > 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002469 root = read_fs_root(fs_info,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002470 reloc_root->root_key.offset);
2471 BUG_ON(IS_ERR(root));
2472 BUG_ON(root->reloc_root != reloc_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002473
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002474 ret = merge_reloc_root(rc, root);
Josef Bacikb37b39c2013-07-23 16:57:15 -04002475 if (ret) {
Wang Shilong25e293c2013-12-26 13:10:50 +08002476 if (list_empty(&reloc_root->root_list))
2477 list_add_tail(&reloc_root->root_list,
2478 &reloc_roots);
Liu Boaca1bba2013-03-04 16:25:37 +00002479 goto out;
Josef Bacikb37b39c2013-07-23 16:57:15 -04002480 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002481 } else {
2482 list_del_init(&reloc_root->root_list);
2483 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002484 }
2485
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002486 if (found) {
2487 found = 0;
2488 goto again;
2489 }
Liu Boaca1bba2013-03-04 16:25:37 +00002490out:
2491 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002492 btrfs_handle_fs_error(fs_info, ret, NULL);
Liu Boaca1bba2013-03-04 16:25:37 +00002493 if (!list_empty(&reloc_roots))
2494 free_reloc_roots(&reloc_roots);
Wang Shilong467bb1d2013-12-11 19:29:52 +08002495
2496 /* new reloc root may be added */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002497 mutex_lock(&fs_info->reloc_mutex);
Wang Shilong467bb1d2013-12-11 19:29:52 +08002498 list_splice_init(&rc->reloc_roots, &reloc_roots);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002499 mutex_unlock(&fs_info->reloc_mutex);
Wang Shilong467bb1d2013-12-11 19:29:52 +08002500 if (!list_empty(&reloc_roots))
2501 free_reloc_roots(&reloc_roots);
Liu Boaca1bba2013-03-04 16:25:37 +00002502 }
2503
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002504 BUG_ON(!RB_EMPTY_ROOT(&rc->reloc_root_tree.rb_root));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002505}
2506
2507static void free_block_list(struct rb_root *blocks)
2508{
2509 struct tree_block *block;
2510 struct rb_node *rb_node;
2511 while ((rb_node = rb_first(blocks))) {
2512 block = rb_entry(rb_node, struct tree_block, rb_node);
2513 rb_erase(rb_node, blocks);
2514 kfree(block);
2515 }
2516}
2517
2518static int record_reloc_root_in_trans(struct btrfs_trans_handle *trans,
2519 struct btrfs_root *reloc_root)
2520{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002521 struct btrfs_fs_info *fs_info = reloc_root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002522 struct btrfs_root *root;
2523
2524 if (reloc_root->last_trans == trans->transid)
2525 return 0;
2526
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002527 root = read_fs_root(fs_info, reloc_root->root_key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002528 BUG_ON(IS_ERR(root));
2529 BUG_ON(root->reloc_root != reloc_root);
2530
2531 return btrfs_record_root_in_trans(trans, root);
2532}
2533
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002534static noinline_for_stack
2535struct btrfs_root *select_reloc_root(struct btrfs_trans_handle *trans,
2536 struct reloc_control *rc,
2537 struct backref_node *node,
Wang Shilongdc4103f2013-12-26 13:10:49 +08002538 struct backref_edge *edges[])
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002539{
2540 struct backref_node *next;
2541 struct btrfs_root *root;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002542 int index = 0;
2543
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002544 next = node;
2545 while (1) {
2546 cond_resched();
2547 next = walk_up_backref(next, edges, &index);
2548 root = next->root;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002549 BUG_ON(!root);
Miao Xie27cdeb72014-04-02 19:51:05 +08002550 BUG_ON(!test_bit(BTRFS_ROOT_REF_COWS, &root->state));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002551
2552 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
2553 record_reloc_root_in_trans(trans, root);
2554 break;
2555 }
2556
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002557 btrfs_record_root_in_trans(trans, root);
2558 root = root->reloc_root;
2559
2560 if (next->new_bytenr != root->node->start) {
2561 BUG_ON(next->new_bytenr);
2562 BUG_ON(!list_empty(&next->list));
2563 next->new_bytenr = root->node->start;
2564 next->root = root;
2565 list_add_tail(&next->list,
2566 &rc->backref_cache.changed);
2567 __mark_block_processed(rc, next);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002568 break;
2569 }
2570
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002571 WARN_ON(1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002572 root = NULL;
2573 next = walk_down_backref(edges, &index);
2574 if (!next || next->level <= node->level)
2575 break;
2576 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002577 if (!root)
2578 return NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002579
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002580 next = node;
2581 /* setup backref node path for btrfs_reloc_cow_block */
2582 while (1) {
2583 rc->backref_cache.path[next->level] = next;
2584 if (--index < 0)
2585 break;
2586 next = edges[index]->node[UPPER];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002587 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002588 return root;
2589}
2590
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002591/*
2592 * select a tree root for relocation. return NULL if the block
2593 * is reference counted. we should use do_relocation() in this
2594 * case. return a tree root pointer if the block isn't reference
2595 * counted. return -ENOENT if the block is root of reloc tree.
2596 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002597static noinline_for_stack
Zhaolei147d2562015-08-06 20:58:11 +08002598struct btrfs_root *select_one_root(struct backref_node *node)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002599{
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002600 struct backref_node *next;
2601 struct btrfs_root *root;
2602 struct btrfs_root *fs_root = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002603 struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002604 int index = 0;
2605
2606 next = node;
2607 while (1) {
2608 cond_resched();
2609 next = walk_up_backref(next, edges, &index);
2610 root = next->root;
2611 BUG_ON(!root);
2612
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002613 /* no other choice for non-references counted tree */
Miao Xie27cdeb72014-04-02 19:51:05 +08002614 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state))
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002615 return root;
2616
2617 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID)
2618 fs_root = root;
2619
2620 if (next != node)
2621 return NULL;
2622
2623 next = walk_down_backref(edges, &index);
2624 if (!next || next->level <= node->level)
2625 break;
2626 }
2627
2628 if (!fs_root)
2629 return ERR_PTR(-ENOENT);
2630 return fs_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002631}
2632
2633static noinline_for_stack
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002634u64 calcu_metadata_size(struct reloc_control *rc,
2635 struct backref_node *node, int reserve)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002636{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002637 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002638 struct backref_node *next = node;
2639 struct backref_edge *edge;
2640 struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
2641 u64 num_bytes = 0;
2642 int index = 0;
2643
2644 BUG_ON(reserve && node->processed);
2645
2646 while (next) {
2647 cond_resched();
2648 while (1) {
2649 if (next->processed && (reserve || next != node))
2650 break;
2651
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002652 num_bytes += fs_info->nodesize;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002653
2654 if (list_empty(&next->upper))
2655 break;
2656
2657 edge = list_entry(next->upper.next,
2658 struct backref_edge, list[LOWER]);
2659 edges[index++] = edge;
2660 next = edge->node[UPPER];
2661 }
2662 next = walk_down_backref(edges, &index);
2663 }
2664 return num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002665}
2666
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002667static int reserve_metadata_space(struct btrfs_trans_handle *trans,
2668 struct reloc_control *rc,
2669 struct backref_node *node)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002670{
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002671 struct btrfs_root *root = rc->extent_root;
Jeff Mahoneyda170662016-06-15 09:22:56 -04002672 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002673 u64 num_bytes;
2674 int ret;
Wang Shilong0647bf52013-11-20 09:01:52 +08002675 u64 tmp;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002676
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002677 num_bytes = calcu_metadata_size(rc, node, 1) * 2;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002678
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002679 trans->block_rsv = rc->block_rsv;
Wang Shilong0647bf52013-11-20 09:01:52 +08002680 rc->reserved_bytes += num_bytes;
Josef Bacik8ca17f02016-05-27 13:24:13 -04002681
2682 /*
2683 * We are under a transaction here so we can only do limited flushing.
2684 * If we get an enospc just kick back -EAGAIN so we know to drop the
2685 * transaction and try to refill when we can flush all the things.
2686 */
Wang Shilong0647bf52013-11-20 09:01:52 +08002687 ret = btrfs_block_rsv_refill(root, rc->block_rsv, num_bytes,
Josef Bacik8ca17f02016-05-27 13:24:13 -04002688 BTRFS_RESERVE_FLUSH_LIMIT);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002689 if (ret) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04002690 tmp = fs_info->nodesize * RELOCATION_RESERVED_NODES;
Josef Bacik8ca17f02016-05-27 13:24:13 -04002691 while (tmp <= rc->reserved_bytes)
2692 tmp <<= 1;
2693 /*
2694 * only one thread can access block_rsv at this point,
2695 * so we don't need hold lock to protect block_rsv.
2696 * we expand more reservation size here to allow enough
Andrea Gelmini52042d82018-11-28 12:05:13 +01002697 * space for relocation and we will return earlier in
Josef Bacik8ca17f02016-05-27 13:24:13 -04002698 * enospc case.
2699 */
Jeff Mahoneyda170662016-06-15 09:22:56 -04002700 rc->block_rsv->size = tmp + fs_info->nodesize *
2701 RELOCATION_RESERVED_NODES;
Josef Bacik8ca17f02016-05-27 13:24:13 -04002702 return -EAGAIN;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002703 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002704
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002705 return 0;
2706}
2707
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002708/*
2709 * relocate a block tree, and then update pointers in upper level
2710 * blocks that reference the block to point to the new location.
2711 *
2712 * if called by link_to_upper, the block has already been relocated.
2713 * in that case this function just updates pointers.
2714 */
2715static int do_relocation(struct btrfs_trans_handle *trans,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002716 struct reloc_control *rc,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002717 struct backref_node *node,
2718 struct btrfs_key *key,
2719 struct btrfs_path *path, int lowest)
2720{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002721 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002722 struct backref_node *upper;
2723 struct backref_edge *edge;
2724 struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
2725 struct btrfs_root *root;
2726 struct extent_buffer *eb;
2727 u32 blocksize;
2728 u64 bytenr;
2729 u64 generation;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002730 int slot;
2731 int ret;
2732 int err = 0;
2733
2734 BUG_ON(lowest && node->eb);
2735
2736 path->lowest_level = node->level + 1;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002737 rc->backref_cache.path[node->level] = node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002738 list_for_each_entry(edge, &node->upper, list[LOWER]) {
Qu Wenruo581c1762018-03-29 09:08:11 +08002739 struct btrfs_key first_key;
Qu Wenruo82fa1132019-04-04 14:45:35 +08002740 struct btrfs_ref ref = { 0 };
Qu Wenruo581c1762018-03-29 09:08:11 +08002741
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002742 cond_resched();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002743
2744 upper = edge->node[UPPER];
Wang Shilongdc4103f2013-12-26 13:10:49 +08002745 root = select_reloc_root(trans, rc, upper, edges);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002746 BUG_ON(!root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002747
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002748 if (upper->eb && !upper->locked) {
2749 if (!lowest) {
2750 ret = btrfs_bin_search(upper->eb, key,
2751 upper->level, &slot);
Filipe Mananacbca7d52019-02-18 16:57:26 +00002752 if (ret < 0) {
2753 err = ret;
2754 goto next;
2755 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002756 BUG_ON(ret);
2757 bytenr = btrfs_node_blockptr(upper->eb, slot);
2758 if (node->eb->start == bytenr)
2759 goto next;
2760 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002761 drop_node_buffer(upper);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002762 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002763
2764 if (!upper->eb) {
2765 ret = btrfs_search_slot(trans, root, key, path, 0, 1);
Liu Bo3561b9d2016-09-14 08:51:46 -07002766 if (ret) {
2767 if (ret < 0)
2768 err = ret;
2769 else
2770 err = -ENOENT;
2771
2772 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002773 break;
2774 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002775
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002776 if (!upper->eb) {
2777 upper->eb = path->nodes[upper->level];
2778 path->nodes[upper->level] = NULL;
2779 } else {
2780 BUG_ON(upper->eb != path->nodes[upper->level]);
2781 }
2782
2783 upper->locked = 1;
2784 path->locks[upper->level] = 0;
2785
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002786 slot = path->slots[upper->level];
David Sterbab3b4aa72011-04-21 01:20:15 +02002787 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002788 } else {
2789 ret = btrfs_bin_search(upper->eb, key, upper->level,
2790 &slot);
Filipe Mananacbca7d52019-02-18 16:57:26 +00002791 if (ret < 0) {
2792 err = ret;
2793 goto next;
2794 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002795 BUG_ON(ret);
2796 }
2797
2798 bytenr = btrfs_node_blockptr(upper->eb, slot);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002799 if (lowest) {
Liu Bo4547f4d2016-09-23 14:05:04 -07002800 if (bytenr != node->bytenr) {
2801 btrfs_err(root->fs_info,
2802 "lowest leaf/node mismatch: bytenr %llu node->bytenr %llu slot %d upper %llu",
2803 bytenr, node->bytenr, slot,
2804 upper->eb->start);
2805 err = -EIO;
2806 goto next;
2807 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002808 } else {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002809 if (node->eb->start == bytenr)
2810 goto next;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002811 }
2812
Jeff Mahoneyda170662016-06-15 09:22:56 -04002813 blocksize = root->fs_info->nodesize;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002814 generation = btrfs_node_ptr_generation(upper->eb, slot);
Qu Wenruo581c1762018-03-29 09:08:11 +08002815 btrfs_node_key_to_cpu(upper->eb, &first_key, slot);
2816 eb = read_tree_block(fs_info, bytenr, generation,
2817 upper->level - 1, &first_key);
Liu Bo64c043d2015-05-25 17:30:15 +08002818 if (IS_ERR(eb)) {
2819 err = PTR_ERR(eb);
2820 goto next;
2821 } else if (!extent_buffer_uptodate(eb)) {
Josef Bacik416bc652013-04-23 14:17:42 -04002822 free_extent_buffer(eb);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00002823 err = -EIO;
2824 goto next;
2825 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002826 btrfs_tree_lock(eb);
David Sterba8bead252018-04-04 02:03:48 +02002827 btrfs_set_lock_blocking_write(eb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002828
2829 if (!node->eb) {
2830 ret = btrfs_cow_block(trans, root, eb, upper->eb,
2831 slot, &eb);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002832 btrfs_tree_unlock(eb);
2833 free_extent_buffer(eb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002834 if (ret < 0) {
2835 err = ret;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002836 goto next;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002837 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002838 BUG_ON(node->eb != eb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002839 } else {
2840 btrfs_set_node_blockptr(upper->eb, slot,
2841 node->eb->start);
2842 btrfs_set_node_ptr_generation(upper->eb, slot,
2843 trans->transid);
2844 btrfs_mark_buffer_dirty(upper->eb);
2845
Qu Wenruo82fa1132019-04-04 14:45:35 +08002846 btrfs_init_generic_ref(&ref, BTRFS_ADD_DELAYED_REF,
2847 node->eb->start, blocksize,
2848 upper->eb->start);
2849 ref.real_root = root->root_key.objectid;
2850 btrfs_init_tree_ref(&ref, node->level,
2851 btrfs_header_owner(upper->eb));
2852 ret = btrfs_inc_extent_ref(trans, &ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002853 BUG_ON(ret);
2854
2855 ret = btrfs_drop_subtree(trans, root, eb, upper->eb);
2856 BUG_ON(ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002857 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002858next:
2859 if (!upper->pending)
2860 drop_node_buffer(upper);
2861 else
2862 unlock_node_buffer(upper);
2863 if (err)
2864 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002865 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002866
2867 if (!err && node->pending) {
2868 drop_node_buffer(node);
2869 list_move_tail(&node->list, &rc->backref_cache.changed);
2870 node->pending = 0;
2871 }
2872
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002873 path->lowest_level = 0;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002874 BUG_ON(err == -ENOSPC);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002875 return err;
2876}
2877
2878static int link_to_upper(struct btrfs_trans_handle *trans,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002879 struct reloc_control *rc,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002880 struct backref_node *node,
2881 struct btrfs_path *path)
2882{
2883 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002884
2885 btrfs_node_key_to_cpu(node->eb, &key, 0);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002886 return do_relocation(trans, rc, node, &key, path, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002887}
2888
2889static int finish_pending_nodes(struct btrfs_trans_handle *trans,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002890 struct reloc_control *rc,
2891 struct btrfs_path *path, int err)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002892{
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002893 LIST_HEAD(list);
2894 struct backref_cache *cache = &rc->backref_cache;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002895 struct backref_node *node;
2896 int level;
2897 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002898
2899 for (level = 0; level < BTRFS_MAX_LEVEL; level++) {
2900 while (!list_empty(&cache->pending[level])) {
2901 node = list_entry(cache->pending[level].next,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002902 struct backref_node, list);
2903 list_move_tail(&node->list, &list);
2904 BUG_ON(!node->pending);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002905
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002906 if (!err) {
2907 ret = link_to_upper(trans, rc, node, path);
2908 if (ret < 0)
2909 err = ret;
2910 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002911 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002912 list_splice_init(&list, &cache->pending[level]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002913 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002914 return err;
2915}
2916
2917static void mark_block_processed(struct reloc_control *rc,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002918 u64 bytenr, u32 blocksize)
2919{
2920 set_extent_bits(&rc->processed_blocks, bytenr, bytenr + blocksize - 1,
David Sterbaceeb0ae2016-04-26 23:54:39 +02002921 EXTENT_DIRTY);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002922}
2923
2924static void __mark_block_processed(struct reloc_control *rc,
2925 struct backref_node *node)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002926{
2927 u32 blocksize;
2928 if (node->level == 0 ||
2929 in_block_group(node->bytenr, rc->block_group)) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04002930 blocksize = rc->extent_root->fs_info->nodesize;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002931 mark_block_processed(rc, node->bytenr, blocksize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002932 }
2933 node->processed = 1;
2934}
2935
2936/*
2937 * mark a block and all blocks directly/indirectly reference the block
2938 * as processed.
2939 */
2940static void update_processed_blocks(struct reloc_control *rc,
2941 struct backref_node *node)
2942{
2943 struct backref_node *next = node;
2944 struct backref_edge *edge;
2945 struct backref_edge *edges[BTRFS_MAX_LEVEL - 1];
2946 int index = 0;
2947
2948 while (next) {
2949 cond_resched();
2950 while (1) {
2951 if (next->processed)
2952 break;
2953
Yan, Zheng3fd0a552010-05-16 10:49:59 -04002954 __mark_block_processed(rc, next);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002955
2956 if (list_empty(&next->upper))
2957 break;
2958
2959 edge = list_entry(next->upper.next,
2960 struct backref_edge, list[LOWER]);
2961 edges[index++] = edge;
2962 next = edge->node[UPPER];
2963 }
2964 next = walk_down_backref(edges, &index);
2965 }
2966}
2967
David Sterba7476dfd2014-06-15 03:34:59 +02002968static int tree_block_processed(u64 bytenr, struct reloc_control *rc)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002969{
Jeff Mahoneyda170662016-06-15 09:22:56 -04002970 u32 blocksize = rc->extent_root->fs_info->nodesize;
David Sterba7476dfd2014-06-15 03:34:59 +02002971
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002972 if (test_range_bit(&rc->processed_blocks, bytenr,
Chris Mason9655d292009-09-02 15:22:30 -04002973 bytenr + blocksize - 1, EXTENT_DIRTY, 1, NULL))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002974 return 1;
2975 return 0;
2976}
2977
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002978static int get_tree_block_key(struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002979 struct tree_block *block)
2980{
2981 struct extent_buffer *eb;
2982
2983 BUG_ON(block->key_ready);
Qu Wenruo581c1762018-03-29 09:08:11 +08002984 eb = read_tree_block(fs_info, block->bytenr, block->key.offset,
2985 block->level, NULL);
Liu Bo64c043d2015-05-25 17:30:15 +08002986 if (IS_ERR(eb)) {
2987 return PTR_ERR(eb);
2988 } else if (!extent_buffer_uptodate(eb)) {
Josef Bacik416bc652013-04-23 14:17:42 -04002989 free_extent_buffer(eb);
2990 return -EIO;
2991 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002992 if (block->level == 0)
2993 btrfs_item_key_to_cpu(eb, &block->key, 0);
2994 else
2995 btrfs_node_key_to_cpu(eb, &block->key, 0);
2996 free_extent_buffer(eb);
2997 block->key_ready = 1;
2998 return 0;
2999}
3000
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003001/*
3002 * helper function to relocate a tree block
3003 */
3004static int relocate_tree_block(struct btrfs_trans_handle *trans,
3005 struct reloc_control *rc,
3006 struct backref_node *node,
3007 struct btrfs_key *key,
3008 struct btrfs_path *path)
3009{
3010 struct btrfs_root *root;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003011 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003012
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003013 if (!node)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003014 return 0;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003015
3016 BUG_ON(node->processed);
Zhaolei147d2562015-08-06 20:58:11 +08003017 root = select_one_root(node);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003018 if (root == ERR_PTR(-ENOENT)) {
3019 update_processed_blocks(rc, node);
3020 goto out;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003021 }
3022
Miao Xie27cdeb72014-04-02 19:51:05 +08003023 if (!root || test_bit(BTRFS_ROOT_REF_COWS, &root->state)) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003024 ret = reserve_metadata_space(trans, rc, node);
3025 if (ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003026 goto out;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003027 }
3028
3029 if (root) {
Miao Xie27cdeb72014-04-02 19:51:05 +08003030 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state)) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003031 BUG_ON(node->new_bytenr);
3032 BUG_ON(!list_empty(&node->list));
3033 btrfs_record_root_in_trans(trans, root);
3034 root = root->reloc_root;
3035 node->new_bytenr = root->node->start;
3036 node->root = root;
3037 list_add_tail(&node->list, &rc->backref_cache.changed);
3038 } else {
3039 path->lowest_level = node->level;
3040 ret = btrfs_search_slot(trans, root, key, path, 0, 1);
David Sterbab3b4aa72011-04-21 01:20:15 +02003041 btrfs_release_path(path);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003042 if (ret > 0)
3043 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003044 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003045 if (!ret)
3046 update_processed_blocks(rc, node);
3047 } else {
3048 ret = do_relocation(trans, rc, node, key, path, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003049 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003050out:
Wang Shilong0647bf52013-11-20 09:01:52 +08003051 if (ret || node->level == 0 || node->cowonly)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003052 remove_backref_node(&rc->backref_cache, node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003053 return ret;
3054}
3055
3056/*
3057 * relocate a list of blocks
3058 */
3059static noinline_for_stack
3060int relocate_tree_blocks(struct btrfs_trans_handle *trans,
3061 struct reloc_control *rc, struct rb_root *blocks)
3062{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003063 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003064 struct backref_node *node;
3065 struct btrfs_path *path;
3066 struct tree_block *block;
Qu Wenruo98ff7b942018-09-21 15:20:29 +08003067 struct tree_block *next;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003068 int ret;
3069 int err = 0;
3070
3071 path = btrfs_alloc_path();
Liu Boe1a12672013-03-04 16:25:38 +00003072 if (!path) {
3073 err = -ENOMEM;
David Sterba34c2b292013-04-26 12:56:04 +00003074 goto out_free_blocks;
Liu Boe1a12672013-03-04 16:25:38 +00003075 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003076
Qu Wenruo98ff7b942018-09-21 15:20:29 +08003077 /* Kick in readahead for tree blocks with missing keys */
3078 rbtree_postorder_for_each_entry_safe(block, next, blocks, rb_node) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003079 if (!block->key_ready)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003080 readahead_tree_block(fs_info, block->bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003081 }
3082
Qu Wenruo98ff7b942018-09-21 15:20:29 +08003083 /* Get first keys */
3084 rbtree_postorder_for_each_entry_safe(block, next, blocks, rb_node) {
David Sterba34c2b292013-04-26 12:56:04 +00003085 if (!block->key_ready) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003086 err = get_tree_block_key(fs_info, block);
David Sterba34c2b292013-04-26 12:56:04 +00003087 if (err)
3088 goto out_free_path;
3089 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003090 }
3091
Qu Wenruo98ff7b942018-09-21 15:20:29 +08003092 /* Do tree relocation */
3093 rbtree_postorder_for_each_entry_safe(block, next, blocks, rb_node) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003094 node = build_backref_tree(rc, &block->key,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003095 block->level, block->bytenr);
3096 if (IS_ERR(node)) {
3097 err = PTR_ERR(node);
3098 goto out;
3099 }
3100
3101 ret = relocate_tree_block(trans, rc, node, &block->key,
3102 path);
3103 if (ret < 0) {
Qu Wenruo98ff7b942018-09-21 15:20:29 +08003104 if (ret != -EAGAIN || &block->rb_node == rb_first(blocks))
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003105 err = ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003106 goto out;
3107 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003108 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003109out:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003110 err = finish_pending_nodes(trans, rc, path, err);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003111
David Sterba34c2b292013-04-26 12:56:04 +00003112out_free_path:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003113 btrfs_free_path(path);
David Sterba34c2b292013-04-26 12:56:04 +00003114out_free_blocks:
Liu Boe1a12672013-03-04 16:25:38 +00003115 free_block_list(blocks);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003116 return err;
3117}
3118
3119static noinline_for_stack
Yan, Zhengefa56462010-05-16 10:49:59 -04003120int prealloc_file_extent_cluster(struct inode *inode,
3121 struct file_extent_cluster *cluster)
3122{
3123 u64 alloc_hint = 0;
3124 u64 start;
3125 u64 end;
3126 u64 offset = BTRFS_I(inode)->index_cnt;
3127 u64 num_bytes;
3128 int nr = 0;
3129 int ret = 0;
Wang Xiaoguangdcb40c12016-07-25 15:51:38 +08003130 u64 prealloc_start = cluster->start - offset;
3131 u64 prealloc_end = cluster->end - offset;
Wang Xiaoguang18513092016-07-25 15:51:40 +08003132 u64 cur_offset;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003133 struct extent_changeset *data_reserved = NULL;
Yan, Zhengefa56462010-05-16 10:49:59 -04003134
3135 BUG_ON(cluster->start != cluster->boundary[0]);
Al Viro59551022016-01-22 15:40:57 -05003136 inode_lock(inode);
Yan, Zhengefa56462010-05-16 10:49:59 -04003137
Qu Wenruo364ecf32017-02-27 15:10:38 +08003138 ret = btrfs_check_data_free_space(inode, &data_reserved, prealloc_start,
Wang Xiaoguangdcb40c12016-07-25 15:51:38 +08003139 prealloc_end + 1 - prealloc_start);
Yan, Zhengefa56462010-05-16 10:49:59 -04003140 if (ret)
3141 goto out;
3142
Wang Xiaoguang18513092016-07-25 15:51:40 +08003143 cur_offset = prealloc_start;
Yan, Zhengefa56462010-05-16 10:49:59 -04003144 while (nr < cluster->nr) {
3145 start = cluster->boundary[nr] - offset;
3146 if (nr + 1 < cluster->nr)
3147 end = cluster->boundary[nr + 1] - 1 - offset;
3148 else
3149 end = cluster->end - offset;
3150
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003151 lock_extent(&BTRFS_I(inode)->io_tree, start, end);
Yan, Zhengefa56462010-05-16 10:49:59 -04003152 num_bytes = end + 1 - start;
Wang Xiaoguang18513092016-07-25 15:51:40 +08003153 if (cur_offset < start)
Qu Wenruobc42bda2017-02-27 15:10:39 +08003154 btrfs_free_reserved_data_space(inode, data_reserved,
3155 cur_offset, start - cur_offset);
Yan, Zhengefa56462010-05-16 10:49:59 -04003156 ret = btrfs_prealloc_file_range(inode, 0, start,
3157 num_bytes, num_bytes,
3158 end + 1, &alloc_hint);
Wang Xiaoguang18513092016-07-25 15:51:40 +08003159 cur_offset = end + 1;
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003160 unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
Yan, Zhengefa56462010-05-16 10:49:59 -04003161 if (ret)
3162 break;
3163 nr++;
3164 }
Wang Xiaoguang18513092016-07-25 15:51:40 +08003165 if (cur_offset < prealloc_end)
Qu Wenruobc42bda2017-02-27 15:10:39 +08003166 btrfs_free_reserved_data_space(inode, data_reserved,
3167 cur_offset, prealloc_end + 1 - cur_offset);
Yan, Zhengefa56462010-05-16 10:49:59 -04003168out:
Al Viro59551022016-01-22 15:40:57 -05003169 inode_unlock(inode);
Qu Wenruo364ecf32017-02-27 15:10:38 +08003170 extent_changeset_free(data_reserved);
Yan, Zhengefa56462010-05-16 10:49:59 -04003171 return ret;
3172}
3173
3174static noinline_for_stack
Yan, Zheng0257bb82009-09-24 09:17:31 -04003175int setup_extent_mapping(struct inode *inode, u64 start, u64 end,
3176 u64 block_start)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003177{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003178 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003179 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
3180 struct extent_map *em;
Yan, Zheng0257bb82009-09-24 09:17:31 -04003181 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003182
David Sterba172ddd62011-04-21 00:48:27 +02003183 em = alloc_extent_map();
Yan, Zheng0257bb82009-09-24 09:17:31 -04003184 if (!em)
3185 return -ENOMEM;
3186
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003187 em->start = start;
Yan, Zheng0257bb82009-09-24 09:17:31 -04003188 em->len = end + 1 - start;
3189 em->block_len = em->len;
3190 em->block_start = block_start;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003191 em->bdev = fs_info->fs_devices->latest_bdev;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003192 set_bit(EXTENT_FLAG_PINNED, &em->flags);
3193
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003194 lock_extent(&BTRFS_I(inode)->io_tree, start, end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003195 while (1) {
Chris Mason890871b2009-09-02 16:24:52 -04003196 write_lock(&em_tree->lock);
Josef Bacik09a2a8f92013-04-05 16:51:15 -04003197 ret = add_extent_mapping(em_tree, em, 0);
Chris Mason890871b2009-09-02 16:24:52 -04003198 write_unlock(&em_tree->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003199 if (ret != -EEXIST) {
3200 free_extent_map(em);
3201 break;
3202 }
Nikolay Borisovdcdbc052017-02-20 13:50:45 +02003203 btrfs_drop_extent_cache(BTRFS_I(inode), start, end, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003204 }
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003205 unlock_extent(&BTRFS_I(inode)->io_tree, start, end);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003206 return ret;
3207}
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003208
Yan, Zheng0257bb82009-09-24 09:17:31 -04003209static int relocate_file_extent_cluster(struct inode *inode,
3210 struct file_extent_cluster *cluster)
3211{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003212 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003213 u64 page_start;
3214 u64 page_end;
3215 u64 offset = BTRFS_I(inode)->index_cnt;
3216 unsigned long index;
3217 unsigned long last_index;
Yan, Zheng0257bb82009-09-24 09:17:31 -04003218 struct page *page;
3219 struct file_ra_state *ra;
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003220 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003221 int nr = 0;
3222 int ret = 0;
3223
3224 if (!cluster->nr)
3225 return 0;
3226
3227 ra = kzalloc(sizeof(*ra), GFP_NOFS);
3228 if (!ra)
3229 return -ENOMEM;
3230
Yan, Zhengefa56462010-05-16 10:49:59 -04003231 ret = prealloc_file_extent_cluster(inode, cluster);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003232 if (ret)
Yan, Zhengefa56462010-05-16 10:49:59 -04003233 goto out;
Yan, Zheng0257bb82009-09-24 09:17:31 -04003234
3235 file_ra_state_init(ra, inode->i_mapping);
3236
Yan, Zhengefa56462010-05-16 10:49:59 -04003237 ret = setup_extent_mapping(inode, cluster->start - offset,
3238 cluster->end - offset, cluster->start);
3239 if (ret)
3240 goto out;
3241
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003242 index = (cluster->start - offset) >> PAGE_SHIFT;
3243 last_index = (cluster->end - offset) >> PAGE_SHIFT;
Yan, Zheng0257bb82009-09-24 09:17:31 -04003244 while (index <= last_index) {
Nikolay Borisov9f3db422017-02-20 13:50:41 +02003245 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode),
3246 PAGE_SIZE);
Yan, Zhengefa56462010-05-16 10:49:59 -04003247 if (ret)
3248 goto out;
3249
Yan, Zheng0257bb82009-09-24 09:17:31 -04003250 page = find_lock_page(inode->i_mapping, index);
3251 if (!page) {
3252 page_cache_sync_readahead(inode->i_mapping,
3253 ra, NULL, index,
3254 last_index + 1 - index);
Josef Bacika94733d2011-07-11 10:47:06 -04003255 page = find_or_create_page(inode->i_mapping, index,
Josef Bacik3b16a4e2011-09-21 15:05:58 -04003256 mask);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003257 if (!page) {
Nikolay Borisov691fa052017-02-20 13:50:42 +02003258 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08003259 PAGE_SIZE, true);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003260 ret = -ENOMEM;
Yan, Zhengefa56462010-05-16 10:49:59 -04003261 goto out;
Yan, Zheng0257bb82009-09-24 09:17:31 -04003262 }
3263 }
3264
3265 if (PageReadahead(page)) {
3266 page_cache_async_readahead(inode->i_mapping,
3267 ra, NULL, page, index,
3268 last_index + 1 - index);
3269 }
3270
3271 if (!PageUptodate(page)) {
3272 btrfs_readpage(NULL, page);
3273 lock_page(page);
3274 if (!PageUptodate(page)) {
3275 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003276 put_page(page);
Nikolay Borisov691fa052017-02-20 13:50:42 +02003277 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08003278 PAGE_SIZE, true);
Josef Bacik8b62f872017-10-19 14:15:55 -04003279 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08003280 PAGE_SIZE, true);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003281 ret = -EIO;
Yan, Zhengefa56462010-05-16 10:49:59 -04003282 goto out;
Yan, Zheng0257bb82009-09-24 09:17:31 -04003283 }
3284 }
3285
Miao Xie4eee4fa2012-12-21 09:17:45 +00003286 page_start = page_offset(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003287 page_end = page_start + PAGE_SIZE - 1;
Yan, Zheng0257bb82009-09-24 09:17:31 -04003288
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003289 lock_extent(&BTRFS_I(inode)->io_tree, page_start, page_end);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003290
3291 set_page_extent_mapped(page);
3292
3293 if (nr < cluster->nr &&
3294 page_start + offset == cluster->boundary[nr]) {
3295 set_extent_bits(&BTRFS_I(inode)->io_tree,
3296 page_start, page_end,
David Sterbaceeb0ae2016-04-26 23:54:39 +02003297 EXTENT_BOUNDARY);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003298 nr++;
3299 }
Yan, Zheng0257bb82009-09-24 09:17:31 -04003300
Nikolay Borisov765f3ce2018-01-31 17:14:02 +02003301 ret = btrfs_set_extent_delalloc(inode, page_start, page_end, 0,
3302 NULL, 0);
3303 if (ret) {
3304 unlock_page(page);
3305 put_page(page);
3306 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08003307 PAGE_SIZE, true);
Nikolay Borisov765f3ce2018-01-31 17:14:02 +02003308 btrfs_delalloc_release_extents(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08003309 PAGE_SIZE, true);
Nikolay Borisov765f3ce2018-01-31 17:14:02 +02003310
3311 clear_extent_bits(&BTRFS_I(inode)->io_tree,
3312 page_start, page_end,
3313 EXTENT_LOCKED | EXTENT_BOUNDARY);
3314 goto out;
3315
3316 }
Yan, Zheng0257bb82009-09-24 09:17:31 -04003317 set_page_dirty(page);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003318
3319 unlock_extent(&BTRFS_I(inode)->io_tree,
Jeff Mahoneyd0082372012-03-01 14:57:19 +01003320 page_start, page_end);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003321 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003322 put_page(page);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003323
3324 index++;
Qu Wenruo43b18592017-12-12 15:34:32 +08003325 btrfs_delalloc_release_extents(BTRFS_I(inode), PAGE_SIZE,
3326 false);
Yan, Zhengefa56462010-05-16 10:49:59 -04003327 balance_dirty_pages_ratelimited(inode->i_mapping);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003328 btrfs_throttle(fs_info);
Yan, Zheng0257bb82009-09-24 09:17:31 -04003329 }
3330 WARN_ON(nr != cluster->nr);
Yan, Zhengefa56462010-05-16 10:49:59 -04003331out:
Yan, Zheng0257bb82009-09-24 09:17:31 -04003332 kfree(ra);
3333 return ret;
3334}
3335
3336static noinline_for_stack
3337int relocate_data_extent(struct inode *inode, struct btrfs_key *extent_key,
3338 struct file_extent_cluster *cluster)
3339{
3340 int ret;
3341
3342 if (cluster->nr > 0 && extent_key->objectid != cluster->end + 1) {
3343 ret = relocate_file_extent_cluster(inode, cluster);
3344 if (ret)
3345 return ret;
3346 cluster->nr = 0;
3347 }
3348
3349 if (!cluster->nr)
3350 cluster->start = extent_key->objectid;
3351 else
3352 BUG_ON(cluster->nr >= MAX_EXTENTS);
3353 cluster->end = extent_key->objectid + extent_key->offset - 1;
3354 cluster->boundary[cluster->nr] = extent_key->objectid;
3355 cluster->nr++;
3356
3357 if (cluster->nr >= MAX_EXTENTS) {
3358 ret = relocate_file_extent_cluster(inode, cluster);
3359 if (ret)
3360 return ret;
3361 cluster->nr = 0;
3362 }
3363 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003364}
3365
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003366/*
3367 * helper to add a tree block to the list.
3368 * the major work is getting the generation and level of the block
3369 */
3370static int add_tree_block(struct reloc_control *rc,
3371 struct btrfs_key *extent_key,
3372 struct btrfs_path *path,
3373 struct rb_root *blocks)
3374{
3375 struct extent_buffer *eb;
3376 struct btrfs_extent_item *ei;
3377 struct btrfs_tree_block_info *bi;
3378 struct tree_block *block;
3379 struct rb_node *rb_node;
3380 u32 item_size;
3381 int level = -1;
Wang Shilong7fdf4b62013-10-25 18:52:08 +08003382 u64 generation;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003383
3384 eb = path->nodes[0];
3385 item_size = btrfs_item_size_nr(eb, path->slots[0]);
3386
Josef Bacik3173a182013-03-07 14:22:04 -05003387 if (extent_key->type == BTRFS_METADATA_ITEM_KEY ||
3388 item_size >= sizeof(*ei) + sizeof(*bi)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003389 ei = btrfs_item_ptr(eb, path->slots[0],
3390 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05003391 if (extent_key->type == BTRFS_EXTENT_ITEM_KEY) {
3392 bi = (struct btrfs_tree_block_info *)(ei + 1);
3393 level = btrfs_tree_block_level(eb, bi);
3394 } else {
3395 level = (int)extent_key->offset;
3396 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003397 generation = btrfs_extent_generation(eb, ei);
David Sterba6d8ff4e2018-06-26 16:20:59 +02003398 } else if (unlikely(item_size == sizeof(struct btrfs_extent_item_v0))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03003399 btrfs_print_v0_err(eb->fs_info);
3400 btrfs_handle_fs_error(eb->fs_info, -EINVAL, NULL);
3401 return -EINVAL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003402 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003403 BUG();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003404 }
3405
David Sterbab3b4aa72011-04-21 01:20:15 +02003406 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003407
3408 BUG_ON(level == -1);
3409
3410 block = kmalloc(sizeof(*block), GFP_NOFS);
3411 if (!block)
3412 return -ENOMEM;
3413
3414 block->bytenr = extent_key->objectid;
Jeff Mahoneyda170662016-06-15 09:22:56 -04003415 block->key.objectid = rc->extent_root->fs_info->nodesize;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003416 block->key.offset = generation;
3417 block->level = level;
3418 block->key_ready = 0;
3419
3420 rb_node = tree_insert(blocks, block->bytenr, &block->rb_node);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -04003421 if (rb_node)
3422 backref_tree_panic(rb_node, -EEXIST, block->bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003423
3424 return 0;
3425}
3426
3427/*
3428 * helper to add tree blocks for backref of type BTRFS_SHARED_DATA_REF_KEY
3429 */
3430static int __add_tree_block(struct reloc_control *rc,
3431 u64 bytenr, u32 blocksize,
3432 struct rb_root *blocks)
3433{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003434 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003435 struct btrfs_path *path;
3436 struct btrfs_key key;
3437 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003438 bool skinny = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003439
David Sterba7476dfd2014-06-15 03:34:59 +02003440 if (tree_block_processed(bytenr, rc))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003441 return 0;
3442
3443 if (tree_search(blocks, bytenr))
3444 return 0;
3445
3446 path = btrfs_alloc_path();
3447 if (!path)
3448 return -ENOMEM;
Josef Bacikaee68ee2013-06-13 13:50:23 -04003449again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003450 key.objectid = bytenr;
Josef Bacikaee68ee2013-06-13 13:50:23 -04003451 if (skinny) {
3452 key.type = BTRFS_METADATA_ITEM_KEY;
3453 key.offset = (u64)-1;
3454 } else {
3455 key.type = BTRFS_EXTENT_ITEM_KEY;
3456 key.offset = blocksize;
3457 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003458
3459 path->search_commit_root = 1;
3460 path->skip_locking = 1;
3461 ret = btrfs_search_slot(NULL, rc->extent_root, &key, path, 0, 0);
3462 if (ret < 0)
3463 goto out;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003464
Josef Bacikaee68ee2013-06-13 13:50:23 -04003465 if (ret > 0 && skinny) {
3466 if (path->slots[0]) {
3467 path->slots[0]--;
3468 btrfs_item_key_to_cpu(path->nodes[0], &key,
3469 path->slots[0]);
3470 if (key.objectid == bytenr &&
3471 (key.type == BTRFS_METADATA_ITEM_KEY ||
3472 (key.type == BTRFS_EXTENT_ITEM_KEY &&
3473 key.offset == blocksize)))
3474 ret = 0;
3475 }
3476
3477 if (ret) {
3478 skinny = false;
3479 btrfs_release_path(path);
3480 goto again;
3481 }
Josef Bacik3173a182013-03-07 14:22:04 -05003482 }
Liu Bocdccee92017-08-18 15:15:23 -06003483 if (ret) {
3484 ASSERT(ret == 1);
3485 btrfs_print_leaf(path->nodes[0]);
3486 btrfs_err(fs_info,
3487 "tree block extent item (%llu) is not found in extent tree",
3488 bytenr);
3489 WARN_ON(1);
3490 ret = -EINVAL;
3491 goto out;
3492 }
Josef Bacik3173a182013-03-07 14:22:04 -05003493
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003494 ret = add_tree_block(rc, &key, path, blocks);
3495out:
3496 btrfs_free_path(path);
3497 return ret;
3498}
3499
3500/*
3501 * helper to check if the block use full backrefs for pointers in it
3502 */
3503static int block_use_full_backref(struct reloc_control *rc,
3504 struct extent_buffer *eb)
3505{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003506 u64 flags;
3507 int ret;
3508
3509 if (btrfs_header_flag(eb, BTRFS_HEADER_FLAG_RELOC) ||
3510 btrfs_header_backref_rev(eb) < BTRFS_MIXED_BACKREF_REV)
3511 return 1;
3512
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003513 ret = btrfs_lookup_extent_info(NULL, rc->extent_root->fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05003514 eb->start, btrfs_header_level(eb), 1,
3515 NULL, &flags);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003516 BUG_ON(ret);
3517
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003518 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)
3519 ret = 1;
3520 else
3521 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003522 return ret;
3523}
3524
Josef Bacik0af3d002010-06-21 14:48:16 -04003525static int delete_block_group_cache(struct btrfs_fs_info *fs_info,
Chris Mason1bbc6212015-04-06 12:46:08 -07003526 struct btrfs_block_group_cache *block_group,
3527 struct inode *inode,
3528 u64 ino)
Josef Bacik0af3d002010-06-21 14:48:16 -04003529{
3530 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -04003531 struct btrfs_root *root = fs_info->tree_root;
3532 struct btrfs_trans_handle *trans;
Josef Bacik0af3d002010-06-21 14:48:16 -04003533 int ret = 0;
3534
3535 if (inode)
3536 goto truncate;
3537
3538 key.objectid = ino;
3539 key.type = BTRFS_INODE_ITEM_KEY;
3540 key.offset = 0;
3541
3542 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
Al Viro2e19f1f2018-07-29 23:04:45 +01003543 if (IS_ERR(inode))
Josef Bacik0af3d002010-06-21 14:48:16 -04003544 return -ENOENT;
Josef Bacik0af3d002010-06-21 14:48:16 -04003545
3546truncate:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003547 ret = btrfs_check_trunc_cache_free_space(fs_info,
Miao Xie7b61cd92013-05-13 13:55:09 +00003548 &fs_info->global_block_rsv);
3549 if (ret)
3550 goto out;
3551
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003552 trans = btrfs_join_transaction(root);
Josef Bacik0af3d002010-06-21 14:48:16 -04003553 if (IS_ERR(trans)) {
Tsutomu Itoh3612b492011-01-25 02:51:38 +00003554 ret = PTR_ERR(trans);
Josef Bacik0af3d002010-06-21 14:48:16 -04003555 goto out;
3556 }
3557
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003558 ret = btrfs_truncate_free_space_cache(trans, block_group, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003559
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003560 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003561 btrfs_btree_balance_dirty(fs_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04003562out:
3563 iput(inode);
3564 return ret;
3565}
3566
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003567/*
3568 * helper to add tree blocks for backref of type BTRFS_EXTENT_DATA_REF_KEY
3569 * this function scans fs tree to find blocks reference the data extent
3570 */
3571static int find_data_references(struct reloc_control *rc,
3572 struct btrfs_key *extent_key,
3573 struct extent_buffer *leaf,
3574 struct btrfs_extent_data_ref *ref,
3575 struct rb_root *blocks)
3576{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003577 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003578 struct btrfs_path *path;
3579 struct tree_block *block;
3580 struct btrfs_root *root;
3581 struct btrfs_file_extent_item *fi;
3582 struct rb_node *rb_node;
3583 struct btrfs_key key;
3584 u64 ref_root;
3585 u64 ref_objectid;
3586 u64 ref_offset;
3587 u32 ref_count;
3588 u32 nritems;
3589 int err = 0;
3590 int added = 0;
3591 int counted;
3592 int ret;
3593
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003594 ref_root = btrfs_extent_data_ref_root(leaf, ref);
3595 ref_objectid = btrfs_extent_data_ref_objectid(leaf, ref);
3596 ref_offset = btrfs_extent_data_ref_offset(leaf, ref);
3597 ref_count = btrfs_extent_data_ref_count(leaf, ref);
3598
Josef Bacik0af3d002010-06-21 14:48:16 -04003599 /*
3600 * This is an extent belonging to the free space cache, lets just delete
3601 * it and redo the search.
3602 */
3603 if (ref_root == BTRFS_ROOT_TREE_OBJECTID) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003604 ret = delete_block_group_cache(fs_info, rc->block_group,
Josef Bacik0af3d002010-06-21 14:48:16 -04003605 NULL, ref_objectid);
3606 if (ret != -ENOENT)
3607 return ret;
3608 ret = 0;
3609 }
3610
3611 path = btrfs_alloc_path();
3612 if (!path)
3613 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01003614 path->reada = READA_FORWARD;
Josef Bacik0af3d002010-06-21 14:48:16 -04003615
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003616 root = read_fs_root(fs_info, ref_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003617 if (IS_ERR(root)) {
3618 err = PTR_ERR(root);
3619 goto out;
3620 }
3621
3622 key.objectid = ref_objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003623 key.type = BTRFS_EXTENT_DATA_KEY;
Yan, Zheng84850e82011-08-29 09:25:53 +08003624 if (ref_offset > ((u64)-1 << 32))
3625 key.offset = 0;
3626 else
3627 key.offset = ref_offset;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003628
3629 path->search_commit_root = 1;
3630 path->skip_locking = 1;
3631 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3632 if (ret < 0) {
3633 err = ret;
3634 goto out;
3635 }
3636
3637 leaf = path->nodes[0];
3638 nritems = btrfs_header_nritems(leaf);
3639 /*
3640 * the references in tree blocks that use full backrefs
3641 * are not counted in
3642 */
3643 if (block_use_full_backref(rc, leaf))
3644 counted = 0;
3645 else
3646 counted = 1;
3647 rb_node = tree_search(blocks, leaf->start);
3648 if (rb_node) {
3649 if (counted)
3650 added = 1;
3651 else
3652 path->slots[0] = nritems;
3653 }
3654
3655 while (ref_count > 0) {
3656 while (path->slots[0] >= nritems) {
3657 ret = btrfs_next_leaf(root, path);
3658 if (ret < 0) {
3659 err = ret;
3660 goto out;
3661 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303662 if (WARN_ON(ret > 0))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003663 goto out;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003664
3665 leaf = path->nodes[0];
3666 nritems = btrfs_header_nritems(leaf);
3667 added = 0;
3668
3669 if (block_use_full_backref(rc, leaf))
3670 counted = 0;
3671 else
3672 counted = 1;
3673 rb_node = tree_search(blocks, leaf->start);
3674 if (rb_node) {
3675 if (counted)
3676 added = 1;
3677 else
3678 path->slots[0] = nritems;
3679 }
3680 }
3681
3682 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05303683 if (WARN_ON(key.objectid != ref_objectid ||
3684 key.type != BTRFS_EXTENT_DATA_KEY))
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003685 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003686
3687 fi = btrfs_item_ptr(leaf, path->slots[0],
3688 struct btrfs_file_extent_item);
3689
3690 if (btrfs_file_extent_type(leaf, fi) ==
3691 BTRFS_FILE_EXTENT_INLINE)
3692 goto next;
3693
3694 if (btrfs_file_extent_disk_bytenr(leaf, fi) !=
3695 extent_key->objectid)
3696 goto next;
3697
3698 key.offset -= btrfs_file_extent_offset(leaf, fi);
3699 if (key.offset != ref_offset)
3700 goto next;
3701
3702 if (counted)
3703 ref_count--;
3704 if (added)
3705 goto next;
3706
David Sterba7476dfd2014-06-15 03:34:59 +02003707 if (!tree_block_processed(leaf->start, rc)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003708 block = kmalloc(sizeof(*block), GFP_NOFS);
3709 if (!block) {
3710 err = -ENOMEM;
3711 break;
3712 }
3713 block->bytenr = leaf->start;
3714 btrfs_item_key_to_cpu(leaf, &block->key, 0);
3715 block->level = 0;
3716 block->key_ready = 1;
3717 rb_node = tree_insert(blocks, block->bytenr,
3718 &block->rb_node);
Jeff Mahoney43c04fb2011-10-03 23:22:33 -04003719 if (rb_node)
3720 backref_tree_panic(rb_node, -EEXIST,
3721 block->bytenr);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003722 }
3723 if (counted)
3724 added = 1;
3725 else
3726 path->slots[0] = nritems;
3727next:
3728 path->slots[0]++;
3729
3730 }
3731out:
3732 btrfs_free_path(path);
3733 return err;
3734}
3735
3736/*
Liu Bo2c016dc2012-12-26 15:32:17 +08003737 * helper to find all tree blocks that reference a given data extent
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003738 */
3739static noinline_for_stack
3740int add_data_references(struct reloc_control *rc,
3741 struct btrfs_key *extent_key,
3742 struct btrfs_path *path,
3743 struct rb_root *blocks)
3744{
3745 struct btrfs_key key;
3746 struct extent_buffer *eb;
3747 struct btrfs_extent_data_ref *dref;
3748 struct btrfs_extent_inline_ref *iref;
3749 unsigned long ptr;
3750 unsigned long end;
Jeff Mahoneyda170662016-06-15 09:22:56 -04003751 u32 blocksize = rc->extent_root->fs_info->nodesize;
Filipe David Borba Manana647f63b2013-07-13 12:25:15 +01003752 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003753 int err = 0;
3754
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003755 eb = path->nodes[0];
3756 ptr = btrfs_item_ptr_offset(eb, path->slots[0]);
3757 end = ptr + btrfs_item_size_nr(eb, path->slots[0]);
Nikolay Borisova79865c2018-06-21 09:45:00 +03003758 ptr += sizeof(struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003759
3760 while (ptr < end) {
3761 iref = (struct btrfs_extent_inline_ref *)ptr;
Liu Bo3de28d52017-08-18 15:15:19 -06003762 key.type = btrfs_get_extent_inline_ref_type(eb, iref,
3763 BTRFS_REF_TYPE_DATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003764 if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
3765 key.offset = btrfs_extent_inline_ref_offset(eb, iref);
3766 ret = __add_tree_block(rc, key.offset, blocksize,
3767 blocks);
3768 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
3769 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
3770 ret = find_data_references(rc, extent_key,
3771 eb, dref, blocks);
3772 } else {
Su Yueaf431dc2018-06-22 16:18:01 +08003773 ret = -EUCLEAN;
Liu Bob14c55a2017-08-18 15:15:22 -06003774 btrfs_err(rc->extent_root->fs_info,
3775 "extent %llu slot %d has an invalid inline ref type",
3776 eb->start, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003777 }
Filipe David Borba Manana647f63b2013-07-13 12:25:15 +01003778 if (ret) {
3779 err = ret;
3780 goto out;
3781 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003782 ptr += btrfs_extent_inline_ref_size(key.type);
3783 }
3784 WARN_ON(ptr > end);
3785
3786 while (1) {
3787 cond_resched();
3788 eb = path->nodes[0];
3789 if (path->slots[0] >= btrfs_header_nritems(eb)) {
3790 ret = btrfs_next_leaf(rc->extent_root, path);
3791 if (ret < 0) {
3792 err = ret;
3793 break;
3794 }
3795 if (ret > 0)
3796 break;
3797 eb = path->nodes[0];
3798 }
3799
3800 btrfs_item_key_to_cpu(eb, &key, path->slots[0]);
3801 if (key.objectid != extent_key->objectid)
3802 break;
3803
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003804 if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003805 ret = __add_tree_block(rc, key.offset, blocksize,
3806 blocks);
3807 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
3808 dref = btrfs_item_ptr(eb, path->slots[0],
3809 struct btrfs_extent_data_ref);
3810 ret = find_data_references(rc, extent_key,
3811 eb, dref, blocks);
David Sterba6d8ff4e2018-06-26 16:20:59 +02003812 } else if (unlikely(key.type == BTRFS_EXTENT_REF_V0_KEY)) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03003813 btrfs_print_v0_err(eb->fs_info);
3814 btrfs_handle_fs_error(eb->fs_info, -EINVAL, NULL);
3815 ret = -EINVAL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003816 } else {
3817 ret = 0;
3818 }
3819 if (ret) {
3820 err = ret;
3821 break;
3822 }
3823 path->slots[0]++;
3824 }
Filipe David Borba Manana647f63b2013-07-13 12:25:15 +01003825out:
David Sterbab3b4aa72011-04-21 01:20:15 +02003826 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003827 if (err)
3828 free_block_list(blocks);
3829 return err;
3830}
3831
3832/*
Liu Bo2c016dc2012-12-26 15:32:17 +08003833 * helper to find next unprocessed extent
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003834 */
3835static noinline_for_stack
Zhaolei147d2562015-08-06 20:58:11 +08003836int find_next_extent(struct reloc_control *rc, struct btrfs_path *path,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003837 struct btrfs_key *extent_key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003838{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003839 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003840 struct btrfs_key key;
3841 struct extent_buffer *leaf;
3842 u64 start, end, last;
3843 int ret;
3844
3845 last = rc->block_group->key.objectid + rc->block_group->key.offset;
3846 while (1) {
3847 cond_resched();
3848 if (rc->search_start >= last) {
3849 ret = 1;
3850 break;
3851 }
3852
3853 key.objectid = rc->search_start;
3854 key.type = BTRFS_EXTENT_ITEM_KEY;
3855 key.offset = 0;
3856
3857 path->search_commit_root = 1;
3858 path->skip_locking = 1;
3859 ret = btrfs_search_slot(NULL, rc->extent_root, &key, path,
3860 0, 0);
3861 if (ret < 0)
3862 break;
3863next:
3864 leaf = path->nodes[0];
3865 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
3866 ret = btrfs_next_leaf(rc->extent_root, path);
3867 if (ret != 0)
3868 break;
3869 leaf = path->nodes[0];
3870 }
3871
3872 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
3873 if (key.objectid >= last) {
3874 ret = 1;
3875 break;
3876 }
3877
Josef Bacik3173a182013-03-07 14:22:04 -05003878 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
3879 key.type != BTRFS_METADATA_ITEM_KEY) {
3880 path->slots[0]++;
3881 goto next;
3882 }
3883
3884 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003885 key.objectid + key.offset <= rc->search_start) {
3886 path->slots[0]++;
3887 goto next;
3888 }
3889
Josef Bacik3173a182013-03-07 14:22:04 -05003890 if (key.type == BTRFS_METADATA_ITEM_KEY &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003891 key.objectid + fs_info->nodesize <=
Josef Bacik3173a182013-03-07 14:22:04 -05003892 rc->search_start) {
3893 path->slots[0]++;
3894 goto next;
3895 }
3896
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003897 ret = find_first_extent_bit(&rc->processed_blocks,
3898 key.objectid, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04003899 EXTENT_DIRTY, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003900
3901 if (ret == 0 && start <= key.objectid) {
David Sterbab3b4aa72011-04-21 01:20:15 +02003902 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003903 rc->search_start = end + 1;
3904 } else {
Josef Bacik3173a182013-03-07 14:22:04 -05003905 if (key.type == BTRFS_EXTENT_ITEM_KEY)
3906 rc->search_start = key.objectid + key.offset;
3907 else
3908 rc->search_start = key.objectid +
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003909 fs_info->nodesize;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003910 memcpy(extent_key, &key, sizeof(key));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003911 return 0;
3912 }
3913 }
David Sterbab3b4aa72011-04-21 01:20:15 +02003914 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003915 return ret;
3916}
3917
3918static void set_reloc_control(struct reloc_control *rc)
3919{
3920 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
Chris Mason75857172011-06-13 20:00:16 -04003921
3922 mutex_lock(&fs_info->reloc_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003923 fs_info->reloc_ctl = rc;
Chris Mason75857172011-06-13 20:00:16 -04003924 mutex_unlock(&fs_info->reloc_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003925}
3926
3927static void unset_reloc_control(struct reloc_control *rc)
3928{
3929 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
Chris Mason75857172011-06-13 20:00:16 -04003930
3931 mutex_lock(&fs_info->reloc_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003932 fs_info->reloc_ctl = NULL;
Chris Mason75857172011-06-13 20:00:16 -04003933 mutex_unlock(&fs_info->reloc_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003934}
3935
3936static int check_extent_flags(u64 flags)
3937{
3938 if ((flags & BTRFS_EXTENT_FLAG_DATA) &&
3939 (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
3940 return 1;
3941 if (!(flags & BTRFS_EXTENT_FLAG_DATA) &&
3942 !(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
3943 return 1;
3944 if ((flags & BTRFS_EXTENT_FLAG_DATA) &&
3945 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
3946 return 1;
3947 return 0;
3948}
3949
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003950static noinline_for_stack
3951int prepare_to_relocate(struct reloc_control *rc)
3952{
3953 struct btrfs_trans_handle *trans;
Josef Bacikac2faba2016-05-27 13:08:26 -04003954 int ret;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003955
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003956 rc->block_rsv = btrfs_alloc_block_rsv(rc->extent_root->fs_info,
Miao Xie66d8f3d2012-09-06 04:02:28 -06003957 BTRFS_BLOCK_RSV_TEMP);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003958 if (!rc->block_rsv)
3959 return -ENOMEM;
3960
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003961 memset(&rc->cluster, 0, sizeof(rc->cluster));
3962 rc->search_start = rc->block_group->key.objectid;
3963 rc->extents_found = 0;
3964 rc->nodes_relocated = 0;
3965 rc->merging_rsv_size = 0;
Wang Shilong0647bf52013-11-20 09:01:52 +08003966 rc->reserved_bytes = 0;
Jeff Mahoneyda170662016-06-15 09:22:56 -04003967 rc->block_rsv->size = rc->extent_root->fs_info->nodesize *
Wang Shilong0647bf52013-11-20 09:01:52 +08003968 RELOCATION_RESERVED_NODES;
Josef Bacikac2faba2016-05-27 13:08:26 -04003969 ret = btrfs_block_rsv_refill(rc->extent_root,
3970 rc->block_rsv, rc->block_rsv->size,
3971 BTRFS_RESERVE_FLUSH_ALL);
3972 if (ret)
3973 return ret;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003974
3975 rc->create_reloc_tree = 1;
3976 set_reloc_control(rc);
3977
Josef Bacik7a7eaa42011-04-13 12:54:33 -04003978 trans = btrfs_join_transaction(rc->extent_root);
Liu Bo28818942013-03-04 16:25:39 +00003979 if (IS_ERR(trans)) {
3980 unset_reloc_control(rc);
3981 /*
3982 * extent tree is not a ref_cow tree and has no reloc_root to
3983 * cleanup. And callers are responsible to free the above
3984 * block rsv.
3985 */
3986 return PTR_ERR(trans);
3987 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003988 btrfs_commit_transaction(trans);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04003989 return 0;
3990}
Yan, Zheng76dda932009-09-21 16:00:26 -04003991
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003992static noinline_for_stack int relocate_block_group(struct reloc_control *rc)
3993{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003994 struct btrfs_fs_info *fs_info = rc->extent_root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003995 struct rb_root blocks = RB_ROOT;
3996 struct btrfs_key key;
3997 struct btrfs_trans_handle *trans = NULL;
3998 struct btrfs_path *path;
3999 struct btrfs_extent_item *ei;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004000 u64 flags;
4001 u32 item_size;
4002 int ret;
4003 int err = 0;
Chris Masonc87f08c2011-02-16 13:57:04 -05004004 int progress = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004005
4006 path = btrfs_alloc_path();
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004007 if (!path)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004008 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01004009 path->reada = READA_FORWARD;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004010
4011 ret = prepare_to_relocate(rc);
4012 if (ret) {
4013 err = ret;
4014 goto out_free;
Jiri Slaby2423fdfb2010-01-06 16:57:22 +00004015 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004016
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004017 while (1) {
Wang Shilong0647bf52013-11-20 09:01:52 +08004018 rc->reserved_bytes = 0;
4019 ret = btrfs_block_rsv_refill(rc->extent_root,
4020 rc->block_rsv, rc->block_rsv->size,
4021 BTRFS_RESERVE_FLUSH_ALL);
4022 if (ret) {
4023 err = ret;
4024 break;
4025 }
Chris Masonc87f08c2011-02-16 13:57:04 -05004026 progress++;
Yan, Zhenga22285a2010-05-16 10:48:46 -04004027 trans = btrfs_start_transaction(rc->extent_root, 0);
Liu Bo0f788c52013-03-04 16:25:40 +00004028 if (IS_ERR(trans)) {
4029 err = PTR_ERR(trans);
4030 trans = NULL;
4031 break;
4032 }
Chris Masonc87f08c2011-02-16 13:57:04 -05004033restart:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004034 if (update_backref_cache(trans, &rc->backref_cache)) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004035 btrfs_end_transaction(trans);
Pan Bian42a657f2018-11-23 18:10:15 +08004036 trans = NULL;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004037 continue;
4038 }
4039
Zhaolei147d2562015-08-06 20:58:11 +08004040 ret = find_next_extent(rc, path, &key);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004041 if (ret < 0)
4042 err = ret;
4043 if (ret != 0)
4044 break;
4045
4046 rc->extents_found++;
4047
4048 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
4049 struct btrfs_extent_item);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004050 item_size = btrfs_item_size_nr(path->nodes[0], path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004051 if (item_size >= sizeof(*ei)) {
4052 flags = btrfs_extent_flags(path->nodes[0], ei);
4053 ret = check_extent_flags(flags);
4054 BUG_ON(ret);
David Sterba6d8ff4e2018-06-26 16:20:59 +02004055 } else if (unlikely(item_size == sizeof(struct btrfs_extent_item_v0))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03004056 err = -EINVAL;
4057 btrfs_print_v0_err(trans->fs_info);
4058 btrfs_abort_transaction(trans, err);
4059 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004060 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004061 BUG();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004062 }
4063
4064 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
4065 ret = add_tree_block(rc, &key, path, &blocks);
4066 } else if (rc->stage == UPDATE_DATA_PTRS &&
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004067 (flags & BTRFS_EXTENT_FLAG_DATA)) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004068 ret = add_data_references(rc, &key, path, &blocks);
4069 } else {
David Sterbab3b4aa72011-04-21 01:20:15 +02004070 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004071 ret = 0;
4072 }
4073 if (ret < 0) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004074 err = ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004075 break;
4076 }
4077
4078 if (!RB_EMPTY_ROOT(&blocks)) {
4079 ret = relocate_tree_blocks(trans, rc, &blocks);
4080 if (ret < 0) {
Wang Shilong1708cc52013-12-28 19:52:39 +08004081 /*
4082 * if we fail to relocate tree blocks, force to update
4083 * backref cache when committing transaction.
4084 */
4085 rc->backref_cache.last_trans = trans->transid - 1;
4086
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004087 if (ret != -EAGAIN) {
4088 err = ret;
4089 break;
4090 }
4091 rc->extents_found--;
4092 rc->search_start = key.objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004093 }
4094 }
4095
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004096 btrfs_end_transaction_throttle(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004097 btrfs_btree_balance_dirty(fs_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004098 trans = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004099
4100 if (rc->stage == MOVE_DATA_EXTENTS &&
4101 (flags & BTRFS_EXTENT_FLAG_DATA)) {
4102 rc->found_file_extent = 1;
Yan, Zheng0257bb82009-09-24 09:17:31 -04004103 ret = relocate_data_extent(rc->data_inode,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004104 &key, &rc->cluster);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004105 if (ret < 0) {
4106 err = ret;
4107 break;
4108 }
4109 }
4110 }
Chris Masonc87f08c2011-02-16 13:57:04 -05004111 if (trans && progress && err == -ENOSPC) {
Nikolay Borisov43a7e992018-06-20 15:49:15 +03004112 ret = btrfs_force_chunk_alloc(trans, rc->block_group->flags);
Shilong Wang96894572015-04-12 14:35:20 +08004113 if (ret == 1) {
Chris Masonc87f08c2011-02-16 13:57:04 -05004114 err = 0;
4115 progress = 0;
4116 goto restart;
4117 }
4118 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004119
David Sterbab3b4aa72011-04-21 01:20:15 +02004120 btrfs_release_path(path);
David Sterba91166212016-04-26 23:54:39 +02004121 clear_extent_bits(&rc->processed_blocks, 0, (u64)-1, EXTENT_DIRTY);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004122
4123 if (trans) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004124 btrfs_end_transaction_throttle(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004125 btrfs_btree_balance_dirty(fs_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004126 }
4127
Yan, Zheng0257bb82009-09-24 09:17:31 -04004128 if (!err) {
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004129 ret = relocate_file_extent_cluster(rc->data_inode,
4130 &rc->cluster);
Yan, Zheng0257bb82009-09-24 09:17:31 -04004131 if (ret < 0)
4132 err = ret;
4133 }
4134
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004135 rc->create_reloc_tree = 0;
4136 set_reloc_control(rc);
Yan, Zheng0257bb82009-09-24 09:17:31 -04004137
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004138 backref_cache_cleanup(&rc->backref_cache);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004139 btrfs_block_rsv_release(fs_info, rc->block_rsv, (u64)-1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004140
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004141 err = prepare_to_merge(rc, err);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004142
4143 merge_reloc_roots(rc);
4144
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004145 rc->merge_reloc_tree = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004146 unset_reloc_control(rc);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004147 btrfs_block_rsv_release(fs_info, rc->block_rsv, (u64)-1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004148
4149 /* get rid of pinned extents */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004150 trans = btrfs_join_transaction(rc->extent_root);
Qu Wenruo62b99542016-08-15 10:36:51 +08004151 if (IS_ERR(trans)) {
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004152 err = PTR_ERR(trans);
Qu Wenruo62b99542016-08-15 10:36:51 +08004153 goto out_free;
4154 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004155 btrfs_commit_transaction(trans);
Qu Wenruod2311e62019-01-23 15:15:14 +08004156 ret = clean_dirty_subvols(rc);
4157 if (ret < 0 && !err)
4158 err = ret;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004159out_free:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004160 btrfs_free_block_rsv(fs_info, rc->block_rsv);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004161 btrfs_free_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004162 return err;
4163}
4164
4165static int __insert_orphan_inode(struct btrfs_trans_handle *trans,
Yan, Zheng0257bb82009-09-24 09:17:31 -04004166 struct btrfs_root *root, u64 objectid)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004167{
4168 struct btrfs_path *path;
4169 struct btrfs_inode_item *item;
4170 struct extent_buffer *leaf;
4171 int ret;
4172
4173 path = btrfs_alloc_path();
4174 if (!path)
4175 return -ENOMEM;
4176
4177 ret = btrfs_insert_empty_inode(trans, root, path, objectid);
4178 if (ret)
4179 goto out;
4180
4181 leaf = path->nodes[0];
4182 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_inode_item);
David Sterbab159fa22016-11-08 18:09:03 +01004183 memzero_extent_buffer(leaf, (unsigned long)item, sizeof(*item));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004184 btrfs_set_inode_generation(leaf, item, 1);
Yan, Zheng0257bb82009-09-24 09:17:31 -04004185 btrfs_set_inode_size(leaf, item, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004186 btrfs_set_inode_mode(leaf, item, S_IFREG | 0600);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004187 btrfs_set_inode_flags(leaf, item, BTRFS_INODE_NOCOMPRESS |
4188 BTRFS_INODE_PREALLOC);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004189 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004190out:
4191 btrfs_free_path(path);
4192 return ret;
4193}
4194
4195/*
4196 * helper to create inode for data relocation.
4197 * the inode is in data relocation tree and its link count is 0
4198 */
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004199static noinline_for_stack
4200struct inode *create_reloc_inode(struct btrfs_fs_info *fs_info,
4201 struct btrfs_block_group_cache *group)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004202{
4203 struct inode *inode = NULL;
4204 struct btrfs_trans_handle *trans;
4205 struct btrfs_root *root;
4206 struct btrfs_key key;
Zhaolei46249002015-08-05 18:00:03 +08004207 u64 objectid;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004208 int err = 0;
4209
4210 root = read_fs_root(fs_info, BTRFS_DATA_RELOC_TREE_OBJECTID);
4211 if (IS_ERR(root))
4212 return ERR_CAST(root);
4213
Yan, Zhenga22285a2010-05-16 10:48:46 -04004214 trans = btrfs_start_transaction(root, 6);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004215 if (IS_ERR(trans))
4216 return ERR_CAST(trans);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004217
Li Zefan581bb052011-04-20 10:06:11 +08004218 err = btrfs_find_free_objectid(root, &objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004219 if (err)
4220 goto out;
4221
Yan, Zheng0257bb82009-09-24 09:17:31 -04004222 err = __insert_orphan_inode(trans, root, objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004223 BUG_ON(err);
4224
4225 key.objectid = objectid;
4226 key.type = BTRFS_INODE_ITEM_KEY;
4227 key.offset = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004228 inode = btrfs_iget(fs_info->sb, &key, root, NULL);
Al Viro2e19f1f2018-07-29 23:04:45 +01004229 BUG_ON(IS_ERR(inode));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004230 BTRFS_I(inode)->index_cnt = group->key.objectid;
4231
Nikolay Borisov73f2e542017-02-20 13:50:59 +02004232 err = btrfs_orphan_add(trans, BTRFS_I(inode));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004233out:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004234 btrfs_end_transaction(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004235 btrfs_btree_balance_dirty(fs_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004236 if (err) {
4237 if (inode)
4238 iput(inode);
4239 inode = ERR_PTR(err);
4240 }
4241 return inode;
4242}
4243
Qu Wenruoc258d6e2019-03-01 10:47:58 +08004244static struct reloc_control *alloc_reloc_control(struct btrfs_fs_info *fs_info)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004245{
4246 struct reloc_control *rc;
4247
4248 rc = kzalloc(sizeof(*rc), GFP_NOFS);
4249 if (!rc)
4250 return NULL;
4251
4252 INIT_LIST_HEAD(&rc->reloc_roots);
Qu Wenruod2311e62019-01-23 15:15:14 +08004253 INIT_LIST_HEAD(&rc->dirty_subvol_roots);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004254 backref_cache_init(&rc->backref_cache);
4255 mapping_tree_init(&rc->reloc_root_tree);
Qu Wenruo43eb5f22019-03-01 10:47:59 +08004256 extent_io_tree_init(fs_info, &rc->processed_blocks,
4257 IO_TREE_RELOC_BLOCKS, NULL);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004258 return rc;
4259}
4260
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004261/*
Adam Borowskiebce0e02016-11-14 18:44:34 +01004262 * Print the block group being relocated
4263 */
4264static void describe_relocation(struct btrfs_fs_info *fs_info,
4265 struct btrfs_block_group_cache *block_group)
4266{
Anand Jainf89e09c2018-11-20 16:12:55 +08004267 char buf[128] = {'\0'};
Adam Borowskiebce0e02016-11-14 18:44:34 +01004268
Anand Jainf89e09c2018-11-20 16:12:55 +08004269 btrfs_describe_block_groups(block_group->flags, buf, sizeof(buf));
Adam Borowskiebce0e02016-11-14 18:44:34 +01004270
4271 btrfs_info(fs_info,
4272 "relocating block group %llu flags %s",
Anand Jainf89e09c2018-11-20 16:12:55 +08004273 block_group->key.objectid, buf);
Adam Borowskiebce0e02016-11-14 18:44:34 +01004274}
4275
4276/*
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004277 * function to relocate all extents in a block group.
4278 */
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004279int btrfs_relocate_block_group(struct btrfs_fs_info *fs_info, u64 group_start)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004280{
Omar Sandovaleede2bf2016-11-03 10:28:12 -07004281 struct btrfs_block_group_cache *bg;
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04004282 struct btrfs_root *extent_root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004283 struct reloc_control *rc;
Josef Bacik0af3d002010-06-21 14:48:16 -04004284 struct inode *inode;
4285 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004286 int ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004287 int rw = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004288 int err = 0;
4289
Omar Sandovaleede2bf2016-11-03 10:28:12 -07004290 bg = btrfs_lookup_block_group(fs_info, group_start);
4291 if (!bg)
4292 return -ENOENT;
4293
4294 if (btrfs_pinned_by_swapfile(fs_info, bg)) {
4295 btrfs_put_block_group(bg);
4296 return -ETXTBSY;
4297 }
4298
Qu Wenruoc258d6e2019-03-01 10:47:58 +08004299 rc = alloc_reloc_control(fs_info);
Omar Sandovaleede2bf2016-11-03 10:28:12 -07004300 if (!rc) {
4301 btrfs_put_block_group(bg);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004302 return -ENOMEM;
Omar Sandovaleede2bf2016-11-03 10:28:12 -07004303 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004304
Yan, Zhengf0486c62010-05-16 10:46:25 -04004305 rc->extent_root = extent_root;
Omar Sandovaleede2bf2016-11-03 10:28:12 -07004306 rc->block_group = bg;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004307
Nikolay Borisovc83488a2018-06-20 15:49:14 +03004308 ret = btrfs_inc_block_group_ro(rc->block_group);
Zhaolei868f4012015-08-05 16:43:27 +08004309 if (ret) {
4310 err = ret;
4311 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004312 }
Zhaolei868f4012015-08-05 16:43:27 +08004313 rw = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04004314
Josef Bacik0af3d002010-06-21 14:48:16 -04004315 path = btrfs_alloc_path();
4316 if (!path) {
4317 err = -ENOMEM;
4318 goto out;
4319 }
4320
David Sterba7949f332019-03-20 13:40:19 +01004321 inode = lookup_free_space_inode(rc->block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04004322 btrfs_free_path(path);
4323
4324 if (!IS_ERR(inode))
Chris Mason1bbc6212015-04-06 12:46:08 -07004325 ret = delete_block_group_cache(fs_info, rc->block_group, inode, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -04004326 else
4327 ret = PTR_ERR(inode);
4328
4329 if (ret && ret != -ENOENT) {
4330 err = ret;
4331 goto out;
4332 }
4333
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004334 rc->data_inode = create_reloc_inode(fs_info, rc->block_group);
4335 if (IS_ERR(rc->data_inode)) {
4336 err = PTR_ERR(rc->data_inode);
4337 rc->data_inode = NULL;
4338 goto out;
4339 }
4340
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004341 describe_relocation(fs_info, rc->block_group);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004342
Filipe Manana9cfa3e32016-04-26 15:39:32 +01004343 btrfs_wait_block_group_reservations(rc->block_group);
Filipe Mananaf78c4362016-05-09 13:15:41 +01004344 btrfs_wait_nocow_writers(rc->block_group);
Chris Mason6374e57a2017-06-23 09:48:21 -07004345 btrfs_wait_ordered_roots(fs_info, U64_MAX,
Filipe Manana578def72016-04-26 15:36:38 +01004346 rc->block_group->key.objectid,
4347 rc->block_group->key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004348
4349 while (1) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004350 mutex_lock(&fs_info->cleaner_mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004351 ret = relocate_block_group(rc);
Yan, Zheng76dda932009-09-21 16:00:26 -04004352 mutex_unlock(&fs_info->cleaner_mutex);
Josef Bacikff612ba2019-02-25 11:14:45 -05004353 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004354 err = ret;
Josef Bacikff612ba2019-02-25 11:14:45 -05004355
4356 /*
4357 * We may have gotten ENOSPC after we already dirtied some
4358 * extents. If writeout happens while we're relocating a
4359 * different block group we could end up hitting the
4360 * BUG_ON(rc->stage == UPDATE_DATA_PTRS) in
4361 * btrfs_reloc_cow_block. Make sure we write everything out
4362 * properly so we don't trip over this problem, and then break
4363 * out of the loop if we hit an error.
4364 */
4365 if (rc->stage == MOVE_DATA_EXTENTS && rc->found_file_extent) {
4366 ret = btrfs_wait_ordered_range(rc->data_inode, 0,
4367 (u64)-1);
4368 if (ret)
4369 err = ret;
4370 invalidate_mapping_pages(rc->data_inode->i_mapping,
4371 0, -1);
4372 rc->stage = UPDATE_DATA_PTRS;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004373 }
4374
Josef Bacikff612ba2019-02-25 11:14:45 -05004375 if (err < 0)
4376 goto out;
4377
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004378 if (rc->extents_found == 0)
4379 break;
4380
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004381 btrfs_info(fs_info, "found %llu extents", rc->extents_found);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004382
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004383 }
4384
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004385 WARN_ON(rc->block_group->pinned > 0);
4386 WARN_ON(rc->block_group->reserved > 0);
4387 WARN_ON(btrfs_block_group_used(&rc->block_group->item) > 0);
4388out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04004389 if (err && rw)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004390 btrfs_dec_block_group_ro(rc->block_group);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004391 iput(rc->data_inode);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004392 btrfs_put_block_group(rc->block_group);
4393 kfree(rc);
4394 return err;
4395}
4396
Yan, Zheng76dda932009-09-21 16:00:26 -04004397static noinline_for_stack int mark_garbage_root(struct btrfs_root *root)
4398{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004399 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng76dda932009-09-21 16:00:26 -04004400 struct btrfs_trans_handle *trans;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004401 int ret, err;
Yan, Zheng76dda932009-09-21 16:00:26 -04004402
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004403 trans = btrfs_start_transaction(fs_info->tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004404 if (IS_ERR(trans))
4405 return PTR_ERR(trans);
Yan, Zheng76dda932009-09-21 16:00:26 -04004406
4407 memset(&root->root_item.drop_progress, 0,
4408 sizeof(root->root_item.drop_progress));
4409 root->root_item.drop_level = 0;
4410 btrfs_set_root_refs(&root->root_item, 0);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004411 ret = btrfs_update_root(trans, fs_info->tree_root,
Yan, Zheng76dda932009-09-21 16:00:26 -04004412 &root->root_key, &root->root_item);
Yan, Zheng76dda932009-09-21 16:00:26 -04004413
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004414 err = btrfs_end_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004415 if (err)
4416 return err;
4417 return ret;
Yan, Zheng76dda932009-09-21 16:00:26 -04004418}
4419
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004420/*
4421 * recover relocation interrupted by system crash.
4422 *
4423 * this function resumes merging reloc trees with corresponding fs trees.
4424 * this is important for keeping the sharing of tree blocks
4425 */
4426int btrfs_recover_relocation(struct btrfs_root *root)
4427{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004428 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004429 LIST_HEAD(reloc_roots);
4430 struct btrfs_key key;
4431 struct btrfs_root *fs_root;
4432 struct btrfs_root *reloc_root;
4433 struct btrfs_path *path;
4434 struct extent_buffer *leaf;
4435 struct reloc_control *rc = NULL;
4436 struct btrfs_trans_handle *trans;
4437 int ret;
4438 int err = 0;
4439
4440 path = btrfs_alloc_path();
4441 if (!path)
4442 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +01004443 path->reada = READA_BACK;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004444
4445 key.objectid = BTRFS_TREE_RELOC_OBJECTID;
4446 key.type = BTRFS_ROOT_ITEM_KEY;
4447 key.offset = (u64)-1;
4448
4449 while (1) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004450 ret = btrfs_search_slot(NULL, fs_info->tree_root, &key,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004451 path, 0, 0);
4452 if (ret < 0) {
4453 err = ret;
4454 goto out;
4455 }
4456 if (ret > 0) {
4457 if (path->slots[0] == 0)
4458 break;
4459 path->slots[0]--;
4460 }
4461 leaf = path->nodes[0];
4462 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +02004463 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004464
4465 if (key.objectid != BTRFS_TREE_RELOC_OBJECTID ||
4466 key.type != BTRFS_ROOT_ITEM_KEY)
4467 break;
4468
Miao Xiecb517ea2013-05-15 07:48:19 +00004469 reloc_root = btrfs_read_fs_root(root, &key);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004470 if (IS_ERR(reloc_root)) {
4471 err = PTR_ERR(reloc_root);
4472 goto out;
4473 }
4474
4475 list_add(&reloc_root->root_list, &reloc_roots);
4476
4477 if (btrfs_root_refs(&reloc_root->root_item) > 0) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004478 fs_root = read_fs_root(fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004479 reloc_root->root_key.offset);
4480 if (IS_ERR(fs_root)) {
Yan, Zheng76dda932009-09-21 16:00:26 -04004481 ret = PTR_ERR(fs_root);
4482 if (ret != -ENOENT) {
4483 err = ret;
4484 goto out;
4485 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004486 ret = mark_garbage_root(reloc_root);
4487 if (ret < 0) {
4488 err = ret;
4489 goto out;
4490 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004491 }
4492 }
4493
4494 if (key.offset == 0)
4495 break;
4496
4497 key.offset--;
4498 }
David Sterbab3b4aa72011-04-21 01:20:15 +02004499 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004500
4501 if (list_empty(&reloc_roots))
4502 goto out;
4503
Qu Wenruoc258d6e2019-03-01 10:47:58 +08004504 rc = alloc_reloc_control(fs_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004505 if (!rc) {
4506 err = -ENOMEM;
4507 goto out;
4508 }
4509
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004510 rc->extent_root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004511
4512 set_reloc_control(rc);
4513
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004514 trans = btrfs_join_transaction(rc->extent_root);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004515 if (IS_ERR(trans)) {
4516 unset_reloc_control(rc);
4517 err = PTR_ERR(trans);
4518 goto out_free;
4519 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004520
4521 rc->merge_reloc_tree = 1;
4522
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004523 while (!list_empty(&reloc_roots)) {
4524 reloc_root = list_entry(reloc_roots.next,
4525 struct btrfs_root, root_list);
4526 list_del(&reloc_root->root_list);
4527
4528 if (btrfs_root_refs(&reloc_root->root_item) == 0) {
4529 list_add_tail(&reloc_root->root_list,
4530 &rc->reloc_roots);
4531 continue;
4532 }
4533
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004534 fs_root = read_fs_root(fs_info, reloc_root->root_key.offset);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004535 if (IS_ERR(fs_root)) {
4536 err = PTR_ERR(fs_root);
4537 goto out_free;
4538 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004539
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04004540 err = __add_reloc_root(reloc_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004541 BUG_ON(err < 0); /* -ENOMEM or logic error */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004542 fs_root->reloc_root = reloc_root;
4543 }
4544
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004545 err = btrfs_commit_transaction(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004546 if (err)
4547 goto out_free;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004548
4549 merge_reloc_roots(rc);
4550
4551 unset_reloc_control(rc);
4552
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004553 trans = btrfs_join_transaction(rc->extent_root);
Qu Wenruo62b99542016-08-15 10:36:51 +08004554 if (IS_ERR(trans)) {
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004555 err = PTR_ERR(trans);
Qu Wenruo62b99542016-08-15 10:36:51 +08004556 goto out_free;
4557 }
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004558 err = btrfs_commit_transaction(trans);
Qu Wenruod2311e62019-01-23 15:15:14 +08004559
4560 ret = clean_dirty_subvols(rc);
4561 if (ret < 0 && !err)
4562 err = ret;
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004563out_free:
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004564 kfree(rc);
Tsutomu Itoh3612b492011-01-25 02:51:38 +00004565out:
Liu Boaca1bba2013-03-04 16:25:37 +00004566 if (!list_empty(&reloc_roots))
4567 free_reloc_roots(&reloc_roots);
4568
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004569 btrfs_free_path(path);
4570
4571 if (err == 0) {
4572 /* cleanup orphan inode in data relocation tree */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004573 fs_root = read_fs_root(fs_info, BTRFS_DATA_RELOC_TREE_OBJECTID);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004574 if (IS_ERR(fs_root))
4575 err = PTR_ERR(fs_root);
Miao Xied7ce5842010-02-02 08:46:44 +00004576 else
Josef Bacik66b4ffd2011-01-31 16:22:42 -05004577 err = btrfs_orphan_cleanup(fs_root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004578 }
4579 return err;
4580}
4581
4582/*
4583 * helper to add ordered checksum for data relocation.
4584 *
4585 * cloning checksum properly handles the nodatasum extents.
4586 * it also saves CPU time to re-calculate the checksum.
4587 */
4588int btrfs_reloc_clone_csums(struct inode *inode, u64 file_pos, u64 len)
4589{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004590 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004591 struct btrfs_ordered_sum *sums;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004592 struct btrfs_ordered_extent *ordered;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004593 int ret;
4594 u64 disk_bytenr;
Josef Bacik4577b012013-09-27 09:33:09 -04004595 u64 new_bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004596 LIST_HEAD(list);
4597
4598 ordered = btrfs_lookup_ordered_extent(inode, file_pos);
4599 BUG_ON(ordered->file_offset != file_pos || ordered->len != len);
4600
4601 disk_bytenr = file_pos + BTRFS_I(inode)->index_cnt;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004602 ret = btrfs_lookup_csums_range(fs_info->csum_root, disk_bytenr,
Arne Jansena2de7332011-03-08 14:14:00 +01004603 disk_bytenr + len - 1, &list, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004604 if (ret)
4605 goto out;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004606
4607 while (!list_empty(&list)) {
4608 sums = list_entry(list.next, struct btrfs_ordered_sum, list);
4609 list_del_init(&sums->list);
4610
Josef Bacik4577b012013-09-27 09:33:09 -04004611 /*
4612 * We need to offset the new_bytenr based on where the csum is.
4613 * We need to do this because we will read in entire prealloc
4614 * extents but we may have written to say the middle of the
4615 * prealloc extent, so we need to make sure the csum goes with
4616 * the right disk offset.
4617 *
4618 * We can do this because the data reloc inode refers strictly
4619 * to the on disk bytes, so we don't have to worry about
4620 * disk_len vs real len like with real inodes since it's all
4621 * disk length.
4622 */
4623 new_bytenr = ordered->start + (sums->bytenr - disk_bytenr);
4624 sums->bytenr = new_bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004625
Nikolay Borisovf9756262019-04-10 16:16:11 +03004626 btrfs_add_ordered_sum(ordered, sums);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004627 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01004628out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004629 btrfs_put_ordered_extent(ordered);
Andi Kleen411fc6b2010-10-29 15:14:31 -04004630 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04004631}
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004632
Josef Bacik83d4cfd2013-08-30 15:09:51 -04004633int btrfs_reloc_cow_block(struct btrfs_trans_handle *trans,
4634 struct btrfs_root *root, struct extent_buffer *buf,
4635 struct extent_buffer *cow)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004636{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004637 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004638 struct reloc_control *rc;
4639 struct backref_node *node;
4640 int first_cow = 0;
4641 int level;
Josef Bacik83d4cfd2013-08-30 15:09:51 -04004642 int ret = 0;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004643
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004644 rc = fs_info->reloc_ctl;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004645 if (!rc)
Josef Bacik83d4cfd2013-08-30 15:09:51 -04004646 return 0;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004647
4648 BUG_ON(rc->stage == UPDATE_DATA_PTRS &&
4649 root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID);
4650
Wang Shilongc974c462013-12-11 19:29:51 +08004651 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
4652 if (buf == root->node)
4653 __update_reloc_root(root, cow->start);
4654 }
4655
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004656 level = btrfs_header_level(buf);
4657 if (btrfs_header_generation(buf) <=
4658 btrfs_root_last_snapshot(&root->root_item))
4659 first_cow = 1;
4660
4661 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID &&
4662 rc->create_reloc_tree) {
4663 WARN_ON(!first_cow && level == 0);
4664
4665 node = rc->backref_cache.path[level];
4666 BUG_ON(node->bytenr != buf->start &&
4667 node->new_bytenr != buf->start);
4668
4669 drop_node_buffer(node);
4670 extent_buffer_get(cow);
4671 node->eb = cow;
4672 node->new_bytenr = cow->start;
4673
4674 if (!node->pending) {
4675 list_move_tail(&node->list,
4676 &rc->backref_cache.pending[level]);
4677 node->pending = 1;
4678 }
4679
4680 if (first_cow)
4681 __mark_block_processed(rc, node);
4682
4683 if (first_cow && level > 0)
4684 rc->nodes_relocated += buf->len;
4685 }
4686
Josef Bacik83d4cfd2013-08-30 15:09:51 -04004687 if (level == 0 && first_cow && rc->stage == UPDATE_DATA_PTRS)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004688 ret = replace_file_extents(trans, rc, root, cow);
Josef Bacik83d4cfd2013-08-30 15:09:51 -04004689 return ret;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004690}
4691
4692/*
4693 * called before creating snapshot. it calculates metadata reservation
Nicholas D Steeves01327612016-05-19 21:18:45 -04004694 * required for relocating tree blocks in the snapshot
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004695 */
Zhaolei147d2562015-08-06 20:58:11 +08004696void btrfs_reloc_pre_snapshot(struct btrfs_pending_snapshot *pending,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004697 u64 *bytes_to_reserve)
4698{
Qu Wenruo10995c02019-03-18 10:48:19 +08004699 struct btrfs_root *root = pending->root;
4700 struct reloc_control *rc = root->fs_info->reloc_ctl;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004701
Qu Wenruo10995c02019-03-18 10:48:19 +08004702 if (!root->reloc_root || !rc)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004703 return;
4704
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004705 if (!rc->merge_reloc_tree)
4706 return;
4707
4708 root = root->reloc_root;
4709 BUG_ON(btrfs_root_refs(&root->root_item) == 0);
4710 /*
4711 * relocation is in the stage of merging trees. the space
4712 * used by merging a reloc tree is twice the size of
4713 * relocated tree nodes in the worst case. half for cowing
4714 * the reloc tree, half for cowing the fs tree. the space
4715 * used by cowing the reloc tree will be freed after the
4716 * tree is dropped. if we create snapshot, cowing the fs
4717 * tree may use more space than it frees. so we need
4718 * reserve extra space.
4719 */
4720 *bytes_to_reserve += rc->nodes_relocated;
4721}
4722
4723/*
4724 * called after snapshot is created. migrate block reservation
4725 * and create reloc root for the newly created snapshot
4726 */
Jeff Mahoney49b25e02012-03-01 17:24:58 +01004727int btrfs_reloc_post_snapshot(struct btrfs_trans_handle *trans,
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004728 struct btrfs_pending_snapshot *pending)
4729{
4730 struct btrfs_root *root = pending->root;
4731 struct btrfs_root *reloc_root;
4732 struct btrfs_root *new_root;
Qu Wenruo10995c02019-03-18 10:48:19 +08004733 struct reloc_control *rc = root->fs_info->reloc_ctl;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004734 int ret;
4735
Qu Wenruo10995c02019-03-18 10:48:19 +08004736 if (!root->reloc_root || !rc)
Jeff Mahoney49b25e02012-03-01 17:24:58 +01004737 return 0;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004738
4739 rc = root->fs_info->reloc_ctl;
4740 rc->merging_rsv_size += rc->nodes_relocated;
4741
4742 if (rc->merge_reloc_tree) {
4743 ret = btrfs_block_rsv_migrate(&pending->block_rsv,
4744 rc->block_rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08004745 rc->nodes_relocated, true);
Jeff Mahoney49b25e02012-03-01 17:24:58 +01004746 if (ret)
4747 return ret;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004748 }
4749
4750 new_root = pending->snap;
4751 reloc_root = create_reloc_root(trans, root->reloc_root,
4752 new_root->root_key.objectid);
Jeff Mahoney49b25e02012-03-01 17:24:58 +01004753 if (IS_ERR(reloc_root))
4754 return PTR_ERR(reloc_root);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004755
Jeff Mahoneyffd7b332011-10-03 23:23:15 -04004756 ret = __add_reloc_root(reloc_root);
4757 BUG_ON(ret < 0);
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004758 new_root->reloc_root = reloc_root;
4759
Jeff Mahoney49b25e02012-03-01 17:24:58 +01004760 if (rc->create_reloc_tree)
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004761 ret = clone_backref_node(trans, rc, root, reloc_root);
Jeff Mahoney49b25e02012-03-01 17:24:58 +01004762 return ret;
Yan, Zheng3fd0a552010-05-16 10:49:59 -04004763}