btrfs: rename EXTENT_BUFFER_NO_CHECK to EXTENT_BUFFER_ZONED_ZEROOUT
[linux-2.6-block.git] / fs / btrfs / extent-tree.c
CommitLineData
c1d7c514 1// SPDX-License-Identifier: GPL-2.0
6cbd5570
CM
2/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
6cbd5570 4 */
c1d7c514 5
ec6b910f 6#include <linux/sched.h>
f361bf4a 7#include <linux/sched/signal.h>
edbd8d4e 8#include <linux/pagemap.h>
ec44a35c 9#include <linux/writeback.h>
21af804c 10#include <linux/blkdev.h>
b7a9f29f 11#include <linux/sort.h>
4184ea7f 12#include <linux/rcupdate.h>
817d52f8 13#include <linux/kthread.h>
5a0e3ad6 14#include <linux/slab.h>
dff51cd1 15#include <linux/ratelimit.h>
b150a4f1 16#include <linux/percpu_counter.h>
69fe2d75 17#include <linux/lockdep.h>
9678c543 18#include <linux/crc32c.h>
cfc2de0f
BB
19#include "ctree.h"
20#include "extent-tree.h"
995946dd 21#include "tree-log.h"
fec577fb
CM
22#include "disk-io.h"
23#include "print-tree.h"
0b86a832 24#include "volumes.h"
53b381b3 25#include "raid56.h"
925baedd 26#include "locking.h"
fa9c0d79 27#include "free-space-cache.h"
1e144fb8 28#include "free-space-tree.h"
6ab0a202 29#include "sysfs.h"
fcebe456 30#include "qgroup.h"
fd708b81 31#include "ref-verify.h"
8719aaae 32#include "space-info.h"
d12ffdd1 33#include "block-rsv.h"
86736342 34#include "delalloc-space.h"
b0643e59 35#include "discard.h"
c57dd1f2 36#include "rcu-string.h"
169e0da9 37#include "zoned.h"
6143c23c 38#include "dev-replace.h"
c7f13d42 39#include "fs.h"
07e81dc9 40#include "accessors.h"
45c40c8f 41#include "root-tree.h"
7c8ede16 42#include "file-item.h"
aa5d3003 43#include "orphan.h"
103c1972 44#include "tree-checker.h"
02c372e1 45#include "raid-stripe-tree.h"
fec577fb 46
709c0486
AJ
47#undef SCRAMBLE_DELAYED_REFS
48
9f9b8e8d 49
5d4f98a2 50static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
cecbb533 51 struct btrfs_delayed_ref_head *href,
e72cb923
NB
52 struct btrfs_delayed_ref_node *node, u64 parent,
53 u64 root_objectid, u64 owner_objectid,
1df6b3c0 54 u64 owner_offset,
e72cb923 55 struct btrfs_delayed_extent_op *extra_op);
5d4f98a2
YZ
56static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
57 struct extent_buffer *leaf,
58 struct btrfs_extent_item *ei);
59static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5d4f98a2
YZ
60 u64 parent, u64 root_objectid,
61 u64 flags, u64 owner, u64 offset,
2672a051 62 struct btrfs_key *ins, int ref_mod, u64 oref_root);
5d4f98a2 63static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
4e6bd4e0 64 struct btrfs_delayed_ref_node *node,
21ebfbe7 65 struct btrfs_delayed_extent_op *extent_op);
11833d66
YZ
66static int find_next_key(struct btrfs_path *path, int level,
67 struct btrfs_key *key);
6a63209f 68
32da5386 69static int block_group_bits(struct btrfs_block_group *cache, u64 bits)
0f9dd46c
JB
70{
71 return (cache->flags & bits) == bits;
72}
73
1a4ed8fd 74/* simple helper to search for an existing data extent at a given offset */
2ff7e61e 75int btrfs_lookup_data_extent(struct btrfs_fs_info *fs_info, u64 start, u64 len)
e02119d5 76{
29cbcf40 77 struct btrfs_root *root = btrfs_extent_root(fs_info, start);
e02119d5
CM
78 int ret;
79 struct btrfs_key key;
31840ae1 80 struct btrfs_path *path;
e02119d5 81
31840ae1 82 path = btrfs_alloc_path();
d8926bb3
MF
83 if (!path)
84 return -ENOMEM;
85
e02119d5
CM
86 key.objectid = start;
87 key.offset = len;
3173a18f 88 key.type = BTRFS_EXTENT_ITEM_KEY;
29cbcf40 89 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
31840ae1 90 btrfs_free_path(path);
7bb86316
CM
91 return ret;
92}
93
a22285a6 94/*
3173a18f 95 * helper function to lookup reference count and flags of a tree block.
a22285a6
YZ
96 *
97 * the head node for delayed ref is used to store the sum of all the
98 * reference count modifications queued up in the rbtree. the head
99 * node may also store the extent flags to set. This way you can check
100 * to see what the reference count and extent flags would be if all of
101 * the delayed refs are not processed.
102 */
103int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
2ff7e61e 104 struct btrfs_fs_info *fs_info, u64 bytenr,
d8ba2a91
JB
105 u64 offset, int metadata, u64 *refs, u64 *flags,
106 u64 *owning_root)
a22285a6 107{
29cbcf40 108 struct btrfs_root *extent_root;
a22285a6
YZ
109 struct btrfs_delayed_ref_head *head;
110 struct btrfs_delayed_ref_root *delayed_refs;
111 struct btrfs_path *path;
112 struct btrfs_extent_item *ei;
113 struct extent_buffer *leaf;
114 struct btrfs_key key;
115 u32 item_size;
116 u64 num_refs;
117 u64 extent_flags;
d8ba2a91 118 u64 owner = 0;
a22285a6
YZ
119 int ret;
120
3173a18f
JB
121 /*
122 * If we don't have skinny metadata, don't bother doing anything
123 * different
124 */
0b246afa
JM
125 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) {
126 offset = fs_info->nodesize;
3173a18f
JB
127 metadata = 0;
128 }
129
a22285a6
YZ
130 path = btrfs_alloc_path();
131 if (!path)
132 return -ENOMEM;
133
a22285a6
YZ
134 if (!trans) {
135 path->skip_locking = 1;
136 path->search_commit_root = 1;
137 }
639eefc8
FDBM
138
139search_again:
140 key.objectid = bytenr;
141 key.offset = offset;
142 if (metadata)
143 key.type = BTRFS_METADATA_ITEM_KEY;
144 else
145 key.type = BTRFS_EXTENT_ITEM_KEY;
146
29cbcf40
JB
147 extent_root = btrfs_extent_root(fs_info, bytenr);
148 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
a22285a6
YZ
149 if (ret < 0)
150 goto out_free;
151
3173a18f 152 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
74be9510
FDBM
153 if (path->slots[0]) {
154 path->slots[0]--;
155 btrfs_item_key_to_cpu(path->nodes[0], &key,
156 path->slots[0]);
157 if (key.objectid == bytenr &&
158 key.type == BTRFS_EXTENT_ITEM_KEY &&
0b246afa 159 key.offset == fs_info->nodesize)
74be9510
FDBM
160 ret = 0;
161 }
3173a18f
JB
162 }
163
a22285a6
YZ
164 if (ret == 0) {
165 leaf = path->nodes[0];
3212fa14 166 item_size = btrfs_item_size(leaf, path->slots[0]);
a22285a6
YZ
167 if (item_size >= sizeof(*ei)) {
168 ei = btrfs_item_ptr(leaf, path->slots[0],
169 struct btrfs_extent_item);
170 num_refs = btrfs_extent_refs(leaf, ei);
171 extent_flags = btrfs_extent_flags(leaf, ei);
d8ba2a91
JB
172 owner = btrfs_get_extent_owner_root(fs_info, leaf,
173 path->slots[0]);
a22285a6 174 } else {
182741d2
QW
175 ret = -EUCLEAN;
176 btrfs_err(fs_info,
177 "unexpected extent item size, has %u expect >= %zu",
178 item_size, sizeof(*ei));
ba3c2b19
NB
179 if (trans)
180 btrfs_abort_transaction(trans, ret);
181 else
182 btrfs_handle_fs_error(fs_info, ret, NULL);
183
184 goto out_free;
a22285a6 185 }
ba3c2b19 186
a22285a6
YZ
187 BUG_ON(num_refs == 0);
188 } else {
189 num_refs = 0;
190 extent_flags = 0;
191 ret = 0;
192 }
193
194 if (!trans)
195 goto out;
196
197 delayed_refs = &trans->transaction->delayed_refs;
198 spin_lock(&delayed_refs->lock);
f72ad18e 199 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
a22285a6
YZ
200 if (head) {
201 if (!mutex_trylock(&head->mutex)) {
d278850e 202 refcount_inc(&head->refs);
a22285a6
YZ
203 spin_unlock(&delayed_refs->lock);
204
b3b4aa74 205 btrfs_release_path(path);
a22285a6 206
8cc33e5c
DS
207 /*
208 * Mutex was contended, block until it's released and try
209 * again
210 */
a22285a6
YZ
211 mutex_lock(&head->mutex);
212 mutex_unlock(&head->mutex);
d278850e 213 btrfs_put_delayed_ref_head(head);
639eefc8 214 goto search_again;
a22285a6 215 }
d7df2c79 216 spin_lock(&head->lock);
a22285a6
YZ
217 if (head->extent_op && head->extent_op->update_flags)
218 extent_flags |= head->extent_op->flags_to_set;
219 else
220 BUG_ON(num_refs == 0);
221
d278850e 222 num_refs += head->ref_mod;
d7df2c79 223 spin_unlock(&head->lock);
a22285a6
YZ
224 mutex_unlock(&head->mutex);
225 }
226 spin_unlock(&delayed_refs->lock);
227out:
228 WARN_ON(num_refs == 0);
229 if (refs)
230 *refs = num_refs;
231 if (flags)
232 *flags = extent_flags;
d8ba2a91
JB
233 if (owning_root)
234 *owning_root = owner;
a22285a6
YZ
235out_free:
236 btrfs_free_path(path);
237 return ret;
238}
239
d8d5f3e1
CM
240/*
241 * Back reference rules. Back refs have three main goals:
242 *
243 * 1) differentiate between all holders of references to an extent so that
244 * when a reference is dropped we can make sure it was a valid reference
245 * before freeing the extent.
246 *
247 * 2) Provide enough information to quickly find the holders of an extent
248 * if we notice a given block is corrupted or bad.
249 *
250 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
251 * maintenance. This is actually the same as #2, but with a slightly
252 * different use case.
253 *
5d4f98a2
YZ
254 * There are two kinds of back refs. The implicit back refs is optimized
255 * for pointers in non-shared tree blocks. For a given pointer in a block,
256 * back refs of this kind provide information about the block's owner tree
257 * and the pointer's key. These information allow us to find the block by
258 * b-tree searching. The full back refs is for pointers in tree blocks not
259 * referenced by their owner trees. The location of tree block is recorded
260 * in the back refs. Actually the full back refs is generic, and can be
261 * used in all cases the implicit back refs is used. The major shortcoming
262 * of the full back refs is its overhead. Every time a tree block gets
263 * COWed, we have to update back refs entry for all pointers in it.
264 *
265 * For a newly allocated tree block, we use implicit back refs for
266 * pointers in it. This means most tree related operations only involve
267 * implicit back refs. For a tree block created in old transaction, the
268 * only way to drop a reference to it is COW it. So we can detect the
269 * event that tree block loses its owner tree's reference and do the
270 * back refs conversion.
271 *
01327610 272 * When a tree block is COWed through a tree, there are four cases:
5d4f98a2
YZ
273 *
274 * The reference count of the block is one and the tree is the block's
275 * owner tree. Nothing to do in this case.
276 *
277 * The reference count of the block is one and the tree is not the
278 * block's owner tree. In this case, full back refs is used for pointers
279 * in the block. Remove these full back refs, add implicit back refs for
280 * every pointers in the new block.
281 *
282 * The reference count of the block is greater than one and the tree is
283 * the block's owner tree. In this case, implicit back refs is used for
284 * pointers in the block. Add full back refs for every pointers in the
285 * block, increase lower level extents' reference counts. The original
286 * implicit back refs are entailed to the new block.
287 *
288 * The reference count of the block is greater than one and the tree is
289 * not the block's owner tree. Add implicit back refs for every pointer in
290 * the new block, increase lower level extents' reference count.
291 *
292 * Back Reference Key composing:
293 *
294 * The key objectid corresponds to the first byte in the extent,
295 * The key type is used to differentiate between types of back refs.
296 * There are different meanings of the key offset for different types
297 * of back refs.
298 *
d8d5f3e1
CM
299 * File extents can be referenced by:
300 *
301 * - multiple snapshots, subvolumes, or different generations in one subvol
31840ae1 302 * - different files inside a single subvolume
d8d5f3e1
CM
303 * - different offsets inside a file (bookend extents in file.c)
304 *
5d4f98a2 305 * The extent ref structure for the implicit back refs has fields for:
d8d5f3e1
CM
306 *
307 * - Objectid of the subvolume root
d8d5f3e1 308 * - objectid of the file holding the reference
5d4f98a2
YZ
309 * - original offset in the file
310 * - how many bookend extents
d8d5f3e1 311 *
5d4f98a2
YZ
312 * The key offset for the implicit back refs is hash of the first
313 * three fields.
d8d5f3e1 314 *
5d4f98a2 315 * The extent ref structure for the full back refs has field for:
d8d5f3e1 316 *
5d4f98a2 317 * - number of pointers in the tree leaf
d8d5f3e1 318 *
5d4f98a2
YZ
319 * The key offset for the implicit back refs is the first byte of
320 * the tree leaf
d8d5f3e1 321 *
5d4f98a2
YZ
322 * When a file extent is allocated, The implicit back refs is used.
323 * the fields are filled in:
d8d5f3e1 324 *
5d4f98a2 325 * (root_key.objectid, inode objectid, offset in file, 1)
d8d5f3e1 326 *
5d4f98a2
YZ
327 * When a file extent is removed file truncation, we find the
328 * corresponding implicit back refs and check the following fields:
d8d5f3e1 329 *
5d4f98a2 330 * (btrfs_header_owner(leaf), inode objectid, offset in file)
d8d5f3e1 331 *
5d4f98a2 332 * Btree extents can be referenced by:
d8d5f3e1 333 *
5d4f98a2 334 * - Different subvolumes
d8d5f3e1 335 *
5d4f98a2
YZ
336 * Both the implicit back refs and the full back refs for tree blocks
337 * only consist of key. The key offset for the implicit back refs is
338 * objectid of block's owner tree. The key offset for the full back refs
339 * is the first byte of parent block.
d8d5f3e1 340 *
5d4f98a2
YZ
341 * When implicit back refs is used, information about the lowest key and
342 * level of the tree block are required. These information are stored in
343 * tree block info structure.
d8d5f3e1 344 */
31840ae1 345
167ce953
LB
346/*
347 * is_data == BTRFS_REF_TYPE_BLOCK, tree block type is required,
52042d8e 348 * is_data == BTRFS_REF_TYPE_DATA, data type is requiried,
167ce953
LB
349 * is_data == BTRFS_REF_TYPE_ANY, either type is OK.
350 */
351int btrfs_get_extent_inline_ref_type(const struct extent_buffer *eb,
352 struct btrfs_extent_inline_ref *iref,
353 enum btrfs_inline_ref_type is_data)
354{
d9a620f7 355 struct btrfs_fs_info *fs_info = eb->fs_info;
167ce953 356 int type = btrfs_extent_inline_ref_type(eb, iref);
64ecdb64 357 u64 offset = btrfs_extent_inline_ref_offset(eb, iref);
167ce953 358
d9a620f7
BB
359 if (type == BTRFS_EXTENT_OWNER_REF_KEY) {
360 ASSERT(btrfs_fs_incompat(fs_info, SIMPLE_QUOTA));
361 return type;
362 }
363
167ce953
LB
364 if (type == BTRFS_TREE_BLOCK_REF_KEY ||
365 type == BTRFS_SHARED_BLOCK_REF_KEY ||
366 type == BTRFS_SHARED_DATA_REF_KEY ||
367 type == BTRFS_EXTENT_DATA_REF_KEY) {
368 if (is_data == BTRFS_REF_TYPE_BLOCK) {
64ecdb64 369 if (type == BTRFS_TREE_BLOCK_REF_KEY)
167ce953 370 return type;
64ecdb64 371 if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
d9a620f7 372 ASSERT(fs_info);
64ecdb64 373 /*
ea57788e
QW
374 * Every shared one has parent tree block,
375 * which must be aligned to sector size.
64ecdb64 376 */
d9a620f7 377 if (offset && IS_ALIGNED(offset, fs_info->sectorsize))
64ecdb64
LB
378 return type;
379 }
167ce953 380 } else if (is_data == BTRFS_REF_TYPE_DATA) {
64ecdb64 381 if (type == BTRFS_EXTENT_DATA_REF_KEY)
167ce953 382 return type;
64ecdb64 383 if (type == BTRFS_SHARED_DATA_REF_KEY) {
d9a620f7 384 ASSERT(fs_info);
64ecdb64 385 /*
ea57788e
QW
386 * Every shared one has parent tree block,
387 * which must be aligned to sector size.
64ecdb64
LB
388 */
389 if (offset &&
d9a620f7 390 IS_ALIGNED(offset, fs_info->sectorsize))
64ecdb64
LB
391 return type;
392 }
167ce953
LB
393 } else {
394 ASSERT(is_data == BTRFS_REF_TYPE_ANY);
395 return type;
396 }
397 }
398
25761430 399 WARN_ON(1);
6c75a589 400 btrfs_print_leaf(eb);
d9a620f7 401 btrfs_err(fs_info,
ea57788e
QW
402 "eb %llu iref 0x%lx invalid extent inline ref type %d",
403 eb->start, (unsigned long)iref, type);
167ce953
LB
404
405 return BTRFS_REF_TYPE_INVALID;
406}
407
0785a9aa 408u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
5d4f98a2
YZ
409{
410 u32 high_crc = ~(u32)0;
411 u32 low_crc = ~(u32)0;
412 __le64 lenum;
413
414 lenum = cpu_to_le64(root_objectid);
03e86348 415 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
5d4f98a2 416 lenum = cpu_to_le64(owner);
03e86348 417 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
5d4f98a2 418 lenum = cpu_to_le64(offset);
03e86348 419 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
5d4f98a2
YZ
420
421 return ((u64)high_crc << 31) ^ (u64)low_crc;
422}
423
424static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
425 struct btrfs_extent_data_ref *ref)
426{
427 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
428 btrfs_extent_data_ref_objectid(leaf, ref),
429 btrfs_extent_data_ref_offset(leaf, ref));
430}
431
432static int match_extent_data_ref(struct extent_buffer *leaf,
433 struct btrfs_extent_data_ref *ref,
434 u64 root_objectid, u64 owner, u64 offset)
435{
436 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
437 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
438 btrfs_extent_data_ref_offset(leaf, ref) != offset)
439 return 0;
440 return 1;
441}
442
443static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
5d4f98a2
YZ
444 struct btrfs_path *path,
445 u64 bytenr, u64 parent,
446 u64 root_objectid,
447 u64 owner, u64 offset)
448{
29cbcf40 449 struct btrfs_root *root = btrfs_extent_root(trans->fs_info, bytenr);
5d4f98a2
YZ
450 struct btrfs_key key;
451 struct btrfs_extent_data_ref *ref;
31840ae1 452 struct extent_buffer *leaf;
5d4f98a2 453 u32 nritems;
74493f7a 454 int ret;
5d4f98a2
YZ
455 int recow;
456 int err = -ENOENT;
74493f7a 457
31840ae1 458 key.objectid = bytenr;
5d4f98a2
YZ
459 if (parent) {
460 key.type = BTRFS_SHARED_DATA_REF_KEY;
461 key.offset = parent;
462 } else {
463 key.type = BTRFS_EXTENT_DATA_REF_KEY;
464 key.offset = hash_extent_data_ref(root_objectid,
465 owner, offset);
466 }
467again:
468 recow = 0;
469 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
470 if (ret < 0) {
471 err = ret;
472 goto fail;
473 }
31840ae1 474
5d4f98a2
YZ
475 if (parent) {
476 if (!ret)
477 return 0;
5d4f98a2 478 goto fail;
31840ae1
ZY
479 }
480
481 leaf = path->nodes[0];
5d4f98a2
YZ
482 nritems = btrfs_header_nritems(leaf);
483 while (1) {
484 if (path->slots[0] >= nritems) {
485 ret = btrfs_next_leaf(root, path);
486 if (ret < 0)
487 err = ret;
488 if (ret)
489 goto fail;
490
491 leaf = path->nodes[0];
492 nritems = btrfs_header_nritems(leaf);
493 recow = 1;
494 }
495
496 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
497 if (key.objectid != bytenr ||
498 key.type != BTRFS_EXTENT_DATA_REF_KEY)
499 goto fail;
500
501 ref = btrfs_item_ptr(leaf, path->slots[0],
502 struct btrfs_extent_data_ref);
503
504 if (match_extent_data_ref(leaf, ref, root_objectid,
505 owner, offset)) {
506 if (recow) {
b3b4aa74 507 btrfs_release_path(path);
5d4f98a2
YZ
508 goto again;
509 }
510 err = 0;
511 break;
512 }
513 path->slots[0]++;
31840ae1 514 }
5d4f98a2
YZ
515fail:
516 return err;
31840ae1
ZY
517}
518
5d4f98a2 519static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
5d4f98a2
YZ
520 struct btrfs_path *path,
521 u64 bytenr, u64 parent,
522 u64 root_objectid, u64 owner,
523 u64 offset, int refs_to_add)
31840ae1 524{
29cbcf40 525 struct btrfs_root *root = btrfs_extent_root(trans->fs_info, bytenr);
31840ae1
ZY
526 struct btrfs_key key;
527 struct extent_buffer *leaf;
5d4f98a2 528 u32 size;
31840ae1
ZY
529 u32 num_refs;
530 int ret;
74493f7a 531
74493f7a 532 key.objectid = bytenr;
5d4f98a2
YZ
533 if (parent) {
534 key.type = BTRFS_SHARED_DATA_REF_KEY;
535 key.offset = parent;
536 size = sizeof(struct btrfs_shared_data_ref);
537 } else {
538 key.type = BTRFS_EXTENT_DATA_REF_KEY;
539 key.offset = hash_extent_data_ref(root_objectid,
540 owner, offset);
541 size = sizeof(struct btrfs_extent_data_ref);
542 }
74493f7a 543
5d4f98a2
YZ
544 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
545 if (ret && ret != -EEXIST)
546 goto fail;
547
548 leaf = path->nodes[0];
549 if (parent) {
550 struct btrfs_shared_data_ref *ref;
31840ae1 551 ref = btrfs_item_ptr(leaf, path->slots[0],
5d4f98a2
YZ
552 struct btrfs_shared_data_ref);
553 if (ret == 0) {
554 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
555 } else {
556 num_refs = btrfs_shared_data_ref_count(leaf, ref);
557 num_refs += refs_to_add;
558 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
31840ae1 559 }
5d4f98a2
YZ
560 } else {
561 struct btrfs_extent_data_ref *ref;
562 while (ret == -EEXIST) {
563 ref = btrfs_item_ptr(leaf, path->slots[0],
564 struct btrfs_extent_data_ref);
565 if (match_extent_data_ref(leaf, ref, root_objectid,
566 owner, offset))
567 break;
b3b4aa74 568 btrfs_release_path(path);
5d4f98a2
YZ
569 key.offset++;
570 ret = btrfs_insert_empty_item(trans, root, path, &key,
571 size);
572 if (ret && ret != -EEXIST)
573 goto fail;
31840ae1 574
5d4f98a2
YZ
575 leaf = path->nodes[0];
576 }
577 ref = btrfs_item_ptr(leaf, path->slots[0],
578 struct btrfs_extent_data_ref);
579 if (ret == 0) {
580 btrfs_set_extent_data_ref_root(leaf, ref,
581 root_objectid);
582 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
583 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
584 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
585 } else {
586 num_refs = btrfs_extent_data_ref_count(leaf, ref);
587 num_refs += refs_to_add;
588 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
31840ae1 589 }
31840ae1 590 }
50564b65 591 btrfs_mark_buffer_dirty(trans, leaf);
5d4f98a2
YZ
592 ret = 0;
593fail:
b3b4aa74 594 btrfs_release_path(path);
7bb86316 595 return ret;
74493f7a
CM
596}
597
5d4f98a2 598static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
76d76e78 599 struct btrfs_root *root,
5d4f98a2 600 struct btrfs_path *path,
5b2a54bb 601 int refs_to_drop)
31840ae1 602{
5d4f98a2
YZ
603 struct btrfs_key key;
604 struct btrfs_extent_data_ref *ref1 = NULL;
605 struct btrfs_shared_data_ref *ref2 = NULL;
31840ae1 606 struct extent_buffer *leaf;
5d4f98a2 607 u32 num_refs = 0;
31840ae1
ZY
608 int ret = 0;
609
610 leaf = path->nodes[0];
5d4f98a2
YZ
611 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
612
613 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
614 ref1 = btrfs_item_ptr(leaf, path->slots[0],
615 struct btrfs_extent_data_ref);
616 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
617 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
618 ref2 = btrfs_item_ptr(leaf, path->slots[0],
619 struct btrfs_shared_data_ref);
620 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
5d4f98a2 621 } else {
182741d2
QW
622 btrfs_err(trans->fs_info,
623 "unrecognized backref key (%llu %u %llu)",
624 key.objectid, key.type, key.offset);
625 btrfs_abort_transaction(trans, -EUCLEAN);
626 return -EUCLEAN;
5d4f98a2
YZ
627 }
628
56bec294
CM
629 BUG_ON(num_refs < refs_to_drop);
630 num_refs -= refs_to_drop;
5d4f98a2 631
31840ae1 632 if (num_refs == 0) {
76d76e78 633 ret = btrfs_del_item(trans, root, path);
31840ae1 634 } else {
5d4f98a2
YZ
635 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
636 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
637 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
638 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
50564b65 639 btrfs_mark_buffer_dirty(trans, leaf);
31840ae1 640 }
31840ae1
ZY
641 return ret;
642}
643
9ed0dea0 644static noinline u32 extent_data_ref_count(struct btrfs_path *path,
5d4f98a2 645 struct btrfs_extent_inline_ref *iref)
15916de8 646{
5d4f98a2
YZ
647 struct btrfs_key key;
648 struct extent_buffer *leaf;
649 struct btrfs_extent_data_ref *ref1;
650 struct btrfs_shared_data_ref *ref2;
651 u32 num_refs = 0;
3de28d57 652 int type;
5d4f98a2
YZ
653
654 leaf = path->nodes[0];
655 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
ba3c2b19 656
5d4f98a2 657 if (iref) {
3de28d57
LB
658 /*
659 * If type is invalid, we should have bailed out earlier than
660 * this call.
661 */
662 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
663 ASSERT(type != BTRFS_REF_TYPE_INVALID);
664 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
5d4f98a2
YZ
665 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
666 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
667 } else {
668 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
669 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
670 }
671 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
672 ref1 = btrfs_item_ptr(leaf, path->slots[0],
673 struct btrfs_extent_data_ref);
674 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
675 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
676 ref2 = btrfs_item_ptr(leaf, path->slots[0],
677 struct btrfs_shared_data_ref);
678 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
5d4f98a2
YZ
679 } else {
680 WARN_ON(1);
681 }
682 return num_refs;
683}
15916de8 684
5d4f98a2 685static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
5d4f98a2
YZ
686 struct btrfs_path *path,
687 u64 bytenr, u64 parent,
688 u64 root_objectid)
1f3c79a2 689{
29cbcf40 690 struct btrfs_root *root = btrfs_extent_root(trans->fs_info, bytenr);
5d4f98a2 691 struct btrfs_key key;
1f3c79a2 692 int ret;
1f3c79a2 693
5d4f98a2
YZ
694 key.objectid = bytenr;
695 if (parent) {
696 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
697 key.offset = parent;
698 } else {
699 key.type = BTRFS_TREE_BLOCK_REF_KEY;
700 key.offset = root_objectid;
1f3c79a2
LH
701 }
702
5d4f98a2
YZ
703 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
704 if (ret > 0)
705 ret = -ENOENT;
5d4f98a2 706 return ret;
1f3c79a2
LH
707}
708
5d4f98a2 709static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
5d4f98a2
YZ
710 struct btrfs_path *path,
711 u64 bytenr, u64 parent,
712 u64 root_objectid)
31840ae1 713{
29cbcf40 714 struct btrfs_root *root = btrfs_extent_root(trans->fs_info, bytenr);
5d4f98a2 715 struct btrfs_key key;
31840ae1 716 int ret;
31840ae1 717
5d4f98a2
YZ
718 key.objectid = bytenr;
719 if (parent) {
720 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
721 key.offset = parent;
722 } else {
723 key.type = BTRFS_TREE_BLOCK_REF_KEY;
724 key.offset = root_objectid;
725 }
726
29cbcf40 727 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
b3b4aa74 728 btrfs_release_path(path);
31840ae1
ZY
729 return ret;
730}
731
5d4f98a2 732static inline int extent_ref_type(u64 parent, u64 owner)
31840ae1 733{
5d4f98a2
YZ
734 int type;
735 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
736 if (parent > 0)
737 type = BTRFS_SHARED_BLOCK_REF_KEY;
738 else
739 type = BTRFS_TREE_BLOCK_REF_KEY;
740 } else {
741 if (parent > 0)
742 type = BTRFS_SHARED_DATA_REF_KEY;
743 else
744 type = BTRFS_EXTENT_DATA_REF_KEY;
745 }
746 return type;
31840ae1 747}
56bec294 748
2c47e605
YZ
749static int find_next_key(struct btrfs_path *path, int level,
750 struct btrfs_key *key)
56bec294 751
02217ed2 752{
2c47e605 753 for (; level < BTRFS_MAX_LEVEL; level++) {
5d4f98a2
YZ
754 if (!path->nodes[level])
755 break;
5d4f98a2
YZ
756 if (path->slots[level] + 1 >=
757 btrfs_header_nritems(path->nodes[level]))
758 continue;
759 if (level == 0)
760 btrfs_item_key_to_cpu(path->nodes[level], key,
761 path->slots[level] + 1);
762 else
763 btrfs_node_key_to_cpu(path->nodes[level], key,
764 path->slots[level] + 1);
765 return 0;
766 }
767 return 1;
768}
037e6390 769
5d4f98a2
YZ
770/*
771 * look for inline back ref. if back ref is found, *ref_ret is set
772 * to the address of inline back ref, and 0 is returned.
773 *
774 * if back ref isn't found, *ref_ret is set to the address where it
775 * should be inserted, and -ENOENT is returned.
776 *
777 * if insert is true and there are too many inline back refs, the path
778 * points to the extent item, and -EAGAIN is returned.
779 *
780 * NOTE: inline back refs are ordered in the same way that back ref
781 * items in the tree are ordered.
782 */
783static noinline_for_stack
784int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
5d4f98a2
YZ
785 struct btrfs_path *path,
786 struct btrfs_extent_inline_ref **ref_ret,
787 u64 bytenr, u64 num_bytes,
788 u64 parent, u64 root_objectid,
789 u64 owner, u64 offset, int insert)
790{
867cc1fb 791 struct btrfs_fs_info *fs_info = trans->fs_info;
29cbcf40 792 struct btrfs_root *root = btrfs_extent_root(fs_info, bytenr);
5d4f98a2
YZ
793 struct btrfs_key key;
794 struct extent_buffer *leaf;
795 struct btrfs_extent_item *ei;
796 struct btrfs_extent_inline_ref *iref;
797 u64 flags;
798 u64 item_size;
799 unsigned long ptr;
800 unsigned long end;
801 int extra_size;
802 int type;
803 int want;
804 int ret;
0b246afa 805 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
3de28d57 806 int needed;
26b8003f 807
db94535d 808 key.objectid = bytenr;
31840ae1 809 key.type = BTRFS_EXTENT_ITEM_KEY;
56bec294 810 key.offset = num_bytes;
31840ae1 811
5d4f98a2
YZ
812 want = extent_ref_type(parent, owner);
813 if (insert) {
814 extra_size = btrfs_extent_inline_ref_size(want);
9a664971 815 path->search_for_extension = 1;
85d4198e 816 path->keep_locks = 1;
5d4f98a2
YZ
817 } else
818 extra_size = -1;
3173a18f
JB
819
820 /*
16d1c062
NB
821 * Owner is our level, so we can just add one to get the level for the
822 * block we are interested in.
3173a18f
JB
823 */
824 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
825 key.type = BTRFS_METADATA_ITEM_KEY;
826 key.offset = owner;
827 }
828
829again:
5d4f98a2 830 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
cc925b96 831 if (ret < 0)
5d4f98a2 832 goto out;
3173a18f
JB
833
834 /*
835 * We may be a newly converted file system which still has the old fat
836 * extent entries for metadata, so try and see if we have one of those.
837 */
838 if (ret > 0 && skinny_metadata) {
839 skinny_metadata = false;
840 if (path->slots[0]) {
841 path->slots[0]--;
842 btrfs_item_key_to_cpu(path->nodes[0], &key,
843 path->slots[0]);
844 if (key.objectid == bytenr &&
845 key.type == BTRFS_EXTENT_ITEM_KEY &&
846 key.offset == num_bytes)
847 ret = 0;
848 }
849 if (ret) {
9ce49a0b 850 key.objectid = bytenr;
3173a18f
JB
851 key.type = BTRFS_EXTENT_ITEM_KEY;
852 key.offset = num_bytes;
853 btrfs_release_path(path);
854 goto again;
855 }
856 }
857
79787eaa 858 if (ret && !insert) {
cc925b96 859 ret = -ENOENT;
79787eaa 860 goto out;
fae7f21c 861 } else if (WARN_ON(ret)) {
7f72f505
QW
862 btrfs_print_leaf(path->nodes[0]);
863 btrfs_err(fs_info,
864"extent item not found for insert, bytenr %llu num_bytes %llu parent %llu root_objectid %llu owner %llu offset %llu",
865 bytenr, num_bytes, parent, root_objectid, owner,
866 offset);
eba444f1 867 ret = -EUCLEAN;
492104c8 868 goto out;
79787eaa 869 }
5d4f98a2
YZ
870
871 leaf = path->nodes[0];
3212fa14 872 item_size = btrfs_item_size(leaf, path->slots[0]);
6d8ff4e4 873 if (unlikely(item_size < sizeof(*ei))) {
cc925b96 874 ret = -EUCLEAN;
182741d2
QW
875 btrfs_err(fs_info,
876 "unexpected extent item size, has %llu expect >= %zu",
877 item_size, sizeof(*ei));
cc925b96 878 btrfs_abort_transaction(trans, ret);
ba3c2b19
NB
879 goto out;
880 }
5d4f98a2 881
5d4f98a2
YZ
882 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
883 flags = btrfs_extent_flags(leaf, ei);
884
885 ptr = (unsigned long)(ei + 1);
886 end = (unsigned long)ei + item_size;
887
3173a18f 888 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
5d4f98a2
YZ
889 ptr += sizeof(struct btrfs_tree_block_info);
890 BUG_ON(ptr > end);
5d4f98a2
YZ
891 }
892
3de28d57
LB
893 if (owner >= BTRFS_FIRST_FREE_OBJECTID)
894 needed = BTRFS_REF_TYPE_DATA;
895 else
896 needed = BTRFS_REF_TYPE_BLOCK;
897
cc925b96 898 ret = -ENOENT;
da8848ac 899 while (ptr < end) {
5d4f98a2 900 iref = (struct btrfs_extent_inline_ref *)ptr;
3de28d57 901 type = btrfs_get_extent_inline_ref_type(leaf, iref, needed);
d9a620f7
BB
902 if (type == BTRFS_EXTENT_OWNER_REF_KEY) {
903 ASSERT(btrfs_fs_incompat(fs_info, SIMPLE_QUOTA));
904 ptr += btrfs_extent_inline_ref_size(type);
905 continue;
906 }
3de28d57 907 if (type == BTRFS_REF_TYPE_INVALID) {
cc925b96 908 ret = -EUCLEAN;
3de28d57
LB
909 goto out;
910 }
911
5d4f98a2
YZ
912 if (want < type)
913 break;
914 if (want > type) {
915 ptr += btrfs_extent_inline_ref_size(type);
916 continue;
917 }
918
919 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
920 struct btrfs_extent_data_ref *dref;
921 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
922 if (match_extent_data_ref(leaf, dref, root_objectid,
923 owner, offset)) {
cc925b96 924 ret = 0;
5d4f98a2
YZ
925 break;
926 }
927 if (hash_extent_data_ref_item(leaf, dref) <
928 hash_extent_data_ref(root_objectid, owner, offset))
929 break;
930 } else {
931 u64 ref_offset;
932 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
933 if (parent > 0) {
934 if (parent == ref_offset) {
cc925b96 935 ret = 0;
5d4f98a2
YZ
936 break;
937 }
938 if (ref_offset < parent)
939 break;
940 } else {
941 if (root_objectid == ref_offset) {
cc925b96 942 ret = 0;
5d4f98a2
YZ
943 break;
944 }
945 if (ref_offset < root_objectid)
946 break;
947 }
948 }
949 ptr += btrfs_extent_inline_ref_size(type);
950 }
da8848ac
FM
951
952 if (unlikely(ptr > end)) {
953 ret = -EUCLEAN;
954 btrfs_print_leaf(path->nodes[0]);
955 btrfs_crit(fs_info,
956"overrun extent record at slot %d while looking for inline extent for root %llu owner %llu offset %llu parent %llu",
957 path->slots[0], root_objectid, owner, offset, parent);
958 goto out;
959 }
960
cc925b96 961 if (ret == -ENOENT && insert) {
5d4f98a2
YZ
962 if (item_size + extra_size >=
963 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
cc925b96 964 ret = -EAGAIN;
5d4f98a2
YZ
965 goto out;
966 }
967 /*
968 * To add new inline back ref, we have to make sure
969 * there is no corresponding back ref item.
970 * For simplicity, we just do not add new inline back
971 * ref if there is any kind of item for this block
972 */
2c47e605
YZ
973 if (find_next_key(path, 0, &key) == 0 &&
974 key.objectid == bytenr &&
85d4198e 975 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
cc925b96 976 ret = -EAGAIN;
5d4f98a2
YZ
977 goto out;
978 }
979 }
980 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
981out:
85d4198e 982 if (insert) {
5d4f98a2 983 path->keep_locks = 0;
9a664971 984 path->search_for_extension = 0;
5d4f98a2
YZ
985 btrfs_unlock_up_safe(path, 1);
986 }
cc925b96 987 return ret;
5d4f98a2
YZ
988}
989
990/*
991 * helper to add new inline back ref
992 */
993static noinline_for_stack
50564b65 994void setup_inline_extent_backref(struct btrfs_trans_handle *trans,
143bede5
JM
995 struct btrfs_path *path,
996 struct btrfs_extent_inline_ref *iref,
997 u64 parent, u64 root_objectid,
998 u64 owner, u64 offset, int refs_to_add,
999 struct btrfs_delayed_extent_op *extent_op)
5d4f98a2
YZ
1000{
1001 struct extent_buffer *leaf;
1002 struct btrfs_extent_item *ei;
1003 unsigned long ptr;
1004 unsigned long end;
1005 unsigned long item_offset;
1006 u64 refs;
1007 int size;
1008 int type;
5d4f98a2
YZ
1009
1010 leaf = path->nodes[0];
1011 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1012 item_offset = (unsigned long)iref - (unsigned long)ei;
1013
1014 type = extent_ref_type(parent, owner);
1015 size = btrfs_extent_inline_ref_size(type);
1016
50564b65 1017 btrfs_extend_item(trans, path, size);
5d4f98a2
YZ
1018
1019 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1020 refs = btrfs_extent_refs(leaf, ei);
1021 refs += refs_to_add;
1022 btrfs_set_extent_refs(leaf, ei, refs);
1023 if (extent_op)
1024 __run_delayed_extent_op(extent_op, leaf, ei);
1025
1026 ptr = (unsigned long)ei + item_offset;
3212fa14 1027 end = (unsigned long)ei + btrfs_item_size(leaf, path->slots[0]);
5d4f98a2
YZ
1028 if (ptr < end - size)
1029 memmove_extent_buffer(leaf, ptr + size, ptr,
1030 end - size - ptr);
1031
1032 iref = (struct btrfs_extent_inline_ref *)ptr;
1033 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1034 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1035 struct btrfs_extent_data_ref *dref;
1036 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1037 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1038 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1039 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1040 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1041 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1042 struct btrfs_shared_data_ref *sref;
1043 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1044 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1045 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1046 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1047 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1048 } else {
1049 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1050 }
50564b65 1051 btrfs_mark_buffer_dirty(trans, leaf);
5d4f98a2
YZ
1052}
1053
1054static int lookup_extent_backref(struct btrfs_trans_handle *trans,
5d4f98a2
YZ
1055 struct btrfs_path *path,
1056 struct btrfs_extent_inline_ref **ref_ret,
1057 u64 bytenr, u64 num_bytes, u64 parent,
1058 u64 root_objectid, u64 owner, u64 offset)
1059{
1060 int ret;
1061
867cc1fb
NB
1062 ret = lookup_inline_extent_backref(trans, path, ref_ret, bytenr,
1063 num_bytes, parent, root_objectid,
1064 owner, offset, 0);
5d4f98a2 1065 if (ret != -ENOENT)
54aa1f4d 1066 return ret;
5d4f98a2 1067
b3b4aa74 1068 btrfs_release_path(path);
5d4f98a2
YZ
1069 *ref_ret = NULL;
1070
1071 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
b8582eea
NB
1072 ret = lookup_tree_block_ref(trans, path, bytenr, parent,
1073 root_objectid);
5d4f98a2 1074 } else {
bd1d53ef
NB
1075 ret = lookup_extent_data_ref(trans, path, bytenr, parent,
1076 root_objectid, owner, offset);
b9473439 1077 }
5d4f98a2
YZ
1078 return ret;
1079}
31840ae1 1080
5d4f98a2
YZ
1081/*
1082 * helper to update/remove inline back ref
1083 */
50564b65
FM
1084static noinline_for_stack int update_inline_extent_backref(
1085 struct btrfs_trans_handle *trans,
1086 struct btrfs_path *path,
143bede5
JM
1087 struct btrfs_extent_inline_ref *iref,
1088 int refs_to_mod,
5b2a54bb 1089 struct btrfs_delayed_extent_op *extent_op)
5d4f98a2 1090{
61a18f1c 1091 struct extent_buffer *leaf = path->nodes[0];
25761430 1092 struct btrfs_fs_info *fs_info = leaf->fs_info;
5d4f98a2
YZ
1093 struct btrfs_extent_item *ei;
1094 struct btrfs_extent_data_ref *dref = NULL;
1095 struct btrfs_shared_data_ref *sref = NULL;
1096 unsigned long ptr;
1097 unsigned long end;
1098 u32 item_size;
1099 int size;
1100 int type;
5d4f98a2
YZ
1101 u64 refs;
1102
5d4f98a2
YZ
1103 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1104 refs = btrfs_extent_refs(leaf, ei);
25761430
QW
1105 if (unlikely(refs_to_mod < 0 && refs + refs_to_mod <= 0)) {
1106 struct btrfs_key key;
1107 u32 extent_size;
1108
1109 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1110 if (key.type == BTRFS_METADATA_ITEM_KEY)
1111 extent_size = fs_info->nodesize;
1112 else
1113 extent_size = key.offset;
1114 btrfs_print_leaf(leaf);
1115 btrfs_err(fs_info,
1116 "invalid refs_to_mod for extent %llu num_bytes %u, has %d expect >= -%llu",
1117 key.objectid, extent_size, refs_to_mod, refs);
1118 return -EUCLEAN;
1119 }
5d4f98a2
YZ
1120 refs += refs_to_mod;
1121 btrfs_set_extent_refs(leaf, ei, refs);
1122 if (extent_op)
1123 __run_delayed_extent_op(extent_op, leaf, ei);
1124
25761430 1125 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_ANY);
3de28d57 1126 /*
25761430
QW
1127 * Function btrfs_get_extent_inline_ref_type() has already printed
1128 * error messages.
3de28d57 1129 */
25761430
QW
1130 if (unlikely(type == BTRFS_REF_TYPE_INVALID))
1131 return -EUCLEAN;
5d4f98a2
YZ
1132
1133 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1134 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1135 refs = btrfs_extent_data_ref_count(leaf, dref);
1136 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1137 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1138 refs = btrfs_shared_data_ref_count(leaf, sref);
1139 } else {
1140 refs = 1;
25761430
QW
1141 /*
1142 * For tree blocks we can only drop one ref for it, and tree
1143 * blocks should not have refs > 1.
1144 *
1145 * Furthermore if we're inserting a new inline backref, we
1146 * won't reach this path either. That would be
1147 * setup_inline_extent_backref().
1148 */
1149 if (unlikely(refs_to_mod != -1)) {
1150 struct btrfs_key key;
1151
1152 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1153
1154 btrfs_print_leaf(leaf);
1155 btrfs_err(fs_info,
1156 "invalid refs_to_mod for tree block %llu, has %d expect -1",
1157 key.objectid, refs_to_mod);
1158 return -EUCLEAN;
1159 }
56bec294 1160 }
31840ae1 1161
25761430
QW
1162 if (unlikely(refs_to_mod < 0 && refs < -refs_to_mod)) {
1163 struct btrfs_key key;
1164 u32 extent_size;
1165
1166 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1167 if (key.type == BTRFS_METADATA_ITEM_KEY)
1168 extent_size = fs_info->nodesize;
1169 else
1170 extent_size = key.offset;
1171 btrfs_print_leaf(leaf);
1172 btrfs_err(fs_info,
1173"invalid refs_to_mod for backref entry, iref %lu extent %llu num_bytes %u, has %d expect >= -%llu",
1174 (unsigned long)iref, key.objectid, extent_size,
1175 refs_to_mod, refs);
1176 return -EUCLEAN;
1177 }
5d4f98a2
YZ
1178 refs += refs_to_mod;
1179
1180 if (refs > 0) {
1181 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1182 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1183 else
1184 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1185 } else {
1186 size = btrfs_extent_inline_ref_size(type);
3212fa14 1187 item_size = btrfs_item_size(leaf, path->slots[0]);
5d4f98a2
YZ
1188 ptr = (unsigned long)iref;
1189 end = (unsigned long)ei + item_size;
1190 if (ptr + size < end)
1191 memmove_extent_buffer(leaf, ptr, ptr + size,
1192 end - ptr - size);
1193 item_size -= size;
50564b65 1194 btrfs_truncate_item(trans, path, item_size, 1);
5d4f98a2 1195 }
50564b65 1196 btrfs_mark_buffer_dirty(trans, leaf);
25761430 1197 return 0;
5d4f98a2
YZ
1198}
1199
1200static noinline_for_stack
1201int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
5d4f98a2
YZ
1202 struct btrfs_path *path,
1203 u64 bytenr, u64 num_bytes, u64 parent,
1204 u64 root_objectid, u64 owner,
1205 u64 offset, int refs_to_add,
1206 struct btrfs_delayed_extent_op *extent_op)
1207{
1208 struct btrfs_extent_inline_ref *iref;
1209 int ret;
1210
867cc1fb
NB
1211 ret = lookup_inline_extent_backref(trans, path, &iref, bytenr,
1212 num_bytes, parent, root_objectid,
1213 owner, offset, 1);
5d4f98a2 1214 if (ret == 0) {
07cce5cf
QW
1215 /*
1216 * We're adding refs to a tree block we already own, this
1217 * should not happen at all.
1218 */
1219 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
eee3b811 1220 btrfs_print_leaf(path->nodes[0]);
07cce5cf 1221 btrfs_crit(trans->fs_info,
eee3b811
QW
1222"adding refs to an existing tree ref, bytenr %llu num_bytes %llu root_objectid %llu slot %u",
1223 bytenr, num_bytes, root_objectid, path->slots[0]);
07cce5cf
QW
1224 return -EUCLEAN;
1225 }
50564b65
FM
1226 ret = update_inline_extent_backref(trans, path, iref,
1227 refs_to_add, extent_op);
5d4f98a2 1228 } else if (ret == -ENOENT) {
50564b65 1229 setup_inline_extent_backref(trans, path, iref, parent,
143bede5
JM
1230 root_objectid, owner, offset,
1231 refs_to_add, extent_op);
1232 ret = 0;
771ed689 1233 }
5d4f98a2
YZ
1234 return ret;
1235}
31840ae1 1236
5d4f98a2 1237static int remove_extent_backref(struct btrfs_trans_handle *trans,
76d76e78 1238 struct btrfs_root *root,
5d4f98a2
YZ
1239 struct btrfs_path *path,
1240 struct btrfs_extent_inline_ref *iref,
5b2a54bb 1241 int refs_to_drop, int is_data)
5d4f98a2 1242{
143bede5 1243 int ret = 0;
b9473439 1244
5d4f98a2 1245 BUG_ON(!is_data && refs_to_drop != 1);
5b2a54bb 1246 if (iref)
50564b65
FM
1247 ret = update_inline_extent_backref(trans, path, iref,
1248 -refs_to_drop, NULL);
5b2a54bb
JB
1249 else if (is_data)
1250 ret = remove_extent_data_ref(trans, root, path, refs_to_drop);
1251 else
76d76e78 1252 ret = btrfs_del_item(trans, root, path);
5d4f98a2
YZ
1253 return ret;
1254}
1255
d04c6b88
JM
1256static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len,
1257 u64 *discarded_bytes)
5d4f98a2 1258{
86557861
JM
1259 int j, ret = 0;
1260 u64 bytes_left, end;
adbe7e38 1261 u64 aligned_start = ALIGN(start, 1 << SECTOR_SHIFT);
d04c6b88 1262
4d89d377
JM
1263 if (WARN_ON(start != aligned_start)) {
1264 len -= aligned_start - start;
adbe7e38 1265 len = round_down(len, 1 << SECTOR_SHIFT);
4d89d377
JM
1266 start = aligned_start;
1267 }
d04c6b88 1268
4d89d377 1269 *discarded_bytes = 0;
86557861
JM
1270
1271 if (!len)
1272 return 0;
1273
1274 end = start + len;
1275 bytes_left = len;
1276
1277 /* Skip any superblocks on this device. */
1278 for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) {
1279 u64 sb_start = btrfs_sb_offset(j);
1280 u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE;
1281 u64 size = sb_start - start;
1282
1283 if (!in_range(sb_start, start, bytes_left) &&
1284 !in_range(sb_end, start, bytes_left) &&
1285 !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE))
1286 continue;
1287
1288 /*
1289 * Superblock spans beginning of range. Adjust start and
1290 * try again.
1291 */
1292 if (sb_start <= start) {
1293 start += sb_end - start;
1294 if (start > end) {
1295 bytes_left = 0;
1296 break;
1297 }
1298 bytes_left = end - start;
1299 continue;
1300 }
1301
1302 if (size) {
29e70be2
AJ
1303 ret = blkdev_issue_discard(bdev, start >> SECTOR_SHIFT,
1304 size >> SECTOR_SHIFT,
44abff2c 1305 GFP_NOFS);
86557861
JM
1306 if (!ret)
1307 *discarded_bytes += size;
1308 else if (ret != -EOPNOTSUPP)
1309 return ret;
1310 }
1311
1312 start = sb_end;
1313 if (start > end) {
1314 bytes_left = 0;
1315 break;
1316 }
1317 bytes_left = end - start;
1318 }
1319
1320 if (bytes_left) {
29e70be2
AJ
1321 ret = blkdev_issue_discard(bdev, start >> SECTOR_SHIFT,
1322 bytes_left >> SECTOR_SHIFT,
44abff2c 1323 GFP_NOFS);
4d89d377 1324 if (!ret)
86557861 1325 *discarded_bytes += bytes_left;
4d89d377 1326 }
d04c6b88 1327 return ret;
5d4f98a2 1328}
5d4f98a2 1329
a4012f06 1330static int do_discard_extent(struct btrfs_discard_stripe *stripe, u64 *bytes)
6143c23c
NA
1331{
1332 struct btrfs_device *dev = stripe->dev;
1333 struct btrfs_fs_info *fs_info = dev->fs_info;
1334 struct btrfs_dev_replace *dev_replace = &fs_info->dev_replace;
1335 u64 phys = stripe->physical;
1336 u64 len = stripe->length;
1337 u64 discarded = 0;
1338 int ret = 0;
1339
1340 /* Zone reset on a zoned filesystem */
1341 if (btrfs_can_zone_reset(dev, phys, len)) {
1342 u64 src_disc;
1343
1344 ret = btrfs_reset_device_zone(dev, phys, len, &discarded);
1345 if (ret)
1346 goto out;
1347
1348 if (!btrfs_dev_replace_is_ongoing(dev_replace) ||
1349 dev != dev_replace->srcdev)
1350 goto out;
1351
1352 src_disc = discarded;
1353
1354 /* Send to replace target as well */
1355 ret = btrfs_reset_device_zone(dev_replace->tgtdev, phys, len,
1356 &discarded);
1357 discarded += src_disc;
70200574 1358 } else if (bdev_max_discard_sectors(stripe->dev->bdev)) {
6143c23c
NA
1359 ret = btrfs_issue_discard(dev->bdev, phys, len, &discarded);
1360 } else {
1361 ret = 0;
1362 *bytes = 0;
1363 }
1364
1365out:
1366 *bytes = discarded;
1367 return ret;
1368}
1369
2ff7e61e 1370int btrfs_discard_extent(struct btrfs_fs_info *fs_info, u64 bytenr,
1edb647b 1371 u64 num_bytes, u64 *actual_bytes)
5d4f98a2 1372{
6b7faadd 1373 int ret = 0;
5378e607 1374 u64 discarded_bytes = 0;
6b7faadd
QW
1375 u64 end = bytenr + num_bytes;
1376 u64 cur = bytenr;
e244a0ae 1377
2999241d 1378 /*
a4012f06
CH
1379 * Avoid races with device replace and make sure the devices in the
1380 * stripes don't go away while we are discarding.
2999241d 1381 */
0b246afa 1382 btrfs_bio_counter_inc_blocked(fs_info);
6b7faadd 1383 while (cur < end) {
a4012f06
CH
1384 struct btrfs_discard_stripe *stripes;
1385 unsigned int num_stripes;
5d4f98a2
YZ
1386 int i;
1387
6b7faadd 1388 num_bytes = end - cur;
a4012f06
CH
1389 stripes = btrfs_map_discard(fs_info, cur, &num_bytes, &num_stripes);
1390 if (IS_ERR(stripes)) {
1391 ret = PTR_ERR(stripes);
1392 if (ret == -EOPNOTSUPP)
1393 ret = 0;
1394 break;
1395 }
5d4f98a2 1396
a4012f06
CH
1397 for (i = 0; i < num_stripes; i++) {
1398 struct btrfs_discard_stripe *stripe = stripes + i;
d04c6b88 1399 u64 bytes;
38b5f68e 1400
a4012f06 1401 if (!stripe->dev->bdev) {
627e0873
FM
1402 ASSERT(btrfs_test_opt(fs_info, DEGRADED));
1403 continue;
1404 }
dcba6e48 1405
a4012f06
CH
1406 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE,
1407 &stripe->dev->dev_state))
5e753a81
AJ
1408 continue;
1409
6143c23c 1410 ret = do_discard_extent(stripe, &bytes);
a4012f06 1411 if (ret) {
6b7faadd 1412 /*
a4012f06
CH
1413 * Keep going if discard is not supported by the
1414 * device.
6b7faadd 1415 */
a4012f06
CH
1416 if (ret != -EOPNOTSUPP)
1417 break;
1418 ret = 0;
1419 } else {
1420 discarded_bytes += bytes;
6b7faadd 1421 }
5d4f98a2 1422 }
a4012f06
CH
1423 kfree(stripes);
1424 if (ret)
1425 break;
6b7faadd 1426 cur += num_bytes;
5d4f98a2 1427 }
0b246afa 1428 btrfs_bio_counter_dec(fs_info);
5378e607
LD
1429 if (actual_bytes)
1430 *actual_bytes = discarded_bytes;
5d4f98a2 1431 return ret;
5d4f98a2
YZ
1432}
1433
79787eaa 1434/* Can return -ENOMEM */
5d4f98a2 1435int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
82fa113f 1436 struct btrfs_ref *generic_ref)
5d4f98a2 1437{
82fa113f 1438 struct btrfs_fs_info *fs_info = trans->fs_info;
5d4f98a2 1439 int ret;
66d7e7f0 1440
82fa113f
QW
1441 ASSERT(generic_ref->type != BTRFS_REF_NOT_SET &&
1442 generic_ref->action);
1443 BUG_ON(generic_ref->type == BTRFS_REF_METADATA &&
610647d7 1444 generic_ref->tree_ref.ref_root == BTRFS_TREE_LOG_OBJECTID);
5d4f98a2 1445
82fa113f 1446 if (generic_ref->type == BTRFS_REF_METADATA)
2187374f 1447 ret = btrfs_add_delayed_tree_ref(trans, generic_ref, NULL);
82fa113f 1448 else
2187374f 1449 ret = btrfs_add_delayed_data_ref(trans, generic_ref, 0);
d7eae340 1450
82fa113f 1451 btrfs_ref_tree_mod(fs_info, generic_ref);
8a5040f7 1452
5d4f98a2
YZ
1453 return ret;
1454}
1455
bd3c685e 1456/*
9580503b 1457 * Insert backreference for a given extent.
bd3c685e 1458 *
07cce5cf
QW
1459 * The counterpart is in __btrfs_free_extent(), with examples and more details
1460 * how it works.
1461 *
bd3c685e
NB
1462 * @trans: Handle of transaction
1463 *
1464 * @node: The delayed ref node used to get the bytenr/length for
1465 * extent whose references are incremented.
1466 *
1467 * @parent: If this is a shared extent (BTRFS_SHARED_DATA_REF_KEY/
1468 * BTRFS_SHARED_BLOCK_REF_KEY) then it holds the logical
1469 * bytenr of the parent block. Since new extents are always
1470 * created with indirect references, this will only be the case
1471 * when relocating a shared extent. In that case, root_objectid
1a9fd417 1472 * will be BTRFS_TREE_RELOC_OBJECTID. Otherwise, parent must
bd3c685e
NB
1473 * be 0
1474 *
1475 * @root_objectid: The id of the root where this modification has originated,
1476 * this can be either one of the well-known metadata trees or
1477 * the subvolume id which references this extent.
1478 *
1479 * @owner: For data extents it is the inode number of the owning file.
1480 * For metadata extents this parameter holds the level in the
1481 * tree of the extent.
1482 *
1483 * @offset: For metadata extents the offset is ignored and is currently
1484 * always passed as 0. For data extents it is the fileoffset
1485 * this extent belongs to.
1486 *
bd3c685e
NB
1487 * @extent_op Pointer to a structure, holding information necessary when
1488 * updating a tree block's flags
1489 *
1490 */
5d4f98a2 1491static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
c682f9b3 1492 struct btrfs_delayed_ref_node *node,
5d4f98a2 1493 u64 parent, u64 root_objectid,
88b2d088 1494 u64 owner, u64 offset,
5d4f98a2
YZ
1495 struct btrfs_delayed_extent_op *extent_op)
1496{
1497 struct btrfs_path *path;
1498 struct extent_buffer *leaf;
1499 struct btrfs_extent_item *item;
fcebe456 1500 struct btrfs_key key;
c682f9b3
QW
1501 u64 bytenr = node->bytenr;
1502 u64 num_bytes = node->num_bytes;
5d4f98a2 1503 u64 refs;
88b2d088 1504 int refs_to_add = node->ref_mod;
5d4f98a2 1505 int ret;
5d4f98a2
YZ
1506
1507 path = btrfs_alloc_path();
1508 if (!path)
1509 return -ENOMEM;
1510
5d4f98a2 1511 /* this will setup the path even if it fails to insert the back ref */
a639cdeb
NB
1512 ret = insert_inline_extent_backref(trans, path, bytenr, num_bytes,
1513 parent, root_objectid, owner,
1514 offset, refs_to_add, extent_op);
0ed4792a 1515 if ((ret < 0 && ret != -EAGAIN) || !ret)
5d4f98a2 1516 goto out;
fcebe456
JB
1517
1518 /*
1519 * Ok we had -EAGAIN which means we didn't have space to insert and
1520 * inline extent ref, so just update the reference count and add a
1521 * normal backref.
1522 */
5d4f98a2 1523 leaf = path->nodes[0];
fcebe456 1524 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
5d4f98a2
YZ
1525 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1526 refs = btrfs_extent_refs(leaf, item);
1527 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
1528 if (extent_op)
1529 __run_delayed_extent_op(extent_op, leaf, item);
56bec294 1530
50564b65 1531 btrfs_mark_buffer_dirty(trans, leaf);
b3b4aa74 1532 btrfs_release_path(path);
56bec294 1533
56bec294 1534 /* now insert the actual backref */
d2f79e63 1535 if (owner < BTRFS_FIRST_FREE_OBJECTID)
65cd6d9e
NB
1536 ret = insert_tree_block_ref(trans, path, bytenr, parent,
1537 root_objectid);
d2f79e63 1538 else
65cd6d9e
NB
1539 ret = insert_extent_data_ref(trans, path, bytenr, parent,
1540 root_objectid, owner, offset,
1541 refs_to_add);
d2f79e63 1542
79787eaa 1543 if (ret)
66642832 1544 btrfs_abort_transaction(trans, ret);
5d4f98a2 1545out:
56bec294 1546 btrfs_free_path(path);
30d133fc 1547 return ret;
56bec294
CM
1548}
1549
e85a0ada
BB
1550static void free_head_ref_squota_rsv(struct btrfs_fs_info *fs_info,
1551 struct btrfs_delayed_ref_head *href)
1552{
1553 u64 root = href->owning_root;
1554
1555 /*
1556 * Don't check must_insert_reserved, as this is called from contexts
1557 * where it has already been unset.
1558 */
1559 if (btrfs_qgroup_mode(fs_info) != BTRFS_QGROUP_MODE_SIMPLE ||
1560 !href->is_data || !is_fstree(root))
1561 return;
1562
1563 btrfs_qgroup_free_refroot(fs_info, root, href->reserved_bytes,
1564 BTRFS_QGROUP_RSV_DATA);
1565}
1566
5d4f98a2 1567static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
cecbb533 1568 struct btrfs_delayed_ref_head *href,
5d4f98a2
YZ
1569 struct btrfs_delayed_ref_node *node,
1570 struct btrfs_delayed_extent_op *extent_op,
61c681fe 1571 bool insert_reserved)
56bec294 1572{
5d4f98a2
YZ
1573 int ret = 0;
1574 struct btrfs_delayed_data_ref *ref;
5d4f98a2 1575 u64 parent = 0;
5d4f98a2
YZ
1576 u64 flags = 0;
1577
5d4f98a2 1578 ref = btrfs_delayed_node_to_data_ref(node);
2bf98ef3 1579 trace_run_delayed_data_ref(trans->fs_info, node, ref, node->action);
599c75ec 1580
5d4f98a2
YZ
1581 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
1582 parent = ref->parent;
5d4f98a2
YZ
1583
1584 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
7cce0d69 1585 struct btrfs_key key;
cecbb533
BB
1586 struct btrfs_squota_delta delta = {
1587 .root = href->owning_root,
1588 .num_bytes = node->num_bytes,
cecbb533
BB
1589 .is_data = true,
1590 .is_inc = true,
bd7c1ea3 1591 .generation = trans->transid,
cecbb533 1592 };
7cce0d69 1593
3173a18f 1594 if (extent_op)
5d4f98a2 1595 flags |= extent_op->flags_to_set;
7cce0d69
FM
1596
1597 key.objectid = node->bytenr;
1598 key.type = BTRFS_EXTENT_ITEM_KEY;
1599 key.offset = node->num_bytes;
1600
e721043a 1601 ret = alloc_reserved_file_extent(trans, parent, ref->root,
ef89b824 1602 flags, ref->objectid,
7cce0d69 1603 ref->offset, &key,
2672a051 1604 node->ref_mod, href->owning_root);
e85a0ada 1605 free_head_ref_squota_rsv(trans->fs_info, href);
cecbb533
BB
1606 if (!ret)
1607 ret = btrfs_record_squota_delta(trans->fs_info, &delta);
5d4f98a2 1608 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
e721043a 1609 ret = __btrfs_inc_extent_ref(trans, node, parent, ref->root,
2590d0f1 1610 ref->objectid, ref->offset,
88b2d088 1611 extent_op);
5d4f98a2 1612 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
cecbb533 1613 ret = __btrfs_free_extent(trans, href, node, parent,
e721043a 1614 ref->root, ref->objectid,
1df6b3c0 1615 ref->offset, extent_op);
5d4f98a2
YZ
1616 } else {
1617 BUG();
1618 }
1619 return ret;
1620}
1621
1622static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
1623 struct extent_buffer *leaf,
1624 struct btrfs_extent_item *ei)
1625{
1626 u64 flags = btrfs_extent_flags(leaf, ei);
1627 if (extent_op->update_flags) {
1628 flags |= extent_op->flags_to_set;
1629 btrfs_set_extent_flags(leaf, ei, flags);
1630 }
1631
1632 if (extent_op->update_key) {
1633 struct btrfs_tree_block_info *bi;
1634 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
1635 bi = (struct btrfs_tree_block_info *)(ei + 1);
1636 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
1637 }
1638}
1639
1640static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
d278850e 1641 struct btrfs_delayed_ref_head *head,
5d4f98a2
YZ
1642 struct btrfs_delayed_extent_op *extent_op)
1643{
20b9a2d6 1644 struct btrfs_fs_info *fs_info = trans->fs_info;
29cbcf40 1645 struct btrfs_root *root;
5d4f98a2
YZ
1646 struct btrfs_key key;
1647 struct btrfs_path *path;
1648 struct btrfs_extent_item *ei;
1649 struct extent_buffer *leaf;
1650 u32 item_size;
56bec294 1651 int ret;
0e3696f8 1652 int metadata = 1;
5d4f98a2 1653
bf31f87f 1654 if (TRANS_ABORTED(trans))
79787eaa
JM
1655 return 0;
1656
0e3696f8 1657 if (!btrfs_fs_incompat(fs_info, SKINNY_METADATA))
3173a18f
JB
1658 metadata = 0;
1659
5d4f98a2
YZ
1660 path = btrfs_alloc_path();
1661 if (!path)
1662 return -ENOMEM;
1663
d278850e 1664 key.objectid = head->bytenr;
5d4f98a2 1665
3173a18f 1666 if (metadata) {
3173a18f 1667 key.type = BTRFS_METADATA_ITEM_KEY;
b1c79e09 1668 key.offset = extent_op->level;
3173a18f
JB
1669 } else {
1670 key.type = BTRFS_EXTENT_ITEM_KEY;
d278850e 1671 key.offset = head->num_bytes;
3173a18f
JB
1672 }
1673
29cbcf40 1674 root = btrfs_extent_root(fs_info, key.objectid);
3173a18f 1675again:
29cbcf40 1676 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
5d4f98a2 1677 if (ret < 0) {
5d4f98a2 1678 goto out;
20fb05a6 1679 } else if (ret > 0) {
3173a18f 1680 if (metadata) {
55994887
FDBM
1681 if (path->slots[0] > 0) {
1682 path->slots[0]--;
1683 btrfs_item_key_to_cpu(path->nodes[0], &key,
1684 path->slots[0]);
d278850e 1685 if (key.objectid == head->bytenr &&
55994887 1686 key.type == BTRFS_EXTENT_ITEM_KEY &&
d278850e 1687 key.offset == head->num_bytes)
55994887
FDBM
1688 ret = 0;
1689 }
1690 if (ret > 0) {
1691 btrfs_release_path(path);
1692 metadata = 0;
3173a18f 1693
d278850e
JB
1694 key.objectid = head->bytenr;
1695 key.offset = head->num_bytes;
55994887
FDBM
1696 key.type = BTRFS_EXTENT_ITEM_KEY;
1697 goto again;
1698 }
1699 } else {
20fb05a6 1700 ret = -EUCLEAN;
8ec0a4a5
FM
1701 btrfs_err(fs_info,
1702 "missing extent item for extent %llu num_bytes %llu level %d",
1703 head->bytenr, head->num_bytes, extent_op->level);
55994887 1704 goto out;
3173a18f 1705 }
5d4f98a2
YZ
1706 }
1707
1708 leaf = path->nodes[0];
3212fa14 1709 item_size = btrfs_item_size(leaf, path->slots[0]);
ba3c2b19 1710
6d8ff4e4 1711 if (unlikely(item_size < sizeof(*ei))) {
20fb05a6 1712 ret = -EUCLEAN;
182741d2
QW
1713 btrfs_err(fs_info,
1714 "unexpected extent item size, has %u expect >= %zu",
1715 item_size, sizeof(*ei));
20fb05a6 1716 btrfs_abort_transaction(trans, ret);
ba3c2b19
NB
1717 goto out;
1718 }
1719
5d4f98a2
YZ
1720 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1721 __run_delayed_extent_op(extent_op, leaf, ei);
56bec294 1722
50564b65 1723 btrfs_mark_buffer_dirty(trans, leaf);
5d4f98a2
YZ
1724out:
1725 btrfs_free_path(path);
20fb05a6 1726 return ret;
56bec294
CM
1727}
1728
5d4f98a2 1729static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
cecbb533 1730 struct btrfs_delayed_ref_head *href,
5d4f98a2
YZ
1731 struct btrfs_delayed_ref_node *node,
1732 struct btrfs_delayed_extent_op *extent_op,
61c681fe 1733 bool insert_reserved)
56bec294
CM
1734{
1735 int ret = 0;
cecbb533 1736 struct btrfs_fs_info *fs_info = trans->fs_info;
5d4f98a2 1737 struct btrfs_delayed_tree_ref *ref;
5d4f98a2
YZ
1738 u64 parent = 0;
1739 u64 ref_root = 0;
56bec294 1740
5d4f98a2 1741 ref = btrfs_delayed_node_to_tree_ref(node);
f97806f2 1742 trace_run_delayed_tree_ref(trans->fs_info, node, ref, node->action);
599c75ec 1743
5d4f98a2
YZ
1744 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
1745 parent = ref->parent;
fcebe456 1746 ref_root = ref->root;
5d4f98a2 1747
1bf76df3 1748 if (unlikely(node->ref_mod != 1)) {
f97806f2 1749 btrfs_err(trans->fs_info,
1bf76df3 1750 "btree block %llu has %d references rather than 1: action %d ref_root %llu parent %llu",
02794222
LB
1751 node->bytenr, node->ref_mod, node->action, ref_root,
1752 parent);
1bf76df3 1753 return -EUCLEAN;
02794222 1754 }
5d4f98a2 1755 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
cecbb533
BB
1756 struct btrfs_squota_delta delta = {
1757 .root = href->owning_root,
1758 .num_bytes = fs_info->nodesize,
cecbb533
BB
1759 .is_data = false,
1760 .is_inc = true,
bd7c1ea3 1761 .generation = trans->transid,
cecbb533
BB
1762 };
1763
3173a18f 1764 BUG_ON(!extent_op || !extent_op->update_flags);
21ebfbe7 1765 ret = alloc_reserved_tree_block(trans, node, extent_op);
cecbb533
BB
1766 if (!ret)
1767 btrfs_record_squota_delta(fs_info, &delta);
5d4f98a2 1768 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
2590d0f1 1769 ret = __btrfs_inc_extent_ref(trans, node, parent, ref_root,
88b2d088 1770 ref->level, 0, extent_op);
5d4f98a2 1771 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
cecbb533 1772 ret = __btrfs_free_extent(trans, href, node, parent, ref_root,
1df6b3c0 1773 ref->level, 0, extent_op);
5d4f98a2
YZ
1774 } else {
1775 BUG();
1776 }
56bec294
CM
1777 return ret;
1778}
1779
1780/* helper function to actually process a single delayed ref entry */
5d4f98a2 1781static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
cecbb533 1782 struct btrfs_delayed_ref_head *href,
5d4f98a2
YZ
1783 struct btrfs_delayed_ref_node *node,
1784 struct btrfs_delayed_extent_op *extent_op,
61c681fe 1785 bool insert_reserved)
56bec294 1786{
79787eaa
JM
1787 int ret = 0;
1788
bf31f87f 1789 if (TRANS_ABORTED(trans)) {
e85a0ada 1790 if (insert_reserved) {
b25c36f8 1791 btrfs_pin_extent(trans, node->bytenr, node->num_bytes, 1);
e85a0ada
BB
1792 free_head_ref_squota_rsv(trans->fs_info, href);
1793 }
79787eaa 1794 return 0;
857cc2fc 1795 }
79787eaa 1796
5d4f98a2
YZ
1797 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
1798 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
cecbb533 1799 ret = run_delayed_tree_ref(trans, href, node, extent_op,
5d4f98a2
YZ
1800 insert_reserved);
1801 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
1802 node->type == BTRFS_SHARED_DATA_REF_KEY)
cecbb533 1803 ret = run_delayed_data_ref(trans, href, node, extent_op,
5d4f98a2 1804 insert_reserved);
d9a620f7
BB
1805 else if (node->type == BTRFS_EXTENT_OWNER_REF_KEY)
1806 ret = 0;
5d4f98a2
YZ
1807 else
1808 BUG();
80ee54bf 1809 if (ret && insert_reserved)
b25c36f8 1810 btrfs_pin_extent(trans, node->bytenr, node->num_bytes, 1);
39f501d6
QW
1811 if (ret < 0)
1812 btrfs_err(trans->fs_info,
1813"failed to run delayed ref for logical %llu num_bytes %llu type %u action %u ref_mod %d: %d",
1814 node->bytenr, node->num_bytes, node->type,
1815 node->action, node->ref_mod, ret);
5d4f98a2 1816 return ret;
56bec294
CM
1817}
1818
c6fc2454 1819static inline struct btrfs_delayed_ref_node *
56bec294
CM
1820select_delayed_ref(struct btrfs_delayed_ref_head *head)
1821{
cffc3374
FM
1822 struct btrfs_delayed_ref_node *ref;
1823
e3d03965 1824 if (RB_EMPTY_ROOT(&head->ref_tree.rb_root))
c6fc2454 1825 return NULL;
d7df2c79 1826
cffc3374
FM
1827 /*
1828 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
1829 * This is to prevent a ref count from going down to zero, which deletes
1830 * the extent item from the extent tree, when there still are references
1831 * to add, which would fail because they would not find the extent item.
1832 */
1d57ee94
WX
1833 if (!list_empty(&head->ref_add_list))
1834 return list_first_entry(&head->ref_add_list,
1835 struct btrfs_delayed_ref_node, add_list);
1836
e3d03965 1837 ref = rb_entry(rb_first_cached(&head->ref_tree),
0e0adbcf 1838 struct btrfs_delayed_ref_node, ref_node);
1d57ee94
WX
1839 ASSERT(list_empty(&ref->add_list));
1840 return ref;
56bec294
CM
1841}
1842
2eadaa22
JB
1843static void unselect_delayed_ref_head(struct btrfs_delayed_ref_root *delayed_refs,
1844 struct btrfs_delayed_ref_head *head)
1845{
1846 spin_lock(&delayed_refs->lock);
61c681fe 1847 head->processing = false;
2eadaa22
JB
1848 delayed_refs->num_heads_ready++;
1849 spin_unlock(&delayed_refs->lock);
1850 btrfs_delayed_ref_unlock(head);
1851}
1852
bedc6617
JB
1853static struct btrfs_delayed_extent_op *cleanup_extent_op(
1854 struct btrfs_delayed_ref_head *head)
b00e6250
JB
1855{
1856 struct btrfs_delayed_extent_op *extent_op = head->extent_op;
b00e6250
JB
1857
1858 if (!extent_op)
bedc6617
JB
1859 return NULL;
1860
b00e6250 1861 if (head->must_insert_reserved) {
bedc6617 1862 head->extent_op = NULL;
b00e6250 1863 btrfs_free_delayed_extent_op(extent_op);
bedc6617 1864 return NULL;
b00e6250 1865 }
bedc6617
JB
1866 return extent_op;
1867}
1868
1869static int run_and_cleanup_extent_op(struct btrfs_trans_handle *trans,
1870 struct btrfs_delayed_ref_head *head)
1871{
1872 struct btrfs_delayed_extent_op *extent_op;
1873 int ret;
1874
1875 extent_op = cleanup_extent_op(head);
1876 if (!extent_op)
1877 return 0;
1878 head->extent_op = NULL;
b00e6250 1879 spin_unlock(&head->lock);
20b9a2d6 1880 ret = run_delayed_extent_op(trans, head, extent_op);
b00e6250
JB
1881 btrfs_free_delayed_extent_op(extent_op);
1882 return ret ? ret : 1;
1883}
1884
8a526c44 1885u64 btrfs_cleanup_ref_head_accounting(struct btrfs_fs_info *fs_info,
31890da0
JB
1886 struct btrfs_delayed_ref_root *delayed_refs,
1887 struct btrfs_delayed_ref_head *head)
07c47775 1888{
e85a0ada
BB
1889 u64 ret = 0;
1890
81e75ac7
JB
1891 /*
1892 * We had csum deletions accounted for in our delayed refs rsv, we need
1893 * to drop the csum leaves for this update from our delayed_refs_rsv.
1894 */
1895 if (head->total_ref_mod < 0 && head->is_data) {
adb86dbe 1896 int nr_csums;
3ee56a58 1897
81e75ac7
JB
1898 spin_lock(&delayed_refs->lock);
1899 delayed_refs->pending_csums -= head->num_bytes;
1900 spin_unlock(&delayed_refs->lock);
adb86dbe 1901 nr_csums = btrfs_csum_bytes_to_leaves(fs_info, head->num_bytes);
3ee56a58 1902
adb86dbe 1903 btrfs_delayed_refs_rsv_release(fs_info, 0, nr_csums);
81e75ac7 1904
e85a0ada 1905 ret = btrfs_calc_delayed_ref_csum_bytes(fs_info, nr_csums);
3ee56a58 1906 }
e85a0ada
BB
1907 /* must_insert_reserved can be set only if we didn't run the head ref. */
1908 if (head->must_insert_reserved)
1909 free_head_ref_squota_rsv(fs_info, head);
8a526c44 1910
e85a0ada 1911 return ret;
07c47775
JB
1912}
1913
194ab0bc 1914static int cleanup_ref_head(struct btrfs_trans_handle *trans,
8a526c44
FM
1915 struct btrfs_delayed_ref_head *head,
1916 u64 *bytes_released)
194ab0bc 1917{
f9871edd
NB
1918
1919 struct btrfs_fs_info *fs_info = trans->fs_info;
194ab0bc
JB
1920 struct btrfs_delayed_ref_root *delayed_refs;
1921 int ret;
1922
1923 delayed_refs = &trans->transaction->delayed_refs;
1924
bedc6617 1925 ret = run_and_cleanup_extent_op(trans, head);
194ab0bc
JB
1926 if (ret < 0) {
1927 unselect_delayed_ref_head(delayed_refs, head);
1928 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
1929 return ret;
1930 } else if (ret) {
1931 return ret;
1932 }
1933
1934 /*
1935 * Need to drop our head ref lock and re-acquire the delayed ref lock
1936 * and then re-check to make sure nobody got added.
1937 */
1938 spin_unlock(&head->lock);
1939 spin_lock(&delayed_refs->lock);
1940 spin_lock(&head->lock);
e3d03965 1941 if (!RB_EMPTY_ROOT(&head->ref_tree.rb_root) || head->extent_op) {
194ab0bc
JB
1942 spin_unlock(&head->lock);
1943 spin_unlock(&delayed_refs->lock);
1944 return 1;
1945 }
d7baffda 1946 btrfs_delete_ref_head(delayed_refs, head);
c1103f7a 1947 spin_unlock(&head->lock);
1e7a1421 1948 spin_unlock(&delayed_refs->lock);
c1103f7a 1949
c1103f7a 1950 if (head->must_insert_reserved) {
b25c36f8 1951 btrfs_pin_extent(trans, head->bytenr, head->num_bytes, 1);
c1103f7a 1952 if (head->is_data) {
fc28b25e
JB
1953 struct btrfs_root *csum_root;
1954
1955 csum_root = btrfs_csum_root(fs_info, head->bytenr);
1956 ret = btrfs_del_csums(trans, csum_root, head->bytenr,
1957 head->num_bytes);
c1103f7a
JB
1958 }
1959 }
1960
3ee56a58 1961 *bytes_released += btrfs_cleanup_ref_head_accounting(fs_info, delayed_refs, head);
07c47775
JB
1962
1963 trace_run_delayed_ref_head(fs_info, head, 0);
c1103f7a 1964 btrfs_delayed_ref_unlock(head);
d278850e 1965 btrfs_put_delayed_ref_head(head);
856bd270 1966 return ret;
194ab0bc
JB
1967}
1968
b1cdbcb5
NB
1969static struct btrfs_delayed_ref_head *btrfs_obtain_ref_head(
1970 struct btrfs_trans_handle *trans)
1971{
1972 struct btrfs_delayed_ref_root *delayed_refs =
1973 &trans->transaction->delayed_refs;
1974 struct btrfs_delayed_ref_head *head = NULL;
1975 int ret;
1976
1977 spin_lock(&delayed_refs->lock);
5637c74b 1978 head = btrfs_select_ref_head(delayed_refs);
b1cdbcb5
NB
1979 if (!head) {
1980 spin_unlock(&delayed_refs->lock);
1981 return head;
1982 }
1983
1984 /*
1985 * Grab the lock that says we are going to process all the refs for
1986 * this head
1987 */
9e920a6f 1988 ret = btrfs_delayed_ref_lock(delayed_refs, head);
b1cdbcb5
NB
1989 spin_unlock(&delayed_refs->lock);
1990
1991 /*
1992 * We may have dropped the spin lock to get the head mutex lock, and
1993 * that might have given someone else time to free the head. If that's
1994 * true, it has been removed from our list and we can move on.
1995 */
1996 if (ret == -EAGAIN)
1997 head = ERR_PTR(-EAGAIN);
1998
1999 return head;
2000}
2001
e7261386 2002static int btrfs_run_delayed_refs_for_head(struct btrfs_trans_handle *trans,
3ee56a58
FM
2003 struct btrfs_delayed_ref_head *locked_ref,
2004 u64 *bytes_released)
e7261386
NB
2005{
2006 struct btrfs_fs_info *fs_info = trans->fs_info;
2007 struct btrfs_delayed_ref_root *delayed_refs;
2008 struct btrfs_delayed_extent_op *extent_op;
2009 struct btrfs_delayed_ref_node *ref;
61c681fe 2010 bool must_insert_reserved;
e7261386
NB
2011 int ret;
2012
2013 delayed_refs = &trans->transaction->delayed_refs;
2014
0110a4c4
NB
2015 lockdep_assert_held(&locked_ref->mutex);
2016 lockdep_assert_held(&locked_ref->lock);
2017
e7261386
NB
2018 while ((ref = select_delayed_ref(locked_ref))) {
2019 if (ref->seq &&
2020 btrfs_check_delayed_seq(fs_info, ref->seq)) {
2021 spin_unlock(&locked_ref->lock);
2022 unselect_delayed_ref_head(delayed_refs, locked_ref);
2023 return -EAGAIN;
2024 }
2025
e7261386
NB
2026 rb_erase_cached(&ref->ref_node, &locked_ref->ref_tree);
2027 RB_CLEAR_NODE(&ref->ref_node);
2028 if (!list_empty(&ref->add_list))
2029 list_del(&ref->add_list);
2030 /*
2031 * When we play the delayed ref, also correct the ref_mod on
2032 * head
2033 */
2034 switch (ref->action) {
2035 case BTRFS_ADD_DELAYED_REF:
2036 case BTRFS_ADD_DELAYED_EXTENT:
2037 locked_ref->ref_mod -= ref->ref_mod;
2038 break;
2039 case BTRFS_DROP_DELAYED_REF:
2040 locked_ref->ref_mod += ref->ref_mod;
2041 break;
2042 default:
2043 WARN_ON(1);
2044 }
2045 atomic_dec(&delayed_refs->num_entries);
2046
2047 /*
2048 * Record the must_insert_reserved flag before we drop the
2049 * spin lock.
2050 */
2051 must_insert_reserved = locked_ref->must_insert_reserved;
e85a0ada
BB
2052 /*
2053 * Unsetting this on the head ref relinquishes ownership of
2054 * the rsv_bytes, so it is critical that every possible code
2055 * path from here forward frees all reserves including qgroup
2056 * reserve.
2057 */
61c681fe 2058 locked_ref->must_insert_reserved = false;
e7261386
NB
2059
2060 extent_op = locked_ref->extent_op;
2061 locked_ref->extent_op = NULL;
2062 spin_unlock(&locked_ref->lock);
2063
cecbb533 2064 ret = run_one_delayed_ref(trans, locked_ref, ref, extent_op,
e7261386 2065 must_insert_reserved);
adb86dbe 2066 btrfs_delayed_refs_rsv_release(fs_info, 1, 0);
3ee56a58 2067 *bytes_released += btrfs_calc_delayed_ref_bytes(fs_info, 1);
cecbb533 2068
e7261386
NB
2069 btrfs_free_delayed_extent_op(extent_op);
2070 if (ret) {
2071 unselect_delayed_ref_head(delayed_refs, locked_ref);
2072 btrfs_put_delayed_ref(ref);
e7261386
NB
2073 return ret;
2074 }
2075
2076 btrfs_put_delayed_ref(ref);
2077 cond_resched();
2078
2079 spin_lock(&locked_ref->lock);
0c555c97 2080 btrfs_merge_delayed_refs(fs_info, delayed_refs, locked_ref);
e7261386
NB
2081 }
2082
2083 return 0;
2084}
2085
79787eaa
JM
2086/*
2087 * Returns 0 on success or if called with an already aborted transaction.
2088 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2089 */
d7df2c79 2090static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
8a526c44 2091 u64 min_bytes)
56bec294 2092{
0a1e458a 2093 struct btrfs_fs_info *fs_info = trans->fs_info;
56bec294 2094 struct btrfs_delayed_ref_root *delayed_refs;
56bec294
CM
2095 struct btrfs_delayed_ref_head *locked_ref = NULL;
2096 int ret;
d7df2c79 2097 unsigned long count = 0;
8a526c44
FM
2098 unsigned long max_count = 0;
2099 u64 bytes_processed = 0;
56bec294
CM
2100
2101 delayed_refs = &trans->transaction->delayed_refs;
8a526c44
FM
2102 if (min_bytes == 0) {
2103 max_count = delayed_refs->num_heads_ready;
2104 min_bytes = U64_MAX;
2105 }
2106
0110a4c4 2107 do {
56bec294 2108 if (!locked_ref) {
b1cdbcb5 2109 locked_ref = btrfs_obtain_ref_head(trans);
0110a4c4
NB
2110 if (IS_ERR_OR_NULL(locked_ref)) {
2111 if (PTR_ERR(locked_ref) == -EAGAIN) {
2112 continue;
2113 } else {
2114 break;
2115 }
56bec294 2116 }
0110a4c4 2117 count++;
56bec294 2118 }
2c3cf7d5
FM
2119 /*
2120 * We need to try and merge add/drops of the same ref since we
2121 * can run into issues with relocate dropping the implicit ref
2122 * and then it being added back again before the drop can
2123 * finish. If we merged anything we need to re-loop so we can
2124 * get a good ref.
2125 * Or we can get node references of the same type that weren't
2126 * merged when created due to bumps in the tree mod seq, and
2127 * we need to merge them to prevent adding an inline extent
2128 * backref before dropping it (triggering a BUG_ON at
2129 * insert_inline_extent_backref()).
2130 */
d7df2c79 2131 spin_lock(&locked_ref->lock);
0c555c97 2132 btrfs_merge_delayed_refs(fs_info, delayed_refs, locked_ref);
ae1e206b 2133
3ee56a58 2134 ret = btrfs_run_delayed_refs_for_head(trans, locked_ref, &bytes_processed);
0110a4c4
NB
2135 if (ret < 0 && ret != -EAGAIN) {
2136 /*
2137 * Error, btrfs_run_delayed_refs_for_head already
2138 * unlocked everything so just bail out
2139 */
2140 return ret;
2141 } else if (!ret) {
2142 /*
2143 * Success, perform the usual cleanup of a processed
2144 * head
2145 */
3ee56a58 2146 ret = cleanup_ref_head(trans, locked_ref, &bytes_processed);
194ab0bc 2147 if (ret > 0 ) {
b00e6250
JB
2148 /* We dropped our lock, we need to loop. */
2149 ret = 0;
d7df2c79 2150 continue;
194ab0bc
JB
2151 } else if (ret) {
2152 return ret;
5d4f98a2 2153 }
22cd2e7d 2154 }
1ce7a5ec 2155
b00e6250 2156 /*
0110a4c4
NB
2157 * Either success case or btrfs_run_delayed_refs_for_head
2158 * returned -EAGAIN, meaning we need to select another head
b00e6250 2159 */
b00e6250 2160
0110a4c4 2161 locked_ref = NULL;
c3e69d58 2162 cond_resched();
8a526c44
FM
2163 } while ((min_bytes != U64_MAX && bytes_processed < min_bytes) ||
2164 (max_count > 0 && count < max_count) ||
2165 locked_ref);
0a2b2a84 2166
d7df2c79 2167 return 0;
c3e69d58
CM
2168}
2169
709c0486
AJ
2170#ifdef SCRAMBLE_DELAYED_REFS
2171/*
2172 * Normally delayed refs get processed in ascending bytenr order. This
2173 * correlates in most cases to the order added. To expose dependencies on this
2174 * order, we start to process the tree in the middle instead of the beginning
2175 */
2176static u64 find_middle(struct rb_root *root)
2177{
2178 struct rb_node *n = root->rb_node;
2179 struct btrfs_delayed_ref_node *entry;
2180 int alt = 1;
2181 u64 middle;
2182 u64 first = 0, last = 0;
2183
2184 n = rb_first(root);
2185 if (n) {
2186 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2187 first = entry->bytenr;
2188 }
2189 n = rb_last(root);
2190 if (n) {
2191 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2192 last = entry->bytenr;
2193 }
2194 n = root->rb_node;
2195
2196 while (n) {
2197 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2198 WARN_ON(!entry->in_tree);
2199
2200 middle = entry->bytenr;
2201
2202 if (alt)
2203 n = n->rb_left;
2204 else
2205 n = n->rb_right;
2206
2207 alt = 1 - alt;
2208 }
2209 return middle;
2210}
2211#endif
2212
c3e69d58 2213/*
8a526c44
FM
2214 * Start processing the delayed reference count updates and extent insertions
2215 * we have queued up so far.
2216 *
2217 * @trans: Transaction handle.
2218 * @min_bytes: How many bytes of delayed references to process. After this
2219 * many bytes we stop processing delayed references if there are
2220 * any more. If 0 it means to run all existing delayed references,
2221 * but not new ones added after running all existing ones.
2222 * Use (u64)-1 (U64_MAX) to run all existing delayed references
2223 * plus any new ones that are added.
79787eaa
JM
2224 *
2225 * Returns 0 on success or if called with an aborted transaction
2226 * Returns <0 on error and aborts the transaction
c3e69d58 2227 */
8a526c44 2228int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans, u64 min_bytes)
c3e69d58 2229{
c79a70b1 2230 struct btrfs_fs_info *fs_info = trans->fs_info;
c3e69d58 2231 struct btrfs_delayed_ref_root *delayed_refs;
c3e69d58 2232 int ret;
c3e69d58 2233
79787eaa 2234 /* We'll clean this up in btrfs_cleanup_transaction */
bf31f87f 2235 if (TRANS_ABORTED(trans))
79787eaa
JM
2236 return 0;
2237
0b246afa 2238 if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags))
511711af
CM
2239 return 0;
2240
c3e69d58 2241 delayed_refs = &trans->transaction->delayed_refs;
c3e69d58 2242again:
709c0486
AJ
2243#ifdef SCRAMBLE_DELAYED_REFS
2244 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2245#endif
8a526c44 2246 ret = __btrfs_run_delayed_refs(trans, min_bytes);
d7df2c79 2247 if (ret < 0) {
66642832 2248 btrfs_abort_transaction(trans, ret);
d7df2c79 2249 return ret;
eb099670 2250 }
c3e69d58 2251
8a526c44 2252 if (min_bytes == U64_MAX) {
119e80df 2253 btrfs_create_pending_block_groups(trans);
ea658bad 2254
d7df2c79 2255 spin_lock(&delayed_refs->lock);
3cbb9f51 2256 if (RB_EMPTY_ROOT(&delayed_refs->href_root.rb_root)) {
d7df2c79 2257 spin_unlock(&delayed_refs->lock);
3cbb9f51 2258 return 0;
d7df2c79 2259 }
d278850e 2260 spin_unlock(&delayed_refs->lock);
e9d0b13b 2261
d7df2c79 2262 cond_resched();
56bec294 2263 goto again;
5f39d397 2264 }
3cbb9f51 2265
a28ec197
CM
2266 return 0;
2267}
2268
5d4f98a2 2269int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
4aec05fa 2270 struct extent_buffer *eb, u64 flags)
5d4f98a2
YZ
2271{
2272 struct btrfs_delayed_extent_op *extent_op;
4aec05fa 2273 int level = btrfs_header_level(eb);
5d4f98a2
YZ
2274 int ret;
2275
78a6184a 2276 extent_op = btrfs_alloc_delayed_extent_op();
5d4f98a2
YZ
2277 if (!extent_op)
2278 return -ENOMEM;
2279
2280 extent_op->flags_to_set = flags;
35b3ad50
DS
2281 extent_op->update_flags = true;
2282 extent_op->update_key = false;
b1c79e09 2283 extent_op->level = level;
5d4f98a2 2284
42c9d0b5 2285 ret = btrfs_add_delayed_extent_op(trans, eb->start, eb->len, extent_op);
5d4f98a2 2286 if (ret)
78a6184a 2287 btrfs_free_delayed_extent_op(extent_op);
5d4f98a2
YZ
2288 return ret;
2289}
2290
e4c3b2dc 2291static noinline int check_delayed_ref(struct btrfs_root *root,
5d4f98a2
YZ
2292 struct btrfs_path *path,
2293 u64 objectid, u64 offset, u64 bytenr)
2294{
2295 struct btrfs_delayed_ref_head *head;
2296 struct btrfs_delayed_ref_node *ref;
2297 struct btrfs_delayed_data_ref *data_ref;
2298 struct btrfs_delayed_ref_root *delayed_refs;
e4c3b2dc 2299 struct btrfs_transaction *cur_trans;
0e0adbcf 2300 struct rb_node *node;
5d4f98a2
YZ
2301 int ret = 0;
2302
998ac6d2 2303 spin_lock(&root->fs_info->trans_lock);
e4c3b2dc 2304 cur_trans = root->fs_info->running_transaction;
998ac6d2 2305 if (cur_trans)
2306 refcount_inc(&cur_trans->use_count);
2307 spin_unlock(&root->fs_info->trans_lock);
e4c3b2dc
LB
2308 if (!cur_trans)
2309 return 0;
2310
2311 delayed_refs = &cur_trans->delayed_refs;
5d4f98a2 2312 spin_lock(&delayed_refs->lock);
f72ad18e 2313 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
d7df2c79
JB
2314 if (!head) {
2315 spin_unlock(&delayed_refs->lock);
998ac6d2 2316 btrfs_put_transaction(cur_trans);
d7df2c79
JB
2317 return 0;
2318 }
5d4f98a2
YZ
2319
2320 if (!mutex_trylock(&head->mutex)) {
26ce9114
JB
2321 if (path->nowait) {
2322 spin_unlock(&delayed_refs->lock);
2323 btrfs_put_transaction(cur_trans);
2324 return -EAGAIN;
2325 }
2326
d278850e 2327 refcount_inc(&head->refs);
5d4f98a2
YZ
2328 spin_unlock(&delayed_refs->lock);
2329
b3b4aa74 2330 btrfs_release_path(path);
5d4f98a2 2331
8cc33e5c
DS
2332 /*
2333 * Mutex was contended, block until it's released and let
2334 * caller try again
2335 */
5d4f98a2
YZ
2336 mutex_lock(&head->mutex);
2337 mutex_unlock(&head->mutex);
d278850e 2338 btrfs_put_delayed_ref_head(head);
998ac6d2 2339 btrfs_put_transaction(cur_trans);
5d4f98a2
YZ
2340 return -EAGAIN;
2341 }
d7df2c79 2342 spin_unlock(&delayed_refs->lock);
5d4f98a2 2343
d7df2c79 2344 spin_lock(&head->lock);
0e0adbcf
JB
2345 /*
2346 * XXX: We should replace this with a proper search function in the
2347 * future.
2348 */
e3d03965
LB
2349 for (node = rb_first_cached(&head->ref_tree); node;
2350 node = rb_next(node)) {
0e0adbcf 2351 ref = rb_entry(node, struct btrfs_delayed_ref_node, ref_node);
d7df2c79
JB
2352 /* If it's a shared ref we know a cross reference exists */
2353 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
2354 ret = 1;
2355 break;
2356 }
5d4f98a2 2357
d7df2c79 2358 data_ref = btrfs_delayed_node_to_data_ref(ref);
5d4f98a2 2359
d7df2c79
JB
2360 /*
2361 * If our ref doesn't match the one we're currently looking at
2362 * then we have a cross reference.
2363 */
2364 if (data_ref->root != root->root_key.objectid ||
2365 data_ref->objectid != objectid ||
2366 data_ref->offset != offset) {
2367 ret = 1;
2368 break;
2369 }
5d4f98a2 2370 }
d7df2c79 2371 spin_unlock(&head->lock);
5d4f98a2 2372 mutex_unlock(&head->mutex);
998ac6d2 2373 btrfs_put_transaction(cur_trans);
5d4f98a2
YZ
2374 return ret;
2375}
2376
e4c3b2dc 2377static noinline int check_committed_ref(struct btrfs_root *root,
5d4f98a2 2378 struct btrfs_path *path,
a84d5d42
BB
2379 u64 objectid, u64 offset, u64 bytenr,
2380 bool strict)
be20aa9d 2381{
0b246afa 2382 struct btrfs_fs_info *fs_info = root->fs_info;
29cbcf40 2383 struct btrfs_root *extent_root = btrfs_extent_root(fs_info, bytenr);
f321e491 2384 struct extent_buffer *leaf;
5d4f98a2
YZ
2385 struct btrfs_extent_data_ref *ref;
2386 struct btrfs_extent_inline_ref *iref;
2387 struct btrfs_extent_item *ei;
f321e491 2388 struct btrfs_key key;
5d4f98a2 2389 u32 item_size;
d9a620f7 2390 u32 expected_size;
3de28d57 2391 int type;
be20aa9d 2392 int ret;
925baedd 2393
be20aa9d 2394 key.objectid = bytenr;
31840ae1 2395 key.offset = (u64)-1;
f321e491 2396 key.type = BTRFS_EXTENT_ITEM_KEY;
be20aa9d 2397
be20aa9d
CM
2398 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
2399 if (ret < 0)
2400 goto out;
79787eaa 2401 BUG_ON(ret == 0); /* Corruption */
80ff3856
YZ
2402
2403 ret = -ENOENT;
2404 if (path->slots[0] == 0)
31840ae1 2405 goto out;
be20aa9d 2406
31840ae1 2407 path->slots[0]--;
f321e491 2408 leaf = path->nodes[0];
5d4f98a2 2409 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
be20aa9d 2410
5d4f98a2 2411 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
be20aa9d 2412 goto out;
f321e491 2413
5d4f98a2 2414 ret = 1;
3212fa14 2415 item_size = btrfs_item_size(leaf, path->slots[0]);
5d4f98a2 2416 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
d9a620f7
BB
2417 expected_size = sizeof(*ei) + btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY);
2418
2419 /* No inline refs; we need to bail before checking for owner ref. */
2420 if (item_size == sizeof(*ei))
2421 goto out;
2422
2423 /* Check for an owner ref; skip over it to the real inline refs. */
2424 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
2425 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
2426 if (btrfs_fs_incompat(fs_info, SIMPLE_QUOTA) && type == BTRFS_EXTENT_OWNER_REF_KEY) {
2427 expected_size += btrfs_extent_inline_ref_size(BTRFS_EXTENT_OWNER_REF_KEY);
2428 iref = (struct btrfs_extent_inline_ref *)(iref + 1);
2429 }
bd09835d 2430
a6bd9cd1 2431 /* If extent item has more than 1 inline ref then it's shared */
d9a620f7 2432 if (item_size != expected_size)
5d4f98a2 2433 goto out;
be20aa9d 2434
a84d5d42
BB
2435 /*
2436 * If extent created before last snapshot => it's shared unless the
2437 * snapshot has been deleted. Use the heuristic if strict is false.
2438 */
2439 if (!strict &&
2440 (btrfs_extent_generation(leaf, ei) <=
2441 btrfs_root_last_snapshot(&root->root_item)))
5d4f98a2
YZ
2442 goto out;
2443
a6bd9cd1 2444 /* If this extent has SHARED_DATA_REF then it's shared */
3de28d57
LB
2445 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
2446 if (type != BTRFS_EXTENT_DATA_REF_KEY)
5d4f98a2
YZ
2447 goto out;
2448
2449 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
2450 if (btrfs_extent_refs(leaf, ei) !=
2451 btrfs_extent_data_ref_count(leaf, ref) ||
2452 btrfs_extent_data_ref_root(leaf, ref) !=
2453 root->root_key.objectid ||
2454 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
2455 btrfs_extent_data_ref_offset(leaf, ref) != offset)
2456 goto out;
2457
2458 ret = 0;
2459out:
2460 return ret;
2461}
2462
e4c3b2dc 2463int btrfs_cross_ref_exist(struct btrfs_root *root, u64 objectid, u64 offset,
1a89f173 2464 u64 bytenr, bool strict, struct btrfs_path *path)
5d4f98a2 2465{
5d4f98a2 2466 int ret;
5d4f98a2 2467
5d4f98a2 2468 do {
e4c3b2dc 2469 ret = check_committed_ref(root, path, objectid,
a84d5d42 2470 offset, bytenr, strict);
5d4f98a2 2471 if (ret && ret != -ENOENT)
f321e491 2472 goto out;
80ff3856 2473
380fd066
MT
2474 ret = check_delayed_ref(root, path, objectid, offset, bytenr);
2475 } while (ret == -EAGAIN);
5d4f98a2 2476
be20aa9d 2477out:
1a89f173 2478 btrfs_release_path(path);
37f00a6d 2479 if (btrfs_is_data_reloc_root(root))
f0486c68 2480 WARN_ON(ret > 0);
f321e491 2481 return ret;
be20aa9d 2482}
c5739bba 2483
5d4f98a2 2484static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
b7a9f29f 2485 struct btrfs_root *root,
5d4f98a2 2486 struct extent_buffer *buf,
e339a6b0 2487 int full_backref, int inc)
31840ae1 2488{
0b246afa 2489 struct btrfs_fs_info *fs_info = root->fs_info;
31840ae1 2490 u64 bytenr;
5d4f98a2
YZ
2491 u64 num_bytes;
2492 u64 parent;
31840ae1 2493 u64 ref_root;
31840ae1 2494 u32 nritems;
31840ae1
ZY
2495 struct btrfs_key key;
2496 struct btrfs_file_extent_item *fi;
82fa113f
QW
2497 struct btrfs_ref generic_ref = { 0 };
2498 bool for_reloc = btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC);
31840ae1 2499 int i;
82fa113f 2500 int action;
31840ae1
ZY
2501 int level;
2502 int ret = 0;
fccb84c9 2503
0b246afa 2504 if (btrfs_is_testing(fs_info))
faa2dbf0 2505 return 0;
fccb84c9 2506
31840ae1 2507 ref_root = btrfs_header_owner(buf);
31840ae1
ZY
2508 nritems = btrfs_header_nritems(buf);
2509 level = btrfs_header_level(buf);
2510
92a7cc42 2511 if (!test_bit(BTRFS_ROOT_SHAREABLE, &root->state) && level == 0)
5d4f98a2 2512 return 0;
31840ae1 2513
5d4f98a2
YZ
2514 if (full_backref)
2515 parent = buf->start;
2516 else
2517 parent = 0;
82fa113f
QW
2518 if (inc)
2519 action = BTRFS_ADD_DELAYED_REF;
2520 else
2521 action = BTRFS_DROP_DELAYED_REF;
5d4f98a2
YZ
2522
2523 for (i = 0; i < nritems; i++) {
31840ae1 2524 if (level == 0) {
5d4f98a2 2525 btrfs_item_key_to_cpu(buf, &key, i);
962a298f 2526 if (key.type != BTRFS_EXTENT_DATA_KEY)
31840ae1 2527 continue;
5d4f98a2 2528 fi = btrfs_item_ptr(buf, i,
31840ae1
ZY
2529 struct btrfs_file_extent_item);
2530 if (btrfs_file_extent_type(buf, fi) ==
2531 BTRFS_FILE_EXTENT_INLINE)
2532 continue;
2533 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
2534 if (bytenr == 0)
2535 continue;
5d4f98a2
YZ
2536
2537 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
2538 key.offset -= btrfs_file_extent_offset(buf, fi);
82fa113f 2539 btrfs_init_generic_ref(&generic_ref, action, bytenr,
457cb1dd 2540 num_bytes, parent, ref_root);
82fa113f 2541 btrfs_init_data_ref(&generic_ref, ref_root, key.objectid,
f42c5da6
NB
2542 key.offset, root->root_key.objectid,
2543 for_reloc);
dd28b6a5 2544 if (inc)
82fa113f 2545 ret = btrfs_inc_extent_ref(trans, &generic_ref);
dd28b6a5 2546 else
ffd4bb2a 2547 ret = btrfs_free_extent(trans, &generic_ref);
31840ae1
ZY
2548 if (ret)
2549 goto fail;
2550 } else {
5d4f98a2 2551 bytenr = btrfs_node_blockptr(buf, i);
0b246afa 2552 num_bytes = fs_info->nodesize;
457cb1dd 2553 /* We don't know the owning_root, use 0. */
82fa113f 2554 btrfs_init_generic_ref(&generic_ref, action, bytenr,
457cb1dd 2555 num_bytes, parent, 0);
f42c5da6
NB
2556 btrfs_init_tree_ref(&generic_ref, level - 1, ref_root,
2557 root->root_key.objectid, for_reloc);
dd28b6a5 2558 if (inc)
82fa113f 2559 ret = btrfs_inc_extent_ref(trans, &generic_ref);
dd28b6a5 2560 else
ffd4bb2a 2561 ret = btrfs_free_extent(trans, &generic_ref);
31840ae1
ZY
2562 if (ret)
2563 goto fail;
2564 }
2565 }
2566 return 0;
2567fail:
5d4f98a2
YZ
2568 return ret;
2569}
2570
2571int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
e339a6b0 2572 struct extent_buffer *buf, int full_backref)
5d4f98a2 2573{
e339a6b0 2574 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
5d4f98a2
YZ
2575}
2576
2577int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
e339a6b0 2578 struct extent_buffer *buf, int full_backref)
5d4f98a2 2579{
e339a6b0 2580 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
31840ae1
ZY
2581}
2582
1b86826d 2583static u64 get_alloc_profile_by_root(struct btrfs_root *root, int data)
9ed74f2d 2584{
0b246afa 2585 struct btrfs_fs_info *fs_info = root->fs_info;
b742bb82 2586 u64 flags;
53b381b3 2587 u64 ret;
9ed74f2d 2588
b742bb82
YZ
2589 if (data)
2590 flags = BTRFS_BLOCK_GROUP_DATA;
0b246afa 2591 else if (root == fs_info->chunk_root)
b742bb82 2592 flags = BTRFS_BLOCK_GROUP_SYSTEM;
9ed74f2d 2593 else
b742bb82 2594 flags = BTRFS_BLOCK_GROUP_METADATA;
9ed74f2d 2595
878d7b67 2596 ret = btrfs_get_alloc_profile(fs_info, flags);
53b381b3 2597 return ret;
6a63209f 2598}
9ed74f2d 2599
0eb997bf 2600static u64 first_logical_byte(struct btrfs_fs_info *fs_info)
a061fc8d 2601{
08dddb29
FM
2602 struct rb_node *leftmost;
2603 u64 bytenr = 0;
a1897fdd 2604
16b0c258 2605 read_lock(&fs_info->block_group_cache_lock);
0eb997bf 2606 /* Get the block group with the lowest logical start address. */
08dddb29
FM
2607 leftmost = rb_first_cached(&fs_info->block_group_cache_tree);
2608 if (leftmost) {
2609 struct btrfs_block_group *bg;
0f9dd46c 2610
08dddb29
FM
2611 bg = rb_entry(leftmost, struct btrfs_block_group, cache_node);
2612 bytenr = bg->start;
2613 }
16b0c258 2614 read_unlock(&fs_info->block_group_cache_lock);
d2fb3437
YZ
2615
2616 return bytenr;
a061fc8d
CM
2617}
2618
6690d071
NB
2619static int pin_down_extent(struct btrfs_trans_handle *trans,
2620 struct btrfs_block_group *cache,
f0486c68 2621 u64 bytenr, u64 num_bytes, int reserved)
324ae4df 2622{
fdf08605
DS
2623 struct btrfs_fs_info *fs_info = cache->fs_info;
2624
11833d66
YZ
2625 spin_lock(&cache->space_info->lock);
2626 spin_lock(&cache->lock);
2627 cache->pinned += num_bytes;
bb96c4e5
JB
2628 btrfs_space_info_update_bytes_pinned(fs_info, cache->space_info,
2629 num_bytes);
11833d66
YZ
2630 if (reserved) {
2631 cache->reserved -= num_bytes;
2632 cache->space_info->bytes_reserved -= num_bytes;
2633 }
2634 spin_unlock(&cache->lock);
2635 spin_unlock(&cache->space_info->lock);
68b38550 2636
fe1a598c 2637 set_extent_bit(&trans->transaction->pinned_extents, bytenr,
1d126800 2638 bytenr + num_bytes - 1, EXTENT_DIRTY, NULL);
f0486c68
YZ
2639 return 0;
2640}
68b38550 2641
b25c36f8 2642int btrfs_pin_extent(struct btrfs_trans_handle *trans,
f0486c68
YZ
2643 u64 bytenr, u64 num_bytes, int reserved)
2644{
32da5386 2645 struct btrfs_block_group *cache;
68b38550 2646
b25c36f8 2647 cache = btrfs_lookup_block_group(trans->fs_info, bytenr);
79787eaa 2648 BUG_ON(!cache); /* Logic error */
f0486c68 2649
6690d071 2650 pin_down_extent(trans, cache, bytenr, num_bytes, reserved);
f0486c68
YZ
2651
2652 btrfs_put_block_group(cache);
11833d66
YZ
2653 return 0;
2654}
2655
9fce5704 2656int btrfs_pin_extent_for_log_replay(struct btrfs_trans_handle *trans,
007dec8c 2657 const struct extent_buffer *eb)
e688b725 2658{
32da5386 2659 struct btrfs_block_group *cache;
b50c6e25 2660 int ret;
e688b725 2661
007dec8c 2662 cache = btrfs_lookup_block_group(trans->fs_info, eb->start);
b50c6e25
JB
2663 if (!cache)
2664 return -EINVAL;
e688b725
CM
2665
2666 /*
ced8ecf0
OS
2667 * Fully cache the free space first so that our pin removes the free space
2668 * from the cache.
e688b725 2669 */
ced8ecf0 2670 ret = btrfs_cache_block_group(cache, true);
9ad6d91f
FM
2671 if (ret)
2672 goto out;
e688b725 2673
007dec8c 2674 pin_down_extent(trans, cache, eb->start, eb->len, 0);
e688b725
CM
2675
2676 /* remove us from the free space cache (if we're there at all) */
007dec8c 2677 ret = btrfs_remove_free_space(cache, eb->start, eb->len);
9ad6d91f 2678out:
e688b725 2679 btrfs_put_block_group(cache);
b50c6e25 2680 return ret;
e688b725
CM
2681}
2682
2ff7e61e
JM
2683static int __exclude_logged_extent(struct btrfs_fs_info *fs_info,
2684 u64 start, u64 num_bytes)
8c2a1a30
JB
2685{
2686 int ret;
32da5386 2687 struct btrfs_block_group *block_group;
8c2a1a30 2688
0b246afa 2689 block_group = btrfs_lookup_block_group(fs_info, start);
8c2a1a30
JB
2690 if (!block_group)
2691 return -EINVAL;
2692
ced8ecf0 2693 ret = btrfs_cache_block_group(block_group, true);
9ad6d91f
FM
2694 if (ret)
2695 goto out;
8c2a1a30 2696
9ad6d91f
FM
2697 ret = btrfs_remove_free_space(block_group, start, num_bytes);
2698out:
8c2a1a30
JB
2699 btrfs_put_block_group(block_group);
2700 return ret;
2701}
2702
bcdc428c 2703int btrfs_exclude_logged_extents(struct extent_buffer *eb)
8c2a1a30 2704{
bcdc428c 2705 struct btrfs_fs_info *fs_info = eb->fs_info;
8c2a1a30
JB
2706 struct btrfs_file_extent_item *item;
2707 struct btrfs_key key;
2708 int found_type;
2709 int i;
b89311ef 2710 int ret = 0;
8c2a1a30 2711
2ff7e61e 2712 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS))
8c2a1a30
JB
2713 return 0;
2714
2715 for (i = 0; i < btrfs_header_nritems(eb); i++) {
2716 btrfs_item_key_to_cpu(eb, &key, i);
2717 if (key.type != BTRFS_EXTENT_DATA_KEY)
2718 continue;
2719 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
2720 found_type = btrfs_file_extent_type(eb, item);
2721 if (found_type == BTRFS_FILE_EXTENT_INLINE)
2722 continue;
2723 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
2724 continue;
2725 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
2726 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
b89311ef
GJ
2727 ret = __exclude_logged_extent(fs_info, key.objectid, key.offset);
2728 if (ret)
2729 break;
8c2a1a30
JB
2730 }
2731
b89311ef 2732 return ret;
8c2a1a30
JB
2733}
2734
9cfa3e34 2735static void
32da5386 2736btrfs_inc_block_group_reservations(struct btrfs_block_group *bg)
9cfa3e34
FM
2737{
2738 atomic_inc(&bg->reservations);
2739}
2740
c759c4e1
JB
2741/*
2742 * Returns the free cluster for the given space info and sets empty_cluster to
2743 * what it should be based on the mount options.
2744 */
2745static struct btrfs_free_cluster *
2ff7e61e
JM
2746fetch_cluster_info(struct btrfs_fs_info *fs_info,
2747 struct btrfs_space_info *space_info, u64 *empty_cluster)
c759c4e1
JB
2748{
2749 struct btrfs_free_cluster *ret = NULL;
c759c4e1
JB
2750
2751 *empty_cluster = 0;
2752 if (btrfs_mixed_space_info(space_info))
2753 return ret;
2754
c759c4e1 2755 if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
0b246afa 2756 ret = &fs_info->meta_alloc_cluster;
583b7231
HK
2757 if (btrfs_test_opt(fs_info, SSD))
2758 *empty_cluster = SZ_2M;
2759 else
ee22184b 2760 *empty_cluster = SZ_64K;
583b7231
HK
2761 } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) &&
2762 btrfs_test_opt(fs_info, SSD_SPREAD)) {
2763 *empty_cluster = SZ_2M;
0b246afa 2764 ret = &fs_info->data_alloc_cluster;
c759c4e1
JB
2765 }
2766
2767 return ret;
2768}
2769
2ff7e61e
JM
2770static int unpin_extent_range(struct btrfs_fs_info *fs_info,
2771 u64 start, u64 end,
678886bd 2772 const bool return_free_space)
ccd467d6 2773{
32da5386 2774 struct btrfs_block_group *cache = NULL;
7b398f8e
JB
2775 struct btrfs_space_info *space_info;
2776 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
c759c4e1 2777 struct btrfs_free_cluster *cluster = NULL;
11833d66 2778 u64 len;
c759c4e1
JB
2779 u64 total_unpinned = 0;
2780 u64 empty_cluster = 0;
7b398f8e 2781 bool readonly;
ccd467d6 2782
11833d66 2783 while (start <= end) {
7b398f8e 2784 readonly = false;
11833d66 2785 if (!cache ||
b3470b5d 2786 start >= cache->start + cache->length) {
11833d66
YZ
2787 if (cache)
2788 btrfs_put_block_group(cache);
c759c4e1 2789 total_unpinned = 0;
11833d66 2790 cache = btrfs_lookup_block_group(fs_info, start);
79787eaa 2791 BUG_ON(!cache); /* Logic error */
c759c4e1 2792
2ff7e61e 2793 cluster = fetch_cluster_info(fs_info,
c759c4e1
JB
2794 cache->space_info,
2795 &empty_cluster);
2796 empty_cluster <<= 1;
11833d66
YZ
2797 }
2798
b3470b5d 2799 len = cache->start + cache->length - start;
11833d66
YZ
2800 len = min(len, end + 1 - start);
2801
48ff7083
OS
2802 if (return_free_space)
2803 btrfs_add_free_space(cache, start, len);
11833d66 2804
f0486c68 2805 start += len;
c759c4e1 2806 total_unpinned += len;
7b398f8e 2807 space_info = cache->space_info;
f0486c68 2808
c759c4e1
JB
2809 /*
2810 * If this space cluster has been marked as fragmented and we've
2811 * unpinned enough in this block group to potentially allow a
2812 * cluster to be created inside of it go ahead and clear the
2813 * fragmented check.
2814 */
2815 if (cluster && cluster->fragmented &&
2816 total_unpinned > empty_cluster) {
2817 spin_lock(&cluster->lock);
2818 cluster->fragmented = 0;
2819 spin_unlock(&cluster->lock);
2820 }
2821
7b398f8e 2822 spin_lock(&space_info->lock);
11833d66
YZ
2823 spin_lock(&cache->lock);
2824 cache->pinned -= len;
bb96c4e5 2825 btrfs_space_info_update_bytes_pinned(fs_info, space_info, -len);
4f4db217 2826 space_info->max_extent_size = 0;
7b398f8e
JB
2827 if (cache->ro) {
2828 space_info->bytes_readonly += len;
2829 readonly = true;
169e0da9
NA
2830 } else if (btrfs_is_zoned(fs_info)) {
2831 /* Need reset before reusing in a zoned block group */
2832 space_info->bytes_zone_unusable += len;
2833 readonly = true;
7b398f8e 2834 }
11833d66 2835 spin_unlock(&cache->lock);
957780eb
JB
2836 if (!readonly && return_free_space &&
2837 global_rsv->space_info == space_info) {
7b398f8e
JB
2838 spin_lock(&global_rsv->lock);
2839 if (!global_rsv->full) {
c4bf1909
JC
2840 u64 to_add = min(len, global_rsv->size -
2841 global_rsv->reserved);
2842
957780eb 2843 global_rsv->reserved += to_add;
bb96c4e5
JB
2844 btrfs_space_info_update_bytes_may_use(fs_info,
2845 space_info, to_add);
7b398f8e
JB
2846 if (global_rsv->reserved >= global_rsv->size)
2847 global_rsv->full = 1;
957780eb 2848 len -= to_add;
7b398f8e
JB
2849 }
2850 spin_unlock(&global_rsv->lock);
2851 }
2732798c
JB
2852 /* Add to any tickets we may have */
2853 if (!readonly && return_free_space && len)
2854 btrfs_try_granting_tickets(fs_info, space_info);
7b398f8e 2855 spin_unlock(&space_info->lock);
ccd467d6 2856 }
11833d66
YZ
2857
2858 if (cache)
2859 btrfs_put_block_group(cache);
ccd467d6
CM
2860 return 0;
2861}
2862
5ead2dd0 2863int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans)
a28ec197 2864{
5ead2dd0 2865 struct btrfs_fs_info *fs_info = trans->fs_info;
32da5386 2866 struct btrfs_block_group *block_group, *tmp;
e33e17ee 2867 struct list_head *deleted_bgs;
11833d66 2868 struct extent_io_tree *unpin;
1a5bc167
CM
2869 u64 start;
2870 u64 end;
a28ec197 2871 int ret;
a28ec197 2872
fe119a6e 2873 unpin = &trans->transaction->pinned_extents;
11833d66 2874
bf31f87f 2875 while (!TRANS_ABORTED(trans)) {
0e6ec385
FM
2876 struct extent_state *cached_state = NULL;
2877
d4b450cd 2878 mutex_lock(&fs_info->unused_bg_unpin_mutex);
e5860f82
FM
2879 if (!find_first_extent_bit(unpin, 0, &start, &end,
2880 EXTENT_DIRTY, &cached_state)) {
d4b450cd 2881 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
a28ec197 2882 break;
d4b450cd 2883 }
1f3c79a2 2884
46b27f50 2885 if (btrfs_test_opt(fs_info, DISCARD_SYNC))
2ff7e61e 2886 ret = btrfs_discard_extent(fs_info, start,
5378e607 2887 end + 1 - start, NULL);
1f3c79a2 2888
0e6ec385 2889 clear_extent_dirty(unpin, start, end, &cached_state);
2ff7e61e 2890 unpin_extent_range(fs_info, start, end, true);
d4b450cd 2891 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
0e6ec385 2892 free_extent_state(cached_state);
b9473439 2893 cond_resched();
a28ec197 2894 }
817d52f8 2895
a2309300
DZ
2896 if (btrfs_test_opt(fs_info, DISCARD_ASYNC)) {
2897 btrfs_discard_calc_delay(&fs_info->discard_ctl);
b0643e59 2898 btrfs_discard_schedule_work(&fs_info->discard_ctl, true);
a2309300 2899 }
b0643e59 2900
e33e17ee
JM
2901 /*
2902 * Transaction is finished. We don't need the lock anymore. We
2903 * do need to clean up the block groups in case of a transaction
2904 * abort.
2905 */
2906 deleted_bgs = &trans->transaction->deleted_bgs;
2907 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
2908 u64 trimmed = 0;
2909
2910 ret = -EROFS;
bf31f87f 2911 if (!TRANS_ABORTED(trans))
2ff7e61e 2912 ret = btrfs_discard_extent(fs_info,
b3470b5d
DS
2913 block_group->start,
2914 block_group->length,
e33e17ee
JM
2915 &trimmed);
2916
2917 list_del_init(&block_group->bg_list);
6b7304af 2918 btrfs_unfreeze_block_group(block_group);
e33e17ee
JM
2919 btrfs_put_block_group(block_group);
2920
2921 if (ret) {
2922 const char *errstr = btrfs_decode_error(ret);
2923 btrfs_warn(fs_info,
913e1535 2924 "discard failed while removing blockgroup: errno=%d %s",
e33e17ee
JM
2925 ret, errstr);
2926 }
2927 }
2928
e20d96d6
CM
2929 return 0;
2930}
2931
8d299091
BB
2932/*
2933 * Parse an extent item's inline extents looking for a simple quotas owner ref.
2934 *
2935 * @fs_info: the btrfs_fs_info for this mount
2936 * @leaf: a leaf in the extent tree containing the extent item
2937 * @slot: the slot in the leaf where the extent item is found
2938 *
2939 * Returns the objectid of the root that originally allocated the extent item
2940 * if the inline owner ref is expected and present, otherwise 0.
2941 *
2942 * If an extent item has an owner ref item, it will be the first inline ref
2943 * item. Therefore the logic is to check whether there are any inline ref
2944 * items, then check the type of the first one.
2945 */
2946u64 btrfs_get_extent_owner_root(struct btrfs_fs_info *fs_info,
2947 struct extent_buffer *leaf, int slot)
2948{
2949 struct btrfs_extent_item *ei;
2950 struct btrfs_extent_inline_ref *iref;
2951 struct btrfs_extent_owner_ref *oref;
2952 unsigned long ptr;
2953 unsigned long end;
2954 int type;
2955
2956 if (!btrfs_fs_incompat(fs_info, SIMPLE_QUOTA))
2957 return 0;
2958
2959 ei = btrfs_item_ptr(leaf, slot, struct btrfs_extent_item);
2960 ptr = (unsigned long)(ei + 1);
2961 end = (unsigned long)ei + btrfs_item_size(leaf, slot);
2962
2963 /* No inline ref items of any kind, can't check type. */
2964 if (ptr == end)
2965 return 0;
2966
2967 iref = (struct btrfs_extent_inline_ref *)ptr;
2968 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_ANY);
2969
2970 /* We found an owner ref, get the root out of it. */
2971 if (type == BTRFS_EXTENT_OWNER_REF_KEY) {
2972 oref = (struct btrfs_extent_owner_ref *)(&iref->offset);
2973 return btrfs_extent_owner_ref_root_id(leaf, oref);
2974 }
2975
2976 /* We have inline refs, but not an owner ref. */
2977 return 0;
2978}
2979
8f8aa4c7 2980static int do_free_extent_accounting(struct btrfs_trans_handle *trans,
cecbb533 2981 u64 bytenr, struct btrfs_squota_delta *delta)
8f8aa4c7
JB
2982{
2983 int ret;
cecbb533 2984 u64 num_bytes = delta->num_bytes;
8f8aa4c7 2985
cecbb533 2986 if (delta->is_data) {
8f8aa4c7
JB
2987 struct btrfs_root *csum_root;
2988
2989 csum_root = btrfs_csum_root(trans->fs_info, bytenr);
2990 ret = btrfs_del_csums(trans, csum_root, bytenr, num_bytes);
2991 if (ret) {
2992 btrfs_abort_transaction(trans, ret);
2993 return ret;
2994 }
ca41504e
JT
2995
2996 ret = btrfs_delete_raid_extent(trans, bytenr, num_bytes);
2997 if (ret) {
2998 btrfs_abort_transaction(trans, ret);
2999 return ret;
3000 }
8f8aa4c7
JB
3001 }
3002
cecbb533
BB
3003 ret = btrfs_record_squota_delta(trans->fs_info, delta);
3004 if (ret) {
3005 btrfs_abort_transaction(trans, ret);
3006 return ret;
3007 }
3008
8f8aa4c7
JB
3009 ret = add_to_free_space_tree(trans, bytenr, num_bytes);
3010 if (ret) {
3011 btrfs_abort_transaction(trans, ret);
3012 return ret;
3013 }
3014
3015 ret = btrfs_update_block_group(trans, bytenr, num_bytes, false);
3016 if (ret)
3017 btrfs_abort_transaction(trans, ret);
3018
3019 return ret;
3020}
3021
eee3b811
QW
3022#define abort_and_dump(trans, path, fmt, args...) \
3023({ \
3024 btrfs_abort_transaction(trans, -EUCLEAN); \
3025 btrfs_print_leaf(path->nodes[0]); \
3026 btrfs_crit(trans->fs_info, fmt, ##args); \
3027})
3028
1c2a07f5
QW
3029/*
3030 * Drop one or more refs of @node.
3031 *
3032 * 1. Locate the extent refs.
3033 * It's either inline in EXTENT/METADATA_ITEM or in keyed SHARED_* item.
3034 * Locate it, then reduce the refs number or remove the ref line completely.
3035 *
3036 * 2. Update the refs count in EXTENT/METADATA_ITEM
3037 *
3038 * Inline backref case:
3039 *
3040 * in extent tree we have:
3041 *
3042 * item 0 key (13631488 EXTENT_ITEM 1048576) itemoff 16201 itemsize 82
3043 * refs 2 gen 6 flags DATA
3044 * extent data backref root FS_TREE objectid 258 offset 0 count 1
3045 * extent data backref root FS_TREE objectid 257 offset 0 count 1
3046 *
3047 * This function gets called with:
3048 *
3049 * node->bytenr = 13631488
3050 * node->num_bytes = 1048576
3051 * root_objectid = FS_TREE
3052 * owner_objectid = 257
3053 * owner_offset = 0
3054 * refs_to_drop = 1
3055 *
3056 * Then we should get some like:
3057 *
3058 * item 0 key (13631488 EXTENT_ITEM 1048576) itemoff 16201 itemsize 82
3059 * refs 1 gen 6 flags DATA
3060 * extent data backref root FS_TREE objectid 258 offset 0 count 1
3061 *
3062 * Keyed backref case:
3063 *
3064 * in extent tree we have:
3065 *
3066 * item 0 key (13631488 EXTENT_ITEM 1048576) itemoff 3971 itemsize 24
3067 * refs 754 gen 6 flags DATA
3068 * [...]
3069 * item 2 key (13631488 EXTENT_DATA_REF <HASH>) itemoff 3915 itemsize 28
3070 * extent data backref root FS_TREE objectid 866 offset 0 count 1
3071 *
3072 * This function get called with:
3073 *
3074 * node->bytenr = 13631488
3075 * node->num_bytes = 1048576
3076 * root_objectid = FS_TREE
3077 * owner_objectid = 866
3078 * owner_offset = 0
3079 * refs_to_drop = 1
3080 *
3081 * Then we should get some like:
3082 *
3083 * item 0 key (13631488 EXTENT_ITEM 1048576) itemoff 3971 itemsize 24
3084 * refs 753 gen 6 flags DATA
3085 *
3086 * And that (13631488 EXTENT_DATA_REF <HASH>) gets removed.
3087 */
5d4f98a2 3088static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
cecbb533 3089 struct btrfs_delayed_ref_head *href,
e72cb923
NB
3090 struct btrfs_delayed_ref_node *node, u64 parent,
3091 u64 root_objectid, u64 owner_objectid,
1df6b3c0 3092 u64 owner_offset,
e72cb923 3093 struct btrfs_delayed_extent_op *extent_op)
a28ec197 3094{
e72cb923 3095 struct btrfs_fs_info *info = trans->fs_info;
e2fa7227 3096 struct btrfs_key key;
5d4f98a2 3097 struct btrfs_path *path;
29cbcf40 3098 struct btrfs_root *extent_root;
5f39d397 3099 struct extent_buffer *leaf;
5d4f98a2
YZ
3100 struct btrfs_extent_item *ei;
3101 struct btrfs_extent_inline_ref *iref;
a28ec197 3102 int ret;
5d4f98a2 3103 int is_data;
952fccac
CM
3104 int extent_slot = 0;
3105 int found_extent = 0;
3106 int num_to_del = 1;
1df6b3c0 3107 int refs_to_drop = node->ref_mod;
5d4f98a2
YZ
3108 u32 item_size;
3109 u64 refs;
c682f9b3
QW
3110 u64 bytenr = node->bytenr;
3111 u64 num_bytes = node->num_bytes;
0b246afa 3112 bool skinny_metadata = btrfs_fs_incompat(info, SKINNY_METADATA);
cecbb533 3113 u64 delayed_ref_root = href->owning_root;
037e6390 3114
29cbcf40 3115 extent_root = btrfs_extent_root(info, bytenr);
abed4aaa 3116 ASSERT(extent_root);
29cbcf40 3117
5caf2a00 3118 path = btrfs_alloc_path();
54aa1f4d
CM
3119 if (!path)
3120 return -ENOMEM;
5f26f772 3121
5d4f98a2 3122 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
1c2a07f5
QW
3123
3124 if (!is_data && refs_to_drop != 1) {
3125 btrfs_crit(info,
3126"invalid refs_to_drop, dropping more than 1 refs for tree block %llu refs_to_drop %u",
3127 node->bytenr, refs_to_drop);
3128 ret = -EINVAL;
3129 btrfs_abort_transaction(trans, ret);
3130 goto out;
3131 }
5d4f98a2 3132
3173a18f 3133 if (is_data)
897ca819 3134 skinny_metadata = false;
3173a18f 3135
fbe4801b
NB
3136 ret = lookup_extent_backref(trans, path, &iref, bytenr, num_bytes,
3137 parent, root_objectid, owner_objectid,
5d4f98a2 3138 owner_offset);
7bb86316 3139 if (ret == 0) {
1c2a07f5
QW
3140 /*
3141 * Either the inline backref or the SHARED_DATA_REF/
3142 * SHARED_BLOCK_REF is found
3143 *
3144 * Here is a quick path to locate EXTENT/METADATA_ITEM.
3145 * It's possible the EXTENT/METADATA_ITEM is near current slot.
3146 */
952fccac 3147 extent_slot = path->slots[0];
5d4f98a2
YZ
3148 while (extent_slot >= 0) {
3149 btrfs_item_key_to_cpu(path->nodes[0], &key,
952fccac 3150 extent_slot);
5d4f98a2 3151 if (key.objectid != bytenr)
952fccac 3152 break;
5d4f98a2
YZ
3153 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
3154 key.offset == num_bytes) {
952fccac
CM
3155 found_extent = 1;
3156 break;
3157 }
3173a18f
JB
3158 if (key.type == BTRFS_METADATA_ITEM_KEY &&
3159 key.offset == owner_objectid) {
3160 found_extent = 1;
3161 break;
3162 }
1c2a07f5
QW
3163
3164 /* Quick path didn't find the EXTEMT/METADATA_ITEM */
952fccac
CM
3165 if (path->slots[0] - extent_slot > 5)
3166 break;
5d4f98a2 3167 extent_slot--;
952fccac 3168 }
a79865c6 3169
31840ae1 3170 if (!found_extent) {
1c2a07f5 3171 if (iref) {
eee3b811
QW
3172 abort_and_dump(trans, path,
3173"invalid iref slot %u, no EXTENT/METADATA_ITEM found but has inline extent ref",
3174 path->slots[0]);
3175 ret = -EUCLEAN;
3176 goto out;
1c2a07f5
QW
3177 }
3178 /* Must be SHARED_* item, remove the backref first */
76d76e78 3179 ret = remove_extent_backref(trans, extent_root, path,
5b2a54bb 3180 NULL, refs_to_drop, is_data);
005d6427 3181 if (ret) {
66642832 3182 btrfs_abort_transaction(trans, ret);
005d6427
DS
3183 goto out;
3184 }
b3b4aa74 3185 btrfs_release_path(path);
5d4f98a2 3186
1c2a07f5 3187 /* Slow path to locate EXTENT/METADATA_ITEM */
5d4f98a2
YZ
3188 key.objectid = bytenr;
3189 key.type = BTRFS_EXTENT_ITEM_KEY;
3190 key.offset = num_bytes;
3191
3173a18f
JB
3192 if (!is_data && skinny_metadata) {
3193 key.type = BTRFS_METADATA_ITEM_KEY;
3194 key.offset = owner_objectid;
3195 }
3196
31840ae1
ZY
3197 ret = btrfs_search_slot(trans, extent_root,
3198 &key, path, -1, 1);
3173a18f
JB
3199 if (ret > 0 && skinny_metadata && path->slots[0]) {
3200 /*
3201 * Couldn't find our skinny metadata item,
3202 * see if we have ye olde extent item.
3203 */
3204 path->slots[0]--;
3205 btrfs_item_key_to_cpu(path->nodes[0], &key,
3206 path->slots[0]);
3207 if (key.objectid == bytenr &&
3208 key.type == BTRFS_EXTENT_ITEM_KEY &&
3209 key.offset == num_bytes)
3210 ret = 0;
3211 }
3212
3213 if (ret > 0 && skinny_metadata) {
3214 skinny_metadata = false;
9ce49a0b 3215 key.objectid = bytenr;
3173a18f
JB
3216 key.type = BTRFS_EXTENT_ITEM_KEY;
3217 key.offset = num_bytes;
3218 btrfs_release_path(path);
3219 ret = btrfs_search_slot(trans, extent_root,
3220 &key, path, -1, 1);
3221 }
3222
f3465ca4 3223 if (ret) {
b783e62d 3224 if (ret > 0)
a4f78750 3225 btrfs_print_leaf(path->nodes[0]);
eee3b811
QW
3226 btrfs_err(info,
3227 "umm, got %d back from search, was looking for %llu, slot %d",
3228 ret, bytenr, path->slots[0]);
f3465ca4 3229 }
005d6427 3230 if (ret < 0) {
66642832 3231 btrfs_abort_transaction(trans, ret);
005d6427
DS
3232 goto out;
3233 }
31840ae1
ZY
3234 extent_slot = path->slots[0];
3235 }
fae7f21c 3236 } else if (WARN_ON(ret == -ENOENT)) {
eee3b811
QW
3237 abort_and_dump(trans, path,
3238"unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu slot %d",
3239 bytenr, parent, root_objectid, owner_objectid,
3240 owner_offset, path->slots[0]);
c4a050bb 3241 goto out;
79787eaa 3242 } else {
66642832 3243 btrfs_abort_transaction(trans, ret);
005d6427 3244 goto out;
7bb86316 3245 }
5f39d397
CM
3246
3247 leaf = path->nodes[0];
3212fa14 3248 item_size = btrfs_item_size(leaf, extent_slot);
6d8ff4e4 3249 if (unlikely(item_size < sizeof(*ei))) {
182741d2
QW
3250 ret = -EUCLEAN;
3251 btrfs_err(trans->fs_info,
3252 "unexpected extent item size, has %u expect >= %zu",
3253 item_size, sizeof(*ei));
ba3c2b19
NB
3254 btrfs_abort_transaction(trans, ret);
3255 goto out;
3256 }
952fccac 3257 ei = btrfs_item_ptr(leaf, extent_slot,
123abc88 3258 struct btrfs_extent_item);
3173a18f
JB
3259 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
3260 key.type == BTRFS_EXTENT_ITEM_KEY) {
5d4f98a2 3261 struct btrfs_tree_block_info *bi;
eee3b811 3262
1c2a07f5 3263 if (item_size < sizeof(*ei) + sizeof(*bi)) {
eee3b811
QW
3264 abort_and_dump(trans, path,
3265"invalid extent item size for key (%llu, %u, %llu) slot %u owner %llu, has %u expect >= %zu",
3266 key.objectid, key.type, key.offset,
3267 path->slots[0], owner_objectid, item_size,
3268 sizeof(*ei) + sizeof(*bi));
3269 ret = -EUCLEAN;
3270 goto out;
1c2a07f5 3271 }
5d4f98a2
YZ
3272 bi = (struct btrfs_tree_block_info *)(ei + 1);
3273 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
3274 }
56bec294 3275
5d4f98a2 3276 refs = btrfs_extent_refs(leaf, ei);
32b02538 3277 if (refs < refs_to_drop) {
eee3b811
QW
3278 abort_and_dump(trans, path,
3279 "trying to drop %d refs but we only have %llu for bytenr %llu slot %u",
3280 refs_to_drop, refs, bytenr, path->slots[0]);
3281 ret = -EUCLEAN;
3282 goto out;
32b02538 3283 }
56bec294 3284 refs -= refs_to_drop;
5f39d397 3285
5d4f98a2
YZ
3286 if (refs > 0) {
3287 if (extent_op)
3288 __run_delayed_extent_op(extent_op, leaf, ei);
3289 /*
3290 * In the case of inline back ref, reference count will
3291 * be updated by remove_extent_backref
952fccac 3292 */
5d4f98a2 3293 if (iref) {
1c2a07f5 3294 if (!found_extent) {
eee3b811
QW
3295 abort_and_dump(trans, path,
3296"invalid iref, got inlined extent ref but no EXTENT/METADATA_ITEM found, slot %u",
3297 path->slots[0]);
3298 ret = -EUCLEAN;
3299 goto out;
1c2a07f5 3300 }
5d4f98a2
YZ
3301 } else {
3302 btrfs_set_extent_refs(leaf, ei, refs);
50564b65 3303 btrfs_mark_buffer_dirty(trans, leaf);
5d4f98a2
YZ
3304 }
3305 if (found_extent) {
76d76e78 3306 ret = remove_extent_backref(trans, extent_root, path,
5b2a54bb 3307 iref, refs_to_drop, is_data);
005d6427 3308 if (ret) {
66642832 3309 btrfs_abort_transaction(trans, ret);
005d6427
DS
3310 goto out;
3311 }
952fccac 3312 }
5d4f98a2 3313 } else {
cecbb533
BB
3314 struct btrfs_squota_delta delta = {
3315 .root = delayed_ref_root,
3316 .num_bytes = num_bytes,
cecbb533
BB
3317 .is_data = is_data,
3318 .is_inc = false,
bd7c1ea3 3319 .generation = btrfs_extent_generation(leaf, ei),
cecbb533
BB
3320 };
3321
1c2a07f5 3322 /* In this branch refs == 1 */
5d4f98a2 3323 if (found_extent) {
1c2a07f5
QW
3324 if (is_data && refs_to_drop !=
3325 extent_data_ref_count(path, iref)) {
eee3b811
QW
3326 abort_and_dump(trans, path,
3327 "invalid refs_to_drop, current refs %u refs_to_drop %u slot %u",
3328 extent_data_ref_count(path, iref),
3329 refs_to_drop, path->slots[0]);
3330 ret = -EUCLEAN;
3331 goto out;
1c2a07f5 3332 }
5d4f98a2 3333 if (iref) {
1c2a07f5 3334 if (path->slots[0] != extent_slot) {
eee3b811
QW
3335 abort_and_dump(trans, path,
3336"invalid iref, extent item key (%llu %u %llu) slot %u doesn't have wanted iref",
3337 key.objectid, key.type,
3338 key.offset, path->slots[0]);
3339 ret = -EUCLEAN;
3340 goto out;
1c2a07f5 3341 }
5d4f98a2 3342 } else {
1c2a07f5
QW
3343 /*
3344 * No inline ref, we must be at SHARED_* item,
3345 * And it's single ref, it must be:
3346 * | extent_slot ||extent_slot + 1|
3347 * [ EXTENT/METADATA_ITEM ][ SHARED_* ITEM ]
3348 */
3349 if (path->slots[0] != extent_slot + 1) {
eee3b811
QW
3350 abort_and_dump(trans, path,
3351 "invalid SHARED_* item slot %u, previous item is not EXTENT/METADATA_ITEM",
3352 path->slots[0]);
3353 ret = -EUCLEAN;
3354 goto out;
1c2a07f5 3355 }
5d4f98a2
YZ
3356 path->slots[0] = extent_slot;
3357 num_to_del = 2;
3358 }
78fae27e 3359 }
cecbb533
BB
3360 /*
3361 * We can't infer the data owner from the delayed ref, so we need
3362 * to try to get it from the owning ref item.
3363 *
3364 * If it is not present, then that extent was not written under
3365 * simple quotas mode, so we don't need to account for its deletion.
3366 */
3367 if (is_data)
3368 delta.root = btrfs_get_extent_owner_root(trans->fs_info,
3369 leaf, extent_slot);
b9473439 3370
952fccac
CM
3371 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
3372 num_to_del);
005d6427 3373 if (ret) {
66642832 3374 btrfs_abort_transaction(trans, ret);
005d6427
DS
3375 goto out;
3376 }
b3b4aa74 3377 btrfs_release_path(path);
21af804c 3378
cecbb533 3379 ret = do_free_extent_accounting(trans, bytenr, &delta);
a28ec197 3380 }
fcebe456
JB
3381 btrfs_release_path(path);
3382
79787eaa 3383out:
5caf2a00 3384 btrfs_free_path(path);
a28ec197
CM
3385 return ret;
3386}
3387
1887be66 3388/*
f0486c68 3389 * when we free an block, it is possible (and likely) that we free the last
1887be66
CM
3390 * delayed ref for that extent as well. This searches the delayed ref tree for
3391 * a given extent, and if there are no other delayed refs to be processed, it
3392 * removes it from the tree.
3393 */
3394static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
2ff7e61e 3395 u64 bytenr)
1887be66
CM
3396{
3397 struct btrfs_delayed_ref_head *head;
3398 struct btrfs_delayed_ref_root *delayed_refs;
f0486c68 3399 int ret = 0;
1887be66
CM
3400
3401 delayed_refs = &trans->transaction->delayed_refs;
3402 spin_lock(&delayed_refs->lock);
f72ad18e 3403 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
1887be66 3404 if (!head)
cf93da7b 3405 goto out_delayed_unlock;
1887be66 3406
d7df2c79 3407 spin_lock(&head->lock);
e3d03965 3408 if (!RB_EMPTY_ROOT(&head->ref_tree.rb_root))
1887be66
CM
3409 goto out;
3410
bedc6617
JB
3411 if (cleanup_extent_op(head) != NULL)
3412 goto out;
5d4f98a2 3413
1887be66
CM
3414 /*
3415 * waiting for the lock here would deadlock. If someone else has it
3416 * locked they are already in the process of dropping it anyway
3417 */
3418 if (!mutex_trylock(&head->mutex))
3419 goto out;
3420
d7baffda 3421 btrfs_delete_ref_head(delayed_refs, head);
61c681fe 3422 head->processing = false;
d7baffda 3423
d7df2c79 3424 spin_unlock(&head->lock);
1887be66
CM
3425 spin_unlock(&delayed_refs->lock);
3426
f0486c68
YZ
3427 BUG_ON(head->extent_op);
3428 if (head->must_insert_reserved)
3429 ret = 1;
3430
31890da0 3431 btrfs_cleanup_ref_head_accounting(trans->fs_info, delayed_refs, head);
f0486c68 3432 mutex_unlock(&head->mutex);
d278850e 3433 btrfs_put_delayed_ref_head(head);
f0486c68 3434 return ret;
1887be66 3435out:
d7df2c79 3436 spin_unlock(&head->lock);
cf93da7b
CM
3437
3438out_delayed_unlock:
1887be66
CM
3439 spin_unlock(&delayed_refs->lock);
3440 return 0;
3441}
3442
f0486c68 3443void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
7a163608 3444 u64 root_id,
f0486c68 3445 struct extent_buffer *buf,
5581a51a 3446 u64 parent, int last_ref)
f0486c68 3447{
7a163608 3448 struct btrfs_fs_info *fs_info = trans->fs_info;
ed4f255b 3449 struct btrfs_ref generic_ref = { 0 };
f0486c68
YZ
3450 int ret;
3451
ed4f255b 3452 btrfs_init_generic_ref(&generic_ref, BTRFS_DROP_DELAYED_REF,
457cb1dd 3453 buf->start, buf->len, parent, btrfs_header_owner(buf));
ed4f255b 3454 btrfs_init_tree_ref(&generic_ref, btrfs_header_level(buf),
7a163608 3455 root_id, 0, false);
ed4f255b 3456
7a163608 3457 if (root_id != BTRFS_TREE_LOG_OBJECTID) {
8a5040f7 3458 btrfs_ref_tree_mod(fs_info, &generic_ref);
2187374f 3459 ret = btrfs_add_delayed_tree_ref(trans, &generic_ref, NULL);
79787eaa 3460 BUG_ON(ret); /* -ENOMEM */
f0486c68
YZ
3461 }
3462
0a16c7d7 3463 if (last_ref && btrfs_header_generation(buf) == trans->transid) {
32da5386 3464 struct btrfs_block_group *cache;
485df755 3465 bool must_pin = false;
6219872d 3466
7a163608 3467 if (root_id != BTRFS_TREE_LOG_OBJECTID) {
2ff7e61e 3468 ret = check_ref_cleanup(trans, buf->start);
d3575156
NA
3469 if (!ret) {
3470 btrfs_redirty_list_add(trans->transaction, buf);
37be25bc 3471 goto out;
d3575156 3472 }
f0486c68
YZ
3473 }
3474
0b246afa 3475 cache = btrfs_lookup_block_group(fs_info, buf->start);
6219872d 3476
f0486c68 3477 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
6690d071 3478 pin_down_extent(trans, cache, buf->start, buf->len, 1);
6219872d 3479 btrfs_put_block_group(cache);
37be25bc 3480 goto out;
f0486c68
YZ
3481 }
3482
485df755 3483 /*
968b7158
JB
3484 * If there are tree mod log users we may have recorded mod log
3485 * operations for this node. If we re-allocate this node we
3486 * could replay operations on this node that happened when it
3487 * existed in a completely different root. For example if it
3488 * was part of root A, then was reallocated to root B, and we
3489 * are doing a btrfs_old_search_slot(root b), we could replay
3490 * operations that happened when the block was part of root A,
3491 * giving us an inconsistent view of the btree.
3492 *
485df755
FM
3493 * We are safe from races here because at this point no other
3494 * node or root points to this extent buffer, so if after this
968b7158
JB
3495 * check a new tree mod log user joins we will not have an
3496 * existing log of operations on this node that we have to
3497 * contend with.
485df755 3498 */
968b7158 3499 if (test_bit(BTRFS_FS_TREE_MOD_LOG_USERS, &fs_info->flags))
888dd183 3500 must_pin = true;
485df755
FM
3501
3502 if (must_pin || btrfs_is_zoned(fs_info)) {
d3575156
NA
3503 btrfs_redirty_list_add(trans->transaction, buf);
3504 pin_down_extent(trans, cache, buf->start, buf->len, 1);
3505 btrfs_put_block_group(cache);
3506 goto out;
3507 }
3508
f0486c68
YZ
3509 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
3510
3511 btrfs_add_free_space(cache, buf->start, buf->len);
4824f1f4 3512 btrfs_free_reserved_bytes(cache, buf->len, 0);
6219872d 3513 btrfs_put_block_group(cache);
71ff6437 3514 trace_btrfs_reserved_extent_free(fs_info, buf->start, buf->len);
f0486c68
YZ
3515 }
3516out:
0a16c7d7
OS
3517 if (last_ref) {
3518 /*
3519 * Deleting the buffer, clear the corrupt flag since it doesn't
3520 * matter anymore.
3521 */
3522 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
3523 }
f0486c68
YZ
3524}
3525
79787eaa 3526/* Can return -ENOMEM */
ffd4bb2a 3527int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_ref *ref)
925baedd 3528{
ffd4bb2a 3529 struct btrfs_fs_info *fs_info = trans->fs_info;
925baedd
CM
3530 int ret;
3531
f5ee5c9a 3532 if (btrfs_is_testing(fs_info))
faa2dbf0 3533 return 0;
fccb84c9 3534
56bec294
CM
3535 /*
3536 * tree log blocks never actually go into the extent allocation
3537 * tree, just update pinning info and exit early.
56bec294 3538 */
ffd4bb2a 3539 if ((ref->type == BTRFS_REF_METADATA &&
610647d7 3540 ref->tree_ref.ref_root == BTRFS_TREE_LOG_OBJECTID) ||
ffd4bb2a 3541 (ref->type == BTRFS_REF_DATA &&
610647d7 3542 ref->data_ref.ref_root == BTRFS_TREE_LOG_OBJECTID)) {
b25c36f8 3543 btrfs_pin_extent(trans, ref->bytenr, ref->len, 1);
56bec294 3544 ret = 0;
ffd4bb2a 3545 } else if (ref->type == BTRFS_REF_METADATA) {
2187374f 3546 ret = btrfs_add_delayed_tree_ref(trans, ref, NULL);
5d4f98a2 3547 } else {
2187374f 3548 ret = btrfs_add_delayed_data_ref(trans, ref, 0);
56bec294 3549 }
d7eae340 3550
ffd4bb2a 3551 if (!((ref->type == BTRFS_REF_METADATA &&
610647d7 3552 ref->tree_ref.ref_root == BTRFS_TREE_LOG_OBJECTID) ||
ffd4bb2a 3553 (ref->type == BTRFS_REF_DATA &&
610647d7 3554 ref->data_ref.ref_root == BTRFS_TREE_LOG_OBJECTID)))
ffd4bb2a 3555 btrfs_ref_tree_mod(fs_info, ref);
8a5040f7 3556
925baedd
CM
3557 return ret;
3558}
3559
817d52f8 3560enum btrfs_loop_type {
b9d97cff
JB
3561 /*
3562 * Start caching block groups but do not wait for progress or for them
3563 * to be done.
3564 */
f262fa8d 3565 LOOP_CACHING_NOWAIT,
b9d97cff
JB
3566
3567 /*
3568 * Wait for the block group free_space >= the space we're waiting for if
3569 * the block group isn't cached.
3570 */
f262fa8d 3571 LOOP_CACHING_WAIT,
b9d97cff
JB
3572
3573 /*
3574 * Allow allocations to happen from block groups that do not yet have a
3575 * size classification.
3576 */
52bb7a21 3577 LOOP_UNSET_SIZE_CLASS,
b9d97cff
JB
3578
3579 /*
3580 * Allocate a chunk and then retry the allocation.
3581 */
f262fa8d 3582 LOOP_ALLOC_CHUNK,
b9d97cff
JB
3583
3584 /*
3585 * Ignore the size class restrictions for this allocation.
3586 */
52bb7a21 3587 LOOP_WRONG_SIZE_CLASS,
b9d97cff
JB
3588
3589 /*
3590 * Ignore the empty size, only try to allocate the number of bytes
3591 * needed for this allocation.
3592 */
f262fa8d 3593 LOOP_NO_EMPTY_SIZE,
817d52f8
JB
3594};
3595
e570fd27 3596static inline void
32da5386 3597btrfs_lock_block_group(struct btrfs_block_group *cache,
e570fd27
MX
3598 int delalloc)
3599{
3600 if (delalloc)
3601 down_read(&cache->data_rwsem);
3602}
3603
32da5386 3604static inline void btrfs_grab_block_group(struct btrfs_block_group *cache,
e570fd27
MX
3605 int delalloc)
3606{
3607 btrfs_get_block_group(cache);
3608 if (delalloc)
3609 down_read(&cache->data_rwsem);
3610}
3611
32da5386
DS
3612static struct btrfs_block_group *btrfs_lock_cluster(
3613 struct btrfs_block_group *block_group,
e570fd27
MX
3614 struct btrfs_free_cluster *cluster,
3615 int delalloc)
c142c6a4 3616 __acquires(&cluster->refill_lock)
e570fd27 3617{
32da5386 3618 struct btrfs_block_group *used_bg = NULL;
6719afdc 3619
e570fd27 3620 spin_lock(&cluster->refill_lock);
6719afdc
GU
3621 while (1) {
3622 used_bg = cluster->block_group;
3623 if (!used_bg)
3624 return NULL;
3625
3626 if (used_bg == block_group)
e570fd27
MX
3627 return used_bg;
3628
6719afdc 3629 btrfs_get_block_group(used_bg);
e570fd27 3630
6719afdc
GU
3631 if (!delalloc)
3632 return used_bg;
e570fd27 3633
6719afdc
GU
3634 if (down_read_trylock(&used_bg->data_rwsem))
3635 return used_bg;
e570fd27 3636
6719afdc 3637 spin_unlock(&cluster->refill_lock);
e570fd27 3638
e321f8a8
LB
3639 /* We should only have one-level nested. */
3640 down_read_nested(&used_bg->data_rwsem, SINGLE_DEPTH_NESTING);
e570fd27 3641
6719afdc
GU
3642 spin_lock(&cluster->refill_lock);
3643 if (used_bg == cluster->block_group)
3644 return used_bg;
e570fd27 3645
6719afdc
GU
3646 up_read(&used_bg->data_rwsem);
3647 btrfs_put_block_group(used_bg);
3648 }
e570fd27
MX
3649}
3650
3651static inline void
32da5386 3652btrfs_release_block_group(struct btrfs_block_group *cache,
e570fd27
MX
3653 int delalloc)
3654{
3655 if (delalloc)
3656 up_read(&cache->data_rwsem);
3657 btrfs_put_block_group(cache);
3658}
3659
d06e3bb6
QW
3660/*
3661 * Helper function for find_free_extent().
3662 *
3663 * Return -ENOENT to inform caller that we need fallback to unclustered mode.
d06e3bb6
QW
3664 * Return >0 to inform caller that we find nothing
3665 * Return 0 means we have found a location and set ffe_ctl->found_offset.
3666 */
32da5386 3667static int find_free_extent_clustered(struct btrfs_block_group *bg,
897cae79
NA
3668 struct find_free_extent_ctl *ffe_ctl,
3669 struct btrfs_block_group **cluster_bg_ret)
d06e3bb6 3670{
32da5386 3671 struct btrfs_block_group *cluster_bg;
897cae79 3672 struct btrfs_free_cluster *last_ptr = ffe_ctl->last_ptr;
d06e3bb6
QW
3673 u64 aligned_cluster;
3674 u64 offset;
3675 int ret;
3676
3677 cluster_bg = btrfs_lock_cluster(bg, last_ptr, ffe_ctl->delalloc);
3678 if (!cluster_bg)
3679 goto refill_cluster;
3680 if (cluster_bg != bg && (cluster_bg->ro ||
3681 !block_group_bits(cluster_bg, ffe_ctl->flags)))
3682 goto release_cluster;
3683
3684 offset = btrfs_alloc_from_cluster(cluster_bg, last_ptr,
b3470b5d 3685 ffe_ctl->num_bytes, cluster_bg->start,
d06e3bb6
QW
3686 &ffe_ctl->max_extent_size);
3687 if (offset) {
3688 /* We have a block, we're done */
3689 spin_unlock(&last_ptr->refill_lock);
cfc2de0f 3690 trace_btrfs_reserve_extent_cluster(cluster_bg, ffe_ctl);
d06e3bb6
QW
3691 *cluster_bg_ret = cluster_bg;
3692 ffe_ctl->found_offset = offset;
3693 return 0;
3694 }
3695 WARN_ON(last_ptr->block_group != cluster_bg);
3696
3697release_cluster:
3698 /*
3699 * If we are on LOOP_NO_EMPTY_SIZE, we can't set up a new clusters, so
3700 * lets just skip it and let the allocator find whatever block it can
3701 * find. If we reach this point, we will have tried the cluster
3702 * allocator plenty of times and not have found anything, so we are
3703 * likely way too fragmented for the clustering stuff to find anything.
3704 *
3705 * However, if the cluster is taken from the current block group,
3706 * release the cluster first, so that we stand a better chance of
3707 * succeeding in the unclustered allocation.
3708 */
3709 if (ffe_ctl->loop >= LOOP_NO_EMPTY_SIZE && cluster_bg != bg) {
3710 spin_unlock(&last_ptr->refill_lock);
3711 btrfs_release_block_group(cluster_bg, ffe_ctl->delalloc);
3712 return -ENOENT;
3713 }
3714
3715 /* This cluster didn't work out, free it and start over */
3716 btrfs_return_cluster_to_free_space(NULL, last_ptr);
3717
3718 if (cluster_bg != bg)
3719 btrfs_release_block_group(cluster_bg, ffe_ctl->delalloc);
3720
3721refill_cluster:
3722 if (ffe_ctl->loop >= LOOP_NO_EMPTY_SIZE) {
3723 spin_unlock(&last_ptr->refill_lock);
3724 return -ENOENT;
3725 }
3726
3727 aligned_cluster = max_t(u64,
3728 ffe_ctl->empty_cluster + ffe_ctl->empty_size,
3729 bg->full_stripe_len);
2ceeae2e
DS
3730 ret = btrfs_find_space_cluster(bg, last_ptr, ffe_ctl->search_start,
3731 ffe_ctl->num_bytes, aligned_cluster);
d06e3bb6
QW
3732 if (ret == 0) {
3733 /* Now pull our allocation out of this cluster */
3734 offset = btrfs_alloc_from_cluster(bg, last_ptr,
3735 ffe_ctl->num_bytes, ffe_ctl->search_start,
3736 &ffe_ctl->max_extent_size);
3737 if (offset) {
3738 /* We found one, proceed */
3739 spin_unlock(&last_ptr->refill_lock);
d06e3bb6 3740 ffe_ctl->found_offset = offset;
cfc2de0f 3741 trace_btrfs_reserve_extent_cluster(bg, ffe_ctl);
d06e3bb6
QW
3742 return 0;
3743 }
d06e3bb6
QW
3744 }
3745 /*
3746 * At this point we either didn't find a cluster or we weren't able to
3747 * allocate a block from our cluster. Free the cluster we've been
3748 * trying to use, and go to the next block group.
3749 */
3750 btrfs_return_cluster_to_free_space(NULL, last_ptr);
3751 spin_unlock(&last_ptr->refill_lock);
3752 return 1;
3753}
3754
e1a41848
QW
3755/*
3756 * Return >0 to inform caller that we find nothing
3757 * Return 0 when we found an free extent and set ffe_ctrl->found_offset
e1a41848 3758 */
32da5386 3759static int find_free_extent_unclustered(struct btrfs_block_group *bg,
897cae79 3760 struct find_free_extent_ctl *ffe_ctl)
e1a41848 3761{
897cae79 3762 struct btrfs_free_cluster *last_ptr = ffe_ctl->last_ptr;
e1a41848
QW
3763 u64 offset;
3764
3765 /*
3766 * We are doing an unclustered allocation, set the fragmented flag so
3767 * we don't bother trying to setup a cluster again until we get more
3768 * space.
3769 */
3770 if (unlikely(last_ptr)) {
3771 spin_lock(&last_ptr->lock);
3772 last_ptr->fragmented = 1;
3773 spin_unlock(&last_ptr->lock);
3774 }
3775 if (ffe_ctl->cached) {
3776 struct btrfs_free_space_ctl *free_space_ctl;
3777
3778 free_space_ctl = bg->free_space_ctl;
3779 spin_lock(&free_space_ctl->tree_lock);
3780 if (free_space_ctl->free_space <
3781 ffe_ctl->num_bytes + ffe_ctl->empty_cluster +
3782 ffe_ctl->empty_size) {
3783 ffe_ctl->total_free_space = max_t(u64,
3784 ffe_ctl->total_free_space,
3785 free_space_ctl->free_space);
3786 spin_unlock(&free_space_ctl->tree_lock);
3787 return 1;
3788 }
3789 spin_unlock(&free_space_ctl->tree_lock);
3790 }
3791
3792 offset = btrfs_find_space_for_alloc(bg, ffe_ctl->search_start,
3793 ffe_ctl->num_bytes, ffe_ctl->empty_size,
3794 &ffe_ctl->max_extent_size);
cd361199 3795 if (!offset)
e1a41848 3796 return 1;
e1a41848
QW
3797 ffe_ctl->found_offset = offset;
3798 return 0;
3799}
3800
c668690d
NA
3801static int do_allocation_clustered(struct btrfs_block_group *block_group,
3802 struct find_free_extent_ctl *ffe_ctl,
3803 struct btrfs_block_group **bg_ret)
3804{
3805 int ret;
3806
3807 /* We want to try and use the cluster allocator, so lets look there */
3808 if (ffe_ctl->last_ptr && ffe_ctl->use_cluster) {
897cae79 3809 ret = find_free_extent_clustered(block_group, ffe_ctl, bg_ret);
cd361199 3810 if (ret >= 0)
c668690d
NA
3811 return ret;
3812 /* ret == -ENOENT case falls through */
3813 }
3814
897cae79 3815 return find_free_extent_unclustered(block_group, ffe_ctl);
c668690d
NA
3816}
3817
40ab3be1
NA
3818/*
3819 * Tree-log block group locking
3820 * ============================
3821 *
3822 * fs_info::treelog_bg_lock protects the fs_info::treelog_bg which
3823 * indicates the starting address of a block group, which is reserved only
3824 * for tree-log metadata.
3825 *
3826 * Lock nesting
3827 * ============
3828 *
3829 * space_info::lock
3830 * block_group::lock
3831 * fs_info::treelog_bg_lock
3832 */
3833
2eda5708
NA
3834/*
3835 * Simple allocator for sequential-only block group. It only allows sequential
3836 * allocation. No need to play with trees. This function also reserves the
3837 * bytes as in btrfs_add_reserved_bytes.
3838 */
3839static int do_allocation_zoned(struct btrfs_block_group *block_group,
3840 struct find_free_extent_ctl *ffe_ctl,
3841 struct btrfs_block_group **bg_ret)
3842{
40ab3be1 3843 struct btrfs_fs_info *fs_info = block_group->fs_info;
2eda5708
NA
3844 struct btrfs_space_info *space_info = block_group->space_info;
3845 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
3846 u64 start = block_group->start;
3847 u64 num_bytes = ffe_ctl->num_bytes;
3848 u64 avail;
40ab3be1
NA
3849 u64 bytenr = block_group->start;
3850 u64 log_bytenr;
c2707a25 3851 u64 data_reloc_bytenr;
2eda5708 3852 int ret = 0;
2d81eb1c 3853 bool skip = false;
2eda5708
NA
3854
3855 ASSERT(btrfs_is_zoned(block_group->fs_info));
3856
40ab3be1
NA
3857 /*
3858 * Do not allow non-tree-log blocks in the dedicated tree-log block
3859 * group, and vice versa.
3860 */
3861 spin_lock(&fs_info->treelog_bg_lock);
3862 log_bytenr = fs_info->treelog_bg;
2d81eb1c
JT
3863 if (log_bytenr && ((ffe_ctl->for_treelog && bytenr != log_bytenr) ||
3864 (!ffe_ctl->for_treelog && bytenr == log_bytenr)))
3865 skip = true;
40ab3be1
NA
3866 spin_unlock(&fs_info->treelog_bg_lock);
3867 if (skip)
3868 return 1;
3869
c2707a25
JT
3870 /*
3871 * Do not allow non-relocation blocks in the dedicated relocation block
3872 * group, and vice versa.
3873 */
3874 spin_lock(&fs_info->relocation_bg_lock);
3875 data_reloc_bytenr = fs_info->data_reloc_bg;
3876 if (data_reloc_bytenr &&
3877 ((ffe_ctl->for_data_reloc && bytenr != data_reloc_bytenr) ||
3878 (!ffe_ctl->for_data_reloc && bytenr == data_reloc_bytenr)))
3879 skip = true;
3880 spin_unlock(&fs_info->relocation_bg_lock);
3881 if (skip)
3882 return 1;
1ada69f6 3883
2e654e4b
NA
3884 /* Check RO and no space case before trying to activate it */
3885 spin_lock(&block_group->lock);
1bfd4767 3886 if (block_group->ro || btrfs_zoned_bg_is_full(block_group)) {
1ada69f6
NA
3887 ret = 1;
3888 /*
3889 * May need to clear fs_info->{treelog,data_reloc}_bg.
3890 * Return the error after taking the locks.
3891 */
2e654e4b
NA
3892 }
3893 spin_unlock(&block_group->lock);
3894
5a7d107e
NA
3895 /* Metadata block group is activated at write time. */
3896 if (!ret && (block_group->flags & BTRFS_BLOCK_GROUP_DATA) &&
3897 !btrfs_zone_activate(block_group)) {
1ada69f6
NA
3898 ret = 1;
3899 /*
3900 * May need to clear fs_info->{treelog,data_reloc}_bg.
3901 * Return the error after taking the locks.
3902 */
3903 }
2e654e4b 3904
2eda5708
NA
3905 spin_lock(&space_info->lock);
3906 spin_lock(&block_group->lock);
40ab3be1 3907 spin_lock(&fs_info->treelog_bg_lock);
c2707a25 3908 spin_lock(&fs_info->relocation_bg_lock);
40ab3be1 3909
1ada69f6
NA
3910 if (ret)
3911 goto out;
3912
40ab3be1
NA
3913 ASSERT(!ffe_ctl->for_treelog ||
3914 block_group->start == fs_info->treelog_bg ||
3915 fs_info->treelog_bg == 0);
c2707a25
JT
3916 ASSERT(!ffe_ctl->for_data_reloc ||
3917 block_group->start == fs_info->data_reloc_bg ||
3918 fs_info->data_reloc_bg == 0);
2eda5708 3919
3349b57f 3920 if (block_group->ro ||
332581bd
NA
3921 (!ffe_ctl->for_data_reloc &&
3922 test_bit(BLOCK_GROUP_FLAG_ZONED_DATA_RELOC, &block_group->runtime_flags))) {
2eda5708
NA
3923 ret = 1;
3924 goto out;
3925 }
3926
40ab3be1
NA
3927 /*
3928 * Do not allow currently using block group to be tree-log dedicated
3929 * block group.
3930 */
3931 if (ffe_ctl->for_treelog && !fs_info->treelog_bg &&
3932 (block_group->used || block_group->reserved)) {
3933 ret = 1;
3934 goto out;
3935 }
3936
c2707a25
JT
3937 /*
3938 * Do not allow currently used block group to be the data relocation
3939 * dedicated block group.
3940 */
3941 if (ffe_ctl->for_data_reloc && !fs_info->data_reloc_bg &&
3942 (block_group->used || block_group->reserved)) {
3943 ret = 1;
3944 goto out;
3945 }
3946
98173255
NA
3947 WARN_ON_ONCE(block_group->alloc_offset > block_group->zone_capacity);
3948 avail = block_group->zone_capacity - block_group->alloc_offset;
2eda5708
NA
3949 if (avail < num_bytes) {
3950 if (ffe_ctl->max_extent_size < avail) {
3951 /*
3952 * With sequential allocator, free space is always
3953 * contiguous
3954 */
3955 ffe_ctl->max_extent_size = avail;
3956 ffe_ctl->total_free_space = avail;
3957 }
3958 ret = 1;
3959 goto out;
3960 }
3961
40ab3be1
NA
3962 if (ffe_ctl->for_treelog && !fs_info->treelog_bg)
3963 fs_info->treelog_bg = block_group->start;
3964
332581bd
NA
3965 if (ffe_ctl->for_data_reloc) {
3966 if (!fs_info->data_reloc_bg)
3967 fs_info->data_reloc_bg = block_group->start;
3968 /*
3969 * Do not allow allocations from this block group, unless it is
3970 * for data relocation. Compared to increasing the ->ro, setting
3971 * the ->zoned_data_reloc_ongoing flag still allows nocow
3972 * writers to come in. See btrfs_inc_nocow_writers().
3973 *
3974 * We need to disable an allocation to avoid an allocation of
3975 * regular (non-relocation data) extent. With mix of relocation
3976 * extents and regular extents, we can dispatch WRITE commands
3977 * (for relocation extents) and ZONE APPEND commands (for
3978 * regular extents) at the same time to the same zone, which
3979 * easily break the write pointer.
3980 *
3981 * Also, this flag avoids this block group to be zone finished.
3982 */
3983 set_bit(BLOCK_GROUP_FLAG_ZONED_DATA_RELOC, &block_group->runtime_flags);
3984 }
c2707a25 3985
2eda5708
NA
3986 ffe_ctl->found_offset = start + block_group->alloc_offset;
3987 block_group->alloc_offset += num_bytes;
3988 spin_lock(&ctl->tree_lock);
3989 ctl->free_space -= num_bytes;
3990 spin_unlock(&ctl->tree_lock);
3991
3992 /*
3993 * We do not check if found_offset is aligned to stripesize. The
3994 * address is anyway rewritten when using zone append writing.
3995 */
3996
3997 ffe_ctl->search_start = ffe_ctl->found_offset;
3998
3999out:
40ab3be1
NA
4000 if (ret && ffe_ctl->for_treelog)
4001 fs_info->treelog_bg = 0;
332581bd 4002 if (ret && ffe_ctl->for_data_reloc)
c2707a25
JT
4003 fs_info->data_reloc_bg = 0;
4004 spin_unlock(&fs_info->relocation_bg_lock);
40ab3be1 4005 spin_unlock(&fs_info->treelog_bg_lock);
2eda5708
NA
4006 spin_unlock(&block_group->lock);
4007 spin_unlock(&space_info->lock);
4008 return ret;
4009}
4010
c668690d
NA
4011static int do_allocation(struct btrfs_block_group *block_group,
4012 struct find_free_extent_ctl *ffe_ctl,
4013 struct btrfs_block_group **bg_ret)
4014{
4015 switch (ffe_ctl->policy) {
4016 case BTRFS_EXTENT_ALLOC_CLUSTERED:
4017 return do_allocation_clustered(block_group, ffe_ctl, bg_ret);
2eda5708
NA
4018 case BTRFS_EXTENT_ALLOC_ZONED:
4019 return do_allocation_zoned(block_group, ffe_ctl, bg_ret);
c668690d
NA
4020 default:
4021 BUG();
4022 }
4023}
4024
baba5062
NA
4025static void release_block_group(struct btrfs_block_group *block_group,
4026 struct find_free_extent_ctl *ffe_ctl,
4027 int delalloc)
4028{
4029 switch (ffe_ctl->policy) {
4030 case BTRFS_EXTENT_ALLOC_CLUSTERED:
cd361199 4031 ffe_ctl->retry_uncached = false;
baba5062 4032 break;
2eda5708
NA
4033 case BTRFS_EXTENT_ALLOC_ZONED:
4034 /* Nothing to do */
4035 break;
baba5062
NA
4036 default:
4037 BUG();
4038 }
4039
4040 BUG_ON(btrfs_bg_flags_to_raid_index(block_group->flags) !=
4041 ffe_ctl->index);
4042 btrfs_release_block_group(block_group, delalloc);
4043}
4044
0ab9724b
NA
4045static void found_extent_clustered(struct find_free_extent_ctl *ffe_ctl,
4046 struct btrfs_key *ins)
4047{
4048 struct btrfs_free_cluster *last_ptr = ffe_ctl->last_ptr;
4049
4050 if (!ffe_ctl->use_cluster && last_ptr) {
4051 spin_lock(&last_ptr->lock);
4052 last_ptr->window_start = ins->objectid;
4053 spin_unlock(&last_ptr->lock);
4054 }
4055}
4056
4057static void found_extent(struct find_free_extent_ctl *ffe_ctl,
4058 struct btrfs_key *ins)
4059{
4060 switch (ffe_ctl->policy) {
4061 case BTRFS_EXTENT_ALLOC_CLUSTERED:
4062 found_extent_clustered(ffe_ctl, ins);
4063 break;
2eda5708
NA
4064 case BTRFS_EXTENT_ALLOC_ZONED:
4065 /* Nothing to do */
4066 break;
0ab9724b
NA
4067 default:
4068 BUG();
4069 }
4070}
4071
393f646e
NA
4072static int can_allocate_chunk_zoned(struct btrfs_fs_info *fs_info,
4073 struct find_free_extent_ctl *ffe_ctl)
4074{
5a7d107e
NA
4075 /* Block group's activeness is not a requirement for METADATA block groups. */
4076 if (!(ffe_ctl->flags & BTRFS_BLOCK_GROUP_DATA))
4077 return 0;
4078
393f646e
NA
4079 /* If we can activate new zone, just allocate a chunk and use it */
4080 if (btrfs_can_activate_zone(fs_info->fs_devices, ffe_ctl->flags))
4081 return 0;
4082
4083 /*
4084 * We already reached the max active zones. Try to finish one block
4085 * group to make a room for a new block group. This is only possible
4086 * for a data block group because btrfs_zone_finish() may need to wait
4087 * for a running transaction which can cause a deadlock for metadata
4088 * allocation.
4089 */
4090 if (ffe_ctl->flags & BTRFS_BLOCK_GROUP_DATA) {
4091 int ret = btrfs_zone_finish_one_bg(fs_info);
4092
4093 if (ret == 1)
4094 return 0;
4095 else if (ret < 0)
4096 return ret;
4097 }
4098
4099 /*
4100 * If we have enough free space left in an already active block group
4101 * and we can't activate any other zone now, do not allow allocating a
4102 * new chunk and let find_free_extent() retry with a smaller size.
4103 */
4104 if (ffe_ctl->max_extent_size >= ffe_ctl->min_alloc_size)
4105 return -ENOSPC;
4106
898793d9
NA
4107 /*
4108 * Even min_alloc_size is not left in any block groups. Since we cannot
4109 * activate a new block group, allocating it may not help. Let's tell a
4110 * caller to try again and hope it progress something by writing some
4111 * parts of the region. That is only possible for data block groups,
4112 * where a part of the region can be written.
4113 */
4114 if (ffe_ctl->flags & BTRFS_BLOCK_GROUP_DATA)
4115 return -EAGAIN;
4116
393f646e
NA
4117 /*
4118 * We cannot activate a new block group and no enough space left in any
4119 * block groups. So, allocating a new block group may not help. But,
4120 * there is nothing to do anyway, so let's go with it.
4121 */
4122 return 0;
4123}
4124
bb9950d3
NA
4125static int can_allocate_chunk(struct btrfs_fs_info *fs_info,
4126 struct find_free_extent_ctl *ffe_ctl)
50475cd5
NA
4127{
4128 switch (ffe_ctl->policy) {
4129 case BTRFS_EXTENT_ALLOC_CLUSTERED:
bb9950d3 4130 return 0;
50475cd5 4131 case BTRFS_EXTENT_ALLOC_ZONED:
393f646e 4132 return can_allocate_chunk_zoned(fs_info, ffe_ctl);
50475cd5
NA
4133 default:
4134 BUG();
4135 }
4136}
4137
e72d79d6
QW
4138/*
4139 * Return >0 means caller needs to re-search for free extent
4140 * Return 0 means we have the needed free extent.
4141 * Return <0 means we failed to locate any free extent.
4142 */
4143static int find_free_extent_update_loop(struct btrfs_fs_info *fs_info,
e72d79d6
QW
4144 struct btrfs_key *ins,
4145 struct find_free_extent_ctl *ffe_ctl,
15b7ee65 4146 bool full_search)
e72d79d6 4147{
8e1d0290 4148 struct btrfs_root *root = fs_info->chunk_root;
e72d79d6
QW
4149 int ret;
4150
4151 if ((ffe_ctl->loop == LOOP_CACHING_NOWAIT) &&
4152 ffe_ctl->have_caching_bg && !ffe_ctl->orig_have_caching_bg)
4153 ffe_ctl->orig_have_caching_bg = true;
4154
e72d79d6 4155 if (ins->objectid) {
0ab9724b 4156 found_extent(ffe_ctl, ins);
e72d79d6
QW
4157 return 0;
4158 }
4159
a85f05e5
NA
4160 if (ffe_ctl->loop >= LOOP_CACHING_WAIT && ffe_ctl->have_caching_bg)
4161 return 1;
4162
4163 ffe_ctl->index++;
4164 if (ffe_ctl->index < BTRFS_NR_RAID_TYPES)
4165 return 1;
4166
b9d97cff 4167 /* See the comments for btrfs_loop_type for an explanation of the phases. */
e72d79d6
QW
4168 if (ffe_ctl->loop < LOOP_NO_EMPTY_SIZE) {
4169 ffe_ctl->index = 0;
52bb7a21
BB
4170 /*
4171 * We want to skip the LOOP_CACHING_WAIT step if we don't have
4172 * any uncached bgs and we've already done a full search
4173 * through.
4174 */
4175 if (ffe_ctl->loop == LOOP_CACHING_NOWAIT &&
4176 (!ffe_ctl->orig_have_caching_bg && full_search))
e72d79d6 4177 ffe_ctl->loop++;
52bb7a21 4178 ffe_ctl->loop++;
e72d79d6
QW
4179
4180 if (ffe_ctl->loop == LOOP_ALLOC_CHUNK) {
4181 struct btrfs_trans_handle *trans;
4182 int exist = 0;
4183
52bb7a21 4184 /* Check if allocation policy allows to create a new chunk */
bb9950d3
NA
4185 ret = can_allocate_chunk(fs_info, ffe_ctl);
4186 if (ret)
4187 return ret;
50475cd5 4188
e72d79d6
QW
4189 trans = current->journal_info;
4190 if (trans)
4191 exist = 1;
4192 else
4193 trans = btrfs_join_transaction(root);
4194
4195 if (IS_ERR(trans)) {
4196 ret = PTR_ERR(trans);
4197 return ret;
4198 }
4199
fc471cb0 4200 ret = btrfs_chunk_alloc(trans, ffe_ctl->flags,
760e69c4 4201 CHUNK_ALLOC_FORCE_FOR_EXTENT);
e72d79d6 4202
e72d79d6 4203 /* Do not bail out on ENOSPC since we can do more. */
52bb7a21
BB
4204 if (ret == -ENOSPC) {
4205 ret = 0;
4206 ffe_ctl->loop++;
4207 }
c70e2139 4208 else if (ret < 0)
e72d79d6
QW
4209 btrfs_abort_transaction(trans, ret);
4210 else
4211 ret = 0;
4212 if (!exist)
4213 btrfs_end_transaction(trans);
4214 if (ret)
4215 return ret;
4216 }
4217
4218 if (ffe_ctl->loop == LOOP_NO_EMPTY_SIZE) {
45d8e033
NA
4219 if (ffe_ctl->policy != BTRFS_EXTENT_ALLOC_CLUSTERED)
4220 return -ENOSPC;
4221
e72d79d6
QW
4222 /*
4223 * Don't loop again if we already have no empty_size and
4224 * no empty_cluster.
4225 */
4226 if (ffe_ctl->empty_size == 0 &&
4227 ffe_ctl->empty_cluster == 0)
4228 return -ENOSPC;
4229 ffe_ctl->empty_size = 0;
4230 ffe_ctl->empty_cluster = 0;
4231 }
4232 return 1;
4233 }
4234 return -ENOSPC;
4235}
4236
52bb7a21
BB
4237static bool find_free_extent_check_size_class(struct find_free_extent_ctl *ffe_ctl,
4238 struct btrfs_block_group *bg)
4239{
4240 if (ffe_ctl->policy == BTRFS_EXTENT_ALLOC_ZONED)
4241 return true;
cb0922f2 4242 if (!btrfs_block_group_should_use_size_class(bg))
52bb7a21
BB
4243 return true;
4244 if (ffe_ctl->loop >= LOOP_WRONG_SIZE_CLASS)
4245 return true;
4246 if (ffe_ctl->loop >= LOOP_UNSET_SIZE_CLASS &&
4247 bg->size_class == BTRFS_BG_SZ_NONE)
4248 return true;
4249 return ffe_ctl->size_class == bg->size_class;
4250}
4251
7e895409
NA
4252static int prepare_allocation_clustered(struct btrfs_fs_info *fs_info,
4253 struct find_free_extent_ctl *ffe_ctl,
4254 struct btrfs_space_info *space_info,
4255 struct btrfs_key *ins)
4256{
4257 /*
4258 * If our free space is heavily fragmented we may not be able to make
4259 * big contiguous allocations, so instead of doing the expensive search
4260 * for free space, simply return ENOSPC with our max_extent_size so we
4261 * can go ahead and search for a more manageable chunk.
4262 *
4263 * If our max_extent_size is large enough for our allocation simply
4264 * disable clustering since we will likely not be able to find enough
4265 * space to create a cluster and induce latency trying.
4266 */
4267 if (space_info->max_extent_size) {
4268 spin_lock(&space_info->lock);
4269 if (space_info->max_extent_size &&
4270 ffe_ctl->num_bytes > space_info->max_extent_size) {
4271 ins->offset = space_info->max_extent_size;
4272 spin_unlock(&space_info->lock);
4273 return -ENOSPC;
4274 } else if (space_info->max_extent_size) {
4275 ffe_ctl->use_cluster = false;
4276 }
4277 spin_unlock(&space_info->lock);
4278 }
4279
4280 ffe_ctl->last_ptr = fetch_cluster_info(fs_info, space_info,
4281 &ffe_ctl->empty_cluster);
4282 if (ffe_ctl->last_ptr) {
4283 struct btrfs_free_cluster *last_ptr = ffe_ctl->last_ptr;
4284
4285 spin_lock(&last_ptr->lock);
4286 if (last_ptr->block_group)
4287 ffe_ctl->hint_byte = last_ptr->window_start;
4288 if (last_ptr->fragmented) {
4289 /*
4290 * We still set window_start so we can keep track of the
4291 * last place we found an allocation to try and save
4292 * some time.
4293 */
4294 ffe_ctl->hint_byte = last_ptr->window_start;
4295 ffe_ctl->use_cluster = false;
4296 }
4297 spin_unlock(&last_ptr->lock);
4298 }
4299
4300 return 0;
4301}
4302
4303static int prepare_allocation(struct btrfs_fs_info *fs_info,
4304 struct find_free_extent_ctl *ffe_ctl,
4305 struct btrfs_space_info *space_info,
4306 struct btrfs_key *ins)
4307{
4308 switch (ffe_ctl->policy) {
4309 case BTRFS_EXTENT_ALLOC_CLUSTERED:
4310 return prepare_allocation_clustered(fs_info, ffe_ctl,
4311 space_info, ins);
2eda5708 4312 case BTRFS_EXTENT_ALLOC_ZONED:
40ab3be1
NA
4313 if (ffe_ctl->for_treelog) {
4314 spin_lock(&fs_info->treelog_bg_lock);
4315 if (fs_info->treelog_bg)
4316 ffe_ctl->hint_byte = fs_info->treelog_bg;
4317 spin_unlock(&fs_info->treelog_bg_lock);
4318 }
c2707a25
JT
4319 if (ffe_ctl->for_data_reloc) {
4320 spin_lock(&fs_info->relocation_bg_lock);
4321 if (fs_info->data_reloc_bg)
4322 ffe_ctl->hint_byte = fs_info->data_reloc_bg;
4323 spin_unlock(&fs_info->relocation_bg_lock);
4324 }
2eda5708 4325 return 0;
7e895409
NA
4326 default:
4327 BUG();
4328 }
4329}
4330
fec577fb
CM
4331/*
4332 * walks the btree of allocated extents and find a hole of a given size.
4333 * The key ins is changed to record the hole:
a4820398 4334 * ins->objectid == start position
62e2749e 4335 * ins->flags = BTRFS_EXTENT_ITEM_KEY
a4820398 4336 * ins->offset == the size of the hole.
fec577fb 4337 * Any available blocks before search_start are skipped.
a4820398
MX
4338 *
4339 * If there is no suitable free space, we will record the max size of
4340 * the free space extent currently.
e72d79d6
QW
4341 *
4342 * The overall logic and call chain:
4343 *
4344 * find_free_extent()
4345 * |- Iterate through all block groups
4346 * | |- Get a valid block group
4347 * | |- Try to do clustered allocation in that block group
4348 * | |- Try to do unclustered allocation in that block group
4349 * | |- Check if the result is valid
4350 * | | |- If valid, then exit
4351 * | |- Jump to next block group
4352 * |
4353 * |- Push harder to find free extents
4354 * |- If not found, re-iterate all block groups
fec577fb 4355 */
437490fe 4356static noinline int find_free_extent(struct btrfs_root *root,
a12b0dc0
NA
4357 struct btrfs_key *ins,
4358 struct find_free_extent_ctl *ffe_ctl)
fec577fb 4359{
437490fe 4360 struct btrfs_fs_info *fs_info = root->fs_info;
80eb234a 4361 int ret = 0;
db8fe64f 4362 int cache_block_group_error = 0;
32da5386 4363 struct btrfs_block_group *block_group = NULL;
80eb234a 4364 struct btrfs_space_info *space_info;
a5e681d9 4365 bool full_search = false;
fec577fb 4366
a12b0dc0 4367 WARN_ON(ffe_ctl->num_bytes < fs_info->sectorsize);
b4bd745d 4368
a12b0dc0
NA
4369 ffe_ctl->search_start = 0;
4370 /* For clustered allocation */
4371 ffe_ctl->empty_cluster = 0;
4372 ffe_ctl->last_ptr = NULL;
4373 ffe_ctl->use_cluster = true;
4374 ffe_ctl->have_caching_bg = false;
4375 ffe_ctl->orig_have_caching_bg = false;
4376 ffe_ctl->index = btrfs_bg_flags_to_raid_index(ffe_ctl->flags);
4377 ffe_ctl->loop = 0;
cd361199 4378 ffe_ctl->retry_uncached = false;
a12b0dc0
NA
4379 ffe_ctl->cached = 0;
4380 ffe_ctl->max_extent_size = 0;
4381 ffe_ctl->total_free_space = 0;
4382 ffe_ctl->found_offset = 0;
4383 ffe_ctl->policy = BTRFS_EXTENT_ALLOC_CLUSTERED;
52bb7a21 4384 ffe_ctl->size_class = btrfs_calc_block_group_size_class(ffe_ctl->num_bytes);
c10859be 4385
2eda5708 4386 if (btrfs_is_zoned(fs_info))
a12b0dc0 4387 ffe_ctl->policy = BTRFS_EXTENT_ALLOC_ZONED;
2eda5708 4388
962a298f 4389 ins->type = BTRFS_EXTENT_ITEM_KEY;
80eb234a
JB
4390 ins->objectid = 0;
4391 ins->offset = 0;
b1a4d965 4392
cfc2de0f 4393 trace_find_free_extent(root, ffe_ctl);
3f7de037 4394
a12b0dc0 4395 space_info = btrfs_find_space_info(fs_info, ffe_ctl->flags);
1b1d1f66 4396 if (!space_info) {
a12b0dc0 4397 btrfs_err(fs_info, "No space info for %llu", ffe_ctl->flags);
1b1d1f66
JB
4398 return -ENOSPC;
4399 }
2552d17e 4400
a12b0dc0 4401 ret = prepare_allocation(fs_info, ffe_ctl, space_info, ins);
7e895409
NA
4402 if (ret < 0)
4403 return ret;
fa9c0d79 4404
a12b0dc0 4405 ffe_ctl->search_start = max(ffe_ctl->search_start,
0eb997bf 4406 first_logical_byte(fs_info));
a12b0dc0
NA
4407 ffe_ctl->search_start = max(ffe_ctl->search_start, ffe_ctl->hint_byte);
4408 if (ffe_ctl->search_start == ffe_ctl->hint_byte) {
b4bd745d 4409 block_group = btrfs_lookup_block_group(fs_info,
a12b0dc0 4410 ffe_ctl->search_start);
817d52f8
JB
4411 /*
4412 * we don't want to use the block group if it doesn't match our
4413 * allocation bits, or if its not cached.
ccf0e725
JB
4414 *
4415 * However if we are re-searching with an ideal block group
4416 * picked out then we don't care that the block group is cached.
817d52f8 4417 */
a12b0dc0 4418 if (block_group && block_group_bits(block_group, ffe_ctl->flags) &&
285ff5af 4419 block_group->cached != BTRFS_CACHE_NO) {
2552d17e 4420 down_read(&space_info->groups_sem);
44fb5511
CM
4421 if (list_empty(&block_group->list) ||
4422 block_group->ro) {
4423 /*
4424 * someone is removing this block group,
4425 * we can't jump into the have_block_group
4426 * target because our list pointers are not
4427 * valid
4428 */
4429 btrfs_put_block_group(block_group);
4430 up_read(&space_info->groups_sem);
ccf0e725 4431 } else {
a12b0dc0
NA
4432 ffe_ctl->index = btrfs_bg_flags_to_raid_index(
4433 block_group->flags);
4434 btrfs_lock_block_group(block_group,
4435 ffe_ctl->delalloc);
854c2f36 4436 ffe_ctl->hinted = true;
44fb5511 4437 goto have_block_group;
ccf0e725 4438 }
2552d17e 4439 } else if (block_group) {
fa9c0d79 4440 btrfs_put_block_group(block_group);
2552d17e 4441 }
42e70e7a 4442 }
2552d17e 4443search:
854c2f36 4444 trace_find_free_extent_search_loop(root, ffe_ctl);
a12b0dc0
NA
4445 ffe_ctl->have_caching_bg = false;
4446 if (ffe_ctl->index == btrfs_bg_flags_to_raid_index(ffe_ctl->flags) ||
4447 ffe_ctl->index == 0)
a5e681d9 4448 full_search = true;
80eb234a 4449 down_read(&space_info->groups_sem);
b4bd745d 4450 list_for_each_entry(block_group,
a12b0dc0 4451 &space_info->block_groups[ffe_ctl->index], list) {
c668690d
NA
4452 struct btrfs_block_group *bg_ret;
4453
854c2f36 4454 ffe_ctl->hinted = false;
14443937 4455 /* If the block group is read-only, we can skip it entirely. */
40ab3be1 4456 if (unlikely(block_group->ro)) {
a12b0dc0 4457 if (ffe_ctl->for_treelog)
40ab3be1 4458 btrfs_clear_treelog_bg(block_group);
c2707a25
JT
4459 if (ffe_ctl->for_data_reloc)
4460 btrfs_clear_data_reloc_bg(block_group);
14443937 4461 continue;
40ab3be1 4462 }
14443937 4463
a12b0dc0
NA
4464 btrfs_grab_block_group(block_group, ffe_ctl->delalloc);
4465 ffe_ctl->search_start = block_group->start;
42e70e7a 4466
83a50de9
CM
4467 /*
4468 * this can happen if we end up cycling through all the
4469 * raid types, but we want to make sure we only allocate
4470 * for the proper type.
4471 */
a12b0dc0 4472 if (!block_group_bits(block_group, ffe_ctl->flags)) {
bece2e82 4473 u64 extra = BTRFS_BLOCK_GROUP_DUP |
c7369b3f 4474 BTRFS_BLOCK_GROUP_RAID1_MASK |
a07e8a46 4475 BTRFS_BLOCK_GROUP_RAID56_MASK |
83a50de9
CM
4476 BTRFS_BLOCK_GROUP_RAID10;
4477
4478 /*
4479 * if they asked for extra copies and this block group
4480 * doesn't provide them, bail. This does allow us to
4481 * fill raid0 from raid1.
4482 */
a12b0dc0 4483 if ((ffe_ctl->flags & extra) && !(block_group->flags & extra))
83a50de9 4484 goto loop;
2a28468e
QW
4485
4486 /*
4487 * This block group has different flags than we want.
4488 * It's possible that we have MIXED_GROUP flag but no
4489 * block group is mixed. Just skip such block group.
4490 */
a12b0dc0 4491 btrfs_release_block_group(block_group, ffe_ctl->delalloc);
2a28468e 4492 continue;
83a50de9
CM
4493 }
4494
2552d17e 4495have_block_group:
854c2f36 4496 trace_find_free_extent_have_block_group(root, ffe_ctl, block_group);
a12b0dc0
NA
4497 ffe_ctl->cached = btrfs_block_group_done(block_group);
4498 if (unlikely(!ffe_ctl->cached)) {
4499 ffe_ctl->have_caching_bg = true;
ced8ecf0 4500 ret = btrfs_cache_block_group(block_group, false);
db8fe64f
JB
4501
4502 /*
4503 * If we get ENOMEM here or something else we want to
4504 * try other block groups, because it may not be fatal.
4505 * However if we can't find anything else we need to
4506 * save our return here so that we return the actual
4507 * error that caused problems, not ENOSPC.
4508 */
4509 if (ret < 0) {
4510 if (!cache_block_group_error)
4511 cache_block_group_error = ret;
4512 ret = 0;
4513 goto loop;
4514 }
1d4284bd 4515 ret = 0;
817d52f8
JB
4516 }
4517
92fb94b6
JB
4518 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR)) {
4519 if (!cache_block_group_error)
4520 cache_block_group_error = -EIO;
36cce922 4521 goto loop;
92fb94b6 4522 }
0f9dd46c 4523
52bb7a21
BB
4524 if (!find_free_extent_check_size_class(ffe_ctl, block_group))
4525 goto loop;
4526
c668690d 4527 bg_ret = NULL;
a12b0dc0 4528 ret = do_allocation(block_group, ffe_ctl, &bg_ret);
cd361199 4529 if (ret > 0)
1cdda9b8 4530 goto loop;
cd361199
JB
4531
4532 if (bg_ret && bg_ret != block_group) {
4533 btrfs_release_block_group(block_group, ffe_ctl->delalloc);
4534 block_group = bg_ret;
c668690d
NA
4535 }
4536
4537 /* Checks */
a12b0dc0
NA
4538 ffe_ctl->search_start = round_up(ffe_ctl->found_offset,
4539 fs_info->stripesize);
25179201 4540
2552d17e 4541 /* move on to the next group */
a12b0dc0 4542 if (ffe_ctl->search_start + ffe_ctl->num_bytes >
b3470b5d 4543 block_group->start + block_group->length) {
2eda5708 4544 btrfs_add_free_space_unused(block_group,
a12b0dc0
NA
4545 ffe_ctl->found_offset,
4546 ffe_ctl->num_bytes);
2552d17e 4547 goto loop;
6226cb0a 4548 }
f5a31e16 4549
a12b0dc0 4550 if (ffe_ctl->found_offset < ffe_ctl->search_start)
2eda5708 4551 btrfs_add_free_space_unused(block_group,
a12b0dc0
NA
4552 ffe_ctl->found_offset,
4553 ffe_ctl->search_start - ffe_ctl->found_offset);
2552d17e 4554
a12b0dc0
NA
4555 ret = btrfs_add_reserved_bytes(block_group, ffe_ctl->ram_bytes,
4556 ffe_ctl->num_bytes,
52bb7a21
BB
4557 ffe_ctl->delalloc,
4558 ffe_ctl->loop >= LOOP_WRONG_SIZE_CLASS);
f0486c68 4559 if (ret == -EAGAIN) {
2eda5708 4560 btrfs_add_free_space_unused(block_group,
a12b0dc0
NA
4561 ffe_ctl->found_offset,
4562 ffe_ctl->num_bytes);
2552d17e 4563 goto loop;
0f9dd46c 4564 }
9cfa3e34 4565 btrfs_inc_block_group_reservations(block_group);
0b86a832 4566
f0486c68 4567 /* we are all good, lets return */
a12b0dc0
NA
4568 ins->objectid = ffe_ctl->search_start;
4569 ins->offset = ffe_ctl->num_bytes;
d2fb3437 4570
cfc2de0f 4571 trace_btrfs_reserve_extent(block_group, ffe_ctl);
a12b0dc0 4572 btrfs_release_block_group(block_group, ffe_ctl->delalloc);
2552d17e
JB
4573 break;
4574loop:
cd361199
JB
4575 if (!ffe_ctl->cached && ffe_ctl->loop > LOOP_CACHING_NOWAIT &&
4576 !ffe_ctl->retry_uncached) {
4577 ffe_ctl->retry_uncached = true;
4578 btrfs_wait_block_group_cache_progress(block_group,
4579 ffe_ctl->num_bytes +
4580 ffe_ctl->empty_cluster +
4581 ffe_ctl->empty_size);
4582 goto have_block_group;
4583 }
a12b0dc0 4584 release_block_group(block_group, ffe_ctl, ffe_ctl->delalloc);
14443937 4585 cond_resched();
2552d17e
JB
4586 }
4587 up_read(&space_info->groups_sem);
4588
a12b0dc0 4589 ret = find_free_extent_update_loop(fs_info, ins, ffe_ctl, full_search);
e72d79d6 4590 if (ret > 0)
b742bb82
YZ
4591 goto search;
4592
db8fe64f 4593 if (ret == -ENOSPC && !cache_block_group_error) {
b4bd745d
QW
4594 /*
4595 * Use ffe_ctl->total_free_space as fallback if we can't find
4596 * any contiguous hole.
4597 */
a12b0dc0
NA
4598 if (!ffe_ctl->max_extent_size)
4599 ffe_ctl->max_extent_size = ffe_ctl->total_free_space;
4f4db217 4600 spin_lock(&space_info->lock);
a12b0dc0 4601 space_info->max_extent_size = ffe_ctl->max_extent_size;
4f4db217 4602 spin_unlock(&space_info->lock);
a12b0dc0 4603 ins->offset = ffe_ctl->max_extent_size;
db8fe64f
JB
4604 } else if (ret == -ENOSPC) {
4605 ret = cache_block_group_error;
4f4db217 4606 }
0f70abe2 4607 return ret;
fec577fb 4608}
ec44a35c 4609
6f47c706 4610/*
9580503b
DS
4611 * Entry point to the extent allocator. Tries to find a hole that is at least
4612 * as big as @num_bytes.
6f47c706
NB
4613 *
4614 * @root - The root that will contain this extent
4615 *
4616 * @ram_bytes - The amount of space in ram that @num_bytes take. This
4617 * is used for accounting purposes. This value differs
4618 * from @num_bytes only in the case of compressed extents.
4619 *
4620 * @num_bytes - Number of bytes to allocate on-disk.
4621 *
4622 * @min_alloc_size - Indicates the minimum amount of space that the
4623 * allocator should try to satisfy. In some cases
4624 * @num_bytes may be larger than what is required and if
4625 * the filesystem is fragmented then allocation fails.
4626 * However, the presence of @min_alloc_size gives a
4627 * chance to try and satisfy the smaller allocation.
4628 *
4629 * @empty_size - A hint that you plan on doing more COW. This is the
4630 * size in bytes the allocator should try to find free
4631 * next to the block it returns. This is just a hint and
4632 * may be ignored by the allocator.
4633 *
4634 * @hint_byte - Hint to the allocator to start searching above the byte
4635 * address passed. It might be ignored.
4636 *
4637 * @ins - This key is modified to record the found hole. It will
4638 * have the following values:
4639 * ins->objectid == start position
4640 * ins->flags = BTRFS_EXTENT_ITEM_KEY
4641 * ins->offset == the size of the hole.
4642 *
4643 * @is_data - Boolean flag indicating whether an extent is
4644 * allocated for data (true) or metadata (false)
4645 *
4646 * @delalloc - Boolean flag indicating whether this allocation is for
4647 * delalloc or not. If 'true' data_rwsem of block groups
4648 * is going to be acquired.
4649 *
4650 *
4651 * Returns 0 when an allocation succeeded or < 0 when an error occurred. In
4652 * case -ENOSPC is returned then @ins->offset will contain the size of the
4653 * largest available hole the allocator managed to find.
4654 */
18513091 4655int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
11833d66
YZ
4656 u64 num_bytes, u64 min_alloc_size,
4657 u64 empty_size, u64 hint_byte,
e570fd27 4658 struct btrfs_key *ins, int is_data, int delalloc)
fec577fb 4659{
ab8d0fc4 4660 struct btrfs_fs_info *fs_info = root->fs_info;
a12b0dc0 4661 struct find_free_extent_ctl ffe_ctl = {};
36af4e07 4662 bool final_tried = num_bytes == min_alloc_size;
b6919a58 4663 u64 flags;
fec577fb 4664 int ret;
40ab3be1 4665 bool for_treelog = (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
c2707a25 4666 bool for_data_reloc = (btrfs_is_data_reloc_root(root) && is_data);
925baedd 4667
1b86826d 4668 flags = get_alloc_profile_by_root(root, is_data);
98d20f67 4669again:
0b246afa 4670 WARN_ON(num_bytes < fs_info->sectorsize);
a12b0dc0
NA
4671
4672 ffe_ctl.ram_bytes = ram_bytes;
4673 ffe_ctl.num_bytes = num_bytes;
a85f05e5 4674 ffe_ctl.min_alloc_size = min_alloc_size;
a12b0dc0
NA
4675 ffe_ctl.empty_size = empty_size;
4676 ffe_ctl.flags = flags;
4677 ffe_ctl.delalloc = delalloc;
4678 ffe_ctl.hint_byte = hint_byte;
4679 ffe_ctl.for_treelog = for_treelog;
c2707a25 4680 ffe_ctl.for_data_reloc = for_data_reloc;
a12b0dc0
NA
4681
4682 ret = find_free_extent(root, ins, &ffe_ctl);
9cfa3e34 4683 if (!ret && !is_data) {
ab8d0fc4 4684 btrfs_dec_block_group_reservations(fs_info, ins->objectid);
9cfa3e34 4685 } else if (ret == -ENOSPC) {
a4820398
MX
4686 if (!final_tried && ins->offset) {
4687 num_bytes = min(num_bytes >> 1, ins->offset);
da17066c 4688 num_bytes = round_down(num_bytes,
0b246afa 4689 fs_info->sectorsize);
9e622d6b 4690 num_bytes = max(num_bytes, min_alloc_size);
18513091 4691 ram_bytes = num_bytes;
9e622d6b
MX
4692 if (num_bytes == min_alloc_size)
4693 final_tried = true;
4694 goto again;
ab8d0fc4 4695 } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
9e622d6b
MX
4696 struct btrfs_space_info *sinfo;
4697
280c2908 4698 sinfo = btrfs_find_space_info(fs_info, flags);
0b246afa 4699 btrfs_err(fs_info,
c2707a25
JT
4700 "allocation failed flags %llu, wanted %llu tree-log %d, relocation: %d",
4701 flags, num_bytes, for_treelog, for_data_reloc);
53804280 4702 if (sinfo)
5da6afeb
JB
4703 btrfs_dump_space_info(fs_info, sinfo,
4704 num_bytes, 1);
9e622d6b 4705 }
925baedd 4706 }
0f9dd46c
JB
4707
4708 return ret;
e6dcd2dc
CM
4709}
4710
a0fbf736
NB
4711int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
4712 u64 start, u64 len, int delalloc)
65b51a00 4713{
32da5386 4714 struct btrfs_block_group *cache;
0f9dd46c 4715
0b246afa 4716 cache = btrfs_lookup_block_group(fs_info, start);
0f9dd46c 4717 if (!cache) {
0b246afa
JM
4718 btrfs_err(fs_info, "Unable to find block group for %llu",
4719 start);
0f9dd46c
JB
4720 return -ENOSPC;
4721 }
1f3c79a2 4722
a0fbf736
NB
4723 btrfs_add_free_space(cache, start, len);
4724 btrfs_free_reserved_bytes(cache, len, delalloc);
4725 trace_btrfs_reserved_extent_free(fs_info, start, len);
4726
fa9c0d79 4727 btrfs_put_block_group(cache);
a0fbf736 4728 return 0;
e6dcd2dc
CM
4729}
4730
f863c502
DS
4731int btrfs_pin_reserved_extent(struct btrfs_trans_handle *trans,
4732 const struct extent_buffer *eb)
e688b725 4733{
7ef54d54 4734 struct btrfs_block_group *cache;
a0fbf736 4735 int ret = 0;
7ef54d54 4736
f863c502 4737 cache = btrfs_lookup_block_group(trans->fs_info, eb->start);
7ef54d54 4738 if (!cache) {
7bfc1007 4739 btrfs_err(trans->fs_info, "unable to find block group for %llu",
f863c502 4740 eb->start);
7ef54d54
NB
4741 return -ENOSPC;
4742 }
4743
f863c502 4744 ret = pin_down_extent(trans, cache, eb->start, eb->len, 1);
7ef54d54 4745 btrfs_put_block_group(cache);
a0fbf736 4746 return ret;
e688b725
CM
4747}
4748
34666705
JB
4749static int alloc_reserved_extent(struct btrfs_trans_handle *trans, u64 bytenr,
4750 u64 num_bytes)
4751{
4752 struct btrfs_fs_info *fs_info = trans->fs_info;
4753 int ret;
4754
4755 ret = remove_from_free_space_tree(trans, bytenr, num_bytes);
4756 if (ret)
4757 return ret;
4758
4759 ret = btrfs_update_block_group(trans, bytenr, num_bytes, true);
4760 if (ret) {
4761 ASSERT(!ret);
4762 btrfs_err(fs_info, "update block group failed for %llu %llu",
4763 bytenr, num_bytes);
4764 return ret;
4765 }
4766
4767 trace_btrfs_reserved_extent_alloc(fs_info, bytenr, num_bytes);
4768 return 0;
4769}
4770
5d4f98a2 4771static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
5d4f98a2
YZ
4772 u64 parent, u64 root_objectid,
4773 u64 flags, u64 owner, u64 offset,
2672a051 4774 struct btrfs_key *ins, int ref_mod, u64 oref_root)
e6dcd2dc 4775{
ef89b824 4776 struct btrfs_fs_info *fs_info = trans->fs_info;
29cbcf40 4777 struct btrfs_root *extent_root;
e6dcd2dc 4778 int ret;
e6dcd2dc 4779 struct btrfs_extent_item *extent_item;
d9a620f7 4780 struct btrfs_extent_owner_ref *oref;
5d4f98a2 4781 struct btrfs_extent_inline_ref *iref;
e6dcd2dc 4782 struct btrfs_path *path;
5d4f98a2
YZ
4783 struct extent_buffer *leaf;
4784 int type;
4785 u32 size;
d9a620f7 4786 const bool simple_quota = (btrfs_qgroup_mode(fs_info) == BTRFS_QGROUP_MODE_SIMPLE);
26b8003f 4787
5d4f98a2
YZ
4788 if (parent > 0)
4789 type = BTRFS_SHARED_DATA_REF_KEY;
4790 else
4791 type = BTRFS_EXTENT_DATA_REF_KEY;
58176a96 4792
d9a620f7
BB
4793 size = sizeof(*extent_item);
4794 if (simple_quota)
4795 size += btrfs_extent_inline_ref_size(BTRFS_EXTENT_OWNER_REF_KEY);
4796 size += btrfs_extent_inline_ref_size(type);
7bb86316
CM
4797
4798 path = btrfs_alloc_path();
db5b493a
TI
4799 if (!path)
4800 return -ENOMEM;
47e4bb98 4801
29cbcf40
JB
4802 extent_root = btrfs_extent_root(fs_info, ins->objectid);
4803 ret = btrfs_insert_empty_item(trans, extent_root, path, ins, size);
79787eaa
JM
4804 if (ret) {
4805 btrfs_free_path(path);
4806 return ret;
4807 }
0f9dd46c 4808
5d4f98a2
YZ
4809 leaf = path->nodes[0];
4810 extent_item = btrfs_item_ptr(leaf, path->slots[0],
47e4bb98 4811 struct btrfs_extent_item);
5d4f98a2
YZ
4812 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
4813 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
4814 btrfs_set_extent_flags(leaf, extent_item,
4815 flags | BTRFS_EXTENT_FLAG_DATA);
4816
4817 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
d9a620f7
BB
4818 if (simple_quota) {
4819 btrfs_set_extent_inline_ref_type(leaf, iref, BTRFS_EXTENT_OWNER_REF_KEY);
4820 oref = (struct btrfs_extent_owner_ref *)(&iref->offset);
2672a051 4821 btrfs_set_extent_owner_ref_root_id(leaf, oref, oref_root);
d9a620f7
BB
4822 iref = (struct btrfs_extent_inline_ref *)(oref + 1);
4823 }
5d4f98a2 4824 btrfs_set_extent_inline_ref_type(leaf, iref, type);
d9a620f7 4825
5d4f98a2
YZ
4826 if (parent > 0) {
4827 struct btrfs_shared_data_ref *ref;
4828 ref = (struct btrfs_shared_data_ref *)(iref + 1);
4829 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
4830 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
4831 } else {
4832 struct btrfs_extent_data_ref *ref;
4833 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
4834 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
4835 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
4836 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
4837 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
4838 }
47e4bb98 4839
50564b65 4840 btrfs_mark_buffer_dirty(trans, path->nodes[0]);
7bb86316 4841 btrfs_free_path(path);
f510cfec 4842
34666705 4843 return alloc_reserved_extent(trans, ins->objectid, ins->offset);
e6dcd2dc
CM
4844}
4845
5d4f98a2 4846static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
4e6bd4e0 4847 struct btrfs_delayed_ref_node *node,
21ebfbe7 4848 struct btrfs_delayed_extent_op *extent_op)
e6dcd2dc 4849{
9dcdbe01 4850 struct btrfs_fs_info *fs_info = trans->fs_info;
29cbcf40 4851 struct btrfs_root *extent_root;
e6dcd2dc 4852 int ret;
5d4f98a2 4853 struct btrfs_extent_item *extent_item;
4e6bd4e0 4854 struct btrfs_key extent_key;
5d4f98a2
YZ
4855 struct btrfs_tree_block_info *block_info;
4856 struct btrfs_extent_inline_ref *iref;
4857 struct btrfs_path *path;
4858 struct extent_buffer *leaf;
4e6bd4e0 4859 struct btrfs_delayed_tree_ref *ref;
3173a18f 4860 u32 size = sizeof(*extent_item) + sizeof(*iref);
21ebfbe7 4861 u64 flags = extent_op->flags_to_set;
0b246afa 4862 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
3173a18f 4863
4e6bd4e0
NB
4864 ref = btrfs_delayed_node_to_tree_ref(node);
4865
4e6bd4e0
NB
4866 extent_key.objectid = node->bytenr;
4867 if (skinny_metadata) {
4868 extent_key.offset = ref->level;
4869 extent_key.type = BTRFS_METADATA_ITEM_KEY;
4e6bd4e0
NB
4870 } else {
4871 extent_key.offset = node->num_bytes;
4872 extent_key.type = BTRFS_EXTENT_ITEM_KEY;
3173a18f 4873 size += sizeof(*block_info);
4e6bd4e0 4874 }
1c2308f8 4875
5d4f98a2 4876 path = btrfs_alloc_path();
80ee54bf 4877 if (!path)
d8926bb3 4878 return -ENOMEM;
56bec294 4879
29cbcf40
JB
4880 extent_root = btrfs_extent_root(fs_info, extent_key.objectid);
4881 ret = btrfs_insert_empty_item(trans, extent_root, path, &extent_key,
4882 size);
79787eaa 4883 if (ret) {
dd825259 4884 btrfs_free_path(path);
79787eaa
JM
4885 return ret;
4886 }
5d4f98a2
YZ
4887
4888 leaf = path->nodes[0];
4889 extent_item = btrfs_item_ptr(leaf, path->slots[0],
4890 struct btrfs_extent_item);
4891 btrfs_set_extent_refs(leaf, extent_item, 1);
4892 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
4893 btrfs_set_extent_flags(leaf, extent_item,
4894 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
5d4f98a2 4895
3173a18f
JB
4896 if (skinny_metadata) {
4897 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
4898 } else {
4899 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
21ebfbe7 4900 btrfs_set_tree_block_key(leaf, block_info, &extent_op->key);
4e6bd4e0 4901 btrfs_set_tree_block_level(leaf, block_info, ref->level);
3173a18f
JB
4902 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
4903 }
5d4f98a2 4904
d4b20733 4905 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) {
5d4f98a2
YZ
4906 btrfs_set_extent_inline_ref_type(leaf, iref,
4907 BTRFS_SHARED_BLOCK_REF_KEY);
d4b20733 4908 btrfs_set_extent_inline_ref_offset(leaf, iref, ref->parent);
5d4f98a2
YZ
4909 } else {
4910 btrfs_set_extent_inline_ref_type(leaf, iref,
4911 BTRFS_TREE_BLOCK_REF_KEY);
4e6bd4e0 4912 btrfs_set_extent_inline_ref_offset(leaf, iref, ref->root);
5d4f98a2
YZ
4913 }
4914
50564b65 4915 btrfs_mark_buffer_dirty(trans, leaf);
5d4f98a2
YZ
4916 btrfs_free_path(path);
4917
34666705 4918 return alloc_reserved_extent(trans, node->bytenr, fs_info->nodesize);
5d4f98a2
YZ
4919}
4920
4921int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
84f7d8e6 4922 struct btrfs_root *root, u64 owner,
5846a3c2
QW
4923 u64 offset, u64 ram_bytes,
4924 struct btrfs_key *ins)
5d4f98a2 4925{
76675593 4926 struct btrfs_ref generic_ref = { 0 };
457cb1dd
BB
4927 u64 root_objectid = root->root_key.objectid;
4928 u64 owning_root = root_objectid;
5d4f98a2 4929
457cb1dd 4930 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
5d4f98a2 4931
2672a051
BB
4932 if (btrfs_is_data_reloc_root(root) && is_fstree(root->relocation_src_root))
4933 owning_root = root->relocation_src_root;
4934
76675593 4935 btrfs_init_generic_ref(&generic_ref, BTRFS_ADD_DELAYED_EXTENT,
457cb1dd
BB
4936 ins->objectid, ins->offset, 0, owning_root);
4937 btrfs_init_data_ref(&generic_ref, root_objectid, owner,
f42c5da6 4938 offset, 0, false);
8a5040f7 4939 btrfs_ref_tree_mod(root->fs_info, &generic_ref);
2187374f
JB
4940
4941 return btrfs_add_delayed_data_ref(trans, &generic_ref, ram_bytes);
e6dcd2dc 4942}
e02119d5
CM
4943
4944/*
4945 * this is used by the tree logging recovery code. It records that
4946 * an extent has been allocated and makes sure to clear the free
4947 * space cache bits as well
4948 */
5d4f98a2 4949int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
5d4f98a2
YZ
4950 u64 root_objectid, u64 owner, u64 offset,
4951 struct btrfs_key *ins)
e02119d5 4952{
61da2abf 4953 struct btrfs_fs_info *fs_info = trans->fs_info;
e02119d5 4954 int ret;
32da5386 4955 struct btrfs_block_group *block_group;
ed7a6948 4956 struct btrfs_space_info *space_info;
cecbb533
BB
4957 struct btrfs_squota_delta delta = {
4958 .root = root_objectid,
4959 .num_bytes = ins->offset,
bd7c1ea3 4960 .generation = trans->transid,
cecbb533
BB
4961 .is_data = true,
4962 .is_inc = true,
4963 };
11833d66 4964
8c2a1a30
JB
4965 /*
4966 * Mixed block groups will exclude before processing the log so we only
01327610 4967 * need to do the exclude dance if this fs isn't mixed.
8c2a1a30 4968 */
0b246afa 4969 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) {
2ff7e61e
JM
4970 ret = __exclude_logged_extent(fs_info, ins->objectid,
4971 ins->offset);
b50c6e25 4972 if (ret)
8c2a1a30 4973 return ret;
11833d66
YZ
4974 }
4975
0b246afa 4976 block_group = btrfs_lookup_block_group(fs_info, ins->objectid);
8c2a1a30
JB
4977 if (!block_group)
4978 return -EINVAL;
4979
ed7a6948
WX
4980 space_info = block_group->space_info;
4981 spin_lock(&space_info->lock);
4982 spin_lock(&block_group->lock);
4983 space_info->bytes_reserved += ins->offset;
4984 block_group->reserved += ins->offset;
4985 spin_unlock(&block_group->lock);
4986 spin_unlock(&space_info->lock);
4987
ef89b824 4988 ret = alloc_reserved_file_extent(trans, 0, root_objectid, 0, owner,
2672a051 4989 offset, ins, 1, root_objectid);
bd727173 4990 if (ret)
ab9b2c7b 4991 btrfs_pin_extent(trans, ins->objectid, ins->offset, 1);
cecbb533 4992 ret = btrfs_record_squota_delta(fs_info, &delta);
b50c6e25 4993 btrfs_put_block_group(block_group);
e02119d5
CM
4994 return ret;
4995}
4996
150cce2d
DS
4997#ifdef CONFIG_BTRFS_DEBUG
4998/*
4999 * Extra safety check in case the extent tree is corrupted and extent allocator
5000 * chooses to use a tree block which is already used and locked.
5001 */
5002static bool check_eb_lock_owner(const struct extent_buffer *eb)
5003{
5004 if (eb->lock_owner == current->pid) {
5005 btrfs_err_rl(eb->fs_info,
5006"tree block %llu owner %llu already locked by pid=%d, extent tree corruption detected",
5007 eb->start, btrfs_header_owner(eb), current->pid);
5008 return true;
5009 }
5010 return false;
5011}
5012#else
5013static bool check_eb_lock_owner(struct extent_buffer *eb)
5014{
5015 return false;
5016}
5017#endif
5018
48a3b636
ES
5019static struct extent_buffer *
5020btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
9631e4cc
JB
5021 u64 bytenr, int level, u64 owner,
5022 enum btrfs_lock_nesting nest)
65b51a00 5023{
0b246afa 5024 struct btrfs_fs_info *fs_info = root->fs_info;
65b51a00 5025 struct extent_buffer *buf;
b40130b2 5026 u64 lockdep_owner = owner;
65b51a00 5027
3fbaf258 5028 buf = btrfs_find_create_tree_block(fs_info, bytenr, owner, level);
c871b0f2
LB
5029 if (IS_ERR(buf))
5030 return buf;
5031
150cce2d 5032 if (check_eb_lock_owner(buf)) {
b72c3aba
QW
5033 free_extent_buffer(buf);
5034 return ERR_PTR(-EUCLEAN);
5035 }
5036
b40130b2
JB
5037 /*
5038 * The reloc trees are just snapshots, so we need them to appear to be
5039 * just like any other fs tree WRT lockdep.
5040 *
5041 * The exception however is in replace_path() in relocation, where we
5042 * hold the lock on the original fs root and then search for the reloc
5043 * root. At that point we need to make sure any reloc root buffers are
5044 * set to the BTRFS_TREE_RELOC_OBJECTID lockdep class in order to make
5045 * lockdep happy.
5046 */
5047 if (lockdep_owner == BTRFS_TREE_RELOC_OBJECTID &&
5048 !test_bit(BTRFS_ROOT_RESET_LOCKDEP_CLASS, &root->state))
5049 lockdep_owner = BTRFS_FS_TREE_OBJECTID;
5050
618d1d7d 5051 /* btrfs_clear_buffer_dirty() accesses generation field. */
cbddcc4f
TH
5052 btrfs_set_header_generation(buf, trans->transid);
5053
e114c545
JB
5054 /*
5055 * This needs to stay, because we could allocate a freed block from an
5056 * old tree into a new tree, so we need to make sure this new block is
5057 * set to the appropriate level and owner.
5058 */
b40130b2
JB
5059 btrfs_set_buffer_lockdep_class(lockdep_owner, buf, level);
5060
9631e4cc 5061 __btrfs_tree_lock(buf, nest);
190a8339 5062 btrfs_clear_buffer_dirty(trans, buf);
3083ee2e 5063 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
cbf44cd9 5064 clear_bit(EXTENT_BUFFER_ZONED_ZEROOUT, &buf->bflags);
b4ce94de 5065
4db8c528 5066 set_extent_buffer_uptodate(buf);
b4ce94de 5067
bc877d28
NB
5068 memzero_extent_buffer(buf, 0, sizeof(struct btrfs_header));
5069 btrfs_set_header_level(buf, level);
5070 btrfs_set_header_bytenr(buf, buf->start);
5071 btrfs_set_header_generation(buf, trans->transid);
5072 btrfs_set_header_backref_rev(buf, BTRFS_MIXED_BACKREF_REV);
5073 btrfs_set_header_owner(buf, owner);
de37aa51 5074 write_extent_buffer_fsid(buf, fs_info->fs_devices->metadata_uuid);
bc877d28 5075 write_extent_buffer_chunk_tree_uuid(buf, fs_info->chunk_tree_uuid);
d0c803c4 5076 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
656f30db 5077 buf->log_index = root->log_transid % 2;
8cef4e16
YZ
5078 /*
5079 * we allow two log transactions at a time, use different
52042d8e 5080 * EXTENT bit to differentiate dirty pages.
8cef4e16 5081 */
656f30db 5082 if (buf->log_index == 0)
fe1a598c
DS
5083 set_extent_bit(&root->dirty_log_pages, buf->start,
5084 buf->start + buf->len - 1,
1d126800 5085 EXTENT_DIRTY, NULL);
8cef4e16 5086 else
eea8686e
DS
5087 set_extent_bit(&root->dirty_log_pages, buf->start,
5088 buf->start + buf->len - 1,
1d126800 5089 EXTENT_NEW, NULL);
d0c803c4 5090 } else {
656f30db 5091 buf->log_index = -1;
fe1a598c 5092 set_extent_bit(&trans->transaction->dirty_pages, buf->start,
1d126800 5093 buf->start + buf->len - 1, EXTENT_DIRTY, NULL);
d0c803c4 5094 }
b4ce94de 5095 /* this returns a buffer locked for blocking */
65b51a00
CM
5096 return buf;
5097}
5098
fec577fb 5099/*
f0486c68 5100 * finds a free extent and does all the dirty work required for allocation
67b7859e 5101 * returns the tree buffer or an ERR_PTR on error.
fec577fb 5102 */
4d75f8a9 5103struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
310712b2
OS
5104 struct btrfs_root *root,
5105 u64 parent, u64 root_objectid,
5106 const struct btrfs_disk_key *key,
5107 int level, u64 hint,
9631e4cc 5108 u64 empty_size,
60ea105a 5109 u64 reloc_src_root,
9631e4cc 5110 enum btrfs_lock_nesting nest)
fec577fb 5111{
0b246afa 5112 struct btrfs_fs_info *fs_info = root->fs_info;
e2fa7227 5113 struct btrfs_key ins;
f0486c68 5114 struct btrfs_block_rsv *block_rsv;
5f39d397 5115 struct extent_buffer *buf;
67b7859e 5116 struct btrfs_delayed_extent_op *extent_op;
ed4f255b 5117 struct btrfs_ref generic_ref = { 0 };
f0486c68
YZ
5118 u64 flags = 0;
5119 int ret;
0b246afa
JM
5120 u32 blocksize = fs_info->nodesize;
5121 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
60ea105a 5122 u64 owning_root;
fec577fb 5123
05653ef3 5124#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
0b246afa 5125 if (btrfs_is_testing(fs_info)) {
faa2dbf0 5126 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
9631e4cc 5127 level, root_objectid, nest);
faa2dbf0
JB
5128 if (!IS_ERR(buf))
5129 root->alloc_bytenr += blocksize;
5130 return buf;
5131 }
05653ef3 5132#endif
fccb84c9 5133
67f9c220 5134 block_rsv = btrfs_use_block_rsv(trans, root, blocksize);
f0486c68
YZ
5135 if (IS_ERR(block_rsv))
5136 return ERR_CAST(block_rsv);
5137
18513091 5138 ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize,
e570fd27 5139 empty_size, hint, &ins, 0, 0);
67b7859e
OS
5140 if (ret)
5141 goto out_unuse;
55c69072 5142
bc877d28 5143 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level,
9631e4cc 5144 root_objectid, nest);
67b7859e
OS
5145 if (IS_ERR(buf)) {
5146 ret = PTR_ERR(buf);
5147 goto out_free_reserved;
5148 }
60ea105a 5149 owning_root = btrfs_header_owner(buf);
f0486c68
YZ
5150
5151 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
5152 if (parent == 0)
5153 parent = ins.objectid;
5154 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
60ea105a 5155 owning_root = reloc_src_root;
f0486c68
YZ
5156 } else
5157 BUG_ON(parent > 0);
5158
5159 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
78a6184a 5160 extent_op = btrfs_alloc_delayed_extent_op();
67b7859e
OS
5161 if (!extent_op) {
5162 ret = -ENOMEM;
5163 goto out_free_buf;
5164 }
f0486c68
YZ
5165 if (key)
5166 memcpy(&extent_op->key, key, sizeof(extent_op->key));
5167 else
5168 memset(&extent_op->key, 0, sizeof(extent_op->key));
5169 extent_op->flags_to_set = flags;
35b3ad50
DS
5170 extent_op->update_key = skinny_metadata ? false : true;
5171 extent_op->update_flags = true;
b1c79e09 5172 extent_op->level = level;
f0486c68 5173
ed4f255b 5174 btrfs_init_generic_ref(&generic_ref, BTRFS_ADD_DELAYED_EXTENT,
60ea105a 5175 ins.objectid, ins.offset, parent, owning_root);
f42c5da6
NB
5176 btrfs_init_tree_ref(&generic_ref, level, root_objectid,
5177 root->root_key.objectid, false);
8a5040f7 5178 btrfs_ref_tree_mod(fs_info, &generic_ref);
2187374f 5179 ret = btrfs_add_delayed_tree_ref(trans, &generic_ref, extent_op);
67b7859e
OS
5180 if (ret)
5181 goto out_free_delayed;
f0486c68 5182 }
fec577fb 5183 return buf;
67b7859e
OS
5184
5185out_free_delayed:
5186 btrfs_free_delayed_extent_op(extent_op);
5187out_free_buf:
19ea40dd 5188 btrfs_tree_unlock(buf);
67b7859e
OS
5189 free_extent_buffer(buf);
5190out_free_reserved:
2ff7e61e 5191 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 0);
67b7859e 5192out_unuse:
67f9c220 5193 btrfs_unuse_block_rsv(fs_info, block_rsv, blocksize);
67b7859e 5194 return ERR_PTR(ret);
fec577fb 5195}
a28ec197 5196
2c47e605
YZ
5197struct walk_control {
5198 u64 refs[BTRFS_MAX_LEVEL];
5199 u64 flags[BTRFS_MAX_LEVEL];
5200 struct btrfs_key update_progress;
aea6f028
JB
5201 struct btrfs_key drop_progress;
5202 int drop_level;
2c47e605
YZ
5203 int stage;
5204 int level;
5205 int shared_level;
5206 int update_ref;
5207 int keep_locks;
1c4850e2
YZ
5208 int reada_slot;
5209 int reada_count;
78c52d9e 5210 int restarted;
2c47e605
YZ
5211};
5212
5213#define DROP_REFERENCE 1
5214#define UPDATE_BACKREF 2
5215
1c4850e2
YZ
5216static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
5217 struct btrfs_root *root,
5218 struct walk_control *wc,
5219 struct btrfs_path *path)
6407bf6d 5220{
0b246afa 5221 struct btrfs_fs_info *fs_info = root->fs_info;
1c4850e2
YZ
5222 u64 bytenr;
5223 u64 generation;
5224 u64 refs;
94fcca9f 5225 u64 flags;
5d4f98a2 5226 u32 nritems;
1c4850e2
YZ
5227 struct btrfs_key key;
5228 struct extent_buffer *eb;
6407bf6d 5229 int ret;
1c4850e2
YZ
5230 int slot;
5231 int nread = 0;
6407bf6d 5232
1c4850e2
YZ
5233 if (path->slots[wc->level] < wc->reada_slot) {
5234 wc->reada_count = wc->reada_count * 2 / 3;
5235 wc->reada_count = max(wc->reada_count, 2);
5236 } else {
5237 wc->reada_count = wc->reada_count * 3 / 2;
5238 wc->reada_count = min_t(int, wc->reada_count,
0b246afa 5239 BTRFS_NODEPTRS_PER_BLOCK(fs_info));
1c4850e2 5240 }
7bb86316 5241
1c4850e2
YZ
5242 eb = path->nodes[wc->level];
5243 nritems = btrfs_header_nritems(eb);
bd56b302 5244
1c4850e2
YZ
5245 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
5246 if (nread >= wc->reada_count)
5247 break;
bd56b302 5248
2dd3e67b 5249 cond_resched();
1c4850e2
YZ
5250 bytenr = btrfs_node_blockptr(eb, slot);
5251 generation = btrfs_node_ptr_generation(eb, slot);
2dd3e67b 5252
1c4850e2
YZ
5253 if (slot == path->slots[wc->level])
5254 goto reada;
5d4f98a2 5255
1c4850e2
YZ
5256 if (wc->stage == UPDATE_BACKREF &&
5257 generation <= root->root_key.offset)
bd56b302
CM
5258 continue;
5259
94fcca9f 5260 /* We don't lock the tree block, it's OK to be racy here */
2ff7e61e 5261 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr,
3173a18f 5262 wc->level - 1, 1, &refs,
d8ba2a91 5263 &flags, NULL);
79787eaa
JM
5264 /* We don't care about errors in readahead. */
5265 if (ret < 0)
5266 continue;
94fcca9f
YZ
5267 BUG_ON(refs == 0);
5268
1c4850e2 5269 if (wc->stage == DROP_REFERENCE) {
1c4850e2
YZ
5270 if (refs == 1)
5271 goto reada;
bd56b302 5272
94fcca9f
YZ
5273 if (wc->level == 1 &&
5274 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5275 continue;
1c4850e2
YZ
5276 if (!wc->update_ref ||
5277 generation <= root->root_key.offset)
5278 continue;
5279 btrfs_node_key_to_cpu(eb, &key, slot);
5280 ret = btrfs_comp_cpu_keys(&key,
5281 &wc->update_progress);
5282 if (ret < 0)
5283 continue;
94fcca9f
YZ
5284 } else {
5285 if (wc->level == 1 &&
5286 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5287 continue;
6407bf6d 5288 }
1c4850e2 5289reada:
bfb484d9 5290 btrfs_readahead_node_child(eb, slot);
1c4850e2 5291 nread++;
20524f02 5292 }
1c4850e2 5293 wc->reada_slot = slot;
20524f02 5294}
2c47e605 5295
f82d02d9 5296/*
2c016dc2 5297 * helper to process tree block while walking down the tree.
2c47e605 5298 *
2c47e605
YZ
5299 * when wc->stage == UPDATE_BACKREF, this function updates
5300 * back refs for pointers in the block.
5301 *
5302 * NOTE: return value 1 means we should stop walking down.
f82d02d9 5303 */
2c47e605 5304static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
5d4f98a2 5305 struct btrfs_root *root,
2c47e605 5306 struct btrfs_path *path,
94fcca9f 5307 struct walk_control *wc, int lookup_info)
f82d02d9 5308{
2ff7e61e 5309 struct btrfs_fs_info *fs_info = root->fs_info;
2c47e605
YZ
5310 int level = wc->level;
5311 struct extent_buffer *eb = path->nodes[level];
2c47e605 5312 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
f82d02d9
YZ
5313 int ret;
5314
2c47e605
YZ
5315 if (wc->stage == UPDATE_BACKREF &&
5316 btrfs_header_owner(eb) != root->root_key.objectid)
5317 return 1;
f82d02d9 5318
2c47e605
YZ
5319 /*
5320 * when reference count of tree block is 1, it won't increase
5321 * again. once full backref flag is set, we never clear it.
5322 */
94fcca9f
YZ
5323 if (lookup_info &&
5324 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
5325 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
2c47e605 5326 BUG_ON(!path->locks[level]);
2ff7e61e 5327 ret = btrfs_lookup_extent_info(trans, fs_info,
3173a18f 5328 eb->start, level, 1,
2c47e605 5329 &wc->refs[level],
d8ba2a91
JB
5330 &wc->flags[level],
5331 NULL);
79787eaa
JM
5332 BUG_ON(ret == -ENOMEM);
5333 if (ret)
5334 return ret;
2c47e605
YZ
5335 BUG_ON(wc->refs[level] == 0);
5336 }
5d4f98a2 5337
2c47e605
YZ
5338 if (wc->stage == DROP_REFERENCE) {
5339 if (wc->refs[level] > 1)
5340 return 1;
f82d02d9 5341
2c47e605 5342 if (path->locks[level] && !wc->keep_locks) {
bd681513 5343 btrfs_tree_unlock_rw(eb, path->locks[level]);
2c47e605
YZ
5344 path->locks[level] = 0;
5345 }
5346 return 0;
5347 }
f82d02d9 5348
2c47e605
YZ
5349 /* wc->stage == UPDATE_BACKREF */
5350 if (!(wc->flags[level] & flag)) {
5351 BUG_ON(!path->locks[level]);
e339a6b0 5352 ret = btrfs_inc_ref(trans, root, eb, 1);
79787eaa 5353 BUG_ON(ret); /* -ENOMEM */
e339a6b0 5354 ret = btrfs_dec_ref(trans, root, eb, 0);
79787eaa 5355 BUG_ON(ret); /* -ENOMEM */
4aec05fa 5356 ret = btrfs_set_disk_extent_flags(trans, eb, flag);
79787eaa 5357 BUG_ON(ret); /* -ENOMEM */
2c47e605
YZ
5358 wc->flags[level] |= flag;
5359 }
5360
5361 /*
5362 * the block is shared by multiple trees, so it's not good to
5363 * keep the tree lock
5364 */
5365 if (path->locks[level] && level > 0) {
bd681513 5366 btrfs_tree_unlock_rw(eb, path->locks[level]);
2c47e605
YZ
5367 path->locks[level] = 0;
5368 }
5369 return 0;
5370}
5371
78c52d9e
JB
5372/*
5373 * This is used to verify a ref exists for this root to deal with a bug where we
5374 * would have a drop_progress key that hadn't been updated properly.
5375 */
5376static int check_ref_exists(struct btrfs_trans_handle *trans,
5377 struct btrfs_root *root, u64 bytenr, u64 parent,
5378 int level)
5379{
5380 struct btrfs_path *path;
5381 struct btrfs_extent_inline_ref *iref;
5382 int ret;
5383
5384 path = btrfs_alloc_path();
5385 if (!path)
5386 return -ENOMEM;
5387
5388 ret = lookup_extent_backref(trans, path, &iref, bytenr,
5389 root->fs_info->nodesize, parent,
5390 root->root_key.objectid, level, 0);
5391 btrfs_free_path(path);
5392 if (ret == -ENOENT)
5393 return 0;
5394 if (ret < 0)
5395 return ret;
5396 return 1;
5397}
5398
1c4850e2 5399/*
2c016dc2 5400 * helper to process tree block pointer.
1c4850e2
YZ
5401 *
5402 * when wc->stage == DROP_REFERENCE, this function checks
5403 * reference count of the block pointed to. if the block
5404 * is shared and we need update back refs for the subtree
5405 * rooted at the block, this function changes wc->stage to
5406 * UPDATE_BACKREF. if the block is shared and there is no
5407 * need to update back, this function drops the reference
5408 * to the block.
5409 *
5410 * NOTE: return value 1 means we should stop walking down.
5411 */
5412static noinline int do_walk_down(struct btrfs_trans_handle *trans,
5413 struct btrfs_root *root,
5414 struct btrfs_path *path,
94fcca9f 5415 struct walk_control *wc, int *lookup_info)
1c4850e2 5416{
0b246afa 5417 struct btrfs_fs_info *fs_info = root->fs_info;
1c4850e2
YZ
5418 u64 bytenr;
5419 u64 generation;
5420 u64 parent;
d8ba2a91 5421 u64 owner_root = 0;
789d6a3a 5422 struct btrfs_tree_parent_check check = { 0 };
1c4850e2 5423 struct btrfs_key key;
ffd4bb2a 5424 struct btrfs_ref ref = { 0 };
1c4850e2
YZ
5425 struct extent_buffer *next;
5426 int level = wc->level;
5427 int reada = 0;
5428 int ret = 0;
1152651a 5429 bool need_account = false;
1c4850e2
YZ
5430
5431 generation = btrfs_node_ptr_generation(path->nodes[level],
5432 path->slots[level]);
5433 /*
5434 * if the lower level block was created before the snapshot
5435 * was created, we know there is no need to update back refs
5436 * for the subtree
5437 */
5438 if (wc->stage == UPDATE_BACKREF &&
94fcca9f
YZ
5439 generation <= root->root_key.offset) {
5440 *lookup_info = 1;
1c4850e2 5441 return 1;
94fcca9f 5442 }
1c4850e2
YZ
5443
5444 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
789d6a3a
QW
5445
5446 check.level = level - 1;
5447 check.transid = generation;
5448 check.owner_root = root->root_key.objectid;
5449 check.has_first_key = true;
5450 btrfs_node_key_to_cpu(path->nodes[level], &check.first_key,
581c1760 5451 path->slots[level]);
1c4850e2 5452
0b246afa 5453 next = find_extent_buffer(fs_info, bytenr);
1c4850e2 5454 if (!next) {
3fbaf258
JB
5455 next = btrfs_find_create_tree_block(fs_info, bytenr,
5456 root->root_key.objectid, level - 1);
c871b0f2
LB
5457 if (IS_ERR(next))
5458 return PTR_ERR(next);
1c4850e2
YZ
5459 reada = 1;
5460 }
5461 btrfs_tree_lock(next);
1c4850e2 5462
2ff7e61e 5463 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, level - 1, 1,
94fcca9f 5464 &wc->refs[level - 1],
d8ba2a91
JB
5465 &wc->flags[level - 1],
5466 &owner_root);
4867268c
JB
5467 if (ret < 0)
5468 goto out_unlock;
79787eaa 5469
c2cf52eb 5470 if (unlikely(wc->refs[level - 1] == 0)) {
0b246afa 5471 btrfs_err(fs_info, "Missing references.");
4867268c
JB
5472 ret = -EIO;
5473 goto out_unlock;
c2cf52eb 5474 }
94fcca9f 5475 *lookup_info = 0;
1c4850e2 5476
94fcca9f 5477 if (wc->stage == DROP_REFERENCE) {
1c4850e2 5478 if (wc->refs[level - 1] > 1) {
1152651a 5479 need_account = true;
94fcca9f
YZ
5480 if (level == 1 &&
5481 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5482 goto skip;
5483
1c4850e2
YZ
5484 if (!wc->update_ref ||
5485 generation <= root->root_key.offset)
5486 goto skip;
5487
5488 btrfs_node_key_to_cpu(path->nodes[level], &key,
5489 path->slots[level]);
5490 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
5491 if (ret < 0)
5492 goto skip;
5493
5494 wc->stage = UPDATE_BACKREF;
5495 wc->shared_level = level - 1;
5496 }
94fcca9f
YZ
5497 } else {
5498 if (level == 1 &&
5499 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
5500 goto skip;
1c4850e2
YZ
5501 }
5502
b9fab919 5503 if (!btrfs_buffer_uptodate(next, generation, 0)) {
1c4850e2
YZ
5504 btrfs_tree_unlock(next);
5505 free_extent_buffer(next);
5506 next = NULL;
94fcca9f 5507 *lookup_info = 1;
1c4850e2
YZ
5508 }
5509
5510 if (!next) {
5511 if (reada && level == 1)
5512 reada_walk_down(trans, root, wc, path);
789d6a3a 5513 next = read_tree_block(fs_info, bytenr, &check);
64c043de
LB
5514 if (IS_ERR(next)) {
5515 return PTR_ERR(next);
5516 } else if (!extent_buffer_uptodate(next)) {
416bc658 5517 free_extent_buffer(next);
97d9a8a4 5518 return -EIO;
416bc658 5519 }
1c4850e2 5520 btrfs_tree_lock(next);
1c4850e2
YZ
5521 }
5522
5523 level--;
4867268c
JB
5524 ASSERT(level == btrfs_header_level(next));
5525 if (level != btrfs_header_level(next)) {
5526 btrfs_err(root->fs_info, "mismatched level");
5527 ret = -EIO;
5528 goto out_unlock;
5529 }
1c4850e2
YZ
5530 path->nodes[level] = next;
5531 path->slots[level] = 0;
ac5887c8 5532 path->locks[level] = BTRFS_WRITE_LOCK;
1c4850e2
YZ
5533 wc->level = level;
5534 if (wc->level == 1)
5535 wc->reada_slot = 0;
5536 return 0;
5537skip:
5538 wc->refs[level - 1] = 0;
5539 wc->flags[level - 1] = 0;
94fcca9f
YZ
5540 if (wc->stage == DROP_REFERENCE) {
5541 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
5542 parent = path->nodes[level]->start;
5543 } else {
4867268c 5544 ASSERT(root->root_key.objectid ==
94fcca9f 5545 btrfs_header_owner(path->nodes[level]));
4867268c
JB
5546 if (root->root_key.objectid !=
5547 btrfs_header_owner(path->nodes[level])) {
5548 btrfs_err(root->fs_info,
5549 "mismatched block owner");
5550 ret = -EIO;
5551 goto out_unlock;
5552 }
94fcca9f
YZ
5553 parent = 0;
5554 }
1c4850e2 5555
78c52d9e
JB
5556 /*
5557 * If we had a drop_progress we need to verify the refs are set
5558 * as expected. If we find our ref then we know that from here
5559 * on out everything should be correct, and we can clear the
5560 * ->restarted flag.
5561 */
5562 if (wc->restarted) {
5563 ret = check_ref_exists(trans, root, bytenr, parent,
5564 level - 1);
5565 if (ret < 0)
5566 goto out_unlock;
5567 if (ret == 0)
5568 goto no_delete;
5569 ret = 0;
5570 wc->restarted = 0;
5571 }
5572
2cd86d30
QW
5573 /*
5574 * Reloc tree doesn't contribute to qgroup numbers, and we have
5575 * already accounted them at merge time (replace_path),
5576 * thus we could skip expensive subtree trace here.
5577 */
5578 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
5579 need_account) {
deb40627 5580 ret = btrfs_qgroup_trace_subtree(trans, next,
33d1f05c 5581 generation, level - 1);
1152651a 5582 if (ret) {
0b246afa 5583 btrfs_err_rl(fs_info,
5d163e0e
JM
5584 "Error %d accounting shared subtree. Quota is out of sync, rescan required.",
5585 ret);
1152651a
MF
5586 }
5587 }
aea6f028
JB
5588
5589 /*
5590 * We need to update the next key in our walk control so we can
5591 * update the drop_progress key accordingly. We don't care if
5592 * find_next_key doesn't find a key because that means we're at
5593 * the end and are going to clean up now.
5594 */
5595 wc->drop_level = level;
5596 find_next_key(path, level, &wc->drop_progress);
5597
ffd4bb2a 5598 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr,
d8ba2a91 5599 fs_info->nodesize, parent, owner_root);
f42c5da6
NB
5600 btrfs_init_tree_ref(&ref, level - 1, root->root_key.objectid,
5601 0, false);
ffd4bb2a 5602 ret = btrfs_free_extent(trans, &ref);
4867268c
JB
5603 if (ret)
5604 goto out_unlock;
1c4850e2 5605 }
78c52d9e 5606no_delete:
4867268c
JB
5607 *lookup_info = 1;
5608 ret = 1;
5609
5610out_unlock:
1c4850e2
YZ
5611 btrfs_tree_unlock(next);
5612 free_extent_buffer(next);
4867268c
JB
5613
5614 return ret;
1c4850e2
YZ
5615}
5616
2c47e605 5617/*
2c016dc2 5618 * helper to process tree block while walking up the tree.
2c47e605
YZ
5619 *
5620 * when wc->stage == DROP_REFERENCE, this function drops
5621 * reference count on the block.
5622 *
5623 * when wc->stage == UPDATE_BACKREF, this function changes
5624 * wc->stage back to DROP_REFERENCE if we changed wc->stage
5625 * to UPDATE_BACKREF previously while processing the block.
5626 *
5627 * NOTE: return value 1 means we should stop walking up.
5628 */
5629static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
5630 struct btrfs_root *root,
5631 struct btrfs_path *path,
5632 struct walk_control *wc)
5633{
0b246afa 5634 struct btrfs_fs_info *fs_info = root->fs_info;
f0486c68 5635 int ret;
2c47e605
YZ
5636 int level = wc->level;
5637 struct extent_buffer *eb = path->nodes[level];
5638 u64 parent = 0;
5639
5640 if (wc->stage == UPDATE_BACKREF) {
5641 BUG_ON(wc->shared_level < level);
5642 if (level < wc->shared_level)
5643 goto out;
5644
2c47e605
YZ
5645 ret = find_next_key(path, level + 1, &wc->update_progress);
5646 if (ret > 0)
5647 wc->update_ref = 0;
5648
5649 wc->stage = DROP_REFERENCE;
5650 wc->shared_level = -1;
5651 path->slots[level] = 0;
5652
5653 /*
5654 * check reference count again if the block isn't locked.
5655 * we should start walking down the tree again if reference
5656 * count is one.
5657 */
5658 if (!path->locks[level]) {
5659 BUG_ON(level == 0);
5660 btrfs_tree_lock(eb);
ac5887c8 5661 path->locks[level] = BTRFS_WRITE_LOCK;
2c47e605 5662
2ff7e61e 5663 ret = btrfs_lookup_extent_info(trans, fs_info,
3173a18f 5664 eb->start, level, 1,
2c47e605 5665 &wc->refs[level],
d8ba2a91
JB
5666 &wc->flags[level],
5667 NULL);
79787eaa
JM
5668 if (ret < 0) {
5669 btrfs_tree_unlock_rw(eb, path->locks[level]);
3268a246 5670 path->locks[level] = 0;
79787eaa
JM
5671 return ret;
5672 }
2c47e605
YZ
5673 BUG_ON(wc->refs[level] == 0);
5674 if (wc->refs[level] == 1) {
bd681513 5675 btrfs_tree_unlock_rw(eb, path->locks[level]);
3268a246 5676 path->locks[level] = 0;
2c47e605
YZ
5677 return 1;
5678 }
f82d02d9 5679 }
2c47e605 5680 }
f82d02d9 5681
2c47e605
YZ
5682 /* wc->stage == DROP_REFERENCE */
5683 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
5d4f98a2 5684
2c47e605
YZ
5685 if (wc->refs[level] == 1) {
5686 if (level == 0) {
5687 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
e339a6b0 5688 ret = btrfs_dec_ref(trans, root, eb, 1);
2c47e605 5689 else
e339a6b0 5690 ret = btrfs_dec_ref(trans, root, eb, 0);
79787eaa 5691 BUG_ON(ret); /* -ENOMEM */
c4140cbf
QW
5692 if (is_fstree(root->root_key.objectid)) {
5693 ret = btrfs_qgroup_trace_leaf_items(trans, eb);
5694 if (ret) {
5695 btrfs_err_rl(fs_info,
5696 "error %d accounting leaf items, quota is out of sync, rescan required",
5d163e0e 5697 ret);
c4140cbf 5698 }
1152651a 5699 }
2c47e605 5700 }
190a8339 5701 /* Make block locked assertion in btrfs_clear_buffer_dirty happy. */
d3fb6615 5702 if (!path->locks[level]) {
2c47e605 5703 btrfs_tree_lock(eb);
ac5887c8 5704 path->locks[level] = BTRFS_WRITE_LOCK;
2c47e605 5705 }
190a8339 5706 btrfs_clear_buffer_dirty(trans, eb);
2c47e605
YZ
5707 }
5708
5709 if (eb == root->node) {
5710 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
5711 parent = eb->start;
65c6e82b
QW
5712 else if (root->root_key.objectid != btrfs_header_owner(eb))
5713 goto owner_mismatch;
2c47e605
YZ
5714 } else {
5715 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
5716 parent = path->nodes[level + 1]->start;
65c6e82b
QW
5717 else if (root->root_key.objectid !=
5718 btrfs_header_owner(path->nodes[level + 1]))
5719 goto owner_mismatch;
f82d02d9 5720 }
f82d02d9 5721
7a163608
FM
5722 btrfs_free_tree_block(trans, btrfs_root_id(root), eb, parent,
5723 wc->refs[level] == 1);
2c47e605
YZ
5724out:
5725 wc->refs[level] = 0;
5726 wc->flags[level] = 0;
f0486c68 5727 return 0;
65c6e82b
QW
5728
5729owner_mismatch:
5730 btrfs_err_rl(fs_info, "unexpected tree owner, have %llu expect %llu",
5731 btrfs_header_owner(eb), root->root_key.objectid);
5732 return -EUCLEAN;
2c47e605
YZ
5733}
5734
5735static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
5736 struct btrfs_root *root,
5737 struct btrfs_path *path,
5738 struct walk_control *wc)
5739{
2c47e605 5740 int level = wc->level;
94fcca9f 5741 int lookup_info = 1;
4e194384 5742 int ret = 0;
2c47e605
YZ
5743
5744 while (level >= 0) {
94fcca9f 5745 ret = walk_down_proc(trans, root, path, wc, lookup_info);
4e194384 5746 if (ret)
2c47e605
YZ
5747 break;
5748
5749 if (level == 0)
5750 break;
5751
7a7965f8
YZ
5752 if (path->slots[level] >=
5753 btrfs_header_nritems(path->nodes[level]))
5754 break;
5755
94fcca9f 5756 ret = do_walk_down(trans, root, path, wc, &lookup_info);
1c4850e2
YZ
5757 if (ret > 0) {
5758 path->slots[level]++;
5759 continue;
90d2c51d 5760 } else if (ret < 0)
4e194384 5761 break;
1c4850e2 5762 level = wc->level;
f82d02d9 5763 }
4e194384 5764 return (ret == 1) ? 0 : ret;
f82d02d9
YZ
5765}
5766
d397712b 5767static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
98ed5174 5768 struct btrfs_root *root,
f82d02d9 5769 struct btrfs_path *path,
2c47e605 5770 struct walk_control *wc, int max_level)
20524f02 5771{
2c47e605 5772 int level = wc->level;
20524f02 5773 int ret;
9f3a7427 5774
2c47e605
YZ
5775 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
5776 while (level < max_level && path->nodes[level]) {
5777 wc->level = level;
5778 if (path->slots[level] + 1 <
5779 btrfs_header_nritems(path->nodes[level])) {
5780 path->slots[level]++;
20524f02
CM
5781 return 0;
5782 } else {
2c47e605
YZ
5783 ret = walk_up_proc(trans, root, path, wc);
5784 if (ret > 0)
5785 return 0;
65c6e82b
QW
5786 if (ret < 0)
5787 return ret;
bd56b302 5788
2c47e605 5789 if (path->locks[level]) {
bd681513
CM
5790 btrfs_tree_unlock_rw(path->nodes[level],
5791 path->locks[level]);
2c47e605 5792 path->locks[level] = 0;
f82d02d9 5793 }
2c47e605
YZ
5794 free_extent_buffer(path->nodes[level]);
5795 path->nodes[level] = NULL;
5796 level++;
20524f02
CM
5797 }
5798 }
5799 return 1;
5800}
5801
9aca1d51 5802/*
2c47e605
YZ
5803 * drop a subvolume tree.
5804 *
5805 * this function traverses the tree freeing any blocks that only
5806 * referenced by the tree.
5807 *
5808 * when a shared tree block is found. this function decreases its
5809 * reference count by one. if update_ref is true, this function
5810 * also make sure backrefs for the shared block and all lower level
5811 * blocks are properly updated.
9d1a2a3a
DS
5812 *
5813 * If called with for_reloc == 0, may exit early with -EAGAIN
9aca1d51 5814 */
0078a9f9 5815int btrfs_drop_snapshot(struct btrfs_root *root, int update_ref, int for_reloc)
20524f02 5816{
12a824dc
FM
5817 const bool is_reloc_root = (root->root_key.objectid ==
5818 BTRFS_TREE_RELOC_OBJECTID);
ab8d0fc4 5819 struct btrfs_fs_info *fs_info = root->fs_info;
5caf2a00 5820 struct btrfs_path *path;
2c47e605 5821 struct btrfs_trans_handle *trans;
ab8d0fc4 5822 struct btrfs_root *tree_root = fs_info->tree_root;
9f3a7427 5823 struct btrfs_root_item *root_item = &root->root_item;
2c47e605
YZ
5824 struct walk_control *wc;
5825 struct btrfs_key key;
5826 int err = 0;
5827 int ret;
5828 int level;
d29a9f62 5829 bool root_dropped = false;
b4be6aef 5830 bool unfinished_drop = false;
20524f02 5831
4fd786e6 5832 btrfs_debug(fs_info, "Drop subvolume %llu", root->root_key.objectid);
1152651a 5833
5caf2a00 5834 path = btrfs_alloc_path();
cb1b69f4
TI
5835 if (!path) {
5836 err = -ENOMEM;
5837 goto out;
5838 }
20524f02 5839
2c47e605 5840 wc = kzalloc(sizeof(*wc), GFP_NOFS);
38a1a919
MF
5841 if (!wc) {
5842 btrfs_free_path(path);
cb1b69f4
TI
5843 err = -ENOMEM;
5844 goto out;
38a1a919 5845 }
2c47e605 5846
f3e3d9cc
QW
5847 /*
5848 * Use join to avoid potential EINTR from transaction start. See
5849 * wait_reserve_ticket and the whole reservation callchain.
5850 */
5851 if (for_reloc)
5852 trans = btrfs_join_transaction(tree_root);
5853 else
5854 trans = btrfs_start_transaction(tree_root, 0);
79787eaa
JM
5855 if (IS_ERR(trans)) {
5856 err = PTR_ERR(trans);
5857 goto out_free;
5858 }
98d5dc13 5859
0568e82d
JB
5860 err = btrfs_run_delayed_items(trans);
5861 if (err)
5862 goto out_end_trans;
5863
83354f07
JB
5864 /*
5865 * This will help us catch people modifying the fs tree while we're
5866 * dropping it. It is unsafe to mess with the fs tree while it's being
5867 * dropped as we unlock the root node and parent nodes as we walk down
5868 * the tree, assuming nothing will change. If something does change
5869 * then we'll have stale information and drop references to blocks we've
5870 * already dropped.
5871 */
5872 set_bit(BTRFS_ROOT_DELETING, &root->state);
b4be6aef
JB
5873 unfinished_drop = test_bit(BTRFS_ROOT_UNFINISHED_DROP, &root->state);
5874
9f3a7427 5875 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2c47e605 5876 level = btrfs_header_level(root->node);
5d4f98a2 5877 path->nodes[level] = btrfs_lock_root_node(root);
9f3a7427 5878 path->slots[level] = 0;
ac5887c8 5879 path->locks[level] = BTRFS_WRITE_LOCK;
2c47e605
YZ
5880 memset(&wc->update_progress, 0,
5881 sizeof(wc->update_progress));
9f3a7427 5882 } else {
9f3a7427 5883 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
2c47e605
YZ
5884 memcpy(&wc->update_progress, &key,
5885 sizeof(wc->update_progress));
5886
c8422684 5887 level = btrfs_root_drop_level(root_item);
2c47e605 5888 BUG_ON(level == 0);
6702ed49 5889 path->lowest_level = level;
2c47e605
YZ
5890 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5891 path->lowest_level = 0;
5892 if (ret < 0) {
5893 err = ret;
79787eaa 5894 goto out_end_trans;
9f3a7427 5895 }
1c4850e2 5896 WARN_ON(ret > 0);
2c47e605 5897
7d9eb12c
CM
5898 /*
5899 * unlock our path, this is safe because only this
5900 * function is allowed to delete this snapshot
5901 */
5d4f98a2 5902 btrfs_unlock_up_safe(path, 0);
2c47e605
YZ
5903
5904 level = btrfs_header_level(root->node);
5905 while (1) {
5906 btrfs_tree_lock(path->nodes[level]);
ac5887c8 5907 path->locks[level] = BTRFS_WRITE_LOCK;
2c47e605 5908
2ff7e61e 5909 ret = btrfs_lookup_extent_info(trans, fs_info,
2c47e605 5910 path->nodes[level]->start,
3173a18f 5911 level, 1, &wc->refs[level],
d8ba2a91 5912 &wc->flags[level], NULL);
79787eaa
JM
5913 if (ret < 0) {
5914 err = ret;
5915 goto out_end_trans;
5916 }
2c47e605
YZ
5917 BUG_ON(wc->refs[level] == 0);
5918
c8422684 5919 if (level == btrfs_root_drop_level(root_item))
2c47e605
YZ
5920 break;
5921
5922 btrfs_tree_unlock(path->nodes[level]);
fec386ac 5923 path->locks[level] = 0;
2c47e605
YZ
5924 WARN_ON(wc->refs[level] != 1);
5925 level--;
5926 }
9f3a7427 5927 }
2c47e605 5928
78c52d9e 5929 wc->restarted = test_bit(BTRFS_ROOT_DEAD_TREE, &root->state);
2c47e605
YZ
5930 wc->level = level;
5931 wc->shared_level = -1;
5932 wc->stage = DROP_REFERENCE;
5933 wc->update_ref = update_ref;
5934 wc->keep_locks = 0;
0b246afa 5935 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
2c47e605 5936
d397712b 5937 while (1) {
9d1a2a3a 5938
2c47e605
YZ
5939 ret = walk_down_tree(trans, root, path, wc);
5940 if (ret < 0) {
9a93b5a3 5941 btrfs_abort_transaction(trans, ret);
2c47e605 5942 err = ret;
20524f02 5943 break;
2c47e605 5944 }
9aca1d51 5945
2c47e605
YZ
5946 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
5947 if (ret < 0) {
9a93b5a3 5948 btrfs_abort_transaction(trans, ret);
2c47e605 5949 err = ret;
20524f02 5950 break;
2c47e605
YZ
5951 }
5952
5953 if (ret > 0) {
5954 BUG_ON(wc->stage != DROP_REFERENCE);
e7a84565
CM
5955 break;
5956 }
2c47e605
YZ
5957
5958 if (wc->stage == DROP_REFERENCE) {
aea6f028
JB
5959 wc->drop_level = wc->level;
5960 btrfs_node_key_to_cpu(path->nodes[wc->drop_level],
5961 &wc->drop_progress,
5962 path->slots[wc->drop_level]);
5963 }
5964 btrfs_cpu_key_to_disk(&root_item->drop_progress,
5965 &wc->drop_progress);
c8422684 5966 btrfs_set_root_drop_level(root_item, wc->drop_level);
2c47e605
YZ
5967
5968 BUG_ON(wc->level == 0);
3a45bb20 5969 if (btrfs_should_end_transaction(trans) ||
2ff7e61e 5970 (!for_reloc && btrfs_need_cleaner_sleep(fs_info))) {
2c47e605
YZ
5971 ret = btrfs_update_root(trans, tree_root,
5972 &root->root_key,
5973 root_item);
79787eaa 5974 if (ret) {
66642832 5975 btrfs_abort_transaction(trans, ret);
79787eaa
JM
5976 err = ret;
5977 goto out_end_trans;
5978 }
2c47e605 5979
12a824dc
FM
5980 if (!is_reloc_root)
5981 btrfs_set_last_root_drop_gen(fs_info, trans->transid);
5982
3a45bb20 5983 btrfs_end_transaction_throttle(trans);
2ff7e61e 5984 if (!for_reloc && btrfs_need_cleaner_sleep(fs_info)) {
ab8d0fc4
JM
5985 btrfs_debug(fs_info,
5986 "drop snapshot early exit");
3c8f2422
JB
5987 err = -EAGAIN;
5988 goto out_free;
5989 }
5990
18d3bff4
JB
5991 /*
5992 * Use join to avoid potential EINTR from transaction
5993 * start. See wait_reserve_ticket and the whole
5994 * reservation callchain.
5995 */
5996 if (for_reloc)
5997 trans = btrfs_join_transaction(tree_root);
5998 else
5999 trans = btrfs_start_transaction(tree_root, 0);
79787eaa
JM
6000 if (IS_ERR(trans)) {
6001 err = PTR_ERR(trans);
6002 goto out_free;
6003 }
c3e69d58 6004 }
20524f02 6005 }
b3b4aa74 6006 btrfs_release_path(path);
79787eaa
JM
6007 if (err)
6008 goto out_end_trans;
2c47e605 6009
ab9ce7d4 6010 ret = btrfs_del_root(trans, &root->root_key);
79787eaa 6011 if (ret) {
66642832 6012 btrfs_abort_transaction(trans, ret);
e19182c0 6013 err = ret;
79787eaa
JM
6014 goto out_end_trans;
6015 }
2c47e605 6016
12a824dc 6017 if (!is_reloc_root) {
cb517eab
MX
6018 ret = btrfs_find_root(tree_root, &root->root_key, path,
6019 NULL, NULL);
79787eaa 6020 if (ret < 0) {
66642832 6021 btrfs_abort_transaction(trans, ret);
79787eaa
JM
6022 err = ret;
6023 goto out_end_trans;
6024 } else if (ret > 0) {
84cd948c
JB
6025 /* if we fail to delete the orphan item this time
6026 * around, it'll get picked up the next time.
6027 *
6028 * The most common failure here is just -ENOENT.
6029 */
6030 btrfs_del_orphan_item(trans, tree_root,
6031 root->root_key.objectid);
76dda93c
YZ
6032 }
6033 }
6034
a3cf0e43
QW
6035 /*
6036 * This subvolume is going to be completely dropped, and won't be
6037 * recorded as dirty roots, thus pertrans meta rsv will not be freed at
6038 * commit transaction time. So free it here manually.
6039 */
6040 btrfs_qgroup_convert_reserved_meta(root, INT_MAX);
6041 btrfs_qgroup_free_meta_all_pertrans(root);
6042
fc7cbcd4 6043 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state))
2b9dbef2 6044 btrfs_add_dropped_root(trans, root);
8c38938c 6045 else
00246528 6046 btrfs_put_root(root);
d29a9f62 6047 root_dropped = true;
79787eaa 6048out_end_trans:
12a824dc
FM
6049 if (!is_reloc_root)
6050 btrfs_set_last_root_drop_gen(fs_info, trans->transid);
6051
3a45bb20 6052 btrfs_end_transaction_throttle(trans);
79787eaa 6053out_free:
2c47e605 6054 kfree(wc);
5caf2a00 6055 btrfs_free_path(path);
cb1b69f4 6056out:
b4be6aef
JB
6057 /*
6058 * We were an unfinished drop root, check to see if there are any
6059 * pending, and if not clear and wake up any waiters.
6060 */
6061 if (!err && unfinished_drop)
6062 btrfs_maybe_wake_unfinished_drop(fs_info);
6063
d29a9f62
JB
6064 /*
6065 * So if we need to stop dropping the snapshot for whatever reason we
6066 * need to make sure to add it back to the dead root list so that we
6067 * keep trying to do the work later. This also cleans up roots if we
6068 * don't have it in the radix (like when we recover after a power fail
6069 * or unmount) so we don't leak memory.
6070 */
897ca819 6071 if (!for_reloc && !root_dropped)
d29a9f62 6072 btrfs_add_dead_root(root);
2c536799 6073 return err;
20524f02 6074}
9078a3e1 6075
2c47e605
YZ
6076/*
6077 * drop subtree rooted at tree block 'node'.
6078 *
6079 * NOTE: this function will unlock and release tree block 'node'
66d7e7f0 6080 * only used by relocation code
2c47e605 6081 */
f82d02d9
YZ
6082int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
6083 struct btrfs_root *root,
6084 struct extent_buffer *node,
6085 struct extent_buffer *parent)
6086{
0b246afa 6087 struct btrfs_fs_info *fs_info = root->fs_info;
f82d02d9 6088 struct btrfs_path *path;
2c47e605 6089 struct walk_control *wc;
f82d02d9
YZ
6090 int level;
6091 int parent_level;
6092 int ret = 0;
6093 int wret;
6094
2c47e605
YZ
6095 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
6096
f82d02d9 6097 path = btrfs_alloc_path();
db5b493a
TI
6098 if (!path)
6099 return -ENOMEM;
f82d02d9 6100
2c47e605 6101 wc = kzalloc(sizeof(*wc), GFP_NOFS);
db5b493a
TI
6102 if (!wc) {
6103 btrfs_free_path(path);
6104 return -ENOMEM;
6105 }
2c47e605 6106
49d0c642 6107 btrfs_assert_tree_write_locked(parent);
f82d02d9 6108 parent_level = btrfs_header_level(parent);
67439dad 6109 atomic_inc(&parent->refs);
f82d02d9
YZ
6110 path->nodes[parent_level] = parent;
6111 path->slots[parent_level] = btrfs_header_nritems(parent);
6112
49d0c642 6113 btrfs_assert_tree_write_locked(node);
f82d02d9 6114 level = btrfs_header_level(node);
f82d02d9
YZ
6115 path->nodes[level] = node;
6116 path->slots[level] = 0;
ac5887c8 6117 path->locks[level] = BTRFS_WRITE_LOCK;
2c47e605
YZ
6118
6119 wc->refs[parent_level] = 1;
6120 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
6121 wc->level = level;
6122 wc->shared_level = -1;
6123 wc->stage = DROP_REFERENCE;
6124 wc->update_ref = 0;
6125 wc->keep_locks = 1;
0b246afa 6126 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
f82d02d9
YZ
6127
6128 while (1) {
2c47e605
YZ
6129 wret = walk_down_tree(trans, root, path, wc);
6130 if (wret < 0) {
f82d02d9 6131 ret = wret;
f82d02d9 6132 break;
2c47e605 6133 }
f82d02d9 6134
2c47e605 6135 wret = walk_up_tree(trans, root, path, wc, parent_level);
f82d02d9
YZ
6136 if (wret < 0)
6137 ret = wret;
6138 if (wret != 0)
6139 break;
6140 }
6141
2c47e605 6142 kfree(wc);
f82d02d9
YZ
6143 btrfs_free_path(path);
6144 return ret;
6145}
6146
2ff7e61e
JM
6147int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info,
6148 u64 start, u64 end)
acce952b 6149{
2ff7e61e 6150 return unpin_extent_range(fs_info, start, end, false);
acce952b 6151}
6152
499f377f
JM
6153/*
6154 * It used to be that old block groups would be left around forever.
6155 * Iterating over them would be enough to trim unused space. Since we
6156 * now automatically remove them, we also need to iterate over unallocated
6157 * space.
6158 *
6159 * We don't want a transaction for this since the discard may take a
6160 * substantial amount of time. We don't require that a transaction be
6161 * running, but we do need to take a running transaction into account
fee7acc3
JM
6162 * to ensure that we're not discarding chunks that were released or
6163 * allocated in the current transaction.
499f377f
JM
6164 *
6165 * Holding the chunks lock will prevent other threads from allocating
6166 * or releasing chunks, but it won't prevent a running transaction
6167 * from committing and releasing the memory that the pending chunks
6168 * list head uses. For that, we need to take a reference to the
fee7acc3
JM
6169 * transaction and hold the commit root sem. We only need to hold
6170 * it while performing the free space search since we have already
6171 * held back allocations.
499f377f 6172 */
8103d10b 6173static int btrfs_trim_free_extents(struct btrfs_device *device, u64 *trimmed)
499f377f 6174{
37f85ec3 6175 u64 start = BTRFS_DEVICE_RANGE_RESERVED, len = 0, end = 0;
499f377f
JM
6176 int ret;
6177
6178 *trimmed = 0;
6179
0be88e36 6180 /* Discard not supported = nothing to do. */
70200574 6181 if (!bdev_max_discard_sectors(device->bdev))
0be88e36
JM
6182 return 0;
6183
52042d8e 6184 /* Not writable = nothing to do. */
ebbede42 6185 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
499f377f
JM
6186 return 0;
6187
6188 /* No free space = nothing to do. */
6189 if (device->total_bytes <= device->bytes_used)
6190 return 0;
6191
6192 ret = 0;
6193
6194 while (1) {
fb456252 6195 struct btrfs_fs_info *fs_info = device->fs_info;
499f377f
JM
6196 u64 bytes;
6197
6198 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
6199 if (ret)
fee7acc3 6200 break;
499f377f 6201
929be17a
NB
6202 find_first_clear_extent_bit(&device->alloc_state, start,
6203 &start, &end,
6204 CHUNK_TRIMMED | CHUNK_ALLOCATED);
53460a45 6205
c57dd1f2
QW
6206 /* Check if there are any CHUNK_* bits left */
6207 if (start > device->total_bytes) {
6208 WARN_ON(IS_ENABLED(CONFIG_BTRFS_DEBUG));
6209 btrfs_warn_in_rcu(fs_info,
6210"ignoring attempt to trim beyond device size: offset %llu length %llu device %s device size %llu",
6211 start, end - start + 1,
cb3e217b 6212 btrfs_dev_name(device),
c57dd1f2
QW
6213 device->total_bytes);
6214 mutex_unlock(&fs_info->chunk_mutex);
6215 ret = 0;
6216 break;
6217 }
6218
37f85ec3
QW
6219 /* Ensure we skip the reserved space on each device. */
6220 start = max_t(u64, start, BTRFS_DEVICE_RANGE_RESERVED);
53460a45 6221
929be17a
NB
6222 /*
6223 * If find_first_clear_extent_bit find a range that spans the
6224 * end of the device it will set end to -1, in this case it's up
6225 * to the caller to trim the value to the size of the device.
6226 */
6227 end = min(end, device->total_bytes - 1);
53460a45 6228
929be17a 6229 len = end - start + 1;
499f377f 6230
929be17a
NB
6231 /* We didn't find any extents */
6232 if (!len) {
499f377f 6233 mutex_unlock(&fs_info->chunk_mutex);
929be17a 6234 ret = 0;
499f377f
JM
6235 break;
6236 }
6237
929be17a
NB
6238 ret = btrfs_issue_discard(device->bdev, start, len,
6239 &bytes);
6240 if (!ret)
0acd32c2 6241 set_extent_bit(&device->alloc_state, start,
1d126800 6242 start + bytes - 1, CHUNK_TRIMMED, NULL);
499f377f
JM
6243 mutex_unlock(&fs_info->chunk_mutex);
6244
6245 if (ret)
6246 break;
6247
6248 start += len;
6249 *trimmed += bytes;
6250
6251 if (fatal_signal_pending(current)) {
6252 ret = -ERESTARTSYS;
6253 break;
6254 }
6255
6256 cond_resched();
6257 }
6258
6259 return ret;
6260}
6261
93bba24d
QW
6262/*
6263 * Trim the whole filesystem by:
6264 * 1) trimming the free space in each block group
6265 * 2) trimming the unallocated space on each device
6266 *
6267 * This will also continue trimming even if a block group or device encounters
6268 * an error. The return value will be the last error, or 0 if nothing bad
6269 * happens.
6270 */
2ff7e61e 6271int btrfs_trim_fs(struct btrfs_fs_info *fs_info, struct fstrim_range *range)
f7039b1d 6272{
23608d51 6273 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
32da5386 6274 struct btrfs_block_group *cache = NULL;
499f377f 6275 struct btrfs_device *device;
f7039b1d 6276 u64 group_trimmed;
07301df7 6277 u64 range_end = U64_MAX;
f7039b1d
LD
6278 u64 start;
6279 u64 end;
6280 u64 trimmed = 0;
93bba24d
QW
6281 u64 bg_failed = 0;
6282 u64 dev_failed = 0;
6283 int bg_ret = 0;
6284 int dev_ret = 0;
f7039b1d
LD
6285 int ret = 0;
6286
f981fec1
JB
6287 if (range->start == U64_MAX)
6288 return -EINVAL;
6289
07301df7
QW
6290 /*
6291 * Check range overflow if range->len is set.
6292 * The default range->len is U64_MAX.
6293 */
6294 if (range->len != U64_MAX &&
6295 check_add_overflow(range->start, range->len, &range_end))
6296 return -EINVAL;
6297
6ba9fc8e 6298 cache = btrfs_lookup_first_block_group(fs_info, range->start);
2e405ad8 6299 for (; cache; cache = btrfs_next_block_group(cache)) {
b3470b5d 6300 if (cache->start >= range_end) {
f7039b1d
LD
6301 btrfs_put_block_group(cache);
6302 break;
6303 }
6304
b3470b5d
DS
6305 start = max(range->start, cache->start);
6306 end = min(range_end, cache->start + cache->length);
f7039b1d
LD
6307
6308 if (end - start >= range->minlen) {
32da5386 6309 if (!btrfs_block_group_done(cache)) {
ced8ecf0 6310 ret = btrfs_cache_block_group(cache, true);
1be41b78 6311 if (ret) {
93bba24d
QW
6312 bg_failed++;
6313 bg_ret = ret;
6314 continue;
1be41b78 6315 }
f7039b1d
LD
6316 }
6317 ret = btrfs_trim_block_group(cache,
6318 &group_trimmed,
6319 start,
6320 end,
6321 range->minlen);
6322
6323 trimmed += group_trimmed;
6324 if (ret) {
93bba24d
QW
6325 bg_failed++;
6326 bg_ret = ret;
6327 continue;
f7039b1d
LD
6328 }
6329 }
f7039b1d
LD
6330 }
6331
93bba24d
QW
6332 if (bg_failed)
6333 btrfs_warn(fs_info,
6334 "failed to trim %llu block group(s), last error %d",
6335 bg_failed, bg_ret);
23608d51
AJ
6336
6337 mutex_lock(&fs_devices->device_list_mutex);
6338 list_for_each_entry(device, &fs_devices->devices, dev_list) {
16a200f6
AJ
6339 if (test_bit(BTRFS_DEV_STATE_MISSING, &device->dev_state))
6340 continue;
6341
8103d10b 6342 ret = btrfs_trim_free_extents(device, &group_trimmed);
93bba24d
QW
6343 if (ret) {
6344 dev_failed++;
6345 dev_ret = ret;
499f377f 6346 break;
93bba24d 6347 }
499f377f
JM
6348
6349 trimmed += group_trimmed;
6350 }
23608d51 6351 mutex_unlock(&fs_devices->device_list_mutex);
499f377f 6352
93bba24d
QW
6353 if (dev_failed)
6354 btrfs_warn(fs_info,
6355 "failed to trim %llu device(s), last error %d",
6356 dev_failed, dev_ret);
f7039b1d 6357 range->len = trimmed;
93bba24d
QW
6358 if (bg_ret)
6359 return bg_ret;
6360 return dev_ret;
f7039b1d 6361}