blob: b17506688914b8bd631f4bb5713ae29bdf5b7112 [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;
Anand Jain38b5f682017-11-29 18:53:43 +08002148 struct request_queue *req_q;
2149
Filipe Manana627e0872018-01-30 18:40:22 +00002150 if (!stripe->dev->bdev) {
2151 ASSERT(btrfs_test_opt(fs_info, DEGRADED));
2152 continue;
2153 }
Anand Jain38b5f682017-11-29 18:53:43 +08002154 req_q = bdev_get_queue(stripe->dev->bdev);
2155 if (!blk_queue_discard(req_q))
Josef Bacikd5e20032011-08-04 14:52:27 +00002156 continue;
2157
Li Dongyang5378e602011-03-24 10:24:27 +00002158 ret = btrfs_issue_discard(stripe->dev->bdev,
2159 stripe->physical,
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002160 stripe->length,
2161 &bytes);
Li Dongyang5378e602011-03-24 10:24:27 +00002162 if (!ret)
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002163 discarded_bytes += bytes;
Li Dongyang5378e602011-03-24 10:24:27 +00002164 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002165 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00002166
2167 /*
2168 * Just in case we get back EOPNOTSUPP for some reason,
2169 * just ignore the return value so we don't screw up
2170 * people calling discard_extent.
2171 */
2172 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002173 }
Zhao Lei6e9606d2015-01-20 15:11:34 +08002174 btrfs_put_bbio(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002175 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002176 btrfs_bio_counter_dec(fs_info);
Li Dongyang5378e602011-03-24 10:24:27 +00002177
2178 if (actual_bytes)
2179 *actual_bytes = discarded_bytes;
2180
Liu Hui1f3c79a2009-01-05 15:57:51 -05002181
David Woodhouse53b381b2013-01-29 18:40:14 -05002182 if (ret == -EOPNOTSUPP)
2183 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002184 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002185}
2186
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002187/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002188int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002189 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002190 u64 bytenr, u64 num_bytes, u64 parent,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002191 u64 root_objectid, u64 owner, u64 offset)
Zheng Yan31840ae2008-09-23 13:14:14 -04002192{
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002193 struct btrfs_fs_info *fs_info = root->fs_info;
Omar Sandovald7eae342017-06-06 16:45:31 -07002194 int old_ref_mod, new_ref_mod;
Zheng Yan31840ae2008-09-23 13:14:14 -04002195 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002196
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002197 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
2198 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04002199
Josef Bacikfd708b82017-09-29 15:43:50 -04002200 btrfs_ref_tree_mod(root, bytenr, num_bytes, parent, root_objectid,
2201 owner, offset, BTRFS_ADD_DELAYED_REF);
2202
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002203 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002204 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07002205 num_bytes, parent,
2206 root_objectid, (int)owner,
2207 BTRFS_ADD_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07002208 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002209 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002210 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07002211 num_bytes, parent,
2212 root_objectid, owner, offset,
Omar Sandovald7eae342017-06-06 16:45:31 -07002213 0, BTRFS_ADD_DELAYED_REF,
2214 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002215 }
Omar Sandovald7eae342017-06-06 16:45:31 -07002216
2217 if (ret == 0 && old_ref_mod < 0 && new_ref_mod >= 0)
2218 add_pinned_bytes(fs_info, -num_bytes, owner, root_objectid);
2219
Zheng Yan31840ae2008-09-23 13:14:14 -04002220 return ret;
2221}
2222
Chris Mason925baed2008-06-25 16:01:30 -04002223static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002224 struct btrfs_fs_info *fs_info,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002225 struct btrfs_delayed_ref_node *node,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002226 u64 parent, u64 root_objectid,
2227 u64 owner, u64 offset, int refs_to_add,
2228 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04002229{
Chris Mason5caf2a02007-04-02 11:20:42 -04002230 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002231 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04002232 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07002233 struct btrfs_key key;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002234 u64 bytenr = node->bytenr;
2235 u64 num_bytes = node->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002236 u64 refs;
2237 int ret;
Chris Mason037e6392007-03-07 11:50:24 -05002238
Chris Mason5caf2a02007-04-02 11:20:42 -04002239 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002240 if (!path)
2241 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04002242
David Sterbae4058b52015-11-27 16:31:35 +01002243 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002244 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002245 /* this will setup the path even if it fails to insert the back ref */
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002246 ret = insert_inline_extent_backref(trans, fs_info, path, bytenr,
2247 num_bytes, parent, root_objectid,
2248 owner, offset,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002249 refs_to_add, extent_op);
Qu Wenruo0ed47922015-04-16 16:55:08 +08002250 if ((ret < 0 && ret != -EAGAIN) || !ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002251 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002252
2253 /*
2254 * Ok we had -EAGAIN which means we didn't have space to insert and
2255 * inline extent ref, so just update the reference count and add a
2256 * normal backref.
2257 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002258 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002259 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002260 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2261 refs = btrfs_extent_refs(leaf, item);
2262 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2263 if (extent_op)
2264 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002265
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002266 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002267 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002268
David Sterbae4058b52015-11-27 16:31:35 +01002269 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002270 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002271 /* now insert the actual backref */
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002272 ret = insert_extent_backref(trans, fs_info, path, bytenr, parent,
2273 root_objectid, owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002274 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04002275 btrfs_abort_transaction(trans, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002276out:
Chris Mason74493f72007-12-11 09:25:06 -05002277 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002278 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002279}
2280
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002281static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002282 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002283 struct btrfs_delayed_ref_node *node,
2284 struct btrfs_delayed_extent_op *extent_op,
2285 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002286{
Chris Mason56bec292009-03-13 10:10:06 -04002287 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002288 struct btrfs_delayed_data_ref *ref;
2289 struct btrfs_key ins;
2290 u64 parent = 0;
2291 u64 ref_root = 0;
2292 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002293
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002294 ins.objectid = node->bytenr;
2295 ins.offset = node->num_bytes;
2296 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002297
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002298 ref = btrfs_delayed_node_to_data_ref(node);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002299 trace_run_delayed_data_ref(fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002300
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002301 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2302 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002303 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002304
2305 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002306 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002307 flags |= extent_op->flags_to_set;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002308 ret = alloc_reserved_file_extent(trans, fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002309 parent, ref_root, flags,
2310 ref->objectid, ref->offset,
2311 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002312 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002313 ret = __btrfs_inc_extent_ref(trans, fs_info, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002314 ref_root, ref->objectid,
2315 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002316 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002317 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002318 ret = __btrfs_free_extent(trans, fs_info, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002319 ref_root, ref->objectid,
2320 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002321 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002322 } else {
2323 BUG();
2324 }
Chris Mason56bec292009-03-13 10:10:06 -04002325 return ret;
2326}
2327
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002328static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2329 struct extent_buffer *leaf,
2330 struct btrfs_extent_item *ei)
2331{
2332 u64 flags = btrfs_extent_flags(leaf, ei);
2333 if (extent_op->update_flags) {
2334 flags |= extent_op->flags_to_set;
2335 btrfs_set_extent_flags(leaf, ei, flags);
2336 }
2337
2338 if (extent_op->update_key) {
2339 struct btrfs_tree_block_info *bi;
2340 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2341 bi = (struct btrfs_tree_block_info *)(ei + 1);
2342 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2343 }
2344}
2345
2346static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002347 struct btrfs_fs_info *fs_info,
Josef Bacikd2788502017-09-29 15:43:57 -04002348 struct btrfs_delayed_ref_head *head,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002349 struct btrfs_delayed_extent_op *extent_op)
2350{
2351 struct btrfs_key key;
2352 struct btrfs_path *path;
2353 struct btrfs_extent_item *ei;
2354 struct extent_buffer *leaf;
2355 u32 item_size;
2356 int ret;
2357 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002358 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002359
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002360 if (trans->aborted)
2361 return 0;
2362
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002363 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik3173a182013-03-07 14:22:04 -05002364 metadata = 0;
2365
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002366 path = btrfs_alloc_path();
2367 if (!path)
2368 return -ENOMEM;
2369
Josef Bacikd2788502017-09-29 15:43:57 -04002370 key.objectid = head->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002371
Josef Bacik3173a182013-03-07 14:22:04 -05002372 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002373 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002374 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002375 } else {
2376 key.type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacikd2788502017-09-29 15:43:57 -04002377 key.offset = head->num_bytes;
Josef Bacik3173a182013-03-07 14:22:04 -05002378 }
2379
2380again:
David Sterbae4058b52015-11-27 16:31:35 +01002381 path->reada = READA_FORWARD;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002382 path->leave_spinning = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002383 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002384 if (ret < 0) {
2385 err = ret;
2386 goto out;
2387 }
2388 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002389 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002390 if (path->slots[0] > 0) {
2391 path->slots[0]--;
2392 btrfs_item_key_to_cpu(path->nodes[0], &key,
2393 path->slots[0]);
Josef Bacikd2788502017-09-29 15:43:57 -04002394 if (key.objectid == head->bytenr &&
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002395 key.type == BTRFS_EXTENT_ITEM_KEY &&
Josef Bacikd2788502017-09-29 15:43:57 -04002396 key.offset == head->num_bytes)
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002397 ret = 0;
2398 }
2399 if (ret > 0) {
2400 btrfs_release_path(path);
2401 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002402
Josef Bacikd2788502017-09-29 15:43:57 -04002403 key.objectid = head->bytenr;
2404 key.offset = head->num_bytes;
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002405 key.type = BTRFS_EXTENT_ITEM_KEY;
2406 goto again;
2407 }
2408 } else {
2409 err = -EIO;
2410 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002411 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002412 }
2413
2414 leaf = path->nodes[0];
2415 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2416#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2417 if (item_size < sizeof(*ei)) {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002418 ret = convert_extent_item_v0(trans, fs_info, path, (u64)-1, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002419 if (ret < 0) {
2420 err = ret;
2421 goto out;
2422 }
2423 leaf = path->nodes[0];
2424 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2425 }
2426#endif
2427 BUG_ON(item_size < sizeof(*ei));
2428 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2429 __run_delayed_extent_op(extent_op, leaf, ei);
2430
2431 btrfs_mark_buffer_dirty(leaf);
2432out:
2433 btrfs_free_path(path);
2434 return err;
2435}
2436
2437static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002438 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002439 struct btrfs_delayed_ref_node *node,
2440 struct btrfs_delayed_extent_op *extent_op,
2441 int insert_reserved)
2442{
2443 int ret = 0;
2444 struct btrfs_delayed_tree_ref *ref;
2445 struct btrfs_key ins;
2446 u64 parent = 0;
2447 u64 ref_root = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002448 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002449
2450 ref = btrfs_delayed_node_to_tree_ref(node);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002451 trace_run_delayed_tree_ref(fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002452
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002453 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2454 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002455 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002456
Josef Bacik3173a182013-03-07 14:22:04 -05002457 ins.objectid = node->bytenr;
2458 if (skinny_metadata) {
2459 ins.offset = ref->level;
2460 ins.type = BTRFS_METADATA_ITEM_KEY;
2461 } else {
2462 ins.offset = node->num_bytes;
2463 ins.type = BTRFS_EXTENT_ITEM_KEY;
2464 }
2465
Liu Bo02794222016-09-14 19:19:05 -07002466 if (node->ref_mod != 1) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002467 btrfs_err(fs_info,
Liu Bo02794222016-09-14 19:19:05 -07002468 "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu",
2469 node->bytenr, node->ref_mod, node->action, ref_root,
2470 parent);
2471 return -EIO;
2472 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002473 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002474 BUG_ON(!extent_op || !extent_op->update_flags);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002475 ret = alloc_reserved_tree_block(trans, fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002476 parent, ref_root,
2477 extent_op->flags_to_set,
2478 &extent_op->key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002479 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002480 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002481 ret = __btrfs_inc_extent_ref(trans, fs_info, node,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002482 parent, ref_root,
2483 ref->level, 0, 1,
Josef Bacikfcebe452014-05-13 17:30:47 -07002484 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002485 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002486 ret = __btrfs_free_extent(trans, fs_info, node,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002487 parent, ref_root,
2488 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002489 } else {
2490 BUG();
2491 }
2492 return ret;
2493}
2494
Chris Mason56bec292009-03-13 10:10:06 -04002495/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002496static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002497 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002498 struct btrfs_delayed_ref_node *node,
2499 struct btrfs_delayed_extent_op *extent_op,
2500 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002501{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002502 int ret = 0;
2503
Josef Bacik857cc2f2013-10-07 15:21:08 -04002504 if (trans->aborted) {
2505 if (insert_reserved)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002506 btrfs_pin_extent(fs_info, node->bytenr,
Josef Bacik857cc2f2013-10-07 15:21:08 -04002507 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002508 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002509 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002510
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002511 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2512 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002513 ret = run_delayed_tree_ref(trans, fs_info, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002514 insert_reserved);
2515 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2516 node->type == BTRFS_SHARED_DATA_REF_KEY)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002517 ret = run_delayed_data_ref(trans, fs_info, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002518 insert_reserved);
2519 else
2520 BUG();
2521 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002522}
2523
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002524static inline struct btrfs_delayed_ref_node *
Chris Mason56bec292009-03-13 10:10:06 -04002525select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002526{
Filipe Mananacffc3372015-07-09 13:13:44 +01002527 struct btrfs_delayed_ref_node *ref;
2528
Josef Bacik0e0adbc2017-10-19 14:16:00 -04002529 if (RB_EMPTY_ROOT(&head->ref_tree))
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002530 return NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002531
Filipe Mananacffc3372015-07-09 13:13:44 +01002532 /*
2533 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
2534 * This is to prevent a ref count from going down to zero, which deletes
2535 * the extent item from the extent tree, when there still are references
2536 * to add, which would fail because they would not find the extent item.
2537 */
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002538 if (!list_empty(&head->ref_add_list))
2539 return list_first_entry(&head->ref_add_list,
2540 struct btrfs_delayed_ref_node, add_list);
Filipe Mananacffc3372015-07-09 13:13:44 +01002541
Josef Bacik0e0adbc2017-10-19 14:16:00 -04002542 ref = rb_entry(rb_first(&head->ref_tree),
2543 struct btrfs_delayed_ref_node, ref_node);
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002544 ASSERT(list_empty(&ref->add_list));
2545 return ref;
Chris Mason56bec292009-03-13 10:10:06 -04002546}
2547
Josef Bacik2eadaa22017-09-29 15:43:52 -04002548static void unselect_delayed_ref_head(struct btrfs_delayed_ref_root *delayed_refs,
2549 struct btrfs_delayed_ref_head *head)
2550{
2551 spin_lock(&delayed_refs->lock);
2552 head->processing = 0;
2553 delayed_refs->num_heads_ready++;
2554 spin_unlock(&delayed_refs->lock);
2555 btrfs_delayed_ref_unlock(head);
2556}
2557
Josef Bacikb00e6252017-09-29 15:43:53 -04002558static int cleanup_extent_op(struct btrfs_trans_handle *trans,
2559 struct btrfs_fs_info *fs_info,
2560 struct btrfs_delayed_ref_head *head)
2561{
2562 struct btrfs_delayed_extent_op *extent_op = head->extent_op;
2563 int ret;
2564
2565 if (!extent_op)
2566 return 0;
2567 head->extent_op = NULL;
2568 if (head->must_insert_reserved) {
2569 btrfs_free_delayed_extent_op(extent_op);
2570 return 0;
2571 }
2572 spin_unlock(&head->lock);
Josef Bacikd2788502017-09-29 15:43:57 -04002573 ret = run_delayed_extent_op(trans, fs_info, head, extent_op);
Josef Bacikb00e6252017-09-29 15:43:53 -04002574 btrfs_free_delayed_extent_op(extent_op);
2575 return ret ? ret : 1;
2576}
2577
Josef Bacik194ab0b2017-09-29 15:43:54 -04002578static int cleanup_ref_head(struct btrfs_trans_handle *trans,
2579 struct btrfs_fs_info *fs_info,
2580 struct btrfs_delayed_ref_head *head)
2581{
2582 struct btrfs_delayed_ref_root *delayed_refs;
2583 int ret;
2584
2585 delayed_refs = &trans->transaction->delayed_refs;
2586
2587 ret = cleanup_extent_op(trans, fs_info, head);
2588 if (ret < 0) {
2589 unselect_delayed_ref_head(delayed_refs, head);
2590 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
2591 return ret;
2592 } else if (ret) {
2593 return ret;
2594 }
2595
2596 /*
2597 * Need to drop our head ref lock and re-acquire the delayed ref lock
2598 * and then re-check to make sure nobody got added.
2599 */
2600 spin_unlock(&head->lock);
2601 spin_lock(&delayed_refs->lock);
2602 spin_lock(&head->lock);
Josef Bacik0e0adbc2017-10-19 14:16:00 -04002603 if (!RB_EMPTY_ROOT(&head->ref_tree) || head->extent_op) {
Josef Bacik194ab0b2017-09-29 15:43:54 -04002604 spin_unlock(&head->lock);
2605 spin_unlock(&delayed_refs->lock);
2606 return 1;
2607 }
Josef Bacik194ab0b2017-09-29 15:43:54 -04002608 delayed_refs->num_heads--;
2609 rb_erase(&head->href_node, &delayed_refs->href_root);
Josef Bacikd2788502017-09-29 15:43:57 -04002610 RB_CLEAR_NODE(&head->href_node);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002611 spin_unlock(&delayed_refs->lock);
Josef Bacikc1103f72017-09-29 15:43:56 -04002612 spin_unlock(&head->lock);
2613 atomic_dec(&delayed_refs->num_entries);
2614
Josef Bacikd2788502017-09-29 15:43:57 -04002615 trace_run_delayed_ref_head(fs_info, head, 0);
Josef Bacikc1103f72017-09-29 15:43:56 -04002616
2617 if (head->total_ref_mod < 0) {
2618 struct btrfs_block_group_cache *cache;
2619
Josef Bacikd2788502017-09-29 15:43:57 -04002620 cache = btrfs_lookup_block_group(fs_info, head->bytenr);
Josef Bacikc1103f72017-09-29 15:43:56 -04002621 ASSERT(cache);
2622 percpu_counter_add(&cache->space_info->total_bytes_pinned,
Josef Bacikd2788502017-09-29 15:43:57 -04002623 -head->num_bytes);
Josef Bacikc1103f72017-09-29 15:43:56 -04002624 btrfs_put_block_group(cache);
2625
2626 if (head->is_data) {
2627 spin_lock(&delayed_refs->lock);
Josef Bacikd2788502017-09-29 15:43:57 -04002628 delayed_refs->pending_csums -= head->num_bytes;
Josef Bacikc1103f72017-09-29 15:43:56 -04002629 spin_unlock(&delayed_refs->lock);
2630 }
2631 }
2632
2633 if (head->must_insert_reserved) {
Josef Bacikd2788502017-09-29 15:43:57 -04002634 btrfs_pin_extent(fs_info, head->bytenr,
2635 head->num_bytes, 1);
Josef Bacikc1103f72017-09-29 15:43:56 -04002636 if (head->is_data) {
Josef Bacikd2788502017-09-29 15:43:57 -04002637 ret = btrfs_del_csums(trans, fs_info, head->bytenr,
2638 head->num_bytes);
Josef Bacikc1103f72017-09-29 15:43:56 -04002639 }
2640 }
2641
2642 /* Also free its reserved qgroup space */
2643 btrfs_qgroup_free_delayed_ref(fs_info, head->qgroup_ref_root,
2644 head->qgroup_reserved);
2645 btrfs_delayed_ref_unlock(head);
Josef Bacikd2788502017-09-29 15:43:57 -04002646 btrfs_put_delayed_ref_head(head);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002647 return 0;
2648}
2649
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002650/*
2651 * Returns 0 on success or if called with an already aborted transaction.
2652 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2653 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002654static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002655 struct btrfs_fs_info *fs_info,
Josef Bacikd7df2c72014-01-23 09:21:38 -05002656 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002657{
Chris Mason56bec292009-03-13 10:10:06 -04002658 struct btrfs_delayed_ref_root *delayed_refs;
2659 struct btrfs_delayed_ref_node *ref;
2660 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002661 struct btrfs_delayed_extent_op *extent_op;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002662 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002663 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002664 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002665 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002666 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002667
2668 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002669 while (1) {
2670 if (!locked_ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002671 if (count >= nr)
Chris Mason56bec292009-03-13 10:10:06 -04002672 break;
Chris Mason56bec292009-03-13 10:10:06 -04002673
Josef Bacikd7df2c72014-01-23 09:21:38 -05002674 spin_lock(&delayed_refs->lock);
2675 locked_ref = btrfs_select_ref_head(trans);
2676 if (!locked_ref) {
2677 spin_unlock(&delayed_refs->lock);
2678 break;
2679 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002680
2681 /* grab the lock that says we are going to process
2682 * all the refs for this head */
2683 ret = btrfs_delayed_ref_lock(trans, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002684 spin_unlock(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -04002685 /*
2686 * we may have dropped the spin lock to get the head
2687 * mutex lock, and that might have given someone else
2688 * time to free the head. If that's true, it has been
2689 * removed from our list and we can move on.
2690 */
2691 if (ret == -EAGAIN) {
2692 locked_ref = NULL;
2693 count++;
2694 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002695 }
2696 }
2697
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002698 /*
2699 * We need to try and merge add/drops of the same ref since we
2700 * can run into issues with relocate dropping the implicit ref
2701 * and then it being added back again before the drop can
2702 * finish. If we merged anything we need to re-loop so we can
2703 * get a good ref.
2704 * Or we can get node references of the same type that weren't
2705 * merged when created due to bumps in the tree mod seq, and
2706 * we need to merge them to prevent adding an inline extent
2707 * backref before dropping it (triggering a BUG_ON at
2708 * insert_inline_extent_backref()).
2709 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002710 spin_lock(&locked_ref->lock);
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002711 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2712 locked_ref);
Josef Bacikae1e2062012-08-07 16:00:32 -04002713
2714 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002715 * locked_ref is the head node, so we have to go one
2716 * node back for any delayed ref updates
2717 */
2718 ref = select_delayed_ref(locked_ref);
2719
2720 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002721 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002722 spin_unlock(&locked_ref->lock);
Josef Bacik2eadaa22017-09-29 15:43:52 -04002723 unselect_delayed_ref_head(delayed_refs, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002724 locked_ref = NULL;
Arne Jansend1270cd2011-09-13 15:16:43 +02002725 cond_resched();
Josef Bacik27a377d2014-02-07 13:57:59 -05002726 count++;
Arne Jansend1270cd2011-09-13 15:16:43 +02002727 continue;
2728 }
2729
Josef Bacikc1103f72017-09-29 15:43:56 -04002730 /*
2731 * We're done processing refs in this ref_head, clean everything
2732 * up and move on to the next ref_head.
2733 */
Chris Mason56bec292009-03-13 10:10:06 -04002734 if (!ref) {
Josef Bacik194ab0b2017-09-29 15:43:54 -04002735 ret = cleanup_ref_head(trans, fs_info, locked_ref);
2736 if (ret > 0 ) {
Josef Bacikb00e6252017-09-29 15:43:53 -04002737 /* We dropped our lock, we need to loop. */
2738 ret = 0;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002739 continue;
Josef Bacik194ab0b2017-09-29 15:43:54 -04002740 } else if (ret) {
2741 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002742 }
Josef Bacikc1103f72017-09-29 15:43:56 -04002743 locked_ref = NULL;
2744 count++;
2745 continue;
2746 }
Chris Mason56bec292009-03-13 10:10:06 -04002747
Josef Bacikc1103f72017-09-29 15:43:56 -04002748 actual_count++;
2749 ref->in_tree = 0;
Josef Bacik0e0adbc2017-10-19 14:16:00 -04002750 rb_erase(&ref->ref_node, &locked_ref->ref_tree);
2751 RB_CLEAR_NODE(&ref->ref_node);
Josef Bacikc1103f72017-09-29 15:43:56 -04002752 if (!list_empty(&ref->add_list))
2753 list_del(&ref->add_list);
2754 /*
2755 * When we play the delayed ref, also correct the ref_mod on
2756 * head
2757 */
2758 switch (ref->action) {
2759 case BTRFS_ADD_DELAYED_REF:
2760 case BTRFS_ADD_DELAYED_EXTENT:
Josef Bacikd2788502017-09-29 15:43:57 -04002761 locked_ref->ref_mod -= ref->ref_mod;
Josef Bacikc1103f72017-09-29 15:43:56 -04002762 break;
2763 case BTRFS_DROP_DELAYED_REF:
Josef Bacikd2788502017-09-29 15:43:57 -04002764 locked_ref->ref_mod += ref->ref_mod;
Josef Bacikc1103f72017-09-29 15:43:56 -04002765 break;
2766 default:
2767 WARN_ON(1);
Arne Jansen22cd2e72012-08-09 00:16:53 -06002768 }
Josef Bacik1ce7a5e2017-09-29 15:43:55 -04002769 atomic_dec(&delayed_refs->num_entries);
2770
Josef Bacikb00e6252017-09-29 15:43:53 -04002771 /*
2772 * Record the must-insert_reserved flag before we drop the spin
2773 * lock.
2774 */
2775 must_insert_reserved = locked_ref->must_insert_reserved;
2776 locked_ref->must_insert_reserved = 0;
2777
2778 extent_op = locked_ref->extent_op;
2779 locked_ref->extent_op = NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002780 spin_unlock(&locked_ref->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002781
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002782 ret = run_one_delayed_ref(trans, fs_info, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002783 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002784
Miao Xie78a61842012-11-21 02:21:28 +00002785 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002786 if (ret) {
Josef Bacik2eadaa22017-09-29 15:43:52 -04002787 unselect_delayed_ref_head(delayed_refs, locked_ref);
Miao Xie093486c2012-12-19 08:10:10 +00002788 btrfs_put_delayed_ref(ref);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002789 btrfs_debug(fs_info, "run_one_delayed_ref returned %d",
2790 ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002791 return ret;
2792 }
2793
Miao Xie093486c2012-12-19 08:10:10 +00002794 btrfs_put_delayed_ref(ref);
2795 count++;
Chris Mason1887be62009-03-13 10:11:24 -04002796 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002797 }
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002798
2799 /*
2800 * We don't want to include ref heads since we can have empty ref heads
2801 * and those will drastically skew our runtime down since we just do
2802 * accounting, no actual extent tree updates.
2803 */
2804 if (actual_count > 0) {
2805 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2806 u64 avg;
2807
2808 /*
2809 * We weigh the current average higher than our current runtime
2810 * to avoid large swings in the average.
2811 */
2812 spin_lock(&delayed_refs->lock);
2813 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002814 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002815 spin_unlock(&delayed_refs->lock);
2816 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002817 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002818}
2819
Arne Jansen709c0482011-09-12 12:22:57 +02002820#ifdef SCRAMBLE_DELAYED_REFS
2821/*
2822 * Normally delayed refs get processed in ascending bytenr order. This
2823 * correlates in most cases to the order added. To expose dependencies on this
2824 * order, we start to process the tree in the middle instead of the beginning
2825 */
2826static u64 find_middle(struct rb_root *root)
2827{
2828 struct rb_node *n = root->rb_node;
2829 struct btrfs_delayed_ref_node *entry;
2830 int alt = 1;
2831 u64 middle;
2832 u64 first = 0, last = 0;
2833
2834 n = rb_first(root);
2835 if (n) {
2836 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2837 first = entry->bytenr;
2838 }
2839 n = rb_last(root);
2840 if (n) {
2841 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2842 last = entry->bytenr;
2843 }
2844 n = root->rb_node;
2845
2846 while (n) {
2847 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2848 WARN_ON(!entry->in_tree);
2849
2850 middle = entry->bytenr;
2851
2852 if (alt)
2853 n = n->rb_left;
2854 else
2855 n = n->rb_right;
2856
2857 alt = 1 - alt;
2858 }
2859 return middle;
2860}
2861#endif
2862
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002863static inline u64 heads_to_leaves(struct btrfs_fs_info *fs_info, u64 heads)
Josef Bacik1be41b72013-06-12 13:56:06 -04002864{
2865 u64 num_bytes;
2866
2867 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2868 sizeof(struct btrfs_extent_inline_ref));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002869 if (!btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik1be41b72013-06-12 13:56:06 -04002870 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2871
2872 /*
2873 * 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 -04002874 * closer to what we're really going to want to use.
Josef Bacik1be41b72013-06-12 13:56:06 -04002875 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002876 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(fs_info));
Josef Bacik1be41b72013-06-12 13:56:06 -04002877}
2878
Josef Bacik12621332015-02-03 07:50:16 -08002879/*
2880 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2881 * would require to store the csums for that many bytes.
2882 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002883u64 btrfs_csum_bytes_to_leaves(struct btrfs_fs_info *fs_info, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002884{
2885 u64 csum_size;
2886 u64 num_csums_per_leaf;
2887 u64 num_csums;
2888
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002889 csum_size = BTRFS_MAX_ITEM_SIZE(fs_info);
Josef Bacik12621332015-02-03 07:50:16 -08002890 num_csums_per_leaf = div64_u64(csum_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002891 (u64)btrfs_super_csum_size(fs_info->super_copy));
2892 num_csums = div64_u64(csum_bytes, fs_info->sectorsize);
Josef Bacik12621332015-02-03 07:50:16 -08002893 num_csums += num_csums_per_leaf - 1;
2894 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2895 return num_csums;
2896}
2897
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002898int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002899 struct btrfs_fs_info *fs_info)
Josef Bacik1be41b72013-06-12 13:56:06 -04002900{
2901 struct btrfs_block_rsv *global_rsv;
2902 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
Josef Bacik12621332015-02-03 07:50:16 -08002903 u64 csum_bytes = trans->transaction->delayed_refs.pending_csums;
David Sterba165c8b02017-11-08 02:12:57 +01002904 unsigned int num_dirty_bgs = trans->transaction->num_dirty_bgs;
Josef Bacikcb723e42015-02-18 08:06:57 -08002905 u64 num_bytes, num_dirty_bgs_bytes;
Josef Bacik1be41b72013-06-12 13:56:06 -04002906 int ret = 0;
2907
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002908 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002909 num_heads = heads_to_leaves(fs_info, num_heads);
Josef Bacik1be41b72013-06-12 13:56:06 -04002910 if (num_heads > 1)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002911 num_bytes += (num_heads - 1) * fs_info->nodesize;
Josef Bacik1be41b72013-06-12 13:56:06 -04002912 num_bytes <<= 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002913 num_bytes += btrfs_csum_bytes_to_leaves(fs_info, csum_bytes) *
2914 fs_info->nodesize;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002915 num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(fs_info,
Josef Bacikcb723e42015-02-18 08:06:57 -08002916 num_dirty_bgs);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002917 global_rsv = &fs_info->global_block_rsv;
Josef Bacik1be41b72013-06-12 13:56:06 -04002918
2919 /*
2920 * If we can't allocate any more chunks lets make sure we have _lots_ of
2921 * wiggle room since running delayed refs can create more delayed refs.
2922 */
Josef Bacikcb723e42015-02-18 08:06:57 -08002923 if (global_rsv->space_info->full) {
2924 num_dirty_bgs_bytes <<= 1;
Josef Bacik1be41b72013-06-12 13:56:06 -04002925 num_bytes <<= 1;
Josef Bacikcb723e42015-02-18 08:06:57 -08002926 }
Josef Bacik1be41b72013-06-12 13:56:06 -04002927
2928 spin_lock(&global_rsv->lock);
Josef Bacikcb723e42015-02-18 08:06:57 -08002929 if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes)
Josef Bacik1be41b72013-06-12 13:56:06 -04002930 ret = 1;
2931 spin_unlock(&global_rsv->lock);
2932 return ret;
2933}
2934
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002935int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002936 struct btrfs_fs_info *fs_info)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002937{
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002938 u64 num_entries =
2939 atomic_read(&trans->transaction->delayed_refs.num_entries);
2940 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002941 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002942
2943 smp_mb();
2944 avg_runtime = fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002945 val = num_entries * avg_runtime;
Wang Xiaoguangdc1a90c2016-10-26 15:23:01 +08002946 if (val >= NSEC_PER_SEC)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002947 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002948 if (val >= NSEC_PER_SEC / 2)
2949 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002950
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002951 return btrfs_check_space_for_delayed_refs(trans, fs_info);
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002952}
2953
Chris Masona79b7d42014-05-22 16:18:52 -07002954struct async_delayed_refs {
2955 struct btrfs_root *root;
Josef Bacik31b96552016-04-11 17:37:40 -04002956 u64 transid;
Chris Masona79b7d42014-05-22 16:18:52 -07002957 int count;
2958 int error;
2959 int sync;
2960 struct completion wait;
2961 struct btrfs_work work;
2962};
2963
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002964static inline struct async_delayed_refs *
2965to_async_delayed_refs(struct btrfs_work *work)
2966{
2967 return container_of(work, struct async_delayed_refs, work);
2968}
2969
Chris Masona79b7d42014-05-22 16:18:52 -07002970static void delayed_ref_async_start(struct btrfs_work *work)
2971{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002972 struct async_delayed_refs *async = to_async_delayed_refs(work);
Chris Masona79b7d42014-05-22 16:18:52 -07002973 struct btrfs_trans_handle *trans;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002974 struct btrfs_fs_info *fs_info = async->root->fs_info;
Chris Masona79b7d42014-05-22 16:18:52 -07002975 int ret;
2976
Chris Mason0f873ec2016-04-27 09:59:38 -04002977 /* if the commit is already started, we don't need to wait here */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002978 if (btrfs_transaction_blocked(fs_info))
Josef Bacik31b96552016-04-11 17:37:40 -04002979 goto done;
Josef Bacik31b96552016-04-11 17:37:40 -04002980
Chris Mason0f873ec2016-04-27 09:59:38 -04002981 trans = btrfs_join_transaction(async->root);
2982 if (IS_ERR(trans)) {
2983 async->error = PTR_ERR(trans);
Chris Masona79b7d42014-05-22 16:18:52 -07002984 goto done;
2985 }
2986
2987 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002988 * trans->sync means that when we call end_transaction, we won't
Chris Masona79b7d42014-05-22 16:18:52 -07002989 * wait on delayed refs
2990 */
2991 trans->sync = true;
Chris Mason0f873ec2016-04-27 09:59:38 -04002992
2993 /* Don't bother flushing if we got into a different transaction */
2994 if (trans->transid > async->transid)
2995 goto end;
2996
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002997 ret = btrfs_run_delayed_refs(trans, fs_info, async->count);
Chris Masona79b7d42014-05-22 16:18:52 -07002998 if (ret)
2999 async->error = ret;
Chris Mason0f873ec2016-04-27 09:59:38 -04003000end:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003001 ret = btrfs_end_transaction(trans);
Chris Masona79b7d42014-05-22 16:18:52 -07003002 if (ret && !async->error)
3003 async->error = ret;
3004done:
3005 if (async->sync)
3006 complete(&async->wait);
3007 else
3008 kfree(async);
3009}
3010
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003011int btrfs_async_run_delayed_refs(struct btrfs_fs_info *fs_info,
Josef Bacik31b96552016-04-11 17:37:40 -04003012 unsigned long count, u64 transid, int wait)
Chris Masona79b7d42014-05-22 16:18:52 -07003013{
3014 struct async_delayed_refs *async;
3015 int ret;
3016
3017 async = kmalloc(sizeof(*async), GFP_NOFS);
3018 if (!async)
3019 return -ENOMEM;
3020
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003021 async->root = fs_info->tree_root;
Chris Masona79b7d42014-05-22 16:18:52 -07003022 async->count = count;
3023 async->error = 0;
Josef Bacik31b96552016-04-11 17:37:40 -04003024 async->transid = transid;
Chris Masona79b7d42014-05-22 16:18:52 -07003025 if (wait)
3026 async->sync = 1;
3027 else
3028 async->sync = 0;
3029 init_completion(&async->wait);
3030
Liu Bo9e0af232014-08-15 23:36:53 +08003031 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
3032 delayed_ref_async_start, NULL, NULL);
Chris Masona79b7d42014-05-22 16:18:52 -07003033
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003034 btrfs_queue_work(fs_info->extent_workers, &async->work);
Chris Masona79b7d42014-05-22 16:18:52 -07003035
3036 if (wait) {
3037 wait_for_completion(&async->wait);
3038 ret = async->error;
3039 kfree(async);
3040 return ret;
3041 }
3042 return 0;
3043}
3044
Chris Masonc3e69d52009-03-13 10:17:05 -04003045/*
3046 * this starts processing the delayed reference count updates and
3047 * extent insertions we have queued up so far. count can be
3048 * 0, which means to process everything in the tree at the start
3049 * of the run (but not newly added entries), or it can be some target
3050 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003051 *
3052 * Returns 0 on success or if called with an aborted transaction
3053 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04003054 */
3055int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003056 struct btrfs_fs_info *fs_info, unsigned long count)
Chris Masonc3e69d52009-03-13 10:17:05 -04003057{
3058 struct rb_node *node;
3059 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08003060 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04003061 int ret;
3062 int run_all = count == (unsigned long)-1;
Filipe Mananad9a05402015-10-03 13:13:13 +01003063 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Chris Masonc3e69d52009-03-13 10:17:05 -04003064
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003065 /* We'll clean this up in btrfs_cleanup_transaction */
3066 if (trans->aborted)
3067 return 0;
3068
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003069 if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags))
Chris Mason511711a2015-12-30 07:52:35 -08003070 return 0;
3071
Chris Masonc3e69d52009-03-13 10:17:05 -04003072 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08003073 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05003074 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05003075
Chris Masonc3e69d52009-03-13 10:17:05 -04003076again:
Arne Jansen709c0482011-09-12 12:22:57 +02003077#ifdef SCRAMBLE_DELAYED_REFS
3078 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
3079#endif
Filipe Mananad9a05402015-10-03 13:13:13 +01003080 trans->can_flush_pending_bgs = false;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003081 ret = __btrfs_run_delayed_refs(trans, fs_info, count);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003082 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003083 btrfs_abort_transaction(trans, ret);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003084 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04003085 }
3086
Chris Mason56bec292009-03-13 10:10:06 -04003087 if (run_all) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05003088 if (!list_empty(&trans->new_bgs))
Nikolay Borisov6c686b32018-02-07 17:55:40 +02003089 btrfs_create_pending_block_groups(trans);
Josef Bacikea658ba2012-09-11 16:57:25 -04003090
Josef Bacikd7df2c72014-01-23 09:21:38 -05003091 spin_lock(&delayed_refs->lock);
Liu Boc46effa2013-10-14 12:59:45 +08003092 node = rb_first(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003093 if (!node) {
3094 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04003095 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05003096 }
Josef Bacikd2788502017-09-29 15:43:57 -04003097 head = rb_entry(node, struct btrfs_delayed_ref_head,
3098 href_node);
3099 refcount_inc(&head->refs);
Chris Mason56bec292009-03-13 10:10:06 -04003100 spin_unlock(&delayed_refs->lock);
Josef Bacikd2788502017-09-29 15:43:57 -04003101
3102 /* Mutex was contended, block until it's released and retry. */
3103 mutex_lock(&head->mutex);
3104 mutex_unlock(&head->mutex);
3105
3106 btrfs_put_delayed_ref_head(head);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003107 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04003108 goto again;
3109 }
Chris Mason54aa1f42007-06-22 14:16:25 -04003110out:
Filipe Mananad9a05402015-10-03 13:13:13 +01003111 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Chris Masona28ec192007-03-06 20:08:01 -05003112 return 0;
3113}
3114
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003115int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003116 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003117 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04003118 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003119{
3120 struct btrfs_delayed_extent_op *extent_op;
3121 int ret;
3122
Miao Xie78a61842012-11-21 02:21:28 +00003123 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003124 if (!extent_op)
3125 return -ENOMEM;
3126
3127 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01003128 extent_op->update_flags = true;
3129 extent_op->update_key = false;
3130 extent_op->is_data = is_data ? true : false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04003131 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003132
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003133 ret = btrfs_add_delayed_extent_op(fs_info, trans, bytenr,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003134 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003135 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00003136 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003137 return ret;
3138}
3139
Liu Boe4c3b2d2017-01-30 12:25:28 -08003140static noinline int check_delayed_ref(struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003141 struct btrfs_path *path,
3142 u64 objectid, u64 offset, u64 bytenr)
3143{
3144 struct btrfs_delayed_ref_head *head;
3145 struct btrfs_delayed_ref_node *ref;
3146 struct btrfs_delayed_data_ref *data_ref;
3147 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boe4c3b2d2017-01-30 12:25:28 -08003148 struct btrfs_transaction *cur_trans;
Josef Bacik0e0adbc2017-10-19 14:16:00 -04003149 struct rb_node *node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003150 int ret = 0;
3151
Liu Boe4c3b2d2017-01-30 12:25:28 -08003152 cur_trans = root->fs_info->running_transaction;
3153 if (!cur_trans)
3154 return 0;
3155
3156 delayed_refs = &cur_trans->delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003157 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08003158 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003159 if (!head) {
3160 spin_unlock(&delayed_refs->lock);
3161 return 0;
3162 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003163
3164 if (!mutex_trylock(&head->mutex)) {
Josef Bacikd2788502017-09-29 15:43:57 -04003165 refcount_inc(&head->refs);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003166 spin_unlock(&delayed_refs->lock);
3167
David Sterbab3b4aa72011-04-21 01:20:15 +02003168 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003169
David Sterba8cc33e52011-05-02 15:29:25 +02003170 /*
3171 * Mutex was contended, block until it's released and let
3172 * caller try again
3173 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003174 mutex_lock(&head->mutex);
3175 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -04003176 btrfs_put_delayed_ref_head(head);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003177 return -EAGAIN;
3178 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003179 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003180
3181 spin_lock(&head->lock);
Josef Bacik0e0adbc2017-10-19 14:16:00 -04003182 /*
3183 * XXX: We should replace this with a proper search function in the
3184 * future.
3185 */
3186 for (node = rb_first(&head->ref_tree); node; node = rb_next(node)) {
3187 ref = rb_entry(node, struct btrfs_delayed_ref_node, ref_node);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003188 /* If it's a shared ref we know a cross reference exists */
3189 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
3190 ret = 1;
3191 break;
3192 }
3193
3194 data_ref = btrfs_delayed_node_to_data_ref(ref);
3195
3196 /*
3197 * If our ref doesn't match the one we're currently looking at
3198 * then we have a cross reference.
3199 */
3200 if (data_ref->root != root->root_key.objectid ||
3201 data_ref->objectid != objectid ||
3202 data_ref->offset != offset) {
3203 ret = 1;
3204 break;
3205 }
3206 }
3207 spin_unlock(&head->lock);
3208 mutex_unlock(&head->mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003209 return ret;
3210}
3211
Liu Boe4c3b2d2017-01-30 12:25:28 -08003212static noinline int check_committed_ref(struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003213 struct btrfs_path *path,
3214 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05003215{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003216 struct btrfs_fs_info *fs_info = root->fs_info;
3217 struct btrfs_root *extent_root = fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04003218 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003219 struct btrfs_extent_data_ref *ref;
3220 struct btrfs_extent_inline_ref *iref;
3221 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05003222 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003223 u32 item_size;
Liu Bo3de28d52017-08-18 15:15:19 -06003224 int type;
Yan Zhengf321e492008-07-30 09:26:11 -04003225 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05003226
Chris Masonbe20aa92007-12-17 20:14:01 -05003227 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04003228 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04003229 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05003230
Chris Masonbe20aa92007-12-17 20:14:01 -05003231 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3232 if (ret < 0)
3233 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003234 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04003235
3236 ret = -ENOENT;
3237 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04003238 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003239
Zheng Yan31840ae2008-09-23 13:14:14 -04003240 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04003241 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003242 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05003243
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003244 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05003245 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003246
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003247 ret = 1;
3248 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3249#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3250 if (item_size < sizeof(*ei)) {
3251 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
3252 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003253 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003254#endif
3255 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
3256
3257 if (item_size != sizeof(*ei) +
3258 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
3259 goto out;
3260
3261 if (btrfs_extent_generation(leaf, ei) <=
3262 btrfs_root_last_snapshot(&root->root_item))
3263 goto out;
3264
3265 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
Liu Bo3de28d52017-08-18 15:15:19 -06003266
3267 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
3268 if (type != BTRFS_EXTENT_DATA_REF_KEY)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003269 goto out;
3270
3271 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
3272 if (btrfs_extent_refs(leaf, ei) !=
3273 btrfs_extent_data_ref_count(leaf, ref) ||
3274 btrfs_extent_data_ref_root(leaf, ref) !=
3275 root->root_key.objectid ||
3276 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3277 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3278 goto out;
3279
Yan Zhengf321e492008-07-30 09:26:11 -04003280 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003281out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003282 return ret;
3283}
3284
Liu Boe4c3b2d2017-01-30 12:25:28 -08003285int btrfs_cross_ref_exist(struct btrfs_root *root, u64 objectid, u64 offset,
3286 u64 bytenr)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003287{
3288 struct btrfs_path *path;
3289 int ret;
3290 int ret2;
3291
3292 path = btrfs_alloc_path();
3293 if (!path)
3294 return -ENOENT;
3295
3296 do {
Liu Boe4c3b2d2017-01-30 12:25:28 -08003297 ret = check_committed_ref(root, path, objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003298 offset, bytenr);
3299 if (ret && ret != -ENOENT)
3300 goto out;
3301
Liu Boe4c3b2d2017-01-30 12:25:28 -08003302 ret2 = check_delayed_ref(root, path, objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003303 offset, bytenr);
3304 } while (ret2 == -EAGAIN);
3305
3306 if (ret2 && ret2 != -ENOENT) {
3307 ret = ret2;
3308 goto out;
3309 }
3310
3311 if (ret != -ENOENT || ret2 != -ENOENT)
3312 ret = 0;
3313out:
Yan Zhengf321e492008-07-30 09:26:11 -04003314 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003315 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3316 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003317 return ret;
3318}
3319
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003320static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003321 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003322 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003323 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003324{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003325 struct btrfs_fs_info *fs_info = root->fs_info;
Zheng Yan31840ae2008-09-23 13:14:14 -04003326 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003327 u64 num_bytes;
3328 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003329 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003330 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003331 struct btrfs_key key;
3332 struct btrfs_file_extent_item *fi;
3333 int i;
3334 int level;
3335 int ret = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003336 int (*process_func)(struct btrfs_trans_handle *,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04003337 struct btrfs_root *,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003338 u64, u64, u64, u64, u64, u64);
Zheng Yan31840ae2008-09-23 13:14:14 -04003339
David Sterbafccb84c2014-09-29 23:53:21 +02003340
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003341 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003342 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003343
Zheng Yan31840ae2008-09-23 13:14:14 -04003344 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003345 nritems = btrfs_header_nritems(buf);
3346 level = btrfs_header_level(buf);
3347
Miao Xie27cdeb72014-04-02 19:51:05 +08003348 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003349 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003350
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003351 if (inc)
3352 process_func = btrfs_inc_extent_ref;
3353 else
3354 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003355
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003356 if (full_backref)
3357 parent = buf->start;
3358 else
3359 parent = 0;
3360
Zheng Yan31840ae2008-09-23 13:14:14 -04003361 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003362 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003363 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003364 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003365 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003366 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003367 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003368 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003369 BTRFS_FILE_EXTENT_INLINE)
3370 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003371 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3372 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003373 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003374
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003375 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3376 key.offset -= btrfs_file_extent_offset(buf, fi);
Josef Bacik84f7d8e2017-09-29 15:43:49 -04003377 ret = process_func(trans, root, bytenr, num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003378 parent, ref_root, key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003379 key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003380 if (ret)
3381 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003382 } else {
3383 bytenr = btrfs_node_blockptr(buf, i);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003384 num_bytes = fs_info->nodesize;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04003385 ret = process_func(trans, root, bytenr, num_bytes,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003386 parent, ref_root, level - 1, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003387 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003388 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003389 }
3390 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003391 return 0;
3392fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003393 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003394}
3395
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003396int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003397 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003398{
Josef Bacike339a6b2014-07-02 10:54:25 -07003399 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003400}
Zheng Yan31840ae2008-09-23 13:14:14 -04003401
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003402int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003403 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003404{
Josef Bacike339a6b2014-07-02 10:54:25 -07003405 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003406}
3407
Chris Mason9078a3e2007-04-26 16:46:15 -04003408static int write_one_cache_group(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003409 struct btrfs_fs_info *fs_info,
Chris Mason9078a3e2007-04-26 16:46:15 -04003410 struct btrfs_path *path,
3411 struct btrfs_block_group_cache *cache)
3412{
3413 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003414 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003415 unsigned long bi;
3416 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003417
Chris Mason9078a3e2007-04-26 16:46:15 -04003418 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003419 if (ret) {
3420 if (ret > 0)
3421 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003422 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003423 }
Chris Mason5f39d392007-10-15 16:14:19 -04003424
3425 leaf = path->nodes[0];
3426 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3427 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3428 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003429fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003430 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003431 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003432
3433}
3434
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003435static struct btrfs_block_group_cache *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003436next_block_group(struct btrfs_fs_info *fs_info,
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003437 struct btrfs_block_group_cache *cache)
3438{
3439 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003440
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003441 spin_lock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003442
3443 /* If our block group was removed, we need a full search. */
3444 if (RB_EMPTY_NODE(&cache->cache_node)) {
3445 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3446
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003447 spin_unlock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003448 btrfs_put_block_group(cache);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003449 cache = btrfs_lookup_first_block_group(fs_info, next_bytenr); return cache;
Filipe Manana292cbd52014-11-26 15:28:50 +00003450 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003451 node = rb_next(&cache->cache_node);
3452 btrfs_put_block_group(cache);
3453 if (node) {
3454 cache = rb_entry(node, struct btrfs_block_group_cache,
3455 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003456 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003457 } else
3458 cache = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003459 spin_unlock(&fs_info->block_group_cache_lock);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003460 return cache;
3461}
3462
Josef Bacik0af3d002010-06-21 14:48:16 -04003463static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3464 struct btrfs_trans_handle *trans,
3465 struct btrfs_path *path)
3466{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003467 struct btrfs_fs_info *fs_info = block_group->fs_info;
3468 struct btrfs_root *root = fs_info->tree_root;
Josef Bacik0af3d002010-06-21 14:48:16 -04003469 struct inode *inode = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003470 struct extent_changeset *data_reserved = NULL;
Josef Bacik0af3d002010-06-21 14:48:16 -04003471 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003472 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003473 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003474 int retries = 0;
3475 int ret = 0;
3476
3477 /*
3478 * If this block group is smaller than 100 megs don't bother caching the
3479 * block group.
3480 */
Byongho Leeee221842015-12-15 01:42:10 +09003481 if (block_group->key.offset < (100 * SZ_1M)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003482 spin_lock(&block_group->lock);
3483 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3484 spin_unlock(&block_group->lock);
3485 return 0;
3486 }
3487
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003488 if (trans->aborted)
3489 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003490again:
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003491 inode = lookup_free_space_inode(fs_info, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003492 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3493 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003494 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003495 goto out;
3496 }
3497
3498 if (IS_ERR(inode)) {
3499 BUG_ON(retries);
3500 retries++;
3501
3502 if (block_group->ro)
3503 goto out_free;
3504
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003505 ret = create_free_space_inode(fs_info, trans, block_group,
3506 path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003507 if (ret)
3508 goto out_free;
3509 goto again;
3510 }
3511
3512 /*
3513 * We want to set the generation to 0, that way if anything goes wrong
3514 * from here on out we know not to trust this cache when we load up next
3515 * time.
3516 */
3517 BTRFS_I(inode)->generation = 0;
3518 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003519 if (ret) {
3520 /*
3521 * So theoretically we could recover from this, simply set the
3522 * super cache generation to 0 so we know to invalidate the
3523 * cache, but then we'd have to keep track of the block groups
3524 * that fail this way so we know we _have_ to reset this cache
3525 * before the next commit or risk reading stale cache. So to
3526 * limit our exposure to horrible edge cases lets just abort the
3527 * transaction, this only happens in really bad situations
3528 * anyway.
3529 */
Jeff Mahoney66642832016-06-10 18:19:25 -04003530 btrfs_abort_transaction(trans, ret);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003531 goto out_put;
3532 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003533 WARN_ON(ret);
3534
Josef Bacik8e138e02017-11-17 14:50:46 -05003535 /* We've already setup this transaction, go ahead and exit */
3536 if (block_group->cache_generation == trans->transid &&
3537 i_size_read(inode)) {
3538 dcs = BTRFS_DC_SETUP;
3539 goto out_put;
3540 }
3541
Josef Bacik0af3d002010-06-21 14:48:16 -04003542 if (i_size_read(inode) > 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003543 ret = btrfs_check_trunc_cache_free_space(fs_info,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003544 &fs_info->global_block_rsv);
Miao Xie7b61cd92013-05-13 13:55:09 +00003545 if (ret)
3546 goto out_put;
3547
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003548 ret = btrfs_truncate_free_space_cache(trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003549 if (ret)
3550 goto out_put;
3551 }
3552
3553 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003554 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003555 !btrfs_test_opt(fs_info, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003556 /*
3557 * don't bother trying to write stuff out _if_
3558 * a) we're not cached,
Liu Bo1a79c1f2017-03-06 13:49:02 -08003559 * b) we're with nospace_cache mount option,
3560 * c) we're with v2 space_cache (FREE_SPACE_TREE).
Liu Bocf7c1ef2012-07-06 03:31:34 -06003561 */
Josef Bacik2b209822010-12-03 13:17:53 -05003562 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003563 spin_unlock(&block_group->lock);
3564 goto out_put;
3565 }
3566 spin_unlock(&block_group->lock);
3567
Josef Bacik6fc823b2012-08-06 13:46:38 -06003568 /*
Josef Bacik2968b1f2015-10-01 12:55:18 -04003569 * We hit an ENOSPC when setting up the cache in this transaction, just
3570 * skip doing the setup, we've already cleared the cache so we're safe.
3571 */
3572 if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
3573 ret = -ENOSPC;
3574 goto out_put;
3575 }
3576
3577 /*
Josef Bacik6fc823b2012-08-06 13:46:38 -06003578 * Try to preallocate enough space based on how big the block group is.
3579 * Keep in mind this has to include any pinned space which could end up
3580 * taking up quite a bit since it's not folded into the other space
3581 * cache.
3582 */
Byongho Leeee221842015-12-15 01:42:10 +09003583 num_pages = div_u64(block_group->key.offset, SZ_256M);
Josef Bacik0af3d002010-06-21 14:48:16 -04003584 if (!num_pages)
3585 num_pages = 1;
3586
Josef Bacik0af3d002010-06-21 14:48:16 -04003587 num_pages *= 16;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003588 num_pages *= PAGE_SIZE;
Josef Bacik0af3d002010-06-21 14:48:16 -04003589
Qu Wenruo364ecf32017-02-27 15:10:38 +08003590 ret = btrfs_check_data_free_space(inode, &data_reserved, 0, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003591 if (ret)
3592 goto out_put;
3593
3594 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3595 num_pages, num_pages,
3596 &alloc_hint);
Josef Bacik2968b1f2015-10-01 12:55:18 -04003597 /*
3598 * Our cache requires contiguous chunks so that we don't modify a bunch
3599 * of metadata or split extents when writing the cache out, which means
3600 * we can enospc if we are heavily fragmented in addition to just normal
3601 * out of space conditions. So if we hit this just skip setting up any
3602 * other block groups for this transaction, maybe we'll unpin enough
3603 * space the next time around.
3604 */
Josef Bacik2b209822010-12-03 13:17:53 -05003605 if (!ret)
3606 dcs = BTRFS_DC_SETUP;
Josef Bacik2968b1f2015-10-01 12:55:18 -04003607 else if (ret == -ENOSPC)
3608 set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
Josef Bacikc09544e2011-08-30 10:19:10 -04003609
Josef Bacik0af3d002010-06-21 14:48:16 -04003610out_put:
3611 iput(inode);
3612out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003613 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003614out:
3615 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003616 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003617 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003618 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003619 spin_unlock(&block_group->lock);
3620
Qu Wenruo364ecf32017-02-27 15:10:38 +08003621 extent_changeset_free(data_reserved);
Josef Bacik0af3d002010-06-21 14:48:16 -04003622 return ret;
3623}
3624
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003625int btrfs_setup_space_cache(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003626 struct btrfs_fs_info *fs_info)
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003627{
3628 struct btrfs_block_group_cache *cache, *tmp;
3629 struct btrfs_transaction *cur_trans = trans->transaction;
3630 struct btrfs_path *path;
3631
3632 if (list_empty(&cur_trans->dirty_bgs) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003633 !btrfs_test_opt(fs_info, SPACE_CACHE))
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003634 return 0;
3635
3636 path = btrfs_alloc_path();
3637 if (!path)
3638 return -ENOMEM;
3639
3640 /* Could add new block groups, use _safe just in case */
3641 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3642 dirty_list) {
3643 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3644 cache_save_setup(cache, trans, path);
3645 }
3646
3647 btrfs_free_path(path);
3648 return 0;
3649}
3650
Chris Mason1bbc6212015-04-06 12:46:08 -07003651/*
3652 * transaction commit does final block group cache writeback during a
3653 * critical section where nothing is allowed to change the FS. This is
3654 * required in order for the cache to actually match the block group,
3655 * but can introduce a lot of latency into the commit.
3656 *
3657 * So, btrfs_start_dirty_block_groups is here to kick off block group
3658 * cache IO. There's a chance we'll have to redo some of it if the
3659 * block group changes again during the commit, but it greatly reduces
3660 * the commit latency by getting rid of the easy block groups while
3661 * we're still allowing others to join the commit.
3662 */
Nikolay Borisov21217052018-02-07 17:55:41 +02003663int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans)
Chris Mason1bbc6212015-04-06 12:46:08 -07003664{
Nikolay Borisov21217052018-02-07 17:55:41 +02003665 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason1bbc6212015-04-06 12:46:08 -07003666 struct btrfs_block_group_cache *cache;
3667 struct btrfs_transaction *cur_trans = trans->transaction;
3668 int ret = 0;
3669 int should_put;
3670 struct btrfs_path *path = NULL;
3671 LIST_HEAD(dirty);
3672 struct list_head *io = &cur_trans->io_bgs;
3673 int num_started = 0;
3674 int loops = 0;
3675
3676 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003677 if (list_empty(&cur_trans->dirty_bgs)) {
3678 spin_unlock(&cur_trans->dirty_bgs_lock);
3679 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003680 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003681 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003682 spin_unlock(&cur_trans->dirty_bgs_lock);
3683
3684again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003685 /*
3686 * make sure all the block groups on our dirty list actually
3687 * exist
3688 */
Nikolay Borisov6c686b32018-02-07 17:55:40 +02003689 btrfs_create_pending_block_groups(trans);
Chris Mason1bbc6212015-04-06 12:46:08 -07003690
3691 if (!path) {
3692 path = btrfs_alloc_path();
3693 if (!path)
3694 return -ENOMEM;
3695 }
3696
Filipe Mananab58d1a92015-04-25 18:29:16 +01003697 /*
3698 * cache_write_mutex is here only to save us from balance or automatic
3699 * removal of empty block groups deleting this block group while we are
3700 * writing out the cache
3701 */
3702 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003703 while (!list_empty(&dirty)) {
3704 cache = list_first_entry(&dirty,
3705 struct btrfs_block_group_cache,
3706 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003707 /*
3708 * this can happen if something re-dirties a block
3709 * group that is already under IO. Just wait for it to
3710 * finish and then do it all again
3711 */
3712 if (!list_empty(&cache->io_list)) {
3713 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003714 btrfs_wait_cache_io(trans, cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003715 btrfs_put_block_group(cache);
3716 }
3717
3718
3719 /*
3720 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3721 * if it should update the cache_state. Don't delete
3722 * until after we wait.
3723 *
3724 * Since we're not running in the commit critical section
3725 * we need the dirty_bgs_lock to protect from update_block_group
3726 */
3727 spin_lock(&cur_trans->dirty_bgs_lock);
3728 list_del_init(&cache->dirty_list);
3729 spin_unlock(&cur_trans->dirty_bgs_lock);
3730
3731 should_put = 1;
3732
3733 cache_save_setup(cache, trans, path);
3734
3735 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3736 cache->io_ctl.inode = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003737 ret = btrfs_write_out_cache(fs_info, trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003738 cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003739 if (ret == 0 && cache->io_ctl.inode) {
3740 num_started++;
3741 should_put = 0;
3742
3743 /*
Nikolay Borisov45ae2c12018-02-08 18:25:18 +02003744 * The cache_write_mutex is protecting the
3745 * io_list, also refer to the definition of
3746 * btrfs_transaction::io_bgs for more details
Chris Mason1bbc6212015-04-06 12:46:08 -07003747 */
3748 list_add_tail(&cache->io_list, io);
3749 } else {
3750 /*
3751 * if we failed to write the cache, the
3752 * generation will be bad and life goes on
3753 */
3754 ret = 0;
3755 }
3756 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003757 if (!ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003758 ret = write_one_cache_group(trans, fs_info,
3759 path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003760 /*
3761 * Our block group might still be attached to the list
3762 * of new block groups in the transaction handle of some
3763 * other task (struct btrfs_trans_handle->new_bgs). This
3764 * means its block group item isn't yet in the extent
3765 * tree. If this happens ignore the error, as we will
3766 * try again later in the critical section of the
3767 * transaction commit.
3768 */
3769 if (ret == -ENOENT) {
3770 ret = 0;
3771 spin_lock(&cur_trans->dirty_bgs_lock);
3772 if (list_empty(&cache->dirty_list)) {
3773 list_add_tail(&cache->dirty_list,
3774 &cur_trans->dirty_bgs);
3775 btrfs_get_block_group(cache);
3776 }
3777 spin_unlock(&cur_trans->dirty_bgs_lock);
3778 } else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003779 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003780 }
3781 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003782
3783 /* if its not on the io list, we need to put the block group */
3784 if (should_put)
3785 btrfs_put_block_group(cache);
3786
3787 if (ret)
3788 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003789
3790 /*
3791 * Avoid blocking other tasks for too long. It might even save
3792 * us from writing caches for block groups that are going to be
3793 * removed.
3794 */
3795 mutex_unlock(&trans->transaction->cache_write_mutex);
3796 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003797 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003798 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003799
3800 /*
3801 * go through delayed refs for all the stuff we've just kicked off
3802 * and then loop back (just once)
3803 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003804 ret = btrfs_run_delayed_refs(trans, fs_info, 0);
Chris Mason1bbc6212015-04-06 12:46:08 -07003805 if (!ret && loops == 0) {
3806 loops++;
3807 spin_lock(&cur_trans->dirty_bgs_lock);
3808 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003809 /*
3810 * dirty_bgs_lock protects us from concurrent block group
3811 * deletes too (not just cache_write_mutex).
3812 */
3813 if (!list_empty(&dirty)) {
3814 spin_unlock(&cur_trans->dirty_bgs_lock);
3815 goto again;
3816 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003817 spin_unlock(&cur_trans->dirty_bgs_lock);
Liu Boc79a1752016-07-20 17:44:12 -07003818 } else if (ret < 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003819 btrfs_cleanup_dirty_bgs(cur_trans, fs_info);
Chris Mason1bbc6212015-04-06 12:46:08 -07003820 }
3821
3822 btrfs_free_path(path);
3823 return ret;
3824}
3825
Chris Mason96b51792007-10-15 16:15:19 -04003826int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003827 struct btrfs_fs_info *fs_info)
Chris Mason9078a3e2007-04-26 16:46:15 -04003828{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003829 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003830 struct btrfs_transaction *cur_trans = trans->transaction;
3831 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003832 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003833 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003834 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003835 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003836
3837 path = btrfs_alloc_path();
3838 if (!path)
3839 return -ENOMEM;
3840
Josef Bacikce93ec52014-11-17 15:45:48 -05003841 /*
Filipe Mananae44081e2015-12-18 03:02:48 +00003842 * Even though we are in the critical section of the transaction commit,
3843 * we can still have concurrent tasks adding elements to this
3844 * transaction's list of dirty block groups. These tasks correspond to
3845 * endio free space workers started when writeback finishes for a
3846 * space cache, which run inode.c:btrfs_finish_ordered_io(), and can
3847 * allocate new block groups as a result of COWing nodes of the root
3848 * tree when updating the free space inode. The writeback for the space
3849 * caches is triggered by an earlier call to
3850 * btrfs_start_dirty_block_groups() and iterations of the following
3851 * loop.
3852 * Also we want to do the cache_save_setup first and then run the
Josef Bacikce93ec52014-11-17 15:45:48 -05003853 * delayed refs to make sure we have the best chance at doing this all
3854 * in one shot.
3855 */
Filipe Mananae44081e2015-12-18 03:02:48 +00003856 spin_lock(&cur_trans->dirty_bgs_lock);
Josef Bacikce93ec52014-11-17 15:45:48 -05003857 while (!list_empty(&cur_trans->dirty_bgs)) {
3858 cache = list_first_entry(&cur_trans->dirty_bgs,
3859 struct btrfs_block_group_cache,
3860 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003861
3862 /*
3863 * this can happen if cache_save_setup re-dirties a block
3864 * group that is already under IO. Just wait for it to
3865 * finish and then do it all again
3866 */
3867 if (!list_empty(&cache->io_list)) {
Filipe Mananae44081e2015-12-18 03:02:48 +00003868 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003869 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003870 btrfs_wait_cache_io(trans, cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003871 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003872 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003873 }
3874
Chris Mason1bbc6212015-04-06 12:46:08 -07003875 /*
3876 * don't remove from the dirty list until after we've waited
3877 * on any pending IO
3878 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003879 list_del_init(&cache->dirty_list);
Filipe Mananae44081e2015-12-18 03:02:48 +00003880 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003881 should_put = 1;
3882
Chris Mason1bbc6212015-04-06 12:46:08 -07003883 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003884
Josef Bacikce93ec52014-11-17 15:45:48 -05003885 if (!ret)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003886 ret = btrfs_run_delayed_refs(trans, fs_info,
3887 (unsigned long) -1);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003888
3889 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3890 cache->io_ctl.inode = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003891 ret = btrfs_write_out_cache(fs_info, trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003892 cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003893 if (ret == 0 && cache->io_ctl.inode) {
3894 num_started++;
3895 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003896 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003897 } else {
3898 /*
3899 * if we failed to write the cache, the
3900 * generation will be bad and life goes on
3901 */
3902 ret = 0;
3903 }
3904 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003905 if (!ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003906 ret = write_one_cache_group(trans, fs_info,
3907 path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003908 /*
3909 * One of the free space endio workers might have
3910 * created a new block group while updating a free space
3911 * cache's inode (at inode.c:btrfs_finish_ordered_io())
3912 * and hasn't released its transaction handle yet, in
3913 * which case the new block group is still attached to
3914 * its transaction handle and its creation has not
3915 * finished yet (no block group item in the extent tree
3916 * yet, etc). If this is the case, wait for all free
3917 * space endio workers to finish and retry. This is a
3918 * a very rare case so no need for a more efficient and
3919 * complex approach.
3920 */
3921 if (ret == -ENOENT) {
3922 wait_event(cur_trans->writer_wait,
3923 atomic_read(&cur_trans->num_writers) == 1);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003924 ret = write_one_cache_group(trans, fs_info,
3925 path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003926 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003927 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003928 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003929 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003930
3931 /* if its not on the io list, we need to put the block group */
3932 if (should_put)
3933 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003934 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003935 }
Filipe Mananae44081e2015-12-18 03:02:48 +00003936 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003937
Nikolay Borisov45ae2c12018-02-08 18:25:18 +02003938 /*
3939 * Refer to the definition of io_bgs member for details why it's safe
3940 * to use it without any locking
3941 */
Chris Mason1bbc6212015-04-06 12:46:08 -07003942 while (!list_empty(io)) {
3943 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003944 io_list);
3945 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003946 btrfs_wait_cache_io(trans, cache, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003947 btrfs_put_block_group(cache);
3948 }
3949
Chris Mason9078a3e2007-04-26 16:46:15 -04003950 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003951 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003952}
3953
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003954int btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr)
Yan Zhengd2fb3432008-12-11 16:30:39 -05003955{
3956 struct btrfs_block_group_cache *block_group;
3957 int readonly = 0;
3958
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003959 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003960 if (!block_group || block_group->ro)
3961 readonly = 1;
3962 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003963 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003964 return readonly;
3965}
3966
Filipe Mananaf78c4362016-05-09 13:15:41 +01003967bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3968{
3969 struct btrfs_block_group_cache *bg;
3970 bool ret = true;
3971
3972 bg = btrfs_lookup_block_group(fs_info, bytenr);
3973 if (!bg)
3974 return false;
3975
3976 spin_lock(&bg->lock);
3977 if (bg->ro)
3978 ret = false;
3979 else
3980 atomic_inc(&bg->nocow_writers);
3981 spin_unlock(&bg->lock);
3982
3983 /* no put on block group, done by btrfs_dec_nocow_writers */
3984 if (!ret)
3985 btrfs_put_block_group(bg);
3986
3987 return ret;
3988
3989}
3990
3991void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3992{
3993 struct btrfs_block_group_cache *bg;
3994
3995 bg = btrfs_lookup_block_group(fs_info, bytenr);
3996 ASSERT(bg);
3997 if (atomic_dec_and_test(&bg->nocow_writers))
3998 wake_up_atomic_t(&bg->nocow_writers);
3999 /*
4000 * Once for our lookup and once for the lookup done by a previous call
4001 * to btrfs_inc_nocow_writers()
4002 */
4003 btrfs_put_block_group(bg);
4004 btrfs_put_block_group(bg);
4005}
4006
Filipe Mananaf78c4362016-05-09 13:15:41 +01004007void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg)
4008{
David Howells5e4def22017-11-02 15:27:44 +00004009 wait_on_atomic_t(&bg->nocow_writers, atomic_t_wait,
Filipe Mananaf78c4362016-05-09 13:15:41 +01004010 TASK_UNINTERRUPTIBLE);
4011}
4012
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04004013static const char *alloc_name(u64 flags)
4014{
4015 switch (flags) {
4016 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
4017 return "mixed";
4018 case BTRFS_BLOCK_GROUP_METADATA:
4019 return "metadata";
4020 case BTRFS_BLOCK_GROUP_DATA:
4021 return "data";
4022 case BTRFS_BLOCK_GROUP_SYSTEM:
4023 return "system";
4024 default:
4025 WARN_ON(1);
4026 return "invalid-combination";
4027 };
4028}
4029
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03004030static int create_space_info(struct btrfs_fs_info *info, u64 flags,
4031 struct btrfs_space_info **new)
4032{
4033
4034 struct btrfs_space_info *space_info;
4035 int i;
4036 int ret;
4037
4038 space_info = kzalloc(sizeof(*space_info), GFP_NOFS);
4039 if (!space_info)
4040 return -ENOMEM;
4041
4042 ret = percpu_counter_init(&space_info->total_bytes_pinned, 0,
4043 GFP_KERNEL);
4044 if (ret) {
4045 kfree(space_info);
4046 return ret;
4047 }
4048
4049 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
4050 INIT_LIST_HEAD(&space_info->block_groups[i]);
4051 init_rwsem(&space_info->groups_sem);
4052 spin_lock_init(&space_info->lock);
4053 space_info->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
4054 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
4055 init_waitqueue_head(&space_info->wait);
4056 INIT_LIST_HEAD(&space_info->ro_bgs);
4057 INIT_LIST_HEAD(&space_info->tickets);
4058 INIT_LIST_HEAD(&space_info->priority_tickets);
4059
4060 ret = kobject_init_and_add(&space_info->kobj, &space_info_ktype,
4061 info->space_info_kobj, "%s",
4062 alloc_name(space_info->flags));
4063 if (ret) {
4064 percpu_counter_destroy(&space_info->total_bytes_pinned);
4065 kfree(space_info);
4066 return ret;
4067 }
4068
4069 *new = space_info;
4070 list_add_rcu(&space_info->list, &info->space_info);
4071 if (flags & BTRFS_BLOCK_GROUP_DATA)
4072 info->data_sinfo = space_info;
4073
4074 return ret;
4075}
4076
Nikolay Borisovd2006e6d2017-05-22 09:35:50 +03004077static void update_space_info(struct btrfs_fs_info *info, u64 flags,
Chris Mason593060d2008-03-25 16:50:33 -04004078 u64 total_bytes, u64 bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -04004079 u64 bytes_readonly,
Chris Mason593060d2008-03-25 16:50:33 -04004080 struct btrfs_space_info **space_info)
4081{
4082 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004083 int factor;
4084
4085 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
4086 BTRFS_BLOCK_GROUP_RAID10))
4087 factor = 2;
4088 else
4089 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04004090
4091 found = __find_space_info(info, flags);
Nikolay Borisovd2006e6d2017-05-22 09:35:50 +03004092 ASSERT(found);
4093 spin_lock(&found->lock);
4094 found->total_bytes += total_bytes;
4095 found->disk_total += total_bytes * factor;
4096 found->bytes_used += bytes_used;
4097 found->disk_used += bytes_used * factor;
4098 found->bytes_readonly += bytes_readonly;
4099 if (total_bytes > 0)
4100 found->full = 0;
4101 space_info_add_new_bytes(info, found, total_bytes -
4102 bytes_used - bytes_readonly);
4103 spin_unlock(&found->lock);
4104 *space_info = found;
Chris Mason593060d2008-03-25 16:50:33 -04004105}
4106
Chris Mason8790d502008-04-03 16:29:03 -04004107static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
4108{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03004109 u64 extra_flags = chunk_to_extended(flags) &
4110 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004111
Miao Xiede98ced2013-01-29 10:13:12 +00004112 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004113 if (flags & BTRFS_BLOCK_GROUP_DATA)
4114 fs_info->avail_data_alloc_bits |= extra_flags;
4115 if (flags & BTRFS_BLOCK_GROUP_METADATA)
4116 fs_info->avail_metadata_alloc_bits |= extra_flags;
4117 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
4118 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004119 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04004120}
Chris Mason593060d2008-03-25 16:50:33 -04004121
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004122/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004123 * returns target flags in extended format or 0 if restripe for this
4124 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04004125 *
4126 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004127 */
4128static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
4129{
4130 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4131 u64 target = 0;
4132
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004133 if (!bctl)
4134 return 0;
4135
4136 if (flags & BTRFS_BLOCK_GROUP_DATA &&
4137 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4138 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
4139 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
4140 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4141 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
4142 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
4143 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4144 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
4145 }
4146
4147 return target;
4148}
4149
4150/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004151 * @flags: available profiles in extended format (see ctree.h)
4152 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004153 * Returns reduced profile in chunk format. If profile changing is in
4154 * progress (either running or paused) picks the target profile (if it's
4155 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004156 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004157static u64 btrfs_reduce_alloc_profile(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04004158{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004159 u64 num_devices = fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004160 u64 target;
Zhao Lei9c170b22015-09-15 21:08:08 +08004161 u64 raid_type;
4162 u64 allowed = 0;
Chris Masona061fc82008-05-07 11:43:44 -04004163
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004164 /*
4165 * see if restripe for this chunk_type is in progress, if so
4166 * try to reduce to the target profile
4167 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004168 spin_lock(&fs_info->balance_lock);
4169 target = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004170 if (target) {
4171 /* pick target profile only if it's already available */
4172 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004173 spin_unlock(&fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004174 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004175 }
4176 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004177 spin_unlock(&fs_info->balance_lock);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004178
David Woodhouse53b381b2013-01-29 18:40:14 -05004179 /* First, mask out the RAID levels which aren't possible */
Zhao Lei9c170b22015-09-15 21:08:08 +08004180 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
4181 if (num_devices >= btrfs_raid_array[raid_type].devs_min)
4182 allowed |= btrfs_raid_group[raid_type];
4183 }
4184 allowed &= flags;
Chris Masona061fc82008-05-07 11:43:44 -04004185
Zhao Lei9c170b22015-09-15 21:08:08 +08004186 if (allowed & BTRFS_BLOCK_GROUP_RAID6)
4187 allowed = BTRFS_BLOCK_GROUP_RAID6;
4188 else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
4189 allowed = BTRFS_BLOCK_GROUP_RAID5;
4190 else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
4191 allowed = BTRFS_BLOCK_GROUP_RAID10;
4192 else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
4193 allowed = BTRFS_BLOCK_GROUP_RAID1;
4194 else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
4195 allowed = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04004196
Zhao Lei9c170b22015-09-15 21:08:08 +08004197 flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
Chris Masonec44a352008-04-28 15:29:52 -04004198
Zhao Lei9c170b22015-09-15 21:08:08 +08004199 return extended_to_chunk(flags | allowed);
Chris Masonec44a352008-04-28 15:29:52 -04004200}
4201
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004202static u64 get_alloc_profile(struct btrfs_fs_info *fs_info, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05004203{
Miao Xiede98ced2013-01-29 10:13:12 +00004204 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004205 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004206
4207 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004208 flags = orig_flags;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004209 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00004210
4211 if (flags & BTRFS_BLOCK_GROUP_DATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004212 flags |= fs_info->avail_data_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004213 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004214 flags |= fs_info->avail_system_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004215 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004216 flags |= fs_info->avail_metadata_alloc_bits;
4217 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02004218
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004219 return btrfs_reduce_alloc_profile(fs_info, flags);
Yan, Zhengb742bb82010-05-16 10:46:24 -04004220}
Josef Bacik6a632092009-02-20 11:00:09 -05004221
Jeff Mahoney1b868262017-05-17 11:38:35 -04004222static u64 get_alloc_profile_by_root(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04004223{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004224 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004225 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05004226 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004227
Yan, Zhengb742bb82010-05-16 10:46:24 -04004228 if (data)
4229 flags = BTRFS_BLOCK_GROUP_DATA;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004230 else if (root == fs_info->chunk_root)
Yan, Zhengb742bb82010-05-16 10:46:24 -04004231 flags = BTRFS_BLOCK_GROUP_SYSTEM;
4232 else
4233 flags = BTRFS_BLOCK_GROUP_METADATA;
4234
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004235 ret = get_alloc_profile(fs_info, flags);
David Woodhouse53b381b2013-01-29 18:40:14 -05004236 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004237}
4238
Jeff Mahoney1b868262017-05-17 11:38:35 -04004239u64 btrfs_data_alloc_profile(struct btrfs_fs_info *fs_info)
4240{
4241 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_DATA);
4242}
4243
4244u64 btrfs_metadata_alloc_profile(struct btrfs_fs_info *fs_info)
4245{
4246 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4247}
4248
4249u64 btrfs_system_alloc_profile(struct btrfs_fs_info *fs_info)
4250{
4251 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4252}
4253
Liu Bo41361352017-02-13 15:42:21 -08004254static u64 btrfs_space_info_used(struct btrfs_space_info *s_info,
4255 bool may_use_included)
4256{
4257 ASSERT(s_info);
4258 return s_info->bytes_used + s_info->bytes_reserved +
4259 s_info->bytes_pinned + s_info->bytes_readonly +
4260 (may_use_included ? s_info->bytes_may_use : 0);
4261}
4262
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004263int btrfs_alloc_data_chunk_ondemand(struct btrfs_inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05004264{
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004265 struct btrfs_root *root = inode->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004266 struct btrfs_fs_info *fs_info = root->fs_info;
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004267 struct btrfs_space_info *data_sinfo = fs_info->data_sinfo;
Josef Bacikab6e24102010-03-19 14:38:13 +00004268 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08004269 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08004270 int need_commit = 2;
4271 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05004272
4273 /* make sure bytes are sectorsize aligned */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004274 bytes = ALIGN(bytes, fs_info->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05004275
Miao Xie9dced182013-10-25 17:33:36 +08004276 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004277 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08004278 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04004279 }
4280
Josef Bacik6a632092009-02-20 11:00:09 -05004281again:
4282 /* make sure we have enough space to handle the data first */
4283 spin_lock(&data_sinfo->lock);
Liu Bo41361352017-02-13 15:42:21 -08004284 used = btrfs_space_info_used(data_sinfo, true);
Josef Bacikab6e24102010-03-19 14:38:13 +00004285
4286 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004287 struct btrfs_trans_handle *trans;
4288
Josef Bacik6a632092009-02-20 11:00:09 -05004289 /*
4290 * if we don't have enough free bytes in this space then we need
4291 * to alloc a new chunk.
4292 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08004293 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05004294 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05004295
Chris Mason0e4f8f82011-04-15 16:05:44 -04004296 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05004297 spin_unlock(&data_sinfo->lock);
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004298
Jeff Mahoney1b868262017-05-17 11:38:35 -04004299 alloc_target = btrfs_data_alloc_profile(fs_info);
Miao Xie9dced182013-10-25 17:33:36 +08004300 /*
4301 * It is ugly that we don't call nolock join
4302 * transaction for the free space inode case here.
4303 * But it is safe because we only do the data space
4304 * reservation for the free space cache in the
4305 * transaction context, the common join transaction
4306 * just increase the counter of the current transaction
4307 * handler, doesn't try to acquire the trans_lock of
4308 * the fs.
4309 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004310 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004311 if (IS_ERR(trans))
4312 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05004313
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004314 ret = do_chunk_alloc(trans, fs_info, alloc_target,
Chris Mason0e4f8f82011-04-15 16:05:44 -04004315 CHUNK_ALLOC_NO_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004316 btrfs_end_transaction(trans);
Miao Xied52a5b52011-01-05 10:07:18 +00004317 if (ret < 0) {
4318 if (ret != -ENOSPC)
4319 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08004320 else {
4321 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00004322 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08004323 }
Miao Xied52a5b52011-01-05 10:07:18 +00004324 }
Chris Mason33b4d472009-09-22 14:45:50 -04004325
Josef Bacik6a632092009-02-20 11:00:09 -05004326 goto again;
4327 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004328
4329 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04004330 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08004331 * allocation, and no removed chunk in current transaction,
4332 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004333 */
Zhao Leic99f1b02015-03-02 19:32:20 +08004334 have_pinned_space = percpu_counter_compare(
4335 &data_sinfo->total_bytes_pinned,
4336 used + bytes - data_sinfo->total_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05004337 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004338
4339 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00004340commit_trans:
Zhao Leic99f1b02015-03-02 19:32:20 +08004341 if (need_commit &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004342 !atomic_read(&fs_info->open_ioctl_trans)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004343 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04004344
Zhao Leie1746e82015-12-01 18:39:40 +08004345 if (need_commit > 0) {
4346 btrfs_start_delalloc_roots(fs_info, 0, -1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004347 btrfs_wait_ordered_roots(fs_info, U64_MAX, 0,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004348 (u64)-1);
Zhao Leie1746e82015-12-01 18:39:40 +08004349 }
Zhao Lei9a4e7272015-04-09 12:34:43 +08004350
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004351 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004352 if (IS_ERR(trans))
4353 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08004354 if (have_pinned_space >= 0 ||
Josef Bacik3204d332015-09-24 10:46:10 -04004355 test_bit(BTRFS_TRANS_HAVE_FREE_BGS,
4356 &trans->transaction->flags) ||
Zhao Leic99f1b02015-03-02 19:32:20 +08004357 need_commit > 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004358 ret = btrfs_commit_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004359 if (ret)
4360 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08004361 /*
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004362 * The cleaner kthread might still be doing iput
4363 * operations. Wait for it to finish so that
4364 * more space is released.
Zhao Leid7c15172015-02-26 10:49:20 +08004365 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004366 mutex_lock(&fs_info->cleaner_delayed_iput_mutex);
4367 mutex_unlock(&fs_info->cleaner_delayed_iput_mutex);
Zhao Lei94b947b2015-02-14 13:23:45 +08004368 goto again;
4369 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004370 btrfs_end_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004371 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004372 }
4373
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004374 trace_btrfs_space_reservation(fs_info,
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004375 "space_info:enospc",
4376 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004377 return -ENOSPC;
4378 }
4379 data_sinfo->bytes_may_use += bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004380 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004381 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004382 spin_unlock(&data_sinfo->lock);
4383
Dongsheng Yang237c0e92014-12-29 06:23:05 -05004384 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004385}
4386
Qu Wenruo364ecf32017-02-27 15:10:38 +08004387int btrfs_check_data_free_space(struct inode *inode,
4388 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004389{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004390 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004391 int ret;
4392
4393 /* align the range */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004394 len = round_up(start + len, fs_info->sectorsize) -
4395 round_down(start, fs_info->sectorsize);
4396 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004397
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004398 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode), len);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004399 if (ret < 0)
4400 return ret;
4401
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004402 /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */
Qu Wenruo364ecf32017-02-27 15:10:38 +08004403 ret = btrfs_qgroup_reserve_data(inode, reserved, start, len);
Qu Wenruo7bc329c2017-02-27 15:10:36 +08004404 if (ret < 0)
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004405 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruo364ecf32017-02-27 15:10:38 +08004406 else
4407 ret = 0;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004408 return ret;
4409}
4410
4411/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004412 * Called if we need to clear a data reservation for this inode
4413 * Normally in a error case.
4414 *
Qu Wenruo51773be2015-10-08 18:19:37 +08004415 * This one will *NOT* use accurate qgroup reserved space API, just for case
4416 * which we can't sleep and is sure it won't affect qgroup reserved space.
4417 * Like clear_bit_hook().
Qu Wenruo4ceff072015-09-08 17:22:42 +08004418 */
Qu Wenruo51773be2015-10-08 18:19:37 +08004419void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start,
4420 u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004421{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004422 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004423 struct btrfs_space_info *data_sinfo;
4424
4425 /* Make sure the range is aligned to sectorsize */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004426 len = round_up(start + len, fs_info->sectorsize) -
4427 round_down(start, fs_info->sectorsize);
4428 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004429
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004430 data_sinfo = fs_info->data_sinfo;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004431 spin_lock(&data_sinfo->lock);
4432 if (WARN_ON(data_sinfo->bytes_may_use < len))
4433 data_sinfo->bytes_may_use = 0;
4434 else
4435 data_sinfo->bytes_may_use -= len;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004436 trace_btrfs_space_reservation(fs_info, "space_info",
Qu Wenruo4ceff072015-09-08 17:22:42 +08004437 data_sinfo->flags, len, 0);
4438 spin_unlock(&data_sinfo->lock);
4439}
4440
Qu Wenruo51773be2015-10-08 18:19:37 +08004441/*
4442 * Called if we need to clear a data reservation for this inode
4443 * Normally in a error case.
4444 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04004445 * This one will handle the per-inode data rsv map for accurate reserved
Qu Wenruo51773be2015-10-08 18:19:37 +08004446 * space framework.
4447 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08004448void btrfs_free_reserved_data_space(struct inode *inode,
4449 struct extent_changeset *reserved, u64 start, u64 len)
Qu Wenruo51773be2015-10-08 18:19:37 +08004450{
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004451 struct btrfs_root *root = BTRFS_I(inode)->root;
4452
4453 /* Make sure the range is aligned to sectorsize */
Jeff Mahoneyda170662016-06-15 09:22:56 -04004454 len = round_up(start + len, root->fs_info->sectorsize) -
4455 round_down(start, root->fs_info->sectorsize);
4456 start = round_down(start, root->fs_info->sectorsize);
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004457
Qu Wenruo51773be2015-10-08 18:19:37 +08004458 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruobc42bda2017-02-27 15:10:39 +08004459 btrfs_qgroup_free_data(inode, reserved, start, len);
Qu Wenruo51773be2015-10-08 18:19:37 +08004460}
4461
Josef Bacik97e728d2009-04-21 17:40:57 -04004462static void force_metadata_allocation(struct btrfs_fs_info *info)
4463{
4464 struct list_head *head = &info->space_info;
4465 struct btrfs_space_info *found;
4466
4467 rcu_read_lock();
4468 list_for_each_entry_rcu(found, head, list) {
4469 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004470 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04004471 }
4472 rcu_read_unlock();
4473}
4474
Miao Xie3c76cd82013-04-25 10:12:38 +00004475static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4476{
4477 return (global->size << 1);
4478}
4479
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004480static int should_alloc_chunk(struct btrfs_fs_info *fs_info,
Josef Bacik698d0082012-09-12 14:08:47 -04004481 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004482{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004483 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004484 u64 bytes_used = btrfs_space_info_used(sinfo, false);
Chris Masone5bc2452010-10-26 13:37:56 -04004485 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004486
Chris Mason0e4f8f82011-04-15 16:05:44 -04004487 if (force == CHUNK_ALLOC_FORCE)
4488 return 1;
4489
4490 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04004491 * We need to take into account the global rsv because for all intents
4492 * and purposes it's used space. Don't worry about locking the
4493 * global_rsv, it doesn't change except when the transaction commits.
4494 */
Josef Bacik54338b52012-08-14 16:20:52 -04004495 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004496 bytes_used += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04004497
4498 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04004499 * in limited mode, we want to have some free space up to
4500 * about 1% of the FS size.
4501 */
4502 if (force == CHUNK_ALLOC_LIMITED) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004503 thresh = btrfs_super_total_bytes(fs_info->super_copy);
Byongho Leeee221842015-12-15 01:42:10 +09004504 thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
Chris Mason0e4f8f82011-04-15 16:05:44 -04004505
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004506 if (sinfo->total_bytes - bytes_used < thresh)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004507 return 1;
4508 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004509
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004510 if (bytes_used + SZ_2M < div_factor(sinfo->total_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004511 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004512 return 1;
4513}
4514
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004515static u64 get_profile_num_devs(struct btrfs_fs_info *fs_info, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004516{
4517 u64 num_dev;
4518
David Woodhouse53b381b2013-01-29 18:40:14 -05004519 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
4520 BTRFS_BLOCK_GROUP_RAID0 |
4521 BTRFS_BLOCK_GROUP_RAID5 |
4522 BTRFS_BLOCK_GROUP_RAID6))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004523 num_dev = fs_info->fs_devices->rw_devices;
Liu Bo15d1ff82012-03-29 09:57:44 -04004524 else if (type & BTRFS_BLOCK_GROUP_RAID1)
4525 num_dev = 2;
4526 else
4527 num_dev = 1; /* DUP or single */
4528
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004529 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004530}
4531
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004532/*
4533 * If @is_allocation is true, reserve space in the system space info necessary
4534 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4535 * removing a chunk.
4536 */
4537void check_system_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004538 struct btrfs_fs_info *fs_info, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004539{
4540 struct btrfs_space_info *info;
4541 u64 left;
4542 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004543 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004544 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004545
4546 /*
4547 * Needed because we can end up allocating a system chunk and for an
4548 * atomic and race free space reservation in the chunk block reserve.
4549 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004550 ASSERT(mutex_is_locked(&fs_info->chunk_mutex));
Liu Bo15d1ff82012-03-29 09:57:44 -04004551
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004552 info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
Liu Bo15d1ff82012-03-29 09:57:44 -04004553 spin_lock(&info->lock);
Liu Bo41361352017-02-13 15:42:21 -08004554 left = info->total_bytes - btrfs_space_info_used(info, true);
Liu Bo15d1ff82012-03-29 09:57:44 -04004555 spin_unlock(&info->lock);
4556
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004557 num_devs = get_profile_num_devs(fs_info, type);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004558
4559 /* num_devs device items to update and 1 chunk item to add or remove */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004560 thresh = btrfs_calc_trunc_metadata_size(fs_info, num_devs) +
4561 btrfs_calc_trans_metadata_size(fs_info, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004562
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004563 if (left < thresh && btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
4564 btrfs_info(fs_info, "left=%llu, need=%llu, flags=%llu",
4565 left, thresh, type);
4566 dump_space_info(fs_info, info, 0, 0);
Liu Bo15d1ff82012-03-29 09:57:44 -04004567 }
4568
4569 if (left < thresh) {
Jeff Mahoney1b868262017-05-17 11:38:35 -04004570 u64 flags = btrfs_system_alloc_profile(fs_info);
Liu Bo15d1ff82012-03-29 09:57:44 -04004571
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004572 /*
4573 * Ignore failure to create system chunk. We might end up not
4574 * needing it, as we might not need to COW all nodes/leafs from
4575 * the paths we visit in the chunk tree (they were already COWed
4576 * or created in the current transaction for example).
4577 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004578 ret = btrfs_alloc_chunk(trans, fs_info, flags);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004579 }
4580
4581 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004582 ret = btrfs_block_rsv_add(fs_info->chunk_root,
4583 &fs_info->chunk_block_rsv,
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004584 thresh, BTRFS_RESERVE_NO_FLUSH);
4585 if (!ret)
4586 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004587 }
4588}
4589
Liu Bo28b737f2016-07-29 11:09:50 -07004590/*
4591 * If force is CHUNK_ALLOC_FORCE:
4592 * - return 1 if it successfully allocates a chunk,
4593 * - return errors including -ENOSPC otherwise.
4594 * If force is NOT CHUNK_ALLOC_FORCE:
4595 * - return 0 if it doesn't need to allocate a new chunk,
4596 * - return 1 if it successfully allocates a chunk,
4597 * - return errors including -ENOSPC otherwise.
4598 */
Chris Mason6324fbf2008-03-24 15:01:59 -04004599static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004600 struct btrfs_fs_info *fs_info, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004601{
4602 struct btrfs_space_info *space_info;
Josef Bacik6d741192011-04-11 20:20:11 -04004603 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05004604 int ret = 0;
4605
Josef Bacikc6b305a2012-12-18 09:16:16 -05004606 /* Don't re-enter if we're already allocating a chunk */
4607 if (trans->allocating_chunk)
4608 return -ENOSPC;
4609
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004610 space_info = __find_space_info(fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04004611 if (!space_info) {
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03004612 ret = create_space_info(fs_info, flags, &space_info);
4613 if (ret)
4614 return ret;
Chris Mason593060d2008-03-25 16:50:33 -04004615 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004616
Josef Bacik6d741192011-04-11 20:20:11 -04004617again:
Josef Bacik25179202008-10-29 14:49:05 -04004618 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05004619 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004620 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04004621 if (space_info->full) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004622 if (should_alloc_chunk(fs_info, space_info, force))
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004623 ret = -ENOSPC;
4624 else
4625 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04004626 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004627 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04004628 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004629
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004630 if (!should_alloc_chunk(fs_info, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04004631 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04004632 return 0;
4633 } else if (space_info->chunk_alloc) {
4634 wait_for_alloc = 1;
4635 } else {
4636 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04004637 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004638
Josef Bacik25179202008-10-29 14:49:05 -04004639 spin_unlock(&space_info->lock);
4640
Josef Bacik6d741192011-04-11 20:20:11 -04004641 mutex_lock(&fs_info->chunk_mutex);
4642
4643 /*
4644 * The chunk_mutex is held throughout the entirety of a chunk
4645 * allocation, so once we've acquired the chunk_mutex we know that the
4646 * other guy is done and we need to recheck and see if we should
4647 * allocate.
4648 */
4649 if (wait_for_alloc) {
4650 mutex_unlock(&fs_info->chunk_mutex);
4651 wait_for_alloc = 0;
4652 goto again;
4653 }
4654
Josef Bacikc6b305a2012-12-18 09:16:16 -05004655 trans->allocating_chunk = true;
4656
Josef Bacik97e728d2009-04-21 17:40:57 -04004657 /*
Josef Bacik67377732010-09-16 16:19:09 -04004658 * If we have mixed data/metadata chunks we want to make sure we keep
4659 * allocating mixed chunks instead of individual chunks.
4660 */
4661 if (btrfs_mixed_space_info(space_info))
4662 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4663
4664 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004665 * if we're doing a data chunk, go ahead and make sure that
4666 * we keep a reasonable number of metadata chunks allocated in the
4667 * FS as well.
4668 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004669 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004670 fs_info->data_chunk_allocations++;
4671 if (!(fs_info->data_chunk_allocations %
4672 fs_info->metadata_ratio))
4673 force_metadata_allocation(fs_info);
4674 }
4675
Liu Bo15d1ff82012-03-29 09:57:44 -04004676 /*
4677 * Check if we have enough space in SYSTEM chunk because we may need
4678 * to update devices.
4679 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004680 check_system_chunk(trans, fs_info, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004681
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004682 ret = btrfs_alloc_chunk(trans, fs_info, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004683 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004684
Josef Bacik9ed74f22009-09-11 16:12:44 -04004685 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004686 if (ret < 0 && ret != -ENOSPC)
4687 goto out;
Chris Masond3977122009-01-05 21:25:51 -05004688 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04004689 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04004690 else
4691 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04004692
Chris Mason0e4f8f82011-04-15 16:05:44 -04004693 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004694out:
Josef Bacik6d741192011-04-11 20:20:11 -04004695 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004696 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004697 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana00d80e32015-07-20 14:56:20 +01004698 /*
4699 * When we allocate a new chunk we reserve space in the chunk block
4700 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4701 * add new nodes/leafs to it if we end up needing to do it when
4702 * inserting the chunk item and updating device items as part of the
4703 * second phase of chunk allocation, performed by
4704 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4705 * large number of new block groups to create in our transaction
4706 * handle's new_bgs list to avoid exhausting the chunk block reserve
4707 * in extreme cases - like having a single transaction create many new
4708 * block groups when starting to write out the free space caches of all
4709 * the block groups that were made dirty during the lifetime of the
4710 * transaction.
4711 */
Filipe Mananad9a05402015-10-03 13:13:13 +01004712 if (trans->can_flush_pending_bgs &&
Byongho Leeee221842015-12-15 01:42:10 +09004713 trans->chunk_bytes_reserved >= (u64)SZ_2M) {
Nikolay Borisov6c686b32018-02-07 17:55:40 +02004714 btrfs_create_pending_block_groups(trans);
Filipe Manana00d80e32015-07-20 14:56:20 +01004715 btrfs_trans_release_chunk_metadata(trans);
4716 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004717 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004718}
4719
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004720static int can_overcommit(struct btrfs_fs_info *fs_info,
Josef Bacika80c8dc2012-09-06 16:59:33 -04004721 struct btrfs_space_info *space_info, u64 bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004722 enum btrfs_reserve_flush_enum flush,
4723 bool system_chunk)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004724{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004725 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04004726 u64 profile;
Miao Xie3c76cd82013-04-25 10:12:38 +00004727 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004728 u64 avail;
4729 u64 used;
4730
Josef Bacik957780e2016-05-17 13:30:55 -04004731 /* Don't overcommit when in mixed mode. */
4732 if (space_info->flags & BTRFS_BLOCK_GROUP_DATA)
4733 return 0;
4734
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004735 if (system_chunk)
4736 profile = btrfs_system_alloc_profile(fs_info);
4737 else
4738 profile = btrfs_metadata_alloc_profile(fs_info);
4739
Liu Bo41361352017-02-13 15:42:21 -08004740 used = btrfs_space_info_used(space_info, false);
Josef Bacik96f1bb52013-01-30 17:02:51 -05004741
Josef Bacik96f1bb52013-01-30 17:02:51 -05004742 /*
4743 * We only want to allow over committing if we have lots of actual space
4744 * free, but if we don't have enough space to handle the global reserve
4745 * space then we could end up having a real enospc problem when trying
4746 * to allocate a chunk or some other such important allocation.
4747 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004748 spin_lock(&global_rsv->lock);
4749 space_size = calc_global_rsv_need_space(global_rsv);
4750 spin_unlock(&global_rsv->lock);
4751 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004752 return 0;
4753
4754 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004755
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004756 avail = atomic64_read(&fs_info->free_chunk_space);
Josef Bacika80c8dc2012-09-06 16:59:33 -04004757
4758 /*
4759 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05004760 * space is actually useable. For raid56, the space info used
4761 * doesn't include the parity drive, so we don't have to
4762 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04004763 */
4764 if (profile & (BTRFS_BLOCK_GROUP_DUP |
4765 BTRFS_BLOCK_GROUP_RAID1 |
4766 BTRFS_BLOCK_GROUP_RAID10))
4767 avail >>= 1;
4768
4769 /*
Miao Xie561c2942012-10-16 11:32:18 +00004770 * If we aren't flushing all things, let us overcommit up to
4771 * 1/2th of the space. If we can flush, don't let us overcommit
4772 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04004773 */
Miao Xie08e007d2012-10-16 11:33:38 +00004774 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004775 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004776 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004777 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004778
Josef Bacik14575ae2013-09-17 10:48:00 -04004779 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004780 return 1;
4781 return 0;
4782}
4783
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004784static void btrfs_writeback_inodes_sb_nr(struct btrfs_fs_info *fs_info,
Miao Xie6c255e62014-03-06 13:55:01 +08004785 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004786{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004787 struct super_block *sb = fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004788
Josef Bacik925a6ef2013-06-20 12:31:27 -04004789 if (down_read_trylock(&sb->s_umount)) {
4790 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4791 up_read(&sb->s_umount);
4792 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004793 /*
4794 * We needn't worry the filesystem going from r/w to r/o though
4795 * we don't acquire ->s_umount mutex, because the filesystem
4796 * should guarantee the delalloc inodes list be empty after
4797 * the filesystem is readonly(all dirty pages are written to
4798 * the disk).
4799 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004800 btrfs_start_delalloc_roots(fs_info, 0, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004801 if (!current->journal_info)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004802 btrfs_wait_ordered_roots(fs_info, nr_items, 0, (u64)-1);
Miao Xieda633a42012-12-20 11:19:09 +00004803 }
4804}
4805
Chris Mason6374e57a2017-06-23 09:48:21 -07004806static inline u64 calc_reclaim_items_nr(struct btrfs_fs_info *fs_info,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004807 u64 to_reclaim)
Miao Xie18cd8ea2013-11-04 23:13:22 +08004808{
4809 u64 bytes;
Chris Mason6374e57a2017-06-23 09:48:21 -07004810 u64 nr;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004811
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004812 bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004813 nr = div64_u64(to_reclaim, bytes);
Miao Xie18cd8ea2013-11-04 23:13:22 +08004814 if (!nr)
4815 nr = 1;
4816 return nr;
4817}
4818
Byongho Leeee221842015-12-15 01:42:10 +09004819#define EXTENT_SIZE_PER_ITEM SZ_256K
Miao Xiec61a16a2013-11-04 23:13:23 +08004820
Yan, Zheng5da9d012010-05-16 10:46:25 -04004821/*
4822 * shrink metadata reservation for delalloc
4823 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004824static void shrink_delalloc(struct btrfs_fs_info *fs_info, u64 to_reclaim,
4825 u64 orig, bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004826{
Josef Bacik0019f102010-10-15 15:18:40 -04004827 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004828 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004829 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004830 u64 max_reclaim;
Chris Mason6374e57a2017-06-23 09:48:21 -07004831 u64 items;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004832 long time_left;
Miao Xied3ee29e32013-11-04 23:13:20 +08004833 unsigned long nr_pages;
4834 int loops;
Miao Xie08e007d2012-10-16 11:33:38 +00004835 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004836
Miao Xiec61a16a2013-11-04 23:13:23 +08004837 /* Calc the number of the pages we need flush for space reservation */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004838 items = calc_reclaim_items_nr(fs_info, to_reclaim);
Chris Mason6374e57a2017-06-23 09:48:21 -07004839 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004840
Josef Bacik663350a2011-11-03 22:54:25 -04004841 trans = (struct btrfs_trans_handle *)current->journal_info;
Josef Bacik69fe2d72017-10-19 14:15:57 -04004842 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Chris Masonbf9022e2010-10-26 13:40:45 -04004843
Miao Xie963d6782013-01-29 10:10:51 +00004844 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004845 &fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004846 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004847 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004848 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004849 if (wait_ordered)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004850 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004851 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004852 }
4853
Miao Xied3ee29e32013-11-04 23:13:20 +08004854 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004855 while (delalloc_bytes && loops < 3) {
4856 max_reclaim = min(delalloc_bytes, to_reclaim);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004857 nr_pages = max_reclaim >> PAGE_SHIFT;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004858 btrfs_writeback_inodes_sb_nr(fs_info, nr_pages, items);
Josef Bacikdea31f52012-09-06 16:47:00 -04004859 /*
4860 * We need to wait for the async pages to actually start before
4861 * we do anything.
4862 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004863 max_reclaim = atomic_read(&fs_info->async_delalloc_pages);
Miao Xie9f3a0742013-11-04 23:13:24 +08004864 if (!max_reclaim)
4865 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004866
Miao Xie9f3a0742013-11-04 23:13:24 +08004867 if (max_reclaim <= nr_pages)
4868 max_reclaim = 0;
4869 else
4870 max_reclaim -= nr_pages;
4871
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004872 wait_event(fs_info->async_submit_wait,
4873 atomic_read(&fs_info->async_delalloc_pages) <=
Miao Xie9f3a0742013-11-04 23:13:24 +08004874 (int)max_reclaim);
4875skip_async:
Miao Xie08e007d2012-10-16 11:33:38 +00004876 if (!trans)
4877 flush = BTRFS_RESERVE_FLUSH_ALL;
4878 else
4879 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004880 spin_lock(&space_info->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04004881 if (list_empty(&space_info->tickets) &&
4882 list_empty(&space_info->priority_tickets)) {
4883 spin_unlock(&space_info->lock);
4884 break;
4885 }
Josef Bacik0019f102010-10-15 15:18:40 -04004886 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004887
Chris Mason36e39c42011-03-12 07:08:42 -05004888 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004889 if (wait_ordered && !trans) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004890 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf104d042011-10-14 13:56:58 -04004891 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004892 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004893 if (time_left)
4894 break;
4895 }
Miao Xie963d6782013-01-29 10:10:51 +00004896 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004897 &fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004898 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004899}
4900
Josef Bacik996478c2017-08-22 16:00:39 -04004901struct reserve_ticket {
4902 u64 bytes;
4903 int error;
4904 struct list_head list;
4905 wait_queue_head_t wait;
4906};
4907
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004908/**
Josef Bacik663350a2011-11-03 22:54:25 -04004909 * maybe_commit_transaction - possibly commit the transaction if its ok to
4910 * @root - the root we're allocating for
4911 * @bytes - the number of bytes we want to reserve
4912 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004913 *
Josef Bacik663350a2011-11-03 22:54:25 -04004914 * This will check to make sure that committing the transaction will actually
4915 * get us somewhere and then commit the transaction if it does. Otherwise it
4916 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004917 */
Jeff Mahoney0c9ab342017-02-15 16:28:28 -05004918static int may_commit_transaction(struct btrfs_fs_info *fs_info,
Josef Bacik996478c2017-08-22 16:00:39 -04004919 struct btrfs_space_info *space_info)
Josef Bacik663350a2011-11-03 22:54:25 -04004920{
Josef Bacik996478c2017-08-22 16:00:39 -04004921 struct reserve_ticket *ticket = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004922 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_block_rsv;
Josef Bacik663350a2011-11-03 22:54:25 -04004923 struct btrfs_trans_handle *trans;
Josef Bacik996478c2017-08-22 16:00:39 -04004924 u64 bytes;
Josef Bacik663350a2011-11-03 22:54:25 -04004925
4926 trans = (struct btrfs_trans_handle *)current->journal_info;
4927 if (trans)
4928 return -EAGAIN;
4929
Josef Bacik996478c2017-08-22 16:00:39 -04004930 spin_lock(&space_info->lock);
4931 if (!list_empty(&space_info->priority_tickets))
4932 ticket = list_first_entry(&space_info->priority_tickets,
4933 struct reserve_ticket, list);
4934 else if (!list_empty(&space_info->tickets))
4935 ticket = list_first_entry(&space_info->tickets,
4936 struct reserve_ticket, list);
4937 bytes = (ticket) ? ticket->bytes : 0;
4938 spin_unlock(&space_info->lock);
4939
4940 if (!bytes)
4941 return 0;
Josef Bacik663350a2011-11-03 22:54:25 -04004942
4943 /* See if there is enough pinned space to make this reservation */
Josef Bacikb150a4f2013-06-19 15:00:04 -04004944 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Miao Xie0424c542014-03-06 13:54:59 +08004945 bytes) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004946 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004947
4948 /*
4949 * See if there is some space in the delayed insertion reservation for
4950 * this reservation.
4951 */
4952 if (space_info != delayed_rsv->space_info)
4953 return -ENOSPC;
4954
4955 spin_lock(&delayed_rsv->lock);
Josef Bacik996478c2017-08-22 16:00:39 -04004956 if (delayed_rsv->size > bytes)
4957 bytes = 0;
4958 else
4959 bytes -= delayed_rsv->size;
Nikolay Borisov057aac32017-11-07 11:22:54 +02004960 spin_unlock(&delayed_rsv->lock);
4961
Josef Bacikb150a4f2013-06-19 15:00:04 -04004962 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Josef Bacik996478c2017-08-22 16:00:39 -04004963 bytes) < 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004964 return -ENOSPC;
4965 }
Josef Bacik663350a2011-11-03 22:54:25 -04004966
4967commit:
Jeff Mahoneya9b33112017-05-17 11:38:34 -04004968 trans = btrfs_join_transaction(fs_info->extent_root);
Josef Bacik663350a2011-11-03 22:54:25 -04004969 if (IS_ERR(trans))
4970 return -ENOSPC;
4971
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004972 return btrfs_commit_transaction(trans);
Josef Bacik663350a2011-11-03 22:54:25 -04004973}
4974
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03004975/*
4976 * Try to flush some data based on policy set by @state. This is only advisory
4977 * and may fail for various reasons. The caller is supposed to examine the
4978 * state of @space_info to detect the outcome.
4979 */
4980static void flush_space(struct btrfs_fs_info *fs_info,
Josef Bacik96c3f432012-06-21 14:05:49 -04004981 struct btrfs_space_info *space_info, u64 num_bytes,
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004982 int state)
Josef Bacik96c3f432012-06-21 14:05:49 -04004983{
Jeff Mahoneya9b33112017-05-17 11:38:34 -04004984 struct btrfs_root *root = fs_info->extent_root;
Josef Bacik96c3f432012-06-21 14:05:49 -04004985 struct btrfs_trans_handle *trans;
4986 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004987 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004988
4989 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004990 case FLUSH_DELAYED_ITEMS_NR:
4991 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004992 if (state == FLUSH_DELAYED_ITEMS_NR)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004993 nr = calc_reclaim_items_nr(fs_info, num_bytes) * 2;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004994 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004995 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004996
Josef Bacik96c3f432012-06-21 14:05:49 -04004997 trans = btrfs_join_transaction(root);
4998 if (IS_ERR(trans)) {
4999 ret = PTR_ERR(trans);
5000 break;
5001 }
Nikolay Borisove5c304e62018-02-07 17:55:43 +02005002 ret = btrfs_run_delayed_items_nr(trans, nr);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005003 btrfs_end_transaction(trans);
Josef Bacik96c3f432012-06-21 14:05:49 -04005004 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04005005 case FLUSH_DELALLOC:
5006 case FLUSH_DELALLOC_WAIT:
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03005007 shrink_delalloc(fs_info, num_bytes * 2, num_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04005008 state == FLUSH_DELALLOC_WAIT);
5009 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04005010 case ALLOC_CHUNK:
5011 trans = btrfs_join_transaction(root);
5012 if (IS_ERR(trans)) {
5013 ret = PTR_ERR(trans);
5014 break;
5015 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005016 ret = do_chunk_alloc(trans, fs_info,
Jeff Mahoney1b868262017-05-17 11:38:35 -04005017 btrfs_metadata_alloc_profile(fs_info),
Josef Bacikea658ba2012-09-11 16:57:25 -04005018 CHUNK_ALLOC_NO_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005019 btrfs_end_transaction(trans);
Alex Lyakaseecba892015-12-06 12:32:31 +02005020 if (ret > 0 || ret == -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04005021 ret = 0;
5022 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04005023 case COMMIT_TRANS:
Josef Bacik996478c2017-08-22 16:00:39 -04005024 ret = may_commit_transaction(fs_info, space_info);
Josef Bacik96c3f432012-06-21 14:05:49 -04005025 break;
5026 default:
5027 ret = -ENOSPC;
5028 break;
5029 }
5030
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03005031 trace_btrfs_flush_space(fs_info, space_info->flags, num_bytes, state,
5032 ret);
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03005033 return;
Josef Bacik96c3f432012-06-21 14:05:49 -04005034}
Miao Xie21c7e752014-05-13 17:29:04 -07005035
5036static inline u64
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005037btrfs_calc_reclaim_metadata_size(struct btrfs_fs_info *fs_info,
5038 struct btrfs_space_info *space_info,
5039 bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07005040{
Josef Bacik957780e2016-05-17 13:30:55 -04005041 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07005042 u64 used;
5043 u64 expected;
Josef Bacik957780e2016-05-17 13:30:55 -04005044 u64 to_reclaim = 0;
Miao Xie21c7e752014-05-13 17:29:04 -07005045
Josef Bacik957780e2016-05-17 13:30:55 -04005046 list_for_each_entry(ticket, &space_info->tickets, list)
5047 to_reclaim += ticket->bytes;
5048 list_for_each_entry(ticket, &space_info->priority_tickets, list)
5049 to_reclaim += ticket->bytes;
5050 if (to_reclaim)
5051 return to_reclaim;
Miao Xie21c7e752014-05-13 17:29:04 -07005052
Wang Xiaoguange0af2482016-08-31 19:46:16 +08005053 to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005054 if (can_overcommit(fs_info, space_info, to_reclaim,
5055 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Wang Xiaoguange0af2482016-08-31 19:46:16 +08005056 return 0;
5057
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03005058 used = btrfs_space_info_used(space_info, true);
5059
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005060 if (can_overcommit(fs_info, space_info, SZ_1M,
5061 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Miao Xie21c7e752014-05-13 17:29:04 -07005062 expected = div_factor_fine(space_info->total_bytes, 95);
5063 else
5064 expected = div_factor_fine(space_info->total_bytes, 90);
5065
5066 if (used > expected)
5067 to_reclaim = used - expected;
5068 else
5069 to_reclaim = 0;
5070 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
5071 space_info->bytes_reserved);
Miao Xie21c7e752014-05-13 17:29:04 -07005072 return to_reclaim;
5073}
5074
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005075static inline int need_do_async_reclaim(struct btrfs_fs_info *fs_info,
5076 struct btrfs_space_info *space_info,
5077 u64 used, bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07005078{
Josef Bacik365c5312015-02-18 13:58:15 -08005079 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
5080
5081 /* If we're just plain full then async reclaim just slows us down. */
Josef Bacikbaee8792016-01-26 09:35:38 -05005082 if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh)
Josef Bacik365c5312015-02-18 13:58:15 -08005083 return 0;
5084
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005085 if (!btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5086 system_chunk))
Liu Bo25ce4592014-09-10 12:58:50 +08005087 return 0;
Liu Bo25ce4592014-09-10 12:58:50 +08005088
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005089 return (used >= thresh && !btrfs_fs_closing(fs_info) &&
5090 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
Miao Xie21c7e752014-05-13 17:29:04 -07005091}
5092
Josef Bacik957780e2016-05-17 13:30:55 -04005093static void wake_all_tickets(struct list_head *head)
Miao Xie21c7e752014-05-13 17:29:04 -07005094{
Josef Bacik957780e2016-05-17 13:30:55 -04005095 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07005096
Josef Bacik957780e2016-05-17 13:30:55 -04005097 while (!list_empty(head)) {
5098 ticket = list_first_entry(head, struct reserve_ticket, list);
5099 list_del_init(&ticket->list);
5100 ticket->error = -ENOSPC;
5101 wake_up(&ticket->wait);
Miao Xie21c7e752014-05-13 17:29:04 -07005102 }
Miao Xie21c7e752014-05-13 17:29:04 -07005103}
5104
Josef Bacik957780e2016-05-17 13:30:55 -04005105/*
5106 * This is for normal flushers, we can wait all goddamned day if we want to. We
5107 * will loop and continuously try to flush as long as we are making progress.
5108 * We count progress as clearing off tickets each time we have to loop.
5109 */
Miao Xie21c7e752014-05-13 17:29:04 -07005110static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
5111{
5112 struct btrfs_fs_info *fs_info;
5113 struct btrfs_space_info *space_info;
5114 u64 to_reclaim;
5115 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04005116 int commit_cycles = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005117 u64 last_tickets_id;
Miao Xie21c7e752014-05-13 17:29:04 -07005118
5119 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
5120 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
5121
Josef Bacik957780e2016-05-17 13:30:55 -04005122 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005123 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5124 false);
Josef Bacik957780e2016-05-17 13:30:55 -04005125 if (!to_reclaim) {
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 }
Wang Xiaoguangce129652016-09-02 10:58:46 +08005130 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005131 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005132
5133 flush_state = FLUSH_DELAYED_ITEMS_NR;
5134 do {
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03005135 flush_space(fs_info, space_info, to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04005136 spin_lock(&space_info->lock);
5137 if (list_empty(&space_info->tickets)) {
5138 space_info->flush = 0;
5139 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005140 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005141 }
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005142 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info,
5143 space_info,
5144 false);
Wang Xiaoguangce129652016-09-02 10:58:46 +08005145 if (last_tickets_id == space_info->tickets_id) {
Josef Bacik957780e2016-05-17 13:30:55 -04005146 flush_state++;
5147 } else {
Wang Xiaoguangce129652016-09-02 10:58:46 +08005148 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005149 flush_state = FLUSH_DELAYED_ITEMS_NR;
5150 if (commit_cycles)
5151 commit_cycles--;
5152 }
5153
5154 if (flush_state > COMMIT_TRANS) {
5155 commit_cycles++;
5156 if (commit_cycles > 2) {
5157 wake_all_tickets(&space_info->tickets);
5158 space_info->flush = 0;
5159 } else {
5160 flush_state = FLUSH_DELAYED_ITEMS_NR;
5161 }
5162 }
5163 spin_unlock(&space_info->lock);
5164 } while (flush_state <= COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07005165}
5166
5167void btrfs_init_async_reclaim_work(struct work_struct *work)
5168{
5169 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
5170}
5171
Josef Bacik957780e2016-05-17 13:30:55 -04005172static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info,
5173 struct btrfs_space_info *space_info,
5174 struct reserve_ticket *ticket)
5175{
5176 u64 to_reclaim;
5177 int flush_state = FLUSH_DELAYED_ITEMS_NR;
5178
5179 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005180 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5181 false);
Josef Bacik957780e2016-05-17 13:30:55 -04005182 if (!to_reclaim) {
5183 spin_unlock(&space_info->lock);
5184 return;
5185 }
5186 spin_unlock(&space_info->lock);
5187
5188 do {
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03005189 flush_space(fs_info, space_info, to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04005190 flush_state++;
5191 spin_lock(&space_info->lock);
5192 if (ticket->bytes == 0) {
5193 spin_unlock(&space_info->lock);
5194 return;
5195 }
5196 spin_unlock(&space_info->lock);
5197
5198 /*
5199 * Priority flushers can't wait on delalloc without
5200 * deadlocking.
5201 */
5202 if (flush_state == FLUSH_DELALLOC ||
5203 flush_state == FLUSH_DELALLOC_WAIT)
5204 flush_state = ALLOC_CHUNK;
5205 } while (flush_state < COMMIT_TRANS);
5206}
5207
5208static int wait_reserve_ticket(struct btrfs_fs_info *fs_info,
5209 struct btrfs_space_info *space_info,
5210 struct reserve_ticket *ticket, u64 orig_bytes)
5211
5212{
5213 DEFINE_WAIT(wait);
5214 int ret = 0;
5215
5216 spin_lock(&space_info->lock);
5217 while (ticket->bytes > 0 && ticket->error == 0) {
5218 ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE);
5219 if (ret) {
5220 ret = -EINTR;
5221 break;
5222 }
5223 spin_unlock(&space_info->lock);
5224
5225 schedule();
5226
5227 finish_wait(&ticket->wait, &wait);
5228 spin_lock(&space_info->lock);
5229 }
5230 if (!ret)
5231 ret = ticket->error;
5232 if (!list_empty(&ticket->list))
5233 list_del_init(&ticket->list);
5234 if (ticket->bytes && ticket->bytes < orig_bytes) {
5235 u64 num_bytes = orig_bytes - ticket->bytes;
5236 space_info->bytes_may_use -= num_bytes;
5237 trace_btrfs_space_reservation(fs_info, "space_info",
5238 space_info->flags, num_bytes, 0);
5239 }
5240 spin_unlock(&space_info->lock);
5241
5242 return ret;
5243}
5244
Josef Bacik663350a2011-11-03 22:54:25 -04005245/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005246 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5247 * @root - the root we're allocating for
Josef Bacik957780e2016-05-17 13:30:55 -04005248 * @space_info - the space info we want to allocate from
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005249 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04005250 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005251 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04005252 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005253 * with the block_rsv. If there is not enough space it will make an attempt to
5254 * flush out space to make room. It will do this by flushing delalloc if
5255 * possible or committing the transaction. If flush is 0 then no attempts to
5256 * regain reservations will be made and this will fail if there is not enough
5257 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005258 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005259static int __reserve_metadata_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik957780e2016-05-17 13:30:55 -04005260 struct btrfs_space_info *space_info,
5261 u64 orig_bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005262 enum btrfs_reserve_flush_enum flush,
5263 bool system_chunk)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005264{
Josef Bacik957780e2016-05-17 13:30:55 -04005265 struct reserve_ticket ticket;
Josef Bacik2bf64752011-09-26 17:12:22 -04005266 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005267 int ret = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005268
Josef Bacik957780e2016-05-17 13:30:55 -04005269 ASSERT(orig_bytes);
Josef Bacik8ca17f02016-05-27 13:24:13 -04005270 ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL);
5271
Yan, Zhengf0486c62010-05-16 10:46:25 -04005272 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04005273 ret = -ENOSPC;
Liu Bo41361352017-02-13 15:42:21 -08005274 used = btrfs_space_info_used(space_info, true);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005275
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005276 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005277 * If we have enough space then hooray, make our reservation and carry
5278 * on. If not see if we can overcommit, and if we can, hooray carry on.
5279 * If not things get more complicated.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005280 */
Josef Bacik957780e2016-05-17 13:30:55 -04005281 if (used + orig_bytes <= space_info->total_bytes) {
5282 space_info->bytes_may_use += orig_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005283 trace_btrfs_space_reservation(fs_info, "space_info",
5284 space_info->flags, orig_bytes, 1);
Josef Bacik957780e2016-05-17 13:30:55 -04005285 ret = 0;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005286 } else if (can_overcommit(fs_info, space_info, orig_bytes, flush,
5287 system_chunk)) {
Josef Bacik44734ed2012-09-28 16:04:19 -04005288 space_info->bytes_may_use += orig_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005289 trace_btrfs_space_reservation(fs_info, "space_info",
5290 space_info->flags, orig_bytes, 1);
Josef Bacik44734ed2012-09-28 16:04:19 -04005291 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04005292 }
5293
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005294 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005295 * If we couldn't make a reservation then setup our reservation ticket
5296 * and kick the async worker if it's not already running.
Miao Xie08e007d2012-10-16 11:33:38 +00005297 *
Josef Bacik957780e2016-05-17 13:30:55 -04005298 * If we are a priority flusher then we just need to add our ticket to
5299 * the list and we will do our own flushing further down.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005300 */
Josef Bacik72bcd992012-12-18 15:16:34 -05005301 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacik957780e2016-05-17 13:30:55 -04005302 ticket.bytes = orig_bytes;
5303 ticket.error = 0;
5304 init_waitqueue_head(&ticket.wait);
5305 if (flush == BTRFS_RESERVE_FLUSH_ALL) {
5306 list_add_tail(&ticket.list, &space_info->tickets);
5307 if (!space_info->flush) {
5308 space_info->flush = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005309 trace_btrfs_trigger_flush(fs_info,
Josef Bacikf376df22016-03-25 13:25:56 -04005310 space_info->flags,
5311 orig_bytes, flush,
5312 "enospc");
Josef Bacik957780e2016-05-17 13:30:55 -04005313 queue_work(system_unbound_wq,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005314 &fs_info->async_reclaim_work);
Josef Bacik957780e2016-05-17 13:30:55 -04005315 }
5316 } else {
5317 list_add_tail(&ticket.list,
5318 &space_info->priority_tickets);
5319 }
Miao Xie21c7e752014-05-13 17:29:04 -07005320 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
5321 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04005322 /*
5323 * We will do the space reservation dance during log replay,
5324 * which means we won't have fs_info->fs_root set, so don't do
5325 * the async reclaim as we will panic.
5326 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005327 if (!test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags) &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005328 need_do_async_reclaim(fs_info, space_info,
5329 used, system_chunk) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005330 !work_busy(&fs_info->async_reclaim_work)) {
5331 trace_btrfs_trigger_flush(fs_info, space_info->flags,
5332 orig_bytes, flush, "preempt");
Miao Xie21c7e752014-05-13 17:29:04 -07005333 queue_work(system_unbound_wq,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005334 &fs_info->async_reclaim_work);
Josef Bacikf376df22016-03-25 13:25:56 -04005335 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005336 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005337 spin_unlock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00005338 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik957780e2016-05-17 13:30:55 -04005339 return ret;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005340
Josef Bacik957780e2016-05-17 13:30:55 -04005341 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005342 return wait_reserve_ticket(fs_info, space_info, &ticket,
Josef Bacik957780e2016-05-17 13:30:55 -04005343 orig_bytes);
Miao Xie08e007d2012-10-16 11:33:38 +00005344
Josef Bacik957780e2016-05-17 13:30:55 -04005345 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005346 priority_reclaim_metadata_space(fs_info, space_info, &ticket);
Josef Bacik957780e2016-05-17 13:30:55 -04005347 spin_lock(&space_info->lock);
5348 if (ticket.bytes) {
5349 if (ticket.bytes < orig_bytes) {
5350 u64 num_bytes = orig_bytes - ticket.bytes;
5351 space_info->bytes_may_use -= num_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005352 trace_btrfs_space_reservation(fs_info, "space_info",
5353 space_info->flags,
5354 num_bytes, 0);
Miao Xie08e007d2012-10-16 11:33:38 +00005355
Josef Bacik957780e2016-05-17 13:30:55 -04005356 }
5357 list_del_init(&ticket.list);
5358 ret = -ENOSPC;
5359 }
5360 spin_unlock(&space_info->lock);
5361 ASSERT(list_empty(&ticket.list));
5362 return ret;
5363}
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005364
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005365/**
5366 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5367 * @root - the root we're allocating for
5368 * @block_rsv - the block_rsv we're allocating for
5369 * @orig_bytes - the number of bytes we want
5370 * @flush - whether or not we can flush to make our reservation
5371 *
Josef Bacik957780e2016-05-17 13:30:55 -04005372 * This will reserve orgi_bytes number of bytes from the space info associated
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005373 * with the block_rsv. If there is not enough space it will make an attempt to
5374 * flush out space to make room. It will do this by flushing delalloc if
5375 * possible or committing the transaction. If flush is 0 then no attempts to
5376 * regain reservations will be made and this will fail if there is not enough
5377 * space already.
5378 */
5379static int reserve_metadata_bytes(struct btrfs_root *root,
5380 struct btrfs_block_rsv *block_rsv,
5381 u64 orig_bytes,
5382 enum btrfs_reserve_flush_enum flush)
5383{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005384 struct btrfs_fs_info *fs_info = root->fs_info;
5385 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04005386 int ret;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005387 bool system_chunk = (root == fs_info->chunk_root);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005388
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005389 ret = __reserve_metadata_bytes(fs_info, block_rsv->space_info,
5390 orig_bytes, flush, system_chunk);
Josef Bacik5d803662013-02-07 16:06:02 -05005391 if (ret == -ENOSPC &&
5392 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
Josef Bacik5d803662013-02-07 16:06:02 -05005393 if (block_rsv != global_rsv &&
5394 !block_rsv_use_bytes(global_rsv, orig_bytes))
5395 ret = 0;
5396 }
Nikolay Borisov9a3daff2017-12-15 12:05:37 +02005397 if (ret == -ENOSPC) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005398 trace_btrfs_space_reservation(fs_info, "space_info:enospc",
Josef Bacik957780e2016-05-17 13:30:55 -04005399 block_rsv->space_info->flags,
5400 orig_bytes, 1);
Nikolay Borisov9a3daff2017-12-15 12:05:37 +02005401
5402 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG))
5403 dump_space_info(fs_info, block_rsv->space_info,
5404 orig_bytes, 0);
5405 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005406 return ret;
5407}
5408
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005409static struct btrfs_block_rsv *get_block_rsv(
5410 const struct btrfs_trans_handle *trans,
5411 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005412{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005413 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik4c13d752011-08-30 11:31:29 -04005414 struct btrfs_block_rsv *block_rsv = NULL;
5415
Alexandru Moisee9cf4392015-09-09 00:18:50 +00005416 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005417 (root == fs_info->csum_root && trans->adding_csums) ||
5418 (root == fs_info->uuid_root))
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02005419 block_rsv = trans->block_rsv;
5420
Josef Bacik4c13d752011-08-30 11:31:29 -04005421 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005422 block_rsv = root->block_rsv;
5423
5424 if (!block_rsv)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005425 block_rsv = &fs_info->empty_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005426
5427 return block_rsv;
5428}
5429
5430static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
5431 u64 num_bytes)
5432{
5433 int ret = -ENOSPC;
5434 spin_lock(&block_rsv->lock);
5435 if (block_rsv->reserved >= num_bytes) {
5436 block_rsv->reserved -= num_bytes;
5437 if (block_rsv->reserved < block_rsv->size)
5438 block_rsv->full = 0;
5439 ret = 0;
5440 }
5441 spin_unlock(&block_rsv->lock);
5442 return ret;
5443}
5444
5445static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
5446 u64 num_bytes, int update_size)
5447{
5448 spin_lock(&block_rsv->lock);
5449 block_rsv->reserved += num_bytes;
5450 if (update_size)
5451 block_rsv->size += num_bytes;
5452 else if (block_rsv->reserved >= block_rsv->size)
5453 block_rsv->full = 1;
5454 spin_unlock(&block_rsv->lock);
5455}
5456
Josef Bacikd52be812013-05-29 14:54:47 -04005457int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
5458 struct btrfs_block_rsv *dest, u64 num_bytes,
5459 int min_factor)
5460{
5461 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5462 u64 min_bytes;
5463
5464 if (global_rsv->space_info != dest->space_info)
5465 return -ENOSPC;
5466
5467 spin_lock(&global_rsv->lock);
5468 min_bytes = div_factor(global_rsv->size, min_factor);
5469 if (global_rsv->reserved < min_bytes + num_bytes) {
5470 spin_unlock(&global_rsv->lock);
5471 return -ENOSPC;
5472 }
5473 global_rsv->reserved -= num_bytes;
5474 if (global_rsv->reserved < global_rsv->size)
5475 global_rsv->full = 0;
5476 spin_unlock(&global_rsv->lock);
5477
5478 block_rsv_add_bytes(dest, num_bytes, 1);
5479 return 0;
5480}
5481
Josef Bacik957780e2016-05-17 13:30:55 -04005482/*
5483 * This is for space we already have accounted in space_info->bytes_may_use, so
5484 * basically when we're returning space from block_rsv's.
5485 */
5486static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
5487 struct btrfs_space_info *space_info,
5488 u64 num_bytes)
5489{
5490 struct reserve_ticket *ticket;
5491 struct list_head *head;
5492 u64 used;
5493 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH;
5494 bool check_overcommit = false;
5495
5496 spin_lock(&space_info->lock);
5497 head = &space_info->priority_tickets;
5498
5499 /*
5500 * If we are over our limit then we need to check and see if we can
5501 * overcommit, and if we can't then we just need to free up our space
5502 * and not satisfy any requests.
5503 */
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03005504 used = btrfs_space_info_used(space_info, true);
Josef Bacik957780e2016-05-17 13:30:55 -04005505 if (used - num_bytes >= space_info->total_bytes)
5506 check_overcommit = true;
5507again:
5508 while (!list_empty(head) && num_bytes) {
5509 ticket = list_first_entry(head, struct reserve_ticket,
5510 list);
5511 /*
5512 * We use 0 bytes because this space is already reserved, so
5513 * adding the ticket space would be a double count.
5514 */
5515 if (check_overcommit &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005516 !can_overcommit(fs_info, space_info, 0, flush, false))
Josef Bacik957780e2016-05-17 13:30:55 -04005517 break;
5518 if (num_bytes >= ticket->bytes) {
5519 list_del_init(&ticket->list);
5520 num_bytes -= ticket->bytes;
5521 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005522 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005523 wake_up(&ticket->wait);
5524 } else {
5525 ticket->bytes -= num_bytes;
5526 num_bytes = 0;
5527 }
5528 }
5529
5530 if (num_bytes && head == &space_info->priority_tickets) {
5531 head = &space_info->tickets;
5532 flush = BTRFS_RESERVE_FLUSH_ALL;
5533 goto again;
5534 }
5535 space_info->bytes_may_use -= num_bytes;
5536 trace_btrfs_space_reservation(fs_info, "space_info",
5537 space_info->flags, num_bytes, 0);
5538 spin_unlock(&space_info->lock);
5539}
5540
5541/*
5542 * This is for newly allocated space that isn't accounted in
5543 * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent
5544 * we use this helper.
5545 */
5546static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
5547 struct btrfs_space_info *space_info,
5548 u64 num_bytes)
5549{
5550 struct reserve_ticket *ticket;
5551 struct list_head *head = &space_info->priority_tickets;
5552
5553again:
5554 while (!list_empty(head) && num_bytes) {
5555 ticket = list_first_entry(head, struct reserve_ticket,
5556 list);
5557 if (num_bytes >= ticket->bytes) {
5558 trace_btrfs_space_reservation(fs_info, "space_info",
5559 space_info->flags,
5560 ticket->bytes, 1);
5561 list_del_init(&ticket->list);
5562 num_bytes -= ticket->bytes;
5563 space_info->bytes_may_use += ticket->bytes;
5564 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005565 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005566 wake_up(&ticket->wait);
5567 } else {
5568 trace_btrfs_space_reservation(fs_info, "space_info",
5569 space_info->flags,
5570 num_bytes, 1);
5571 space_info->bytes_may_use += num_bytes;
5572 ticket->bytes -= num_bytes;
5573 num_bytes = 0;
5574 }
5575 }
5576
5577 if (num_bytes && head == &space_info->priority_tickets) {
5578 head = &space_info->tickets;
5579 goto again;
5580 }
5581}
5582
Josef Bacik69fe2d72017-10-19 14:15:57 -04005583static u64 block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005584 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02005585 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005586{
5587 struct btrfs_space_info *space_info = block_rsv->space_info;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005588 u64 ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005589
5590 spin_lock(&block_rsv->lock);
5591 if (num_bytes == (u64)-1)
5592 num_bytes = block_rsv->size;
5593 block_rsv->size -= num_bytes;
5594 if (block_rsv->reserved >= block_rsv->size) {
5595 num_bytes = block_rsv->reserved - block_rsv->size;
5596 block_rsv->reserved = block_rsv->size;
5597 block_rsv->full = 1;
5598 } else {
5599 num_bytes = 0;
5600 }
5601 spin_unlock(&block_rsv->lock);
5602
Josef Bacik69fe2d72017-10-19 14:15:57 -04005603 ret = num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005604 if (num_bytes > 0) {
5605 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00005606 spin_lock(&dest->lock);
5607 if (!dest->full) {
5608 u64 bytes_to_add;
5609
5610 bytes_to_add = dest->size - dest->reserved;
5611 bytes_to_add = min(num_bytes, bytes_to_add);
5612 dest->reserved += bytes_to_add;
5613 if (dest->reserved >= dest->size)
5614 dest->full = 1;
5615 num_bytes -= bytes_to_add;
5616 }
5617 spin_unlock(&dest->lock);
5618 }
Josef Bacik957780e2016-05-17 13:30:55 -04005619 if (num_bytes)
5620 space_info_add_old_bytes(fs_info, space_info,
5621 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005622 }
Josef Bacik69fe2d72017-10-19 14:15:57 -04005623 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005624}
5625
Josef Bacik25d609f2016-03-25 13:25:48 -04005626int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src,
5627 struct btrfs_block_rsv *dst, u64 num_bytes,
5628 int update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005629{
5630 int ret;
5631
5632 ret = block_rsv_use_bytes(src, num_bytes);
5633 if (ret)
5634 return ret;
5635
Josef Bacik25d609f2016-03-25 13:25:48 -04005636 block_rsv_add_bytes(dst, num_bytes, update_size);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005637 return 0;
5638}
5639
Miao Xie66d8f3d2012-09-06 04:02:28 -06005640void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005641{
5642 memset(rsv, 0, sizeof(*rsv));
5643 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06005644 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005645}
5646
Josef Bacik69fe2d72017-10-19 14:15:57 -04005647void btrfs_init_metadata_block_rsv(struct btrfs_fs_info *fs_info,
5648 struct btrfs_block_rsv *rsv,
5649 unsigned short type)
5650{
5651 btrfs_init_block_rsv(rsv, type);
5652 rsv->space_info = __find_space_info(fs_info,
5653 BTRFS_BLOCK_GROUP_METADATA);
5654}
5655
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005656struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_fs_info *fs_info,
Miao Xie66d8f3d2012-09-06 04:02:28 -06005657 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005658{
5659 struct btrfs_block_rsv *block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005660
5661 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
5662 if (!block_rsv)
5663 return NULL;
5664
Josef Bacik69fe2d72017-10-19 14:15:57 -04005665 btrfs_init_metadata_block_rsv(fs_info, block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005666 return block_rsv;
5667}
5668
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005669void btrfs_free_block_rsv(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005670 struct btrfs_block_rsv *rsv)
5671{
Josef Bacik2aaa6652012-08-29 14:27:18 -04005672 if (!rsv)
5673 return;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005674 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Josef Bacikdabdb642011-08-08 12:50:18 -04005675 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005676}
5677
Chris Masoncdfb0802015-04-06 18:17:00 -07005678void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv)
5679{
5680 kfree(rsv);
5681}
5682
Miao Xie08e007d2012-10-16 11:33:38 +00005683int btrfs_block_rsv_add(struct btrfs_root *root,
5684 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
5685 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005686{
5687 int ret;
5688
5689 if (num_bytes == 0)
5690 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005691
Miao Xie61b520a2011-11-10 20:45:05 -05005692 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005693 if (!ret) {
5694 block_rsv_add_bytes(block_rsv, num_bytes, 1);
5695 return 0;
5696 }
5697
Yan, Zhengf0486c62010-05-16 10:46:25 -04005698 return ret;
5699}
5700
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005701int btrfs_block_rsv_check(struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005702{
5703 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005704 int ret = -ENOSPC;
5705
5706 if (!block_rsv)
5707 return 0;
5708
5709 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04005710 num_bytes = div_factor(block_rsv->size, min_factor);
5711 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005712 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005713 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005714
Josef Bacik36ba0222011-10-18 12:15:48 -04005715 return ret;
5716}
5717
Miao Xie08e007d2012-10-16 11:33:38 +00005718int btrfs_block_rsv_refill(struct btrfs_root *root,
5719 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5720 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04005721{
5722 u64 num_bytes = 0;
5723 int ret = -ENOSPC;
5724
5725 if (!block_rsv)
5726 return 0;
5727
5728 spin_lock(&block_rsv->lock);
5729 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005730 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005731 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005732 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005733 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005734 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005735
Yan, Zhengf0486c62010-05-16 10:46:25 -04005736 if (!ret)
5737 return 0;
5738
Miao Xieaa38a712011-11-18 17:43:00 +08005739 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005740 if (!ret) {
5741 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005742 return 0;
5743 }
5744
Josef Bacik13553e52011-08-08 13:33:21 -04005745 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005746}
5747
Josef Bacik69fe2d72017-10-19 14:15:57 -04005748/**
5749 * btrfs_inode_rsv_refill - refill the inode block rsv.
5750 * @inode - the inode we are refilling.
5751 * @flush - the flusing restriction.
5752 *
5753 * Essentially the same as btrfs_block_rsv_refill, except it uses the
5754 * block_rsv->size as the minimum size. We'll either refill the missing amount
5755 * or return if we already have enough space. This will also handle the resreve
5756 * tracepoint for the reserved amount.
5757 */
Qu Wenruo3f2dd7a2017-11-17 15:14:19 +08005758static int btrfs_inode_rsv_refill(struct btrfs_inode *inode,
5759 enum btrfs_reserve_flush_enum flush)
Josef Bacik69fe2d72017-10-19 14:15:57 -04005760{
5761 struct btrfs_root *root = inode->root;
5762 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
5763 u64 num_bytes = 0;
5764 int ret = -ENOSPC;
5765
5766 spin_lock(&block_rsv->lock);
5767 if (block_rsv->reserved < block_rsv->size)
5768 num_bytes = block_rsv->size - block_rsv->reserved;
5769 spin_unlock(&block_rsv->lock);
5770
5771 if (num_bytes == 0)
5772 return 0;
5773
5774 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
5775 if (!ret) {
5776 block_rsv_add_bytes(block_rsv, num_bytes, 0);
5777 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5778 btrfs_ino(inode), num_bytes, 1);
5779 }
5780 return ret;
5781}
5782
5783/**
5784 * btrfs_inode_rsv_release - release any excessive reservation.
5785 * @inode - the inode we need to release from.
5786 *
5787 * This is the same as btrfs_block_rsv_release, except that it handles the
5788 * tracepoint for the reservation.
5789 */
Nikolay Borisovd2560eb2018-01-11 15:46:44 +02005790static void btrfs_inode_rsv_release(struct btrfs_inode *inode)
Josef Bacik69fe2d72017-10-19 14:15:57 -04005791{
5792 struct btrfs_fs_info *fs_info = inode->root->fs_info;
5793 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5794 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
5795 u64 released = 0;
5796
5797 /*
5798 * Since we statically set the block_rsv->size we just want to say we
5799 * are releasing 0 bytes, and then we'll just get the reservation over
5800 * the size free'd.
5801 */
5802 released = block_rsv_release_bytes(fs_info, block_rsv, global_rsv, 0);
5803 if (released > 0)
5804 trace_btrfs_space_reservation(fs_info, "delalloc",
5805 btrfs_ino(inode), released, 0);
5806}
5807
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005808void btrfs_block_rsv_release(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005809 struct btrfs_block_rsv *block_rsv,
5810 u64 num_bytes)
5811{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005812 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5813
Liu Bo17504582013-12-29 21:44:50 +08005814 if (global_rsv == block_rsv ||
Yan, Zhengf0486c62010-05-16 10:46:25 -04005815 block_rsv->space_info != global_rsv->space_info)
5816 global_rsv = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005817 block_rsv_release_bytes(fs_info, block_rsv, global_rsv, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005818}
5819
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005820static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5821{
5822 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5823 struct btrfs_space_info *sinfo = block_rsv->space_info;
5824 u64 num_bytes;
5825
Josef Bacikae2e4722016-05-27 12:58:35 -04005826 /*
5827 * The global block rsv is based on the size of the extent tree, the
5828 * checksum tree and the root tree. If the fs is empty we want to set
5829 * it to a minimal amount for safety.
5830 */
5831 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) +
5832 btrfs_root_used(&fs_info->csum_root->root_item) +
5833 btrfs_root_used(&fs_info->tree_root->root_item);
5834 num_bytes = max_t(u64, num_bytes, SZ_16M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005835
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005836 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005837 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005838
Byongho Leeee221842015-12-15 01:42:10 +09005839 block_rsv->size = min_t(u64, num_bytes, SZ_512M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005840
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005841 if (block_rsv->reserved < block_rsv->size) {
Liu Bo41361352017-02-13 15:42:21 -08005842 num_bytes = btrfs_space_info_used(sinfo, true);
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005843 if (sinfo->total_bytes > num_bytes) {
5844 num_bytes = sinfo->total_bytes - num_bytes;
5845 num_bytes = min(num_bytes,
5846 block_rsv->size - block_rsv->reserved);
5847 block_rsv->reserved += num_bytes;
5848 sinfo->bytes_may_use += num_bytes;
5849 trace_btrfs_space_reservation(fs_info, "space_info",
5850 sinfo->flags, num_bytes,
5851 1);
5852 }
5853 } else if (block_rsv->reserved > block_rsv->size) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005854 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04005855 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005856 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005857 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005858 block_rsv->reserved = block_rsv->size;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005859 }
David Sterba182608c2011-05-05 13:13:16 +02005860
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005861 if (block_rsv->reserved == block_rsv->size)
5862 block_rsv->full = 1;
5863 else
5864 block_rsv->full = 0;
5865
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005866 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005867 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005868}
5869
Yan, Zhengf0486c62010-05-16 10:46:25 -04005870static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5871{
5872 struct btrfs_space_info *space_info;
5873
5874 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5875 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005876
5877 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005878 fs_info->global_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005879 fs_info->trans_block_rsv.space_info = space_info;
5880 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005881 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005882
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005883 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
5884 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
5885 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5886 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005887 if (fs_info->quota_root)
5888 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005889 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005890
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005891 update_global_block_rsv(fs_info);
5892}
5893
5894static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5895{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005896 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
5897 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005898 WARN_ON(fs_info->trans_block_rsv.size > 0);
5899 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5900 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5901 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04005902 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5903 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04005904}
5905
Yan, Zhenga22285a2010-05-16 10:48:46 -04005906
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005907/*
5908 * To be called after all the new block groups attached to the transaction
5909 * handle have been created (btrfs_create_pending_block_groups()).
5910 */
5911void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5912{
Jeff Mahoney64b63582016-06-20 17:23:41 -04005913 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005914
5915 if (!trans->chunk_bytes_reserved)
5916 return;
5917
5918 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5919
5920 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
5921 trans->chunk_bytes_reserved);
5922 trans->chunk_bytes_reserved = 0;
5923}
5924
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005925/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04005926int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
Nikolay Borisov8ed7a2a2017-02-20 13:50:39 +02005927 struct btrfs_inode *inode)
Yan, Zhengd68fc572010-05-16 10:49:58 -04005928{
Nikolay Borisov8ed7a2a2017-02-20 13:50:39 +02005929 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
5930 struct btrfs_root *root = inode->root;
Josef Bacik40acc3ee2016-05-27 13:01:08 -04005931 /*
5932 * We always use trans->block_rsv here as we will have reserved space
5933 * for our orphan when starting the transaction, using get_block_rsv()
5934 * here will sometimes make us choose the wrong block rsv as we could be
5935 * doing a reloc inode for a non refcounted root.
5936 */
5937 struct btrfs_block_rsv *src_rsv = trans->block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04005938 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
5939
5940 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04005941 * We need to hold space in order to delete our orphan item once we've
5942 * added it, so this takes the reservation so we can release it later
5943 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04005944 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005945 u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
5946
Nikolay Borisov8ed7a2a2017-02-20 13:50:39 +02005947 trace_btrfs_space_reservation(fs_info, "orphan", btrfs_ino(inode),
5948 num_bytes, 1);
Josef Bacik25d609f2016-03-25 13:25:48 -04005949 return btrfs_block_rsv_migrate(src_rsv, dst_rsv, num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005950}
5951
Nikolay Borisov703b3912017-02-20 13:50:40 +02005952void btrfs_orphan_release_metadata(struct btrfs_inode *inode)
Yan, Zhengd68fc572010-05-16 10:49:58 -04005953{
Nikolay Borisov703b3912017-02-20 13:50:40 +02005954 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
5955 struct btrfs_root *root = inode->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005956 u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
5957
Nikolay Borisov703b3912017-02-20 13:50:40 +02005958 trace_btrfs_space_reservation(fs_info, "orphan", btrfs_ino(inode),
5959 num_bytes, 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005960 btrfs_block_rsv_release(fs_info, root->orphan_block_rsv, num_bytes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005961}
5962
Miao Xied5c12072013-02-28 10:04:33 +00005963/*
5964 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
5965 * root: the root of the parent directory
5966 * rsv: block reservation
5967 * items: the number of items that we need do reservation
5968 * qgroup_reserved: used to return the reserved size in qgroup
5969 *
5970 * This function is used to reserve the space for snapshot/subvolume
5971 * creation and deletion. Those operations are different with the
5972 * common file/directory operations, they change two fs/file trees
5973 * and root tree, the number of items that the qgroup reserves is
5974 * different with the free space reservation. So we can not use
Nicholas D Steeves01327612016-05-19 21:18:45 -04005975 * the space reservation mechanism in start_transaction().
Miao Xied5c12072013-02-28 10:04:33 +00005976 */
5977int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
5978 struct btrfs_block_rsv *rsv,
5979 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005980 u64 *qgroup_reserved,
5981 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005982{
Miao Xied5c12072013-02-28 10:04:33 +00005983 u64 num_bytes;
5984 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005985 struct btrfs_fs_info *fs_info = root->fs_info;
5986 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005987
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005988 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
Miao Xied5c12072013-02-28 10:04:33 +00005989 /* One for parent inode, two for dir entries */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005990 num_bytes = 3 * fs_info->nodesize;
Jeff Mahoney003d7c52017-01-25 09:50:33 -05005991 ret = btrfs_qgroup_reserve_meta(root, num_bytes, true);
Miao Xied5c12072013-02-28 10:04:33 +00005992 if (ret)
5993 return ret;
5994 } else {
5995 num_bytes = 0;
5996 }
5997
5998 *qgroup_reserved = num_bytes;
5999
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006000 num_bytes = btrfs_calc_trans_metadata_size(fs_info, items);
6001 rsv->space_info = __find_space_info(fs_info,
Miao Xied5c12072013-02-28 10:04:33 +00006002 BTRFS_BLOCK_GROUP_METADATA);
6003 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
6004 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04006005
6006 if (ret == -ENOSPC && use_global_rsv)
Josef Bacik25d609f2016-03-25 13:25:48 -04006007 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, 1);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04006008
Qu Wenruo71741092015-09-08 17:22:41 +08006009 if (ret && *qgroup_reserved)
6010 btrfs_qgroup_free_meta(root, *qgroup_reserved);
Miao Xied5c12072013-02-28 10:04:33 +00006011
6012 return ret;
6013}
6014
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006015void btrfs_subvolume_release_metadata(struct btrfs_fs_info *fs_info,
David Sterba7775c812017-02-10 19:18:18 +01006016 struct btrfs_block_rsv *rsv)
Miao Xied5c12072013-02-28 10:04:33 +00006017{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006018 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006019}
6020
Josef Bacik69fe2d72017-10-19 14:15:57 -04006021static void btrfs_calculate_inode_block_rsv_size(struct btrfs_fs_info *fs_info,
6022 struct btrfs_inode *inode)
Josef Bacik9e0baf62011-07-15 15:16:44 +00006023{
Josef Bacik69fe2d72017-10-19 14:15:57 -04006024 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
6025 u64 reserve_size = 0;
6026 u64 csum_leaves;
6027 unsigned outstanding_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006028
Josef Bacik69fe2d72017-10-19 14:15:57 -04006029 lockdep_assert_held(&inode->lock);
6030 outstanding_extents = inode->outstanding_extents;
6031 if (outstanding_extents)
6032 reserve_size = btrfs_calc_trans_metadata_size(fs_info,
6033 outstanding_extents + 1);
6034 csum_leaves = btrfs_csum_bytes_to_leaves(fs_info,
6035 inode->csum_bytes);
6036 reserve_size += btrfs_calc_trans_metadata_size(fs_info,
6037 csum_leaves);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006038
Josef Bacik69fe2d72017-10-19 14:15:57 -04006039 spin_lock(&block_rsv->lock);
6040 block_rsv->size = reserve_size;
6041 spin_unlock(&block_rsv->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006042}
6043
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006044int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006045{
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006046 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
6047 struct btrfs_root *root = inode->root;
Josef Bacik69fe2d72017-10-19 14:15:57 -04006048 unsigned nr_extents;
Miao Xie08e007d2012-10-16 11:33:38 +00006049 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07006050 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006051 bool delalloc_lock = true;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006052
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006053 /* If we are a free space inode we need to not flush since we will be in
6054 * the middle of a transaction commit. We also don't need the delalloc
6055 * mutex since we won't race with anybody. We need this mostly to make
6056 * lockdep shut its filthy mouth.
Josef Bacikbac357dc2016-07-20 16:48:45 -07006057 *
6058 * If we have a transaction open (can happen if we call truncate_block
6059 * from truncate), then we need FLUSH_LIMIT so we don't deadlock.
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006060 */
6061 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00006062 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006063 delalloc_lock = false;
Nikolay Borisovda07d4a2018-01-12 16:21:05 +02006064 } else {
6065 if (current->journal_info)
6066 flush = BTRFS_RESERVE_FLUSH_LIMIT;
Josef Bacikc09544e2011-08-30 10:19:10 -04006067
Nikolay Borisovda07d4a2018-01-12 16:21:05 +02006068 if (btrfs_transaction_in_commit(fs_info))
6069 schedule_timeout(1);
6070 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006071
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006072 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006073 mutex_lock(&inode->delalloc_mutex);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006074
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006075 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006076
6077 /* Add our new extents and calculate the new rsv size. */
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006078 spin_lock(&inode->lock);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006079 nr_extents = count_max_extents(num_bytes);
Josef Bacik8b62f872017-10-19 14:15:55 -04006080 btrfs_mod_outstanding_extents(inode, nr_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006081 inode->csum_bytes += num_bytes;
6082 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006083 spin_unlock(&inode->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05006084
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006085 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
Qu Wenruo71741092015-09-08 17:22:41 +08006086 ret = btrfs_qgroup_reserve_meta(root,
Jeff Mahoney003d7c52017-01-25 09:50:33 -05006087 nr_extents * fs_info->nodesize, true);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006088 if (ret)
6089 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00006090 }
Arne Jansenc5567232011-09-14 15:44:05 +02006091
Josef Bacik69fe2d72017-10-19 14:15:57 -04006092 ret = btrfs_inode_rsv_refill(inode, flush);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006093 if (unlikely(ret)) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04006094 btrfs_qgroup_free_meta(root,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006095 nr_extents * fs_info->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006096 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006097 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006098
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006099 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006100 mutex_unlock(&inode->delalloc_mutex);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006101 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00006102
6103out_fail:
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006104 spin_lock(&inode->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04006105 nr_extents = count_max_extents(num_bytes);
6106 btrfs_mod_outstanding_extents(inode, -nr_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006107 inode->csum_bytes -= num_bytes;
6108 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006109 spin_unlock(&inode->lock);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006110
Josef Bacik69fe2d72017-10-19 14:15:57 -04006111 btrfs_inode_rsv_release(inode);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006112 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006113 mutex_unlock(&inode->delalloc_mutex);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006114 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006115}
6116
Josef Bacik7709cde2011-08-04 10:25:02 -04006117/**
6118 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
Josef Bacik8b62f872017-10-19 14:15:55 -04006119 * @inode: the inode to release the reservation for.
6120 * @num_bytes: the number of bytes we are releasing.
Josef Bacik7709cde2011-08-04 10:25:02 -04006121 *
6122 * This will release the metadata reservation for an inode. This can be called
6123 * once we complete IO for a given set of bytes to release their metadata
Josef Bacik8b62f872017-10-19 14:15:55 -04006124 * reservations, or on error for the same reason.
Josef Bacik7709cde2011-08-04 10:25:02 -04006125 */
Nikolay Borisov691fa052017-02-20 13:50:42 +02006126void btrfs_delalloc_release_metadata(struct btrfs_inode *inode, u64 num_bytes)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006127{
Nikolay Borisov691fa052017-02-20 13:50:42 +02006128 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006129
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006130 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006131 spin_lock(&inode->lock);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006132 inode->csum_bytes -= num_bytes;
6133 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006134 spin_unlock(&inode->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006135
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006136 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04006137 return;
6138
Josef Bacik69fe2d72017-10-19 14:15:57 -04006139 btrfs_inode_rsv_release(inode);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006140}
6141
Josef Bacik7709cde2011-08-04 10:25:02 -04006142/**
Josef Bacik8b62f872017-10-19 14:15:55 -04006143 * btrfs_delalloc_release_extents - release our outstanding_extents
6144 * @inode: the inode to balance the reservation for.
6145 * @num_bytes: the number of bytes we originally reserved with
6146 *
6147 * When we reserve space we increase outstanding_extents for the extents we may
6148 * add. Once we've set the range as delalloc or created our ordered extents we
6149 * have outstanding_extents to track the real usage, so we use this to free our
6150 * temporarily tracked outstanding_extents. This _must_ be used in conjunction
6151 * with btrfs_delalloc_reserve_metadata.
6152 */
6153void btrfs_delalloc_release_extents(struct btrfs_inode *inode, u64 num_bytes)
6154{
6155 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
6156 unsigned num_extents;
Josef Bacik8b62f872017-10-19 14:15:55 -04006157
6158 spin_lock(&inode->lock);
6159 num_extents = count_max_extents(num_bytes);
6160 btrfs_mod_outstanding_extents(inode, -num_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006161 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Josef Bacik8b62f872017-10-19 14:15:55 -04006162 spin_unlock(&inode->lock);
6163
Josef Bacik8b62f872017-10-19 14:15:55 -04006164 if (btrfs_is_testing(fs_info))
6165 return;
6166
Josef Bacik69fe2d72017-10-19 14:15:57 -04006167 btrfs_inode_rsv_release(inode);
Josef Bacik8b62f872017-10-19 14:15:55 -04006168}
6169
6170/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006171 * btrfs_delalloc_reserve_space - reserve data and metadata space for
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006172 * delalloc
6173 * @inode: inode we're writing to
6174 * @start: start range we are writing to
6175 * @len: how long the range we are writing to
Qu Wenruo364ecf32017-02-27 15:10:38 +08006176 * @reserved: mandatory parameter, record actually reserved qgroup ranges of
6177 * current reservation.
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006178 *
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006179 * This will do the following things
6180 *
6181 * o reserve space in data space info for num bytes
6182 * and reserve precious corresponding qgroup space
6183 * (Done in check_data_free_space)
6184 *
6185 * o reserve space for metadata space, based on the number of outstanding
6186 * extents and how much csums will be needed
6187 * also reserve metadata space in a per root over-reserve method.
6188 * o add to the inodes->delalloc_bytes
6189 * o add it to the fs_info's delalloc inodes list.
6190 * (Above 3 all done in delalloc_reserve_metadata)
6191 *
6192 * Return 0 for success
6193 * Return <0 for error(-ENOSPC or -EQUOT)
6194 */
Qu Wenruo364ecf32017-02-27 15:10:38 +08006195int btrfs_delalloc_reserve_space(struct inode *inode,
6196 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006197{
6198 int ret;
6199
Qu Wenruo364ecf32017-02-27 15:10:38 +08006200 ret = btrfs_check_data_free_space(inode, reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006201 if (ret < 0)
6202 return ret;
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006203 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode), len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006204 if (ret < 0)
Qu Wenruobc42bda2017-02-27 15:10:39 +08006205 btrfs_free_reserved_data_space(inode, *reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006206 return ret;
6207}
6208
6209/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006210 * btrfs_delalloc_release_space - release data and metadata space for delalloc
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006211 * @inode: inode we're releasing space for
6212 * @start: start position of the space already reserved
6213 * @len: the len of the space already reserved
Josef Bacik8b62f872017-10-19 14:15:55 -04006214 * @release_bytes: the len of the space we consumed or didn't use
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006215 *
6216 * This function will release the metadata space that was not used and will
6217 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
6218 * list if there are no delalloc bytes left.
6219 * Also it will handle the qgroup reserved space.
6220 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08006221void btrfs_delalloc_release_space(struct inode *inode,
Josef Bacik8b62f872017-10-19 14:15:55 -04006222 struct extent_changeset *reserved,
6223 u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006224{
Nikolay Borisov691fa052017-02-20 13:50:42 +02006225 btrfs_delalloc_release_metadata(BTRFS_I(inode), len);
Qu Wenruobc42bda2017-02-27 15:10:39 +08006226 btrfs_free_reserved_data_space(inode, reserved, start, len);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006227}
6228
Josef Bacikce93ec52014-11-17 15:45:48 -05006229static int update_block_group(struct btrfs_trans_handle *trans,
Jeff Mahoney6202df62016-06-22 18:54:22 -04006230 struct btrfs_fs_info *info, u64 bytenr,
Josef Bacikce93ec52014-11-17 15:45:48 -05006231 u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04006232{
Josef Bacik0af3d002010-06-21 14:48:16 -04006233 struct btrfs_block_group_cache *cache = NULL;
Chris Masondb945352007-10-15 16:15:53 -04006234 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006235 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04006236 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04006237 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04006238
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006239 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00006240 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02006241 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006242 if (alloc)
6243 old_val += num_bytes;
6244 else
6245 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02006246 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00006247 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006248
Chris Masond3977122009-01-05 21:25:51 -05006249 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04006250 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006251 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006252 return -ENOENT;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006253 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
6254 BTRFS_BLOCK_GROUP_RAID1 |
6255 BTRFS_BLOCK_GROUP_RAID10))
6256 factor = 2;
6257 else
6258 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04006259 /*
6260 * If this block group has free space cache written out, we
6261 * need to make sure to load it if we are removing space. This
6262 * is because we need the unpinning stage to actually add the
6263 * space back to the block group, otherwise we will leak space.
6264 */
6265 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00006266 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04006267
Chris Masondb945352007-10-15 16:15:53 -04006268 byte_in_group = bytenr - cache->key.objectid;
6269 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04006270
Josef Bacik25179202008-10-29 14:49:05 -04006271 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04006272 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04006273
Jeff Mahoney6202df62016-06-22 18:54:22 -04006274 if (btrfs_test_opt(info, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04006275 cache->disk_cache_state < BTRFS_DC_CLEAR)
6276 cache->disk_cache_state = BTRFS_DC_CLEAR;
6277
Chris Mason9078a3e2007-04-26 16:46:15 -04006278 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04006279 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04006280 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04006281 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006282 btrfs_set_block_group_used(&cache->item, old_val);
6283 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006284 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006285 cache->space_info->bytes_used += num_bytes;
6286 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04006287 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006288 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04006289 } else {
Chris Masondb945352007-10-15 16:15:53 -04006290 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00006291 btrfs_set_block_group_used(&cache->item, old_val);
6292 cache->pinned += num_bytes;
6293 cache->space_info->bytes_pinned += num_bytes;
6294 cache->space_info->bytes_used -= num_bytes;
6295 cache->space_info->disk_used -= num_bytes * factor;
6296 spin_unlock(&cache->lock);
6297 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04006298
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006299 trace_btrfs_space_reservation(info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006300 cache->space_info->flags,
6301 num_bytes, 1);
Omar Sandovald7eae342017-06-06 16:45:31 -07006302 percpu_counter_add(&cache->space_info->total_bytes_pinned,
6303 num_bytes);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006304 set_extent_dirty(info->pinned_extents,
6305 bytenr, bytenr + num_bytes - 1,
6306 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04006307 }
Chris Mason1bbc6212015-04-06 12:46:08 -07006308
6309 spin_lock(&trans->transaction->dirty_bgs_lock);
6310 if (list_empty(&cache->dirty_list)) {
6311 list_add_tail(&cache->dirty_list,
6312 &trans->transaction->dirty_bgs);
6313 trans->transaction->num_dirty_bgs++;
6314 btrfs_get_block_group(cache);
6315 }
6316 spin_unlock(&trans->transaction->dirty_bgs_lock);
6317
Filipe Manana036a9342015-11-23 15:25:16 +00006318 /*
6319 * No longer have used bytes in this block group, queue it for
6320 * deletion. We do this after adding the block group to the
6321 * dirty list to avoid races between cleaner kthread and space
6322 * cache writeout.
6323 */
6324 if (!alloc && old_val == 0) {
6325 spin_lock(&info->unused_bgs_lock);
6326 if (list_empty(&cache->bg_list)) {
6327 btrfs_get_block_group(cache);
6328 list_add_tail(&cache->bg_list,
6329 &info->unused_bgs);
6330 }
6331 spin_unlock(&info->unused_bgs_lock);
6332 }
6333
Chris Masonfa9c0d792009-04-03 09:47:43 -04006334 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04006335 total -= num_bytes;
6336 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006337 }
6338 return 0;
6339}
Chris Mason6324fbf2008-03-24 15:01:59 -04006340
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006341static u64 first_logical_byte(struct btrfs_fs_info *fs_info, u64 search_start)
Chris Masona061fc82008-05-07 11:43:44 -04006342{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006343 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05006344 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006345
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006346 spin_lock(&fs_info->block_group_cache_lock);
6347 bytenr = fs_info->first_logical_byte;
6348 spin_unlock(&fs_info->block_group_cache_lock);
Liu Boa1897fd2012-12-27 09:01:23 +00006349
6350 if (bytenr < (u64)-1)
6351 return bytenr;
6352
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006353 cache = btrfs_lookup_first_block_group(fs_info, search_start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006354 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04006355 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006356
Yan Zhengd2fb3432008-12-11 16:30:39 -05006357 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006358 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05006359
6360 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04006361}
6362
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006363static int pin_down_extent(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006364 struct btrfs_block_group_cache *cache,
6365 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05006366{
Yan Zheng11833d62009-09-11 16:11:19 -04006367 spin_lock(&cache->space_info->lock);
6368 spin_lock(&cache->lock);
6369 cache->pinned += num_bytes;
6370 cache->space_info->bytes_pinned += num_bytes;
6371 if (reserved) {
6372 cache->reserved -= num_bytes;
6373 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05006374 }
Yan Zheng11833d62009-09-11 16:11:19 -04006375 spin_unlock(&cache->lock);
6376 spin_unlock(&cache->space_info->lock);
6377
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006378 trace_btrfs_space_reservation(fs_info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006379 cache->space_info->flags, num_bytes, 1);
Omar Sandoval4da8b762017-06-06 16:45:28 -07006380 percpu_counter_add(&cache->space_info->total_bytes_pinned, num_bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006381 set_extent_dirty(fs_info->pinned_extents, bytenr,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006382 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05006383 return 0;
6384}
Chris Mason9078a3e2007-04-26 16:46:15 -04006385
Yan, Zhengf0486c62010-05-16 10:46:25 -04006386/*
6387 * this function must be called within transaction
6388 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006389int btrfs_pin_extent(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006390 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04006391{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006392 struct btrfs_block_group_cache *cache;
6393
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006394 cache = btrfs_lookup_block_group(fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006395 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006396
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006397 pin_down_extent(fs_info, cache, bytenr, num_bytes, reserved);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006398
6399 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04006400 return 0;
6401}
Zheng Yane8569812008-09-26 10:05:48 -04006402
Yan, Zhengf0486c62010-05-16 10:46:25 -04006403/*
Chris Masone688b7252011-10-31 20:52:39 -04006404 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04006405 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006406int btrfs_pin_extent_for_log_replay(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04006407 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006408{
Chris Masone688b7252011-10-31 20:52:39 -04006409 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04006410 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04006411
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006412 cache = btrfs_lookup_block_group(fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006413 if (!cache)
6414 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04006415
6416 /*
6417 * pull in the free space cache (if any) so that our pin
6418 * removes the free space from the cache. We have load_only set
6419 * to one because the slow code to read in the free extents does check
6420 * the pinned extents.
6421 */
Liu Bof6373bf2012-12-27 09:01:18 +00006422 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04006423
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006424 pin_down_extent(fs_info, cache, bytenr, num_bytes, 0);
Chris Masone688b7252011-10-31 20:52:39 -04006425
6426 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04006427 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04006428 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006429 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04006430}
6431
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006432static int __exclude_logged_extent(struct btrfs_fs_info *fs_info,
6433 u64 start, u64 num_bytes)
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006434{
6435 int ret;
6436 struct btrfs_block_group_cache *block_group;
6437 struct btrfs_caching_control *caching_ctl;
6438
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006439 block_group = btrfs_lookup_block_group(fs_info, start);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006440 if (!block_group)
6441 return -EINVAL;
6442
6443 cache_block_group(block_group, 0);
6444 caching_ctl = get_caching_control(block_group);
6445
6446 if (!caching_ctl) {
6447 /* Logic error */
6448 BUG_ON(!block_group_cache_done(block_group));
6449 ret = btrfs_remove_free_space(block_group, start, num_bytes);
6450 } else {
6451 mutex_lock(&caching_ctl->mutex);
6452
6453 if (start >= caching_ctl->progress) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006454 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006455 } else if (start + num_bytes <= caching_ctl->progress) {
6456 ret = btrfs_remove_free_space(block_group,
6457 start, num_bytes);
6458 } else {
6459 num_bytes = caching_ctl->progress - start;
6460 ret = btrfs_remove_free_space(block_group,
6461 start, num_bytes);
6462 if (ret)
6463 goto out_lock;
6464
6465 num_bytes = (start + num_bytes) -
6466 caching_ctl->progress;
6467 start = caching_ctl->progress;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006468 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006469 }
6470out_lock:
6471 mutex_unlock(&caching_ctl->mutex);
6472 put_caching_control(caching_ctl);
6473 }
6474 btrfs_put_block_group(block_group);
6475 return ret;
6476}
6477
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006478int btrfs_exclude_logged_extents(struct btrfs_fs_info *fs_info,
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006479 struct extent_buffer *eb)
6480{
6481 struct btrfs_file_extent_item *item;
6482 struct btrfs_key key;
6483 int found_type;
6484 int i;
6485
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006486 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS))
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006487 return 0;
6488
6489 for (i = 0; i < btrfs_header_nritems(eb); i++) {
6490 btrfs_item_key_to_cpu(eb, &key, i);
6491 if (key.type != BTRFS_EXTENT_DATA_KEY)
6492 continue;
6493 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
6494 found_type = btrfs_file_extent_type(eb, item);
6495 if (found_type == BTRFS_FILE_EXTENT_INLINE)
6496 continue;
6497 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
6498 continue;
6499 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
6500 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006501 __exclude_logged_extent(fs_info, key.objectid, key.offset);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006502 }
6503
6504 return 0;
6505}
6506
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006507static void
6508btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg)
6509{
6510 atomic_inc(&bg->reservations);
6511}
6512
6513void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
6514 const u64 start)
6515{
6516 struct btrfs_block_group_cache *bg;
6517
6518 bg = btrfs_lookup_block_group(fs_info, start);
6519 ASSERT(bg);
6520 if (atomic_dec_and_test(&bg->reservations))
6521 wake_up_atomic_t(&bg->reservations);
6522 btrfs_put_block_group(bg);
6523}
6524
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006525void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg)
6526{
6527 struct btrfs_space_info *space_info = bg->space_info;
6528
6529 ASSERT(bg->ro);
6530
6531 if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA))
6532 return;
6533
6534 /*
6535 * Our block group is read only but before we set it to read only,
6536 * some task might have had allocated an extent from it already, but it
6537 * has not yet created a respective ordered extent (and added it to a
6538 * root's list of ordered extents).
6539 * Therefore wait for any task currently allocating extents, since the
6540 * block group's reservations counter is incremented while a read lock
6541 * on the groups' semaphore is held and decremented after releasing
6542 * the read access on that semaphore and creating the ordered extent.
6543 */
6544 down_write(&space_info->groups_sem);
6545 up_write(&space_info->groups_sem);
6546
David Howells5e4def22017-11-02 15:27:44 +00006547 wait_on_atomic_t(&bg->reservations, atomic_t_wait,
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006548 TASK_UNINTERRUPTIBLE);
6549}
6550
Josef Bacikfb25e912011-07-26 17:00:46 -04006551/**
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006552 * btrfs_add_reserved_bytes - update the block_group and space info counters
Josef Bacikfb25e912011-07-26 17:00:46 -04006553 * @cache: The cache we are manipulating
Wang Xiaoguang18513092016-07-25 15:51:40 +08006554 * @ram_bytes: The number of bytes of file content, and will be same to
6555 * @num_bytes except for the compress path.
Josef Bacikfb25e912011-07-26 17:00:46 -04006556 * @num_bytes: The number of bytes in question
Miao Xiee570fd22014-06-19 10:42:50 +08006557 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04006558 *
Xiaoguang Wang745699e2016-09-23 12:38:50 +08006559 * This is called by the allocator when it reserves space. If this is a
6560 * reservation and the block group has become read only we cannot make the
6561 * reservation and return -EAGAIN, otherwise this function always succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04006562 */
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006563static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
Wang Xiaoguang18513092016-07-25 15:51:40 +08006564 u64 ram_bytes, u64 num_bytes, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006565{
Josef Bacikfb25e912011-07-26 17:00:46 -04006566 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006567 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006568
Josef Bacikfb25e912011-07-26 17:00:46 -04006569 spin_lock(&space_info->lock);
6570 spin_lock(&cache->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006571 if (cache->ro) {
6572 ret = -EAGAIN;
Josef Bacikfb25e912011-07-26 17:00:46 -04006573 } else {
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006574 cache->reserved += num_bytes;
6575 space_info->bytes_reserved += num_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006576
Wang Xiaoguang18513092016-07-25 15:51:40 +08006577 trace_btrfs_space_reservation(cache->fs_info,
6578 "space_info", space_info->flags,
6579 ram_bytes, 0);
6580 space_info->bytes_may_use -= ram_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006581 if (delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006582 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006583 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006584 spin_unlock(&cache->lock);
6585 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006586 return ret;
6587}
6588
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006589/**
6590 * btrfs_free_reserved_bytes - update the block_group and space info counters
6591 * @cache: The cache we are manipulating
6592 * @num_bytes: The number of bytes in question
6593 * @delalloc: The blocks are allocated for the delalloc write
6594 *
6595 * This is called by somebody who is freeing space that was never actually used
6596 * on disk. For example if you reserve some space for a new leaf in transaction
6597 * A and before transaction A commits you free that leaf, you call this with
6598 * reserve set to 0 in order to clear the reservation.
6599 */
6600
6601static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
6602 u64 num_bytes, int delalloc)
6603{
6604 struct btrfs_space_info *space_info = cache->space_info;
6605 int ret = 0;
6606
6607 spin_lock(&space_info->lock);
6608 spin_lock(&cache->lock);
6609 if (cache->ro)
6610 space_info->bytes_readonly += num_bytes;
6611 cache->reserved -= num_bytes;
6612 space_info->bytes_reserved -= num_bytes;
6613
6614 if (delalloc)
6615 cache->delalloc_bytes -= num_bytes;
6616 spin_unlock(&cache->lock);
6617 spin_unlock(&space_info->lock);
6618 return ret;
6619}
David Sterba8b74c032017-02-10 19:20:56 +01006620void btrfs_prepare_extent_commit(struct btrfs_fs_info *fs_info)
Yan Zheng11833d62009-09-11 16:11:19 -04006621{
Yan Zheng11833d62009-09-11 16:11:19 -04006622 struct btrfs_caching_control *next;
6623 struct btrfs_caching_control *caching_ctl;
6624 struct btrfs_block_group_cache *cache;
6625
Josef Bacik9e351cc2014-03-13 15:42:13 -04006626 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04006627
6628 list_for_each_entry_safe(caching_ctl, next,
6629 &fs_info->caching_block_groups, list) {
6630 cache = caching_ctl->block_group;
6631 if (block_group_cache_done(cache)) {
6632 cache->last_byte_to_unpin = (u64)-1;
6633 list_del_init(&caching_ctl->list);
6634 put_caching_control(caching_ctl);
6635 } else {
6636 cache->last_byte_to_unpin = caching_ctl->progress;
6637 }
6638 }
6639
6640 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6641 fs_info->pinned_extents = &fs_info->freed_extents[1];
6642 else
6643 fs_info->pinned_extents = &fs_info->freed_extents[0];
6644
Josef Bacik9e351cc2014-03-13 15:42:13 -04006645 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006646
6647 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04006648}
6649
Josef Bacikc759c4e2015-10-02 15:25:10 -04006650/*
6651 * Returns the free cluster for the given space info and sets empty_cluster to
6652 * what it should be based on the mount options.
6653 */
6654static struct btrfs_free_cluster *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006655fetch_cluster_info(struct btrfs_fs_info *fs_info,
6656 struct btrfs_space_info *space_info, u64 *empty_cluster)
Josef Bacikc759c4e2015-10-02 15:25:10 -04006657{
6658 struct btrfs_free_cluster *ret = NULL;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006659
6660 *empty_cluster = 0;
6661 if (btrfs_mixed_space_info(space_info))
6662 return ret;
6663
Josef Bacikc759c4e2015-10-02 15:25:10 -04006664 if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006665 ret = &fs_info->meta_alloc_cluster;
Hans van Kranenburg583b7232017-07-28 08:31:28 +02006666 if (btrfs_test_opt(fs_info, SSD))
6667 *empty_cluster = SZ_2M;
6668 else
Byongho Leeee221842015-12-15 01:42:10 +09006669 *empty_cluster = SZ_64K;
Hans van Kranenburg583b7232017-07-28 08:31:28 +02006670 } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) &&
6671 btrfs_test_opt(fs_info, SSD_SPREAD)) {
6672 *empty_cluster = SZ_2M;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006673 ret = &fs_info->data_alloc_cluster;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006674 }
6675
6676 return ret;
6677}
6678
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006679static int unpin_extent_range(struct btrfs_fs_info *fs_info,
6680 u64 start, u64 end,
Filipe Manana678886b2014-12-07 21:31:47 +00006681 const bool return_free_space)
Yan Zheng11833d62009-09-11 16:11:19 -04006682{
Yan Zheng11833d62009-09-11 16:11:19 -04006683 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04006684 struct btrfs_space_info *space_info;
6685 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006686 struct btrfs_free_cluster *cluster = NULL;
Yan Zheng11833d62009-09-11 16:11:19 -04006687 u64 len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006688 u64 total_unpinned = 0;
6689 u64 empty_cluster = 0;
Josef Bacik7b398f82012-10-22 15:52:28 -04006690 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04006691
6692 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04006693 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04006694 if (!cache ||
6695 start >= cache->key.objectid + cache->key.offset) {
6696 if (cache)
6697 btrfs_put_block_group(cache);
Josef Bacikc759c4e2015-10-02 15:25:10 -04006698 total_unpinned = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006699 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006700 BUG_ON(!cache); /* Logic error */
Josef Bacikc759c4e2015-10-02 15:25:10 -04006701
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006702 cluster = fetch_cluster_info(fs_info,
Josef Bacikc759c4e2015-10-02 15:25:10 -04006703 cache->space_info,
6704 &empty_cluster);
6705 empty_cluster <<= 1;
Yan Zheng11833d62009-09-11 16:11:19 -04006706 }
6707
6708 len = cache->key.objectid + cache->key.offset - start;
6709 len = min(len, end + 1 - start);
6710
6711 if (start < cache->last_byte_to_unpin) {
6712 len = min(len, cache->last_byte_to_unpin - start);
Filipe Manana678886b2014-12-07 21:31:47 +00006713 if (return_free_space)
6714 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04006715 }
Josef Bacik25179202008-10-29 14:49:05 -04006716
Yan, Zhengf0486c62010-05-16 10:46:25 -04006717 start += len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006718 total_unpinned += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006719 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006720
Josef Bacikc759c4e2015-10-02 15:25:10 -04006721 /*
6722 * If this space cluster has been marked as fragmented and we've
6723 * unpinned enough in this block group to potentially allow a
6724 * cluster to be created inside of it go ahead and clear the
6725 * fragmented check.
6726 */
6727 if (cluster && cluster->fragmented &&
6728 total_unpinned > empty_cluster) {
6729 spin_lock(&cluster->lock);
6730 cluster->fragmented = 0;
6731 spin_unlock(&cluster->lock);
6732 }
6733
Josef Bacik7b398f82012-10-22 15:52:28 -04006734 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006735 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006736 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006737 space_info->bytes_pinned -= len;
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006738
6739 trace_btrfs_space_reservation(fs_info, "pinned",
6740 space_info->flags, len, 0);
Josef Bacik4f4db212015-09-29 11:40:47 -04006741 space_info->max_extent_size = 0;
Liu Bod288db52014-07-02 16:58:01 +08006742 percpu_counter_add(&space_info->total_bytes_pinned, -len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006743 if (cache->ro) {
6744 space_info->bytes_readonly += len;
6745 readonly = true;
6746 }
Josef Bacik25179202008-10-29 14:49:05 -04006747 spin_unlock(&cache->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006748 if (!readonly && return_free_space &&
6749 global_rsv->space_info == space_info) {
6750 u64 to_add = len;
Nikolay Borisov92ac58e2017-08-17 10:52:28 +03006751
Josef Bacik7b398f82012-10-22 15:52:28 -04006752 spin_lock(&global_rsv->lock);
6753 if (!global_rsv->full) {
Josef Bacik957780e2016-05-17 13:30:55 -04006754 to_add = min(len, global_rsv->size -
6755 global_rsv->reserved);
6756 global_rsv->reserved += to_add;
6757 space_info->bytes_may_use += to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006758 if (global_rsv->reserved >= global_rsv->size)
6759 global_rsv->full = 1;
Josef Bacik957780e2016-05-17 13:30:55 -04006760 trace_btrfs_space_reservation(fs_info,
6761 "space_info",
6762 space_info->flags,
6763 to_add, 1);
6764 len -= to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006765 }
6766 spin_unlock(&global_rsv->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006767 /* Add to any tickets we may have */
6768 if (len)
6769 space_info_add_new_bytes(fs_info, space_info,
6770 len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006771 }
6772 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006773 }
6774
6775 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006776 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006777 return 0;
6778}
6779
6780int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006781 struct btrfs_fs_info *fs_info)
Chris Masona28ec192007-03-06 20:08:01 -05006782{
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006783 struct btrfs_block_group_cache *block_group, *tmp;
6784 struct list_head *deleted_bgs;
Yan Zheng11833d62009-09-11 16:11:19 -04006785 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006786 u64 start;
6787 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006788 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006789
Yan Zheng11833d62009-09-11 16:11:19 -04006790 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6791 unpin = &fs_info->freed_extents[1];
6792 else
6793 unpin = &fs_info->freed_extents[0];
6794
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006795 while (!trans->aborted) {
Filipe Mananad4b450c2015-01-29 19:18:25 +00006796 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006797 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04006798 EXTENT_DIRTY, NULL);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006799 if (ret) {
6800 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006801 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006802 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006803
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006804 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006805 ret = btrfs_discard_extent(fs_info, start,
Li Dongyang5378e602011-03-24 10:24:27 +00006806 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006807
David Sterbaaf6f8f62016-04-26 23:54:39 +02006808 clear_extent_dirty(unpin, start, end);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006809 unpin_extent_range(fs_info, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006810 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masonb9473432009-03-13 11:00:37 -04006811 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006812 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006813
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006814 /*
6815 * Transaction is finished. We don't need the lock anymore. We
6816 * do need to clean up the block groups in case of a transaction
6817 * abort.
6818 */
6819 deleted_bgs = &trans->transaction->deleted_bgs;
6820 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
6821 u64 trimmed = 0;
6822
6823 ret = -EROFS;
6824 if (!trans->aborted)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006825 ret = btrfs_discard_extent(fs_info,
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006826 block_group->key.objectid,
6827 block_group->key.offset,
6828 &trimmed);
6829
6830 list_del_init(&block_group->bg_list);
6831 btrfs_put_block_group_trimming(block_group);
6832 btrfs_put_block_group(block_group);
6833
6834 if (ret) {
6835 const char *errstr = btrfs_decode_error(ret);
6836 btrfs_warn(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02006837 "discard failed while removing blockgroup: errno=%d %s",
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006838 ret, errstr);
6839 }
6840 }
6841
Chris Masone20d96d2007-03-22 12:13:20 -04006842 return 0;
6843}
6844
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006845static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006846 struct btrfs_fs_info *info,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006847 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006848 u64 root_objectid, u64 owner_objectid,
6849 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006850 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006851{
Chris Masone2fa7222007-03-12 16:22:34 -04006852 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006853 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006854 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006855 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006856 struct btrfs_extent_item *ei;
6857 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006858 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006859 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006860 int extent_slot = 0;
6861 int found_extent = 0;
6862 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006863 u32 item_size;
6864 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006865 u64 bytenr = node->bytenr;
6866 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006867 int last_ref = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006868 bool skinny_metadata = btrfs_fs_incompat(info, SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006869
Chris Mason5caf2a02007-04-02 11:20:42 -04006870 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006871 if (!path)
6872 return -ENOMEM;
6873
David Sterbae4058b52015-11-27 16:31:35 +01006874 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04006875 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006876
6877 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6878 BUG_ON(!is_data && refs_to_drop != 1);
6879
Josef Bacik3173a182013-03-07 14:22:04 -05006880 if (is_data)
Thomas Meyer897ca812017-10-07 16:02:21 +02006881 skinny_metadata = false;
Josef Bacik3173a182013-03-07 14:22:04 -05006882
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05006883 ret = lookup_extent_backref(trans, info, path, &iref,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006884 bytenr, num_bytes, parent,
6885 root_objectid, owner_objectid,
6886 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006887 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006888 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006889 while (extent_slot >= 0) {
6890 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006891 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006892 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006893 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006894 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6895 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006896 found_extent = 1;
6897 break;
6898 }
Josef Bacik3173a182013-03-07 14:22:04 -05006899 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6900 key.offset == owner_objectid) {
6901 found_extent = 1;
6902 break;
6903 }
Chris Mason952fcca2008-02-18 16:33:44 -05006904 if (path->slots[0] - extent_slot > 5)
6905 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006906 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006907 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006908#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6909 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
6910 if (found_extent && item_size < sizeof(*ei))
6911 found_extent = 0;
6912#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04006913 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006914 BUG_ON(iref);
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05006915 ret = remove_extent_backref(trans, info, path, NULL,
6916 refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006917 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006918 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006919 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006920 goto out;
6921 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006922 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04006923 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006924
6925 key.objectid = bytenr;
6926 key.type = BTRFS_EXTENT_ITEM_KEY;
6927 key.offset = num_bytes;
6928
Josef Bacik3173a182013-03-07 14:22:04 -05006929 if (!is_data && skinny_metadata) {
6930 key.type = BTRFS_METADATA_ITEM_KEY;
6931 key.offset = owner_objectid;
6932 }
6933
Zheng Yan31840ae2008-09-23 13:14:14 -04006934 ret = btrfs_search_slot(trans, extent_root,
6935 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05006936 if (ret > 0 && skinny_metadata && path->slots[0]) {
6937 /*
6938 * Couldn't find our skinny metadata item,
6939 * see if we have ye olde extent item.
6940 */
6941 path->slots[0]--;
6942 btrfs_item_key_to_cpu(path->nodes[0], &key,
6943 path->slots[0]);
6944 if (key.objectid == bytenr &&
6945 key.type == BTRFS_EXTENT_ITEM_KEY &&
6946 key.offset == num_bytes)
6947 ret = 0;
6948 }
6949
6950 if (ret > 0 && skinny_metadata) {
6951 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01006952 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05006953 key.type = BTRFS_EXTENT_ITEM_KEY;
6954 key.offset = num_bytes;
6955 btrfs_release_path(path);
6956 ret = btrfs_search_slot(trans, extent_root,
6957 &key, path, -1, 1);
6958 }
6959
Josef Bacikf3465ca2008-11-12 14:19:50 -05006960 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006961 btrfs_err(info,
6962 "umm, got %d back from search, was looking for %llu",
6963 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00006964 if (ret > 0)
David Sterbaa4f78752017-06-29 18:37:49 +02006965 btrfs_print_leaf(path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006966 }
David Sterba005d6422012-09-18 07:52:32 -06006967 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006968 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006969 goto out;
6970 }
Zheng Yan31840ae2008-09-23 13:14:14 -04006971 extent_slot = path->slots[0];
6972 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306973 } else if (WARN_ON(ret == -ENOENT)) {
David Sterbaa4f78752017-06-29 18:37:49 +02006974 btrfs_print_leaf(path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006975 btrfs_err(info,
6976 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006977 bytenr, parent, root_objectid, owner_objectid,
6978 owner_offset);
Jeff Mahoney66642832016-06-10 18:19:25 -04006979 btrfs_abort_transaction(trans, ret);
Josef Bacikc4a050b2014-03-14 16:36:53 -04006980 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006981 } else {
Jeff Mahoney66642832016-06-10 18:19:25 -04006982 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006983 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05006984 }
Chris Mason5f39d392007-10-15 16:14:19 -04006985
6986 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006987 item_size = btrfs_item_size_nr(leaf, extent_slot);
6988#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6989 if (item_size < sizeof(*ei)) {
6990 BUG_ON(found_extent || extent_slot != path->slots[0]);
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05006991 ret = convert_extent_item_v0(trans, info, path, owner_objectid,
6992 0);
David Sterba005d6422012-09-18 07:52:32 -06006993 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006994 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006995 goto out;
6996 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006997
David Sterbab3b4aa72011-04-21 01:20:15 +02006998 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006999 path->leave_spinning = 1;
7000
7001 key.objectid = bytenr;
7002 key.type = BTRFS_EXTENT_ITEM_KEY;
7003 key.offset = num_bytes;
7004
7005 ret = btrfs_search_slot(trans, extent_root, &key, path,
7006 -1, 1);
7007 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007008 btrfs_err(info,
7009 "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007010 ret, bytenr);
David Sterbaa4f78752017-06-29 18:37:49 +02007011 btrfs_print_leaf(path->nodes[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007012 }
David Sterba005d6422012-09-18 07:52:32 -06007013 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007014 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007015 goto out;
7016 }
7017
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007018 extent_slot = path->slots[0];
7019 leaf = path->nodes[0];
7020 item_size = btrfs_item_size_nr(leaf, extent_slot);
7021 }
7022#endif
7023 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05007024 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04007025 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05007026 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
7027 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007028 struct btrfs_tree_block_info *bi;
7029 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
7030 bi = (struct btrfs_tree_block_info *)(ei + 1);
7031 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05007032 }
7033
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007034 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04007035 if (refs < refs_to_drop) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007036 btrfs_err(info,
7037 "trying to drop %d refs but we only have %Lu for bytenr %Lu",
7038 refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04007039 ret = -EINVAL;
Jeff Mahoney66642832016-06-10 18:19:25 -04007040 btrfs_abort_transaction(trans, ret);
Josef Bacik32b02532013-04-24 16:38:50 -04007041 goto out;
7042 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007043 refs -= refs_to_drop;
7044
7045 if (refs > 0) {
7046 if (extent_op)
7047 __run_delayed_extent_op(extent_op, leaf, ei);
7048 /*
7049 * In the case of inline back ref, reference count will
7050 * be updated by remove_extent_backref
7051 */
7052 if (iref) {
7053 BUG_ON(!found_extent);
7054 } else {
7055 btrfs_set_extent_refs(leaf, ei, refs);
7056 btrfs_mark_buffer_dirty(leaf);
7057 }
7058 if (found_extent) {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05007059 ret = remove_extent_backref(trans, info, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007060 iref, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07007061 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06007062 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007063 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007064 goto out;
7065 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007066 }
7067 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007068 if (found_extent) {
7069 BUG_ON(is_data && refs_to_drop !=
Zhaolei9ed0dea2015-08-06 22:16:24 +08007070 extent_data_ref_count(path, iref));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007071 if (iref) {
7072 BUG_ON(path->slots[0] != extent_slot);
7073 } else {
7074 BUG_ON(path->slots[0] != extent_slot + 1);
7075 path->slots[0] = extent_slot;
7076 num_to_del = 2;
7077 }
Chris Mason78fae272007-03-25 11:35:08 -04007078 }
Chris Masonb9473432009-03-13 11:00:37 -04007079
Josef Bacikfcebe452014-05-13 17:30:47 -07007080 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05007081 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
7082 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06007083 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007084 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007085 goto out;
7086 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007087 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01007088
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007089 if (is_data) {
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04007090 ret = btrfs_del_csums(trans, info, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06007091 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007092 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007093 goto out;
7094 }
Chris Mason459931e2008-12-10 09:10:46 -05007095 }
7096
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007097 ret = add_to_free_space_tree(trans, info, bytenr, num_bytes);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007098 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007099 btrfs_abort_transaction(trans, ret);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007100 goto out;
7101 }
7102
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007103 ret = update_block_group(trans, info, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06007104 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007105 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007106 goto out;
7107 }
Chris Masona28ec192007-03-06 20:08:01 -05007108 }
Josef Bacikfcebe452014-05-13 17:30:47 -07007109 btrfs_release_path(path);
7110
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007111out:
Chris Mason5caf2a02007-04-02 11:20:42 -04007112 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05007113 return ret;
7114}
7115
7116/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007117 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04007118 * delayed ref for that extent as well. This searches the delayed ref tree for
7119 * a given extent, and if there are no other delayed refs to be processed, it
7120 * removes it from the tree.
7121 */
7122static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007123 u64 bytenr)
Chris Mason1887be62009-03-13 10:11:24 -04007124{
7125 struct btrfs_delayed_ref_head *head;
7126 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007127 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04007128
7129 delayed_refs = &trans->transaction->delayed_refs;
7130 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08007131 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Chris Mason1887be62009-03-13 10:11:24 -04007132 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08007133 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04007134
Josef Bacikd7df2c72014-01-23 09:21:38 -05007135 spin_lock(&head->lock);
Josef Bacik0e0adbc2017-10-19 14:16:00 -04007136 if (!RB_EMPTY_ROOT(&head->ref_tree))
Chris Mason1887be62009-03-13 10:11:24 -04007137 goto out;
7138
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007139 if (head->extent_op) {
7140 if (!head->must_insert_reserved)
7141 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00007142 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007143 head->extent_op = NULL;
7144 }
7145
Chris Mason1887be62009-03-13 10:11:24 -04007146 /*
7147 * waiting for the lock here would deadlock. If someone else has it
7148 * locked they are already in the process of dropping it anyway
7149 */
7150 if (!mutex_trylock(&head->mutex))
7151 goto out;
7152
7153 /*
7154 * at this point we have a head with no other entries. Go
7155 * ahead and process it.
7156 */
Liu Boc46effa2013-10-14 12:59:45 +08007157 rb_erase(&head->href_node, &delayed_refs->href_root);
Josef Bacikd2788502017-09-29 15:43:57 -04007158 RB_CLEAR_NODE(&head->href_node);
Josef Bacikd7df2c72014-01-23 09:21:38 -05007159 atomic_dec(&delayed_refs->num_entries);
Chris Mason1887be62009-03-13 10:11:24 -04007160
7161 /*
7162 * we don't take a ref on the node because we're removing it from the
7163 * tree, so we just steal the ref the tree was holding.
7164 */
Chris Masonc3e69d52009-03-13 10:17:05 -04007165 delayed_refs->num_heads--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05007166 if (head->processing == 0)
Chris Masonc3e69d52009-03-13 10:17:05 -04007167 delayed_refs->num_heads_ready--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05007168 head->processing = 0;
7169 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04007170 spin_unlock(&delayed_refs->lock);
7171
Yan, Zhengf0486c62010-05-16 10:46:25 -04007172 BUG_ON(head->extent_op);
7173 if (head->must_insert_reserved)
7174 ret = 1;
7175
7176 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -04007177 btrfs_put_delayed_ref_head(head);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007178 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04007179out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05007180 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08007181
7182out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04007183 spin_unlock(&delayed_refs->lock);
7184 return 0;
7185}
7186
Yan, Zhengf0486c62010-05-16 10:46:25 -04007187void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
7188 struct btrfs_root *root,
7189 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02007190 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007191{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007192 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikb150a4f2013-06-19 15:00:04 -04007193 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007194 int ret;
7195
7196 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Omar Sandovald7eae342017-06-06 16:45:31 -07007197 int old_ref_mod, new_ref_mod;
7198
Josef Bacikfd708b82017-09-29 15:43:50 -04007199 btrfs_ref_tree_mod(root, buf->start, buf->len, parent,
7200 root->root_key.objectid,
7201 btrfs_header_level(buf), 0,
7202 BTRFS_DROP_DELAYED_REF);
Omar Sandoval7be07912017-06-06 16:45:30 -07007203 ret = btrfs_add_delayed_tree_ref(fs_info, trans, buf->start,
7204 buf->len, parent,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007205 root->root_key.objectid,
7206 btrfs_header_level(buf),
Omar Sandoval7be07912017-06-06 16:45:30 -07007207 BTRFS_DROP_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007208 &old_ref_mod, &new_ref_mod);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007209 BUG_ON(ret); /* -ENOMEM */
Omar Sandovald7eae342017-06-06 16:45:31 -07007210 pin = old_ref_mod >= 0 && new_ref_mod < 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007211 }
7212
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007213 if (last_ref && btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00007214 struct btrfs_block_group_cache *cache;
7215
Yan, Zhengf0486c62010-05-16 10:46:25 -04007216 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007217 ret = check_ref_cleanup(trans, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007218 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04007219 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007220 }
7221
Omar Sandoval4da8b762017-06-06 16:45:28 -07007222 pin = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007223 cache = btrfs_lookup_block_group(fs_info, buf->start);
Filipe Manana62198722015-01-06 20:18:45 +00007224
Yan, Zhengf0486c62010-05-16 10:46:25 -04007225 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007226 pin_down_extent(fs_info, cache, buf->start,
7227 buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00007228 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04007229 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007230 }
7231
7232 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
7233
7234 btrfs_add_free_space(cache, buf->start, buf->len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08007235 btrfs_free_reserved_bytes(cache, buf->len, 0);
Filipe Manana62198722015-01-06 20:18:45 +00007236 btrfs_put_block_group(cache);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007237 trace_btrfs_reserved_extent_free(fs_info, buf->start, buf->len);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007238 }
7239out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04007240 if (pin)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007241 add_pinned_bytes(fs_info, buf->len, btrfs_header_level(buf),
Josef Bacikb150a4f2013-06-19 15:00:04 -04007242 root->root_key.objectid);
7243
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007244 if (last_ref) {
7245 /*
7246 * Deleting the buffer, clear the corrupt flag since it doesn't
7247 * matter anymore.
7248 */
7249 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
7250 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007251}
7252
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007253/* Can return -ENOMEM */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007254int btrfs_free_extent(struct btrfs_trans_handle *trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04007255 struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007256 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007257 u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04007258{
Josef Bacik84f7d8e2017-09-29 15:43:49 -04007259 struct btrfs_fs_info *fs_info = root->fs_info;
Omar Sandovald7eae342017-06-06 16:45:31 -07007260 int old_ref_mod, new_ref_mod;
Chris Mason925baed2008-06-25 16:01:30 -04007261 int ret;
7262
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04007263 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007264 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02007265
Josef Bacikfd708b82017-09-29 15:43:50 -04007266 if (root_objectid != BTRFS_TREE_LOG_OBJECTID)
7267 btrfs_ref_tree_mod(root, bytenr, num_bytes, parent,
7268 root_objectid, owner, offset,
7269 BTRFS_DROP_DELAYED_REF);
7270
Chris Mason56bec292009-03-13 10:10:06 -04007271 /*
7272 * tree log blocks never actually go into the extent allocation
7273 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04007274 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007275 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
7276 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04007277 /* unlocks the pinned mutex */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007278 btrfs_pin_extent(fs_info, bytenr, num_bytes, 1);
Omar Sandovald7eae342017-06-06 16:45:31 -07007279 old_ref_mod = new_ref_mod = 0;
Chris Mason56bec292009-03-13 10:10:06 -04007280 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007281 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007282 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07007283 num_bytes, parent,
7284 root_objectid, (int)owner,
7285 BTRFS_DROP_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007286 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007287 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007288 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07007289 num_bytes, parent,
7290 root_objectid, owner, offset,
7291 0, BTRFS_DROP_DELAYED_REF,
Omar Sandovald7eae342017-06-06 16:45:31 -07007292 &old_ref_mod, &new_ref_mod);
Chris Mason56bec292009-03-13 10:10:06 -04007293 }
Omar Sandovald7eae342017-06-06 16:45:31 -07007294
7295 if (ret == 0 && old_ref_mod >= 0 && new_ref_mod < 0)
7296 add_pinned_bytes(fs_info, num_bytes, owner, root_objectid);
7297
Chris Mason925baed2008-06-25 16:01:30 -04007298 return ret;
7299}
7300
Chris Masonfec577f2007-02-26 10:40:21 -05007301/*
Josef Bacik817d52f2009-07-13 21:29:25 -04007302 * when we wait for progress in the block group caching, its because
7303 * our allocation attempt failed at least once. So, we must sleep
7304 * and let some progress happen before we try again.
7305 *
7306 * This function will sleep at least once waiting for new free space to
7307 * show up, and then it will check the block group free space numbers
7308 * for our min num_bytes. Another option is to have it go ahead
7309 * and look in the rbtree for a free extent of a given size, but this
7310 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04007311 *
7312 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
7313 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04007314 */
Josef Bacik36cce922013-08-05 11:15:21 -04007315static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04007316wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
7317 u64 num_bytes)
7318{
Yan Zheng11833d62009-09-11 16:11:19 -04007319 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04007320
Yan Zheng11833d62009-09-11 16:11:19 -04007321 caching_ctl = get_caching_control(cache);
7322 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007323 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04007324
Yan Zheng11833d62009-09-11 16:11:19 -04007325 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08007326 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04007327
7328 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04007329}
7330
7331static noinline int
7332wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
7333{
7334 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04007335 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007336
7337 caching_ctl = get_caching_control(cache);
7338 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007339 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007340
7341 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04007342 if (cache->cached == BTRFS_CACHE_ERROR)
7343 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04007344 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04007345 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04007346}
7347
Liu Bo31e50222012-11-21 14:18:10 +00007348int __get_raid_index(u64 flags)
Yan, Zhengb742bb82010-05-16 10:46:24 -04007349{
Ilya Dryomov7738a532012-03-27 17:09:17 +03007350 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00007351 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007352 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00007353 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007354 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00007355 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007356 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00007357 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05007358 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05007359 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05007360 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05007361 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007362
Chris Masone942f882013-02-20 14:06:05 -05007363 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb82010-05-16 10:46:24 -04007364}
7365
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007366int get_block_group_index(struct btrfs_block_group_cache *cache)
Ilya Dryomov7738a532012-03-27 17:09:17 +03007367{
Liu Bo31e50222012-11-21 14:18:10 +00007368 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03007369}
7370
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007371static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
7372 [BTRFS_RAID_RAID10] = "raid10",
7373 [BTRFS_RAID_RAID1] = "raid1",
7374 [BTRFS_RAID_DUP] = "dup",
7375 [BTRFS_RAID_RAID0] = "raid0",
7376 [BTRFS_RAID_SINGLE] = "single",
7377 [BTRFS_RAID_RAID5] = "raid5",
7378 [BTRFS_RAID_RAID6] = "raid6",
7379};
7380
Jeff Mahoney1b8e5df2013-11-20 16:50:23 -05007381static const char *get_raid_name(enum btrfs_raid_types type)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007382{
7383 if (type >= BTRFS_NR_RAID_TYPES)
7384 return NULL;
7385
7386 return btrfs_raid_type_names[type];
7387}
7388
Josef Bacik817d52f2009-07-13 21:29:25 -04007389enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05007390 LOOP_CACHING_NOWAIT = 0,
7391 LOOP_CACHING_WAIT = 1,
7392 LOOP_ALLOC_CHUNK = 2,
7393 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04007394};
7395
Miao Xiee570fd22014-06-19 10:42:50 +08007396static inline void
7397btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
7398 int delalloc)
7399{
7400 if (delalloc)
7401 down_read(&cache->data_rwsem);
7402}
7403
7404static inline void
7405btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
7406 int delalloc)
7407{
7408 btrfs_get_block_group(cache);
7409 if (delalloc)
7410 down_read(&cache->data_rwsem);
7411}
7412
7413static struct btrfs_block_group_cache *
7414btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
7415 struct btrfs_free_cluster *cluster,
7416 int delalloc)
7417{
Sudip Mukherjee89771cc2016-02-16 13:32:47 +05307418 struct btrfs_block_group_cache *used_bg = NULL;
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007419
Miao Xiee570fd22014-06-19 10:42:50 +08007420 spin_lock(&cluster->refill_lock);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007421 while (1) {
7422 used_bg = cluster->block_group;
7423 if (!used_bg)
7424 return NULL;
7425
7426 if (used_bg == block_group)
7427 return used_bg;
7428
7429 btrfs_get_block_group(used_bg);
7430
7431 if (!delalloc)
7432 return used_bg;
7433
7434 if (down_read_trylock(&used_bg->data_rwsem))
7435 return used_bg;
7436
7437 spin_unlock(&cluster->refill_lock);
7438
Liu Boe321f8a2016-11-30 16:11:04 -08007439 /* We should only have one-level nested. */
7440 down_read_nested(&used_bg->data_rwsem, SINGLE_DEPTH_NESTING);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007441
7442 spin_lock(&cluster->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007443 if (used_bg == cluster->block_group)
7444 return used_bg;
7445
7446 up_read(&used_bg->data_rwsem);
7447 btrfs_put_block_group(used_bg);
7448 }
Miao Xiee570fd22014-06-19 10:42:50 +08007449}
7450
7451static inline void
7452btrfs_release_block_group(struct btrfs_block_group_cache *cache,
7453 int delalloc)
7454{
7455 if (delalloc)
7456 up_read(&cache->data_rwsem);
7457 btrfs_put_block_group(cache);
7458}
7459
Josef Bacik817d52f2009-07-13 21:29:25 -04007460/*
Chris Masonfec577f2007-02-26 10:40:21 -05007461 * walks the btree of allocated extents and find a hole of a given size.
7462 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08007463 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04007464 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08007465 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05007466 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08007467 *
7468 * If there is no suitable free space, we will record the max size of
7469 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05007470 */
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05007471static noinline int find_free_extent(struct btrfs_fs_info *fs_info,
Wang Xiaoguang18513092016-07-25 15:51:40 +08007472 u64 ram_bytes, u64 num_bytes, u64 empty_size,
7473 u64 hint_byte, struct btrfs_key *ins,
7474 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007475{
Josef Bacik80eb2342008-10-29 14:49:05 -04007476 int ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007477 struct btrfs_root *root = fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007478 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04007479 struct btrfs_block_group_cache *block_group = NULL;
Josef Bacik81c9ad22012-01-18 10:56:06 -05007480 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08007481 u64 max_extent_size = 0;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007482 u64 empty_cluster = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04007483 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007484 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00007485 int index = __get_raid_index(flags);
Josef Bacik0a243252009-09-11 16:11:20 -04007486 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007487 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04007488 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08007489 bool have_caching_bg = false;
chandan13a0db52015-11-02 13:59:46 +05307490 bool orig_have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007491 bool full_search = false;
Chris Masonfec577f2007-02-26 10:40:21 -05007492
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007493 WARN_ON(num_bytes < fs_info->sectorsize);
David Sterba962a2982014-06-04 18:41:45 +02007494 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04007495 ins->objectid = 0;
7496 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04007497
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007498 trace_find_free_extent(fs_info, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05007499
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007500 space_info = __find_space_info(fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007501 if (!space_info) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007502 btrfs_err(fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007503 return -ENOSPC;
7504 }
Josef Bacik2552d172009-04-03 10:14:19 -04007505
Josef Bacik67377732010-09-16 16:19:09 -04007506 /*
Josef Bacik4f4db212015-09-29 11:40:47 -04007507 * If our free space is heavily fragmented we may not be able to make
7508 * big contiguous allocations, so instead of doing the expensive search
7509 * for free space, simply return ENOSPC with our max_extent_size so we
7510 * can go ahead and search for a more manageable chunk.
7511 *
7512 * If our max_extent_size is large enough for our allocation simply
7513 * disable clustering since we will likely not be able to find enough
7514 * space to create a cluster and induce latency trying.
Josef Bacik67377732010-09-16 16:19:09 -04007515 */
Josef Bacik4f4db212015-09-29 11:40:47 -04007516 if (unlikely(space_info->max_extent_size)) {
7517 spin_lock(&space_info->lock);
7518 if (space_info->max_extent_size &&
7519 num_bytes > space_info->max_extent_size) {
7520 ins->offset = space_info->max_extent_size;
7521 spin_unlock(&space_info->lock);
7522 return -ENOSPC;
7523 } else if (space_info->max_extent_size) {
7524 use_cluster = false;
7525 }
7526 spin_unlock(&space_info->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007527 }
7528
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007529 last_ptr = fetch_cluster_info(fs_info, space_info, &empty_cluster);
Chris Mason239b14b2008-03-24 15:02:07 -04007530 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007531 spin_lock(&last_ptr->lock);
7532 if (last_ptr->block_group)
7533 hint_byte = last_ptr->window_start;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007534 if (last_ptr->fragmented) {
7535 /*
7536 * We still set window_start so we can keep track of the
7537 * last place we found an allocation to try and save
7538 * some time.
7539 */
7540 hint_byte = last_ptr->window_start;
7541 use_cluster = false;
7542 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007543 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007544 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007545
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007546 search_start = max(search_start, first_logical_byte(fs_info, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04007547 search_start = max(search_start, hint_byte);
Josef Bacik2552d172009-04-03 10:14:19 -04007548 if (search_start == hint_byte) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007549 block_group = btrfs_lookup_block_group(fs_info, search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04007550 /*
7551 * we don't want to use the block group if it doesn't match our
7552 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05007553 *
7554 * However if we are re-searching with an ideal block group
7555 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04007556 */
David Sterbab6919a52013-04-29 13:39:40 +00007557 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05007558 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04007559 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007560 if (list_empty(&block_group->list) ||
7561 block_group->ro) {
7562 /*
7563 * someone is removing this block group,
7564 * we can't jump into the have_block_group
7565 * target because our list pointers are not
7566 * valid
7567 */
7568 btrfs_put_block_group(block_group);
7569 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05007570 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007571 index = get_block_group_index(block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007572 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04007573 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05007574 }
Josef Bacik2552d172009-04-03 10:14:19 -04007575 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007576 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04007577 }
Chris Mason42e70e72008-11-07 18:17:11 -05007578 }
Josef Bacik2552d172009-04-03 10:14:19 -04007579search:
Miao Xie60d2adb2011-09-09 17:34:35 +08007580 have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007581 if (index == 0 || index == __get_raid_index(flags))
7582 full_search = true;
Josef Bacik80eb2342008-10-29 14:49:05 -04007583 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007584 list_for_each_entry(block_group, &space_info->block_groups[index],
7585 list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04007586 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04007587 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05007588
Jeff Mahoney14443932017-07-19 23:25:51 -04007589 /* If the block group is read-only, we can skip it entirely. */
7590 if (unlikely(block_group->ro))
7591 continue;
7592
Miao Xiee570fd22014-06-19 10:42:50 +08007593 btrfs_grab_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007594 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05007595
Chris Mason83a50de2010-12-13 15:06:46 -05007596 /*
7597 * this can happen if we end up cycling through all the
7598 * raid types, but we want to make sure we only allocate
7599 * for the proper type.
7600 */
David Sterbab6919a52013-04-29 13:39:40 +00007601 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05007602 u64 extra = BTRFS_BLOCK_GROUP_DUP |
7603 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007604 BTRFS_BLOCK_GROUP_RAID5 |
7605 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05007606 BTRFS_BLOCK_GROUP_RAID10;
7607
7608 /*
7609 * if they asked for extra copies and this block group
7610 * doesn't provide them, bail. This does allow us to
7611 * fill raid0 from raid1.
7612 */
David Sterbab6919a52013-04-29 13:39:40 +00007613 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05007614 goto loop;
7615 }
7616
Josef Bacik2552d172009-04-03 10:14:19 -04007617have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05007618 cached = block_group_cache_done(block_group);
7619 if (unlikely(!cached)) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007620 have_caching_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00007621 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04007622 BUG_ON(ret < 0);
7623 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05007624 }
7625
Josef Bacik36cce922013-08-05 11:15:21 -04007626 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
7627 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007628
Josef Bacik0a243252009-09-11 16:11:20 -04007629 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007630 * Ok we want to try and use the cluster allocator, so
7631 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04007632 */
Josef Bacikc759c4e2015-10-02 15:25:10 -04007633 if (last_ptr && use_cluster) {
Miao Xie215a63d2014-01-15 20:00:56 +08007634 struct btrfs_block_group_cache *used_block_group;
Chris Mason8de972b2013-01-04 15:39:43 -05007635 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007636 /*
7637 * the refill lock keeps out other
7638 * people trying to start a new cluster
7639 */
Miao Xiee570fd22014-06-19 10:42:50 +08007640 used_block_group = btrfs_lock_cluster(block_group,
7641 last_ptr,
7642 delalloc);
7643 if (!used_block_group)
Chris Mason44fb5512009-06-04 15:34:51 -04007644 goto refill_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -04007645
Miao Xiee570fd22014-06-19 10:42:50 +08007646 if (used_block_group != block_group &&
7647 (used_block_group->ro ||
7648 !block_group_bits(used_block_group, flags)))
7649 goto release_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007650
7651 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007652 last_ptr,
7653 num_bytes,
7654 used_block_group->key.objectid,
7655 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007656 if (offset) {
7657 /* we have a block, we're done */
7658 spin_unlock(&last_ptr->refill_lock);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007659 trace_btrfs_reserve_extent_cluster(fs_info,
Miao Xie89d43462014-01-15 20:00:57 +08007660 used_block_group,
7661 search_start, num_bytes);
Miao Xie215a63d2014-01-15 20:00:56 +08007662 if (used_block_group != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08007663 btrfs_release_block_group(block_group,
7664 delalloc);
Miao Xie215a63d2014-01-15 20:00:56 +08007665 block_group = used_block_group;
7666 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007667 goto checks;
7668 }
7669
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007670 WARN_ON(last_ptr->block_group != used_block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007671release_cluster:
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007672 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
7673 * set up a new clusters, so lets just skip it
7674 * and let the allocator find whatever block
7675 * it can find. If we reach this point, we
7676 * will have tried the cluster allocator
7677 * plenty of times and not have found
7678 * anything, so we are likely way too
7679 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007680 * anything.
7681 *
7682 * However, if the cluster is taken from the
7683 * current block group, release the cluster
7684 * first, so that we stand a better chance of
7685 * succeeding in the unclustered
7686 * allocation. */
7687 if (loop >= LOOP_NO_EMPTY_SIZE &&
Miao Xiee570fd22014-06-19 10:42:50 +08007688 used_block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007689 spin_unlock(&last_ptr->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007690 btrfs_release_block_group(used_block_group,
7691 delalloc);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007692 goto unclustered_alloc;
7693 }
7694
Chris Masonfa9c0d792009-04-03 09:47:43 -04007695 /*
7696 * this cluster didn't work out, free it and
7697 * start over
7698 */
7699 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7700
Miao Xiee570fd22014-06-19 10:42:50 +08007701 if (used_block_group != block_group)
7702 btrfs_release_block_group(used_block_group,
7703 delalloc);
7704refill_cluster:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007705 if (loop >= LOOP_NO_EMPTY_SIZE) {
7706 spin_unlock(&last_ptr->refill_lock);
7707 goto unclustered_alloc;
7708 }
7709
Chris Mason8de972b2013-01-04 15:39:43 -05007710 aligned_cluster = max_t(unsigned long,
7711 empty_cluster + empty_size,
7712 block_group->full_stripe_len);
7713
Chris Masonfa9c0d792009-04-03 09:47:43 -04007714 /* allocate a cluster in this block group */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007715 ret = btrfs_find_space_cluster(fs_info, block_group,
Josef Bacik00361582013-08-14 14:02:47 -04007716 last_ptr, search_start,
7717 num_bytes,
7718 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007719 if (ret == 0) {
7720 /*
7721 * now pull our allocation out of this
7722 * cluster
7723 */
7724 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007725 last_ptr,
7726 num_bytes,
7727 search_start,
7728 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007729 if (offset) {
7730 /* we found one, proceed */
7731 spin_unlock(&last_ptr->refill_lock);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007732 trace_btrfs_reserve_extent_cluster(fs_info,
Josef Bacik3f7de032011-11-10 08:29:20 -05007733 block_group, search_start,
7734 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007735 goto checks;
7736 }
Josef Bacik0a243252009-09-11 16:11:20 -04007737 } else if (!cached && loop > LOOP_CACHING_NOWAIT
7738 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007739 spin_unlock(&last_ptr->refill_lock);
7740
Josef Bacik0a243252009-09-11 16:11:20 -04007741 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007742 wait_block_group_cache_progress(block_group,
7743 num_bytes + empty_cluster + empty_size);
7744 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007745 }
Josef Bacik817d52f2009-07-13 21:29:25 -04007746
Chris Masonfa9c0d792009-04-03 09:47:43 -04007747 /*
7748 * at this point we either didn't find a cluster
7749 * or we weren't able to allocate a block from our
7750 * cluster. Free the cluster we've been trying
7751 * to use, and go to the next block group
7752 */
Josef Bacik0a243252009-09-11 16:11:20 -04007753 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007754 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04007755 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007756 }
7757
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007758unclustered_alloc:
Josef Bacikc759c4e2015-10-02 15:25:10 -04007759 /*
7760 * We are doing an unclustered alloc, set the fragmented flag so
7761 * we don't bother trying to setup a cluster again until we get
7762 * more space.
7763 */
7764 if (unlikely(last_ptr)) {
7765 spin_lock(&last_ptr->lock);
7766 last_ptr->fragmented = 1;
7767 spin_unlock(&last_ptr->lock);
7768 }
Liu Bo0c9b36e2017-02-13 15:42:30 -08007769 if (cached) {
7770 struct btrfs_free_space_ctl *ctl =
7771 block_group->free_space_ctl;
7772
7773 spin_lock(&ctl->tree_lock);
7774 if (ctl->free_space <
7775 num_bytes + empty_cluster + empty_size) {
7776 if (ctl->free_space > max_extent_size)
7777 max_extent_size = ctl->free_space;
7778 spin_unlock(&ctl->tree_lock);
7779 goto loop;
7780 }
7781 spin_unlock(&ctl->tree_lock);
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007782 }
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007783
Josef Bacik6226cb02009-04-03 10:14:18 -04007784 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08007785 num_bytes, empty_size,
7786 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007787 /*
7788 * If we didn't find a chunk, and we haven't failed on this
7789 * block group before, and this block group is in the middle of
7790 * caching and we are ok with waiting, then go ahead and wait
7791 * for progress to be made, and set failed_alloc to true.
7792 *
7793 * If failed_alloc is true then we've already waited on this
7794 * block group once and should move on to the next block group.
7795 */
7796 if (!offset && !failed_alloc && !cached &&
7797 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007798 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007799 num_bytes + empty_size);
7800 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007801 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007802 } else if (!offset) {
7803 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04007804 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007805checks:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007806 search_start = ALIGN(offset, fs_info->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04007807
Josef Bacik2552d172009-04-03 10:14:19 -04007808 /* move on to the next group */
7809 if (search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08007810 block_group->key.objectid + block_group->key.offset) {
7811 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04007812 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04007813 }
Josef Bacik80eb2342008-10-29 14:49:05 -04007814
Josef Bacik6226cb02009-04-03 10:14:18 -04007815 if (offset < search_start)
Miao Xie215a63d2014-01-15 20:00:56 +08007816 btrfs_add_free_space(block_group, offset,
Josef Bacik6226cb02009-04-03 10:14:18 -04007817 search_start - offset);
7818 BUG_ON(offset > search_start);
7819
Wang Xiaoguang18513092016-07-25 15:51:40 +08007820 ret = btrfs_add_reserved_bytes(block_group, ram_bytes,
7821 num_bytes, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007822 if (ret == -EAGAIN) {
Miao Xie215a63d2014-01-15 20:00:56 +08007823 btrfs_add_free_space(block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007824 goto loop;
7825 }
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007826 btrfs_inc_block_group_reservations(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -04007827
Josef Bacik2552d172009-04-03 10:14:19 -04007828 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007829 ins->objectid = search_start;
7830 ins->offset = num_bytes;
7831
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007832 trace_btrfs_reserve_extent(fs_info, block_group,
Josef Bacik3f7de032011-11-10 08:29:20 -05007833 search_start, num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08007834 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007835 break;
7836loop:
Josef Bacik0a243252009-09-11 16:11:20 -04007837 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007838 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007839 BUG_ON(index != get_block_group_index(block_group));
Miao Xiee570fd22014-06-19 10:42:50 +08007840 btrfs_release_block_group(block_group, delalloc);
Jeff Mahoney14443932017-07-19 23:25:51 -04007841 cond_resched();
Josef Bacik2552d172009-04-03 10:14:19 -04007842 }
7843 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05007844
chandan13a0db52015-11-02 13:59:46 +05307845 if ((loop == LOOP_CACHING_NOWAIT) && have_caching_bg
7846 && !orig_have_caching_bg)
7847 orig_have_caching_bg = true;
7848
Miao Xie60d2adb2011-09-09 17:34:35 +08007849 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
7850 goto search;
7851
Yan, Zhengb742bb82010-05-16 10:46:24 -04007852 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
7853 goto search;
7854
Josef Bacik285ff5a2012-01-13 15:27:45 -05007855 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05007856 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7857 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04007858 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7859 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7860 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7861 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04007862 */
Josef Bacik723bda22011-05-27 16:11:38 -04007863 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007864 index = 0;
Josef Bacika5e681d2015-10-01 14:54:10 -04007865 if (loop == LOOP_CACHING_NOWAIT) {
7866 /*
7867 * We want to skip the LOOP_CACHING_WAIT step if we
Nicholas D Steeves01327612016-05-19 21:18:45 -04007868 * don't have any uncached bgs and we've already done a
Josef Bacika5e681d2015-10-01 14:54:10 -04007869 * full search through.
7870 */
chandan13a0db52015-11-02 13:59:46 +05307871 if (orig_have_caching_bg || !full_search)
Josef Bacika5e681d2015-10-01 14:54:10 -04007872 loop = LOOP_CACHING_WAIT;
7873 else
7874 loop = LOOP_ALLOC_CHUNK;
7875 } else {
7876 loop++;
7877 }
7878
Josef Bacik817d52f2009-07-13 21:29:25 -04007879 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04007880 struct btrfs_trans_handle *trans;
Wang Shilongf017f152014-03-13 13:19:47 +08007881 int exist = 0;
Josef Bacik00361582013-08-14 14:02:47 -04007882
Wang Shilongf017f152014-03-13 13:19:47 +08007883 trans = current->journal_info;
7884 if (trans)
7885 exist = 1;
7886 else
7887 trans = btrfs_join_transaction(root);
7888
Josef Bacik00361582013-08-14 14:02:47 -04007889 if (IS_ERR(trans)) {
7890 ret = PTR_ERR(trans);
7891 goto out;
7892 }
7893
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007894 ret = do_chunk_alloc(trans, fs_info, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04007895 CHUNK_ALLOC_FORCE);
Josef Bacika5e681d2015-10-01 14:54:10 -04007896
7897 /*
7898 * If we can't allocate a new chunk we've already looped
7899 * through at least once, move on to the NO_EMPTY_SIZE
7900 * case.
7901 */
7902 if (ret == -ENOSPC)
7903 loop = LOOP_NO_EMPTY_SIZE;
7904
Josef Bacikea658ba2012-09-11 16:57:25 -04007905 /*
7906 * Do not bail out on ENOSPC since we
7907 * can do more things.
7908 */
Josef Bacik00361582013-08-14 14:02:47 -04007909 if (ret < 0 && ret != -ENOSPC)
Jeff Mahoney66642832016-06-10 18:19:25 -04007910 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -04007911 else
7912 ret = 0;
Wang Shilongf017f152014-03-13 13:19:47 +08007913 if (!exist)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04007914 btrfs_end_transaction(trans);
Josef Bacik00361582013-08-14 14:02:47 -04007915 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04007916 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04007917 }
7918
7919 if (loop == LOOP_NO_EMPTY_SIZE) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007920 /*
7921 * Don't loop again if we already have no empty_size and
7922 * no empty_cluster.
7923 */
7924 if (empty_size == 0 &&
7925 empty_cluster == 0) {
7926 ret = -ENOSPC;
7927 goto out;
7928 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007929 empty_size = 0;
7930 empty_cluster = 0;
7931 }
Chris Mason42e70e72008-11-07 18:17:11 -05007932
Josef Bacik723bda22011-05-27 16:11:38 -04007933 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04007934 } else if (!ins->objectid) {
7935 ret = -ENOSPC;
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04007936 } else if (ins->objectid) {
Josef Bacikc759c4e2015-10-02 15:25:10 -04007937 if (!use_cluster && last_ptr) {
7938 spin_lock(&last_ptr->lock);
7939 last_ptr->window_start = ins->objectid;
7940 spin_unlock(&last_ptr->lock);
7941 }
Josef Bacik2552d172009-04-03 10:14:19 -04007942 ret = 0;
7943 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007944out:
Josef Bacik4f4db212015-09-29 11:40:47 -04007945 if (ret == -ENOSPC) {
7946 spin_lock(&space_info->lock);
7947 space_info->max_extent_size = max_extent_size;
7948 spin_unlock(&space_info->lock);
Miao Xiea4820392013-09-09 13:19:42 +08007949 ins->offset = max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04007950 }
Chris Mason0f70abe2007-02-28 16:46:22 -05007951 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05007952}
Chris Masonec44a352008-04-28 15:29:52 -04007953
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007954static void dump_space_info(struct btrfs_fs_info *fs_info,
7955 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007956 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04007957{
7958 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007959 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007960
Josef Bacik9ed74f22009-09-11 16:12:44 -04007961 spin_lock(&info->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007962 btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull",
7963 info->flags,
Liu Bo41361352017-02-13 15:42:21 -08007964 info->total_bytes - btrfs_space_info_used(info, true),
7965 info->full ? "" : "not ");
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007966 btrfs_info(fs_info,
7967 "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu",
7968 info->total_bytes, info->bytes_used, info->bytes_pinned,
7969 info->bytes_reserved, info->bytes_may_use,
7970 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007971 spin_unlock(&info->lock);
7972
7973 if (!dump_block_groups)
7974 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007975
Josef Bacik80eb2342008-10-29 14:49:05 -04007976 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007977again:
7978 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04007979 spin_lock(&cache->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007980 btrfs_info(fs_info,
7981 "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s",
7982 cache->key.objectid, cache->key.offset,
7983 btrfs_block_group_used(&cache->item), cache->pinned,
7984 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04007985 btrfs_dump_free_space(cache, bytes);
7986 spin_unlock(&cache->lock);
7987 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04007988 if (++index < BTRFS_NR_RAID_TYPES)
7989 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04007990 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04007991}
Zheng Yane8569812008-09-26 10:05:48 -04007992
Wang Xiaoguang18513092016-07-25 15:51:40 +08007993int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
Yan Zheng11833d62009-09-11 16:11:19 -04007994 u64 num_bytes, u64 min_alloc_size,
7995 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08007996 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007997{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007998 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik36af4e02015-09-25 16:13:11 -04007999 bool final_tried = num_bytes == min_alloc_size;
David Sterbab6919a52013-04-29 13:39:40 +00008000 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05008001 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04008002
Jeff Mahoney1b868262017-05-17 11:38:35 -04008003 flags = get_alloc_profile_by_root(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04008004again:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008005 WARN_ON(num_bytes < fs_info->sectorsize);
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05008006 ret = find_free_extent(fs_info, ram_bytes, num_bytes, empty_size,
Wang Xiaoguang18513092016-07-25 15:51:40 +08008007 hint_byte, ins, flags, delalloc);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008008 if (!ret && !is_data) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008009 btrfs_dec_block_group_reservations(fs_info, ins->objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008010 } else if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08008011 if (!final_tried && ins->offset) {
8012 num_bytes = min(num_bytes >> 1, ins->offset);
Jeff Mahoneyda170662016-06-15 09:22:56 -04008013 num_bytes = round_down(num_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008014 fs_info->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05008015 num_bytes = max(num_bytes, min_alloc_size);
Wang Xiaoguang18513092016-07-25 15:51:40 +08008016 ram_bytes = num_bytes;
Miao Xie9e622d62012-01-26 15:01:12 -05008017 if (num_bytes == min_alloc_size)
8018 final_tried = true;
8019 goto again;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008020 } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xie9e622d62012-01-26 15:01:12 -05008021 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008022
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008023 sinfo = __find_space_info(fs_info, flags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008024 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008025 "allocation failed flags %llu, wanted %llu",
8026 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01008027 if (sinfo)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008028 dump_space_info(fs_info, sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05008029 }
Chris Mason925baed2008-06-25 16:01:30 -04008030 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008031
8032 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008033}
8034
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008035static int __btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008036 u64 start, u64 len,
8037 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04008038{
Josef Bacik0f9dd462008-09-23 13:14:11 -04008039 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05008040 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008041
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008042 cache = btrfs_lookup_block_group(fs_info, start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008043 if (!cache) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008044 btrfs_err(fs_info, "Unable to find block group for %llu",
8045 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008046 return -ENOSPC;
8047 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05008048
Chris Masone688b7252011-10-31 20:52:39 -04008049 if (pin)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008050 pin_down_extent(fs_info, cache, start, len, 1);
Chris Masone688b7252011-10-31 20:52:39 -04008051 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008052 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008053 ret = btrfs_discard_extent(fs_info, start, len, NULL);
Chris Masone688b7252011-10-31 20:52:39 -04008054 btrfs_add_free_space(cache, start, len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08008055 btrfs_free_reserved_bytes(cache, len, delalloc);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008056 trace_btrfs_reserved_extent_free(fs_info, start, len);
Chris Masone688b7252011-10-31 20:52:39 -04008057 }
Dongsheng Yang31193212014-12-12 16:44:35 +08008058
Chris Masonfa9c0d792009-04-03 09:47:43 -04008059 btrfs_put_block_group(cache);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008060 return ret;
8061}
8062
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008063int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008064 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04008065{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008066 return __btrfs_free_reserved_extent(fs_info, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04008067}
8068
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008069int btrfs_free_and_pin_reserved_extent(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04008070 u64 start, u64 len)
8071{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008072 return __btrfs_free_reserved_extent(fs_info, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04008073}
8074
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008075static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008076 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008077 u64 parent, u64 root_objectid,
8078 u64 flags, u64 owner, u64 offset,
8079 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008080{
8081 int ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008082 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008083 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008084 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008085 struct extent_buffer *leaf;
8086 int type;
8087 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04008088
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008089 if (parent > 0)
8090 type = BTRFS_SHARED_DATA_REF_KEY;
8091 else
8092 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04008093
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008094 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05008095
8096 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008097 if (!path)
8098 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05008099
Chris Masonb9473432009-03-13 11:00:37 -04008100 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008101 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8102 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008103 if (ret) {
8104 btrfs_free_path(path);
8105 return ret;
8106 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008107
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008108 leaf = path->nodes[0];
8109 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05008110 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008111 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
8112 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8113 btrfs_set_extent_flags(leaf, extent_item,
8114 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05008115
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008116 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8117 btrfs_set_extent_inline_ref_type(leaf, iref, type);
8118 if (parent > 0) {
8119 struct btrfs_shared_data_ref *ref;
8120 ref = (struct btrfs_shared_data_ref *)(iref + 1);
8121 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8122 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
8123 } else {
8124 struct btrfs_extent_data_ref *ref;
8125 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
8126 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
8127 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
8128 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
8129 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
8130 }
Chris Mason47e4bb92008-02-01 14:51:59 -05008131
8132 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05008133 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04008134
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008135 ret = remove_from_free_space_tree(trans, fs_info, ins->objectid,
8136 ins->offset);
8137 if (ret)
8138 return ret;
8139
Jeff Mahoney6202df62016-06-22 18:54:22 -04008140 ret = update_block_group(trans, fs_info, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008141 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008142 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008143 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05008144 BUG();
8145 }
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008146 trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008147 return ret;
8148}
8149
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008150static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008151 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008152 u64 parent, u64 root_objectid,
8153 u64 flags, struct btrfs_disk_key *key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01008154 int level, struct btrfs_key *ins)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008155{
8156 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008157 struct btrfs_extent_item *extent_item;
8158 struct btrfs_tree_block_info *block_info;
8159 struct btrfs_extent_inline_ref *iref;
8160 struct btrfs_path *path;
8161 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05008162 u32 size = sizeof(*extent_item) + sizeof(*iref);
Josef Bacikfcebe452014-05-13 17:30:47 -07008163 u64 num_bytes = ins->offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008164 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Josef Bacik3173a182013-03-07 14:22:04 -05008165
8166 if (!skinny_metadata)
8167 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008168
8169 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04008170 if (!path) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008171 btrfs_free_and_pin_reserved_extent(fs_info, ins->objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008172 fs_info->nodesize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07008173 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04008174 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008175
8176 path->leave_spinning = 1;
8177 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8178 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008179 if (ret) {
Chris Masondd825252015-04-01 08:36:05 -07008180 btrfs_free_path(path);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008181 btrfs_free_and_pin_reserved_extent(fs_info, ins->objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008182 fs_info->nodesize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008183 return ret;
8184 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008185
8186 leaf = path->nodes[0];
8187 extent_item = btrfs_item_ptr(leaf, path->slots[0],
8188 struct btrfs_extent_item);
8189 btrfs_set_extent_refs(leaf, extent_item, 1);
8190 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8191 btrfs_set_extent_flags(leaf, extent_item,
8192 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008193
Josef Bacik3173a182013-03-07 14:22:04 -05008194 if (skinny_metadata) {
8195 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008196 num_bytes = fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05008197 } else {
8198 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
8199 btrfs_set_tree_block_key(leaf, block_info, key);
8200 btrfs_set_tree_block_level(leaf, block_info, level);
8201 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
8202 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008203
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008204 if (parent > 0) {
8205 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
8206 btrfs_set_extent_inline_ref_type(leaf, iref,
8207 BTRFS_SHARED_BLOCK_REF_KEY);
8208 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8209 } else {
8210 btrfs_set_extent_inline_ref_type(leaf, iref,
8211 BTRFS_TREE_BLOCK_REF_KEY);
8212 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
8213 }
8214
8215 btrfs_mark_buffer_dirty(leaf);
8216 btrfs_free_path(path);
8217
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008218 ret = remove_from_free_space_tree(trans, fs_info, ins->objectid,
8219 num_bytes);
8220 if (ret)
8221 return ret;
8222
Jeff Mahoney6202df62016-06-22 18:54:22 -04008223 ret = update_block_group(trans, fs_info, ins->objectid,
8224 fs_info->nodesize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008225 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008226 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008227 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008228 BUG();
8229 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04008230
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008231 trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008232 fs_info->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008233 return ret;
8234}
8235
8236int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008237 struct btrfs_root *root, u64 owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08008238 u64 offset, u64 ram_bytes,
8239 struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008240{
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008241 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008242 int ret;
Chris Mason1c2308f82008-09-23 13:14:13 -04008243
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008244 BUG_ON(root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04008245
Josef Bacikfd708b82017-09-29 15:43:50 -04008246 btrfs_ref_tree_mod(root, ins->objectid, ins->offset, 0,
8247 root->root_key.objectid, owner, offset,
8248 BTRFS_ADD_DELAYED_EXTENT);
8249
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008250 ret = btrfs_add_delayed_data_ref(fs_info, trans, ins->objectid,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008251 ins->offset, 0,
8252 root->root_key.objectid, owner,
Omar Sandoval7be07912017-06-06 16:45:30 -07008253 offset, ram_bytes,
8254 BTRFS_ADD_DELAYED_EXTENT, NULL, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008255 return ret;
8256}
Chris Masone02119d2008-09-05 16:13:11 -04008257
8258/*
8259 * this is used by the tree logging recovery code. It records that
8260 * an extent has been allocated and makes sure to clear the free
8261 * space cache bits as well
8262 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008263int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008264 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008265 u64 root_objectid, u64 owner, u64 offset,
8266 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04008267{
8268 int ret;
8269 struct btrfs_block_group_cache *block_group;
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008270 struct btrfs_space_info *space_info;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008271
8272 /*
8273 * Mixed block groups will exclude before processing the log so we only
Nicholas D Steeves01327612016-05-19 21:18:45 -04008274 * need to do the exclude dance if this fs isn't mixed.
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008275 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008276 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008277 ret = __exclude_logged_extent(fs_info, ins->objectid,
8278 ins->offset);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008279 if (ret)
8280 return ret;
8281 }
Chris Masone02119d2008-09-05 16:13:11 -04008282
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008283 block_group = btrfs_lookup_block_group(fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008284 if (!block_group)
8285 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04008286
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008287 space_info = block_group->space_info;
8288 spin_lock(&space_info->lock);
8289 spin_lock(&block_group->lock);
8290 space_info->bytes_reserved += ins->offset;
8291 block_group->reserved += ins->offset;
8292 spin_unlock(&block_group->lock);
8293 spin_unlock(&space_info->lock);
8294
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008295 ret = alloc_reserved_file_extent(trans, fs_info, 0, root_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008296 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04008297 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04008298 return ret;
8299}
8300
Eric Sandeen48a3b632013-04-25 20:41:01 +00008301static struct extent_buffer *
8302btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
David Sterbafe864572014-06-15 02:28:42 +02008303 u64 bytenr, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04008304{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008305 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason65b51a02008-08-01 15:11:20 -04008306 struct extent_buffer *buf;
8307
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008308 buf = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008309 if (IS_ERR(buf))
8310 return buf;
8311
Chris Mason65b51a02008-08-01 15:11:20 -04008312 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04008313 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04008314 btrfs_tree_lock(buf);
David Sterba7c302b42017-02-10 18:47:57 +01008315 clean_tree_block(fs_info, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05008316 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008317
8318 btrfs_set_lock_blocking(buf);
David Sterba4db8c522015-12-03 13:06:46 +01008319 set_extent_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008320
Chris Masond0c803c2008-09-11 16:17:57 -04008321 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01008322 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008323 /*
8324 * we allow two log transactions at a time, use different
8325 * EXENT bit to differentiate dirty pages.
8326 */
Filipe Manana656f30d2014-09-26 12:25:56 +01008327 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008328 set_extent_dirty(&root->dirty_log_pages, buf->start,
8329 buf->start + buf->len - 1, GFP_NOFS);
8330 else
8331 set_extent_new(&root->dirty_log_pages, buf->start,
David Sterba3744dbe2016-04-26 23:54:39 +02008332 buf->start + buf->len - 1);
Chris Masond0c803c2008-09-11 16:17:57 -04008333 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01008334 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04008335 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
8336 buf->start + buf->len - 1, GFP_NOFS);
8337 }
Jeff Mahoney64c12922016-06-08 00:36:38 -04008338 trans->dirty = true;
Chris Masonb4ce94d2009-02-04 09:25:08 -05008339 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04008340 return buf;
8341}
8342
Yan, Zhengf0486c62010-05-16 10:46:25 -04008343static struct btrfs_block_rsv *
8344use_block_rsv(struct btrfs_trans_handle *trans,
8345 struct btrfs_root *root, u32 blocksize)
8346{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008347 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008348 struct btrfs_block_rsv *block_rsv;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008349 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008350 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00008351 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008352
8353 block_rsv = get_block_rsv(trans, root);
8354
Miao Xieb586b322013-05-13 13:55:10 +00008355 if (unlikely(block_rsv->size == 0))
8356 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00008357again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008358 ret = block_rsv_use_bytes(block_rsv, blocksize);
8359 if (!ret)
8360 return block_rsv;
8361
Miao Xieb586b322013-05-13 13:55:10 +00008362 if (block_rsv->failfast)
8363 return ERR_PTR(ret);
8364
Miao Xied88033d2013-05-13 13:55:12 +00008365 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
8366 global_updated = true;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008367 update_global_block_rsv(fs_info);
Miao Xied88033d2013-05-13 13:55:12 +00008368 goto again;
8369 }
8370
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008371 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xieb586b322013-05-13 13:55:10 +00008372 static DEFINE_RATELIMIT_STATE(_rs,
8373 DEFAULT_RATELIMIT_INTERVAL * 10,
8374 /*DEFAULT_RATELIMIT_BURST*/ 1);
8375 if (__ratelimit(&_rs))
8376 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05008377 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00008378 }
8379try_reserve:
8380 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
8381 BTRFS_RESERVE_NO_FLUSH);
8382 if (!ret)
8383 return block_rsv;
8384 /*
8385 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00008386 * the global reserve if its space type is the same as the global
8387 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00008388 */
Miao Xie5881cfc2013-05-13 13:55:11 +00008389 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
8390 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00008391 ret = block_rsv_use_bytes(global_rsv, blocksize);
8392 if (!ret)
8393 return global_rsv;
8394 }
8395 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008396}
8397
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008398static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
8399 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008400{
8401 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008402 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008403}
8404
Chris Masonfec577f2007-02-26 10:40:21 -05008405/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04008406 * finds a free extent and does all the dirty work required for allocation
Omar Sandoval67b78592015-02-24 02:47:04 -08008407 * returns the tree buffer or an ERR_PTR on error.
Chris Masonfec577f2007-02-26 10:40:21 -05008408 */
David Sterba4d75f8a2014-06-15 01:54:12 +02008409struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
Omar Sandoval310712b2017-01-17 23:24:37 -08008410 struct btrfs_root *root,
8411 u64 parent, u64 root_objectid,
8412 const struct btrfs_disk_key *key,
8413 int level, u64 hint,
8414 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05008415{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008416 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone2fa7222007-03-12 16:22:34 -04008417 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008418 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04008419 struct extent_buffer *buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008420 struct btrfs_delayed_extent_op *extent_op;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008421 u64 flags = 0;
8422 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008423 u32 blocksize = fs_info->nodesize;
8424 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008425
David Sterba05653ef2016-07-15 15:23:37 +02008426#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008427 if (btrfs_is_testing(fs_info)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008428 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
David Sterbafe864572014-06-15 02:28:42 +02008429 level);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008430 if (!IS_ERR(buf))
8431 root->alloc_bytenr += blocksize;
8432 return buf;
8433 }
David Sterba05653ef2016-07-15 15:23:37 +02008434#endif
David Sterbafccb84c2014-09-29 23:53:21 +02008435
Yan, Zhengf0486c62010-05-16 10:46:25 -04008436 block_rsv = use_block_rsv(trans, root, blocksize);
8437 if (IS_ERR(block_rsv))
8438 return ERR_CAST(block_rsv);
8439
Wang Xiaoguang18513092016-07-25 15:51:40 +08008440 ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08008441 empty_size, hint, &ins, 0, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008442 if (ret)
8443 goto out_unuse;
Chris Mason55c69072008-01-09 15:55:33 -05008444
David Sterbafe864572014-06-15 02:28:42 +02008445 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level);
Omar Sandoval67b78592015-02-24 02:47:04 -08008446 if (IS_ERR(buf)) {
8447 ret = PTR_ERR(buf);
8448 goto out_free_reserved;
8449 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008450
8451 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
8452 if (parent == 0)
8453 parent = ins.objectid;
8454 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
8455 } else
8456 BUG_ON(parent > 0);
8457
8458 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Miao Xie78a61842012-11-21 02:21:28 +00008459 extent_op = btrfs_alloc_delayed_extent_op();
Omar Sandoval67b78592015-02-24 02:47:04 -08008460 if (!extent_op) {
8461 ret = -ENOMEM;
8462 goto out_free_buf;
8463 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008464 if (key)
8465 memcpy(&extent_op->key, key, sizeof(extent_op->key));
8466 else
8467 memset(&extent_op->key, 0, sizeof(extent_op->key));
8468 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01008469 extent_op->update_key = skinny_metadata ? false : true;
8470 extent_op->update_flags = true;
8471 extent_op->is_data = false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04008472 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008473
Josef Bacikfd708b82017-09-29 15:43:50 -04008474 btrfs_ref_tree_mod(root, ins.objectid, ins.offset, parent,
8475 root_objectid, level, 0,
8476 BTRFS_ADD_DELAYED_EXTENT);
Omar Sandoval7be07912017-06-06 16:45:30 -07008477 ret = btrfs_add_delayed_tree_ref(fs_info, trans, ins.objectid,
8478 ins.offset, parent,
8479 root_objectid, level,
Omar Sandoval67b78592015-02-24 02:47:04 -08008480 BTRFS_ADD_DELAYED_EXTENT,
Omar Sandoval7be07912017-06-06 16:45:30 -07008481 extent_op, NULL, NULL);
Omar Sandoval67b78592015-02-24 02:47:04 -08008482 if (ret)
8483 goto out_free_delayed;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008484 }
Chris Masonfec577f2007-02-26 10:40:21 -05008485 return buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008486
8487out_free_delayed:
8488 btrfs_free_delayed_extent_op(extent_op);
8489out_free_buf:
8490 free_extent_buffer(buf);
8491out_free_reserved:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008492 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008493out_unuse:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008494 unuse_block_rsv(fs_info, block_rsv, blocksize);
Omar Sandoval67b78592015-02-24 02:47:04 -08008495 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05008496}
Chris Masona28ec192007-03-06 20:08:01 -05008497
Yan Zheng2c47e6052009-06-27 21:07:35 -04008498struct walk_control {
8499 u64 refs[BTRFS_MAX_LEVEL];
8500 u64 flags[BTRFS_MAX_LEVEL];
8501 struct btrfs_key update_progress;
8502 int stage;
8503 int level;
8504 int shared_level;
8505 int update_ref;
8506 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008507 int reada_slot;
8508 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008509 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008510};
8511
8512#define DROP_REFERENCE 1
8513#define UPDATE_BACKREF 2
8514
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008515static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
8516 struct btrfs_root *root,
8517 struct walk_control *wc,
8518 struct btrfs_path *path)
8519{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008520 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008521 u64 bytenr;
8522 u64 generation;
8523 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008524 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008525 u32 nritems;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008526 struct btrfs_key key;
8527 struct extent_buffer *eb;
8528 int ret;
8529 int slot;
8530 int nread = 0;
8531
8532 if (path->slots[wc->level] < wc->reada_slot) {
8533 wc->reada_count = wc->reada_count * 2 / 3;
8534 wc->reada_count = max(wc->reada_count, 2);
8535 } else {
8536 wc->reada_count = wc->reada_count * 3 / 2;
8537 wc->reada_count = min_t(int, wc->reada_count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008538 BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008539 }
8540
8541 eb = path->nodes[wc->level];
8542 nritems = btrfs_header_nritems(eb);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008543
8544 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
8545 if (nread >= wc->reada_count)
8546 break;
8547
8548 cond_resched();
8549 bytenr = btrfs_node_blockptr(eb, slot);
8550 generation = btrfs_node_ptr_generation(eb, slot);
8551
8552 if (slot == path->slots[wc->level])
8553 goto reada;
8554
8555 if (wc->stage == UPDATE_BACKREF &&
8556 generation <= root->root_key.offset)
8557 continue;
8558
Yan, Zheng94fcca92009-10-09 09:25:16 -04008559 /* We don't lock the tree block, it's OK to be racy here */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008560 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -05008561 wc->level - 1, 1, &refs,
8562 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008563 /* We don't care about errors in readahead. */
8564 if (ret < 0)
8565 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008566 BUG_ON(refs == 0);
8567
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008568 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008569 if (refs == 1)
8570 goto reada;
8571
Yan, Zheng94fcca92009-10-09 09:25:16 -04008572 if (wc->level == 1 &&
8573 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8574 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008575 if (!wc->update_ref ||
8576 generation <= root->root_key.offset)
8577 continue;
8578 btrfs_node_key_to_cpu(eb, &key, slot);
8579 ret = btrfs_comp_cpu_keys(&key,
8580 &wc->update_progress);
8581 if (ret < 0)
8582 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008583 } else {
8584 if (wc->level == 1 &&
8585 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8586 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008587 }
8588reada:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008589 readahead_tree_block(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008590 nread++;
8591 }
8592 wc->reada_slot = slot;
8593}
8594
Chris Mason9aca1d52007-03-13 11:09:37 -04008595/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008596 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008597 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04008598 * when wc->stage == UPDATE_BACKREF, this function updates
8599 * back refs for pointers in the block.
8600 *
8601 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04008602 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008603static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
8604 struct btrfs_root *root,
8605 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008606 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04008607{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008608 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008609 int level = wc->level;
8610 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04008611 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8612 int ret;
8613
8614 if (wc->stage == UPDATE_BACKREF &&
8615 btrfs_header_owner(eb) != root->root_key.objectid)
8616 return 1;
8617
8618 /*
8619 * when reference count of tree block is 1, it won't increase
8620 * again. once full backref flag is set, we never clear it.
8621 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04008622 if (lookup_info &&
8623 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
8624 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008625 BUG_ON(!path->locks[level]);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008626 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05008627 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008628 &wc->refs[level],
8629 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008630 BUG_ON(ret == -ENOMEM);
8631 if (ret)
8632 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008633 BUG_ON(wc->refs[level] == 0);
8634 }
8635
Yan Zheng2c47e6052009-06-27 21:07:35 -04008636 if (wc->stage == DROP_REFERENCE) {
8637 if (wc->refs[level] > 1)
8638 return 1;
8639
8640 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04008641 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008642 path->locks[level] = 0;
8643 }
8644 return 0;
8645 }
8646
8647 /* wc->stage == UPDATE_BACKREF */
8648 if (!(wc->flags[level] & flag)) {
8649 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07008650 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008651 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07008652 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008653 BUG_ON(ret); /* -ENOMEM */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008654 ret = btrfs_set_disk_extent_flags(trans, fs_info, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04008655 eb->len, flag,
8656 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008657 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008658 wc->flags[level] |= flag;
8659 }
8660
8661 /*
8662 * the block is shared by multiple trees, so it's not good to
8663 * keep the tree lock
8664 */
8665 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008666 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008667 path->locks[level] = 0;
8668 }
8669 return 0;
8670}
8671
8672/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008673 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008674 *
8675 * when wc->stage == DROP_REFERENCE, this function checks
8676 * reference count of the block pointed to. if the block
8677 * is shared and we need update back refs for the subtree
8678 * rooted at the block, this function changes wc->stage to
8679 * UPDATE_BACKREF. if the block is shared and there is no
8680 * need to update back, this function drops the reference
8681 * to the block.
8682 *
8683 * NOTE: return value 1 means we should stop walking down.
8684 */
8685static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8686 struct btrfs_root *root,
8687 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008688 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008689{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008690 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008691 u64 bytenr;
8692 u64 generation;
8693 u64 parent;
8694 u32 blocksize;
8695 struct btrfs_key key;
8696 struct extent_buffer *next;
8697 int level = wc->level;
8698 int reada = 0;
8699 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008700 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008701
8702 generation = btrfs_node_ptr_generation(path->nodes[level],
8703 path->slots[level]);
8704 /*
8705 * if the lower level block was created before the snapshot
8706 * was created, we know there is no need to update back refs
8707 * for the subtree
8708 */
8709 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008710 generation <= root->root_key.offset) {
8711 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008712 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008713 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008714
8715 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008716 blocksize = fs_info->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008717
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008718 next = find_extent_buffer(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008719 if (!next) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008720 next = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008721 if (IS_ERR(next))
8722 return PTR_ERR(next);
8723
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008724 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8725 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008726 reada = 1;
8727 }
8728 btrfs_tree_lock(next);
8729 btrfs_set_lock_blocking(next);
8730
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008731 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008732 &wc->refs[level - 1],
8733 &wc->flags[level - 1]);
Josef Bacik48672682016-09-23 13:23:28 +02008734 if (ret < 0)
8735 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008736
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008737 if (unlikely(wc->refs[level - 1] == 0)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008738 btrfs_err(fs_info, "Missing references.");
Josef Bacik48672682016-09-23 13:23:28 +02008739 ret = -EIO;
8740 goto out_unlock;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008741 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008742 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008743
Yan, Zheng94fcca92009-10-09 09:25:16 -04008744 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008745 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008746 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008747 if (level == 1 &&
8748 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8749 goto skip;
8750
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008751 if (!wc->update_ref ||
8752 generation <= root->root_key.offset)
8753 goto skip;
8754
8755 btrfs_node_key_to_cpu(path->nodes[level], &key,
8756 path->slots[level]);
8757 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8758 if (ret < 0)
8759 goto skip;
8760
8761 wc->stage = UPDATE_BACKREF;
8762 wc->shared_level = level - 1;
8763 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008764 } else {
8765 if (level == 1 &&
8766 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8767 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008768 }
8769
Chris Masonb9fab912012-05-06 07:23:47 -04008770 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008771 btrfs_tree_unlock(next);
8772 free_extent_buffer(next);
8773 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008774 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008775 }
8776
8777 if (!next) {
8778 if (reada && level == 1)
8779 reada_walk_down(trans, root, wc, path);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008780 next = read_tree_block(fs_info, bytenr, generation);
Liu Bo64c043d2015-05-25 17:30:15 +08008781 if (IS_ERR(next)) {
8782 return PTR_ERR(next);
8783 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008784 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008785 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008786 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008787 btrfs_tree_lock(next);
8788 btrfs_set_lock_blocking(next);
8789 }
8790
8791 level--;
Josef Bacik48672682016-09-23 13:23:28 +02008792 ASSERT(level == btrfs_header_level(next));
8793 if (level != btrfs_header_level(next)) {
8794 btrfs_err(root->fs_info, "mismatched level");
8795 ret = -EIO;
8796 goto out_unlock;
8797 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008798 path->nodes[level] = next;
8799 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008800 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008801 wc->level = level;
8802 if (wc->level == 1)
8803 wc->reada_slot = 0;
8804 return 0;
8805skip:
8806 wc->refs[level - 1] = 0;
8807 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008808 if (wc->stage == DROP_REFERENCE) {
8809 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
8810 parent = path->nodes[level]->start;
8811 } else {
Josef Bacik48672682016-09-23 13:23:28 +02008812 ASSERT(root->root_key.objectid ==
Yan, Zheng94fcca92009-10-09 09:25:16 -04008813 btrfs_header_owner(path->nodes[level]));
Josef Bacik48672682016-09-23 13:23:28 +02008814 if (root->root_key.objectid !=
8815 btrfs_header_owner(path->nodes[level])) {
8816 btrfs_err(root->fs_info,
8817 "mismatched block owner");
8818 ret = -EIO;
8819 goto out_unlock;
8820 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008821 parent = 0;
8822 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008823
Mark Fasheh11526512014-07-17 12:39:01 -07008824 if (need_account) {
Qu Wenruo33d1f052016-10-18 09:31:28 +08008825 ret = btrfs_qgroup_trace_subtree(trans, root, next,
8826 generation, level - 1);
Mark Fasheh11526512014-07-17 12:39:01 -07008827 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008828 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008829 "Error %d accounting shared subtree. Quota is out of sync, rescan required.",
8830 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07008831 }
8832 }
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008833 ret = btrfs_free_extent(trans, root, bytenr, blocksize,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008834 parent, root->root_key.objectid,
8835 level - 1, 0);
Josef Bacik48672682016-09-23 13:23:28 +02008836 if (ret)
8837 goto out_unlock;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008838 }
Josef Bacik48672682016-09-23 13:23:28 +02008839
8840 *lookup_info = 1;
8841 ret = 1;
8842
8843out_unlock:
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008844 btrfs_tree_unlock(next);
8845 free_extent_buffer(next);
Josef Bacik48672682016-09-23 13:23:28 +02008846
8847 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008848}
8849
8850/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008851 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008852 *
8853 * when wc->stage == DROP_REFERENCE, this function drops
8854 * reference count on the block.
8855 *
8856 * when wc->stage == UPDATE_BACKREF, this function changes
8857 * wc->stage back to DROP_REFERENCE if we changed wc->stage
8858 * to UPDATE_BACKREF previously while processing the block.
8859 *
8860 * NOTE: return value 1 means we should stop walking up.
8861 */
8862static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
8863 struct btrfs_root *root,
8864 struct btrfs_path *path,
8865 struct walk_control *wc)
8866{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008867 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008868 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008869 int level = wc->level;
8870 struct extent_buffer *eb = path->nodes[level];
8871 u64 parent = 0;
8872
8873 if (wc->stage == UPDATE_BACKREF) {
8874 BUG_ON(wc->shared_level < level);
8875 if (level < wc->shared_level)
8876 goto out;
8877
Yan Zheng2c47e6052009-06-27 21:07:35 -04008878 ret = find_next_key(path, level + 1, &wc->update_progress);
8879 if (ret > 0)
8880 wc->update_ref = 0;
8881
8882 wc->stage = DROP_REFERENCE;
8883 wc->shared_level = -1;
8884 path->slots[level] = 0;
8885
8886 /*
8887 * check reference count again if the block isn't locked.
8888 * we should start walking down the tree again if reference
8889 * count is one.
8890 */
8891 if (!path->locks[level]) {
8892 BUG_ON(level == 0);
8893 btrfs_tree_lock(eb);
8894 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008895 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008896
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008897 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05008898 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008899 &wc->refs[level],
8900 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008901 if (ret < 0) {
8902 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008903 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008904 return ret;
8905 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008906 BUG_ON(wc->refs[level] == 0);
8907 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04008908 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008909 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008910 return 1;
8911 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008912 }
8913 }
8914
8915 /* wc->stage == DROP_REFERENCE */
8916 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
8917
8918 if (wc->refs[level] == 1) {
8919 if (level == 0) {
8920 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07008921 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008922 else
Josef Bacike339a6b2014-07-02 10:54:25 -07008923 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008924 BUG_ON(ret); /* -ENOMEM */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008925 ret = btrfs_qgroup_trace_leaf_items(trans, fs_info, eb);
Mark Fasheh11526512014-07-17 12:39:01 -07008926 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008927 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008928 "error %d accounting leaf items. Quota is out of sync, rescan required.",
8929 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07008930 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008931 }
8932 /* make block locked assertion in clean_tree_block happy */
8933 if (!path->locks[level] &&
8934 btrfs_header_generation(eb) == trans->transid) {
8935 btrfs_tree_lock(eb);
8936 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008937 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008938 }
David Sterba7c302b42017-02-10 18:47:57 +01008939 clean_tree_block(fs_info, eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008940 }
8941
8942 if (eb == root->node) {
8943 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8944 parent = eb->start;
8945 else
8946 BUG_ON(root->root_key.objectid !=
8947 btrfs_header_owner(eb));
8948 } else {
8949 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8950 parent = path->nodes[level + 1]->start;
8951 else
8952 BUG_ON(root->root_key.objectid !=
8953 btrfs_header_owner(path->nodes[level + 1]));
8954 }
8955
Jan Schmidt5581a512012-05-16 17:04:52 +02008956 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008957out:
8958 wc->refs[level] = 0;
8959 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008960 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008961}
8962
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008963static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
8964 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008965 struct btrfs_path *path,
8966 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008967{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008968 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008969 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008970 int ret;
8971
Yan Zheng2c47e6052009-06-27 21:07:35 -04008972 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04008973 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008974 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008975 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008976
Yan Zheng2c47e6052009-06-27 21:07:35 -04008977 if (level == 0)
8978 break;
8979
Yan, Zheng7a7965f2010-02-01 02:41:17 +00008980 if (path->slots[level] >=
8981 btrfs_header_nritems(path->nodes[level]))
8982 break;
8983
Yan, Zheng94fcca92009-10-09 09:25:16 -04008984 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008985 if (ret > 0) {
8986 path->slots[level]++;
8987 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00008988 } else if (ret < 0)
8989 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008990 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008991 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04008992 return 0;
8993}
8994
Chris Masond3977122009-01-05 21:25:51 -05008995static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05008996 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04008997 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008998 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05008999{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009000 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05009001 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04009002
Yan Zheng2c47e6052009-06-27 21:07:35 -04009003 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
9004 while (level < max_level && path->nodes[level]) {
9005 wc->level = level;
9006 if (path->slots[level] + 1 <
9007 btrfs_header_nritems(path->nodes[level])) {
9008 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05009009 return 0;
9010 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009011 ret = walk_up_proc(trans, root, path, wc);
9012 if (ret > 0)
9013 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05009014
Yan Zheng2c47e6052009-06-27 21:07:35 -04009015 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04009016 btrfs_tree_unlock_rw(path->nodes[level],
9017 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009018 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009019 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009020 free_extent_buffer(path->nodes[level]);
9021 path->nodes[level] = NULL;
9022 level++;
Chris Mason20524f02007-03-10 06:35:47 -05009023 }
9024 }
9025 return 1;
9026}
9027
Chris Mason9aca1d52007-03-13 11:09:37 -04009028/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04009029 * drop a subvolume tree.
9030 *
9031 * this function traverses the tree freeing any blocks that only
9032 * referenced by the tree.
9033 *
9034 * when a shared tree block is found. this function decreases its
9035 * reference count by one. if update_ref is true, this function
9036 * also make sure backrefs for the shared block and all lower level
9037 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00009038 *
9039 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04009040 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04009041int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009042 struct btrfs_block_rsv *block_rsv, int update_ref,
9043 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05009044{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009045 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04009046 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009047 struct btrfs_trans_handle *trans;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009048 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04009049 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009050 struct walk_control *wc;
9051 struct btrfs_key key;
9052 int err = 0;
9053 int ret;
9054 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04009055 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05009056
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009057 btrfs_debug(fs_info, "Drop subvolume %llu", root->objectid);
Mark Fasheh11526512014-07-17 12:39:01 -07009058
Chris Mason5caf2a02007-04-02 11:20:42 -04009059 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009060 if (!path) {
9061 err = -ENOMEM;
9062 goto out;
9063 }
Chris Mason20524f02007-03-10 06:35:47 -05009064
Yan Zheng2c47e6052009-06-27 21:07:35 -04009065 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07009066 if (!wc) {
9067 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009068 err = -ENOMEM;
9069 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07009070 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009071
Yan, Zhenga22285a2010-05-16 10:48:46 -04009072 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009073 if (IS_ERR(trans)) {
9074 err = PTR_ERR(trans);
9075 goto out_free;
9076 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00009077
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009078 if (block_rsv)
9079 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009080
Chris Mason9f3a7422007-08-07 15:52:19 -04009081 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009082 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009083 path->nodes[level] = btrfs_lock_root_node(root);
9084 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04009085 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009086 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009087 memset(&wc->update_progress, 0,
9088 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04009089 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04009090 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009091 memcpy(&wc->update_progress, &key,
9092 sizeof(wc->update_progress));
9093
Chris Mason6702ed42007-08-07 16:15:09 -04009094 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009095 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04009096 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009097 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
9098 path->lowest_level = 0;
9099 if (ret < 0) {
9100 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009101 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04009102 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009103 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009104
Chris Mason7d9eb122008-07-08 14:19:17 -04009105 /*
9106 * unlock our path, this is safe because only this
9107 * function is allowed to delete this snapshot
9108 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009109 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04009110
Yan Zheng2c47e6052009-06-27 21:07:35 -04009111 level = btrfs_header_level(root->node);
9112 while (1) {
9113 btrfs_tree_lock(path->nodes[level]);
9114 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009115 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009116
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009117 ret = btrfs_lookup_extent_info(trans, fs_info,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009118 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05009119 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04009120 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009121 if (ret < 0) {
9122 err = ret;
9123 goto out_end_trans;
9124 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009125 BUG_ON(wc->refs[level] == 0);
9126
9127 if (level == root_item->drop_level)
9128 break;
9129
9130 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009131 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009132 WARN_ON(wc->refs[level] != 1);
9133 level--;
9134 }
9135 }
9136
9137 wc->level = level;
9138 wc->shared_level = -1;
9139 wc->stage = DROP_REFERENCE;
9140 wc->update_ref = update_ref;
9141 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009142 wc->for_reloc = for_reloc;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009143 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009144
9145 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00009146
Yan Zheng2c47e6052009-06-27 21:07:35 -04009147 ret = walk_down_tree(trans, root, path, wc);
9148 if (ret < 0) {
9149 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04009150 break;
9151 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009152
9153 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
9154 if (ret < 0) {
9155 err = ret;
9156 break;
9157 }
9158
9159 if (ret > 0) {
9160 BUG_ON(wc->stage != DROP_REFERENCE);
9161 break;
9162 }
9163
9164 if (wc->stage == DROP_REFERENCE) {
9165 level = wc->level;
9166 btrfs_node_key(path->nodes[level],
9167 &root_item->drop_progress,
9168 path->slots[level]);
9169 root_item->drop_level = level;
9170 }
9171
9172 BUG_ON(wc->level == 0);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009173 if (btrfs_should_end_transaction(trans) ||
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009174 (!for_reloc && btrfs_need_cleaner_sleep(fs_info))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009175 ret = btrfs_update_root(trans, tree_root,
9176 &root->root_key,
9177 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009178 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009179 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009180 err = ret;
9181 goto out_end_trans;
9182 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009183
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009184 btrfs_end_transaction_throttle(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009185 if (!for_reloc && btrfs_need_cleaner_sleep(fs_info)) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009186 btrfs_debug(fs_info,
9187 "drop snapshot early exit");
Josef Bacik3c8f2422013-07-15 11:57:06 -04009188 err = -EAGAIN;
9189 goto out_free;
9190 }
9191
Yan, Zhenga22285a2010-05-16 10:48:46 -04009192 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009193 if (IS_ERR(trans)) {
9194 err = PTR_ERR(trans);
9195 goto out_free;
9196 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009197 if (block_rsv)
9198 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04009199 }
Chris Mason20524f02007-03-10 06:35:47 -05009200 }
David Sterbab3b4aa72011-04-21 01:20:15 +02009201 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009202 if (err)
9203 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009204
Jeff Mahoney1cd54472017-08-17 10:25:11 -04009205 ret = btrfs_del_root(trans, fs_info, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009206 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009207 btrfs_abort_transaction(trans, ret);
Jeff Mahoneye19182c2017-12-04 13:11:45 -05009208 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009209 goto out_end_trans;
9210 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009211
Yan, Zheng76dda932009-09-21 16:00:26 -04009212 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00009213 ret = btrfs_find_root(tree_root, &root->root_key, path,
9214 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009215 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009216 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009217 err = ret;
9218 goto out_end_trans;
9219 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05009220 /* if we fail to delete the orphan item this time
9221 * around, it'll get picked up the next time.
9222 *
9223 * The most common failure here is just -ENOENT.
9224 */
9225 btrfs_del_orphan_item(trans, tree_root,
9226 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04009227 }
9228 }
9229
Miao Xie27cdeb72014-04-02 19:51:05 +08009230 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Josef Bacik2b9dbef2015-09-15 10:07:04 -04009231 btrfs_add_dropped_root(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009232 } else {
9233 free_extent_buffer(root->node);
9234 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00009235 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009236 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04009237 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009238out_end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009239 btrfs_end_transaction_throttle(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009240out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04009241 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04009242 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009243out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04009244 /*
9245 * So if we need to stop dropping the snapshot for whatever reason we
9246 * need to make sure to add it back to the dead root list so that we
9247 * keep trying to do the work later. This also cleans up roots if we
9248 * don't have it in the radix (like when we recover after a power fail
9249 * or unmount) so we don't leak memory.
9250 */
Thomas Meyer897ca812017-10-07 16:02:21 +02009251 if (!for_reloc && !root_dropped)
Josef Bacikd29a9f62013-07-17 19:30:20 -04009252 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08009253 if (err && err != -EAGAIN)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009254 btrfs_handle_fs_error(fs_info, err, NULL);
Jeff Mahoney2c536792011-10-03 23:22:41 -04009255 return err;
Chris Mason20524f02007-03-10 06:35:47 -05009256}
Chris Mason9078a3e2007-04-26 16:46:15 -04009257
Yan Zheng2c47e6052009-06-27 21:07:35 -04009258/*
9259 * drop subtree rooted at tree block 'node'.
9260 *
9261 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009262 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04009263 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04009264int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
9265 struct btrfs_root *root,
9266 struct extent_buffer *node,
9267 struct extent_buffer *parent)
9268{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009269 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009270 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009271 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009272 int level;
9273 int parent_level;
9274 int ret = 0;
9275 int wret;
9276
Yan Zheng2c47e6052009-06-27 21:07:35 -04009277 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
9278
Yan Zhengf82d02d2008-10-29 14:49:05 -04009279 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009280 if (!path)
9281 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009282
Yan Zheng2c47e6052009-06-27 21:07:35 -04009283 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009284 if (!wc) {
9285 btrfs_free_path(path);
9286 return -ENOMEM;
9287 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009288
Chris Masonb9447ef2009-03-09 11:45:38 -04009289 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009290 parent_level = btrfs_header_level(parent);
9291 extent_buffer_get(parent);
9292 path->nodes[parent_level] = parent;
9293 path->slots[parent_level] = btrfs_header_nritems(parent);
9294
Chris Masonb9447ef2009-03-09 11:45:38 -04009295 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009296 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009297 path->nodes[level] = node;
9298 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009299 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009300
9301 wc->refs[parent_level] = 1;
9302 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
9303 wc->level = level;
9304 wc->shared_level = -1;
9305 wc->stage = DROP_REFERENCE;
9306 wc->update_ref = 0;
9307 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009308 wc->for_reloc = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009309 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009310
9311 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009312 wret = walk_down_tree(trans, root, path, wc);
9313 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04009314 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009315 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009316 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009317
Yan Zheng2c47e6052009-06-27 21:07:35 -04009318 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009319 if (wret < 0)
9320 ret = wret;
9321 if (wret != 0)
9322 break;
9323 }
9324
Yan Zheng2c47e6052009-06-27 21:07:35 -04009325 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009326 btrfs_free_path(path);
9327 return ret;
9328}
9329
Jeff Mahoney6202df62016-06-22 18:54:22 -04009330static u64 update_block_group_flags(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04009331{
9332 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009333 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04009334
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009335 /*
9336 * if restripe for this chunk_type is on pick target profile and
9337 * return, otherwise do the usual balance
9338 */
Jeff Mahoney6202df62016-06-22 18:54:22 -04009339 stripped = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009340 if (stripped)
9341 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02009342
Jeff Mahoney6202df62016-06-22 18:54:22 -04009343 num_devices = fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05009344
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009345 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009346 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009347 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
9348
Chris Masonec44a352008-04-28 15:29:52 -04009349 if (num_devices == 1) {
9350 stripped |= BTRFS_BLOCK_GROUP_DUP;
9351 stripped = flags & ~stripped;
9352
9353 /* turn raid0 into single device chunks */
9354 if (flags & BTRFS_BLOCK_GROUP_RAID0)
9355 return stripped;
9356
9357 /* turn mirroring into duplication */
9358 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
9359 BTRFS_BLOCK_GROUP_RAID10))
9360 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04009361 } else {
9362 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04009363 if (flags & stripped)
9364 return flags;
9365
9366 stripped |= BTRFS_BLOCK_GROUP_DUP;
9367 stripped = flags & ~stripped;
9368
9369 /* switch duplicated blocks with raid1 */
9370 if (flags & BTRFS_BLOCK_GROUP_DUP)
9371 return stripped | BTRFS_BLOCK_GROUP_RAID1;
9372
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009373 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04009374 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009375
Chris Masonec44a352008-04-28 15:29:52 -04009376 return flags;
9377}
9378
Zhaolei868f4012015-08-05 16:43:27 +08009379static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04009380{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009381 struct btrfs_space_info *sinfo = cache->space_info;
9382 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00009383 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009384 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04009385
Miao Xie199c36e2011-07-15 10:34:36 +00009386 /*
9387 * We need some metadata space and system metadata space for
9388 * allocating chunks in some corner cases until we force to set
9389 * it to be readonly.
9390 */
9391 if ((sinfo->flags &
9392 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
9393 !force)
Byongho Leeee221842015-12-15 01:42:10 +09009394 min_allocable_bytes = SZ_1M;
Miao Xie199c36e2011-07-15 10:34:36 +00009395 else
9396 min_allocable_bytes = 0;
9397
Yan, Zhengf0486c62010-05-16 10:46:25 -04009398 spin_lock(&sinfo->lock);
9399 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00009400
9401 if (cache->ro) {
Zhaolei868f4012015-08-05 16:43:27 +08009402 cache->ro++;
WuBo61cfea92011-07-26 03:30:11 +00009403 ret = 0;
9404 goto out;
9405 }
9406
Yan, Zhengf0486c62010-05-16 10:46:25 -04009407 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
9408 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04009409
Liu Bo41361352017-02-13 15:42:21 -08009410 if (btrfs_space_info_used(sinfo, true) + num_bytes +
Josef Bacik37be25b2011-08-05 10:25:38 -04009411 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04009412 sinfo->bytes_readonly += num_bytes;
Zhaolei868f4012015-08-05 16:43:27 +08009413 cache->ro++;
Josef Bacik633c0aa2014-10-31 09:49:34 -04009414 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009415 ret = 0;
9416 }
WuBo61cfea92011-07-26 03:30:11 +00009417out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04009418 spin_unlock(&cache->lock);
9419 spin_unlock(&sinfo->lock);
9420 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04009421}
9422
Jeff Mahoney5e00f192017-02-15 16:28:29 -05009423int btrfs_inc_block_group_ro(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04009424 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009425
9426{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009427 struct btrfs_trans_handle *trans;
9428 u64 alloc_flags;
9429 int ret;
9430
Chris Mason1bbc6212015-04-06 12:46:08 -07009431again:
Jeff Mahoney5e00f192017-02-15 16:28:29 -05009432 trans = btrfs_join_transaction(fs_info->extent_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009433 if (IS_ERR(trans))
9434 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009435
Chris Mason1bbc6212015-04-06 12:46:08 -07009436 /*
9437 * we're not allowed to set block groups readonly after the dirty
9438 * block groups cache has started writing. If it already started,
9439 * back off and let this transaction commit
9440 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009441 mutex_lock(&fs_info->ro_block_group_mutex);
Josef Bacik3204d332015-09-24 10:46:10 -04009442 if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009443 u64 transid = trans->transid;
9444
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009445 mutex_unlock(&fs_info->ro_block_group_mutex);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009446 btrfs_end_transaction(trans);
Chris Mason1bbc6212015-04-06 12:46:08 -07009447
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009448 ret = btrfs_wait_for_commit(fs_info, transid);
Chris Mason1bbc6212015-04-06 12:46:08 -07009449 if (ret)
9450 return ret;
9451 goto again;
9452 }
9453
Chris Mason153c35b2015-05-19 18:54:41 -07009454 /*
9455 * if we are changing raid levels, try to allocate a corresponding
9456 * block group with the new raid level.
9457 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009458 alloc_flags = update_block_group_flags(fs_info, cache->flags);
Chris Mason153c35b2015-05-19 18:54:41 -07009459 if (alloc_flags != cache->flags) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009460 ret = do_chunk_alloc(trans, fs_info, alloc_flags,
Chris Mason153c35b2015-05-19 18:54:41 -07009461 CHUNK_ALLOC_FORCE);
9462 /*
9463 * ENOSPC is allowed here, we may have enough space
9464 * already allocated at the new raid level to
9465 * carry on
9466 */
9467 if (ret == -ENOSPC)
9468 ret = 0;
9469 if (ret < 0)
9470 goto out;
9471 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009472
Zhaolei868f4012015-08-05 16:43:27 +08009473 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009474 if (!ret)
9475 goto out;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009476 alloc_flags = get_alloc_profile(fs_info, cache->space_info->flags);
9477 ret = do_chunk_alloc(trans, fs_info, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04009478 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009479 if (ret < 0)
9480 goto out;
Zhaolei868f4012015-08-05 16:43:27 +08009481 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009482out:
Shaohua Li2f081082015-01-09 10:40:15 -08009483 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009484 alloc_flags = update_block_group_flags(fs_info, cache->flags);
David Sterba34441362016-10-04 19:34:27 +02009485 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009486 check_system_chunk(trans, fs_info, alloc_flags);
David Sterba34441362016-10-04 19:34:27 +02009487 mutex_unlock(&fs_info->chunk_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009488 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009489 mutex_unlock(&fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009490
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009491 btrfs_end_transaction(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009492 return ret;
9493}
9494
Chris Masonc87f08c2011-02-16 13:57:04 -05009495int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009496 struct btrfs_fs_info *fs_info, u64 type)
Chris Masonc87f08c2011-02-16 13:57:04 -05009497{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009498 u64 alloc_flags = get_alloc_profile(fs_info, type);
9499
9500 return do_chunk_alloc(trans, fs_info, alloc_flags, CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05009501}
9502
Miao Xie6d07bce2011-01-05 10:07:31 +00009503/*
9504 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04009505 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00009506 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009507u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00009508{
9509 struct btrfs_block_group_cache *block_group;
9510 u64 free_bytes = 0;
9511 int factor;
9512
Nicholas D Steeves01327612016-05-19 21:18:45 -04009513 /* It's df, we don't care if it's racy */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009514 if (list_empty(&sinfo->ro_bgs))
9515 return 0;
9516
9517 spin_lock(&sinfo->lock);
9518 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00009519 spin_lock(&block_group->lock);
9520
9521 if (!block_group->ro) {
9522 spin_unlock(&block_group->lock);
9523 continue;
9524 }
9525
9526 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
9527 BTRFS_BLOCK_GROUP_RAID10 |
9528 BTRFS_BLOCK_GROUP_DUP))
9529 factor = 2;
9530 else
9531 factor = 1;
9532
9533 free_bytes += (block_group->key.offset -
9534 btrfs_block_group_used(&block_group->item)) *
9535 factor;
9536
9537 spin_unlock(&block_group->lock);
9538 }
Miao Xie6d07bce2011-01-05 10:07:31 +00009539 spin_unlock(&sinfo->lock);
9540
9541 return free_bytes;
9542}
9543
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009544void btrfs_dec_block_group_ro(struct btrfs_block_group_cache *cache)
Yan, Zhengf0486c62010-05-16 10:46:25 -04009545{
9546 struct btrfs_space_info *sinfo = cache->space_info;
9547 u64 num_bytes;
9548
9549 BUG_ON(!cache->ro);
9550
9551 spin_lock(&sinfo->lock);
9552 spin_lock(&cache->lock);
Zhaolei868f4012015-08-05 16:43:27 +08009553 if (!--cache->ro) {
9554 num_bytes = cache->key.offset - cache->reserved -
9555 cache->pinned - cache->bytes_super -
9556 btrfs_block_group_used(&cache->item);
9557 sinfo->bytes_readonly -= num_bytes;
9558 list_del_init(&cache->ro_list);
9559 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009560 spin_unlock(&cache->lock);
9561 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009562}
9563
Josef Bacikba1bf482009-09-11 16:11:19 -04009564/*
9565 * checks to see if its even possible to relocate this block group.
9566 *
9567 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
9568 * ok to go ahead and try.
9569 */
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009570int btrfs_can_relocate(struct btrfs_fs_info *fs_info, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04009571{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009572 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04009573 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04009574 struct btrfs_space_info *space_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009575 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacikba1bf482009-09-11 16:11:19 -04009576 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04009577 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00009578 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04009579 u64 dev_min = 1;
9580 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009581 u64 target;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009582 int debug;
liubocdcb7252011-08-03 10:15:25 +00009583 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04009584 int full = 0;
9585 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05009586
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009587 debug = btrfs_test_opt(fs_info, ENOSPC_DEBUG);
Qu Wenruo0305bc22016-03-23 11:38:17 +08009588
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009589 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04009590
Josef Bacikba1bf482009-09-11 16:11:19 -04009591 /* odd, couldn't find the block group, leave it alone */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009592 if (!block_group) {
9593 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009594 btrfs_warn(fs_info,
Qu Wenruo0305bc22016-03-23 11:38:17 +08009595 "can't find block group for bytenr %llu",
9596 bytenr);
Josef Bacikba1bf482009-09-11 16:11:19 -04009597 return -1;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009598 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009599
liubocdcb7252011-08-03 10:15:25 +00009600 min_free = btrfs_block_group_used(&block_group->item);
9601
Josef Bacikba1bf482009-09-11 16:11:19 -04009602 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00009603 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04009604 goto out;
Chris Mason323da792008-05-09 11:46:48 -04009605
Josef Bacikba1bf482009-09-11 16:11:19 -04009606 space_info = block_group->space_info;
9607 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04009608
Josef Bacikba1bf482009-09-11 16:11:19 -04009609 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04009610
Josef Bacikba1bf482009-09-11 16:11:19 -04009611 /*
9612 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04009613 * relocate it unless we're able to allocate a new chunk below.
9614 *
9615 * Otherwise, we need to make sure we have room in the space to handle
9616 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04009617 */
Chris Mason7ce618d2009-09-22 14:48:44 -04009618 if ((space_info->total_bytes != block_group->key.offset) &&
Liu Bo41361352017-02-13 15:42:21 -08009619 (btrfs_space_info_used(space_info, false) + min_free <
9620 space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04009621 spin_unlock(&space_info->lock);
9622 goto out;
9623 }
9624 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009625
Josef Bacikba1bf482009-09-11 16:11:19 -04009626 /*
9627 * ok we don't have enough space, but maybe we have free space on our
9628 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009629 * alloc devices and guess if we have enough space. if this block
9630 * group is going to be restriped, run checks against the target
9631 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04009632 */
9633 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05009634
liubocdcb7252011-08-03 10:15:25 +00009635 /*
9636 * index:
9637 * 0: raid10
9638 * 1: raid1
9639 * 2: dup
9640 * 3: raid0
9641 * 4: single
9642 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009643 target = get_restripe_target(fs_info, block_group->flags);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009644 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00009645 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009646 } else {
9647 /*
9648 * this is just a balance, so if we were marked as full
9649 * we know there is no space for a new chunk
9650 */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009651 if (full) {
9652 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009653 btrfs_warn(fs_info,
9654 "no space to alloc new chunk for block group %llu",
9655 block_group->key.objectid);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009656 goto out;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009657 }
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009658
9659 index = get_block_group_index(block_group);
9660 }
9661
Miao Xiee6ec7162013-01-17 05:38:51 +00009662 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00009663 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04009664 /* Divide by 2 */
9665 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009666 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00009667 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00009668 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04009669 /* Multiply by 2 */
9670 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009671 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00009672 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01009673 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00009674 }
9675
Josef Bacik6df9a952013-06-27 13:22:46 -04009676 /* We need to do this so that we can look at pending chunks */
9677 trans = btrfs_join_transaction(root);
9678 if (IS_ERR(trans)) {
9679 ret = PTR_ERR(trans);
9680 goto out;
9681 }
9682
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009683 mutex_lock(&fs_info->chunk_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04009684 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00009685 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04009686
Josef Bacikba1bf482009-09-11 16:11:19 -04009687 /*
9688 * check to make sure we can actually find a chunk with enough
9689 * space to fit our block group in.
9690 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01009691 if (device->total_bytes > device->bytes_used + min_free &&
Anand Jain401e29c2017-12-04 12:54:55 +08009692 !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Josef Bacik6df9a952013-06-27 13:22:46 -04009693 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00009694 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009695 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009696 dev_nr++;
9697
9698 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009699 break;
liubocdcb7252011-08-03 10:15:25 +00009700
Josef Bacikba1bf482009-09-11 16:11:19 -04009701 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009702 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009703 }
Qu Wenruo0305bc22016-03-23 11:38:17 +08009704 if (debug && ret == -1)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009705 btrfs_warn(fs_info,
9706 "no space to allocate a new chunk for block group %llu",
9707 block_group->key.objectid);
9708 mutex_unlock(&fs_info->chunk_mutex);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009709 btrfs_end_transaction(trans);
Chris Masonedbd8d42007-12-21 16:27:24 -05009710out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009711 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009712 return ret;
9713}
9714
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009715static int find_first_block_group(struct btrfs_fs_info *fs_info,
9716 struct btrfs_path *path,
9717 struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009718{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009719 struct btrfs_root *root = fs_info->extent_root;
Chris Mason925baed2008-06-25 16:01:30 -04009720 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009721 struct btrfs_key found_key;
9722 struct extent_buffer *leaf;
9723 int slot;
9724
9725 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9726 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009727 goto out;
9728
Chris Masond3977122009-01-05 21:25:51 -05009729 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009730 slot = path->slots[0];
9731 leaf = path->nodes[0];
9732 if (slot >= btrfs_header_nritems(leaf)) {
9733 ret = btrfs_next_leaf(root, path);
9734 if (ret == 0)
9735 continue;
9736 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009737 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009738 break;
9739 }
9740 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9741
9742 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009743 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
Liu Bo6fb37b72016-06-22 18:31:27 -07009744 struct extent_map_tree *em_tree;
9745 struct extent_map *em;
9746
9747 em_tree = &root->fs_info->mapping_tree.map_tree;
9748 read_lock(&em_tree->lock);
9749 em = lookup_extent_mapping(em_tree, found_key.objectid,
9750 found_key.offset);
9751 read_unlock(&em_tree->lock);
9752 if (!em) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009753 btrfs_err(fs_info,
Liu Bo6fb37b72016-06-22 18:31:27 -07009754 "logical %llu len %llu found bg but no related chunk",
9755 found_key.objectid, found_key.offset);
9756 ret = -ENOENT;
9757 } else {
9758 ret = 0;
9759 }
Josef Bacik187ee582016-08-18 15:30:06 -04009760 free_extent_map(em);
Chris Mason925baed2008-06-25 16:01:30 -04009761 goto out;
9762 }
Chris Mason0b86a832008-03-24 15:01:56 -04009763 path->slots[0]++;
9764 }
Chris Mason925baed2008-06-25 16:01:30 -04009765out:
Chris Mason0b86a832008-03-24 15:01:56 -04009766 return ret;
9767}
9768
Josef Bacik0af3d002010-06-21 14:48:16 -04009769void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
9770{
9771 struct btrfs_block_group_cache *block_group;
9772 u64 last = 0;
9773
9774 while (1) {
9775 struct inode *inode;
9776
9777 block_group = btrfs_lookup_first_block_group(info, last);
9778 while (block_group) {
9779 spin_lock(&block_group->lock);
9780 if (block_group->iref)
9781 break;
9782 spin_unlock(&block_group->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009783 block_group = next_block_group(info, block_group);
Josef Bacik0af3d002010-06-21 14:48:16 -04009784 }
9785 if (!block_group) {
9786 if (last == 0)
9787 break;
9788 last = 0;
9789 continue;
9790 }
9791
9792 inode = block_group->inode;
9793 block_group->iref = 0;
9794 block_group->inode = NULL;
9795 spin_unlock(&block_group->lock);
Liu Bof3bca802016-07-20 17:33:44 -07009796 ASSERT(block_group->io_ctl.inode == NULL);
Josef Bacik0af3d002010-06-21 14:48:16 -04009797 iput(inode);
9798 last = block_group->key.objectid + block_group->key.offset;
9799 btrfs_put_block_group(block_group);
9800 }
9801}
9802
Filipe Manana5cdd7db2017-02-01 22:39:50 +00009803/*
9804 * Must be called only after stopping all workers, since we could have block
9805 * group caching kthreads running, and therefore they could race with us if we
9806 * freed the block groups before stopping them.
9807 */
Zheng Yan1a40e232008-09-26 10:09:34 -04009808int btrfs_free_block_groups(struct btrfs_fs_info *info)
9809{
9810 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04009811 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04009812 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04009813 struct rb_node *n;
9814
Josef Bacik9e351cc2014-03-13 15:42:13 -04009815 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009816 while (!list_empty(&info->caching_block_groups)) {
9817 caching_ctl = list_entry(info->caching_block_groups.next,
9818 struct btrfs_caching_control, list);
9819 list_del(&caching_ctl->list);
9820 put_caching_control(caching_ctl);
9821 }
Josef Bacik9e351cc2014-03-13 15:42:13 -04009822 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009823
Josef Bacik47ab2a62014-09-18 11:20:02 -04009824 spin_lock(&info->unused_bgs_lock);
9825 while (!list_empty(&info->unused_bgs)) {
9826 block_group = list_first_entry(&info->unused_bgs,
9827 struct btrfs_block_group_cache,
9828 bg_list);
9829 list_del_init(&block_group->bg_list);
9830 btrfs_put_block_group(block_group);
9831 }
9832 spin_unlock(&info->unused_bgs_lock);
9833
Zheng Yan1a40e232008-09-26 10:09:34 -04009834 spin_lock(&info->block_group_cache_lock);
9835 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
9836 block_group = rb_entry(n, struct btrfs_block_group_cache,
9837 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04009838 rb_erase(&block_group->cache_node,
9839 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009840 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -04009841 spin_unlock(&info->block_group_cache_lock);
9842
Josef Bacik80eb2342008-10-29 14:49:05 -04009843 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04009844 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04009845 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05009846
Josef Bacik3c148742011-02-02 15:53:47 +00009847 /*
9848 * We haven't cached this block group, which means we could
9849 * possibly have excluded extents on this block group.
9850 */
Josef Bacik36cce922013-08-05 11:15:21 -04009851 if (block_group->cached == BTRFS_CACHE_NO ||
9852 block_group->cached == BTRFS_CACHE_ERROR)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009853 free_excluded_extents(info, block_group);
Josef Bacik3c148742011-02-02 15:53:47 +00009854
Josef Bacik817d52f2009-07-13 21:29:25 -04009855 btrfs_remove_free_space_cache(block_group);
Filipe Manana5cdd7db2017-02-01 22:39:50 +00009856 ASSERT(block_group->cached != BTRFS_CACHE_STARTED);
Liu Bof3bca802016-07-20 17:33:44 -07009857 ASSERT(list_empty(&block_group->dirty_list));
9858 ASSERT(list_empty(&block_group->io_list));
9859 ASSERT(list_empty(&block_group->bg_list));
9860 ASSERT(atomic_read(&block_group->count) == 1);
Josef Bacik11dfe352009-11-13 20:12:59 +00009861 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04009862
9863 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009864 }
9865 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04009866
9867 /* now that all the block groups are freed, go through and
9868 * free all the space_info structs. This is only called during
9869 * the final stages of unmount, and so we know nobody is
9870 * using them. We call synchronize_rcu() once before we start,
9871 * just to be on the safe side.
9872 */
9873 synchronize_rcu();
9874
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04009875 release_global_block_rsv(info);
9876
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05309877 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009878 int i;
9879
Chris Mason4184ea72009-03-10 12:39:20 -04009880 space_info = list_entry(info->space_info.next,
9881 struct btrfs_space_info,
9882 list);
Josef Bacikd555b6c2016-03-25 13:25:51 -04009883
9884 /*
9885 * Do not hide this behind enospc_debug, this is actually
9886 * important and indicates a real bug if this happens.
9887 */
9888 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +00009889 space_info->bytes_reserved > 0 ||
Josef Bacikd555b6c2016-03-25 13:25:51 -04009890 space_info->bytes_may_use > 0))
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009891 dump_space_info(info, space_info, 0, 0);
Chris Mason4184ea72009-03-10 12:39:20 -04009892 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009893 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
9894 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009895 kobj = space_info->block_group_kobjs[i];
9896 space_info->block_group_kobjs[i] = NULL;
9897 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009898 kobject_del(kobj);
9899 kobject_put(kobj);
9900 }
9901 }
9902 kobject_del(&space_info->kobj);
9903 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -04009904 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009905 return 0;
9906}
9907
Nikolay Borisovc434d212017-08-21 12:43:50 +03009908static void link_block_group(struct btrfs_block_group_cache *cache)
Yan, Zhengb742bb82010-05-16 10:46:24 -04009909{
Nikolay Borisovc434d212017-08-21 12:43:50 +03009910 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengb742bb82010-05-16 10:46:24 -04009911 int index = get_block_group_index(cache);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04009912 bool first = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04009913
9914 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04009915 if (list_empty(&space_info->block_groups[index]))
9916 first = true;
9917 list_add_tail(&cache->list, &space_info->block_groups[index]);
9918 up_write(&space_info->groups_sem);
9919
9920 if (first) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009921 struct raid_kobject *rkobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009922 int ret;
9923
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009924 rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
9925 if (!rkobj)
9926 goto out_err;
9927 rkobj->raid_type = index;
9928 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
9929 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
9930 "%s", get_raid_name(index));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009931 if (ret) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009932 kobject_put(&rkobj->kobj);
9933 goto out_err;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009934 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009935 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009936 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009937
9938 return;
9939out_err:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009940 btrfs_warn(cache->fs_info,
9941 "failed to add kobject for block cache, ignoring");
Yan, Zhengb742bb82010-05-16 10:46:24 -04009942}
9943
Miao Xie920e4a52014-01-15 20:00:55 +08009944static struct btrfs_block_group_cache *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009945btrfs_create_block_group_cache(struct btrfs_fs_info *fs_info,
9946 u64 start, u64 size)
Miao Xie920e4a52014-01-15 20:00:55 +08009947{
9948 struct btrfs_block_group_cache *cache;
9949
9950 cache = kzalloc(sizeof(*cache), GFP_NOFS);
9951 if (!cache)
9952 return NULL;
9953
9954 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
9955 GFP_NOFS);
9956 if (!cache->free_space_ctl) {
9957 kfree(cache);
9958 return NULL;
9959 }
9960
9961 cache->key.objectid = start;
9962 cache->key.offset = size;
9963 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
9964
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009965 cache->fs_info = fs_info;
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03009966 cache->full_stripe_len = btrfs_full_stripe_len(fs_info, start);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07009967 set_free_space_tree_thresholds(cache);
9968
Miao Xie920e4a52014-01-15 20:00:55 +08009969 atomic_set(&cache->count, 1);
9970 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +08009971 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +08009972 INIT_LIST_HEAD(&cache->list);
9973 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009974 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -04009975 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -05009976 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07009977 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +08009978 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +00009979 atomic_set(&cache->trimming, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -07009980 mutex_init(&cache->free_space_lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +08009981 btrfs_init_full_stripe_locks_tree(&cache->full_stripe_locks_root);
Miao Xie920e4a52014-01-15 20:00:55 +08009982
9983 return cache;
9984}
9985
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04009986int btrfs_read_block_groups(struct btrfs_fs_info *info)
Chris Mason9078a3e2007-04-26 16:46:15 -04009987{
9988 struct btrfs_path *path;
9989 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04009990 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -04009991 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04009992 struct btrfs_key key;
9993 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -04009994 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -04009995 int need_clear = 0;
9996 u64 cache_gen;
Liu Bo49303382016-08-25 18:08:27 -07009997 u64 feature;
9998 int mixed;
9999
10000 feature = btrfs_super_incompat_flags(info->super_copy);
10001 mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS);
Chris Mason96b51792007-10-15 16:15:19 -040010002
Chris Mason9078a3e2007-04-26 16:46:15 -040010003 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -040010004 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010005 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -040010006 path = btrfs_alloc_path();
10007 if (!path)
10008 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +010010009 path->reada = READA_FORWARD;
Chris Mason9078a3e2007-04-26 16:46:15 -040010010
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010011 cache_gen = btrfs_super_cache_generation(info->super_copy);
10012 if (btrfs_test_opt(info, SPACE_CACHE) &&
10013 btrfs_super_generation(info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -040010014 need_clear = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010015 if (btrfs_test_opt(info, CLEAR_CACHE))
Josef Bacik88c2ba32010-09-21 14:21:34 -040010016 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -040010017
Chris Masond3977122009-01-05 21:25:51 -050010018 while (1) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010019 ret = find_first_block_group(info, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -040010020 if (ret > 0)
10021 break;
Chris Mason0b86a832008-03-24 15:01:56 -040010022 if (ret != 0)
10023 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +080010024
Chris Mason5f39d392007-10-15 16:14:19 -040010025 leaf = path->nodes[0];
10026 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +080010027
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010028 cache = btrfs_create_block_group_cache(info, found_key.objectid,
Miao Xie920e4a52014-01-15 20:00:55 +080010029 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -040010030 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -040010031 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -040010032 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -040010033 }
Josef Bacik96303082009-07-13 21:29:25 -040010034
Liu Bocf7c1ef2012-07-06 03:31:34 -060010035 if (need_clear) {
10036 /*
10037 * When we mount with old space cache, we need to
10038 * set BTRFS_DC_CLEAR and set dirty flag.
10039 *
10040 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
10041 * truncate the old free space cache inode and
10042 * setup a new one.
10043 * b) Setting 'dirty flag' makes sure that we flush
10044 * the new space cache info onto disk.
10045 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010046 if (btrfs_test_opt(info, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -050010047 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -060010048 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010049
Chris Mason5f39d392007-10-15 16:14:19 -040010050 read_extent_buffer(leaf, &cache->item,
10051 btrfs_item_ptr_offset(leaf, path->slots[0]),
10052 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +080010053 cache->flags = btrfs_block_group_flags(&cache->item);
Liu Bo49303382016-08-25 18:08:27 -070010054 if (!mixed &&
10055 ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) &&
10056 (cache->flags & BTRFS_BLOCK_GROUP_DATA))) {
10057 btrfs_err(info,
10058"bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups",
10059 cache->key.objectid);
10060 ret = -EINVAL;
10061 goto error;
10062 }
Chris Mason0b86a832008-03-24 15:01:56 -040010063
Chris Mason9078a3e2007-04-26 16:46:15 -040010064 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +020010065 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +080010066
Josef Bacik817d52f2009-07-13 21:29:25 -040010067 /*
Josef Bacik3c148742011-02-02 15:53:47 +000010068 * We need to exclude the super stripes now so that the space
10069 * info has super bytes accounted for, otherwise we'll think
10070 * we have more space than we actually do.
10071 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010072 ret = exclude_super_stripes(info, cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010073 if (ret) {
10074 /*
10075 * We may have excluded something, so call this just in
10076 * case.
10077 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010078 free_excluded_extents(info, cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010079 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010080 goto error;
10081 }
Josef Bacik3c148742011-02-02 15:53:47 +000010082
10083 /*
Josef Bacik817d52f2009-07-13 21:29:25 -040010084 * check for two cases, either we are full, and therefore
10085 * don't need to bother with the caching work since we won't
10086 * find any space, or we are empty, and we can just add all
10087 * the space in and be done with it. This saves us _alot_ of
10088 * time, particularly in the full case.
10089 */
10090 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -040010091 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010092 cache->cached = BTRFS_CACHE_FINISHED;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010093 free_excluded_extents(info, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010094 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -040010095 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010096 cache->cached = BTRFS_CACHE_FINISHED;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010097 add_new_free_space(cache, info,
Josef Bacik817d52f2009-07-13 21:29:25 -040010098 found_key.objectid,
10099 found_key.objectid +
10100 found_key.offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010101 free_excluded_extents(info, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010102 }
Chris Mason96b51792007-10-15 16:15:19 -040010103
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010104 ret = btrfs_add_block_group_cache(info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010105 if (ret) {
10106 btrfs_remove_free_space_cache(cache);
10107 btrfs_put_block_group(cache);
10108 goto error;
10109 }
10110
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010111 trace_btrfs_add_block_group(info, cache, 0);
Nikolay Borisovd2006e6d2017-05-22 09:35:50 +030010112 update_space_info(info, cache->flags, found_key.offset,
10113 btrfs_block_group_used(&cache->item),
10114 cache->bytes_super, &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010115
Chris Mason6324fbf2008-03-24 15:01:59 -040010116 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -040010117
Nikolay Borisovc434d212017-08-21 12:43:50 +030010118 link_block_group(cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010119
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010120 set_avail_alloc_bits(info, cache->flags);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010121 if (btrfs_chunk_readonly(info, cache->key.objectid)) {
Zhaolei868f4012015-08-05 16:43:27 +080010122 inc_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010123 } else if (btrfs_block_group_used(&cache->item) == 0) {
10124 spin_lock(&info->unused_bgs_lock);
10125 /* Should always be true but just in case. */
10126 if (list_empty(&cache->bg_list)) {
10127 btrfs_get_block_group(cache);
10128 list_add_tail(&cache->bg_list,
10129 &info->unused_bgs);
10130 }
10131 spin_unlock(&info->unused_bgs_lock);
10132 }
Chris Mason9078a3e2007-04-26 16:46:15 -040010133 }
Yan, Zhengb742bb82010-05-16 10:46:24 -040010134
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010135 list_for_each_entry_rcu(space_info, &info->space_info, list) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010136 if (!(get_alloc_profile(info, space_info->flags) &
Yan, Zhengb742bb82010-05-16 10:46:24 -040010137 (BTRFS_BLOCK_GROUP_RAID10 |
10138 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -050010139 BTRFS_BLOCK_GROUP_RAID5 |
10140 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb82010-05-16 10:46:24 -040010141 BTRFS_BLOCK_GROUP_DUP)))
10142 continue;
10143 /*
10144 * avoid allocating from un-mirrored block group if there are
10145 * mirrored block groups.
10146 */
chandan1095cc02013-07-16 12:28:56 +053010147 list_for_each_entry(cache,
10148 &space_info->block_groups[BTRFS_RAID_RAID0],
10149 list)
Zhaolei868f4012015-08-05 16:43:27 +080010150 inc_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +053010151 list_for_each_entry(cache,
10152 &space_info->block_groups[BTRFS_RAID_SINGLE],
10153 list)
Zhaolei868f4012015-08-05 16:43:27 +080010154 inc_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -040010155 }
Yan, Zhengf0486c62010-05-16 10:46:25 -040010156
10157 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -040010158 ret = 0;
10159error:
Chris Mason9078a3e2007-04-26 16:46:15 -040010160 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -040010161 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010162}
Chris Mason6324fbf2008-03-24 15:01:59 -040010163
Nikolay Borisov6c686b32018-02-07 17:55:40 +020010164void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans)
Josef Bacikea658ba2012-09-11 16:57:25 -040010165{
Nikolay Borisov6c686b32018-02-07 17:55:40 +020010166 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacikea658ba2012-09-11 16:57:25 -040010167 struct btrfs_block_group_cache *block_group, *tmp;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010168 struct btrfs_root *extent_root = fs_info->extent_root;
Josef Bacikea658ba2012-09-11 16:57:25 -040010169 struct btrfs_block_group_item item;
10170 struct btrfs_key key;
10171 int ret = 0;
Filipe Mananad9a05402015-10-03 13:13:13 +010010172 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -040010173
Filipe Mananad9a05402015-10-03 13:13:13 +010010174 trans->can_flush_pending_bgs = false;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010175 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
Josef Bacikea658ba2012-09-11 16:57:25 -040010176 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +000010177 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -040010178
10179 spin_lock(&block_group->lock);
10180 memcpy(&item, &block_group->item, sizeof(item));
10181 memcpy(&key, &block_group->key, sizeof(key));
10182 spin_unlock(&block_group->lock);
10183
10184 ret = btrfs_insert_item(trans, extent_root, &key, &item,
10185 sizeof(item));
10186 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010187 btrfs_abort_transaction(trans, ret);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010188 ret = btrfs_finish_chunk_alloc(trans, fs_info, key.objectid,
10189 key.offset);
Josef Bacik6df9a952013-06-27 13:22:46 -040010190 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010191 btrfs_abort_transaction(trans, ret);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010192 add_block_group_free_space(trans, fs_info, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010193 /* already aborted the transaction if it failed. */
Filipe Mananac92f6be2014-11-26 15:28:55 +000010194next:
10195 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010196 }
Filipe Mananad9a05402015-10-03 13:13:13 +010010197 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -040010198}
10199
Chris Mason6324fbf2008-03-24 15:01:59 -040010200int btrfs_make_block_group(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010201 struct btrfs_fs_info *fs_info, u64 bytes_used,
Nikolay Borisov01744842017-07-27 14:22:11 +030010202 u64 type, u64 chunk_offset, u64 size)
Chris Mason6324fbf2008-03-24 15:01:59 -040010203{
Chris Mason6324fbf2008-03-24 15:01:59 -040010204 struct btrfs_block_group_cache *cache;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010205 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -040010206
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010207 btrfs_set_log_full_commit(fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -040010208
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010209 cache = btrfs_create_block_group_cache(fs_info, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -040010210 if (!cache)
10211 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +080010212
Chris Mason6324fbf2008-03-24 15:01:59 -040010213 btrfs_set_block_group_used(&cache->item, bytes_used);
Nikolay Borisov01744842017-07-27 14:22:11 +030010214 btrfs_set_block_group_chunk_objectid(&cache->item,
10215 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
Chris Mason6324fbf2008-03-24 15:01:59 -040010216 btrfs_set_block_group_flags(&cache->item, type);
10217
Miao Xie920e4a52014-01-15 20:00:55 +080010218 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -040010219 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010220 cache->cached = BTRFS_CACHE_FINISHED;
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010221 cache->needs_free_space = 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010222 ret = exclude_super_stripes(fs_info, cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010223 if (ret) {
10224 /*
10225 * We may have excluded something, so call this just in
10226 * case.
10227 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010228 free_excluded_extents(fs_info, cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010229 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010230 return ret;
10231 }
Josef Bacik96303082009-07-13 21:29:25 -040010232
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010233 add_new_free_space(cache, fs_info, chunk_offset, chunk_offset + size);
Josef Bacik817d52f2009-07-13 21:29:25 -040010234
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010235 free_excluded_extents(fs_info, cache);
Yan Zheng11833d62009-09-11 16:11:19 -040010236
Josef Bacikd0bd4562015-09-23 14:54:14 -040010237#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010238 if (btrfs_should_fragment_free_space(cache)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -040010239 u64 new_bytes_used = size - bytes_used;
10240
10241 bytes_used += new_bytes_used >> 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010242 fragment_free_space(cache);
Josef Bacikd0bd4562015-09-23 14:54:14 -040010243 }
10244#endif
Filipe Manana2e6e5182015-05-12 00:28:11 +010010245 /*
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010246 * Ensure the corresponding space_info object is created and
10247 * assigned to our block group. We want our bg to be added to the rbtree
10248 * with its ->space_info set.
Filipe Manana2e6e5182015-05-12 00:28:11 +010010249 */
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010250 cache->space_info = __find_space_info(fs_info, cache->flags);
10251 if (!cache->space_info) {
10252 ret = create_space_info(fs_info, cache->flags,
10253 &cache->space_info);
10254 if (ret) {
10255 btrfs_remove_free_space_cache(cache);
10256 btrfs_put_block_group(cache);
10257 return ret;
10258 }
Filipe Manana2e6e5182015-05-12 00:28:11 +010010259 }
10260
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010261 ret = btrfs_add_block_group_cache(fs_info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010262 if (ret) {
10263 btrfs_remove_free_space_cache(cache);
10264 btrfs_put_block_group(cache);
10265 return ret;
10266 }
10267
Filipe Manana2e6e5182015-05-12 00:28:11 +010010268 /*
10269 * Now that our block group has its ->space_info set and is inserted in
10270 * the rbtree, update the space info's counters.
10271 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010272 trace_btrfs_add_block_group(fs_info, cache, 1);
Nikolay Borisovd2006e6d2017-05-22 09:35:50 +030010273 update_space_info(fs_info, cache->flags, size, bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -040010274 cache->bytes_super, &cache->space_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010275 update_global_block_rsv(fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -040010276
Nikolay Borisovc434d212017-08-21 12:43:50 +030010277 link_block_group(cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010278
Josef Bacik47ab2a62014-09-18 11:20:02 -040010279 list_add_tail(&cache->bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -040010280
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010281 set_avail_alloc_bits(fs_info, type);
Chris Mason6324fbf2008-03-24 15:01:59 -040010282 return 0;
10283}
Zheng Yan1a40e232008-09-26 10:09:34 -040010284
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010285static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
10286{
Ilya Dryomov899c81e2012-03-27 17:09:16 +030010287 u64 extra_flags = chunk_to_extended(flags) &
10288 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010289
Miao Xiede98ced2013-01-29 10:13:12 +000010290 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010291 if (flags & BTRFS_BLOCK_GROUP_DATA)
10292 fs_info->avail_data_alloc_bits &= ~extra_flags;
10293 if (flags & BTRFS_BLOCK_GROUP_METADATA)
10294 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
10295 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
10296 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +000010297 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010298}
10299
Zheng Yan1a40e232008-09-26 10:09:34 -040010300int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010301 struct btrfs_fs_info *fs_info, u64 group_start,
Filipe Manana04216822014-11-27 21:14:15 +000010302 struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -040010303{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010304 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010305 struct btrfs_path *path;
10306 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -040010307 struct btrfs_free_cluster *cluster;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010308 struct btrfs_root *tree_root = fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010309 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -040010310 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010311 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -040010312 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010313 int index;
Josef Bacik89a55892010-10-14 14:52:27 -040010314 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +000010315 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +000010316 bool remove_em;
Zheng Yan1a40e232008-09-26 10:09:34 -040010317
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010318 block_group = btrfs_lookup_block_group(fs_info, group_start);
Zheng Yan1a40e232008-09-26 10:09:34 -040010319 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -050010320 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -040010321
liubo9f7c43c2011-03-07 02:13:33 +000010322 /*
10323 * Free the reserved super bytes from this block group before
10324 * remove it.
10325 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010326 free_excluded_extents(fs_info, block_group);
Josef Bacikfd708b82017-09-29 15:43:50 -040010327 btrfs_free_ref_tree_range(fs_info, block_group->key.objectid,
10328 block_group->key.offset);
liubo9f7c43c2011-03-07 02:13:33 +000010329
Zheng Yan1a40e232008-09-26 10:09:34 -040010330 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010331 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -040010332 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
10333 BTRFS_BLOCK_GROUP_RAID1 |
10334 BTRFS_BLOCK_GROUP_RAID10))
10335 factor = 2;
10336 else
10337 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -040010338
Chris Mason44fb5512009-06-04 15:34:51 -040010339 /* make sure this block group isn't part of an allocation cluster */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010340 cluster = &fs_info->data_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010341 spin_lock(&cluster->refill_lock);
10342 btrfs_return_cluster_to_free_space(block_group, cluster);
10343 spin_unlock(&cluster->refill_lock);
10344
10345 /*
10346 * make sure this block group isn't part of a metadata
10347 * allocation cluster
10348 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010349 cluster = &fs_info->meta_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010350 spin_lock(&cluster->refill_lock);
10351 btrfs_return_cluster_to_free_space(block_group, cluster);
10352 spin_unlock(&cluster->refill_lock);
10353
Zheng Yan1a40e232008-09-26 10:09:34 -040010354 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010355 if (!path) {
10356 ret = -ENOMEM;
10357 goto out;
10358 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010359
Chris Mason1bbc6212015-04-06 12:46:08 -070010360 /*
10361 * get the inode first so any iput calls done for the io_list
10362 * aren't the final iput (no unlinks allowed now)
10363 */
Jeff Mahoney77ab86b2017-02-15 16:28:30 -050010364 inode = lookup_free_space_inode(fs_info, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010365
10366 mutex_lock(&trans->transaction->cache_write_mutex);
10367 /*
10368 * make sure our free spache cache IO is done before remove the
10369 * free space inode
10370 */
10371 spin_lock(&trans->transaction->dirty_bgs_lock);
10372 if (!list_empty(&block_group->io_list)) {
10373 list_del_init(&block_group->io_list);
10374
10375 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
10376
10377 spin_unlock(&trans->transaction->dirty_bgs_lock);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -040010378 btrfs_wait_cache_io(trans, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010379 btrfs_put_block_group(block_group);
10380 spin_lock(&trans->transaction->dirty_bgs_lock);
10381 }
10382
10383 if (!list_empty(&block_group->dirty_list)) {
10384 list_del_init(&block_group->dirty_list);
10385 btrfs_put_block_group(block_group);
10386 }
10387 spin_unlock(&trans->transaction->dirty_bgs_lock);
10388 mutex_unlock(&trans->transaction->cache_write_mutex);
10389
Josef Bacik0af3d002010-06-21 14:48:16 -040010390 if (!IS_ERR(inode)) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010391 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010392 if (ret) {
10393 btrfs_add_delayed_iput(inode);
10394 goto out;
10395 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010396 clear_nlink(inode);
10397 /* One for the block groups ref */
10398 spin_lock(&block_group->lock);
10399 if (block_group->iref) {
10400 block_group->iref = 0;
10401 block_group->inode = NULL;
10402 spin_unlock(&block_group->lock);
10403 iput(inode);
10404 } else {
10405 spin_unlock(&block_group->lock);
10406 }
10407 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -040010408 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -040010409 }
10410
10411 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
10412 key.offset = block_group->key.objectid;
10413 key.type = 0;
10414
10415 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
10416 if (ret < 0)
10417 goto out;
10418 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +020010419 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010420 if (ret == 0) {
10421 ret = btrfs_del_item(trans, tree_root, path);
10422 if (ret)
10423 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +020010424 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010425 }
10426
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010427 spin_lock(&fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010428 rb_erase(&block_group->cache_node,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010429 &fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +000010430 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +000010431
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010432 if (fs_info->first_logical_byte == block_group->key.objectid)
10433 fs_info->first_logical_byte = (u64)-1;
10434 spin_unlock(&fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010435
Josef Bacik80eb2342008-10-29 14:49:05 -040010436 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -040010437 /*
10438 * we must use list_del_init so people can check to see if they
10439 * are still on the list after taking the semaphore
10440 */
10441 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010442 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010443 kobj = block_group->space_info->block_group_kobjs[index];
10444 block_group->space_info->block_group_kobjs[index] = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010445 clear_avail_alloc_bits(fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010446 }
Josef Bacik80eb2342008-10-29 14:49:05 -040010447 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010448 if (kobj) {
10449 kobject_del(kobj);
10450 kobject_put(kobj);
10451 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010452
Filipe Manana4f69cb92014-11-26 15:28:51 +000010453 if (block_group->has_caching_ctl)
10454 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -040010455 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -040010456 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010457 if (block_group->has_caching_ctl) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010458 down_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010459 if (!caching_ctl) {
10460 struct btrfs_caching_control *ctl;
10461
10462 list_for_each_entry(ctl,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010463 &fs_info->caching_block_groups, list)
Filipe Manana4f69cb92014-11-26 15:28:51 +000010464 if (ctl->block_group == block_group) {
10465 caching_ctl = ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +020010466 refcount_inc(&caching_ctl->count);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010467 break;
10468 }
10469 }
10470 if (caching_ctl)
10471 list_del_init(&caching_ctl->list);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010472 up_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010473 if (caching_ctl) {
10474 /* Once for the caching bgs list and once for us. */
10475 put_caching_control(caching_ctl);
10476 put_caching_control(caching_ctl);
10477 }
10478 }
Josef Bacik817d52f2009-07-13 21:29:25 -040010479
Josef Bacikce93ec52014-11-17 15:45:48 -050010480 spin_lock(&trans->transaction->dirty_bgs_lock);
10481 if (!list_empty(&block_group->dirty_list)) {
Chris Mason1bbc6212015-04-06 12:46:08 -070010482 WARN_ON(1);
10483 }
10484 if (!list_empty(&block_group->io_list)) {
10485 WARN_ON(1);
Josef Bacikce93ec52014-11-17 15:45:48 -050010486 }
10487 spin_unlock(&trans->transaction->dirty_bgs_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010488 btrfs_remove_free_space_cache(block_group);
10489
Yan Zhengc146afa2008-11-12 14:34:12 -050010490 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +000010491 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +080010492
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010493 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Zhao Lei18d018a2015-02-24 20:07:44 +080010494 WARN_ON(block_group->space_info->total_bytes
10495 < block_group->key.offset);
10496 WARN_ON(block_group->space_info->bytes_readonly
10497 < block_group->key.offset);
10498 WARN_ON(block_group->space_info->disk_total
10499 < block_group->key.offset * factor);
10500 }
Yan Zhengc146afa2008-11-12 14:34:12 -050010501 block_group->space_info->total_bytes -= block_group->key.offset;
10502 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -040010503 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +080010504
Yan Zhengc146afa2008-11-12 14:34:12 -050010505 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -040010506
Josef Bacik0af3d002010-06-21 14:48:16 -040010507 memcpy(&key, &block_group->key, sizeof(key));
10508
David Sterba34441362016-10-04 19:34:27 +020010509 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana495e64f2014-12-02 18:07:30 +000010510 if (!list_empty(&em->list)) {
10511 /* We're in the transaction->pending_chunks list. */
10512 free_extent_map(em);
10513 }
Filipe Manana04216822014-11-27 21:14:15 +000010514 spin_lock(&block_group->lock);
10515 block_group->removed = 1;
10516 /*
10517 * At this point trimming can't start on this block group, because we
10518 * removed the block group from the tree fs_info->block_group_cache_tree
10519 * so no one can't find it anymore and even if someone already got this
10520 * block group before we removed it from the rbtree, they have already
10521 * incremented block_group->trimming - if they didn't, they won't find
10522 * any free space entries because we already removed them all when we
10523 * called btrfs_remove_free_space_cache().
10524 *
10525 * And we must not remove the extent map from the fs_info->mapping_tree
10526 * to prevent the same logical address range and physical device space
10527 * ranges from being reused for a new block group. This is because our
10528 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
10529 * completely transactionless, so while it is trimming a range the
10530 * currently running transaction might finish and a new one start,
10531 * allowing for new block groups to be created that can reuse the same
10532 * physical device locations unless we take this special care.
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010533 *
10534 * There may also be an implicit trim operation if the file system
10535 * is mounted with -odiscard. The same protections must remain
10536 * in place until the extents have been discarded completely when
10537 * the transaction commit has completed.
Filipe Manana04216822014-11-27 21:14:15 +000010538 */
10539 remove_em = (atomic_read(&block_group->trimming) == 0);
10540 /*
10541 * Make sure a trimmer task always sees the em in the pinned_chunks list
10542 * if it sees block_group->removed == 1 (needs to lock block_group->lock
10543 * before checking block_group->removed).
10544 */
10545 if (!remove_em) {
10546 /*
10547 * Our em might be in trans->transaction->pending_chunks which
10548 * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks),
10549 * and so is the fs_info->pinned_chunks list.
10550 *
10551 * So at this point we must be holding the chunk_mutex to avoid
10552 * any races with chunk allocation (more specifically at
10553 * volumes.c:contains_pending_extent()), to ensure it always
10554 * sees the em, either in the pending_chunks list or in the
10555 * pinned_chunks list.
10556 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010557 list_move_tail(&em->list, &fs_info->pinned_chunks);
Filipe Manana04216822014-11-27 21:14:15 +000010558 }
10559 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +000010560
10561 if (remove_em) {
10562 struct extent_map_tree *em_tree;
10563
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010564 em_tree = &fs_info->mapping_tree.map_tree;
Filipe Manana04216822014-11-27 21:14:15 +000010565 write_lock(&em_tree->lock);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010566 /*
10567 * The em might be in the pending_chunks list, so make sure the
10568 * chunk mutex is locked, since remove_extent_mapping() will
10569 * delete us from that list.
10570 */
Filipe Manana04216822014-11-27 21:14:15 +000010571 remove_extent_mapping(em_tree, em);
10572 write_unlock(&em_tree->lock);
10573 /* once for the tree */
10574 free_extent_map(em);
10575 }
10576
David Sterba34441362016-10-04 19:34:27 +020010577 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010578
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010579 ret = remove_block_group_free_space(trans, fs_info, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010580 if (ret)
10581 goto out;
10582
Chris Masonfa9c0d792009-04-03 09:47:43 -040010583 btrfs_put_block_group(block_group);
10584 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -040010585
10586 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
10587 if (ret > 0)
10588 ret = -EIO;
10589 if (ret < 0)
10590 goto out;
10591
10592 ret = btrfs_del_item(trans, root, path);
10593out:
10594 btrfs_free_path(path);
10595 return ret;
10596}
liuboacce9522011-01-06 19:30:25 +080010597
Filipe Manana8eab77f2015-11-13 23:57:16 +000010598struct btrfs_trans_handle *
Filipe Manana7fd01182015-11-13 23:57:17 +000010599btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info,
10600 const u64 chunk_offset)
Filipe Manana8eab77f2015-11-13 23:57:16 +000010601{
Filipe Manana7fd01182015-11-13 23:57:17 +000010602 struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree;
10603 struct extent_map *em;
10604 struct map_lookup *map;
10605 unsigned int num_items;
10606
10607 read_lock(&em_tree->lock);
10608 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
10609 read_unlock(&em_tree->lock);
10610 ASSERT(em && em->start == chunk_offset);
10611
Filipe Manana8eab77f2015-11-13 23:57:16 +000010612 /*
Filipe Manana7fd01182015-11-13 23:57:17 +000010613 * We need to reserve 3 + N units from the metadata space info in order
10614 * to remove a block group (done at btrfs_remove_chunk() and at
10615 * btrfs_remove_block_group()), which are used for:
10616 *
Filipe Manana8eab77f2015-11-13 23:57:16 +000010617 * 1 unit for adding the free space inode's orphan (located in the tree
10618 * of tree roots).
Filipe Manana7fd01182015-11-13 23:57:17 +000010619 * 1 unit for deleting the block group item (located in the extent
10620 * tree).
10621 * 1 unit for deleting the free space item (located in tree of tree
10622 * roots).
10623 * N units for deleting N device extent items corresponding to each
10624 * stripe (located in the device tree).
10625 *
10626 * In order to remove a block group we also need to reserve units in the
10627 * system space info in order to update the chunk tree (update one or
10628 * more device items and remove one chunk item), but this is done at
10629 * btrfs_remove_chunk() through a call to check_system_chunk().
Filipe Manana8eab77f2015-11-13 23:57:16 +000010630 */
Jeff Mahoney95617d62015-06-03 10:55:48 -040010631 map = em->map_lookup;
Filipe Manana7fd01182015-11-13 23:57:17 +000010632 num_items = 3 + map->num_stripes;
10633 free_extent_map(em);
10634
Filipe Manana8eab77f2015-11-13 23:57:16 +000010635 return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root,
Filipe Manana7fd01182015-11-13 23:57:17 +000010636 num_items, 1);
Filipe Manana8eab77f2015-11-13 23:57:16 +000010637}
10638
Josef Bacik47ab2a62014-09-18 11:20:02 -040010639/*
10640 * Process the unused_bgs list and remove any that don't have any allocated
10641 * space inside of them.
10642 */
10643void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
10644{
10645 struct btrfs_block_group_cache *block_group;
10646 struct btrfs_space_info *space_info;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010647 struct btrfs_trans_handle *trans;
10648 int ret = 0;
10649
Josef Bacikafcdd122016-09-02 15:40:02 -040010650 if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
Josef Bacik47ab2a62014-09-18 11:20:02 -040010651 return;
10652
10653 spin_lock(&fs_info->unused_bgs_lock);
10654 while (!list_empty(&fs_info->unused_bgs)) {
10655 u64 start, end;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010656 int trimming;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010657
10658 block_group = list_first_entry(&fs_info->unused_bgs,
10659 struct btrfs_block_group_cache,
10660 bg_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010661 list_del_init(&block_group->bg_list);
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010662
10663 space_info = block_group->space_info;
10664
Josef Bacik47ab2a62014-09-18 11:20:02 -040010665 if (ret || btrfs_mixed_space_info(space_info)) {
10666 btrfs_put_block_group(block_group);
10667 continue;
10668 }
10669 spin_unlock(&fs_info->unused_bgs_lock);
10670
Zhao Leid5f2e332015-10-08 18:46:44 +080010671 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010672
Josef Bacik47ab2a62014-09-18 11:20:02 -040010673 /* Don't want to race with allocators so take the groups_sem */
10674 down_write(&space_info->groups_sem);
10675 spin_lock(&block_group->lock);
10676 if (block_group->reserved ||
10677 btrfs_block_group_used(&block_group->item) ||
Chris Mason19c4d2f2016-10-10 13:43:31 -070010678 block_group->ro ||
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010679 list_is_singular(&block_group->list)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -040010680 /*
10681 * We want to bail if we made new allocations or have
10682 * outstanding allocations in this block group. We do
10683 * the ro check in case balance is currently acting on
10684 * this block group.
10685 */
10686 spin_unlock(&block_group->lock);
10687 up_write(&space_info->groups_sem);
10688 goto next;
10689 }
10690 spin_unlock(&block_group->lock);
10691
10692 /* We don't want to force the issue, only flip if it's ok. */
Zhaolei868f4012015-08-05 16:43:27 +080010693 ret = inc_block_group_ro(block_group, 0);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010694 up_write(&space_info->groups_sem);
10695 if (ret < 0) {
10696 ret = 0;
10697 goto next;
10698 }
10699
10700 /*
10701 * Want to do this before we do anything else so we can recover
10702 * properly if we fail to join the transaction.
10703 */
Filipe Manana7fd01182015-11-13 23:57:17 +000010704 trans = btrfs_start_trans_remove_block_group(fs_info,
10705 block_group->key.objectid);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010706 if (IS_ERR(trans)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010707 btrfs_dec_block_group_ro(block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010708 ret = PTR_ERR(trans);
10709 goto next;
10710 }
10711
10712 /*
10713 * We could have pending pinned extents for this block group,
10714 * just delete them, we don't care about them anymore.
10715 */
10716 start = block_group->key.objectid;
10717 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +000010718 /*
10719 * Hold the unused_bg_unpin_mutex lock to avoid racing with
10720 * btrfs_finish_extent_commit(). If we are at transaction N,
10721 * another task might be running finish_extent_commit() for the
10722 * previous transaction N - 1, and have seen a range belonging
10723 * to the block group in freed_extents[] before we were able to
10724 * clear the whole block group range from freed_extents[]. This
10725 * means that task can lookup for the block group after we
10726 * unpinned it from freed_extents[] and removed it, leading to
10727 * a BUG_ON() at btrfs_unpin_extent_range().
10728 */
10729 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +000010730 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
David Sterba91166212016-04-26 23:54:39 +020010731 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000010732 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010733 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010734 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010735 goto end_trans;
10736 }
10737 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
David Sterba91166212016-04-26 23:54:39 +020010738 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000010739 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010740 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010741 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010742 goto end_trans;
10743 }
Filipe Mananad4b450c2015-01-29 19:18:25 +000010744 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010745
10746 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +080010747 spin_lock(&space_info->lock);
10748 spin_lock(&block_group->lock);
10749
10750 space_info->bytes_pinned -= block_group->pinned;
10751 space_info->bytes_readonly += block_group->pinned;
10752 percpu_counter_add(&space_info->total_bytes_pinned,
10753 -block_group->pinned);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010754 block_group->pinned = 0;
10755
Zhao Leic30666d2015-02-25 14:17:20 +080010756 spin_unlock(&block_group->lock);
10757 spin_unlock(&space_info->lock);
10758
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010759 /* DISCARD can flip during remount */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010760 trimming = btrfs_test_opt(fs_info, DISCARD);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010761
10762 /* Implicit trim during transaction commit. */
10763 if (trimming)
10764 btrfs_get_block_group_trimming(block_group);
10765
Josef Bacik47ab2a62014-09-18 11:20:02 -040010766 /*
10767 * Btrfs_remove_chunk will abort the transaction if things go
10768 * horribly wrong.
10769 */
Jeff Mahoney5b4aace2016-06-21 10:40:19 -040010770 ret = btrfs_remove_chunk(trans, fs_info,
Josef Bacik47ab2a62014-09-18 11:20:02 -040010771 block_group->key.objectid);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010772
10773 if (ret) {
10774 if (trimming)
10775 btrfs_put_block_group_trimming(block_group);
10776 goto end_trans;
10777 }
10778
10779 /*
10780 * If we're not mounted with -odiscard, we can just forget
10781 * about this block group. Otherwise we'll need to wait
10782 * until transaction commit to do the actual discard.
10783 */
10784 if (trimming) {
Filipe Manana348a0012015-11-27 12:16:16 +000010785 spin_lock(&fs_info->unused_bgs_lock);
10786 /*
10787 * A concurrent scrub might have added us to the list
10788 * fs_info->unused_bgs, so use a list_move operation
10789 * to add the block group to the deleted_bgs list.
10790 */
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010791 list_move(&block_group->bg_list,
10792 &trans->transaction->deleted_bgs);
Filipe Manana348a0012015-11-27 12:16:16 +000010793 spin_unlock(&fs_info->unused_bgs_lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010794 btrfs_get_block_group(block_group);
10795 }
Filipe Manana758eb512014-11-03 14:08:39 +000010796end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010797 btrfs_end_transaction(trans);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010798next:
Zhao Leid5f2e332015-10-08 18:46:44 +080010799 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010800 btrfs_put_block_group(block_group);
10801 spin_lock(&fs_info->unused_bgs_lock);
10802 }
10803 spin_unlock(&fs_info->unused_bgs_lock);
10804}
10805
liuboc59021f2011-03-07 02:13:14 +000010806int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
10807{
10808 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +000010809 struct btrfs_super_block *disk_super;
10810 u64 features;
10811 u64 flags;
10812 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000010813 int ret;
10814
David Sterba6c417612011-04-13 15:41:04 +020010815 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000010816 if (!btrfs_super_root(disk_super))
Dan Carpenter0dc924c52016-01-13 15:21:17 +030010817 return -EINVAL;
liuboc59021f2011-03-07 02:13:14 +000010818
liubo1aba86d2011-04-08 08:44:37 +000010819 features = btrfs_super_incompat_flags(disk_super);
10820 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
10821 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000010822
liubo1aba86d2011-04-08 08:44:37 +000010823 flags = BTRFS_BLOCK_GROUP_SYSTEM;
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010824 ret = create_space_info(fs_info, flags, &space_info);
liuboc59021f2011-03-07 02:13:14 +000010825 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000010826 goto out;
liuboc59021f2011-03-07 02:13:14 +000010827
liubo1aba86d2011-04-08 08:44:37 +000010828 if (mixed) {
10829 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010830 ret = create_space_info(fs_info, flags, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010831 } else {
10832 flags = BTRFS_BLOCK_GROUP_METADATA;
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010833 ret = create_space_info(fs_info, flags, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010834 if (ret)
10835 goto out;
10836
10837 flags = BTRFS_BLOCK_GROUP_DATA;
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010838 ret = create_space_info(fs_info, flags, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010839 }
10840out:
liuboc59021f2011-03-07 02:13:14 +000010841 return ret;
10842}
10843
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010844int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info,
10845 u64 start, u64 end)
liuboacce9522011-01-06 19:30:25 +080010846{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010847 return unpin_extent_range(fs_info, start, end, false);
liuboacce9522011-01-06 19:30:25 +080010848}
10849
Jeff Mahoney499f3772015-06-15 09:41:17 -040010850/*
10851 * It used to be that old block groups would be left around forever.
10852 * Iterating over them would be enough to trim unused space. Since we
10853 * now automatically remove them, we also need to iterate over unallocated
10854 * space.
10855 *
10856 * We don't want a transaction for this since the discard may take a
10857 * substantial amount of time. We don't require that a transaction be
10858 * running, but we do need to take a running transaction into account
10859 * to ensure that we're not discarding chunks that were released in
10860 * the current transaction.
10861 *
10862 * Holding the chunks lock will prevent other threads from allocating
10863 * or releasing chunks, but it won't prevent a running transaction
10864 * from committing and releasing the memory that the pending chunks
10865 * list head uses. For that, we need to take a reference to the
10866 * transaction.
10867 */
10868static int btrfs_trim_free_extents(struct btrfs_device *device,
10869 u64 minlen, u64 *trimmed)
10870{
10871 u64 start = 0, len = 0;
10872 int ret;
10873
10874 *trimmed = 0;
10875
10876 /* Not writeable = nothing to do. */
Anand Jainebbede42017-12-04 12:54:52 +080010877 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Jeff Mahoney499f3772015-06-15 09:41:17 -040010878 return 0;
10879
10880 /* No free space = nothing to do. */
10881 if (device->total_bytes <= device->bytes_used)
10882 return 0;
10883
10884 ret = 0;
10885
10886 while (1) {
Jeff Mahoneyfb456252016-06-22 18:54:56 -040010887 struct btrfs_fs_info *fs_info = device->fs_info;
Jeff Mahoney499f3772015-06-15 09:41:17 -040010888 struct btrfs_transaction *trans;
10889 u64 bytes;
10890
10891 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
10892 if (ret)
10893 return ret;
10894
10895 down_read(&fs_info->commit_root_sem);
10896
10897 spin_lock(&fs_info->trans_lock);
10898 trans = fs_info->running_transaction;
10899 if (trans)
Elena Reshetova9b64f572017-03-03 10:55:11 +020010900 refcount_inc(&trans->use_count);
Jeff Mahoney499f3772015-06-15 09:41:17 -040010901 spin_unlock(&fs_info->trans_lock);
10902
10903 ret = find_free_dev_extent_start(trans, device, minlen, start,
10904 &start, &len);
10905 if (trans)
10906 btrfs_put_transaction(trans);
10907
10908 if (ret) {
10909 up_read(&fs_info->commit_root_sem);
10910 mutex_unlock(&fs_info->chunk_mutex);
10911 if (ret == -ENOSPC)
10912 ret = 0;
10913 break;
10914 }
10915
10916 ret = btrfs_issue_discard(device->bdev, start, len, &bytes);
10917 up_read(&fs_info->commit_root_sem);
10918 mutex_unlock(&fs_info->chunk_mutex);
10919
10920 if (ret)
10921 break;
10922
10923 start += len;
10924 *trimmed += bytes;
10925
10926 if (fatal_signal_pending(current)) {
10927 ret = -ERESTARTSYS;
10928 break;
10929 }
10930
10931 cond_resched();
10932 }
10933
10934 return ret;
10935}
10936
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010937int btrfs_trim_fs(struct btrfs_fs_info *fs_info, struct fstrim_range *range)
Li Dongyangf7039b12011-03-24 10:24:28 +000010938{
Li Dongyangf7039b12011-03-24 10:24:28 +000010939 struct btrfs_block_group_cache *cache = NULL;
Jeff Mahoney499f3772015-06-15 09:41:17 -040010940 struct btrfs_device *device;
10941 struct list_head *devices;
Li Dongyangf7039b12011-03-24 10:24:28 +000010942 u64 group_trimmed;
10943 u64 start;
10944 u64 end;
10945 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +080010946 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +000010947 int ret = 0;
10948
Liu Bo2cac13e2012-02-09 18:17:41 +080010949 /*
10950 * try to trim all FS space, our block group may start from non-zero.
10951 */
10952 if (range->len == total_bytes)
10953 cache = btrfs_lookup_first_block_group(fs_info, range->start);
10954 else
10955 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +000010956
10957 while (cache) {
10958 if (cache->key.objectid >= (range->start + range->len)) {
10959 btrfs_put_block_group(cache);
10960 break;
10961 }
10962
10963 start = max(range->start, cache->key.objectid);
10964 end = min(range->start + range->len,
10965 cache->key.objectid + cache->key.offset);
10966
10967 if (end - start >= range->minlen) {
10968 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000010969 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040010970 if (ret) {
10971 btrfs_put_block_group(cache);
10972 break;
10973 }
10974 ret = wait_block_group_cache_done(cache);
10975 if (ret) {
10976 btrfs_put_block_group(cache);
10977 break;
10978 }
Li Dongyangf7039b12011-03-24 10:24:28 +000010979 }
10980 ret = btrfs_trim_block_group(cache,
10981 &group_trimmed,
10982 start,
10983 end,
10984 range->minlen);
10985
10986 trimmed += group_trimmed;
10987 if (ret) {
10988 btrfs_put_block_group(cache);
10989 break;
10990 }
10991 }
10992
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010993 cache = next_block_group(fs_info, cache);
Li Dongyangf7039b12011-03-24 10:24:28 +000010994 }
10995
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010996 mutex_lock(&fs_info->fs_devices->device_list_mutex);
10997 devices = &fs_info->fs_devices->alloc_list;
Jeff Mahoney499f3772015-06-15 09:41:17 -040010998 list_for_each_entry(device, devices, dev_alloc_list) {
10999 ret = btrfs_trim_free_extents(device, range->minlen,
11000 &group_trimmed);
11001 if (ret)
11002 break;
11003
11004 trimmed += group_trimmed;
11005 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011006 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011007
Li Dongyangf7039b12011-03-24 10:24:28 +000011008 range->len = trimmed;
11009 return ret;
11010}
Miao Xie8257b2d2014-03-06 13:38:19 +080011011
11012/*
David Sterbaea14b57f2017-06-22 02:19:11 +020011013 * btrfs_{start,end}_write_no_snapshotting() are similar to
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011014 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
11015 * data into the page cache through nocow before the subvolume is snapshoted,
11016 * but flush the data into disk after the snapshot creation, or to prevent
David Sterbaea14b57f2017-06-22 02:19:11 +020011017 * operations while snapshotting is ongoing and that cause the snapshot to be
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011018 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080011019 */
David Sterbaea14b57f2017-06-22 02:19:11 +020011020void btrfs_end_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011021{
11022 percpu_counter_dec(&root->subv_writers->counter);
11023 /*
David Sterbaa83342a2015-02-16 19:36:47 +010011024 * Make sure counter is updated before we wake up waiters.
Miao Xie8257b2d2014-03-06 13:38:19 +080011025 */
11026 smp_mb();
11027 if (waitqueue_active(&root->subv_writers->wait))
11028 wake_up(&root->subv_writers->wait);
11029}
11030
David Sterbaea14b57f2017-06-22 02:19:11 +020011031int btrfs_start_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011032{
David Sterbaea14b57f2017-06-22 02:19:11 +020011033 if (atomic_read(&root->will_be_snapshotted))
Miao Xie8257b2d2014-03-06 13:38:19 +080011034 return 0;
11035
11036 percpu_counter_inc(&root->subv_writers->counter);
11037 /*
11038 * Make sure counter is updated before we check for snapshot creation.
11039 */
11040 smp_mb();
David Sterbaea14b57f2017-06-22 02:19:11 +020011041 if (atomic_read(&root->will_be_snapshotted)) {
11042 btrfs_end_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080011043 return 0;
11044 }
11045 return 1;
11046}
Zhao Lei0bc19f902016-01-06 18:56:36 +080011047
Zhao Lei0bc19f902016-01-06 18:56:36 +080011048void btrfs_wait_for_snapshot_creation(struct btrfs_root *root)
11049{
11050 while (true) {
11051 int ret;
11052
David Sterbaea14b57f2017-06-22 02:19:11 +020011053 ret = btrfs_start_write_no_snapshotting(root);
Zhao Lei0bc19f902016-01-06 18:56:36 +080011054 if (ret)
11055 break;
David Howells5e4def22017-11-02 15:27:44 +000011056 wait_on_atomic_t(&root->will_be_snapshotted, atomic_t_wait,
Zhao Lei0bc19f902016-01-06 18:56:36 +080011057 TASK_UNINTERRUPTIBLE);
11058 }
11059}