extent-tree.c 313.9 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
C
Chris Mason 已提交
2 3 4
/*
 * Copyright (C) 2007 Oracle.  All rights reserved.
 */
5

Z
Zach Brown 已提交
6
#include <linux/sched.h>
7
#include <linux/sched/signal.h>
8
#include <linux/pagemap.h>
9
#include <linux/writeback.h>
10
#include <linux/blkdev.h>
11
#include <linux/sort.h>
12
#include <linux/rcupdate.h>
J
Josef Bacik 已提交
13
#include <linux/kthread.h>
14
#include <linux/slab.h>
15
#include <linux/ratelimit.h>
16
#include <linux/percpu_counter.h>
17
#include <linux/lockdep.h>
18
#include <linux/crc32c.h>
19
#include "tree-log.h"
20 21
#include "disk-io.h"
#include "print-tree.h"
22
#include "volumes.h"
D
David Woodhouse 已提交
23
#include "raid56.h"
24
#include "locking.h"
25
#include "free-space-cache.h"
26
#include "free-space-tree.h"
27
#include "math.h"
28
#include "sysfs.h"
J
Josef Bacik 已提交
29
#include "qgroup.h"
J
Josef Bacik 已提交
30
#include "ref-verify.h"
31

32 33
#undef SCRAMBLE_DELAYED_REFS

34 35
/*
 * control flags for do_chunk_alloc's force field
36 37 38 39 40 41 42 43 44
 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
 * if we really need one.
 *
 * CHUNK_ALLOC_LIMITED means to only try and allocate one
 * if we have very few chunks already allocated.  This is
 * used as part of the clustering code to help make sure
 * we have a good pool of storage to cluster in, without
 * filling the FS with empty chunks
 *
45 46
 * CHUNK_ALLOC_FORCE means it must try to allocate one
 *
47 48 49
 */
enum {
	CHUNK_ALLOC_NO_FORCE = 0,
50 51
	CHUNK_ALLOC_LIMITED = 1,
	CHUNK_ALLOC_FORCE = 2,
52 53
};

54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
/*
 * Declare a helper function to detect underflow of various space info members
 */
#define DECLARE_SPACE_INFO_UPDATE(name)					\
static inline void update_##name(struct btrfs_space_info *sinfo,	\
				 s64 bytes)				\
{									\
	if (bytes < 0 && sinfo->name < -bytes) {			\
		WARN_ON(1);						\
		sinfo->name = 0;					\
		return;							\
	}								\
	sinfo->name += bytes;						\
}

DECLARE_SPACE_INFO_UPDATE(bytes_may_use);
70
DECLARE_SPACE_INFO_UPDATE(bytes_pinned);
71

72
static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
73 74 75 76
			       struct btrfs_delayed_ref_node *node, u64 parent,
			       u64 root_objectid, u64 owner_objectid,
			       u64 owner_offset, int refs_to_drop,
			       struct btrfs_delayed_extent_op *extra_op);
77 78 79 80 81 82 83 84
static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
				    struct extent_buffer *leaf,
				    struct btrfs_extent_item *ei);
static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
				      u64 parent, u64 root_objectid,
				      u64 flags, u64 owner, u64 offset,
				      struct btrfs_key *ins, int ref_mod);
static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
85
				     struct btrfs_delayed_ref_node *node,
86
				     struct btrfs_delayed_extent_op *extent_op);
87
static int do_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags,
88
			  int force);
89 90
static int find_next_key(struct btrfs_path *path, int level,
			 struct btrfs_key *key);
91 92
static void dump_space_info(struct btrfs_fs_info *fs_info,
			    struct btrfs_space_info *info, u64 bytes,
J
Josef Bacik 已提交
93
			    int dump_block_groups);
94 95
static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
			       u64 num_bytes);
96 97 98 99 100 101
static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
				     struct btrfs_space_info *space_info,
				     u64 num_bytes);
static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
				     struct btrfs_space_info *space_info,
				     u64 num_bytes);
J
Josef Bacik 已提交
102

J
Josef Bacik 已提交
103 104 105 106
static noinline int
block_group_cache_done(struct btrfs_block_group_cache *cache)
{
	smp_mb();
107 108
	return cache->cached == BTRFS_CACHE_FINISHED ||
		cache->cached == BTRFS_CACHE_ERROR;
J
Josef Bacik 已提交
109 110
}

J
Josef Bacik 已提交
111 112 113 114 115
static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
{
	return (cache->flags & bits) == bits;
}

116
void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
117 118 119 120 121 122
{
	atomic_inc(&cache->count);
}

void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
{
123 124 125
	if (atomic_dec_and_test(&cache->count)) {
		WARN_ON(cache->pinned > 0);
		WARN_ON(cache->reserved > 0);
126 127 128 129 130 131 132 133 134 135

		/*
		 * If not empty, someone is still holding mutex of
		 * full_stripe_lock, which can only be released by caller.
		 * And it will definitely cause use-after-free when caller
		 * tries to release full stripe lock.
		 *
		 * No better way to resolve, but only to warn.
		 */
		WARN_ON(!RB_EMPTY_ROOT(&cache->full_stripe_locks_root.root));
136
		kfree(cache->free_space_ctl);
137
		kfree(cache);
138
	}
139 140
}

J
Josef Bacik 已提交
141 142 143 144
/*
 * this adds the block group to the fs_info rb tree for the block group
 * cache
 */
145
static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
J
Josef Bacik 已提交
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
				struct btrfs_block_group_cache *block_group)
{
	struct rb_node **p;
	struct rb_node *parent = NULL;
	struct btrfs_block_group_cache *cache;

	spin_lock(&info->block_group_cache_lock);
	p = &info->block_group_cache_tree.rb_node;

	while (*p) {
		parent = *p;
		cache = rb_entry(parent, struct btrfs_block_group_cache,
				 cache_node);
		if (block_group->key.objectid < cache->key.objectid) {
			p = &(*p)->rb_left;
		} else if (block_group->key.objectid > cache->key.objectid) {
			p = &(*p)->rb_right;
		} else {
			spin_unlock(&info->block_group_cache_lock);
			return -EEXIST;
		}
	}

	rb_link_node(&block_group->cache_node, parent, p);
	rb_insert_color(&block_group->cache_node,
			&info->block_group_cache_tree);
172 173 174 175

	if (info->first_logical_byte > block_group->key.objectid)
		info->first_logical_byte = block_group->key.objectid;

J
Josef Bacik 已提交
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
	spin_unlock(&info->block_group_cache_lock);

	return 0;
}

/*
 * This will return the block group at or after bytenr if contains is 0, else
 * it will return the block group that contains the bytenr
 */
static struct btrfs_block_group_cache *
block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
			      int contains)
{
	struct btrfs_block_group_cache *cache, *ret = NULL;
	struct rb_node *n;
	u64 end, start;

	spin_lock(&info->block_group_cache_lock);
	n = info->block_group_cache_tree.rb_node;

	while (n) {
		cache = rb_entry(n, struct btrfs_block_group_cache,
				 cache_node);
		end = cache->key.objectid + cache->key.offset - 1;
		start = cache->key.objectid;

		if (bytenr < start) {
			if (!contains && (!ret || start < ret->key.objectid))
				ret = cache;
			n = n->rb_left;
		} else if (bytenr > start) {
			if (contains && bytenr <= end) {
				ret = cache;
				break;
			}
			n = n->rb_right;
		} else {
			ret = cache;
			break;
		}
	}
217
	if (ret) {
218
		btrfs_get_block_group(ret);
219 220 221
		if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
			info->first_logical_byte = ret->key.objectid;
	}
J
Josef Bacik 已提交
222 223 224 225 226
	spin_unlock(&info->block_group_cache_lock);

	return ret;
}

227
static int add_excluded_extent(struct btrfs_fs_info *fs_info,
228
			       u64 start, u64 num_bytes)
J
Josef Bacik 已提交
229
{
230
	u64 end = start + num_bytes - 1;
231
	set_extent_bits(&fs_info->freed_extents[0],
232
			start, end, EXTENT_UPTODATE);
233
	set_extent_bits(&fs_info->freed_extents[1],
234
			start, end, EXTENT_UPTODATE);
235 236
	return 0;
}
J
Josef Bacik 已提交
237

238
static void free_excluded_extents(struct btrfs_block_group_cache *cache)
239
{
240
	struct btrfs_fs_info *fs_info = cache->fs_info;
241
	u64 start, end;
J
Josef Bacik 已提交
242

243 244 245
	start = cache->key.objectid;
	end = start + cache->key.offset - 1;

246
	clear_extent_bits(&fs_info->freed_extents[0],
247
			  start, end, EXTENT_UPTODATE);
248
	clear_extent_bits(&fs_info->freed_extents[1],
249
			  start, end, EXTENT_UPTODATE);
J
Josef Bacik 已提交
250 251
}

252
static int exclude_super_stripes(struct btrfs_block_group_cache *cache)
J
Josef Bacik 已提交
253
{
254
	struct btrfs_fs_info *fs_info = cache->fs_info;
J
Josef Bacik 已提交
255 256 257 258 259
	u64 bytenr;
	u64 *logical;
	int stripe_len;
	int i, nr, ret;

260 261 262
	if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
		stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
		cache->bytes_super += stripe_len;
263
		ret = add_excluded_extent(fs_info, cache->key.objectid,
264
					  stripe_len);
265 266
		if (ret)
			return ret;
267 268
	}

J
Josef Bacik 已提交
269 270
	for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
		bytenr = btrfs_sb_offset(i);
271
		ret = btrfs_rmap_block(fs_info, cache->key.objectid,
272
				       bytenr, &logical, &nr, &stripe_len);
273 274
		if (ret)
			return ret;
275

J
Josef Bacik 已提交
276
		while (nr--) {
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
			u64 start, len;

			if (logical[nr] > cache->key.objectid +
			    cache->key.offset)
				continue;

			if (logical[nr] + stripe_len <= cache->key.objectid)
				continue;

			start = logical[nr];
			if (start < cache->key.objectid) {
				start = cache->key.objectid;
				len = (logical[nr] + stripe_len) - start;
			} else {
				len = min_t(u64, stripe_len,
					    cache->key.objectid +
					    cache->key.offset - start);
			}

			cache->bytes_super += len;
297
			ret = add_excluded_extent(fs_info, start, len);
298 299 300 301
			if (ret) {
				kfree(logical);
				return ret;
			}
J
Josef Bacik 已提交
302
		}
303

J
Josef Bacik 已提交
304 305 306 307 308
		kfree(logical);
	}
	return 0;
}

309 310 311 312 313 314
static struct btrfs_caching_control *
get_caching_control(struct btrfs_block_group_cache *cache)
{
	struct btrfs_caching_control *ctl;

	spin_lock(&cache->lock);
315 316
	if (!cache->caching_ctl) {
		spin_unlock(&cache->lock);
317 318 319 320
		return NULL;
	}

	ctl = cache->caching_ctl;
321
	refcount_inc(&ctl->count);
322 323 324 325 326 327
	spin_unlock(&cache->lock);
	return ctl;
}

static void put_caching_control(struct btrfs_caching_control *ctl)
{
328
	if (refcount_dec_and_test(&ctl->count))
329 330 331
		kfree(ctl);
}

332
#ifdef CONFIG_BTRFS_DEBUG
333
static void fragment_free_space(struct btrfs_block_group_cache *block_group)
334
{
335
	struct btrfs_fs_info *fs_info = block_group->fs_info;
336 337 338
	u64 start = block_group->key.objectid;
	u64 len = block_group->key.offset;
	u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ?
339
		fs_info->nodesize : fs_info->sectorsize;
340 341 342 343 344 345 346 347 348 349 350 351 352
	u64 step = chunk << 1;

	while (len > chunk) {
		btrfs_remove_free_space(block_group, start, chunk);
		start += step;
		if (len < step)
			len = 0;
		else
			len -= step;
	}
}
#endif

J
Josef Bacik 已提交
353 354 355 356 357
/*
 * this is only called by cache_block_group, since we could have freed extents
 * we need to check the pinned_extents for any extents that can't be used yet
 * since their free space will be released as soon as the transaction commits.
 */
358
u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
359
		       u64 start, u64 end)
J
Josef Bacik 已提交
360
{
361
	struct btrfs_fs_info *info = block_group->fs_info;
J
Josef Bacik 已提交
362
	u64 extent_start, extent_end, size, total_added = 0;
J
Josef Bacik 已提交
363 364 365
	int ret;

	while (start < end) {
366
		ret = find_first_extent_bit(info->pinned_extents, start,
J
Josef Bacik 已提交
367
					    &extent_start, &extent_end,
368 369
					    EXTENT_DIRTY | EXTENT_UPTODATE,
					    NULL);
J
Josef Bacik 已提交
370 371 372
		if (ret)
			break;

373
		if (extent_start <= start) {
J
Josef Bacik 已提交
374 375 376
			start = extent_end + 1;
		} else if (extent_start > start && extent_start < end) {
			size = extent_start - start;
J
Josef Bacik 已提交
377
			total_added += size;
378 379
			ret = btrfs_add_free_space(block_group, start,
						   size);
380
			BUG_ON(ret); /* -ENOMEM or logic error */
J
Josef Bacik 已提交
381 382 383 384 385 386 387 388
			start = extent_end + 1;
		} else {
			break;
		}
	}

	if (start < end) {
		size = end - start;
J
Josef Bacik 已提交
389
		total_added += size;
390
		ret = btrfs_add_free_space(block_group, start, size);
391
		BUG_ON(ret); /* -ENOMEM or logic error */
J
Josef Bacik 已提交
392 393
	}

J
Josef Bacik 已提交
394
	return total_added;
J
Josef Bacik 已提交
395 396
}

O
Omar Sandoval 已提交
397
static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl)
398
{
399 400 401
	struct btrfs_block_group_cache *block_group = caching_ctl->block_group;
	struct btrfs_fs_info *fs_info = block_group->fs_info;
	struct btrfs_root *extent_root = fs_info->extent_root;
402
	struct btrfs_path *path;
403
	struct extent_buffer *leaf;
404
	struct btrfs_key key;
J
Josef Bacik 已提交
405
	u64 total_found = 0;
406 407
	u64 last = 0;
	u32 nritems;
O
Omar Sandoval 已提交
408
	int ret;
409
	bool wakeup = true;
410

411 412
	path = btrfs_alloc_path();
	if (!path)
O
Omar Sandoval 已提交
413
		return -ENOMEM;
414

J
Josef Bacik 已提交
415
	last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
416

417 418 419 420 421 422
#ifdef CONFIG_BTRFS_DEBUG
	/*
	 * If we're fragmenting we don't want to make anybody think we can
	 * allocate from this block group until we've had a chance to fragment
	 * the free space.
	 */
423
	if (btrfs_should_fragment_free_space(block_group))
424 425
		wakeup = false;
#endif
426
	/*
J
Josef Bacik 已提交
427 428 429 430
	 * We don't want to deadlock with somebody trying to allocate a new
	 * extent for the extent root while also trying to search the extent
	 * root to add free space.  So we skip locking and search the commit
	 * root, since its read-only
431 432
	 */
	path->skip_locking = 1;
J
Josef Bacik 已提交
433
	path->search_commit_root = 1;
434
	path->reada = READA_FORWARD;
J
Josef Bacik 已提交
435

Y
Yan Zheng 已提交
436
	key.objectid = last;
437
	key.offset = 0;
438
	key.type = BTRFS_EXTENT_ITEM_KEY;
439

440
next:
441
	ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
442
	if (ret < 0)
O
Omar Sandoval 已提交
443
		goto out;
Y
Yan Zheng 已提交
444

445 446 447
	leaf = path->nodes[0];
	nritems = btrfs_header_nritems(leaf);

C
Chris Mason 已提交
448
	while (1) {
449
		if (btrfs_fs_closing(fs_info) > 1) {
450
			last = (u64)-1;
J
Josef Bacik 已提交
451
			break;
452
		}
J
Josef Bacik 已提交
453

454 455 456 457 458
		if (path->slots[0] < nritems) {
			btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
		} else {
			ret = find_next_key(path, 0, &key);
			if (ret)
459
				break;
J
Josef Bacik 已提交
460

461
			if (need_resched() ||
462
			    rwsem_is_contended(&fs_info->commit_root_sem)) {
463 464
				if (wakeup)
					caching_ctl->progress = last;
C
Chris Mason 已提交
465
				btrfs_release_path(path);
466
				up_read(&fs_info->commit_root_sem);
467
				mutex_unlock(&caching_ctl->mutex);
468
				cond_resched();
O
Omar Sandoval 已提交
469 470 471
				mutex_lock(&caching_ctl->mutex);
				down_read(&fs_info->commit_root_sem);
				goto next;
472
			}
473 474 475

			ret = btrfs_next_leaf(extent_root, path);
			if (ret < 0)
O
Omar Sandoval 已提交
476
				goto out;
477 478
			if (ret)
				break;
479 480 481
			leaf = path->nodes[0];
			nritems = btrfs_header_nritems(leaf);
			continue;
482
		}
J
Josef Bacik 已提交
483

484 485 486 487 488
		if (key.objectid < last) {
			key.objectid = last;
			key.offset = 0;
			key.type = BTRFS_EXTENT_ITEM_KEY;

489 490
			if (wakeup)
				caching_ctl->progress = last;
491 492 493 494
			btrfs_release_path(path);
			goto next;
		}

495 496
		if (key.objectid < block_group->key.objectid) {
			path->slots[0]++;
J
Josef Bacik 已提交
497
			continue;
498
		}
J
Josef Bacik 已提交
499

500
		if (key.objectid >= block_group->key.objectid +
J
Josef Bacik 已提交
501
		    block_group->key.offset)
502
			break;
503

504 505
		if (key.type == BTRFS_EXTENT_ITEM_KEY ||
		    key.type == BTRFS_METADATA_ITEM_KEY) {
506
			total_found += add_new_free_space(block_group, last,
J
Josef Bacik 已提交
507
							  key.objectid);
508 509
			if (key.type == BTRFS_METADATA_ITEM_KEY)
				last = key.objectid +
510
					fs_info->nodesize;
511 512
			else
				last = key.objectid + key.offset;
J
Josef Bacik 已提交
513

O
Omar Sandoval 已提交
514
			if (total_found > CACHING_CTL_WAKE_UP) {
515
				total_found = 0;
516 517
				if (wakeup)
					wake_up(&caching_ctl->wait);
518
			}
J
Josef Bacik 已提交
519
		}
520 521
		path->slots[0]++;
	}
J
Josef Bacik 已提交
522
	ret = 0;
523

524
	total_found += add_new_free_space(block_group, last,
J
Josef Bacik 已提交
525 526
					  block_group->key.objectid +
					  block_group->key.offset);
527
	caching_ctl->progress = (u64)-1;
J
Josef Bacik 已提交
528

O
Omar Sandoval 已提交
529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547
out:
	btrfs_free_path(path);
	return ret;
}

static noinline void caching_thread(struct btrfs_work *work)
{
	struct btrfs_block_group_cache *block_group;
	struct btrfs_fs_info *fs_info;
	struct btrfs_caching_control *caching_ctl;
	int ret;

	caching_ctl = container_of(work, struct btrfs_caching_control, work);
	block_group = caching_ctl->block_group;
	fs_info = block_group->fs_info;

	mutex_lock(&caching_ctl->mutex);
	down_read(&fs_info->commit_root_sem);

548 549 550 551
	if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE))
		ret = load_free_space_tree(caching_ctl);
	else
		ret = load_extent_tree_free(caching_ctl);
O
Omar Sandoval 已提交
552

J
Josef Bacik 已提交
553
	spin_lock(&block_group->lock);
554
	block_group->caching_ctl = NULL;
O
Omar Sandoval 已提交
555
	block_group->cached = ret ? BTRFS_CACHE_ERROR : BTRFS_CACHE_FINISHED;
J
Josef Bacik 已提交
556
	spin_unlock(&block_group->lock);
J
Josef Bacik 已提交
557

558
#ifdef CONFIG_BTRFS_DEBUG
559
	if (btrfs_should_fragment_free_space(block_group)) {
560 561 562 563 564 565 566 567 568
		u64 bytes_used;

		spin_lock(&block_group->space_info->lock);
		spin_lock(&block_group->lock);
		bytes_used = block_group->key.offset -
			btrfs_block_group_used(&block_group->item);
		block_group->space_info->bytes_used += bytes_used >> 1;
		spin_unlock(&block_group->lock);
		spin_unlock(&block_group->space_info->lock);
569
		fragment_free_space(block_group);
570 571 572 573
	}
#endif

	caching_ctl->progress = (u64)-1;
574

575
	up_read(&fs_info->commit_root_sem);
576
	free_excluded_extents(block_group);
577
	mutex_unlock(&caching_ctl->mutex);
O
Omar Sandoval 已提交
578

579 580 581
	wake_up(&caching_ctl->wait);

	put_caching_control(caching_ctl);
582
	btrfs_put_block_group(block_group);
J
Josef Bacik 已提交
583 584
}

585 586
static int cache_block_group(struct btrfs_block_group_cache *cache,
			     int load_cache_only)
J
Josef Bacik 已提交
587
{
588
	DEFINE_WAIT(wait);
589 590
	struct btrfs_fs_info *fs_info = cache->fs_info;
	struct btrfs_caching_control *caching_ctl;
J
Josef Bacik 已提交
591 592
	int ret = 0;

593
	caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
594 595
	if (!caching_ctl)
		return -ENOMEM;
596 597 598 599 600 601

	INIT_LIST_HEAD(&caching_ctl->list);
	mutex_init(&caching_ctl->mutex);
	init_waitqueue_head(&caching_ctl->wait);
	caching_ctl->block_group = cache;
	caching_ctl->progress = cache->key.objectid;
602
	refcount_set(&caching_ctl->count, 1);
603 604
	btrfs_init_work(&caching_ctl->work, btrfs_cache_helper,
			caching_thread, NULL, NULL);
605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622

	spin_lock(&cache->lock);
	/*
	 * This should be a rare occasion, but this could happen I think in the
	 * case where one thread starts to load the space cache info, and then
	 * some other thread starts a transaction commit which tries to do an
	 * allocation while the other thread is still loading the space cache
	 * info.  The previous loop should have kept us from choosing this block
	 * group, but if we've moved to the state where we will wait on caching
	 * block groups we need to first check if we're doing a fast load here,
	 * so we can wait for it to finish, otherwise we could end up allocating
	 * from a block group who's cache gets evicted for one reason or
	 * another.
	 */
	while (cache->cached == BTRFS_CACHE_FAST) {
		struct btrfs_caching_control *ctl;

		ctl = cache->caching_ctl;
623
		refcount_inc(&ctl->count);
624 625 626 627 628 629 630 631 632 633 634 635 636
		prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
		spin_unlock(&cache->lock);

		schedule();

		finish_wait(&ctl->wait, &wait);
		put_caching_control(ctl);
		spin_lock(&cache->lock);
	}

	if (cache->cached != BTRFS_CACHE_NO) {
		spin_unlock(&cache->lock);
		kfree(caching_ctl);
637
		return 0;
638 639 640 641 642
	}
	WARN_ON(cache->caching_ctl);
	cache->caching_ctl = caching_ctl;
	cache->cached = BTRFS_CACHE_FAST;
	spin_unlock(&cache->lock);
643

644
	if (btrfs_test_opt(fs_info, SPACE_CACHE)) {
645
		mutex_lock(&caching_ctl->mutex);
646
		ret = load_free_space_cache(cache);
647 648 649

		spin_lock(&cache->lock);
		if (ret == 1) {
650
			cache->caching_ctl = NULL;
651 652
			cache->cached = BTRFS_CACHE_FINISHED;
			cache->last_byte_to_unpin = (u64)-1;
653
			caching_ctl->progress = (u64)-1;
654
		} else {
655 656 657 658 659
			if (load_cache_only) {
				cache->caching_ctl = NULL;
				cache->cached = BTRFS_CACHE_NO;
			} else {
				cache->cached = BTRFS_CACHE_STARTED;
660
				cache->has_caching_ctl = 1;
661
			}
662 663
		}
		spin_unlock(&cache->lock);
664 665
#ifdef CONFIG_BTRFS_DEBUG
		if (ret == 1 &&
666
		    btrfs_should_fragment_free_space(cache)) {
667 668 669 670 671 672 673 674 675
			u64 bytes_used;

			spin_lock(&cache->space_info->lock);
			spin_lock(&cache->lock);
			bytes_used = cache->key.offset -
				btrfs_block_group_used(&cache->item);
			cache->space_info->bytes_used += bytes_used >> 1;
			spin_unlock(&cache->lock);
			spin_unlock(&cache->space_info->lock);
676
			fragment_free_space(cache);
677 678
		}
#endif
679 680
		mutex_unlock(&caching_ctl->mutex);

681
		wake_up(&caching_ctl->wait);
682
		if (ret == 1) {
683
			put_caching_control(caching_ctl);
684
			free_excluded_extents(cache);
685
			return 0;
686
		}
687 688
	} else {
		/*
689 690
		 * We're either using the free space tree or no caching at all.
		 * Set cached to the appropriate value and wakeup any waiters.
691 692 693 694 695 696 697
		 */
		spin_lock(&cache->lock);
		if (load_cache_only) {
			cache->caching_ctl = NULL;
			cache->cached = BTRFS_CACHE_NO;
		} else {
			cache->cached = BTRFS_CACHE_STARTED;
698
			cache->has_caching_ctl = 1;
699 700 701
		}
		spin_unlock(&cache->lock);
		wake_up(&caching_ctl->wait);
702 703
	}

704 705
	if (load_cache_only) {
		put_caching_control(caching_ctl);
706
		return 0;
J
Josef Bacik 已提交
707 708
	}

709
	down_write(&fs_info->commit_root_sem);
710
	refcount_inc(&caching_ctl->count);
711
	list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
712
	up_write(&fs_info->commit_root_sem);
713

714
	btrfs_get_block_group(cache);
715

716
	btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work);
J
Josef Bacik 已提交
717

718
	return ret;
719 720
}

J
Josef Bacik 已提交
721 722 723
/*
 * return the block group that starts at or after bytenr
 */
C
Chris Mason 已提交
724 725
static struct btrfs_block_group_cache *
btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
C
Chris Mason 已提交
726
{
727
	return block_group_cache_tree_search(info, bytenr, 0);
C
Chris Mason 已提交
728 729
}

J
Josef Bacik 已提交
730
/*
731
 * return the block group that contains the given bytenr
J
Josef Bacik 已提交
732
 */
C
Chris Mason 已提交
733 734 735
struct btrfs_block_group_cache *btrfs_lookup_block_group(
						 struct btrfs_fs_info *info,
						 u64 bytenr)
C
Chris Mason 已提交
736
{
737
	return block_group_cache_tree_search(info, bytenr, 1);
C
Chris Mason 已提交
738
}
739

J
Josef Bacik 已提交
740 741
static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
						  u64 flags)
742
{
J
Josef Bacik 已提交
743 744
	struct list_head *head = &info->space_info;
	struct btrfs_space_info *found;
745

746
	flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
747

748 749
	rcu_read_lock();
	list_for_each_entry_rcu(found, head, list) {
750
		if (found->flags & flags) {
751
			rcu_read_unlock();
J
Josef Bacik 已提交
752
			return found;
753
		}
J
Josef Bacik 已提交
754
	}
755
	rcu_read_unlock();
J
Josef Bacik 已提交
756
	return NULL;
757 758
}

759 760
static void add_pinned_bytes(struct btrfs_fs_info *fs_info,
			     struct btrfs_ref *ref)
761 762
{
	struct btrfs_space_info *space_info;
763
	s64 num_bytes = -ref->len;
764 765
	u64 flags;

766 767
	if (ref->type == BTRFS_REF_METADATA) {
		if (ref->tree_ref.root == BTRFS_CHUNK_TREE_OBJECTID)
768 769 770 771 772 773 774 775
			flags = BTRFS_BLOCK_GROUP_SYSTEM;
		else
			flags = BTRFS_BLOCK_GROUP_METADATA;
	} else {
		flags = BTRFS_BLOCK_GROUP_DATA;
	}

	space_info = __find_space_info(fs_info, flags);
776
	ASSERT(space_info);
777 778
	percpu_counter_add_batch(&space_info->total_bytes_pinned, num_bytes,
		    BTRFS_TOTAL_BYTES_PINNED_BATCH);
779 780
}

781 782 783 784 785 786 787 788 789 790 791 792 793 794 795
/*
 * after adding space to the filesystem, we need to clear the full flags
 * on all the space infos.
 */
void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
{
	struct list_head *head = &info->space_info;
	struct btrfs_space_info *found;

	rcu_read_lock();
	list_for_each_entry_rcu(found, head, list)
		found->full = 0;
	rcu_read_unlock();
}

796
/* simple helper to search for an existing data extent at a given offset */
797
int btrfs_lookup_data_extent(struct btrfs_fs_info *fs_info, u64 start, u64 len)
798 799 800
{
	int ret;
	struct btrfs_key key;
Z
Zheng Yan 已提交
801
	struct btrfs_path *path;
802

Z
Zheng Yan 已提交
803
	path = btrfs_alloc_path();
804 805 806
	if (!path)
		return -ENOMEM;

807 808
	key.objectid = start;
	key.offset = len;
809
	key.type = BTRFS_EXTENT_ITEM_KEY;
810
	ret = btrfs_search_slot(NULL, fs_info->extent_root, &key, path, 0, 0);
Z
Zheng Yan 已提交
811
	btrfs_free_path(path);
812 813 814
	return ret;
}

815
/*
816
 * helper function to lookup reference count and flags of a tree block.
817 818 819 820 821 822 823 824
 *
 * the head node for delayed ref is used to store the sum of all the
 * reference count modifications queued up in the rbtree. the head
 * node may also store the extent flags to set. This way you can check
 * to see what the reference count and extent flags would be if all of
 * the delayed refs are not processed.
 */
int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
825
			     struct btrfs_fs_info *fs_info, u64 bytenr,
826
			     u64 offset, int metadata, u64 *refs, u64 *flags)
827 828 829 830 831 832 833 834 835 836 837 838
{
	struct btrfs_delayed_ref_head *head;
	struct btrfs_delayed_ref_root *delayed_refs;
	struct btrfs_path *path;
	struct btrfs_extent_item *ei;
	struct extent_buffer *leaf;
	struct btrfs_key key;
	u32 item_size;
	u64 num_refs;
	u64 extent_flags;
	int ret;

839 840 841 842
	/*
	 * If we don't have skinny metadata, don't bother doing anything
	 * different
	 */
843 844
	if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) {
		offset = fs_info->nodesize;
845 846 847
		metadata = 0;
	}

848 849 850 851 852 853 854 855
	path = btrfs_alloc_path();
	if (!path)
		return -ENOMEM;

	if (!trans) {
		path->skip_locking = 1;
		path->search_commit_root = 1;
	}
856 857 858 859 860 861 862 863 864

search_again:
	key.objectid = bytenr;
	key.offset = offset;
	if (metadata)
		key.type = BTRFS_METADATA_ITEM_KEY;
	else
		key.type = BTRFS_EXTENT_ITEM_KEY;

865
	ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 0);
866 867 868
	if (ret < 0)
		goto out_free;

869
	if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
870 871 872 873 874 875
		if (path->slots[0]) {
			path->slots[0]--;
			btrfs_item_key_to_cpu(path->nodes[0], &key,
					      path->slots[0]);
			if (key.objectid == bytenr &&
			    key.type == BTRFS_EXTENT_ITEM_KEY &&
876
			    key.offset == fs_info->nodesize)
877 878
				ret = 0;
		}
879 880
	}

881 882 883 884 885 886 887 888 889
	if (ret == 0) {
		leaf = path->nodes[0];
		item_size = btrfs_item_size_nr(leaf, path->slots[0]);
		if (item_size >= sizeof(*ei)) {
			ei = btrfs_item_ptr(leaf, path->slots[0],
					    struct btrfs_extent_item);
			num_refs = btrfs_extent_refs(leaf, ei);
			extent_flags = btrfs_extent_flags(leaf, ei);
		} else {
890 891 892 893 894 895 896 897
			ret = -EINVAL;
			btrfs_print_v0_err(fs_info);
			if (trans)
				btrfs_abort_transaction(trans, ret);
			else
				btrfs_handle_fs_error(fs_info, ret, NULL);

			goto out_free;
898
		}
899

900 901 902 903 904 905 906 907 908 909 910 911
		BUG_ON(num_refs == 0);
	} else {
		num_refs = 0;
		extent_flags = 0;
		ret = 0;
	}

	if (!trans)
		goto out;

	delayed_refs = &trans->transaction->delayed_refs;
	spin_lock(&delayed_refs->lock);
912
	head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
913 914
	if (head) {
		if (!mutex_trylock(&head->mutex)) {
915
			refcount_inc(&head->refs);
916 917
			spin_unlock(&delayed_refs->lock);

918
			btrfs_release_path(path);
919

920 921 922 923
			/*
			 * Mutex was contended, block until it's released and try
			 * again
			 */
924 925
			mutex_lock(&head->mutex);
			mutex_unlock(&head->mutex);
926
			btrfs_put_delayed_ref_head(head);
927
			goto search_again;
928
		}
929
		spin_lock(&head->lock);
930 931 932 933 934
		if (head->extent_op && head->extent_op->update_flags)
			extent_flags |= head->extent_op->flags_to_set;
		else
			BUG_ON(num_refs == 0);

935
		num_refs += head->ref_mod;
936
		spin_unlock(&head->lock);
937 938 939 940 941 942 943 944 945 946 947 948 949 950
		mutex_unlock(&head->mutex);
	}
	spin_unlock(&delayed_refs->lock);
out:
	WARN_ON(num_refs == 0);
	if (refs)
		*refs = num_refs;
	if (flags)
		*flags = extent_flags;
out_free:
	btrfs_free_path(path);
	return ret;
}

951 952 953 954 955 956 957 958 959 960 961 962 963 964
/*
 * Back reference rules.  Back refs have three main goals:
 *
 * 1) differentiate between all holders of references to an extent so that
 *    when a reference is dropped we can make sure it was a valid reference
 *    before freeing the extent.
 *
 * 2) Provide enough information to quickly find the holders of an extent
 *    if we notice a given block is corrupted or bad.
 *
 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
 *    maintenance.  This is actually the same as #2, but with a slightly
 *    different use case.
 *
965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982
 * There are two kinds of back refs. The implicit back refs is optimized
 * for pointers in non-shared tree blocks. For a given pointer in a block,
 * back refs of this kind provide information about the block's owner tree
 * and the pointer's key. These information allow us to find the block by
 * b-tree searching. The full back refs is for pointers in tree blocks not
 * referenced by their owner trees. The location of tree block is recorded
 * in the back refs. Actually the full back refs is generic, and can be
 * used in all cases the implicit back refs is used. The major shortcoming
 * of the full back refs is its overhead. Every time a tree block gets
 * COWed, we have to update back refs entry for all pointers in it.
 *
 * For a newly allocated tree block, we use implicit back refs for
 * pointers in it. This means most tree related operations only involve
 * implicit back refs. For a tree block created in old transaction, the
 * only way to drop a reference to it is COW it. So we can detect the
 * event that tree block loses its owner tree's reference and do the
 * back refs conversion.
 *
983
 * When a tree block is COWed through a tree, there are four cases:
984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009
 *
 * The reference count of the block is one and the tree is the block's
 * owner tree. Nothing to do in this case.
 *
 * The reference count of the block is one and the tree is not the
 * block's owner tree. In this case, full back refs is used for pointers
 * in the block. Remove these full back refs, add implicit back refs for
 * every pointers in the new block.
 *
 * The reference count of the block is greater than one and the tree is
 * the block's owner tree. In this case, implicit back refs is used for
 * pointers in the block. Add full back refs for every pointers in the
 * block, increase lower level extents' reference counts. The original
 * implicit back refs are entailed to the new block.
 *
 * The reference count of the block is greater than one and the tree is
 * not the block's owner tree. Add implicit back refs for every pointer in
 * the new block, increase lower level extents' reference count.
 *
 * Back Reference Key composing:
 *
 * The key objectid corresponds to the first byte in the extent,
 * The key type is used to differentiate between types of back refs.
 * There are different meanings of the key offset for different types
 * of back refs.
 *
1010 1011 1012
 * File extents can be referenced by:
 *
 * - multiple snapshots, subvolumes, or different generations in one subvol
Z
Zheng Yan 已提交
1013
 * - different files inside a single subvolume
1014 1015
 * - different offsets inside a file (bookend extents in file.c)
 *
1016
 * The extent ref structure for the implicit back refs has fields for:
1017 1018 1019
 *
 * - Objectid of the subvolume root
 * - objectid of the file holding the reference
1020 1021
 * - original offset in the file
 * - how many bookend extents
1022
 *
1023 1024
 * The key offset for the implicit back refs is hash of the first
 * three fields.
1025
 *
1026
 * The extent ref structure for the full back refs has field for:
1027
 *
1028
 * - number of pointers in the tree leaf
1029
 *
1030 1031
 * The key offset for the implicit back refs is the first byte of
 * the tree leaf
1032
 *
1033 1034
 * When a file extent is allocated, The implicit back refs is used.
 * the fields are filled in:
1035
 *
1036
 *     (root_key.objectid, inode objectid, offset in file, 1)
1037
 *
1038 1039
 * When a file extent is removed file truncation, we find the
 * corresponding implicit back refs and check the following fields:
1040
 *
1041
 *     (btrfs_header_owner(leaf), inode objectid, offset in file)
1042
 *
1043
 * Btree extents can be referenced by:
1044
 *
1045
 * - Different subvolumes
1046
 *
1047 1048 1049 1050
 * Both the implicit back refs and the full back refs for tree blocks
 * only consist of key. The key offset for the implicit back refs is
 * objectid of block's owner tree. The key offset for the full back refs
 * is the first byte of parent block.
1051
 *
1052 1053 1054
 * When implicit back refs is used, information about the lowest key and
 * level of the tree block are required. These information are stored in
 * tree block info structure.
1055
 */
Z
Zheng Yan 已提交
1056

1057 1058
/*
 * is_data == BTRFS_REF_TYPE_BLOCK, tree block type is required,
1059
 * is_data == BTRFS_REF_TYPE_DATA, data type is requiried,
1060 1061 1062 1063 1064 1065 1066
 * is_data == BTRFS_REF_TYPE_ANY, either type is OK.
 */
int btrfs_get_extent_inline_ref_type(const struct extent_buffer *eb,
				     struct btrfs_extent_inline_ref *iref,
				     enum btrfs_inline_ref_type is_data)
{
	int type = btrfs_extent_inline_ref_type(eb, iref);
1067
	u64 offset = btrfs_extent_inline_ref_offset(eb, iref);
1068 1069 1070 1071 1072 1073

	if (type == BTRFS_TREE_BLOCK_REF_KEY ||
	    type == BTRFS_SHARED_BLOCK_REF_KEY ||
	    type == BTRFS_SHARED_DATA_REF_KEY ||
	    type == BTRFS_EXTENT_DATA_REF_KEY) {
		if (is_data == BTRFS_REF_TYPE_BLOCK) {
1074
			if (type == BTRFS_TREE_BLOCK_REF_KEY)
1075
				return type;
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
			if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
				ASSERT(eb->fs_info);
				/*
				 * Every shared one has parent tree
				 * block, which must be aligned to
				 * nodesize.
				 */
				if (offset &&
				    IS_ALIGNED(offset, eb->fs_info->nodesize))
					return type;
			}
1087
		} else if (is_data == BTRFS_REF_TYPE_DATA) {
1088
			if (type == BTRFS_EXTENT_DATA_REF_KEY)
1089
				return type;
1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
			if (type == BTRFS_SHARED_DATA_REF_KEY) {
				ASSERT(eb->fs_info);
				/*
				 * Every shared one has parent tree
				 * block, which must be aligned to
				 * nodesize.
				 */
				if (offset &&
				    IS_ALIGNED(offset, eb->fs_info->nodesize))
					return type;
			}
1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114
		} else {
			ASSERT(is_data == BTRFS_REF_TYPE_ANY);
			return type;
		}
	}

	btrfs_print_leaf((struct extent_buffer *)eb);
	btrfs_err(eb->fs_info, "eb %llu invalid extent inline ref type %d",
		  eb->start, type);
	WARN_ON(1);

	return BTRFS_REF_TYPE_INVALID;
}

1115 1116 1117 1118 1119 1120 1121
static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
{
	u32 high_crc = ~(u32)0;
	u32 low_crc = ~(u32)0;
	__le64 lenum;

	lenum = cpu_to_le64(root_objectid);
1122
	high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
1123
	lenum = cpu_to_le64(owner);
1124
	low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
1125
	lenum = cpu_to_le64(offset);
1126
	low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155

	return ((u64)high_crc << 31) ^ (u64)low_crc;
}

static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
				     struct btrfs_extent_data_ref *ref)
{
	return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
				    btrfs_extent_data_ref_objectid(leaf, ref),
				    btrfs_extent_data_ref_offset(leaf, ref));
}

static int match_extent_data_ref(struct extent_buffer *leaf,
				 struct btrfs_extent_data_ref *ref,
				 u64 root_objectid, u64 owner, u64 offset)
{
	if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
	    btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
	    btrfs_extent_data_ref_offset(leaf, ref) != offset)
		return 0;
	return 1;
}

static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
					   struct btrfs_path *path,
					   u64 bytenr, u64 parent,
					   u64 root_objectid,
					   u64 owner, u64 offset)
{
1156
	struct btrfs_root *root = trans->fs_info->extent_root;
1157 1158
	struct btrfs_key key;
	struct btrfs_extent_data_ref *ref;
Z
Zheng Yan 已提交
1159
	struct extent_buffer *leaf;
1160
	u32 nritems;
1161
	int ret;
1162 1163
	int recow;
	int err = -ENOENT;
1164

Z
Zheng Yan 已提交
1165
	key.objectid = bytenr;
1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180
	if (parent) {
		key.type = BTRFS_SHARED_DATA_REF_KEY;
		key.offset = parent;
	} else {
		key.type = BTRFS_EXTENT_DATA_REF_KEY;
		key.offset = hash_extent_data_ref(root_objectid,
						  owner, offset);
	}
again:
	recow = 0;
	ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
	if (ret < 0) {
		err = ret;
		goto fail;
	}
Z
Zheng Yan 已提交
1181

1182 1183 1184 1185
	if (parent) {
		if (!ret)
			return 0;
		goto fail;
Z
Zheng Yan 已提交
1186 1187 1188
	}

	leaf = path->nodes[0];
1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213
	nritems = btrfs_header_nritems(leaf);
	while (1) {
		if (path->slots[0] >= nritems) {
			ret = btrfs_next_leaf(root, path);
			if (ret < 0)
				err = ret;
			if (ret)
				goto fail;

			leaf = path->nodes[0];
			nritems = btrfs_header_nritems(leaf);
			recow = 1;
		}

		btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
		if (key.objectid != bytenr ||
		    key.type != BTRFS_EXTENT_DATA_REF_KEY)
			goto fail;

		ref = btrfs_item_ptr(leaf, path->slots[0],
				     struct btrfs_extent_data_ref);

		if (match_extent_data_ref(leaf, ref, root_objectid,
					  owner, offset)) {
			if (recow) {
1214
				btrfs_release_path(path);
1215 1216 1217 1218 1219 1220
				goto again;
			}
			err = 0;
			break;
		}
		path->slots[0]++;
Z
Zheng Yan 已提交
1221
	}
1222 1223
fail:
	return err;
Z
Zheng Yan 已提交
1224 1225
}

1226 1227 1228 1229 1230
static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
					   struct btrfs_path *path,
					   u64 bytenr, u64 parent,
					   u64 root_objectid, u64 owner,
					   u64 offset, int refs_to_add)
Z
Zheng Yan 已提交
1231
{
1232
	struct btrfs_root *root = trans->fs_info->extent_root;
Z
Zheng Yan 已提交
1233 1234
	struct btrfs_key key;
	struct extent_buffer *leaf;
1235
	u32 size;
Z
Zheng Yan 已提交
1236 1237
	u32 num_refs;
	int ret;
1238 1239

	key.objectid = bytenr;
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249
	if (parent) {
		key.type = BTRFS_SHARED_DATA_REF_KEY;
		key.offset = parent;
		size = sizeof(struct btrfs_shared_data_ref);
	} else {
		key.type = BTRFS_EXTENT_DATA_REF_KEY;
		key.offset = hash_extent_data_ref(root_objectid,
						  owner, offset);
		size = sizeof(struct btrfs_extent_data_ref);
	}
1250

1251 1252 1253 1254 1255 1256 1257
	ret = btrfs_insert_empty_item(trans, root, path, &key, size);
	if (ret && ret != -EEXIST)
		goto fail;

	leaf = path->nodes[0];
	if (parent) {
		struct btrfs_shared_data_ref *ref;
Z
Zheng Yan 已提交
1258
		ref = btrfs_item_ptr(leaf, path->slots[0],
1259 1260 1261 1262 1263 1264 1265
				     struct btrfs_shared_data_ref);
		if (ret == 0) {
			btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
		} else {
			num_refs = btrfs_shared_data_ref_count(leaf, ref);
			num_refs += refs_to_add;
			btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
Z
Zheng Yan 已提交
1266
		}
1267 1268 1269 1270 1271 1272 1273 1274
	} else {
		struct btrfs_extent_data_ref *ref;
		while (ret == -EEXIST) {
			ref = btrfs_item_ptr(leaf, path->slots[0],
					     struct btrfs_extent_data_ref);
			if (match_extent_data_ref(leaf, ref, root_objectid,
						  owner, offset))
				break;
1275
			btrfs_release_path(path);
1276 1277 1278 1279 1280
			key.offset++;
			ret = btrfs_insert_empty_item(trans, root, path, &key,
						      size);
			if (ret && ret != -EEXIST)
				goto fail;
Z
Zheng Yan 已提交
1281

1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295
			leaf = path->nodes[0];
		}
		ref = btrfs_item_ptr(leaf, path->slots[0],
				     struct btrfs_extent_data_ref);
		if (ret == 0) {
			btrfs_set_extent_data_ref_root(leaf, ref,
						       root_objectid);
			btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
			btrfs_set_extent_data_ref_offset(leaf, ref, offset);
			btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
		} else {
			num_refs = btrfs_extent_data_ref_count(leaf, ref);
			num_refs += refs_to_add;
			btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
Z
Zheng Yan 已提交
1296 1297
		}
	}
1298 1299 1300
	btrfs_mark_buffer_dirty(leaf);
	ret = 0;
fail:
1301
	btrfs_release_path(path);
1302
	return ret;
1303 1304
}

1305 1306
static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
					   struct btrfs_path *path,
J
Josef Bacik 已提交
1307
					   int refs_to_drop, int *last_ref)
Z
Zheng Yan 已提交
1308
{
1309 1310 1311
	struct btrfs_key key;
	struct btrfs_extent_data_ref *ref1 = NULL;
	struct btrfs_shared_data_ref *ref2 = NULL;
Z
Zheng Yan 已提交
1312
	struct extent_buffer *leaf;
1313
	u32 num_refs = 0;
Z
Zheng Yan 已提交
1314 1315 1316
	int ret = 0;

	leaf = path->nodes[0];
1317 1318 1319 1320 1321 1322 1323 1324 1325 1326
	btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);

	if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
		ref1 = btrfs_item_ptr(leaf, path->slots[0],
				      struct btrfs_extent_data_ref);
		num_refs = btrfs_extent_data_ref_count(leaf, ref1);
	} else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
		ref2 = btrfs_item_ptr(leaf, path->slots[0],
				      struct btrfs_shared_data_ref);
		num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1327
	} else if (unlikely(key.type == BTRFS_EXTENT_REF_V0_KEY)) {
1328 1329 1330
		btrfs_print_v0_err(trans->fs_info);
		btrfs_abort_transaction(trans, -EINVAL);
		return -EINVAL;
1331 1332 1333 1334
	} else {
		BUG();
	}

1335 1336
	BUG_ON(num_refs < refs_to_drop);
	num_refs -= refs_to_drop;
1337

Z
Zheng Yan 已提交
1338
	if (num_refs == 0) {
1339
		ret = btrfs_del_item(trans, trans->fs_info->extent_root, path);
J
Josef Bacik 已提交
1340
		*last_ref = 1;
Z
Zheng Yan 已提交
1341
	} else {
1342 1343 1344 1345
		if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
			btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
		else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
			btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
Z
Zheng Yan 已提交
1346 1347 1348 1349 1350
		btrfs_mark_buffer_dirty(leaf);
	}
	return ret;
}

1351
static noinline u32 extent_data_ref_count(struct btrfs_path *path,
1352
					  struct btrfs_extent_inline_ref *iref)
1353
{
1354 1355 1356 1357 1358
	struct btrfs_key key;
	struct extent_buffer *leaf;
	struct btrfs_extent_data_ref *ref1;
	struct btrfs_shared_data_ref *ref2;
	u32 num_refs = 0;
1359
	int type;
1360 1361 1362

	leaf = path->nodes[0];
	btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1363 1364

	BUG_ON(key.type == BTRFS_EXTENT_REF_V0_KEY);
1365
	if (iref) {
1366 1367 1368 1369 1370 1371 1372
		/*
		 * If type is invalid, we should have bailed out earlier than
		 * this call.
		 */
		type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
		ASSERT(type != BTRFS_REF_TYPE_INVALID);
		if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391
			ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
			num_refs = btrfs_extent_data_ref_count(leaf, ref1);
		} else {
			ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
			num_refs = btrfs_shared_data_ref_count(leaf, ref2);
		}
	} else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
		ref1 = btrfs_item_ptr(leaf, path->slots[0],
				      struct btrfs_extent_data_ref);
		num_refs = btrfs_extent_data_ref_count(leaf, ref1);
	} else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
		ref2 = btrfs_item_ptr(leaf, path->slots[0],
				      struct btrfs_shared_data_ref);
		num_refs = btrfs_shared_data_ref_count(leaf, ref2);
	} else {
		WARN_ON(1);
	}
	return num_refs;
}
1392

1393 1394 1395 1396
static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
					  struct btrfs_path *path,
					  u64 bytenr, u64 parent,
					  u64 root_objectid)
1397
{
1398
	struct btrfs_root *root = trans->fs_info->extent_root;
1399
	struct btrfs_key key;
1400 1401
	int ret;

1402 1403 1404 1405 1406 1407 1408
	key.objectid = bytenr;
	if (parent) {
		key.type = BTRFS_SHARED_BLOCK_REF_KEY;
		key.offset = parent;
	} else {
		key.type = BTRFS_TREE_BLOCK_REF_KEY;
		key.offset = root_objectid;
1409 1410
	}

1411 1412 1413 1414
	ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
	if (ret > 0)
		ret = -ENOENT;
	return ret;
1415 1416
}

1417 1418 1419 1420
static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
					  struct btrfs_path *path,
					  u64 bytenr, u64 parent,
					  u64 root_objectid)
Z
Zheng Yan 已提交
1421
{
1422
	struct btrfs_key key;
Z
Zheng Yan 已提交
1423 1424
	int ret;

1425 1426 1427 1428 1429 1430 1431 1432 1433
	key.objectid = bytenr;
	if (parent) {
		key.type = BTRFS_SHARED_BLOCK_REF_KEY;
		key.offset = parent;
	} else {
		key.type = BTRFS_TREE_BLOCK_REF_KEY;
		key.offset = root_objectid;
	}

1434
	ret = btrfs_insert_empty_item(trans, trans->fs_info->extent_root,
1435
				      path, &key, 0);
1436
	btrfs_release_path(path);
Z
Zheng Yan 已提交
1437 1438 1439
	return ret;
}

1440
static inline int extent_ref_type(u64 parent, u64 owner)
Z
Zheng Yan 已提交
1441
{
1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454
	int type;
	if (owner < BTRFS_FIRST_FREE_OBJECTID) {
		if (parent > 0)
			type = BTRFS_SHARED_BLOCK_REF_KEY;
		else
			type = BTRFS_TREE_BLOCK_REF_KEY;
	} else {
		if (parent > 0)
			type = BTRFS_SHARED_DATA_REF_KEY;
		else
			type = BTRFS_EXTENT_DATA_REF_KEY;
	}
	return type;
Z
Zheng Yan 已提交
1455
}
1456

1457 1458
static int find_next_key(struct btrfs_path *path, int level,
			 struct btrfs_key *key)
1459

C
Chris Mason 已提交
1460
{
1461
	for (; level < BTRFS_MAX_LEVEL; level++) {
1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
		if (!path->nodes[level])
			break;
		if (path->slots[level] + 1 >=
		    btrfs_header_nritems(path->nodes[level]))
			continue;
		if (level == 0)
			btrfs_item_key_to_cpu(path->nodes[level], key,
					      path->slots[level] + 1);
		else
			btrfs_node_key_to_cpu(path->nodes[level], key,
					      path->slots[level] + 1);
		return 0;
	}
	return 1;
}
C
Chris Mason 已提交
1477

1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498
/*
 * look for inline back ref. if back ref is found, *ref_ret is set
 * to the address of inline back ref, and 0 is returned.
 *
 * if back ref isn't found, *ref_ret is set to the address where it
 * should be inserted, and -ENOENT is returned.
 *
 * if insert is true and there are too many inline back refs, the path
 * points to the extent item, and -EAGAIN is returned.
 *
 * NOTE: inline back refs are ordered in the same way that back ref
 *	 items in the tree are ordered.
 */
static noinline_for_stack
int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
				 struct btrfs_path *path,
				 struct btrfs_extent_inline_ref **ref_ret,
				 u64 bytenr, u64 num_bytes,
				 u64 parent, u64 root_objectid,
				 u64 owner, u64 offset, int insert)
{
1499
	struct btrfs_fs_info *fs_info = trans->fs_info;
1500
	struct btrfs_root *root = fs_info->extent_root;
1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513
	struct btrfs_key key;
	struct extent_buffer *leaf;
	struct btrfs_extent_item *ei;
	struct btrfs_extent_inline_ref *iref;
	u64 flags;
	u64 item_size;
	unsigned long ptr;
	unsigned long end;
	int extra_size;
	int type;
	int want;
	int ret;
	int err = 0;
1514
	bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
1515
	int needed;
1516

1517
	key.objectid = bytenr;
Z
Zheng Yan 已提交
1518
	key.type = BTRFS_EXTENT_ITEM_KEY;
1519
	key.offset = num_bytes;
Z
Zheng Yan 已提交
1520

1521 1522 1523
	want = extent_ref_type(parent, owner);
	if (insert) {
		extra_size = btrfs_extent_inline_ref_size(want);
1524
		path->keep_locks = 1;
1525 1526
	} else
		extra_size = -1;
1527 1528

	/*
1529 1530
	 * Owner is our level, so we can just add one to get the level for the
	 * block we are interested in.
1531 1532 1533 1534 1535 1536 1537
	 */
	if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
		key.type = BTRFS_METADATA_ITEM_KEY;
		key.offset = owner;
	}

again:
1538
	ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1539
	if (ret < 0) {
1540 1541 1542
		err = ret;
		goto out;
	}
1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559

	/*
	 * We may be a newly converted file system which still has the old fat
	 * extent entries for metadata, so try and see if we have one of those.
	 */
	if (ret > 0 && skinny_metadata) {
		skinny_metadata = false;
		if (path->slots[0]) {
			path->slots[0]--;
			btrfs_item_key_to_cpu(path->nodes[0], &key,
					      path->slots[0]);
			if (key.objectid == bytenr &&
			    key.type == BTRFS_EXTENT_ITEM_KEY &&
			    key.offset == num_bytes)
				ret = 0;
		}
		if (ret) {
1560
			key.objectid = bytenr;
1561 1562 1563 1564 1565 1566 1567
			key.type = BTRFS_EXTENT_ITEM_KEY;
			key.offset = num_bytes;
			btrfs_release_path(path);
			goto again;
		}
	}

1568 1569 1570
	if (ret && !insert) {
		err = -ENOENT;
		goto out;
1571
	} else if (WARN_ON(ret)) {
1572 1573
		err = -EIO;
		goto out;
1574
	}
1575 1576 1577

	leaf = path->nodes[0];
	item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1578
	if (unlikely(item_size < sizeof(*ei))) {
1579 1580 1581 1582 1583
		err = -EINVAL;
		btrfs_print_v0_err(fs_info);
		btrfs_abort_transaction(trans, err);
		goto out;
	}
1584 1585 1586 1587 1588 1589 1590

	ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
	flags = btrfs_extent_flags(leaf, ei);

	ptr = (unsigned long)(ei + 1);
	end = (unsigned long)ei + item_size;

1591
	if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
1592 1593 1594 1595
		ptr += sizeof(struct btrfs_tree_block_info);
		BUG_ON(ptr > end);
	}

1596 1597 1598 1599 1600
	if (owner >= BTRFS_FIRST_FREE_OBJECTID)
		needed = BTRFS_REF_TYPE_DATA;
	else
		needed = BTRFS_REF_TYPE_BLOCK;

1601 1602 1603 1604 1605 1606 1607
	err = -ENOENT;
	while (1) {
		if (ptr >= end) {
			WARN_ON(ptr > end);
			break;
		}
		iref = (struct btrfs_extent_inline_ref *)ptr;
1608 1609
		type = btrfs_get_extent_inline_ref_type(leaf, iref, needed);
		if (type == BTRFS_REF_TYPE_INVALID) {
1610
			err = -EUCLEAN;
1611 1612 1613
			goto out;
		}

1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664
		if (want < type)
			break;
		if (want > type) {
			ptr += btrfs_extent_inline_ref_size(type);
			continue;
		}

		if (type == BTRFS_EXTENT_DATA_REF_KEY) {
			struct btrfs_extent_data_ref *dref;
			dref = (struct btrfs_extent_data_ref *)(&iref->offset);
			if (match_extent_data_ref(leaf, dref, root_objectid,
						  owner, offset)) {
				err = 0;
				break;
			}
			if (hash_extent_data_ref_item(leaf, dref) <
			    hash_extent_data_ref(root_objectid, owner, offset))
				break;
		} else {
			u64 ref_offset;
			ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
			if (parent > 0) {
				if (parent == ref_offset) {
					err = 0;
					break;
				}
				if (ref_offset < parent)
					break;
			} else {
				if (root_objectid == ref_offset) {
					err = 0;
					break;
				}
				if (ref_offset < root_objectid)
					break;
			}
		}
		ptr += btrfs_extent_inline_ref_size(type);
	}
	if (err == -ENOENT && insert) {
		if (item_size + extra_size >=
		    BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
			err = -EAGAIN;
			goto out;
		}
		/*
		 * To add new inline back ref, we have to make sure
		 * there is no corresponding back ref item.
		 * For simplicity, we just do not add new inline back
		 * ref if there is any kind of item for this block
		 */
1665 1666
		if (find_next_key(path, 0, &key) == 0 &&
		    key.objectid == bytenr &&
1667
		    key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
1668 1669 1670 1671 1672 1673
			err = -EAGAIN;
			goto out;
		}
	}
	*ref_ret = (struct btrfs_extent_inline_ref *)ptr;
out:
1674
	if (insert) {
1675 1676 1677 1678 1679 1680 1681 1682 1683 1684
		path->keep_locks = 0;
		btrfs_unlock_up_safe(path, 1);
	}
	return err;
}

/*
 * helper to add new inline back ref
 */
static noinline_for_stack
1685
void setup_inline_extent_backref(struct btrfs_fs_info *fs_info,
1686 1687 1688 1689 1690
				 struct btrfs_path *path,
				 struct btrfs_extent_inline_ref *iref,
				 u64 parent, u64 root_objectid,
				 u64 owner, u64 offset, int refs_to_add,
				 struct btrfs_delayed_extent_op *extent_op)
1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707
{
	struct extent_buffer *leaf;
	struct btrfs_extent_item *ei;
	unsigned long ptr;
	unsigned long end;
	unsigned long item_offset;
	u64 refs;
	int size;
	int type;

	leaf = path->nodes[0];
	ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
	item_offset = (unsigned long)iref - (unsigned long)ei;

	type = extent_ref_type(parent, owner);
	size = btrfs_extent_inline_ref_size(type);

1708
	btrfs_extend_item(fs_info, path, size);
1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752

	ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
	refs = btrfs_extent_refs(leaf, ei);
	refs += refs_to_add;
	btrfs_set_extent_refs(leaf, ei, refs);
	if (extent_op)
		__run_delayed_extent_op(extent_op, leaf, ei);

	ptr = (unsigned long)ei + item_offset;
	end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
	if (ptr < end - size)
		memmove_extent_buffer(leaf, ptr + size, ptr,
				      end - size - ptr);

	iref = (struct btrfs_extent_inline_ref *)ptr;
	btrfs_set_extent_inline_ref_type(leaf, iref, type);
	if (type == BTRFS_EXTENT_DATA_REF_KEY) {
		struct btrfs_extent_data_ref *dref;
		dref = (struct btrfs_extent_data_ref *)(&iref->offset);
		btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
		btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
		btrfs_set_extent_data_ref_offset(leaf, dref, offset);
		btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
	} else if (type == BTRFS_SHARED_DATA_REF_KEY) {
		struct btrfs_shared_data_ref *sref;
		sref = (struct btrfs_shared_data_ref *)(iref + 1);
		btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
		btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
	} else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
		btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
	} else {
		btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
	}
	btrfs_mark_buffer_dirty(leaf);
}

static int lookup_extent_backref(struct btrfs_trans_handle *trans,
				 struct btrfs_path *path,
				 struct btrfs_extent_inline_ref **ref_ret,
				 u64 bytenr, u64 num_bytes, u64 parent,
				 u64 root_objectid, u64 owner, u64 offset)
{
	int ret;

1753 1754 1755
	ret = lookup_inline_extent_backref(trans, path, ref_ret, bytenr,
					   num_bytes, parent, root_objectid,
					   owner, offset, 0);
1756
	if (ret != -ENOENT)
1757
		return ret;
1758

1759
	btrfs_release_path(path);
1760 1761 1762
	*ref_ret = NULL;

	if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1763 1764
		ret = lookup_tree_block_ref(trans, path, bytenr, parent,
					    root_objectid);
1765
	} else {
1766 1767
		ret = lookup_extent_data_ref(trans, path, bytenr, parent,
					     root_objectid, owner, offset);
1768
	}
1769 1770
	return ret;
}
Z
Zheng Yan 已提交
1771

1772 1773 1774 1775
/*
 * helper to update/remove inline back ref
 */
static noinline_for_stack
1776
void update_inline_extent_backref(struct btrfs_path *path,
1777 1778
				  struct btrfs_extent_inline_ref *iref,
				  int refs_to_mod,
J
Josef Bacik 已提交
1779 1780
				  struct btrfs_delayed_extent_op *extent_op,
				  int *last_ref)
1781
{
1782 1783
	struct extent_buffer *leaf = path->nodes[0];
	struct btrfs_fs_info *fs_info = leaf->fs_info;
1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801
	struct btrfs_extent_item *ei;
	struct btrfs_extent_data_ref *dref = NULL;
	struct btrfs_shared_data_ref *sref = NULL;
	unsigned long ptr;
	unsigned long end;
	u32 item_size;
	int size;
	int type;
	u64 refs;

	ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
	refs = btrfs_extent_refs(leaf, ei);
	WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
	refs += refs_to_mod;
	btrfs_set_extent_refs(leaf, ei, refs);
	if (extent_op)
		__run_delayed_extent_op(extent_op, leaf, ei);

1802 1803 1804 1805 1806 1807
	/*
	 * If type is invalid, we should have bailed out after
	 * lookup_inline_extent_backref().
	 */
	type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_ANY);
	ASSERT(type != BTRFS_REF_TYPE_INVALID);
1808 1809 1810 1811 1812 1813 1814 1815 1816 1817

	if (type == BTRFS_EXTENT_DATA_REF_KEY) {
		dref = (struct btrfs_extent_data_ref *)(&iref->offset);
		refs = btrfs_extent_data_ref_count(leaf, dref);
	} else if (type == BTRFS_SHARED_DATA_REF_KEY) {
		sref = (struct btrfs_shared_data_ref *)(iref + 1);
		refs = btrfs_shared_data_ref_count(leaf, sref);
	} else {
		refs = 1;
		BUG_ON(refs_to_mod != -1);
1818
	}
Z
Zheng Yan 已提交
1819

1820 1821 1822 1823 1824 1825 1826 1827 1828
	BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
	refs += refs_to_mod;

	if (refs > 0) {
		if (type == BTRFS_EXTENT_DATA_REF_KEY)
			btrfs_set_extent_data_ref_count(leaf, dref, refs);
		else
			btrfs_set_shared_data_ref_count(leaf, sref, refs);
	} else {
J
Josef Bacik 已提交
1829
		*last_ref = 1;
1830 1831 1832 1833 1834 1835 1836 1837
		size =  btrfs_extent_inline_ref_size(type);
		item_size = btrfs_item_size_nr(leaf, path->slots[0]);
		ptr = (unsigned long)iref;
		end = (unsigned long)ei + item_size;
		if (ptr + size < end)
			memmove_extent_buffer(leaf, ptr, ptr + size,
					      end - ptr - size);
		item_size -= size;
1838
		btrfs_truncate_item(fs_info, path, item_size, 1);
1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
	}
	btrfs_mark_buffer_dirty(leaf);
}

static noinline_for_stack
int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
				 struct btrfs_path *path,
				 u64 bytenr, u64 num_bytes, u64 parent,
				 u64 root_objectid, u64 owner,
				 u64 offset, int refs_to_add,
				 struct btrfs_delayed_extent_op *extent_op)
{
	struct btrfs_extent_inline_ref *iref;
	int ret;

1854 1855 1856
	ret = lookup_inline_extent_backref(trans, path, &iref, bytenr,
					   num_bytes, parent, root_objectid,
					   owner, offset, 1);
1857 1858
	if (ret == 0) {
		BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
1859 1860
		update_inline_extent_backref(path, iref, refs_to_add,
					     extent_op, NULL);
1861
	} else if (ret == -ENOENT) {
1862
		setup_inline_extent_backref(trans->fs_info, path, iref, parent,
1863 1864 1865
					    root_objectid, owner, offset,
					    refs_to_add, extent_op);
		ret = 0;
1866
	}
1867 1868
	return ret;
}
Z
Zheng Yan 已提交
1869

1870 1871 1872 1873 1874 1875 1876 1877
static int insert_extent_backref(struct btrfs_trans_handle *trans,
				 struct btrfs_path *path,
				 u64 bytenr, u64 parent, u64 root_objectid,
				 u64 owner, u64 offset, int refs_to_add)
{
	int ret;
	if (owner < BTRFS_FIRST_FREE_OBJECTID) {
		BUG_ON(refs_to_add != 1);
1878 1879
		ret = insert_tree_block_ref(trans, path, bytenr, parent,
					    root_objectid);
1880
	} else {
1881 1882 1883
		ret = insert_extent_data_ref(trans, path, bytenr, parent,
					     root_objectid, owner, offset,
					     refs_to_add);
1884 1885 1886
	}
	return ret;
}
1887

1888 1889 1890
static int remove_extent_backref(struct btrfs_trans_handle *trans,
				 struct btrfs_path *path,
				 struct btrfs_extent_inline_ref *iref,
J
Josef Bacik 已提交
1891
				 int refs_to_drop, int is_data, int *last_ref)
1892
{
1893
	int ret = 0;
1894

1895 1896
	BUG_ON(!is_data && refs_to_drop != 1);
	if (iref) {
1897 1898
		update_inline_extent_backref(path, iref, -refs_to_drop, NULL,
					     last_ref);
1899
	} else if (is_data) {
1900
		ret = remove_extent_data_ref(trans, path, refs_to_drop,
J
Josef Bacik 已提交
1901
					     last_ref);
1902
	} else {
J
Josef Bacik 已提交
1903
		*last_ref = 1;
1904
		ret = btrfs_del_item(trans, trans->fs_info->extent_root, path);
1905 1906 1907 1908
	}
	return ret;
}

1909 1910
static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len,
			       u64 *discarded_bytes)
1911
{
1912 1913
	int j, ret = 0;
	u64 bytes_left, end;
1914
	u64 aligned_start = ALIGN(start, 1 << 9);
1915

1916 1917 1918 1919 1920
	if (WARN_ON(start != aligned_start)) {
		len -= aligned_start - start;
		len = round_down(len, 1 << 9);
		start = aligned_start;
	}
1921

1922
	*discarded_bytes = 0;
1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973

	if (!len)
		return 0;

	end = start + len;
	bytes_left = len;

	/* Skip any superblocks on this device. */
	for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) {
		u64 sb_start = btrfs_sb_offset(j);
		u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE;
		u64 size = sb_start - start;

		if (!in_range(sb_start, start, bytes_left) &&
		    !in_range(sb_end, start, bytes_left) &&
		    !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE))
			continue;

		/*
		 * Superblock spans beginning of range.  Adjust start and
		 * try again.
		 */
		if (sb_start <= start) {
			start += sb_end - start;
			if (start > end) {
				bytes_left = 0;
				break;
			}
			bytes_left = end - start;
			continue;
		}

		if (size) {
			ret = blkdev_issue_discard(bdev, start >> 9, size >> 9,
						   GFP_NOFS, 0);
			if (!ret)
				*discarded_bytes += size;
			else if (ret != -EOPNOTSUPP)
				return ret;
		}

		start = sb_end;
		if (start > end) {
			bytes_left = 0;
			break;
		}
		bytes_left = end - start;
	}

	if (bytes_left) {
		ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9,
1974 1975
					   GFP_NOFS, 0);
		if (!ret)
1976
			*discarded_bytes += bytes_left;
1977
	}
1978
	return ret;
1979 1980
}

1981
int btrfs_discard_extent(struct btrfs_fs_info *fs_info, u64 bytenr,
1982
			 u64 num_bytes, u64 *actual_bytes)
1983 1984
{
	int ret;
1985
	u64 discarded_bytes = 0;
1986
	struct btrfs_bio *bbio = NULL;
1987

C
Christoph Hellwig 已提交
1988

1989 1990 1991 1992
	/*
	 * Avoid races with device replace and make sure our bbio has devices
	 * associated to its stripes that don't go away while we are discarding.
	 */
1993
	btrfs_bio_counter_inc_blocked(fs_info);
1994
	/* Tell the block device(s) that the sectors can be discarded */
1995 1996
	ret = btrfs_map_block(fs_info, BTRFS_MAP_DISCARD, bytenr, &num_bytes,
			      &bbio, 0);
1997
	/* Error condition is -ENOMEM */
1998
	if (!ret) {
1999
		struct btrfs_bio_stripe *stripe = bbio->stripes;
2000 2001 2002
		int i;


2003
		for (i = 0; i < bbio->num_stripes; i++, stripe++) {
2004
			u64 bytes;
2005 2006
			struct request_queue *req_q;

2007 2008 2009 2010
			if (!stripe->dev->bdev) {
				ASSERT(btrfs_test_opt(fs_info, DEGRADED));
				continue;
			}
2011 2012
			req_q = bdev_get_queue(stripe->dev->bdev);
			if (!blk_queue_discard(req_q))
2013 2014
				continue;

2015 2016
			ret = btrfs_issue_discard(stripe->dev->bdev,
						  stripe->physical,
2017 2018
						  stripe->length,
						  &bytes);
2019
			if (!ret)
2020
				discarded_bytes += bytes;
2021
			else if (ret != -EOPNOTSUPP)
2022
				break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
2023 2024 2025 2026 2027 2028 2029

			/*
			 * Just in case we get back EOPNOTSUPP for some reason,
			 * just ignore the return value so we don't screw up
			 * people calling discard_extent.
			 */
			ret = 0;
2030
		}
2031
		btrfs_put_bbio(bbio);
2032
	}
2033
	btrfs_bio_counter_dec(fs_info);
2034 2035 2036 2037

	if (actual_bytes)
		*actual_bytes = discarded_bytes;

2038

D
David Woodhouse 已提交
2039 2040
	if (ret == -EOPNOTSUPP)
		ret = 0;
2041 2042 2043
	return ret;
}

2044
/* Can return -ENOMEM */
2045
int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
2046
			 struct btrfs_ref *generic_ref)
2047
{
2048
	struct btrfs_fs_info *fs_info = trans->fs_info;
2049
	int old_ref_mod, new_ref_mod;
2050
	int ret;
A
Arne Jansen 已提交
2051

2052 2053 2054 2055
	ASSERT(generic_ref->type != BTRFS_REF_NOT_SET &&
	       generic_ref->action);
	BUG_ON(generic_ref->type == BTRFS_REF_METADATA &&
	       generic_ref->tree_ref.root == BTRFS_TREE_LOG_OBJECTID);
2056

2057 2058
	if (generic_ref->type == BTRFS_REF_METADATA)
		ret = btrfs_add_delayed_tree_ref(trans, generic_ref,
2059
				NULL, &old_ref_mod, &new_ref_mod);
2060 2061
	else
		ret = btrfs_add_delayed_data_ref(trans, generic_ref, 0,
2062 2063
						 &old_ref_mod, &new_ref_mod);

2064
	btrfs_ref_tree_mod(fs_info, generic_ref);
2065

2066
	if (ret == 0 && old_ref_mod < 0 && new_ref_mod >= 0)
2067
		add_pinned_bytes(fs_info, generic_ref);
2068

2069 2070 2071
	return ret;
}

2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105
/*
 * __btrfs_inc_extent_ref - insert backreference for a given extent
 *
 * @trans:	    Handle of transaction
 *
 * @node:	    The delayed ref node used to get the bytenr/length for
 *		    extent whose references are incremented.
 *
 * @parent:	    If this is a shared extent (BTRFS_SHARED_DATA_REF_KEY/
 *		    BTRFS_SHARED_BLOCK_REF_KEY) then it holds the logical
 *		    bytenr of the parent block. Since new extents are always
 *		    created with indirect references, this will only be the case
 *		    when relocating a shared extent. In that case, root_objectid
 *		    will be BTRFS_TREE_RELOC_OBJECTID. Otheriwse, parent must
 *		    be 0
 *
 * @root_objectid:  The id of the root where this modification has originated,
 *		    this can be either one of the well-known metadata trees or
 *		    the subvolume id which references this extent.
 *
 * @owner:	    For data extents it is the inode number of the owning file.
 *		    For metadata extents this parameter holds the level in the
 *		    tree of the extent.
 *
 * @offset:	    For metadata extents the offset is ignored and is currently
 *		    always passed as 0. For data extents it is the fileoffset
 *		    this extent belongs to.
 *
 * @refs_to_add     Number of references to add
 *
 * @extent_op       Pointer to a structure, holding information necessary when
 *                  updating a tree block's flags
 *
 */
2106
static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
2107
				  struct btrfs_delayed_ref_node *node,
2108 2109 2110 2111 2112 2113 2114
				  u64 parent, u64 root_objectid,
				  u64 owner, u64 offset, int refs_to_add,
				  struct btrfs_delayed_extent_op *extent_op)
{
	struct btrfs_path *path;
	struct extent_buffer *leaf;
	struct btrfs_extent_item *item;
J
Josef Bacik 已提交
2115
	struct btrfs_key key;
2116 2117
	u64 bytenr = node->bytenr;
	u64 num_bytes = node->num_bytes;
2118 2119 2120 2121 2122 2123 2124
	u64 refs;
	int ret;

	path = btrfs_alloc_path();
	if (!path)
		return -ENOMEM;

2125
	path->reada = READA_FORWARD;
2126 2127
	path->leave_spinning = 1;
	/* this will setup the path even if it fails to insert the back ref */
2128 2129 2130
	ret = insert_inline_extent_backref(trans, path, bytenr, num_bytes,
					   parent, root_objectid, owner,
					   offset, refs_to_add, extent_op);
2131
	if ((ret < 0 && ret != -EAGAIN) || !ret)
2132
		goto out;
J
Josef Bacik 已提交
2133 2134 2135 2136 2137 2138

	/*
	 * Ok we had -EAGAIN which means we didn't have space to insert and
	 * inline extent ref, so just update the reference count and add a
	 * normal backref.
	 */
2139
	leaf = path->nodes[0];
J
Josef Bacik 已提交
2140
	btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2141 2142 2143 2144 2145
	item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
	refs = btrfs_extent_refs(leaf, item);
	btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
	if (extent_op)
		__run_delayed_extent_op(extent_op, leaf, item);
2146

2147
	btrfs_mark_buffer_dirty(leaf);
2148
	btrfs_release_path(path);
2149

2150
	path->reada = READA_FORWARD;
2151
	path->leave_spinning = 1;
2152
	/* now insert the actual backref */
2153 2154
	ret = insert_extent_backref(trans, path, bytenr, parent, root_objectid,
				    owner, offset, refs_to_add);
2155
	if (ret)
2156
		btrfs_abort_transaction(trans, ret);
2157
out:
2158
	btrfs_free_path(path);
2159
	return ret;
2160 2161
}

2162 2163 2164 2165
static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
				struct btrfs_delayed_ref_node *node,
				struct btrfs_delayed_extent_op *extent_op,
				int insert_reserved)
2166
{
2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178
	int ret = 0;
	struct btrfs_delayed_data_ref *ref;
	struct btrfs_key ins;
	u64 parent = 0;
	u64 ref_root = 0;
	u64 flags = 0;

	ins.objectid = node->bytenr;
	ins.offset = node->num_bytes;
	ins.type = BTRFS_EXTENT_ITEM_KEY;

	ref = btrfs_delayed_node_to_data_ref(node);
2179
	trace_run_delayed_data_ref(trans->fs_info, node, ref, node->action);
2180

2181 2182
	if (node->type == BTRFS_SHARED_DATA_REF_KEY)
		parent = ref->parent;
J
Josef Bacik 已提交
2183
	ref_root = ref->root;
2184 2185

	if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
2186
		if (extent_op)
2187
			flags |= extent_op->flags_to_set;
2188 2189 2190 2191
		ret = alloc_reserved_file_extent(trans, parent, ref_root,
						 flags, ref->objectid,
						 ref->offset, &ins,
						 node->ref_mod);
2192
	} else if (node->action == BTRFS_ADD_DELAYED_REF) {
2193 2194 2195
		ret = __btrfs_inc_extent_ref(trans, node, parent, ref_root,
					     ref->objectid, ref->offset,
					     node->ref_mod, extent_op);
2196
	} else if (node->action == BTRFS_DROP_DELAYED_REF) {
2197
		ret = __btrfs_free_extent(trans, node, parent,
2198 2199
					  ref_root, ref->objectid,
					  ref->offset, node->ref_mod,
2200
					  extent_op);
2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225
	} else {
		BUG();
	}
	return ret;
}

static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
				    struct extent_buffer *leaf,
				    struct btrfs_extent_item *ei)
{
	u64 flags = btrfs_extent_flags(leaf, ei);
	if (extent_op->update_flags) {
		flags |= extent_op->flags_to_set;
		btrfs_set_extent_flags(leaf, ei, flags);
	}

	if (extent_op->update_key) {
		struct btrfs_tree_block_info *bi;
		BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
		bi = (struct btrfs_tree_block_info *)(ei + 1);
		btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
	}
}

static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
2226
				 struct btrfs_delayed_ref_head *head,
2227 2228
				 struct btrfs_delayed_extent_op *extent_op)
{
2229
	struct btrfs_fs_info *fs_info = trans->fs_info;
2230 2231 2232 2233 2234
	struct btrfs_key key;
	struct btrfs_path *path;
	struct btrfs_extent_item *ei;
	struct extent_buffer *leaf;
	u32 item_size;
2235
	int ret;
2236
	int err = 0;
2237
	int metadata = !extent_op->is_data;
2238

2239 2240 2241
	if (trans->aborted)
		return 0;

2242
	if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA))
2243 2244
		metadata = 0;

2245 2246 2247 2248
	path = btrfs_alloc_path();
	if (!path)
		return -ENOMEM;

2249
	key.objectid = head->bytenr;
2250

2251 2252
	if (metadata) {
		key.type = BTRFS_METADATA_ITEM_KEY;
2253
		key.offset = extent_op->level;
2254 2255
	} else {
		key.type = BTRFS_EXTENT_ITEM_KEY;
2256
		key.offset = head->num_bytes;
2257 2258 2259
	}

again:
2260
	path->reada = READA_FORWARD;
2261
	path->leave_spinning = 1;
2262
	ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 1);
2263 2264 2265 2266 2267
	if (ret < 0) {
		err = ret;
		goto out;
	}
	if (ret > 0) {
2268
		if (metadata) {
2269 2270 2271 2272
			if (path->slots[0] > 0) {
				path->slots[0]--;
				btrfs_item_key_to_cpu(path->nodes[0], &key,
						      path->slots[0]);
2273
				if (key.objectid == head->bytenr &&
2274
				    key.type == BTRFS_EXTENT_ITEM_KEY &&
2275
				    key.offset == head->num_bytes)
2276 2277 2278 2279 2280
					ret = 0;
			}
			if (ret > 0) {
				btrfs_release_path(path);
				metadata = 0;
2281

2282 2283
				key.objectid = head->bytenr;
				key.offset = head->num_bytes;
2284 2285 2286 2287 2288 2289
				key.type = BTRFS_EXTENT_ITEM_KEY;
				goto again;
			}
		} else {
			err = -EIO;
			goto out;
2290
		}
2291 2292 2293 2294
	}

	leaf = path->nodes[0];
	item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2295

2296
	if (unlikely(item_size < sizeof(*ei))) {
2297 2298 2299 2300 2301 2302
		err = -EINVAL;
		btrfs_print_v0_err(fs_info);
		btrfs_abort_transaction(trans, err);
		goto out;
	}

2303 2304
	ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
	__run_delayed_extent_op(extent_op, leaf, ei);
2305

2306 2307 2308 2309
	btrfs_mark_buffer_dirty(leaf);
out:
	btrfs_free_path(path);
	return err;
2310 2311
}

2312 2313 2314 2315
static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
				struct btrfs_delayed_ref_node *node,
				struct btrfs_delayed_extent_op *extent_op,
				int insert_reserved)
2316 2317
{
	int ret = 0;
2318 2319 2320
	struct btrfs_delayed_tree_ref *ref;
	u64 parent = 0;
	u64 ref_root = 0;
2321

2322
	ref = btrfs_delayed_node_to_tree_ref(node);
2323
	trace_run_delayed_tree_ref(trans->fs_info, node, ref, node->action);
2324

2325 2326
	if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
		parent = ref->parent;
J
Josef Bacik 已提交
2327
	ref_root = ref->root;
2328

2329
	if (node->ref_mod != 1) {
2330
		btrfs_err(trans->fs_info,
2331 2332 2333 2334 2335
	"btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu",
			  node->bytenr, node->ref_mod, node->action, ref_root,
			  parent);
		return -EIO;
	}
2336
	if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
2337
		BUG_ON(!extent_op || !extent_op->update_flags);
2338
		ret = alloc_reserved_tree_block(trans, node, extent_op);
2339
	} else if (node->action == BTRFS_ADD_DELAYED_REF) {
2340 2341
		ret = __btrfs_inc_extent_ref(trans, node, parent, ref_root,
					     ref->level, 0, 1, extent_op);
2342
	} else if (node->action == BTRFS_DROP_DELAYED_REF) {
2343
		ret = __btrfs_free_extent(trans, node, parent, ref_root,
2344
					  ref->level, 0, 1, extent_op);
2345 2346 2347
	} else {
		BUG();
	}
2348 2349 2350 2351
	return ret;
}

/* helper function to actually process a single delayed ref entry */
2352 2353 2354 2355
static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
			       struct btrfs_delayed_ref_node *node,
			       struct btrfs_delayed_extent_op *extent_op,
			       int insert_reserved)
2356
{
2357 2358
	int ret = 0;

2359 2360
	if (trans->aborted) {
		if (insert_reserved)
2361
			btrfs_pin_extent(trans->fs_info, node->bytenr,
2362
					 node->num_bytes, 1);
2363
		return 0;
2364
	}
2365

2366 2367
	if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
	    node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2368
		ret = run_delayed_tree_ref(trans, node, extent_op,
2369 2370 2371
					   insert_reserved);
	else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
		 node->type == BTRFS_SHARED_DATA_REF_KEY)
2372
		ret = run_delayed_data_ref(trans, node, extent_op,
2373 2374 2375
					   insert_reserved);
	else
		BUG();
2376 2377 2378
	if (ret && insert_reserved)
		btrfs_pin_extent(trans->fs_info, node->bytenr,
				 node->num_bytes, 1);
2379
	return ret;
2380 2381
}

2382
static inline struct btrfs_delayed_ref_node *
2383 2384
select_delayed_ref(struct btrfs_delayed_ref_head *head)
{
2385 2386
	struct btrfs_delayed_ref_node *ref;

2387
	if (RB_EMPTY_ROOT(&head->ref_tree.rb_root))
2388
		return NULL;
2389

2390 2391 2392 2393 2394 2395
	/*
	 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
	 * This is to prevent a ref count from going down to zero, which deletes
	 * the extent item from the extent tree, when there still are references
	 * to add, which would fail because they would not find the extent item.
	 */
2396 2397 2398 2399
	if (!list_empty(&head->ref_add_list))
		return list_first_entry(&head->ref_add_list,
				struct btrfs_delayed_ref_node, add_list);

2400
	ref = rb_entry(rb_first_cached(&head->ref_tree),
2401
		       struct btrfs_delayed_ref_node, ref_node);
2402 2403
	ASSERT(list_empty(&ref->add_list));
	return ref;
2404 2405
}

2406 2407 2408 2409 2410 2411 2412 2413 2414 2415
static void unselect_delayed_ref_head(struct btrfs_delayed_ref_root *delayed_refs,
				      struct btrfs_delayed_ref_head *head)
{
	spin_lock(&delayed_refs->lock);
	head->processing = 0;
	delayed_refs->num_heads_ready++;
	spin_unlock(&delayed_refs->lock);
	btrfs_delayed_ref_unlock(head);
}

J
Josef Bacik 已提交
2416 2417
static struct btrfs_delayed_extent_op *cleanup_extent_op(
				struct btrfs_delayed_ref_head *head)
2418 2419 2420 2421
{
	struct btrfs_delayed_extent_op *extent_op = head->extent_op;

	if (!extent_op)
J
Josef Bacik 已提交
2422 2423
		return NULL;

2424
	if (head->must_insert_reserved) {
J
Josef Bacik 已提交
2425
		head->extent_op = NULL;
2426
		btrfs_free_delayed_extent_op(extent_op);
J
Josef Bacik 已提交
2427
		return NULL;
2428
	}
J
Josef Bacik 已提交
2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441
	return extent_op;
}

static int run_and_cleanup_extent_op(struct btrfs_trans_handle *trans,
				     struct btrfs_delayed_ref_head *head)
{
	struct btrfs_delayed_extent_op *extent_op;
	int ret;

	extent_op = cleanup_extent_op(head);
	if (!extent_op)
		return 0;
	head->extent_op = NULL;
2442
	spin_unlock(&head->lock);
2443
	ret = run_delayed_extent_op(trans, head, extent_op);
2444 2445 2446 2447
	btrfs_free_delayed_extent_op(extent_op);
	return ret ? ret : 1;
}

2448 2449 2450
void btrfs_cleanup_ref_head_accounting(struct btrfs_fs_info *fs_info,
				  struct btrfs_delayed_ref_root *delayed_refs,
				  struct btrfs_delayed_ref_head *head)
2451
{
J
Josef Bacik 已提交
2452
	int nr_items = 1;	/* Dropping this ref head update. */
2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469

	if (head->total_ref_mod < 0) {
		struct btrfs_space_info *space_info;
		u64 flags;

		if (head->is_data)
			flags = BTRFS_BLOCK_GROUP_DATA;
		else if (head->is_system)
			flags = BTRFS_BLOCK_GROUP_SYSTEM;
		else
			flags = BTRFS_BLOCK_GROUP_METADATA;
		space_info = __find_space_info(fs_info, flags);
		ASSERT(space_info);
		percpu_counter_add_batch(&space_info->total_bytes_pinned,
				   -head->num_bytes,
				   BTRFS_TOTAL_BYTES_PINNED_BATCH);

J
Josef Bacik 已提交
2470 2471 2472 2473 2474
		/*
		 * We had csum deletions accounted for in our delayed refs rsv,
		 * we need to drop the csum leaves for this update from our
		 * delayed_refs_rsv.
		 */
2475 2476 2477 2478
		if (head->is_data) {
			spin_lock(&delayed_refs->lock);
			delayed_refs->pending_csums -= head->num_bytes;
			spin_unlock(&delayed_refs->lock);
J
Josef Bacik 已提交
2479 2480
			nr_items += btrfs_csum_bytes_to_leaves(fs_info,
				head->num_bytes);
2481 2482 2483
		}
	}

J
Josef Bacik 已提交
2484
	btrfs_delayed_refs_rsv_release(fs_info, nr_items);
2485 2486
}

2487 2488 2489
static int cleanup_ref_head(struct btrfs_trans_handle *trans,
			    struct btrfs_delayed_ref_head *head)
{
2490 2491

	struct btrfs_fs_info *fs_info = trans->fs_info;
2492 2493 2494 2495 2496
	struct btrfs_delayed_ref_root *delayed_refs;
	int ret;

	delayed_refs = &trans->transaction->delayed_refs;

J
Josef Bacik 已提交
2497
	ret = run_and_cleanup_extent_op(trans, head);
2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512
	if (ret < 0) {
		unselect_delayed_ref_head(delayed_refs, head);
		btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
		return ret;
	} else if (ret) {
		return ret;
	}

	/*
	 * Need to drop our head ref lock and re-acquire the delayed ref lock
	 * and then re-check to make sure nobody got added.
	 */
	spin_unlock(&head->lock);
	spin_lock(&delayed_refs->lock);
	spin_lock(&head->lock);
2513
	if (!RB_EMPTY_ROOT(&head->ref_tree.rb_root) || head->extent_op) {
2514 2515 2516 2517
		spin_unlock(&head->lock);
		spin_unlock(&delayed_refs->lock);
		return 1;
	}
2518
	btrfs_delete_ref_head(delayed_refs, head);
2519
	spin_unlock(&head->lock);
N
Nikolay Borisov 已提交
2520
	spin_unlock(&delayed_refs->lock);
2521 2522

	if (head->must_insert_reserved) {
2523 2524
		btrfs_pin_extent(fs_info, head->bytenr,
				 head->num_bytes, 1);
2525
		if (head->is_data) {
2526 2527
			ret = btrfs_del_csums(trans, fs_info, head->bytenr,
					      head->num_bytes);
2528 2529 2530
		}
	}

2531
	btrfs_cleanup_ref_head_accounting(fs_info, delayed_refs, head);
2532 2533

	trace_run_delayed_ref_head(fs_info, head, 0);
2534
	btrfs_delayed_ref_unlock(head);
2535
	btrfs_put_delayed_ref_head(head);
2536 2537 2538
	return 0;
}

2539 2540 2541 2542 2543 2544 2545 2546 2547
static struct btrfs_delayed_ref_head *btrfs_obtain_ref_head(
					struct btrfs_trans_handle *trans)
{
	struct btrfs_delayed_ref_root *delayed_refs =
		&trans->transaction->delayed_refs;
	struct btrfs_delayed_ref_head *head = NULL;
	int ret;

	spin_lock(&delayed_refs->lock);
2548
	head = btrfs_select_ref_head(delayed_refs);
2549 2550 2551 2552 2553 2554 2555 2556 2557
	if (!head) {
		spin_unlock(&delayed_refs->lock);
		return head;
	}

	/*
	 * Grab the lock that says we are going to process all the refs for
	 * this head
	 */
2558
	ret = btrfs_delayed_ref_lock(delayed_refs, head);
2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571
	spin_unlock(&delayed_refs->lock);

	/*
	 * We may have dropped the spin lock to get the head mutex lock, and
	 * that might have given someone else time to free the head.  If that's
	 * true, it has been removed from our list and we can move on.
	 */
	if (ret == -EAGAIN)
		head = ERR_PTR(-EAGAIN);

	return head;
}

2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584
static int btrfs_run_delayed_refs_for_head(struct btrfs_trans_handle *trans,
				    struct btrfs_delayed_ref_head *locked_ref,
				    unsigned long *run_refs)
{
	struct btrfs_fs_info *fs_info = trans->fs_info;
	struct btrfs_delayed_ref_root *delayed_refs;
	struct btrfs_delayed_extent_op *extent_op;
	struct btrfs_delayed_ref_node *ref;
	int must_insert_reserved = 0;
	int ret;

	delayed_refs = &trans->transaction->delayed_refs;

2585 2586 2587
	lockdep_assert_held(&locked_ref->mutex);
	lockdep_assert_held(&locked_ref->lock);

2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651
	while ((ref = select_delayed_ref(locked_ref))) {
		if (ref->seq &&
		    btrfs_check_delayed_seq(fs_info, ref->seq)) {
			spin_unlock(&locked_ref->lock);
			unselect_delayed_ref_head(delayed_refs, locked_ref);
			return -EAGAIN;
		}

		(*run_refs)++;
		ref->in_tree = 0;
		rb_erase_cached(&ref->ref_node, &locked_ref->ref_tree);
		RB_CLEAR_NODE(&ref->ref_node);
		if (!list_empty(&ref->add_list))
			list_del(&ref->add_list);
		/*
		 * When we play the delayed ref, also correct the ref_mod on
		 * head
		 */
		switch (ref->action) {
		case BTRFS_ADD_DELAYED_REF:
		case BTRFS_ADD_DELAYED_EXTENT:
			locked_ref->ref_mod -= ref->ref_mod;
			break;
		case BTRFS_DROP_DELAYED_REF:
			locked_ref->ref_mod += ref->ref_mod;
			break;
		default:
			WARN_ON(1);
		}
		atomic_dec(&delayed_refs->num_entries);

		/*
		 * Record the must_insert_reserved flag before we drop the
		 * spin lock.
		 */
		must_insert_reserved = locked_ref->must_insert_reserved;
		locked_ref->must_insert_reserved = 0;

		extent_op = locked_ref->extent_op;
		locked_ref->extent_op = NULL;
		spin_unlock(&locked_ref->lock);

		ret = run_one_delayed_ref(trans, ref, extent_op,
					  must_insert_reserved);

		btrfs_free_delayed_extent_op(extent_op);
		if (ret) {
			unselect_delayed_ref_head(delayed_refs, locked_ref);
			btrfs_put_delayed_ref(ref);
			btrfs_debug(fs_info, "run_one_delayed_ref returned %d",
				    ret);
			return ret;
		}

		btrfs_put_delayed_ref(ref);
		cond_resched();

		spin_lock(&locked_ref->lock);
		btrfs_merge_delayed_refs(trans, delayed_refs, locked_ref);
	}

	return 0;
}

2652 2653 2654 2655
/*
 * Returns 0 on success or if called with an already aborted transaction.
 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
 */
2656 2657
static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
					     unsigned long nr)
2658
{
2659
	struct btrfs_fs_info *fs_info = trans->fs_info;
2660 2661
	struct btrfs_delayed_ref_root *delayed_refs;
	struct btrfs_delayed_ref_head *locked_ref = NULL;
2662
	ktime_t start = ktime_get();
2663
	int ret;
2664
	unsigned long count = 0;
2665
	unsigned long actual_count = 0;
2666 2667

	delayed_refs = &trans->transaction->delayed_refs;
2668
	do {
2669
		if (!locked_ref) {
2670
			locked_ref = btrfs_obtain_ref_head(trans);
2671 2672 2673 2674 2675 2676
			if (IS_ERR_OR_NULL(locked_ref)) {
				if (PTR_ERR(locked_ref) == -EAGAIN) {
					continue;
				} else {
					break;
				}
2677
			}
2678
			count++;
2679
		}
2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691
		/*
		 * We need to try and merge add/drops of the same ref since we
		 * can run into issues with relocate dropping the implicit ref
		 * and then it being added back again before the drop can
		 * finish.  If we merged anything we need to re-loop so we can
		 * get a good ref.
		 * Or we can get node references of the same type that weren't
		 * merged when created due to bumps in the tree mod seq, and
		 * we need to merge them to prevent adding an inline extent
		 * backref before dropping it (triggering a BUG_ON at
		 * insert_inline_extent_backref()).
		 */
2692
		spin_lock(&locked_ref->lock);
2693
		btrfs_merge_delayed_refs(trans, delayed_refs, locked_ref);
2694

2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707
		ret = btrfs_run_delayed_refs_for_head(trans, locked_ref,
						      &actual_count);
		if (ret < 0 && ret != -EAGAIN) {
			/*
			 * Error, btrfs_run_delayed_refs_for_head already
			 * unlocked everything so just bail out
			 */
			return ret;
		} else if (!ret) {
			/*
			 * Success, perform the usual cleanup of a processed
			 * head
			 */
2708
			ret = cleanup_ref_head(trans, locked_ref);
2709
			if (ret > 0 ) {
2710 2711
				/* We dropped our lock, we need to loop. */
				ret = 0;
2712
				continue;
2713 2714
			} else if (ret) {
				return ret;
2715
			}
2716
		}
2717

2718
		/*
2719 2720
		 * Either success case or btrfs_run_delayed_refs_for_head
		 * returned -EAGAIN, meaning we need to select another head
2721 2722
		 */

2723
		locked_ref = NULL;
2724
		cond_resched();
2725
	} while ((nr != -1 && count < nr) || locked_ref);
2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741

	/*
	 * We don't want to include ref heads since we can have empty ref heads
	 * and those will drastically skew our runtime down since we just do
	 * accounting, no actual extent tree updates.
	 */
	if (actual_count > 0) {
		u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
		u64 avg;

		/*
		 * We weigh the current average higher than our current runtime
		 * to avoid large swings in the average.
		 */
		spin_lock(&delayed_refs->lock);
		avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
2742
		fs_info->avg_delayed_ref_runtime = avg >> 2;	/* div by 4 */
2743 2744
		spin_unlock(&delayed_refs->lock);
	}
2745
	return 0;
2746 2747
}

2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790
#ifdef SCRAMBLE_DELAYED_REFS
/*
 * Normally delayed refs get processed in ascending bytenr order. This
 * correlates in most cases to the order added. To expose dependencies on this
 * order, we start to process the tree in the middle instead of the beginning
 */
static u64 find_middle(struct rb_root *root)
{
	struct rb_node *n = root->rb_node;
	struct btrfs_delayed_ref_node *entry;
	int alt = 1;
	u64 middle;
	u64 first = 0, last = 0;

	n = rb_first(root);
	if (n) {
		entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
		first = entry->bytenr;
	}
	n = rb_last(root);
	if (n) {
		entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
		last = entry->bytenr;
	}
	n = root->rb_node;

	while (n) {
		entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
		WARN_ON(!entry->in_tree);

		middle = entry->bytenr;

		if (alt)
			n = n->rb_left;
		else
			n = n->rb_right;

		alt = 1 - alt;
	}
	return middle;
}
#endif

2791
static inline u64 heads_to_leaves(struct btrfs_fs_info *fs_info, u64 heads)
2792 2793 2794 2795 2796
{
	u64 num_bytes;

	num_bytes = heads * (sizeof(struct btrfs_extent_item) +
			     sizeof(struct btrfs_extent_inline_ref));
2797
	if (!btrfs_fs_incompat(fs_info, SKINNY_METADATA))
2798 2799 2800 2801
		num_bytes += heads * sizeof(struct btrfs_tree_block_info);

	/*
	 * We don't ever fill up leaves all the way so multiply by 2 just to be
2802
	 * closer to what we're really going to want to use.
2803
	 */
2804
	return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(fs_info));
2805 2806
}

2807 2808 2809 2810
/*
 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
 * would require to store the csums for that many bytes.
 */
2811
u64 btrfs_csum_bytes_to_leaves(struct btrfs_fs_info *fs_info, u64 csum_bytes)
2812 2813 2814 2815 2816
{
	u64 csum_size;
	u64 num_csums_per_leaf;
	u64 num_csums;

2817
	csum_size = BTRFS_MAX_ITEM_SIZE(fs_info);
2818
	num_csums_per_leaf = div64_u64(csum_size,
2819 2820
			(u64)btrfs_super_csum_size(fs_info->super_copy));
	num_csums = div64_u64(csum_bytes, fs_info->sectorsize);
2821 2822 2823 2824 2825
	num_csums += num_csums_per_leaf - 1;
	num_csums = div64_u64(num_csums, num_csums_per_leaf);
	return num_csums;
}

2826
bool btrfs_check_space_for_delayed_refs(struct btrfs_fs_info *fs_info)
2827
{
2828 2829 2830 2831
	struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
	struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
	bool ret = false;
	u64 reserved;
2832

2833 2834 2835
	spin_lock(&global_rsv->lock);
	reserved = global_rsv->reserved;
	spin_unlock(&global_rsv->lock);
2836 2837

	/*
2838 2839 2840 2841
	 * Since the global reserve is just kind of magic we don't really want
	 * to rely on it to save our bacon, so if our size is more than the
	 * delayed_refs_rsv and the global rsv then it's time to think about
	 * bailing.
2842
	 */
2843 2844 2845 2846 2847
	spin_lock(&delayed_refs_rsv->lock);
	reserved += delayed_refs_rsv->reserved;
	if (delayed_refs_rsv->size >= reserved)
		ret = true;
	spin_unlock(&delayed_refs_rsv->lock);
2848 2849 2850
	return ret;
}

2851
int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans)
2852 2853 2854 2855
{
	u64 num_entries =
		atomic_read(&trans->transaction->delayed_refs.num_entries);
	u64 avg_runtime;
C
Chris Mason 已提交
2856
	u64 val;
2857 2858

	smp_mb();
2859
	avg_runtime = trans->fs_info->avg_delayed_ref_runtime;
C
Chris Mason 已提交
2860
	val = num_entries * avg_runtime;
2861
	if (val >= NSEC_PER_SEC)
2862
		return 1;
C
Chris Mason 已提交
2863 2864
	if (val >= NSEC_PER_SEC / 2)
		return 2;
2865

2866
	return btrfs_check_space_for_delayed_refs(trans->fs_info);
2867 2868
}

2869 2870 2871 2872 2873 2874
/*
 * this starts processing the delayed reference count updates and
 * extent insertions we have queued up so far.  count can be
 * 0, which means to process everything in the tree at the start
 * of the run (but not newly added entries), or it can be some target
 * number you'd like to process.
2875 2876 2877
 *
 * Returns 0 on success or if called with an aborted transaction
 * Returns <0 on error and aborts the transaction
2878 2879
 */
int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
2880
			   unsigned long count)
2881
{
2882
	struct btrfs_fs_info *fs_info = trans->fs_info;
2883 2884
	struct rb_node *node;
	struct btrfs_delayed_ref_root *delayed_refs;
L
Liu Bo 已提交
2885
	struct btrfs_delayed_ref_head *head;
2886 2887 2888
	int ret;
	int run_all = count == (unsigned long)-1;

2889 2890 2891 2892
	/* We'll clean this up in btrfs_cleanup_transaction */
	if (trans->aborted)
		return 0;

2893
	if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags))
2894 2895
		return 0;

2896
	delayed_refs = &trans->transaction->delayed_refs;
L
Liu Bo 已提交
2897
	if (count == 0)
2898
		count = atomic_read(&delayed_refs->num_entries) * 2;
2899

2900
again:
2901 2902 2903
#ifdef SCRAMBLE_DELAYED_REFS
	delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
#endif
2904
	ret = __btrfs_run_delayed_refs(trans, count);
2905
	if (ret < 0) {
2906
		btrfs_abort_transaction(trans, ret);
2907
		return ret;
2908
	}
2909

2910
	if (run_all) {
2911
		btrfs_create_pending_block_groups(trans);
2912

2913
		spin_lock(&delayed_refs->lock);
2914
		node = rb_first_cached(&delayed_refs->href_root);
2915 2916
		if (!node) {
			spin_unlock(&delayed_refs->lock);
2917
			goto out;
2918
		}
2919 2920 2921 2922
		head = rb_entry(node, struct btrfs_delayed_ref_head,
				href_node);
		refcount_inc(&head->refs);
		spin_unlock(&delayed_refs->lock);
2923

2924 2925 2926
		/* Mutex was contended, block until it's released and retry. */
		mutex_lock(&head->mutex);
		mutex_unlock(&head->mutex);
2927

2928
		btrfs_put_delayed_ref_head(head);
2929
		cond_resched();
2930
		goto again;
2931
	}
2932
out:
2933 2934 2935
	return 0;
}

2936
int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
2937
				struct btrfs_fs_info *fs_info,
2938
				u64 bytenr, u64 num_bytes, u64 flags,
2939
				int level, int is_data)
2940 2941 2942 2943
{
	struct btrfs_delayed_extent_op *extent_op;
	int ret;

2944
	extent_op = btrfs_alloc_delayed_extent_op();
2945 2946 2947 2948
	if (!extent_op)
		return -ENOMEM;

	extent_op->flags_to_set = flags;
2949 2950 2951
	extent_op->update_flags = true;
	extent_op->update_key = false;
	extent_op->is_data = is_data ? true : false;
2952
	extent_op->level = level;
2953

2954
	ret = btrfs_add_delayed_extent_op(fs_info, trans, bytenr,
A
Arne Jansen 已提交
2955
					  num_bytes, extent_op);
2956
	if (ret)
2957
		btrfs_free_delayed_extent_op(extent_op);
2958 2959 2960
	return ret;
}

2961
static noinline int check_delayed_ref(struct btrfs_root *root,
2962 2963 2964 2965 2966 2967 2968
				      struct btrfs_path *path,
				      u64 objectid, u64 offset, u64 bytenr)
{
	struct btrfs_delayed_ref_head *head;
	struct btrfs_delayed_ref_node *ref;
	struct btrfs_delayed_data_ref *data_ref;
	struct btrfs_delayed_ref_root *delayed_refs;
2969
	struct btrfs_transaction *cur_trans;
2970
	struct rb_node *node;
2971 2972
	int ret = 0;

2973
	spin_lock(&root->fs_info->trans_lock);
2974
	cur_trans = root->fs_info->running_transaction;
2975 2976 2977
	if (cur_trans)
		refcount_inc(&cur_trans->use_count);
	spin_unlock(&root->fs_info->trans_lock);
2978 2979 2980 2981
	if (!cur_trans)
		return 0;

	delayed_refs = &cur_trans->delayed_refs;
2982
	spin_lock(&delayed_refs->lock);
2983
	head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
2984 2985
	if (!head) {
		spin_unlock(&delayed_refs->lock);
2986
		btrfs_put_transaction(cur_trans);
2987 2988
		return 0;
	}
2989 2990

	if (!mutex_trylock(&head->mutex)) {
2991
		refcount_inc(&head->refs);
2992 2993
		spin_unlock(&delayed_refs->lock);

2994
		btrfs_release_path(path);
2995

2996 2997 2998 2999
		/*
		 * Mutex was contended, block until it's released and let
		 * caller try again
		 */
3000 3001
		mutex_lock(&head->mutex);
		mutex_unlock(&head->mutex);
3002
		btrfs_put_delayed_ref_head(head);
3003
		btrfs_put_transaction(cur_trans);
3004 3005
		return -EAGAIN;
	}
3006
	spin_unlock(&delayed_refs->lock);
3007

3008
	spin_lock(&head->lock);
3009 3010 3011 3012
	/*
	 * XXX: We should replace this with a proper search function in the
	 * future.
	 */
3013 3014
	for (node = rb_first_cached(&head->ref_tree); node;
	     node = rb_next(node)) {
3015
		ref = rb_entry(node, struct btrfs_delayed_ref_node, ref_node);
3016 3017 3018 3019 3020
		/* If it's a shared ref we know a cross reference exists */
		if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
			ret = 1;
			break;
		}
3021

3022
		data_ref = btrfs_delayed_node_to_data_ref(ref);
3023

3024 3025 3026 3027 3028 3029 3030 3031 3032 3033
		/*
		 * If our ref doesn't match the one we're currently looking at
		 * then we have a cross reference.
		 */
		if (data_ref->root != root->root_key.objectid ||
		    data_ref->objectid != objectid ||
		    data_ref->offset != offset) {
			ret = 1;
			break;
		}
3034
	}
3035
	spin_unlock(&head->lock);
3036
	mutex_unlock(&head->mutex);
3037
	btrfs_put_transaction(cur_trans);
3038 3039 3040
	return ret;
}

3041
static noinline int check_committed_ref(struct btrfs_root *root,
3042 3043
					struct btrfs_path *path,
					u64 objectid, u64 offset, u64 bytenr)
3044
{
3045 3046
	struct btrfs_fs_info *fs_info = root->fs_info;
	struct btrfs_root *extent_root = fs_info->extent_root;
3047
	struct extent_buffer *leaf;
3048 3049 3050
	struct btrfs_extent_data_ref *ref;
	struct btrfs_extent_inline_ref *iref;
	struct btrfs_extent_item *ei;
3051
	struct btrfs_key key;
3052
	u32 item_size;
3053
	int type;
3054
	int ret;
3055

3056
	key.objectid = bytenr;
Z
Zheng Yan 已提交
3057
	key.offset = (u64)-1;
3058
	key.type = BTRFS_EXTENT_ITEM_KEY;
3059 3060 3061 3062

	ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
	if (ret < 0)
		goto out;
3063
	BUG_ON(ret == 0); /* Corruption */
Y
Yan Zheng 已提交
3064 3065 3066

	ret = -ENOENT;
	if (path->slots[0] == 0)
Z
Zheng Yan 已提交
3067
		goto out;
3068

Z
Zheng Yan 已提交
3069
	path->slots[0]--;
3070
	leaf = path->nodes[0];
3071
	btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
3072

3073
	if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
3074
		goto out;
3075

3076 3077 3078
	ret = 1;
	item_size = btrfs_item_size_nr(leaf, path->slots[0]);
	ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
3079

3080 3081 3082
	if (item_size != sizeof(*ei) +
	    btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
		goto out;
3083

3084 3085 3086 3087 3088
	if (btrfs_extent_generation(leaf, ei) <=
	    btrfs_root_last_snapshot(&root->root_item))
		goto out;

	iref = (struct btrfs_extent_inline_ref *)(ei + 1);
3089 3090 3091

	type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
	if (type != BTRFS_EXTENT_DATA_REF_KEY)
3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107
		goto out;

	ref = (struct btrfs_extent_data_ref *)(&iref->offset);
	if (btrfs_extent_refs(leaf, ei) !=
	    btrfs_extent_data_ref_count(leaf, ref) ||
	    btrfs_extent_data_ref_root(leaf, ref) !=
	    root->root_key.objectid ||
	    btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
	    btrfs_extent_data_ref_offset(leaf, ref) != offset)
		goto out;

	ret = 0;
out:
	return ret;
}

3108 3109
int btrfs_cross_ref_exist(struct btrfs_root *root, u64 objectid, u64 offset,
			  u64 bytenr)
3110 3111 3112 3113 3114 3115
{
	struct btrfs_path *path;
	int ret;

	path = btrfs_alloc_path();
	if (!path)
3116
		return -ENOMEM;
3117 3118

	do {
3119
		ret = check_committed_ref(root, path, objectid,
3120 3121
					  offset, bytenr);
		if (ret && ret != -ENOENT)
3122
			goto out;
Y
Yan Zheng 已提交
3123

3124 3125
		ret = check_delayed_ref(root, path, objectid, offset, bytenr);
	} while (ret == -EAGAIN);
3126

3127
out:
Y
Yan Zheng 已提交
3128
	btrfs_free_path(path);
3129 3130
	if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
		WARN_ON(ret > 0);
3131
	return ret;
3132
}
C
Chris Mason 已提交
3133

3134
static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
3135
			   struct btrfs_root *root,
3136
			   struct extent_buffer *buf,
3137
			   int full_backref, int inc)
Z
Zheng Yan 已提交
3138
{
3139
	struct btrfs_fs_info *fs_info = root->fs_info;
Z
Zheng Yan 已提交
3140
	u64 bytenr;
3141 3142
	u64 num_bytes;
	u64 parent;
Z
Zheng Yan 已提交
3143 3144 3145 3146
	u64 ref_root;
	u32 nritems;
	struct btrfs_key key;
	struct btrfs_file_extent_item *fi;
3147 3148
	struct btrfs_ref generic_ref = { 0 };
	bool for_reloc = btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC);
Z
Zheng Yan 已提交
3149
	int i;
3150
	int action;
Z
Zheng Yan 已提交
3151 3152
	int level;
	int ret = 0;
3153

3154
	if (btrfs_is_testing(fs_info))
3155
		return 0;
3156

Z
Zheng Yan 已提交
3157 3158 3159 3160
	ref_root = btrfs_header_owner(buf);
	nritems = btrfs_header_nritems(buf);
	level = btrfs_header_level(buf);

3161
	if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
3162
		return 0;
Z
Zheng Yan 已提交
3163

3164 3165 3166 3167
	if (full_backref)
		parent = buf->start;
	else
		parent = 0;
3168 3169 3170 3171
	if (inc)
		action = BTRFS_ADD_DELAYED_REF;
	else
		action = BTRFS_DROP_DELAYED_REF;
3172 3173

	for (i = 0; i < nritems; i++) {
Z
Zheng Yan 已提交
3174
		if (level == 0) {
3175
			btrfs_item_key_to_cpu(buf, &key, i);
3176
			if (key.type != BTRFS_EXTENT_DATA_KEY)
Z
Zheng Yan 已提交
3177
				continue;
3178
			fi = btrfs_item_ptr(buf, i,
Z
Zheng Yan 已提交
3179 3180 3181 3182 3183 3184 3185
					    struct btrfs_file_extent_item);
			if (btrfs_file_extent_type(buf, fi) ==
			    BTRFS_FILE_EXTENT_INLINE)
				continue;
			bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
			if (bytenr == 0)
				continue;
3186 3187 3188

			num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
			key.offset -= btrfs_file_extent_offset(buf, fi);
3189 3190 3191 3192 3193 3194
			btrfs_init_generic_ref(&generic_ref, action, bytenr,
					       num_bytes, parent);
			generic_ref.real_root = root->root_key.objectid;
			btrfs_init_data_ref(&generic_ref, ref_root, key.objectid,
					    key.offset);
			generic_ref.skip_qgroup = for_reloc;
3195
			if (inc)
3196
				ret = btrfs_inc_extent_ref(trans, &generic_ref);
3197
			else
3198
				ret = btrfs_free_extent(trans, &generic_ref);
Z
Zheng Yan 已提交
3199 3200 3201
			if (ret)
				goto fail;
		} else {
3202
			bytenr = btrfs_node_blockptr(buf, i);
3203
			num_bytes = fs_info->nodesize;
3204 3205 3206 3207 3208
			btrfs_init_generic_ref(&generic_ref, action, bytenr,
					       num_bytes, parent);
			generic_ref.real_root = root->root_key.objectid;
			btrfs_init_tree_ref(&generic_ref, level - 1, ref_root);
			generic_ref.skip_qgroup = for_reloc;
3209
			if (inc)
3210
				ret = btrfs_inc_extent_ref(trans, &generic_ref);
3211
			else
3212
				ret = btrfs_free_extent(trans, &generic_ref);
Z
Zheng Yan 已提交
3213 3214 3215 3216 3217 3218
			if (ret)
				goto fail;
		}
	}
	return 0;
fail:
3219 3220 3221 3222
	return ret;
}

int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3223
		  struct extent_buffer *buf, int full_backref)
3224
{
3225
	return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
3226 3227 3228
}

int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
3229
		  struct extent_buffer *buf, int full_backref)
3230
{
3231
	return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Z
Zheng Yan 已提交
3232 3233
}

C
Chris Mason 已提交
3234 3235 3236 3237
static int write_one_cache_group(struct btrfs_trans_handle *trans,
				 struct btrfs_path *path,
				 struct btrfs_block_group_cache *cache)
{
3238
	struct btrfs_fs_info *fs_info = trans->fs_info;
C
Chris Mason 已提交
3239
	int ret;
3240
	struct btrfs_root *extent_root = fs_info->extent_root;
3241 3242
	unsigned long bi;
	struct extent_buffer *leaf;
C
Chris Mason 已提交
3243 3244

	ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
3245 3246 3247
	if (ret) {
		if (ret > 0)
			ret = -ENOENT;
3248
		goto fail;
3249
	}
3250 3251 3252 3253 3254

	leaf = path->nodes[0];
	bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
	write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
	btrfs_mark_buffer_dirty(leaf);
3255
fail:
3256
	btrfs_release_path(path);
3257
	return ret;
C
Chris Mason 已提交
3258 3259 3260

}

3261 3262
static struct btrfs_block_group_cache *next_block_group(
		struct btrfs_block_group_cache *cache)
3263
{
3264
	struct btrfs_fs_info *fs_info = cache->fs_info;
3265
	struct rb_node *node;
3266

3267
	spin_lock(&fs_info->block_group_cache_lock);
3268 3269 3270 3271 3272

	/* If our block group was removed, we need a full search. */
	if (RB_EMPTY_NODE(&cache->cache_node)) {
		const u64 next_bytenr = cache->key.objectid + cache->key.offset;

3273
		spin_unlock(&fs_info->block_group_cache_lock);
3274
		btrfs_put_block_group(cache);
3275
		cache = btrfs_lookup_first_block_group(fs_info, next_bytenr); return cache;
3276
	}
3277 3278 3279 3280 3281
	node = rb_next(&cache->cache_node);
	btrfs_put_block_group(cache);
	if (node) {
		cache = rb_entry(node, struct btrfs_block_group_cache,
				 cache_node);
3282
		btrfs_get_block_group(cache);
3283 3284
	} else
		cache = NULL;
3285
	spin_unlock(&fs_info->block_group_cache_lock);
3286 3287 3288
	return cache;
}

3289 3290 3291 3292
static int cache_save_setup(struct btrfs_block_group_cache *block_group,
			    struct btrfs_trans_handle *trans,
			    struct btrfs_path *path)
{
3293 3294
	struct btrfs_fs_info *fs_info = block_group->fs_info;
	struct btrfs_root *root = fs_info->tree_root;
3295
	struct inode *inode = NULL;
3296
	struct extent_changeset *data_reserved = NULL;
3297
	u64 alloc_hint = 0;
3298
	int dcs = BTRFS_DC_ERROR;
3299
	u64 num_pages = 0;
3300 3301 3302 3303 3304 3305 3306
	int retries = 0;
	int ret = 0;

	/*
	 * If this block group is smaller than 100 megs don't bother caching the
	 * block group.
	 */
3307
	if (block_group->key.offset < (100 * SZ_1M)) {
3308 3309 3310 3311 3312 3313
		spin_lock(&block_group->lock);
		block_group->disk_cache_state = BTRFS_DC_WRITTEN;
		spin_unlock(&block_group->lock);
		return 0;
	}

3314 3315
	if (trans->aborted)
		return 0;
3316
again:
3317
	inode = lookup_free_space_inode(block_group, path);
3318 3319
	if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
		ret = PTR_ERR(inode);
3320
		btrfs_release_path(path);
3321 3322 3323 3324 3325 3326 3327 3328 3329 3330
		goto out;
	}

	if (IS_ERR(inode)) {
		BUG_ON(retries);
		retries++;

		if (block_group->ro)
			goto out_free;

3331
		ret = create_free_space_inode(trans, block_group, path);
3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343
		if (ret)
			goto out_free;
		goto again;
	}

	/*
	 * We want to set the generation to 0, that way if anything goes wrong
	 * from here on out we know not to trust this cache when we load up next
	 * time.
	 */
	BTRFS_I(inode)->generation = 0;
	ret = btrfs_update_inode(trans, root, inode);
3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354
	if (ret) {
		/*
		 * So theoretically we could recover from this, simply set the
		 * super cache generation to 0 so we know to invalidate the
		 * cache, but then we'd have to keep track of the block groups
		 * that fail this way so we know we _have_ to reset this cache
		 * before the next commit or risk reading stale cache.  So to
		 * limit our exposure to horrible edge cases lets just abort the
		 * transaction, this only happens in really bad situations
		 * anyway.
		 */
3355
		btrfs_abort_transaction(trans, ret);
3356 3357
		goto out_put;
	}
3358 3359
	WARN_ON(ret);

3360 3361 3362 3363 3364 3365 3366
	/* We've already setup this transaction, go ahead and exit */
	if (block_group->cache_generation == trans->transid &&
	    i_size_read(inode)) {
		dcs = BTRFS_DC_SETUP;
		goto out_put;
	}

3367
	if (i_size_read(inode) > 0) {
3368
		ret = btrfs_check_trunc_cache_free_space(fs_info,
3369
					&fs_info->global_block_rsv);
3370 3371 3372
		if (ret)
			goto out_put;

3373
		ret = btrfs_truncate_free_space_cache(trans, NULL, inode);
3374 3375 3376 3377 3378
		if (ret)
			goto out_put;
	}

	spin_lock(&block_group->lock);
3379
	if (block_group->cached != BTRFS_CACHE_FINISHED ||
3380
	    !btrfs_test_opt(fs_info, SPACE_CACHE)) {
3381 3382 3383
		/*
		 * don't bother trying to write stuff out _if_
		 * a) we're not cached,
3384 3385
		 * b) we're with nospace_cache mount option,
		 * c) we're with v2 space_cache (FREE_SPACE_TREE).
3386
		 */
3387
		dcs = BTRFS_DC_WRITTEN;
3388 3389 3390 3391 3392
		spin_unlock(&block_group->lock);
		goto out_put;
	}
	spin_unlock(&block_group->lock);

3393 3394 3395 3396 3397 3398 3399 3400 3401
	/*
	 * We hit an ENOSPC when setting up the cache in this transaction, just
	 * skip doing the setup, we've already cleared the cache so we're safe.
	 */
	if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
		ret = -ENOSPC;
		goto out_put;
	}

3402 3403 3404 3405 3406 3407
	/*
	 * Try to preallocate enough space based on how big the block group is.
	 * Keep in mind this has to include any pinned space which could end up
	 * taking up quite a bit since it's not folded into the other space
	 * cache.
	 */
3408
	num_pages = div_u64(block_group->key.offset, SZ_256M);
3409 3410 3411 3412
	if (!num_pages)
		num_pages = 1;

	num_pages *= 16;
3413
	num_pages *= PAGE_SIZE;
3414

3415
	ret = btrfs_check_data_free_space(inode, &data_reserved, 0, num_pages);
3416 3417 3418 3419 3420 3421
	if (ret)
		goto out_put;

	ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
					      num_pages, num_pages,
					      &alloc_hint);
3422 3423 3424 3425 3426 3427 3428 3429
	/*
	 * Our cache requires contiguous chunks so that we don't modify a bunch
	 * of metadata or split extents when writing the cache out, which means
	 * we can enospc if we are heavily fragmented in addition to just normal
	 * out of space conditions.  So if we hit this just skip setting up any
	 * other block groups for this transaction, maybe we'll unpin enough
	 * space the next time around.
	 */
3430 3431
	if (!ret)
		dcs = BTRFS_DC_SETUP;
3432 3433
	else if (ret == -ENOSPC)
		set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
3434

3435 3436 3437
out_put:
	iput(inode);
out_free:
3438
	btrfs_release_path(path);
3439 3440
out:
	spin_lock(&block_group->lock);
3441
	if (!ret && dcs == BTRFS_DC_SETUP)
3442
		block_group->cache_generation = trans->transid;
3443
	block_group->disk_cache_state = dcs;
3444 3445
	spin_unlock(&block_group->lock);

3446
	extent_changeset_free(data_reserved);
3447 3448 3449
	return ret;
}

3450
int btrfs_setup_space_cache(struct btrfs_trans_handle *trans)
3451
{
3452
	struct btrfs_fs_info *fs_info = trans->fs_info;
3453 3454 3455 3456 3457
	struct btrfs_block_group_cache *cache, *tmp;
	struct btrfs_transaction *cur_trans = trans->transaction;
	struct btrfs_path *path;

	if (list_empty(&cur_trans->dirty_bgs) ||
3458
	    !btrfs_test_opt(fs_info, SPACE_CACHE))
3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475
		return 0;

	path = btrfs_alloc_path();
	if (!path)
		return -ENOMEM;

	/* Could add new block groups, use _safe just in case */
	list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
				 dirty_list) {
		if (cache->disk_cache_state == BTRFS_DC_CLEAR)
			cache_save_setup(cache, trans, path);
	}

	btrfs_free_path(path);
	return 0;
}

3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487
/*
 * transaction commit does final block group cache writeback during a
 * critical section where nothing is allowed to change the FS.  This is
 * required in order for the cache to actually match the block group,
 * but can introduce a lot of latency into the commit.
 *
 * So, btrfs_start_dirty_block_groups is here to kick off block group
 * cache IO.  There's a chance we'll have to redo some of it if the
 * block group changes again during the commit, but it greatly reduces
 * the commit latency by getting rid of the easy block groups while
 * we're still allowing others to join the commit.
 */
3488
int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans)
C
Chris Mason 已提交
3489
{
3490
	struct btrfs_fs_info *fs_info = trans->fs_info;
3491
	struct btrfs_block_group_cache *cache;
3492 3493
	struct btrfs_transaction *cur_trans = trans->transaction;
	int ret = 0;
3494
	int should_put;
3495 3496 3497
	struct btrfs_path *path = NULL;
	LIST_HEAD(dirty);
	struct list_head *io = &cur_trans->io_bgs;
3498
	int num_started = 0;
3499 3500 3501
	int loops = 0;

	spin_lock(&cur_trans->dirty_bgs_lock);
3502 3503 3504
	if (list_empty(&cur_trans->dirty_bgs)) {
		spin_unlock(&cur_trans->dirty_bgs_lock);
		return 0;
3505
	}
3506
	list_splice_init(&cur_trans->dirty_bgs, &dirty);
3507
	spin_unlock(&cur_trans->dirty_bgs_lock);
3508

3509 3510 3511 3512 3513
again:
	/*
	 * make sure all the block groups on our dirty list actually
	 * exist
	 */
3514
	btrfs_create_pending_block_groups(trans);
3515 3516 3517 3518 3519 3520 3521

	if (!path) {
		path = btrfs_alloc_path();
		if (!path)
			return -ENOMEM;
	}

3522 3523 3524 3525 3526 3527
	/*
	 * cache_write_mutex is here only to save us from balance or automatic
	 * removal of empty block groups deleting this block group while we are
	 * writing out the cache
	 */
	mutex_lock(&trans->transaction->cache_write_mutex);
3528
	while (!list_empty(&dirty)) {
J
Josef Bacik 已提交
3529 3530
		bool drop_reserve = true;

3531 3532 3533 3534 3535 3536 3537 3538 3539 3540
		cache = list_first_entry(&dirty,
					 struct btrfs_block_group_cache,
					 dirty_list);
		/*
		 * this can happen if something re-dirties a block
		 * group that is already under IO.  Just wait for it to
		 * finish and then do it all again
		 */
		if (!list_empty(&cache->io_list)) {
			list_del_init(&cache->io_list);
3541
			btrfs_wait_cache_io(trans, cache, path);
3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563
			btrfs_put_block_group(cache);
		}


		/*
		 * btrfs_wait_cache_io uses the cache->dirty_list to decide
		 * if it should update the cache_state.  Don't delete
		 * until after we wait.
		 *
		 * Since we're not running in the commit critical section
		 * we need the dirty_bgs_lock to protect from update_block_group
		 */
		spin_lock(&cur_trans->dirty_bgs_lock);
		list_del_init(&cache->dirty_list);
		spin_unlock(&cur_trans->dirty_bgs_lock);

		should_put = 1;

		cache_save_setup(cache, trans, path);

		if (cache->disk_cache_state == BTRFS_DC_SETUP) {
			cache->io_ctl.inode = NULL;
3564
			ret = btrfs_write_out_cache(trans, cache, path);
3565 3566 3567 3568 3569
			if (ret == 0 && cache->io_ctl.inode) {
				num_started++;
				should_put = 0;

				/*
3570 3571 3572
				 * The cache_write_mutex is protecting the
				 * io_list, also refer to the definition of
				 * btrfs_transaction::io_bgs for more details
3573 3574 3575 3576 3577 3578 3579 3580 3581 3582
				 */
				list_add_tail(&cache->io_list, io);
			} else {
				/*
				 * if we failed to write the cache, the
				 * generation will be bad and life goes on
				 */
				ret = 0;
			}
		}
3583
		if (!ret) {
3584
			ret = write_one_cache_group(trans, path, cache);
3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600
			/*
			 * Our block group might still be attached to the list
			 * of new block groups in the transaction handle of some
			 * other task (struct btrfs_trans_handle->new_bgs). This
			 * means its block group item isn't yet in the extent
			 * tree. If this happens ignore the error, as we will
			 * try again later in the critical section of the
			 * transaction commit.
			 */
			if (ret == -ENOENT) {
				ret = 0;
				spin_lock(&cur_trans->dirty_bgs_lock);
				if (list_empty(&cache->dirty_list)) {
					list_add_tail(&cache->dirty_list,
						      &cur_trans->dirty_bgs);
					btrfs_get_block_group(cache);
J
Josef Bacik 已提交
3601
					drop_reserve = false;
3602 3603 3604
				}
				spin_unlock(&cur_trans->dirty_bgs_lock);
			} else if (ret) {
3605
				btrfs_abort_transaction(trans, ret);
3606 3607
			}
		}
3608

3609
		/* if it's not on the io list, we need to put the block group */
3610 3611
		if (should_put)
			btrfs_put_block_group(cache);
J
Josef Bacik 已提交
3612 3613
		if (drop_reserve)
			btrfs_delayed_refs_rsv_release(fs_info, 1);
3614 3615 3616

		if (ret)
			break;
3617 3618 3619 3620 3621 3622 3623 3624

		/*
		 * Avoid blocking other tasks for too long. It might even save
		 * us from writing caches for block groups that are going to be
		 * removed.
		 */
		mutex_unlock(&trans->transaction->cache_write_mutex);
		mutex_lock(&trans->transaction->cache_write_mutex);
3625
	}
3626
	mutex_unlock(&trans->transaction->cache_write_mutex);
3627 3628 3629 3630 3631

	/*
	 * go through delayed refs for all the stuff we've just kicked off
	 * and then loop back (just once)
	 */
3632
	ret = btrfs_run_delayed_refs(trans, 0);
3633 3634 3635 3636
	if (!ret && loops == 0) {
		loops++;
		spin_lock(&cur_trans->dirty_bgs_lock);
		list_splice_init(&cur_trans->dirty_bgs, &dirty);
3637 3638 3639 3640 3641 3642 3643 3644
		/*
		 * dirty_bgs_lock protects us from concurrent block group
		 * deletes too (not just cache_write_mutex).
		 */
		if (!list_empty(&dirty)) {
			spin_unlock(&cur_trans->dirty_bgs_lock);
			goto again;
		}
3645
		spin_unlock(&cur_trans->dirty_bgs_lock);
3646
	} else if (ret < 0) {
3647
		btrfs_cleanup_dirty_bgs(cur_trans, fs_info);
3648 3649 3650 3651 3652 3653
	}

	btrfs_free_path(path);
	return ret;
}

3654
int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans)
3655
{
3656
	struct btrfs_fs_info *fs_info = trans->fs_info;
3657 3658 3659 3660 3661 3662 3663
	struct btrfs_block_group_cache *cache;
	struct btrfs_transaction *cur_trans = trans->transaction;
	int ret = 0;
	int should_put;
	struct btrfs_path *path;
	struct list_head *io = &cur_trans->io_bgs;
	int num_started = 0;
C
Chris Mason 已提交
3664 3665 3666 3667 3668

	path = btrfs_alloc_path();
	if (!path)
		return -ENOMEM;

3669
	/*
3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680
	 * Even though we are in the critical section of the transaction commit,
	 * we can still have concurrent tasks adding elements to this
	 * transaction's list of dirty block groups. These tasks correspond to
	 * endio free space workers started when writeback finishes for a
	 * space cache, which run inode.c:btrfs_finish_ordered_io(), and can
	 * allocate new block groups as a result of COWing nodes of the root
	 * tree when updating the free space inode. The writeback for the space
	 * caches is triggered by an earlier call to
	 * btrfs_start_dirty_block_groups() and iterations of the following
	 * loop.
	 * Also we want to do the cache_save_setup first and then run the
3681 3682 3683
	 * delayed refs to make sure we have the best chance at doing this all
	 * in one shot.
	 */
3684
	spin_lock(&cur_trans->dirty_bgs_lock);
3685 3686 3687 3688
	while (!list_empty(&cur_trans->dirty_bgs)) {
		cache = list_first_entry(&cur_trans->dirty_bgs,
					 struct btrfs_block_group_cache,
					 dirty_list);
3689 3690 3691 3692 3693 3694 3695

		/*
		 * this can happen if cache_save_setup re-dirties a block
		 * group that is already under IO.  Just wait for it to
		 * finish and then do it all again
		 */
		if (!list_empty(&cache->io_list)) {
3696
			spin_unlock(&cur_trans->dirty_bgs_lock);
3697
			list_del_init(&cache->io_list);
3698
			btrfs_wait_cache_io(trans, cache, path);
3699
			btrfs_put_block_group(cache);
3700
			spin_lock(&cur_trans->dirty_bgs_lock);
3701 3702
		}

3703 3704 3705 3706
		/*
		 * don't remove from the dirty list until after we've waited
		 * on any pending IO
		 */
3707
		list_del_init(&cache->dirty_list);
3708
		spin_unlock(&cur_trans->dirty_bgs_lock);
3709 3710
		should_put = 1;

3711
		cache_save_setup(cache, trans, path);
3712

3713
		if (!ret)
3714
			ret = btrfs_run_delayed_refs(trans,
3715
						     (unsigned long) -1);
3716 3717 3718

		if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
			cache->io_ctl.inode = NULL;
3719
			ret = btrfs_write_out_cache(trans, cache, path);
3720 3721 3722
			if (ret == 0 && cache->io_ctl.inode) {
				num_started++;
				should_put = 0;
3723
				list_add_tail(&cache->io_list, io);
3724 3725 3726 3727 3728 3729 3730 3731
			} else {
				/*
				 * if we failed to write the cache, the
				 * generation will be bad and life goes on
				 */
				ret = 0;
			}
		}
3732
		if (!ret) {
3733
			ret = write_one_cache_group(trans, path, cache);
3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749
			/*
			 * One of the free space endio workers might have
			 * created a new block group while updating a free space
			 * cache's inode (at inode.c:btrfs_finish_ordered_io())
			 * and hasn't released its transaction handle yet, in
			 * which case the new block group is still attached to
			 * its transaction handle and its creation has not
			 * finished yet (no block group item in the extent tree
			 * yet, etc). If this is the case, wait for all free
			 * space endio workers to finish and retry. This is a
			 * a very rare case so no need for a more efficient and
			 * complex approach.
			 */
			if (ret == -ENOENT) {
				wait_event(cur_trans->writer_wait,
				   atomic_read(&cur_trans->num_writers) == 1);
3750
				ret = write_one_cache_group(trans, path, cache);
3751
			}
3752
			if (ret)
3753
				btrfs_abort_transaction(trans, ret);
3754
		}
3755 3756 3757 3758

		/* if its not on the io list, we need to put the block group */
		if (should_put)
			btrfs_put_block_group(cache);
J
Josef Bacik 已提交
3759
		btrfs_delayed_refs_rsv_release(fs_info, 1);
3760
		spin_lock(&cur_trans->dirty_bgs_lock);
3761
	}
3762
	spin_unlock(&cur_trans->dirty_bgs_lock);
3763

3764 3765 3766 3767
	/*
	 * Refer to the definition of io_bgs member for details why it's safe
	 * to use it without any locking
	 */
3768 3769
	while (!list_empty(io)) {
		cache = list_first_entry(io, struct btrfs_block_group_cache,
3770 3771
					 io_list);
		list_del_init(&cache->io_list);
3772
		btrfs_wait_cache_io(trans, cache, path);
J
Josef Bacik 已提交
3773 3774 3775
		btrfs_put_block_group(cache);
	}

C
Chris Mason 已提交
3776
	btrfs_free_path(path);
3777
	return ret;
C
Chris Mason 已提交
3778 3779
}

3780
int btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr)
3781 3782 3783 3784
{
	struct btrfs_block_group_cache *block_group;
	int readonly = 0;

3785
	block_group = btrfs_lookup_block_group(fs_info, bytenr);
3786 3787 3788
	if (!block_group || block_group->ro)
		readonly = 1;
	if (block_group)
3789
		btrfs_put_block_group(block_group);
3790 3791 3792
	return readonly;
}

3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823
bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
{
	struct btrfs_block_group_cache *bg;
	bool ret = true;

	bg = btrfs_lookup_block_group(fs_info, bytenr);
	if (!bg)
		return false;

	spin_lock(&bg->lock);
	if (bg->ro)
		ret = false;
	else
		atomic_inc(&bg->nocow_writers);
	spin_unlock(&bg->lock);

	/* no put on block group, done by btrfs_dec_nocow_writers */
	if (!ret)
		btrfs_put_block_group(bg);

	return ret;

}

void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
{
	struct btrfs_block_group_cache *bg;

	bg = btrfs_lookup_block_group(fs_info, bytenr);
	ASSERT(bg);
	if (atomic_dec_and_test(&bg->nocow_writers))
3824
		wake_up_var(&bg->nocow_writers);
3825 3826 3827 3828 3829 3830 3831 3832 3833 3834
	/*
	 * Once for our lookup and once for the lookup done by a previous call
	 * to btrfs_inc_nocow_writers()
	 */
	btrfs_put_block_group(bg);
	btrfs_put_block_group(bg);
}

void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg)
{
3835
	wait_var_event(&bg->nocow_writers, !atomic_read(&bg->nocow_writers));
3836 3837
}

3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854
static const char *alloc_name(u64 flags)
{
	switch (flags) {
	case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
		return "mixed";
	case BTRFS_BLOCK_GROUP_METADATA:
		return "metadata";
	case BTRFS_BLOCK_GROUP_DATA:
		return "data";
	case BTRFS_BLOCK_GROUP_SYSTEM:
		return "system";
	default:
		WARN_ON(1);
		return "invalid-combination";
	};
}

3855
static int create_space_info(struct btrfs_fs_info *info, u64 flags)
3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899
{

	struct btrfs_space_info *space_info;
	int i;
	int ret;

	space_info = kzalloc(sizeof(*space_info), GFP_NOFS);
	if (!space_info)
		return -ENOMEM;

	ret = percpu_counter_init(&space_info->total_bytes_pinned, 0,
				 GFP_KERNEL);
	if (ret) {
		kfree(space_info);
		return ret;
	}

	for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
		INIT_LIST_HEAD(&space_info->block_groups[i]);
	init_rwsem(&space_info->groups_sem);
	spin_lock_init(&space_info->lock);
	space_info->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
	space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
	init_waitqueue_head(&space_info->wait);
	INIT_LIST_HEAD(&space_info->ro_bgs);
	INIT_LIST_HEAD(&space_info->tickets);
	INIT_LIST_HEAD(&space_info->priority_tickets);

	ret = kobject_init_and_add(&space_info->kobj, &space_info_ktype,
				    info->space_info_kobj, "%s",
				    alloc_name(space_info->flags));
	if (ret) {
		percpu_counter_destroy(&space_info->total_bytes_pinned);
		kfree(space_info);
		return ret;
	}

	list_add_rcu(&space_info->list, &info->space_info);
	if (flags & BTRFS_BLOCK_GROUP_DATA)
		info->data_sinfo = space_info;

	return ret;
}

3900
static void update_space_info(struct btrfs_fs_info *info, u64 flags,
3901
			     u64 total_bytes, u64 bytes_used,
3902
			     u64 bytes_readonly,
3903 3904 3905
			     struct btrfs_space_info **space_info)
{
	struct btrfs_space_info *found;
3906 3907
	int factor;

3908
	factor = btrfs_bg_type_to_factor(flags);
3909 3910

	found = __find_space_info(info, flags);
3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923
	ASSERT(found);
	spin_lock(&found->lock);
	found->total_bytes += total_bytes;
	found->disk_total += total_bytes * factor;
	found->bytes_used += bytes_used;
	found->disk_used += bytes_used * factor;
	found->bytes_readonly += bytes_readonly;
	if (total_bytes > 0)
		found->full = 0;
	space_info_add_new_bytes(info, found, total_bytes -
				 bytes_used - bytes_readonly);
	spin_unlock(&found->lock);
	*space_info = found;
3924 3925
}

3926 3927
static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
{
3928 3929
	u64 extra_flags = chunk_to_extended(flags) &
				BTRFS_EXTENDED_PROFILE_MASK;
3930

3931
	write_seqlock(&fs_info->profiles_lock);
3932 3933 3934 3935 3936 3937
	if (flags & BTRFS_BLOCK_GROUP_DATA)
		fs_info->avail_data_alloc_bits |= extra_flags;
	if (flags & BTRFS_BLOCK_GROUP_METADATA)
		fs_info->avail_metadata_alloc_bits |= extra_flags;
	if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
		fs_info->avail_system_alloc_bits |= extra_flags;
3938
	write_sequnlock(&fs_info->profiles_lock);
3939
}
3940

3941 3942 3943
/*
 * returns target flags in extended format or 0 if restripe for this
 * chunk_type is not in progress
3944
 *
3945
 * should be called with balance_lock held
3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968
 */
static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
{
	struct btrfs_balance_control *bctl = fs_info->balance_ctl;
	u64 target = 0;

	if (!bctl)
		return 0;

	if (flags & BTRFS_BLOCK_GROUP_DATA &&
	    bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
		target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
	} else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
		   bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
		target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
	} else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
		   bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
		target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
	}

	return target;
}

3969 3970 3971
/*
 * @flags: available profiles in extended format (see ctree.h)
 *
3972 3973 3974
 * Returns reduced profile in chunk format.  If profile changing is in
 * progress (either running or paused) picks the target profile (if it's
 * already available), otherwise falls back to plain reducing.
3975
 */
3976
static u64 btrfs_reduce_alloc_profile(struct btrfs_fs_info *fs_info, u64 flags)
3977
{
3978
	u64 num_devices = fs_info->fs_devices->rw_devices;
3979
	u64 target;
3980 3981
	u64 raid_type;
	u64 allowed = 0;
3982

3983 3984 3985 3986
	/*
	 * see if restripe for this chunk_type is in progress, if so
	 * try to reduce to the target profile
	 */
3987 3988
	spin_lock(&fs_info->balance_lock);
	target = get_restripe_target(fs_info, flags);
3989 3990 3991
	if (target) {
		/* pick target profile only if it's already available */
		if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
3992
			spin_unlock(&fs_info->balance_lock);
3993
			return extended_to_chunk(target);
3994 3995
		}
	}
3996
	spin_unlock(&fs_info->balance_lock);
3997

D
David Woodhouse 已提交
3998
	/* First, mask out the RAID levels which aren't possible */
3999 4000
	for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
		if (num_devices >= btrfs_raid_array[raid_type].devs_min)
4001
			allowed |= btrfs_raid_array[raid_type].bg_flag;
4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018
	}
	allowed &= flags;

	if (allowed & BTRFS_BLOCK_GROUP_RAID6)
		allowed = BTRFS_BLOCK_GROUP_RAID6;
	else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
		allowed = BTRFS_BLOCK_GROUP_RAID5;
	else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
		allowed = BTRFS_BLOCK_GROUP_RAID10;
	else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
		allowed = BTRFS_BLOCK_GROUP_RAID1;
	else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
		allowed = BTRFS_BLOCK_GROUP_RAID0;

	flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;

	return extended_to_chunk(flags | allowed);
4019 4020
}

4021
static u64 get_alloc_profile(struct btrfs_fs_info *fs_info, u64 orig_flags)
J
Josef Bacik 已提交
4022
{
4023
	unsigned seq;
4024
	u64 flags;
4025 4026

	do {
4027
		flags = orig_flags;
4028
		seq = read_seqbegin(&fs_info->profiles_lock);
4029 4030

		if (flags & BTRFS_BLOCK_GROUP_DATA)
4031
			flags |= fs_info->avail_data_alloc_bits;
4032
		else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
4033
			flags |= fs_info->avail_system_alloc_bits;
4034
		else if (flags & BTRFS_BLOCK_GROUP_METADATA)
4035 4036
			flags |= fs_info->avail_metadata_alloc_bits;
	} while (read_seqretry(&fs_info->profiles_lock, seq));
4037

4038
	return btrfs_reduce_alloc_profile(fs_info, flags);
J
Josef Bacik 已提交
4039 4040
}

4041
static u64 get_alloc_profile_by_root(struct btrfs_root *root, int data)
J
Josef Bacik 已提交
4042
{
4043
	struct btrfs_fs_info *fs_info = root->fs_info;
4044
	u64 flags;
D
David Woodhouse 已提交
4045
	u64 ret;
J
Josef Bacik 已提交
4046

4047 4048
	if (data)
		flags = BTRFS_BLOCK_GROUP_DATA;
4049
	else if (root == fs_info->chunk_root)
4050
		flags = BTRFS_BLOCK_GROUP_SYSTEM;
J
Josef Bacik 已提交
4051
	else
4052
		flags = BTRFS_BLOCK_GROUP_METADATA;
J
Josef Bacik 已提交
4053

4054
	ret = get_alloc_profile(fs_info, flags);
D
David Woodhouse 已提交
4055
	return ret;
J
Josef Bacik 已提交
4056
}
J
Josef Bacik 已提交
4057

4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072
u64 btrfs_data_alloc_profile(struct btrfs_fs_info *fs_info)
{
	return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_DATA);
}

u64 btrfs_metadata_alloc_profile(struct btrfs_fs_info *fs_info)
{
	return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_METADATA);
}

u64 btrfs_system_alloc_profile(struct btrfs_fs_info *fs_info)
{
	return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
}

4073 4074 4075 4076 4077 4078 4079 4080 4081
static u64 btrfs_space_info_used(struct btrfs_space_info *s_info,
				 bool may_use_included)
{
	ASSERT(s_info);
	return s_info->bytes_used + s_info->bytes_reserved +
		s_info->bytes_pinned + s_info->bytes_readonly +
		(may_use_included ? s_info->bytes_may_use : 0);
}

4082
int btrfs_alloc_data_chunk_ondemand(struct btrfs_inode *inode, u64 bytes)
J
Josef Bacik 已提交
4083
{
4084
	struct btrfs_root *root = inode->root;
4085
	struct btrfs_fs_info *fs_info = root->fs_info;
4086
	struct btrfs_space_info *data_sinfo = fs_info->data_sinfo;
4087
	u64 used;
4088
	int ret = 0;
4089 4090
	int need_commit = 2;
	int have_pinned_space;
J
Josef Bacik 已提交
4091 4092

	/* make sure bytes are sectorsize aligned */
4093
	bytes = ALIGN(bytes, fs_info->sectorsize);
J
Josef Bacik 已提交
4094

4095
	if (btrfs_is_free_space_inode(inode)) {
4096
		need_commit = 0;
4097
		ASSERT(current->journal_info);
4098 4099
	}

J
Josef Bacik 已提交
4100 4101 4102
again:
	/* make sure we have enough space to handle the data first */
	spin_lock(&data_sinfo->lock);
4103
	used = btrfs_space_info_used(data_sinfo, true);
4104 4105

	if (used + bytes > data_sinfo->total_bytes) {
4106
		struct btrfs_trans_handle *trans;
J
Josef Bacik 已提交
4107

J
Josef Bacik 已提交
4108 4109 4110 4111
		/*
		 * if we don't have enough free bytes in this space then we need
		 * to alloc a new chunk.
		 */
4112
		if (!data_sinfo->full) {
J
Josef Bacik 已提交
4113
			u64 alloc_target;
J
Josef Bacik 已提交
4114

4115
			data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
J
Josef Bacik 已提交
4116
			spin_unlock(&data_sinfo->lock);
4117

4118
			alloc_target = btrfs_data_alloc_profile(fs_info);
4119 4120 4121 4122 4123 4124 4125 4126 4127 4128
			/*
			 * It is ugly that we don't call nolock join
			 * transaction for the free space inode case here.
			 * But it is safe because we only do the data space
			 * reservation for the free space cache in the
			 * transaction context, the common join transaction
			 * just increase the counter of the current transaction
			 * handler, doesn't try to acquire the trans_lock of
			 * the fs.
			 */
4129
			trans = btrfs_join_transaction(root);
4130 4131
			if (IS_ERR(trans))
				return PTR_ERR(trans);
J
Josef Bacik 已提交
4132

4133
			ret = do_chunk_alloc(trans, alloc_target,
4134
					     CHUNK_ALLOC_NO_FORCE);
4135
			btrfs_end_transaction(trans);
4136 4137 4138
			if (ret < 0) {
				if (ret != -ENOSPC)
					return ret;
4139 4140
				else {
					have_pinned_space = 1;
4141
					goto commit_trans;
4142
				}
4143
			}
J
Josef Bacik 已提交
4144

J
Josef Bacik 已提交
4145 4146
			goto again;
		}
4147 4148

		/*
4149
		 * If we don't have enough pinned space to deal with this
4150 4151
		 * allocation, and no removed chunk in current transaction,
		 * don't bother committing the transaction.
4152
		 */
4153
		have_pinned_space = __percpu_counter_compare(
4154
			&data_sinfo->total_bytes_pinned,
4155 4156
			used + bytes - data_sinfo->total_bytes,
			BTRFS_TOTAL_BYTES_PINNED_BATCH);
J
Josef Bacik 已提交
4157 4158
		spin_unlock(&data_sinfo->lock);

4159
		/* commit the current transaction and try again */
4160
commit_trans:
4161
		if (need_commit) {
4162
			need_commit--;
4163

4164
			if (need_commit > 0) {
4165
				btrfs_start_delalloc_roots(fs_info, -1);
4166
				btrfs_wait_ordered_roots(fs_info, U64_MAX, 0,
4167
							 (u64)-1);
4168
			}
4169

4170
			trans = btrfs_join_transaction(root);
4171 4172
			if (IS_ERR(trans))
				return PTR_ERR(trans);
4173
			if (have_pinned_space >= 0 ||
4174 4175
			    test_bit(BTRFS_TRANS_HAVE_FREE_BGS,
				     &trans->transaction->flags) ||
4176
			    need_commit > 0) {
4177
				ret = btrfs_commit_transaction(trans);
4178 4179
				if (ret)
					return ret;
4180
				/*
4181 4182
				 * The cleaner kthread might still be doing iput
				 * operations. Wait for it to finish so that
4183 4184 4185 4186
				 * more space is released.  We don't need to
				 * explicitly run the delayed iputs here because
				 * the commit_transaction would have woken up
				 * the cleaner.
4187
				 */
4188 4189 4190
				ret = btrfs_wait_on_delayed_iputs(fs_info);
				if (ret)
					return ret;
4191 4192
				goto again;
			} else {
4193
				btrfs_end_transaction(trans);
4194
			}
4195
		}
J
Josef Bacik 已提交
4196

4197
		trace_btrfs_space_reservation(fs_info,
4198 4199
					      "space_info:enospc",
					      data_sinfo->flags, bytes, 1);
J
Josef Bacik 已提交
4200 4201
		return -ENOSPC;
	}
4202
	update_bytes_may_use(data_sinfo, bytes);
4203
	trace_btrfs_space_reservation(fs_info, "space_info",
4204
				      data_sinfo->flags, bytes, 1);
J
Josef Bacik 已提交
4205 4206
	spin_unlock(&data_sinfo->lock);

4207
	return 0;
J
Josef Bacik 已提交
4208
}
J
Josef Bacik 已提交
4209

4210 4211
int btrfs_check_data_free_space(struct inode *inode,
			struct extent_changeset **reserved, u64 start, u64 len)
4212
{
4213
	struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4214 4215 4216
	int ret;

	/* align the range */
4217 4218 4219
	len = round_up(start + len, fs_info->sectorsize) -
	      round_down(start, fs_info->sectorsize);
	start = round_down(start, fs_info->sectorsize);
4220

4221
	ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode), len);
4222 4223 4224
	if (ret < 0)
		return ret;

4225
	/* Use new btrfs_qgroup_reserve_data to reserve precious data space. */
4226
	ret = btrfs_qgroup_reserve_data(inode, reserved, start, len);
4227
	if (ret < 0)
4228
		btrfs_free_reserved_data_space_noquota(inode, start, len);
4229 4230
	else
		ret = 0;
4231 4232 4233 4234 4235 4236 4237
	return ret;
}

/*
 * Called if we need to clear a data reservation for this inode
 * Normally in a error case.
 *
4238 4239 4240
 * This one will *NOT* use accurate qgroup reserved space API, just for case
 * which we can't sleep and is sure it won't affect qgroup reserved space.
 * Like clear_bit_hook().
4241
 */
4242 4243
void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start,
					    u64 len)
4244
{
4245
	struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
4246 4247 4248
	struct btrfs_space_info *data_sinfo;

	/* Make sure the range is aligned to sectorsize */
4249 4250 4251
	len = round_up(start + len, fs_info->sectorsize) -
	      round_down(start, fs_info->sectorsize);
	start = round_down(start, fs_info->sectorsize);
4252

4253
	data_sinfo = fs_info->data_sinfo;
4254
	spin_lock(&data_sinfo->lock);
4255
	update_bytes_may_use(data_sinfo, -len);
4256
	trace_btrfs_space_reservation(fs_info, "space_info",
4257 4258 4259 4260
				      data_sinfo->flags, len, 0);
	spin_unlock(&data_sinfo->lock);
}

4261 4262 4263 4264
/*
 * Called if we need to clear a data reservation for this inode
 * Normally in a error case.
 *
4265
 * This one will handle the per-inode data rsv map for accurate reserved
4266 4267
 * space framework.
 */
4268 4269
void btrfs_free_reserved_data_space(struct inode *inode,
			struct extent_changeset *reserved, u64 start, u64 len)
4270
{
4271 4272 4273
	struct btrfs_root *root = BTRFS_I(inode)->root;

	/* Make sure the range is aligned to sectorsize */
4274 4275 4276
	len = round_up(start + len, root->fs_info->sectorsize) -
	      round_down(start, root->fs_info->sectorsize);
	start = round_down(start, root->fs_info->sectorsize);
4277

4278
	btrfs_free_reserved_data_space_noquota(inode, start, len);
4279
	btrfs_qgroup_free_data(inode, reserved, start, len);
4280 4281
}

4282
static void force_metadata_allocation(struct btrfs_fs_info *info)
4283
{
4284 4285
	struct list_head *head = &info->space_info;
	struct btrfs_space_info *found;
4286

4287 4288 4289
	rcu_read_lock();
	list_for_each_entry_rcu(found, head, list) {
		if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
4290
			found->force_alloc = CHUNK_ALLOC_FORCE;
4291
	}
4292
	rcu_read_unlock();
4293 4294
}

4295 4296 4297 4298 4299
static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
{
	return (global->size << 1);
}

4300
static int should_alloc_chunk(struct btrfs_fs_info *fs_info,
4301
			      struct btrfs_space_info *sinfo, int force)
4302
{
4303
	u64 bytes_used = btrfs_space_info_used(sinfo, false);
4304
	u64 thresh;
4305

4306 4307 4308 4309 4310 4311 4312 4313
	if (force == CHUNK_ALLOC_FORCE)
		return 1;

	/*
	 * in limited mode, we want to have some free space up to
	 * about 1% of the FS size.
	 */
	if (force == CHUNK_ALLOC_LIMITED) {
4314
		thresh = btrfs_super_total_bytes(fs_info->super_copy);
4315
		thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
4316

4317
		if (sinfo->total_bytes - bytes_used < thresh)
4318 4319 4320
			return 1;
	}

4321
	if (bytes_used + SZ_2M < div_factor(sinfo->total_bytes, 8))
4322
		return 0;
4323
	return 1;
4324 4325
}

4326
static u64 get_profile_num_devs(struct btrfs_fs_info *fs_info, u64 type)
4327 4328 4329
{
	u64 num_dev;

D
David Woodhouse 已提交
4330 4331 4332 4333
	if (type & (BTRFS_BLOCK_GROUP_RAID10 |
		    BTRFS_BLOCK_GROUP_RAID0 |
		    BTRFS_BLOCK_GROUP_RAID5 |
		    BTRFS_BLOCK_GROUP_RAID6))
4334
		num_dev = fs_info->fs_devices->rw_devices;
4335 4336 4337 4338 4339
	else if (type & BTRFS_BLOCK_GROUP_RAID1)
		num_dev = 2;
	else
		num_dev = 1;	/* DUP or single */

4340
	return num_dev;
4341 4342
}

4343 4344 4345 4346 4347
/*
 * If @is_allocation is true, reserve space in the system space info necessary
 * for allocating a chunk, otherwise if it's false, reserve space necessary for
 * removing a chunk.
 */
4348
void check_system_chunk(struct btrfs_trans_handle *trans, u64 type)
4349
{
4350
	struct btrfs_fs_info *fs_info = trans->fs_info;
4351 4352 4353
	struct btrfs_space_info *info;
	u64 left;
	u64 thresh;
4354
	int ret = 0;
4355
	u64 num_devs;
4356 4357 4358 4359 4360

	/*
	 * Needed because we can end up allocating a system chunk and for an
	 * atomic and race free space reservation in the chunk block reserve.
	 */
4361
	lockdep_assert_held(&fs_info->chunk_mutex);
4362

4363
	info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4364
	spin_lock(&info->lock);
4365
	left = info->total_bytes - btrfs_space_info_used(info, true);
4366 4367
	spin_unlock(&info->lock);

4368
	num_devs = get_profile_num_devs(fs_info, type);
4369 4370

	/* num_devs device items to update and 1 chunk item to add or remove */
4371 4372
	thresh = btrfs_calc_trunc_metadata_size(fs_info, num_devs) +
		btrfs_calc_trans_metadata_size(fs_info, 1);
4373

4374 4375 4376 4377
	if (left < thresh && btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
		btrfs_info(fs_info, "left=%llu, need=%llu, flags=%llu",
			   left, thresh, type);
		dump_space_info(fs_info, info, 0, 0);
4378 4379 4380
	}

	if (left < thresh) {
4381
		u64 flags = btrfs_system_alloc_profile(fs_info);
4382

4383 4384 4385 4386 4387 4388
		/*
		 * Ignore failure to create system chunk. We might end up not
		 * needing it, as we might not need to COW all nodes/leafs from
		 * the paths we visit in the chunk tree (they were already COWed
		 * or created in the current transaction for example).
		 */
4389
		ret = btrfs_alloc_chunk(trans, flags);
4390 4391 4392
	}

	if (!ret) {
4393 4394
		ret = btrfs_block_rsv_add(fs_info->chunk_root,
					  &fs_info->chunk_block_rsv,
4395 4396 4397
					  thresh, BTRFS_RESERVE_NO_FLUSH);
		if (!ret)
			trans->chunk_bytes_reserved += thresh;
4398 4399 4400
	}
}

4401 4402 4403 4404 4405 4406 4407 4408 4409
/*
 * If force is CHUNK_ALLOC_FORCE:
 *    - return 1 if it successfully allocates a chunk,
 *    - return errors including -ENOSPC otherwise.
 * If force is NOT CHUNK_ALLOC_FORCE:
 *    - return 0 if it doesn't need to allocate a new chunk,
 *    - return 1 if it successfully allocates a chunk,
 *    - return errors including -ENOSPC otherwise.
 */
4410 4411
static int do_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags,
			  int force)
J
Josef Bacik 已提交
4412
{
4413
	struct btrfs_fs_info *fs_info = trans->fs_info;
4414
	struct btrfs_space_info *space_info;
4415 4416
	bool wait_for_alloc = false;
	bool should_alloc = false;
J
Josef Bacik 已提交
4417 4418
	int ret = 0;

4419 4420 4421 4422
	/* Don't re-enter if we're already allocating a chunk */
	if (trans->allocating_chunk)
		return -ENOSPC;

4423
	space_info = __find_space_info(fs_info, flags);
4424
	ASSERT(space_info);
J
Josef Bacik 已提交
4425

4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458
	do {
		spin_lock(&space_info->lock);
		if (force < space_info->force_alloc)
			force = space_info->force_alloc;
		should_alloc = should_alloc_chunk(fs_info, space_info, force);
		if (space_info->full) {
			/* No more free physical space */
			if (should_alloc)
				ret = -ENOSPC;
			else
				ret = 0;
			spin_unlock(&space_info->lock);
			return ret;
		} else if (!should_alloc) {
			spin_unlock(&space_info->lock);
			return 0;
		} else if (space_info->chunk_alloc) {
			/*
			 * Someone is already allocating, so we need to block
			 * until this someone is finished and then loop to
			 * recheck if we should continue with our allocation
			 * attempt.
			 */
			wait_for_alloc = true;
			spin_unlock(&space_info->lock);
			mutex_lock(&fs_info->chunk_mutex);
			mutex_unlock(&fs_info->chunk_mutex);
		} else {
			/* Proceed with allocation */
			space_info->chunk_alloc = 1;
			wait_for_alloc = false;
			spin_unlock(&space_info->lock);
		}
4459

4460
		cond_resched();
4461
	} while (wait_for_alloc);
4462

4463
	mutex_lock(&fs_info->chunk_mutex);
4464 4465
	trans->allocating_chunk = true;

4466 4467 4468 4469 4470 4471 4472
	/*
	 * If we have mixed data/metadata chunks we want to make sure we keep
	 * allocating mixed chunks instead of individual chunks.
	 */
	if (btrfs_mixed_space_info(space_info))
		flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);

4473 4474 4475 4476 4477
	/*
	 * if we're doing a data chunk, go ahead and make sure that
	 * we keep a reasonable number of metadata chunks allocated in the
	 * FS as well.
	 */
J
Josef Bacik 已提交
4478
	if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
4479 4480 4481 4482
		fs_info->data_chunk_allocations++;
		if (!(fs_info->data_chunk_allocations %
		      fs_info->metadata_ratio))
			force_metadata_allocation(fs_info);
J
Josef Bacik 已提交
4483 4484
	}

4485 4486 4487 4488
	/*
	 * Check if we have enough space in SYSTEM chunk because we may need
	 * to update devices.
	 */
4489
	check_system_chunk(trans, flags);
4490

4491
	ret = btrfs_alloc_chunk(trans, flags);
4492
	trans->allocating_chunk = false;
4493

J
Josef Bacik 已提交
4494
	spin_lock(&space_info->lock);
4495 4496 4497 4498 4499 4500
	if (ret < 0) {
		if (ret == -ENOSPC)
			space_info->full = 1;
		else
			goto out;
	} else {
4501
		ret = 1;
4502
		space_info->max_extent_size = 0;
4503
	}
4504

4505
	space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
4506
out:
4507
	space_info->chunk_alloc = 0;
J
Josef Bacik 已提交
4508
	spin_unlock(&space_info->lock);
4509
	mutex_unlock(&fs_info->chunk_mutex);
4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523
	/*
	 * When we allocate a new chunk we reserve space in the chunk block
	 * reserve to make sure we can COW nodes/leafs in the chunk tree or
	 * add new nodes/leafs to it if we end up needing to do it when
	 * inserting the chunk item and updating device items as part of the
	 * second phase of chunk allocation, performed by
	 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
	 * large number of new block groups to create in our transaction
	 * handle's new_bgs list to avoid exhausting the chunk block reserve
	 * in extreme cases - like having a single transaction create many new
	 * block groups when starting to write out the free space caches of all
	 * the block groups that were made dirty during the lifetime of the
	 * transaction.
	 */
4524
	if (trans->chunk_bytes_reserved >= (u64)SZ_2M)
4525
		btrfs_create_pending_block_groups(trans);
4526

J
Josef Bacik 已提交
4527
	return ret;
4528
}
J
Josef Bacik 已提交
4529

4530
static int can_overcommit(struct btrfs_fs_info *fs_info,
J
Josef Bacik 已提交
4531
			  struct btrfs_space_info *space_info, u64 bytes,
4532 4533
			  enum btrfs_reserve_flush_enum flush,
			  bool system_chunk)
J
Josef Bacik 已提交
4534
{
4535
	struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
4536
	u64 profile;
4537
	u64 space_size;
J
Josef Bacik 已提交
4538 4539
	u64 avail;
	u64 used;
4540
	int factor;
J
Josef Bacik 已提交
4541

4542 4543 4544 4545
	/* Don't overcommit when in mixed mode. */
	if (space_info->flags & BTRFS_BLOCK_GROUP_DATA)
		return 0;

4546 4547 4548 4549 4550
	if (system_chunk)
		profile = btrfs_system_alloc_profile(fs_info);
	else
		profile = btrfs_metadata_alloc_profile(fs_info);

4551
	used = btrfs_space_info_used(space_info, false);
4552 4553 4554 4555 4556 4557 4558

	/*
	 * We only want to allow over committing if we have lots of actual space
	 * free, but if we don't have enough space to handle the global reserve
	 * space then we could end up having a real enospc problem when trying
	 * to allocate a chunk or some other such important allocation.
	 */
4559 4560 4561 4562
	spin_lock(&global_rsv->lock);
	space_size = calc_global_rsv_need_space(global_rsv);
	spin_unlock(&global_rsv->lock);
	if (used + space_size >= space_info->total_bytes)
4563 4564 4565
		return 0;

	used += space_info->bytes_may_use;
J
Josef Bacik 已提交
4566

4567
	avail = atomic64_read(&fs_info->free_chunk_space);
J
Josef Bacik 已提交
4568 4569 4570

	/*
	 * If we have dup, raid1 or raid10 then only half of the free
4571
	 * space is actually usable.  For raid56, the space info used
D
David Woodhouse 已提交
4572 4573
	 * doesn't include the parity drive, so we don't have to
	 * change the math
J
Josef Bacik 已提交
4574
	 */
4575 4576
	factor = btrfs_bg_type_to_factor(profile);
	avail = div_u64(avail, factor);
J
Josef Bacik 已提交
4577 4578

	/*
4579 4580 4581
	 * If we aren't flushing all things, let us overcommit up to
	 * 1/2th of the space. If we can flush, don't let us overcommit
	 * too much, let it overcommit up to 1/8 of the space.
J
Josef Bacik 已提交
4582
	 */
M
Miao Xie 已提交
4583
	if (flush == BTRFS_RESERVE_FLUSH_ALL)
4584
		avail >>= 3;
J
Josef Bacik 已提交
4585
	else
4586
		avail >>= 1;
J
Josef Bacik 已提交
4587

4588
	if (used + bytes < space_info->total_bytes + avail)
J
Josef Bacik 已提交
4589 4590 4591 4592
		return 1;
	return 0;
}

4593
static void btrfs_writeback_inodes_sb_nr(struct btrfs_fs_info *fs_info,
4594
					 unsigned long nr_pages, int nr_items)
4595
{
4596
	struct super_block *sb = fs_info->sb;
4597

4598 4599 4600 4601
	if (down_read_trylock(&sb->s_umount)) {
		writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
		up_read(&sb->s_umount);
	} else {
4602 4603 4604 4605 4606 4607 4608
		/*
		 * We needn't worry the filesystem going from r/w to r/o though
		 * we don't acquire ->s_umount mutex, because the filesystem
		 * should guarantee the delalloc inodes list be empty after
		 * the filesystem is readonly(all dirty pages are written to
		 * the disk).
		 */
4609
		btrfs_start_delalloc_roots(fs_info, nr_items);
4610
		if (!current->journal_info)
4611
			btrfs_wait_ordered_roots(fs_info, nr_items, 0, (u64)-1);
4612 4613 4614
	}
}

4615
static inline u64 calc_reclaim_items_nr(struct btrfs_fs_info *fs_info,
4616
					u64 to_reclaim)
4617 4618
{
	u64 bytes;
4619
	u64 nr;
4620

4621
	bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
4622
	nr = div64_u64(to_reclaim, bytes);
4623 4624 4625 4626 4627
	if (!nr)
		nr = 1;
	return nr;
}

4628
#define EXTENT_SIZE_PER_ITEM	SZ_256K
4629

J
Josef Bacik 已提交
4630
/*
4631
 * shrink metadata reservation for delalloc
J
Josef Bacik 已提交
4632
 */
4633 4634
static void shrink_delalloc(struct btrfs_fs_info *fs_info, u64 to_reclaim,
			    u64 orig, bool wait_ordered)
4635
{
J
Josef Bacik 已提交
4636
	struct btrfs_space_info *space_info;
4637
	struct btrfs_trans_handle *trans;
J
Josef Bacik 已提交
4638
	u64 delalloc_bytes;
4639
	u64 async_pages;
4640
	u64 items;
4641
	long time_left;
4642 4643
	unsigned long nr_pages;
	int loops;
4644

4645
	/* Calc the number of the pages we need flush for space reservation */
4646
	items = calc_reclaim_items_nr(fs_info, to_reclaim);
4647
	to_reclaim = items * EXTENT_SIZE_PER_ITEM;
4648

4649
	trans = (struct btrfs_trans_handle *)current->journal_info;
4650
	space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4651

4652
	delalloc_bytes = percpu_counter_sum_positive(
4653
						&fs_info->delalloc_bytes);
J
Josef Bacik 已提交
4654
	if (delalloc_bytes == 0) {
4655
		if (trans)
J
Josef Bacik 已提交
4656
			return;
4657
		if (wait_ordered)
4658
			btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
J
Josef Bacik 已提交
4659
		return;
4660 4661
	}

4662
	loops = 0;
J
Josef Bacik 已提交
4663
	while (delalloc_bytes && loops < 3) {
4664 4665 4666 4667 4668 4669 4670
		nr_pages = min(delalloc_bytes, to_reclaim) >> PAGE_SHIFT;

		/*
		 * Triggers inode writeback for up to nr_pages. This will invoke
		 * ->writepages callback and trigger delalloc filling
		 *  (btrfs_run_delalloc_range()).
		 */
4671
		btrfs_writeback_inodes_sb_nr(fs_info, nr_pages, items);
4672

4673
		/*
4674 4675
		 * We need to wait for the compressed pages to start before
		 * we continue.
4676
		 */
4677 4678
		async_pages = atomic_read(&fs_info->async_delalloc_pages);
		if (!async_pages)
4679 4680
			goto skip_async;

4681 4682 4683 4684 4685 4686 4687
		/*
		 * Calculate how many compressed pages we want to be written
		 * before we continue. I.e if there are more async pages than we
		 * require wait_event will wait until nr_pages are written.
		 */
		if (async_pages <= nr_pages)
			async_pages = 0;
4688
		else
4689
			async_pages -= nr_pages;
4690

4691 4692
		wait_event(fs_info->async_submit_wait,
			   atomic_read(&fs_info->async_delalloc_pages) <=
4693
			   (int)async_pages);
4694
skip_async:
J
Josef Bacik 已提交
4695
		spin_lock(&space_info->lock);
4696 4697 4698 4699 4700
		if (list_empty(&space_info->tickets) &&
		    list_empty(&space_info->priority_tickets)) {
			spin_unlock(&space_info->lock);
			break;
		}
J
Josef Bacik 已提交
4701
		spin_unlock(&space_info->lock);
4702

4703
		loops++;
4704
		if (wait_ordered && !trans) {
4705
			btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
4706
		} else {
J
Josef Bacik 已提交
4707
			time_left = schedule_timeout_killable(1);
4708 4709 4710
			if (time_left)
				break;
		}
4711
		delalloc_bytes = percpu_counter_sum_positive(
4712
						&fs_info->delalloc_bytes);
4713 4714 4715
	}
}

4716
struct reserve_ticket {
4717
	u64 orig_bytes;
4718 4719 4720 4721 4722 4723
	u64 bytes;
	int error;
	struct list_head list;
	wait_queue_head_t wait;
};

4724 4725 4726 4727 4728
/**
 * maybe_commit_transaction - possibly commit the transaction if its ok to
 * @root - the root we're allocating for
 * @bytes - the number of bytes we want to reserve
 * @force - force the commit
4729
 *
4730 4731 4732
 * This will check to make sure that committing the transaction will actually
 * get us somewhere and then commit the transaction if it does.  Otherwise it
 * will return -ENOSPC.
4733
 */
4734
static int may_commit_transaction(struct btrfs_fs_info *fs_info,
4735
				  struct btrfs_space_info *space_info)
4736
{
4737
	struct reserve_ticket *ticket = NULL;
4738
	struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_block_rsv;
4739
	struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
4740
	struct btrfs_trans_handle *trans;
4741 4742
	u64 bytes_needed;
	u64 reclaim_bytes = 0;
4743 4744 4745 4746 4747

	trans = (struct btrfs_trans_handle *)current->journal_info;
	if (trans)
		return -EAGAIN;

4748 4749 4750 4751 4752 4753 4754
	spin_lock(&space_info->lock);
	if (!list_empty(&space_info->priority_tickets))
		ticket = list_first_entry(&space_info->priority_tickets,
					  struct reserve_ticket, list);
	else if (!list_empty(&space_info->tickets))
		ticket = list_first_entry(&space_info->tickets,
					  struct reserve_ticket, list);
4755
	bytes_needed = (ticket) ? ticket->bytes : 0;
4756 4757
	spin_unlock(&space_info->lock);

4758
	if (!bytes_needed)
4759
		return 0;
4760

4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773
	trans = btrfs_join_transaction(fs_info->extent_root);
	if (IS_ERR(trans))
		return PTR_ERR(trans);

	/*
	 * See if there is enough pinned space to make this reservation, or if
	 * we have block groups that are going to be freed, allowing us to
	 * possibly do a chunk allocation the next loop through.
	 */
	if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags) ||
	    __percpu_counter_compare(&space_info->total_bytes_pinned,
				     bytes_needed,
				     BTRFS_TOTAL_BYTES_PINNED_BATCH) >= 0)
4774 4775 4776 4777 4778 4779 4780
		goto commit;

	/*
	 * See if there is some space in the delayed insertion reservation for
	 * this reservation.
	 */
	if (space_info != delayed_rsv->space_info)
4781
		goto enospc;
4782 4783

	spin_lock(&delayed_rsv->lock);
4784
	reclaim_bytes += delayed_rsv->reserved;
4785 4786
	spin_unlock(&delayed_rsv->lock);

4787 4788 4789 4790 4791 4792 4793
	spin_lock(&delayed_refs_rsv->lock);
	reclaim_bytes += delayed_refs_rsv->reserved;
	spin_unlock(&delayed_refs_rsv->lock);
	if (reclaim_bytes >= bytes_needed)
		goto commit;
	bytes_needed -= reclaim_bytes;

4794
	if (__percpu_counter_compare(&space_info->total_bytes_pinned,
4795
				   bytes_needed,
4796 4797
				   BTRFS_TOTAL_BYTES_PINNED_BATCH) < 0)
		goto enospc;
4798 4799

commit:
4800
	return btrfs_commit_transaction(trans);
4801 4802 4803
enospc:
	btrfs_end_transaction(trans);
	return -ENOSPC;
4804 4805
}

4806 4807 4808 4809 4810 4811
/*
 * Try to flush some data based on policy set by @state. This is only advisory
 * and may fail for various reasons. The caller is supposed to examine the
 * state of @space_info to detect the outcome.
 */
static void flush_space(struct btrfs_fs_info *fs_info,
4812
		       struct btrfs_space_info *space_info, u64 num_bytes,
4813
		       int state)
4814
{
4815
	struct btrfs_root *root = fs_info->extent_root;
4816 4817
	struct btrfs_trans_handle *trans;
	int nr;
J
Josef Bacik 已提交
4818
	int ret = 0;
4819 4820 4821 4822

	switch (state) {
	case FLUSH_DELAYED_ITEMS_NR:
	case FLUSH_DELAYED_ITEMS:
4823
		if (state == FLUSH_DELAYED_ITEMS_NR)
4824
			nr = calc_reclaim_items_nr(fs_info, num_bytes) * 2;
4825
		else
4826
			nr = -1;
4827

4828 4829 4830 4831 4832
		trans = btrfs_join_transaction(root);
		if (IS_ERR(trans)) {
			ret = PTR_ERR(trans);
			break;
		}
4833
		ret = btrfs_run_delayed_items_nr(trans, nr);
4834
		btrfs_end_transaction(trans);
4835
		break;
4836 4837
	case FLUSH_DELALLOC:
	case FLUSH_DELALLOC_WAIT:
4838
		shrink_delalloc(fs_info, num_bytes * 2, num_bytes,
4839 4840
				state == FLUSH_DELALLOC_WAIT);
		break;
4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854
	case FLUSH_DELAYED_REFS_NR:
	case FLUSH_DELAYED_REFS:
		trans = btrfs_join_transaction(root);
		if (IS_ERR(trans)) {
			ret = PTR_ERR(trans);
			break;
		}
		if (state == FLUSH_DELAYED_REFS_NR)
			nr = calc_reclaim_items_nr(fs_info, num_bytes);
		else
			nr = 0;
		btrfs_run_delayed_refs(trans, nr);
		btrfs_end_transaction(trans);
		break;
4855
	case ALLOC_CHUNK:
4856
	case ALLOC_CHUNK_FORCE:
4857 4858 4859 4860 4861
		trans = btrfs_join_transaction(root);
		if (IS_ERR(trans)) {
			ret = PTR_ERR(trans);
			break;
		}
4862
		ret = do_chunk_alloc(trans,
4863
				     btrfs_metadata_alloc_profile(fs_info),
4864 4865
				     (state == ALLOC_CHUNK) ?
				      CHUNK_ALLOC_NO_FORCE : CHUNK_ALLOC_FORCE);
4866
		btrfs_end_transaction(trans);
4867
		if (ret > 0 || ret == -ENOSPC)
4868 4869
			ret = 0;
		break;
4870
	case COMMIT_TRANS:
4871 4872 4873 4874 4875 4876
		/*
		 * If we have pending delayed iputs then we could free up a
		 * bunch of pinned space, so make sure we run the iputs before
		 * we do our pinned bytes check below.
		 */
		btrfs_run_delayed_iputs(fs_info);
4877
		btrfs_wait_on_delayed_iputs(fs_info);
4878

4879
		ret = may_commit_transaction(fs_info, space_info);
4880 4881 4882 4883 4884 4885
		break;
	default:
		ret = -ENOSPC;
		break;
	}

4886 4887
	trace_btrfs_flush_space(fs_info, space_info->flags, num_bytes, state,
				ret);
4888
	return;
4889
}
4890 4891

static inline u64
4892 4893 4894
btrfs_calc_reclaim_metadata_size(struct btrfs_fs_info *fs_info,
				 struct btrfs_space_info *space_info,
				 bool system_chunk)
4895
{
4896
	struct reserve_ticket *ticket;
4897 4898
	u64 used;
	u64 expected;
4899
	u64 to_reclaim = 0;
4900

4901 4902 4903 4904 4905 4906
	list_for_each_entry(ticket, &space_info->tickets, list)
		to_reclaim += ticket->bytes;
	list_for_each_entry(ticket, &space_info->priority_tickets, list)
		to_reclaim += ticket->bytes;
	if (to_reclaim)
		return to_reclaim;
4907

4908
	to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M);
4909 4910
	if (can_overcommit(fs_info, space_info, to_reclaim,
			   BTRFS_RESERVE_FLUSH_ALL, system_chunk))
4911 4912
		return 0;

4913 4914
	used = btrfs_space_info_used(space_info, true);

4915 4916
	if (can_overcommit(fs_info, space_info, SZ_1M,
			   BTRFS_RESERVE_FLUSH_ALL, system_chunk))
4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929
		expected = div_factor_fine(space_info->total_bytes, 95);
	else
		expected = div_factor_fine(space_info->total_bytes, 90);

	if (used > expected)
		to_reclaim = used - expected;
	else
		to_reclaim = 0;
	to_reclaim = min(to_reclaim, space_info->bytes_may_use +
				     space_info->bytes_reserved);
	return to_reclaim;
}

4930 4931 4932
static inline int need_do_async_reclaim(struct btrfs_fs_info *fs_info,
					struct btrfs_space_info *space_info,
					u64 used, bool system_chunk)
4933
{
4934 4935 4936
	u64 thresh = div_factor_fine(space_info->total_bytes, 98);

	/* If we're just plain full then async reclaim just slows us down. */
4937
	if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh)
4938 4939
		return 0;

4940 4941
	if (!btrfs_calc_reclaim_metadata_size(fs_info, space_info,
					      system_chunk))
4942 4943
		return 0;

4944 4945
	return (used >= thresh && !btrfs_fs_closing(fs_info) &&
		!test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
4946 4947
}

4948
static bool wake_all_tickets(struct list_head *head)
4949
{
4950
	struct reserve_ticket *ticket;
4951

4952 4953 4954 4955 4956
	while (!list_empty(head)) {
		ticket = list_first_entry(head, struct reserve_ticket, list);
		list_del_init(&ticket->list);
		ticket->error = -ENOSPC;
		wake_up(&ticket->wait);
4957 4958
		if (ticket->bytes != ticket->orig_bytes)
			return true;
4959
	}
4960
	return false;
4961 4962
}

4963 4964 4965 4966 4967
/*
 * This is for normal flushers, we can wait all goddamned day if we want to.  We
 * will loop and continuously try to flush as long as we are making progress.
 * We count progress as clearing off tickets each time we have to loop.
 */
4968 4969 4970 4971 4972 4973
static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
{
	struct btrfs_fs_info *fs_info;
	struct btrfs_space_info *space_info;
	u64 to_reclaim;
	int flush_state;
4974
	int commit_cycles = 0;
4975
	u64 last_tickets_id;
4976 4977 4978 4979

	fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
	space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);

4980
	spin_lock(&space_info->lock);
4981 4982
	to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
						      false);
4983 4984 4985
	if (!to_reclaim) {
		space_info->flush = 0;
		spin_unlock(&space_info->lock);
4986
		return;
4987
	}
4988
	last_tickets_id = space_info->tickets_id;
4989
	spin_unlock(&space_info->lock);
4990 4991

	flush_state = FLUSH_DELAYED_ITEMS_NR;
4992
	do {
4993
		flush_space(fs_info, space_info, to_reclaim, flush_state);
4994 4995 4996 4997 4998 4999
		spin_lock(&space_info->lock);
		if (list_empty(&space_info->tickets)) {
			space_info->flush = 0;
			spin_unlock(&space_info->lock);
			return;
		}
5000 5001 5002
		to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info,
							      space_info,
							      false);
5003
		if (last_tickets_id == space_info->tickets_id) {
5004 5005
			flush_state++;
		} else {
5006
			last_tickets_id = space_info->tickets_id;
5007 5008 5009 5010 5011
			flush_state = FLUSH_DELAYED_ITEMS_NR;
			if (commit_cycles)
				commit_cycles--;
		}

5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024
		/*
		 * We don't want to force a chunk allocation until we've tried
		 * pretty hard to reclaim space.  Think of the case where we
		 * freed up a bunch of space and so have a lot of pinned space
		 * to reclaim.  We would rather use that than possibly create a
		 * underutilized metadata chunk.  So if this is our first run
		 * through the flushing state machine skip ALLOC_CHUNK_FORCE and
		 * commit the transaction.  If nothing has changed the next go
		 * around then we can force a chunk allocation.
		 */
		if (flush_state == ALLOC_CHUNK_FORCE && !commit_cycles)
			flush_state++;

5025 5026 5027
		if (flush_state > COMMIT_TRANS) {
			commit_cycles++;
			if (commit_cycles > 2) {
5028 5029 5030 5031 5032 5033
				if (wake_all_tickets(&space_info->tickets)) {
					flush_state = FLUSH_DELAYED_ITEMS_NR;
					commit_cycles--;
				} else {
					space_info->flush = 0;
				}
5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046
			} else {
				flush_state = FLUSH_DELAYED_ITEMS_NR;
			}
		}
		spin_unlock(&space_info->lock);
	} while (flush_state <= COMMIT_TRANS);
}

void btrfs_init_async_reclaim_work(struct work_struct *work)
{
	INIT_WORK(work, btrfs_async_reclaim_metadata_space);
}

5047 5048 5049 5050 5051 5052
static const enum btrfs_flush_state priority_flush_states[] = {
	FLUSH_DELAYED_ITEMS_NR,
	FLUSH_DELAYED_ITEMS,
	ALLOC_CHUNK,
};

5053 5054 5055 5056 5057
static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info,
					    struct btrfs_space_info *space_info,
					    struct reserve_ticket *ticket)
{
	u64 to_reclaim;
5058
	int flush_state;
5059 5060

	spin_lock(&space_info->lock);
5061 5062
	to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
						      false);
5063 5064 5065 5066 5067 5068
	if (!to_reclaim) {
		spin_unlock(&space_info->lock);
		return;
	}
	spin_unlock(&space_info->lock);

5069
	flush_state = 0;
5070
	do {
5071 5072
		flush_space(fs_info, space_info, to_reclaim,
			    priority_flush_states[flush_state]);
5073
		flush_state++;
5074 5075 5076
		spin_lock(&space_info->lock);
		if (ticket->bytes == 0) {
			spin_unlock(&space_info->lock);
5077
			return;
5078 5079
		}
		spin_unlock(&space_info->lock);
5080
	} while (flush_state < ARRAY_SIZE(priority_flush_states));
5081 5082
}

5083 5084
static int wait_reserve_ticket(struct btrfs_fs_info *fs_info,
			       struct btrfs_space_info *space_info,
5085
			       struct reserve_ticket *ticket)
5086

5087
{
5088
	DEFINE_WAIT(wait);
5089
	u64 reclaim_bytes = 0;
5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109
	int ret = 0;

	spin_lock(&space_info->lock);
	while (ticket->bytes > 0 && ticket->error == 0) {
		ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE);
		if (ret) {
			ret = -EINTR;
			break;
		}
		spin_unlock(&space_info->lock);

		schedule();

		finish_wait(&ticket->wait, &wait);
		spin_lock(&space_info->lock);
	}
	if (!ret)
		ret = ticket->error;
	if (!list_empty(&ticket->list))
		list_del_init(&ticket->list);
5110 5111
	if (ticket->bytes && ticket->bytes < ticket->orig_bytes)
		reclaim_bytes = ticket->orig_bytes - ticket->bytes;
5112 5113
	spin_unlock(&space_info->lock);

5114 5115
	if (reclaim_bytes)
		space_info_add_old_bytes(fs_info, space_info, reclaim_bytes);
5116
	return ret;
5117 5118
}

5119 5120 5121
/**
 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
 * @root - the root we're allocating for
5122
 * @space_info - the space info we want to allocate from
5123
 * @orig_bytes - the number of bytes we want
5124
 * @flush - whether or not we can flush to make our reservation
5125
 *
5126
 * This will reserve orig_bytes number of bytes from the space info associated
5127 5128 5129 5130 5131
 * with the block_rsv.  If there is not enough space it will make an attempt to
 * flush out space to make room.  It will do this by flushing delalloc if
 * possible or committing the transaction.  If flush is 0 then no attempts to
 * regain reservations will be made and this will fail if there is not enough
 * space already.
5132
 */
5133
static int __reserve_metadata_bytes(struct btrfs_fs_info *fs_info,
5134 5135
				    struct btrfs_space_info *space_info,
				    u64 orig_bytes,
5136 5137
				    enum btrfs_reserve_flush_enum flush,
				    bool system_chunk)
J
Josef Bacik 已提交
5138
{
5139
	struct reserve_ticket ticket;
5140
	u64 used;
5141
	u64 reclaim_bytes = 0;
5142
	int ret = 0;
J
Josef Bacik 已提交
5143

5144
	ASSERT(orig_bytes);
5145
	ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL);
5146

5147
	spin_lock(&space_info->lock);
5148
	ret = -ENOSPC;
5149
	used = btrfs_space_info_used(space_info, true);
J
Josef Bacik 已提交
5150

5151
	/*
5152 5153 5154
	 * If we have enough space then hooray, make our reservation and carry
	 * on.  If not see if we can overcommit, and if we can, hooray carry on.
	 * If not things get more complicated.
5155
	 */
5156
	if (used + orig_bytes <= space_info->total_bytes) {
5157
		update_bytes_may_use(space_info, orig_bytes);
5158 5159
		trace_btrfs_space_reservation(fs_info, "space_info",
					      space_info->flags, orig_bytes, 1);
5160
		ret = 0;
5161 5162
	} else if (can_overcommit(fs_info, space_info, orig_bytes, flush,
				  system_chunk)) {
5163
		update_bytes_may_use(space_info, orig_bytes);
5164 5165
		trace_btrfs_space_reservation(fs_info, "space_info",
					      space_info->flags, orig_bytes, 1);
5166
		ret = 0;
5167 5168
	}

5169
	/*
5170 5171
	 * If we couldn't make a reservation then setup our reservation ticket
	 * and kick the async worker if it's not already running.
M
Miao Xie 已提交
5172
	 *
5173 5174
	 * If we are a priority flusher then we just need to add our ticket to
	 * the list and we will do our own flushing further down.
5175
	 */
5176
	if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
5177
		ticket.orig_bytes = orig_bytes;
5178 5179 5180 5181 5182 5183 5184
		ticket.bytes = orig_bytes;
		ticket.error = 0;
		init_waitqueue_head(&ticket.wait);
		if (flush == BTRFS_RESERVE_FLUSH_ALL) {
			list_add_tail(&ticket.list, &space_info->tickets);
			if (!space_info->flush) {
				space_info->flush = 1;
5185
				trace_btrfs_trigger_flush(fs_info,
5186 5187 5188
							  space_info->flags,
							  orig_bytes, flush,
							  "enospc");
5189
				queue_work(system_unbound_wq,
5190
					   &fs_info->async_reclaim_work);
5191 5192 5193 5194 5195
			}
		} else {
			list_add_tail(&ticket.list,
				      &space_info->priority_tickets);
		}
5196 5197
	} else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
		used += orig_bytes;
5198 5199 5200 5201 5202
		/*
		 * We will do the space reservation dance during log replay,
		 * which means we won't have fs_info->fs_root set, so don't do
		 * the async reclaim as we will panic.
		 */
5203
		if (!test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags) &&
5204 5205
		    need_do_async_reclaim(fs_info, space_info,
					  used, system_chunk) &&
5206 5207 5208
		    !work_busy(&fs_info->async_reclaim_work)) {
			trace_btrfs_trigger_flush(fs_info, space_info->flags,
						  orig_bytes, flush, "preempt");
5209
			queue_work(system_unbound_wq,
5210
				   &fs_info->async_reclaim_work);
5211
		}
5212
	}
5213
	spin_unlock(&space_info->lock);
M
Miao Xie 已提交
5214
	if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
5215
		return ret;
5216

5217
	if (flush == BTRFS_RESERVE_FLUSH_ALL)
5218
		return wait_reserve_ticket(fs_info, space_info, &ticket);
M
Miao Xie 已提交
5219

5220
	ret = 0;
5221
	priority_reclaim_metadata_space(fs_info, space_info, &ticket);
5222 5223
	spin_lock(&space_info->lock);
	if (ticket.bytes) {
5224 5225
		if (ticket.bytes < orig_bytes)
			reclaim_bytes = orig_bytes - ticket.bytes;
5226 5227 5228 5229
		list_del_init(&ticket.list);
		ret = -ENOSPC;
	}
	spin_unlock(&space_info->lock);
5230 5231 5232

	if (reclaim_bytes)
		space_info_add_old_bytes(fs_info, space_info, reclaim_bytes);
5233 5234 5235
	ASSERT(list_empty(&ticket.list));
	return ret;
}
5236

5237 5238 5239 5240 5241 5242 5243
/**
 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
 * @root - the root we're allocating for
 * @block_rsv - the block_rsv we're allocating for
 * @orig_bytes - the number of bytes we want
 * @flush - whether or not we can flush to make our reservation
 *
5244
 * This will reserve orig_bytes number of bytes from the space info associated
5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255
 * with the block_rsv.  If there is not enough space it will make an attempt to
 * flush out space to make room.  It will do this by flushing delalloc if
 * possible or committing the transaction.  If flush is 0 then no attempts to
 * regain reservations will be made and this will fail if there is not enough
 * space already.
 */
static int reserve_metadata_bytes(struct btrfs_root *root,
				  struct btrfs_block_rsv *block_rsv,
				  u64 orig_bytes,
				  enum btrfs_reserve_flush_enum flush)
{
5256 5257
	struct btrfs_fs_info *fs_info = root->fs_info;
	struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5258
	int ret;
5259
	bool system_chunk = (root == fs_info->chunk_root);
5260

5261 5262
	ret = __reserve_metadata_bytes(fs_info, block_rsv->space_info,
				       orig_bytes, flush, system_chunk);
5263 5264 5265 5266 5267 5268
	if (ret == -ENOSPC &&
	    unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
		if (block_rsv != global_rsv &&
		    !block_rsv_use_bytes(global_rsv, orig_bytes))
			ret = 0;
	}
5269
	if (ret == -ENOSPC) {
5270
		trace_btrfs_space_reservation(fs_info, "space_info:enospc",
5271 5272
					      block_rsv->space_info->flags,
					      orig_bytes, 1);
5273 5274 5275 5276 5277

		if (btrfs_test_opt(fs_info, ENOSPC_DEBUG))
			dump_space_info(fs_info, block_rsv->space_info,
					orig_bytes, 0);
	}
5278 5279 5280
	return ret;
}

5281 5282 5283
static struct btrfs_block_rsv *get_block_rsv(
					const struct btrfs_trans_handle *trans,
					const struct btrfs_root *root)
5284
{
5285
	struct btrfs_fs_info *fs_info = root->fs_info;
5286 5287
	struct btrfs_block_rsv *block_rsv = NULL;

5288
	if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
5289 5290
	    (root == fs_info->csum_root && trans->adding_csums) ||
	    (root == fs_info->uuid_root))
5291 5292
		block_rsv = trans->block_rsv;

5293
	if (!block_rsv)
5294 5295 5296
		block_rsv = root->block_rsv;

	if (!block_rsv)
5297
		block_rsv = &fs_info->empty_block_rsv;
5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317

	return block_rsv;
}

static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
			       u64 num_bytes)
{
	int ret = -ENOSPC;
	spin_lock(&block_rsv->lock);
	if (block_rsv->reserved >= num_bytes) {
		block_rsv->reserved -= num_bytes;
		if (block_rsv->reserved < block_rsv->size)
			block_rsv->full = 0;
		ret = 0;
	}
	spin_unlock(&block_rsv->lock);
	return ret;
}

static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
5318
				u64 num_bytes, bool update_size)
5319 5320 5321 5322 5323 5324 5325 5326 5327 5328
{
	spin_lock(&block_rsv->lock);
	block_rsv->reserved += num_bytes;
	if (update_size)
		block_rsv->size += num_bytes;
	else if (block_rsv->reserved >= block_rsv->size)
		block_rsv->full = 1;
	spin_unlock(&block_rsv->lock);
}

5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349
int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
			     struct btrfs_block_rsv *dest, u64 num_bytes,
			     int min_factor)
{
	struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
	u64 min_bytes;

	if (global_rsv->space_info != dest->space_info)
		return -ENOSPC;

	spin_lock(&global_rsv->lock);
	min_bytes = div_factor(global_rsv->size, min_factor);
	if (global_rsv->reserved < min_bytes + num_bytes) {
		spin_unlock(&global_rsv->lock);
		return -ENOSPC;
	}
	global_rsv->reserved -= num_bytes;
	if (global_rsv->reserved < global_rsv->size)
		global_rsv->full = 0;
	spin_unlock(&global_rsv->lock);

5350
	block_rsv_add_bytes(dest, num_bytes, true);
5351 5352 5353
	return 0;
}

J
Josef Bacik 已提交
5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437
/**
 * btrfs_migrate_to_delayed_refs_rsv - transfer bytes to our delayed refs rsv.
 * @fs_info - the fs info for our fs.
 * @src - the source block rsv to transfer from.
 * @num_bytes - the number of bytes to transfer.
 *
 * This transfers up to the num_bytes amount from the src rsv to the
 * delayed_refs_rsv.  Any extra bytes are returned to the space info.
 */
void btrfs_migrate_to_delayed_refs_rsv(struct btrfs_fs_info *fs_info,
				       struct btrfs_block_rsv *src,
				       u64 num_bytes)
{
	struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
	u64 to_free = 0;

	spin_lock(&src->lock);
	src->reserved -= num_bytes;
	src->size -= num_bytes;
	spin_unlock(&src->lock);

	spin_lock(&delayed_refs_rsv->lock);
	if (delayed_refs_rsv->size > delayed_refs_rsv->reserved) {
		u64 delta = delayed_refs_rsv->size -
			delayed_refs_rsv->reserved;
		if (num_bytes > delta) {
			to_free = num_bytes - delta;
			num_bytes = delta;
		}
	} else {
		to_free = num_bytes;
		num_bytes = 0;
	}

	if (num_bytes)
		delayed_refs_rsv->reserved += num_bytes;
	if (delayed_refs_rsv->reserved >= delayed_refs_rsv->size)
		delayed_refs_rsv->full = 1;
	spin_unlock(&delayed_refs_rsv->lock);

	if (num_bytes)
		trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
					      0, num_bytes, 1);
	if (to_free)
		space_info_add_old_bytes(fs_info, delayed_refs_rsv->space_info,
					 to_free);
}

/**
 * btrfs_delayed_refs_rsv_refill - refill based on our delayed refs usage.
 * @fs_info - the fs_info for our fs.
 * @flush - control how we can flush for this reservation.
 *
 * This will refill the delayed block_rsv up to 1 items size worth of space and
 * will return -ENOSPC if we can't make the reservation.
 */
int btrfs_delayed_refs_rsv_refill(struct btrfs_fs_info *fs_info,
				  enum btrfs_reserve_flush_enum flush)
{
	struct btrfs_block_rsv *block_rsv = &fs_info->delayed_refs_rsv;
	u64 limit = btrfs_calc_trans_metadata_size(fs_info, 1);
	u64 num_bytes = 0;
	int ret = -ENOSPC;

	spin_lock(&block_rsv->lock);
	if (block_rsv->reserved < block_rsv->size) {
		num_bytes = block_rsv->size - block_rsv->reserved;
		num_bytes = min(num_bytes, limit);
	}
	spin_unlock(&block_rsv->lock);

	if (!num_bytes)
		return 0;

	ret = reserve_metadata_bytes(fs_info->extent_root, block_rsv,
				     num_bytes, flush);
	if (ret)
		return ret;
	block_rsv_add_bytes(block_rsv, num_bytes, 0);
	trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
				      0, num_bytes, 1);
	return 0;
}

5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459
/*
 * This is for space we already have accounted in space_info->bytes_may_use, so
 * basically when we're returning space from block_rsv's.
 */
static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
				     struct btrfs_space_info *space_info,
				     u64 num_bytes)
{
	struct reserve_ticket *ticket;
	struct list_head *head;
	u64 used;
	enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH;
	bool check_overcommit = false;

	spin_lock(&space_info->lock);
	head = &space_info->priority_tickets;

	/*
	 * If we are over our limit then we need to check and see if we can
	 * overcommit, and if we can't then we just need to free up our space
	 * and not satisfy any requests.
	 */
5460
	used = btrfs_space_info_used(space_info, true);
5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471
	if (used - num_bytes >= space_info->total_bytes)
		check_overcommit = true;
again:
	while (!list_empty(head) && num_bytes) {
		ticket = list_first_entry(head, struct reserve_ticket,
					  list);
		/*
		 * We use 0 bytes because this space is already reserved, so
		 * adding the ticket space would be a double count.
		 */
		if (check_overcommit &&
5472
		    !can_overcommit(fs_info, space_info, 0, flush, false))
5473 5474 5475 5476 5477
			break;
		if (num_bytes >= ticket->bytes) {
			list_del_init(&ticket->list);
			num_bytes -= ticket->bytes;
			ticket->bytes = 0;
5478
			space_info->tickets_id++;
5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490
			wake_up(&ticket->wait);
		} else {
			ticket->bytes -= num_bytes;
			num_bytes = 0;
		}
	}

	if (num_bytes && head == &space_info->priority_tickets) {
		head = &space_info->tickets;
		flush = BTRFS_RESERVE_FLUSH_ALL;
		goto again;
	}
5491
	update_bytes_may_use(space_info, -num_bytes);
5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518
	trace_btrfs_space_reservation(fs_info, "space_info",
				      space_info->flags, num_bytes, 0);
	spin_unlock(&space_info->lock);
}

/*
 * This is for newly allocated space that isn't accounted in
 * space_info->bytes_may_use yet.  So if we allocate a chunk or unpin an extent
 * we use this helper.
 */
static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
				     struct btrfs_space_info *space_info,
				     u64 num_bytes)
{
	struct reserve_ticket *ticket;
	struct list_head *head = &space_info->priority_tickets;

again:
	while (!list_empty(head) && num_bytes) {
		ticket = list_first_entry(head, struct reserve_ticket,
					  list);
		if (num_bytes >= ticket->bytes) {
			trace_btrfs_space_reservation(fs_info, "space_info",
						      space_info->flags,
						      ticket->bytes, 1);
			list_del_init(&ticket->list);
			num_bytes -= ticket->bytes;
5519
			update_bytes_may_use(space_info, ticket->bytes);
5520
			ticket->bytes = 0;
5521
			space_info->tickets_id++;
5522 5523 5524 5525 5526
			wake_up(&ticket->wait);
		} else {
			trace_btrfs_space_reservation(fs_info, "space_info",
						      space_info->flags,
						      num_bytes, 1);
5527
			update_bytes_may_use(space_info, num_bytes);
5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538
			ticket->bytes -= num_bytes;
			num_bytes = 0;
		}
	}

	if (num_bytes && head == &space_info->priority_tickets) {
		head = &space_info->tickets;
		goto again;
	}
}

5539
static u64 block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
J
Josef Bacik 已提交
5540
				    struct btrfs_block_rsv *block_rsv,
5541 5542
				    struct btrfs_block_rsv *dest, u64 num_bytes,
				    u64 *qgroup_to_release_ret)
5543 5544
{
	struct btrfs_space_info *space_info = block_rsv->space_info;
5545
	u64 qgroup_to_release = 0;
5546
	u64 ret;
5547 5548

	spin_lock(&block_rsv->lock);
5549
	if (num_bytes == (u64)-1) {
5550
		num_bytes = block_rsv->size;
5551 5552
		qgroup_to_release = block_rsv->qgroup_rsv_size;
	}
5553 5554 5555 5556 5557 5558 5559 5560
	block_rsv->size -= num_bytes;
	if (block_rsv->reserved >= block_rsv->size) {
		num_bytes = block_rsv->reserved - block_rsv->size;
		block_rsv->reserved = block_rsv->size;
		block_rsv->full = 1;
	} else {
		num_bytes = 0;
	}
5561 5562 5563 5564 5565 5566 5567
	if (block_rsv->qgroup_rsv_reserved >= block_rsv->qgroup_rsv_size) {
		qgroup_to_release = block_rsv->qgroup_rsv_reserved -
				    block_rsv->qgroup_rsv_size;
		block_rsv->qgroup_rsv_reserved = block_rsv->qgroup_rsv_size;
	} else {
		qgroup_to_release = 0;
	}
5568 5569
	spin_unlock(&block_rsv->lock);

5570
	ret = num_bytes;
5571 5572
	if (num_bytes > 0) {
		if (dest) {
5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585
			spin_lock(&dest->lock);
			if (!dest->full) {
				u64 bytes_to_add;

				bytes_to_add = dest->size - dest->reserved;
				bytes_to_add = min(num_bytes, bytes_to_add);
				dest->reserved += bytes_to_add;
				if (dest->reserved >= dest->size)
					dest->full = 1;
				num_bytes -= bytes_to_add;
			}
			spin_unlock(&dest->lock);
		}
5586 5587 5588
		if (num_bytes)
			space_info_add_old_bytes(fs_info, space_info,
						 num_bytes);
J
Josef Bacik 已提交
5589
	}
5590 5591
	if (qgroup_to_release_ret)
		*qgroup_to_release_ret = qgroup_to_release;
5592
	return ret;
5593
}
5594

5595 5596
int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src,
			    struct btrfs_block_rsv *dst, u64 num_bytes,
5597
			    bool update_size)
5598 5599
{
	int ret;
J
Josef Bacik 已提交
5600

5601 5602 5603
	ret = block_rsv_use_bytes(src, num_bytes);
	if (ret)
		return ret;
J
Josef Bacik 已提交
5604

5605
	block_rsv_add_bytes(dst, num_bytes, update_size);
J
Josef Bacik 已提交
5606 5607 5608
	return 0;
}

5609
void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
J
Josef Bacik 已提交
5610
{
5611 5612
	memset(rsv, 0, sizeof(*rsv));
	spin_lock_init(&rsv->lock);
5613
	rsv->type = type;
5614 5615
}

5616 5617 5618 5619 5620 5621 5622 5623 5624
void btrfs_init_metadata_block_rsv(struct btrfs_fs_info *fs_info,
				   struct btrfs_block_rsv *rsv,
				   unsigned short type)
{
	btrfs_init_block_rsv(rsv, type);
	rsv->space_info = __find_space_info(fs_info,
					    BTRFS_BLOCK_GROUP_METADATA);
}

5625
struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_fs_info *fs_info,
5626
					      unsigned short type)
5627 5628
{
	struct btrfs_block_rsv *block_rsv;
J
Josef Bacik 已提交
5629

5630 5631 5632
	block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
	if (!block_rsv)
		return NULL;
J
Josef Bacik 已提交
5633

5634
	btrfs_init_metadata_block_rsv(fs_info, block_rsv, type);
5635 5636
	return block_rsv;
}
J
Josef Bacik 已提交
5637

5638
void btrfs_free_block_rsv(struct btrfs_fs_info *fs_info,
5639 5640
			  struct btrfs_block_rsv *rsv)
{
J
Josef Bacik 已提交
5641 5642
	if (!rsv)
		return;
5643
	btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
5644
	kfree(rsv);
J
Josef Bacik 已提交
5645 5646
}

M
Miao Xie 已提交
5647 5648 5649
int btrfs_block_rsv_add(struct btrfs_root *root,
			struct btrfs_block_rsv *block_rsv, u64 num_bytes,
			enum btrfs_reserve_flush_enum flush)
J
Josef Bacik 已提交
5650
{
5651
	int ret;
J
Josef Bacik 已提交
5652

5653 5654
	if (num_bytes == 0)
		return 0;
5655

5656
	ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
5657
	if (!ret)
5658
		block_rsv_add_bytes(block_rsv, num_bytes, true);
J
Josef Bacik 已提交
5659

5660 5661
	return ret;
}
J
Josef Bacik 已提交
5662

5663
int btrfs_block_rsv_check(struct btrfs_block_rsv *block_rsv, int min_factor)
5664 5665 5666
{
	u64 num_bytes = 0;
	int ret = -ENOSPC;
J
Josef Bacik 已提交
5667

5668 5669
	if (!block_rsv)
		return 0;
J
Josef Bacik 已提交
5670

5671
	spin_lock(&block_rsv->lock);
5672 5673 5674 5675
	num_bytes = div_factor(block_rsv->size, min_factor);
	if (block_rsv->reserved >= num_bytes)
		ret = 0;
	spin_unlock(&block_rsv->lock);
J
Josef Bacik 已提交
5676

5677 5678 5679
	return ret;
}

M
Miao Xie 已提交
5680 5681 5682
int btrfs_block_rsv_refill(struct btrfs_root *root,
			   struct btrfs_block_rsv *block_rsv, u64 min_reserved,
			   enum btrfs_reserve_flush_enum flush)
5683 5684 5685 5686 5687 5688 5689 5690 5691
{
	u64 num_bytes = 0;
	int ret = -ENOSPC;

	if (!block_rsv)
		return 0;

	spin_lock(&block_rsv->lock);
	num_bytes = min_reserved;
5692
	if (block_rsv->reserved >= num_bytes)
5693
		ret = 0;
5694
	else
5695 5696
		num_bytes -= block_rsv->reserved;
	spin_unlock(&block_rsv->lock);
5697

5698 5699 5700
	if (!ret)
		return 0;

5701
	ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
5702
	if (!ret) {
5703
		block_rsv_add_bytes(block_rsv, num_bytes, false);
5704
		return 0;
J
Josef Bacik 已提交
5705
	}
J
Josef Bacik 已提交
5706

5707
	return ret;
5708 5709
}

J
Josef Bacik 已提交
5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724
static void calc_refill_bytes(struct btrfs_block_rsv *block_rsv,
				u64 *metadata_bytes, u64 *qgroup_bytes)
{
	*metadata_bytes = 0;
	*qgroup_bytes = 0;

	spin_lock(&block_rsv->lock);
	if (block_rsv->reserved < block_rsv->size)
		*metadata_bytes = block_rsv->size - block_rsv->reserved;
	if (block_rsv->qgroup_rsv_reserved < block_rsv->qgroup_rsv_size)
		*qgroup_bytes = block_rsv->qgroup_rsv_size -
			block_rsv->qgroup_rsv_reserved;
	spin_unlock(&block_rsv->lock);
}

5725 5726 5727
/**
 * btrfs_inode_rsv_refill - refill the inode block rsv.
 * @inode - the inode we are refilling.
5728
 * @flush - the flushing restriction.
5729 5730 5731
 *
 * Essentially the same as btrfs_block_rsv_refill, except it uses the
 * block_rsv->size as the minimum size.  We'll either refill the missing amount
5732
 * or return if we already have enough space.  This will also handle the reserve
5733 5734
 * tracepoint for the reserved amount.
 */
5735 5736
static int btrfs_inode_rsv_refill(struct btrfs_inode *inode,
				  enum btrfs_reserve_flush_enum flush)
5737 5738 5739
{
	struct btrfs_root *root = inode->root;
	struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
J
Josef Bacik 已提交
5740 5741
	u64 num_bytes, last = 0;
	u64 qgroup_num_bytes;
5742 5743
	int ret = -ENOSPC;

J
Josef Bacik 已提交
5744
	calc_refill_bytes(block_rsv, &num_bytes, &qgroup_num_bytes);
5745 5746 5747
	if (num_bytes == 0)
		return 0;

J
Josef Bacik 已提交
5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775
	do {
		ret = btrfs_qgroup_reserve_meta_prealloc(root, qgroup_num_bytes,
							 true);
		if (ret)
			return ret;
		ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
		if (ret) {
			btrfs_qgroup_free_meta_prealloc(root, qgroup_num_bytes);
			last = num_bytes;
			/*
			 * If we are fragmented we can end up with a lot of
			 * outstanding extents which will make our size be much
			 * larger than our reserved amount.
			 *
			 * If the reservation happens here, it might be very
			 * big though not needed in the end, if the delalloc
			 * flushing happens.
			 *
			 * If this is the case try and do the reserve again.
			 */
			if (flush == BTRFS_RESERVE_FLUSH_ALL)
				calc_refill_bytes(block_rsv, &num_bytes,
						   &qgroup_num_bytes);
			if (num_bytes == 0)
				return 0;
		}
	} while (ret && last != num_bytes);

5776
	if (!ret) {
5777
		block_rsv_add_bytes(block_rsv, num_bytes, false);
5778 5779
		trace_btrfs_space_reservation(root->fs_info, "delalloc",
					      btrfs_ino(inode), num_bytes, 1);
5780 5781 5782 5783 5784

		/* Don't forget to increase qgroup_rsv_reserved */
		spin_lock(&block_rsv->lock);
		block_rsv->qgroup_rsv_reserved += qgroup_num_bytes;
		spin_unlock(&block_rsv->lock);
J
Josef Bacik 已提交
5785
	}
5786 5787 5788
	return ret;
}

J
Josef Bacik 已提交
5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813
static u64 __btrfs_block_rsv_release(struct btrfs_fs_info *fs_info,
				     struct btrfs_block_rsv *block_rsv,
				     u64 num_bytes, u64 *qgroup_to_release)
{
	struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
	struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_refs_rsv;
	struct btrfs_block_rsv *target = delayed_rsv;

	if (target->full || target == block_rsv)
		target = global_rsv;

	if (block_rsv->space_info != target->space_info)
		target = NULL;

	return block_rsv_release_bytes(fs_info, block_rsv, target, num_bytes,
				       qgroup_to_release);
}

void btrfs_block_rsv_release(struct btrfs_fs_info *fs_info,
			     struct btrfs_block_rsv *block_rsv,
			     u64 num_bytes)
{
	__btrfs_block_rsv_release(fs_info, block_rsv, num_bytes, NULL);
}

5814 5815 5816
/**
 * btrfs_inode_rsv_release - release any excessive reservation.
 * @inode - the inode we need to release from.
5817 5818 5819 5820
 * @qgroup_free - free or convert qgroup meta.
 *   Unlike normal operation, qgroup meta reservation needs to know if we are
 *   freeing qgroup reservation or just converting it into per-trans.  Normally
 *   @qgroup_free is true for error handling, and false for normal release.
5821 5822 5823 5824
 *
 * This is the same as btrfs_block_rsv_release, except that it handles the
 * tracepoint for the reservation.
 */
5825
static void btrfs_inode_rsv_release(struct btrfs_inode *inode, bool qgroup_free)
5826 5827 5828 5829
{
	struct btrfs_fs_info *fs_info = inode->root->fs_info;
	struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
	u64 released = 0;
5830
	u64 qgroup_to_release = 0;
5831 5832 5833 5834 5835 5836

	/*
	 * Since we statically set the block_rsv->size we just want to say we
	 * are releasing 0 bytes, and then we'll just get the reservation over
	 * the size free'd.
	 */
J
Josef Bacik 已提交
5837 5838
	released = __btrfs_block_rsv_release(fs_info, block_rsv, 0,
					     &qgroup_to_release);
5839 5840 5841
	if (released > 0)
		trace_btrfs_space_reservation(fs_info, "delalloc",
					      btrfs_ino(inode), released, 0);
5842
	if (qgroup_free)
5843
		btrfs_qgroup_free_meta_prealloc(inode->root, qgroup_to_release);
5844
	else
5845 5846
		btrfs_qgroup_convert_reserved_meta(inode->root,
						   qgroup_to_release);
5847 5848
}

J
Josef Bacik 已提交
5849 5850 5851 5852 5853 5854 5855 5856 5857
/**
 * btrfs_delayed_refs_rsv_release - release a ref head's reservation.
 * @fs_info - the fs_info for our fs.
 * @nr - the number of items to drop.
 *
 * This drops the delayed ref head's count from the delayed refs rsv and frees
 * any excess reservation we had.
 */
void btrfs_delayed_refs_rsv_release(struct btrfs_fs_info *fs_info, int nr)
5858
{
J
Josef Bacik 已提交
5859
	struct btrfs_block_rsv *block_rsv = &fs_info->delayed_refs_rsv;
5860
	struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
J
Josef Bacik 已提交
5861 5862
	u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, nr);
	u64 released = 0;
5863

J
Josef Bacik 已提交
5864 5865 5866 5867 5868
	released = block_rsv_release_bytes(fs_info, block_rsv, global_rsv,
					   num_bytes, NULL);
	if (released)
		trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
					      0, released, 0);
J
Josef Bacik 已提交
5869 5870
}

5871 5872 5873 5874 5875
static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
{
	struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
	struct btrfs_space_info *sinfo = block_rsv->space_info;
	u64 num_bytes;
J
Josef Bacik 已提交
5876

5877 5878 5879 5880 5881 5882 5883 5884 5885
	/*
	 * The global block rsv is based on the size of the extent tree, the
	 * checksum tree and the root tree.  If the fs is empty we want to set
	 * it to a minimal amount for safety.
	 */
	num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) +
		btrfs_root_used(&fs_info->csum_root->root_item) +
		btrfs_root_used(&fs_info->tree_root->root_item);
	num_bytes = max_t(u64, num_bytes, SZ_16M);
C
Chris Mason 已提交
5886

5887
	spin_lock(&sinfo->lock);
5888
	spin_lock(&block_rsv->lock);
5889

5890
	block_rsv->size = min_t(u64, num_bytes, SZ_512M);
5891

5892
	if (block_rsv->reserved < block_rsv->size) {
5893
		num_bytes = btrfs_space_info_used(sinfo, true);
5894 5895 5896 5897 5898
		if (sinfo->total_bytes > num_bytes) {
			num_bytes = sinfo->total_bytes - num_bytes;
			num_bytes = min(num_bytes,
					block_rsv->size - block_rsv->reserved);
			block_rsv->reserved += num_bytes;
5899
			update_bytes_may_use(sinfo, num_bytes);
5900 5901 5902 5903 5904
			trace_btrfs_space_reservation(fs_info, "space_info",
						      sinfo->flags, num_bytes,
						      1);
		}
	} else if (block_rsv->reserved > block_rsv->size) {
5905
		num_bytes = block_rsv->reserved - block_rsv->size;
5906
		update_bytes_may_use(sinfo, -num_bytes);
J
Josef Bacik 已提交
5907
		trace_btrfs_space_reservation(fs_info, "space_info",
5908
				      sinfo->flags, num_bytes, 0);
5909 5910
		block_rsv->reserved = block_rsv->size;
	}
5911

5912 5913 5914 5915 5916
	if (block_rsv->reserved == block_rsv->size)
		block_rsv->full = 1;
	else
		block_rsv->full = 0;

5917
	spin_unlock(&block_rsv->lock);
5918
	spin_unlock(&sinfo->lock);
J
Josef Bacik 已提交
5919 5920
}

5921
static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
J
Josef Bacik 已提交
5922
{
5923
	struct btrfs_space_info *space_info;
J
Josef Bacik 已提交
5924

5925 5926
	space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
	fs_info->chunk_block_rsv.space_info = space_info;
J
Josef Bacik 已提交
5927

5928
	space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
5929
	fs_info->global_block_rsv.space_info = space_info;
5930 5931
	fs_info->trans_block_rsv.space_info = space_info;
	fs_info->empty_block_rsv.space_info = space_info;
5932
	fs_info->delayed_block_rsv.space_info = space_info;
J
Josef Bacik 已提交
5933
	fs_info->delayed_refs_rsv.space_info = space_info;
5934

J
Josef Bacik 已提交
5935 5936
	fs_info->extent_root->block_rsv = &fs_info->delayed_refs_rsv;
	fs_info->csum_root->block_rsv = &fs_info->delayed_refs_rsv;
5937 5938
	fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
	fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
5939 5940
	if (fs_info->quota_root)
		fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
5941
	fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
5942 5943

	update_global_block_rsv(fs_info);
J
Josef Bacik 已提交
5944 5945
}

5946
static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
J
Josef Bacik 已提交
5947
{
J
Josef Bacik 已提交
5948
	block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
5949
				(u64)-1, NULL);
5950 5951 5952 5953
	WARN_ON(fs_info->trans_block_rsv.size > 0);
	WARN_ON(fs_info->trans_block_rsv.reserved > 0);
	WARN_ON(fs_info->chunk_block_rsv.size > 0);
	WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
5954 5955
	WARN_ON(fs_info->delayed_block_rsv.size > 0);
	WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
J
Josef Bacik 已提交
5956 5957
	WARN_ON(fs_info->delayed_refs_rsv.reserved > 0);
	WARN_ON(fs_info->delayed_refs_rsv.size > 0);
5958 5959
}

J
Josef Bacik 已提交
5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983
/*
 * btrfs_update_delayed_refs_rsv - adjust the size of the delayed refs rsv
 * @trans - the trans that may have generated delayed refs
 *
 * This is to be called anytime we may have adjusted trans->delayed_ref_updates,
 * it'll calculate the additional size and add it to the delayed_refs_rsv.
 */
void btrfs_update_delayed_refs_rsv(struct btrfs_trans_handle *trans)
{
	struct btrfs_fs_info *fs_info = trans->fs_info;
	struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_refs_rsv;
	u64 num_bytes;

	if (!trans->delayed_ref_updates)
		return;

	num_bytes = btrfs_calc_trans_metadata_size(fs_info,
						   trans->delayed_ref_updates);
	spin_lock(&delayed_rsv->lock);
	delayed_rsv->size += num_bytes;
	delayed_rsv->full = 0;
	spin_unlock(&delayed_rsv->lock);
	trans->delayed_ref_updates = 0;
}
J
Josef Bacik 已提交
5984

5985 5986 5987 5988 5989 5990
/*
 * To be called after all the new block groups attached to the transaction
 * handle have been created (btrfs_create_pending_block_groups()).
 */
void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
{
5991
	struct btrfs_fs_info *fs_info = trans->fs_info;
5992 5993 5994 5995 5996 5997 5998

	if (!trans->chunk_bytes_reserved)
		return;

	WARN_ON_ONCE(!list_empty(&trans->new_bgs));

	block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
5999
				trans->chunk_bytes_reserved, NULL);
6000 6001 6002
	trans->chunk_bytes_reserved = 0;
}

6003 6004 6005 6006 6007
/*
 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
 * root: the root of the parent directory
 * rsv: block reservation
 * items: the number of items that we need do reservation
6008
 * use_global_rsv: allow fallback to the global block reservation
6009 6010 6011 6012 6013 6014
 *
 * This function is used to reserve the space for snapshot/subvolume
 * creation and deletion. Those operations are different with the
 * common file/directory operations, they change two fs/file trees
 * and root tree, the number of items that the qgroup reserves is
 * different with the free space reservation. So we can not use
6015
 * the space reservation mechanism in start_transaction().
6016 6017
 */
int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
6018
				     struct btrfs_block_rsv *rsv, int items,
6019
				     bool use_global_rsv)
6020
{
6021
	u64 qgroup_num_bytes = 0;
6022 6023
	u64 num_bytes;
	int ret;
6024 6025
	struct btrfs_fs_info *fs_info = root->fs_info;
	struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
6026

6027
	if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
6028
		/* One for parent inode, two for dir entries */
6029 6030 6031
		qgroup_num_bytes = 3 * fs_info->nodesize;
		ret = btrfs_qgroup_reserve_meta_prealloc(root,
				qgroup_num_bytes, true);
6032 6033 6034 6035
		if (ret)
			return ret;
	}

6036 6037
	num_bytes = btrfs_calc_trans_metadata_size(fs_info, items);
	rsv->space_info = __find_space_info(fs_info,
6038 6039 6040
					    BTRFS_BLOCK_GROUP_METADATA);
	ret = btrfs_block_rsv_add(root, rsv, num_bytes,
				  BTRFS_RESERVE_FLUSH_ALL);
6041 6042

	if (ret == -ENOSPC && use_global_rsv)
6043
		ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, true);
6044

6045 6046
	if (ret && qgroup_num_bytes)
		btrfs_qgroup_free_meta_prealloc(root, qgroup_num_bytes);
6047 6048 6049 6050

	return ret;
}

6051
void btrfs_subvolume_release_metadata(struct btrfs_fs_info *fs_info,
6052
				      struct btrfs_block_rsv *rsv)
6053
{
6054
	btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
6055 6056
}

6057 6058
static void btrfs_calculate_inode_block_rsv_size(struct btrfs_fs_info *fs_info,
						 struct btrfs_inode *inode)
6059
{
6060 6061
	struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
	u64 reserve_size = 0;
6062
	u64 qgroup_rsv_size = 0;
6063 6064
	u64 csum_leaves;
	unsigned outstanding_extents;
6065

6066 6067 6068 6069 6070 6071 6072 6073 6074
	lockdep_assert_held(&inode->lock);
	outstanding_extents = inode->outstanding_extents;
	if (outstanding_extents)
		reserve_size = btrfs_calc_trans_metadata_size(fs_info,
						outstanding_extents + 1);
	csum_leaves = btrfs_csum_bytes_to_leaves(fs_info,
						 inode->csum_bytes);
	reserve_size += btrfs_calc_trans_metadata_size(fs_info,
						       csum_leaves);
6075 6076 6077 6078 6079 6080
	/*
	 * For qgroup rsv, the calculation is very simple:
	 * account one nodesize for each outstanding extent
	 *
	 * This is overestimating in most cases.
	 */
6081
	qgroup_rsv_size = (u64)outstanding_extents * fs_info->nodesize;
6082

6083 6084
	spin_lock(&block_rsv->lock);
	block_rsv->size = reserve_size;
6085
	block_rsv->qgroup_rsv_size = qgroup_rsv_size;
6086
	spin_unlock(&block_rsv->lock);
6087
}
Y
Yan Zheng 已提交
6088

6089
int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes)
6090
{
6091
	struct btrfs_fs_info *fs_info = inode->root->fs_info;
6092
	unsigned nr_extents;
M
Miao Xie 已提交
6093
	enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
6094
	int ret = 0;
6095
	bool delalloc_lock = true;
6096

6097 6098 6099 6100
	/* If we are a free space inode we need to not flush since we will be in
	 * the middle of a transaction commit.  We also don't need the delalloc
	 * mutex since we won't race with anybody.  We need this mostly to make
	 * lockdep shut its filthy mouth.
6101 6102 6103
	 *
	 * If we have a transaction open (can happen if we call truncate_block
	 * from truncate), then we need FLUSH_LIMIT so we don't deadlock.
6104 6105
	 */
	if (btrfs_is_free_space_inode(inode)) {
M
Miao Xie 已提交
6106
		flush = BTRFS_RESERVE_NO_FLUSH;
6107
		delalloc_lock = false;
6108 6109 6110
	} else {
		if (current->journal_info)
			flush = BTRFS_RESERVE_FLUSH_LIMIT;
6111

6112 6113 6114
		if (btrfs_transaction_in_commit(fs_info))
			schedule_timeout(1);
	}
6115

6116
	if (delalloc_lock)
6117
		mutex_lock(&inode->delalloc_mutex);
6118

6119
	num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
6120 6121

	/* Add our new extents and calculate the new rsv size. */
6122
	spin_lock(&inode->lock);
6123
	nr_extents = count_max_extents(num_bytes);
J
Josef Bacik 已提交
6124
	btrfs_mod_outstanding_extents(inode, nr_extents);
6125 6126
	inode->csum_bytes += num_bytes;
	btrfs_calculate_inode_block_rsv_size(fs_info, inode);
6127
	spin_unlock(&inode->lock);
6128

6129
	ret = btrfs_inode_rsv_refill(inode, flush);
6130
	if (unlikely(ret))
6131
		goto out_fail;
6132

6133
	if (delalloc_lock)
6134
		mutex_unlock(&inode->delalloc_mutex);
6135
	return 0;
6136 6137

out_fail:
6138
	spin_lock(&inode->lock);
J
Josef Bacik 已提交
6139 6140
	nr_extents = count_max_extents(num_bytes);
	btrfs_mod_outstanding_extents(inode, -nr_extents);
6141 6142
	inode->csum_bytes -= num_bytes;
	btrfs_calculate_inode_block_rsv_size(fs_info, inode);
6143
	spin_unlock(&inode->lock);
6144

6145
	btrfs_inode_rsv_release(inode, true);
6146
	if (delalloc_lock)
6147
		mutex_unlock(&inode->delalloc_mutex);
6148
	return ret;
6149 6150
}

6151 6152
/**
 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
J
Josef Bacik 已提交
6153 6154
 * @inode: the inode to release the reservation for.
 * @num_bytes: the number of bytes we are releasing.
6155
 * @qgroup_free: free qgroup reservation or convert it to per-trans reservation
6156 6157 6158
 *
 * This will release the metadata reservation for an inode.  This can be called
 * once we complete IO for a given set of bytes to release their metadata
J
Josef Bacik 已提交
6159
 * reservations, or on error for the same reason.
6160
 */
6161 6162
void btrfs_delalloc_release_metadata(struct btrfs_inode *inode, u64 num_bytes,
				     bool qgroup_free)
6163
{
6164
	struct btrfs_fs_info *fs_info = inode->root->fs_info;
6165

6166
	num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
6167
	spin_lock(&inode->lock);
6168 6169
	inode->csum_bytes -= num_bytes;
	btrfs_calculate_inode_block_rsv_size(fs_info, inode);
6170
	spin_unlock(&inode->lock);
6171

6172
	if (btrfs_is_testing(fs_info))
6173 6174
		return;

6175
	btrfs_inode_rsv_release(inode, qgroup_free);
6176 6177
}

J
Josef Bacik 已提交
6178 6179 6180 6181
/**
 * btrfs_delalloc_release_extents - release our outstanding_extents
 * @inode: the inode to balance the reservation for.
 * @num_bytes: the number of bytes we originally reserved with
6182
 * @qgroup_free: do we need to free qgroup meta reservation or convert them.
J
Josef Bacik 已提交
6183 6184 6185 6186 6187 6188 6189
 *
 * When we reserve space we increase outstanding_extents for the extents we may
 * add.  Once we've set the range as delalloc or created our ordered extents we
 * have outstanding_extents to track the real usage, so we use this to free our
 * temporarily tracked outstanding_extents.  This _must_ be used in conjunction
 * with btrfs_delalloc_reserve_metadata.
 */
6190 6191
void btrfs_delalloc_release_extents(struct btrfs_inode *inode, u64 num_bytes,
				    bool qgroup_free)
J
Josef Bacik 已提交
6192
{
6193
	struct btrfs_fs_info *fs_info = inode->root->fs_info;
J
Josef Bacik 已提交
6194 6195 6196 6197 6198
	unsigned num_extents;

	spin_lock(&inode->lock);
	num_extents = count_max_extents(num_bytes);
	btrfs_mod_outstanding_extents(inode, -num_extents);
6199
	btrfs_calculate_inode_block_rsv_size(fs_info, inode);
J
Josef Bacik 已提交
6200 6201 6202 6203 6204
	spin_unlock(&inode->lock);

	if (btrfs_is_testing(fs_info))
		return;

6205
	btrfs_inode_rsv_release(inode, qgroup_free);
J
Josef Bacik 已提交
6206 6207
}

6208
/**
6209
 * btrfs_delalloc_reserve_space - reserve data and metadata space for
6210 6211 6212 6213
 * delalloc
 * @inode: inode we're writing to
 * @start: start range we are writing to
 * @len: how long the range we are writing to
6214 6215
 * @reserved: mandatory parameter, record actually reserved qgroup ranges of
 * 	      current reservation.
6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232
 *
 * This will do the following things
 *
 * o reserve space in data space info for num bytes
 *   and reserve precious corresponding qgroup space
 *   (Done in check_data_free_space)
 *
 * o reserve space for metadata space, based on the number of outstanding
 *   extents and how much csums will be needed
 *   also reserve metadata space in a per root over-reserve method.
 * o add to the inodes->delalloc_bytes
 * o add it to the fs_info's delalloc inodes list.
 *   (Above 3 all done in delalloc_reserve_metadata)
 *
 * Return 0 for success
 * Return <0 for error(-ENOSPC or -EQUOT)
 */
6233 6234
int btrfs_delalloc_reserve_space(struct inode *inode,
			struct extent_changeset **reserved, u64 start, u64 len)
6235 6236 6237
{
	int ret;

6238
	ret = btrfs_check_data_free_space(inode, reserved, start, len);
6239 6240
	if (ret < 0)
		return ret;
6241
	ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode), len);
6242
	if (ret < 0)
6243
		btrfs_free_reserved_data_space(inode, *reserved, start, len);
6244 6245 6246
	return ret;
}

6247
/**
6248
 * btrfs_delalloc_release_space - release data and metadata space for delalloc
6249 6250 6251
 * @inode: inode we're releasing space for
 * @start: start position of the space already reserved
 * @len: the len of the space already reserved
J
Josef Bacik 已提交
6252
 * @release_bytes: the len of the space we consumed or didn't use
6253 6254 6255 6256 6257 6258
 *
 * This function will release the metadata space that was not used and will
 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
 * list if there are no delalloc bytes left.
 * Also it will handle the qgroup reserved space.
 */
6259
void btrfs_delalloc_release_space(struct inode *inode,
J
Josef Bacik 已提交
6260
				  struct extent_changeset *reserved,
6261
				  u64 start, u64 len, bool qgroup_free)
6262
{
6263
	btrfs_delalloc_release_metadata(BTRFS_I(inode), len, qgroup_free);
6264
	btrfs_free_reserved_data_space(inode, reserved, start, len);
6265 6266
}

6267
static int update_block_group(struct btrfs_trans_handle *trans,
6268
			      u64 bytenr, u64 num_bytes, int alloc)
C
Chris Mason 已提交
6269
{
6270
	struct btrfs_fs_info *info = trans->fs_info;
6271
	struct btrfs_block_group_cache *cache = NULL;
6272
	u64 total = num_bytes;
C
Chris Mason 已提交
6273
	u64 old_val;
6274
	u64 byte_in_group;
6275
	int factor;
J
Josef Bacik 已提交
6276
	int ret = 0;
C
Chris Mason 已提交
6277

6278
	/* block accounting for super block */
6279
	spin_lock(&info->delalloc_root_lock);
6280
	old_val = btrfs_super_bytes_used(info->super_copy);
6281 6282 6283 6284
	if (alloc)
		old_val += num_bytes;
	else
		old_val -= num_bytes;
6285
	btrfs_set_super_bytes_used(info->super_copy, old_val);
6286
	spin_unlock(&info->delalloc_root_lock);
6287

C
Chris Mason 已提交
6288
	while (total) {
6289
		cache = btrfs_lookup_block_group(info, bytenr);
J
Josef Bacik 已提交
6290 6291 6292 6293
		if (!cache) {
			ret = -ENOENT;
			break;
		}
6294 6295
		factor = btrfs_bg_type_to_factor(cache->flags);

6296 6297 6298 6299 6300 6301 6302
		/*
		 * If this block group has free space cache written out, we
		 * need to make sure to load it if we are removing space.  This
		 * is because we need the unpinning stage to actually add the
		 * space back to the block group, otherwise we will leak space.
		 */
		if (!alloc && cache->cached == BTRFS_CACHE_NO)
6303
			cache_block_group(cache, 1);
6304

6305 6306
		byte_in_group = bytenr - cache->key.objectid;
		WARN_ON(byte_in_group > cache->key.offset);
C
Chris Mason 已提交
6307

6308
		spin_lock(&cache->space_info->lock);
6309
		spin_lock(&cache->lock);
6310

6311
		if (btrfs_test_opt(info, SPACE_CACHE) &&
6312 6313 6314
		    cache->disk_cache_state < BTRFS_DC_CLEAR)
			cache->disk_cache_state = BTRFS_DC_CLEAR;

C
Chris Mason 已提交
6315
		old_val = btrfs_block_group_used(&cache->item);
6316
		num_bytes = min(total, cache->key.offset - byte_in_group);
C
Chris Mason 已提交
6317
		if (alloc) {
6318
			old_val += num_bytes;
6319 6320 6321
			btrfs_set_block_group_used(&cache->item, old_val);
			cache->reserved -= num_bytes;
			cache->space_info->bytes_reserved -= num_bytes;
6322 6323
			cache->space_info->bytes_used += num_bytes;
			cache->space_info->disk_used += num_bytes * factor;
6324
			spin_unlock(&cache->lock);
6325
			spin_unlock(&cache->space_info->lock);
C
Chris Mason 已提交
6326
		} else {
6327
			old_val -= num_bytes;
6328 6329
			btrfs_set_block_group_used(&cache->item, old_val);
			cache->pinned += num_bytes;
6330
			update_bytes_pinned(cache->space_info, num_bytes);
6331 6332 6333 6334
			cache->space_info->bytes_used -= num_bytes;
			cache->space_info->disk_used -= num_bytes * factor;
			spin_unlock(&cache->lock);
			spin_unlock(&cache->space_info->lock);
6335

6336
			trace_btrfs_space_reservation(info, "pinned",
J
Josef Bacik 已提交
6337 6338
						      cache->space_info->flags,
						      num_bytes, 1);
6339 6340 6341
			percpu_counter_add_batch(&cache->space_info->total_bytes_pinned,
					   num_bytes,
					   BTRFS_TOTAL_BYTES_PINNED_BATCH);
6342 6343 6344
			set_extent_dirty(info->pinned_extents,
					 bytenr, bytenr + num_bytes - 1,
					 GFP_NOFS | __GFP_NOFAIL);
C
Chris Mason 已提交
6345
		}
6346 6347 6348 6349 6350

		spin_lock(&trans->transaction->dirty_bgs_lock);
		if (list_empty(&cache->dirty_list)) {
			list_add_tail(&cache->dirty_list,
				      &trans->transaction->dirty_bgs);
J
Josef Bacik 已提交
6351
			trans->delayed_ref_updates++;
6352 6353 6354 6355
			btrfs_get_block_group(cache);
		}
		spin_unlock(&trans->transaction->dirty_bgs_lock);

6356 6357 6358 6359 6360 6361
		/*
		 * No longer have used bytes in this block group, queue it for
		 * deletion. We do this after adding the block group to the
		 * dirty list to avoid races between cleaner kthread and space
		 * cache writeout.
		 */
6362 6363
		if (!alloc && old_val == 0)
			btrfs_mark_bg_unused(cache);
6364

6365
		btrfs_put_block_group(cache);
6366 6367
		total -= num_bytes;
		bytenr += num_bytes;
C
Chris Mason 已提交
6368
	}
J
Josef Bacik 已提交
6369 6370 6371 6372

	/* Modified block groups are accounted for in the delayed_refs_rsv. */
	btrfs_update_delayed_refs_rsv(trans);
	return ret;
C
Chris Mason 已提交
6373
}
6374

6375
static u64 first_logical_byte(struct btrfs_fs_info *fs_info, u64 search_start)
6376
{
J
Josef Bacik 已提交
6377
	struct btrfs_block_group_cache *cache;
6378
	u64 bytenr;
J
Josef Bacik 已提交
6379

6380 6381 6382
	spin_lock(&fs_info->block_group_cache_lock);
	bytenr = fs_info->first_logical_byte;
	spin_unlock(&fs_info->block_group_cache_lock);
6383 6384 6385 6386

	if (bytenr < (u64)-1)
		return bytenr;

6387
	cache = btrfs_lookup_first_block_group(fs_info, search_start);
J
Josef Bacik 已提交
6388
	if (!cache)
6389
		return 0;
J
Josef Bacik 已提交
6390

6391
	bytenr = cache->key.objectid;
6392
	btrfs_put_block_group(cache);
6393 6394

	return bytenr;
6395 6396
}

6397
static int pin_down_extent(struct btrfs_block_group_cache *cache,
6398
			   u64 bytenr, u64 num_bytes, int reserved)
6399
{
6400 6401
	struct btrfs_fs_info *fs_info = cache->fs_info;

6402 6403 6404
	spin_lock(&cache->space_info->lock);
	spin_lock(&cache->lock);
	cache->pinned += num_bytes;
6405
	update_bytes_pinned(cache->space_info, num_bytes);
6406 6407 6408 6409 6410 6411
	if (reserved) {
		cache->reserved -= num_bytes;
		cache->space_info->bytes_reserved -= num_bytes;
	}
	spin_unlock(&cache->lock);
	spin_unlock(&cache->space_info->lock);
J
Josef Bacik 已提交
6412

6413
	trace_btrfs_space_reservation(fs_info, "pinned",
J
Josef Bacik 已提交
6414
				      cache->space_info->flags, num_bytes, 1);
6415 6416
	percpu_counter_add_batch(&cache->space_info->total_bytes_pinned,
		    num_bytes, BTRFS_TOTAL_BYTES_PINNED_BATCH);
6417
	set_extent_dirty(fs_info->pinned_extents, bytenr,
6418 6419 6420
			 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
	return 0;
}
J
Josef Bacik 已提交
6421

6422 6423 6424
/*
 * this function must be called within transaction
 */
6425
int btrfs_pin_extent(struct btrfs_fs_info *fs_info,
6426 6427 6428
		     u64 bytenr, u64 num_bytes, int reserved)
{
	struct btrfs_block_group_cache *cache;
J
Josef Bacik 已提交
6429

6430
	cache = btrfs_lookup_block_group(fs_info, bytenr);
6431
	BUG_ON(!cache); /* Logic error */
6432

6433
	pin_down_extent(cache, bytenr, num_bytes, reserved);
6434 6435

	btrfs_put_block_group(cache);
6436 6437 6438
	return 0;
}

6439
/*
6440 6441
 * this function must be called within transaction
 */
6442
int btrfs_pin_extent_for_log_replay(struct btrfs_fs_info *fs_info,
6443 6444 6445
				    u64 bytenr, u64 num_bytes)
{
	struct btrfs_block_group_cache *cache;
6446
	int ret;
6447

6448
	cache = btrfs_lookup_block_group(fs_info, bytenr);
6449 6450
	if (!cache)
		return -EINVAL;
6451 6452 6453 6454 6455 6456 6457

	/*
	 * pull in the free space cache (if any) so that our pin
	 * removes the free space from the cache.  We have load_only set
	 * to one because the slow code to read in the free extents does check
	 * the pinned extents.
	 */
6458
	cache_block_group(cache, 1);
6459

6460
	pin_down_extent(cache, bytenr, num_bytes, 0);
6461 6462

	/* remove us from the free space cache (if we're there at all) */
6463
	ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
6464
	btrfs_put_block_group(cache);
6465
	return ret;
6466 6467
}

6468 6469
static int __exclude_logged_extent(struct btrfs_fs_info *fs_info,
				   u64 start, u64 num_bytes)
6470 6471 6472 6473 6474
{
	int ret;
	struct btrfs_block_group_cache *block_group;
	struct btrfs_caching_control *caching_ctl;

6475
	block_group = btrfs_lookup_block_group(fs_info, start);
6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489
	if (!block_group)
		return -EINVAL;

	cache_block_group(block_group, 0);
	caching_ctl = get_caching_control(block_group);

	if (!caching_ctl) {
		/* Logic error */
		BUG_ON(!block_group_cache_done(block_group));
		ret = btrfs_remove_free_space(block_group, start, num_bytes);
	} else {
		mutex_lock(&caching_ctl->mutex);

		if (start >= caching_ctl->progress) {
6490
			ret = add_excluded_extent(fs_info, start, num_bytes);
6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503
		} else if (start + num_bytes <= caching_ctl->progress) {
			ret = btrfs_remove_free_space(block_group,
						      start, num_bytes);
		} else {
			num_bytes = caching_ctl->progress - start;
			ret = btrfs_remove_free_space(block_group,
						      start, num_bytes);
			if (ret)
				goto out_lock;

			num_bytes = (start + num_bytes) -
				caching_ctl->progress;
			start = caching_ctl->progress;
6504
			ret = add_excluded_extent(fs_info, start, num_bytes);
6505 6506 6507 6508 6509 6510 6511 6512 6513
		}
out_lock:
		mutex_unlock(&caching_ctl->mutex);
		put_caching_control(caching_ctl);
	}
	btrfs_put_block_group(block_group);
	return ret;
}

6514
int btrfs_exclude_logged_extents(struct extent_buffer *eb)
6515
{
6516
	struct btrfs_fs_info *fs_info = eb->fs_info;
6517 6518 6519 6520
	struct btrfs_file_extent_item *item;
	struct btrfs_key key;
	int found_type;
	int i;
6521
	int ret = 0;
6522

6523
	if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS))
6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537
		return 0;

	for (i = 0; i < btrfs_header_nritems(eb); i++) {
		btrfs_item_key_to_cpu(eb, &key, i);
		if (key.type != BTRFS_EXTENT_DATA_KEY)
			continue;
		item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
		found_type = btrfs_file_extent_type(eb, item);
		if (found_type == BTRFS_FILE_EXTENT_INLINE)
			continue;
		if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
			continue;
		key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
		key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
6538 6539 6540
		ret = __exclude_logged_extent(fs_info, key.objectid, key.offset);
		if (ret)
			break;
6541 6542
	}

6543
	return ret;
6544 6545
}

6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559
static void
btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg)
{
	atomic_inc(&bg->reservations);
}

void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
					const u64 start)
{
	struct btrfs_block_group_cache *bg;

	bg = btrfs_lookup_block_group(fs_info, start);
	ASSERT(bg);
	if (atomic_dec_and_test(&bg->reservations))
6560
		wake_up_var(&bg->reservations);
6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585
	btrfs_put_block_group(bg);
}

void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg)
{
	struct btrfs_space_info *space_info = bg->space_info;

	ASSERT(bg->ro);

	if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA))
		return;

	/*
	 * Our block group is read only but before we set it to read only,
	 * some task might have had allocated an extent from it already, but it
	 * has not yet created a respective ordered extent (and added it to a
	 * root's list of ordered extents).
	 * Therefore wait for any task currently allocating extents, since the
	 * block group's reservations counter is incremented while a read lock
	 * on the groups' semaphore is held and decremented after releasing
	 * the read access on that semaphore and creating the ordered extent.
	 */
	down_write(&space_info->groups_sem);
	up_write(&space_info->groups_sem);

6586
	wait_var_event(&bg->reservations, !atomic_read(&bg->reservations));
6587 6588
}

6589
/**
6590
 * btrfs_add_reserved_bytes - update the block_group and space info counters
6591
 * @cache:	The cache we are manipulating
6592 6593
 * @ram_bytes:  The number of bytes of file content, and will be same to
 *              @num_bytes except for the compress path.
6594
 * @num_bytes:	The number of bytes in question
6595
 * @delalloc:   The blocks are allocated for the delalloc write
6596
 *
X
Xiaoguang Wang 已提交
6597 6598 6599
 * This is called by the allocator when it reserves space. If this is a
 * reservation and the block group has become read only we cannot make the
 * reservation and return -EAGAIN, otherwise this function always succeeds.
6600
 */
6601
static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
6602
				    u64 ram_bytes, u64 num_bytes, int delalloc)
6603
{
6604
	struct btrfs_space_info *space_info = cache->space_info;
6605
	int ret = 0;
6606

6607 6608
	spin_lock(&space_info->lock);
	spin_lock(&cache->lock);
6609 6610
	if (cache->ro) {
		ret = -EAGAIN;
6611
	} else {
6612 6613
		cache->reserved += num_bytes;
		space_info->bytes_reserved += num_bytes;
6614
		update_bytes_may_use(space_info, -ram_bytes);
6615
		if (delalloc)
6616
			cache->delalloc_bytes += num_bytes;
6617
	}
6618 6619
	spin_unlock(&cache->lock);
	spin_unlock(&space_info->lock);
6620
	return ret;
6621
}
C
Chris Mason 已提交
6622

6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634
/**
 * btrfs_free_reserved_bytes - update the block_group and space info counters
 * @cache:      The cache we are manipulating
 * @num_bytes:  The number of bytes in question
 * @delalloc:   The blocks are allocated for the delalloc write
 *
 * This is called by somebody who is freeing space that was never actually used
 * on disk.  For example if you reserve some space for a new leaf in transaction
 * A and before transaction A commits you free that leaf, you call this with
 * reserve set to 0 in order to clear the reservation.
 */

6635 6636
static void btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
				      u64 num_bytes, int delalloc)
6637 6638 6639 6640 6641 6642 6643 6644 6645
{
	struct btrfs_space_info *space_info = cache->space_info;

	spin_lock(&space_info->lock);
	spin_lock(&cache->lock);
	if (cache->ro)
		space_info->bytes_readonly += num_bytes;
	cache->reserved -= num_bytes;
	space_info->bytes_reserved -= num_bytes;
6646
	space_info->max_extent_size = 0;
6647 6648 6649 6650 6651 6652

	if (delalloc)
		cache->delalloc_bytes -= num_bytes;
	spin_unlock(&cache->lock);
	spin_unlock(&space_info->lock);
}
6653
void btrfs_prepare_extent_commit(struct btrfs_fs_info *fs_info)
6654
{
6655 6656 6657
	struct btrfs_caching_control *next;
	struct btrfs_caching_control *caching_ctl;
	struct btrfs_block_group_cache *cache;
6658

6659
	down_write(&fs_info->commit_root_sem);
6660

6661 6662 6663 6664 6665 6666 6667
	list_for_each_entry_safe(caching_ctl, next,
				 &fs_info->caching_block_groups, list) {
		cache = caching_ctl->block_group;
		if (block_group_cache_done(cache)) {
			cache->last_byte_to_unpin = (u64)-1;
			list_del_init(&caching_ctl->list);
			put_caching_control(caching_ctl);
6668
		} else {
6669
			cache->last_byte_to_unpin = caching_ctl->progress;
6670 6671
		}
	}
6672 6673 6674 6675 6676 6677

	if (fs_info->pinned_extents == &fs_info->freed_extents[0])
		fs_info->pinned_extents = &fs_info->freed_extents[1];
	else
		fs_info->pinned_extents = &fs_info->freed_extents[0];

6678
	up_write(&fs_info->commit_root_sem);
6679 6680

	update_global_block_rsv(fs_info);
6681 6682
}

6683 6684 6685 6686 6687
/*
 * Returns the free cluster for the given space info and sets empty_cluster to
 * what it should be based on the mount options.
 */
static struct btrfs_free_cluster *
6688 6689
fetch_cluster_info(struct btrfs_fs_info *fs_info,
		   struct btrfs_space_info *space_info, u64 *empty_cluster)
6690 6691 6692 6693 6694 6695 6696 6697
{
	struct btrfs_free_cluster *ret = NULL;

	*empty_cluster = 0;
	if (btrfs_mixed_space_info(space_info))
		return ret;

	if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
6698
		ret = &fs_info->meta_alloc_cluster;
6699 6700 6701
		if (btrfs_test_opt(fs_info, SSD))
			*empty_cluster = SZ_2M;
		else
6702
			*empty_cluster = SZ_64K;
6703 6704 6705
	} else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) &&
		   btrfs_test_opt(fs_info, SSD_SPREAD)) {
		*empty_cluster = SZ_2M;
6706
		ret = &fs_info->data_alloc_cluster;
6707 6708 6709 6710 6711
	}

	return ret;
}

6712 6713
static int unpin_extent_range(struct btrfs_fs_info *fs_info,
			      u64 start, u64 end,
6714
			      const bool return_free_space)
C
Chris Mason 已提交
6715
{
6716
	struct btrfs_block_group_cache *cache = NULL;
6717 6718
	struct btrfs_space_info *space_info;
	struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
6719
	struct btrfs_free_cluster *cluster = NULL;
6720
	u64 len;
6721 6722
	u64 total_unpinned = 0;
	u64 empty_cluster = 0;
6723
	bool readonly;
C
Chris Mason 已提交
6724

6725
	while (start <= end) {
6726
		readonly = false;
6727 6728 6729 6730
		if (!cache ||
		    start >= cache->key.objectid + cache->key.offset) {
			if (cache)
				btrfs_put_block_group(cache);
6731
			total_unpinned = 0;
6732
			cache = btrfs_lookup_block_group(fs_info, start);
6733
			BUG_ON(!cache); /* Logic error */
6734

6735
			cluster = fetch_cluster_info(fs_info,
6736 6737 6738
						     cache->space_info,
						     &empty_cluster);
			empty_cluster <<= 1;
6739 6740 6741 6742 6743 6744 6745
		}

		len = cache->key.objectid + cache->key.offset - start;
		len = min(len, end + 1 - start);

		if (start < cache->last_byte_to_unpin) {
			len = min(len, cache->last_byte_to_unpin - start);
6746 6747
			if (return_free_space)
				btrfs_add_free_space(cache, start, len);
6748 6749
		}

6750
		start += len;
6751
		total_unpinned += len;
6752
		space_info = cache->space_info;
6753

6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766
		/*
		 * If this space cluster has been marked as fragmented and we've
		 * unpinned enough in this block group to potentially allow a
		 * cluster to be created inside of it go ahead and clear the
		 * fragmented check.
		 */
		if (cluster && cluster->fragmented &&
		    total_unpinned > empty_cluster) {
			spin_lock(&cluster->lock);
			cluster->fragmented = 0;
			spin_unlock(&cluster->lock);
		}

6767
		spin_lock(&space_info->lock);
6768 6769
		spin_lock(&cache->lock);
		cache->pinned -= len;
6770
		update_bytes_pinned(space_info, -len);
J
Josef Bacik 已提交
6771 6772 6773

		trace_btrfs_space_reservation(fs_info, "pinned",
					      space_info->flags, len, 0);
6774
		space_info->max_extent_size = 0;
6775 6776
		percpu_counter_add_batch(&space_info->total_bytes_pinned,
			    -len, BTRFS_TOTAL_BYTES_PINNED_BATCH);
6777 6778 6779 6780
		if (cache->ro) {
			space_info->bytes_readonly += len;
			readonly = true;
		}
6781
		spin_unlock(&cache->lock);
6782 6783 6784
		if (!readonly && return_free_space &&
		    global_rsv->space_info == space_info) {
			u64 to_add = len;
6785

6786 6787
			spin_lock(&global_rsv->lock);
			if (!global_rsv->full) {
6788 6789 6790
				to_add = min(len, global_rsv->size -
					     global_rsv->reserved);
				global_rsv->reserved += to_add;
6791
				update_bytes_may_use(space_info, to_add);
6792 6793
				if (global_rsv->reserved >= global_rsv->size)
					global_rsv->full = 1;
6794 6795 6796 6797 6798
				trace_btrfs_space_reservation(fs_info,
							      "space_info",
							      space_info->flags,
							      to_add, 1);
				len -= to_add;
6799 6800
			}
			spin_unlock(&global_rsv->lock);
6801 6802 6803 6804
			/* Add to any tickets we may have */
			if (len)
				space_info_add_new_bytes(fs_info, space_info,
							 len);
6805 6806
		}
		spin_unlock(&space_info->lock);
C
Chris Mason 已提交
6807
	}
6808 6809 6810

	if (cache)
		btrfs_put_block_group(cache);
C
Chris Mason 已提交
6811 6812 6813
	return 0;
}

6814
int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans)
6815
{
6816
	struct btrfs_fs_info *fs_info = trans->fs_info;
6817 6818
	struct btrfs_block_group_cache *block_group, *tmp;
	struct list_head *deleted_bgs;
6819
	struct extent_io_tree *unpin;
6820 6821
	u64 start;
	u64 end;
6822 6823
	int ret;

6824 6825 6826 6827 6828
	if (fs_info->pinned_extents == &fs_info->freed_extents[0])
		unpin = &fs_info->freed_extents[1];
	else
		unpin = &fs_info->freed_extents[0];

6829
	while (!trans->aborted) {
6830 6831
		struct extent_state *cached_state = NULL;

6832
		mutex_lock(&fs_info->unused_bg_unpin_mutex);
6833
		ret = find_first_extent_bit(unpin, 0, &start, &end,
6834
					    EXTENT_DIRTY, &cached_state);
6835 6836
		if (ret) {
			mutex_unlock(&fs_info->unused_bg_unpin_mutex);
6837
			break;
6838
		}
6839

6840
		if (btrfs_test_opt(fs_info, DISCARD))
6841
			ret = btrfs_discard_extent(fs_info, start,
6842
						   end + 1 - start, NULL);
6843

6844
		clear_extent_dirty(unpin, start, end, &cached_state);
6845
		unpin_extent_range(fs_info, start, end, true);
6846
		mutex_unlock(&fs_info->unused_bg_unpin_mutex);
6847
		free_extent_state(cached_state);
6848
		cond_resched();
6849
	}
J
Josef Bacik 已提交
6850

6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861
	/*
	 * Transaction is finished.  We don't need the lock anymore.  We
	 * do need to clean up the block groups in case of a transaction
	 * abort.
	 */
	deleted_bgs = &trans->transaction->deleted_bgs;
	list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
		u64 trimmed = 0;

		ret = -EROFS;
		if (!trans->aborted)
6862
			ret = btrfs_discard_extent(fs_info,
6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873
						   block_group->key.objectid,
						   block_group->key.offset,
						   &trimmed);

		list_del_init(&block_group->bg_list);
		btrfs_put_block_group_trimming(block_group);
		btrfs_put_block_group(block_group);

		if (ret) {
			const char *errstr = btrfs_decode_error(ret);
			btrfs_warn(fs_info,
6874
			   "discard failed while removing blockgroup: errno=%d %s",
6875 6876 6877 6878
				   ret, errstr);
		}
	}

C
Chris Mason 已提交
6879 6880 6881
	return 0;
}

6882
static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
6883 6884 6885 6886
			       struct btrfs_delayed_ref_node *node, u64 parent,
			       u64 root_objectid, u64 owner_objectid,
			       u64 owner_offset, int refs_to_drop,
			       struct btrfs_delayed_extent_op *extent_op)
6887
{
6888
	struct btrfs_fs_info *info = trans->fs_info;
C
Chris Mason 已提交
6889
	struct btrfs_key key;
6890
	struct btrfs_path *path;
6891
	struct btrfs_root *extent_root = info->extent_root;
6892
	struct extent_buffer *leaf;
6893 6894
	struct btrfs_extent_item *ei;
	struct btrfs_extent_inline_ref *iref;
6895
	int ret;
6896
	int is_data;
6897 6898 6899
	int extent_slot = 0;
	int found_extent = 0;
	int num_to_del = 1;
6900 6901
	u32 item_size;
	u64 refs;
6902 6903
	u64 bytenr = node->bytenr;
	u64 num_bytes = node->num_bytes;
J
Josef Bacik 已提交
6904
	int last_ref = 0;
6905
	bool skinny_metadata = btrfs_fs_incompat(info, SKINNY_METADATA);
C
Chris Mason 已提交
6906

6907
	path = btrfs_alloc_path();
6908 6909
	if (!path)
		return -ENOMEM;
6910

6911
	path->reada = READA_FORWARD;
6912
	path->leave_spinning = 1;
6913 6914 6915 6916

	is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
	BUG_ON(!is_data && refs_to_drop != 1);

6917
	if (is_data)
6918
		skinny_metadata = false;
6919

6920 6921
	ret = lookup_extent_backref(trans, path, &iref, bytenr, num_bytes,
				    parent, root_objectid, owner_objectid,
6922
				    owner_offset);
6923
	if (ret == 0) {
6924
		extent_slot = path->slots[0];
6925 6926
		while (extent_slot >= 0) {
			btrfs_item_key_to_cpu(path->nodes[0], &key,
6927
					      extent_slot);
6928
			if (key.objectid != bytenr)
6929
				break;
6930 6931
			if (key.type == BTRFS_EXTENT_ITEM_KEY &&
			    key.offset == num_bytes) {
6932 6933 6934
				found_extent = 1;
				break;
			}
6935 6936 6937 6938 6939
			if (key.type == BTRFS_METADATA_ITEM_KEY &&
			    key.offset == owner_objectid) {
				found_extent = 1;
				break;
			}
6940 6941
			if (path->slots[0] - extent_slot > 5)
				break;
6942
			extent_slot--;
6943
		}
6944

Z
Zheng Yan 已提交
6945
		if (!found_extent) {
6946
			BUG_ON(iref);
6947
			ret = remove_extent_backref(trans, path, NULL,
6948
						    refs_to_drop,
J
Josef Bacik 已提交
6949
						    is_data, &last_ref);
6950
			if (ret) {
6951
				btrfs_abort_transaction(trans, ret);
6952 6953
				goto out;
			}
6954
			btrfs_release_path(path);
6955
			path->leave_spinning = 1;
6956 6957 6958 6959 6960

			key.objectid = bytenr;
			key.type = BTRFS_EXTENT_ITEM_KEY;
			key.offset = num_bytes;

6961 6962 6963 6964 6965
			if (!is_data && skinny_metadata) {
				key.type = BTRFS_METADATA_ITEM_KEY;
				key.offset = owner_objectid;
			}

Z
Zheng Yan 已提交
6966 6967
			ret = btrfs_search_slot(trans, extent_root,
						&key, path, -1, 1);
6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983
			if (ret > 0 && skinny_metadata && path->slots[0]) {
				/*
				 * Couldn't find our skinny metadata item,
				 * see if we have ye olde extent item.
				 */
				path->slots[0]--;
				btrfs_item_key_to_cpu(path->nodes[0], &key,
						      path->slots[0]);
				if (key.objectid == bytenr &&
				    key.type == BTRFS_EXTENT_ITEM_KEY &&
				    key.offset == num_bytes)
					ret = 0;
			}

			if (ret > 0 && skinny_metadata) {
				skinny_metadata = false;
6984
				key.objectid = bytenr;
6985 6986 6987 6988 6989 6990 6991
				key.type = BTRFS_EXTENT_ITEM_KEY;
				key.offset = num_bytes;
				btrfs_release_path(path);
				ret = btrfs_search_slot(trans, extent_root,
							&key, path, -1, 1);
			}

6992
			if (ret) {
J
Jeff Mahoney 已提交
6993 6994 6995
				btrfs_err(info,
					  "umm, got %d back from search, was looking for %llu",
					  ret, bytenr);
6996
				if (ret > 0)
6997
					btrfs_print_leaf(path->nodes[0]);
6998
			}
6999
			if (ret < 0) {
7000
				btrfs_abort_transaction(trans, ret);
7001 7002
				goto out;
			}
Z
Zheng Yan 已提交
7003 7004
			extent_slot = path->slots[0];
		}
7005
	} else if (WARN_ON(ret == -ENOENT)) {
7006
		btrfs_print_leaf(path->nodes[0]);
7007 7008
		btrfs_err(info,
			"unable to find ref byte nr %llu parent %llu root %llu  owner %llu offset %llu",
7009 7010
			bytenr, parent, root_objectid, owner_objectid,
			owner_offset);
7011
		btrfs_abort_transaction(trans, ret);
7012
		goto out;
7013
	} else {
7014
		btrfs_abort_transaction(trans, ret);
7015
		goto out;
7016
	}
7017 7018

	leaf = path->nodes[0];
7019
	item_size = btrfs_item_size_nr(leaf, extent_slot);
7020
	if (unlikely(item_size < sizeof(*ei))) {
7021 7022 7023 7024 7025
		ret = -EINVAL;
		btrfs_print_v0_err(info);
		btrfs_abort_transaction(trans, ret);
		goto out;
	}
7026
	ei = btrfs_item_ptr(leaf, extent_slot,
C
Chris Mason 已提交
7027
			    struct btrfs_extent_item);
7028 7029
	if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
	    key.type == BTRFS_EXTENT_ITEM_KEY) {
7030 7031 7032 7033 7034
		struct btrfs_tree_block_info *bi;
		BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
		bi = (struct btrfs_tree_block_info *)(ei + 1);
		WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
	}
7035

7036
	refs = btrfs_extent_refs(leaf, ei);
7037
	if (refs < refs_to_drop) {
J
Jeff Mahoney 已提交
7038 7039 7040
		btrfs_err(info,
			  "trying to drop %d refs but we only have %Lu for bytenr %Lu",
			  refs_to_drop, refs, bytenr);
7041
		ret = -EINVAL;
7042
		btrfs_abort_transaction(trans, ret);
7043 7044
		goto out;
	}
7045
	refs -= refs_to_drop;
7046

7047 7048 7049 7050 7051 7052
	if (refs > 0) {
		if (extent_op)
			__run_delayed_extent_op(extent_op, leaf, ei);
		/*
		 * In the case of inline back ref, reference count will
		 * be updated by remove_extent_backref
7053
		 */
7054 7055 7056 7057 7058 7059 7060
		if (iref) {
			BUG_ON(!found_extent);
		} else {
			btrfs_set_extent_refs(leaf, ei, refs);
			btrfs_mark_buffer_dirty(leaf);
		}
		if (found_extent) {
7061 7062 7063
			ret = remove_extent_backref(trans, path, iref,
						    refs_to_drop, is_data,
						    &last_ref);
7064
			if (ret) {
7065
				btrfs_abort_transaction(trans, ret);
7066 7067
				goto out;
			}
7068
		}
7069 7070 7071
	} else {
		if (found_extent) {
			BUG_ON(is_data && refs_to_drop !=
7072
			       extent_data_ref_count(path, iref));
7073 7074 7075 7076 7077 7078 7079
			if (iref) {
				BUG_ON(path->slots[0] != extent_slot);
			} else {
				BUG_ON(path->slots[0] != extent_slot + 1);
				path->slots[0] = extent_slot;
				num_to_del = 2;
			}
C
Chris Mason 已提交
7080
		}
7081

J
Josef Bacik 已提交
7082
		last_ref = 1;
7083 7084
		ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
				      num_to_del);
7085
		if (ret) {
7086
			btrfs_abort_transaction(trans, ret);
7087 7088
			goto out;
		}
7089
		btrfs_release_path(path);
7090

7091
		if (is_data) {
7092
			ret = btrfs_del_csums(trans, info, bytenr, num_bytes);
7093
			if (ret) {
7094
				btrfs_abort_transaction(trans, ret);
7095 7096
				goto out;
			}
7097 7098
		}

7099
		ret = add_to_free_space_tree(trans, bytenr, num_bytes);
7100
		if (ret) {
7101
			btrfs_abort_transaction(trans, ret);
7102 7103 7104
			goto out;
		}

7105
		ret = update_block_group(trans, bytenr, num_bytes, 0);
7106
		if (ret) {
7107
			btrfs_abort_transaction(trans, ret);
7108 7109
			goto out;
		}
7110
	}
J
Josef Bacik 已提交
7111 7112
	btrfs_release_path(path);

7113
out:
7114
	btrfs_free_path(path);
7115 7116 7117
	return ret;
}

7118
/*
7119
 * when we free an block, it is possible (and likely) that we free the last
7120 7121 7122 7123 7124
 * delayed ref for that extent as well.  This searches the delayed ref tree for
 * a given extent, and if there are no other delayed refs to be processed, it
 * removes it from the tree.
 */
static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
7125
				      u64 bytenr)
7126 7127 7128
{
	struct btrfs_delayed_ref_head *head;
	struct btrfs_delayed_ref_root *delayed_refs;
7129
	int ret = 0;
7130 7131 7132

	delayed_refs = &trans->transaction->delayed_refs;
	spin_lock(&delayed_refs->lock);
7133
	head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
7134
	if (!head)
7135
		goto out_delayed_unlock;
7136

7137
	spin_lock(&head->lock);
7138
	if (!RB_EMPTY_ROOT(&head->ref_tree.rb_root))
7139 7140
		goto out;

J
Josef Bacik 已提交
7141 7142
	if (cleanup_extent_op(head) != NULL)
		goto out;
7143

7144 7145 7146 7147 7148 7149 7150
	/*
	 * waiting for the lock here would deadlock.  If someone else has it
	 * locked they are already in the process of dropping it anyway
	 */
	if (!mutex_trylock(&head->mutex))
		goto out;

7151
	btrfs_delete_ref_head(delayed_refs, head);
7152
	head->processing = 0;
7153

7154
	spin_unlock(&head->lock);
7155 7156
	spin_unlock(&delayed_refs->lock);

7157 7158 7159 7160
	BUG_ON(head->extent_op);
	if (head->must_insert_reserved)
		ret = 1;

7161
	btrfs_cleanup_ref_head_accounting(trans->fs_info, delayed_refs, head);
7162
	mutex_unlock(&head->mutex);
7163
	btrfs_put_delayed_ref_head(head);
7164
	return ret;
7165
out:
7166
	spin_unlock(&head->lock);
7167 7168

out_delayed_unlock:
7169 7170 7171 7172
	spin_unlock(&delayed_refs->lock);
	return 0;
}

7173 7174 7175
void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
			   struct btrfs_root *root,
			   struct extent_buffer *buf,
7176
			   u64 parent, int last_ref)
7177
{
7178
	struct btrfs_fs_info *fs_info = root->fs_info;
7179
	struct btrfs_ref generic_ref = { 0 };
7180
	int pin = 1;
7181 7182
	int ret;

7183 7184 7185 7186 7187
	btrfs_init_generic_ref(&generic_ref, BTRFS_DROP_DELAYED_REF,
			       buf->start, buf->len, parent);
	btrfs_init_tree_ref(&generic_ref, btrfs_header_level(buf),
			    root->root_key.objectid);

7188
	if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
7189 7190
		int old_ref_mod, new_ref_mod;

7191
		btrfs_ref_tree_mod(fs_info, &generic_ref);
7192
		ret = btrfs_add_delayed_tree_ref(trans, &generic_ref, NULL,
7193
						 &old_ref_mod, &new_ref_mod);
7194
		BUG_ON(ret); /* -ENOMEM */
7195
		pin = old_ref_mod >= 0 && new_ref_mod < 0;
7196 7197
	}

7198
	if (last_ref && btrfs_header_generation(buf) == trans->transid) {
7199 7200
		struct btrfs_block_group_cache *cache;

7201
		if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
7202
			ret = check_ref_cleanup(trans, buf->start);
7203
			if (!ret)
7204
				goto out;
7205 7206
		}

7207
		pin = 0;
7208
		cache = btrfs_lookup_block_group(fs_info, buf->start);
7209

7210
		if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
7211
			pin_down_extent(cache, buf->start, buf->len, 1);
7212
			btrfs_put_block_group(cache);
7213
			goto out;
7214 7215 7216 7217 7218
		}

		WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));

		btrfs_add_free_space(cache, buf->start, buf->len);
7219
		btrfs_free_reserved_bytes(cache, buf->len, 0);
7220
		btrfs_put_block_group(cache);
7221
		trace_btrfs_reserved_extent_free(fs_info, buf->start, buf->len);
7222 7223
	}
out:
7224
	if (pin)
7225
		add_pinned_bytes(fs_info, &generic_ref);
7226

7227 7228 7229 7230 7231 7232 7233
	if (last_ref) {
		/*
		 * Deleting the buffer, clear the corrupt flag since it doesn't
		 * matter anymore.
		 */
		clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
	}
7234 7235
}

7236
/* Can return -ENOMEM */
7237
int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_ref *ref)
7238
{
7239
	struct btrfs_fs_info *fs_info = trans->fs_info;
7240
	int old_ref_mod, new_ref_mod;
7241 7242
	int ret;

7243
	if (btrfs_is_testing(fs_info))
7244
		return 0;
7245

7246 7247 7248 7249
	/*
	 * tree log blocks never actually go into the extent allocation
	 * tree, just update pinning info and exit early.
	 */
7250 7251 7252 7253
	if ((ref->type == BTRFS_REF_METADATA &&
	     ref->tree_ref.root == BTRFS_TREE_LOG_OBJECTID) ||
	    (ref->type == BTRFS_REF_DATA &&
	     ref->data_ref.ref_root == BTRFS_TREE_LOG_OBJECTID)) {
7254
		/* unlocks the pinned mutex */
7255
		btrfs_pin_extent(fs_info, ref->bytenr, ref->len, 1);
7256
		old_ref_mod = new_ref_mod = 0;
7257
		ret = 0;
7258 7259
	} else if (ref->type == BTRFS_REF_METADATA) {
		ret = btrfs_add_delayed_tree_ref(trans, ref, NULL,
7260
						 &old_ref_mod, &new_ref_mod);
7261
	} else {
7262
		ret = btrfs_add_delayed_data_ref(trans, ref, 0,
7263
						 &old_ref_mod, &new_ref_mod);
7264
	}
7265

7266 7267 7268 7269 7270
	if (!((ref->type == BTRFS_REF_METADATA &&
	       ref->tree_ref.root == BTRFS_TREE_LOG_OBJECTID) ||
	      (ref->type == BTRFS_REF_DATA &&
	       ref->data_ref.ref_root == BTRFS_TREE_LOG_OBJECTID)))
		btrfs_ref_tree_mod(fs_info, ref);
7271

7272
	if (ret == 0 && old_ref_mod >= 0 && new_ref_mod < 0)
7273
		add_pinned_bytes(fs_info, ref);
7274

7275 7276 7277
	return ret;
}

J
Josef Bacik 已提交
7278 7279 7280 7281 7282 7283 7284 7285 7286 7287
/*
 * when we wait for progress in the block group caching, its because
 * our allocation attempt failed at least once.  So, we must sleep
 * and let some progress happen before we try again.
 *
 * This function will sleep at least once waiting for new free space to
 * show up, and then it will check the block group free space numbers
 * for our min num_bytes.  Another option is to have it go ahead
 * and look in the rbtree for a free extent of a given size, but this
 * is a good start.
7288 7289 7290
 *
 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
 * any of the information in this block group.
J
Josef Bacik 已提交
7291
 */
7292
static noinline void
J
Josef Bacik 已提交
7293 7294 7295
wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
				u64 num_bytes)
{
7296
	struct btrfs_caching_control *caching_ctl;
J
Josef Bacik 已提交
7297

7298 7299
	caching_ctl = get_caching_control(cache);
	if (!caching_ctl)
7300
		return;
J
Josef Bacik 已提交
7301

7302
	wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
7303
		   (cache->free_space_ctl->free_space >= num_bytes));
7304 7305 7306 7307 7308 7309 7310 7311

	put_caching_control(caching_ctl);
}

static noinline int
wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
{
	struct btrfs_caching_control *caching_ctl;
7312
	int ret = 0;
7313 7314 7315

	caching_ctl = get_caching_control(cache);
	if (!caching_ctl)
7316
		return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
7317 7318

	wait_event(caching_ctl->wait, block_group_cache_done(cache));
7319 7320
	if (cache->cached == BTRFS_CACHE_ERROR)
		ret = -EIO;
7321
	put_caching_control(caching_ctl);
7322
	return ret;
J
Josef Bacik 已提交
7323 7324 7325
}

enum btrfs_loop_type {
7326 7327 7328 7329
	LOOP_CACHING_NOWAIT = 0,
	LOOP_CACHING_WAIT = 1,
	LOOP_ALLOC_CHUNK = 2,
	LOOP_NO_EMPTY_SIZE = 3,
J
Josef Bacik 已提交
7330 7331
};

7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353
static inline void
btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
		       int delalloc)
{
	if (delalloc)
		down_read(&cache->data_rwsem);
}

static inline void
btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
		       int delalloc)
{
	btrfs_get_block_group(cache);
	if (delalloc)
		down_read(&cache->data_rwsem);
}

static struct btrfs_block_group_cache *
btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
		   struct btrfs_free_cluster *cluster,
		   int delalloc)
{
S
Sudip Mukherjee 已提交
7354
	struct btrfs_block_group_cache *used_bg = NULL;
7355

7356
	spin_lock(&cluster->refill_lock);
7357 7358 7359 7360 7361 7362
	while (1) {
		used_bg = cluster->block_group;
		if (!used_bg)
			return NULL;

		if (used_bg == block_group)
7363 7364
			return used_bg;

7365
		btrfs_get_block_group(used_bg);
7366

7367 7368
		if (!delalloc)
			return used_bg;
7369

7370 7371
		if (down_read_trylock(&used_bg->data_rwsem))
			return used_bg;
7372

7373
		spin_unlock(&cluster->refill_lock);
7374

7375 7376
		/* We should only have one-level nested. */
		down_read_nested(&used_bg->data_rwsem, SINGLE_DEPTH_NESTING);
7377

7378 7379 7380
		spin_lock(&cluster->refill_lock);
		if (used_bg == cluster->block_group)
			return used_bg;
7381

7382 7383 7384
		up_read(&used_bg->data_rwsem);
		btrfs_put_block_group(used_bg);
	}
7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395
}

static inline void
btrfs_release_block_group(struct btrfs_block_group_cache *cache,
			 int delalloc)
{
	if (delalloc)
		up_read(&cache->data_rwsem);
	btrfs_put_block_group(cache);
}

7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419
/*
 * Structure used internally for find_free_extent() function.  Wraps needed
 * parameters.
 */
struct find_free_extent_ctl {
	/* Basic allocation info */
	u64 ram_bytes;
	u64 num_bytes;
	u64 empty_size;
	u64 flags;
	int delalloc;

	/* Where to start the search inside the bg */
	u64 search_start;

	/* For clustered allocation */
	u64 empty_cluster;

	bool have_caching_bg;
	bool orig_have_caching_bg;

	/* RAID index, converted from flags */
	int index;

7420 7421 7422
	/*
	 * Current loop number, check find_free_extent_update_loop() for details
	 */
7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449
	int loop;

	/*
	 * Whether we're refilling a cluster, if true we need to re-search
	 * current block group but don't try to refill the cluster again.
	 */
	bool retry_clustered;

	/*
	 * Whether we're updating free space cache, if true we need to re-search
	 * current block group but don't try updating free space cache again.
	 */
	bool retry_unclustered;

	/* If current block group is cached */
	int cached;

	/* Max contiguous hole found */
	u64 max_extent_size;

	/* Total free space from free space cache, not always contiguous */
	u64 total_free_space;

	/* Found result */
	u64 found_offset;
};

7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522

/*
 * Helper function for find_free_extent().
 *
 * Return -ENOENT to inform caller that we need fallback to unclustered mode.
 * Return -EAGAIN to inform caller that we need to re-search this block group
 * Return >0 to inform caller that we find nothing
 * Return 0 means we have found a location and set ffe_ctl->found_offset.
 */
static int find_free_extent_clustered(struct btrfs_block_group_cache *bg,
		struct btrfs_free_cluster *last_ptr,
		struct find_free_extent_ctl *ffe_ctl,
		struct btrfs_block_group_cache **cluster_bg_ret)
{
	struct btrfs_block_group_cache *cluster_bg;
	u64 aligned_cluster;
	u64 offset;
	int ret;

	cluster_bg = btrfs_lock_cluster(bg, last_ptr, ffe_ctl->delalloc);
	if (!cluster_bg)
		goto refill_cluster;
	if (cluster_bg != bg && (cluster_bg->ro ||
	    !block_group_bits(cluster_bg, ffe_ctl->flags)))
		goto release_cluster;

	offset = btrfs_alloc_from_cluster(cluster_bg, last_ptr,
			ffe_ctl->num_bytes, cluster_bg->key.objectid,
			&ffe_ctl->max_extent_size);
	if (offset) {
		/* We have a block, we're done */
		spin_unlock(&last_ptr->refill_lock);
		trace_btrfs_reserve_extent_cluster(cluster_bg,
				ffe_ctl->search_start, ffe_ctl->num_bytes);
		*cluster_bg_ret = cluster_bg;
		ffe_ctl->found_offset = offset;
		return 0;
	}
	WARN_ON(last_ptr->block_group != cluster_bg);

release_cluster:
	/*
	 * If we are on LOOP_NO_EMPTY_SIZE, we can't set up a new clusters, so
	 * lets just skip it and let the allocator find whatever block it can
	 * find. If we reach this point, we will have tried the cluster
	 * allocator plenty of times and not have found anything, so we are
	 * likely way too fragmented for the clustering stuff to find anything.
	 *
	 * However, if the cluster is taken from the current block group,
	 * release the cluster first, so that we stand a better chance of
	 * succeeding in the unclustered allocation.
	 */
	if (ffe_ctl->loop >= LOOP_NO_EMPTY_SIZE && cluster_bg != bg) {
		spin_unlock(&last_ptr->refill_lock);
		btrfs_release_block_group(cluster_bg, ffe_ctl->delalloc);
		return -ENOENT;
	}

	/* This cluster didn't work out, free it and start over */
	btrfs_return_cluster_to_free_space(NULL, last_ptr);

	if (cluster_bg != bg)
		btrfs_release_block_group(cluster_bg, ffe_ctl->delalloc);

refill_cluster:
	if (ffe_ctl->loop >= LOOP_NO_EMPTY_SIZE) {
		spin_unlock(&last_ptr->refill_lock);
		return -ENOENT;
	}

	aligned_cluster = max_t(u64,
			ffe_ctl->empty_cluster + ffe_ctl->empty_size,
			bg->full_stripe_len);
7523 7524
	ret = btrfs_find_space_cluster(bg, last_ptr, ffe_ctl->search_start,
			ffe_ctl->num_bytes, aligned_cluster);
7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557
	if (ret == 0) {
		/* Now pull our allocation out of this cluster */
		offset = btrfs_alloc_from_cluster(bg, last_ptr,
				ffe_ctl->num_bytes, ffe_ctl->search_start,
				&ffe_ctl->max_extent_size);
		if (offset) {
			/* We found one, proceed */
			spin_unlock(&last_ptr->refill_lock);
			trace_btrfs_reserve_extent_cluster(bg,
					ffe_ctl->search_start,
					ffe_ctl->num_bytes);
			ffe_ctl->found_offset = offset;
			return 0;
		}
	} else if (!ffe_ctl->cached && ffe_ctl->loop > LOOP_CACHING_NOWAIT &&
		   !ffe_ctl->retry_clustered) {
		spin_unlock(&last_ptr->refill_lock);

		ffe_ctl->retry_clustered = true;
		wait_block_group_cache_progress(bg, ffe_ctl->num_bytes +
				ffe_ctl->empty_cluster + ffe_ctl->empty_size);
		return -EAGAIN;
	}
	/*
	 * At this point we either didn't find a cluster or we weren't able to
	 * allocate a block from our cluster.  Free the cluster we've been
	 * trying to use, and go to the next block group.
	 */
	btrfs_return_cluster_to_free_space(NULL, last_ptr);
	spin_unlock(&last_ptr->refill_lock);
	return 1;
}

7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621
/*
 * Return >0 to inform caller that we find nothing
 * Return 0 when we found an free extent and set ffe_ctrl->found_offset
 * Return -EAGAIN to inform caller that we need to re-search this block group
 */
static int find_free_extent_unclustered(struct btrfs_block_group_cache *bg,
		struct btrfs_free_cluster *last_ptr,
		struct find_free_extent_ctl *ffe_ctl)
{
	u64 offset;

	/*
	 * We are doing an unclustered allocation, set the fragmented flag so
	 * we don't bother trying to setup a cluster again until we get more
	 * space.
	 */
	if (unlikely(last_ptr)) {
		spin_lock(&last_ptr->lock);
		last_ptr->fragmented = 1;
		spin_unlock(&last_ptr->lock);
	}
	if (ffe_ctl->cached) {
		struct btrfs_free_space_ctl *free_space_ctl;

		free_space_ctl = bg->free_space_ctl;
		spin_lock(&free_space_ctl->tree_lock);
		if (free_space_ctl->free_space <
		    ffe_ctl->num_bytes + ffe_ctl->empty_cluster +
		    ffe_ctl->empty_size) {
			ffe_ctl->total_free_space = max_t(u64,
					ffe_ctl->total_free_space,
					free_space_ctl->free_space);
			spin_unlock(&free_space_ctl->tree_lock);
			return 1;
		}
		spin_unlock(&free_space_ctl->tree_lock);
	}

	offset = btrfs_find_space_for_alloc(bg, ffe_ctl->search_start,
			ffe_ctl->num_bytes, ffe_ctl->empty_size,
			&ffe_ctl->max_extent_size);

	/*
	 * If we didn't find a chunk, and we haven't failed on this block group
	 * before, and this block group is in the middle of caching and we are
	 * ok with waiting, then go ahead and wait for progress to be made, and
	 * set @retry_unclustered to true.
	 *
	 * If @retry_unclustered is true then we've already waited on this
	 * block group once and should move on to the next block group.
	 */
	if (!offset && !ffe_ctl->retry_unclustered && !ffe_ctl->cached &&
	    ffe_ctl->loop > LOOP_CACHING_NOWAIT) {
		wait_block_group_cache_progress(bg, ffe_ctl->num_bytes +
						ffe_ctl->empty_size);
		ffe_ctl->retry_unclustered = true;
		return -EAGAIN;
	} else if (!offset) {
		return 1;
	}
	ffe_ctl->found_offset = offset;
	return 0;
}

7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732
/*
 * Return >0 means caller needs to re-search for free extent
 * Return 0 means we have the needed free extent.
 * Return <0 means we failed to locate any free extent.
 */
static int find_free_extent_update_loop(struct btrfs_fs_info *fs_info,
					struct btrfs_free_cluster *last_ptr,
					struct btrfs_key *ins,
					struct find_free_extent_ctl *ffe_ctl,
					int full_search, bool use_cluster)
{
	struct btrfs_root *root = fs_info->extent_root;
	int ret;

	if ((ffe_ctl->loop == LOOP_CACHING_NOWAIT) &&
	    ffe_ctl->have_caching_bg && !ffe_ctl->orig_have_caching_bg)
		ffe_ctl->orig_have_caching_bg = true;

	if (!ins->objectid && ffe_ctl->loop >= LOOP_CACHING_WAIT &&
	    ffe_ctl->have_caching_bg)
		return 1;

	if (!ins->objectid && ++(ffe_ctl->index) < BTRFS_NR_RAID_TYPES)
		return 1;

	if (ins->objectid) {
		if (!use_cluster && last_ptr) {
			spin_lock(&last_ptr->lock);
			last_ptr->window_start = ins->objectid;
			spin_unlock(&last_ptr->lock);
		}
		return 0;
	}

	/*
	 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
	 *			caching kthreads as we move along
	 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
	 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
	 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
	 *		       again
	 */
	if (ffe_ctl->loop < LOOP_NO_EMPTY_SIZE) {
		ffe_ctl->index = 0;
		if (ffe_ctl->loop == LOOP_CACHING_NOWAIT) {
			/*
			 * We want to skip the LOOP_CACHING_WAIT step if we
			 * don't have any uncached bgs and we've already done a
			 * full search through.
			 */
			if (ffe_ctl->orig_have_caching_bg || !full_search)
				ffe_ctl->loop = LOOP_CACHING_WAIT;
			else
				ffe_ctl->loop = LOOP_ALLOC_CHUNK;
		} else {
			ffe_ctl->loop++;
		}

		if (ffe_ctl->loop == LOOP_ALLOC_CHUNK) {
			struct btrfs_trans_handle *trans;
			int exist = 0;

			trans = current->journal_info;
			if (trans)
				exist = 1;
			else
				trans = btrfs_join_transaction(root);

			if (IS_ERR(trans)) {
				ret = PTR_ERR(trans);
				return ret;
			}

			ret = do_chunk_alloc(trans, ffe_ctl->flags,
					     CHUNK_ALLOC_FORCE);

			/*
			 * If we can't allocate a new chunk we've already looped
			 * through at least once, move on to the NO_EMPTY_SIZE
			 * case.
			 */
			if (ret == -ENOSPC)
				ffe_ctl->loop = LOOP_NO_EMPTY_SIZE;

			/* Do not bail out on ENOSPC since we can do more. */
			if (ret < 0 && ret != -ENOSPC)
				btrfs_abort_transaction(trans, ret);
			else
				ret = 0;
			if (!exist)
				btrfs_end_transaction(trans);
			if (ret)
				return ret;
		}

		if (ffe_ctl->loop == LOOP_NO_EMPTY_SIZE) {
			/*
			 * Don't loop again if we already have no empty_size and
			 * no empty_cluster.
			 */
			if (ffe_ctl->empty_size == 0 &&
			    ffe_ctl->empty_cluster == 0)
				return -ENOSPC;
			ffe_ctl->empty_size = 0;
			ffe_ctl->empty_cluster = 0;
		}
		return 1;
	}
	return -ENOSPC;
}

7733 7734 7735
/*
 * walks the btree of allocated extents and find a hole of a given size.
 * The key ins is changed to record the hole:
7736
 * ins->objectid == start position
7737
 * ins->flags = BTRFS_EXTENT_ITEM_KEY
7738
 * ins->offset == the size of the hole.
7739
 * Any available blocks before search_start are skipped.
7740 7741 7742
 *
 * If there is no suitable free space, we will record the max size of
 * the free space extent currently.
7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756
 *
 * The overall logic and call chain:
 *
 * find_free_extent()
 * |- Iterate through all block groups
 * |  |- Get a valid block group
 * |  |- Try to do clustered allocation in that block group
 * |  |- Try to do unclustered allocation in that block group
 * |  |- Check if the result is valid
 * |  |  |- If valid, then exit
 * |  |- Jump to next block group
 * |
 * |- Push harder to find free extents
 *    |- If not found, re-iterate all block groups
7757
 */
7758
static noinline int find_free_extent(struct btrfs_fs_info *fs_info,
7759 7760 7761
				u64 ram_bytes, u64 num_bytes, u64 empty_size,
				u64 hint_byte, struct btrfs_key *ins,
				u64 flags, int delalloc)
7762
{
7763
	int ret = 0;
7764
	struct btrfs_free_cluster *last_ptr = NULL;
7765
	struct btrfs_block_group_cache *block_group = NULL;
7766
	struct find_free_extent_ctl ffe_ctl = {0};
7767
	struct btrfs_space_info *space_info;
7768
	bool use_cluster = true;
7769
	bool full_search = false;
7770

7771
	WARN_ON(num_bytes < fs_info->sectorsize);
7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785

	ffe_ctl.ram_bytes = ram_bytes;
	ffe_ctl.num_bytes = num_bytes;
	ffe_ctl.empty_size = empty_size;
	ffe_ctl.flags = flags;
	ffe_ctl.search_start = 0;
	ffe_ctl.retry_clustered = false;
	ffe_ctl.retry_unclustered = false;
	ffe_ctl.delalloc = delalloc;
	ffe_ctl.index = btrfs_bg_flags_to_raid_index(flags);
	ffe_ctl.have_caching_bg = false;
	ffe_ctl.orig_have_caching_bg = false;
	ffe_ctl.found_offset = 0;

7786
	ins->type = BTRFS_EXTENT_ITEM_KEY;
7787 7788
	ins->objectid = 0;
	ins->offset = 0;
7789

7790
	trace_find_free_extent(fs_info, num_bytes, empty_size, flags);
J
Josef Bacik 已提交
7791

7792
	space_info = __find_space_info(fs_info, flags);
7793
	if (!space_info) {
7794
		btrfs_err(fs_info, "No space info for %llu", flags);
7795 7796
		return -ENOSPC;
	}
J
Josef Bacik 已提交
7797

7798
	/*
7799 7800 7801 7802 7803 7804 7805 7806
	 * If our free space is heavily fragmented we may not be able to make
	 * big contiguous allocations, so instead of doing the expensive search
	 * for free space, simply return ENOSPC with our max_extent_size so we
	 * can go ahead and search for a more manageable chunk.
	 *
	 * If our max_extent_size is large enough for our allocation simply
	 * disable clustering since we will likely not be able to find enough
	 * space to create a cluster and induce latency trying.
7807
	 */
7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818
	if (unlikely(space_info->max_extent_size)) {
		spin_lock(&space_info->lock);
		if (space_info->max_extent_size &&
		    num_bytes > space_info->max_extent_size) {
			ins->offset = space_info->max_extent_size;
			spin_unlock(&space_info->lock);
			return -ENOSPC;
		} else if (space_info->max_extent_size) {
			use_cluster = false;
		}
		spin_unlock(&space_info->lock);
7819
	}
J
Josef Bacik 已提交
7820

7821 7822
	last_ptr = fetch_cluster_info(fs_info, space_info,
				      &ffe_ctl.empty_cluster);
7823
	if (last_ptr) {
7824 7825 7826
		spin_lock(&last_ptr->lock);
		if (last_ptr->block_group)
			hint_byte = last_ptr->window_start;
7827 7828 7829 7830 7831 7832 7833 7834 7835
		if (last_ptr->fragmented) {
			/*
			 * We still set window_start so we can keep track of the
			 * last place we found an allocation to try and save
			 * some time.
			 */
			hint_byte = last_ptr->window_start;
			use_cluster = false;
		}
7836
		spin_unlock(&last_ptr->lock);
7837
	}
7838

7839 7840 7841 7842 7843 7844
	ffe_ctl.search_start = max(ffe_ctl.search_start,
				   first_logical_byte(fs_info, 0));
	ffe_ctl.search_start = max(ffe_ctl.search_start, hint_byte);
	if (ffe_ctl.search_start == hint_byte) {
		block_group = btrfs_lookup_block_group(fs_info,
						       ffe_ctl.search_start);
J
Josef Bacik 已提交
7845 7846 7847
		/*
		 * we don't want to use the block group if it doesn't match our
		 * allocation bits, or if its not cached.
7848 7849 7850
		 *
		 * However if we are re-searching with an ideal block group
		 * picked out then we don't care that the block group is cached.
J
Josef Bacik 已提交
7851
		 */
7852
		if (block_group && block_group_bits(block_group, flags) &&
7853
		    block_group->cached != BTRFS_CACHE_NO) {
J
Josef Bacik 已提交
7854
			down_read(&space_info->groups_sem);
7855 7856 7857 7858 7859 7860 7861 7862 7863 7864
			if (list_empty(&block_group->list) ||
			    block_group->ro) {
				/*
				 * someone is removing this block group,
				 * we can't jump into the have_block_group
				 * target because our list pointers are not
				 * valid
				 */
				btrfs_put_block_group(block_group);
				up_read(&space_info->groups_sem);
7865
			} else {
7866
				ffe_ctl.index = btrfs_bg_flags_to_raid_index(
7867
						block_group->flags);
7868
				btrfs_lock_block_group(block_group, delalloc);
7869
				goto have_block_group;
7870
			}
J
Josef Bacik 已提交
7871
		} else if (block_group) {
7872
			btrfs_put_block_group(block_group);
J
Josef Bacik 已提交
7873
		}
7874
	}
J
Josef Bacik 已提交
7875
search:
7876 7877 7878
	ffe_ctl.have_caching_bg = false;
	if (ffe_ctl.index == btrfs_bg_flags_to_raid_index(flags) ||
	    ffe_ctl.index == 0)
7879
		full_search = true;
7880
	down_read(&space_info->groups_sem);
7881 7882
	list_for_each_entry(block_group,
			    &space_info->block_groups[ffe_ctl.index], list) {
7883 7884 7885 7886
		/* If the block group is read-only, we can skip it entirely. */
		if (unlikely(block_group->ro))
			continue;

7887
		btrfs_grab_block_group(block_group, delalloc);
7888
		ffe_ctl.search_start = block_group->key.objectid;
7889

7890 7891 7892 7893 7894
		/*
		 * this can happen if we end up cycling through all the
		 * raid types, but we want to make sure we only allocate
		 * for the proper type.
		 */
7895
		if (!block_group_bits(block_group, flags)) {
7896
			u64 extra = BTRFS_BLOCK_GROUP_DUP |
7897
				BTRFS_BLOCK_GROUP_RAID1 |
D
David Woodhouse 已提交
7898 7899
				BTRFS_BLOCK_GROUP_RAID5 |
				BTRFS_BLOCK_GROUP_RAID6 |
7900 7901 7902 7903 7904 7905 7906
				BTRFS_BLOCK_GROUP_RAID10;

			/*
			 * if they asked for extra copies and this block group
			 * doesn't provide them, bail.  This does allow us to
			 * fill raid0 from raid1.
			 */
7907
			if ((flags & extra) && !(block_group->flags & extra))
7908 7909 7910
				goto loop;
		}

J
Josef Bacik 已提交
7911
have_block_group:
7912 7913 7914
		ffe_ctl.cached = block_group_cache_done(block_group);
		if (unlikely(!ffe_ctl.cached)) {
			ffe_ctl.have_caching_bg = true;
7915
			ret = cache_block_group(block_group, 0);
7916 7917
			BUG_ON(ret < 0);
			ret = 0;
J
Josef Bacik 已提交
7918 7919
		}

7920 7921
		if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
			goto loop;
J
Josef Bacik 已提交
7922

7923
		/*
7924 7925
		 * Ok we want to try and use the cluster allocator, so
		 * lets look there
7926
		 */
7927
		if (last_ptr && use_cluster) {
7928
			struct btrfs_block_group_cache *cluster_bg = NULL;
7929

7930 7931
			ret = find_free_extent_clustered(block_group, last_ptr,
							 &ffe_ctl, &cluster_bg);
7932

7933
			if (ret == 0) {
7934 7935 7936 7937
				if (cluster_bg && cluster_bg != block_group) {
					btrfs_release_block_group(block_group,
								  delalloc);
					block_group = cluster_bg;
7938
				}
7939 7940
				goto checks;
			} else if (ret == -EAGAIN) {
J
Josef Bacik 已提交
7941
				goto have_block_group;
7942 7943
			} else if (ret > 0) {
				goto loop;
7944
			}
7945
			/* ret == -ENOENT case falls through */
7946 7947
		}

7948 7949 7950
		ret = find_free_extent_unclustered(block_group, last_ptr,
						   &ffe_ctl);
		if (ret == -EAGAIN)
J
Josef Bacik 已提交
7951
			goto have_block_group;
7952
		else if (ret > 0)
7953
			goto loop;
7954
		/* ret == 0 case falls through */
7955
checks:
7956 7957
		ffe_ctl.search_start = round_up(ffe_ctl.found_offset,
					     fs_info->stripesize);
7958

J
Josef Bacik 已提交
7959
		/* move on to the next group */
7960
		if (ffe_ctl.search_start + num_bytes >
7961
		    block_group->key.objectid + block_group->key.offset) {
7962 7963
			btrfs_add_free_space(block_group, ffe_ctl.found_offset,
					     num_bytes);
J
Josef Bacik 已提交
7964
			goto loop;
7965
		}
7966

7967 7968 7969
		if (ffe_ctl.found_offset < ffe_ctl.search_start)
			btrfs_add_free_space(block_group, ffe_ctl.found_offset,
				ffe_ctl.search_start - ffe_ctl.found_offset);
J
Josef Bacik 已提交
7970

7971 7972
		ret = btrfs_add_reserved_bytes(block_group, ram_bytes,
				num_bytes, delalloc);
7973
		if (ret == -EAGAIN) {
7974 7975
			btrfs_add_free_space(block_group, ffe_ctl.found_offset,
					     num_bytes);
J
Josef Bacik 已提交
7976
			goto loop;
J
Josef Bacik 已提交
7977
		}
7978
		btrfs_inc_block_group_reservations(block_group);
7979

7980
		/* we are all good, lets return */
7981
		ins->objectid = ffe_ctl.search_start;
J
Josef Bacik 已提交
7982
		ins->offset = num_bytes;
7983

7984 7985
		trace_btrfs_reserve_extent(block_group, ffe_ctl.search_start,
					   num_bytes);
7986
		btrfs_release_block_group(block_group, delalloc);
J
Josef Bacik 已提交
7987 7988
		break;
loop:
7989 7990
		ffe_ctl.retry_clustered = false;
		ffe_ctl.retry_unclustered = false;
7991
		BUG_ON(btrfs_bg_flags_to_raid_index(block_group->flags) !=
7992
		       ffe_ctl.index);
7993
		btrfs_release_block_group(block_group, delalloc);
7994
		cond_resched();
J
Josef Bacik 已提交
7995 7996 7997
	}
	up_read(&space_info->groups_sem);

7998 7999 8000
	ret = find_free_extent_update_loop(fs_info, last_ptr, ins, &ffe_ctl,
					   full_search, use_cluster);
	if (ret > 0)
8001 8002
		goto search;

8003
	if (ret == -ENOSPC) {
8004 8005 8006 8007 8008 8009
		/*
		 * Use ffe_ctl->total_free_space as fallback if we can't find
		 * any contiguous hole.
		 */
		if (!ffe_ctl.max_extent_size)
			ffe_ctl.max_extent_size = ffe_ctl.total_free_space;
8010
		spin_lock(&space_info->lock);
8011
		space_info->max_extent_size = ffe_ctl.max_extent_size;
8012
		spin_unlock(&space_info->lock);
8013
		ins->offset = ffe_ctl.max_extent_size;
8014
	}
C
Chris Mason 已提交
8015
	return ret;
8016
}
8017

8018 8019 8020 8021 8022 8023 8024 8025 8026
#define DUMP_BLOCK_RSV(fs_info, rsv_name)				\
do {									\
	struct btrfs_block_rsv *__rsv = &(fs_info)->rsv_name;		\
	spin_lock(&__rsv->lock);					\
	btrfs_info(fs_info, #rsv_name ": size %llu reserved %llu",	\
		   __rsv->size, __rsv->reserved);			\
	spin_unlock(&__rsv->lock);					\
} while (0)

8027 8028
static void dump_space_info(struct btrfs_fs_info *fs_info,
			    struct btrfs_space_info *info, u64 bytes,
J
Josef Bacik 已提交
8029
			    int dump_block_groups)
J
Josef Bacik 已提交
8030 8031
{
	struct btrfs_block_group_cache *cache;
8032
	int index = 0;
J
Josef Bacik 已提交
8033

J
Josef Bacik 已提交
8034
	spin_lock(&info->lock);
8035 8036
	btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull",
		   info->flags,
8037 8038
		   info->total_bytes - btrfs_space_info_used(info, true),
		   info->full ? "" : "not ");
8039 8040 8041 8042 8043
	btrfs_info(fs_info,
		"space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu",
		info->total_bytes, info->bytes_used, info->bytes_pinned,
		info->bytes_reserved, info->bytes_may_use,
		info->bytes_readonly);
J
Josef Bacik 已提交
8044 8045
	spin_unlock(&info->lock);

8046 8047 8048 8049 8050 8051
	DUMP_BLOCK_RSV(fs_info, global_block_rsv);
	DUMP_BLOCK_RSV(fs_info, trans_block_rsv);
	DUMP_BLOCK_RSV(fs_info, chunk_block_rsv);
	DUMP_BLOCK_RSV(fs_info, delayed_block_rsv);
	DUMP_BLOCK_RSV(fs_info, delayed_refs_rsv);

J
Josef Bacik 已提交
8052 8053
	if (!dump_block_groups)
		return;
J
Josef Bacik 已提交
8054

8055
	down_read(&info->groups_sem);
8056 8057
again:
	list_for_each_entry(cache, &info->block_groups[index], list) {
J
Josef Bacik 已提交
8058
		spin_lock(&cache->lock);
8059 8060 8061 8062 8063
		btrfs_info(fs_info,
			"block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s",
			cache->key.objectid, cache->key.offset,
			btrfs_block_group_used(&cache->item), cache->pinned,
			cache->reserved, cache->ro ? "[readonly]" : "");
J
Josef Bacik 已提交
8064 8065 8066
		btrfs_dump_free_space(cache, bytes);
		spin_unlock(&cache->lock);
	}
8067 8068
	if (++index < BTRFS_NR_RAID_TYPES)
		goto again;
8069
	up_read(&info->groups_sem);
J
Josef Bacik 已提交
8070
}
8071

8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116
/*
 * btrfs_reserve_extent - entry point to the extent allocator. Tries to find a
 *			  hole that is at least as big as @num_bytes.
 *
 * @root           -	The root that will contain this extent
 *
 * @ram_bytes      -	The amount of space in ram that @num_bytes take. This
 *			is used for accounting purposes. This value differs
 *			from @num_bytes only in the case of compressed extents.
 *
 * @num_bytes      -	Number of bytes to allocate on-disk.
 *
 * @min_alloc_size -	Indicates the minimum amount of space that the
 *			allocator should try to satisfy. In some cases
 *			@num_bytes may be larger than what is required and if
 *			the filesystem is fragmented then allocation fails.
 *			However, the presence of @min_alloc_size gives a
 *			chance to try and satisfy the smaller allocation.
 *
 * @empty_size     -	A hint that you plan on doing more COW. This is the
 *			size in bytes the allocator should try to find free
 *			next to the block it returns.  This is just a hint and
 *			may be ignored by the allocator.
 *
 * @hint_byte      -	Hint to the allocator to start searching above the byte
 *			address passed. It might be ignored.
 *
 * @ins            -	This key is modified to record the found hole. It will
 *			have the following values:
 *			ins->objectid == start position
 *			ins->flags = BTRFS_EXTENT_ITEM_KEY
 *			ins->offset == the size of the hole.
 *
 * @is_data        -	Boolean flag indicating whether an extent is
 *			allocated for data (true) or metadata (false)
 *
 * @delalloc       -	Boolean flag indicating whether this allocation is for
 *			delalloc or not. If 'true' data_rwsem of block groups
 *			is going to be acquired.
 *
 *
 * Returns 0 when an allocation succeeded or < 0 when an error occurred. In
 * case -ENOSPC is returned then @ins->offset will contain the size of the
 * largest available hole the allocator managed to find.
 */
8117
int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
8118 8119
			 u64 num_bytes, u64 min_alloc_size,
			 u64 empty_size, u64 hint_byte,
8120
			 struct btrfs_key *ins, int is_data, int delalloc)
8121
{
8122
	struct btrfs_fs_info *fs_info = root->fs_info;
8123
	bool final_tried = num_bytes == min_alloc_size;
8124
	u64 flags;
8125
	int ret;
8126

8127
	flags = get_alloc_profile_by_root(root, is_data);
8128
again:
8129
	WARN_ON(num_bytes < fs_info->sectorsize);
8130
	ret = find_free_extent(fs_info, ram_bytes, num_bytes, empty_size,
8131
			       hint_byte, ins, flags, delalloc);
8132
	if (!ret && !is_data) {
8133
		btrfs_dec_block_group_reservations(fs_info, ins->objectid);
8134
	} else if (ret == -ENOSPC) {
8135 8136
		if (!final_tried && ins->offset) {
			num_bytes = min(num_bytes >> 1, ins->offset);
8137
			num_bytes = round_down(num_bytes,
8138
					       fs_info->sectorsize);
8139
			num_bytes = max(num_bytes, min_alloc_size);
8140
			ram_bytes = num_bytes;
8141 8142 8143
			if (num_bytes == min_alloc_size)
				final_tried = true;
			goto again;
8144
		} else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
8145 8146
			struct btrfs_space_info *sinfo;

8147
			sinfo = __find_space_info(fs_info, flags);
8148
			btrfs_err(fs_info,
J
Jeff Mahoney 已提交
8149 8150
				  "allocation failed flags %llu, wanted %llu",
				  flags, num_bytes);
8151
			if (sinfo)
8152
				dump_space_info(fs_info, sinfo, num_bytes, 1);
8153
		}
8154
	}
J
Josef Bacik 已提交
8155 8156

	return ret;
8157 8158
}

8159
static int __btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
8160 8161
					u64 start, u64 len,
					int pin, int delalloc)
8162
{
J
Josef Bacik 已提交
8163
	struct btrfs_block_group_cache *cache;
8164
	int ret = 0;
J
Josef Bacik 已提交
8165

8166
	cache = btrfs_lookup_block_group(fs_info, start);
J
Josef Bacik 已提交
8167
	if (!cache) {
8168 8169
		btrfs_err(fs_info, "Unable to find block group for %llu",
			  start);
J
Josef Bacik 已提交
8170 8171
		return -ENOSPC;
	}
8172

8173
	if (pin)
8174
		pin_down_extent(cache, start, len, 1);
8175
	else {
8176
		if (btrfs_test_opt(fs_info, DISCARD))
8177
			ret = btrfs_discard_extent(fs_info, start, len, NULL);
8178
		btrfs_add_free_space(cache, start, len);
8179
		btrfs_free_reserved_bytes(cache, len, delalloc);
8180
		trace_btrfs_reserved_extent_free(fs_info, start, len);
8181
	}
8182

8183
	btrfs_put_block_group(cache);
8184 8185 8186
	return ret;
}

8187
int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
8188
			       u64 start, u64 len, int delalloc)
8189
{
8190
	return __btrfs_free_reserved_extent(fs_info, start, len, 0, delalloc);
8191 8192
}

8193
int btrfs_free_and_pin_reserved_extent(struct btrfs_fs_info *fs_info,
8194 8195
				       u64 start, u64 len)
{
8196
	return __btrfs_free_reserved_extent(fs_info, start, len, 1, 0);
8197 8198
}

8199 8200 8201 8202
static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
				      u64 parent, u64 root_objectid,
				      u64 flags, u64 owner, u64 offset,
				      struct btrfs_key *ins, int ref_mod)
8203
{
8204
	struct btrfs_fs_info *fs_info = trans->fs_info;
8205 8206
	int ret;
	struct btrfs_extent_item *extent_item;
8207
	struct btrfs_extent_inline_ref *iref;
8208
	struct btrfs_path *path;
8209 8210 8211
	struct extent_buffer *leaf;
	int type;
	u32 size;
8212

8213 8214 8215 8216
	if (parent > 0)
		type = BTRFS_SHARED_DATA_REF_KEY;
	else
		type = BTRFS_EXTENT_DATA_REF_KEY;
8217

8218
	size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
8219 8220

	path = btrfs_alloc_path();
T
Tsutomu Itoh 已提交
8221 8222
	if (!path)
		return -ENOMEM;
8223

8224
	path->leave_spinning = 1;
8225 8226
	ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
				      ins, size);
8227 8228 8229 8230
	if (ret) {
		btrfs_free_path(path);
		return ret;
	}
J
Josef Bacik 已提交
8231

8232 8233
	leaf = path->nodes[0];
	extent_item = btrfs_item_ptr(leaf, path->slots[0],
8234
				     struct btrfs_extent_item);
8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254
	btrfs_set_extent_refs(leaf, extent_item, ref_mod);
	btrfs_set_extent_generation(leaf, extent_item, trans->transid);
	btrfs_set_extent_flags(leaf, extent_item,
			       flags | BTRFS_EXTENT_FLAG_DATA);

	iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
	btrfs_set_extent_inline_ref_type(leaf, iref, type);
	if (parent > 0) {
		struct btrfs_shared_data_ref *ref;
		ref = (struct btrfs_shared_data_ref *)(iref + 1);
		btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
		btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
	} else {
		struct btrfs_extent_data_ref *ref;
		ref = (struct btrfs_extent_data_ref *)(&iref->offset);
		btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
		btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
		btrfs_set_extent_data_ref_offset(leaf, ref, offset);
		btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
	}
8255 8256

	btrfs_mark_buffer_dirty(path->nodes[0]);
8257
	btrfs_free_path(path);
8258

8259
	ret = remove_from_free_space_tree(trans, ins->objectid, ins->offset);
8260 8261 8262
	if (ret)
		return ret;

8263
	ret = update_block_group(trans, ins->objectid, ins->offset, 1);
8264
	if (ret) { /* -ENOENT, logic error */
8265
		btrfs_err(fs_info, "update block group failed for %llu %llu",
8266
			ins->objectid, ins->offset);
8267 8268
		BUG();
	}
8269
	trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, ins->offset);
8270 8271 8272
	return ret;
}

8273
static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
8274
				     struct btrfs_delayed_ref_node *node,
8275
				     struct btrfs_delayed_extent_op *extent_op)
8276
{
8277
	struct btrfs_fs_info *fs_info = trans->fs_info;
8278
	int ret;
8279
	struct btrfs_extent_item *extent_item;
8280
	struct btrfs_key extent_key;
8281 8282 8283 8284
	struct btrfs_tree_block_info *block_info;
	struct btrfs_extent_inline_ref *iref;
	struct btrfs_path *path;
	struct extent_buffer *leaf;
8285
	struct btrfs_delayed_tree_ref *ref;
8286
	u32 size = sizeof(*extent_item) + sizeof(*iref);
8287
	u64 num_bytes;
8288
	u64 flags = extent_op->flags_to_set;
8289
	bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
8290

8291 8292 8293 8294 8295 8296 8297 8298 8299 8300
	ref = btrfs_delayed_node_to_tree_ref(node);

	extent_key.objectid = node->bytenr;
	if (skinny_metadata) {
		extent_key.offset = ref->level;
		extent_key.type = BTRFS_METADATA_ITEM_KEY;
		num_bytes = fs_info->nodesize;
	} else {
		extent_key.offset = node->num_bytes;
		extent_key.type = BTRFS_EXTENT_ITEM_KEY;
8301
		size += sizeof(*block_info);
8302 8303
		num_bytes = node->num_bytes;
	}
8304

8305
	path = btrfs_alloc_path();
8306
	if (!path)
8307
		return -ENOMEM;
8308

8309 8310
	path->leave_spinning = 1;
	ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8311
				      &extent_key, size);
8312
	if (ret) {
8313
		btrfs_free_path(path);
8314 8315
		return ret;
	}
8316 8317 8318 8319 8320 8321 8322 8323 8324

	leaf = path->nodes[0];
	extent_item = btrfs_item_ptr(leaf, path->slots[0],
				     struct btrfs_extent_item);
	btrfs_set_extent_refs(leaf, extent_item, 1);
	btrfs_set_extent_generation(leaf, extent_item, trans->transid);
	btrfs_set_extent_flags(leaf, extent_item,
			       flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);

8325 8326 8327 8328
	if (skinny_metadata) {
		iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
	} else {
		block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
8329
		btrfs_set_tree_block_key(leaf, block_info, &extent_op->key);
8330
		btrfs_set_tree_block_level(leaf, block_info, ref->level);
8331 8332
		iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
	}
8333

8334
	if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) {
8335 8336 8337
		BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
		btrfs_set_extent_inline_ref_type(leaf, iref,
						 BTRFS_SHARED_BLOCK_REF_KEY);
8338
		btrfs_set_extent_inline_ref_offset(leaf, iref, ref->parent);
8339 8340 8341
	} else {
		btrfs_set_extent_inline_ref_type(leaf, iref,
						 BTRFS_TREE_BLOCK_REF_KEY);
8342
		btrfs_set_extent_inline_ref_offset(leaf, iref, ref->root);
8343 8344 8345 8346 8347
	}

	btrfs_mark_buffer_dirty(leaf);
	btrfs_free_path(path);

8348 8349
	ret = remove_from_free_space_tree(trans, extent_key.objectid,
					  num_bytes);
8350 8351 8352
	if (ret)
		return ret;

8353
	ret = update_block_group(trans, extent_key.objectid,
8354
				 fs_info->nodesize, 1);
8355
	if (ret) { /* -ENOENT, logic error */
8356
		btrfs_err(fs_info, "update block group failed for %llu %llu",
8357
			extent_key.objectid, extent_key.offset);
8358 8359
		BUG();
	}
J
Josef Bacik 已提交
8360

8361
	trace_btrfs_reserved_extent_alloc(fs_info, extent_key.objectid,
8362
					  fs_info->nodesize);
8363 8364 8365 8366
	return ret;
}

int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
8367
				     struct btrfs_root *root, u64 owner,
8368 8369
				     u64 offset, u64 ram_bytes,
				     struct btrfs_key *ins)
8370
{
8371
	struct btrfs_ref generic_ref = { 0 };
8372 8373
	int ret;

8374
	BUG_ON(root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
8375

8376 8377 8378
	btrfs_init_generic_ref(&generic_ref, BTRFS_ADD_DELAYED_EXTENT,
			       ins->objectid, ins->offset, 0);
	btrfs_init_data_ref(&generic_ref, root->root_key.objectid, owner, offset);
8379
	btrfs_ref_tree_mod(root->fs_info, &generic_ref);
8380 8381
	ret = btrfs_add_delayed_data_ref(trans, &generic_ref,
					 ram_bytes, NULL, NULL);
8382 8383
	return ret;
}
8384 8385 8386 8387 8388 8389

/*
 * this is used by the tree logging recovery code.  It records that
 * an extent has been allocated and makes sure to clear the free
 * space cache bits as well
 */
8390 8391 8392
int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
				   u64 root_objectid, u64 owner, u64 offset,
				   struct btrfs_key *ins)
8393
{
8394
	struct btrfs_fs_info *fs_info = trans->fs_info;
8395 8396
	int ret;
	struct btrfs_block_group_cache *block_group;
8397
	struct btrfs_space_info *space_info;
8398

8399 8400
	/*
	 * Mixed block groups will exclude before processing the log so we only
8401
	 * need to do the exclude dance if this fs isn't mixed.
8402
	 */
8403
	if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) {
8404 8405
		ret = __exclude_logged_extent(fs_info, ins->objectid,
					      ins->offset);
8406
		if (ret)
8407
			return ret;
8408 8409
	}

8410
	block_group = btrfs_lookup_block_group(fs_info, ins->objectid);
8411 8412 8413
	if (!block_group)
		return -EINVAL;

8414 8415 8416 8417 8418 8419 8420 8421
	space_info = block_group->space_info;
	spin_lock(&space_info->lock);
	spin_lock(&block_group->lock);
	space_info->bytes_reserved += ins->offset;
	block_group->reserved += ins->offset;
	spin_unlock(&block_group->lock);
	spin_unlock(&space_info->lock);

8422 8423
	ret = alloc_reserved_file_extent(trans, 0, root_objectid, 0, owner,
					 offset, ins, 1);
8424
	btrfs_put_block_group(block_group);
8425 8426 8427
	return ret;
}

8428 8429
static struct extent_buffer *
btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
8430
		      u64 bytenr, int level, u64 owner)
8431
{
8432
	struct btrfs_fs_info *fs_info = root->fs_info;
8433 8434
	struct extent_buffer *buf;

8435
	buf = btrfs_find_create_tree_block(fs_info, bytenr);
8436 8437 8438
	if (IS_ERR(buf))
		return buf;

8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451
	/*
	 * Extra safety check in case the extent tree is corrupted and extent
	 * allocator chooses to use a tree block which is already used and
	 * locked.
	 */
	if (buf->lock_owner == current->pid) {
		btrfs_err_rl(fs_info,
"tree block %llu owner %llu already locked by pid=%d, extent tree corruption detected",
			buf->start, btrfs_header_owner(buf), current->pid);
		free_extent_buffer(buf);
		return ERR_PTR(-EUCLEAN);
	}

8452
	btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
8453
	btrfs_tree_lock(buf);
8454
	btrfs_clean_tree_block(buf);
8455
	clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
8456

8457
	btrfs_set_lock_blocking_write(buf);
8458
	set_extent_buffer_uptodate(buf);
8459

8460 8461 8462 8463 8464 8465
	memzero_extent_buffer(buf, 0, sizeof(struct btrfs_header));
	btrfs_set_header_level(buf, level);
	btrfs_set_header_bytenr(buf, buf->start);
	btrfs_set_header_generation(buf, trans->transid);
	btrfs_set_header_backref_rev(buf, BTRFS_MIXED_BACKREF_REV);
	btrfs_set_header_owner(buf, owner);
8466
	write_extent_buffer_fsid(buf, fs_info->fs_devices->metadata_uuid);
8467
	write_extent_buffer_chunk_tree_uuid(buf, fs_info->chunk_tree_uuid);
8468
	if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
8469
		buf->log_index = root->log_transid % 2;
8470 8471
		/*
		 * we allow two log transactions at a time, use different
8472
		 * EXTENT bit to differentiate dirty pages.
8473
		 */
8474
		if (buf->log_index == 0)
8475 8476 8477 8478
			set_extent_dirty(&root->dirty_log_pages, buf->start,
					buf->start + buf->len - 1, GFP_NOFS);
		else
			set_extent_new(&root->dirty_log_pages, buf->start,
8479
					buf->start + buf->len - 1);
8480
	} else {
8481
		buf->log_index = -1;
8482
		set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
8483
			 buf->start + buf->len - 1, GFP_NOFS);
8484
	}
8485
	trans->dirty = true;
8486
	/* this returns a buffer locked for blocking */
8487 8488 8489
	return buf;
}

8490 8491 8492 8493
static struct btrfs_block_rsv *
use_block_rsv(struct btrfs_trans_handle *trans,
	      struct btrfs_root *root, u32 blocksize)
{
8494
	struct btrfs_fs_info *fs_info = root->fs_info;
8495
	struct btrfs_block_rsv *block_rsv;
8496
	struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
8497
	int ret;
8498
	bool global_updated = false;
8499 8500 8501

	block_rsv = get_block_rsv(trans, root);

8502 8503
	if (unlikely(block_rsv->size == 0))
		goto try_reserve;
8504
again:
8505 8506 8507 8508
	ret = block_rsv_use_bytes(block_rsv, blocksize);
	if (!ret)
		return block_rsv;

8509 8510 8511
	if (block_rsv->failfast)
		return ERR_PTR(ret);

8512 8513
	if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
		global_updated = true;
8514
		update_global_block_rsv(fs_info);
8515 8516 8517
		goto again;
	}

J
Josef Bacik 已提交
8518 8519 8520 8521 8522 8523
	/*
	 * The global reserve still exists to save us from ourselves, so don't
	 * warn_on if we are short on our delayed refs reserve.
	 */
	if (block_rsv->type != BTRFS_BLOCK_RSV_DELREFS &&
	    btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
8524 8525 8526 8527 8528
		static DEFINE_RATELIMIT_STATE(_rs,
				DEFAULT_RATELIMIT_INTERVAL * 10,
				/*DEFAULT_RATELIMIT_BURST*/ 1);
		if (__ratelimit(&_rs))
			WARN(1, KERN_DEBUG
8529
				"BTRFS: block rsv returned %d\n", ret);
8530 8531 8532 8533 8534 8535 8536 8537
	}
try_reserve:
	ret = reserve_metadata_bytes(root, block_rsv, blocksize,
				     BTRFS_RESERVE_NO_FLUSH);
	if (!ret)
		return block_rsv;
	/*
	 * If we couldn't reserve metadata bytes try and use some from
8538 8539
	 * the global reserve if its space type is the same as the global
	 * reservation.
8540
	 */
8541 8542
	if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
	    block_rsv->space_info == global_rsv->space_info) {
8543 8544 8545 8546 8547
		ret = block_rsv_use_bytes(global_rsv, blocksize);
		if (!ret)
			return global_rsv;
	}
	return ERR_PTR(ret);
8548 8549
}

J
Josef Bacik 已提交
8550 8551
static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
			    struct btrfs_block_rsv *block_rsv, u32 blocksize)
8552
{
8553
	block_rsv_add_bytes(block_rsv, blocksize, false);
8554
	block_rsv_release_bytes(fs_info, block_rsv, NULL, 0, NULL);
8555 8556
}

8557
/*
8558
 * finds a free extent and does all the dirty work required for allocation
8559
 * returns the tree buffer or an ERR_PTR on error.
8560
 */
8561
struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
8562 8563 8564 8565 8566
					     struct btrfs_root *root,
					     u64 parent, u64 root_objectid,
					     const struct btrfs_disk_key *key,
					     int level, u64 hint,
					     u64 empty_size)
8567
{
8568
	struct btrfs_fs_info *fs_info = root->fs_info;
C
Chris Mason 已提交
8569
	struct btrfs_key ins;
8570
	struct btrfs_block_rsv *block_rsv;
8571
	struct extent_buffer *buf;
8572
	struct btrfs_delayed_extent_op *extent_op;
8573
	struct btrfs_ref generic_ref = { 0 };
8574 8575
	u64 flags = 0;
	int ret;
8576 8577
	u32 blocksize = fs_info->nodesize;
	bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
8578

8579
#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
8580
	if (btrfs_is_testing(fs_info)) {
8581
		buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
8582
					    level, root_objectid);
8583 8584 8585 8586
		if (!IS_ERR(buf))
			root->alloc_bytenr += blocksize;
		return buf;
	}
8587
#endif
8588

8589 8590 8591 8592
	block_rsv = use_block_rsv(trans, root, blocksize);
	if (IS_ERR(block_rsv))
		return ERR_CAST(block_rsv);

8593
	ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize,
8594
				   empty_size, hint, &ins, 0, 0);
8595 8596
	if (ret)
		goto out_unuse;
8597

8598 8599
	buf = btrfs_init_new_buffer(trans, root, ins.objectid, level,
				    root_objectid);
8600 8601 8602 8603
	if (IS_ERR(buf)) {
		ret = PTR_ERR(buf);
		goto out_free_reserved;
	}
8604 8605 8606 8607 8608 8609 8610 8611 8612

	if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
		if (parent == 0)
			parent = ins.objectid;
		flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
	} else
		BUG_ON(parent > 0);

	if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
8613
		extent_op = btrfs_alloc_delayed_extent_op();
8614 8615 8616 8617
		if (!extent_op) {
			ret = -ENOMEM;
			goto out_free_buf;
		}
8618 8619 8620 8621 8622
		if (key)
			memcpy(&extent_op->key, key, sizeof(extent_op->key));
		else
			memset(&extent_op->key, 0, sizeof(extent_op->key));
		extent_op->flags_to_set = flags;
8623 8624 8625
		extent_op->update_key = skinny_metadata ? false : true;
		extent_op->update_flags = true;
		extent_op->is_data = false;
8626
		extent_op->level = level;
8627

8628 8629 8630 8631
		btrfs_init_generic_ref(&generic_ref, BTRFS_ADD_DELAYED_EXTENT,
				       ins.objectid, ins.offset, parent);
		generic_ref.real_root = root->root_key.objectid;
		btrfs_init_tree_ref(&generic_ref, level, root_objectid);
8632
		btrfs_ref_tree_mod(fs_info, &generic_ref);
8633
		ret = btrfs_add_delayed_tree_ref(trans, &generic_ref,
8634
						 extent_op, NULL, NULL);
8635 8636
		if (ret)
			goto out_free_delayed;
8637
	}
8638
	return buf;
8639 8640 8641 8642 8643 8644

out_free_delayed:
	btrfs_free_delayed_extent_op(extent_op);
out_free_buf:
	free_extent_buffer(buf);
out_free_reserved:
8645
	btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 0);
8646
out_unuse:
8647
	unuse_block_rsv(fs_info, block_rsv, blocksize);
8648
	return ERR_PTR(ret);
8649
}
8650

8651 8652 8653 8654
struct walk_control {
	u64 refs[BTRFS_MAX_LEVEL];
	u64 flags[BTRFS_MAX_LEVEL];
	struct btrfs_key update_progress;
8655 8656
	struct btrfs_key drop_progress;
	int drop_level;
8657 8658 8659 8660 8661
	int stage;
	int level;
	int shared_level;
	int update_ref;
	int keep_locks;
Y
Yan, Zheng 已提交
8662 8663
	int reada_slot;
	int reada_count;
8664
	int restarted;
8665 8666 8667 8668 8669
};

#define DROP_REFERENCE	1
#define UPDATE_BACKREF	2

Y
Yan, Zheng 已提交
8670 8671 8672 8673
static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
				     struct btrfs_root *root,
				     struct walk_control *wc,
				     struct btrfs_path *path)
8674
{
8675
	struct btrfs_fs_info *fs_info = root->fs_info;
Y
Yan, Zheng 已提交
8676 8677 8678
	u64 bytenr;
	u64 generation;
	u64 refs;
8679
	u64 flags;
8680
	u32 nritems;
Y
Yan, Zheng 已提交
8681 8682
	struct btrfs_key key;
	struct extent_buffer *eb;
8683
	int ret;
Y
Yan, Zheng 已提交
8684 8685
	int slot;
	int nread = 0;
8686

Y
Yan, Zheng 已提交
8687 8688 8689 8690 8691 8692
	if (path->slots[wc->level] < wc->reada_slot) {
		wc->reada_count = wc->reada_count * 2 / 3;
		wc->reada_count = max(wc->reada_count, 2);
	} else {
		wc->reada_count = wc->reada_count * 3 / 2;
		wc->reada_count = min_t(int, wc->reada_count,
8693
					BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Y
Yan, Zheng 已提交
8694
	}
8695

Y
Yan, Zheng 已提交
8696 8697
	eb = path->nodes[wc->level];
	nritems = btrfs_header_nritems(eb);
8698

Y
Yan, Zheng 已提交
8699 8700 8701
	for (slot = path->slots[wc->level]; slot < nritems; slot++) {
		if (nread >= wc->reada_count)
			break;
8702

C
Chris Mason 已提交
8703
		cond_resched();
Y
Yan, Zheng 已提交
8704 8705
		bytenr = btrfs_node_blockptr(eb, slot);
		generation = btrfs_node_ptr_generation(eb, slot);
C
Chris Mason 已提交
8706

Y
Yan, Zheng 已提交
8707 8708
		if (slot == path->slots[wc->level])
			goto reada;
8709

Y
Yan, Zheng 已提交
8710 8711
		if (wc->stage == UPDATE_BACKREF &&
		    generation <= root->root_key.offset)
8712 8713
			continue;

8714
		/* We don't lock the tree block, it's OK to be racy here */
8715
		ret = btrfs_lookup_extent_info(trans, fs_info, bytenr,
8716 8717
					       wc->level - 1, 1, &refs,
					       &flags);
8718 8719 8720
		/* We don't care about errors in readahead. */
		if (ret < 0)
			continue;
8721 8722
		BUG_ON(refs == 0);

Y
Yan, Zheng 已提交
8723 8724 8725
		if (wc->stage == DROP_REFERENCE) {
			if (refs == 1)
				goto reada;
8726

8727 8728 8729
			if (wc->level == 1 &&
			    (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
				continue;
Y
Yan, Zheng 已提交
8730 8731 8732 8733 8734 8735 8736 8737
			if (!wc->update_ref ||
			    generation <= root->root_key.offset)
				continue;
			btrfs_node_key_to_cpu(eb, &key, slot);
			ret = btrfs_comp_cpu_keys(&key,
						  &wc->update_progress);
			if (ret < 0)
				continue;
8738 8739 8740 8741
		} else {
			if (wc->level == 1 &&
			    (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
				continue;
8742
		}
Y
Yan, Zheng 已提交
8743
reada:
8744
		readahead_tree_block(fs_info, bytenr);
Y
Yan, Zheng 已提交
8745
		nread++;
C
Chris Mason 已提交
8746
	}
Y
Yan, Zheng 已提交
8747
	wc->reada_slot = slot;
C
Chris Mason 已提交
8748
}
8749

Y
Yan Zheng 已提交
8750
/*
L
Liu Bo 已提交
8751
 * helper to process tree block while walking down the tree.
8752 8753 8754 8755 8756
 *
 * when wc->stage == UPDATE_BACKREF, this function updates
 * back refs for pointers in the block.
 *
 * NOTE: return value 1 means we should stop walking down.
Y
Yan Zheng 已提交
8757
 */
8758
static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
8759
				   struct btrfs_root *root,
8760
				   struct btrfs_path *path,
8761
				   struct walk_control *wc, int lookup_info)
Y
Yan Zheng 已提交
8762
{
8763
	struct btrfs_fs_info *fs_info = root->fs_info;
8764 8765 8766
	int level = wc->level;
	struct extent_buffer *eb = path->nodes[level];
	u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
Y
Yan Zheng 已提交
8767 8768
	int ret;

8769 8770 8771
	if (wc->stage == UPDATE_BACKREF &&
	    btrfs_header_owner(eb) != root->root_key.objectid)
		return 1;
Y
Yan Zheng 已提交
8772

8773 8774 8775 8776
	/*
	 * when reference count of tree block is 1, it won't increase
	 * again. once full backref flag is set, we never clear it.
	 */
8777 8778 8779
	if (lookup_info &&
	    ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
	     (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
8780
		BUG_ON(!path->locks[level]);
8781
		ret = btrfs_lookup_extent_info(trans, fs_info,
8782
					       eb->start, level, 1,
8783 8784
					       &wc->refs[level],
					       &wc->flags[level]);
8785 8786 8787
		BUG_ON(ret == -ENOMEM);
		if (ret)
			return ret;
8788 8789
		BUG_ON(wc->refs[level] == 0);
	}
8790

8791 8792 8793
	if (wc->stage == DROP_REFERENCE) {
		if (wc->refs[level] > 1)
			return 1;
Y
Yan Zheng 已提交
8794

8795
		if (path->locks[level] && !wc->keep_locks) {
8796
			btrfs_tree_unlock_rw(eb, path->locks[level]);
8797 8798 8799 8800
			path->locks[level] = 0;
		}
		return 0;
	}
Y
Yan Zheng 已提交
8801

8802 8803 8804
	/* wc->stage == UPDATE_BACKREF */
	if (!(wc->flags[level] & flag)) {
		BUG_ON(!path->locks[level]);
8805
		ret = btrfs_inc_ref(trans, root, eb, 1);
8806
		BUG_ON(ret); /* -ENOMEM */
8807
		ret = btrfs_dec_ref(trans, root, eb, 0);
8808
		BUG_ON(ret); /* -ENOMEM */
8809
		ret = btrfs_set_disk_extent_flags(trans, fs_info, eb->start,
8810 8811
						  eb->len, flag,
						  btrfs_header_level(eb), 0);
8812
		BUG_ON(ret); /* -ENOMEM */
8813 8814 8815 8816 8817 8818 8819 8820
		wc->flags[level] |= flag;
	}

	/*
	 * the block is shared by multiple trees, so it's not good to
	 * keep the tree lock
	 */
	if (path->locks[level] && level > 0) {
8821
		btrfs_tree_unlock_rw(eb, path->locks[level]);
8822 8823 8824 8825 8826
		path->locks[level] = 0;
	}
	return 0;
}

8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853
/*
 * This is used to verify a ref exists for this root to deal with a bug where we
 * would have a drop_progress key that hadn't been updated properly.
 */
static int check_ref_exists(struct btrfs_trans_handle *trans,
			    struct btrfs_root *root, u64 bytenr, u64 parent,
			    int level)
{
	struct btrfs_path *path;
	struct btrfs_extent_inline_ref *iref;
	int ret;

	path = btrfs_alloc_path();
	if (!path)
		return -ENOMEM;

	ret = lookup_extent_backref(trans, path, &iref, bytenr,
				    root->fs_info->nodesize, parent,
				    root->root_key.objectid, level, 0);
	btrfs_free_path(path);
	if (ret == -ENOENT)
		return 0;
	if (ret < 0)
		return ret;
	return 1;
}

Y
Yan, Zheng 已提交
8854
/*
L
Liu Bo 已提交
8855
 * helper to process tree block pointer.
Y
Yan, Zheng 已提交
8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869
 *
 * when wc->stage == DROP_REFERENCE, this function checks
 * reference count of the block pointed to. if the block
 * is shared and we need update back refs for the subtree
 * rooted at the block, this function changes wc->stage to
 * UPDATE_BACKREF. if the block is shared and there is no
 * need to update back, this function drops the reference
 * to the block.
 *
 * NOTE: return value 1 means we should stop walking down.
 */
static noinline int do_walk_down(struct btrfs_trans_handle *trans,
				 struct btrfs_root *root,
				 struct btrfs_path *path,
8870
				 struct walk_control *wc, int *lookup_info)
Y
Yan, Zheng 已提交
8871
{
8872
	struct btrfs_fs_info *fs_info = root->fs_info;
Y
Yan, Zheng 已提交
8873 8874 8875 8876
	u64 bytenr;
	u64 generation;
	u64 parent;
	struct btrfs_key key;
8877
	struct btrfs_key first_key;
8878
	struct btrfs_ref ref = { 0 };
Y
Yan, Zheng 已提交
8879 8880 8881 8882
	struct extent_buffer *next;
	int level = wc->level;
	int reada = 0;
	int ret = 0;
8883
	bool need_account = false;
Y
Yan, Zheng 已提交
8884 8885 8886 8887 8888 8889 8890 8891 8892

	generation = btrfs_node_ptr_generation(path->nodes[level],
					       path->slots[level]);
	/*
	 * if the lower level block was created before the snapshot
	 * was created, we know there is no need to update back refs
	 * for the subtree
	 */
	if (wc->stage == UPDATE_BACKREF &&
8893 8894
	    generation <= root->root_key.offset) {
		*lookup_info = 1;
Y
Yan, Zheng 已提交
8895
		return 1;
8896
	}
Y
Yan, Zheng 已提交
8897 8898

	bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
8899 8900
	btrfs_node_key_to_cpu(path->nodes[level], &first_key,
			      path->slots[level]);
Y
Yan, Zheng 已提交
8901

8902
	next = find_extent_buffer(fs_info, bytenr);
Y
Yan, Zheng 已提交
8903
	if (!next) {
8904
		next = btrfs_find_create_tree_block(fs_info, bytenr);
8905 8906 8907
		if (IS_ERR(next))
			return PTR_ERR(next);

8908 8909
		btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
					       level - 1);
Y
Yan, Zheng 已提交
8910 8911 8912
		reada = 1;
	}
	btrfs_tree_lock(next);
8913
	btrfs_set_lock_blocking_write(next);
Y
Yan, Zheng 已提交
8914

8915
	ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, level - 1, 1,
8916 8917
				       &wc->refs[level - 1],
				       &wc->flags[level - 1]);
8918 8919
	if (ret < 0)
		goto out_unlock;
8920

8921
	if (unlikely(wc->refs[level - 1] == 0)) {
8922
		btrfs_err(fs_info, "Missing references.");
8923 8924
		ret = -EIO;
		goto out_unlock;
8925
	}
8926
	*lookup_info = 0;
Y
Yan, Zheng 已提交
8927

8928
	if (wc->stage == DROP_REFERENCE) {
Y
Yan, Zheng 已提交
8929
		if (wc->refs[level - 1] > 1) {
8930
			need_account = true;
8931 8932 8933 8934
			if (level == 1 &&
			    (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
				goto skip;

Y
Yan, Zheng 已提交
8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947
			if (!wc->update_ref ||
			    generation <= root->root_key.offset)
				goto skip;

			btrfs_node_key_to_cpu(path->nodes[level], &key,
					      path->slots[level]);
			ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
			if (ret < 0)
				goto skip;

			wc->stage = UPDATE_BACKREF;
			wc->shared_level = level - 1;
		}
8948 8949 8950 8951
	} else {
		if (level == 1 &&
		    (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
			goto skip;
Y
Yan, Zheng 已提交
8952 8953
	}

8954
	if (!btrfs_buffer_uptodate(next, generation, 0)) {
Y
Yan, Zheng 已提交
8955 8956 8957
		btrfs_tree_unlock(next);
		free_extent_buffer(next);
		next = NULL;
8958
		*lookup_info = 1;
Y
Yan, Zheng 已提交
8959 8960 8961 8962 8963
	}

	if (!next) {
		if (reada && level == 1)
			reada_walk_down(trans, root, wc, path);
8964 8965
		next = read_tree_block(fs_info, bytenr, generation, level - 1,
				       &first_key);
8966 8967 8968
		if (IS_ERR(next)) {
			return PTR_ERR(next);
		} else if (!extent_buffer_uptodate(next)) {
8969
			free_extent_buffer(next);
8970
			return -EIO;
8971
		}
Y
Yan, Zheng 已提交
8972
		btrfs_tree_lock(next);
8973
		btrfs_set_lock_blocking_write(next);
Y
Yan, Zheng 已提交
8974 8975 8976
	}

	level--;
8977 8978 8979 8980 8981 8982
	ASSERT(level == btrfs_header_level(next));
	if (level != btrfs_header_level(next)) {
		btrfs_err(root->fs_info, "mismatched level");
		ret = -EIO;
		goto out_unlock;
	}
Y
Yan, Zheng 已提交
8983 8984
	path->nodes[level] = next;
	path->slots[level] = 0;
8985
	path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Y
Yan, Zheng 已提交
8986 8987 8988 8989 8990 8991 8992
	wc->level = level;
	if (wc->level == 1)
		wc->reada_slot = 0;
	return 0;
skip:
	wc->refs[level - 1] = 0;
	wc->flags[level - 1] = 0;
8993 8994 8995 8996
	if (wc->stage == DROP_REFERENCE) {
		if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
			parent = path->nodes[level]->start;
		} else {
8997
			ASSERT(root->root_key.objectid ==
8998
			       btrfs_header_owner(path->nodes[level]));
8999 9000 9001 9002 9003 9004 9005
			if (root->root_key.objectid !=
			    btrfs_header_owner(path->nodes[level])) {
				btrfs_err(root->fs_info,
						"mismatched block owner");
				ret = -EIO;
				goto out_unlock;
			}
9006 9007
			parent = 0;
		}
Y
Yan, Zheng 已提交
9008

9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025
		/*
		 * If we had a drop_progress we need to verify the refs are set
		 * as expected.  If we find our ref then we know that from here
		 * on out everything should be correct, and we can clear the
		 * ->restarted flag.
		 */
		if (wc->restarted) {
			ret = check_ref_exists(trans, root, bytenr, parent,
					       level - 1);
			if (ret < 0)
				goto out_unlock;
			if (ret == 0)
				goto no_delete;
			ret = 0;
			wc->restarted = 0;
		}

9026 9027 9028 9029 9030 9031 9032
		/*
		 * Reloc tree doesn't contribute to qgroup numbers, and we have
		 * already accounted them at merge time (replace_path),
		 * thus we could skip expensive subtree trace here.
		 */
		if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
		    need_account) {
9033
			ret = btrfs_qgroup_trace_subtree(trans, next,
9034
							 generation, level - 1);
9035
			if (ret) {
9036
				btrfs_err_rl(fs_info,
J
Jeff Mahoney 已提交
9037 9038
					     "Error %d accounting shared subtree. Quota is out of sync, rescan required.",
					     ret);
9039 9040
			}
		}
9041 9042 9043 9044 9045 9046 9047 9048 9049 9050

		/*
		 * We need to update the next key in our walk control so we can
		 * update the drop_progress key accordingly.  We don't care if
		 * find_next_key doesn't find a key because that means we're at
		 * the end and are going to clean up now.
		 */
		wc->drop_level = level;
		find_next_key(path, level, &wc->drop_progress);

9051 9052 9053 9054
		btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr,
				       fs_info->nodesize, parent);
		btrfs_init_tree_ref(&ref, level - 1, root->root_key.objectid);
		ret = btrfs_free_extent(trans, &ref);
9055 9056
		if (ret)
			goto out_unlock;
Y
Yan, Zheng 已提交
9057
	}
9058
no_delete:
9059 9060 9061 9062
	*lookup_info = 1;
	ret = 1;

out_unlock:
Y
Yan, Zheng 已提交
9063 9064
	btrfs_tree_unlock(next);
	free_extent_buffer(next);
9065 9066

	return ret;
Y
Yan, Zheng 已提交
9067 9068
}

9069
/*
L
Liu Bo 已提交
9070
 * helper to process tree block while walking up the tree.
9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085
 *
 * when wc->stage == DROP_REFERENCE, this function drops
 * reference count on the block.
 *
 * when wc->stage == UPDATE_BACKREF, this function changes
 * wc->stage back to DROP_REFERENCE if we changed wc->stage
 * to UPDATE_BACKREF previously while processing the block.
 *
 * NOTE: return value 1 means we should stop walking up.
 */
static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
				 struct btrfs_root *root,
				 struct btrfs_path *path,
				 struct walk_control *wc)
{
9086
	struct btrfs_fs_info *fs_info = root->fs_info;
9087
	int ret;
9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112
	int level = wc->level;
	struct extent_buffer *eb = path->nodes[level];
	u64 parent = 0;

	if (wc->stage == UPDATE_BACKREF) {
		BUG_ON(wc->shared_level < level);
		if (level < wc->shared_level)
			goto out;

		ret = find_next_key(path, level + 1, &wc->update_progress);
		if (ret > 0)
			wc->update_ref = 0;

		wc->stage = DROP_REFERENCE;
		wc->shared_level = -1;
		path->slots[level] = 0;

		/*
		 * check reference count again if the block isn't locked.
		 * we should start walking down the tree again if reference
		 * count is one.
		 */
		if (!path->locks[level]) {
			BUG_ON(level == 0);
			btrfs_tree_lock(eb);
9113
			btrfs_set_lock_blocking_write(eb);
9114
			path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
9115

9116
			ret = btrfs_lookup_extent_info(trans, fs_info,
9117
						       eb->start, level, 1,
9118 9119
						       &wc->refs[level],
						       &wc->flags[level]);
9120 9121
			if (ret < 0) {
				btrfs_tree_unlock_rw(eb, path->locks[level]);
L
Liu Bo 已提交
9122
				path->locks[level] = 0;
9123 9124
				return ret;
			}
9125 9126
			BUG_ON(wc->refs[level] == 0);
			if (wc->refs[level] == 1) {
9127
				btrfs_tree_unlock_rw(eb, path->locks[level]);
L
Liu Bo 已提交
9128
				path->locks[level] = 0;
9129 9130
				return 1;
			}
Y
Yan Zheng 已提交
9131
		}
9132
	}
Y
Yan Zheng 已提交
9133

9134 9135
	/* wc->stage == DROP_REFERENCE */
	BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
9136

9137 9138 9139
	if (wc->refs[level] == 1) {
		if (level == 0) {
			if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9140
				ret = btrfs_dec_ref(trans, root, eb, 1);
9141
			else
9142
				ret = btrfs_dec_ref(trans, root, eb, 0);
9143
			BUG_ON(ret); /* -ENOMEM */
9144 9145 9146 9147 9148
			if (is_fstree(root->root_key.objectid)) {
				ret = btrfs_qgroup_trace_leaf_items(trans, eb);
				if (ret) {
					btrfs_err_rl(fs_info,
	"error %d accounting leaf items, quota is out of sync, rescan required",
J
Jeff Mahoney 已提交
9149
					     ret);
9150
				}
9151
			}
9152
		}
9153
		/* make block locked assertion in btrfs_clean_tree_block happy */
9154 9155 9156
		if (!path->locks[level] &&
		    btrfs_header_generation(eb) == trans->transid) {
			btrfs_tree_lock(eb);
9157
			btrfs_set_lock_blocking_write(eb);
9158
			path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
9159
		}
9160
		btrfs_clean_tree_block(eb);
9161 9162 9163 9164 9165
	}

	if (eb == root->node) {
		if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
			parent = eb->start;
9166 9167
		else if (root->root_key.objectid != btrfs_header_owner(eb))
			goto owner_mismatch;
9168 9169 9170
	} else {
		if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
			parent = path->nodes[level + 1]->start;
9171 9172 9173
		else if (root->root_key.objectid !=
			 btrfs_header_owner(path->nodes[level + 1]))
			goto owner_mismatch;
Y
Yan Zheng 已提交
9174 9175
	}

9176
	btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
9177 9178 9179
out:
	wc->refs[level] = 0;
	wc->flags[level] = 0;
9180
	return 0;
9181 9182 9183 9184 9185

owner_mismatch:
	btrfs_err_rl(fs_info, "unexpected tree owner, have %llu expect %llu",
		     btrfs_header_owner(eb), root->root_key.objectid);
	return -EUCLEAN;
9186 9187 9188 9189 9190 9191 9192 9193
}

static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
				   struct btrfs_root *root,
				   struct btrfs_path *path,
				   struct walk_control *wc)
{
	int level = wc->level;
9194
	int lookup_info = 1;
9195 9196 9197
	int ret;

	while (level >= 0) {
9198
		ret = walk_down_proc(trans, root, path, wc, lookup_info);
9199 9200 9201 9202 9203 9204
		if (ret > 0)
			break;

		if (level == 0)
			break;

9205 9206 9207 9208
		if (path->slots[level] >=
		    btrfs_header_nritems(path->nodes[level]))
			break;

9209
		ret = do_walk_down(trans, root, path, wc, &lookup_info);
Y
Yan, Zheng 已提交
9210 9211 9212
		if (ret > 0) {
			path->slots[level]++;
			continue;
9213 9214
		} else if (ret < 0)
			return ret;
Y
Yan, Zheng 已提交
9215
		level = wc->level;
Y
Yan Zheng 已提交
9216 9217 9218 9219
	}
	return 0;
}

C
Chris Mason 已提交
9220
static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
9221
				 struct btrfs_root *root,
Y
Yan Zheng 已提交
9222
				 struct btrfs_path *path,
9223
				 struct walk_control *wc, int max_level)
C
Chris Mason 已提交
9224
{
9225
	int level = wc->level;
C
Chris Mason 已提交
9226
	int ret;
9227

9228 9229 9230 9231 9232 9233
	path->slots[level] = btrfs_header_nritems(path->nodes[level]);
	while (level < max_level && path->nodes[level]) {
		wc->level = level;
		if (path->slots[level] + 1 <
		    btrfs_header_nritems(path->nodes[level])) {
			path->slots[level]++;
C
Chris Mason 已提交
9234 9235
			return 0;
		} else {
9236 9237 9238
			ret = walk_up_proc(trans, root, path, wc);
			if (ret > 0)
				return 0;
9239 9240
			if (ret < 0)
				return ret;
9241

9242
			if (path->locks[level]) {
9243 9244
				btrfs_tree_unlock_rw(path->nodes[level],
						     path->locks[level]);
9245
				path->locks[level] = 0;
Y
Yan Zheng 已提交
9246
			}
9247 9248 9249
			free_extent_buffer(path->nodes[level]);
			path->nodes[level] = NULL;
			level++;
C
Chris Mason 已提交
9250 9251 9252 9253 9254
		}
	}
	return 1;
}

C
Chris Mason 已提交
9255
/*
9256 9257 9258 9259 9260 9261 9262 9263 9264
 * drop a subvolume tree.
 *
 * this function traverses the tree freeing any blocks that only
 * referenced by the tree.
 *
 * when a shared tree block is found. this function decreases its
 * reference count by one. if update_ref is true, this function
 * also make sure backrefs for the shared block and all lower level
 * blocks are properly updated.
D
David Sterba 已提交
9265 9266
 *
 * If called with for_reloc == 0, may exit early with -EAGAIN
C
Chris Mason 已提交
9267
 */
9268
int btrfs_drop_snapshot(struct btrfs_root *root,
A
Arne Jansen 已提交
9269 9270
			 struct btrfs_block_rsv *block_rsv, int update_ref,
			 int for_reloc)
C
Chris Mason 已提交
9271
{
9272
	struct btrfs_fs_info *fs_info = root->fs_info;
9273
	struct btrfs_path *path;
9274
	struct btrfs_trans_handle *trans;
9275
	struct btrfs_root *tree_root = fs_info->tree_root;
9276
	struct btrfs_root_item *root_item = &root->root_item;
9277 9278 9279 9280 9281
	struct walk_control *wc;
	struct btrfs_key key;
	int err = 0;
	int ret;
	int level;
9282
	bool root_dropped = false;
C
Chris Mason 已提交
9283

9284
	btrfs_debug(fs_info, "Drop subvolume %llu", root->root_key.objectid);
9285

9286
	path = btrfs_alloc_path();
9287 9288 9289 9290
	if (!path) {
		err = -ENOMEM;
		goto out;
	}
C
Chris Mason 已提交
9291

9292
	wc = kzalloc(sizeof(*wc), GFP_NOFS);
9293 9294
	if (!wc) {
		btrfs_free_path(path);
9295 9296
		err = -ENOMEM;
		goto out;
9297
	}
9298

9299
	trans = btrfs_start_transaction(tree_root, 0);
9300 9301 9302 9303
	if (IS_ERR(trans)) {
		err = PTR_ERR(trans);
		goto out_free;
	}
9304

9305 9306 9307 9308
	err = btrfs_run_delayed_items(trans);
	if (err)
		goto out_end_trans;

9309 9310
	if (block_rsv)
		trans->block_rsv = block_rsv;
9311

9312 9313 9314 9315 9316 9317 9318 9319 9320
	/*
	 * This will help us catch people modifying the fs tree while we're
	 * dropping it.  It is unsafe to mess with the fs tree while it's being
	 * dropped as we unlock the root node and parent nodes as we walk down
	 * the tree, assuming nothing will change.  If something does change
	 * then we'll have stale information and drop references to blocks we've
	 * already dropped.
	 */
	set_bit(BTRFS_ROOT_DELETING, &root->state);
9321
	if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
9322
		level = btrfs_header_level(root->node);
9323
		path->nodes[level] = btrfs_lock_root_node(root);
9324
		btrfs_set_lock_blocking_write(path->nodes[level]);
9325
		path->slots[level] = 0;
9326
		path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
9327 9328
		memset(&wc->update_progress, 0,
		       sizeof(wc->update_progress));
9329 9330
	} else {
		btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
9331 9332 9333
		memcpy(&wc->update_progress, &key,
		       sizeof(wc->update_progress));

9334
		level = root_item->drop_level;
9335
		BUG_ON(level == 0);
9336
		path->lowest_level = level;
9337 9338 9339 9340
		ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
		path->lowest_level = 0;
		if (ret < 0) {
			err = ret;
9341
			goto out_end_trans;
9342
		}
Y
Yan, Zheng 已提交
9343
		WARN_ON(ret > 0);
9344

9345 9346 9347 9348
		/*
		 * unlock our path, this is safe because only this
		 * function is allowed to delete this snapshot
		 */
9349
		btrfs_unlock_up_safe(path, 0);
9350 9351 9352 9353

		level = btrfs_header_level(root->node);
		while (1) {
			btrfs_tree_lock(path->nodes[level]);
9354
			btrfs_set_lock_blocking_write(path->nodes[level]);
9355
			path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
9356

9357
			ret = btrfs_lookup_extent_info(trans, fs_info,
9358
						path->nodes[level]->start,
9359
						level, 1, &wc->refs[level],
9360
						&wc->flags[level]);
9361 9362 9363 9364
			if (ret < 0) {
				err = ret;
				goto out_end_trans;
			}
9365 9366 9367 9368 9369 9370
			BUG_ON(wc->refs[level] == 0);

			if (level == root_item->drop_level)
				break;

			btrfs_tree_unlock(path->nodes[level]);
9371
			path->locks[level] = 0;
9372 9373 9374
			WARN_ON(wc->refs[level] != 1);
			level--;
		}
9375
	}
9376

9377
	wc->restarted = test_bit(BTRFS_ROOT_DEAD_TREE, &root->state);
9378 9379 9380 9381 9382
	wc->level = level;
	wc->shared_level = -1;
	wc->stage = DROP_REFERENCE;
	wc->update_ref = update_ref;
	wc->keep_locks = 0;
9383
	wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
9384

C
Chris Mason 已提交
9385
	while (1) {
D
David Sterba 已提交
9386

9387 9388 9389
		ret = walk_down_tree(trans, root, path, wc);
		if (ret < 0) {
			err = ret;
C
Chris Mason 已提交
9390
			break;
9391
		}
C
Chris Mason 已提交
9392

9393 9394 9395
		ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
		if (ret < 0) {
			err = ret;
C
Chris Mason 已提交
9396
			break;
9397 9398 9399 9400
		}

		if (ret > 0) {
			BUG_ON(wc->stage != DROP_REFERENCE);
9401 9402
			break;
		}
9403 9404

		if (wc->stage == DROP_REFERENCE) {
9405 9406 9407 9408 9409 9410 9411 9412
			wc->drop_level = wc->level;
			btrfs_node_key_to_cpu(path->nodes[wc->drop_level],
					      &wc->drop_progress,
					      path->slots[wc->drop_level]);
		}
		btrfs_cpu_key_to_disk(&root_item->drop_progress,
				      &wc->drop_progress);
		root_item->drop_level = wc->drop_level;
9413 9414

		BUG_ON(wc->level == 0);
9415
		if (btrfs_should_end_transaction(trans) ||
9416
		    (!for_reloc && btrfs_need_cleaner_sleep(fs_info))) {
9417 9418 9419
			ret = btrfs_update_root(trans, tree_root,
						&root->root_key,
						root_item);
9420
			if (ret) {
9421
				btrfs_abort_transaction(trans, ret);
9422 9423 9424
				err = ret;
				goto out_end_trans;
			}
9425

9426
			btrfs_end_transaction_throttle(trans);
9427
			if (!for_reloc && btrfs_need_cleaner_sleep(fs_info)) {
9428 9429
				btrfs_debug(fs_info,
					    "drop snapshot early exit");
9430 9431 9432 9433
				err = -EAGAIN;
				goto out_free;
			}

9434
			trans = btrfs_start_transaction(tree_root, 0);
9435 9436 9437 9438
			if (IS_ERR(trans)) {
				err = PTR_ERR(trans);
				goto out_free;
			}
9439 9440
			if (block_rsv)
				trans->block_rsv = block_rsv;
9441
		}
C
Chris Mason 已提交
9442
	}
9443
	btrfs_release_path(path);
9444 9445
	if (err)
		goto out_end_trans;
9446

9447
	ret = btrfs_del_root(trans, &root->root_key);
9448
	if (ret) {
9449
		btrfs_abort_transaction(trans, ret);
9450
		err = ret;
9451 9452
		goto out_end_trans;
	}
9453

9454
	if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
9455 9456
		ret = btrfs_find_root(tree_root, &root->root_key, path,
				      NULL, NULL);
9457
		if (ret < 0) {
9458
			btrfs_abort_transaction(trans, ret);
9459 9460 9461
			err = ret;
			goto out_end_trans;
		} else if (ret > 0) {
9462 9463 9464 9465 9466 9467 9468
			/* if we fail to delete the orphan item this time
			 * around, it'll get picked up the next time.
			 *
			 * The most common failure here is just -ENOENT.
			 */
			btrfs_del_orphan_item(trans, tree_root,
					      root->root_key.objectid);
9469 9470 9471
		}
	}

9472
	if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
9473
		btrfs_add_dropped_root(trans, root);
9474 9475 9476
	} else {
		free_extent_buffer(root->node);
		free_extent_buffer(root->commit_root);
9477
		btrfs_put_fs_root(root);
9478
	}
9479
	root_dropped = true;
9480
out_end_trans:
9481
	btrfs_end_transaction_throttle(trans);
9482
out_free:
9483
	kfree(wc);
9484
	btrfs_free_path(path);
9485
out:
9486 9487 9488 9489 9490 9491 9492
	/*
	 * So if we need to stop dropping the snapshot for whatever reason we
	 * need to make sure to add it back to the dead root list so that we
	 * keep trying to do the work later.  This also cleans up roots if we
	 * don't have it in the radix (like when we recover after a power fail
	 * or unmount) so we don't leak memory.
	 */
9493
	if (!for_reloc && !root_dropped)
9494
		btrfs_add_dead_root(root);
9495
	if (err && err != -EAGAIN)
9496
		btrfs_handle_fs_error(fs_info, err, NULL);
9497
	return err;
C
Chris Mason 已提交
9498
}
C
Chris Mason 已提交
9499

9500 9501 9502 9503
/*
 * drop subtree rooted at tree block 'node'.
 *
 * NOTE: this function will unlock and release tree block 'node'
A
Arne Jansen 已提交
9504
 * only used by relocation code
9505
 */
Y
Yan Zheng 已提交
9506 9507 9508 9509 9510
int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
			struct btrfs_root *root,
			struct extent_buffer *node,
			struct extent_buffer *parent)
{
9511
	struct btrfs_fs_info *fs_info = root->fs_info;
Y
Yan Zheng 已提交
9512
	struct btrfs_path *path;
9513
	struct walk_control *wc;
Y
Yan Zheng 已提交
9514 9515 9516 9517 9518
	int level;
	int parent_level;
	int ret = 0;
	int wret;

9519 9520
	BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);

Y
Yan Zheng 已提交
9521
	path = btrfs_alloc_path();
T
Tsutomu Itoh 已提交
9522 9523
	if (!path)
		return -ENOMEM;
Y
Yan Zheng 已提交
9524

9525
	wc = kzalloc(sizeof(*wc), GFP_NOFS);
T
Tsutomu Itoh 已提交
9526 9527 9528 9529
	if (!wc) {
		btrfs_free_path(path);
		return -ENOMEM;
	}
9530

9531
	btrfs_assert_tree_locked(parent);
Y
Yan Zheng 已提交
9532 9533 9534 9535 9536
	parent_level = btrfs_header_level(parent);
	extent_buffer_get(parent);
	path->nodes[parent_level] = parent;
	path->slots[parent_level] = btrfs_header_nritems(parent);

9537
	btrfs_assert_tree_locked(node);
Y
Yan Zheng 已提交
9538 9539 9540
	level = btrfs_header_level(node);
	path->nodes[level] = node;
	path->slots[level] = 0;
9541
	path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
9542 9543 9544 9545 9546 9547 9548 9549

	wc->refs[parent_level] = 1;
	wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
	wc->level = level;
	wc->shared_level = -1;
	wc->stage = DROP_REFERENCE;
	wc->update_ref = 0;
	wc->keep_locks = 1;
9550
	wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Y
Yan Zheng 已提交
9551 9552

	while (1) {
9553 9554
		wret = walk_down_tree(trans, root, path, wc);
		if (wret < 0) {
Y
Yan Zheng 已提交
9555 9556
			ret = wret;
			break;
9557
		}
Y
Yan Zheng 已提交
9558

9559
		wret = walk_up_tree(trans, root, path, wc, parent_level);
Y
Yan Zheng 已提交
9560 9561 9562 9563 9564 9565
		if (wret < 0)
			ret = wret;
		if (wret != 0)
			break;
	}

9566
	kfree(wc);
Y
Yan Zheng 已提交
9567 9568 9569 9570
	btrfs_free_path(path);
	return ret;
}

9571
static u64 update_block_group_flags(struct btrfs_fs_info *fs_info, u64 flags)
9572 9573
{
	u64 num_devices;
9574
	u64 stripped;
9575

9576 9577 9578 9579
	/*
	 * if restripe for this chunk_type is on pick target profile and
	 * return, otherwise do the usual balance
	 */
9580
	stripped = get_restripe_target(fs_info, flags);
9581 9582
	if (stripped)
		return extended_to_chunk(stripped);
9583

9584
	num_devices = fs_info->fs_devices->rw_devices;
9585

9586
	stripped = BTRFS_BLOCK_GROUP_RAID0 |
D
David Woodhouse 已提交
9587
		BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
9588 9589
		BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;

9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613
	if (num_devices == 1) {
		stripped |= BTRFS_BLOCK_GROUP_DUP;
		stripped = flags & ~stripped;

		/* turn raid0 into single device chunks */
		if (flags & BTRFS_BLOCK_GROUP_RAID0)
			return stripped;

		/* turn mirroring into duplication */
		if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
			     BTRFS_BLOCK_GROUP_RAID10))
			return stripped | BTRFS_BLOCK_GROUP_DUP;
	} else {
		/* they already had raid on here, just return */
		if (flags & stripped)
			return flags;

		stripped |= BTRFS_BLOCK_GROUP_DUP;
		stripped = flags & ~stripped;

		/* switch duplicated blocks with raid1 */
		if (flags & BTRFS_BLOCK_GROUP_DUP)
			return stripped | BTRFS_BLOCK_GROUP_RAID1;

9614
		/* this is drive concat, leave it alone */
9615
	}
9616

9617 9618 9619
	return flags;
}

9620
static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
C
Chris Mason 已提交
9621
{
9622 9623
	struct btrfs_space_info *sinfo = cache->space_info;
	u64 num_bytes;
9624
	u64 sinfo_used;
9625
	u64 min_allocable_bytes;
9626
	int ret = -ENOSPC;
C
Chris Mason 已提交
9627

9628 9629 9630 9631 9632 9633 9634 9635
	/*
	 * We need some metadata space and system metadata space for
	 * allocating chunks in some corner cases until we force to set
	 * it to be readonly.
	 */
	if ((sinfo->flags &
	     (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
	    !force)
9636
		min_allocable_bytes = SZ_1M;
9637 9638 9639
	else
		min_allocable_bytes = 0;

9640 9641
	spin_lock(&sinfo->lock);
	spin_lock(&cache->lock);
9642 9643

	if (cache->ro) {
9644
		cache->ro++;
9645 9646 9647 9648
		ret = 0;
		goto out;
	}

9649 9650
	num_bytes = cache->key.offset - cache->reserved - cache->pinned -
		    cache->bytes_super - btrfs_block_group_used(&cache->item);
9651
	sinfo_used = btrfs_space_info_used(sinfo, true);
9652

9653 9654
	if (sinfo_used + num_bytes + min_allocable_bytes <=
	    sinfo->total_bytes) {
9655
		sinfo->bytes_readonly += num_bytes;
9656
		cache->ro++;
9657
		list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
9658 9659
		ret = 0;
	}
9660
out:
9661 9662
	spin_unlock(&cache->lock);
	spin_unlock(&sinfo->lock);
9663 9664 9665 9666 9667 9668 9669 9670 9671
	if (ret == -ENOSPC && btrfs_test_opt(cache->fs_info, ENOSPC_DEBUG)) {
		btrfs_info(cache->fs_info,
			"unable to make block group %llu ro",
			cache->key.objectid);
		btrfs_info(cache->fs_info,
			"sinfo_used=%llu bg_num_bytes=%llu min_allocable=%llu",
			sinfo_used, num_bytes, min_allocable_bytes);
		dump_space_info(cache->fs_info, cache->space_info, 0, 0);
	}
9672 9673
	return ret;
}
9674

9675
int btrfs_inc_block_group_ro(struct btrfs_block_group_cache *cache)
9676

9677
{
9678
	struct btrfs_fs_info *fs_info = cache->fs_info;
9679 9680 9681
	struct btrfs_trans_handle *trans;
	u64 alloc_flags;
	int ret;
9682

9683
again:
9684
	trans = btrfs_join_transaction(fs_info->extent_root);
9685 9686
	if (IS_ERR(trans))
		return PTR_ERR(trans);
9687

9688 9689 9690 9691 9692
	/*
	 * we're not allowed to set block groups readonly after the dirty
	 * block groups cache has started writing.  If it already started,
	 * back off and let this transaction commit
	 */
9693
	mutex_lock(&fs_info->ro_block_group_mutex);
9694
	if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
9695 9696
		u64 transid = trans->transid;

9697
		mutex_unlock(&fs_info->ro_block_group_mutex);
9698
		btrfs_end_transaction(trans);
9699

9700
		ret = btrfs_wait_for_commit(fs_info, transid);
9701 9702 9703 9704 9705
		if (ret)
			return ret;
		goto again;
	}

9706 9707 9708 9709
	/*
	 * if we are changing raid levels, try to allocate a corresponding
	 * block group with the new raid level.
	 */
9710
	alloc_flags = update_block_group_flags(fs_info, cache->flags);
9711
	if (alloc_flags != cache->flags) {
9712
		ret = do_chunk_alloc(trans, alloc_flags,
9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723
				     CHUNK_ALLOC_FORCE);
		/*
		 * ENOSPC is allowed here, we may have enough space
		 * already allocated at the new raid level to
		 * carry on
		 */
		if (ret == -ENOSPC)
			ret = 0;
		if (ret < 0)
			goto out;
	}
9724

9725
	ret = inc_block_group_ro(cache, 0);
9726 9727
	if (!ret)
		goto out;
9728
	alloc_flags = get_alloc_profile(fs_info, cache->space_info->flags);
9729
	ret = do_chunk_alloc(trans, alloc_flags, CHUNK_ALLOC_FORCE);
9730 9731
	if (ret < 0)
		goto out;
9732
	ret = inc_block_group_ro(cache, 0);
9733
out:
9734
	if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
9735
		alloc_flags = update_block_group_flags(fs_info, cache->flags);
9736
		mutex_lock(&fs_info->chunk_mutex);
9737
		check_system_chunk(trans, alloc_flags);
9738
		mutex_unlock(&fs_info->chunk_mutex);
9739
	}
9740
	mutex_unlock(&fs_info->ro_block_group_mutex);
9741

9742
	btrfs_end_transaction(trans);
9743 9744
	return ret;
}
9745

9746
int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, u64 type)
9747
{
9748
	u64 alloc_flags = get_alloc_profile(trans->fs_info, type);
9749

9750
	return do_chunk_alloc(trans, alloc_flags, CHUNK_ALLOC_FORCE);
9751 9752
}

9753 9754
/*
 * helper to account the unused space of all the readonly block group in the
9755
 * space_info. takes mirrors into account.
9756
 */
9757
u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
9758 9759 9760 9761 9762
{
	struct btrfs_block_group_cache *block_group;
	u64 free_bytes = 0;
	int factor;

9763
	/* It's df, we don't care if it's racy */
9764 9765 9766 9767 9768
	if (list_empty(&sinfo->ro_bgs))
		return 0;

	spin_lock(&sinfo->lock);
	list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
9769 9770 9771 9772 9773 9774 9775
		spin_lock(&block_group->lock);

		if (!block_group->ro) {
			spin_unlock(&block_group->lock);
			continue;
		}

9776
		factor = btrfs_bg_type_to_factor(block_group->flags);
9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787
		free_bytes += (block_group->key.offset -
			       btrfs_block_group_used(&block_group->item)) *
			       factor;

		spin_unlock(&block_group->lock);
	}
	spin_unlock(&sinfo->lock);

	return free_bytes;
}

9788
void btrfs_dec_block_group_ro(struct btrfs_block_group_cache *cache)
9789
{
9790 9791 9792 9793 9794 9795 9796
	struct btrfs_space_info *sinfo = cache->space_info;
	u64 num_bytes;

	BUG_ON(!cache->ro);

	spin_lock(&sinfo->lock);
	spin_lock(&cache->lock);
9797 9798 9799 9800 9801 9802 9803
	if (!--cache->ro) {
		num_bytes = cache->key.offset - cache->reserved -
			    cache->pinned - cache->bytes_super -
			    btrfs_block_group_used(&cache->item);
		sinfo->bytes_readonly -= num_bytes;
		list_del_init(&cache->ro_list);
	}
9804 9805
	spin_unlock(&cache->lock);
	spin_unlock(&sinfo->lock);
9806 9807
}

9808
/*
9809
 * Checks to see if it's even possible to relocate this block group.
9810 9811 9812 9813
 *
 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
 * ok to go ahead and try.
 */
9814
int btrfs_can_relocate(struct btrfs_fs_info *fs_info, u64 bytenr)
Z
Zheng Yan 已提交
9815
{
9816 9817
	struct btrfs_block_group_cache *block_group;
	struct btrfs_space_info *space_info;
9818
	struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
9819
	struct btrfs_device *device;
9820
	u64 min_free;
J
Josef Bacik 已提交
9821 9822
	u64 dev_min = 1;
	u64 dev_nr = 0;
9823
	u64 target;
9824
	int debug;
9825
	int index;
9826 9827
	int full = 0;
	int ret = 0;
Z
Zheng Yan 已提交
9828

9829
	debug = btrfs_test_opt(fs_info, ENOSPC_DEBUG);
9830

9831
	block_group = btrfs_lookup_block_group(fs_info, bytenr);
Z
Zheng Yan 已提交
9832

9833
	/* odd, couldn't find the block group, leave it alone */
9834 9835
	if (!block_group) {
		if (debug)
9836
			btrfs_warn(fs_info,
9837 9838
				   "can't find block group for bytenr %llu",
				   bytenr);
9839
		return -1;
9840
	}
Z
Zheng Yan 已提交
9841

9842 9843
	min_free = btrfs_block_group_used(&block_group->item);

9844
	/* no bytes used, we're good */
9845
	if (!min_free)
Z
Zheng Yan 已提交
9846 9847
		goto out;

9848 9849
	space_info = block_group->space_info;
	spin_lock(&space_info->lock);
9850

9851
	full = space_info->full;
9852

9853 9854
	/*
	 * if this is the last block group we have in this space, we can't
9855 9856 9857 9858
	 * relocate it unless we're able to allocate a new chunk below.
	 *
	 * Otherwise, we need to make sure we have room in the space to handle
	 * all of the extents from this block group.  If we can, we're good
9859
	 */
9860
	if ((space_info->total_bytes != block_group->key.offset) &&
9861 9862
	    (btrfs_space_info_used(space_info, false) + min_free <
	     space_info->total_bytes)) {
9863 9864
		spin_unlock(&space_info->lock);
		goto out;
9865
	}
9866
	spin_unlock(&space_info->lock);
9867

9868 9869 9870
	/*
	 * ok we don't have enough space, but maybe we have free space on our
	 * devices to allocate new chunks for relocation, so loop through our
9871 9872 9873
	 * alloc devices and guess if we have enough space.  if this block
	 * group is going to be restriped, run checks against the target
	 * profile instead of the current one.
9874 9875
	 */
	ret = -1;
9876

9877 9878 9879 9880 9881 9882 9883 9884
	/*
	 * index:
	 *      0: raid10
	 *      1: raid1
	 *      2: dup
	 *      3: raid0
	 *      4: single
	 */
9885
	target = get_restripe_target(fs_info, block_group->flags);
9886
	if (target) {
9887
		index = btrfs_bg_flags_to_raid_index(extended_to_chunk(target));
9888 9889 9890 9891 9892
	} else {
		/*
		 * this is just a balance, so if we were marked as full
		 * we know there is no space for a new chunk
		 */
9893 9894
		if (full) {
			if (debug)
9895 9896 9897
				btrfs_warn(fs_info,
					   "no space to alloc new chunk for block group %llu",
					   block_group->key.objectid);
9898
			goto out;
9899
		}
9900

9901
		index = btrfs_bg_flags_to_raid_index(block_group->flags);
9902 9903
	}

9904
	if (index == BTRFS_RAID_RAID10) {
9905
		dev_min = 4;
J
Josef Bacik 已提交
9906 9907
		/* Divide by 2 */
		min_free >>= 1;
9908
	} else if (index == BTRFS_RAID_RAID1) {
9909
		dev_min = 2;
9910
	} else if (index == BTRFS_RAID_DUP) {
J
Josef Bacik 已提交
9911 9912
		/* Multiply by 2 */
		min_free <<= 1;
9913
	} else if (index == BTRFS_RAID_RAID0) {
9914
		dev_min = fs_devices->rw_devices;
9915
		min_free = div64_u64(min_free, dev_min);
9916 9917
	}

9918
	mutex_lock(&fs_info->chunk_mutex);
9919
	list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
9920
		u64 dev_offset;
9921

9922 9923 9924 9925
		/*
		 * check to make sure we can actually find a chunk with enough
		 * space to fit our block group in.
		 */
9926
		if (device->total_bytes > device->bytes_used + min_free &&
9927
		    !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
9928
			ret = find_free_dev_extent(device, min_free,
9929
						   &dev_offset, NULL);
9930
			if (!ret)
9931 9932 9933
				dev_nr++;

			if (dev_nr >= dev_min)
9934
				break;
9935

9936
			ret = -1;
9937
		}
9938
	}
9939
	if (debug && ret == -1)
9940 9941 9942 9943
		btrfs_warn(fs_info,
			   "no space to allocate a new chunk for block group %llu",
			   block_group->key.objectid);
	mutex_unlock(&fs_info->chunk_mutex);
9944
out:
9945
	btrfs_put_block_group(block_group);
9946 9947 9948
	return ret;
}

9949 9950 9951
static int find_first_block_group(struct btrfs_fs_info *fs_info,
				  struct btrfs_path *path,
				  struct btrfs_key *key)
9952
{
9953
	struct btrfs_root *root = fs_info->extent_root;
9954
	int ret = 0;
9955 9956
	struct btrfs_key found_key;
	struct extent_buffer *leaf;
9957 9958
	struct btrfs_block_group_item bg;
	u64 flags;
9959
	int slot;
9960

9961 9962
	ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
	if (ret < 0)
9963 9964
		goto out;

C
Chris Mason 已提交
9965
	while (1) {
9966
		slot = path->slots[0];
9967
		leaf = path->nodes[0];
9968 9969 9970 9971 9972
		if (slot >= btrfs_header_nritems(leaf)) {
			ret = btrfs_next_leaf(root, path);
			if (ret == 0)
				continue;
			if (ret < 0)
9973
				goto out;
9974
			break;
9975
		}
9976
		btrfs_item_key_to_cpu(leaf, &found_key, slot);
9977

9978
		if (found_key.objectid >= key->objectid &&
9979
		    found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
9980 9981 9982 9983 9984 9985 9986 9987 9988
			struct extent_map_tree *em_tree;
			struct extent_map *em;

			em_tree = &root->fs_info->mapping_tree.map_tree;
			read_lock(&em_tree->lock);
			em = lookup_extent_mapping(em_tree, found_key.objectid,
						   found_key.offset);
			read_unlock(&em_tree->lock);
			if (!em) {
9989
				btrfs_err(fs_info,
9990 9991 9992
			"logical %llu len %llu found bg but no related chunk",
					  found_key.objectid, found_key.offset);
				ret = -ENOENT;
9993 9994 9995 9996 9997 9998 9999
			} else if (em->start != found_key.objectid ||
				   em->len != found_key.offset) {
				btrfs_err(fs_info,
		"block group %llu len %llu mismatch with chunk %llu len %llu",
					  found_key.objectid, found_key.offset,
					  em->start, em->len);
				ret = -EUCLEAN;
10000
			} else {
10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018
				read_extent_buffer(leaf, &bg,
					btrfs_item_ptr_offset(leaf, slot),
					sizeof(bg));
				flags = btrfs_block_group_flags(&bg) &
					BTRFS_BLOCK_GROUP_TYPE_MASK;

				if (flags != (em->map_lookup->type &
					      BTRFS_BLOCK_GROUP_TYPE_MASK)) {
					btrfs_err(fs_info,
"block group %llu len %llu type flags 0x%llx mismatch with chunk type flags 0x%llx",
						found_key.objectid,
						found_key.offset, flags,
						(BTRFS_BLOCK_GROUP_TYPE_MASK &
						 em->map_lookup->type));
					ret = -EUCLEAN;
				} else {
					ret = 0;
				}
10019
			}
10020
			free_extent_map(em);
10021 10022
			goto out;
		}
10023
		path->slots[0]++;
10024
	}
10025
out:
10026
	return ret;
10027 10028
}

10029 10030 10031 10032 10033 10034 10035 10036 10037 10038
void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
{
	struct btrfs_block_group_cache *block_group;
	u64 last = 0;

	while (1) {
		struct inode *inode;

		block_group = btrfs_lookup_first_block_group(info, last);
		while (block_group) {
10039
			wait_block_group_cache_done(block_group);
10040 10041 10042 10043
			spin_lock(&block_group->lock);
			if (block_group->iref)
				break;
			spin_unlock(&block_group->lock);
10044
			block_group = next_block_group(block_group);
10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056
		}
		if (!block_group) {
			if (last == 0)
				break;
			last = 0;
			continue;
		}

		inode = block_group->inode;
		block_group->iref = 0;
		block_group->inode = NULL;
		spin_unlock(&block_group->lock);
10057
		ASSERT(block_group->io_ctl.inode == NULL);
10058 10059 10060 10061 10062 10063
		iput(inode);
		last = block_group->key.objectid + block_group->key.offset;
		btrfs_put_block_group(block_group);
	}
}

10064 10065 10066 10067 10068
/*
 * Must be called only after stopping all workers, since we could have block
 * group caching kthreads running, and therefore they could race with us if we
 * freed the block groups before stopping them.
 */
Z
Zheng Yan 已提交
10069 10070 10071
int btrfs_free_block_groups(struct btrfs_fs_info *info)
{
	struct btrfs_block_group_cache *block_group;
10072
	struct btrfs_space_info *space_info;
10073
	struct btrfs_caching_control *caching_ctl;
Z
Zheng Yan 已提交
10074 10075
	struct rb_node *n;

10076
	down_write(&info->commit_root_sem);
10077 10078 10079 10080 10081 10082
	while (!list_empty(&info->caching_block_groups)) {
		caching_ctl = list_entry(info->caching_block_groups.next,
					 struct btrfs_caching_control, list);
		list_del(&caching_ctl->list);
		put_caching_control(caching_ctl);
	}
10083
	up_write(&info->commit_root_sem);
10084

10085 10086 10087 10088 10089 10090 10091 10092 10093 10094
	spin_lock(&info->unused_bgs_lock);
	while (!list_empty(&info->unused_bgs)) {
		block_group = list_first_entry(&info->unused_bgs,
					       struct btrfs_block_group_cache,
					       bg_list);
		list_del_init(&block_group->bg_list);
		btrfs_put_block_group(block_group);
	}
	spin_unlock(&info->unused_bgs_lock);

Z
Zheng Yan 已提交
10095 10096 10097 10098 10099 10100
	spin_lock(&info->block_group_cache_lock);
	while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
		block_group = rb_entry(n, struct btrfs_block_group_cache,
				       cache_node);
		rb_erase(&block_group->cache_node,
			 &info->block_group_cache_tree);
10101
		RB_CLEAR_NODE(&block_group->cache_node);
Y
Yan Zheng 已提交
10102 10103
		spin_unlock(&info->block_group_cache_lock);

10104
		down_write(&block_group->space_info->groups_sem);
Z
Zheng Yan 已提交
10105
		list_del(&block_group->list);
10106
		up_write(&block_group->space_info->groups_sem);
10107

10108 10109 10110 10111
		/*
		 * We haven't cached this block group, which means we could
		 * possibly have excluded extents on this block group.
		 */
10112 10113
		if (block_group->cached == BTRFS_CACHE_NO ||
		    block_group->cached == BTRFS_CACHE_ERROR)
10114
			free_excluded_extents(block_group);
10115

J
Josef Bacik 已提交
10116
		btrfs_remove_free_space_cache(block_group);
10117
		ASSERT(block_group->cached != BTRFS_CACHE_STARTED);
10118 10119 10120 10121
		ASSERT(list_empty(&block_group->dirty_list));
		ASSERT(list_empty(&block_group->io_list));
		ASSERT(list_empty(&block_group->bg_list));
		ASSERT(atomic_read(&block_group->count) == 1);
10122
		btrfs_put_block_group(block_group);
Y
Yan Zheng 已提交
10123 10124

		spin_lock(&info->block_group_cache_lock);
Z
Zheng Yan 已提交
10125 10126
	}
	spin_unlock(&info->block_group_cache_lock);
10127 10128 10129 10130 10131 10132 10133 10134 10135

	/* now that all the block groups are freed, go through and
	 * free all the space_info structs.  This is only called during
	 * the final stages of unmount, and so we know nobody is
	 * using them.  We call synchronize_rcu() once before we start,
	 * just to be on the safe side.
	 */
	synchronize_rcu();

10136 10137
	release_global_block_rsv(info);

10138
	while (!list_empty(&info->space_info)) {
10139 10140
		int i;

10141 10142 10143
		space_info = list_entry(info->space_info.next,
					struct btrfs_space_info,
					list);
10144 10145 10146 10147 10148 10149

		/*
		 * Do not hide this behind enospc_debug, this is actually
		 * important and indicates a real bug if this happens.
		 */
		if (WARN_ON(space_info->bytes_pinned > 0 ||
10150
			    space_info->bytes_reserved > 0 ||
10151
			    space_info->bytes_may_use > 0))
10152
			dump_space_info(info, space_info, 0, 0);
10153
		list_del(&space_info->list);
10154 10155
		for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
			struct kobject *kobj;
10156 10157 10158
			kobj = space_info->block_group_kobjs[i];
			space_info->block_group_kobjs[i] = NULL;
			if (kobj) {
10159 10160 10161 10162 10163 10164
				kobject_del(kobj);
				kobject_put(kobj);
			}
		}
		kobject_del(&space_info->kobj);
		kobject_put(&space_info->kobj);
10165
	}
Z
Zheng Yan 已提交
10166 10167 10168
	return 0;
}

10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197
/* link_block_group will queue up kobjects to add when we're reclaim-safe */
void btrfs_add_raid_kobjects(struct btrfs_fs_info *fs_info)
{
	struct btrfs_space_info *space_info;
	struct raid_kobject *rkobj;
	LIST_HEAD(list);
	int index;
	int ret = 0;

	spin_lock(&fs_info->pending_raid_kobjs_lock);
	list_splice_init(&fs_info->pending_raid_kobjs, &list);
	spin_unlock(&fs_info->pending_raid_kobjs_lock);

	list_for_each_entry(rkobj, &list, list) {
		space_info = __find_space_info(fs_info, rkobj->flags);
		index = btrfs_bg_flags_to_raid_index(rkobj->flags);

		ret = kobject_add(&rkobj->kobj, &space_info->kobj,
				  "%s", get_raid_name(index));
		if (ret) {
			kobject_put(&rkobj->kobj);
			break;
		}
	}
	if (ret)
		btrfs_warn(fs_info,
			   "failed to add kobject for block cache, ignoring");
}

10198
static void link_block_group(struct btrfs_block_group_cache *cache)
10199
{
10200
	struct btrfs_space_info *space_info = cache->space_info;
10201
	struct btrfs_fs_info *fs_info = cache->fs_info;
10202
	int index = btrfs_bg_flags_to_raid_index(cache->flags);
10203
	bool first = false;
10204 10205

	down_write(&space_info->groups_sem);
10206 10207 10208 10209 10210 10211
	if (list_empty(&space_info->block_groups[index]))
		first = true;
	list_add_tail(&cache->list, &space_info->block_groups[index]);
	up_write(&space_info->groups_sem);

	if (first) {
10212 10213 10214 10215 10216
		struct raid_kobject *rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
		if (!rkobj) {
			btrfs_warn(cache->fs_info,
				"couldn't alloc memory for raid level kobject");
			return;
10217
		}
10218 10219 10220 10221 10222 10223
		rkobj->flags = cache->flags;
		kobject_init(&rkobj->kobj, &btrfs_raid_ktype);

		spin_lock(&fs_info->pending_raid_kobjs_lock);
		list_add_tail(&rkobj->list, &fs_info->pending_raid_kobjs);
		spin_unlock(&fs_info->pending_raid_kobjs_lock);
10224
		space_info->block_group_kobjs[index] = &rkobj->kobj;
10225
	}
10226 10227
}

10228
static struct btrfs_block_group_cache *
10229 10230
btrfs_create_block_group_cache(struct btrfs_fs_info *fs_info,
			       u64 start, u64 size)
10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248
{
	struct btrfs_block_group_cache *cache;

	cache = kzalloc(sizeof(*cache), GFP_NOFS);
	if (!cache)
		return NULL;

	cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
					GFP_NOFS);
	if (!cache->free_space_ctl) {
		kfree(cache);
		return NULL;
	}

	cache->key.objectid = start;
	cache->key.offset = size;
	cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;

10249
	cache->fs_info = fs_info;
10250
	cache->full_stripe_len = btrfs_full_stripe_len(fs_info, start);
10251 10252
	set_free_space_tree_thresholds(cache);

10253 10254
	atomic_set(&cache->count, 1);
	spin_lock_init(&cache->lock);
10255
	init_rwsem(&cache->data_rwsem);
10256 10257
	INIT_LIST_HEAD(&cache->list);
	INIT_LIST_HEAD(&cache->cluster_list);
10258
	INIT_LIST_HEAD(&cache->bg_list);
10259
	INIT_LIST_HEAD(&cache->ro_list);
10260
	INIT_LIST_HEAD(&cache->dirty_list);
10261
	INIT_LIST_HEAD(&cache->io_list);
10262
	btrfs_init_free_space_ctl(cache);
10263
	atomic_set(&cache->trimming, 0);
10264
	mutex_init(&cache->free_space_lock);
10265
	btrfs_init_full_stripe_locks_tree(&cache->full_stripe_locks_root);
10266 10267 10268 10269

	return cache;
}

10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325

/*
 * Iterate all chunks and verify that each of them has the corresponding block
 * group
 */
static int check_chunk_block_group_mappings(struct btrfs_fs_info *fs_info)
{
	struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
	struct extent_map *em;
	struct btrfs_block_group_cache *bg;
	u64 start = 0;
	int ret = 0;

	while (1) {
		read_lock(&map_tree->map_tree.lock);
		/*
		 * lookup_extent_mapping will return the first extent map
		 * intersecting the range, so setting @len to 1 is enough to
		 * get the first chunk.
		 */
		em = lookup_extent_mapping(&map_tree->map_tree, start, 1);
		read_unlock(&map_tree->map_tree.lock);
		if (!em)
			break;

		bg = btrfs_lookup_block_group(fs_info, em->start);
		if (!bg) {
			btrfs_err(fs_info,
	"chunk start=%llu len=%llu doesn't have corresponding block group",
				     em->start, em->len);
			ret = -EUCLEAN;
			free_extent_map(em);
			break;
		}
		if (bg->key.objectid != em->start ||
		    bg->key.offset != em->len ||
		    (bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK) !=
		    (em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK)) {
			btrfs_err(fs_info,
"chunk start=%llu len=%llu flags=0x%llx doesn't match block group start=%llu len=%llu flags=0x%llx",
				em->start, em->len,
				em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK,
				bg->key.objectid, bg->key.offset,
				bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK);
			ret = -EUCLEAN;
			free_extent_map(em);
			btrfs_put_block_group(bg);
			break;
		}
		start = em->start + em->len;
		free_extent_map(em);
		btrfs_put_block_group(bg);
	}
	return ret;
}

10326
int btrfs_read_block_groups(struct btrfs_fs_info *info)
C
Chris Mason 已提交
10327 10328 10329 10330
{
	struct btrfs_path *path;
	int ret;
	struct btrfs_block_group_cache *cache;
10331
	struct btrfs_space_info *space_info;
C
Chris Mason 已提交
10332 10333
	struct btrfs_key key;
	struct btrfs_key found_key;
10334
	struct extent_buffer *leaf;
10335 10336
	int need_clear = 0;
	u64 cache_gen;
10337 10338 10339 10340 10341
	u64 feature;
	int mixed;

	feature = btrfs_super_incompat_flags(info->super_copy);
	mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS);
10342

C
Chris Mason 已提交
10343
	key.objectid = 0;
10344
	key.offset = 0;
10345
	key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
C
Chris Mason 已提交
10346 10347 10348
	path = btrfs_alloc_path();
	if (!path)
		return -ENOMEM;
10349
	path->reada = READA_FORWARD;
C
Chris Mason 已提交
10350

10351 10352 10353
	cache_gen = btrfs_super_cache_generation(info->super_copy);
	if (btrfs_test_opt(info, SPACE_CACHE) &&
	    btrfs_super_generation(info->super_copy) != cache_gen)
10354
		need_clear = 1;
10355
	if (btrfs_test_opt(info, CLEAR_CACHE))
10356
		need_clear = 1;
10357

C
Chris Mason 已提交
10358
	while (1) {
10359
		ret = find_first_block_group(info, path, &key);
10360 10361
		if (ret > 0)
			break;
10362 10363
		if (ret != 0)
			goto error;
10364

10365 10366
		leaf = path->nodes[0];
		btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
10367

10368
		cache = btrfs_create_block_group_cache(info, found_key.objectid,
10369
						       found_key.offset);
C
Chris Mason 已提交
10370
		if (!cache) {
10371
			ret = -ENOMEM;
10372
			goto error;
C
Chris Mason 已提交
10373
		}
10374

10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385
		if (need_clear) {
			/*
			 * When we mount with old space cache, we need to
			 * set BTRFS_DC_CLEAR and set dirty flag.
			 *
			 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
			 *    truncate the old free space cache inode and
			 *    setup a new one.
			 * b) Setting 'dirty flag' makes sure that we flush
			 *    the new space cache info onto disk.
			 */
10386
			if (btrfs_test_opt(info, SPACE_CACHE))
10387
				cache->disk_cache_state = BTRFS_DC_CLEAR;
10388
		}
10389

10390 10391 10392
		read_extent_buffer(leaf, &cache->item,
				   btrfs_item_ptr_offset(leaf, path->slots[0]),
				   sizeof(cache->item));
10393
		cache->flags = btrfs_block_group_flags(&cache->item);
10394 10395 10396 10397 10398 10399 10400 10401 10402
		if (!mixed &&
		    ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) &&
		    (cache->flags & BTRFS_BLOCK_GROUP_DATA))) {
			btrfs_err(info,
"bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups",
				  cache->key.objectid);
			ret = -EINVAL;
			goto error;
		}
10403

C
Chris Mason 已提交
10404
		key.objectid = found_key.objectid + found_key.offset;
10405
		btrfs_release_path(path);
10406

10407 10408 10409 10410 10411
		/*
		 * We need to exclude the super stripes now so that the space
		 * info has super bytes accounted for, otherwise we'll think
		 * we have more space than we actually do.
		 */
10412
		ret = exclude_super_stripes(cache);
10413 10414 10415 10416 10417
		if (ret) {
			/*
			 * We may have excluded something, so call this just in
			 * case.
			 */
10418
			free_excluded_extents(cache);
10419
			btrfs_put_block_group(cache);
10420 10421
			goto error;
		}
10422

J
Josef Bacik 已提交
10423 10424 10425 10426
		/*
		 * check for two cases, either we are full, and therefore
		 * don't need to bother with the caching work since we won't
		 * find any space, or we are empty, and we can just add all
10427
		 * the space in and be done with it.  This saves us _a_lot_ of
J
Josef Bacik 已提交
10428 10429 10430
		 * time, particularly in the full case.
		 */
		if (found_key.offset == btrfs_block_group_used(&cache->item)) {
10431
			cache->last_byte_to_unpin = (u64)-1;
J
Josef Bacik 已提交
10432
			cache->cached = BTRFS_CACHE_FINISHED;
10433
			free_excluded_extents(cache);
J
Josef Bacik 已提交
10434
		} else if (btrfs_block_group_used(&cache->item) == 0) {
10435
			cache->last_byte_to_unpin = (u64)-1;
J
Josef Bacik 已提交
10436
			cache->cached = BTRFS_CACHE_FINISHED;
10437
			add_new_free_space(cache, found_key.objectid,
J
Josef Bacik 已提交
10438 10439
					   found_key.objectid +
					   found_key.offset);
10440
			free_excluded_extents(cache);
J
Josef Bacik 已提交
10441
		}
10442

10443
		ret = btrfs_add_block_group_cache(info, cache);
10444 10445 10446 10447 10448 10449
		if (ret) {
			btrfs_remove_free_space_cache(cache);
			btrfs_put_block_group(cache);
			goto error;
		}

10450
		trace_btrfs_add_block_group(info, cache, 0);
10451 10452 10453
		update_space_info(info, cache->flags, found_key.offset,
				  btrfs_block_group_used(&cache->item),
				  cache->bytes_super, &space_info);
10454

10455
		cache->space_info = space_info;
10456

10457
		link_block_group(cache);
J
Josef Bacik 已提交
10458

10459
		set_avail_alloc_bits(info, cache->flags);
10460
		if (btrfs_chunk_readonly(info, cache->key.objectid)) {
10461
			inc_block_group_ro(cache, 1);
10462
		} else if (btrfs_block_group_used(&cache->item) == 0) {
10463 10464
			ASSERT(list_empty(&cache->bg_list));
			btrfs_mark_bg_unused(cache);
10465
		}
C
Chris Mason 已提交
10466
	}
10467

10468
	list_for_each_entry_rcu(space_info, &info->space_info, list) {
10469
		if (!(get_alloc_profile(info, space_info->flags) &
10470 10471
		      (BTRFS_BLOCK_GROUP_RAID10 |
		       BTRFS_BLOCK_GROUP_RAID1 |
D
David Woodhouse 已提交
10472 10473
		       BTRFS_BLOCK_GROUP_RAID5 |
		       BTRFS_BLOCK_GROUP_RAID6 |
10474 10475 10476 10477 10478 10479
		       BTRFS_BLOCK_GROUP_DUP)))
			continue;
		/*
		 * avoid allocating from un-mirrored block group if there are
		 * mirrored block groups.
		 */
10480 10481 10482
		list_for_each_entry(cache,
				&space_info->block_groups[BTRFS_RAID_RAID0],
				list)
10483
			inc_block_group_ro(cache, 1);
10484 10485 10486
		list_for_each_entry(cache,
				&space_info->block_groups[BTRFS_RAID_SINGLE],
				list)
10487
			inc_block_group_ro(cache, 1);
C
Chris Mason 已提交
10488
	}
10489

10490
	btrfs_add_raid_kobjects(info);
10491
	init_global_block_rsv(info);
10492
	ret = check_chunk_block_group_mappings(info);
10493
error:
C
Chris Mason 已提交
10494
	btrfs_free_path(path);
10495
	return ret;
C
Chris Mason 已提交
10496
}
10497

10498
void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans)
10499
{
10500
	struct btrfs_fs_info *fs_info = trans->fs_info;
10501
	struct btrfs_block_group_cache *block_group;
10502
	struct btrfs_root *extent_root = fs_info->extent_root;
10503 10504 10505 10506
	struct btrfs_block_group_item item;
	struct btrfs_key key;
	int ret = 0;

10507 10508 10509
	if (!trans->can_flush_pending_bgs)
		return;

10510 10511 10512 10513
	while (!list_empty(&trans->new_bgs)) {
		block_group = list_first_entry(&trans->new_bgs,
					       struct btrfs_block_group_cache,
					       bg_list);
10514
		if (ret)
10515
			goto next;
10516 10517 10518 10519 10520 10521 10522 10523 10524

		spin_lock(&block_group->lock);
		memcpy(&item, &block_group->item, sizeof(item));
		memcpy(&key, &block_group->key, sizeof(key));
		spin_unlock(&block_group->lock);

		ret = btrfs_insert_item(trans, extent_root, &key, &item,
					sizeof(item));
		if (ret)
10525
			btrfs_abort_transaction(trans, ret);
10526
		ret = btrfs_finish_chunk_alloc(trans, key.objectid, key.offset);
10527
		if (ret)
10528
			btrfs_abort_transaction(trans, ret);
10529
		add_block_group_free_space(trans, block_group);
10530
		/* already aborted the transaction if it failed. */
10531
next:
J
Josef Bacik 已提交
10532
		btrfs_delayed_refs_rsv_release(fs_info, 1);
10533
		list_del_init(&block_group->bg_list);
10534
	}
10535
	btrfs_trans_release_chunk_metadata(trans);
10536 10537
}

10538
int btrfs_make_block_group(struct btrfs_trans_handle *trans, u64 bytes_used,
10539
			   u64 type, u64 chunk_offset, u64 size)
10540
{
10541
	struct btrfs_fs_info *fs_info = trans->fs_info;
10542
	struct btrfs_block_group_cache *cache;
10543
	int ret;
10544

10545
	btrfs_set_log_full_commit(trans);
10546

10547
	cache = btrfs_create_block_group_cache(fs_info, chunk_offset, size);
J
Josef Bacik 已提交
10548 10549
	if (!cache)
		return -ENOMEM;
10550

10551
	btrfs_set_block_group_used(&cache->item, bytes_used);
10552 10553
	btrfs_set_block_group_chunk_objectid(&cache->item,
					     BTRFS_FIRST_CHUNK_TREE_OBJECTID);
10554 10555
	btrfs_set_block_group_flags(&cache->item, type);

10556
	cache->flags = type;
10557
	cache->last_byte_to_unpin = (u64)-1;
J
Josef Bacik 已提交
10558
	cache->cached = BTRFS_CACHE_FINISHED;
10559
	cache->needs_free_space = 1;
10560
	ret = exclude_super_stripes(cache);
10561 10562 10563 10564 10565
	if (ret) {
		/*
		 * We may have excluded something, so call this just in
		 * case.
		 */
10566
		free_excluded_extents(cache);
10567
		btrfs_put_block_group(cache);
10568 10569
		return ret;
	}
10570

10571
	add_new_free_space(cache, chunk_offset, chunk_offset + size);
J
Josef Bacik 已提交
10572

10573
	free_excluded_extents(cache);
10574

10575
#ifdef CONFIG_BTRFS_DEBUG
10576
	if (btrfs_should_fragment_free_space(cache)) {
10577 10578 10579
		u64 new_bytes_used = size - bytes_used;

		bytes_used += new_bytes_used >> 1;
10580
		fragment_free_space(cache);
10581 10582
	}
#endif
10583
	/*
10584 10585 10586
	 * Ensure the corresponding space_info object is created and
	 * assigned to our block group. We want our bg to be added to the rbtree
	 * with its ->space_info set.
10587
	 */
10588
	cache->space_info = __find_space_info(fs_info, cache->flags);
10589
	ASSERT(cache->space_info);
10590

10591
	ret = btrfs_add_block_group_cache(fs_info, cache);
10592 10593 10594 10595 10596 10597
	if (ret) {
		btrfs_remove_free_space_cache(cache);
		btrfs_put_block_group(cache);
		return ret;
	}

10598 10599 10600 10601
	/*
	 * Now that our block group has its ->space_info set and is inserted in
	 * the rbtree, update the space info's counters.
	 */
10602
	trace_btrfs_add_block_group(fs_info, cache, 1);
10603
	update_space_info(fs_info, cache->flags, size, bytes_used,
10604
				cache->bytes_super, &cache->space_info);
10605
	update_global_block_rsv(fs_info);
10606

10607
	link_block_group(cache);
10608

10609
	list_add_tail(&cache->bg_list, &trans->new_bgs);
J
Josef Bacik 已提交
10610 10611
	trans->delayed_ref_updates++;
	btrfs_update_delayed_refs_rsv(trans);
10612

10613
	set_avail_alloc_bits(fs_info, type);
10614 10615
	return 0;
}
Z
Zheng Yan 已提交
10616

10617 10618
static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
{
10619 10620
	u64 extra_flags = chunk_to_extended(flags) &
				BTRFS_EXTENDED_PROFILE_MASK;
10621

10622
	write_seqlock(&fs_info->profiles_lock);
10623 10624 10625 10626 10627 10628
	if (flags & BTRFS_BLOCK_GROUP_DATA)
		fs_info->avail_data_alloc_bits &= ~extra_flags;
	if (flags & BTRFS_BLOCK_GROUP_METADATA)
		fs_info->avail_metadata_alloc_bits &= ~extra_flags;
	if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
		fs_info->avail_system_alloc_bits &= ~extra_flags;
10629
	write_sequnlock(&fs_info->profiles_lock);
10630 10631
}

Z
Zheng Yan 已提交
10632
int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
10633
			     u64 group_start, struct extent_map *em)
Z
Zheng Yan 已提交
10634
{
10635
	struct btrfs_fs_info *fs_info = trans->fs_info;
10636
	struct btrfs_root *root = fs_info->extent_root;
Z
Zheng Yan 已提交
10637 10638
	struct btrfs_path *path;
	struct btrfs_block_group_cache *block_group;
10639
	struct btrfs_free_cluster *cluster;
10640
	struct btrfs_root *tree_root = fs_info->tree_root;
Z
Zheng Yan 已提交
10641
	struct btrfs_key key;
10642
	struct inode *inode;
10643
	struct kobject *kobj = NULL;
Z
Zheng Yan 已提交
10644
	int ret;
10645
	int index;
J
Josef Bacik 已提交
10646
	int factor;
10647
	struct btrfs_caching_control *caching_ctl = NULL;
10648
	bool remove_em;
J
Josef Bacik 已提交
10649
	bool remove_rsv = false;
Z
Zheng Yan 已提交
10650

10651
	block_group = btrfs_lookup_block_group(fs_info, group_start);
Z
Zheng Yan 已提交
10652
	BUG_ON(!block_group);
Y
Yan Zheng 已提交
10653
	BUG_ON(!block_group->ro);
Z
Zheng Yan 已提交
10654

10655
	trace_btrfs_remove_block_group(block_group);
10656 10657 10658 10659
	/*
	 * Free the reserved super bytes from this block group before
	 * remove it.
	 */
10660
	free_excluded_extents(block_group);
J
Josef Bacik 已提交
10661 10662
	btrfs_free_ref_tree_range(fs_info, block_group->key.objectid,
				  block_group->key.offset);
10663

Z
Zheng Yan 已提交
10664
	memcpy(&key, &block_group->key, sizeof(key));
10665
	index = btrfs_bg_flags_to_raid_index(block_group->flags);
10666
	factor = btrfs_bg_type_to_factor(block_group->flags);
Z
Zheng Yan 已提交
10667

10668
	/* make sure this block group isn't part of an allocation cluster */
10669
	cluster = &fs_info->data_alloc_cluster;
10670 10671 10672 10673 10674 10675 10676 10677
	spin_lock(&cluster->refill_lock);
	btrfs_return_cluster_to_free_space(block_group, cluster);
	spin_unlock(&cluster->refill_lock);

	/*
	 * make sure this block group isn't part of a metadata
	 * allocation cluster
	 */
10678
	cluster = &fs_info->meta_alloc_cluster;
10679 10680 10681 10682
	spin_lock(&cluster->refill_lock);
	btrfs_return_cluster_to_free_space(block_group, cluster);
	spin_unlock(&cluster->refill_lock);

Z
Zheng Yan 已提交
10683
	path = btrfs_alloc_path();
10684 10685 10686 10687
	if (!path) {
		ret = -ENOMEM;
		goto out;
	}
Z
Zheng Yan 已提交
10688

10689 10690 10691 10692
	/*
	 * get the inode first so any iput calls done for the io_list
	 * aren't the final iput (no unlinks allowed now)
	 */
10693
	inode = lookup_free_space_inode(block_group, path);
10694 10695 10696

	mutex_lock(&trans->transaction->cache_write_mutex);
	/*
10697
	 * Make sure our free space cache IO is done before removing the
10698 10699 10700 10701 10702 10703 10704 10705 10706
	 * free space inode
	 */
	spin_lock(&trans->transaction->dirty_bgs_lock);
	if (!list_empty(&block_group->io_list)) {
		list_del_init(&block_group->io_list);

		WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);

		spin_unlock(&trans->transaction->dirty_bgs_lock);
10707
		btrfs_wait_cache_io(trans, block_group, path);
10708 10709 10710 10711 10712 10713
		btrfs_put_block_group(block_group);
		spin_lock(&trans->transaction->dirty_bgs_lock);
	}

	if (!list_empty(&block_group->dirty_list)) {
		list_del_init(&block_group->dirty_list);
J
Josef Bacik 已提交
10714
		remove_rsv = true;
10715 10716 10717 10718 10719
		btrfs_put_block_group(block_group);
	}
	spin_unlock(&trans->transaction->dirty_bgs_lock);
	mutex_unlock(&trans->transaction->cache_write_mutex);

10720
	if (!IS_ERR(inode)) {
10721
		ret = btrfs_orphan_add(trans, BTRFS_I(inode));
10722 10723 10724 10725
		if (ret) {
			btrfs_add_delayed_iput(inode);
			goto out;
		}
10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737
		clear_nlink(inode);
		/* One for the block groups ref */
		spin_lock(&block_group->lock);
		if (block_group->iref) {
			block_group->iref = 0;
			block_group->inode = NULL;
			spin_unlock(&block_group->lock);
			iput(inode);
		} else {
			spin_unlock(&block_group->lock);
		}
		/* One for our lookup ref */
10738
		btrfs_add_delayed_iput(inode);
10739 10740 10741 10742 10743 10744 10745 10746 10747 10748
	}

	key.objectid = BTRFS_FREE_SPACE_OBJECTID;
	key.offset = block_group->key.objectid;
	key.type = 0;

	ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
	if (ret < 0)
		goto out;
	if (ret > 0)
10749
		btrfs_release_path(path);
10750 10751 10752 10753
	if (ret == 0) {
		ret = btrfs_del_item(trans, tree_root, path);
		if (ret)
			goto out;
10754
		btrfs_release_path(path);
10755 10756
	}

10757
	spin_lock(&fs_info->block_group_cache_lock);
Z
Zheng Yan 已提交
10758
	rb_erase(&block_group->cache_node,
10759
		 &fs_info->block_group_cache_tree);
10760
	RB_CLEAR_NODE(&block_group->cache_node);
10761

10762 10763 10764
	if (fs_info->first_logical_byte == block_group->key.objectid)
		fs_info->first_logical_byte = (u64)-1;
	spin_unlock(&fs_info->block_group_cache_lock);
J
Josef Bacik 已提交
10765

10766
	down_write(&block_group->space_info->groups_sem);
10767 10768 10769 10770 10771
	/*
	 * we must use list_del_init so people can check to see if they
	 * are still on the list after taking the semaphore
	 */
	list_del_init(&block_group->list);
10772
	if (list_empty(&block_group->space_info->block_groups[index])) {
10773 10774
		kobj = block_group->space_info->block_group_kobjs[index];
		block_group->space_info->block_group_kobjs[index] = NULL;
10775
		clear_avail_alloc_bits(fs_info, block_group->flags);
10776
	}
10777
	up_write(&block_group->space_info->groups_sem);
10778 10779 10780 10781
	if (kobj) {
		kobject_del(kobj);
		kobject_put(kobj);
	}
Z
Zheng Yan 已提交
10782

10783 10784
	if (block_group->has_caching_ctl)
		caching_ctl = get_caching_control(block_group);
J
Josef Bacik 已提交
10785
	if (block_group->cached == BTRFS_CACHE_STARTED)
10786
		wait_block_group_cache_done(block_group);
10787
	if (block_group->has_caching_ctl) {
10788
		down_write(&fs_info->commit_root_sem);
10789 10790 10791 10792
		if (!caching_ctl) {
			struct btrfs_caching_control *ctl;

			list_for_each_entry(ctl,
10793
				    &fs_info->caching_block_groups, list)
10794 10795
				if (ctl->block_group == block_group) {
					caching_ctl = ctl;
10796
					refcount_inc(&caching_ctl->count);
10797 10798 10799 10800 10801
					break;
				}
		}
		if (caching_ctl)
			list_del_init(&caching_ctl->list);
10802
		up_write(&fs_info->commit_root_sem);
10803 10804 10805 10806 10807 10808
		if (caching_ctl) {
			/* Once for the caching bgs list and once for us. */
			put_caching_control(caching_ctl);
			put_caching_control(caching_ctl);
		}
	}
J
Josef Bacik 已提交
10809

10810
	spin_lock(&trans->transaction->dirty_bgs_lock);
10811 10812
	WARN_ON(!list_empty(&block_group->dirty_list));
	WARN_ON(!list_empty(&block_group->io_list));
10813
	spin_unlock(&trans->transaction->dirty_bgs_lock);
10814

J
Josef Bacik 已提交
10815 10816
	btrfs_remove_free_space_cache(block_group);

Y
Yan Zheng 已提交
10817
	spin_lock(&block_group->space_info->lock);
10818
	list_del_init(&block_group->ro_list);
10819

10820
	if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
10821 10822 10823 10824 10825 10826 10827
		WARN_ON(block_group->space_info->total_bytes
			< block_group->key.offset);
		WARN_ON(block_group->space_info->bytes_readonly
			< block_group->key.offset);
		WARN_ON(block_group->space_info->disk_total
			< block_group->key.offset * factor);
	}
Y
Yan Zheng 已提交
10828 10829
	block_group->space_info->total_bytes -= block_group->key.offset;
	block_group->space_info->bytes_readonly -= block_group->key.offset;
J
Josef Bacik 已提交
10830
	block_group->space_info->disk_total -= block_group->key.offset * factor;
10831

Y
Yan Zheng 已提交
10832
	spin_unlock(&block_group->space_info->lock);
10833

10834 10835
	memcpy(&key, &block_group->key, sizeof(key));

10836
	mutex_lock(&fs_info->chunk_mutex);
10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855
	spin_lock(&block_group->lock);
	block_group->removed = 1;
	/*
	 * At this point trimming can't start on this block group, because we
	 * removed the block group from the tree fs_info->block_group_cache_tree
	 * so no one can't find it anymore and even if someone already got this
	 * block group before we removed it from the rbtree, they have already
	 * incremented block_group->trimming - if they didn't, they won't find
	 * any free space entries because we already removed them all when we
	 * called btrfs_remove_free_space_cache().
	 *
	 * And we must not remove the extent map from the fs_info->mapping_tree
	 * to prevent the same logical address range and physical device space
	 * ranges from being reused for a new block group. This is because our
	 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
	 * completely transactionless, so while it is trimming a range the
	 * currently running transaction might finish and a new one start,
	 * allowing for new block groups to be created that can reuse the same
	 * physical device locations unless we take this special care.
10856 10857 10858 10859 10860
	 *
	 * There may also be an implicit trim operation if the file system
	 * is mounted with -odiscard. The same protections must remain
	 * in place until the extents have been discarded completely when
	 * the transaction commit has completed.
10861 10862 10863 10864 10865 10866 10867
	 */
	remove_em = (atomic_read(&block_group->trimming) == 0);
	spin_unlock(&block_group->lock);

	if (remove_em) {
		struct extent_map_tree *em_tree;

10868
		em_tree = &fs_info->mapping_tree.map_tree;
10869 10870 10871 10872 10873 10874 10875
		write_lock(&em_tree->lock);
		remove_extent_mapping(em_tree, em);
		write_unlock(&em_tree->lock);
		/* once for the tree */
		free_extent_map(em);
	}

10876
	mutex_unlock(&fs_info->chunk_mutex);
10877

10878
	ret = remove_block_group_free_space(trans, block_group);
10879 10880 10881
	if (ret)
		goto out;

10882 10883
	btrfs_put_block_group(block_group);
	btrfs_put_block_group(block_group);
Z
Zheng Yan 已提交
10884 10885 10886 10887 10888 10889 10890 10891 10892

	ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
	if (ret > 0)
		ret = -EIO;
	if (ret < 0)
		goto out;

	ret = btrfs_del_item(trans, root, path);
out:
J
Josef Bacik 已提交
10893 10894
	if (remove_rsv)
		btrfs_delayed_refs_rsv_release(fs_info, 1);
Z
Zheng Yan 已提交
10895 10896 10897
	btrfs_free_path(path);
	return ret;
}
L
liubo 已提交
10898

10899
struct btrfs_trans_handle *
10900 10901
btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info,
				     const u64 chunk_offset)
10902
{
10903 10904 10905 10906 10907 10908 10909 10910 10911 10912
	struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree;
	struct extent_map *em;
	struct map_lookup *map;
	unsigned int num_items;

	read_lock(&em_tree->lock);
	em = lookup_extent_mapping(em_tree, chunk_offset, 1);
	read_unlock(&em_tree->lock);
	ASSERT(em && em->start == chunk_offset);

10913
	/*
10914 10915 10916 10917
	 * We need to reserve 3 + N units from the metadata space info in order
	 * to remove a block group (done at btrfs_remove_chunk() and at
	 * btrfs_remove_block_group()), which are used for:
	 *
10918 10919
	 * 1 unit for adding the free space inode's orphan (located in the tree
	 * of tree roots).
10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930
	 * 1 unit for deleting the block group item (located in the extent
	 * tree).
	 * 1 unit for deleting the free space item (located in tree of tree
	 * roots).
	 * N units for deleting N device extent items corresponding to each
	 * stripe (located in the device tree).
	 *
	 * In order to remove a block group we also need to reserve units in the
	 * system space info in order to update the chunk tree (update one or
	 * more device items and remove one chunk item), but this is done at
	 * btrfs_remove_chunk() through a call to check_system_chunk().
10931
	 */
10932
	map = em->map_lookup;
10933 10934 10935
	num_items = 3 + map->num_stripes;
	free_extent_map(em);

10936
	return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root,
10937
							   num_items, 1);
10938 10939
}

10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950
/*
 * Process the unused_bgs list and remove any that don't have any allocated
 * space inside of them.
 */
void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
{
	struct btrfs_block_group_cache *block_group;
	struct btrfs_space_info *space_info;
	struct btrfs_trans_handle *trans;
	int ret = 0;

10951
	if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
10952 10953 10954 10955 10956
		return;

	spin_lock(&fs_info->unused_bgs_lock);
	while (!list_empty(&fs_info->unused_bgs)) {
		u64 start, end;
10957
		int trimming;
10958 10959 10960 10961 10962

		block_group = list_first_entry(&fs_info->unused_bgs,
					       struct btrfs_block_group_cache,
					       bg_list);
		list_del_init(&block_group->bg_list);
10963 10964 10965

		space_info = block_group->space_info;

10966 10967 10968 10969 10970 10971
		if (ret || btrfs_mixed_space_info(space_info)) {
			btrfs_put_block_group(block_group);
			continue;
		}
		spin_unlock(&fs_info->unused_bgs_lock);

10972
		mutex_lock(&fs_info->delete_unused_bgs_mutex);
10973

10974 10975 10976
		/* Don't want to race with allocators so take the groups_sem */
		down_write(&space_info->groups_sem);
		spin_lock(&block_group->lock);
10977
		if (block_group->reserved || block_group->pinned ||
10978
		    btrfs_block_group_used(&block_group->item) ||
10979
		    block_group->ro ||
10980
		    list_is_singular(&block_group->list)) {
10981 10982 10983 10984 10985 10986
			/*
			 * We want to bail if we made new allocations or have
			 * outstanding allocations in this block group.  We do
			 * the ro check in case balance is currently acting on
			 * this block group.
			 */
10987
			trace_btrfs_skip_unused_block_group(block_group);
10988 10989 10990 10991 10992 10993 10994
			spin_unlock(&block_group->lock);
			up_write(&space_info->groups_sem);
			goto next;
		}
		spin_unlock(&block_group->lock);

		/* We don't want to force the issue, only flip if it's ok. */
10995
		ret = inc_block_group_ro(block_group, 0);
10996 10997 10998 10999 11000 11001 11002 11003 11004 11005
		up_write(&space_info->groups_sem);
		if (ret < 0) {
			ret = 0;
			goto next;
		}

		/*
		 * Want to do this before we do anything else so we can recover
		 * properly if we fail to join the transaction.
		 */
11006 11007
		trans = btrfs_start_trans_remove_block_group(fs_info,
						     block_group->key.objectid);
11008
		if (IS_ERR(trans)) {
11009
			btrfs_dec_block_group_ro(block_group);
11010 11011 11012 11013 11014 11015 11016 11017 11018 11019
			ret = PTR_ERR(trans);
			goto next;
		}

		/*
		 * We could have pending pinned extents for this block group,
		 * just delete them, we don't care about them anymore.
		 */
		start = block_group->key.objectid;
		end = start + block_group->key.offset - 1;
11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031
		/*
		 * Hold the unused_bg_unpin_mutex lock to avoid racing with
		 * btrfs_finish_extent_commit(). If we are at transaction N,
		 * another task might be running finish_extent_commit() for the
		 * previous transaction N - 1, and have seen a range belonging
		 * to the block group in freed_extents[] before we were able to
		 * clear the whole block group range from freed_extents[]. This
		 * means that task can lookup for the block group after we
		 * unpinned it from freed_extents[] and removed it, leading to
		 * a BUG_ON() at btrfs_unpin_extent_range().
		 */
		mutex_lock(&fs_info->unused_bg_unpin_mutex);
11032
		ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
11033
				  EXTENT_DIRTY);
11034
		if (ret) {
11035
			mutex_unlock(&fs_info->unused_bg_unpin_mutex);
11036
			btrfs_dec_block_group_ro(block_group);
11037 11038 11039
			goto end_trans;
		}
		ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
11040
				  EXTENT_DIRTY);
11041
		if (ret) {
11042
			mutex_unlock(&fs_info->unused_bg_unpin_mutex);
11043
			btrfs_dec_block_group_ro(block_group);
11044 11045
			goto end_trans;
		}
11046
		mutex_unlock(&fs_info->unused_bg_unpin_mutex);
11047 11048

		/* Reset pinned so btrfs_put_block_group doesn't complain */
11049 11050 11051
		spin_lock(&space_info->lock);
		spin_lock(&block_group->lock);

11052
		update_bytes_pinned(space_info, -block_group->pinned);
11053
		space_info->bytes_readonly += block_group->pinned;
11054 11055 11056
		percpu_counter_add_batch(&space_info->total_bytes_pinned,
				   -block_group->pinned,
				   BTRFS_TOTAL_BYTES_PINNED_BATCH);
11057 11058
		block_group->pinned = 0;

11059 11060 11061
		spin_unlock(&block_group->lock);
		spin_unlock(&space_info->lock);

11062
		/* DISCARD can flip during remount */
11063
		trimming = btrfs_test_opt(fs_info, DISCARD);
11064 11065 11066 11067 11068

		/* Implicit trim during transaction commit. */
		if (trimming)
			btrfs_get_block_group_trimming(block_group);

11069 11070 11071 11072
		/*
		 * Btrfs_remove_chunk will abort the transaction if things go
		 * horribly wrong.
		 */
11073
		ret = btrfs_remove_chunk(trans, block_group->key.objectid);
11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086

		if (ret) {
			if (trimming)
				btrfs_put_block_group_trimming(block_group);
			goto end_trans;
		}

		/*
		 * If we're not mounted with -odiscard, we can just forget
		 * about this block group. Otherwise we'll need to wait
		 * until transaction commit to do the actual discard.
		 */
		if (trimming) {
11087 11088 11089 11090 11091 11092
			spin_lock(&fs_info->unused_bgs_lock);
			/*
			 * A concurrent scrub might have added us to the list
			 * fs_info->unused_bgs, so use a list_move operation
			 * to add the block group to the deleted_bgs list.
			 */
11093 11094
			list_move(&block_group->bg_list,
				  &trans->transaction->deleted_bgs);
11095
			spin_unlock(&fs_info->unused_bgs_lock);
11096 11097
			btrfs_get_block_group(block_group);
		}
11098
end_trans:
11099
		btrfs_end_transaction(trans);
11100
next:
11101
		mutex_unlock(&fs_info->delete_unused_bgs_mutex);
11102 11103 11104 11105 11106 11107
		btrfs_put_block_group(block_group);
		spin_lock(&fs_info->unused_bgs_lock);
	}
	spin_unlock(&fs_info->unused_bgs_lock);
}

11108 11109
int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
{
11110 11111 11112 11113
	struct btrfs_super_block *disk_super;
	u64 features;
	u64 flags;
	int mixed = 0;
11114 11115
	int ret;

11116
	disk_super = fs_info->super_copy;
11117
	if (!btrfs_super_root(disk_super))
11118
		return -EINVAL;
11119

11120 11121 11122
	features = btrfs_super_incompat_flags(disk_super);
	if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
		mixed = 1;
11123

11124
	flags = BTRFS_BLOCK_GROUP_SYSTEM;
11125
	ret = create_space_info(fs_info, flags);
11126
	if (ret)
11127
		goto out;
11128

11129 11130
	if (mixed) {
		flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
11131
		ret = create_space_info(fs_info, flags);
11132 11133
	} else {
		flags = BTRFS_BLOCK_GROUP_METADATA;
11134
		ret = create_space_info(fs_info, flags);
11135 11136 11137 11138
		if (ret)
			goto out;

		flags = BTRFS_BLOCK_GROUP_DATA;
11139
		ret = create_space_info(fs_info, flags);
11140 11141
	}
out:
11142 11143 11144
	return ret;
}

11145 11146
int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info,
				   u64 start, u64 end)
L
liubo 已提交
11147
{
11148
	return unpin_extent_range(fs_info, start, end, false);
L
liubo 已提交
11149 11150
}

11151 11152 11153 11154 11155 11156 11157 11158 11159
/*
 * It used to be that old block groups would be left around forever.
 * Iterating over them would be enough to trim unused space.  Since we
 * now automatically remove them, we also need to iterate over unallocated
 * space.
 *
 * We don't want a transaction for this since the discard may take a
 * substantial amount of time.  We don't require that a transaction be
 * running, but we do need to take a running transaction into account
11160 11161
 * to ensure that we're not discarding chunks that were released or
 * allocated in the current transaction.
11162 11163 11164 11165 11166
 *
 * Holding the chunks lock will prevent other threads from allocating
 * or releasing chunks, but it won't prevent a running transaction
 * from committing and releasing the memory that the pending chunks
 * list head uses.  For that, we need to take a reference to the
11167 11168 11169
 * transaction and hold the commit root sem.  We only need to hold
 * it while performing the free space search since we have already
 * held back allocations.
11170 11171
 */
static int btrfs_trim_free_extents(struct btrfs_device *device,
11172
				   struct fstrim_range *range, u64 *trimmed)
11173
{
11174
	u64 start, len = 0, end = 0;
11175 11176
	int ret;

11177
	start = max_t(u64, range->start, SZ_1M);
11178 11179
	*trimmed = 0;

11180 11181 11182 11183
	/* Discard not supported = nothing to do. */
	if (!blk_queue_discard(bdev_get_queue(device->bdev)))
		return 0;

11184
	/* Not writable = nothing to do. */
11185
	if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
11186 11187 11188 11189 11190 11191 11192 11193 11194
		return 0;

	/* No free space = nothing to do. */
	if (device->total_bytes <= device->bytes_used)
		return 0;

	ret = 0;

	while (1) {
11195
		struct btrfs_fs_info *fs_info = device->fs_info;
11196 11197 11198 11199
		u64 bytes;

		ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
		if (ret)
11200
			break;
11201

11202 11203 11204 11205 11206 11207 11208 11209 11210 11211
		find_first_clear_extent_bit(&device->alloc_state, start,
					    &start, &end,
					    CHUNK_TRIMMED | CHUNK_ALLOCATED);
		/*
		 * If find_first_clear_extent_bit find a range that spans the
		 * end of the device it will set end to -1, in this case it's up
		 * to the caller to trim the value to the size of the device.
		 */
		end = min(end, device->total_bytes - 1);
		len = end - start + 1;
11212

11213 11214
		/* We didn't find any extents */
		if (!len) {
11215
			mutex_unlock(&fs_info->chunk_mutex);
11216
			ret = 0;
11217 11218 11219
			break;
		}

11220 11221 11222 11223 11224 11225 11226
		/* Keep going until we satisfy minlen or reach end of space */
		if (len < range->minlen) {
			mutex_unlock(&fs_info->chunk_mutex);
			start += len;
			continue;
		}

11227 11228 11229 11230 11231 11232 11233 11234 11235
		/* If we are out of the passed range break */
		if (start > range->start + range->len - 1) {
			mutex_unlock(&fs_info->chunk_mutex);
			break;
		}

		start = max(range->start, start);
		len = min(range->len, len);

11236 11237 11238 11239 11240 11241
		ret = btrfs_issue_discard(device->bdev, start, len,
					  &bytes);
		if (!ret)
			set_extent_bits(&device->alloc_state, start,
					start + bytes - 1,
					CHUNK_TRIMMED);
11242 11243 11244 11245 11246 11247 11248 11249
		mutex_unlock(&fs_info->chunk_mutex);

		if (ret)
			break;

		start += len;
		*trimmed += bytes;

11250 11251 11252 11253
		/* We've trimmed enough */
		if (*trimmed >= range->len)
			break;

11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264
		if (fatal_signal_pending(current)) {
			ret = -ERESTARTSYS;
			break;
		}

		cond_resched();
	}

	return ret;
}

11265 11266 11267 11268 11269 11270 11271 11272 11273
/*
 * Trim the whole filesystem by:
 * 1) trimming the free space in each block group
 * 2) trimming the unallocated space on each device
 *
 * This will also continue trimming even if a block group or device encounters
 * an error.  The return value will be the last error, or 0 if nothing bad
 * happens.
 */
11274
int btrfs_trim_fs(struct btrfs_fs_info *fs_info, struct fstrim_range *range)
11275 11276
{
	struct btrfs_block_group_cache *cache = NULL;
11277 11278
	struct btrfs_device *device;
	struct list_head *devices;
11279 11280 11281 11282
	u64 group_trimmed;
	u64 start;
	u64 end;
	u64 trimmed = 0;
11283 11284 11285 11286
	u64 bg_failed = 0;
	u64 dev_failed = 0;
	int bg_ret = 0;
	int dev_ret = 0;
11287 11288
	int ret = 0;

11289
	cache = btrfs_lookup_first_block_group(fs_info, range->start);
11290
	for (; cache; cache = next_block_group(cache)) {
11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301
		if (cache->key.objectid >= (range->start + range->len)) {
			btrfs_put_block_group(cache);
			break;
		}

		start = max(range->start, cache->key.objectid);
		end = min(range->start + range->len,
				cache->key.objectid + cache->key.offset);

		if (end - start >= range->minlen) {
			if (!block_group_cache_done(cache)) {
11302
				ret = cache_block_group(cache, 0);
11303
				if (ret) {
11304 11305 11306
					bg_failed++;
					bg_ret = ret;
					continue;
11307 11308 11309
				}
				ret = wait_block_group_cache_done(cache);
				if (ret) {
11310 11311 11312
					bg_failed++;
					bg_ret = ret;
					continue;
11313
				}
11314 11315 11316 11317 11318 11319 11320 11321 11322
			}
			ret = btrfs_trim_block_group(cache,
						     &group_trimmed,
						     start,
						     end,
						     range->minlen);

			trimmed += group_trimmed;
			if (ret) {
11323 11324 11325
				bg_failed++;
				bg_ret = ret;
				continue;
11326 11327 11328 11329
			}
		}
	}

11330 11331 11332 11333
	if (bg_failed)
		btrfs_warn(fs_info,
			"failed to trim %llu block group(s), last error %d",
			bg_failed, bg_ret);
11334
	mutex_lock(&fs_info->fs_devices->device_list_mutex);
11335 11336
	devices = &fs_info->fs_devices->devices;
	list_for_each_entry(device, devices, dev_list) {
11337
		ret = btrfs_trim_free_extents(device, range, &group_trimmed);
11338 11339 11340
		if (ret) {
			dev_failed++;
			dev_ret = ret;
11341
			break;
11342
		}
11343 11344 11345

		trimmed += group_trimmed;
	}
11346
	mutex_unlock(&fs_info->fs_devices->device_list_mutex);
11347

11348 11349 11350 11351
	if (dev_failed)
		btrfs_warn(fs_info,
			"failed to trim %llu device(s), last error %d",
			dev_failed, dev_ret);
11352
	range->len = trimmed;
11353 11354 11355
	if (bg_ret)
		return bg_ret;
	return dev_ret;
11356
}
11357 11358

/*
11359
 * btrfs_{start,end}_write_no_snapshotting() are similar to
11360 11361 11362
 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
 * data into the page cache through nocow before the subvolume is snapshoted,
 * but flush the data into disk after the snapshot creation, or to prevent
11363
 * operations while snapshotting is ongoing and that cause the snapshot to be
11364
 * inconsistent (writes followed by expanding truncates for example).
11365
 */
11366
void btrfs_end_write_no_snapshotting(struct btrfs_root *root)
11367 11368
{
	percpu_counter_dec(&root->subv_writers->counter);
11369
	cond_wake_up(&root->subv_writers->wait);
11370 11371
}

11372
int btrfs_start_write_no_snapshotting(struct btrfs_root *root)
11373
{
11374
	if (atomic_read(&root->will_be_snapshotted))
11375 11376 11377 11378 11379 11380 11381
		return 0;

	percpu_counter_inc(&root->subv_writers->counter);
	/*
	 * Make sure counter is updated before we check for snapshot creation.
	 */
	smp_mb();
11382 11383
	if (atomic_read(&root->will_be_snapshotted)) {
		btrfs_end_write_no_snapshotting(root);
11384 11385 11386 11387
		return 0;
	}
	return 1;
}
11388 11389 11390 11391 11392 11393

void btrfs_wait_for_snapshot_creation(struct btrfs_root *root)
{
	while (true) {
		int ret;

11394
		ret = btrfs_start_write_no_snapshotting(root);
11395 11396
		if (ret)
			break;
11397 11398
		wait_var_event(&root->will_be_snapshotted,
			       !atomic_read(&root->will_be_snapshotted));
11399 11400
	}
}
11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413

void btrfs_mark_bg_unused(struct btrfs_block_group_cache *bg)
{
	struct btrfs_fs_info *fs_info = bg->fs_info;

	spin_lock(&fs_info->unused_bgs_lock);
	if (list_empty(&bg->bg_list)) {
		btrfs_get_block_group(bg);
		trace_btrfs_add_unused_block_group(bg);
		list_add_tail(&bg->bg_list, &fs_info->unused_bgs);
	}
	spin_unlock(&fs_info->unused_bgs_lock);
}