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