blob: 41770ee1313e117649ef93f8ef6eb3d89263fcb5 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
Zach Brownec6b9102007-07-11 10:00:37 -040018#include <linux/sched.h>
Ingo Molnarf361bf42017-02-03 23:47:37 +010019#include <linux/sched/signal.h>
Chris Masonedbd8d42007-12-21 16:27:24 -050020#include <linux/pagemap.h>
Chris Masonec44a352008-04-28 15:29:52 -040021#include <linux/writeback.h>
David Woodhouse21af8042008-08-12 14:13:26 +010022#include <linux/blkdev.h>
Chris Masonb7a9f292009-02-04 09:23:45 -050023#include <linux/sort.h>
Chris Mason4184ea72009-03-10 12:39:20 -040024#include <linux/rcupdate.h>
Josef Bacik817d52f2009-07-13 21:29:25 -040025#include <linux/kthread.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
David Sterbadff51cd2011-06-14 12:52:17 +020027#include <linux/ratelimit.h>
Josef Bacikb150a4f2013-06-19 15:00:04 -040028#include <linux/percpu_counter.h>
Josef Bacik69fe2d72017-10-19 14:15:57 -040029#include <linux/lockdep.h>
Chris Mason74493f72007-12-11 09:25:06 -050030#include "hash.h"
Miao Xie995946d2014-04-02 19:51:06 +080031#include "tree-log.h"
Chris Masonfec577f2007-02-26 10:40:21 -050032#include "disk-io.h"
33#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040034#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050035#include "raid56.h"
Chris Mason925baed2008-06-25 16:01:30 -040036#include "locking.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040037#include "free-space-cache.h"
Omar Sandoval1e144fb2015-09-29 20:50:37 -070038#include "free-space-tree.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060039#include "math.h"
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040040#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070041#include "qgroup.h"
Josef Bacikfd708b82017-09-29 15:43:50 -040042#include "ref-verify.h"
Chris Masonfec577f2007-02-26 10:40:21 -050043
Arne Jansen709c0482011-09-12 12:22:57 +020044#undef SCRAMBLE_DELAYED_REFS
45
Miao Xie9e622d62012-01-26 15:01:12 -050046/*
47 * control flags for do_chunk_alloc's force field
Chris Mason0e4f8f82011-04-15 16:05:44 -040048 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
49 * if we really need one.
50 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040051 * CHUNK_ALLOC_LIMITED means to only try and allocate one
52 * if we have very few chunks already allocated. This is
53 * used as part of the clustering code to help make sure
54 * we have a good pool of storage to cluster in, without
55 * filling the FS with empty chunks
56 *
Miao Xie9e622d62012-01-26 15:01:12 -050057 * CHUNK_ALLOC_FORCE means it must try to allocate one
58 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040059 */
60enum {
61 CHUNK_ALLOC_NO_FORCE = 0,
Miao Xie9e622d62012-01-26 15:01:12 -050062 CHUNK_ALLOC_LIMITED = 1,
63 CHUNK_ALLOC_FORCE = 2,
Chris Mason0e4f8f82011-04-15 16:05:44 -040064};
65
Yan Zheng5d4f98a2009-06-10 10:45:14 -040066static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040067 struct btrfs_fs_info *fs_info,
Qu Wenruoc682f9b2015-03-17 16:59:47 +080068 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -040069 u64 root_objectid, u64 owner_objectid,
70 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +080071 struct btrfs_delayed_extent_op *extra_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040072static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
73 struct extent_buffer *leaf,
74 struct btrfs_extent_item *ei);
75static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040076 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -040077 u64 parent, u64 root_objectid,
78 u64 flags, u64 owner, u64 offset,
79 struct btrfs_key *ins, int ref_mod);
80static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040081 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -040082 u64 parent, u64 root_objectid,
83 u64 flags, struct btrfs_disk_key *key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +010084 int level, struct btrfs_key *ins);
Josef Bacik6a632092009-02-20 11:00:09 -050085static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040086 struct btrfs_fs_info *fs_info, u64 flags,
Josef Bacik698d0082012-09-12 14:08:47 -040087 int force);
Yan Zheng11833d62009-09-11 16:11:19 -040088static int find_next_key(struct btrfs_path *path, int level,
89 struct btrfs_key *key);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -040090static void dump_space_info(struct btrfs_fs_info *fs_info,
91 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -040092 int dump_block_groups);
Josef Bacik5d803662013-02-07 16:06:02 -050093static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
94 u64 num_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -040095static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
96 struct btrfs_space_info *space_info,
97 u64 num_bytes);
98static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
99 struct btrfs_space_info *space_info,
100 u64 num_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -0500101
Josef Bacik817d52f2009-07-13 21:29:25 -0400102static noinline int
103block_group_cache_done(struct btrfs_block_group_cache *cache)
104{
105 smp_mb();
Josef Bacik36cce922013-08-05 11:15:21 -0400106 return cache->cached == BTRFS_CACHE_FINISHED ||
107 cache->cached == BTRFS_CACHE_ERROR;
Josef Bacik817d52f2009-07-13 21:29:25 -0400108}
109
Josef Bacik0f9dd462008-09-23 13:14:11 -0400110static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
111{
112 return (cache->flags & bits) == bits;
113}
114
Filipe Manana758f2df2015-11-19 11:45:48 +0000115void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +0000116{
117 atomic_inc(&cache->count);
118}
119
120void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
121{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400122 if (atomic_dec_and_test(&cache->count)) {
123 WARN_ON(cache->pinned > 0);
124 WARN_ON(cache->reserved > 0);
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800125
126 /*
127 * If not empty, someone is still holding mutex of
128 * full_stripe_lock, which can only be released by caller.
129 * And it will definitely cause use-after-free when caller
130 * tries to release full stripe lock.
131 *
132 * No better way to resolve, but only to warn.
133 */
134 WARN_ON(!RB_EMPTY_ROOT(&cache->full_stripe_locks_root.root));
Li Zefan34d52cb2011-03-29 13:46:06 +0800135 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000136 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400137 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000138}
139
Josef Bacik0f9dd462008-09-23 13:14:11 -0400140/*
141 * this adds the block group to the fs_info rb tree for the block group
142 * cache
143 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500144static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400145 struct btrfs_block_group_cache *block_group)
146{
147 struct rb_node **p;
148 struct rb_node *parent = NULL;
149 struct btrfs_block_group_cache *cache;
150
151 spin_lock(&info->block_group_cache_lock);
152 p = &info->block_group_cache_tree.rb_node;
153
154 while (*p) {
155 parent = *p;
156 cache = rb_entry(parent, struct btrfs_block_group_cache,
157 cache_node);
158 if (block_group->key.objectid < cache->key.objectid) {
159 p = &(*p)->rb_left;
160 } else if (block_group->key.objectid > cache->key.objectid) {
161 p = &(*p)->rb_right;
162 } else {
163 spin_unlock(&info->block_group_cache_lock);
164 return -EEXIST;
165 }
166 }
167
168 rb_link_node(&block_group->cache_node, parent, p);
169 rb_insert_color(&block_group->cache_node,
170 &info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +0000171
172 if (info->first_logical_byte > block_group->key.objectid)
173 info->first_logical_byte = block_group->key.objectid;
174
Josef Bacik0f9dd462008-09-23 13:14:11 -0400175 spin_unlock(&info->block_group_cache_lock);
176
177 return 0;
178}
179
180/*
181 * This will return the block group at or after bytenr if contains is 0, else
182 * it will return the block group that contains the bytenr
183 */
184static struct btrfs_block_group_cache *
185block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
186 int contains)
187{
188 struct btrfs_block_group_cache *cache, *ret = NULL;
189 struct rb_node *n;
190 u64 end, start;
191
192 spin_lock(&info->block_group_cache_lock);
193 n = info->block_group_cache_tree.rb_node;
194
195 while (n) {
196 cache = rb_entry(n, struct btrfs_block_group_cache,
197 cache_node);
198 end = cache->key.objectid + cache->key.offset - 1;
199 start = cache->key.objectid;
200
201 if (bytenr < start) {
202 if (!contains && (!ret || start < ret->key.objectid))
203 ret = cache;
204 n = n->rb_left;
205 } else if (bytenr > start) {
206 if (contains && bytenr <= end) {
207 ret = cache;
208 break;
209 }
210 n = n->rb_right;
211 } else {
212 ret = cache;
213 break;
214 }
215 }
Liu Boa1897fd2012-12-27 09:01:23 +0000216 if (ret) {
Josef Bacik11dfe352009-11-13 20:12:59 +0000217 btrfs_get_block_group(ret);
Liu Boa1897fd2012-12-27 09:01:23 +0000218 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
219 info->first_logical_byte = ret->key.objectid;
220 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400221 spin_unlock(&info->block_group_cache_lock);
222
223 return ret;
224}
225
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400226static int add_excluded_extent(struct btrfs_fs_info *fs_info,
Yan Zheng11833d62009-09-11 16:11:19 -0400227 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400228{
Yan Zheng11833d62009-09-11 16:11:19 -0400229 u64 end = start + num_bytes - 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400230 set_extent_bits(&fs_info->freed_extents[0],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200231 start, end, EXTENT_UPTODATE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400232 set_extent_bits(&fs_info->freed_extents[1],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200233 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400234 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400235}
236
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400237static void free_excluded_extents(struct btrfs_fs_info *fs_info,
Yan Zheng11833d62009-09-11 16:11:19 -0400238 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400239{
Yan Zheng11833d62009-09-11 16:11:19 -0400240 u64 start, end;
241
242 start = cache->key.objectid;
243 end = start + cache->key.offset - 1;
244
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400245 clear_extent_bits(&fs_info->freed_extents[0],
David Sterba91166212016-04-26 23:54:39 +0200246 start, end, EXTENT_UPTODATE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400247 clear_extent_bits(&fs_info->freed_extents[1],
David Sterba91166212016-04-26 23:54:39 +0200248 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400249}
250
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400251static int exclude_super_stripes(struct btrfs_fs_info *fs_info,
Yan Zheng11833d62009-09-11 16:11:19 -0400252 struct btrfs_block_group_cache *cache)
253{
Josef Bacik817d52f2009-07-13 21:29:25 -0400254 u64 bytenr;
255 u64 *logical;
256 int stripe_len;
257 int i, nr, ret;
258
Yan, Zheng06b23312009-11-26 09:31:11 +0000259 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
260 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
261 cache->bytes_super += stripe_len;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400262 ret = add_excluded_extent(fs_info, cache->key.objectid,
Yan, Zheng06b23312009-11-26 09:31:11 +0000263 stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400264 if (ret)
265 return ret;
Yan, Zheng06b23312009-11-26 09:31:11 +0000266 }
267
Josef Bacik817d52f2009-07-13 21:29:25 -0400268 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
269 bytenr = btrfs_sb_offset(i);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400270 ret = btrfs_rmap_block(fs_info, cache->key.objectid,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400271 bytenr, 0, &logical, &nr, &stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400272 if (ret)
273 return ret;
Yan Zheng11833d62009-09-11 16:11:19 -0400274
Josef Bacik817d52f2009-07-13 21:29:25 -0400275 while (nr--) {
Josef Bacik51bf5f02013-04-23 12:55:21 -0400276 u64 start, len;
277
278 if (logical[nr] > cache->key.objectid +
279 cache->key.offset)
280 continue;
281
282 if (logical[nr] + stripe_len <= cache->key.objectid)
283 continue;
284
285 start = logical[nr];
286 if (start < cache->key.objectid) {
287 start = cache->key.objectid;
288 len = (logical[nr] + stripe_len) - start;
289 } else {
290 len = min_t(u64, stripe_len,
291 cache->key.objectid +
292 cache->key.offset - start);
293 }
294
295 cache->bytes_super += len;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400296 ret = add_excluded_extent(fs_info, start, len);
Josef Bacik835d9742013-03-19 12:13:25 -0400297 if (ret) {
298 kfree(logical);
299 return ret;
300 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400301 }
Yan Zheng11833d62009-09-11 16:11:19 -0400302
Josef Bacik817d52f2009-07-13 21:29:25 -0400303 kfree(logical);
304 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400305 return 0;
306}
307
Yan Zheng11833d62009-09-11 16:11:19 -0400308static struct btrfs_caching_control *
309get_caching_control(struct btrfs_block_group_cache *cache)
310{
311 struct btrfs_caching_control *ctl;
312
313 spin_lock(&cache->lock);
Josef Bacikdde5abe2010-09-16 16:17:03 -0400314 if (!cache->caching_ctl) {
315 spin_unlock(&cache->lock);
316 return NULL;
317 }
318
Yan Zheng11833d62009-09-11 16:11:19 -0400319 ctl = cache->caching_ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200320 refcount_inc(&ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400321 spin_unlock(&cache->lock);
322 return ctl;
323}
324
325static void put_caching_control(struct btrfs_caching_control *ctl)
326{
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200327 if (refcount_dec_and_test(&ctl->count))
Yan Zheng11833d62009-09-11 16:11:19 -0400328 kfree(ctl);
329}
330
Josef Bacikd0bd4562015-09-23 14:54:14 -0400331#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400332static void fragment_free_space(struct btrfs_block_group_cache *block_group)
Josef Bacikd0bd4562015-09-23 14:54:14 -0400333{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400334 struct btrfs_fs_info *fs_info = block_group->fs_info;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400335 u64 start = block_group->key.objectid;
336 u64 len = block_group->key.offset;
337 u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ?
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400338 fs_info->nodesize : fs_info->sectorsize;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400339 u64 step = chunk << 1;
340
341 while (len > chunk) {
342 btrfs_remove_free_space(block_group, start, chunk);
343 start += step;
344 if (len < step)
345 len = 0;
346 else
347 len -= step;
348 }
349}
350#endif
351
Josef Bacik0f9dd462008-09-23 13:14:11 -0400352/*
353 * this is only called by cache_block_group, since we could have freed extents
354 * we need to check the pinned_extents for any extents that can't be used yet
355 * since their free space will be released as soon as the transaction commits.
356 */
Omar Sandovala5ed9182015-09-29 20:50:35 -0700357u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
358 struct btrfs_fs_info *info, u64 start, u64 end)
Josef Bacik0f9dd462008-09-23 13:14:11 -0400359{
Josef Bacik817d52f2009-07-13 21:29:25 -0400360 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400361 int ret;
362
363 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400364 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400365 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400366 EXTENT_DIRTY | EXTENT_UPTODATE,
367 NULL);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400368 if (ret)
369 break;
370
Yan, Zheng06b23312009-11-26 09:31:11 +0000371 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400372 start = extent_end + 1;
373 } else if (extent_start > start && extent_start < end) {
374 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400375 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500376 ret = btrfs_add_free_space(block_group, start,
377 size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100378 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400379 start = extent_end + 1;
380 } else {
381 break;
382 }
383 }
384
385 if (start < end) {
386 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400387 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500388 ret = btrfs_add_free_space(block_group, start, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100389 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400390 }
391
Josef Bacik817d52f2009-07-13 21:29:25 -0400392 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400393}
394
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700395static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl)
Chris Masone37c9e62007-05-09 20:13:14 -0400396{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400397 struct btrfs_block_group_cache *block_group = caching_ctl->block_group;
398 struct btrfs_fs_info *fs_info = block_group->fs_info;
399 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400400 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400401 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400402 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400403 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400404 u64 last = 0;
405 u32 nritems;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700406 int ret;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400407 bool wakeup = true;
Chris Masonf510cfe2007-10-15 16:14:48 -0400408
Chris Masone37c9e62007-05-09 20:13:14 -0400409 path = btrfs_alloc_path();
410 if (!path)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700411 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -0400412
Josef Bacik817d52f2009-07-13 21:29:25 -0400413 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400414
Josef Bacikd0bd4562015-09-23 14:54:14 -0400415#ifdef CONFIG_BTRFS_DEBUG
416 /*
417 * If we're fragmenting we don't want to make anybody think we can
418 * allocate from this block group until we've had a chance to fragment
419 * the free space.
420 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400421 if (btrfs_should_fragment_free_space(block_group))
Josef Bacikd0bd4562015-09-23 14:54:14 -0400422 wakeup = false;
423#endif
Chris Mason5cd57b22008-06-25 16:01:30 -0400424 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400425 * We don't want to deadlock with somebody trying to allocate a new
426 * extent for the extent root while also trying to search the extent
427 * root to add free space. So we skip locking and search the commit
428 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400429 */
430 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400431 path->search_commit_root = 1;
David Sterbae4058b52015-11-27 16:31:35 +0100432 path->reada = READA_FORWARD;
Josef Bacik817d52f2009-07-13 21:29:25 -0400433
Yan Zhenge4404d62008-12-12 10:03:26 -0500434 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400435 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400436 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400437
Liu Bo52ee28d2013-07-11 17:51:15 +0800438next:
Yan Zheng11833d62009-09-11 16:11:19 -0400439 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400440 if (ret < 0)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700441 goto out;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500442
Yan Zheng11833d62009-09-11 16:11:19 -0400443 leaf = path->nodes[0];
444 nritems = btrfs_header_nritems(leaf);
445
Chris Masond3977122009-01-05 21:25:51 -0500446 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200447 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400448 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400449 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400450 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400451
Yan Zheng11833d62009-09-11 16:11:19 -0400452 if (path->slots[0] < nritems) {
453 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
454 } else {
455 ret = find_next_key(path, 0, &key);
456 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400457 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400458
Josef Bacikc9ea7b22013-09-19 10:02:11 -0400459 if (need_resched() ||
Josef Bacik9e351cc2014-03-13 15:42:13 -0400460 rwsem_is_contended(&fs_info->commit_root_sem)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400461 if (wakeup)
462 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400463 btrfs_release_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400464 up_read(&fs_info->commit_root_sem);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400465 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400466 cond_resched();
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700467 mutex_lock(&caching_ctl->mutex);
468 down_read(&fs_info->commit_root_sem);
469 goto next;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400470 }
Josef Bacik0a3896d2013-04-19 14:37:26 -0400471
472 ret = btrfs_next_leaf(extent_root, path);
473 if (ret < 0)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700474 goto out;
Josef Bacik0a3896d2013-04-19 14:37:26 -0400475 if (ret)
476 break;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400477 leaf = path->nodes[0];
478 nritems = btrfs_header_nritems(leaf);
479 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400480 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400481
Liu Bo52ee28d2013-07-11 17:51:15 +0800482 if (key.objectid < last) {
483 key.objectid = last;
484 key.offset = 0;
485 key.type = BTRFS_EXTENT_ITEM_KEY;
486
Josef Bacikd0bd4562015-09-23 14:54:14 -0400487 if (wakeup)
488 caching_ctl->progress = last;
Liu Bo52ee28d2013-07-11 17:51:15 +0800489 btrfs_release_path(path);
490 goto next;
491 }
492
Yan Zheng11833d62009-09-11 16:11:19 -0400493 if (key.objectid < block_group->key.objectid) {
494 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400495 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400496 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400497
Chris Masone37c9e62007-05-09 20:13:14 -0400498 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400499 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400500 break;
Yan7d7d6062007-09-14 16:15:28 -0400501
Josef Bacik3173a182013-03-07 14:22:04 -0500502 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
503 key.type == BTRFS_METADATA_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400504 total_found += add_new_free_space(block_group,
505 fs_info, last,
506 key.objectid);
Josef Bacik3173a182013-03-07 14:22:04 -0500507 if (key.type == BTRFS_METADATA_ITEM_KEY)
508 last = key.objectid +
Jeff Mahoneyda170662016-06-15 09:22:56 -0400509 fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500510 else
511 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400512
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700513 if (total_found > CACHING_CTL_WAKE_UP) {
Yan Zheng11833d62009-09-11 16:11:19 -0400514 total_found = 0;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400515 if (wakeup)
516 wake_up(&caching_ctl->wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400517 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400518 }
Chris Masone37c9e62007-05-09 20:13:14 -0400519 path->slots[0]++;
520 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400521 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400522
523 total_found += add_new_free_space(block_group, fs_info, last,
524 block_group->key.objectid +
525 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400526 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400527
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700528out:
529 btrfs_free_path(path);
530 return ret;
531}
532
533static noinline void caching_thread(struct btrfs_work *work)
534{
535 struct btrfs_block_group_cache *block_group;
536 struct btrfs_fs_info *fs_info;
537 struct btrfs_caching_control *caching_ctl;
Chris Masonb4570aa2015-12-30 07:37:26 -0800538 struct btrfs_root *extent_root;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700539 int ret;
540
541 caching_ctl = container_of(work, struct btrfs_caching_control, work);
542 block_group = caching_ctl->block_group;
543 fs_info = block_group->fs_info;
Chris Masonb4570aa2015-12-30 07:37:26 -0800544 extent_root = fs_info->extent_root;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700545
546 mutex_lock(&caching_ctl->mutex);
547 down_read(&fs_info->commit_root_sem);
548
Omar Sandoval1e144fb2015-09-29 20:50:37 -0700549 if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE))
550 ret = load_free_space_tree(caching_ctl);
551 else
552 ret = load_extent_tree_free(caching_ctl);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700553
Josef Bacik817d52f2009-07-13 21:29:25 -0400554 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400555 block_group->caching_ctl = NULL;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700556 block_group->cached = ret ? BTRFS_CACHE_ERROR : BTRFS_CACHE_FINISHED;
Josef Bacik817d52f2009-07-13 21:29:25 -0400557 spin_unlock(&block_group->lock);
558
Josef Bacikd0bd4562015-09-23 14:54:14 -0400559#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400560 if (btrfs_should_fragment_free_space(block_group)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400561 u64 bytes_used;
562
563 spin_lock(&block_group->space_info->lock);
564 spin_lock(&block_group->lock);
565 bytes_used = block_group->key.offset -
566 btrfs_block_group_used(&block_group->item);
567 block_group->space_info->bytes_used += bytes_used >> 1;
568 spin_unlock(&block_group->lock);
569 spin_unlock(&block_group->space_info->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400570 fragment_free_space(block_group);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400571 }
572#endif
573
574 caching_ctl->progress = (u64)-1;
Chris Masonf7d3d2f2015-12-18 11:11:10 -0800575
Josef Bacik9e351cc2014-03-13 15:42:13 -0400576 up_read(&fs_info->commit_root_sem);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400577 free_excluded_extents(fs_info, block_group);
Yan Zheng11833d62009-09-11 16:11:19 -0400578 mutex_unlock(&caching_ctl->mutex);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700579
Yan Zheng11833d62009-09-11 16:11:19 -0400580 wake_up(&caching_ctl->wait);
581
582 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000583 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400584}
585
Josef Bacik9d66e232010-08-25 16:54:15 -0400586static int cache_block_group(struct btrfs_block_group_cache *cache,
Josef Bacik9d66e232010-08-25 16:54:15 -0400587 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400588{
Josef Bacik291c7d22011-11-14 13:52:14 -0500589 DEFINE_WAIT(wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400590 struct btrfs_fs_info *fs_info = cache->fs_info;
591 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400592 int ret = 0;
593
Josef Bacik291c7d22011-11-14 13:52:14 -0500594 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100595 if (!caching_ctl)
596 return -ENOMEM;
Josef Bacik291c7d22011-11-14 13:52:14 -0500597
598 INIT_LIST_HEAD(&caching_ctl->list);
599 mutex_init(&caching_ctl->mutex);
600 init_waitqueue_head(&caching_ctl->wait);
601 caching_ctl->block_group = cache;
602 caching_ctl->progress = cache->key.objectid;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200603 refcount_set(&caching_ctl->count, 1);
Liu Bo9e0af232014-08-15 23:36:53 +0800604 btrfs_init_work(&caching_ctl->work, btrfs_cache_helper,
605 caching_thread, NULL, NULL);
Josef Bacik291c7d22011-11-14 13:52:14 -0500606
607 spin_lock(&cache->lock);
608 /*
609 * This should be a rare occasion, but this could happen I think in the
610 * case where one thread starts to load the space cache info, and then
611 * some other thread starts a transaction commit which tries to do an
612 * allocation while the other thread is still loading the space cache
613 * info. The previous loop should have kept us from choosing this block
614 * group, but if we've moved to the state where we will wait on caching
615 * block groups we need to first check if we're doing a fast load here,
616 * so we can wait for it to finish, otherwise we could end up allocating
617 * from a block group who's cache gets evicted for one reason or
618 * another.
619 */
620 while (cache->cached == BTRFS_CACHE_FAST) {
621 struct btrfs_caching_control *ctl;
622
623 ctl = cache->caching_ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200624 refcount_inc(&ctl->count);
Josef Bacik291c7d22011-11-14 13:52:14 -0500625 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
626 spin_unlock(&cache->lock);
627
628 schedule();
629
630 finish_wait(&ctl->wait, &wait);
631 put_caching_control(ctl);
632 spin_lock(&cache->lock);
633 }
634
635 if (cache->cached != BTRFS_CACHE_NO) {
636 spin_unlock(&cache->lock);
637 kfree(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400638 return 0;
Josef Bacik291c7d22011-11-14 13:52:14 -0500639 }
640 WARN_ON(cache->caching_ctl);
641 cache->caching_ctl = caching_ctl;
642 cache->cached = BTRFS_CACHE_FAST;
643 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400644
Satoru Takeuchid8953d62017-09-12 20:08:08 +0900645 if (btrfs_test_opt(fs_info, SPACE_CACHE)) {
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500646 mutex_lock(&caching_ctl->mutex);
Josef Bacik9d66e232010-08-25 16:54:15 -0400647 ret = load_free_space_cache(fs_info, cache);
648
649 spin_lock(&cache->lock);
650 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500651 cache->caching_ctl = NULL;
Josef Bacik9d66e232010-08-25 16:54:15 -0400652 cache->cached = BTRFS_CACHE_FINISHED;
653 cache->last_byte_to_unpin = (u64)-1;
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500654 caching_ctl->progress = (u64)-1;
Josef Bacik9d66e232010-08-25 16:54:15 -0400655 } else {
Josef Bacik291c7d22011-11-14 13:52:14 -0500656 if (load_cache_only) {
657 cache->caching_ctl = NULL;
658 cache->cached = BTRFS_CACHE_NO;
659 } else {
660 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000661 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500662 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400663 }
664 spin_unlock(&cache->lock);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400665#ifdef CONFIG_BTRFS_DEBUG
666 if (ret == 1 &&
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400667 btrfs_should_fragment_free_space(cache)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400668 u64 bytes_used;
669
670 spin_lock(&cache->space_info->lock);
671 spin_lock(&cache->lock);
672 bytes_used = cache->key.offset -
673 btrfs_block_group_used(&cache->item);
674 cache->space_info->bytes_used += bytes_used >> 1;
675 spin_unlock(&cache->lock);
676 spin_unlock(&cache->space_info->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400677 fragment_free_space(cache);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400678 }
679#endif
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500680 mutex_unlock(&caching_ctl->mutex);
681
Josef Bacik291c7d22011-11-14 13:52:14 -0500682 wake_up(&caching_ctl->wait);
Josef Bacik3c148742011-02-02 15:53:47 +0000683 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500684 put_caching_control(caching_ctl);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400685 free_excluded_extents(fs_info, cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400686 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000687 }
Josef Bacik291c7d22011-11-14 13:52:14 -0500688 } else {
689 /*
Omar Sandoval1e144fb2015-09-29 20:50:37 -0700690 * We're either using the free space tree or no caching at all.
691 * Set cached to the appropriate value and wakeup any waiters.
Josef Bacik291c7d22011-11-14 13:52:14 -0500692 */
693 spin_lock(&cache->lock);
694 if (load_cache_only) {
695 cache->caching_ctl = NULL;
696 cache->cached = BTRFS_CACHE_NO;
697 } else {
698 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000699 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500700 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400701 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500702 wake_up(&caching_ctl->wait);
703 }
704
705 if (load_cache_only) {
706 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400707 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400708 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400709
Josef Bacik9e351cc2014-03-13 15:42:13 -0400710 down_write(&fs_info->commit_root_sem);
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200711 refcount_inc(&caching_ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400712 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400713 up_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -0400714
Josef Bacik11dfe352009-11-13 20:12:59 +0000715 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400716
Qu Wenruoe66f0bb2014-02-28 10:46:12 +0800717 btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work);
Josef Bacik817d52f2009-07-13 21:29:25 -0400718
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400719 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400720}
721
Josef Bacik0f9dd462008-09-23 13:14:11 -0400722/*
723 * return the block group that starts at or after bytenr
724 */
Chris Masond3977122009-01-05 21:25:51 -0500725static struct btrfs_block_group_cache *
726btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400727{
Masahiro Yamadae2c89902016-09-13 04:35:52 +0900728 return block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400729}
730
Josef Bacik0f9dd462008-09-23 13:14:11 -0400731/*
Sankar P9f556842009-05-14 13:52:22 -0400732 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400733 */
Chris Masond3977122009-01-05 21:25:51 -0500734struct btrfs_block_group_cache *btrfs_lookup_block_group(
735 struct btrfs_fs_info *info,
736 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400737{
Masahiro Yamadae2c89902016-09-13 04:35:52 +0900738 return block_group_cache_tree_search(info, bytenr, 1);
Chris Masonbe744172007-05-06 10:15:01 -0400739}
Chris Mason0b86a832008-03-24 15:01:56 -0400740
Josef Bacik0f9dd462008-09-23 13:14:11 -0400741static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
742 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400743{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400744 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400745 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400746
Ilya Dryomov52ba6922012-01-16 22:04:47 +0200747 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
Yan, Zhengb742bb82010-05-16 10:46:24 -0400748
Chris Mason4184ea72009-03-10 12:39:20 -0400749 rcu_read_lock();
750 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400751 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400752 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400753 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400754 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400755 }
Chris Mason4184ea72009-03-10 12:39:20 -0400756 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400757 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400758}
759
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700760static void add_pinned_bytes(struct btrfs_fs_info *fs_info, s64 num_bytes,
761 u64 owner, u64 root_objectid)
762{
763 struct btrfs_space_info *space_info;
764 u64 flags;
765
766 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
767 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
768 flags = BTRFS_BLOCK_GROUP_SYSTEM;
769 else
770 flags = BTRFS_BLOCK_GROUP_METADATA;
771 } else {
772 flags = BTRFS_BLOCK_GROUP_DATA;
773 }
774
775 space_info = __find_space_info(fs_info, flags);
Omar Sandoval55e81962017-06-06 16:45:27 -0700776 ASSERT(space_info);
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700777 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
778}
779
Chris Mason4184ea72009-03-10 12:39:20 -0400780/*
781 * after adding space to the filesystem, we need to clear the full flags
782 * on all the space infos.
783 */
784void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
785{
786 struct list_head *head = &info->space_info;
787 struct btrfs_space_info *found;
788
789 rcu_read_lock();
790 list_for_each_entry_rcu(found, head, list)
791 found->full = 0;
792 rcu_read_unlock();
793}
794
Filipe Manana1a4ed8f2014-10-27 10:44:24 +0000795/* simple helper to search for an existing data extent at a given offset */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400796int btrfs_lookup_data_extent(struct btrfs_fs_info *fs_info, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400797{
798 int ret;
799 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400800 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400801
Zheng Yan31840ae2008-09-23 13:14:14 -0400802 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700803 if (!path)
804 return -ENOMEM;
805
Chris Masone02119d2008-09-05 16:13:11 -0400806 key.objectid = start;
807 key.offset = len;
Josef Bacik3173a182013-03-07 14:22:04 -0500808 key.type = BTRFS_EXTENT_ITEM_KEY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400809 ret = btrfs_search_slot(NULL, fs_info->extent_root, &key, path, 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400810 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500811 return ret;
812}
813
Chris Masond8d5f3e2007-12-11 12:42:00 -0500814/*
Josef Bacik3173a182013-03-07 14:22:04 -0500815 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400816 *
817 * the head node for delayed ref is used to store the sum of all the
818 * reference count modifications queued up in the rbtree. the head
819 * node may also store the extent flags to set. This way you can check
820 * to see what the reference count and extent flags would be if all of
821 * the delayed refs are not processed.
822 */
823int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400824 struct btrfs_fs_info *fs_info, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500825 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400826{
827 struct btrfs_delayed_ref_head *head;
828 struct btrfs_delayed_ref_root *delayed_refs;
829 struct btrfs_path *path;
830 struct btrfs_extent_item *ei;
831 struct extent_buffer *leaf;
832 struct btrfs_key key;
833 u32 item_size;
834 u64 num_refs;
835 u64 extent_flags;
836 int ret;
837
Josef Bacik3173a182013-03-07 14:22:04 -0500838 /*
839 * If we don't have skinny metadata, don't bother doing anything
840 * different
841 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400842 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) {
843 offset = fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500844 metadata = 0;
845 }
846
Yan, Zhenga22285a2010-05-16 10:48:46 -0400847 path = btrfs_alloc_path();
848 if (!path)
849 return -ENOMEM;
850
Yan, Zhenga22285a2010-05-16 10:48:46 -0400851 if (!trans) {
852 path->skip_locking = 1;
853 path->search_commit_root = 1;
854 }
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000855
856search_again:
857 key.objectid = bytenr;
858 key.offset = offset;
859 if (metadata)
860 key.type = BTRFS_METADATA_ITEM_KEY;
861 else
862 key.type = BTRFS_EXTENT_ITEM_KEY;
863
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400864 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400865 if (ret < 0)
866 goto out_free;
867
Josef Bacik3173a182013-03-07 14:22:04 -0500868 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100869 if (path->slots[0]) {
870 path->slots[0]--;
871 btrfs_item_key_to_cpu(path->nodes[0], &key,
872 path->slots[0]);
873 if (key.objectid == bytenr &&
874 key.type == BTRFS_EXTENT_ITEM_KEY &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400875 key.offset == fs_info->nodesize)
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100876 ret = 0;
877 }
Josef Bacik3173a182013-03-07 14:22:04 -0500878 }
879
Yan, Zhenga22285a2010-05-16 10:48:46 -0400880 if (ret == 0) {
881 leaf = path->nodes[0];
882 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
883 if (item_size >= sizeof(*ei)) {
884 ei = btrfs_item_ptr(leaf, path->slots[0],
885 struct btrfs_extent_item);
886 num_refs = btrfs_extent_refs(leaf, ei);
887 extent_flags = btrfs_extent_flags(leaf, ei);
888 } else {
889#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
890 struct btrfs_extent_item_v0 *ei0;
891 BUG_ON(item_size != sizeof(*ei0));
892 ei0 = btrfs_item_ptr(leaf, path->slots[0],
893 struct btrfs_extent_item_v0);
894 num_refs = btrfs_extent_refs_v0(leaf, ei0);
895 /* FIXME: this isn't correct for data */
896 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
897#else
898 BUG();
899#endif
900 }
901 BUG_ON(num_refs == 0);
902 } else {
903 num_refs = 0;
904 extent_flags = 0;
905 ret = 0;
906 }
907
908 if (!trans)
909 goto out;
910
911 delayed_refs = &trans->transaction->delayed_refs;
912 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -0800913 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400914 if (head) {
915 if (!mutex_trylock(&head->mutex)) {
Josef Bacikd2788502017-09-29 15:43:57 -0400916 refcount_inc(&head->refs);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400917 spin_unlock(&delayed_refs->lock);
918
David Sterbab3b4aa72011-04-21 01:20:15 +0200919 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400920
David Sterba8cc33e52011-05-02 15:29:25 +0200921 /*
922 * Mutex was contended, block until it's released and try
923 * again
924 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400925 mutex_lock(&head->mutex);
926 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -0400927 btrfs_put_delayed_ref_head(head);
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000928 goto search_again;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400929 }
Josef Bacikd7df2c72014-01-23 09:21:38 -0500930 spin_lock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400931 if (head->extent_op && head->extent_op->update_flags)
932 extent_flags |= head->extent_op->flags_to_set;
933 else
934 BUG_ON(num_refs == 0);
935
Josef Bacikd2788502017-09-29 15:43:57 -0400936 num_refs += head->ref_mod;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500937 spin_unlock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400938 mutex_unlock(&head->mutex);
939 }
940 spin_unlock(&delayed_refs->lock);
941out:
942 WARN_ON(num_refs == 0);
943 if (refs)
944 *refs = num_refs;
945 if (flags)
946 *flags = extent_flags;
947out_free:
948 btrfs_free_path(path);
949 return ret;
950}
951
952/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500953 * Back reference rules. Back refs have three main goals:
954 *
955 * 1) differentiate between all holders of references to an extent so that
956 * when a reference is dropped we can make sure it was a valid reference
957 * before freeing the extent.
958 *
959 * 2) Provide enough information to quickly find the holders of an extent
960 * if we notice a given block is corrupted or bad.
961 *
962 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
963 * maintenance. This is actually the same as #2, but with a slightly
964 * different use case.
965 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400966 * There are two kinds of back refs. The implicit back refs is optimized
967 * for pointers in non-shared tree blocks. For a given pointer in a block,
968 * back refs of this kind provide information about the block's owner tree
969 * and the pointer's key. These information allow us to find the block by
970 * b-tree searching. The full back refs is for pointers in tree blocks not
971 * referenced by their owner trees. The location of tree block is recorded
972 * in the back refs. Actually the full back refs is generic, and can be
973 * used in all cases the implicit back refs is used. The major shortcoming
974 * of the full back refs is its overhead. Every time a tree block gets
975 * COWed, we have to update back refs entry for all pointers in it.
976 *
977 * For a newly allocated tree block, we use implicit back refs for
978 * pointers in it. This means most tree related operations only involve
979 * implicit back refs. For a tree block created in old transaction, the
980 * only way to drop a reference to it is COW it. So we can detect the
981 * event that tree block loses its owner tree's reference and do the
982 * back refs conversion.
983 *
Nicholas D Steeves01327612016-05-19 21:18:45 -0400984 * When a tree block is COWed through a tree, there are four cases:
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400985 *
986 * The reference count of the block is one and the tree is the block's
987 * owner tree. Nothing to do in this case.
988 *
989 * The reference count of the block is one and the tree is not the
990 * block's owner tree. In this case, full back refs is used for pointers
991 * in the block. Remove these full back refs, add implicit back refs for
992 * every pointers in the new block.
993 *
994 * The reference count of the block is greater than one and the tree is
995 * the block's owner tree. In this case, implicit back refs is used for
996 * pointers in the block. Add full back refs for every pointers in the
997 * block, increase lower level extents' reference counts. The original
998 * implicit back refs are entailed to the new block.
999 *
1000 * The reference count of the block is greater than one and the tree is
1001 * not the block's owner tree. Add implicit back refs for every pointer in
1002 * the new block, increase lower level extents' reference count.
1003 *
1004 * Back Reference Key composing:
1005 *
1006 * The key objectid corresponds to the first byte in the extent,
1007 * The key type is used to differentiate between types of back refs.
1008 * There are different meanings of the key offset for different types
1009 * of back refs.
1010 *
Chris Masond8d5f3e2007-12-11 12:42:00 -05001011 * File extents can be referenced by:
1012 *
1013 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -04001014 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -05001015 * - different offsets inside a file (bookend extents in file.c)
1016 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001017 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001018 *
1019 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -05001020 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001021 * - original offset in the file
1022 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -04001023 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001024 * The key offset for the implicit back refs is hash of the first
1025 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001026 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001027 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001028 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001029 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001030 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001031 * The key offset for the implicit back refs is the first byte of
1032 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001033 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001034 * When a file extent is allocated, The implicit back refs is used.
1035 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001036 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001037 * (root_key.objectid, inode objectid, offset in file, 1)
1038 *
1039 * When a file extent is removed file truncation, we find the
1040 * corresponding implicit back refs and check the following fields:
1041 *
1042 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -05001043 *
1044 * Btree extents can be referenced by:
1045 *
1046 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -05001047 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001048 * Both the implicit back refs and the full back refs for tree blocks
1049 * only consist of key. The key offset for the implicit back refs is
1050 * objectid of block's owner tree. The key offset for the full back refs
1051 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001052 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001053 * When implicit back refs is used, information about the lowest key and
1054 * level of the tree block are required. These information are stored in
1055 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001056 */
Zheng Yan31840ae2008-09-23 13:14:14 -04001057
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001058#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1059static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001060 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001061 struct btrfs_path *path,
1062 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -05001063{
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001064 struct btrfs_root *root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001065 struct btrfs_extent_item *item;
1066 struct btrfs_extent_item_v0 *ei0;
1067 struct btrfs_extent_ref_v0 *ref0;
1068 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -04001069 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001070 struct btrfs_key key;
1071 struct btrfs_key found_key;
1072 u32 new_size = sizeof(*item);
1073 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -05001074 int ret;
1075
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001076 leaf = path->nodes[0];
1077 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -05001078
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001079 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1080 ei0 = btrfs_item_ptr(leaf, path->slots[0],
1081 struct btrfs_extent_item_v0);
1082 refs = btrfs_extent_refs_v0(leaf, ei0);
1083
1084 if (owner == (u64)-1) {
1085 while (1) {
1086 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1087 ret = btrfs_next_leaf(root, path);
1088 if (ret < 0)
1089 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001090 BUG_ON(ret > 0); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001091 leaf = path->nodes[0];
1092 }
1093 btrfs_item_key_to_cpu(leaf, &found_key,
1094 path->slots[0]);
1095 BUG_ON(key.objectid != found_key.objectid);
1096 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
1097 path->slots[0]++;
1098 continue;
1099 }
1100 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1101 struct btrfs_extent_ref_v0);
1102 owner = btrfs_ref_objectid_v0(leaf, ref0);
1103 break;
1104 }
1105 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001106 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001107
1108 if (owner < BTRFS_FIRST_FREE_OBJECTID)
1109 new_size += sizeof(*bi);
1110
1111 new_size -= sizeof(*ei0);
1112 ret = btrfs_search_slot(trans, root, &key, path,
1113 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04001114 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001115 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001116 BUG_ON(ret); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001117
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001118 btrfs_extend_item(fs_info, path, new_size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001119
1120 leaf = path->nodes[0];
1121 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1122 btrfs_set_extent_refs(leaf, item, refs);
1123 /* FIXME: get real generation */
1124 btrfs_set_extent_generation(leaf, item, 0);
1125 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1126 btrfs_set_extent_flags(leaf, item,
1127 BTRFS_EXTENT_FLAG_TREE_BLOCK |
1128 BTRFS_BLOCK_FLAG_FULL_BACKREF);
1129 bi = (struct btrfs_tree_block_info *)(item + 1);
1130 /* FIXME: get first key of the block */
David Sterbab159fa22016-11-08 18:09:03 +01001131 memzero_extent_buffer(leaf, (unsigned long)bi, sizeof(*bi));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001132 btrfs_set_tree_block_level(leaf, bi, (int)owner);
1133 } else {
1134 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
1135 }
1136 btrfs_mark_buffer_dirty(leaf);
1137 return 0;
1138}
1139#endif
1140
Liu Bo167ce952017-08-18 15:15:18 -06001141/*
1142 * is_data == BTRFS_REF_TYPE_BLOCK, tree block type is required,
1143 * is_data == BTRFS_REF_TYPE_DATA, data type is requried,
1144 * is_data == BTRFS_REF_TYPE_ANY, either type is OK.
1145 */
1146int btrfs_get_extent_inline_ref_type(const struct extent_buffer *eb,
1147 struct btrfs_extent_inline_ref *iref,
1148 enum btrfs_inline_ref_type is_data)
1149{
1150 int type = btrfs_extent_inline_ref_type(eb, iref);
Liu Bo64ecdb62017-08-18 15:15:24 -06001151 u64 offset = btrfs_extent_inline_ref_offset(eb, iref);
Liu Bo167ce952017-08-18 15:15:18 -06001152
1153 if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1154 type == BTRFS_SHARED_BLOCK_REF_KEY ||
1155 type == BTRFS_SHARED_DATA_REF_KEY ||
1156 type == BTRFS_EXTENT_DATA_REF_KEY) {
1157 if (is_data == BTRFS_REF_TYPE_BLOCK) {
Liu Bo64ecdb62017-08-18 15:15:24 -06001158 if (type == BTRFS_TREE_BLOCK_REF_KEY)
Liu Bo167ce952017-08-18 15:15:18 -06001159 return type;
Liu Bo64ecdb62017-08-18 15:15:24 -06001160 if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1161 ASSERT(eb->fs_info);
1162 /*
1163 * Every shared one has parent tree
1164 * block, which must be aligned to
1165 * nodesize.
1166 */
1167 if (offset &&
1168 IS_ALIGNED(offset, eb->fs_info->nodesize))
1169 return type;
1170 }
Liu Bo167ce952017-08-18 15:15:18 -06001171 } else if (is_data == BTRFS_REF_TYPE_DATA) {
Liu Bo64ecdb62017-08-18 15:15:24 -06001172 if (type == BTRFS_EXTENT_DATA_REF_KEY)
Liu Bo167ce952017-08-18 15:15:18 -06001173 return type;
Liu Bo64ecdb62017-08-18 15:15:24 -06001174 if (type == BTRFS_SHARED_DATA_REF_KEY) {
1175 ASSERT(eb->fs_info);
1176 /*
1177 * Every shared one has parent tree
1178 * block, which must be aligned to
1179 * nodesize.
1180 */
1181 if (offset &&
1182 IS_ALIGNED(offset, eb->fs_info->nodesize))
1183 return type;
1184 }
Liu Bo167ce952017-08-18 15:15:18 -06001185 } else {
1186 ASSERT(is_data == BTRFS_REF_TYPE_ANY);
1187 return type;
1188 }
1189 }
1190
1191 btrfs_print_leaf((struct extent_buffer *)eb);
1192 btrfs_err(eb->fs_info, "eb %llu invalid extent inline ref type %d",
1193 eb->start, type);
1194 WARN_ON(1);
1195
1196 return BTRFS_REF_TYPE_INVALID;
1197}
1198
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001199static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1200{
1201 u32 high_crc = ~(u32)0;
1202 u32 low_crc = ~(u32)0;
1203 __le64 lenum;
1204
1205 lenum = cpu_to_le64(root_objectid);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001206 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001207 lenum = cpu_to_le64(owner);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001208 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001209 lenum = cpu_to_le64(offset);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001210 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001211
1212 return ((u64)high_crc << 31) ^ (u64)low_crc;
1213}
1214
1215static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1216 struct btrfs_extent_data_ref *ref)
1217{
1218 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1219 btrfs_extent_data_ref_objectid(leaf, ref),
1220 btrfs_extent_data_ref_offset(leaf, ref));
1221}
1222
1223static int match_extent_data_ref(struct extent_buffer *leaf,
1224 struct btrfs_extent_data_ref *ref,
1225 u64 root_objectid, u64 owner, u64 offset)
1226{
1227 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1228 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1229 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1230 return 0;
1231 return 1;
1232}
1233
1234static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001235 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001236 struct btrfs_path *path,
1237 u64 bytenr, u64 parent,
1238 u64 root_objectid,
1239 u64 owner, u64 offset)
1240{
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001241 struct btrfs_root *root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001242 struct btrfs_key key;
1243 struct btrfs_extent_data_ref *ref;
1244 struct extent_buffer *leaf;
1245 u32 nritems;
1246 int ret;
1247 int recow;
1248 int err = -ENOENT;
1249
1250 key.objectid = bytenr;
1251 if (parent) {
1252 key.type = BTRFS_SHARED_DATA_REF_KEY;
1253 key.offset = parent;
1254 } else {
1255 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1256 key.offset = hash_extent_data_ref(root_objectid,
1257 owner, offset);
1258 }
1259again:
1260 recow = 0;
1261 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1262 if (ret < 0) {
1263 err = ret;
1264 goto fail;
1265 }
1266
1267 if (parent) {
1268 if (!ret)
1269 return 0;
1270#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1271 key.type = BTRFS_EXTENT_REF_V0_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001272 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001273 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1274 if (ret < 0) {
1275 err = ret;
1276 goto fail;
1277 }
1278 if (!ret)
1279 return 0;
1280#endif
1281 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001282 }
1283
1284 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001285 nritems = btrfs_header_nritems(leaf);
1286 while (1) {
1287 if (path->slots[0] >= nritems) {
1288 ret = btrfs_next_leaf(root, path);
1289 if (ret < 0)
1290 err = ret;
1291 if (ret)
1292 goto fail;
1293
1294 leaf = path->nodes[0];
1295 nritems = btrfs_header_nritems(leaf);
1296 recow = 1;
1297 }
1298
1299 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1300 if (key.objectid != bytenr ||
1301 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1302 goto fail;
1303
1304 ref = btrfs_item_ptr(leaf, path->slots[0],
1305 struct btrfs_extent_data_ref);
1306
1307 if (match_extent_data_ref(leaf, ref, root_objectid,
1308 owner, offset)) {
1309 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001310 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001311 goto again;
1312 }
1313 err = 0;
1314 break;
1315 }
1316 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001317 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001318fail:
1319 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001320}
1321
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001322static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001323 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001324 struct btrfs_path *path,
1325 u64 bytenr, u64 parent,
1326 u64 root_objectid, u64 owner,
1327 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001328{
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001329 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04001330 struct btrfs_key key;
1331 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001332 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001333 u32 num_refs;
1334 int ret;
1335
1336 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001337 if (parent) {
1338 key.type = BTRFS_SHARED_DATA_REF_KEY;
1339 key.offset = parent;
1340 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001341 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001342 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1343 key.offset = hash_extent_data_ref(root_objectid,
1344 owner, offset);
1345 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001346 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001347
1348 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1349 if (ret && ret != -EEXIST)
1350 goto fail;
1351
1352 leaf = path->nodes[0];
1353 if (parent) {
1354 struct btrfs_shared_data_ref *ref;
1355 ref = btrfs_item_ptr(leaf, path->slots[0],
1356 struct btrfs_shared_data_ref);
1357 if (ret == 0) {
1358 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1359 } else {
1360 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1361 num_refs += refs_to_add;
1362 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1363 }
1364 } else {
1365 struct btrfs_extent_data_ref *ref;
1366 while (ret == -EEXIST) {
1367 ref = btrfs_item_ptr(leaf, path->slots[0],
1368 struct btrfs_extent_data_ref);
1369 if (match_extent_data_ref(leaf, ref, root_objectid,
1370 owner, offset))
1371 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001372 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001373 key.offset++;
1374 ret = btrfs_insert_empty_item(trans, root, path, &key,
1375 size);
1376 if (ret && ret != -EEXIST)
1377 goto fail;
1378
1379 leaf = path->nodes[0];
1380 }
1381 ref = btrfs_item_ptr(leaf, path->slots[0],
1382 struct btrfs_extent_data_ref);
1383 if (ret == 0) {
1384 btrfs_set_extent_data_ref_root(leaf, ref,
1385 root_objectid);
1386 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1387 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1388 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1389 } else {
1390 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1391 num_refs += refs_to_add;
1392 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1393 }
1394 }
1395 btrfs_mark_buffer_dirty(leaf);
1396 ret = 0;
1397fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001398 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001399 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001400}
1401
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001402static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001403 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001404 struct btrfs_path *path,
Josef Bacikfcebe452014-05-13 17:30:47 -07001405 int refs_to_drop, int *last_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04001406{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001407 struct btrfs_key key;
1408 struct btrfs_extent_data_ref *ref1 = NULL;
1409 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001410 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001411 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001412 int ret = 0;
1413
1414 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001415 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1416
1417 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1418 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1419 struct btrfs_extent_data_ref);
1420 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1421 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1422 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1423 struct btrfs_shared_data_ref);
1424 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1425#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1426 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1427 struct btrfs_extent_ref_v0 *ref0;
1428 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1429 struct btrfs_extent_ref_v0);
1430 num_refs = btrfs_ref_count_v0(leaf, ref0);
1431#endif
1432 } else {
1433 BUG();
1434 }
1435
Chris Mason56bec292009-03-13 10:10:06 -04001436 BUG_ON(num_refs < refs_to_drop);
1437 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001438
Zheng Yan31840ae2008-09-23 13:14:14 -04001439 if (num_refs == 0) {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001440 ret = btrfs_del_item(trans, fs_info->extent_root, path);
Josef Bacikfcebe452014-05-13 17:30:47 -07001441 *last_ref = 1;
Zheng Yan31840ae2008-09-23 13:14:14 -04001442 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001443 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1444 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1445 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1446 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1447#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1448 else {
1449 struct btrfs_extent_ref_v0 *ref0;
1450 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1451 struct btrfs_extent_ref_v0);
1452 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1453 }
1454#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001455 btrfs_mark_buffer_dirty(leaf);
1456 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001457 return ret;
1458}
1459
Zhaolei9ed0dea2015-08-06 22:16:24 +08001460static noinline u32 extent_data_ref_count(struct btrfs_path *path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001461 struct btrfs_extent_inline_ref *iref)
1462{
1463 struct btrfs_key key;
1464 struct extent_buffer *leaf;
1465 struct btrfs_extent_data_ref *ref1;
1466 struct btrfs_shared_data_ref *ref2;
1467 u32 num_refs = 0;
Liu Bo3de28d52017-08-18 15:15:19 -06001468 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001469
1470 leaf = path->nodes[0];
1471 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1472 if (iref) {
Liu Bo3de28d52017-08-18 15:15:19 -06001473 /*
1474 * If type is invalid, we should have bailed out earlier than
1475 * this call.
1476 */
1477 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
1478 ASSERT(type != BTRFS_REF_TYPE_INVALID);
1479 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001480 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1481 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1482 } else {
1483 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1484 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1485 }
1486 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1487 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1488 struct btrfs_extent_data_ref);
1489 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1490 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1491 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1492 struct btrfs_shared_data_ref);
1493 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1494#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1495 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1496 struct btrfs_extent_ref_v0 *ref0;
1497 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1498 struct btrfs_extent_ref_v0);
1499 num_refs = btrfs_ref_count_v0(leaf, ref0);
1500#endif
1501 } else {
1502 WARN_ON(1);
1503 }
1504 return num_refs;
1505}
1506
1507static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001508 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001509 struct btrfs_path *path,
1510 u64 bytenr, u64 parent,
1511 u64 root_objectid)
1512{
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001513 struct btrfs_root *root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001514 struct btrfs_key key;
1515 int ret;
1516
1517 key.objectid = bytenr;
1518 if (parent) {
1519 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1520 key.offset = parent;
1521 } else {
1522 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1523 key.offset = root_objectid;
1524 }
1525
1526 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1527 if (ret > 0)
1528 ret = -ENOENT;
1529#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1530 if (ret == -ENOENT && parent) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001531 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001532 key.type = BTRFS_EXTENT_REF_V0_KEY;
1533 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1534 if (ret > 0)
1535 ret = -ENOENT;
1536 }
1537#endif
1538 return ret;
1539}
1540
1541static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001542 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001543 struct btrfs_path *path,
1544 u64 bytenr, u64 parent,
1545 u64 root_objectid)
1546{
1547 struct btrfs_key key;
1548 int ret;
1549
1550 key.objectid = bytenr;
1551 if (parent) {
1552 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1553 key.offset = parent;
1554 } else {
1555 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1556 key.offset = root_objectid;
1557 }
1558
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001559 ret = btrfs_insert_empty_item(trans, fs_info->extent_root,
1560 path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001561 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001562 return ret;
1563}
1564
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001565static inline int extent_ref_type(u64 parent, u64 owner)
1566{
1567 int type;
1568 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1569 if (parent > 0)
1570 type = BTRFS_SHARED_BLOCK_REF_KEY;
1571 else
1572 type = BTRFS_TREE_BLOCK_REF_KEY;
1573 } else {
1574 if (parent > 0)
1575 type = BTRFS_SHARED_DATA_REF_KEY;
1576 else
1577 type = BTRFS_EXTENT_DATA_REF_KEY;
1578 }
1579 return type;
1580}
1581
Yan Zheng2c47e6052009-06-27 21:07:35 -04001582static int find_next_key(struct btrfs_path *path, int level,
1583 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001584
1585{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001586 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001587 if (!path->nodes[level])
1588 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001589 if (path->slots[level] + 1 >=
1590 btrfs_header_nritems(path->nodes[level]))
1591 continue;
1592 if (level == 0)
1593 btrfs_item_key_to_cpu(path->nodes[level], key,
1594 path->slots[level] + 1);
1595 else
1596 btrfs_node_key_to_cpu(path->nodes[level], key,
1597 path->slots[level] + 1);
1598 return 0;
1599 }
1600 return 1;
1601}
1602
1603/*
1604 * look for inline back ref. if back ref is found, *ref_ret is set
1605 * to the address of inline back ref, and 0 is returned.
1606 *
1607 * if back ref isn't found, *ref_ret is set to the address where it
1608 * should be inserted, and -ENOENT is returned.
1609 *
1610 * if insert is true and there are too many inline back refs, the path
1611 * points to the extent item, and -EAGAIN is returned.
1612 *
1613 * NOTE: inline back refs are ordered in the same way that back ref
1614 * items in the tree are ordered.
1615 */
1616static noinline_for_stack
1617int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001618 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001619 struct btrfs_path *path,
1620 struct btrfs_extent_inline_ref **ref_ret,
1621 u64 bytenr, u64 num_bytes,
1622 u64 parent, u64 root_objectid,
1623 u64 owner, u64 offset, int insert)
1624{
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001625 struct btrfs_root *root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001626 struct btrfs_key key;
1627 struct extent_buffer *leaf;
1628 struct btrfs_extent_item *ei;
1629 struct btrfs_extent_inline_ref *iref;
1630 u64 flags;
1631 u64 item_size;
1632 unsigned long ptr;
1633 unsigned long end;
1634 int extra_size;
1635 int type;
1636 int want;
1637 int ret;
1638 int err = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001639 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Liu Bo3de28d52017-08-18 15:15:19 -06001640 int needed;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001641
1642 key.objectid = bytenr;
1643 key.type = BTRFS_EXTENT_ITEM_KEY;
1644 key.offset = num_bytes;
1645
1646 want = extent_ref_type(parent, owner);
1647 if (insert) {
1648 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001649 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001650 } else
1651 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001652
1653 /*
1654 * Owner is our parent level, so we can just add one to get the level
1655 * for the block we are interested in.
1656 */
1657 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1658 key.type = BTRFS_METADATA_ITEM_KEY;
1659 key.offset = owner;
1660 }
1661
1662again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001663 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1664 if (ret < 0) {
1665 err = ret;
1666 goto out;
1667 }
Josef Bacik3173a182013-03-07 14:22:04 -05001668
1669 /*
1670 * We may be a newly converted file system which still has the old fat
1671 * extent entries for metadata, so try and see if we have one of those.
1672 */
1673 if (ret > 0 && skinny_metadata) {
1674 skinny_metadata = false;
1675 if (path->slots[0]) {
1676 path->slots[0]--;
1677 btrfs_item_key_to_cpu(path->nodes[0], &key,
1678 path->slots[0]);
1679 if (key.objectid == bytenr &&
1680 key.type == BTRFS_EXTENT_ITEM_KEY &&
1681 key.offset == num_bytes)
1682 ret = 0;
1683 }
1684 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001685 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001686 key.type = BTRFS_EXTENT_ITEM_KEY;
1687 key.offset = num_bytes;
1688 btrfs_release_path(path);
1689 goto again;
1690 }
1691 }
1692
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001693 if (ret && !insert) {
1694 err = -ENOENT;
1695 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301696 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001697 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001698 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001699 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001700
1701 leaf = path->nodes[0];
1702 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1703#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1704 if (item_size < sizeof(*ei)) {
1705 if (!insert) {
1706 err = -ENOENT;
1707 goto out;
1708 }
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001709 ret = convert_extent_item_v0(trans, fs_info, path, owner,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001710 extra_size);
1711 if (ret < 0) {
1712 err = ret;
1713 goto out;
1714 }
1715 leaf = path->nodes[0];
1716 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1717 }
1718#endif
1719 BUG_ON(item_size < sizeof(*ei));
1720
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001721 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1722 flags = btrfs_extent_flags(leaf, ei);
1723
1724 ptr = (unsigned long)(ei + 1);
1725 end = (unsigned long)ei + item_size;
1726
Josef Bacik3173a182013-03-07 14:22:04 -05001727 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001728 ptr += sizeof(struct btrfs_tree_block_info);
1729 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001730 }
1731
Liu Bo3de28d52017-08-18 15:15:19 -06001732 if (owner >= BTRFS_FIRST_FREE_OBJECTID)
1733 needed = BTRFS_REF_TYPE_DATA;
1734 else
1735 needed = BTRFS_REF_TYPE_BLOCK;
1736
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001737 err = -ENOENT;
1738 while (1) {
1739 if (ptr >= end) {
1740 WARN_ON(ptr > end);
1741 break;
1742 }
1743 iref = (struct btrfs_extent_inline_ref *)ptr;
Liu Bo3de28d52017-08-18 15:15:19 -06001744 type = btrfs_get_extent_inline_ref_type(leaf, iref, needed);
1745 if (type == BTRFS_REF_TYPE_INVALID) {
1746 err = -EINVAL;
1747 goto out;
1748 }
1749
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001750 if (want < type)
1751 break;
1752 if (want > type) {
1753 ptr += btrfs_extent_inline_ref_size(type);
1754 continue;
1755 }
1756
1757 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1758 struct btrfs_extent_data_ref *dref;
1759 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1760 if (match_extent_data_ref(leaf, dref, root_objectid,
1761 owner, offset)) {
1762 err = 0;
1763 break;
1764 }
1765 if (hash_extent_data_ref_item(leaf, dref) <
1766 hash_extent_data_ref(root_objectid, owner, offset))
1767 break;
1768 } else {
1769 u64 ref_offset;
1770 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1771 if (parent > 0) {
1772 if (parent == ref_offset) {
1773 err = 0;
1774 break;
1775 }
1776 if (ref_offset < parent)
1777 break;
1778 } else {
1779 if (root_objectid == ref_offset) {
1780 err = 0;
1781 break;
1782 }
1783 if (ref_offset < root_objectid)
1784 break;
1785 }
1786 }
1787 ptr += btrfs_extent_inline_ref_size(type);
1788 }
1789 if (err == -ENOENT && insert) {
1790 if (item_size + extra_size >=
1791 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1792 err = -EAGAIN;
1793 goto out;
1794 }
1795 /*
1796 * To add new inline back ref, we have to make sure
1797 * there is no corresponding back ref item.
1798 * For simplicity, we just do not add new inline back
1799 * ref if there is any kind of item for this block
1800 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001801 if (find_next_key(path, 0, &key) == 0 &&
1802 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001803 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001804 err = -EAGAIN;
1805 goto out;
1806 }
1807 }
1808 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1809out:
Yan Zheng85d41982009-06-11 08:51:10 -04001810 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001811 path->keep_locks = 0;
1812 btrfs_unlock_up_safe(path, 1);
1813 }
1814 return err;
1815}
1816
1817/*
1818 * helper to add new inline back ref
1819 */
1820static noinline_for_stack
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001821void setup_inline_extent_backref(struct btrfs_fs_info *fs_info,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001822 struct btrfs_path *path,
1823 struct btrfs_extent_inline_ref *iref,
1824 u64 parent, u64 root_objectid,
1825 u64 owner, u64 offset, int refs_to_add,
1826 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001827{
1828 struct extent_buffer *leaf;
1829 struct btrfs_extent_item *ei;
1830 unsigned long ptr;
1831 unsigned long end;
1832 unsigned long item_offset;
1833 u64 refs;
1834 int size;
1835 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001836
1837 leaf = path->nodes[0];
1838 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1839 item_offset = (unsigned long)iref - (unsigned long)ei;
1840
1841 type = extent_ref_type(parent, owner);
1842 size = btrfs_extent_inline_ref_size(type);
1843
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001844 btrfs_extend_item(fs_info, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001845
1846 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1847 refs = btrfs_extent_refs(leaf, ei);
1848 refs += refs_to_add;
1849 btrfs_set_extent_refs(leaf, ei, refs);
1850 if (extent_op)
1851 __run_delayed_extent_op(extent_op, leaf, ei);
1852
1853 ptr = (unsigned long)ei + item_offset;
1854 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1855 if (ptr < end - size)
1856 memmove_extent_buffer(leaf, ptr + size, ptr,
1857 end - size - ptr);
1858
1859 iref = (struct btrfs_extent_inline_ref *)ptr;
1860 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1861 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1862 struct btrfs_extent_data_ref *dref;
1863 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1864 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1865 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1866 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1867 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1868 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1869 struct btrfs_shared_data_ref *sref;
1870 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1871 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1872 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1873 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1874 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1875 } else {
1876 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1877 }
1878 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001879}
1880
1881static int lookup_extent_backref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001882 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001883 struct btrfs_path *path,
1884 struct btrfs_extent_inline_ref **ref_ret,
1885 u64 bytenr, u64 num_bytes, u64 parent,
1886 u64 root_objectid, u64 owner, u64 offset)
1887{
1888 int ret;
1889
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001890 ret = lookup_inline_extent_backref(trans, fs_info, path, ref_ret,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001891 bytenr, num_bytes, parent,
1892 root_objectid, owner, offset, 0);
1893 if (ret != -ENOENT)
1894 return ret;
1895
David Sterbab3b4aa72011-04-21 01:20:15 +02001896 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001897 *ref_ret = NULL;
1898
1899 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001900 ret = lookup_tree_block_ref(trans, fs_info, path, bytenr,
1901 parent, root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001902 } else {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001903 ret = lookup_extent_data_ref(trans, fs_info, path, bytenr,
1904 parent, root_objectid, owner,
1905 offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001906 }
1907 return ret;
1908}
1909
1910/*
1911 * helper to update/remove inline back ref
1912 */
1913static noinline_for_stack
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001914void update_inline_extent_backref(struct btrfs_fs_info *fs_info,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001915 struct btrfs_path *path,
1916 struct btrfs_extent_inline_ref *iref,
1917 int refs_to_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07001918 struct btrfs_delayed_extent_op *extent_op,
1919 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001920{
1921 struct extent_buffer *leaf;
1922 struct btrfs_extent_item *ei;
1923 struct btrfs_extent_data_ref *dref = NULL;
1924 struct btrfs_shared_data_ref *sref = NULL;
1925 unsigned long ptr;
1926 unsigned long end;
1927 u32 item_size;
1928 int size;
1929 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001930 u64 refs;
1931
1932 leaf = path->nodes[0];
1933 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1934 refs = btrfs_extent_refs(leaf, ei);
1935 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1936 refs += refs_to_mod;
1937 btrfs_set_extent_refs(leaf, ei, refs);
1938 if (extent_op)
1939 __run_delayed_extent_op(extent_op, leaf, ei);
1940
Liu Bo3de28d52017-08-18 15:15:19 -06001941 /*
1942 * If type is invalid, we should have bailed out after
1943 * lookup_inline_extent_backref().
1944 */
1945 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_ANY);
1946 ASSERT(type != BTRFS_REF_TYPE_INVALID);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001947
1948 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1949 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1950 refs = btrfs_extent_data_ref_count(leaf, dref);
1951 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1952 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1953 refs = btrfs_shared_data_ref_count(leaf, sref);
1954 } else {
1955 refs = 1;
1956 BUG_ON(refs_to_mod != -1);
1957 }
1958
1959 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1960 refs += refs_to_mod;
1961
1962 if (refs > 0) {
1963 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1964 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1965 else
1966 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1967 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001968 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001969 size = btrfs_extent_inline_ref_size(type);
1970 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1971 ptr = (unsigned long)iref;
1972 end = (unsigned long)ei + item_size;
1973 if (ptr + size < end)
1974 memmove_extent_buffer(leaf, ptr, ptr + size,
1975 end - ptr - size);
1976 item_size -= size;
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001977 btrfs_truncate_item(fs_info, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001978 }
1979 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001980}
1981
1982static noinline_for_stack
1983int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001984 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001985 struct btrfs_path *path,
1986 u64 bytenr, u64 num_bytes, u64 parent,
1987 u64 root_objectid, u64 owner,
1988 u64 offset, int refs_to_add,
1989 struct btrfs_delayed_extent_op *extent_op)
1990{
1991 struct btrfs_extent_inline_ref *iref;
1992 int ret;
1993
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001994 ret = lookup_inline_extent_backref(trans, fs_info, path, &iref,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001995 bytenr, num_bytes, parent,
1996 root_objectid, owner, offset, 1);
1997 if (ret == 0) {
1998 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001999 update_inline_extent_backref(fs_info, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07002000 refs_to_add, extent_op, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002001 } else if (ret == -ENOENT) {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002002 setup_inline_extent_backref(fs_info, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01002003 root_objectid, owner, offset,
2004 refs_to_add, extent_op);
2005 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002006 }
2007 return ret;
2008}
2009
2010static int insert_extent_backref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002011 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002012 struct btrfs_path *path,
2013 u64 bytenr, u64 parent, u64 root_objectid,
2014 u64 owner, u64 offset, int refs_to_add)
2015{
2016 int ret;
2017 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
2018 BUG_ON(refs_to_add != 1);
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002019 ret = insert_tree_block_ref(trans, fs_info, path, bytenr,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002020 parent, root_objectid);
2021 } else {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002022 ret = insert_extent_data_ref(trans, fs_info, path, bytenr,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002023 parent, root_objectid,
2024 owner, offset, refs_to_add);
2025 }
2026 return ret;
2027}
2028
2029static int remove_extent_backref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002030 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002031 struct btrfs_path *path,
2032 struct btrfs_extent_inline_ref *iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07002033 int refs_to_drop, int is_data, int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002034{
Jeff Mahoney143bede2012-03-01 14:56:26 +01002035 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002036
2037 BUG_ON(!is_data && refs_to_drop != 1);
2038 if (iref) {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002039 update_inline_extent_backref(fs_info, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07002040 -refs_to_drop, NULL, last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002041 } else if (is_data) {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002042 ret = remove_extent_data_ref(trans, fs_info, path, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07002043 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002044 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07002045 *last_ref = 1;
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002046 ret = btrfs_del_item(trans, fs_info->extent_root, path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002047 }
2048 return ret;
2049}
2050
Jeff Mahoney86557862015-06-15 09:41:16 -04002051#define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len))
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002052static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len,
2053 u64 *discarded_bytes)
Chris Mason15916de2008-11-19 21:17:22 -05002054{
Jeff Mahoney86557862015-06-15 09:41:16 -04002055 int j, ret = 0;
2056 u64 bytes_left, end;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002057 u64 aligned_start = ALIGN(start, 1 << 9);
2058
2059 if (WARN_ON(start != aligned_start)) {
2060 len -= aligned_start - start;
2061 len = round_down(len, 1 << 9);
2062 start = aligned_start;
2063 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002064
2065 *discarded_bytes = 0;
Jeff Mahoney86557862015-06-15 09:41:16 -04002066
2067 if (!len)
2068 return 0;
2069
2070 end = start + len;
2071 bytes_left = len;
2072
2073 /* Skip any superblocks on this device. */
2074 for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) {
2075 u64 sb_start = btrfs_sb_offset(j);
2076 u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE;
2077 u64 size = sb_start - start;
2078
2079 if (!in_range(sb_start, start, bytes_left) &&
2080 !in_range(sb_end, start, bytes_left) &&
2081 !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE))
2082 continue;
2083
2084 /*
2085 * Superblock spans beginning of range. Adjust start and
2086 * try again.
2087 */
2088 if (sb_start <= start) {
2089 start += sb_end - start;
2090 if (start > end) {
2091 bytes_left = 0;
2092 break;
2093 }
2094 bytes_left = end - start;
2095 continue;
2096 }
2097
2098 if (size) {
2099 ret = blkdev_issue_discard(bdev, start >> 9, size >> 9,
2100 GFP_NOFS, 0);
2101 if (!ret)
2102 *discarded_bytes += size;
2103 else if (ret != -EOPNOTSUPP)
2104 return ret;
2105 }
2106
2107 start = sb_end;
2108 if (start > end) {
2109 bytes_left = 0;
2110 break;
2111 }
2112 bytes_left = end - start;
2113 }
2114
2115 if (bytes_left) {
2116 ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9,
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002117 GFP_NOFS, 0);
2118 if (!ret)
Jeff Mahoney86557862015-06-15 09:41:16 -04002119 *discarded_bytes += bytes_left;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002120 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002121 return ret;
Chris Mason15916de2008-11-19 21:17:22 -05002122}
Chris Mason15916de2008-11-19 21:17:22 -05002123
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002124int btrfs_discard_extent(struct btrfs_fs_info *fs_info, u64 bytenr,
Filipe Manana1edb647b2014-12-08 14:01:12 +00002125 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05002126{
Liu Hui1f3c79a2009-01-05 15:57:51 -05002127 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00002128 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02002129 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002130
Christoph Hellwige244a0a2009-10-14 09:24:59 -04002131
Filipe Manana29992412016-05-27 17:42:05 +01002132 /*
2133 * Avoid races with device replace and make sure our bbio has devices
2134 * associated to its stripes that don't go away while we are discarding.
2135 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002136 btrfs_bio_counter_inc_blocked(fs_info);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002137 /* Tell the block device(s) that the sectors can be discarded */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002138 ret = btrfs_map_block(fs_info, BTRFS_MAP_DISCARD, bytenr, &num_bytes,
2139 &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002140 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05002141 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02002142 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002143 int i;
2144
Liu Hui1f3c79a2009-01-05 15:57:51 -05002145
Jan Schmidta1d3c472011-08-04 17:15:33 +02002146 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002147 u64 bytes;
Josef Bacikd5e20032011-08-04 14:52:27 +00002148 if (!stripe->dev->can_discard)
2149 continue;
2150
Li Dongyang5378e602011-03-24 10:24:27 +00002151 ret = btrfs_issue_discard(stripe->dev->bdev,
2152 stripe->physical,
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002153 stripe->length,
2154 &bytes);
Li Dongyang5378e602011-03-24 10:24:27 +00002155 if (!ret)
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002156 discarded_bytes += bytes;
Li Dongyang5378e602011-03-24 10:24:27 +00002157 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002158 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00002159
2160 /*
2161 * Just in case we get back EOPNOTSUPP for some reason,
2162 * just ignore the return value so we don't screw up
2163 * people calling discard_extent.
2164 */
2165 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002166 }
Zhao Lei6e9606d2015-01-20 15:11:34 +08002167 btrfs_put_bbio(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002168 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002169 btrfs_bio_counter_dec(fs_info);
Li Dongyang5378e602011-03-24 10:24:27 +00002170
2171 if (actual_bytes)
2172 *actual_bytes = discarded_bytes;
2173
Liu Hui1f3c79a2009-01-05 15:57:51 -05002174
David Woodhouse53b381b2013-01-29 18:40:14 -05002175 if (ret == -EOPNOTSUPP)
2176 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002177 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002178}
2179
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002180/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002181int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002182 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002183 u64 bytenr, u64 num_bytes, u64 parent,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002184 u64 root_objectid, u64 owner, u64 offset)
Zheng Yan31840ae2008-09-23 13:14:14 -04002185{
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002186 struct btrfs_fs_info *fs_info = root->fs_info;
Omar Sandovald7eae342017-06-06 16:45:31 -07002187 int old_ref_mod, new_ref_mod;
Zheng Yan31840ae2008-09-23 13:14:14 -04002188 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002189
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002190 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
2191 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04002192
Josef Bacikfd708b82017-09-29 15:43:50 -04002193 btrfs_ref_tree_mod(root, bytenr, num_bytes, parent, root_objectid,
2194 owner, offset, BTRFS_ADD_DELAYED_REF);
2195
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002196 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002197 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07002198 num_bytes, parent,
2199 root_objectid, (int)owner,
2200 BTRFS_ADD_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07002201 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002202 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002203 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07002204 num_bytes, parent,
2205 root_objectid, owner, offset,
Omar Sandovald7eae342017-06-06 16:45:31 -07002206 0, BTRFS_ADD_DELAYED_REF,
2207 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002208 }
Omar Sandovald7eae342017-06-06 16:45:31 -07002209
2210 if (ret == 0 && old_ref_mod < 0 && new_ref_mod >= 0)
2211 add_pinned_bytes(fs_info, -num_bytes, owner, root_objectid);
2212
Zheng Yan31840ae2008-09-23 13:14:14 -04002213 return ret;
2214}
2215
Chris Mason925baed2008-06-25 16:01:30 -04002216static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002217 struct btrfs_fs_info *fs_info,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002218 struct btrfs_delayed_ref_node *node,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002219 u64 parent, u64 root_objectid,
2220 u64 owner, u64 offset, int refs_to_add,
2221 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04002222{
Chris Mason5caf2a02007-04-02 11:20:42 -04002223 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002224 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04002225 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07002226 struct btrfs_key key;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002227 u64 bytenr = node->bytenr;
2228 u64 num_bytes = node->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002229 u64 refs;
2230 int ret;
Chris Mason037e6392007-03-07 11:50:24 -05002231
Chris Mason5caf2a02007-04-02 11:20:42 -04002232 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002233 if (!path)
2234 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04002235
David Sterbae4058b52015-11-27 16:31:35 +01002236 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002237 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002238 /* this will setup the path even if it fails to insert the back ref */
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002239 ret = insert_inline_extent_backref(trans, fs_info, path, bytenr,
2240 num_bytes, parent, root_objectid,
2241 owner, offset,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002242 refs_to_add, extent_op);
Qu Wenruo0ed47922015-04-16 16:55:08 +08002243 if ((ret < 0 && ret != -EAGAIN) || !ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002244 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002245
2246 /*
2247 * Ok we had -EAGAIN which means we didn't have space to insert and
2248 * inline extent ref, so just update the reference count and add a
2249 * normal backref.
2250 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002251 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002252 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002253 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2254 refs = btrfs_extent_refs(leaf, item);
2255 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2256 if (extent_op)
2257 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002258
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002259 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002260 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002261
David Sterbae4058b52015-11-27 16:31:35 +01002262 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002263 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002264 /* now insert the actual backref */
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002265 ret = insert_extent_backref(trans, fs_info, path, bytenr, parent,
2266 root_objectid, owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002267 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04002268 btrfs_abort_transaction(trans, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002269out:
Chris Mason74493f72007-12-11 09:25:06 -05002270 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002271 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002272}
2273
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002274static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002275 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002276 struct btrfs_delayed_ref_node *node,
2277 struct btrfs_delayed_extent_op *extent_op,
2278 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002279{
Chris Mason56bec292009-03-13 10:10:06 -04002280 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002281 struct btrfs_delayed_data_ref *ref;
2282 struct btrfs_key ins;
2283 u64 parent = 0;
2284 u64 ref_root = 0;
2285 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002286
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002287 ins.objectid = node->bytenr;
2288 ins.offset = node->num_bytes;
2289 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002290
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002291 ref = btrfs_delayed_node_to_data_ref(node);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002292 trace_run_delayed_data_ref(fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002293
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002294 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2295 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002296 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002297
2298 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002299 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002300 flags |= extent_op->flags_to_set;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002301 ret = alloc_reserved_file_extent(trans, fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002302 parent, ref_root, flags,
2303 ref->objectid, ref->offset,
2304 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002305 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002306 ret = __btrfs_inc_extent_ref(trans, fs_info, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002307 ref_root, ref->objectid,
2308 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002309 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002310 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002311 ret = __btrfs_free_extent(trans, fs_info, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002312 ref_root, ref->objectid,
2313 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002314 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002315 } else {
2316 BUG();
2317 }
Chris Mason56bec292009-03-13 10:10:06 -04002318 return ret;
2319}
2320
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002321static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2322 struct extent_buffer *leaf,
2323 struct btrfs_extent_item *ei)
2324{
2325 u64 flags = btrfs_extent_flags(leaf, ei);
2326 if (extent_op->update_flags) {
2327 flags |= extent_op->flags_to_set;
2328 btrfs_set_extent_flags(leaf, ei, flags);
2329 }
2330
2331 if (extent_op->update_key) {
2332 struct btrfs_tree_block_info *bi;
2333 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2334 bi = (struct btrfs_tree_block_info *)(ei + 1);
2335 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2336 }
2337}
2338
2339static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002340 struct btrfs_fs_info *fs_info,
Josef Bacikd2788502017-09-29 15:43:57 -04002341 struct btrfs_delayed_ref_head *head,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002342 struct btrfs_delayed_extent_op *extent_op)
2343{
2344 struct btrfs_key key;
2345 struct btrfs_path *path;
2346 struct btrfs_extent_item *ei;
2347 struct extent_buffer *leaf;
2348 u32 item_size;
2349 int ret;
2350 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002351 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002352
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002353 if (trans->aborted)
2354 return 0;
2355
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002356 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik3173a182013-03-07 14:22:04 -05002357 metadata = 0;
2358
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002359 path = btrfs_alloc_path();
2360 if (!path)
2361 return -ENOMEM;
2362
Josef Bacikd2788502017-09-29 15:43:57 -04002363 key.objectid = head->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002364
Josef Bacik3173a182013-03-07 14:22:04 -05002365 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002366 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002367 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002368 } else {
2369 key.type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacikd2788502017-09-29 15:43:57 -04002370 key.offset = head->num_bytes;
Josef Bacik3173a182013-03-07 14:22:04 -05002371 }
2372
2373again:
David Sterbae4058b52015-11-27 16:31:35 +01002374 path->reada = READA_FORWARD;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002375 path->leave_spinning = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002376 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002377 if (ret < 0) {
2378 err = ret;
2379 goto out;
2380 }
2381 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002382 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002383 if (path->slots[0] > 0) {
2384 path->slots[0]--;
2385 btrfs_item_key_to_cpu(path->nodes[0], &key,
2386 path->slots[0]);
Josef Bacikd2788502017-09-29 15:43:57 -04002387 if (key.objectid == head->bytenr &&
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002388 key.type == BTRFS_EXTENT_ITEM_KEY &&
Josef Bacikd2788502017-09-29 15:43:57 -04002389 key.offset == head->num_bytes)
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002390 ret = 0;
2391 }
2392 if (ret > 0) {
2393 btrfs_release_path(path);
2394 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002395
Josef Bacikd2788502017-09-29 15:43:57 -04002396 key.objectid = head->bytenr;
2397 key.offset = head->num_bytes;
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002398 key.type = BTRFS_EXTENT_ITEM_KEY;
2399 goto again;
2400 }
2401 } else {
2402 err = -EIO;
2403 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002404 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002405 }
2406
2407 leaf = path->nodes[0];
2408 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2409#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2410 if (item_size < sizeof(*ei)) {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002411 ret = convert_extent_item_v0(trans, fs_info, path, (u64)-1, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002412 if (ret < 0) {
2413 err = ret;
2414 goto out;
2415 }
2416 leaf = path->nodes[0];
2417 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2418 }
2419#endif
2420 BUG_ON(item_size < sizeof(*ei));
2421 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2422 __run_delayed_extent_op(extent_op, leaf, ei);
2423
2424 btrfs_mark_buffer_dirty(leaf);
2425out:
2426 btrfs_free_path(path);
2427 return err;
2428}
2429
2430static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002431 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002432 struct btrfs_delayed_ref_node *node,
2433 struct btrfs_delayed_extent_op *extent_op,
2434 int insert_reserved)
2435{
2436 int ret = 0;
2437 struct btrfs_delayed_tree_ref *ref;
2438 struct btrfs_key ins;
2439 u64 parent = 0;
2440 u64 ref_root = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002441 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002442
2443 ref = btrfs_delayed_node_to_tree_ref(node);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002444 trace_run_delayed_tree_ref(fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002445
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002446 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2447 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002448 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002449
Josef Bacik3173a182013-03-07 14:22:04 -05002450 ins.objectid = node->bytenr;
2451 if (skinny_metadata) {
2452 ins.offset = ref->level;
2453 ins.type = BTRFS_METADATA_ITEM_KEY;
2454 } else {
2455 ins.offset = node->num_bytes;
2456 ins.type = BTRFS_EXTENT_ITEM_KEY;
2457 }
2458
Liu Bo02794222016-09-14 19:19:05 -07002459 if (node->ref_mod != 1) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002460 btrfs_err(fs_info,
Liu Bo02794222016-09-14 19:19:05 -07002461 "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu",
2462 node->bytenr, node->ref_mod, node->action, ref_root,
2463 parent);
2464 return -EIO;
2465 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002466 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002467 BUG_ON(!extent_op || !extent_op->update_flags);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002468 ret = alloc_reserved_tree_block(trans, fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002469 parent, ref_root,
2470 extent_op->flags_to_set,
2471 &extent_op->key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002472 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002473 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002474 ret = __btrfs_inc_extent_ref(trans, fs_info, node,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002475 parent, ref_root,
2476 ref->level, 0, 1,
Josef Bacikfcebe452014-05-13 17:30:47 -07002477 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002478 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002479 ret = __btrfs_free_extent(trans, fs_info, node,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002480 parent, ref_root,
2481 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002482 } else {
2483 BUG();
2484 }
2485 return ret;
2486}
2487
Chris Mason56bec292009-03-13 10:10:06 -04002488/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002489static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002490 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002491 struct btrfs_delayed_ref_node *node,
2492 struct btrfs_delayed_extent_op *extent_op,
2493 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002494{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002495 int ret = 0;
2496
Josef Bacik857cc2f2013-10-07 15:21:08 -04002497 if (trans->aborted) {
2498 if (insert_reserved)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002499 btrfs_pin_extent(fs_info, node->bytenr,
Josef Bacik857cc2f2013-10-07 15:21:08 -04002500 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002501 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002502 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002503
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002504 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2505 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002506 ret = run_delayed_tree_ref(trans, fs_info, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002507 insert_reserved);
2508 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2509 node->type == BTRFS_SHARED_DATA_REF_KEY)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002510 ret = run_delayed_data_ref(trans, fs_info, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002511 insert_reserved);
2512 else
2513 BUG();
2514 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002515}
2516
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002517static inline struct btrfs_delayed_ref_node *
Chris Mason56bec292009-03-13 10:10:06 -04002518select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002519{
Filipe Mananacffc3372015-07-09 13:13:44 +01002520 struct btrfs_delayed_ref_node *ref;
2521
Josef Bacik0e0adbc2017-10-19 14:16:00 -04002522 if (RB_EMPTY_ROOT(&head->ref_tree))
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002523 return NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002524
Filipe Mananacffc3372015-07-09 13:13:44 +01002525 /*
2526 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
2527 * This is to prevent a ref count from going down to zero, which deletes
2528 * the extent item from the extent tree, when there still are references
2529 * to add, which would fail because they would not find the extent item.
2530 */
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002531 if (!list_empty(&head->ref_add_list))
2532 return list_first_entry(&head->ref_add_list,
2533 struct btrfs_delayed_ref_node, add_list);
Filipe Mananacffc3372015-07-09 13:13:44 +01002534
Josef Bacik0e0adbc2017-10-19 14:16:00 -04002535 ref = rb_entry(rb_first(&head->ref_tree),
2536 struct btrfs_delayed_ref_node, ref_node);
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002537 ASSERT(list_empty(&ref->add_list));
2538 return ref;
Chris Mason56bec292009-03-13 10:10:06 -04002539}
2540
Josef Bacik2eadaa22017-09-29 15:43:52 -04002541static void unselect_delayed_ref_head(struct btrfs_delayed_ref_root *delayed_refs,
2542 struct btrfs_delayed_ref_head *head)
2543{
2544 spin_lock(&delayed_refs->lock);
2545 head->processing = 0;
2546 delayed_refs->num_heads_ready++;
2547 spin_unlock(&delayed_refs->lock);
2548 btrfs_delayed_ref_unlock(head);
2549}
2550
Josef Bacikb00e6252017-09-29 15:43:53 -04002551static int cleanup_extent_op(struct btrfs_trans_handle *trans,
2552 struct btrfs_fs_info *fs_info,
2553 struct btrfs_delayed_ref_head *head)
2554{
2555 struct btrfs_delayed_extent_op *extent_op = head->extent_op;
2556 int ret;
2557
2558 if (!extent_op)
2559 return 0;
2560 head->extent_op = NULL;
2561 if (head->must_insert_reserved) {
2562 btrfs_free_delayed_extent_op(extent_op);
2563 return 0;
2564 }
2565 spin_unlock(&head->lock);
Josef Bacikd2788502017-09-29 15:43:57 -04002566 ret = run_delayed_extent_op(trans, fs_info, head, extent_op);
Josef Bacikb00e6252017-09-29 15:43:53 -04002567 btrfs_free_delayed_extent_op(extent_op);
2568 return ret ? ret : 1;
2569}
2570
Josef Bacik194ab0b2017-09-29 15:43:54 -04002571static int cleanup_ref_head(struct btrfs_trans_handle *trans,
2572 struct btrfs_fs_info *fs_info,
2573 struct btrfs_delayed_ref_head *head)
2574{
2575 struct btrfs_delayed_ref_root *delayed_refs;
2576 int ret;
2577
2578 delayed_refs = &trans->transaction->delayed_refs;
2579
2580 ret = cleanup_extent_op(trans, fs_info, head);
2581 if (ret < 0) {
2582 unselect_delayed_ref_head(delayed_refs, head);
2583 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
2584 return ret;
2585 } else if (ret) {
2586 return ret;
2587 }
2588
2589 /*
2590 * Need to drop our head ref lock and re-acquire the delayed ref lock
2591 * and then re-check to make sure nobody got added.
2592 */
2593 spin_unlock(&head->lock);
2594 spin_lock(&delayed_refs->lock);
2595 spin_lock(&head->lock);
Josef Bacik0e0adbc2017-10-19 14:16:00 -04002596 if (!RB_EMPTY_ROOT(&head->ref_tree) || head->extent_op) {
Josef Bacik194ab0b2017-09-29 15:43:54 -04002597 spin_unlock(&head->lock);
2598 spin_unlock(&delayed_refs->lock);
2599 return 1;
2600 }
Josef Bacik194ab0b2017-09-29 15:43:54 -04002601 delayed_refs->num_heads--;
2602 rb_erase(&head->href_node, &delayed_refs->href_root);
Josef Bacikd2788502017-09-29 15:43:57 -04002603 RB_CLEAR_NODE(&head->href_node);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002604 spin_unlock(&delayed_refs->lock);
Josef Bacikc1103f72017-09-29 15:43:56 -04002605 spin_unlock(&head->lock);
2606 atomic_dec(&delayed_refs->num_entries);
2607
Josef Bacikd2788502017-09-29 15:43:57 -04002608 trace_run_delayed_ref_head(fs_info, head, 0);
Josef Bacikc1103f72017-09-29 15:43:56 -04002609
2610 if (head->total_ref_mod < 0) {
2611 struct btrfs_block_group_cache *cache;
2612
Josef Bacikd2788502017-09-29 15:43:57 -04002613 cache = btrfs_lookup_block_group(fs_info, head->bytenr);
Josef Bacikc1103f72017-09-29 15:43:56 -04002614 ASSERT(cache);
2615 percpu_counter_add(&cache->space_info->total_bytes_pinned,
Josef Bacikd2788502017-09-29 15:43:57 -04002616 -head->num_bytes);
Josef Bacikc1103f72017-09-29 15:43:56 -04002617 btrfs_put_block_group(cache);
2618
2619 if (head->is_data) {
2620 spin_lock(&delayed_refs->lock);
Josef Bacikd2788502017-09-29 15:43:57 -04002621 delayed_refs->pending_csums -= head->num_bytes;
Josef Bacikc1103f72017-09-29 15:43:56 -04002622 spin_unlock(&delayed_refs->lock);
2623 }
2624 }
2625
2626 if (head->must_insert_reserved) {
Josef Bacikd2788502017-09-29 15:43:57 -04002627 btrfs_pin_extent(fs_info, head->bytenr,
2628 head->num_bytes, 1);
Josef Bacikc1103f72017-09-29 15:43:56 -04002629 if (head->is_data) {
Josef Bacikd2788502017-09-29 15:43:57 -04002630 ret = btrfs_del_csums(trans, fs_info, head->bytenr,
2631 head->num_bytes);
Josef Bacikc1103f72017-09-29 15:43:56 -04002632 }
2633 }
2634
2635 /* Also free its reserved qgroup space */
2636 btrfs_qgroup_free_delayed_ref(fs_info, head->qgroup_ref_root,
2637 head->qgroup_reserved);
2638 btrfs_delayed_ref_unlock(head);
Josef Bacikd2788502017-09-29 15:43:57 -04002639 btrfs_put_delayed_ref_head(head);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002640 return 0;
2641}
2642
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002643/*
2644 * Returns 0 on success or if called with an already aborted transaction.
2645 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2646 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002647static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002648 struct btrfs_fs_info *fs_info,
Josef Bacikd7df2c72014-01-23 09:21:38 -05002649 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002650{
Chris Mason56bec292009-03-13 10:10:06 -04002651 struct btrfs_delayed_ref_root *delayed_refs;
2652 struct btrfs_delayed_ref_node *ref;
2653 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002654 struct btrfs_delayed_extent_op *extent_op;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002655 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002656 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002657 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002658 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002659 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002660
2661 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002662 while (1) {
2663 if (!locked_ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002664 if (count >= nr)
Chris Mason56bec292009-03-13 10:10:06 -04002665 break;
Chris Mason56bec292009-03-13 10:10:06 -04002666
Josef Bacikd7df2c72014-01-23 09:21:38 -05002667 spin_lock(&delayed_refs->lock);
2668 locked_ref = btrfs_select_ref_head(trans);
2669 if (!locked_ref) {
2670 spin_unlock(&delayed_refs->lock);
2671 break;
2672 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002673
2674 /* grab the lock that says we are going to process
2675 * all the refs for this head */
2676 ret = btrfs_delayed_ref_lock(trans, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002677 spin_unlock(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -04002678 /*
2679 * we may have dropped the spin lock to get the head
2680 * mutex lock, and that might have given someone else
2681 * time to free the head. If that's true, it has been
2682 * removed from our list and we can move on.
2683 */
2684 if (ret == -EAGAIN) {
2685 locked_ref = NULL;
2686 count++;
2687 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002688 }
2689 }
2690
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002691 /*
2692 * We need to try and merge add/drops of the same ref since we
2693 * can run into issues with relocate dropping the implicit ref
2694 * and then it being added back again before the drop can
2695 * finish. If we merged anything we need to re-loop so we can
2696 * get a good ref.
2697 * Or we can get node references of the same type that weren't
2698 * merged when created due to bumps in the tree mod seq, and
2699 * we need to merge them to prevent adding an inline extent
2700 * backref before dropping it (triggering a BUG_ON at
2701 * insert_inline_extent_backref()).
2702 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002703 spin_lock(&locked_ref->lock);
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002704 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2705 locked_ref);
Josef Bacikae1e2062012-08-07 16:00:32 -04002706
2707 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002708 * locked_ref is the head node, so we have to go one
2709 * node back for any delayed ref updates
2710 */
2711 ref = select_delayed_ref(locked_ref);
2712
2713 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002714 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002715 spin_unlock(&locked_ref->lock);
Josef Bacik2eadaa22017-09-29 15:43:52 -04002716 unselect_delayed_ref_head(delayed_refs, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002717 locked_ref = NULL;
Arne Jansend1270cd2011-09-13 15:16:43 +02002718 cond_resched();
Josef Bacik27a377d2014-02-07 13:57:59 -05002719 count++;
Arne Jansend1270cd2011-09-13 15:16:43 +02002720 continue;
2721 }
2722
Josef Bacikc1103f72017-09-29 15:43:56 -04002723 /*
2724 * We're done processing refs in this ref_head, clean everything
2725 * up and move on to the next ref_head.
2726 */
Chris Mason56bec292009-03-13 10:10:06 -04002727 if (!ref) {
Josef Bacik194ab0b2017-09-29 15:43:54 -04002728 ret = cleanup_ref_head(trans, fs_info, locked_ref);
2729 if (ret > 0 ) {
Josef Bacikb00e6252017-09-29 15:43:53 -04002730 /* We dropped our lock, we need to loop. */
2731 ret = 0;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002732 continue;
Josef Bacik194ab0b2017-09-29 15:43:54 -04002733 } else if (ret) {
2734 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002735 }
Josef Bacikc1103f72017-09-29 15:43:56 -04002736 locked_ref = NULL;
2737 count++;
2738 continue;
2739 }
Chris Mason56bec292009-03-13 10:10:06 -04002740
Josef Bacikc1103f72017-09-29 15:43:56 -04002741 actual_count++;
2742 ref->in_tree = 0;
Josef Bacik0e0adbc2017-10-19 14:16:00 -04002743 rb_erase(&ref->ref_node, &locked_ref->ref_tree);
2744 RB_CLEAR_NODE(&ref->ref_node);
Josef Bacikc1103f72017-09-29 15:43:56 -04002745 if (!list_empty(&ref->add_list))
2746 list_del(&ref->add_list);
2747 /*
2748 * When we play the delayed ref, also correct the ref_mod on
2749 * head
2750 */
2751 switch (ref->action) {
2752 case BTRFS_ADD_DELAYED_REF:
2753 case BTRFS_ADD_DELAYED_EXTENT:
Josef Bacikd2788502017-09-29 15:43:57 -04002754 locked_ref->ref_mod -= ref->ref_mod;
Josef Bacikc1103f72017-09-29 15:43:56 -04002755 break;
2756 case BTRFS_DROP_DELAYED_REF:
Josef Bacikd2788502017-09-29 15:43:57 -04002757 locked_ref->ref_mod += ref->ref_mod;
Josef Bacikc1103f72017-09-29 15:43:56 -04002758 break;
2759 default:
2760 WARN_ON(1);
Arne Jansen22cd2e72012-08-09 00:16:53 -06002761 }
Josef Bacik1ce7a5e2017-09-29 15:43:55 -04002762 atomic_dec(&delayed_refs->num_entries);
2763
Josef Bacikb00e6252017-09-29 15:43:53 -04002764 /*
2765 * Record the must-insert_reserved flag before we drop the spin
2766 * lock.
2767 */
2768 must_insert_reserved = locked_ref->must_insert_reserved;
2769 locked_ref->must_insert_reserved = 0;
2770
2771 extent_op = locked_ref->extent_op;
2772 locked_ref->extent_op = NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002773 spin_unlock(&locked_ref->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002774
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002775 ret = run_one_delayed_ref(trans, fs_info, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002776 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002777
Miao Xie78a61842012-11-21 02:21:28 +00002778 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002779 if (ret) {
Josef Bacik2eadaa22017-09-29 15:43:52 -04002780 unselect_delayed_ref_head(delayed_refs, locked_ref);
Miao Xie093486c2012-12-19 08:10:10 +00002781 btrfs_put_delayed_ref(ref);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002782 btrfs_debug(fs_info, "run_one_delayed_ref returned %d",
2783 ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002784 return ret;
2785 }
2786
Miao Xie093486c2012-12-19 08:10:10 +00002787 btrfs_put_delayed_ref(ref);
2788 count++;
Chris Mason1887be62009-03-13 10:11:24 -04002789 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002790 }
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002791
2792 /*
2793 * We don't want to include ref heads since we can have empty ref heads
2794 * and those will drastically skew our runtime down since we just do
2795 * accounting, no actual extent tree updates.
2796 */
2797 if (actual_count > 0) {
2798 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2799 u64 avg;
2800
2801 /*
2802 * We weigh the current average higher than our current runtime
2803 * to avoid large swings in the average.
2804 */
2805 spin_lock(&delayed_refs->lock);
2806 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002807 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002808 spin_unlock(&delayed_refs->lock);
2809 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002810 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002811}
2812
Arne Jansen709c0482011-09-12 12:22:57 +02002813#ifdef SCRAMBLE_DELAYED_REFS
2814/*
2815 * Normally delayed refs get processed in ascending bytenr order. This
2816 * correlates in most cases to the order added. To expose dependencies on this
2817 * order, we start to process the tree in the middle instead of the beginning
2818 */
2819static u64 find_middle(struct rb_root *root)
2820{
2821 struct rb_node *n = root->rb_node;
2822 struct btrfs_delayed_ref_node *entry;
2823 int alt = 1;
2824 u64 middle;
2825 u64 first = 0, last = 0;
2826
2827 n = rb_first(root);
2828 if (n) {
2829 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2830 first = entry->bytenr;
2831 }
2832 n = rb_last(root);
2833 if (n) {
2834 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2835 last = entry->bytenr;
2836 }
2837 n = root->rb_node;
2838
2839 while (n) {
2840 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2841 WARN_ON(!entry->in_tree);
2842
2843 middle = entry->bytenr;
2844
2845 if (alt)
2846 n = n->rb_left;
2847 else
2848 n = n->rb_right;
2849
2850 alt = 1 - alt;
2851 }
2852 return middle;
2853}
2854#endif
2855
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002856static inline u64 heads_to_leaves(struct btrfs_fs_info *fs_info, u64 heads)
Josef Bacik1be41b72013-06-12 13:56:06 -04002857{
2858 u64 num_bytes;
2859
2860 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2861 sizeof(struct btrfs_extent_inline_ref));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002862 if (!btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik1be41b72013-06-12 13:56:06 -04002863 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2864
2865 /*
2866 * We don't ever fill up leaves all the way so multiply by 2 just to be
Nicholas D Steeves01327612016-05-19 21:18:45 -04002867 * closer to what we're really going to want to use.
Josef Bacik1be41b72013-06-12 13:56:06 -04002868 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002869 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(fs_info));
Josef Bacik1be41b72013-06-12 13:56:06 -04002870}
2871
Josef Bacik12621332015-02-03 07:50:16 -08002872/*
2873 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2874 * would require to store the csums for that many bytes.
2875 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002876u64 btrfs_csum_bytes_to_leaves(struct btrfs_fs_info *fs_info, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002877{
2878 u64 csum_size;
2879 u64 num_csums_per_leaf;
2880 u64 num_csums;
2881
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002882 csum_size = BTRFS_MAX_ITEM_SIZE(fs_info);
Josef Bacik12621332015-02-03 07:50:16 -08002883 num_csums_per_leaf = div64_u64(csum_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002884 (u64)btrfs_super_csum_size(fs_info->super_copy));
2885 num_csums = div64_u64(csum_bytes, fs_info->sectorsize);
Josef Bacik12621332015-02-03 07:50:16 -08002886 num_csums += num_csums_per_leaf - 1;
2887 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2888 return num_csums;
2889}
2890
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002891int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002892 struct btrfs_fs_info *fs_info)
Josef Bacik1be41b72013-06-12 13:56:06 -04002893{
2894 struct btrfs_block_rsv *global_rsv;
2895 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
Josef Bacik12621332015-02-03 07:50:16 -08002896 u64 csum_bytes = trans->transaction->delayed_refs.pending_csums;
Josef Bacikcb723e42015-02-18 08:06:57 -08002897 u64 num_dirty_bgs = trans->transaction->num_dirty_bgs;
2898 u64 num_bytes, num_dirty_bgs_bytes;
Josef Bacik1be41b72013-06-12 13:56:06 -04002899 int ret = 0;
2900
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002901 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002902 num_heads = heads_to_leaves(fs_info, num_heads);
Josef Bacik1be41b72013-06-12 13:56:06 -04002903 if (num_heads > 1)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002904 num_bytes += (num_heads - 1) * fs_info->nodesize;
Josef Bacik1be41b72013-06-12 13:56:06 -04002905 num_bytes <<= 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002906 num_bytes += btrfs_csum_bytes_to_leaves(fs_info, csum_bytes) *
2907 fs_info->nodesize;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002908 num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(fs_info,
Josef Bacikcb723e42015-02-18 08:06:57 -08002909 num_dirty_bgs);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002910 global_rsv = &fs_info->global_block_rsv;
Josef Bacik1be41b72013-06-12 13:56:06 -04002911
2912 /*
2913 * If we can't allocate any more chunks lets make sure we have _lots_ of
2914 * wiggle room since running delayed refs can create more delayed refs.
2915 */
Josef Bacikcb723e42015-02-18 08:06:57 -08002916 if (global_rsv->space_info->full) {
2917 num_dirty_bgs_bytes <<= 1;
Josef Bacik1be41b72013-06-12 13:56:06 -04002918 num_bytes <<= 1;
Josef Bacikcb723e42015-02-18 08:06:57 -08002919 }
Josef Bacik1be41b72013-06-12 13:56:06 -04002920
2921 spin_lock(&global_rsv->lock);
Josef Bacikcb723e42015-02-18 08:06:57 -08002922 if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes)
Josef Bacik1be41b72013-06-12 13:56:06 -04002923 ret = 1;
2924 spin_unlock(&global_rsv->lock);
2925 return ret;
2926}
2927
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002928int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002929 struct btrfs_fs_info *fs_info)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002930{
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002931 u64 num_entries =
2932 atomic_read(&trans->transaction->delayed_refs.num_entries);
2933 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002934 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002935
2936 smp_mb();
2937 avg_runtime = fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002938 val = num_entries * avg_runtime;
Wang Xiaoguangdc1a90c2016-10-26 15:23:01 +08002939 if (val >= NSEC_PER_SEC)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002940 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002941 if (val >= NSEC_PER_SEC / 2)
2942 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002943
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002944 return btrfs_check_space_for_delayed_refs(trans, fs_info);
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002945}
2946
Chris Masona79b7d42014-05-22 16:18:52 -07002947struct async_delayed_refs {
2948 struct btrfs_root *root;
Josef Bacik31b96552016-04-11 17:37:40 -04002949 u64 transid;
Chris Masona79b7d42014-05-22 16:18:52 -07002950 int count;
2951 int error;
2952 int sync;
2953 struct completion wait;
2954 struct btrfs_work work;
2955};
2956
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002957static inline struct async_delayed_refs *
2958to_async_delayed_refs(struct btrfs_work *work)
2959{
2960 return container_of(work, struct async_delayed_refs, work);
2961}
2962
Chris Masona79b7d42014-05-22 16:18:52 -07002963static void delayed_ref_async_start(struct btrfs_work *work)
2964{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002965 struct async_delayed_refs *async = to_async_delayed_refs(work);
Chris Masona79b7d42014-05-22 16:18:52 -07002966 struct btrfs_trans_handle *trans;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002967 struct btrfs_fs_info *fs_info = async->root->fs_info;
Chris Masona79b7d42014-05-22 16:18:52 -07002968 int ret;
2969
Chris Mason0f873ec2016-04-27 09:59:38 -04002970 /* if the commit is already started, we don't need to wait here */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002971 if (btrfs_transaction_blocked(fs_info))
Josef Bacik31b96552016-04-11 17:37:40 -04002972 goto done;
Josef Bacik31b96552016-04-11 17:37:40 -04002973
Chris Mason0f873ec2016-04-27 09:59:38 -04002974 trans = btrfs_join_transaction(async->root);
2975 if (IS_ERR(trans)) {
2976 async->error = PTR_ERR(trans);
Chris Masona79b7d42014-05-22 16:18:52 -07002977 goto done;
2978 }
2979
2980 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002981 * trans->sync means that when we call end_transaction, we won't
Chris Masona79b7d42014-05-22 16:18:52 -07002982 * wait on delayed refs
2983 */
2984 trans->sync = true;
Chris Mason0f873ec2016-04-27 09:59:38 -04002985
2986 /* Don't bother flushing if we got into a different transaction */
2987 if (trans->transid > async->transid)
2988 goto end;
2989
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002990 ret = btrfs_run_delayed_refs(trans, fs_info, async->count);
Chris Masona79b7d42014-05-22 16:18:52 -07002991 if (ret)
2992 async->error = ret;
Chris Mason0f873ec2016-04-27 09:59:38 -04002993end:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002994 ret = btrfs_end_transaction(trans);
Chris Masona79b7d42014-05-22 16:18:52 -07002995 if (ret && !async->error)
2996 async->error = ret;
2997done:
2998 if (async->sync)
2999 complete(&async->wait);
3000 else
3001 kfree(async);
3002}
3003
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003004int btrfs_async_run_delayed_refs(struct btrfs_fs_info *fs_info,
Josef Bacik31b96552016-04-11 17:37:40 -04003005 unsigned long count, u64 transid, int wait)
Chris Masona79b7d42014-05-22 16:18:52 -07003006{
3007 struct async_delayed_refs *async;
3008 int ret;
3009
3010 async = kmalloc(sizeof(*async), GFP_NOFS);
3011 if (!async)
3012 return -ENOMEM;
3013
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003014 async->root = fs_info->tree_root;
Chris Masona79b7d42014-05-22 16:18:52 -07003015 async->count = count;
3016 async->error = 0;
Josef Bacik31b96552016-04-11 17:37:40 -04003017 async->transid = transid;
Chris Masona79b7d42014-05-22 16:18:52 -07003018 if (wait)
3019 async->sync = 1;
3020 else
3021 async->sync = 0;
3022 init_completion(&async->wait);
3023
Liu Bo9e0af232014-08-15 23:36:53 +08003024 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
3025 delayed_ref_async_start, NULL, NULL);
Chris Masona79b7d42014-05-22 16:18:52 -07003026
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003027 btrfs_queue_work(fs_info->extent_workers, &async->work);
Chris Masona79b7d42014-05-22 16:18:52 -07003028
3029 if (wait) {
3030 wait_for_completion(&async->wait);
3031 ret = async->error;
3032 kfree(async);
3033 return ret;
3034 }
3035 return 0;
3036}
3037
Chris Masonc3e69d52009-03-13 10:17:05 -04003038/*
3039 * this starts processing the delayed reference count updates and
3040 * extent insertions we have queued up so far. count can be
3041 * 0, which means to process everything in the tree at the start
3042 * of the run (but not newly added entries), or it can be some target
3043 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003044 *
3045 * Returns 0 on success or if called with an aborted transaction
3046 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04003047 */
3048int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003049 struct btrfs_fs_info *fs_info, unsigned long count)
Chris Masonc3e69d52009-03-13 10:17:05 -04003050{
3051 struct rb_node *node;
3052 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08003053 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04003054 int ret;
3055 int run_all = count == (unsigned long)-1;
Filipe Mananad9a05402015-10-03 13:13:13 +01003056 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Chris Masonc3e69d52009-03-13 10:17:05 -04003057
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003058 /* We'll clean this up in btrfs_cleanup_transaction */
3059 if (trans->aborted)
3060 return 0;
3061
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003062 if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags))
Chris Mason511711a2015-12-30 07:52:35 -08003063 return 0;
3064
Chris Masonc3e69d52009-03-13 10:17:05 -04003065 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08003066 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05003067 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05003068
Chris Masonc3e69d52009-03-13 10:17:05 -04003069again:
Arne Jansen709c0482011-09-12 12:22:57 +02003070#ifdef SCRAMBLE_DELAYED_REFS
3071 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
3072#endif
Filipe Mananad9a05402015-10-03 13:13:13 +01003073 trans->can_flush_pending_bgs = false;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003074 ret = __btrfs_run_delayed_refs(trans, fs_info, count);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003075 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003076 btrfs_abort_transaction(trans, ret);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003077 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04003078 }
3079
Chris Mason56bec292009-03-13 10:10:06 -04003080 if (run_all) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05003081 if (!list_empty(&trans->new_bgs))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003082 btrfs_create_pending_block_groups(trans, fs_info);
Josef Bacikea658ba2012-09-11 16:57:25 -04003083
Josef Bacikd7df2c72014-01-23 09:21:38 -05003084 spin_lock(&delayed_refs->lock);
Liu Boc46effa2013-10-14 12:59:45 +08003085 node = rb_first(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003086 if (!node) {
3087 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04003088 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05003089 }
Josef Bacikd2788502017-09-29 15:43:57 -04003090 head = rb_entry(node, struct btrfs_delayed_ref_head,
3091 href_node);
3092 refcount_inc(&head->refs);
Chris Mason56bec292009-03-13 10:10:06 -04003093 spin_unlock(&delayed_refs->lock);
Josef Bacikd2788502017-09-29 15:43:57 -04003094
3095 /* Mutex was contended, block until it's released and retry. */
3096 mutex_lock(&head->mutex);
3097 mutex_unlock(&head->mutex);
3098
3099 btrfs_put_delayed_ref_head(head);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003100 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04003101 goto again;
3102 }
Chris Mason54aa1f42007-06-22 14:16:25 -04003103out:
Filipe Mananad9a05402015-10-03 13:13:13 +01003104 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Chris Masona28ec192007-03-06 20:08:01 -05003105 return 0;
3106}
3107
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003108int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003109 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003110 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04003111 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003112{
3113 struct btrfs_delayed_extent_op *extent_op;
3114 int ret;
3115
Miao Xie78a61842012-11-21 02:21:28 +00003116 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003117 if (!extent_op)
3118 return -ENOMEM;
3119
3120 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01003121 extent_op->update_flags = true;
3122 extent_op->update_key = false;
3123 extent_op->is_data = is_data ? true : false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04003124 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003125
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003126 ret = btrfs_add_delayed_extent_op(fs_info, trans, bytenr,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003127 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003128 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00003129 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003130 return ret;
3131}
3132
Liu Boe4c3b2d2017-01-30 12:25:28 -08003133static noinline int check_delayed_ref(struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003134 struct btrfs_path *path,
3135 u64 objectid, u64 offset, u64 bytenr)
3136{
3137 struct btrfs_delayed_ref_head *head;
3138 struct btrfs_delayed_ref_node *ref;
3139 struct btrfs_delayed_data_ref *data_ref;
3140 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boe4c3b2d2017-01-30 12:25:28 -08003141 struct btrfs_transaction *cur_trans;
Josef Bacik0e0adbc2017-10-19 14:16:00 -04003142 struct rb_node *node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003143 int ret = 0;
3144
Liu Boe4c3b2d2017-01-30 12:25:28 -08003145 cur_trans = root->fs_info->running_transaction;
3146 if (!cur_trans)
3147 return 0;
3148
3149 delayed_refs = &cur_trans->delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003150 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08003151 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003152 if (!head) {
3153 spin_unlock(&delayed_refs->lock);
3154 return 0;
3155 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003156
3157 if (!mutex_trylock(&head->mutex)) {
Josef Bacikd2788502017-09-29 15:43:57 -04003158 refcount_inc(&head->refs);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003159 spin_unlock(&delayed_refs->lock);
3160
David Sterbab3b4aa72011-04-21 01:20:15 +02003161 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003162
David Sterba8cc33e52011-05-02 15:29:25 +02003163 /*
3164 * Mutex was contended, block until it's released and let
3165 * caller try again
3166 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003167 mutex_lock(&head->mutex);
3168 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -04003169 btrfs_put_delayed_ref_head(head);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003170 return -EAGAIN;
3171 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003172 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003173
3174 spin_lock(&head->lock);
Josef Bacik0e0adbc2017-10-19 14:16:00 -04003175 /*
3176 * XXX: We should replace this with a proper search function in the
3177 * future.
3178 */
3179 for (node = rb_first(&head->ref_tree); node; node = rb_next(node)) {
3180 ref = rb_entry(node, struct btrfs_delayed_ref_node, ref_node);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003181 /* If it's a shared ref we know a cross reference exists */
3182 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
3183 ret = 1;
3184 break;
3185 }
3186
3187 data_ref = btrfs_delayed_node_to_data_ref(ref);
3188
3189 /*
3190 * If our ref doesn't match the one we're currently looking at
3191 * then we have a cross reference.
3192 */
3193 if (data_ref->root != root->root_key.objectid ||
3194 data_ref->objectid != objectid ||
3195 data_ref->offset != offset) {
3196 ret = 1;
3197 break;
3198 }
3199 }
3200 spin_unlock(&head->lock);
3201 mutex_unlock(&head->mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003202 return ret;
3203}
3204
Liu Boe4c3b2d2017-01-30 12:25:28 -08003205static noinline int check_committed_ref(struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003206 struct btrfs_path *path,
3207 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05003208{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003209 struct btrfs_fs_info *fs_info = root->fs_info;
3210 struct btrfs_root *extent_root = fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04003211 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003212 struct btrfs_extent_data_ref *ref;
3213 struct btrfs_extent_inline_ref *iref;
3214 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05003215 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003216 u32 item_size;
Liu Bo3de28d52017-08-18 15:15:19 -06003217 int type;
Yan Zhengf321e492008-07-30 09:26:11 -04003218 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05003219
Chris Masonbe20aa92007-12-17 20:14:01 -05003220 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04003221 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04003222 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05003223
Chris Masonbe20aa92007-12-17 20:14:01 -05003224 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3225 if (ret < 0)
3226 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003227 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04003228
3229 ret = -ENOENT;
3230 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04003231 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003232
Zheng Yan31840ae2008-09-23 13:14:14 -04003233 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04003234 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003235 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05003236
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003237 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05003238 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003239
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003240 ret = 1;
3241 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3242#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3243 if (item_size < sizeof(*ei)) {
3244 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
3245 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003246 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003247#endif
3248 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
3249
3250 if (item_size != sizeof(*ei) +
3251 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
3252 goto out;
3253
3254 if (btrfs_extent_generation(leaf, ei) <=
3255 btrfs_root_last_snapshot(&root->root_item))
3256 goto out;
3257
3258 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
Liu Bo3de28d52017-08-18 15:15:19 -06003259
3260 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
3261 if (type != BTRFS_EXTENT_DATA_REF_KEY)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003262 goto out;
3263
3264 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
3265 if (btrfs_extent_refs(leaf, ei) !=
3266 btrfs_extent_data_ref_count(leaf, ref) ||
3267 btrfs_extent_data_ref_root(leaf, ref) !=
3268 root->root_key.objectid ||
3269 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3270 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3271 goto out;
3272
Yan Zhengf321e492008-07-30 09:26:11 -04003273 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003274out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003275 return ret;
3276}
3277
Liu Boe4c3b2d2017-01-30 12:25:28 -08003278int btrfs_cross_ref_exist(struct btrfs_root *root, u64 objectid, u64 offset,
3279 u64 bytenr)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003280{
3281 struct btrfs_path *path;
3282 int ret;
3283 int ret2;
3284
3285 path = btrfs_alloc_path();
3286 if (!path)
3287 return -ENOENT;
3288
3289 do {
Liu Boe4c3b2d2017-01-30 12:25:28 -08003290 ret = check_committed_ref(root, path, objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003291 offset, bytenr);
3292 if (ret && ret != -ENOENT)
3293 goto out;
3294
Liu Boe4c3b2d2017-01-30 12:25:28 -08003295 ret2 = check_delayed_ref(root, path, objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003296 offset, bytenr);
3297 } while (ret2 == -EAGAIN);
3298
3299 if (ret2 && ret2 != -ENOENT) {
3300 ret = ret2;
3301 goto out;
3302 }
3303
3304 if (ret != -ENOENT || ret2 != -ENOENT)
3305 ret = 0;
3306out:
Yan Zhengf321e492008-07-30 09:26:11 -04003307 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003308 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3309 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003310 return ret;
3311}
3312
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003313static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003314 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003315 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003316 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003317{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003318 struct btrfs_fs_info *fs_info = root->fs_info;
Zheng Yan31840ae2008-09-23 13:14:14 -04003319 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003320 u64 num_bytes;
3321 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003322 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003323 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003324 struct btrfs_key key;
3325 struct btrfs_file_extent_item *fi;
3326 int i;
3327 int level;
3328 int ret = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003329 int (*process_func)(struct btrfs_trans_handle *,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04003330 struct btrfs_root *,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003331 u64, u64, u64, u64, u64, u64);
Zheng Yan31840ae2008-09-23 13:14:14 -04003332
David Sterbafccb84c2014-09-29 23:53:21 +02003333
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003334 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003335 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003336
Zheng Yan31840ae2008-09-23 13:14:14 -04003337 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003338 nritems = btrfs_header_nritems(buf);
3339 level = btrfs_header_level(buf);
3340
Miao Xie27cdeb72014-04-02 19:51:05 +08003341 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003342 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003343
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003344 if (inc)
3345 process_func = btrfs_inc_extent_ref;
3346 else
3347 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003348
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003349 if (full_backref)
3350 parent = buf->start;
3351 else
3352 parent = 0;
3353
Zheng Yan31840ae2008-09-23 13:14:14 -04003354 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003355 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003356 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003357 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003358 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003359 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003360 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003361 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003362 BTRFS_FILE_EXTENT_INLINE)
3363 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003364 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3365 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003366 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003367
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003368 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3369 key.offset -= btrfs_file_extent_offset(buf, fi);
Josef Bacik84f7d8e2017-09-29 15:43:49 -04003370 ret = process_func(trans, root, bytenr, num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003371 parent, ref_root, key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003372 key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003373 if (ret)
3374 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003375 } else {
3376 bytenr = btrfs_node_blockptr(buf, i);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003377 num_bytes = fs_info->nodesize;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04003378 ret = process_func(trans, root, bytenr, num_bytes,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003379 parent, ref_root, level - 1, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003380 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003381 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003382 }
3383 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003384 return 0;
3385fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003386 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003387}
3388
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003389int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003390 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003391{
Josef Bacike339a6b2014-07-02 10:54:25 -07003392 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003393}
Zheng Yan31840ae2008-09-23 13:14:14 -04003394
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003395int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003396 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003397{
Josef Bacike339a6b2014-07-02 10:54:25 -07003398 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003399}
3400
Chris Mason9078a3e2007-04-26 16:46:15 -04003401static int write_one_cache_group(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003402 struct btrfs_fs_info *fs_info,
Chris Mason9078a3e2007-04-26 16:46:15 -04003403 struct btrfs_path *path,
3404 struct btrfs_block_group_cache *cache)
3405{
3406 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003407 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003408 unsigned long bi;
3409 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003410
Chris Mason9078a3e2007-04-26 16:46:15 -04003411 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003412 if (ret) {
3413 if (ret > 0)
3414 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003415 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003416 }
Chris Mason5f39d392007-10-15 16:14:19 -04003417
3418 leaf = path->nodes[0];
3419 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3420 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3421 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003422fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003423 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003424 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003425
3426}
3427
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003428static struct btrfs_block_group_cache *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003429next_block_group(struct btrfs_fs_info *fs_info,
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003430 struct btrfs_block_group_cache *cache)
3431{
3432 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003433
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003434 spin_lock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003435
3436 /* If our block group was removed, we need a full search. */
3437 if (RB_EMPTY_NODE(&cache->cache_node)) {
3438 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3439
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003440 spin_unlock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003441 btrfs_put_block_group(cache);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003442 cache = btrfs_lookup_first_block_group(fs_info, next_bytenr); return cache;
Filipe Manana292cbd52014-11-26 15:28:50 +00003443 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003444 node = rb_next(&cache->cache_node);
3445 btrfs_put_block_group(cache);
3446 if (node) {
3447 cache = rb_entry(node, struct btrfs_block_group_cache,
3448 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003449 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003450 } else
3451 cache = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003452 spin_unlock(&fs_info->block_group_cache_lock);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003453 return cache;
3454}
3455
Josef Bacik0af3d002010-06-21 14:48:16 -04003456static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3457 struct btrfs_trans_handle *trans,
3458 struct btrfs_path *path)
3459{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003460 struct btrfs_fs_info *fs_info = block_group->fs_info;
3461 struct btrfs_root *root = fs_info->tree_root;
Josef Bacik0af3d002010-06-21 14:48:16 -04003462 struct inode *inode = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003463 struct extent_changeset *data_reserved = NULL;
Josef Bacik0af3d002010-06-21 14:48:16 -04003464 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003465 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003466 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003467 int retries = 0;
3468 int ret = 0;
3469
3470 /*
3471 * If this block group is smaller than 100 megs don't bother caching the
3472 * block group.
3473 */
Byongho Leeee221842015-12-15 01:42:10 +09003474 if (block_group->key.offset < (100 * SZ_1M)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003475 spin_lock(&block_group->lock);
3476 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3477 spin_unlock(&block_group->lock);
3478 return 0;
3479 }
3480
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003481 if (trans->aborted)
3482 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003483again:
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003484 inode = lookup_free_space_inode(fs_info, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003485 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3486 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003487 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003488 goto out;
3489 }
3490
3491 if (IS_ERR(inode)) {
3492 BUG_ON(retries);
3493 retries++;
3494
3495 if (block_group->ro)
3496 goto out_free;
3497
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003498 ret = create_free_space_inode(fs_info, trans, block_group,
3499 path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003500 if (ret)
3501 goto out_free;
3502 goto again;
3503 }
3504
3505 /*
3506 * We want to set the generation to 0, that way if anything goes wrong
3507 * from here on out we know not to trust this cache when we load up next
3508 * time.
3509 */
3510 BTRFS_I(inode)->generation = 0;
3511 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003512 if (ret) {
3513 /*
3514 * So theoretically we could recover from this, simply set the
3515 * super cache generation to 0 so we know to invalidate the
3516 * cache, but then we'd have to keep track of the block groups
3517 * that fail this way so we know we _have_ to reset this cache
3518 * before the next commit or risk reading stale cache. So to
3519 * limit our exposure to horrible edge cases lets just abort the
3520 * transaction, this only happens in really bad situations
3521 * anyway.
3522 */
Jeff Mahoney66642832016-06-10 18:19:25 -04003523 btrfs_abort_transaction(trans, ret);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003524 goto out_put;
3525 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003526 WARN_ON(ret);
3527
Josef Bacik8e138e02017-11-17 14:50:46 -05003528 /* We've already setup this transaction, go ahead and exit */
3529 if (block_group->cache_generation == trans->transid &&
3530 i_size_read(inode)) {
3531 dcs = BTRFS_DC_SETUP;
3532 goto out_put;
3533 }
3534
Josef Bacik0af3d002010-06-21 14:48:16 -04003535 if (i_size_read(inode) > 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003536 ret = btrfs_check_trunc_cache_free_space(fs_info,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003537 &fs_info->global_block_rsv);
Miao Xie7b61cd92013-05-13 13:55:09 +00003538 if (ret)
3539 goto out_put;
3540
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003541 ret = btrfs_truncate_free_space_cache(trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003542 if (ret)
3543 goto out_put;
3544 }
3545
3546 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003547 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003548 !btrfs_test_opt(fs_info, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003549 /*
3550 * don't bother trying to write stuff out _if_
3551 * a) we're not cached,
Liu Bo1a79c1f2017-03-06 13:49:02 -08003552 * b) we're with nospace_cache mount option,
3553 * c) we're with v2 space_cache (FREE_SPACE_TREE).
Liu Bocf7c1ef2012-07-06 03:31:34 -06003554 */
Josef Bacik2b209822010-12-03 13:17:53 -05003555 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003556 spin_unlock(&block_group->lock);
3557 goto out_put;
3558 }
3559 spin_unlock(&block_group->lock);
3560
Josef Bacik6fc823b2012-08-06 13:46:38 -06003561 /*
Josef Bacik2968b1f2015-10-01 12:55:18 -04003562 * We hit an ENOSPC when setting up the cache in this transaction, just
3563 * skip doing the setup, we've already cleared the cache so we're safe.
3564 */
3565 if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
3566 ret = -ENOSPC;
3567 goto out_put;
3568 }
3569
3570 /*
Josef Bacik6fc823b2012-08-06 13:46:38 -06003571 * Try to preallocate enough space based on how big the block group is.
3572 * Keep in mind this has to include any pinned space which could end up
3573 * taking up quite a bit since it's not folded into the other space
3574 * cache.
3575 */
Byongho Leeee221842015-12-15 01:42:10 +09003576 num_pages = div_u64(block_group->key.offset, SZ_256M);
Josef Bacik0af3d002010-06-21 14:48:16 -04003577 if (!num_pages)
3578 num_pages = 1;
3579
Josef Bacik0af3d002010-06-21 14:48:16 -04003580 num_pages *= 16;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003581 num_pages *= PAGE_SIZE;
Josef Bacik0af3d002010-06-21 14:48:16 -04003582
Qu Wenruo364ecf32017-02-27 15:10:38 +08003583 ret = btrfs_check_data_free_space(inode, &data_reserved, 0, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003584 if (ret)
3585 goto out_put;
3586
3587 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3588 num_pages, num_pages,
3589 &alloc_hint);
Josef Bacik2968b1f2015-10-01 12:55:18 -04003590 /*
3591 * Our cache requires contiguous chunks so that we don't modify a bunch
3592 * of metadata or split extents when writing the cache out, which means
3593 * we can enospc if we are heavily fragmented in addition to just normal
3594 * out of space conditions. So if we hit this just skip setting up any
3595 * other block groups for this transaction, maybe we'll unpin enough
3596 * space the next time around.
3597 */
Josef Bacik2b209822010-12-03 13:17:53 -05003598 if (!ret)
3599 dcs = BTRFS_DC_SETUP;
Josef Bacik2968b1f2015-10-01 12:55:18 -04003600 else if (ret == -ENOSPC)
3601 set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
Josef Bacikc09544e2011-08-30 10:19:10 -04003602
Josef Bacik0af3d002010-06-21 14:48:16 -04003603out_put:
3604 iput(inode);
3605out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003606 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003607out:
3608 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003609 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003610 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003611 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003612 spin_unlock(&block_group->lock);
3613
Qu Wenruo364ecf32017-02-27 15:10:38 +08003614 extent_changeset_free(data_reserved);
Josef Bacik0af3d002010-06-21 14:48:16 -04003615 return ret;
3616}
3617
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003618int btrfs_setup_space_cache(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003619 struct btrfs_fs_info *fs_info)
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003620{
3621 struct btrfs_block_group_cache *cache, *tmp;
3622 struct btrfs_transaction *cur_trans = trans->transaction;
3623 struct btrfs_path *path;
3624
3625 if (list_empty(&cur_trans->dirty_bgs) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003626 !btrfs_test_opt(fs_info, SPACE_CACHE))
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003627 return 0;
3628
3629 path = btrfs_alloc_path();
3630 if (!path)
3631 return -ENOMEM;
3632
3633 /* Could add new block groups, use _safe just in case */
3634 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3635 dirty_list) {
3636 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3637 cache_save_setup(cache, trans, path);
3638 }
3639
3640 btrfs_free_path(path);
3641 return 0;
3642}
3643
Chris Mason1bbc6212015-04-06 12:46:08 -07003644/*
3645 * transaction commit does final block group cache writeback during a
3646 * critical section where nothing is allowed to change the FS. This is
3647 * required in order for the cache to actually match the block group,
3648 * but can introduce a lot of latency into the commit.
3649 *
3650 * So, btrfs_start_dirty_block_groups is here to kick off block group
3651 * cache IO. There's a chance we'll have to redo some of it if the
3652 * block group changes again during the commit, but it greatly reduces
3653 * the commit latency by getting rid of the easy block groups while
3654 * we're still allowing others to join the commit.
3655 */
3656int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003657 struct btrfs_fs_info *fs_info)
Chris Mason1bbc6212015-04-06 12:46:08 -07003658{
3659 struct btrfs_block_group_cache *cache;
3660 struct btrfs_transaction *cur_trans = trans->transaction;
3661 int ret = 0;
3662 int should_put;
3663 struct btrfs_path *path = NULL;
3664 LIST_HEAD(dirty);
3665 struct list_head *io = &cur_trans->io_bgs;
3666 int num_started = 0;
3667 int loops = 0;
3668
3669 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003670 if (list_empty(&cur_trans->dirty_bgs)) {
3671 spin_unlock(&cur_trans->dirty_bgs_lock);
3672 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003673 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003674 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003675 spin_unlock(&cur_trans->dirty_bgs_lock);
3676
3677again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003678 /*
3679 * make sure all the block groups on our dirty list actually
3680 * exist
3681 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003682 btrfs_create_pending_block_groups(trans, fs_info);
Chris Mason1bbc6212015-04-06 12:46:08 -07003683
3684 if (!path) {
3685 path = btrfs_alloc_path();
3686 if (!path)
3687 return -ENOMEM;
3688 }
3689
Filipe Mananab58d1a92015-04-25 18:29:16 +01003690 /*
3691 * cache_write_mutex is here only to save us from balance or automatic
3692 * removal of empty block groups deleting this block group while we are
3693 * writing out the cache
3694 */
3695 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003696 while (!list_empty(&dirty)) {
3697 cache = list_first_entry(&dirty,
3698 struct btrfs_block_group_cache,
3699 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003700 /*
3701 * this can happen if something re-dirties a block
3702 * group that is already under IO. Just wait for it to
3703 * finish and then do it all again
3704 */
3705 if (!list_empty(&cache->io_list)) {
3706 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003707 btrfs_wait_cache_io(trans, cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003708 btrfs_put_block_group(cache);
3709 }
3710
3711
3712 /*
3713 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3714 * if it should update the cache_state. Don't delete
3715 * until after we wait.
3716 *
3717 * Since we're not running in the commit critical section
3718 * we need the dirty_bgs_lock to protect from update_block_group
3719 */
3720 spin_lock(&cur_trans->dirty_bgs_lock);
3721 list_del_init(&cache->dirty_list);
3722 spin_unlock(&cur_trans->dirty_bgs_lock);
3723
3724 should_put = 1;
3725
3726 cache_save_setup(cache, trans, path);
3727
3728 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3729 cache->io_ctl.inode = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003730 ret = btrfs_write_out_cache(fs_info, trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003731 cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003732 if (ret == 0 && cache->io_ctl.inode) {
3733 num_started++;
3734 should_put = 0;
3735
3736 /*
3737 * the cache_write_mutex is protecting
3738 * the io_list
3739 */
3740 list_add_tail(&cache->io_list, io);
3741 } else {
3742 /*
3743 * if we failed to write the cache, the
3744 * generation will be bad and life goes on
3745 */
3746 ret = 0;
3747 }
3748 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003749 if (!ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003750 ret = write_one_cache_group(trans, fs_info,
3751 path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003752 /*
3753 * Our block group might still be attached to the list
3754 * of new block groups in the transaction handle of some
3755 * other task (struct btrfs_trans_handle->new_bgs). This
3756 * means its block group item isn't yet in the extent
3757 * tree. If this happens ignore the error, as we will
3758 * try again later in the critical section of the
3759 * transaction commit.
3760 */
3761 if (ret == -ENOENT) {
3762 ret = 0;
3763 spin_lock(&cur_trans->dirty_bgs_lock);
3764 if (list_empty(&cache->dirty_list)) {
3765 list_add_tail(&cache->dirty_list,
3766 &cur_trans->dirty_bgs);
3767 btrfs_get_block_group(cache);
3768 }
3769 spin_unlock(&cur_trans->dirty_bgs_lock);
3770 } else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003771 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003772 }
3773 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003774
3775 /* if its not on the io list, we need to put the block group */
3776 if (should_put)
3777 btrfs_put_block_group(cache);
3778
3779 if (ret)
3780 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003781
3782 /*
3783 * Avoid blocking other tasks for too long. It might even save
3784 * us from writing caches for block groups that are going to be
3785 * removed.
3786 */
3787 mutex_unlock(&trans->transaction->cache_write_mutex);
3788 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003789 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003790 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003791
3792 /*
3793 * go through delayed refs for all the stuff we've just kicked off
3794 * and then loop back (just once)
3795 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003796 ret = btrfs_run_delayed_refs(trans, fs_info, 0);
Chris Mason1bbc6212015-04-06 12:46:08 -07003797 if (!ret && loops == 0) {
3798 loops++;
3799 spin_lock(&cur_trans->dirty_bgs_lock);
3800 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003801 /*
3802 * dirty_bgs_lock protects us from concurrent block group
3803 * deletes too (not just cache_write_mutex).
3804 */
3805 if (!list_empty(&dirty)) {
3806 spin_unlock(&cur_trans->dirty_bgs_lock);
3807 goto again;
3808 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003809 spin_unlock(&cur_trans->dirty_bgs_lock);
Liu Boc79a1752016-07-20 17:44:12 -07003810 } else if (ret < 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003811 btrfs_cleanup_dirty_bgs(cur_trans, fs_info);
Chris Mason1bbc6212015-04-06 12:46:08 -07003812 }
3813
3814 btrfs_free_path(path);
3815 return ret;
3816}
3817
Chris Mason96b51792007-10-15 16:15:19 -04003818int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003819 struct btrfs_fs_info *fs_info)
Chris Mason9078a3e2007-04-26 16:46:15 -04003820{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003821 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003822 struct btrfs_transaction *cur_trans = trans->transaction;
3823 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003824 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003825 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003826 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003827 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003828
3829 path = btrfs_alloc_path();
3830 if (!path)
3831 return -ENOMEM;
3832
Josef Bacikce93ec52014-11-17 15:45:48 -05003833 /*
Filipe Mananae44081e2015-12-18 03:02:48 +00003834 * Even though we are in the critical section of the transaction commit,
3835 * we can still have concurrent tasks adding elements to this
3836 * transaction's list of dirty block groups. These tasks correspond to
3837 * endio free space workers started when writeback finishes for a
3838 * space cache, which run inode.c:btrfs_finish_ordered_io(), and can
3839 * allocate new block groups as a result of COWing nodes of the root
3840 * tree when updating the free space inode. The writeback for the space
3841 * caches is triggered by an earlier call to
3842 * btrfs_start_dirty_block_groups() and iterations of the following
3843 * loop.
3844 * Also we want to do the cache_save_setup first and then run the
Josef Bacikce93ec52014-11-17 15:45:48 -05003845 * delayed refs to make sure we have the best chance at doing this all
3846 * in one shot.
3847 */
Filipe Mananae44081e2015-12-18 03:02:48 +00003848 spin_lock(&cur_trans->dirty_bgs_lock);
Josef Bacikce93ec52014-11-17 15:45:48 -05003849 while (!list_empty(&cur_trans->dirty_bgs)) {
3850 cache = list_first_entry(&cur_trans->dirty_bgs,
3851 struct btrfs_block_group_cache,
3852 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003853
3854 /*
3855 * this can happen if cache_save_setup re-dirties a block
3856 * group that is already under IO. Just wait for it to
3857 * finish and then do it all again
3858 */
3859 if (!list_empty(&cache->io_list)) {
Filipe Mananae44081e2015-12-18 03:02:48 +00003860 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003861 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003862 btrfs_wait_cache_io(trans, cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003863 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003864 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003865 }
3866
Chris Mason1bbc6212015-04-06 12:46:08 -07003867 /*
3868 * don't remove from the dirty list until after we've waited
3869 * on any pending IO
3870 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003871 list_del_init(&cache->dirty_list);
Filipe Mananae44081e2015-12-18 03:02:48 +00003872 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003873 should_put = 1;
3874
Chris Mason1bbc6212015-04-06 12:46:08 -07003875 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003876
Josef Bacikce93ec52014-11-17 15:45:48 -05003877 if (!ret)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003878 ret = btrfs_run_delayed_refs(trans, fs_info,
3879 (unsigned long) -1);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003880
3881 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3882 cache->io_ctl.inode = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003883 ret = btrfs_write_out_cache(fs_info, trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003884 cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003885 if (ret == 0 && cache->io_ctl.inode) {
3886 num_started++;
3887 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003888 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003889 } else {
3890 /*
3891 * if we failed to write the cache, the
3892 * generation will be bad and life goes on
3893 */
3894 ret = 0;
3895 }
3896 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003897 if (!ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003898 ret = write_one_cache_group(trans, fs_info,
3899 path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003900 /*
3901 * One of the free space endio workers might have
3902 * created a new block group while updating a free space
3903 * cache's inode (at inode.c:btrfs_finish_ordered_io())
3904 * and hasn't released its transaction handle yet, in
3905 * which case the new block group is still attached to
3906 * its transaction handle and its creation has not
3907 * finished yet (no block group item in the extent tree
3908 * yet, etc). If this is the case, wait for all free
3909 * space endio workers to finish and retry. This is a
3910 * a very rare case so no need for a more efficient and
3911 * complex approach.
3912 */
3913 if (ret == -ENOENT) {
3914 wait_event(cur_trans->writer_wait,
3915 atomic_read(&cur_trans->num_writers) == 1);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003916 ret = write_one_cache_group(trans, fs_info,
3917 path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003918 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003919 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003920 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003921 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003922
3923 /* if its not on the io list, we need to put the block group */
3924 if (should_put)
3925 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003926 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003927 }
Filipe Mananae44081e2015-12-18 03:02:48 +00003928 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003929
Chris Mason1bbc6212015-04-06 12:46:08 -07003930 while (!list_empty(io)) {
3931 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003932 io_list);
3933 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003934 btrfs_wait_cache_io(trans, cache, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003935 btrfs_put_block_group(cache);
3936 }
3937
Chris Mason9078a3e2007-04-26 16:46:15 -04003938 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003939 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003940}
3941
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003942int btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr)
Yan Zhengd2fb3432008-12-11 16:30:39 -05003943{
3944 struct btrfs_block_group_cache *block_group;
3945 int readonly = 0;
3946
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003947 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003948 if (!block_group || block_group->ro)
3949 readonly = 1;
3950 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003951 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003952 return readonly;
3953}
3954
Filipe Mananaf78c4362016-05-09 13:15:41 +01003955bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3956{
3957 struct btrfs_block_group_cache *bg;
3958 bool ret = true;
3959
3960 bg = btrfs_lookup_block_group(fs_info, bytenr);
3961 if (!bg)
3962 return false;
3963
3964 spin_lock(&bg->lock);
3965 if (bg->ro)
3966 ret = false;
3967 else
3968 atomic_inc(&bg->nocow_writers);
3969 spin_unlock(&bg->lock);
3970
3971 /* no put on block group, done by btrfs_dec_nocow_writers */
3972 if (!ret)
3973 btrfs_put_block_group(bg);
3974
3975 return ret;
3976
3977}
3978
3979void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3980{
3981 struct btrfs_block_group_cache *bg;
3982
3983 bg = btrfs_lookup_block_group(fs_info, bytenr);
3984 ASSERT(bg);
3985 if (atomic_dec_and_test(&bg->nocow_writers))
3986 wake_up_atomic_t(&bg->nocow_writers);
3987 /*
3988 * Once for our lookup and once for the lookup done by a previous call
3989 * to btrfs_inc_nocow_writers()
3990 */
3991 btrfs_put_block_group(bg);
3992 btrfs_put_block_group(bg);
3993}
3994
Filipe Mananaf78c4362016-05-09 13:15:41 +01003995void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg)
3996{
David Howells5e4def22017-11-02 15:27:44 +00003997 wait_on_atomic_t(&bg->nocow_writers, atomic_t_wait,
Filipe Mananaf78c4362016-05-09 13:15:41 +01003998 TASK_UNINTERRUPTIBLE);
3999}
4000
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04004001static const char *alloc_name(u64 flags)
4002{
4003 switch (flags) {
4004 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
4005 return "mixed";
4006 case BTRFS_BLOCK_GROUP_METADATA:
4007 return "metadata";
4008 case BTRFS_BLOCK_GROUP_DATA:
4009 return "data";
4010 case BTRFS_BLOCK_GROUP_SYSTEM:
4011 return "system";
4012 default:
4013 WARN_ON(1);
4014 return "invalid-combination";
4015 };
4016}
4017
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03004018static int create_space_info(struct btrfs_fs_info *info, u64 flags,
4019 struct btrfs_space_info **new)
4020{
4021
4022 struct btrfs_space_info *space_info;
4023 int i;
4024 int ret;
4025
4026 space_info = kzalloc(sizeof(*space_info), GFP_NOFS);
4027 if (!space_info)
4028 return -ENOMEM;
4029
4030 ret = percpu_counter_init(&space_info->total_bytes_pinned, 0,
4031 GFP_KERNEL);
4032 if (ret) {
4033 kfree(space_info);
4034 return ret;
4035 }
4036
4037 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
4038 INIT_LIST_HEAD(&space_info->block_groups[i]);
4039 init_rwsem(&space_info->groups_sem);
4040 spin_lock_init(&space_info->lock);
4041 space_info->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
4042 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
4043 init_waitqueue_head(&space_info->wait);
4044 INIT_LIST_HEAD(&space_info->ro_bgs);
4045 INIT_LIST_HEAD(&space_info->tickets);
4046 INIT_LIST_HEAD(&space_info->priority_tickets);
4047
4048 ret = kobject_init_and_add(&space_info->kobj, &space_info_ktype,
4049 info->space_info_kobj, "%s",
4050 alloc_name(space_info->flags));
4051 if (ret) {
4052 percpu_counter_destroy(&space_info->total_bytes_pinned);
4053 kfree(space_info);
4054 return ret;
4055 }
4056
4057 *new = space_info;
4058 list_add_rcu(&space_info->list, &info->space_info);
4059 if (flags & BTRFS_BLOCK_GROUP_DATA)
4060 info->data_sinfo = space_info;
4061
4062 return ret;
4063}
4064
Nikolay Borisovd2006e6d2017-05-22 09:35:50 +03004065static void update_space_info(struct btrfs_fs_info *info, u64 flags,
Chris Mason593060d2008-03-25 16:50:33 -04004066 u64 total_bytes, u64 bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -04004067 u64 bytes_readonly,
Chris Mason593060d2008-03-25 16:50:33 -04004068 struct btrfs_space_info **space_info)
4069{
4070 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004071 int factor;
4072
4073 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
4074 BTRFS_BLOCK_GROUP_RAID10))
4075 factor = 2;
4076 else
4077 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04004078
4079 found = __find_space_info(info, flags);
Nikolay Borisovd2006e6d2017-05-22 09:35:50 +03004080 ASSERT(found);
4081 spin_lock(&found->lock);
4082 found->total_bytes += total_bytes;
4083 found->disk_total += total_bytes * factor;
4084 found->bytes_used += bytes_used;
4085 found->disk_used += bytes_used * factor;
4086 found->bytes_readonly += bytes_readonly;
4087 if (total_bytes > 0)
4088 found->full = 0;
4089 space_info_add_new_bytes(info, found, total_bytes -
4090 bytes_used - bytes_readonly);
4091 spin_unlock(&found->lock);
4092 *space_info = found;
Chris Mason593060d2008-03-25 16:50:33 -04004093}
4094
Chris Mason8790d502008-04-03 16:29:03 -04004095static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
4096{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03004097 u64 extra_flags = chunk_to_extended(flags) &
4098 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004099
Miao Xiede98ced2013-01-29 10:13:12 +00004100 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004101 if (flags & BTRFS_BLOCK_GROUP_DATA)
4102 fs_info->avail_data_alloc_bits |= extra_flags;
4103 if (flags & BTRFS_BLOCK_GROUP_METADATA)
4104 fs_info->avail_metadata_alloc_bits |= extra_flags;
4105 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
4106 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004107 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04004108}
Chris Mason593060d2008-03-25 16:50:33 -04004109
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004110/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004111 * returns target flags in extended format or 0 if restripe for this
4112 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04004113 *
4114 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004115 */
4116static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
4117{
4118 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4119 u64 target = 0;
4120
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004121 if (!bctl)
4122 return 0;
4123
4124 if (flags & BTRFS_BLOCK_GROUP_DATA &&
4125 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4126 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
4127 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
4128 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4129 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
4130 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
4131 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4132 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
4133 }
4134
4135 return target;
4136}
4137
4138/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004139 * @flags: available profiles in extended format (see ctree.h)
4140 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004141 * Returns reduced profile in chunk format. If profile changing is in
4142 * progress (either running or paused) picks the target profile (if it's
4143 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004144 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004145static u64 btrfs_reduce_alloc_profile(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04004146{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004147 u64 num_devices = fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004148 u64 target;
Zhao Lei9c170b22015-09-15 21:08:08 +08004149 u64 raid_type;
4150 u64 allowed = 0;
Chris Masona061fc82008-05-07 11:43:44 -04004151
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004152 /*
4153 * see if restripe for this chunk_type is in progress, if so
4154 * try to reduce to the target profile
4155 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004156 spin_lock(&fs_info->balance_lock);
4157 target = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004158 if (target) {
4159 /* pick target profile only if it's already available */
4160 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004161 spin_unlock(&fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004162 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004163 }
4164 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004165 spin_unlock(&fs_info->balance_lock);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004166
David Woodhouse53b381b2013-01-29 18:40:14 -05004167 /* First, mask out the RAID levels which aren't possible */
Zhao Lei9c170b22015-09-15 21:08:08 +08004168 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
4169 if (num_devices >= btrfs_raid_array[raid_type].devs_min)
4170 allowed |= btrfs_raid_group[raid_type];
4171 }
4172 allowed &= flags;
Chris Masona061fc82008-05-07 11:43:44 -04004173
Zhao Lei9c170b22015-09-15 21:08:08 +08004174 if (allowed & BTRFS_BLOCK_GROUP_RAID6)
4175 allowed = BTRFS_BLOCK_GROUP_RAID6;
4176 else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
4177 allowed = BTRFS_BLOCK_GROUP_RAID5;
4178 else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
4179 allowed = BTRFS_BLOCK_GROUP_RAID10;
4180 else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
4181 allowed = BTRFS_BLOCK_GROUP_RAID1;
4182 else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
4183 allowed = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04004184
Zhao Lei9c170b22015-09-15 21:08:08 +08004185 flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
Chris Masonec44a352008-04-28 15:29:52 -04004186
Zhao Lei9c170b22015-09-15 21:08:08 +08004187 return extended_to_chunk(flags | allowed);
Chris Masonec44a352008-04-28 15:29:52 -04004188}
4189
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004190static u64 get_alloc_profile(struct btrfs_fs_info *fs_info, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05004191{
Miao Xiede98ced2013-01-29 10:13:12 +00004192 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004193 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004194
4195 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004196 flags = orig_flags;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004197 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00004198
4199 if (flags & BTRFS_BLOCK_GROUP_DATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004200 flags |= fs_info->avail_data_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004201 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004202 flags |= fs_info->avail_system_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004203 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004204 flags |= fs_info->avail_metadata_alloc_bits;
4205 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02004206
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004207 return btrfs_reduce_alloc_profile(fs_info, flags);
Yan, Zhengb742bb82010-05-16 10:46:24 -04004208}
Josef Bacik6a632092009-02-20 11:00:09 -05004209
Jeff Mahoney1b868262017-05-17 11:38:35 -04004210static u64 get_alloc_profile_by_root(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04004211{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004212 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004213 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05004214 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004215
Yan, Zhengb742bb82010-05-16 10:46:24 -04004216 if (data)
4217 flags = BTRFS_BLOCK_GROUP_DATA;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004218 else if (root == fs_info->chunk_root)
Yan, Zhengb742bb82010-05-16 10:46:24 -04004219 flags = BTRFS_BLOCK_GROUP_SYSTEM;
4220 else
4221 flags = BTRFS_BLOCK_GROUP_METADATA;
4222
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004223 ret = get_alloc_profile(fs_info, flags);
David Woodhouse53b381b2013-01-29 18:40:14 -05004224 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004225}
4226
Jeff Mahoney1b868262017-05-17 11:38:35 -04004227u64 btrfs_data_alloc_profile(struct btrfs_fs_info *fs_info)
4228{
4229 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_DATA);
4230}
4231
4232u64 btrfs_metadata_alloc_profile(struct btrfs_fs_info *fs_info)
4233{
4234 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4235}
4236
4237u64 btrfs_system_alloc_profile(struct btrfs_fs_info *fs_info)
4238{
4239 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4240}
4241
Liu Bo41361352017-02-13 15:42:21 -08004242static u64 btrfs_space_info_used(struct btrfs_space_info *s_info,
4243 bool may_use_included)
4244{
4245 ASSERT(s_info);
4246 return s_info->bytes_used + s_info->bytes_reserved +
4247 s_info->bytes_pinned + s_info->bytes_readonly +
4248 (may_use_included ? s_info->bytes_may_use : 0);
4249}
4250
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004251int btrfs_alloc_data_chunk_ondemand(struct btrfs_inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05004252{
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004253 struct btrfs_root *root = inode->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004254 struct btrfs_fs_info *fs_info = root->fs_info;
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004255 struct btrfs_space_info *data_sinfo = fs_info->data_sinfo;
Josef Bacikab6e24102010-03-19 14:38:13 +00004256 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08004257 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08004258 int need_commit = 2;
4259 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05004260
4261 /* make sure bytes are sectorsize aligned */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004262 bytes = ALIGN(bytes, fs_info->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05004263
Miao Xie9dced182013-10-25 17:33:36 +08004264 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004265 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08004266 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04004267 }
4268
Josef Bacik6a632092009-02-20 11:00:09 -05004269again:
4270 /* make sure we have enough space to handle the data first */
4271 spin_lock(&data_sinfo->lock);
Liu Bo41361352017-02-13 15:42:21 -08004272 used = btrfs_space_info_used(data_sinfo, true);
Josef Bacikab6e24102010-03-19 14:38:13 +00004273
4274 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004275 struct btrfs_trans_handle *trans;
4276
Josef Bacik6a632092009-02-20 11:00:09 -05004277 /*
4278 * if we don't have enough free bytes in this space then we need
4279 * to alloc a new chunk.
4280 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08004281 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05004282 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05004283
Chris Mason0e4f8f82011-04-15 16:05:44 -04004284 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05004285 spin_unlock(&data_sinfo->lock);
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004286
Jeff Mahoney1b868262017-05-17 11:38:35 -04004287 alloc_target = btrfs_data_alloc_profile(fs_info);
Miao Xie9dced182013-10-25 17:33:36 +08004288 /*
4289 * It is ugly that we don't call nolock join
4290 * transaction for the free space inode case here.
4291 * But it is safe because we only do the data space
4292 * reservation for the free space cache in the
4293 * transaction context, the common join transaction
4294 * just increase the counter of the current transaction
4295 * handler, doesn't try to acquire the trans_lock of
4296 * the fs.
4297 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004298 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004299 if (IS_ERR(trans))
4300 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05004301
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004302 ret = do_chunk_alloc(trans, fs_info, alloc_target,
Chris Mason0e4f8f82011-04-15 16:05:44 -04004303 CHUNK_ALLOC_NO_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004304 btrfs_end_transaction(trans);
Miao Xied52a5b52011-01-05 10:07:18 +00004305 if (ret < 0) {
4306 if (ret != -ENOSPC)
4307 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08004308 else {
4309 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00004310 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08004311 }
Miao Xied52a5b52011-01-05 10:07:18 +00004312 }
Chris Mason33b4d472009-09-22 14:45:50 -04004313
Josef Bacik6a632092009-02-20 11:00:09 -05004314 goto again;
4315 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004316
4317 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04004318 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08004319 * allocation, and no removed chunk in current transaction,
4320 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004321 */
Zhao Leic99f1b02015-03-02 19:32:20 +08004322 have_pinned_space = percpu_counter_compare(
4323 &data_sinfo->total_bytes_pinned,
4324 used + bytes - data_sinfo->total_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05004325 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004326
4327 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00004328commit_trans:
Zhao Leic99f1b02015-03-02 19:32:20 +08004329 if (need_commit &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004330 !atomic_read(&fs_info->open_ioctl_trans)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004331 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04004332
Zhao Leie1746e82015-12-01 18:39:40 +08004333 if (need_commit > 0) {
4334 btrfs_start_delalloc_roots(fs_info, 0, -1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004335 btrfs_wait_ordered_roots(fs_info, U64_MAX, 0,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004336 (u64)-1);
Zhao Leie1746e82015-12-01 18:39:40 +08004337 }
Zhao Lei9a4e7272015-04-09 12:34:43 +08004338
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004339 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004340 if (IS_ERR(trans))
4341 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08004342 if (have_pinned_space >= 0 ||
Josef Bacik3204d332015-09-24 10:46:10 -04004343 test_bit(BTRFS_TRANS_HAVE_FREE_BGS,
4344 &trans->transaction->flags) ||
Zhao Leic99f1b02015-03-02 19:32:20 +08004345 need_commit > 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004346 ret = btrfs_commit_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004347 if (ret)
4348 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08004349 /*
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004350 * The cleaner kthread might still be doing iput
4351 * operations. Wait for it to finish so that
4352 * more space is released.
Zhao Leid7c15172015-02-26 10:49:20 +08004353 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004354 mutex_lock(&fs_info->cleaner_delayed_iput_mutex);
4355 mutex_unlock(&fs_info->cleaner_delayed_iput_mutex);
Zhao Lei94b947b2015-02-14 13:23:45 +08004356 goto again;
4357 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004358 btrfs_end_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004359 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004360 }
4361
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004362 trace_btrfs_space_reservation(fs_info,
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004363 "space_info:enospc",
4364 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004365 return -ENOSPC;
4366 }
4367 data_sinfo->bytes_may_use += bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004368 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004369 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004370 spin_unlock(&data_sinfo->lock);
4371
Dongsheng Yang237c0e92014-12-29 06:23:05 -05004372 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004373}
4374
Qu Wenruo364ecf32017-02-27 15:10:38 +08004375int btrfs_check_data_free_space(struct inode *inode,
4376 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004377{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004378 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004379 int ret;
4380
4381 /* align the range */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004382 len = round_up(start + len, fs_info->sectorsize) -
4383 round_down(start, fs_info->sectorsize);
4384 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004385
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004386 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode), len);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004387 if (ret < 0)
4388 return ret;
4389
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004390 /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */
Qu Wenruo364ecf32017-02-27 15:10:38 +08004391 ret = btrfs_qgroup_reserve_data(inode, reserved, start, len);
Qu Wenruo7bc329c2017-02-27 15:10:36 +08004392 if (ret < 0)
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004393 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruo364ecf32017-02-27 15:10:38 +08004394 else
4395 ret = 0;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004396 return ret;
4397}
4398
4399/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004400 * Called if we need to clear a data reservation for this inode
4401 * Normally in a error case.
4402 *
Qu Wenruo51773be2015-10-08 18:19:37 +08004403 * This one will *NOT* use accurate qgroup reserved space API, just for case
4404 * which we can't sleep and is sure it won't affect qgroup reserved space.
4405 * Like clear_bit_hook().
Qu Wenruo4ceff072015-09-08 17:22:42 +08004406 */
Qu Wenruo51773be2015-10-08 18:19:37 +08004407void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start,
4408 u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004409{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004410 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004411 struct btrfs_space_info *data_sinfo;
4412
4413 /* Make sure the range is aligned to sectorsize */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004414 len = round_up(start + len, fs_info->sectorsize) -
4415 round_down(start, fs_info->sectorsize);
4416 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004417
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004418 data_sinfo = fs_info->data_sinfo;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004419 spin_lock(&data_sinfo->lock);
4420 if (WARN_ON(data_sinfo->bytes_may_use < len))
4421 data_sinfo->bytes_may_use = 0;
4422 else
4423 data_sinfo->bytes_may_use -= len;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004424 trace_btrfs_space_reservation(fs_info, "space_info",
Qu Wenruo4ceff072015-09-08 17:22:42 +08004425 data_sinfo->flags, len, 0);
4426 spin_unlock(&data_sinfo->lock);
4427}
4428
Qu Wenruo51773be2015-10-08 18:19:37 +08004429/*
4430 * Called if we need to clear a data reservation for this inode
4431 * Normally in a error case.
4432 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04004433 * This one will handle the per-inode data rsv map for accurate reserved
Qu Wenruo51773be2015-10-08 18:19:37 +08004434 * space framework.
4435 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08004436void btrfs_free_reserved_data_space(struct inode *inode,
4437 struct extent_changeset *reserved, u64 start, u64 len)
Qu Wenruo51773be2015-10-08 18:19:37 +08004438{
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004439 struct btrfs_root *root = BTRFS_I(inode)->root;
4440
4441 /* Make sure the range is aligned to sectorsize */
Jeff Mahoneyda170662016-06-15 09:22:56 -04004442 len = round_up(start + len, root->fs_info->sectorsize) -
4443 round_down(start, root->fs_info->sectorsize);
4444 start = round_down(start, root->fs_info->sectorsize);
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004445
Qu Wenruo51773be2015-10-08 18:19:37 +08004446 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruobc42bda2017-02-27 15:10:39 +08004447 btrfs_qgroup_free_data(inode, reserved, start, len);
Qu Wenruo51773be2015-10-08 18:19:37 +08004448}
4449
Josef Bacik97e728d2009-04-21 17:40:57 -04004450static void force_metadata_allocation(struct btrfs_fs_info *info)
4451{
4452 struct list_head *head = &info->space_info;
4453 struct btrfs_space_info *found;
4454
4455 rcu_read_lock();
4456 list_for_each_entry_rcu(found, head, list) {
4457 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004458 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04004459 }
4460 rcu_read_unlock();
4461}
4462
Miao Xie3c76cd82013-04-25 10:12:38 +00004463static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4464{
4465 return (global->size << 1);
4466}
4467
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004468static int should_alloc_chunk(struct btrfs_fs_info *fs_info,
Josef Bacik698d0082012-09-12 14:08:47 -04004469 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004470{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004471 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004472 u64 bytes_used = btrfs_space_info_used(sinfo, false);
Chris Masone5bc2452010-10-26 13:37:56 -04004473 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004474
Chris Mason0e4f8f82011-04-15 16:05:44 -04004475 if (force == CHUNK_ALLOC_FORCE)
4476 return 1;
4477
4478 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04004479 * We need to take into account the global rsv because for all intents
4480 * and purposes it's used space. Don't worry about locking the
4481 * global_rsv, it doesn't change except when the transaction commits.
4482 */
Josef Bacik54338b52012-08-14 16:20:52 -04004483 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004484 bytes_used += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04004485
4486 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04004487 * in limited mode, we want to have some free space up to
4488 * about 1% of the FS size.
4489 */
4490 if (force == CHUNK_ALLOC_LIMITED) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004491 thresh = btrfs_super_total_bytes(fs_info->super_copy);
Byongho Leeee221842015-12-15 01:42:10 +09004492 thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
Chris Mason0e4f8f82011-04-15 16:05:44 -04004493
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004494 if (sinfo->total_bytes - bytes_used < thresh)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004495 return 1;
4496 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004497
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004498 if (bytes_used + SZ_2M < div_factor(sinfo->total_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004499 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004500 return 1;
4501}
4502
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004503static u64 get_profile_num_devs(struct btrfs_fs_info *fs_info, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004504{
4505 u64 num_dev;
4506
David Woodhouse53b381b2013-01-29 18:40:14 -05004507 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
4508 BTRFS_BLOCK_GROUP_RAID0 |
4509 BTRFS_BLOCK_GROUP_RAID5 |
4510 BTRFS_BLOCK_GROUP_RAID6))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004511 num_dev = fs_info->fs_devices->rw_devices;
Liu Bo15d1ff82012-03-29 09:57:44 -04004512 else if (type & BTRFS_BLOCK_GROUP_RAID1)
4513 num_dev = 2;
4514 else
4515 num_dev = 1; /* DUP or single */
4516
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004517 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004518}
4519
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004520/*
4521 * If @is_allocation is true, reserve space in the system space info necessary
4522 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4523 * removing a chunk.
4524 */
4525void check_system_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004526 struct btrfs_fs_info *fs_info, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004527{
4528 struct btrfs_space_info *info;
4529 u64 left;
4530 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004531 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004532 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004533
4534 /*
4535 * Needed because we can end up allocating a system chunk and for an
4536 * atomic and race free space reservation in the chunk block reserve.
4537 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004538 ASSERT(mutex_is_locked(&fs_info->chunk_mutex));
Liu Bo15d1ff82012-03-29 09:57:44 -04004539
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004540 info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
Liu Bo15d1ff82012-03-29 09:57:44 -04004541 spin_lock(&info->lock);
Liu Bo41361352017-02-13 15:42:21 -08004542 left = info->total_bytes - btrfs_space_info_used(info, true);
Liu Bo15d1ff82012-03-29 09:57:44 -04004543 spin_unlock(&info->lock);
4544
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004545 num_devs = get_profile_num_devs(fs_info, type);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004546
4547 /* num_devs device items to update and 1 chunk item to add or remove */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004548 thresh = btrfs_calc_trunc_metadata_size(fs_info, num_devs) +
4549 btrfs_calc_trans_metadata_size(fs_info, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004550
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004551 if (left < thresh && btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
4552 btrfs_info(fs_info, "left=%llu, need=%llu, flags=%llu",
4553 left, thresh, type);
4554 dump_space_info(fs_info, info, 0, 0);
Liu Bo15d1ff82012-03-29 09:57:44 -04004555 }
4556
4557 if (left < thresh) {
Jeff Mahoney1b868262017-05-17 11:38:35 -04004558 u64 flags = btrfs_system_alloc_profile(fs_info);
Liu Bo15d1ff82012-03-29 09:57:44 -04004559
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004560 /*
4561 * Ignore failure to create system chunk. We might end up not
4562 * needing it, as we might not need to COW all nodes/leafs from
4563 * the paths we visit in the chunk tree (they were already COWed
4564 * or created in the current transaction for example).
4565 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004566 ret = btrfs_alloc_chunk(trans, fs_info, flags);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004567 }
4568
4569 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004570 ret = btrfs_block_rsv_add(fs_info->chunk_root,
4571 &fs_info->chunk_block_rsv,
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004572 thresh, BTRFS_RESERVE_NO_FLUSH);
4573 if (!ret)
4574 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004575 }
4576}
4577
Liu Bo28b737f2016-07-29 11:09:50 -07004578/*
4579 * If force is CHUNK_ALLOC_FORCE:
4580 * - return 1 if it successfully allocates a chunk,
4581 * - return errors including -ENOSPC otherwise.
4582 * If force is NOT CHUNK_ALLOC_FORCE:
4583 * - return 0 if it doesn't need to allocate a new chunk,
4584 * - return 1 if it successfully allocates a chunk,
4585 * - return errors including -ENOSPC otherwise.
4586 */
Chris Mason6324fbf2008-03-24 15:01:59 -04004587static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004588 struct btrfs_fs_info *fs_info, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004589{
4590 struct btrfs_space_info *space_info;
Josef Bacik6d741192011-04-11 20:20:11 -04004591 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05004592 int ret = 0;
4593
Josef Bacikc6b305a2012-12-18 09:16:16 -05004594 /* Don't re-enter if we're already allocating a chunk */
4595 if (trans->allocating_chunk)
4596 return -ENOSPC;
4597
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004598 space_info = __find_space_info(fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04004599 if (!space_info) {
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03004600 ret = create_space_info(fs_info, flags, &space_info);
4601 if (ret)
4602 return ret;
Chris Mason593060d2008-03-25 16:50:33 -04004603 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004604
Josef Bacik6d741192011-04-11 20:20:11 -04004605again:
Josef Bacik25179202008-10-29 14:49:05 -04004606 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05004607 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004608 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04004609 if (space_info->full) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004610 if (should_alloc_chunk(fs_info, space_info, force))
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004611 ret = -ENOSPC;
4612 else
4613 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04004614 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004615 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04004616 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004617
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004618 if (!should_alloc_chunk(fs_info, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04004619 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04004620 return 0;
4621 } else if (space_info->chunk_alloc) {
4622 wait_for_alloc = 1;
4623 } else {
4624 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04004625 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004626
Josef Bacik25179202008-10-29 14:49:05 -04004627 spin_unlock(&space_info->lock);
4628
Josef Bacik6d741192011-04-11 20:20:11 -04004629 mutex_lock(&fs_info->chunk_mutex);
4630
4631 /*
4632 * The chunk_mutex is held throughout the entirety of a chunk
4633 * allocation, so once we've acquired the chunk_mutex we know that the
4634 * other guy is done and we need to recheck and see if we should
4635 * allocate.
4636 */
4637 if (wait_for_alloc) {
4638 mutex_unlock(&fs_info->chunk_mutex);
4639 wait_for_alloc = 0;
4640 goto again;
4641 }
4642
Josef Bacikc6b305a2012-12-18 09:16:16 -05004643 trans->allocating_chunk = true;
4644
Josef Bacik97e728d2009-04-21 17:40:57 -04004645 /*
Josef Bacik67377732010-09-16 16:19:09 -04004646 * If we have mixed data/metadata chunks we want to make sure we keep
4647 * allocating mixed chunks instead of individual chunks.
4648 */
4649 if (btrfs_mixed_space_info(space_info))
4650 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4651
4652 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004653 * if we're doing a data chunk, go ahead and make sure that
4654 * we keep a reasonable number of metadata chunks allocated in the
4655 * FS as well.
4656 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004657 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004658 fs_info->data_chunk_allocations++;
4659 if (!(fs_info->data_chunk_allocations %
4660 fs_info->metadata_ratio))
4661 force_metadata_allocation(fs_info);
4662 }
4663
Liu Bo15d1ff82012-03-29 09:57:44 -04004664 /*
4665 * Check if we have enough space in SYSTEM chunk because we may need
4666 * to update devices.
4667 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004668 check_system_chunk(trans, fs_info, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004669
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004670 ret = btrfs_alloc_chunk(trans, fs_info, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004671 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004672
Josef Bacik9ed74f22009-09-11 16:12:44 -04004673 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004674 if (ret < 0 && ret != -ENOSPC)
4675 goto out;
Chris Masond3977122009-01-05 21:25:51 -05004676 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04004677 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04004678 else
4679 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04004680
Chris Mason0e4f8f82011-04-15 16:05:44 -04004681 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004682out:
Josef Bacik6d741192011-04-11 20:20:11 -04004683 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004684 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004685 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana00d80e32015-07-20 14:56:20 +01004686 /*
4687 * When we allocate a new chunk we reserve space in the chunk block
4688 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4689 * add new nodes/leafs to it if we end up needing to do it when
4690 * inserting the chunk item and updating device items as part of the
4691 * second phase of chunk allocation, performed by
4692 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4693 * large number of new block groups to create in our transaction
4694 * handle's new_bgs list to avoid exhausting the chunk block reserve
4695 * in extreme cases - like having a single transaction create many new
4696 * block groups when starting to write out the free space caches of all
4697 * the block groups that were made dirty during the lifetime of the
4698 * transaction.
4699 */
Filipe Mananad9a05402015-10-03 13:13:13 +01004700 if (trans->can_flush_pending_bgs &&
Byongho Leeee221842015-12-15 01:42:10 +09004701 trans->chunk_bytes_reserved >= (u64)SZ_2M) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004702 btrfs_create_pending_block_groups(trans, fs_info);
Filipe Manana00d80e32015-07-20 14:56:20 +01004703 btrfs_trans_release_chunk_metadata(trans);
4704 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004705 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004706}
4707
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004708static int can_overcommit(struct btrfs_fs_info *fs_info,
Josef Bacika80c8dc2012-09-06 16:59:33 -04004709 struct btrfs_space_info *space_info, u64 bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004710 enum btrfs_reserve_flush_enum flush,
4711 bool system_chunk)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004712{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004713 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04004714 u64 profile;
Miao Xie3c76cd82013-04-25 10:12:38 +00004715 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004716 u64 avail;
4717 u64 used;
4718
Josef Bacik957780e2016-05-17 13:30:55 -04004719 /* Don't overcommit when in mixed mode. */
4720 if (space_info->flags & BTRFS_BLOCK_GROUP_DATA)
4721 return 0;
4722
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004723 if (system_chunk)
4724 profile = btrfs_system_alloc_profile(fs_info);
4725 else
4726 profile = btrfs_metadata_alloc_profile(fs_info);
4727
Liu Bo41361352017-02-13 15:42:21 -08004728 used = btrfs_space_info_used(space_info, false);
Josef Bacik96f1bb52013-01-30 17:02:51 -05004729
Josef Bacik96f1bb52013-01-30 17:02:51 -05004730 /*
4731 * We only want to allow over committing if we have lots of actual space
4732 * free, but if we don't have enough space to handle the global reserve
4733 * space then we could end up having a real enospc problem when trying
4734 * to allocate a chunk or some other such important allocation.
4735 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004736 spin_lock(&global_rsv->lock);
4737 space_size = calc_global_rsv_need_space(global_rsv);
4738 spin_unlock(&global_rsv->lock);
4739 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004740 return 0;
4741
4742 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004743
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004744 avail = atomic64_read(&fs_info->free_chunk_space);
Josef Bacika80c8dc2012-09-06 16:59:33 -04004745
4746 /*
4747 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05004748 * space is actually useable. For raid56, the space info used
4749 * doesn't include the parity drive, so we don't have to
4750 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04004751 */
4752 if (profile & (BTRFS_BLOCK_GROUP_DUP |
4753 BTRFS_BLOCK_GROUP_RAID1 |
4754 BTRFS_BLOCK_GROUP_RAID10))
4755 avail >>= 1;
4756
4757 /*
Miao Xie561c2942012-10-16 11:32:18 +00004758 * If we aren't flushing all things, let us overcommit up to
4759 * 1/2th of the space. If we can flush, don't let us overcommit
4760 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04004761 */
Miao Xie08e007d2012-10-16 11:33:38 +00004762 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004763 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004764 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004765 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004766
Josef Bacik14575ae2013-09-17 10:48:00 -04004767 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004768 return 1;
4769 return 0;
4770}
4771
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004772static void btrfs_writeback_inodes_sb_nr(struct btrfs_fs_info *fs_info,
Miao Xie6c255e62014-03-06 13:55:01 +08004773 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004774{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004775 struct super_block *sb = fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004776
Josef Bacik925a6ef2013-06-20 12:31:27 -04004777 if (down_read_trylock(&sb->s_umount)) {
4778 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4779 up_read(&sb->s_umount);
4780 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004781 /*
4782 * We needn't worry the filesystem going from r/w to r/o though
4783 * we don't acquire ->s_umount mutex, because the filesystem
4784 * should guarantee the delalloc inodes list be empty after
4785 * the filesystem is readonly(all dirty pages are written to
4786 * the disk).
4787 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004788 btrfs_start_delalloc_roots(fs_info, 0, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004789 if (!current->journal_info)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004790 btrfs_wait_ordered_roots(fs_info, nr_items, 0, (u64)-1);
Miao Xieda633a42012-12-20 11:19:09 +00004791 }
4792}
4793
Chris Mason6374e57a2017-06-23 09:48:21 -07004794static inline u64 calc_reclaim_items_nr(struct btrfs_fs_info *fs_info,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004795 u64 to_reclaim)
Miao Xie18cd8ea2013-11-04 23:13:22 +08004796{
4797 u64 bytes;
Chris Mason6374e57a2017-06-23 09:48:21 -07004798 u64 nr;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004799
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004800 bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004801 nr = div64_u64(to_reclaim, bytes);
Miao Xie18cd8ea2013-11-04 23:13:22 +08004802 if (!nr)
4803 nr = 1;
4804 return nr;
4805}
4806
Byongho Leeee221842015-12-15 01:42:10 +09004807#define EXTENT_SIZE_PER_ITEM SZ_256K
Miao Xiec61a16a2013-11-04 23:13:23 +08004808
Yan, Zheng5da9d012010-05-16 10:46:25 -04004809/*
4810 * shrink metadata reservation for delalloc
4811 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004812static void shrink_delalloc(struct btrfs_fs_info *fs_info, u64 to_reclaim,
4813 u64 orig, bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004814{
Josef Bacik0019f102010-10-15 15:18:40 -04004815 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004816 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004817 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004818 u64 max_reclaim;
Chris Mason6374e57a2017-06-23 09:48:21 -07004819 u64 items;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004820 long time_left;
Miao Xied3ee29e32013-11-04 23:13:20 +08004821 unsigned long nr_pages;
4822 int loops;
Miao Xie08e007d2012-10-16 11:33:38 +00004823 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004824
Miao Xiec61a16a2013-11-04 23:13:23 +08004825 /* Calc the number of the pages we need flush for space reservation */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004826 items = calc_reclaim_items_nr(fs_info, to_reclaim);
Chris Mason6374e57a2017-06-23 09:48:21 -07004827 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004828
Josef Bacik663350a2011-11-03 22:54:25 -04004829 trans = (struct btrfs_trans_handle *)current->journal_info;
Josef Bacik69fe2d72017-10-19 14:15:57 -04004830 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Chris Masonbf9022e2010-10-26 13:40:45 -04004831
Miao Xie963d6782013-01-29 10:10:51 +00004832 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004833 &fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004834 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004835 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004836 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004837 if (wait_ordered)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004838 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004839 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004840 }
4841
Miao Xied3ee29e32013-11-04 23:13:20 +08004842 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004843 while (delalloc_bytes && loops < 3) {
4844 max_reclaim = min(delalloc_bytes, to_reclaim);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004845 nr_pages = max_reclaim >> PAGE_SHIFT;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004846 btrfs_writeback_inodes_sb_nr(fs_info, nr_pages, items);
Josef Bacikdea31f52012-09-06 16:47:00 -04004847 /*
4848 * We need to wait for the async pages to actually start before
4849 * we do anything.
4850 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004851 max_reclaim = atomic_read(&fs_info->async_delalloc_pages);
Miao Xie9f3a0742013-11-04 23:13:24 +08004852 if (!max_reclaim)
4853 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004854
Miao Xie9f3a0742013-11-04 23:13:24 +08004855 if (max_reclaim <= nr_pages)
4856 max_reclaim = 0;
4857 else
4858 max_reclaim -= nr_pages;
4859
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004860 wait_event(fs_info->async_submit_wait,
4861 atomic_read(&fs_info->async_delalloc_pages) <=
Miao Xie9f3a0742013-11-04 23:13:24 +08004862 (int)max_reclaim);
4863skip_async:
Miao Xie08e007d2012-10-16 11:33:38 +00004864 if (!trans)
4865 flush = BTRFS_RESERVE_FLUSH_ALL;
4866 else
4867 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004868 spin_lock(&space_info->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04004869 if (list_empty(&space_info->tickets) &&
4870 list_empty(&space_info->priority_tickets)) {
4871 spin_unlock(&space_info->lock);
4872 break;
4873 }
Josef Bacik0019f102010-10-15 15:18:40 -04004874 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004875
Chris Mason36e39c42011-03-12 07:08:42 -05004876 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004877 if (wait_ordered && !trans) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004878 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf104d042011-10-14 13:56:58 -04004879 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004880 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004881 if (time_left)
4882 break;
4883 }
Miao Xie963d6782013-01-29 10:10:51 +00004884 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004885 &fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004886 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004887}
4888
Josef Bacik996478c2017-08-22 16:00:39 -04004889struct reserve_ticket {
4890 u64 bytes;
4891 int error;
4892 struct list_head list;
4893 wait_queue_head_t wait;
4894};
4895
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004896/**
Josef Bacik663350a2011-11-03 22:54:25 -04004897 * maybe_commit_transaction - possibly commit the transaction if its ok to
4898 * @root - the root we're allocating for
4899 * @bytes - the number of bytes we want to reserve
4900 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004901 *
Josef Bacik663350a2011-11-03 22:54:25 -04004902 * This will check to make sure that committing the transaction will actually
4903 * get us somewhere and then commit the transaction if it does. Otherwise it
4904 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004905 */
Jeff Mahoney0c9ab342017-02-15 16:28:28 -05004906static int may_commit_transaction(struct btrfs_fs_info *fs_info,
Josef Bacik996478c2017-08-22 16:00:39 -04004907 struct btrfs_space_info *space_info)
Josef Bacik663350a2011-11-03 22:54:25 -04004908{
Josef Bacik996478c2017-08-22 16:00:39 -04004909 struct reserve_ticket *ticket = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004910 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_block_rsv;
Josef Bacik663350a2011-11-03 22:54:25 -04004911 struct btrfs_trans_handle *trans;
Josef Bacik996478c2017-08-22 16:00:39 -04004912 u64 bytes;
Josef Bacik663350a2011-11-03 22:54:25 -04004913
4914 trans = (struct btrfs_trans_handle *)current->journal_info;
4915 if (trans)
4916 return -EAGAIN;
4917
Josef Bacik996478c2017-08-22 16:00:39 -04004918 spin_lock(&space_info->lock);
4919 if (!list_empty(&space_info->priority_tickets))
4920 ticket = list_first_entry(&space_info->priority_tickets,
4921 struct reserve_ticket, list);
4922 else if (!list_empty(&space_info->tickets))
4923 ticket = list_first_entry(&space_info->tickets,
4924 struct reserve_ticket, list);
4925 bytes = (ticket) ? ticket->bytes : 0;
4926 spin_unlock(&space_info->lock);
4927
4928 if (!bytes)
4929 return 0;
Josef Bacik663350a2011-11-03 22:54:25 -04004930
4931 /* See if there is enough pinned space to make this reservation */
Josef Bacikb150a4f2013-06-19 15:00:04 -04004932 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Miao Xie0424c542014-03-06 13:54:59 +08004933 bytes) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004934 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004935
4936 /*
4937 * See if there is some space in the delayed insertion reservation for
4938 * this reservation.
4939 */
4940 if (space_info != delayed_rsv->space_info)
4941 return -ENOSPC;
4942
4943 spin_lock(&delayed_rsv->lock);
Josef Bacik996478c2017-08-22 16:00:39 -04004944 if (delayed_rsv->size > bytes)
4945 bytes = 0;
4946 else
4947 bytes -= delayed_rsv->size;
Nikolay Borisov057aac32017-11-07 11:22:54 +02004948 spin_unlock(&delayed_rsv->lock);
4949
Josef Bacikb150a4f2013-06-19 15:00:04 -04004950 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Josef Bacik996478c2017-08-22 16:00:39 -04004951 bytes) < 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004952 return -ENOSPC;
4953 }
Josef Bacik663350a2011-11-03 22:54:25 -04004954
4955commit:
Jeff Mahoneya9b33112017-05-17 11:38:34 -04004956 trans = btrfs_join_transaction(fs_info->extent_root);
Josef Bacik663350a2011-11-03 22:54:25 -04004957 if (IS_ERR(trans))
4958 return -ENOSPC;
4959
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004960 return btrfs_commit_transaction(trans);
Josef Bacik663350a2011-11-03 22:54:25 -04004961}
4962
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03004963/*
4964 * Try to flush some data based on policy set by @state. This is only advisory
4965 * and may fail for various reasons. The caller is supposed to examine the
4966 * state of @space_info to detect the outcome.
4967 */
4968static void flush_space(struct btrfs_fs_info *fs_info,
Josef Bacik96c3f432012-06-21 14:05:49 -04004969 struct btrfs_space_info *space_info, u64 num_bytes,
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004970 int state)
Josef Bacik96c3f432012-06-21 14:05:49 -04004971{
Jeff Mahoneya9b33112017-05-17 11:38:34 -04004972 struct btrfs_root *root = fs_info->extent_root;
Josef Bacik96c3f432012-06-21 14:05:49 -04004973 struct btrfs_trans_handle *trans;
4974 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004975 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004976
4977 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004978 case FLUSH_DELAYED_ITEMS_NR:
4979 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004980 if (state == FLUSH_DELAYED_ITEMS_NR)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004981 nr = calc_reclaim_items_nr(fs_info, num_bytes) * 2;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004982 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004983 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004984
Josef Bacik96c3f432012-06-21 14:05:49 -04004985 trans = btrfs_join_transaction(root);
4986 if (IS_ERR(trans)) {
4987 ret = PTR_ERR(trans);
4988 break;
4989 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004990 ret = btrfs_run_delayed_items_nr(trans, fs_info, nr);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004991 btrfs_end_transaction(trans);
Josef Bacik96c3f432012-06-21 14:05:49 -04004992 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004993 case FLUSH_DELALLOC:
4994 case FLUSH_DELALLOC_WAIT:
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004995 shrink_delalloc(fs_info, num_bytes * 2, num_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004996 state == FLUSH_DELALLOC_WAIT);
4997 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004998 case ALLOC_CHUNK:
4999 trans = btrfs_join_transaction(root);
5000 if (IS_ERR(trans)) {
5001 ret = PTR_ERR(trans);
5002 break;
5003 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005004 ret = do_chunk_alloc(trans, fs_info,
Jeff Mahoney1b868262017-05-17 11:38:35 -04005005 btrfs_metadata_alloc_profile(fs_info),
Josef Bacikea658ba2012-09-11 16:57:25 -04005006 CHUNK_ALLOC_NO_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005007 btrfs_end_transaction(trans);
Alex Lyakaseecba892015-12-06 12:32:31 +02005008 if (ret > 0 || ret == -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04005009 ret = 0;
5010 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04005011 case COMMIT_TRANS:
Josef Bacik996478c2017-08-22 16:00:39 -04005012 ret = may_commit_transaction(fs_info, space_info);
Josef Bacik96c3f432012-06-21 14:05:49 -04005013 break;
5014 default:
5015 ret = -ENOSPC;
5016 break;
5017 }
5018
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03005019 trace_btrfs_flush_space(fs_info, space_info->flags, num_bytes, state,
5020 ret);
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03005021 return;
Josef Bacik96c3f432012-06-21 14:05:49 -04005022}
Miao Xie21c7e752014-05-13 17:29:04 -07005023
5024static inline u64
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005025btrfs_calc_reclaim_metadata_size(struct btrfs_fs_info *fs_info,
5026 struct btrfs_space_info *space_info,
5027 bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07005028{
Josef Bacik957780e2016-05-17 13:30:55 -04005029 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07005030 u64 used;
5031 u64 expected;
Josef Bacik957780e2016-05-17 13:30:55 -04005032 u64 to_reclaim = 0;
Miao Xie21c7e752014-05-13 17:29:04 -07005033
Josef Bacik957780e2016-05-17 13:30:55 -04005034 list_for_each_entry(ticket, &space_info->tickets, list)
5035 to_reclaim += ticket->bytes;
5036 list_for_each_entry(ticket, &space_info->priority_tickets, list)
5037 to_reclaim += ticket->bytes;
5038 if (to_reclaim)
5039 return to_reclaim;
Miao Xie21c7e752014-05-13 17:29:04 -07005040
Wang Xiaoguange0af2482016-08-31 19:46:16 +08005041 to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005042 if (can_overcommit(fs_info, space_info, to_reclaim,
5043 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Wang Xiaoguange0af2482016-08-31 19:46:16 +08005044 return 0;
5045
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03005046 used = btrfs_space_info_used(space_info, true);
5047
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005048 if (can_overcommit(fs_info, space_info, SZ_1M,
5049 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Miao Xie21c7e752014-05-13 17:29:04 -07005050 expected = div_factor_fine(space_info->total_bytes, 95);
5051 else
5052 expected = div_factor_fine(space_info->total_bytes, 90);
5053
5054 if (used > expected)
5055 to_reclaim = used - expected;
5056 else
5057 to_reclaim = 0;
5058 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
5059 space_info->bytes_reserved);
Miao Xie21c7e752014-05-13 17:29:04 -07005060 return to_reclaim;
5061}
5062
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005063static inline int need_do_async_reclaim(struct btrfs_fs_info *fs_info,
5064 struct btrfs_space_info *space_info,
5065 u64 used, bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07005066{
Josef Bacik365c5312015-02-18 13:58:15 -08005067 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
5068
5069 /* If we're just plain full then async reclaim just slows us down. */
Josef Bacikbaee8792016-01-26 09:35:38 -05005070 if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh)
Josef Bacik365c5312015-02-18 13:58:15 -08005071 return 0;
5072
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005073 if (!btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5074 system_chunk))
Liu Bo25ce4592014-09-10 12:58:50 +08005075 return 0;
Liu Bo25ce4592014-09-10 12:58:50 +08005076
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005077 return (used >= thresh && !btrfs_fs_closing(fs_info) &&
5078 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
Miao Xie21c7e752014-05-13 17:29:04 -07005079}
5080
Josef Bacik957780e2016-05-17 13:30:55 -04005081static void wake_all_tickets(struct list_head *head)
Miao Xie21c7e752014-05-13 17:29:04 -07005082{
Josef Bacik957780e2016-05-17 13:30:55 -04005083 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07005084
Josef Bacik957780e2016-05-17 13:30:55 -04005085 while (!list_empty(head)) {
5086 ticket = list_first_entry(head, struct reserve_ticket, list);
5087 list_del_init(&ticket->list);
5088 ticket->error = -ENOSPC;
5089 wake_up(&ticket->wait);
Miao Xie21c7e752014-05-13 17:29:04 -07005090 }
Miao Xie21c7e752014-05-13 17:29:04 -07005091}
5092
Josef Bacik957780e2016-05-17 13:30:55 -04005093/*
5094 * This is for normal flushers, we can wait all goddamned day if we want to. We
5095 * will loop and continuously try to flush as long as we are making progress.
5096 * We count progress as clearing off tickets each time we have to loop.
5097 */
Miao Xie21c7e752014-05-13 17:29:04 -07005098static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
5099{
5100 struct btrfs_fs_info *fs_info;
5101 struct btrfs_space_info *space_info;
5102 u64 to_reclaim;
5103 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04005104 int commit_cycles = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005105 u64 last_tickets_id;
Miao Xie21c7e752014-05-13 17:29:04 -07005106
5107 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
5108 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
5109
Josef Bacik957780e2016-05-17 13:30:55 -04005110 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005111 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5112 false);
Josef Bacik957780e2016-05-17 13:30:55 -04005113 if (!to_reclaim) {
5114 space_info->flush = 0;
5115 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005116 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005117 }
Wang Xiaoguangce129652016-09-02 10:58:46 +08005118 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005119 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005120
5121 flush_state = FLUSH_DELAYED_ITEMS_NR;
5122 do {
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03005123 flush_space(fs_info, space_info, to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04005124 spin_lock(&space_info->lock);
5125 if (list_empty(&space_info->tickets)) {
5126 space_info->flush = 0;
5127 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005128 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005129 }
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005130 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info,
5131 space_info,
5132 false);
Wang Xiaoguangce129652016-09-02 10:58:46 +08005133 if (last_tickets_id == space_info->tickets_id) {
Josef Bacik957780e2016-05-17 13:30:55 -04005134 flush_state++;
5135 } else {
Wang Xiaoguangce129652016-09-02 10:58:46 +08005136 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005137 flush_state = FLUSH_DELAYED_ITEMS_NR;
5138 if (commit_cycles)
5139 commit_cycles--;
5140 }
5141
5142 if (flush_state > COMMIT_TRANS) {
5143 commit_cycles++;
5144 if (commit_cycles > 2) {
5145 wake_all_tickets(&space_info->tickets);
5146 space_info->flush = 0;
5147 } else {
5148 flush_state = FLUSH_DELAYED_ITEMS_NR;
5149 }
5150 }
5151 spin_unlock(&space_info->lock);
5152 } while (flush_state <= COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07005153}
5154
5155void btrfs_init_async_reclaim_work(struct work_struct *work)
5156{
5157 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
5158}
5159
Josef Bacik957780e2016-05-17 13:30:55 -04005160static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info,
5161 struct btrfs_space_info *space_info,
5162 struct reserve_ticket *ticket)
5163{
5164 u64 to_reclaim;
5165 int flush_state = FLUSH_DELAYED_ITEMS_NR;
5166
5167 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005168 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5169 false);
Josef Bacik957780e2016-05-17 13:30:55 -04005170 if (!to_reclaim) {
5171 spin_unlock(&space_info->lock);
5172 return;
5173 }
5174 spin_unlock(&space_info->lock);
5175
5176 do {
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03005177 flush_space(fs_info, space_info, to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04005178 flush_state++;
5179 spin_lock(&space_info->lock);
5180 if (ticket->bytes == 0) {
5181 spin_unlock(&space_info->lock);
5182 return;
5183 }
5184 spin_unlock(&space_info->lock);
5185
5186 /*
5187 * Priority flushers can't wait on delalloc without
5188 * deadlocking.
5189 */
5190 if (flush_state == FLUSH_DELALLOC ||
5191 flush_state == FLUSH_DELALLOC_WAIT)
5192 flush_state = ALLOC_CHUNK;
5193 } while (flush_state < COMMIT_TRANS);
5194}
5195
5196static int wait_reserve_ticket(struct btrfs_fs_info *fs_info,
5197 struct btrfs_space_info *space_info,
5198 struct reserve_ticket *ticket, u64 orig_bytes)
5199
5200{
5201 DEFINE_WAIT(wait);
5202 int ret = 0;
5203
5204 spin_lock(&space_info->lock);
5205 while (ticket->bytes > 0 && ticket->error == 0) {
5206 ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE);
5207 if (ret) {
5208 ret = -EINTR;
5209 break;
5210 }
5211 spin_unlock(&space_info->lock);
5212
5213 schedule();
5214
5215 finish_wait(&ticket->wait, &wait);
5216 spin_lock(&space_info->lock);
5217 }
5218 if (!ret)
5219 ret = ticket->error;
5220 if (!list_empty(&ticket->list))
5221 list_del_init(&ticket->list);
5222 if (ticket->bytes && ticket->bytes < orig_bytes) {
5223 u64 num_bytes = orig_bytes - ticket->bytes;
5224 space_info->bytes_may_use -= num_bytes;
5225 trace_btrfs_space_reservation(fs_info, "space_info",
5226 space_info->flags, num_bytes, 0);
5227 }
5228 spin_unlock(&space_info->lock);
5229
5230 return ret;
5231}
5232
Josef Bacik663350a2011-11-03 22:54:25 -04005233/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005234 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5235 * @root - the root we're allocating for
Josef Bacik957780e2016-05-17 13:30:55 -04005236 * @space_info - the space info we want to allocate from
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005237 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04005238 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005239 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04005240 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005241 * with the block_rsv. If there is not enough space it will make an attempt to
5242 * flush out space to make room. It will do this by flushing delalloc if
5243 * possible or committing the transaction. If flush is 0 then no attempts to
5244 * regain reservations will be made and this will fail if there is not enough
5245 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005246 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005247static int __reserve_metadata_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik957780e2016-05-17 13:30:55 -04005248 struct btrfs_space_info *space_info,
5249 u64 orig_bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005250 enum btrfs_reserve_flush_enum flush,
5251 bool system_chunk)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005252{
Josef Bacik957780e2016-05-17 13:30:55 -04005253 struct reserve_ticket ticket;
Josef Bacik2bf64752011-09-26 17:12:22 -04005254 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005255 int ret = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005256
Josef Bacik957780e2016-05-17 13:30:55 -04005257 ASSERT(orig_bytes);
Josef Bacik8ca17f02016-05-27 13:24:13 -04005258 ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL);
5259
Yan, Zhengf0486c62010-05-16 10:46:25 -04005260 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04005261 ret = -ENOSPC;
Liu Bo41361352017-02-13 15:42:21 -08005262 used = btrfs_space_info_used(space_info, true);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005263
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005264 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005265 * If we have enough space then hooray, make our reservation and carry
5266 * on. If not see if we can overcommit, and if we can, hooray carry on.
5267 * If not things get more complicated.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005268 */
Josef Bacik957780e2016-05-17 13:30:55 -04005269 if (used + orig_bytes <= space_info->total_bytes) {
5270 space_info->bytes_may_use += orig_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005271 trace_btrfs_space_reservation(fs_info, "space_info",
5272 space_info->flags, orig_bytes, 1);
Josef Bacik957780e2016-05-17 13:30:55 -04005273 ret = 0;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005274 } else if (can_overcommit(fs_info, space_info, orig_bytes, flush,
5275 system_chunk)) {
Josef Bacik44734ed2012-09-28 16:04:19 -04005276 space_info->bytes_may_use += orig_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005277 trace_btrfs_space_reservation(fs_info, "space_info",
5278 space_info->flags, orig_bytes, 1);
Josef Bacik44734ed2012-09-28 16:04:19 -04005279 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04005280 }
5281
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005282 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005283 * If we couldn't make a reservation then setup our reservation ticket
5284 * and kick the async worker if it's not already running.
Miao Xie08e007d2012-10-16 11:33:38 +00005285 *
Josef Bacik957780e2016-05-17 13:30:55 -04005286 * If we are a priority flusher then we just need to add our ticket to
5287 * the list and we will do our own flushing further down.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005288 */
Josef Bacik72bcd992012-12-18 15:16:34 -05005289 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacik957780e2016-05-17 13:30:55 -04005290 ticket.bytes = orig_bytes;
5291 ticket.error = 0;
5292 init_waitqueue_head(&ticket.wait);
5293 if (flush == BTRFS_RESERVE_FLUSH_ALL) {
5294 list_add_tail(&ticket.list, &space_info->tickets);
5295 if (!space_info->flush) {
5296 space_info->flush = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005297 trace_btrfs_trigger_flush(fs_info,
Josef Bacikf376df22016-03-25 13:25:56 -04005298 space_info->flags,
5299 orig_bytes, flush,
5300 "enospc");
Josef Bacik957780e2016-05-17 13:30:55 -04005301 queue_work(system_unbound_wq,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005302 &fs_info->async_reclaim_work);
Josef Bacik957780e2016-05-17 13:30:55 -04005303 }
5304 } else {
5305 list_add_tail(&ticket.list,
5306 &space_info->priority_tickets);
5307 }
Miao Xie21c7e752014-05-13 17:29:04 -07005308 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
5309 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04005310 /*
5311 * We will do the space reservation dance during log replay,
5312 * which means we won't have fs_info->fs_root set, so don't do
5313 * the async reclaim as we will panic.
5314 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005315 if (!test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags) &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005316 need_do_async_reclaim(fs_info, space_info,
5317 used, system_chunk) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005318 !work_busy(&fs_info->async_reclaim_work)) {
5319 trace_btrfs_trigger_flush(fs_info, space_info->flags,
5320 orig_bytes, flush, "preempt");
Miao Xie21c7e752014-05-13 17:29:04 -07005321 queue_work(system_unbound_wq,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005322 &fs_info->async_reclaim_work);
Josef Bacikf376df22016-03-25 13:25:56 -04005323 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005324 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005325 spin_unlock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00005326 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik957780e2016-05-17 13:30:55 -04005327 return ret;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005328
Josef Bacik957780e2016-05-17 13:30:55 -04005329 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005330 return wait_reserve_ticket(fs_info, space_info, &ticket,
Josef Bacik957780e2016-05-17 13:30:55 -04005331 orig_bytes);
Miao Xie08e007d2012-10-16 11:33:38 +00005332
Josef Bacik957780e2016-05-17 13:30:55 -04005333 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005334 priority_reclaim_metadata_space(fs_info, space_info, &ticket);
Josef Bacik957780e2016-05-17 13:30:55 -04005335 spin_lock(&space_info->lock);
5336 if (ticket.bytes) {
5337 if (ticket.bytes < orig_bytes) {
5338 u64 num_bytes = orig_bytes - ticket.bytes;
5339 space_info->bytes_may_use -= num_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005340 trace_btrfs_space_reservation(fs_info, "space_info",
5341 space_info->flags,
5342 num_bytes, 0);
Miao Xie08e007d2012-10-16 11:33:38 +00005343
Josef Bacik957780e2016-05-17 13:30:55 -04005344 }
5345 list_del_init(&ticket.list);
5346 ret = -ENOSPC;
5347 }
5348 spin_unlock(&space_info->lock);
5349 ASSERT(list_empty(&ticket.list));
5350 return ret;
5351}
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005352
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005353/**
5354 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5355 * @root - the root we're allocating for
5356 * @block_rsv - the block_rsv we're allocating for
5357 * @orig_bytes - the number of bytes we want
5358 * @flush - whether or not we can flush to make our reservation
5359 *
Josef Bacik957780e2016-05-17 13:30:55 -04005360 * This will reserve orgi_bytes number of bytes from the space info associated
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005361 * with the block_rsv. If there is not enough space it will make an attempt to
5362 * flush out space to make room. It will do this by flushing delalloc if
5363 * possible or committing the transaction. If flush is 0 then no attempts to
5364 * regain reservations will be made and this will fail if there is not enough
5365 * space already.
5366 */
5367static int reserve_metadata_bytes(struct btrfs_root *root,
5368 struct btrfs_block_rsv *block_rsv,
5369 u64 orig_bytes,
5370 enum btrfs_reserve_flush_enum flush)
5371{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005372 struct btrfs_fs_info *fs_info = root->fs_info;
5373 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04005374 int ret;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005375 bool system_chunk = (root == fs_info->chunk_root);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005376
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005377 ret = __reserve_metadata_bytes(fs_info, block_rsv->space_info,
5378 orig_bytes, flush, system_chunk);
Josef Bacik5d803662013-02-07 16:06:02 -05005379 if (ret == -ENOSPC &&
5380 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
Josef Bacik5d803662013-02-07 16:06:02 -05005381 if (block_rsv != global_rsv &&
5382 !block_rsv_use_bytes(global_rsv, orig_bytes))
5383 ret = 0;
5384 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04005385 if (ret == -ENOSPC)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005386 trace_btrfs_space_reservation(fs_info, "space_info:enospc",
Josef Bacik957780e2016-05-17 13:30:55 -04005387 block_rsv->space_info->flags,
5388 orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005389 return ret;
5390}
5391
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005392static struct btrfs_block_rsv *get_block_rsv(
5393 const struct btrfs_trans_handle *trans,
5394 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005395{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005396 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik4c13d752011-08-30 11:31:29 -04005397 struct btrfs_block_rsv *block_rsv = NULL;
5398
Alexandru Moisee9cf4392015-09-09 00:18:50 +00005399 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005400 (root == fs_info->csum_root && trans->adding_csums) ||
5401 (root == fs_info->uuid_root))
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02005402 block_rsv = trans->block_rsv;
5403
Josef Bacik4c13d752011-08-30 11:31:29 -04005404 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005405 block_rsv = root->block_rsv;
5406
5407 if (!block_rsv)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005408 block_rsv = &fs_info->empty_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005409
5410 return block_rsv;
5411}
5412
5413static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
5414 u64 num_bytes)
5415{
5416 int ret = -ENOSPC;
5417 spin_lock(&block_rsv->lock);
5418 if (block_rsv->reserved >= num_bytes) {
5419 block_rsv->reserved -= num_bytes;
5420 if (block_rsv->reserved < block_rsv->size)
5421 block_rsv->full = 0;
5422 ret = 0;
5423 }
5424 spin_unlock(&block_rsv->lock);
5425 return ret;
5426}
5427
5428static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
5429 u64 num_bytes, int update_size)
5430{
5431 spin_lock(&block_rsv->lock);
5432 block_rsv->reserved += num_bytes;
5433 if (update_size)
5434 block_rsv->size += num_bytes;
5435 else if (block_rsv->reserved >= block_rsv->size)
5436 block_rsv->full = 1;
5437 spin_unlock(&block_rsv->lock);
5438}
5439
Josef Bacikd52be812013-05-29 14:54:47 -04005440int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
5441 struct btrfs_block_rsv *dest, u64 num_bytes,
5442 int min_factor)
5443{
5444 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5445 u64 min_bytes;
5446
5447 if (global_rsv->space_info != dest->space_info)
5448 return -ENOSPC;
5449
5450 spin_lock(&global_rsv->lock);
5451 min_bytes = div_factor(global_rsv->size, min_factor);
5452 if (global_rsv->reserved < min_bytes + num_bytes) {
5453 spin_unlock(&global_rsv->lock);
5454 return -ENOSPC;
5455 }
5456 global_rsv->reserved -= num_bytes;
5457 if (global_rsv->reserved < global_rsv->size)
5458 global_rsv->full = 0;
5459 spin_unlock(&global_rsv->lock);
5460
5461 block_rsv_add_bytes(dest, num_bytes, 1);
5462 return 0;
5463}
5464
Josef Bacik957780e2016-05-17 13:30:55 -04005465/*
5466 * This is for space we already have accounted in space_info->bytes_may_use, so
5467 * basically when we're returning space from block_rsv's.
5468 */
5469static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
5470 struct btrfs_space_info *space_info,
5471 u64 num_bytes)
5472{
5473 struct reserve_ticket *ticket;
5474 struct list_head *head;
5475 u64 used;
5476 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH;
5477 bool check_overcommit = false;
5478
5479 spin_lock(&space_info->lock);
5480 head = &space_info->priority_tickets;
5481
5482 /*
5483 * If we are over our limit then we need to check and see if we can
5484 * overcommit, and if we can't then we just need to free up our space
5485 * and not satisfy any requests.
5486 */
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03005487 used = btrfs_space_info_used(space_info, true);
Josef Bacik957780e2016-05-17 13:30:55 -04005488 if (used - num_bytes >= space_info->total_bytes)
5489 check_overcommit = true;
5490again:
5491 while (!list_empty(head) && num_bytes) {
5492 ticket = list_first_entry(head, struct reserve_ticket,
5493 list);
5494 /*
5495 * We use 0 bytes because this space is already reserved, so
5496 * adding the ticket space would be a double count.
5497 */
5498 if (check_overcommit &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005499 !can_overcommit(fs_info, space_info, 0, flush, false))
Josef Bacik957780e2016-05-17 13:30:55 -04005500 break;
5501 if (num_bytes >= ticket->bytes) {
5502 list_del_init(&ticket->list);
5503 num_bytes -= ticket->bytes;
5504 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005505 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005506 wake_up(&ticket->wait);
5507 } else {
5508 ticket->bytes -= num_bytes;
5509 num_bytes = 0;
5510 }
5511 }
5512
5513 if (num_bytes && head == &space_info->priority_tickets) {
5514 head = &space_info->tickets;
5515 flush = BTRFS_RESERVE_FLUSH_ALL;
5516 goto again;
5517 }
5518 space_info->bytes_may_use -= num_bytes;
5519 trace_btrfs_space_reservation(fs_info, "space_info",
5520 space_info->flags, num_bytes, 0);
5521 spin_unlock(&space_info->lock);
5522}
5523
5524/*
5525 * This is for newly allocated space that isn't accounted in
5526 * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent
5527 * we use this helper.
5528 */
5529static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
5530 struct btrfs_space_info *space_info,
5531 u64 num_bytes)
5532{
5533 struct reserve_ticket *ticket;
5534 struct list_head *head = &space_info->priority_tickets;
5535
5536again:
5537 while (!list_empty(head) && num_bytes) {
5538 ticket = list_first_entry(head, struct reserve_ticket,
5539 list);
5540 if (num_bytes >= ticket->bytes) {
5541 trace_btrfs_space_reservation(fs_info, "space_info",
5542 space_info->flags,
5543 ticket->bytes, 1);
5544 list_del_init(&ticket->list);
5545 num_bytes -= ticket->bytes;
5546 space_info->bytes_may_use += ticket->bytes;
5547 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005548 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005549 wake_up(&ticket->wait);
5550 } else {
5551 trace_btrfs_space_reservation(fs_info, "space_info",
5552 space_info->flags,
5553 num_bytes, 1);
5554 space_info->bytes_may_use += num_bytes;
5555 ticket->bytes -= num_bytes;
5556 num_bytes = 0;
5557 }
5558 }
5559
5560 if (num_bytes && head == &space_info->priority_tickets) {
5561 head = &space_info->tickets;
5562 goto again;
5563 }
5564}
5565
Josef Bacik69fe2d72017-10-19 14:15:57 -04005566static u64 block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005567 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02005568 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005569{
5570 struct btrfs_space_info *space_info = block_rsv->space_info;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005571 u64 ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005572
5573 spin_lock(&block_rsv->lock);
5574 if (num_bytes == (u64)-1)
5575 num_bytes = block_rsv->size;
5576 block_rsv->size -= num_bytes;
5577 if (block_rsv->reserved >= block_rsv->size) {
5578 num_bytes = block_rsv->reserved - block_rsv->size;
5579 block_rsv->reserved = block_rsv->size;
5580 block_rsv->full = 1;
5581 } else {
5582 num_bytes = 0;
5583 }
5584 spin_unlock(&block_rsv->lock);
5585
Josef Bacik69fe2d72017-10-19 14:15:57 -04005586 ret = num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005587 if (num_bytes > 0) {
5588 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00005589 spin_lock(&dest->lock);
5590 if (!dest->full) {
5591 u64 bytes_to_add;
5592
5593 bytes_to_add = dest->size - dest->reserved;
5594 bytes_to_add = min(num_bytes, bytes_to_add);
5595 dest->reserved += bytes_to_add;
5596 if (dest->reserved >= dest->size)
5597 dest->full = 1;
5598 num_bytes -= bytes_to_add;
5599 }
5600 spin_unlock(&dest->lock);
5601 }
Josef Bacik957780e2016-05-17 13:30:55 -04005602 if (num_bytes)
5603 space_info_add_old_bytes(fs_info, space_info,
5604 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005605 }
Josef Bacik69fe2d72017-10-19 14:15:57 -04005606 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005607}
5608
Josef Bacik25d609f2016-03-25 13:25:48 -04005609int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src,
5610 struct btrfs_block_rsv *dst, u64 num_bytes,
5611 int update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005612{
5613 int ret;
5614
5615 ret = block_rsv_use_bytes(src, num_bytes);
5616 if (ret)
5617 return ret;
5618
Josef Bacik25d609f2016-03-25 13:25:48 -04005619 block_rsv_add_bytes(dst, num_bytes, update_size);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005620 return 0;
5621}
5622
Miao Xie66d8f3d2012-09-06 04:02:28 -06005623void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005624{
5625 memset(rsv, 0, sizeof(*rsv));
5626 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06005627 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005628}
5629
Josef Bacik69fe2d72017-10-19 14:15:57 -04005630void btrfs_init_metadata_block_rsv(struct btrfs_fs_info *fs_info,
5631 struct btrfs_block_rsv *rsv,
5632 unsigned short type)
5633{
5634 btrfs_init_block_rsv(rsv, type);
5635 rsv->space_info = __find_space_info(fs_info,
5636 BTRFS_BLOCK_GROUP_METADATA);
5637}
5638
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005639struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_fs_info *fs_info,
Miao Xie66d8f3d2012-09-06 04:02:28 -06005640 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005641{
5642 struct btrfs_block_rsv *block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005643
5644 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
5645 if (!block_rsv)
5646 return NULL;
5647
Josef Bacik69fe2d72017-10-19 14:15:57 -04005648 btrfs_init_metadata_block_rsv(fs_info, block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005649 return block_rsv;
5650}
5651
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005652void btrfs_free_block_rsv(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005653 struct btrfs_block_rsv *rsv)
5654{
Josef Bacik2aaa6652012-08-29 14:27:18 -04005655 if (!rsv)
5656 return;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005657 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Josef Bacikdabdb642011-08-08 12:50:18 -04005658 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005659}
5660
Chris Masoncdfb0802015-04-06 18:17:00 -07005661void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv)
5662{
5663 kfree(rsv);
5664}
5665
Miao Xie08e007d2012-10-16 11:33:38 +00005666int btrfs_block_rsv_add(struct btrfs_root *root,
5667 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
5668 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005669{
5670 int ret;
5671
5672 if (num_bytes == 0)
5673 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005674
Miao Xie61b520a2011-11-10 20:45:05 -05005675 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005676 if (!ret) {
5677 block_rsv_add_bytes(block_rsv, num_bytes, 1);
5678 return 0;
5679 }
5680
Yan, Zhengf0486c62010-05-16 10:46:25 -04005681 return ret;
5682}
5683
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005684int btrfs_block_rsv_check(struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005685{
5686 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005687 int ret = -ENOSPC;
5688
5689 if (!block_rsv)
5690 return 0;
5691
5692 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04005693 num_bytes = div_factor(block_rsv->size, min_factor);
5694 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005695 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005696 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005697
Josef Bacik36ba0222011-10-18 12:15:48 -04005698 return ret;
5699}
5700
Miao Xie08e007d2012-10-16 11:33:38 +00005701int btrfs_block_rsv_refill(struct btrfs_root *root,
5702 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5703 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04005704{
5705 u64 num_bytes = 0;
5706 int ret = -ENOSPC;
5707
5708 if (!block_rsv)
5709 return 0;
5710
5711 spin_lock(&block_rsv->lock);
5712 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005713 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005714 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005715 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005716 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005717 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005718
Yan, Zhengf0486c62010-05-16 10:46:25 -04005719 if (!ret)
5720 return 0;
5721
Miao Xieaa38a712011-11-18 17:43:00 +08005722 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005723 if (!ret) {
5724 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005725 return 0;
5726 }
5727
Josef Bacik13553e52011-08-08 13:33:21 -04005728 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005729}
5730
Josef Bacik69fe2d72017-10-19 14:15:57 -04005731/**
5732 * btrfs_inode_rsv_refill - refill the inode block rsv.
5733 * @inode - the inode we are refilling.
5734 * @flush - the flusing restriction.
5735 *
5736 * Essentially the same as btrfs_block_rsv_refill, except it uses the
5737 * block_rsv->size as the minimum size. We'll either refill the missing amount
5738 * or return if we already have enough space. This will also handle the resreve
5739 * tracepoint for the reserved amount.
5740 */
5741int btrfs_inode_rsv_refill(struct btrfs_inode *inode,
5742 enum btrfs_reserve_flush_enum flush)
5743{
5744 struct btrfs_root *root = inode->root;
5745 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
5746 u64 num_bytes = 0;
5747 int ret = -ENOSPC;
5748
5749 spin_lock(&block_rsv->lock);
5750 if (block_rsv->reserved < block_rsv->size)
5751 num_bytes = block_rsv->size - block_rsv->reserved;
5752 spin_unlock(&block_rsv->lock);
5753
5754 if (num_bytes == 0)
5755 return 0;
5756
5757 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
5758 if (!ret) {
5759 block_rsv_add_bytes(block_rsv, num_bytes, 0);
5760 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5761 btrfs_ino(inode), num_bytes, 1);
5762 }
5763 return ret;
5764}
5765
5766/**
5767 * btrfs_inode_rsv_release - release any excessive reservation.
5768 * @inode - the inode we need to release from.
5769 *
5770 * This is the same as btrfs_block_rsv_release, except that it handles the
5771 * tracepoint for the reservation.
5772 */
5773void btrfs_inode_rsv_release(struct btrfs_inode *inode)
5774{
5775 struct btrfs_fs_info *fs_info = inode->root->fs_info;
5776 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5777 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
5778 u64 released = 0;
5779
5780 /*
5781 * Since we statically set the block_rsv->size we just want to say we
5782 * are releasing 0 bytes, and then we'll just get the reservation over
5783 * the size free'd.
5784 */
5785 released = block_rsv_release_bytes(fs_info, block_rsv, global_rsv, 0);
5786 if (released > 0)
5787 trace_btrfs_space_reservation(fs_info, "delalloc",
5788 btrfs_ino(inode), released, 0);
5789}
5790
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005791void btrfs_block_rsv_release(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005792 struct btrfs_block_rsv *block_rsv,
5793 u64 num_bytes)
5794{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005795 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5796
Liu Bo17504582013-12-29 21:44:50 +08005797 if (global_rsv == block_rsv ||
Yan, Zhengf0486c62010-05-16 10:46:25 -04005798 block_rsv->space_info != global_rsv->space_info)
5799 global_rsv = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005800 block_rsv_release_bytes(fs_info, block_rsv, global_rsv, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005801}
5802
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005803static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5804{
5805 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5806 struct btrfs_space_info *sinfo = block_rsv->space_info;
5807 u64 num_bytes;
5808
Josef Bacikae2e4722016-05-27 12:58:35 -04005809 /*
5810 * The global block rsv is based on the size of the extent tree, the
5811 * checksum tree and the root tree. If the fs is empty we want to set
5812 * it to a minimal amount for safety.
5813 */
5814 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) +
5815 btrfs_root_used(&fs_info->csum_root->root_item) +
5816 btrfs_root_used(&fs_info->tree_root->root_item);
5817 num_bytes = max_t(u64, num_bytes, SZ_16M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005818
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005819 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005820 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005821
Byongho Leeee221842015-12-15 01:42:10 +09005822 block_rsv->size = min_t(u64, num_bytes, SZ_512M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005823
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005824 if (block_rsv->reserved < block_rsv->size) {
Liu Bo41361352017-02-13 15:42:21 -08005825 num_bytes = btrfs_space_info_used(sinfo, true);
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005826 if (sinfo->total_bytes > num_bytes) {
5827 num_bytes = sinfo->total_bytes - num_bytes;
5828 num_bytes = min(num_bytes,
5829 block_rsv->size - block_rsv->reserved);
5830 block_rsv->reserved += num_bytes;
5831 sinfo->bytes_may_use += num_bytes;
5832 trace_btrfs_space_reservation(fs_info, "space_info",
5833 sinfo->flags, num_bytes,
5834 1);
5835 }
5836 } else if (block_rsv->reserved > block_rsv->size) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005837 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04005838 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005839 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005840 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005841 block_rsv->reserved = block_rsv->size;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005842 }
David Sterba182608c2011-05-05 13:13:16 +02005843
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005844 if (block_rsv->reserved == block_rsv->size)
5845 block_rsv->full = 1;
5846 else
5847 block_rsv->full = 0;
5848
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005849 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005850 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005851}
5852
Yan, Zhengf0486c62010-05-16 10:46:25 -04005853static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5854{
5855 struct btrfs_space_info *space_info;
5856
5857 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5858 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005859
5860 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005861 fs_info->global_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005862 fs_info->trans_block_rsv.space_info = space_info;
5863 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005864 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005865
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005866 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
5867 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
5868 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5869 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005870 if (fs_info->quota_root)
5871 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005872 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005873
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005874 update_global_block_rsv(fs_info);
5875}
5876
5877static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5878{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005879 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
5880 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005881 WARN_ON(fs_info->trans_block_rsv.size > 0);
5882 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5883 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5884 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04005885 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5886 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04005887}
5888
Yan, Zhenga22285a2010-05-16 10:48:46 -04005889void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005890 struct btrfs_fs_info *fs_info)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005891{
Josef Bacikbf2681c2017-09-29 15:44:05 -04005892 if (!trans->block_rsv) {
5893 ASSERT(!trans->bytes_reserved);
Josef Bacik0e721102012-06-26 16:13:18 -04005894 return;
Josef Bacikbf2681c2017-09-29 15:44:05 -04005895 }
Josef Bacik0e721102012-06-26 16:13:18 -04005896
Yan, Zhenga22285a2010-05-16 10:48:46 -04005897 if (!trans->bytes_reserved)
5898 return;
5899
Josef Bacikbf2681c2017-09-29 15:44:05 -04005900 ASSERT(trans->block_rsv == &fs_info->trans_block_rsv);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005901 trace_btrfs_space_reservation(fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04005902 trans->transid, trans->bytes_reserved, 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005903 btrfs_block_rsv_release(fs_info, trans->block_rsv,
5904 trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005905 trans->bytes_reserved = 0;
5906}
5907
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005908/*
5909 * To be called after all the new block groups attached to the transaction
5910 * handle have been created (btrfs_create_pending_block_groups()).
5911 */
5912void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5913{
Jeff Mahoney64b63582016-06-20 17:23:41 -04005914 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005915
5916 if (!trans->chunk_bytes_reserved)
5917 return;
5918
5919 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5920
5921 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
5922 trans->chunk_bytes_reserved);
5923 trans->chunk_bytes_reserved = 0;
5924}
5925
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005926/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04005927int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
Nikolay Borisov8ed7a2a2017-02-20 13:50:39 +02005928 struct btrfs_inode *inode)
Yan, Zhengd68fc572010-05-16 10:49:58 -04005929{
Nikolay Borisov8ed7a2a2017-02-20 13:50:39 +02005930 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
5931 struct btrfs_root *root = inode->root;
Josef Bacik40acc3ee2016-05-27 13:01:08 -04005932 /*
5933 * We always use trans->block_rsv here as we will have reserved space
5934 * for our orphan when starting the transaction, using get_block_rsv()
5935 * here will sometimes make us choose the wrong block rsv as we could be
5936 * doing a reloc inode for a non refcounted root.
5937 */
5938 struct btrfs_block_rsv *src_rsv = trans->block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04005939 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
5940
5941 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04005942 * We need to hold space in order to delete our orphan item once we've
5943 * added it, so this takes the reservation so we can release it later
5944 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04005945 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005946 u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
5947
Nikolay Borisov8ed7a2a2017-02-20 13:50:39 +02005948 trace_btrfs_space_reservation(fs_info, "orphan", btrfs_ino(inode),
5949 num_bytes, 1);
Josef Bacik25d609f2016-03-25 13:25:48 -04005950 return btrfs_block_rsv_migrate(src_rsv, dst_rsv, num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005951}
5952
Nikolay Borisov703b3912017-02-20 13:50:40 +02005953void btrfs_orphan_release_metadata(struct btrfs_inode *inode)
Yan, Zhengd68fc572010-05-16 10:49:58 -04005954{
Nikolay Borisov703b3912017-02-20 13:50:40 +02005955 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
5956 struct btrfs_root *root = inode->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005957 u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
5958
Nikolay Borisov703b3912017-02-20 13:50:40 +02005959 trace_btrfs_space_reservation(fs_info, "orphan", btrfs_ino(inode),
5960 num_bytes, 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005961 btrfs_block_rsv_release(fs_info, root->orphan_block_rsv, num_bytes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005962}
5963
Miao Xied5c12072013-02-28 10:04:33 +00005964/*
5965 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
5966 * root: the root of the parent directory
5967 * rsv: block reservation
5968 * items: the number of items that we need do reservation
5969 * qgroup_reserved: used to return the reserved size in qgroup
5970 *
5971 * This function is used to reserve the space for snapshot/subvolume
5972 * creation and deletion. Those operations are different with the
5973 * common file/directory operations, they change two fs/file trees
5974 * and root tree, the number of items that the qgroup reserves is
5975 * different with the free space reservation. So we can not use
Nicholas D Steeves01327612016-05-19 21:18:45 -04005976 * the space reservation mechanism in start_transaction().
Miao Xied5c12072013-02-28 10:04:33 +00005977 */
5978int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
5979 struct btrfs_block_rsv *rsv,
5980 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005981 u64 *qgroup_reserved,
5982 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005983{
Miao Xied5c12072013-02-28 10:04:33 +00005984 u64 num_bytes;
5985 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005986 struct btrfs_fs_info *fs_info = root->fs_info;
5987 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005988
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005989 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
Miao Xied5c12072013-02-28 10:04:33 +00005990 /* One for parent inode, two for dir entries */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005991 num_bytes = 3 * fs_info->nodesize;
Jeff Mahoney003d7c52017-01-25 09:50:33 -05005992 ret = btrfs_qgroup_reserve_meta(root, num_bytes, true);
Miao Xied5c12072013-02-28 10:04:33 +00005993 if (ret)
5994 return ret;
5995 } else {
5996 num_bytes = 0;
5997 }
5998
5999 *qgroup_reserved = num_bytes;
6000
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006001 num_bytes = btrfs_calc_trans_metadata_size(fs_info, items);
6002 rsv->space_info = __find_space_info(fs_info,
Miao Xied5c12072013-02-28 10:04:33 +00006003 BTRFS_BLOCK_GROUP_METADATA);
6004 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
6005 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04006006
6007 if (ret == -ENOSPC && use_global_rsv)
Josef Bacik25d609f2016-03-25 13:25:48 -04006008 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, 1);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04006009
Qu Wenruo71741092015-09-08 17:22:41 +08006010 if (ret && *qgroup_reserved)
6011 btrfs_qgroup_free_meta(root, *qgroup_reserved);
Miao Xied5c12072013-02-28 10:04:33 +00006012
6013 return ret;
6014}
6015
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006016void btrfs_subvolume_release_metadata(struct btrfs_fs_info *fs_info,
David Sterba7775c812017-02-10 19:18:18 +01006017 struct btrfs_block_rsv *rsv)
Miao Xied5c12072013-02-28 10:04:33 +00006018{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006019 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006020}
6021
Josef Bacik69fe2d72017-10-19 14:15:57 -04006022static void btrfs_calculate_inode_block_rsv_size(struct btrfs_fs_info *fs_info,
6023 struct btrfs_inode *inode)
Josef Bacik9e0baf62011-07-15 15:16:44 +00006024{
Josef Bacik69fe2d72017-10-19 14:15:57 -04006025 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
6026 u64 reserve_size = 0;
6027 u64 csum_leaves;
6028 unsigned outstanding_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006029
Josef Bacik69fe2d72017-10-19 14:15:57 -04006030 lockdep_assert_held(&inode->lock);
6031 outstanding_extents = inode->outstanding_extents;
6032 if (outstanding_extents)
6033 reserve_size = btrfs_calc_trans_metadata_size(fs_info,
6034 outstanding_extents + 1);
6035 csum_leaves = btrfs_csum_bytes_to_leaves(fs_info,
6036 inode->csum_bytes);
6037 reserve_size += btrfs_calc_trans_metadata_size(fs_info,
6038 csum_leaves);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006039
Josef Bacik69fe2d72017-10-19 14:15:57 -04006040 spin_lock(&block_rsv->lock);
6041 block_rsv->size = reserve_size;
6042 spin_unlock(&block_rsv->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006043}
6044
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006045int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006046{
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006047 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
6048 struct btrfs_root *root = inode->root;
Josef Bacik69fe2d72017-10-19 14:15:57 -04006049 unsigned nr_extents;
Miao Xie08e007d2012-10-16 11:33:38 +00006050 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07006051 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006052 bool delalloc_lock = true;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006053
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006054 /* If we are a free space inode we need to not flush since we will be in
6055 * the middle of a transaction commit. We also don't need the delalloc
6056 * mutex since we won't race with anybody. We need this mostly to make
6057 * lockdep shut its filthy mouth.
Josef Bacikbac357dc2016-07-20 16:48:45 -07006058 *
6059 * If we have a transaction open (can happen if we call truncate_block
6060 * from truncate), then we need FLUSH_LIMIT so we don't deadlock.
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006061 */
6062 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00006063 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006064 delalloc_lock = false;
Josef Bacikbac357dc2016-07-20 16:48:45 -07006065 } else if (current->journal_info) {
6066 flush = BTRFS_RESERVE_FLUSH_LIMIT;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006067 }
Josef Bacikc09544e2011-08-30 10:19:10 -04006068
Miao Xie08e007d2012-10-16 11:33:38 +00006069 if (flush != BTRFS_RESERVE_NO_FLUSH &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006070 btrfs_transaction_in_commit(fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006071 schedule_timeout(1);
6072
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006073 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006074 mutex_lock(&inode->delalloc_mutex);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006075
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006076 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006077
6078 /* Add our new extents and calculate the new rsv size. */
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006079 spin_lock(&inode->lock);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006080 nr_extents = count_max_extents(num_bytes);
Josef Bacik8b62f872017-10-19 14:15:55 -04006081 btrfs_mod_outstanding_extents(inode, nr_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006082 inode->csum_bytes += num_bytes;
6083 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006084 spin_unlock(&inode->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05006085
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006086 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
Qu Wenruo71741092015-09-08 17:22:41 +08006087 ret = btrfs_qgroup_reserve_meta(root,
Jeff Mahoney003d7c52017-01-25 09:50:33 -05006088 nr_extents * fs_info->nodesize, true);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006089 if (ret)
6090 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00006091 }
Arne Jansenc5567232011-09-14 15:44:05 +02006092
Josef Bacik69fe2d72017-10-19 14:15:57 -04006093 ret = btrfs_inode_rsv_refill(inode, flush);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006094 if (unlikely(ret)) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04006095 btrfs_qgroup_free_meta(root,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006096 nr_extents * fs_info->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006097 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006098 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006099
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006100 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006101 mutex_unlock(&inode->delalloc_mutex);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006102 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00006103
6104out_fail:
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006105 spin_lock(&inode->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04006106 nr_extents = count_max_extents(num_bytes);
6107 btrfs_mod_outstanding_extents(inode, -nr_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006108 inode->csum_bytes -= num_bytes;
6109 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006110 spin_unlock(&inode->lock);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006111
Josef Bacik69fe2d72017-10-19 14:15:57 -04006112 btrfs_inode_rsv_release(inode);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006113 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006114 mutex_unlock(&inode->delalloc_mutex);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006115 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006116}
6117
Josef Bacik7709cde2011-08-04 10:25:02 -04006118/**
6119 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
Josef Bacik8b62f872017-10-19 14:15:55 -04006120 * @inode: the inode to release the reservation for.
6121 * @num_bytes: the number of bytes we are releasing.
Josef Bacik7709cde2011-08-04 10:25:02 -04006122 *
6123 * This will release the metadata reservation for an inode. This can be called
6124 * once we complete IO for a given set of bytes to release their metadata
Josef Bacik8b62f872017-10-19 14:15:55 -04006125 * reservations, or on error for the same reason.
Josef Bacik7709cde2011-08-04 10:25:02 -04006126 */
Nikolay Borisov691fa052017-02-20 13:50:42 +02006127void btrfs_delalloc_release_metadata(struct btrfs_inode *inode, u64 num_bytes)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006128{
Nikolay Borisov691fa052017-02-20 13:50:42 +02006129 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006130
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006131 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006132 spin_lock(&inode->lock);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006133 inode->csum_bytes -= num_bytes;
6134 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006135 spin_unlock(&inode->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006136
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006137 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04006138 return;
6139
Josef Bacik69fe2d72017-10-19 14:15:57 -04006140 btrfs_inode_rsv_release(inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006141}
6142
Josef Bacik7709cde2011-08-04 10:25:02 -04006143/**
Josef Bacik8b62f872017-10-19 14:15:55 -04006144 * btrfs_delalloc_release_extents - release our outstanding_extents
6145 * @inode: the inode to balance the reservation for.
6146 * @num_bytes: the number of bytes we originally reserved with
6147 *
6148 * When we reserve space we increase outstanding_extents for the extents we may
6149 * add. Once we've set the range as delalloc or created our ordered extents we
6150 * have outstanding_extents to track the real usage, so we use this to free our
6151 * temporarily tracked outstanding_extents. This _must_ be used in conjunction
6152 * with btrfs_delalloc_reserve_metadata.
6153 */
6154void btrfs_delalloc_release_extents(struct btrfs_inode *inode, u64 num_bytes)
6155{
6156 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
6157 unsigned num_extents;
Josef Bacik8b62f872017-10-19 14:15:55 -04006158
6159 spin_lock(&inode->lock);
6160 num_extents = count_max_extents(num_bytes);
6161 btrfs_mod_outstanding_extents(inode, -num_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006162 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Josef Bacik8b62f872017-10-19 14:15:55 -04006163 spin_unlock(&inode->lock);
6164
Josef Bacik8b62f872017-10-19 14:15:55 -04006165 if (btrfs_is_testing(fs_info))
6166 return;
6167
Josef Bacik69fe2d72017-10-19 14:15:57 -04006168 btrfs_inode_rsv_release(inode);
Josef Bacik8b62f872017-10-19 14:15:55 -04006169}
6170
6171/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006172 * btrfs_delalloc_reserve_space - reserve data and metadata space for
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006173 * delalloc
6174 * @inode: inode we're writing to
6175 * @start: start range we are writing to
6176 * @len: how long the range we are writing to
Qu Wenruo364ecf32017-02-27 15:10:38 +08006177 * @reserved: mandatory parameter, record actually reserved qgroup ranges of
6178 * current reservation.
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006179 *
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006180 * This will do the following things
6181 *
6182 * o reserve space in data space info for num bytes
6183 * and reserve precious corresponding qgroup space
6184 * (Done in check_data_free_space)
6185 *
6186 * o reserve space for metadata space, based on the number of outstanding
6187 * extents and how much csums will be needed
6188 * also reserve metadata space in a per root over-reserve method.
6189 * o add to the inodes->delalloc_bytes
6190 * o add it to the fs_info's delalloc inodes list.
6191 * (Above 3 all done in delalloc_reserve_metadata)
6192 *
6193 * Return 0 for success
6194 * Return <0 for error(-ENOSPC or -EQUOT)
6195 */
Qu Wenruo364ecf32017-02-27 15:10:38 +08006196int btrfs_delalloc_reserve_space(struct inode *inode,
6197 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006198{
6199 int ret;
6200
Qu Wenruo364ecf32017-02-27 15:10:38 +08006201 ret = btrfs_check_data_free_space(inode, reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006202 if (ret < 0)
6203 return ret;
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006204 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode), len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006205 if (ret < 0)
Qu Wenruobc42bda2017-02-27 15:10:39 +08006206 btrfs_free_reserved_data_space(inode, *reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006207 return ret;
6208}
6209
6210/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006211 * btrfs_delalloc_release_space - release data and metadata space for delalloc
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006212 * @inode: inode we're releasing space for
6213 * @start: start position of the space already reserved
6214 * @len: the len of the space already reserved
Josef Bacik8b62f872017-10-19 14:15:55 -04006215 * @release_bytes: the len of the space we consumed or didn't use
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006216 *
6217 * This function will release the metadata space that was not used and will
6218 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
6219 * list if there are no delalloc bytes left.
6220 * Also it will handle the qgroup reserved space.
6221 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08006222void btrfs_delalloc_release_space(struct inode *inode,
Josef Bacik8b62f872017-10-19 14:15:55 -04006223 struct extent_changeset *reserved,
6224 u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006225{
Nikolay Borisov691fa052017-02-20 13:50:42 +02006226 btrfs_delalloc_release_metadata(BTRFS_I(inode), len);
Qu Wenruobc42bda2017-02-27 15:10:39 +08006227 btrfs_free_reserved_data_space(inode, reserved, start, len);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006228}
6229
Josef Bacikce93ec52014-11-17 15:45:48 -05006230static int update_block_group(struct btrfs_trans_handle *trans,
Jeff Mahoney6202df62016-06-22 18:54:22 -04006231 struct btrfs_fs_info *info, u64 bytenr,
Josef Bacikce93ec52014-11-17 15:45:48 -05006232 u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04006233{
Josef Bacik0af3d002010-06-21 14:48:16 -04006234 struct btrfs_block_group_cache *cache = NULL;
Chris Masondb945352007-10-15 16:15:53 -04006235 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006236 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04006237 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04006238 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04006239
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006240 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00006241 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02006242 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006243 if (alloc)
6244 old_val += num_bytes;
6245 else
6246 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02006247 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00006248 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006249
Chris Masond3977122009-01-05 21:25:51 -05006250 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04006251 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006252 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006253 return -ENOENT;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006254 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
6255 BTRFS_BLOCK_GROUP_RAID1 |
6256 BTRFS_BLOCK_GROUP_RAID10))
6257 factor = 2;
6258 else
6259 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04006260 /*
6261 * If this block group has free space cache written out, we
6262 * need to make sure to load it if we are removing space. This
6263 * is because we need the unpinning stage to actually add the
6264 * space back to the block group, otherwise we will leak space.
6265 */
6266 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00006267 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04006268
Chris Masondb945352007-10-15 16:15:53 -04006269 byte_in_group = bytenr - cache->key.objectid;
6270 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04006271
Josef Bacik25179202008-10-29 14:49:05 -04006272 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04006273 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04006274
Jeff Mahoney6202df62016-06-22 18:54:22 -04006275 if (btrfs_test_opt(info, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04006276 cache->disk_cache_state < BTRFS_DC_CLEAR)
6277 cache->disk_cache_state = BTRFS_DC_CLEAR;
6278
Chris Mason9078a3e2007-04-26 16:46:15 -04006279 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04006280 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04006281 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04006282 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006283 btrfs_set_block_group_used(&cache->item, old_val);
6284 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006285 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006286 cache->space_info->bytes_used += num_bytes;
6287 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04006288 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006289 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04006290 } else {
Chris Masondb945352007-10-15 16:15:53 -04006291 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00006292 btrfs_set_block_group_used(&cache->item, old_val);
6293 cache->pinned += num_bytes;
6294 cache->space_info->bytes_pinned += num_bytes;
6295 cache->space_info->bytes_used -= num_bytes;
6296 cache->space_info->disk_used -= num_bytes * factor;
6297 spin_unlock(&cache->lock);
6298 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04006299
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006300 trace_btrfs_space_reservation(info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006301 cache->space_info->flags,
6302 num_bytes, 1);
Omar Sandovald7eae342017-06-06 16:45:31 -07006303 percpu_counter_add(&cache->space_info->total_bytes_pinned,
6304 num_bytes);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006305 set_extent_dirty(info->pinned_extents,
6306 bytenr, bytenr + num_bytes - 1,
6307 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04006308 }
Chris Mason1bbc6212015-04-06 12:46:08 -07006309
6310 spin_lock(&trans->transaction->dirty_bgs_lock);
6311 if (list_empty(&cache->dirty_list)) {
6312 list_add_tail(&cache->dirty_list,
6313 &trans->transaction->dirty_bgs);
6314 trans->transaction->num_dirty_bgs++;
6315 btrfs_get_block_group(cache);
6316 }
6317 spin_unlock(&trans->transaction->dirty_bgs_lock);
6318
Filipe Manana036a9342015-11-23 15:25:16 +00006319 /*
6320 * No longer have used bytes in this block group, queue it for
6321 * deletion. We do this after adding the block group to the
6322 * dirty list to avoid races between cleaner kthread and space
6323 * cache writeout.
6324 */
6325 if (!alloc && old_val == 0) {
6326 spin_lock(&info->unused_bgs_lock);
6327 if (list_empty(&cache->bg_list)) {
6328 btrfs_get_block_group(cache);
6329 list_add_tail(&cache->bg_list,
6330 &info->unused_bgs);
6331 }
6332 spin_unlock(&info->unused_bgs_lock);
6333 }
6334
Chris Masonfa9c0d792009-04-03 09:47:43 -04006335 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04006336 total -= num_bytes;
6337 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006338 }
6339 return 0;
6340}
Chris Mason6324fbf2008-03-24 15:01:59 -04006341
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006342static u64 first_logical_byte(struct btrfs_fs_info *fs_info, u64 search_start)
Chris Masona061fc82008-05-07 11:43:44 -04006343{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006344 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05006345 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006346
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006347 spin_lock(&fs_info->block_group_cache_lock);
6348 bytenr = fs_info->first_logical_byte;
6349 spin_unlock(&fs_info->block_group_cache_lock);
Liu Boa1897fd2012-12-27 09:01:23 +00006350
6351 if (bytenr < (u64)-1)
6352 return bytenr;
6353
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006354 cache = btrfs_lookup_first_block_group(fs_info, search_start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006355 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04006356 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006357
Yan Zhengd2fb3432008-12-11 16:30:39 -05006358 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006359 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05006360
6361 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04006362}
6363
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006364static int pin_down_extent(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006365 struct btrfs_block_group_cache *cache,
6366 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05006367{
Yan Zheng11833d62009-09-11 16:11:19 -04006368 spin_lock(&cache->space_info->lock);
6369 spin_lock(&cache->lock);
6370 cache->pinned += num_bytes;
6371 cache->space_info->bytes_pinned += num_bytes;
6372 if (reserved) {
6373 cache->reserved -= num_bytes;
6374 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05006375 }
Yan Zheng11833d62009-09-11 16:11:19 -04006376 spin_unlock(&cache->lock);
6377 spin_unlock(&cache->space_info->lock);
6378
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006379 trace_btrfs_space_reservation(fs_info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006380 cache->space_info->flags, num_bytes, 1);
Omar Sandoval4da8b762017-06-06 16:45:28 -07006381 percpu_counter_add(&cache->space_info->total_bytes_pinned, num_bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006382 set_extent_dirty(fs_info->pinned_extents, bytenr,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006383 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05006384 return 0;
6385}
Chris Mason9078a3e2007-04-26 16:46:15 -04006386
Yan, Zhengf0486c62010-05-16 10:46:25 -04006387/*
6388 * this function must be called within transaction
6389 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006390int btrfs_pin_extent(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006391 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04006392{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006393 struct btrfs_block_group_cache *cache;
6394
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006395 cache = btrfs_lookup_block_group(fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006396 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006397
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006398 pin_down_extent(fs_info, cache, bytenr, num_bytes, reserved);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006399
6400 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04006401 return 0;
6402}
Zheng Yane8569812008-09-26 10:05:48 -04006403
Yan, Zhengf0486c62010-05-16 10:46:25 -04006404/*
Chris Masone688b7252011-10-31 20:52:39 -04006405 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04006406 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006407int btrfs_pin_extent_for_log_replay(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04006408 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006409{
Chris Masone688b7252011-10-31 20:52:39 -04006410 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04006411 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04006412
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006413 cache = btrfs_lookup_block_group(fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006414 if (!cache)
6415 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04006416
6417 /*
6418 * pull in the free space cache (if any) so that our pin
6419 * removes the free space from the cache. We have load_only set
6420 * to one because the slow code to read in the free extents does check
6421 * the pinned extents.
6422 */
Liu Bof6373bf2012-12-27 09:01:18 +00006423 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04006424
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006425 pin_down_extent(fs_info, cache, bytenr, num_bytes, 0);
Chris Masone688b7252011-10-31 20:52:39 -04006426
6427 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04006428 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04006429 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006430 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04006431}
6432
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006433static int __exclude_logged_extent(struct btrfs_fs_info *fs_info,
6434 u64 start, u64 num_bytes)
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006435{
6436 int ret;
6437 struct btrfs_block_group_cache *block_group;
6438 struct btrfs_caching_control *caching_ctl;
6439
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006440 block_group = btrfs_lookup_block_group(fs_info, start);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006441 if (!block_group)
6442 return -EINVAL;
6443
6444 cache_block_group(block_group, 0);
6445 caching_ctl = get_caching_control(block_group);
6446
6447 if (!caching_ctl) {
6448 /* Logic error */
6449 BUG_ON(!block_group_cache_done(block_group));
6450 ret = btrfs_remove_free_space(block_group, start, num_bytes);
6451 } else {
6452 mutex_lock(&caching_ctl->mutex);
6453
6454 if (start >= caching_ctl->progress) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006455 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006456 } else if (start + num_bytes <= caching_ctl->progress) {
6457 ret = btrfs_remove_free_space(block_group,
6458 start, num_bytes);
6459 } else {
6460 num_bytes = caching_ctl->progress - start;
6461 ret = btrfs_remove_free_space(block_group,
6462 start, num_bytes);
6463 if (ret)
6464 goto out_lock;
6465
6466 num_bytes = (start + num_bytes) -
6467 caching_ctl->progress;
6468 start = caching_ctl->progress;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006469 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006470 }
6471out_lock:
6472 mutex_unlock(&caching_ctl->mutex);
6473 put_caching_control(caching_ctl);
6474 }
6475 btrfs_put_block_group(block_group);
6476 return ret;
6477}
6478
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006479int btrfs_exclude_logged_extents(struct btrfs_fs_info *fs_info,
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006480 struct extent_buffer *eb)
6481{
6482 struct btrfs_file_extent_item *item;
6483 struct btrfs_key key;
6484 int found_type;
6485 int i;
6486
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006487 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS))
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006488 return 0;
6489
6490 for (i = 0; i < btrfs_header_nritems(eb); i++) {
6491 btrfs_item_key_to_cpu(eb, &key, i);
6492 if (key.type != BTRFS_EXTENT_DATA_KEY)
6493 continue;
6494 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
6495 found_type = btrfs_file_extent_type(eb, item);
6496 if (found_type == BTRFS_FILE_EXTENT_INLINE)
6497 continue;
6498 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
6499 continue;
6500 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
6501 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006502 __exclude_logged_extent(fs_info, key.objectid, key.offset);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006503 }
6504
6505 return 0;
6506}
6507
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006508static void
6509btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg)
6510{
6511 atomic_inc(&bg->reservations);
6512}
6513
6514void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
6515 const u64 start)
6516{
6517 struct btrfs_block_group_cache *bg;
6518
6519 bg = btrfs_lookup_block_group(fs_info, start);
6520 ASSERT(bg);
6521 if (atomic_dec_and_test(&bg->reservations))
6522 wake_up_atomic_t(&bg->reservations);
6523 btrfs_put_block_group(bg);
6524}
6525
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006526void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg)
6527{
6528 struct btrfs_space_info *space_info = bg->space_info;
6529
6530 ASSERT(bg->ro);
6531
6532 if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA))
6533 return;
6534
6535 /*
6536 * Our block group is read only but before we set it to read only,
6537 * some task might have had allocated an extent from it already, but it
6538 * has not yet created a respective ordered extent (and added it to a
6539 * root's list of ordered extents).
6540 * Therefore wait for any task currently allocating extents, since the
6541 * block group's reservations counter is incremented while a read lock
6542 * on the groups' semaphore is held and decremented after releasing
6543 * the read access on that semaphore and creating the ordered extent.
6544 */
6545 down_write(&space_info->groups_sem);
6546 up_write(&space_info->groups_sem);
6547
David Howells5e4def22017-11-02 15:27:44 +00006548 wait_on_atomic_t(&bg->reservations, atomic_t_wait,
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006549 TASK_UNINTERRUPTIBLE);
6550}
6551
Josef Bacikfb25e912011-07-26 17:00:46 -04006552/**
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006553 * btrfs_add_reserved_bytes - update the block_group and space info counters
Josef Bacikfb25e912011-07-26 17:00:46 -04006554 * @cache: The cache we are manipulating
Wang Xiaoguang18513092016-07-25 15:51:40 +08006555 * @ram_bytes: The number of bytes of file content, and will be same to
6556 * @num_bytes except for the compress path.
Josef Bacikfb25e912011-07-26 17:00:46 -04006557 * @num_bytes: The number of bytes in question
Miao Xiee570fd22014-06-19 10:42:50 +08006558 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04006559 *
Xiaoguang Wang745699e2016-09-23 12:38:50 +08006560 * This is called by the allocator when it reserves space. If this is a
6561 * reservation and the block group has become read only we cannot make the
6562 * reservation and return -EAGAIN, otherwise this function always succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04006563 */
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006564static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
Wang Xiaoguang18513092016-07-25 15:51:40 +08006565 u64 ram_bytes, u64 num_bytes, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006566{
Josef Bacikfb25e912011-07-26 17:00:46 -04006567 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006568 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006569
Josef Bacikfb25e912011-07-26 17:00:46 -04006570 spin_lock(&space_info->lock);
6571 spin_lock(&cache->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006572 if (cache->ro) {
6573 ret = -EAGAIN;
Josef Bacikfb25e912011-07-26 17:00:46 -04006574 } else {
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006575 cache->reserved += num_bytes;
6576 space_info->bytes_reserved += num_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006577
Wang Xiaoguang18513092016-07-25 15:51:40 +08006578 trace_btrfs_space_reservation(cache->fs_info,
6579 "space_info", space_info->flags,
6580 ram_bytes, 0);
6581 space_info->bytes_may_use -= ram_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006582 if (delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006583 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006584 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006585 spin_unlock(&cache->lock);
6586 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006587 return ret;
6588}
6589
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006590/**
6591 * btrfs_free_reserved_bytes - update the block_group and space info counters
6592 * @cache: The cache we are manipulating
6593 * @num_bytes: The number of bytes in question
6594 * @delalloc: The blocks are allocated for the delalloc write
6595 *
6596 * This is called by somebody who is freeing space that was never actually used
6597 * on disk. For example if you reserve some space for a new leaf in transaction
6598 * A and before transaction A commits you free that leaf, you call this with
6599 * reserve set to 0 in order to clear the reservation.
6600 */
6601
6602static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
6603 u64 num_bytes, int delalloc)
6604{
6605 struct btrfs_space_info *space_info = cache->space_info;
6606 int ret = 0;
6607
6608 spin_lock(&space_info->lock);
6609 spin_lock(&cache->lock);
6610 if (cache->ro)
6611 space_info->bytes_readonly += num_bytes;
6612 cache->reserved -= num_bytes;
6613 space_info->bytes_reserved -= num_bytes;
6614
6615 if (delalloc)
6616 cache->delalloc_bytes -= num_bytes;
6617 spin_unlock(&cache->lock);
6618 spin_unlock(&space_info->lock);
6619 return ret;
6620}
David Sterba8b74c032017-02-10 19:20:56 +01006621void btrfs_prepare_extent_commit(struct btrfs_fs_info *fs_info)
Yan Zheng11833d62009-09-11 16:11:19 -04006622{
Yan Zheng11833d62009-09-11 16:11:19 -04006623 struct btrfs_caching_control *next;
6624 struct btrfs_caching_control *caching_ctl;
6625 struct btrfs_block_group_cache *cache;
6626
Josef Bacik9e351cc2014-03-13 15:42:13 -04006627 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04006628
6629 list_for_each_entry_safe(caching_ctl, next,
6630 &fs_info->caching_block_groups, list) {
6631 cache = caching_ctl->block_group;
6632 if (block_group_cache_done(cache)) {
6633 cache->last_byte_to_unpin = (u64)-1;
6634 list_del_init(&caching_ctl->list);
6635 put_caching_control(caching_ctl);
6636 } else {
6637 cache->last_byte_to_unpin = caching_ctl->progress;
6638 }
6639 }
6640
6641 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6642 fs_info->pinned_extents = &fs_info->freed_extents[1];
6643 else
6644 fs_info->pinned_extents = &fs_info->freed_extents[0];
6645
Josef Bacik9e351cc2014-03-13 15:42:13 -04006646 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006647
6648 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04006649}
6650
Josef Bacikc759c4e2015-10-02 15:25:10 -04006651/*
6652 * Returns the free cluster for the given space info and sets empty_cluster to
6653 * what it should be based on the mount options.
6654 */
6655static struct btrfs_free_cluster *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006656fetch_cluster_info(struct btrfs_fs_info *fs_info,
6657 struct btrfs_space_info *space_info, u64 *empty_cluster)
Josef Bacikc759c4e2015-10-02 15:25:10 -04006658{
6659 struct btrfs_free_cluster *ret = NULL;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006660
6661 *empty_cluster = 0;
6662 if (btrfs_mixed_space_info(space_info))
6663 return ret;
6664
Josef Bacikc759c4e2015-10-02 15:25:10 -04006665 if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006666 ret = &fs_info->meta_alloc_cluster;
Hans van Kranenburg583b7232017-07-28 08:31:28 +02006667 if (btrfs_test_opt(fs_info, SSD))
6668 *empty_cluster = SZ_2M;
6669 else
Byongho Leeee221842015-12-15 01:42:10 +09006670 *empty_cluster = SZ_64K;
Hans van Kranenburg583b7232017-07-28 08:31:28 +02006671 } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) &&
6672 btrfs_test_opt(fs_info, SSD_SPREAD)) {
6673 *empty_cluster = SZ_2M;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006674 ret = &fs_info->data_alloc_cluster;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006675 }
6676
6677 return ret;
6678}
6679
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006680static int unpin_extent_range(struct btrfs_fs_info *fs_info,
6681 u64 start, u64 end,
Filipe Manana678886b2014-12-07 21:31:47 +00006682 const bool return_free_space)
Yan Zheng11833d62009-09-11 16:11:19 -04006683{
Yan Zheng11833d62009-09-11 16:11:19 -04006684 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04006685 struct btrfs_space_info *space_info;
6686 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006687 struct btrfs_free_cluster *cluster = NULL;
Yan Zheng11833d62009-09-11 16:11:19 -04006688 u64 len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006689 u64 total_unpinned = 0;
6690 u64 empty_cluster = 0;
Josef Bacik7b398f82012-10-22 15:52:28 -04006691 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04006692
6693 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04006694 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04006695 if (!cache ||
6696 start >= cache->key.objectid + cache->key.offset) {
6697 if (cache)
6698 btrfs_put_block_group(cache);
Josef Bacikc759c4e2015-10-02 15:25:10 -04006699 total_unpinned = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006700 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006701 BUG_ON(!cache); /* Logic error */
Josef Bacikc759c4e2015-10-02 15:25:10 -04006702
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006703 cluster = fetch_cluster_info(fs_info,
Josef Bacikc759c4e2015-10-02 15:25:10 -04006704 cache->space_info,
6705 &empty_cluster);
6706 empty_cluster <<= 1;
Yan Zheng11833d62009-09-11 16:11:19 -04006707 }
6708
6709 len = cache->key.objectid + cache->key.offset - start;
6710 len = min(len, end + 1 - start);
6711
6712 if (start < cache->last_byte_to_unpin) {
6713 len = min(len, cache->last_byte_to_unpin - start);
Filipe Manana678886b2014-12-07 21:31:47 +00006714 if (return_free_space)
6715 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04006716 }
Josef Bacik25179202008-10-29 14:49:05 -04006717
Yan, Zhengf0486c62010-05-16 10:46:25 -04006718 start += len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006719 total_unpinned += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006720 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006721
Josef Bacikc759c4e2015-10-02 15:25:10 -04006722 /*
6723 * If this space cluster has been marked as fragmented and we've
6724 * unpinned enough in this block group to potentially allow a
6725 * cluster to be created inside of it go ahead and clear the
6726 * fragmented check.
6727 */
6728 if (cluster && cluster->fragmented &&
6729 total_unpinned > empty_cluster) {
6730 spin_lock(&cluster->lock);
6731 cluster->fragmented = 0;
6732 spin_unlock(&cluster->lock);
6733 }
6734
Josef Bacik7b398f82012-10-22 15:52:28 -04006735 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006736 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006737 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006738 space_info->bytes_pinned -= len;
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006739
6740 trace_btrfs_space_reservation(fs_info, "pinned",
6741 space_info->flags, len, 0);
Josef Bacik4f4db212015-09-29 11:40:47 -04006742 space_info->max_extent_size = 0;
Liu Bod288db52014-07-02 16:58:01 +08006743 percpu_counter_add(&space_info->total_bytes_pinned, -len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006744 if (cache->ro) {
6745 space_info->bytes_readonly += len;
6746 readonly = true;
6747 }
Josef Bacik25179202008-10-29 14:49:05 -04006748 spin_unlock(&cache->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006749 if (!readonly && return_free_space &&
6750 global_rsv->space_info == space_info) {
6751 u64 to_add = len;
Nikolay Borisov92ac58e2017-08-17 10:52:28 +03006752
Josef Bacik7b398f82012-10-22 15:52:28 -04006753 spin_lock(&global_rsv->lock);
6754 if (!global_rsv->full) {
Josef Bacik957780e2016-05-17 13:30:55 -04006755 to_add = min(len, global_rsv->size -
6756 global_rsv->reserved);
6757 global_rsv->reserved += to_add;
6758 space_info->bytes_may_use += to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006759 if (global_rsv->reserved >= global_rsv->size)
6760 global_rsv->full = 1;
Josef Bacik957780e2016-05-17 13:30:55 -04006761 trace_btrfs_space_reservation(fs_info,
6762 "space_info",
6763 space_info->flags,
6764 to_add, 1);
6765 len -= to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006766 }
6767 spin_unlock(&global_rsv->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006768 /* Add to any tickets we may have */
6769 if (len)
6770 space_info_add_new_bytes(fs_info, space_info,
6771 len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006772 }
6773 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006774 }
6775
6776 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006777 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006778 return 0;
6779}
6780
6781int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006782 struct btrfs_fs_info *fs_info)
Chris Masona28ec192007-03-06 20:08:01 -05006783{
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006784 struct btrfs_block_group_cache *block_group, *tmp;
6785 struct list_head *deleted_bgs;
Yan Zheng11833d62009-09-11 16:11:19 -04006786 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006787 u64 start;
6788 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006789 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006790
Yan Zheng11833d62009-09-11 16:11:19 -04006791 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6792 unpin = &fs_info->freed_extents[1];
6793 else
6794 unpin = &fs_info->freed_extents[0];
6795
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006796 while (!trans->aborted) {
Filipe Mananad4b450c2015-01-29 19:18:25 +00006797 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006798 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04006799 EXTENT_DIRTY, NULL);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006800 if (ret) {
6801 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006802 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006803 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006804
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006805 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006806 ret = btrfs_discard_extent(fs_info, start,
Li Dongyang5378e602011-03-24 10:24:27 +00006807 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006808
David Sterbaaf6f8f62016-04-26 23:54:39 +02006809 clear_extent_dirty(unpin, start, end);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006810 unpin_extent_range(fs_info, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006811 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masonb9473432009-03-13 11:00:37 -04006812 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006813 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006814
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006815 /*
6816 * Transaction is finished. We don't need the lock anymore. We
6817 * do need to clean up the block groups in case of a transaction
6818 * abort.
6819 */
6820 deleted_bgs = &trans->transaction->deleted_bgs;
6821 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
6822 u64 trimmed = 0;
6823
6824 ret = -EROFS;
6825 if (!trans->aborted)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006826 ret = btrfs_discard_extent(fs_info,
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006827 block_group->key.objectid,
6828 block_group->key.offset,
6829 &trimmed);
6830
6831 list_del_init(&block_group->bg_list);
6832 btrfs_put_block_group_trimming(block_group);
6833 btrfs_put_block_group(block_group);
6834
6835 if (ret) {
6836 const char *errstr = btrfs_decode_error(ret);
6837 btrfs_warn(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02006838 "discard failed while removing blockgroup: errno=%d %s",
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006839 ret, errstr);
6840 }
6841 }
6842
Chris Masone20d96d2007-03-22 12:13:20 -04006843 return 0;
6844}
6845
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006846static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006847 struct btrfs_fs_info *info,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006848 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006849 u64 root_objectid, u64 owner_objectid,
6850 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006851 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006852{
Chris Masone2fa7222007-03-12 16:22:34 -04006853 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006854 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006855 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006856 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006857 struct btrfs_extent_item *ei;
6858 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006859 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006860 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006861 int extent_slot = 0;
6862 int found_extent = 0;
6863 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006864 u32 item_size;
6865 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006866 u64 bytenr = node->bytenr;
6867 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006868 int last_ref = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006869 bool skinny_metadata = btrfs_fs_incompat(info, SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006870
Chris Mason5caf2a02007-04-02 11:20:42 -04006871 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006872 if (!path)
6873 return -ENOMEM;
6874
David Sterbae4058b52015-11-27 16:31:35 +01006875 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04006876 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006877
6878 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6879 BUG_ON(!is_data && refs_to_drop != 1);
6880
Josef Bacik3173a182013-03-07 14:22:04 -05006881 if (is_data)
Thomas Meyer897ca812017-10-07 16:02:21 +02006882 skinny_metadata = false;
Josef Bacik3173a182013-03-07 14:22:04 -05006883
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05006884 ret = lookup_extent_backref(trans, info, path, &iref,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006885 bytenr, num_bytes, parent,
6886 root_objectid, owner_objectid,
6887 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006888 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006889 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006890 while (extent_slot >= 0) {
6891 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006892 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006893 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006894 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006895 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6896 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006897 found_extent = 1;
6898 break;
6899 }
Josef Bacik3173a182013-03-07 14:22:04 -05006900 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6901 key.offset == owner_objectid) {
6902 found_extent = 1;
6903 break;
6904 }
Chris Mason952fcca2008-02-18 16:33:44 -05006905 if (path->slots[0] - extent_slot > 5)
6906 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006907 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006908 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006909#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6910 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
6911 if (found_extent && item_size < sizeof(*ei))
6912 found_extent = 0;
6913#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04006914 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006915 BUG_ON(iref);
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05006916 ret = remove_extent_backref(trans, info, path, NULL,
6917 refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006918 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006919 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006920 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006921 goto out;
6922 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006923 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04006924 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006925
6926 key.objectid = bytenr;
6927 key.type = BTRFS_EXTENT_ITEM_KEY;
6928 key.offset = num_bytes;
6929
Josef Bacik3173a182013-03-07 14:22:04 -05006930 if (!is_data && skinny_metadata) {
6931 key.type = BTRFS_METADATA_ITEM_KEY;
6932 key.offset = owner_objectid;
6933 }
6934
Zheng Yan31840ae2008-09-23 13:14:14 -04006935 ret = btrfs_search_slot(trans, extent_root,
6936 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05006937 if (ret > 0 && skinny_metadata && path->slots[0]) {
6938 /*
6939 * Couldn't find our skinny metadata item,
6940 * see if we have ye olde extent item.
6941 */
6942 path->slots[0]--;
6943 btrfs_item_key_to_cpu(path->nodes[0], &key,
6944 path->slots[0]);
6945 if (key.objectid == bytenr &&
6946 key.type == BTRFS_EXTENT_ITEM_KEY &&
6947 key.offset == num_bytes)
6948 ret = 0;
6949 }
6950
6951 if (ret > 0 && skinny_metadata) {
6952 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01006953 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05006954 key.type = BTRFS_EXTENT_ITEM_KEY;
6955 key.offset = num_bytes;
6956 btrfs_release_path(path);
6957 ret = btrfs_search_slot(trans, extent_root,
6958 &key, path, -1, 1);
6959 }
6960
Josef Bacikf3465ca2008-11-12 14:19:50 -05006961 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006962 btrfs_err(info,
6963 "umm, got %d back from search, was looking for %llu",
6964 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00006965 if (ret > 0)
David Sterbaa4f78752017-06-29 18:37:49 +02006966 btrfs_print_leaf(path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006967 }
David Sterba005d6422012-09-18 07:52:32 -06006968 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006969 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006970 goto out;
6971 }
Zheng Yan31840ae2008-09-23 13:14:14 -04006972 extent_slot = path->slots[0];
6973 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306974 } else if (WARN_ON(ret == -ENOENT)) {
David Sterbaa4f78752017-06-29 18:37:49 +02006975 btrfs_print_leaf(path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006976 btrfs_err(info,
6977 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006978 bytenr, parent, root_objectid, owner_objectid,
6979 owner_offset);
Jeff Mahoney66642832016-06-10 18:19:25 -04006980 btrfs_abort_transaction(trans, ret);
Josef Bacikc4a050b2014-03-14 16:36:53 -04006981 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006982 } else {
Jeff Mahoney66642832016-06-10 18:19:25 -04006983 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006984 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05006985 }
Chris Mason5f39d392007-10-15 16:14:19 -04006986
6987 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006988 item_size = btrfs_item_size_nr(leaf, extent_slot);
6989#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6990 if (item_size < sizeof(*ei)) {
6991 BUG_ON(found_extent || extent_slot != path->slots[0]);
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05006992 ret = convert_extent_item_v0(trans, info, path, owner_objectid,
6993 0);
David Sterba005d6422012-09-18 07:52:32 -06006994 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006995 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006996 goto out;
6997 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006998
David Sterbab3b4aa72011-04-21 01:20:15 +02006999 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007000 path->leave_spinning = 1;
7001
7002 key.objectid = bytenr;
7003 key.type = BTRFS_EXTENT_ITEM_KEY;
7004 key.offset = num_bytes;
7005
7006 ret = btrfs_search_slot(trans, extent_root, &key, path,
7007 -1, 1);
7008 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007009 btrfs_err(info,
7010 "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007011 ret, bytenr);
David Sterbaa4f78752017-06-29 18:37:49 +02007012 btrfs_print_leaf(path->nodes[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007013 }
David Sterba005d6422012-09-18 07:52:32 -06007014 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007015 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007016 goto out;
7017 }
7018
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007019 extent_slot = path->slots[0];
7020 leaf = path->nodes[0];
7021 item_size = btrfs_item_size_nr(leaf, extent_slot);
7022 }
7023#endif
7024 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05007025 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04007026 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05007027 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
7028 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007029 struct btrfs_tree_block_info *bi;
7030 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
7031 bi = (struct btrfs_tree_block_info *)(ei + 1);
7032 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05007033 }
7034
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007035 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04007036 if (refs < refs_to_drop) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007037 btrfs_err(info,
7038 "trying to drop %d refs but we only have %Lu for bytenr %Lu",
7039 refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04007040 ret = -EINVAL;
Jeff Mahoney66642832016-06-10 18:19:25 -04007041 btrfs_abort_transaction(trans, ret);
Josef Bacik32b02532013-04-24 16:38:50 -04007042 goto out;
7043 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007044 refs -= refs_to_drop;
7045
7046 if (refs > 0) {
7047 if (extent_op)
7048 __run_delayed_extent_op(extent_op, leaf, ei);
7049 /*
7050 * In the case of inline back ref, reference count will
7051 * be updated by remove_extent_backref
7052 */
7053 if (iref) {
7054 BUG_ON(!found_extent);
7055 } else {
7056 btrfs_set_extent_refs(leaf, ei, refs);
7057 btrfs_mark_buffer_dirty(leaf);
7058 }
7059 if (found_extent) {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05007060 ret = remove_extent_backref(trans, info, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007061 iref, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07007062 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06007063 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007064 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007065 goto out;
7066 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007067 }
7068 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007069 if (found_extent) {
7070 BUG_ON(is_data && refs_to_drop !=
Zhaolei9ed0dea2015-08-06 22:16:24 +08007071 extent_data_ref_count(path, iref));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007072 if (iref) {
7073 BUG_ON(path->slots[0] != extent_slot);
7074 } else {
7075 BUG_ON(path->slots[0] != extent_slot + 1);
7076 path->slots[0] = extent_slot;
7077 num_to_del = 2;
7078 }
Chris Mason78fae272007-03-25 11:35:08 -04007079 }
Chris Masonb9473432009-03-13 11:00:37 -04007080
Josef Bacikfcebe452014-05-13 17:30:47 -07007081 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05007082 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
7083 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06007084 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007085 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007086 goto out;
7087 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007088 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01007089
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007090 if (is_data) {
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04007091 ret = btrfs_del_csums(trans, info, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06007092 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007093 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007094 goto out;
7095 }
Chris Mason459931e2008-12-10 09:10:46 -05007096 }
7097
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007098 ret = add_to_free_space_tree(trans, info, bytenr, num_bytes);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007099 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007100 btrfs_abort_transaction(trans, ret);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007101 goto out;
7102 }
7103
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007104 ret = update_block_group(trans, info, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06007105 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007106 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007107 goto out;
7108 }
Chris Masona28ec192007-03-06 20:08:01 -05007109 }
Josef Bacikfcebe452014-05-13 17:30:47 -07007110 btrfs_release_path(path);
7111
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007112out:
Chris Mason5caf2a02007-04-02 11:20:42 -04007113 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05007114 return ret;
7115}
7116
7117/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007118 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04007119 * delayed ref for that extent as well. This searches the delayed ref tree for
7120 * a given extent, and if there are no other delayed refs to be processed, it
7121 * removes it from the tree.
7122 */
7123static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007124 u64 bytenr)
Chris Mason1887be62009-03-13 10:11:24 -04007125{
7126 struct btrfs_delayed_ref_head *head;
7127 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007128 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04007129
7130 delayed_refs = &trans->transaction->delayed_refs;
7131 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08007132 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Chris Mason1887be62009-03-13 10:11:24 -04007133 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08007134 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04007135
Josef Bacikd7df2c72014-01-23 09:21:38 -05007136 spin_lock(&head->lock);
Josef Bacik0e0adbc2017-10-19 14:16:00 -04007137 if (!RB_EMPTY_ROOT(&head->ref_tree))
Chris Mason1887be62009-03-13 10:11:24 -04007138 goto out;
7139
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007140 if (head->extent_op) {
7141 if (!head->must_insert_reserved)
7142 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00007143 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007144 head->extent_op = NULL;
7145 }
7146
Chris Mason1887be62009-03-13 10:11:24 -04007147 /*
7148 * waiting for the lock here would deadlock. If someone else has it
7149 * locked they are already in the process of dropping it anyway
7150 */
7151 if (!mutex_trylock(&head->mutex))
7152 goto out;
7153
7154 /*
7155 * at this point we have a head with no other entries. Go
7156 * ahead and process it.
7157 */
Liu Boc46effa2013-10-14 12:59:45 +08007158 rb_erase(&head->href_node, &delayed_refs->href_root);
Josef Bacikd2788502017-09-29 15:43:57 -04007159 RB_CLEAR_NODE(&head->href_node);
Josef Bacikd7df2c72014-01-23 09:21:38 -05007160 atomic_dec(&delayed_refs->num_entries);
Chris Mason1887be62009-03-13 10:11:24 -04007161
7162 /*
7163 * we don't take a ref on the node because we're removing it from the
7164 * tree, so we just steal the ref the tree was holding.
7165 */
Chris Masonc3e69d52009-03-13 10:17:05 -04007166 delayed_refs->num_heads--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05007167 if (head->processing == 0)
Chris Masonc3e69d52009-03-13 10:17:05 -04007168 delayed_refs->num_heads_ready--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05007169 head->processing = 0;
7170 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04007171 spin_unlock(&delayed_refs->lock);
7172
Yan, Zhengf0486c62010-05-16 10:46:25 -04007173 BUG_ON(head->extent_op);
7174 if (head->must_insert_reserved)
7175 ret = 1;
7176
7177 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -04007178 btrfs_put_delayed_ref_head(head);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007179 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04007180out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05007181 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08007182
7183out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04007184 spin_unlock(&delayed_refs->lock);
7185 return 0;
7186}
7187
Yan, Zhengf0486c62010-05-16 10:46:25 -04007188void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
7189 struct btrfs_root *root,
7190 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02007191 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007192{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007193 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikb150a4f2013-06-19 15:00:04 -04007194 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007195 int ret;
7196
7197 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Omar Sandovald7eae342017-06-06 16:45:31 -07007198 int old_ref_mod, new_ref_mod;
7199
Josef Bacikfd708b82017-09-29 15:43:50 -04007200 btrfs_ref_tree_mod(root, buf->start, buf->len, parent,
7201 root->root_key.objectid,
7202 btrfs_header_level(buf), 0,
7203 BTRFS_DROP_DELAYED_REF);
Omar Sandoval7be07912017-06-06 16:45:30 -07007204 ret = btrfs_add_delayed_tree_ref(fs_info, trans, buf->start,
7205 buf->len, parent,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007206 root->root_key.objectid,
7207 btrfs_header_level(buf),
Omar Sandoval7be07912017-06-06 16:45:30 -07007208 BTRFS_DROP_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007209 &old_ref_mod, &new_ref_mod);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007210 BUG_ON(ret); /* -ENOMEM */
Omar Sandovald7eae342017-06-06 16:45:31 -07007211 pin = old_ref_mod >= 0 && new_ref_mod < 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007212 }
7213
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007214 if (last_ref && btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00007215 struct btrfs_block_group_cache *cache;
7216
Yan, Zhengf0486c62010-05-16 10:46:25 -04007217 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007218 ret = check_ref_cleanup(trans, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007219 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04007220 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007221 }
7222
Omar Sandoval4da8b762017-06-06 16:45:28 -07007223 pin = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007224 cache = btrfs_lookup_block_group(fs_info, buf->start);
Filipe Manana62198722015-01-06 20:18:45 +00007225
Yan, Zhengf0486c62010-05-16 10:46:25 -04007226 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007227 pin_down_extent(fs_info, cache, buf->start,
7228 buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00007229 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04007230 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007231 }
7232
7233 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
7234
7235 btrfs_add_free_space(cache, buf->start, buf->len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08007236 btrfs_free_reserved_bytes(cache, buf->len, 0);
Filipe Manana62198722015-01-06 20:18:45 +00007237 btrfs_put_block_group(cache);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007238 trace_btrfs_reserved_extent_free(fs_info, buf->start, buf->len);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007239 }
7240out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04007241 if (pin)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007242 add_pinned_bytes(fs_info, buf->len, btrfs_header_level(buf),
Josef Bacikb150a4f2013-06-19 15:00:04 -04007243 root->root_key.objectid);
7244
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007245 if (last_ref) {
7246 /*
7247 * Deleting the buffer, clear the corrupt flag since it doesn't
7248 * matter anymore.
7249 */
7250 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
7251 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007252}
7253
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007254/* Can return -ENOMEM */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007255int btrfs_free_extent(struct btrfs_trans_handle *trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04007256 struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007257 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007258 u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04007259{
Josef Bacik84f7d8e2017-09-29 15:43:49 -04007260 struct btrfs_fs_info *fs_info = root->fs_info;
Omar Sandovald7eae342017-06-06 16:45:31 -07007261 int old_ref_mod, new_ref_mod;
Chris Mason925baed2008-06-25 16:01:30 -04007262 int ret;
7263
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04007264 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007265 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02007266
Josef Bacikfd708b82017-09-29 15:43:50 -04007267 if (root_objectid != BTRFS_TREE_LOG_OBJECTID)
7268 btrfs_ref_tree_mod(root, bytenr, num_bytes, parent,
7269 root_objectid, owner, offset,
7270 BTRFS_DROP_DELAYED_REF);
7271
Chris Mason56bec292009-03-13 10:10:06 -04007272 /*
7273 * tree log blocks never actually go into the extent allocation
7274 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04007275 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007276 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
7277 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04007278 /* unlocks the pinned mutex */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007279 btrfs_pin_extent(fs_info, bytenr, num_bytes, 1);
Omar Sandovald7eae342017-06-06 16:45:31 -07007280 old_ref_mod = new_ref_mod = 0;
Chris Mason56bec292009-03-13 10:10:06 -04007281 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007282 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007283 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07007284 num_bytes, parent,
7285 root_objectid, (int)owner,
7286 BTRFS_DROP_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007287 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007288 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007289 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07007290 num_bytes, parent,
7291 root_objectid, owner, offset,
7292 0, BTRFS_DROP_DELAYED_REF,
Omar Sandovald7eae342017-06-06 16:45:31 -07007293 &old_ref_mod, &new_ref_mod);
Chris Mason56bec292009-03-13 10:10:06 -04007294 }
Omar Sandovald7eae342017-06-06 16:45:31 -07007295
7296 if (ret == 0 && old_ref_mod >= 0 && new_ref_mod < 0)
7297 add_pinned_bytes(fs_info, num_bytes, owner, root_objectid);
7298
Chris Mason925baed2008-06-25 16:01:30 -04007299 return ret;
7300}
7301
Chris Masonfec577f2007-02-26 10:40:21 -05007302/*
Josef Bacik817d52f2009-07-13 21:29:25 -04007303 * when we wait for progress in the block group caching, its because
7304 * our allocation attempt failed at least once. So, we must sleep
7305 * and let some progress happen before we try again.
7306 *
7307 * This function will sleep at least once waiting for new free space to
7308 * show up, and then it will check the block group free space numbers
7309 * for our min num_bytes. Another option is to have it go ahead
7310 * and look in the rbtree for a free extent of a given size, but this
7311 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04007312 *
7313 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
7314 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04007315 */
Josef Bacik36cce922013-08-05 11:15:21 -04007316static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04007317wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
7318 u64 num_bytes)
7319{
Yan Zheng11833d62009-09-11 16:11:19 -04007320 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04007321
Yan Zheng11833d62009-09-11 16:11:19 -04007322 caching_ctl = get_caching_control(cache);
7323 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007324 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04007325
Yan Zheng11833d62009-09-11 16:11:19 -04007326 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08007327 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04007328
7329 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04007330}
7331
7332static noinline int
7333wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
7334{
7335 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04007336 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007337
7338 caching_ctl = get_caching_control(cache);
7339 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007340 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007341
7342 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04007343 if (cache->cached == BTRFS_CACHE_ERROR)
7344 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04007345 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04007346 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04007347}
7348
Liu Bo31e50222012-11-21 14:18:10 +00007349int __get_raid_index(u64 flags)
Yan, Zhengb742bb82010-05-16 10:46:24 -04007350{
Ilya Dryomov7738a532012-03-27 17:09:17 +03007351 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00007352 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007353 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00007354 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007355 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00007356 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007357 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00007358 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05007359 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05007360 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05007361 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05007362 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007363
Chris Masone942f882013-02-20 14:06:05 -05007364 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb82010-05-16 10:46:24 -04007365}
7366
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007367int get_block_group_index(struct btrfs_block_group_cache *cache)
Ilya Dryomov7738a532012-03-27 17:09:17 +03007368{
Liu Bo31e50222012-11-21 14:18:10 +00007369 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03007370}
7371
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007372static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
7373 [BTRFS_RAID_RAID10] = "raid10",
7374 [BTRFS_RAID_RAID1] = "raid1",
7375 [BTRFS_RAID_DUP] = "dup",
7376 [BTRFS_RAID_RAID0] = "raid0",
7377 [BTRFS_RAID_SINGLE] = "single",
7378 [BTRFS_RAID_RAID5] = "raid5",
7379 [BTRFS_RAID_RAID6] = "raid6",
7380};
7381
Jeff Mahoney1b8e5df2013-11-20 16:50:23 -05007382static const char *get_raid_name(enum btrfs_raid_types type)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007383{
7384 if (type >= BTRFS_NR_RAID_TYPES)
7385 return NULL;
7386
7387 return btrfs_raid_type_names[type];
7388}
7389
Josef Bacik817d52f2009-07-13 21:29:25 -04007390enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05007391 LOOP_CACHING_NOWAIT = 0,
7392 LOOP_CACHING_WAIT = 1,
7393 LOOP_ALLOC_CHUNK = 2,
7394 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04007395};
7396
Miao Xiee570fd22014-06-19 10:42:50 +08007397static inline void
7398btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
7399 int delalloc)
7400{
7401 if (delalloc)
7402 down_read(&cache->data_rwsem);
7403}
7404
7405static inline void
7406btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
7407 int delalloc)
7408{
7409 btrfs_get_block_group(cache);
7410 if (delalloc)
7411 down_read(&cache->data_rwsem);
7412}
7413
7414static struct btrfs_block_group_cache *
7415btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
7416 struct btrfs_free_cluster *cluster,
7417 int delalloc)
7418{
Sudip Mukherjee89771cc2016-02-16 13:32:47 +05307419 struct btrfs_block_group_cache *used_bg = NULL;
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007420
Miao Xiee570fd22014-06-19 10:42:50 +08007421 spin_lock(&cluster->refill_lock);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007422 while (1) {
7423 used_bg = cluster->block_group;
7424 if (!used_bg)
7425 return NULL;
7426
7427 if (used_bg == block_group)
7428 return used_bg;
7429
7430 btrfs_get_block_group(used_bg);
7431
7432 if (!delalloc)
7433 return used_bg;
7434
7435 if (down_read_trylock(&used_bg->data_rwsem))
7436 return used_bg;
7437
7438 spin_unlock(&cluster->refill_lock);
7439
Liu Boe321f8a2016-11-30 16:11:04 -08007440 /* We should only have one-level nested. */
7441 down_read_nested(&used_bg->data_rwsem, SINGLE_DEPTH_NESTING);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007442
7443 spin_lock(&cluster->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007444 if (used_bg == cluster->block_group)
7445 return used_bg;
7446
7447 up_read(&used_bg->data_rwsem);
7448 btrfs_put_block_group(used_bg);
7449 }
Miao Xiee570fd22014-06-19 10:42:50 +08007450}
7451
7452static inline void
7453btrfs_release_block_group(struct btrfs_block_group_cache *cache,
7454 int delalloc)
7455{
7456 if (delalloc)
7457 up_read(&cache->data_rwsem);
7458 btrfs_put_block_group(cache);
7459}
7460
Josef Bacik817d52f2009-07-13 21:29:25 -04007461/*
Chris Masonfec577f2007-02-26 10:40:21 -05007462 * walks the btree of allocated extents and find a hole of a given size.
7463 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08007464 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04007465 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08007466 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05007467 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08007468 *
7469 * If there is no suitable free space, we will record the max size of
7470 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05007471 */
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05007472static noinline int find_free_extent(struct btrfs_fs_info *fs_info,
Wang Xiaoguang18513092016-07-25 15:51:40 +08007473 u64 ram_bytes, u64 num_bytes, u64 empty_size,
7474 u64 hint_byte, struct btrfs_key *ins,
7475 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007476{
Josef Bacik80eb2342008-10-29 14:49:05 -04007477 int ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007478 struct btrfs_root *root = fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007479 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04007480 struct btrfs_block_group_cache *block_group = NULL;
Josef Bacik81c9ad22012-01-18 10:56:06 -05007481 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08007482 u64 max_extent_size = 0;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007483 u64 empty_cluster = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04007484 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007485 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00007486 int index = __get_raid_index(flags);
Josef Bacik0a243252009-09-11 16:11:20 -04007487 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007488 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04007489 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08007490 bool have_caching_bg = false;
chandan13a0db52015-11-02 13:59:46 +05307491 bool orig_have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007492 bool full_search = false;
Chris Masonfec577f2007-02-26 10:40:21 -05007493
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007494 WARN_ON(num_bytes < fs_info->sectorsize);
David Sterba962a2982014-06-04 18:41:45 +02007495 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04007496 ins->objectid = 0;
7497 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04007498
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007499 trace_find_free_extent(fs_info, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05007500
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007501 space_info = __find_space_info(fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007502 if (!space_info) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007503 btrfs_err(fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007504 return -ENOSPC;
7505 }
Josef Bacik2552d172009-04-03 10:14:19 -04007506
Josef Bacik67377732010-09-16 16:19:09 -04007507 /*
Josef Bacik4f4db212015-09-29 11:40:47 -04007508 * If our free space is heavily fragmented we may not be able to make
7509 * big contiguous allocations, so instead of doing the expensive search
7510 * for free space, simply return ENOSPC with our max_extent_size so we
7511 * can go ahead and search for a more manageable chunk.
7512 *
7513 * If our max_extent_size is large enough for our allocation simply
7514 * disable clustering since we will likely not be able to find enough
7515 * space to create a cluster and induce latency trying.
Josef Bacik67377732010-09-16 16:19:09 -04007516 */
Josef Bacik4f4db212015-09-29 11:40:47 -04007517 if (unlikely(space_info->max_extent_size)) {
7518 spin_lock(&space_info->lock);
7519 if (space_info->max_extent_size &&
7520 num_bytes > space_info->max_extent_size) {
7521 ins->offset = space_info->max_extent_size;
7522 spin_unlock(&space_info->lock);
7523 return -ENOSPC;
7524 } else if (space_info->max_extent_size) {
7525 use_cluster = false;
7526 }
7527 spin_unlock(&space_info->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007528 }
7529
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007530 last_ptr = fetch_cluster_info(fs_info, space_info, &empty_cluster);
Chris Mason239b14b2008-03-24 15:02:07 -04007531 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007532 spin_lock(&last_ptr->lock);
7533 if (last_ptr->block_group)
7534 hint_byte = last_ptr->window_start;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007535 if (last_ptr->fragmented) {
7536 /*
7537 * We still set window_start so we can keep track of the
7538 * last place we found an allocation to try and save
7539 * some time.
7540 */
7541 hint_byte = last_ptr->window_start;
7542 use_cluster = false;
7543 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007544 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007545 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007546
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007547 search_start = max(search_start, first_logical_byte(fs_info, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04007548 search_start = max(search_start, hint_byte);
Josef Bacik2552d172009-04-03 10:14:19 -04007549 if (search_start == hint_byte) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007550 block_group = btrfs_lookup_block_group(fs_info, search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04007551 /*
7552 * we don't want to use the block group if it doesn't match our
7553 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05007554 *
7555 * However if we are re-searching with an ideal block group
7556 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04007557 */
David Sterbab6919a52013-04-29 13:39:40 +00007558 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05007559 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04007560 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007561 if (list_empty(&block_group->list) ||
7562 block_group->ro) {
7563 /*
7564 * someone is removing this block group,
7565 * we can't jump into the have_block_group
7566 * target because our list pointers are not
7567 * valid
7568 */
7569 btrfs_put_block_group(block_group);
7570 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05007571 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007572 index = get_block_group_index(block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007573 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04007574 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05007575 }
Josef Bacik2552d172009-04-03 10:14:19 -04007576 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007577 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04007578 }
Chris Mason42e70e72008-11-07 18:17:11 -05007579 }
Josef Bacik2552d172009-04-03 10:14:19 -04007580search:
Miao Xie60d2adb2011-09-09 17:34:35 +08007581 have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007582 if (index == 0 || index == __get_raid_index(flags))
7583 full_search = true;
Josef Bacik80eb2342008-10-29 14:49:05 -04007584 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007585 list_for_each_entry(block_group, &space_info->block_groups[index],
7586 list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04007587 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04007588 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05007589
Jeff Mahoney14443932017-07-19 23:25:51 -04007590 /* If the block group is read-only, we can skip it entirely. */
7591 if (unlikely(block_group->ro))
7592 continue;
7593
Miao Xiee570fd22014-06-19 10:42:50 +08007594 btrfs_grab_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007595 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05007596
Chris Mason83a50de2010-12-13 15:06:46 -05007597 /*
7598 * this can happen if we end up cycling through all the
7599 * raid types, but we want to make sure we only allocate
7600 * for the proper type.
7601 */
David Sterbab6919a52013-04-29 13:39:40 +00007602 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05007603 u64 extra = BTRFS_BLOCK_GROUP_DUP |
7604 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007605 BTRFS_BLOCK_GROUP_RAID5 |
7606 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05007607 BTRFS_BLOCK_GROUP_RAID10;
7608
7609 /*
7610 * if they asked for extra copies and this block group
7611 * doesn't provide them, bail. This does allow us to
7612 * fill raid0 from raid1.
7613 */
David Sterbab6919a52013-04-29 13:39:40 +00007614 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05007615 goto loop;
7616 }
7617
Josef Bacik2552d172009-04-03 10:14:19 -04007618have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05007619 cached = block_group_cache_done(block_group);
7620 if (unlikely(!cached)) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007621 have_caching_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00007622 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04007623 BUG_ON(ret < 0);
7624 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05007625 }
7626
Josef Bacik36cce922013-08-05 11:15:21 -04007627 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
7628 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007629
Josef Bacik0a243252009-09-11 16:11:20 -04007630 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007631 * Ok we want to try and use the cluster allocator, so
7632 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04007633 */
Josef Bacikc759c4e2015-10-02 15:25:10 -04007634 if (last_ptr && use_cluster) {
Miao Xie215a63d2014-01-15 20:00:56 +08007635 struct btrfs_block_group_cache *used_block_group;
Chris Mason8de972b2013-01-04 15:39:43 -05007636 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007637 /*
7638 * the refill lock keeps out other
7639 * people trying to start a new cluster
7640 */
Miao Xiee570fd22014-06-19 10:42:50 +08007641 used_block_group = btrfs_lock_cluster(block_group,
7642 last_ptr,
7643 delalloc);
7644 if (!used_block_group)
Chris Mason44fb5512009-06-04 15:34:51 -04007645 goto refill_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -04007646
Miao Xiee570fd22014-06-19 10:42:50 +08007647 if (used_block_group != block_group &&
7648 (used_block_group->ro ||
7649 !block_group_bits(used_block_group, flags)))
7650 goto release_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007651
7652 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007653 last_ptr,
7654 num_bytes,
7655 used_block_group->key.objectid,
7656 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007657 if (offset) {
7658 /* we have a block, we're done */
7659 spin_unlock(&last_ptr->refill_lock);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007660 trace_btrfs_reserve_extent_cluster(fs_info,
Miao Xie89d43462014-01-15 20:00:57 +08007661 used_block_group,
7662 search_start, num_bytes);
Miao Xie215a63d2014-01-15 20:00:56 +08007663 if (used_block_group != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08007664 btrfs_release_block_group(block_group,
7665 delalloc);
Miao Xie215a63d2014-01-15 20:00:56 +08007666 block_group = used_block_group;
7667 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007668 goto checks;
7669 }
7670
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007671 WARN_ON(last_ptr->block_group != used_block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007672release_cluster:
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007673 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
7674 * set up a new clusters, so lets just skip it
7675 * and let the allocator find whatever block
7676 * it can find. If we reach this point, we
7677 * will have tried the cluster allocator
7678 * plenty of times and not have found
7679 * anything, so we are likely way too
7680 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007681 * anything.
7682 *
7683 * However, if the cluster is taken from the
7684 * current block group, release the cluster
7685 * first, so that we stand a better chance of
7686 * succeeding in the unclustered
7687 * allocation. */
7688 if (loop >= LOOP_NO_EMPTY_SIZE &&
Miao Xiee570fd22014-06-19 10:42:50 +08007689 used_block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007690 spin_unlock(&last_ptr->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007691 btrfs_release_block_group(used_block_group,
7692 delalloc);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007693 goto unclustered_alloc;
7694 }
7695
Chris Masonfa9c0d792009-04-03 09:47:43 -04007696 /*
7697 * this cluster didn't work out, free it and
7698 * start over
7699 */
7700 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7701
Miao Xiee570fd22014-06-19 10:42:50 +08007702 if (used_block_group != block_group)
7703 btrfs_release_block_group(used_block_group,
7704 delalloc);
7705refill_cluster:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007706 if (loop >= LOOP_NO_EMPTY_SIZE) {
7707 spin_unlock(&last_ptr->refill_lock);
7708 goto unclustered_alloc;
7709 }
7710
Chris Mason8de972b2013-01-04 15:39:43 -05007711 aligned_cluster = max_t(unsigned long,
7712 empty_cluster + empty_size,
7713 block_group->full_stripe_len);
7714
Chris Masonfa9c0d792009-04-03 09:47:43 -04007715 /* allocate a cluster in this block group */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007716 ret = btrfs_find_space_cluster(fs_info, block_group,
Josef Bacik00361582013-08-14 14:02:47 -04007717 last_ptr, search_start,
7718 num_bytes,
7719 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007720 if (ret == 0) {
7721 /*
7722 * now pull our allocation out of this
7723 * cluster
7724 */
7725 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007726 last_ptr,
7727 num_bytes,
7728 search_start,
7729 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007730 if (offset) {
7731 /* we found one, proceed */
7732 spin_unlock(&last_ptr->refill_lock);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007733 trace_btrfs_reserve_extent_cluster(fs_info,
Josef Bacik3f7de032011-11-10 08:29:20 -05007734 block_group, search_start,
7735 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007736 goto checks;
7737 }
Josef Bacik0a243252009-09-11 16:11:20 -04007738 } else if (!cached && loop > LOOP_CACHING_NOWAIT
7739 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007740 spin_unlock(&last_ptr->refill_lock);
7741
Josef Bacik0a243252009-09-11 16:11:20 -04007742 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007743 wait_block_group_cache_progress(block_group,
7744 num_bytes + empty_cluster + empty_size);
7745 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007746 }
Josef Bacik817d52f2009-07-13 21:29:25 -04007747
Chris Masonfa9c0d792009-04-03 09:47:43 -04007748 /*
7749 * at this point we either didn't find a cluster
7750 * or we weren't able to allocate a block from our
7751 * cluster. Free the cluster we've been trying
7752 * to use, and go to the next block group
7753 */
Josef Bacik0a243252009-09-11 16:11:20 -04007754 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007755 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04007756 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007757 }
7758
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007759unclustered_alloc:
Josef Bacikc759c4e2015-10-02 15:25:10 -04007760 /*
7761 * We are doing an unclustered alloc, set the fragmented flag so
7762 * we don't bother trying to setup a cluster again until we get
7763 * more space.
7764 */
7765 if (unlikely(last_ptr)) {
7766 spin_lock(&last_ptr->lock);
7767 last_ptr->fragmented = 1;
7768 spin_unlock(&last_ptr->lock);
7769 }
Liu Bo0c9b36e2017-02-13 15:42:30 -08007770 if (cached) {
7771 struct btrfs_free_space_ctl *ctl =
7772 block_group->free_space_ctl;
7773
7774 spin_lock(&ctl->tree_lock);
7775 if (ctl->free_space <
7776 num_bytes + empty_cluster + empty_size) {
7777 if (ctl->free_space > max_extent_size)
7778 max_extent_size = ctl->free_space;
7779 spin_unlock(&ctl->tree_lock);
7780 goto loop;
7781 }
7782 spin_unlock(&ctl->tree_lock);
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007783 }
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007784
Josef Bacik6226cb02009-04-03 10:14:18 -04007785 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08007786 num_bytes, empty_size,
7787 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007788 /*
7789 * If we didn't find a chunk, and we haven't failed on this
7790 * block group before, and this block group is in the middle of
7791 * caching and we are ok with waiting, then go ahead and wait
7792 * for progress to be made, and set failed_alloc to true.
7793 *
7794 * If failed_alloc is true then we've already waited on this
7795 * block group once and should move on to the next block group.
7796 */
7797 if (!offset && !failed_alloc && !cached &&
7798 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007799 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007800 num_bytes + empty_size);
7801 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007802 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007803 } else if (!offset) {
7804 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04007805 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007806checks:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007807 search_start = ALIGN(offset, fs_info->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04007808
Josef Bacik2552d172009-04-03 10:14:19 -04007809 /* move on to the next group */
7810 if (search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08007811 block_group->key.objectid + block_group->key.offset) {
7812 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04007813 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04007814 }
Josef Bacik80eb2342008-10-29 14:49:05 -04007815
Josef Bacik6226cb02009-04-03 10:14:18 -04007816 if (offset < search_start)
Miao Xie215a63d2014-01-15 20:00:56 +08007817 btrfs_add_free_space(block_group, offset,
Josef Bacik6226cb02009-04-03 10:14:18 -04007818 search_start - offset);
7819 BUG_ON(offset > search_start);
7820
Wang Xiaoguang18513092016-07-25 15:51:40 +08007821 ret = btrfs_add_reserved_bytes(block_group, ram_bytes,
7822 num_bytes, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007823 if (ret == -EAGAIN) {
Miao Xie215a63d2014-01-15 20:00:56 +08007824 btrfs_add_free_space(block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007825 goto loop;
7826 }
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007827 btrfs_inc_block_group_reservations(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -04007828
Josef Bacik2552d172009-04-03 10:14:19 -04007829 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007830 ins->objectid = search_start;
7831 ins->offset = num_bytes;
7832
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007833 trace_btrfs_reserve_extent(fs_info, block_group,
Josef Bacik3f7de032011-11-10 08:29:20 -05007834 search_start, num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08007835 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007836 break;
7837loop:
Josef Bacik0a243252009-09-11 16:11:20 -04007838 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007839 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007840 BUG_ON(index != get_block_group_index(block_group));
Miao Xiee570fd22014-06-19 10:42:50 +08007841 btrfs_release_block_group(block_group, delalloc);
Jeff Mahoney14443932017-07-19 23:25:51 -04007842 cond_resched();
Josef Bacik2552d172009-04-03 10:14:19 -04007843 }
7844 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05007845
chandan13a0db52015-11-02 13:59:46 +05307846 if ((loop == LOOP_CACHING_NOWAIT) && have_caching_bg
7847 && !orig_have_caching_bg)
7848 orig_have_caching_bg = true;
7849
Miao Xie60d2adb2011-09-09 17:34:35 +08007850 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
7851 goto search;
7852
Yan, Zhengb742bb82010-05-16 10:46:24 -04007853 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
7854 goto search;
7855
Josef Bacik285ff5a2012-01-13 15:27:45 -05007856 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05007857 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7858 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04007859 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7860 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7861 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7862 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04007863 */
Josef Bacik723bda22011-05-27 16:11:38 -04007864 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007865 index = 0;
Josef Bacika5e681d2015-10-01 14:54:10 -04007866 if (loop == LOOP_CACHING_NOWAIT) {
7867 /*
7868 * We want to skip the LOOP_CACHING_WAIT step if we
Nicholas D Steeves01327612016-05-19 21:18:45 -04007869 * don't have any uncached bgs and we've already done a
Josef Bacika5e681d2015-10-01 14:54:10 -04007870 * full search through.
7871 */
chandan13a0db52015-11-02 13:59:46 +05307872 if (orig_have_caching_bg || !full_search)
Josef Bacika5e681d2015-10-01 14:54:10 -04007873 loop = LOOP_CACHING_WAIT;
7874 else
7875 loop = LOOP_ALLOC_CHUNK;
7876 } else {
7877 loop++;
7878 }
7879
Josef Bacik817d52f2009-07-13 21:29:25 -04007880 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04007881 struct btrfs_trans_handle *trans;
Wang Shilongf017f152014-03-13 13:19:47 +08007882 int exist = 0;
Josef Bacik00361582013-08-14 14:02:47 -04007883
Wang Shilongf017f152014-03-13 13:19:47 +08007884 trans = current->journal_info;
7885 if (trans)
7886 exist = 1;
7887 else
7888 trans = btrfs_join_transaction(root);
7889
Josef Bacik00361582013-08-14 14:02:47 -04007890 if (IS_ERR(trans)) {
7891 ret = PTR_ERR(trans);
7892 goto out;
7893 }
7894
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007895 ret = do_chunk_alloc(trans, fs_info, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04007896 CHUNK_ALLOC_FORCE);
Josef Bacika5e681d2015-10-01 14:54:10 -04007897
7898 /*
7899 * If we can't allocate a new chunk we've already looped
7900 * through at least once, move on to the NO_EMPTY_SIZE
7901 * case.
7902 */
7903 if (ret == -ENOSPC)
7904 loop = LOOP_NO_EMPTY_SIZE;
7905
Josef Bacikea658ba2012-09-11 16:57:25 -04007906 /*
7907 * Do not bail out on ENOSPC since we
7908 * can do more things.
7909 */
Josef Bacik00361582013-08-14 14:02:47 -04007910 if (ret < 0 && ret != -ENOSPC)
Jeff Mahoney66642832016-06-10 18:19:25 -04007911 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -04007912 else
7913 ret = 0;
Wang Shilongf017f152014-03-13 13:19:47 +08007914 if (!exist)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04007915 btrfs_end_transaction(trans);
Josef Bacik00361582013-08-14 14:02:47 -04007916 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04007917 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04007918 }
7919
7920 if (loop == LOOP_NO_EMPTY_SIZE) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007921 /*
7922 * Don't loop again if we already have no empty_size and
7923 * no empty_cluster.
7924 */
7925 if (empty_size == 0 &&
7926 empty_cluster == 0) {
7927 ret = -ENOSPC;
7928 goto out;
7929 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007930 empty_size = 0;
7931 empty_cluster = 0;
7932 }
Chris Mason42e70e72008-11-07 18:17:11 -05007933
Josef Bacik723bda22011-05-27 16:11:38 -04007934 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04007935 } else if (!ins->objectid) {
7936 ret = -ENOSPC;
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04007937 } else if (ins->objectid) {
Josef Bacikc759c4e2015-10-02 15:25:10 -04007938 if (!use_cluster && last_ptr) {
7939 spin_lock(&last_ptr->lock);
7940 last_ptr->window_start = ins->objectid;
7941 spin_unlock(&last_ptr->lock);
7942 }
Josef Bacik2552d172009-04-03 10:14:19 -04007943 ret = 0;
7944 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007945out:
Josef Bacik4f4db212015-09-29 11:40:47 -04007946 if (ret == -ENOSPC) {
7947 spin_lock(&space_info->lock);
7948 space_info->max_extent_size = max_extent_size;
7949 spin_unlock(&space_info->lock);
Miao Xiea4820392013-09-09 13:19:42 +08007950 ins->offset = max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04007951 }
Chris Mason0f70abe2007-02-28 16:46:22 -05007952 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05007953}
Chris Masonec44a352008-04-28 15:29:52 -04007954
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007955static void dump_space_info(struct btrfs_fs_info *fs_info,
7956 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007957 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04007958{
7959 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007960 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007961
Josef Bacik9ed74f22009-09-11 16:12:44 -04007962 spin_lock(&info->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007963 btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull",
7964 info->flags,
Liu Bo41361352017-02-13 15:42:21 -08007965 info->total_bytes - btrfs_space_info_used(info, true),
7966 info->full ? "" : "not ");
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007967 btrfs_info(fs_info,
7968 "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu",
7969 info->total_bytes, info->bytes_used, info->bytes_pinned,
7970 info->bytes_reserved, info->bytes_may_use,
7971 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007972 spin_unlock(&info->lock);
7973
7974 if (!dump_block_groups)
7975 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007976
Josef Bacik80eb2342008-10-29 14:49:05 -04007977 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007978again:
7979 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04007980 spin_lock(&cache->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007981 btrfs_info(fs_info,
7982 "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s",
7983 cache->key.objectid, cache->key.offset,
7984 btrfs_block_group_used(&cache->item), cache->pinned,
7985 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04007986 btrfs_dump_free_space(cache, bytes);
7987 spin_unlock(&cache->lock);
7988 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04007989 if (++index < BTRFS_NR_RAID_TYPES)
7990 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04007991 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007992}
Zheng Yane8569812008-09-26 10:05:48 -04007993
Wang Xiaoguang18513092016-07-25 15:51:40 +08007994int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
Yan Zheng11833d62009-09-11 16:11:19 -04007995 u64 num_bytes, u64 min_alloc_size,
7996 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08007997 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007998{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007999 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik36af4e02015-09-25 16:13:11 -04008000 bool final_tried = num_bytes == min_alloc_size;
David Sterbab6919a52013-04-29 13:39:40 +00008001 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05008002 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04008003
Jeff Mahoney1b868262017-05-17 11:38:35 -04008004 flags = get_alloc_profile_by_root(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04008005again:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008006 WARN_ON(num_bytes < fs_info->sectorsize);
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05008007 ret = find_free_extent(fs_info, ram_bytes, num_bytes, empty_size,
Wang Xiaoguang18513092016-07-25 15:51:40 +08008008 hint_byte, ins, flags, delalloc);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008009 if (!ret && !is_data) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008010 btrfs_dec_block_group_reservations(fs_info, ins->objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008011 } else if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08008012 if (!final_tried && ins->offset) {
8013 num_bytes = min(num_bytes >> 1, ins->offset);
Jeff Mahoneyda170662016-06-15 09:22:56 -04008014 num_bytes = round_down(num_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008015 fs_info->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05008016 num_bytes = max(num_bytes, min_alloc_size);
Wang Xiaoguang18513092016-07-25 15:51:40 +08008017 ram_bytes = num_bytes;
Miao Xie9e622d62012-01-26 15:01:12 -05008018 if (num_bytes == min_alloc_size)
8019 final_tried = true;
8020 goto again;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008021 } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xie9e622d62012-01-26 15:01:12 -05008022 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008023
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008024 sinfo = __find_space_info(fs_info, flags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008025 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008026 "allocation failed flags %llu, wanted %llu",
8027 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01008028 if (sinfo)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008029 dump_space_info(fs_info, sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05008030 }
Chris Mason925baed2008-06-25 16:01:30 -04008031 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008032
8033 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008034}
8035
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008036static int __btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008037 u64 start, u64 len,
8038 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04008039{
Josef Bacik0f9dd462008-09-23 13:14:11 -04008040 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05008041 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008042
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008043 cache = btrfs_lookup_block_group(fs_info, start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008044 if (!cache) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008045 btrfs_err(fs_info, "Unable to find block group for %llu",
8046 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008047 return -ENOSPC;
8048 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05008049
Chris Masone688b7252011-10-31 20:52:39 -04008050 if (pin)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008051 pin_down_extent(fs_info, cache, start, len, 1);
Chris Masone688b7252011-10-31 20:52:39 -04008052 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008053 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008054 ret = btrfs_discard_extent(fs_info, start, len, NULL);
Chris Masone688b7252011-10-31 20:52:39 -04008055 btrfs_add_free_space(cache, start, len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08008056 btrfs_free_reserved_bytes(cache, len, delalloc);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008057 trace_btrfs_reserved_extent_free(fs_info, start, len);
Chris Masone688b7252011-10-31 20:52:39 -04008058 }
Dongsheng Yang31193212014-12-12 16:44:35 +08008059
Chris Masonfa9c0d792009-04-03 09:47:43 -04008060 btrfs_put_block_group(cache);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008061 return ret;
8062}
8063
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008064int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008065 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04008066{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008067 return __btrfs_free_reserved_extent(fs_info, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04008068}
8069
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008070int btrfs_free_and_pin_reserved_extent(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04008071 u64 start, u64 len)
8072{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008073 return __btrfs_free_reserved_extent(fs_info, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04008074}
8075
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008076static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008077 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008078 u64 parent, u64 root_objectid,
8079 u64 flags, u64 owner, u64 offset,
8080 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008081{
8082 int ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008083 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008084 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008085 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008086 struct extent_buffer *leaf;
8087 int type;
8088 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04008089
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008090 if (parent > 0)
8091 type = BTRFS_SHARED_DATA_REF_KEY;
8092 else
8093 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04008094
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008095 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05008096
8097 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008098 if (!path)
8099 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05008100
Chris Masonb9473432009-03-13 11:00:37 -04008101 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008102 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8103 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008104 if (ret) {
8105 btrfs_free_path(path);
8106 return ret;
8107 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008108
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008109 leaf = path->nodes[0];
8110 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05008111 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008112 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
8113 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8114 btrfs_set_extent_flags(leaf, extent_item,
8115 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05008116
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008117 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8118 btrfs_set_extent_inline_ref_type(leaf, iref, type);
8119 if (parent > 0) {
8120 struct btrfs_shared_data_ref *ref;
8121 ref = (struct btrfs_shared_data_ref *)(iref + 1);
8122 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8123 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
8124 } else {
8125 struct btrfs_extent_data_ref *ref;
8126 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
8127 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
8128 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
8129 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
8130 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
8131 }
Chris Mason47e4bb92008-02-01 14:51:59 -05008132
8133 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05008134 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04008135
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008136 ret = remove_from_free_space_tree(trans, fs_info, ins->objectid,
8137 ins->offset);
8138 if (ret)
8139 return ret;
8140
Jeff Mahoney6202df62016-06-22 18:54:22 -04008141 ret = update_block_group(trans, fs_info, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008142 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008143 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008144 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05008145 BUG();
8146 }
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008147 trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008148 return ret;
8149}
8150
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008151static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008152 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008153 u64 parent, u64 root_objectid,
8154 u64 flags, struct btrfs_disk_key *key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01008155 int level, struct btrfs_key *ins)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008156{
8157 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008158 struct btrfs_extent_item *extent_item;
8159 struct btrfs_tree_block_info *block_info;
8160 struct btrfs_extent_inline_ref *iref;
8161 struct btrfs_path *path;
8162 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05008163 u32 size = sizeof(*extent_item) + sizeof(*iref);
Josef Bacikfcebe452014-05-13 17:30:47 -07008164 u64 num_bytes = ins->offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008165 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Josef Bacik3173a182013-03-07 14:22:04 -05008166
8167 if (!skinny_metadata)
8168 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008169
8170 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04008171 if (!path) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008172 btrfs_free_and_pin_reserved_extent(fs_info, ins->objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008173 fs_info->nodesize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07008174 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04008175 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008176
8177 path->leave_spinning = 1;
8178 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8179 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008180 if (ret) {
Chris Masondd825252015-04-01 08:36:05 -07008181 btrfs_free_path(path);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008182 btrfs_free_and_pin_reserved_extent(fs_info, ins->objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008183 fs_info->nodesize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008184 return ret;
8185 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008186
8187 leaf = path->nodes[0];
8188 extent_item = btrfs_item_ptr(leaf, path->slots[0],
8189 struct btrfs_extent_item);
8190 btrfs_set_extent_refs(leaf, extent_item, 1);
8191 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8192 btrfs_set_extent_flags(leaf, extent_item,
8193 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008194
Josef Bacik3173a182013-03-07 14:22:04 -05008195 if (skinny_metadata) {
8196 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008197 num_bytes = fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05008198 } else {
8199 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
8200 btrfs_set_tree_block_key(leaf, block_info, key);
8201 btrfs_set_tree_block_level(leaf, block_info, level);
8202 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
8203 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008204
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008205 if (parent > 0) {
8206 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
8207 btrfs_set_extent_inline_ref_type(leaf, iref,
8208 BTRFS_SHARED_BLOCK_REF_KEY);
8209 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8210 } else {
8211 btrfs_set_extent_inline_ref_type(leaf, iref,
8212 BTRFS_TREE_BLOCK_REF_KEY);
8213 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
8214 }
8215
8216 btrfs_mark_buffer_dirty(leaf);
8217 btrfs_free_path(path);
8218
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008219 ret = remove_from_free_space_tree(trans, fs_info, ins->objectid,
8220 num_bytes);
8221 if (ret)
8222 return ret;
8223
Jeff Mahoney6202df62016-06-22 18:54:22 -04008224 ret = update_block_group(trans, fs_info, ins->objectid,
8225 fs_info->nodesize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008226 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008227 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008228 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008229 BUG();
8230 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04008231
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008232 trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008233 fs_info->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008234 return ret;
8235}
8236
8237int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008238 struct btrfs_root *root, u64 owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08008239 u64 offset, u64 ram_bytes,
8240 struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008241{
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008242 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008243 int ret;
Chris Mason1c2308f82008-09-23 13:14:13 -04008244
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008245 BUG_ON(root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04008246
Josef Bacikfd708b82017-09-29 15:43:50 -04008247 btrfs_ref_tree_mod(root, ins->objectid, ins->offset, 0,
8248 root->root_key.objectid, owner, offset,
8249 BTRFS_ADD_DELAYED_EXTENT);
8250
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008251 ret = btrfs_add_delayed_data_ref(fs_info, trans, ins->objectid,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008252 ins->offset, 0,
8253 root->root_key.objectid, owner,
Omar Sandoval7be07912017-06-06 16:45:30 -07008254 offset, ram_bytes,
8255 BTRFS_ADD_DELAYED_EXTENT, NULL, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008256 return ret;
8257}
Chris Masone02119d2008-09-05 16:13:11 -04008258
8259/*
8260 * this is used by the tree logging recovery code. It records that
8261 * an extent has been allocated and makes sure to clear the free
8262 * space cache bits as well
8263 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008264int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008265 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008266 u64 root_objectid, u64 owner, u64 offset,
8267 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04008268{
8269 int ret;
8270 struct btrfs_block_group_cache *block_group;
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008271 struct btrfs_space_info *space_info;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008272
8273 /*
8274 * Mixed block groups will exclude before processing the log so we only
Nicholas D Steeves01327612016-05-19 21:18:45 -04008275 * need to do the exclude dance if this fs isn't mixed.
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008276 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008277 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008278 ret = __exclude_logged_extent(fs_info, ins->objectid,
8279 ins->offset);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008280 if (ret)
8281 return ret;
8282 }
Chris Masone02119d2008-09-05 16:13:11 -04008283
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008284 block_group = btrfs_lookup_block_group(fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008285 if (!block_group)
8286 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04008287
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008288 space_info = block_group->space_info;
8289 spin_lock(&space_info->lock);
8290 spin_lock(&block_group->lock);
8291 space_info->bytes_reserved += ins->offset;
8292 block_group->reserved += ins->offset;
8293 spin_unlock(&block_group->lock);
8294 spin_unlock(&space_info->lock);
8295
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008296 ret = alloc_reserved_file_extent(trans, fs_info, 0, root_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008297 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04008298 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04008299 return ret;
8300}
8301
Eric Sandeen48a3b632013-04-25 20:41:01 +00008302static struct extent_buffer *
8303btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
David Sterbafe864572014-06-15 02:28:42 +02008304 u64 bytenr, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04008305{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008306 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason65b51a02008-08-01 15:11:20 -04008307 struct extent_buffer *buf;
8308
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008309 buf = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008310 if (IS_ERR(buf))
8311 return buf;
8312
Chris Mason65b51a02008-08-01 15:11:20 -04008313 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04008314 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04008315 btrfs_tree_lock(buf);
David Sterba7c302b42017-02-10 18:47:57 +01008316 clean_tree_block(fs_info, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05008317 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008318
8319 btrfs_set_lock_blocking(buf);
David Sterba4db8c522015-12-03 13:06:46 +01008320 set_extent_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008321
Chris Masond0c803c2008-09-11 16:17:57 -04008322 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01008323 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008324 /*
8325 * we allow two log transactions at a time, use different
8326 * EXENT bit to differentiate dirty pages.
8327 */
Filipe Manana656f30d2014-09-26 12:25:56 +01008328 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008329 set_extent_dirty(&root->dirty_log_pages, buf->start,
8330 buf->start + buf->len - 1, GFP_NOFS);
8331 else
8332 set_extent_new(&root->dirty_log_pages, buf->start,
David Sterba3744dbe2016-04-26 23:54:39 +02008333 buf->start + buf->len - 1);
Chris Masond0c803c2008-09-11 16:17:57 -04008334 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01008335 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04008336 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
8337 buf->start + buf->len - 1, GFP_NOFS);
8338 }
Jeff Mahoney64c12922016-06-08 00:36:38 -04008339 trans->dirty = true;
Chris Masonb4ce94d2009-02-04 09:25:08 -05008340 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04008341 return buf;
8342}
8343
Yan, Zhengf0486c62010-05-16 10:46:25 -04008344static struct btrfs_block_rsv *
8345use_block_rsv(struct btrfs_trans_handle *trans,
8346 struct btrfs_root *root, u32 blocksize)
8347{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008348 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008349 struct btrfs_block_rsv *block_rsv;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008350 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008351 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00008352 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008353
8354 block_rsv = get_block_rsv(trans, root);
8355
Miao Xieb586b322013-05-13 13:55:10 +00008356 if (unlikely(block_rsv->size == 0))
8357 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00008358again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008359 ret = block_rsv_use_bytes(block_rsv, blocksize);
8360 if (!ret)
8361 return block_rsv;
8362
Miao Xieb586b322013-05-13 13:55:10 +00008363 if (block_rsv->failfast)
8364 return ERR_PTR(ret);
8365
Miao Xied88033d2013-05-13 13:55:12 +00008366 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
8367 global_updated = true;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008368 update_global_block_rsv(fs_info);
Miao Xied88033d2013-05-13 13:55:12 +00008369 goto again;
8370 }
8371
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008372 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xieb586b322013-05-13 13:55:10 +00008373 static DEFINE_RATELIMIT_STATE(_rs,
8374 DEFAULT_RATELIMIT_INTERVAL * 10,
8375 /*DEFAULT_RATELIMIT_BURST*/ 1);
8376 if (__ratelimit(&_rs))
8377 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05008378 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00008379 }
8380try_reserve:
8381 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
8382 BTRFS_RESERVE_NO_FLUSH);
8383 if (!ret)
8384 return block_rsv;
8385 /*
8386 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00008387 * the global reserve if its space type is the same as the global
8388 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00008389 */
Miao Xie5881cfc2013-05-13 13:55:11 +00008390 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
8391 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00008392 ret = block_rsv_use_bytes(global_rsv, blocksize);
8393 if (!ret)
8394 return global_rsv;
8395 }
8396 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008397}
8398
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008399static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
8400 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008401{
8402 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008403 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008404}
8405
Chris Masonfec577f2007-02-26 10:40:21 -05008406/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04008407 * finds a free extent and does all the dirty work required for allocation
Omar Sandoval67b78592015-02-24 02:47:04 -08008408 * returns the tree buffer or an ERR_PTR on error.
Chris Masonfec577f2007-02-26 10:40:21 -05008409 */
David Sterba4d75f8a2014-06-15 01:54:12 +02008410struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
Omar Sandoval310712b2017-01-17 23:24:37 -08008411 struct btrfs_root *root,
8412 u64 parent, u64 root_objectid,
8413 const struct btrfs_disk_key *key,
8414 int level, u64 hint,
8415 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05008416{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008417 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone2fa7222007-03-12 16:22:34 -04008418 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008419 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04008420 struct extent_buffer *buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008421 struct btrfs_delayed_extent_op *extent_op;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008422 u64 flags = 0;
8423 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008424 u32 blocksize = fs_info->nodesize;
8425 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008426
David Sterba05653ef2016-07-15 15:23:37 +02008427#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008428 if (btrfs_is_testing(fs_info)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008429 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
David Sterbafe864572014-06-15 02:28:42 +02008430 level);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008431 if (!IS_ERR(buf))
8432 root->alloc_bytenr += blocksize;
8433 return buf;
8434 }
David Sterba05653ef2016-07-15 15:23:37 +02008435#endif
David Sterbafccb84c2014-09-29 23:53:21 +02008436
Yan, Zhengf0486c62010-05-16 10:46:25 -04008437 block_rsv = use_block_rsv(trans, root, blocksize);
8438 if (IS_ERR(block_rsv))
8439 return ERR_CAST(block_rsv);
8440
Wang Xiaoguang18513092016-07-25 15:51:40 +08008441 ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08008442 empty_size, hint, &ins, 0, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008443 if (ret)
8444 goto out_unuse;
Chris Mason55c69072008-01-09 15:55:33 -05008445
David Sterbafe864572014-06-15 02:28:42 +02008446 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level);
Omar Sandoval67b78592015-02-24 02:47:04 -08008447 if (IS_ERR(buf)) {
8448 ret = PTR_ERR(buf);
8449 goto out_free_reserved;
8450 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008451
8452 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
8453 if (parent == 0)
8454 parent = ins.objectid;
8455 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
8456 } else
8457 BUG_ON(parent > 0);
8458
8459 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Miao Xie78a61842012-11-21 02:21:28 +00008460 extent_op = btrfs_alloc_delayed_extent_op();
Omar Sandoval67b78592015-02-24 02:47:04 -08008461 if (!extent_op) {
8462 ret = -ENOMEM;
8463 goto out_free_buf;
8464 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008465 if (key)
8466 memcpy(&extent_op->key, key, sizeof(extent_op->key));
8467 else
8468 memset(&extent_op->key, 0, sizeof(extent_op->key));
8469 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01008470 extent_op->update_key = skinny_metadata ? false : true;
8471 extent_op->update_flags = true;
8472 extent_op->is_data = false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04008473 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008474
Josef Bacikfd708b82017-09-29 15:43:50 -04008475 btrfs_ref_tree_mod(root, ins.objectid, ins.offset, parent,
8476 root_objectid, level, 0,
8477 BTRFS_ADD_DELAYED_EXTENT);
Omar Sandoval7be07912017-06-06 16:45:30 -07008478 ret = btrfs_add_delayed_tree_ref(fs_info, trans, ins.objectid,
8479 ins.offset, parent,
8480 root_objectid, level,
Omar Sandoval67b78592015-02-24 02:47:04 -08008481 BTRFS_ADD_DELAYED_EXTENT,
Omar Sandoval7be07912017-06-06 16:45:30 -07008482 extent_op, NULL, NULL);
Omar Sandoval67b78592015-02-24 02:47:04 -08008483 if (ret)
8484 goto out_free_delayed;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008485 }
Chris Masonfec577f2007-02-26 10:40:21 -05008486 return buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008487
8488out_free_delayed:
8489 btrfs_free_delayed_extent_op(extent_op);
8490out_free_buf:
8491 free_extent_buffer(buf);
8492out_free_reserved:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008493 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008494out_unuse:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008495 unuse_block_rsv(fs_info, block_rsv, blocksize);
Omar Sandoval67b78592015-02-24 02:47:04 -08008496 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05008497}
Chris Masona28ec192007-03-06 20:08:01 -05008498
Yan Zheng2c47e6052009-06-27 21:07:35 -04008499struct walk_control {
8500 u64 refs[BTRFS_MAX_LEVEL];
8501 u64 flags[BTRFS_MAX_LEVEL];
8502 struct btrfs_key update_progress;
8503 int stage;
8504 int level;
8505 int shared_level;
8506 int update_ref;
8507 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008508 int reada_slot;
8509 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008510 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008511};
8512
8513#define DROP_REFERENCE 1
8514#define UPDATE_BACKREF 2
8515
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008516static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
8517 struct btrfs_root *root,
8518 struct walk_control *wc,
8519 struct btrfs_path *path)
8520{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008521 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008522 u64 bytenr;
8523 u64 generation;
8524 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008525 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008526 u32 nritems;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008527 struct btrfs_key key;
8528 struct extent_buffer *eb;
8529 int ret;
8530 int slot;
8531 int nread = 0;
8532
8533 if (path->slots[wc->level] < wc->reada_slot) {
8534 wc->reada_count = wc->reada_count * 2 / 3;
8535 wc->reada_count = max(wc->reada_count, 2);
8536 } else {
8537 wc->reada_count = wc->reada_count * 3 / 2;
8538 wc->reada_count = min_t(int, wc->reada_count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008539 BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008540 }
8541
8542 eb = path->nodes[wc->level];
8543 nritems = btrfs_header_nritems(eb);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008544
8545 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
8546 if (nread >= wc->reada_count)
8547 break;
8548
8549 cond_resched();
8550 bytenr = btrfs_node_blockptr(eb, slot);
8551 generation = btrfs_node_ptr_generation(eb, slot);
8552
8553 if (slot == path->slots[wc->level])
8554 goto reada;
8555
8556 if (wc->stage == UPDATE_BACKREF &&
8557 generation <= root->root_key.offset)
8558 continue;
8559
Yan, Zheng94fcca92009-10-09 09:25:16 -04008560 /* We don't lock the tree block, it's OK to be racy here */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008561 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -05008562 wc->level - 1, 1, &refs,
8563 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008564 /* We don't care about errors in readahead. */
8565 if (ret < 0)
8566 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008567 BUG_ON(refs == 0);
8568
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008569 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008570 if (refs == 1)
8571 goto reada;
8572
Yan, Zheng94fcca92009-10-09 09:25:16 -04008573 if (wc->level == 1 &&
8574 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8575 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008576 if (!wc->update_ref ||
8577 generation <= root->root_key.offset)
8578 continue;
8579 btrfs_node_key_to_cpu(eb, &key, slot);
8580 ret = btrfs_comp_cpu_keys(&key,
8581 &wc->update_progress);
8582 if (ret < 0)
8583 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008584 } else {
8585 if (wc->level == 1 &&
8586 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8587 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008588 }
8589reada:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008590 readahead_tree_block(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008591 nread++;
8592 }
8593 wc->reada_slot = slot;
8594}
8595
Chris Mason9aca1d52007-03-13 11:09:37 -04008596/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008597 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008598 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04008599 * when wc->stage == UPDATE_BACKREF, this function updates
8600 * back refs for pointers in the block.
8601 *
8602 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04008603 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008604static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
8605 struct btrfs_root *root,
8606 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008607 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04008608{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008609 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008610 int level = wc->level;
8611 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04008612 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8613 int ret;
8614
8615 if (wc->stage == UPDATE_BACKREF &&
8616 btrfs_header_owner(eb) != root->root_key.objectid)
8617 return 1;
8618
8619 /*
8620 * when reference count of tree block is 1, it won't increase
8621 * again. once full backref flag is set, we never clear it.
8622 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04008623 if (lookup_info &&
8624 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
8625 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008626 BUG_ON(!path->locks[level]);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008627 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05008628 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008629 &wc->refs[level],
8630 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008631 BUG_ON(ret == -ENOMEM);
8632 if (ret)
8633 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008634 BUG_ON(wc->refs[level] == 0);
8635 }
8636
Yan Zheng2c47e6052009-06-27 21:07:35 -04008637 if (wc->stage == DROP_REFERENCE) {
8638 if (wc->refs[level] > 1)
8639 return 1;
8640
8641 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04008642 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008643 path->locks[level] = 0;
8644 }
8645 return 0;
8646 }
8647
8648 /* wc->stage == UPDATE_BACKREF */
8649 if (!(wc->flags[level] & flag)) {
8650 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07008651 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008652 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07008653 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008654 BUG_ON(ret); /* -ENOMEM */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008655 ret = btrfs_set_disk_extent_flags(trans, fs_info, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04008656 eb->len, flag,
8657 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008658 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008659 wc->flags[level] |= flag;
8660 }
8661
8662 /*
8663 * the block is shared by multiple trees, so it's not good to
8664 * keep the tree lock
8665 */
8666 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008667 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008668 path->locks[level] = 0;
8669 }
8670 return 0;
8671}
8672
8673/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008674 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008675 *
8676 * when wc->stage == DROP_REFERENCE, this function checks
8677 * reference count of the block pointed to. if the block
8678 * is shared and we need update back refs for the subtree
8679 * rooted at the block, this function changes wc->stage to
8680 * UPDATE_BACKREF. if the block is shared and there is no
8681 * need to update back, this function drops the reference
8682 * to the block.
8683 *
8684 * NOTE: return value 1 means we should stop walking down.
8685 */
8686static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8687 struct btrfs_root *root,
8688 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008689 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008690{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008691 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008692 u64 bytenr;
8693 u64 generation;
8694 u64 parent;
8695 u32 blocksize;
8696 struct btrfs_key key;
8697 struct extent_buffer *next;
8698 int level = wc->level;
8699 int reada = 0;
8700 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008701 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008702
8703 generation = btrfs_node_ptr_generation(path->nodes[level],
8704 path->slots[level]);
8705 /*
8706 * if the lower level block was created before the snapshot
8707 * was created, we know there is no need to update back refs
8708 * for the subtree
8709 */
8710 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008711 generation <= root->root_key.offset) {
8712 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008713 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008714 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008715
8716 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008717 blocksize = fs_info->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008718
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008719 next = find_extent_buffer(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008720 if (!next) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008721 next = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008722 if (IS_ERR(next))
8723 return PTR_ERR(next);
8724
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008725 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8726 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008727 reada = 1;
8728 }
8729 btrfs_tree_lock(next);
8730 btrfs_set_lock_blocking(next);
8731
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008732 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008733 &wc->refs[level - 1],
8734 &wc->flags[level - 1]);
Josef Bacik48672682016-09-23 13:23:28 +02008735 if (ret < 0)
8736 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008737
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008738 if (unlikely(wc->refs[level - 1] == 0)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008739 btrfs_err(fs_info, "Missing references.");
Josef Bacik48672682016-09-23 13:23:28 +02008740 ret = -EIO;
8741 goto out_unlock;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008742 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008743 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008744
Yan, Zheng94fcca92009-10-09 09:25:16 -04008745 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008746 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008747 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008748 if (level == 1 &&
8749 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8750 goto skip;
8751
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008752 if (!wc->update_ref ||
8753 generation <= root->root_key.offset)
8754 goto skip;
8755
8756 btrfs_node_key_to_cpu(path->nodes[level], &key,
8757 path->slots[level]);
8758 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8759 if (ret < 0)
8760 goto skip;
8761
8762 wc->stage = UPDATE_BACKREF;
8763 wc->shared_level = level - 1;
8764 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008765 } else {
8766 if (level == 1 &&
8767 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8768 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008769 }
8770
Chris Masonb9fab912012-05-06 07:23:47 -04008771 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008772 btrfs_tree_unlock(next);
8773 free_extent_buffer(next);
8774 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008775 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008776 }
8777
8778 if (!next) {
8779 if (reada && level == 1)
8780 reada_walk_down(trans, root, wc, path);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008781 next = read_tree_block(fs_info, bytenr, generation);
Liu Bo64c043d2015-05-25 17:30:15 +08008782 if (IS_ERR(next)) {
8783 return PTR_ERR(next);
8784 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008785 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008786 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008787 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008788 btrfs_tree_lock(next);
8789 btrfs_set_lock_blocking(next);
8790 }
8791
8792 level--;
Josef Bacik48672682016-09-23 13:23:28 +02008793 ASSERT(level == btrfs_header_level(next));
8794 if (level != btrfs_header_level(next)) {
8795 btrfs_err(root->fs_info, "mismatched level");
8796 ret = -EIO;
8797 goto out_unlock;
8798 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008799 path->nodes[level] = next;
8800 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008801 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008802 wc->level = level;
8803 if (wc->level == 1)
8804 wc->reada_slot = 0;
8805 return 0;
8806skip:
8807 wc->refs[level - 1] = 0;
8808 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008809 if (wc->stage == DROP_REFERENCE) {
8810 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
8811 parent = path->nodes[level]->start;
8812 } else {
Josef Bacik48672682016-09-23 13:23:28 +02008813 ASSERT(root->root_key.objectid ==
Yan, Zheng94fcca92009-10-09 09:25:16 -04008814 btrfs_header_owner(path->nodes[level]));
Josef Bacik48672682016-09-23 13:23:28 +02008815 if (root->root_key.objectid !=
8816 btrfs_header_owner(path->nodes[level])) {
8817 btrfs_err(root->fs_info,
8818 "mismatched block owner");
8819 ret = -EIO;
8820 goto out_unlock;
8821 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008822 parent = 0;
8823 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008824
Mark Fasheh11526512014-07-17 12:39:01 -07008825 if (need_account) {
Qu Wenruo33d1f052016-10-18 09:31:28 +08008826 ret = btrfs_qgroup_trace_subtree(trans, root, next,
8827 generation, level - 1);
Mark Fasheh11526512014-07-17 12:39:01 -07008828 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008829 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008830 "Error %d accounting shared subtree. Quota is out of sync, rescan required.",
8831 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07008832 }
8833 }
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008834 ret = btrfs_free_extent(trans, root, bytenr, blocksize,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008835 parent, root->root_key.objectid,
8836 level - 1, 0);
Josef Bacik48672682016-09-23 13:23:28 +02008837 if (ret)
8838 goto out_unlock;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008839 }
Josef Bacik48672682016-09-23 13:23:28 +02008840
8841 *lookup_info = 1;
8842 ret = 1;
8843
8844out_unlock:
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008845 btrfs_tree_unlock(next);
8846 free_extent_buffer(next);
Josef Bacik48672682016-09-23 13:23:28 +02008847
8848 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008849}
8850
8851/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008852 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008853 *
8854 * when wc->stage == DROP_REFERENCE, this function drops
8855 * reference count on the block.
8856 *
8857 * when wc->stage == UPDATE_BACKREF, this function changes
8858 * wc->stage back to DROP_REFERENCE if we changed wc->stage
8859 * to UPDATE_BACKREF previously while processing the block.
8860 *
8861 * NOTE: return value 1 means we should stop walking up.
8862 */
8863static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
8864 struct btrfs_root *root,
8865 struct btrfs_path *path,
8866 struct walk_control *wc)
8867{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008868 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008869 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008870 int level = wc->level;
8871 struct extent_buffer *eb = path->nodes[level];
8872 u64 parent = 0;
8873
8874 if (wc->stage == UPDATE_BACKREF) {
8875 BUG_ON(wc->shared_level < level);
8876 if (level < wc->shared_level)
8877 goto out;
8878
Yan Zheng2c47e6052009-06-27 21:07:35 -04008879 ret = find_next_key(path, level + 1, &wc->update_progress);
8880 if (ret > 0)
8881 wc->update_ref = 0;
8882
8883 wc->stage = DROP_REFERENCE;
8884 wc->shared_level = -1;
8885 path->slots[level] = 0;
8886
8887 /*
8888 * check reference count again if the block isn't locked.
8889 * we should start walking down the tree again if reference
8890 * count is one.
8891 */
8892 if (!path->locks[level]) {
8893 BUG_ON(level == 0);
8894 btrfs_tree_lock(eb);
8895 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008896 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008897
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008898 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05008899 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008900 &wc->refs[level],
8901 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008902 if (ret < 0) {
8903 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008904 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008905 return ret;
8906 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008907 BUG_ON(wc->refs[level] == 0);
8908 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04008909 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008910 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008911 return 1;
8912 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008913 }
8914 }
8915
8916 /* wc->stage == DROP_REFERENCE */
8917 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
8918
8919 if (wc->refs[level] == 1) {
8920 if (level == 0) {
8921 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07008922 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008923 else
Josef Bacike339a6b2014-07-02 10:54:25 -07008924 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008925 BUG_ON(ret); /* -ENOMEM */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008926 ret = btrfs_qgroup_trace_leaf_items(trans, fs_info, eb);
Mark Fasheh11526512014-07-17 12:39:01 -07008927 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008928 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008929 "error %d accounting leaf items. Quota is out of sync, rescan required.",
8930 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07008931 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008932 }
8933 /* make block locked assertion in clean_tree_block happy */
8934 if (!path->locks[level] &&
8935 btrfs_header_generation(eb) == trans->transid) {
8936 btrfs_tree_lock(eb);
8937 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008938 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008939 }
David Sterba7c302b42017-02-10 18:47:57 +01008940 clean_tree_block(fs_info, eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008941 }
8942
8943 if (eb == root->node) {
8944 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8945 parent = eb->start;
8946 else
8947 BUG_ON(root->root_key.objectid !=
8948 btrfs_header_owner(eb));
8949 } else {
8950 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8951 parent = path->nodes[level + 1]->start;
8952 else
8953 BUG_ON(root->root_key.objectid !=
8954 btrfs_header_owner(path->nodes[level + 1]));
8955 }
8956
Jan Schmidt5581a512012-05-16 17:04:52 +02008957 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008958out:
8959 wc->refs[level] = 0;
8960 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008961 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008962}
8963
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008964static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
8965 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008966 struct btrfs_path *path,
8967 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008968{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008969 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008970 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008971 int ret;
8972
Yan Zheng2c47e6052009-06-27 21:07:35 -04008973 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04008974 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008975 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008976 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008977
Yan Zheng2c47e6052009-06-27 21:07:35 -04008978 if (level == 0)
8979 break;
8980
Yan, Zheng7a7965f2010-02-01 02:41:17 +00008981 if (path->slots[level] >=
8982 btrfs_header_nritems(path->nodes[level]))
8983 break;
8984
Yan, Zheng94fcca92009-10-09 09:25:16 -04008985 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008986 if (ret > 0) {
8987 path->slots[level]++;
8988 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00008989 } else if (ret < 0)
8990 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008991 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008992 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04008993 return 0;
8994}
8995
Chris Masond3977122009-01-05 21:25:51 -05008996static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05008997 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04008998 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008999 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05009000{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009001 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05009002 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04009003
Yan Zheng2c47e6052009-06-27 21:07:35 -04009004 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
9005 while (level < max_level && path->nodes[level]) {
9006 wc->level = level;
9007 if (path->slots[level] + 1 <
9008 btrfs_header_nritems(path->nodes[level])) {
9009 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05009010 return 0;
9011 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009012 ret = walk_up_proc(trans, root, path, wc);
9013 if (ret > 0)
9014 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05009015
Yan Zheng2c47e6052009-06-27 21:07:35 -04009016 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04009017 btrfs_tree_unlock_rw(path->nodes[level],
9018 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009019 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009020 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009021 free_extent_buffer(path->nodes[level]);
9022 path->nodes[level] = NULL;
9023 level++;
Chris Mason20524f02007-03-10 06:35:47 -05009024 }
9025 }
9026 return 1;
9027}
9028
Chris Mason9aca1d52007-03-13 11:09:37 -04009029/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04009030 * drop a subvolume tree.
9031 *
9032 * this function traverses the tree freeing any blocks that only
9033 * referenced by the tree.
9034 *
9035 * when a shared tree block is found. this function decreases its
9036 * reference count by one. if update_ref is true, this function
9037 * also make sure backrefs for the shared block and all lower level
9038 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00009039 *
9040 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04009041 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04009042int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009043 struct btrfs_block_rsv *block_rsv, int update_ref,
9044 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05009045{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009046 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04009047 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009048 struct btrfs_trans_handle *trans;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009049 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04009050 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009051 struct walk_control *wc;
9052 struct btrfs_key key;
9053 int err = 0;
9054 int ret;
9055 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04009056 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05009057
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009058 btrfs_debug(fs_info, "Drop subvolume %llu", root->objectid);
Mark Fasheh11526512014-07-17 12:39:01 -07009059
Chris Mason5caf2a02007-04-02 11:20:42 -04009060 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009061 if (!path) {
9062 err = -ENOMEM;
9063 goto out;
9064 }
Chris Mason20524f02007-03-10 06:35:47 -05009065
Yan Zheng2c47e6052009-06-27 21:07:35 -04009066 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07009067 if (!wc) {
9068 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009069 err = -ENOMEM;
9070 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07009071 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009072
Yan, Zhenga22285a2010-05-16 10:48:46 -04009073 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009074 if (IS_ERR(trans)) {
9075 err = PTR_ERR(trans);
9076 goto out_free;
9077 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00009078
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009079 if (block_rsv)
9080 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009081
Chris Mason9f3a7422007-08-07 15:52:19 -04009082 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009083 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009084 path->nodes[level] = btrfs_lock_root_node(root);
9085 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04009086 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009087 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009088 memset(&wc->update_progress, 0,
9089 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04009090 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04009091 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009092 memcpy(&wc->update_progress, &key,
9093 sizeof(wc->update_progress));
9094
Chris Mason6702ed42007-08-07 16:15:09 -04009095 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009096 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04009097 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009098 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
9099 path->lowest_level = 0;
9100 if (ret < 0) {
9101 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009102 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04009103 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009104 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009105
Chris Mason7d9eb122008-07-08 14:19:17 -04009106 /*
9107 * unlock our path, this is safe because only this
9108 * function is allowed to delete this snapshot
9109 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009110 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04009111
Yan Zheng2c47e6052009-06-27 21:07:35 -04009112 level = btrfs_header_level(root->node);
9113 while (1) {
9114 btrfs_tree_lock(path->nodes[level]);
9115 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009116 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009117
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009118 ret = btrfs_lookup_extent_info(trans, fs_info,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009119 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05009120 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04009121 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009122 if (ret < 0) {
9123 err = ret;
9124 goto out_end_trans;
9125 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009126 BUG_ON(wc->refs[level] == 0);
9127
9128 if (level == root_item->drop_level)
9129 break;
9130
9131 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009132 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009133 WARN_ON(wc->refs[level] != 1);
9134 level--;
9135 }
9136 }
9137
9138 wc->level = level;
9139 wc->shared_level = -1;
9140 wc->stage = DROP_REFERENCE;
9141 wc->update_ref = update_ref;
9142 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009143 wc->for_reloc = for_reloc;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009144 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009145
9146 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00009147
Yan Zheng2c47e6052009-06-27 21:07:35 -04009148 ret = walk_down_tree(trans, root, path, wc);
9149 if (ret < 0) {
9150 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04009151 break;
9152 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009153
9154 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
9155 if (ret < 0) {
9156 err = ret;
9157 break;
9158 }
9159
9160 if (ret > 0) {
9161 BUG_ON(wc->stage != DROP_REFERENCE);
9162 break;
9163 }
9164
9165 if (wc->stage == DROP_REFERENCE) {
9166 level = wc->level;
9167 btrfs_node_key(path->nodes[level],
9168 &root_item->drop_progress,
9169 path->slots[level]);
9170 root_item->drop_level = level;
9171 }
9172
9173 BUG_ON(wc->level == 0);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009174 if (btrfs_should_end_transaction(trans) ||
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009175 (!for_reloc && btrfs_need_cleaner_sleep(fs_info))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009176 ret = btrfs_update_root(trans, tree_root,
9177 &root->root_key,
9178 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009179 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009180 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009181 err = ret;
9182 goto out_end_trans;
9183 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009184
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009185 btrfs_end_transaction_throttle(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009186 if (!for_reloc && btrfs_need_cleaner_sleep(fs_info)) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009187 btrfs_debug(fs_info,
9188 "drop snapshot early exit");
Josef Bacik3c8f2422013-07-15 11:57:06 -04009189 err = -EAGAIN;
9190 goto out_free;
9191 }
9192
Yan, Zhenga22285a2010-05-16 10:48:46 -04009193 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009194 if (IS_ERR(trans)) {
9195 err = PTR_ERR(trans);
9196 goto out_free;
9197 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009198 if (block_rsv)
9199 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04009200 }
Chris Mason20524f02007-03-10 06:35:47 -05009201 }
David Sterbab3b4aa72011-04-21 01:20:15 +02009202 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009203 if (err)
9204 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009205
Jeff Mahoney1cd54472017-08-17 10:25:11 -04009206 ret = btrfs_del_root(trans, fs_info, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009207 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009208 btrfs_abort_transaction(trans, ret);
Jeff Mahoneye19182c2017-12-04 13:11:45 -05009209 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009210 goto out_end_trans;
9211 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009212
Yan, Zheng76dda932009-09-21 16:00:26 -04009213 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00009214 ret = btrfs_find_root(tree_root, &root->root_key, path,
9215 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009216 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009217 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009218 err = ret;
9219 goto out_end_trans;
9220 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05009221 /* if we fail to delete the orphan item this time
9222 * around, it'll get picked up the next time.
9223 *
9224 * The most common failure here is just -ENOENT.
9225 */
9226 btrfs_del_orphan_item(trans, tree_root,
9227 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04009228 }
9229 }
9230
Miao Xie27cdeb72014-04-02 19:51:05 +08009231 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Josef Bacik2b9dbef2015-09-15 10:07:04 -04009232 btrfs_add_dropped_root(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009233 } else {
9234 free_extent_buffer(root->node);
9235 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00009236 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009237 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04009238 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009239out_end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009240 btrfs_end_transaction_throttle(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009241out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04009242 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04009243 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009244out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04009245 /*
9246 * So if we need to stop dropping the snapshot for whatever reason we
9247 * need to make sure to add it back to the dead root list so that we
9248 * keep trying to do the work later. This also cleans up roots if we
9249 * don't have it in the radix (like when we recover after a power fail
9250 * or unmount) so we don't leak memory.
9251 */
Thomas Meyer897ca812017-10-07 16:02:21 +02009252 if (!for_reloc && !root_dropped)
Josef Bacikd29a9f62013-07-17 19:30:20 -04009253 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08009254 if (err && err != -EAGAIN)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009255 btrfs_handle_fs_error(fs_info, err, NULL);
Jeff Mahoney2c536792011-10-03 23:22:41 -04009256 return err;
Chris Mason20524f02007-03-10 06:35:47 -05009257}
Chris Mason9078a3e2007-04-26 16:46:15 -04009258
Yan Zheng2c47e6052009-06-27 21:07:35 -04009259/*
9260 * drop subtree rooted at tree block 'node'.
9261 *
9262 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009263 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04009264 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04009265int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
9266 struct btrfs_root *root,
9267 struct extent_buffer *node,
9268 struct extent_buffer *parent)
9269{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009270 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009271 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009272 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009273 int level;
9274 int parent_level;
9275 int ret = 0;
9276 int wret;
9277
Yan Zheng2c47e6052009-06-27 21:07:35 -04009278 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
9279
Yan Zhengf82d02d2008-10-29 14:49:05 -04009280 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009281 if (!path)
9282 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009283
Yan Zheng2c47e6052009-06-27 21:07:35 -04009284 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009285 if (!wc) {
9286 btrfs_free_path(path);
9287 return -ENOMEM;
9288 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009289
Chris Masonb9447ef2009-03-09 11:45:38 -04009290 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009291 parent_level = btrfs_header_level(parent);
9292 extent_buffer_get(parent);
9293 path->nodes[parent_level] = parent;
9294 path->slots[parent_level] = btrfs_header_nritems(parent);
9295
Chris Masonb9447ef2009-03-09 11:45:38 -04009296 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009297 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009298 path->nodes[level] = node;
9299 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009300 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009301
9302 wc->refs[parent_level] = 1;
9303 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
9304 wc->level = level;
9305 wc->shared_level = -1;
9306 wc->stage = DROP_REFERENCE;
9307 wc->update_ref = 0;
9308 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009309 wc->for_reloc = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009310 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009311
9312 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009313 wret = walk_down_tree(trans, root, path, wc);
9314 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04009315 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009316 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009317 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009318
Yan Zheng2c47e6052009-06-27 21:07:35 -04009319 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009320 if (wret < 0)
9321 ret = wret;
9322 if (wret != 0)
9323 break;
9324 }
9325
Yan Zheng2c47e6052009-06-27 21:07:35 -04009326 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009327 btrfs_free_path(path);
9328 return ret;
9329}
9330
Jeff Mahoney6202df62016-06-22 18:54:22 -04009331static u64 update_block_group_flags(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04009332{
9333 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009334 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04009335
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009336 /*
9337 * if restripe for this chunk_type is on pick target profile and
9338 * return, otherwise do the usual balance
9339 */
Jeff Mahoney6202df62016-06-22 18:54:22 -04009340 stripped = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009341 if (stripped)
9342 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02009343
Jeff Mahoney6202df62016-06-22 18:54:22 -04009344 num_devices = fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05009345
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009346 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009347 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009348 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
9349
Chris Masonec44a352008-04-28 15:29:52 -04009350 if (num_devices == 1) {
9351 stripped |= BTRFS_BLOCK_GROUP_DUP;
9352 stripped = flags & ~stripped;
9353
9354 /* turn raid0 into single device chunks */
9355 if (flags & BTRFS_BLOCK_GROUP_RAID0)
9356 return stripped;
9357
9358 /* turn mirroring into duplication */
9359 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
9360 BTRFS_BLOCK_GROUP_RAID10))
9361 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04009362 } else {
9363 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04009364 if (flags & stripped)
9365 return flags;
9366
9367 stripped |= BTRFS_BLOCK_GROUP_DUP;
9368 stripped = flags & ~stripped;
9369
9370 /* switch duplicated blocks with raid1 */
9371 if (flags & BTRFS_BLOCK_GROUP_DUP)
9372 return stripped | BTRFS_BLOCK_GROUP_RAID1;
9373
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009374 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04009375 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009376
Chris Masonec44a352008-04-28 15:29:52 -04009377 return flags;
9378}
9379
Zhaolei868f4012015-08-05 16:43:27 +08009380static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04009381{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009382 struct btrfs_space_info *sinfo = cache->space_info;
9383 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00009384 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009385 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04009386
Miao Xie199c36e2011-07-15 10:34:36 +00009387 /*
9388 * We need some metadata space and system metadata space for
9389 * allocating chunks in some corner cases until we force to set
9390 * it to be readonly.
9391 */
9392 if ((sinfo->flags &
9393 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
9394 !force)
Byongho Leeee221842015-12-15 01:42:10 +09009395 min_allocable_bytes = SZ_1M;
Miao Xie199c36e2011-07-15 10:34:36 +00009396 else
9397 min_allocable_bytes = 0;
9398
Yan, Zhengf0486c62010-05-16 10:46:25 -04009399 spin_lock(&sinfo->lock);
9400 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00009401
9402 if (cache->ro) {
Zhaolei868f4012015-08-05 16:43:27 +08009403 cache->ro++;
WuBo61cfea92011-07-26 03:30:11 +00009404 ret = 0;
9405 goto out;
9406 }
9407
Yan, Zhengf0486c62010-05-16 10:46:25 -04009408 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
9409 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04009410
Liu Bo41361352017-02-13 15:42:21 -08009411 if (btrfs_space_info_used(sinfo, true) + num_bytes +
Josef Bacik37be25b2011-08-05 10:25:38 -04009412 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04009413 sinfo->bytes_readonly += num_bytes;
Zhaolei868f4012015-08-05 16:43:27 +08009414 cache->ro++;
Josef Bacik633c0aa2014-10-31 09:49:34 -04009415 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009416 ret = 0;
9417 }
WuBo61cfea92011-07-26 03:30:11 +00009418out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04009419 spin_unlock(&cache->lock);
9420 spin_unlock(&sinfo->lock);
9421 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04009422}
9423
Jeff Mahoney5e00f192017-02-15 16:28:29 -05009424int btrfs_inc_block_group_ro(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04009425 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009426
9427{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009428 struct btrfs_trans_handle *trans;
9429 u64 alloc_flags;
9430 int ret;
9431
Chris Mason1bbc6212015-04-06 12:46:08 -07009432again:
Jeff Mahoney5e00f192017-02-15 16:28:29 -05009433 trans = btrfs_join_transaction(fs_info->extent_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009434 if (IS_ERR(trans))
9435 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009436
Chris Mason1bbc6212015-04-06 12:46:08 -07009437 /*
9438 * we're not allowed to set block groups readonly after the dirty
9439 * block groups cache has started writing. If it already started,
9440 * back off and let this transaction commit
9441 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009442 mutex_lock(&fs_info->ro_block_group_mutex);
Josef Bacik3204d332015-09-24 10:46:10 -04009443 if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009444 u64 transid = trans->transid;
9445
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009446 mutex_unlock(&fs_info->ro_block_group_mutex);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009447 btrfs_end_transaction(trans);
Chris Mason1bbc6212015-04-06 12:46:08 -07009448
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009449 ret = btrfs_wait_for_commit(fs_info, transid);
Chris Mason1bbc6212015-04-06 12:46:08 -07009450 if (ret)
9451 return ret;
9452 goto again;
9453 }
9454
Chris Mason153c35b2015-05-19 18:54:41 -07009455 /*
9456 * if we are changing raid levels, try to allocate a corresponding
9457 * block group with the new raid level.
9458 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009459 alloc_flags = update_block_group_flags(fs_info, cache->flags);
Chris Mason153c35b2015-05-19 18:54:41 -07009460 if (alloc_flags != cache->flags) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009461 ret = do_chunk_alloc(trans, fs_info, alloc_flags,
Chris Mason153c35b2015-05-19 18:54:41 -07009462 CHUNK_ALLOC_FORCE);
9463 /*
9464 * ENOSPC is allowed here, we may have enough space
9465 * already allocated at the new raid level to
9466 * carry on
9467 */
9468 if (ret == -ENOSPC)
9469 ret = 0;
9470 if (ret < 0)
9471 goto out;
9472 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009473
Zhaolei868f4012015-08-05 16:43:27 +08009474 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009475 if (!ret)
9476 goto out;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009477 alloc_flags = get_alloc_profile(fs_info, cache->space_info->flags);
9478 ret = do_chunk_alloc(trans, fs_info, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04009479 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009480 if (ret < 0)
9481 goto out;
Zhaolei868f4012015-08-05 16:43:27 +08009482 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009483out:
Shaohua Li2f081082015-01-09 10:40:15 -08009484 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009485 alloc_flags = update_block_group_flags(fs_info, cache->flags);
David Sterba34441362016-10-04 19:34:27 +02009486 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009487 check_system_chunk(trans, fs_info, alloc_flags);
David Sterba34441362016-10-04 19:34:27 +02009488 mutex_unlock(&fs_info->chunk_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009489 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009490 mutex_unlock(&fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009491
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009492 btrfs_end_transaction(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009493 return ret;
9494}
9495
Chris Masonc87f08c2011-02-16 13:57:04 -05009496int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009497 struct btrfs_fs_info *fs_info, u64 type)
Chris Masonc87f08c2011-02-16 13:57:04 -05009498{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009499 u64 alloc_flags = get_alloc_profile(fs_info, type);
9500
9501 return do_chunk_alloc(trans, fs_info, alloc_flags, CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05009502}
9503
Miao Xie6d07bce2011-01-05 10:07:31 +00009504/*
9505 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04009506 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00009507 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009508u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00009509{
9510 struct btrfs_block_group_cache *block_group;
9511 u64 free_bytes = 0;
9512 int factor;
9513
Nicholas D Steeves01327612016-05-19 21:18:45 -04009514 /* It's df, we don't care if it's racy */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009515 if (list_empty(&sinfo->ro_bgs))
9516 return 0;
9517
9518 spin_lock(&sinfo->lock);
9519 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00009520 spin_lock(&block_group->lock);
9521
9522 if (!block_group->ro) {
9523 spin_unlock(&block_group->lock);
9524 continue;
9525 }
9526
9527 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
9528 BTRFS_BLOCK_GROUP_RAID10 |
9529 BTRFS_BLOCK_GROUP_DUP))
9530 factor = 2;
9531 else
9532 factor = 1;
9533
9534 free_bytes += (block_group->key.offset -
9535 btrfs_block_group_used(&block_group->item)) *
9536 factor;
9537
9538 spin_unlock(&block_group->lock);
9539 }
Miao Xie6d07bce2011-01-05 10:07:31 +00009540 spin_unlock(&sinfo->lock);
9541
9542 return free_bytes;
9543}
9544
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009545void btrfs_dec_block_group_ro(struct btrfs_block_group_cache *cache)
Yan, Zhengf0486c62010-05-16 10:46:25 -04009546{
9547 struct btrfs_space_info *sinfo = cache->space_info;
9548 u64 num_bytes;
9549
9550 BUG_ON(!cache->ro);
9551
9552 spin_lock(&sinfo->lock);
9553 spin_lock(&cache->lock);
Zhaolei868f4012015-08-05 16:43:27 +08009554 if (!--cache->ro) {
9555 num_bytes = cache->key.offset - cache->reserved -
9556 cache->pinned - cache->bytes_super -
9557 btrfs_block_group_used(&cache->item);
9558 sinfo->bytes_readonly -= num_bytes;
9559 list_del_init(&cache->ro_list);
9560 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009561 spin_unlock(&cache->lock);
9562 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009563}
9564
Josef Bacikba1bf482009-09-11 16:11:19 -04009565/*
9566 * checks to see if its even possible to relocate this block group.
9567 *
9568 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
9569 * ok to go ahead and try.
9570 */
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009571int btrfs_can_relocate(struct btrfs_fs_info *fs_info, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04009572{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009573 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04009574 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04009575 struct btrfs_space_info *space_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009576 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacikba1bf482009-09-11 16:11:19 -04009577 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04009578 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00009579 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04009580 u64 dev_min = 1;
9581 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009582 u64 target;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009583 int debug;
liubocdcb7252011-08-03 10:15:25 +00009584 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04009585 int full = 0;
9586 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05009587
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009588 debug = btrfs_test_opt(fs_info, ENOSPC_DEBUG);
Qu Wenruo0305bc22016-03-23 11:38:17 +08009589
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009590 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04009591
Josef Bacikba1bf482009-09-11 16:11:19 -04009592 /* odd, couldn't find the block group, leave it alone */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009593 if (!block_group) {
9594 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009595 btrfs_warn(fs_info,
Qu Wenruo0305bc22016-03-23 11:38:17 +08009596 "can't find block group for bytenr %llu",
9597 bytenr);
Josef Bacikba1bf482009-09-11 16:11:19 -04009598 return -1;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009599 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009600
liubocdcb7252011-08-03 10:15:25 +00009601 min_free = btrfs_block_group_used(&block_group->item);
9602
Josef Bacikba1bf482009-09-11 16:11:19 -04009603 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00009604 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04009605 goto out;
Chris Mason323da792008-05-09 11:46:48 -04009606
Josef Bacikba1bf482009-09-11 16:11:19 -04009607 space_info = block_group->space_info;
9608 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04009609
Josef Bacikba1bf482009-09-11 16:11:19 -04009610 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04009611
Josef Bacikba1bf482009-09-11 16:11:19 -04009612 /*
9613 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04009614 * relocate it unless we're able to allocate a new chunk below.
9615 *
9616 * Otherwise, we need to make sure we have room in the space to handle
9617 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04009618 */
Chris Mason7ce618d2009-09-22 14:48:44 -04009619 if ((space_info->total_bytes != block_group->key.offset) &&
Liu Bo41361352017-02-13 15:42:21 -08009620 (btrfs_space_info_used(space_info, false) + min_free <
9621 space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04009622 spin_unlock(&space_info->lock);
9623 goto out;
9624 }
9625 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009626
Josef Bacikba1bf482009-09-11 16:11:19 -04009627 /*
9628 * ok we don't have enough space, but maybe we have free space on our
9629 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009630 * alloc devices and guess if we have enough space. if this block
9631 * group is going to be restriped, run checks against the target
9632 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04009633 */
9634 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05009635
liubocdcb7252011-08-03 10:15:25 +00009636 /*
9637 * index:
9638 * 0: raid10
9639 * 1: raid1
9640 * 2: dup
9641 * 3: raid0
9642 * 4: single
9643 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009644 target = get_restripe_target(fs_info, block_group->flags);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009645 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00009646 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009647 } else {
9648 /*
9649 * this is just a balance, so if we were marked as full
9650 * we know there is no space for a new chunk
9651 */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009652 if (full) {
9653 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009654 btrfs_warn(fs_info,
9655 "no space to alloc new chunk for block group %llu",
9656 block_group->key.objectid);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009657 goto out;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009658 }
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009659
9660 index = get_block_group_index(block_group);
9661 }
9662
Miao Xiee6ec7162013-01-17 05:38:51 +00009663 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00009664 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04009665 /* Divide by 2 */
9666 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009667 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00009668 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00009669 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04009670 /* Multiply by 2 */
9671 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009672 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00009673 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01009674 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00009675 }
9676
Josef Bacik6df9a952013-06-27 13:22:46 -04009677 /* We need to do this so that we can look at pending chunks */
9678 trans = btrfs_join_transaction(root);
9679 if (IS_ERR(trans)) {
9680 ret = PTR_ERR(trans);
9681 goto out;
9682 }
9683
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009684 mutex_lock(&fs_info->chunk_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04009685 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00009686 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04009687
Josef Bacikba1bf482009-09-11 16:11:19 -04009688 /*
9689 * check to make sure we can actually find a chunk with enough
9690 * space to fit our block group in.
9691 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01009692 if (device->total_bytes > device->bytes_used + min_free &&
9693 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04009694 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00009695 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009696 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009697 dev_nr++;
9698
9699 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009700 break;
liubocdcb7252011-08-03 10:15:25 +00009701
Josef Bacikba1bf482009-09-11 16:11:19 -04009702 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009703 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009704 }
Qu Wenruo0305bc22016-03-23 11:38:17 +08009705 if (debug && ret == -1)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009706 btrfs_warn(fs_info,
9707 "no space to allocate a new chunk for block group %llu",
9708 block_group->key.objectid);
9709 mutex_unlock(&fs_info->chunk_mutex);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009710 btrfs_end_transaction(trans);
Chris Masonedbd8d42007-12-21 16:27:24 -05009711out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009712 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009713 return ret;
9714}
9715
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009716static int find_first_block_group(struct btrfs_fs_info *fs_info,
9717 struct btrfs_path *path,
9718 struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009719{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009720 struct btrfs_root *root = fs_info->extent_root;
Chris Mason925baed2008-06-25 16:01:30 -04009721 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009722 struct btrfs_key found_key;
9723 struct extent_buffer *leaf;
9724 int slot;
9725
9726 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9727 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009728 goto out;
9729
Chris Masond3977122009-01-05 21:25:51 -05009730 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009731 slot = path->slots[0];
9732 leaf = path->nodes[0];
9733 if (slot >= btrfs_header_nritems(leaf)) {
9734 ret = btrfs_next_leaf(root, path);
9735 if (ret == 0)
9736 continue;
9737 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009738 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009739 break;
9740 }
9741 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9742
9743 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009744 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
Liu Bo6fb37b72016-06-22 18:31:27 -07009745 struct extent_map_tree *em_tree;
9746 struct extent_map *em;
9747
9748 em_tree = &root->fs_info->mapping_tree.map_tree;
9749 read_lock(&em_tree->lock);
9750 em = lookup_extent_mapping(em_tree, found_key.objectid,
9751 found_key.offset);
9752 read_unlock(&em_tree->lock);
9753 if (!em) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009754 btrfs_err(fs_info,
Liu Bo6fb37b72016-06-22 18:31:27 -07009755 "logical %llu len %llu found bg but no related chunk",
9756 found_key.objectid, found_key.offset);
9757 ret = -ENOENT;
9758 } else {
9759 ret = 0;
9760 }
Josef Bacik187ee582016-08-18 15:30:06 -04009761 free_extent_map(em);
Chris Mason925baed2008-06-25 16:01:30 -04009762 goto out;
9763 }
Chris Mason0b86a832008-03-24 15:01:56 -04009764 path->slots[0]++;
9765 }
Chris Mason925baed2008-06-25 16:01:30 -04009766out:
Chris Mason0b86a832008-03-24 15:01:56 -04009767 return ret;
9768}
9769
Josef Bacik0af3d002010-06-21 14:48:16 -04009770void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
9771{
9772 struct btrfs_block_group_cache *block_group;
9773 u64 last = 0;
9774
9775 while (1) {
9776 struct inode *inode;
9777
9778 block_group = btrfs_lookup_first_block_group(info, last);
9779 while (block_group) {
9780 spin_lock(&block_group->lock);
9781 if (block_group->iref)
9782 break;
9783 spin_unlock(&block_group->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009784 block_group = next_block_group(info, block_group);
Josef Bacik0af3d002010-06-21 14:48:16 -04009785 }
9786 if (!block_group) {
9787 if (last == 0)
9788 break;
9789 last = 0;
9790 continue;
9791 }
9792
9793 inode = block_group->inode;
9794 block_group->iref = 0;
9795 block_group->inode = NULL;
9796 spin_unlock(&block_group->lock);
Liu Bof3bca802016-07-20 17:33:44 -07009797 ASSERT(block_group->io_ctl.inode == NULL);
Josef Bacik0af3d002010-06-21 14:48:16 -04009798 iput(inode);
9799 last = block_group->key.objectid + block_group->key.offset;
9800 btrfs_put_block_group(block_group);
9801 }
9802}
9803
Filipe Manana5cdd7db2017-02-01 22:39:50 +00009804/*
9805 * Must be called only after stopping all workers, since we could have block
9806 * group caching kthreads running, and therefore they could race with us if we
9807 * freed the block groups before stopping them.
9808 */
Zheng Yan1a40e232008-09-26 10:09:34 -04009809int btrfs_free_block_groups(struct btrfs_fs_info *info)
9810{
9811 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04009812 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04009813 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04009814 struct rb_node *n;
9815
Josef Bacik9e351cc2014-03-13 15:42:13 -04009816 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009817 while (!list_empty(&info->caching_block_groups)) {
9818 caching_ctl = list_entry(info->caching_block_groups.next,
9819 struct btrfs_caching_control, list);
9820 list_del(&caching_ctl->list);
9821 put_caching_control(caching_ctl);
9822 }
Josef Bacik9e351cc2014-03-13 15:42:13 -04009823 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009824
Josef Bacik47ab2a62014-09-18 11:20:02 -04009825 spin_lock(&info->unused_bgs_lock);
9826 while (!list_empty(&info->unused_bgs)) {
9827 block_group = list_first_entry(&info->unused_bgs,
9828 struct btrfs_block_group_cache,
9829 bg_list);
9830 list_del_init(&block_group->bg_list);
9831 btrfs_put_block_group(block_group);
9832 }
9833 spin_unlock(&info->unused_bgs_lock);
9834
Zheng Yan1a40e232008-09-26 10:09:34 -04009835 spin_lock(&info->block_group_cache_lock);
9836 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
9837 block_group = rb_entry(n, struct btrfs_block_group_cache,
9838 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04009839 rb_erase(&block_group->cache_node,
9840 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009841 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -04009842 spin_unlock(&info->block_group_cache_lock);
9843
Josef Bacik80eb2342008-10-29 14:49:05 -04009844 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04009845 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04009846 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05009847
Josef Bacik3c148742011-02-02 15:53:47 +00009848 /*
9849 * We haven't cached this block group, which means we could
9850 * possibly have excluded extents on this block group.
9851 */
Josef Bacik36cce922013-08-05 11:15:21 -04009852 if (block_group->cached == BTRFS_CACHE_NO ||
9853 block_group->cached == BTRFS_CACHE_ERROR)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009854 free_excluded_extents(info, block_group);
Josef Bacik3c148742011-02-02 15:53:47 +00009855
Josef Bacik817d52f2009-07-13 21:29:25 -04009856 btrfs_remove_free_space_cache(block_group);
Filipe Manana5cdd7db2017-02-01 22:39:50 +00009857 ASSERT(block_group->cached != BTRFS_CACHE_STARTED);
Liu Bof3bca802016-07-20 17:33:44 -07009858 ASSERT(list_empty(&block_group->dirty_list));
9859 ASSERT(list_empty(&block_group->io_list));
9860 ASSERT(list_empty(&block_group->bg_list));
9861 ASSERT(atomic_read(&block_group->count) == 1);
Josef Bacik11dfe352009-11-13 20:12:59 +00009862 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04009863
9864 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009865 }
9866 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04009867
9868 /* now that all the block groups are freed, go through and
9869 * free all the space_info structs. This is only called during
9870 * the final stages of unmount, and so we know nobody is
9871 * using them. We call synchronize_rcu() once before we start,
9872 * just to be on the safe side.
9873 */
9874 synchronize_rcu();
9875
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04009876 release_global_block_rsv(info);
9877
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05309878 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009879 int i;
9880
Chris Mason4184ea72009-03-10 12:39:20 -04009881 space_info = list_entry(info->space_info.next,
9882 struct btrfs_space_info,
9883 list);
Josef Bacikd555b6c2016-03-25 13:25:51 -04009884
9885 /*
9886 * Do not hide this behind enospc_debug, this is actually
9887 * important and indicates a real bug if this happens.
9888 */
9889 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +00009890 space_info->bytes_reserved > 0 ||
Josef Bacikd555b6c2016-03-25 13:25:51 -04009891 space_info->bytes_may_use > 0))
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009892 dump_space_info(info, space_info, 0, 0);
Chris Mason4184ea72009-03-10 12:39:20 -04009893 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009894 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
9895 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009896 kobj = space_info->block_group_kobjs[i];
9897 space_info->block_group_kobjs[i] = NULL;
9898 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009899 kobject_del(kobj);
9900 kobject_put(kobj);
9901 }
9902 }
9903 kobject_del(&space_info->kobj);
9904 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -04009905 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009906 return 0;
9907}
9908
Nikolay Borisovc434d212017-08-21 12:43:50 +03009909static void link_block_group(struct btrfs_block_group_cache *cache)
Yan, Zhengb742bb82010-05-16 10:46:24 -04009910{
Nikolay Borisovc434d212017-08-21 12:43:50 +03009911 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengb742bb82010-05-16 10:46:24 -04009912 int index = get_block_group_index(cache);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04009913 bool first = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04009914
9915 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04009916 if (list_empty(&space_info->block_groups[index]))
9917 first = true;
9918 list_add_tail(&cache->list, &space_info->block_groups[index]);
9919 up_write(&space_info->groups_sem);
9920
9921 if (first) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009922 struct raid_kobject *rkobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009923 int ret;
9924
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009925 rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
9926 if (!rkobj)
9927 goto out_err;
9928 rkobj->raid_type = index;
9929 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
9930 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
9931 "%s", get_raid_name(index));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009932 if (ret) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009933 kobject_put(&rkobj->kobj);
9934 goto out_err;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009935 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009936 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009937 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009938
9939 return;
9940out_err:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009941 btrfs_warn(cache->fs_info,
9942 "failed to add kobject for block cache, ignoring");
Yan, Zhengb742bb82010-05-16 10:46:24 -04009943}
9944
Miao Xie920e4a52014-01-15 20:00:55 +08009945static struct btrfs_block_group_cache *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009946btrfs_create_block_group_cache(struct btrfs_fs_info *fs_info,
9947 u64 start, u64 size)
Miao Xie920e4a52014-01-15 20:00:55 +08009948{
9949 struct btrfs_block_group_cache *cache;
9950
9951 cache = kzalloc(sizeof(*cache), GFP_NOFS);
9952 if (!cache)
9953 return NULL;
9954
9955 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
9956 GFP_NOFS);
9957 if (!cache->free_space_ctl) {
9958 kfree(cache);
9959 return NULL;
9960 }
9961
9962 cache->key.objectid = start;
9963 cache->key.offset = size;
9964 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
9965
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009966 cache->fs_info = fs_info;
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03009967 cache->full_stripe_len = btrfs_full_stripe_len(fs_info, start);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07009968 set_free_space_tree_thresholds(cache);
9969
Miao Xie920e4a52014-01-15 20:00:55 +08009970 atomic_set(&cache->count, 1);
9971 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +08009972 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +08009973 INIT_LIST_HEAD(&cache->list);
9974 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009975 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -04009976 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -05009977 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07009978 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +08009979 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +00009980 atomic_set(&cache->trimming, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -07009981 mutex_init(&cache->free_space_lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +08009982 btrfs_init_full_stripe_locks_tree(&cache->full_stripe_locks_root);
Miao Xie920e4a52014-01-15 20:00:55 +08009983
9984 return cache;
9985}
9986
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04009987int btrfs_read_block_groups(struct btrfs_fs_info *info)
Chris Mason9078a3e2007-04-26 16:46:15 -04009988{
9989 struct btrfs_path *path;
9990 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04009991 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04009992 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04009993 struct btrfs_key key;
9994 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04009995 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04009996 int need_clear = 0;
9997 u64 cache_gen;
Liu Bo49303382016-08-25 18:08:27 -07009998 u64 feature;
9999 int mixed;
10000
10001 feature = btrfs_super_incompat_flags(info->super_copy);
10002 mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS);
Chris Mason96b51792007-10-15 16:15:19 -040010003
Chris Mason9078a3e2007-04-26 16:46:15 -040010004 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -040010005 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010006 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -040010007 path = btrfs_alloc_path();
10008 if (!path)
10009 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +010010010 path->reada = READA_FORWARD;
Chris Mason9078a3e2007-04-26 16:46:15 -040010011
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010012 cache_gen = btrfs_super_cache_generation(info->super_copy);
10013 if (btrfs_test_opt(info, SPACE_CACHE) &&
10014 btrfs_super_generation(info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -040010015 need_clear = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010016 if (btrfs_test_opt(info, CLEAR_CACHE))
Josef Bacik88c2ba32010-09-21 14:21:34 -040010017 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -040010018
Chris Masond3977122009-01-05 21:25:51 -050010019 while (1) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010020 ret = find_first_block_group(info, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -040010021 if (ret > 0)
10022 break;
Chris Mason0b86a832008-03-24 15:01:56 -040010023 if (ret != 0)
10024 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +080010025
Chris Mason5f39d392007-10-15 16:14:19 -040010026 leaf = path->nodes[0];
10027 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +080010028
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010029 cache = btrfs_create_block_group_cache(info, found_key.objectid,
Miao Xie920e4a52014-01-15 20:00:55 +080010030 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -040010031 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -040010032 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -040010033 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -040010034 }
Josef Bacik96303082009-07-13 21:29:25 -040010035
Liu Bocf7c1ef2012-07-06 03:31:34 -060010036 if (need_clear) {
10037 /*
10038 * When we mount with old space cache, we need to
10039 * set BTRFS_DC_CLEAR and set dirty flag.
10040 *
10041 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
10042 * truncate the old free space cache inode and
10043 * setup a new one.
10044 * b) Setting 'dirty flag' makes sure that we flush
10045 * the new space cache info onto disk.
10046 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010047 if (btrfs_test_opt(info, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -050010048 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -060010049 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010050
Chris Mason5f39d392007-10-15 16:14:19 -040010051 read_extent_buffer(leaf, &cache->item,
10052 btrfs_item_ptr_offset(leaf, path->slots[0]),
10053 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +080010054 cache->flags = btrfs_block_group_flags(&cache->item);
Liu Bo49303382016-08-25 18:08:27 -070010055 if (!mixed &&
10056 ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) &&
10057 (cache->flags & BTRFS_BLOCK_GROUP_DATA))) {
10058 btrfs_err(info,
10059"bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups",
10060 cache->key.objectid);
10061 ret = -EINVAL;
10062 goto error;
10063 }
Chris Mason0b86a832008-03-24 15:01:56 -040010064
Chris Mason9078a3e2007-04-26 16:46:15 -040010065 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +020010066 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +080010067
Josef Bacik817d52f2009-07-13 21:29:25 -040010068 /*
Josef Bacik3c148742011-02-02 15:53:47 +000010069 * We need to exclude the super stripes now so that the space
10070 * info has super bytes accounted for, otherwise we'll think
10071 * we have more space than we actually do.
10072 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010073 ret = exclude_super_stripes(info, cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010074 if (ret) {
10075 /*
10076 * We may have excluded something, so call this just in
10077 * case.
10078 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010079 free_excluded_extents(info, cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010080 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010081 goto error;
10082 }
Josef Bacik3c148742011-02-02 15:53:47 +000010083
10084 /*
Josef Bacik817d52f2009-07-13 21:29:25 -040010085 * check for two cases, either we are full, and therefore
10086 * don't need to bother with the caching work since we won't
10087 * find any space, or we are empty, and we can just add all
10088 * the space in and be done with it. This saves us _alot_ of
10089 * time, particularly in the full case.
10090 */
10091 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -040010092 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010093 cache->cached = BTRFS_CACHE_FINISHED;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010094 free_excluded_extents(info, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010095 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -040010096 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010097 cache->cached = BTRFS_CACHE_FINISHED;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010098 add_new_free_space(cache, info,
Josef Bacik817d52f2009-07-13 21:29:25 -040010099 found_key.objectid,
10100 found_key.objectid +
10101 found_key.offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010102 free_excluded_extents(info, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010103 }
Chris Mason96b51792007-10-15 16:15:19 -040010104
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010105 ret = btrfs_add_block_group_cache(info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010106 if (ret) {
10107 btrfs_remove_free_space_cache(cache);
10108 btrfs_put_block_group(cache);
10109 goto error;
10110 }
10111
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010112 trace_btrfs_add_block_group(info, cache, 0);
Nikolay Borisovd2006e6d2017-05-22 09:35:50 +030010113 update_space_info(info, cache->flags, found_key.offset,
10114 btrfs_block_group_used(&cache->item),
10115 cache->bytes_super, &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010116
Chris Mason6324fbf2008-03-24 15:01:59 -040010117 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -040010118
Nikolay Borisovc434d212017-08-21 12:43:50 +030010119 link_block_group(cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010120
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010121 set_avail_alloc_bits(info, cache->flags);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010122 if (btrfs_chunk_readonly(info, cache->key.objectid)) {
Zhaolei868f4012015-08-05 16:43:27 +080010123 inc_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010124 } else if (btrfs_block_group_used(&cache->item) == 0) {
10125 spin_lock(&info->unused_bgs_lock);
10126 /* Should always be true but just in case. */
10127 if (list_empty(&cache->bg_list)) {
10128 btrfs_get_block_group(cache);
10129 list_add_tail(&cache->bg_list,
10130 &info->unused_bgs);
10131 }
10132 spin_unlock(&info->unused_bgs_lock);
10133 }
Chris Mason9078a3e2007-04-26 16:46:15 -040010134 }
Yan, Zhengb742bb82010-05-16 10:46:24 -040010135
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010136 list_for_each_entry_rcu(space_info, &info->space_info, list) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010137 if (!(get_alloc_profile(info, space_info->flags) &
Yan, Zhengb742bb82010-05-16 10:46:24 -040010138 (BTRFS_BLOCK_GROUP_RAID10 |
10139 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -050010140 BTRFS_BLOCK_GROUP_RAID5 |
10141 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb82010-05-16 10:46:24 -040010142 BTRFS_BLOCK_GROUP_DUP)))
10143 continue;
10144 /*
10145 * avoid allocating from un-mirrored block group if there are
10146 * mirrored block groups.
10147 */
chandan1095cc02013-07-16 12:28:56 +053010148 list_for_each_entry(cache,
10149 &space_info->block_groups[BTRFS_RAID_RAID0],
10150 list)
Zhaolei868f4012015-08-05 16:43:27 +080010151 inc_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +053010152 list_for_each_entry(cache,
10153 &space_info->block_groups[BTRFS_RAID_SINGLE],
10154 list)
Zhaolei868f4012015-08-05 16:43:27 +080010155 inc_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -040010156 }
Yan, Zhengf0486c62010-05-16 10:46:25 -040010157
10158 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -040010159 ret = 0;
10160error:
Chris Mason9078a3e2007-04-26 16:46:15 -040010161 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -040010162 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010163}
Chris Mason6324fbf2008-03-24 15:01:59 -040010164
Josef Bacikea658ba2012-09-11 16:57:25 -040010165void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010166 struct btrfs_fs_info *fs_info)
Josef Bacikea658ba2012-09-11 16:57:25 -040010167{
10168 struct btrfs_block_group_cache *block_group, *tmp;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010169 struct btrfs_root *extent_root = fs_info->extent_root;
Josef Bacikea658ba2012-09-11 16:57:25 -040010170 struct btrfs_block_group_item item;
10171 struct btrfs_key key;
10172 int ret = 0;
Filipe Mananad9a05402015-10-03 13:13:13 +010010173 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -040010174
Filipe Mananad9a05402015-10-03 13:13:13 +010010175 trans->can_flush_pending_bgs = false;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010176 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
Josef Bacikea658ba2012-09-11 16:57:25 -040010177 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +000010178 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -040010179
10180 spin_lock(&block_group->lock);
10181 memcpy(&item, &block_group->item, sizeof(item));
10182 memcpy(&key, &block_group->key, sizeof(key));
10183 spin_unlock(&block_group->lock);
10184
10185 ret = btrfs_insert_item(trans, extent_root, &key, &item,
10186 sizeof(item));
10187 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010188 btrfs_abort_transaction(trans, ret);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010189 ret = btrfs_finish_chunk_alloc(trans, fs_info, key.objectid,
10190 key.offset);
Josef Bacik6df9a952013-06-27 13:22:46 -040010191 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010192 btrfs_abort_transaction(trans, ret);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010193 add_block_group_free_space(trans, fs_info, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010194 /* already aborted the transaction if it failed. */
Filipe Mananac92f6be2014-11-26 15:28:55 +000010195next:
10196 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010197 }
Filipe Mananad9a05402015-10-03 13:13:13 +010010198 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -040010199}
10200
Chris Mason6324fbf2008-03-24 15:01:59 -040010201int btrfs_make_block_group(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010202 struct btrfs_fs_info *fs_info, u64 bytes_used,
Nikolay Borisov01744842017-07-27 14:22:11 +030010203 u64 type, u64 chunk_offset, u64 size)
Chris Mason6324fbf2008-03-24 15:01:59 -040010204{
Chris Mason6324fbf2008-03-24 15:01:59 -040010205 struct btrfs_block_group_cache *cache;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010206 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -040010207
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010208 btrfs_set_log_full_commit(fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -040010209
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010210 cache = btrfs_create_block_group_cache(fs_info, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -040010211 if (!cache)
10212 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +080010213
Chris Mason6324fbf2008-03-24 15:01:59 -040010214 btrfs_set_block_group_used(&cache->item, bytes_used);
Nikolay Borisov01744842017-07-27 14:22:11 +030010215 btrfs_set_block_group_chunk_objectid(&cache->item,
10216 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
Chris Mason6324fbf2008-03-24 15:01:59 -040010217 btrfs_set_block_group_flags(&cache->item, type);
10218
Miao Xie920e4a52014-01-15 20:00:55 +080010219 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -040010220 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010221 cache->cached = BTRFS_CACHE_FINISHED;
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010222 cache->needs_free_space = 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010223 ret = exclude_super_stripes(fs_info, cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010224 if (ret) {
10225 /*
10226 * We may have excluded something, so call this just in
10227 * case.
10228 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010229 free_excluded_extents(fs_info, cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010230 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010231 return ret;
10232 }
Josef Bacik96303082009-07-13 21:29:25 -040010233
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010234 add_new_free_space(cache, fs_info, chunk_offset, chunk_offset + size);
Josef Bacik817d52f2009-07-13 21:29:25 -040010235
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010236 free_excluded_extents(fs_info, cache);
Yan Zheng11833d62009-09-11 16:11:19 -040010237
Josef Bacikd0bd4562015-09-23 14:54:14 -040010238#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010239 if (btrfs_should_fragment_free_space(cache)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -040010240 u64 new_bytes_used = size - bytes_used;
10241
10242 bytes_used += new_bytes_used >> 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010243 fragment_free_space(cache);
Josef Bacikd0bd4562015-09-23 14:54:14 -040010244 }
10245#endif
Filipe Manana2e6e5182015-05-12 00:28:11 +010010246 /*
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010247 * Ensure the corresponding space_info object is created and
10248 * assigned to our block group. We want our bg to be added to the rbtree
10249 * with its ->space_info set.
Filipe Manana2e6e5182015-05-12 00:28:11 +010010250 */
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010251 cache->space_info = __find_space_info(fs_info, cache->flags);
10252 if (!cache->space_info) {
10253 ret = create_space_info(fs_info, cache->flags,
10254 &cache->space_info);
10255 if (ret) {
10256 btrfs_remove_free_space_cache(cache);
10257 btrfs_put_block_group(cache);
10258 return ret;
10259 }
Filipe Manana2e6e5182015-05-12 00:28:11 +010010260 }
10261
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010262 ret = btrfs_add_block_group_cache(fs_info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010263 if (ret) {
10264 btrfs_remove_free_space_cache(cache);
10265 btrfs_put_block_group(cache);
10266 return ret;
10267 }
10268
Filipe Manana2e6e5182015-05-12 00:28:11 +010010269 /*
10270 * Now that our block group has its ->space_info set and is inserted in
10271 * the rbtree, update the space info's counters.
10272 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010273 trace_btrfs_add_block_group(fs_info, cache, 1);
Nikolay Borisovd2006e6d2017-05-22 09:35:50 +030010274 update_space_info(fs_info, cache->flags, size, bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -040010275 cache->bytes_super, &cache->space_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010276 update_global_block_rsv(fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -040010277
Nikolay Borisovc434d212017-08-21 12:43:50 +030010278 link_block_group(cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010279
Josef Bacik47ab2a62014-09-18 11:20:02 -040010280 list_add_tail(&cache->bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -040010281
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010282 set_avail_alloc_bits(fs_info, type);
Chris Mason6324fbf2008-03-24 15:01:59 -040010283 return 0;
10284}
Zheng Yan1a40e232008-09-26 10:09:34 -040010285
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010286static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
10287{
Ilya Dryomov899c81e2012-03-27 17:09:16 +030010288 u64 extra_flags = chunk_to_extended(flags) &
10289 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010290
Miao Xiede98ced2013-01-29 10:13:12 +000010291 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010292 if (flags & BTRFS_BLOCK_GROUP_DATA)
10293 fs_info->avail_data_alloc_bits &= ~extra_flags;
10294 if (flags & BTRFS_BLOCK_GROUP_METADATA)
10295 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
10296 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
10297 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +000010298 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010299}
10300
Zheng Yan1a40e232008-09-26 10:09:34 -040010301int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010302 struct btrfs_fs_info *fs_info, u64 group_start,
Filipe Manana04216822014-11-27 21:14:15 +000010303 struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -040010304{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010305 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010306 struct btrfs_path *path;
10307 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -040010308 struct btrfs_free_cluster *cluster;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010309 struct btrfs_root *tree_root = fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010310 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -040010311 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010312 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -040010313 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010314 int index;
Josef Bacik89a55892010-10-14 14:52:27 -040010315 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +000010316 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +000010317 bool remove_em;
Zheng Yan1a40e232008-09-26 10:09:34 -040010318
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010319 block_group = btrfs_lookup_block_group(fs_info, group_start);
Zheng Yan1a40e232008-09-26 10:09:34 -040010320 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -050010321 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -040010322
liubo9f7c43c2011-03-07 02:13:33 +000010323 /*
10324 * Free the reserved super bytes from this block group before
10325 * remove it.
10326 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010327 free_excluded_extents(fs_info, block_group);
Josef Bacikfd708b82017-09-29 15:43:50 -040010328 btrfs_free_ref_tree_range(fs_info, block_group->key.objectid,
10329 block_group->key.offset);
liubo9f7c43c2011-03-07 02:13:33 +000010330
Zheng Yan1a40e232008-09-26 10:09:34 -040010331 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010332 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -040010333 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
10334 BTRFS_BLOCK_GROUP_RAID1 |
10335 BTRFS_BLOCK_GROUP_RAID10))
10336 factor = 2;
10337 else
10338 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -040010339
Chris Mason44fb5512009-06-04 15:34:51 -040010340 /* make sure this block group isn't part of an allocation cluster */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010341 cluster = &fs_info->data_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010342 spin_lock(&cluster->refill_lock);
10343 btrfs_return_cluster_to_free_space(block_group, cluster);
10344 spin_unlock(&cluster->refill_lock);
10345
10346 /*
10347 * make sure this block group isn't part of a metadata
10348 * allocation cluster
10349 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010350 cluster = &fs_info->meta_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010351 spin_lock(&cluster->refill_lock);
10352 btrfs_return_cluster_to_free_space(block_group, cluster);
10353 spin_unlock(&cluster->refill_lock);
10354
Zheng Yan1a40e232008-09-26 10:09:34 -040010355 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010356 if (!path) {
10357 ret = -ENOMEM;
10358 goto out;
10359 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010360
Chris Mason1bbc6212015-04-06 12:46:08 -070010361 /*
10362 * get the inode first so any iput calls done for the io_list
10363 * aren't the final iput (no unlinks allowed now)
10364 */
Jeff Mahoney77ab86b2017-02-15 16:28:30 -050010365 inode = lookup_free_space_inode(fs_info, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010366
10367 mutex_lock(&trans->transaction->cache_write_mutex);
10368 /*
10369 * make sure our free spache cache IO is done before remove the
10370 * free space inode
10371 */
10372 spin_lock(&trans->transaction->dirty_bgs_lock);
10373 if (!list_empty(&block_group->io_list)) {
10374 list_del_init(&block_group->io_list);
10375
10376 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
10377
10378 spin_unlock(&trans->transaction->dirty_bgs_lock);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -040010379 btrfs_wait_cache_io(trans, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010380 btrfs_put_block_group(block_group);
10381 spin_lock(&trans->transaction->dirty_bgs_lock);
10382 }
10383
10384 if (!list_empty(&block_group->dirty_list)) {
10385 list_del_init(&block_group->dirty_list);
10386 btrfs_put_block_group(block_group);
10387 }
10388 spin_unlock(&trans->transaction->dirty_bgs_lock);
10389 mutex_unlock(&trans->transaction->cache_write_mutex);
10390
Josef Bacik0af3d002010-06-21 14:48:16 -040010391 if (!IS_ERR(inode)) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010392 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010393 if (ret) {
10394 btrfs_add_delayed_iput(inode);
10395 goto out;
10396 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010397 clear_nlink(inode);
10398 /* One for the block groups ref */
10399 spin_lock(&block_group->lock);
10400 if (block_group->iref) {
10401 block_group->iref = 0;
10402 block_group->inode = NULL;
10403 spin_unlock(&block_group->lock);
10404 iput(inode);
10405 } else {
10406 spin_unlock(&block_group->lock);
10407 }
10408 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -040010409 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -040010410 }
10411
10412 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
10413 key.offset = block_group->key.objectid;
10414 key.type = 0;
10415
10416 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
10417 if (ret < 0)
10418 goto out;
10419 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +020010420 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010421 if (ret == 0) {
10422 ret = btrfs_del_item(trans, tree_root, path);
10423 if (ret)
10424 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +020010425 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010426 }
10427
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010428 spin_lock(&fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010429 rb_erase(&block_group->cache_node,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010430 &fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +000010431 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +000010432
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010433 if (fs_info->first_logical_byte == block_group->key.objectid)
10434 fs_info->first_logical_byte = (u64)-1;
10435 spin_unlock(&fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010436
Josef Bacik80eb2342008-10-29 14:49:05 -040010437 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -040010438 /*
10439 * we must use list_del_init so people can check to see if they
10440 * are still on the list after taking the semaphore
10441 */
10442 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010443 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010444 kobj = block_group->space_info->block_group_kobjs[index];
10445 block_group->space_info->block_group_kobjs[index] = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010446 clear_avail_alloc_bits(fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010447 }
Josef Bacik80eb2342008-10-29 14:49:05 -040010448 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010449 if (kobj) {
10450 kobject_del(kobj);
10451 kobject_put(kobj);
10452 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010453
Filipe Manana4f69cb92014-11-26 15:28:51 +000010454 if (block_group->has_caching_ctl)
10455 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -040010456 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -040010457 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010458 if (block_group->has_caching_ctl) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010459 down_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010460 if (!caching_ctl) {
10461 struct btrfs_caching_control *ctl;
10462
10463 list_for_each_entry(ctl,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010464 &fs_info->caching_block_groups, list)
Filipe Manana4f69cb92014-11-26 15:28:51 +000010465 if (ctl->block_group == block_group) {
10466 caching_ctl = ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +020010467 refcount_inc(&caching_ctl->count);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010468 break;
10469 }
10470 }
10471 if (caching_ctl)
10472 list_del_init(&caching_ctl->list);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010473 up_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010474 if (caching_ctl) {
10475 /* Once for the caching bgs list and once for us. */
10476 put_caching_control(caching_ctl);
10477 put_caching_control(caching_ctl);
10478 }
10479 }
Josef Bacik817d52f2009-07-13 21:29:25 -040010480
Josef Bacikce93ec52014-11-17 15:45:48 -050010481 spin_lock(&trans->transaction->dirty_bgs_lock);
10482 if (!list_empty(&block_group->dirty_list)) {
Chris Mason1bbc6212015-04-06 12:46:08 -070010483 WARN_ON(1);
10484 }
10485 if (!list_empty(&block_group->io_list)) {
10486 WARN_ON(1);
Josef Bacikce93ec52014-11-17 15:45:48 -050010487 }
10488 spin_unlock(&trans->transaction->dirty_bgs_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010489 btrfs_remove_free_space_cache(block_group);
10490
Yan Zhengc146afa2008-11-12 14:34:12 -050010491 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +000010492 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +080010493
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010494 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Zhao Lei18d018a2015-02-24 20:07:44 +080010495 WARN_ON(block_group->space_info->total_bytes
10496 < block_group->key.offset);
10497 WARN_ON(block_group->space_info->bytes_readonly
10498 < block_group->key.offset);
10499 WARN_ON(block_group->space_info->disk_total
10500 < block_group->key.offset * factor);
10501 }
Yan Zhengc146afa2008-11-12 14:34:12 -050010502 block_group->space_info->total_bytes -= block_group->key.offset;
10503 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -040010504 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +080010505
Yan Zhengc146afa2008-11-12 14:34:12 -050010506 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -040010507
Josef Bacik0af3d002010-06-21 14:48:16 -040010508 memcpy(&key, &block_group->key, sizeof(key));
10509
David Sterba34441362016-10-04 19:34:27 +020010510 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana495e64f2014-12-02 18:07:30 +000010511 if (!list_empty(&em->list)) {
10512 /* We're in the transaction->pending_chunks list. */
10513 free_extent_map(em);
10514 }
Filipe Manana04216822014-11-27 21:14:15 +000010515 spin_lock(&block_group->lock);
10516 block_group->removed = 1;
10517 /*
10518 * At this point trimming can't start on this block group, because we
10519 * removed the block group from the tree fs_info->block_group_cache_tree
10520 * so no one can't find it anymore and even if someone already got this
10521 * block group before we removed it from the rbtree, they have already
10522 * incremented block_group->trimming - if they didn't, they won't find
10523 * any free space entries because we already removed them all when we
10524 * called btrfs_remove_free_space_cache().
10525 *
10526 * And we must not remove the extent map from the fs_info->mapping_tree
10527 * to prevent the same logical address range and physical device space
10528 * ranges from being reused for a new block group. This is because our
10529 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
10530 * completely transactionless, so while it is trimming a range the
10531 * currently running transaction might finish and a new one start,
10532 * allowing for new block groups to be created that can reuse the same
10533 * physical device locations unless we take this special care.
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010534 *
10535 * There may also be an implicit trim operation if the file system
10536 * is mounted with -odiscard. The same protections must remain
10537 * in place until the extents have been discarded completely when
10538 * the transaction commit has completed.
Filipe Manana04216822014-11-27 21:14:15 +000010539 */
10540 remove_em = (atomic_read(&block_group->trimming) == 0);
10541 /*
10542 * Make sure a trimmer task always sees the em in the pinned_chunks list
10543 * if it sees block_group->removed == 1 (needs to lock block_group->lock
10544 * before checking block_group->removed).
10545 */
10546 if (!remove_em) {
10547 /*
10548 * Our em might be in trans->transaction->pending_chunks which
10549 * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks),
10550 * and so is the fs_info->pinned_chunks list.
10551 *
10552 * So at this point we must be holding the chunk_mutex to avoid
10553 * any races with chunk allocation (more specifically at
10554 * volumes.c:contains_pending_extent()), to ensure it always
10555 * sees the em, either in the pending_chunks list or in the
10556 * pinned_chunks list.
10557 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010558 list_move_tail(&em->list, &fs_info->pinned_chunks);
Filipe Manana04216822014-11-27 21:14:15 +000010559 }
10560 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +000010561
10562 if (remove_em) {
10563 struct extent_map_tree *em_tree;
10564
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010565 em_tree = &fs_info->mapping_tree.map_tree;
Filipe Manana04216822014-11-27 21:14:15 +000010566 write_lock(&em_tree->lock);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010567 /*
10568 * The em might be in the pending_chunks list, so make sure the
10569 * chunk mutex is locked, since remove_extent_mapping() will
10570 * delete us from that list.
10571 */
Filipe Manana04216822014-11-27 21:14:15 +000010572 remove_extent_mapping(em_tree, em);
10573 write_unlock(&em_tree->lock);
10574 /* once for the tree */
10575 free_extent_map(em);
10576 }
10577
David Sterba34441362016-10-04 19:34:27 +020010578 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010579
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010580 ret = remove_block_group_free_space(trans, fs_info, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010581 if (ret)
10582 goto out;
10583
Chris Masonfa9c0d792009-04-03 09:47:43 -040010584 btrfs_put_block_group(block_group);
10585 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -040010586
10587 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
10588 if (ret > 0)
10589 ret = -EIO;
10590 if (ret < 0)
10591 goto out;
10592
10593 ret = btrfs_del_item(trans, root, path);
10594out:
10595 btrfs_free_path(path);
10596 return ret;
10597}
liuboacce9522011-01-06 19:30:25 +080010598
Filipe Manana8eab77f2015-11-13 23:57:16 +000010599struct btrfs_trans_handle *
Filipe Manana7fd01182015-11-13 23:57:17 +000010600btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info,
10601 const u64 chunk_offset)
Filipe Manana8eab77f2015-11-13 23:57:16 +000010602{
Filipe Manana7fd01182015-11-13 23:57:17 +000010603 struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree;
10604 struct extent_map *em;
10605 struct map_lookup *map;
10606 unsigned int num_items;
10607
10608 read_lock(&em_tree->lock);
10609 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
10610 read_unlock(&em_tree->lock);
10611 ASSERT(em && em->start == chunk_offset);
10612
Filipe Manana8eab77f2015-11-13 23:57:16 +000010613 /*
Filipe Manana7fd01182015-11-13 23:57:17 +000010614 * We need to reserve 3 + N units from the metadata space info in order
10615 * to remove a block group (done at btrfs_remove_chunk() and at
10616 * btrfs_remove_block_group()), which are used for:
10617 *
Filipe Manana8eab77f2015-11-13 23:57:16 +000010618 * 1 unit for adding the free space inode's orphan (located in the tree
10619 * of tree roots).
Filipe Manana7fd01182015-11-13 23:57:17 +000010620 * 1 unit for deleting the block group item (located in the extent
10621 * tree).
10622 * 1 unit for deleting the free space item (located in tree of tree
10623 * roots).
10624 * N units for deleting N device extent items corresponding to each
10625 * stripe (located in the device tree).
10626 *
10627 * In order to remove a block group we also need to reserve units in the
10628 * system space info in order to update the chunk tree (update one or
10629 * more device items and remove one chunk item), but this is done at
10630 * btrfs_remove_chunk() through a call to check_system_chunk().
Filipe Manana8eab77f2015-11-13 23:57:16 +000010631 */
Jeff Mahoney95617d62015-06-03 10:55:48 -040010632 map = em->map_lookup;
Filipe Manana7fd01182015-11-13 23:57:17 +000010633 num_items = 3 + map->num_stripes;
10634 free_extent_map(em);
10635
Filipe Manana8eab77f2015-11-13 23:57:16 +000010636 return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root,
Filipe Manana7fd01182015-11-13 23:57:17 +000010637 num_items, 1);
Filipe Manana8eab77f2015-11-13 23:57:16 +000010638}
10639
Josef Bacik47ab2a62014-09-18 11:20:02 -040010640/*
10641 * Process the unused_bgs list and remove any that don't have any allocated
10642 * space inside of them.
10643 */
10644void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
10645{
10646 struct btrfs_block_group_cache *block_group;
10647 struct btrfs_space_info *space_info;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010648 struct btrfs_trans_handle *trans;
10649 int ret = 0;
10650
Josef Bacikafcdd122016-09-02 15:40:02 -040010651 if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
Josef Bacik47ab2a62014-09-18 11:20:02 -040010652 return;
10653
10654 spin_lock(&fs_info->unused_bgs_lock);
10655 while (!list_empty(&fs_info->unused_bgs)) {
10656 u64 start, end;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010657 int trimming;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010658
10659 block_group = list_first_entry(&fs_info->unused_bgs,
10660 struct btrfs_block_group_cache,
10661 bg_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010662 list_del_init(&block_group->bg_list);
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010663
10664 space_info = block_group->space_info;
10665
Josef Bacik47ab2a62014-09-18 11:20:02 -040010666 if (ret || btrfs_mixed_space_info(space_info)) {
10667 btrfs_put_block_group(block_group);
10668 continue;
10669 }
10670 spin_unlock(&fs_info->unused_bgs_lock);
10671
Zhao Leid5f2e332015-10-08 18:46:44 +080010672 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010673
Josef Bacik47ab2a62014-09-18 11:20:02 -040010674 /* Don't want to race with allocators so take the groups_sem */
10675 down_write(&space_info->groups_sem);
10676 spin_lock(&block_group->lock);
10677 if (block_group->reserved ||
10678 btrfs_block_group_used(&block_group->item) ||
Chris Mason19c4d2f2016-10-10 13:43:31 -070010679 block_group->ro ||
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010680 list_is_singular(&block_group->list)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -040010681 /*
10682 * We want to bail if we made new allocations or have
10683 * outstanding allocations in this block group. We do
10684 * the ro check in case balance is currently acting on
10685 * this block group.
10686 */
10687 spin_unlock(&block_group->lock);
10688 up_write(&space_info->groups_sem);
10689 goto next;
10690 }
10691 spin_unlock(&block_group->lock);
10692
10693 /* We don't want to force the issue, only flip if it's ok. */
Zhaolei868f4012015-08-05 16:43:27 +080010694 ret = inc_block_group_ro(block_group, 0);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010695 up_write(&space_info->groups_sem);
10696 if (ret < 0) {
10697 ret = 0;
10698 goto next;
10699 }
10700
10701 /*
10702 * Want to do this before we do anything else so we can recover
10703 * properly if we fail to join the transaction.
10704 */
Filipe Manana7fd01182015-11-13 23:57:17 +000010705 trans = btrfs_start_trans_remove_block_group(fs_info,
10706 block_group->key.objectid);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010707 if (IS_ERR(trans)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010708 btrfs_dec_block_group_ro(block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010709 ret = PTR_ERR(trans);
10710 goto next;
10711 }
10712
10713 /*
10714 * We could have pending pinned extents for this block group,
10715 * just delete them, we don't care about them anymore.
10716 */
10717 start = block_group->key.objectid;
10718 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +000010719 /*
10720 * Hold the unused_bg_unpin_mutex lock to avoid racing with
10721 * btrfs_finish_extent_commit(). If we are at transaction N,
10722 * another task might be running finish_extent_commit() for the
10723 * previous transaction N - 1, and have seen a range belonging
10724 * to the block group in freed_extents[] before we were able to
10725 * clear the whole block group range from freed_extents[]. This
10726 * means that task can lookup for the block group after we
10727 * unpinned it from freed_extents[] and removed it, leading to
10728 * a BUG_ON() at btrfs_unpin_extent_range().
10729 */
10730 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +000010731 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
David Sterba91166212016-04-26 23:54:39 +020010732 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000010733 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010734 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010735 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010736 goto end_trans;
10737 }
10738 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
David Sterba91166212016-04-26 23:54:39 +020010739 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000010740 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010741 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010742 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010743 goto end_trans;
10744 }
Filipe Mananad4b450c2015-01-29 19:18:25 +000010745 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010746
10747 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +080010748 spin_lock(&space_info->lock);
10749 spin_lock(&block_group->lock);
10750
10751 space_info->bytes_pinned -= block_group->pinned;
10752 space_info->bytes_readonly += block_group->pinned;
10753 percpu_counter_add(&space_info->total_bytes_pinned,
10754 -block_group->pinned);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010755 block_group->pinned = 0;
10756
Zhao Leic30666d2015-02-25 14:17:20 +080010757 spin_unlock(&block_group->lock);
10758 spin_unlock(&space_info->lock);
10759
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010760 /* DISCARD can flip during remount */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010761 trimming = btrfs_test_opt(fs_info, DISCARD);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010762
10763 /* Implicit trim during transaction commit. */
10764 if (trimming)
10765 btrfs_get_block_group_trimming(block_group);
10766
Josef Bacik47ab2a62014-09-18 11:20:02 -040010767 /*
10768 * Btrfs_remove_chunk will abort the transaction if things go
10769 * horribly wrong.
10770 */
Jeff Mahoney5b4aace2016-06-21 10:40:19 -040010771 ret = btrfs_remove_chunk(trans, fs_info,
Josef Bacik47ab2a62014-09-18 11:20:02 -040010772 block_group->key.objectid);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010773
10774 if (ret) {
10775 if (trimming)
10776 btrfs_put_block_group_trimming(block_group);
10777 goto end_trans;
10778 }
10779
10780 /*
10781 * If we're not mounted with -odiscard, we can just forget
10782 * about this block group. Otherwise we'll need to wait
10783 * until transaction commit to do the actual discard.
10784 */
10785 if (trimming) {
Filipe Manana348a0012015-11-27 12:16:16 +000010786 spin_lock(&fs_info->unused_bgs_lock);
10787 /*
10788 * A concurrent scrub might have added us to the list
10789 * fs_info->unused_bgs, so use a list_move operation
10790 * to add the block group to the deleted_bgs list.
10791 */
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010792 list_move(&block_group->bg_list,
10793 &trans->transaction->deleted_bgs);
Filipe Manana348a0012015-11-27 12:16:16 +000010794 spin_unlock(&fs_info->unused_bgs_lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010795 btrfs_get_block_group(block_group);
10796 }
Filipe Manana758eb512014-11-03 14:08:39 +000010797end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010798 btrfs_end_transaction(trans);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010799next:
Zhao Leid5f2e332015-10-08 18:46:44 +080010800 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010801 btrfs_put_block_group(block_group);
10802 spin_lock(&fs_info->unused_bgs_lock);
10803 }
10804 spin_unlock(&fs_info->unused_bgs_lock);
10805}
10806
liuboc59021f2011-03-07 02:13:14 +000010807int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
10808{
10809 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +000010810 struct btrfs_super_block *disk_super;
10811 u64 features;
10812 u64 flags;
10813 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000010814 int ret;
10815
David Sterba6c417612011-04-13 15:41:04 +020010816 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000010817 if (!btrfs_super_root(disk_super))
Dan Carpenter0dc924c52016-01-13 15:21:17 +030010818 return -EINVAL;
liuboc59021f2011-03-07 02:13:14 +000010819
liubo1aba86d2011-04-08 08:44:37 +000010820 features = btrfs_super_incompat_flags(disk_super);
10821 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
10822 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000010823
liubo1aba86d2011-04-08 08:44:37 +000010824 flags = BTRFS_BLOCK_GROUP_SYSTEM;
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010825 ret = create_space_info(fs_info, flags, &space_info);
liuboc59021f2011-03-07 02:13:14 +000010826 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000010827 goto out;
liuboc59021f2011-03-07 02:13:14 +000010828
liubo1aba86d2011-04-08 08:44:37 +000010829 if (mixed) {
10830 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010831 ret = create_space_info(fs_info, flags, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010832 } else {
10833 flags = BTRFS_BLOCK_GROUP_METADATA;
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010834 ret = create_space_info(fs_info, flags, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010835 if (ret)
10836 goto out;
10837
10838 flags = BTRFS_BLOCK_GROUP_DATA;
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010839 ret = create_space_info(fs_info, flags, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010840 }
10841out:
liuboc59021f2011-03-07 02:13:14 +000010842 return ret;
10843}
10844
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010845int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info,
10846 u64 start, u64 end)
liuboacce9522011-01-06 19:30:25 +080010847{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010848 return unpin_extent_range(fs_info, start, end, false);
liuboacce9522011-01-06 19:30:25 +080010849}
10850
Jeff Mahoney499f3772015-06-15 09:41:17 -040010851/*
10852 * It used to be that old block groups would be left around forever.
10853 * Iterating over them would be enough to trim unused space. Since we
10854 * now automatically remove them, we also need to iterate over unallocated
10855 * space.
10856 *
10857 * We don't want a transaction for this since the discard may take a
10858 * substantial amount of time. We don't require that a transaction be
10859 * running, but we do need to take a running transaction into account
10860 * to ensure that we're not discarding chunks that were released in
10861 * the current transaction.
10862 *
10863 * Holding the chunks lock will prevent other threads from allocating
10864 * or releasing chunks, but it won't prevent a running transaction
10865 * from committing and releasing the memory that the pending chunks
10866 * list head uses. For that, we need to take a reference to the
10867 * transaction.
10868 */
10869static int btrfs_trim_free_extents(struct btrfs_device *device,
10870 u64 minlen, u64 *trimmed)
10871{
10872 u64 start = 0, len = 0;
10873 int ret;
10874
10875 *trimmed = 0;
10876
10877 /* Not writeable = nothing to do. */
10878 if (!device->writeable)
10879 return 0;
10880
10881 /* No free space = nothing to do. */
10882 if (device->total_bytes <= device->bytes_used)
10883 return 0;
10884
10885 ret = 0;
10886
10887 while (1) {
Jeff Mahoneyfb456252016-06-22 18:54:56 -040010888 struct btrfs_fs_info *fs_info = device->fs_info;
Jeff Mahoney499f3772015-06-15 09:41:17 -040010889 struct btrfs_transaction *trans;
10890 u64 bytes;
10891
10892 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
10893 if (ret)
10894 return ret;
10895
10896 down_read(&fs_info->commit_root_sem);
10897
10898 spin_lock(&fs_info->trans_lock);
10899 trans = fs_info->running_transaction;
10900 if (trans)
Elena Reshetova9b64f572017-03-03 10:55:11 +020010901 refcount_inc(&trans->use_count);
Jeff Mahoney499f3772015-06-15 09:41:17 -040010902 spin_unlock(&fs_info->trans_lock);
10903
10904 ret = find_free_dev_extent_start(trans, device, minlen, start,
10905 &start, &len);
10906 if (trans)
10907 btrfs_put_transaction(trans);
10908
10909 if (ret) {
10910 up_read(&fs_info->commit_root_sem);
10911 mutex_unlock(&fs_info->chunk_mutex);
10912 if (ret == -ENOSPC)
10913 ret = 0;
10914 break;
10915 }
10916
10917 ret = btrfs_issue_discard(device->bdev, start, len, &bytes);
10918 up_read(&fs_info->commit_root_sem);
10919 mutex_unlock(&fs_info->chunk_mutex);
10920
10921 if (ret)
10922 break;
10923
10924 start += len;
10925 *trimmed += bytes;
10926
10927 if (fatal_signal_pending(current)) {
10928 ret = -ERESTARTSYS;
10929 break;
10930 }
10931
10932 cond_resched();
10933 }
10934
10935 return ret;
10936}
10937
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010938int btrfs_trim_fs(struct btrfs_fs_info *fs_info, struct fstrim_range *range)
Li Dongyangf7039b12011-03-24 10:24:28 +000010939{
Li Dongyangf7039b12011-03-24 10:24:28 +000010940 struct btrfs_block_group_cache *cache = NULL;
Jeff Mahoney499f3772015-06-15 09:41:17 -040010941 struct btrfs_device *device;
10942 struct list_head *devices;
Li Dongyangf7039b12011-03-24 10:24:28 +000010943 u64 group_trimmed;
10944 u64 start;
10945 u64 end;
10946 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +080010947 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +000010948 int ret = 0;
10949
Liu Bo2cac13e2012-02-09 18:17:41 +080010950 /*
10951 * try to trim all FS space, our block group may start from non-zero.
10952 */
10953 if (range->len == total_bytes)
10954 cache = btrfs_lookup_first_block_group(fs_info, range->start);
10955 else
10956 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +000010957
10958 while (cache) {
10959 if (cache->key.objectid >= (range->start + range->len)) {
10960 btrfs_put_block_group(cache);
10961 break;
10962 }
10963
10964 start = max(range->start, cache->key.objectid);
10965 end = min(range->start + range->len,
10966 cache->key.objectid + cache->key.offset);
10967
10968 if (end - start >= range->minlen) {
10969 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000010970 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040010971 if (ret) {
10972 btrfs_put_block_group(cache);
10973 break;
10974 }
10975 ret = wait_block_group_cache_done(cache);
10976 if (ret) {
10977 btrfs_put_block_group(cache);
10978 break;
10979 }
Li Dongyangf7039b12011-03-24 10:24:28 +000010980 }
10981 ret = btrfs_trim_block_group(cache,
10982 &group_trimmed,
10983 start,
10984 end,
10985 range->minlen);
10986
10987 trimmed += group_trimmed;
10988 if (ret) {
10989 btrfs_put_block_group(cache);
10990 break;
10991 }
10992 }
10993
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010994 cache = next_block_group(fs_info, cache);
Li Dongyangf7039b12011-03-24 10:24:28 +000010995 }
10996
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010997 mutex_lock(&fs_info->fs_devices->device_list_mutex);
10998 devices = &fs_info->fs_devices->alloc_list;
Jeff Mahoney499f3772015-06-15 09:41:17 -040010999 list_for_each_entry(device, devices, dev_alloc_list) {
11000 ret = btrfs_trim_free_extents(device, range->minlen,
11001 &group_trimmed);
11002 if (ret)
11003 break;
11004
11005 trimmed += group_trimmed;
11006 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011007 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011008
Li Dongyangf7039b12011-03-24 10:24:28 +000011009 range->len = trimmed;
11010 return ret;
11011}
Miao Xie8257b2d2014-03-06 13:38:19 +080011012
11013/*
David Sterbaea14b57f2017-06-22 02:19:11 +020011014 * btrfs_{start,end}_write_no_snapshotting() are similar to
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011015 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
11016 * data into the page cache through nocow before the subvolume is snapshoted,
11017 * but flush the data into disk after the snapshot creation, or to prevent
David Sterbaea14b57f2017-06-22 02:19:11 +020011018 * operations while snapshotting is ongoing and that cause the snapshot to be
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011019 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080011020 */
David Sterbaea14b57f2017-06-22 02:19:11 +020011021void btrfs_end_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011022{
11023 percpu_counter_dec(&root->subv_writers->counter);
11024 /*
David Sterbaa83342a2015-02-16 19:36:47 +010011025 * Make sure counter is updated before we wake up waiters.
Miao Xie8257b2d2014-03-06 13:38:19 +080011026 */
11027 smp_mb();
11028 if (waitqueue_active(&root->subv_writers->wait))
11029 wake_up(&root->subv_writers->wait);
11030}
11031
David Sterbaea14b57f2017-06-22 02:19:11 +020011032int btrfs_start_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011033{
David Sterbaea14b57f2017-06-22 02:19:11 +020011034 if (atomic_read(&root->will_be_snapshotted))
Miao Xie8257b2d2014-03-06 13:38:19 +080011035 return 0;
11036
11037 percpu_counter_inc(&root->subv_writers->counter);
11038 /*
11039 * Make sure counter is updated before we check for snapshot creation.
11040 */
11041 smp_mb();
David Sterbaea14b57f2017-06-22 02:19:11 +020011042 if (atomic_read(&root->will_be_snapshotted)) {
11043 btrfs_end_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080011044 return 0;
11045 }
11046 return 1;
11047}
Zhao Lei0bc19f902016-01-06 18:56:36 +080011048
Zhao Lei0bc19f902016-01-06 18:56:36 +080011049void btrfs_wait_for_snapshot_creation(struct btrfs_root *root)
11050{
11051 while (true) {
11052 int ret;
11053
David Sterbaea14b57f2017-06-22 02:19:11 +020011054 ret = btrfs_start_write_no_snapshotting(root);
Zhao Lei0bc19f902016-01-06 18:56:36 +080011055 if (ret)
11056 break;
David Howells5e4def22017-11-02 15:27:44 +000011057 wait_on_atomic_t(&root->will_be_snapshotted, atomic_t_wait,
Zhao Lei0bc19f902016-01-06 18:56:36 +080011058 TASK_UNINTERRUPTIBLE);
11059 }
11060}