blob: af73264e33a557a93055efa22453554eadcbf4e1 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason6cbd5572007-06-12 09:07:21 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04004 */
David Sterbac1d7c512018-04-03 19:23:33 +02005
Zach Brownec6b9102007-07-11 10:00:37 -04006#include <linux/sched.h>
Ingo Molnarf361bf42017-02-03 23:47:37 +01007#include <linux/sched/signal.h>
Chris Masonedbd8d42007-12-21 16:27:24 -05008#include <linux/pagemap.h>
Chris Masonec44a352008-04-28 15:29:52 -04009#include <linux/writeback.h>
David Woodhouse21af8042008-08-12 14:13:26 +010010#include <linux/blkdev.h>
Chris Masonb7a9f292009-02-04 09:23:45 -050011#include <linux/sort.h>
Chris Mason4184ea72009-03-10 12:39:20 -040012#include <linux/rcupdate.h>
Josef Bacik817d52f2009-07-13 21:29:25 -040013#include <linux/kthread.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
David Sterbadff51cd2011-06-14 12:52:17 +020015#include <linux/ratelimit.h>
Josef Bacikb150a4f2013-06-19 15:00:04 -040016#include <linux/percpu_counter.h>
Josef Bacik69fe2d72017-10-19 14:15:57 -040017#include <linux/lockdep.h>
Nikolay Borisov9678c542018-01-08 11:45:05 +020018#include <linux/crc32c.h>
Miao Xie995946d2014-04-02 19:51:06 +080019#include "tree-log.h"
Chris Masonfec577f2007-02-26 10:40:21 -050020#include "disk-io.h"
21#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040022#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050023#include "raid56.h"
Chris Mason925baed2008-06-25 16:01:30 -040024#include "locking.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040025#include "free-space-cache.h"
Omar Sandoval1e144fb2015-09-29 20:50:37 -070026#include "free-space-tree.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060027#include "math.h"
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040028#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070029#include "qgroup.h"
Josef Bacikfd708b82017-09-29 15:43:50 -040030#include "ref-verify.h"
Chris Masonfec577f2007-02-26 10:40:21 -050031
Arne Jansen709c0482011-09-12 12:22:57 +020032#undef SCRAMBLE_DELAYED_REFS
33
Miao Xie9e622d62012-01-26 15:01:12 -050034/*
35 * control flags for do_chunk_alloc's force field
Chris Mason0e4f8f82011-04-15 16:05:44 -040036 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
37 * if we really need one.
38 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040039 * CHUNK_ALLOC_LIMITED means to only try and allocate one
40 * if we have very few chunks already allocated. This is
41 * used as part of the clustering code to help make sure
42 * we have a good pool of storage to cluster in, without
43 * filling the FS with empty chunks
44 *
Miao Xie9e622d62012-01-26 15:01:12 -050045 * CHUNK_ALLOC_FORCE means it must try to allocate one
46 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040047 */
48enum {
49 CHUNK_ALLOC_NO_FORCE = 0,
Miao Xie9e622d62012-01-26 15:01:12 -050050 CHUNK_ALLOC_LIMITED = 1,
51 CHUNK_ALLOC_FORCE = 2,
Chris Mason0e4f8f82011-04-15 16:05:44 -040052};
53
Qu Wenruo9f9b8e82018-10-24 20:24:01 +080054/*
55 * Declare a helper function to detect underflow of various space info members
56 */
57#define DECLARE_SPACE_INFO_UPDATE(name) \
58static inline void update_##name(struct btrfs_space_info *sinfo, \
59 s64 bytes) \
60{ \
61 if (bytes < 0 && sinfo->name < -bytes) { \
62 WARN_ON(1); \
63 sinfo->name = 0; \
64 return; \
65 } \
66 sinfo->name += bytes; \
67}
68
69DECLARE_SPACE_INFO_UPDATE(bytes_may_use);
Lu Fengqie2907c12018-10-24 20:24:02 +080070DECLARE_SPACE_INFO_UPDATE(bytes_pinned);
Qu Wenruo9f9b8e82018-10-24 20:24:01 +080071
Yan Zheng5d4f98a2009-06-10 10:45:14 -040072static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
Nikolay Borisove72cb922018-06-20 15:48:57 +030073 struct btrfs_delayed_ref_node *node, u64 parent,
74 u64 root_objectid, u64 owner_objectid,
75 u64 owner_offset, int refs_to_drop,
76 struct btrfs_delayed_extent_op *extra_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040077static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
78 struct extent_buffer *leaf,
79 struct btrfs_extent_item *ei);
80static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -040081 u64 parent, u64 root_objectid,
82 u64 flags, u64 owner, u64 offset,
83 struct btrfs_key *ins, int ref_mod);
84static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +030085 struct btrfs_delayed_ref_node *node,
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +030086 struct btrfs_delayed_extent_op *extent_op);
Nikolay Borisov01458822018-06-20 15:49:05 +030087static int do_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags,
Josef Bacik698d0082012-09-12 14:08:47 -040088 int force);
Yan Zheng11833d62009-09-11 16:11:19 -040089static int find_next_key(struct btrfs_path *path, int level,
90 struct btrfs_key *key);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -040091static void dump_space_info(struct btrfs_fs_info *fs_info,
92 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -040093 int dump_block_groups);
Josef Bacik5d803662013-02-07 16:06:02 -050094static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
95 u64 num_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -040096static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
97 struct btrfs_space_info *space_info,
98 u64 num_bytes);
99static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
100 struct btrfs_space_info *space_info,
101 u64 num_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -0500102
Josef Bacik817d52f2009-07-13 21:29:25 -0400103static noinline int
104block_group_cache_done(struct btrfs_block_group_cache *cache)
105{
106 smp_mb();
Josef Bacik36cce922013-08-05 11:15:21 -0400107 return cache->cached == BTRFS_CACHE_FINISHED ||
108 cache->cached == BTRFS_CACHE_ERROR;
Josef Bacik817d52f2009-07-13 21:29:25 -0400109}
110
Josef Bacik0f9dd462008-09-23 13:14:11 -0400111static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
112{
113 return (cache->flags & bits) == bits;
114}
115
Filipe Manana758f2df2015-11-19 11:45:48 +0000116void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +0000117{
118 atomic_inc(&cache->count);
119}
120
121void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
122{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400123 if (atomic_dec_and_test(&cache->count)) {
124 WARN_ON(cache->pinned > 0);
125 WARN_ON(cache->reserved > 0);
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800126
127 /*
128 * If not empty, someone is still holding mutex of
129 * full_stripe_lock, which can only be released by caller.
130 * And it will definitely cause use-after-free when caller
131 * tries to release full stripe lock.
132 *
133 * No better way to resolve, but only to warn.
134 */
135 WARN_ON(!RB_EMPTY_ROOT(&cache->full_stripe_locks_root.root));
Li Zefan34d52cb2011-03-29 13:46:06 +0800136 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000137 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400138 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000139}
140
Josef Bacik0f9dd462008-09-23 13:14:11 -0400141/*
142 * this adds the block group to the fs_info rb tree for the block group
143 * cache
144 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500145static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400146 struct btrfs_block_group_cache *block_group)
147{
148 struct rb_node **p;
149 struct rb_node *parent = NULL;
150 struct btrfs_block_group_cache *cache;
151
152 spin_lock(&info->block_group_cache_lock);
153 p = &info->block_group_cache_tree.rb_node;
154
155 while (*p) {
156 parent = *p;
157 cache = rb_entry(parent, struct btrfs_block_group_cache,
158 cache_node);
159 if (block_group->key.objectid < cache->key.objectid) {
160 p = &(*p)->rb_left;
161 } else if (block_group->key.objectid > cache->key.objectid) {
162 p = &(*p)->rb_right;
163 } else {
164 spin_unlock(&info->block_group_cache_lock);
165 return -EEXIST;
166 }
167 }
168
169 rb_link_node(&block_group->cache_node, parent, p);
170 rb_insert_color(&block_group->cache_node,
171 &info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +0000172
173 if (info->first_logical_byte > block_group->key.objectid)
174 info->first_logical_byte = block_group->key.objectid;
175
Josef Bacik0f9dd462008-09-23 13:14:11 -0400176 spin_unlock(&info->block_group_cache_lock);
177
178 return 0;
179}
180
181/*
182 * This will return the block group at or after bytenr if contains is 0, else
183 * it will return the block group that contains the bytenr
184 */
185static struct btrfs_block_group_cache *
186block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
187 int contains)
188{
189 struct btrfs_block_group_cache *cache, *ret = NULL;
190 struct rb_node *n;
191 u64 end, start;
192
193 spin_lock(&info->block_group_cache_lock);
194 n = info->block_group_cache_tree.rb_node;
195
196 while (n) {
197 cache = rb_entry(n, struct btrfs_block_group_cache,
198 cache_node);
199 end = cache->key.objectid + cache->key.offset - 1;
200 start = cache->key.objectid;
201
202 if (bytenr < start) {
203 if (!contains && (!ret || start < ret->key.objectid))
204 ret = cache;
205 n = n->rb_left;
206 } else if (bytenr > start) {
207 if (contains && bytenr <= end) {
208 ret = cache;
209 break;
210 }
211 n = n->rb_right;
212 } else {
213 ret = cache;
214 break;
215 }
216 }
Liu Boa1897fd2012-12-27 09:01:23 +0000217 if (ret) {
Josef Bacik11dfe352009-11-13 20:12:59 +0000218 btrfs_get_block_group(ret);
Liu Boa1897fd2012-12-27 09:01:23 +0000219 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
220 info->first_logical_byte = ret->key.objectid;
221 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400222 spin_unlock(&info->block_group_cache_lock);
223
224 return ret;
225}
226
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400227static int add_excluded_extent(struct btrfs_fs_info *fs_info,
Yan Zheng11833d62009-09-11 16:11:19 -0400228 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400229{
Yan Zheng11833d62009-09-11 16:11:19 -0400230 u64 end = start + num_bytes - 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400231 set_extent_bits(&fs_info->freed_extents[0],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200232 start, end, EXTENT_UPTODATE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400233 set_extent_bits(&fs_info->freed_extents[1],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200234 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400235 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400236}
237
Nikolay Borisov9e715da2018-06-20 15:49:08 +0300238static void free_excluded_extents(struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400239{
Nikolay Borisov9e715da2018-06-20 15:49:08 +0300240 struct btrfs_fs_info *fs_info = cache->fs_info;
Yan Zheng11833d62009-09-11 16:11:19 -0400241 u64 start, end;
242
243 start = cache->key.objectid;
244 end = start + cache->key.offset - 1;
245
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400246 clear_extent_bits(&fs_info->freed_extents[0],
David Sterba91166212016-04-26 23:54:39 +0200247 start, end, EXTENT_UPTODATE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400248 clear_extent_bits(&fs_info->freed_extents[1],
David Sterba91166212016-04-26 23:54:39 +0200249 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400250}
251
Nikolay Borisov3c4da652018-06-20 15:49:09 +0300252static int exclude_super_stripes(struct btrfs_block_group_cache *cache)
Yan Zheng11833d62009-09-11 16:11:19 -0400253{
Nikolay Borisov3c4da652018-06-20 15:49:09 +0300254 struct btrfs_fs_info *fs_info = cache->fs_info;
Josef Bacik817d52f2009-07-13 21:29:25 -0400255 u64 bytenr;
256 u64 *logical;
257 int stripe_len;
258 int i, nr, ret;
259
Yan, Zheng06b23312009-11-26 09:31:11 +0000260 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
261 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
262 cache->bytes_super += stripe_len;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400263 ret = add_excluded_extent(fs_info, cache->key.objectid,
Yan, Zheng06b23312009-11-26 09:31:11 +0000264 stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400265 if (ret)
266 return ret;
Yan, Zheng06b23312009-11-26 09:31:11 +0000267 }
268
Josef Bacik817d52f2009-07-13 21:29:25 -0400269 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
270 bytenr = btrfs_sb_offset(i);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400271 ret = btrfs_rmap_block(fs_info, cache->key.objectid,
Nikolay Borisov63a9c7b2018-05-04 10:53:05 +0300272 bytenr, &logical, &nr, &stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400273 if (ret)
274 return ret;
Yan Zheng11833d62009-09-11 16:11:19 -0400275
Josef Bacik817d52f2009-07-13 21:29:25 -0400276 while (nr--) {
Josef Bacik51bf5f02013-04-23 12:55:21 -0400277 u64 start, len;
278
279 if (logical[nr] > cache->key.objectid +
280 cache->key.offset)
281 continue;
282
283 if (logical[nr] + stripe_len <= cache->key.objectid)
284 continue;
285
286 start = logical[nr];
287 if (start < cache->key.objectid) {
288 start = cache->key.objectid;
289 len = (logical[nr] + stripe_len) - start;
290 } else {
291 len = min_t(u64, stripe_len,
292 cache->key.objectid +
293 cache->key.offset - start);
294 }
295
296 cache->bytes_super += len;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400297 ret = add_excluded_extent(fs_info, start, len);
Josef Bacik835d9742013-03-19 12:13:25 -0400298 if (ret) {
299 kfree(logical);
300 return ret;
301 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400302 }
Yan Zheng11833d62009-09-11 16:11:19 -0400303
Josef Bacik817d52f2009-07-13 21:29:25 -0400304 kfree(logical);
305 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400306 return 0;
307}
308
Yan Zheng11833d62009-09-11 16:11:19 -0400309static struct btrfs_caching_control *
310get_caching_control(struct btrfs_block_group_cache *cache)
311{
312 struct btrfs_caching_control *ctl;
313
314 spin_lock(&cache->lock);
Josef Bacikdde5abe2010-09-16 16:17:03 -0400315 if (!cache->caching_ctl) {
316 spin_unlock(&cache->lock);
317 return NULL;
318 }
319
Yan Zheng11833d62009-09-11 16:11:19 -0400320 ctl = cache->caching_ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200321 refcount_inc(&ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400322 spin_unlock(&cache->lock);
323 return ctl;
324}
325
326static void put_caching_control(struct btrfs_caching_control *ctl)
327{
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200328 if (refcount_dec_and_test(&ctl->count))
Yan Zheng11833d62009-09-11 16:11:19 -0400329 kfree(ctl);
330}
331
Josef Bacikd0bd4562015-09-23 14:54:14 -0400332#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400333static void fragment_free_space(struct btrfs_block_group_cache *block_group)
Josef Bacikd0bd4562015-09-23 14:54:14 -0400334{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400335 struct btrfs_fs_info *fs_info = block_group->fs_info;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400336 u64 start = block_group->key.objectid;
337 u64 len = block_group->key.offset;
338 u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ?
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400339 fs_info->nodesize : fs_info->sectorsize;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400340 u64 step = chunk << 1;
341
342 while (len > chunk) {
343 btrfs_remove_free_space(block_group, start, chunk);
344 start += step;
345 if (len < step)
346 len = 0;
347 else
348 len -= step;
349 }
350}
351#endif
352
Josef Bacik0f9dd462008-09-23 13:14:11 -0400353/*
354 * this is only called by cache_block_group, since we could have freed extents
355 * we need to check the pinned_extents for any extents that can't be used yet
356 * since their free space will be released as soon as the transaction commits.
357 */
Omar Sandovala5ed9182015-09-29 20:50:35 -0700358u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Nikolay Borisov4457c1c2018-05-10 15:44:45 +0300359 u64 start, u64 end)
Josef Bacik0f9dd462008-09-23 13:14:11 -0400360{
Nikolay Borisov4457c1c2018-05-10 15:44:45 +0300361 struct btrfs_fs_info *info = block_group->fs_info;
Josef Bacik817d52f2009-07-13 21:29:25 -0400362 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400363 int ret;
364
365 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400366 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400367 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400368 EXTENT_DIRTY | EXTENT_UPTODATE,
369 NULL);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400370 if (ret)
371 break;
372
Yan, Zheng06b23312009-11-26 09:31:11 +0000373 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400374 start = extent_end + 1;
375 } else if (extent_start > start && extent_start < end) {
376 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400377 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500378 ret = btrfs_add_free_space(block_group, start,
379 size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100380 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400381 start = extent_end + 1;
382 } else {
383 break;
384 }
385 }
386
387 if (start < end) {
388 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400389 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500390 ret = btrfs_add_free_space(block_group, start, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100391 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400392 }
393
Josef Bacik817d52f2009-07-13 21:29:25 -0400394 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400395}
396
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700397static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl)
Chris Masone37c9e62007-05-09 20:13:14 -0400398{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400399 struct btrfs_block_group_cache *block_group = caching_ctl->block_group;
400 struct btrfs_fs_info *fs_info = block_group->fs_info;
401 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400402 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400403 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400404 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400405 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400406 u64 last = 0;
407 u32 nritems;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700408 int ret;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400409 bool wakeup = true;
Chris Masonf510cfe2007-10-15 16:14:48 -0400410
Chris Masone37c9e62007-05-09 20:13:14 -0400411 path = btrfs_alloc_path();
412 if (!path)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700413 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -0400414
Josef Bacik817d52f2009-07-13 21:29:25 -0400415 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400416
Josef Bacikd0bd4562015-09-23 14:54:14 -0400417#ifdef CONFIG_BTRFS_DEBUG
418 /*
419 * If we're fragmenting we don't want to make anybody think we can
420 * allocate from this block group until we've had a chance to fragment
421 * the free space.
422 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400423 if (btrfs_should_fragment_free_space(block_group))
Josef Bacikd0bd4562015-09-23 14:54:14 -0400424 wakeup = false;
425#endif
Chris Mason5cd57b22008-06-25 16:01:30 -0400426 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400427 * We don't want to deadlock with somebody trying to allocate a new
428 * extent for the extent root while also trying to search the extent
429 * root to add free space. So we skip locking and search the commit
430 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400431 */
432 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400433 path->search_commit_root = 1;
David Sterbae4058b52015-11-27 16:31:35 +0100434 path->reada = READA_FORWARD;
Josef Bacik817d52f2009-07-13 21:29:25 -0400435
Yan Zhenge4404d62008-12-12 10:03:26 -0500436 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400437 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400438 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400439
Liu Bo52ee28d2013-07-11 17:51:15 +0800440next:
Yan Zheng11833d62009-09-11 16:11:19 -0400441 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400442 if (ret < 0)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700443 goto out;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500444
Yan Zheng11833d62009-09-11 16:11:19 -0400445 leaf = path->nodes[0];
446 nritems = btrfs_header_nritems(leaf);
447
Chris Masond3977122009-01-05 21:25:51 -0500448 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200449 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400450 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400451 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400452 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400453
Yan Zheng11833d62009-09-11 16:11:19 -0400454 if (path->slots[0] < nritems) {
455 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
456 } else {
457 ret = find_next_key(path, 0, &key);
458 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400459 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400460
Josef Bacikc9ea7b22013-09-19 10:02:11 -0400461 if (need_resched() ||
Josef Bacik9e351cc2014-03-13 15:42:13 -0400462 rwsem_is_contended(&fs_info->commit_root_sem)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400463 if (wakeup)
464 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400465 btrfs_release_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400466 up_read(&fs_info->commit_root_sem);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400467 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400468 cond_resched();
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700469 mutex_lock(&caching_ctl->mutex);
470 down_read(&fs_info->commit_root_sem);
471 goto next;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400472 }
Josef Bacik0a3896d2013-04-19 14:37:26 -0400473
474 ret = btrfs_next_leaf(extent_root, path);
475 if (ret < 0)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700476 goto out;
Josef Bacik0a3896d2013-04-19 14:37:26 -0400477 if (ret)
478 break;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400479 leaf = path->nodes[0];
480 nritems = btrfs_header_nritems(leaf);
481 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400482 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400483
Liu Bo52ee28d2013-07-11 17:51:15 +0800484 if (key.objectid < last) {
485 key.objectid = last;
486 key.offset = 0;
487 key.type = BTRFS_EXTENT_ITEM_KEY;
488
Josef Bacikd0bd4562015-09-23 14:54:14 -0400489 if (wakeup)
490 caching_ctl->progress = last;
Liu Bo52ee28d2013-07-11 17:51:15 +0800491 btrfs_release_path(path);
492 goto next;
493 }
494
Yan Zheng11833d62009-09-11 16:11:19 -0400495 if (key.objectid < block_group->key.objectid) {
496 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400497 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400498 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400499
Chris Masone37c9e62007-05-09 20:13:14 -0400500 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400501 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400502 break;
Yan7d7d6062007-09-14 16:15:28 -0400503
Josef Bacik3173a182013-03-07 14:22:04 -0500504 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
505 key.type == BTRFS_METADATA_ITEM_KEY) {
Nikolay Borisov4457c1c2018-05-10 15:44:45 +0300506 total_found += add_new_free_space(block_group, last,
Josef Bacik817d52f2009-07-13 21:29:25 -0400507 key.objectid);
Josef Bacik3173a182013-03-07 14:22:04 -0500508 if (key.type == BTRFS_METADATA_ITEM_KEY)
509 last = key.objectid +
Jeff Mahoneyda170662016-06-15 09:22:56 -0400510 fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500511 else
512 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400513
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700514 if (total_found > CACHING_CTL_WAKE_UP) {
Yan Zheng11833d62009-09-11 16:11:19 -0400515 total_found = 0;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400516 if (wakeup)
517 wake_up(&caching_ctl->wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400518 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400519 }
Chris Masone37c9e62007-05-09 20:13:14 -0400520 path->slots[0]++;
521 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400522 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400523
Nikolay Borisov4457c1c2018-05-10 15:44:45 +0300524 total_found += add_new_free_space(block_group, last,
Josef Bacik817d52f2009-07-13 21:29:25 -0400525 block_group->key.objectid +
526 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400527 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400528
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700529out:
530 btrfs_free_path(path);
531 return ret;
532}
533
534static noinline void caching_thread(struct btrfs_work *work)
535{
536 struct btrfs_block_group_cache *block_group;
537 struct btrfs_fs_info *fs_info;
538 struct btrfs_caching_control *caching_ctl;
539 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;
544
545 mutex_lock(&caching_ctl->mutex);
546 down_read(&fs_info->commit_root_sem);
547
Omar Sandoval1e144fb2015-09-29 20:50:37 -0700548 if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE))
549 ret = load_free_space_tree(caching_ctl);
550 else
551 ret = load_extent_tree_free(caching_ctl);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700552
Josef Bacik817d52f2009-07-13 21:29:25 -0400553 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400554 block_group->caching_ctl = NULL;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700555 block_group->cached = ret ? BTRFS_CACHE_ERROR : BTRFS_CACHE_FINISHED;
Josef Bacik817d52f2009-07-13 21:29:25 -0400556 spin_unlock(&block_group->lock);
557
Josef Bacikd0bd4562015-09-23 14:54:14 -0400558#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400559 if (btrfs_should_fragment_free_space(block_group)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400560 u64 bytes_used;
561
562 spin_lock(&block_group->space_info->lock);
563 spin_lock(&block_group->lock);
564 bytes_used = block_group->key.offset -
565 btrfs_block_group_used(&block_group->item);
566 block_group->space_info->bytes_used += bytes_used >> 1;
567 spin_unlock(&block_group->lock);
568 spin_unlock(&block_group->space_info->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400569 fragment_free_space(block_group);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400570 }
571#endif
572
573 caching_ctl->progress = (u64)-1;
Chris Masonf7d3d2f2015-12-18 11:11:10 -0800574
Josef Bacik9e351cc2014-03-13 15:42:13 -0400575 up_read(&fs_info->commit_root_sem);
Nikolay Borisov9e715da2018-06-20 15:49:08 +0300576 free_excluded_extents(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -0400577 mutex_unlock(&caching_ctl->mutex);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700578
Yan Zheng11833d62009-09-11 16:11:19 -0400579 wake_up(&caching_ctl->wait);
580
581 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000582 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400583}
584
Josef Bacik9d66e232010-08-25 16:54:15 -0400585static int cache_block_group(struct btrfs_block_group_cache *cache,
Josef Bacik9d66e232010-08-25 16:54:15 -0400586 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400587{
Josef Bacik291c7d22011-11-14 13:52:14 -0500588 DEFINE_WAIT(wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400589 struct btrfs_fs_info *fs_info = cache->fs_info;
590 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400591 int ret = 0;
592
Josef Bacik291c7d22011-11-14 13:52:14 -0500593 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100594 if (!caching_ctl)
595 return -ENOMEM;
Josef Bacik291c7d22011-11-14 13:52:14 -0500596
597 INIT_LIST_HEAD(&caching_ctl->list);
598 mutex_init(&caching_ctl->mutex);
599 init_waitqueue_head(&caching_ctl->wait);
600 caching_ctl->block_group = cache;
601 caching_ctl->progress = cache->key.objectid;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200602 refcount_set(&caching_ctl->count, 1);
Liu Bo9e0af232014-08-15 23:36:53 +0800603 btrfs_init_work(&caching_ctl->work, btrfs_cache_helper,
604 caching_thread, NULL, NULL);
Josef Bacik291c7d22011-11-14 13:52:14 -0500605
606 spin_lock(&cache->lock);
607 /*
608 * This should be a rare occasion, but this could happen I think in the
609 * case where one thread starts to load the space cache info, and then
610 * some other thread starts a transaction commit which tries to do an
611 * allocation while the other thread is still loading the space cache
612 * info. The previous loop should have kept us from choosing this block
613 * group, but if we've moved to the state where we will wait on caching
614 * block groups we need to first check if we're doing a fast load here,
615 * so we can wait for it to finish, otherwise we could end up allocating
616 * from a block group who's cache gets evicted for one reason or
617 * another.
618 */
619 while (cache->cached == BTRFS_CACHE_FAST) {
620 struct btrfs_caching_control *ctl;
621
622 ctl = cache->caching_ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200623 refcount_inc(&ctl->count);
Josef Bacik291c7d22011-11-14 13:52:14 -0500624 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
625 spin_unlock(&cache->lock);
626
627 schedule();
628
629 finish_wait(&ctl->wait, &wait);
630 put_caching_control(ctl);
631 spin_lock(&cache->lock);
632 }
633
634 if (cache->cached != BTRFS_CACHE_NO) {
635 spin_unlock(&cache->lock);
636 kfree(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400637 return 0;
Josef Bacik291c7d22011-11-14 13:52:14 -0500638 }
639 WARN_ON(cache->caching_ctl);
640 cache->caching_ctl = caching_ctl;
641 cache->cached = BTRFS_CACHE_FAST;
642 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400643
Satoru Takeuchid8953d62017-09-12 20:08:08 +0900644 if (btrfs_test_opt(fs_info, SPACE_CACHE)) {
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500645 mutex_lock(&caching_ctl->mutex);
David Sterbabb6cb1c2019-03-20 13:47:15 +0100646 ret = load_free_space_cache(cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400647
648 spin_lock(&cache->lock);
649 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500650 cache->caching_ctl = NULL;
Josef Bacik9d66e232010-08-25 16:54:15 -0400651 cache->cached = BTRFS_CACHE_FINISHED;
652 cache->last_byte_to_unpin = (u64)-1;
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500653 caching_ctl->progress = (u64)-1;
Josef Bacik9d66e232010-08-25 16:54:15 -0400654 } else {
Josef Bacik291c7d22011-11-14 13:52:14 -0500655 if (load_cache_only) {
656 cache->caching_ctl = NULL;
657 cache->cached = BTRFS_CACHE_NO;
658 } else {
659 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000660 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500661 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400662 }
663 spin_unlock(&cache->lock);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400664#ifdef CONFIG_BTRFS_DEBUG
665 if (ret == 1 &&
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400666 btrfs_should_fragment_free_space(cache)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400667 u64 bytes_used;
668
669 spin_lock(&cache->space_info->lock);
670 spin_lock(&cache->lock);
671 bytes_used = cache->key.offset -
672 btrfs_block_group_used(&cache->item);
673 cache->space_info->bytes_used += bytes_used >> 1;
674 spin_unlock(&cache->lock);
675 spin_unlock(&cache->space_info->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400676 fragment_free_space(cache);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400677 }
678#endif
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500679 mutex_unlock(&caching_ctl->mutex);
680
Josef Bacik291c7d22011-11-14 13:52:14 -0500681 wake_up(&caching_ctl->wait);
Josef Bacik3c148742011-02-02 15:53:47 +0000682 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500683 put_caching_control(caching_ctl);
Nikolay Borisov9e715da2018-06-20 15:49:08 +0300684 free_excluded_extents(cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400685 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000686 }
Josef Bacik291c7d22011-11-14 13:52:14 -0500687 } else {
688 /*
Omar Sandoval1e144fb2015-09-29 20:50:37 -0700689 * We're either using the free space tree or no caching at all.
690 * Set cached to the appropriate value and wakeup any waiters.
Josef Bacik291c7d22011-11-14 13:52:14 -0500691 */
692 spin_lock(&cache->lock);
693 if (load_cache_only) {
694 cache->caching_ctl = NULL;
695 cache->cached = BTRFS_CACHE_NO;
696 } else {
697 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000698 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500699 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400700 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500701 wake_up(&caching_ctl->wait);
702 }
703
704 if (load_cache_only) {
705 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400706 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400707 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400708
Josef Bacik9e351cc2014-03-13 15:42:13 -0400709 down_write(&fs_info->commit_root_sem);
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200710 refcount_inc(&caching_ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400711 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400712 up_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -0400713
Josef Bacik11dfe352009-11-13 20:12:59 +0000714 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400715
Qu Wenruoe66f0bb2014-02-28 10:46:12 +0800716 btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work);
Josef Bacik817d52f2009-07-13 21:29:25 -0400717
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400718 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400719}
720
Josef Bacik0f9dd462008-09-23 13:14:11 -0400721/*
722 * return the block group that starts at or after bytenr
723 */
Chris Masond3977122009-01-05 21:25:51 -0500724static struct btrfs_block_group_cache *
725btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400726{
Masahiro Yamadae2c89902016-09-13 04:35:52 +0900727 return block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400728}
729
Josef Bacik0f9dd462008-09-23 13:14:11 -0400730/*
Sankar P9f556842009-05-14 13:52:22 -0400731 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400732 */
Chris Masond3977122009-01-05 21:25:51 -0500733struct btrfs_block_group_cache *btrfs_lookup_block_group(
734 struct btrfs_fs_info *info,
735 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400736{
Masahiro Yamadae2c89902016-09-13 04:35:52 +0900737 return block_group_cache_tree_search(info, bytenr, 1);
Chris Masonbe744172007-05-06 10:15:01 -0400738}
Chris Mason0b86a832008-03-24 15:01:56 -0400739
Josef Bacik0f9dd462008-09-23 13:14:11 -0400740static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
741 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400742{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400743 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400744 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400745
Ilya Dryomov52ba6922012-01-16 22:04:47 +0200746 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
Yan, Zhengb742bb822010-05-16 10:46:24 -0400747
Chris Mason4184ea72009-03-10 12:39:20 -0400748 rcu_read_lock();
749 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400750 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400751 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400752 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400753 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400754 }
Chris Mason4184ea72009-03-10 12:39:20 -0400755 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400756 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400757}
758
Qu Wenruo78192442019-05-15 07:33:48 +0800759static u64 generic_ref_to_space_flags(struct btrfs_ref *ref)
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700760{
Qu Wenruoddf30cf2019-04-04 14:45:34 +0800761 if (ref->type == BTRFS_REF_METADATA) {
762 if (ref->tree_ref.root == BTRFS_CHUNK_TREE_OBJECTID)
Qu Wenruo78192442019-05-15 07:33:48 +0800763 return BTRFS_BLOCK_GROUP_SYSTEM;
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700764 else
Qu Wenruo78192442019-05-15 07:33:48 +0800765 return BTRFS_BLOCK_GROUP_METADATA;
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700766 }
Qu Wenruo78192442019-05-15 07:33:48 +0800767 return BTRFS_BLOCK_GROUP_DATA;
768}
769
770static void add_pinned_bytes(struct btrfs_fs_info *fs_info,
771 struct btrfs_ref *ref)
772{
773 struct btrfs_space_info *space_info;
774 u64 flags = generic_ref_to_space_flags(ref);
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700775
776 space_info = __find_space_info(fs_info, flags);
Omar Sandoval55e81962017-06-06 16:45:27 -0700777 ASSERT(space_info);
Qu Wenruo78192442019-05-15 07:33:48 +0800778 percpu_counter_add_batch(&space_info->total_bytes_pinned, ref->len,
779 BTRFS_TOTAL_BYTES_PINNED_BATCH);
780}
781
782static void sub_pinned_bytes(struct btrfs_fs_info *fs_info,
783 struct btrfs_ref *ref)
784{
785 struct btrfs_space_info *space_info;
786 u64 flags = generic_ref_to_space_flags(ref);
787
788 space_info = __find_space_info(fs_info, flags);
789 ASSERT(space_info);
790 percpu_counter_add_batch(&space_info->total_bytes_pinned, -ref->len,
Ethan Liendec59fa2018-07-13 16:50:42 +0800791 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700792}
793
Chris Mason4184ea72009-03-10 12:39:20 -0400794/*
795 * after adding space to the filesystem, we need to clear the full flags
796 * on all the space infos.
797 */
798void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
799{
800 struct list_head *head = &info->space_info;
801 struct btrfs_space_info *found;
802
803 rcu_read_lock();
804 list_for_each_entry_rcu(found, head, list)
805 found->full = 0;
806 rcu_read_unlock();
807}
808
Filipe Manana1a4ed8f2014-10-27 10:44:24 +0000809/* simple helper to search for an existing data extent at a given offset */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400810int btrfs_lookup_data_extent(struct btrfs_fs_info *fs_info, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400811{
812 int ret;
813 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400814 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400815
Zheng Yan31840ae2008-09-23 13:14:14 -0400816 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700817 if (!path)
818 return -ENOMEM;
819
Chris Masone02119d2008-09-05 16:13:11 -0400820 key.objectid = start;
821 key.offset = len;
Josef Bacik3173a182013-03-07 14:22:04 -0500822 key.type = BTRFS_EXTENT_ITEM_KEY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400823 ret = btrfs_search_slot(NULL, fs_info->extent_root, &key, path, 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400824 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500825 return ret;
826}
827
Chris Masond8d5f3e2007-12-11 12:42:00 -0500828/*
Josef Bacik3173a182013-03-07 14:22:04 -0500829 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400830 *
831 * the head node for delayed ref is used to store the sum of all the
832 * reference count modifications queued up in the rbtree. the head
833 * node may also store the extent flags to set. This way you can check
834 * to see what the reference count and extent flags would be if all of
835 * the delayed refs are not processed.
836 */
837int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400838 struct btrfs_fs_info *fs_info, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500839 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400840{
841 struct btrfs_delayed_ref_head *head;
842 struct btrfs_delayed_ref_root *delayed_refs;
843 struct btrfs_path *path;
844 struct btrfs_extent_item *ei;
845 struct extent_buffer *leaf;
846 struct btrfs_key key;
847 u32 item_size;
848 u64 num_refs;
849 u64 extent_flags;
850 int ret;
851
Josef Bacik3173a182013-03-07 14:22:04 -0500852 /*
853 * If we don't have skinny metadata, don't bother doing anything
854 * different
855 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400856 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) {
857 offset = fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500858 metadata = 0;
859 }
860
Yan, Zhenga22285a2010-05-16 10:48:46 -0400861 path = btrfs_alloc_path();
862 if (!path)
863 return -ENOMEM;
864
Yan, Zhenga22285a2010-05-16 10:48:46 -0400865 if (!trans) {
866 path->skip_locking = 1;
867 path->search_commit_root = 1;
868 }
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000869
870search_again:
871 key.objectid = bytenr;
872 key.offset = offset;
873 if (metadata)
874 key.type = BTRFS_METADATA_ITEM_KEY;
875 else
876 key.type = BTRFS_EXTENT_ITEM_KEY;
877
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400878 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400879 if (ret < 0)
880 goto out_free;
881
Josef Bacik3173a182013-03-07 14:22:04 -0500882 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100883 if (path->slots[0]) {
884 path->slots[0]--;
885 btrfs_item_key_to_cpu(path->nodes[0], &key,
886 path->slots[0]);
887 if (key.objectid == bytenr &&
888 key.type == BTRFS_EXTENT_ITEM_KEY &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400889 key.offset == fs_info->nodesize)
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100890 ret = 0;
891 }
Josef Bacik3173a182013-03-07 14:22:04 -0500892 }
893
Yan, Zhenga22285a2010-05-16 10:48:46 -0400894 if (ret == 0) {
895 leaf = path->nodes[0];
896 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
897 if (item_size >= sizeof(*ei)) {
898 ei = btrfs_item_ptr(leaf, path->slots[0],
899 struct btrfs_extent_item);
900 num_refs = btrfs_extent_refs(leaf, ei);
901 extent_flags = btrfs_extent_flags(leaf, ei);
902 } else {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +0300903 ret = -EINVAL;
904 btrfs_print_v0_err(fs_info);
905 if (trans)
906 btrfs_abort_transaction(trans, ret);
907 else
908 btrfs_handle_fs_error(fs_info, ret, NULL);
909
910 goto out_free;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400911 }
Nikolay Borisovba3c2b12018-06-26 16:57:36 +0300912
Yan, Zhenga22285a2010-05-16 10:48:46 -0400913 BUG_ON(num_refs == 0);
914 } else {
915 num_refs = 0;
916 extent_flags = 0;
917 ret = 0;
918 }
919
920 if (!trans)
921 goto out;
922
923 delayed_refs = &trans->transaction->delayed_refs;
924 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -0800925 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400926 if (head) {
927 if (!mutex_trylock(&head->mutex)) {
Josef Bacikd2788502017-09-29 15:43:57 -0400928 refcount_inc(&head->refs);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400929 spin_unlock(&delayed_refs->lock);
930
David Sterbab3b4aa72011-04-21 01:20:15 +0200931 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400932
David Sterba8cc33e52011-05-02 15:29:25 +0200933 /*
934 * Mutex was contended, block until it's released and try
935 * again
936 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400937 mutex_lock(&head->mutex);
938 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -0400939 btrfs_put_delayed_ref_head(head);
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000940 goto search_again;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400941 }
Josef Bacikd7df2c72014-01-23 09:21:38 -0500942 spin_lock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400943 if (head->extent_op && head->extent_op->update_flags)
944 extent_flags |= head->extent_op->flags_to_set;
945 else
946 BUG_ON(num_refs == 0);
947
Josef Bacikd2788502017-09-29 15:43:57 -0400948 num_refs += head->ref_mod;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500949 spin_unlock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400950 mutex_unlock(&head->mutex);
951 }
952 spin_unlock(&delayed_refs->lock);
953out:
954 WARN_ON(num_refs == 0);
955 if (refs)
956 *refs = num_refs;
957 if (flags)
958 *flags = extent_flags;
959out_free:
960 btrfs_free_path(path);
961 return ret;
962}
963
964/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500965 * Back reference rules. Back refs have three main goals:
966 *
967 * 1) differentiate between all holders of references to an extent so that
968 * when a reference is dropped we can make sure it was a valid reference
969 * before freeing the extent.
970 *
971 * 2) Provide enough information to quickly find the holders of an extent
972 * if we notice a given block is corrupted or bad.
973 *
974 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
975 * maintenance. This is actually the same as #2, but with a slightly
976 * different use case.
977 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400978 * There are two kinds of back refs. The implicit back refs is optimized
979 * for pointers in non-shared tree blocks. For a given pointer in a block,
980 * back refs of this kind provide information about the block's owner tree
981 * and the pointer's key. These information allow us to find the block by
982 * b-tree searching. The full back refs is for pointers in tree blocks not
983 * referenced by their owner trees. The location of tree block is recorded
984 * in the back refs. Actually the full back refs is generic, and can be
985 * used in all cases the implicit back refs is used. The major shortcoming
986 * of the full back refs is its overhead. Every time a tree block gets
987 * COWed, we have to update back refs entry for all pointers in it.
988 *
989 * For a newly allocated tree block, we use implicit back refs for
990 * pointers in it. This means most tree related operations only involve
991 * implicit back refs. For a tree block created in old transaction, the
992 * only way to drop a reference to it is COW it. So we can detect the
993 * event that tree block loses its owner tree's reference and do the
994 * back refs conversion.
995 *
Nicholas D Steeves01327612016-05-19 21:18:45 -0400996 * When a tree block is COWed through a tree, there are four cases:
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400997 *
998 * The reference count of the block is one and the tree is the block's
999 * owner tree. Nothing to do in this case.
1000 *
1001 * The reference count of the block is one and the tree is not the
1002 * block's owner tree. In this case, full back refs is used for pointers
1003 * in the block. Remove these full back refs, add implicit back refs for
1004 * every pointers in the new block.
1005 *
1006 * The reference count of the block is greater than one and the tree is
1007 * the block's owner tree. In this case, implicit back refs is used for
1008 * pointers in the block. Add full back refs for every pointers in the
1009 * block, increase lower level extents' reference counts. The original
1010 * implicit back refs are entailed to the new block.
1011 *
1012 * The reference count of the block is greater than one and the tree is
1013 * not the block's owner tree. Add implicit back refs for every pointer in
1014 * the new block, increase lower level extents' reference count.
1015 *
1016 * Back Reference Key composing:
1017 *
1018 * The key objectid corresponds to the first byte in the extent,
1019 * The key type is used to differentiate between types of back refs.
1020 * There are different meanings of the key offset for different types
1021 * of back refs.
1022 *
Chris Masond8d5f3e2007-12-11 12:42:00 -05001023 * File extents can be referenced by:
1024 *
1025 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -04001026 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -05001027 * - different offsets inside a file (bookend extents in file.c)
1028 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001029 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001030 *
1031 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -05001032 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001033 * - original offset in the file
1034 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -04001035 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001036 * The key offset for the implicit back refs is hash of the first
1037 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001038 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001039 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001040 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001041 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001042 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001043 * The key offset for the implicit back refs is the first byte of
1044 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001045 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001046 * When a file extent is allocated, The implicit back refs is used.
1047 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001048 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001049 * (root_key.objectid, inode objectid, offset in file, 1)
1050 *
1051 * When a file extent is removed file truncation, we find the
1052 * corresponding implicit back refs and check the following fields:
1053 *
1054 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -05001055 *
1056 * Btree extents can be referenced by:
1057 *
1058 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -05001059 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001060 * Both the implicit back refs and the full back refs for tree blocks
1061 * only consist of key. The key offset for the implicit back refs is
1062 * objectid of block's owner tree. The key offset for the full back refs
1063 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001064 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001065 * When implicit back refs is used, information about the lowest key and
1066 * level of the tree block are required. These information are stored in
1067 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001068 */
Zheng Yan31840ae2008-09-23 13:14:14 -04001069
Liu Bo167ce952017-08-18 15:15:18 -06001070/*
1071 * is_data == BTRFS_REF_TYPE_BLOCK, tree block type is required,
Andrea Gelmini52042d82018-11-28 12:05:13 +01001072 * is_data == BTRFS_REF_TYPE_DATA, data type is requiried,
Liu Bo167ce952017-08-18 15:15:18 -06001073 * is_data == BTRFS_REF_TYPE_ANY, either type is OK.
1074 */
1075int btrfs_get_extent_inline_ref_type(const struct extent_buffer *eb,
1076 struct btrfs_extent_inline_ref *iref,
1077 enum btrfs_inline_ref_type is_data)
1078{
1079 int type = btrfs_extent_inline_ref_type(eb, iref);
Liu Bo64ecdb62017-08-18 15:15:24 -06001080 u64 offset = btrfs_extent_inline_ref_offset(eb, iref);
Liu Bo167ce952017-08-18 15:15:18 -06001081
1082 if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1083 type == BTRFS_SHARED_BLOCK_REF_KEY ||
1084 type == BTRFS_SHARED_DATA_REF_KEY ||
1085 type == BTRFS_EXTENT_DATA_REF_KEY) {
1086 if (is_data == BTRFS_REF_TYPE_BLOCK) {
Liu Bo64ecdb62017-08-18 15:15:24 -06001087 if (type == BTRFS_TREE_BLOCK_REF_KEY)
Liu Bo167ce952017-08-18 15:15:18 -06001088 return type;
Liu Bo64ecdb62017-08-18 15:15:24 -06001089 if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1090 ASSERT(eb->fs_info);
1091 /*
1092 * Every shared one has parent tree
1093 * block, which must be aligned to
1094 * nodesize.
1095 */
1096 if (offset &&
1097 IS_ALIGNED(offset, eb->fs_info->nodesize))
1098 return type;
1099 }
Liu Bo167ce952017-08-18 15:15:18 -06001100 } else if (is_data == BTRFS_REF_TYPE_DATA) {
Liu Bo64ecdb62017-08-18 15:15:24 -06001101 if (type == BTRFS_EXTENT_DATA_REF_KEY)
Liu Bo167ce952017-08-18 15:15:18 -06001102 return type;
Liu Bo64ecdb62017-08-18 15:15:24 -06001103 if (type == BTRFS_SHARED_DATA_REF_KEY) {
1104 ASSERT(eb->fs_info);
1105 /*
1106 * Every shared one has parent tree
1107 * block, which must be aligned to
1108 * nodesize.
1109 */
1110 if (offset &&
1111 IS_ALIGNED(offset, eb->fs_info->nodesize))
1112 return type;
1113 }
Liu Bo167ce952017-08-18 15:15:18 -06001114 } else {
1115 ASSERT(is_data == BTRFS_REF_TYPE_ANY);
1116 return type;
1117 }
1118 }
1119
1120 btrfs_print_leaf((struct extent_buffer *)eb);
1121 btrfs_err(eb->fs_info, "eb %llu invalid extent inline ref type %d",
1122 eb->start, type);
1123 WARN_ON(1);
1124
1125 return BTRFS_REF_TYPE_INVALID;
1126}
1127
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001128static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1129{
1130 u32 high_crc = ~(u32)0;
1131 u32 low_crc = ~(u32)0;
1132 __le64 lenum;
1133
1134 lenum = cpu_to_le64(root_objectid);
Nikolay Borisov9678c542018-01-08 11:45:05 +02001135 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001136 lenum = cpu_to_le64(owner);
Nikolay Borisov9678c542018-01-08 11:45:05 +02001137 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001138 lenum = cpu_to_le64(offset);
Nikolay Borisov9678c542018-01-08 11:45:05 +02001139 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001140
1141 return ((u64)high_crc << 31) ^ (u64)low_crc;
1142}
1143
1144static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1145 struct btrfs_extent_data_ref *ref)
1146{
1147 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1148 btrfs_extent_data_ref_objectid(leaf, ref),
1149 btrfs_extent_data_ref_offset(leaf, ref));
1150}
1151
1152static int match_extent_data_ref(struct extent_buffer *leaf,
1153 struct btrfs_extent_data_ref *ref,
1154 u64 root_objectid, u64 owner, u64 offset)
1155{
1156 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1157 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1158 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1159 return 0;
1160 return 1;
1161}
1162
1163static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001164 struct btrfs_path *path,
1165 u64 bytenr, u64 parent,
1166 u64 root_objectid,
1167 u64 owner, u64 offset)
1168{
Nikolay Borisovbd1d53e2018-06-20 15:48:51 +03001169 struct btrfs_root *root = trans->fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001170 struct btrfs_key key;
1171 struct btrfs_extent_data_ref *ref;
1172 struct extent_buffer *leaf;
1173 u32 nritems;
1174 int ret;
1175 int recow;
1176 int err = -ENOENT;
1177
1178 key.objectid = bytenr;
1179 if (parent) {
1180 key.type = BTRFS_SHARED_DATA_REF_KEY;
1181 key.offset = parent;
1182 } else {
1183 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1184 key.offset = hash_extent_data_ref(root_objectid,
1185 owner, offset);
1186 }
1187again:
1188 recow = 0;
1189 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1190 if (ret < 0) {
1191 err = ret;
1192 goto fail;
1193 }
1194
1195 if (parent) {
1196 if (!ret)
1197 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001198 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001199 }
1200
1201 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001202 nritems = btrfs_header_nritems(leaf);
1203 while (1) {
1204 if (path->slots[0] >= nritems) {
1205 ret = btrfs_next_leaf(root, path);
1206 if (ret < 0)
1207 err = ret;
1208 if (ret)
1209 goto fail;
1210
1211 leaf = path->nodes[0];
1212 nritems = btrfs_header_nritems(leaf);
1213 recow = 1;
1214 }
1215
1216 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1217 if (key.objectid != bytenr ||
1218 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1219 goto fail;
1220
1221 ref = btrfs_item_ptr(leaf, path->slots[0],
1222 struct btrfs_extent_data_ref);
1223
1224 if (match_extent_data_ref(leaf, ref, root_objectid,
1225 owner, offset)) {
1226 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001227 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001228 goto again;
1229 }
1230 err = 0;
1231 break;
1232 }
1233 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001234 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001235fail:
1236 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001237}
1238
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001239static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001240 struct btrfs_path *path,
1241 u64 bytenr, u64 parent,
1242 u64 root_objectid, u64 owner,
1243 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001244{
Nikolay Borisov62b895a2018-06-20 15:48:44 +03001245 struct btrfs_root *root = trans->fs_info->extent_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04001246 struct btrfs_key key;
1247 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001248 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001249 u32 num_refs;
1250 int ret;
1251
1252 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001253 if (parent) {
1254 key.type = BTRFS_SHARED_DATA_REF_KEY;
1255 key.offset = parent;
1256 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001257 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001258 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1259 key.offset = hash_extent_data_ref(root_objectid,
1260 owner, offset);
1261 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001262 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001263
1264 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1265 if (ret && ret != -EEXIST)
1266 goto fail;
1267
1268 leaf = path->nodes[0];
1269 if (parent) {
1270 struct btrfs_shared_data_ref *ref;
1271 ref = btrfs_item_ptr(leaf, path->slots[0],
1272 struct btrfs_shared_data_ref);
1273 if (ret == 0) {
1274 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1275 } else {
1276 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1277 num_refs += refs_to_add;
1278 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1279 }
1280 } else {
1281 struct btrfs_extent_data_ref *ref;
1282 while (ret == -EEXIST) {
1283 ref = btrfs_item_ptr(leaf, path->slots[0],
1284 struct btrfs_extent_data_ref);
1285 if (match_extent_data_ref(leaf, ref, root_objectid,
1286 owner, offset))
1287 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001288 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001289 key.offset++;
1290 ret = btrfs_insert_empty_item(trans, root, path, &key,
1291 size);
1292 if (ret && ret != -EEXIST)
1293 goto fail;
1294
1295 leaf = path->nodes[0];
1296 }
1297 ref = btrfs_item_ptr(leaf, path->slots[0],
1298 struct btrfs_extent_data_ref);
1299 if (ret == 0) {
1300 btrfs_set_extent_data_ref_root(leaf, ref,
1301 root_objectid);
1302 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1303 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1304 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1305 } else {
1306 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1307 num_refs += refs_to_add;
1308 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1309 }
1310 }
1311 btrfs_mark_buffer_dirty(leaf);
1312 ret = 0;
1313fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001314 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001315 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001316}
1317
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001318static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001319 struct btrfs_path *path,
Josef Bacikfcebe452014-05-13 17:30:47 -07001320 int refs_to_drop, int *last_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04001321{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001322 struct btrfs_key key;
1323 struct btrfs_extent_data_ref *ref1 = NULL;
1324 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001325 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001326 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001327 int ret = 0;
1328
1329 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001330 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1331
1332 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1333 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1334 struct btrfs_extent_data_ref);
1335 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1336 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1337 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1338 struct btrfs_shared_data_ref);
1339 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
David Sterba6d8ff4e2018-06-26 16:20:59 +02001340 } else if (unlikely(key.type == BTRFS_EXTENT_REF_V0_KEY)) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03001341 btrfs_print_v0_err(trans->fs_info);
1342 btrfs_abort_transaction(trans, -EINVAL);
1343 return -EINVAL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001344 } else {
1345 BUG();
1346 }
1347
Chris Mason56bec292009-03-13 10:10:06 -04001348 BUG_ON(num_refs < refs_to_drop);
1349 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001350
Zheng Yan31840ae2008-09-23 13:14:14 -04001351 if (num_refs == 0) {
Nikolay Borisove9f62902018-06-20 15:48:46 +03001352 ret = btrfs_del_item(trans, trans->fs_info->extent_root, path);
Josef Bacikfcebe452014-05-13 17:30:47 -07001353 *last_ref = 1;
Zheng Yan31840ae2008-09-23 13:14:14 -04001354 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001355 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1356 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1357 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1358 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
Zheng Yan31840ae2008-09-23 13:14:14 -04001359 btrfs_mark_buffer_dirty(leaf);
1360 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001361 return ret;
1362}
1363
Zhaolei9ed0dea2015-08-06 22:16:24 +08001364static noinline u32 extent_data_ref_count(struct btrfs_path *path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001365 struct btrfs_extent_inline_ref *iref)
1366{
1367 struct btrfs_key key;
1368 struct extent_buffer *leaf;
1369 struct btrfs_extent_data_ref *ref1;
1370 struct btrfs_shared_data_ref *ref2;
1371 u32 num_refs = 0;
Liu Bo3de28d52017-08-18 15:15:19 -06001372 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001373
1374 leaf = path->nodes[0];
1375 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03001376
1377 BUG_ON(key.type == BTRFS_EXTENT_REF_V0_KEY);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001378 if (iref) {
Liu Bo3de28d52017-08-18 15:15:19 -06001379 /*
1380 * If type is invalid, we should have bailed out earlier than
1381 * this call.
1382 */
1383 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
1384 ASSERT(type != BTRFS_REF_TYPE_INVALID);
1385 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001386 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1387 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1388 } else {
1389 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1390 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1391 }
1392 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1393 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1394 struct btrfs_extent_data_ref);
1395 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1396 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1397 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1398 struct btrfs_shared_data_ref);
1399 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001400 } else {
1401 WARN_ON(1);
1402 }
1403 return num_refs;
1404}
1405
1406static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001407 struct btrfs_path *path,
1408 u64 bytenr, u64 parent,
1409 u64 root_objectid)
1410{
Nikolay Borisovb8582ee2018-06-20 15:48:50 +03001411 struct btrfs_root *root = trans->fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001412 struct btrfs_key key;
1413 int ret;
1414
1415 key.objectid = bytenr;
1416 if (parent) {
1417 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1418 key.offset = parent;
1419 } else {
1420 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1421 key.offset = root_objectid;
1422 }
1423
1424 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1425 if (ret > 0)
1426 ret = -ENOENT;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001427 return ret;
1428}
1429
1430static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001431 struct btrfs_path *path,
1432 u64 bytenr, u64 parent,
1433 u64 root_objectid)
1434{
1435 struct btrfs_key key;
1436 int ret;
1437
1438 key.objectid = bytenr;
1439 if (parent) {
1440 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1441 key.offset = parent;
1442 } else {
1443 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1444 key.offset = root_objectid;
1445 }
1446
Nikolay Borisov10728402018-06-20 15:48:43 +03001447 ret = btrfs_insert_empty_item(trans, trans->fs_info->extent_root,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001448 path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001449 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001450 return ret;
1451}
1452
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001453static inline int extent_ref_type(u64 parent, u64 owner)
1454{
1455 int type;
1456 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1457 if (parent > 0)
1458 type = BTRFS_SHARED_BLOCK_REF_KEY;
1459 else
1460 type = BTRFS_TREE_BLOCK_REF_KEY;
1461 } else {
1462 if (parent > 0)
1463 type = BTRFS_SHARED_DATA_REF_KEY;
1464 else
1465 type = BTRFS_EXTENT_DATA_REF_KEY;
1466 }
1467 return type;
1468}
1469
Yan Zheng2c47e6052009-06-27 21:07:35 -04001470static int find_next_key(struct btrfs_path *path, int level,
1471 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001472
1473{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001474 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001475 if (!path->nodes[level])
1476 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001477 if (path->slots[level] + 1 >=
1478 btrfs_header_nritems(path->nodes[level]))
1479 continue;
1480 if (level == 0)
1481 btrfs_item_key_to_cpu(path->nodes[level], key,
1482 path->slots[level] + 1);
1483 else
1484 btrfs_node_key_to_cpu(path->nodes[level], key,
1485 path->slots[level] + 1);
1486 return 0;
1487 }
1488 return 1;
1489}
1490
1491/*
1492 * look for inline back ref. if back ref is found, *ref_ret is set
1493 * to the address of inline back ref, and 0 is returned.
1494 *
1495 * if back ref isn't found, *ref_ret is set to the address where it
1496 * should be inserted, and -ENOENT is returned.
1497 *
1498 * if insert is true and there are too many inline back refs, the path
1499 * points to the extent item, and -EAGAIN is returned.
1500 *
1501 * NOTE: inline back refs are ordered in the same way that back ref
1502 * items in the tree are ordered.
1503 */
1504static noinline_for_stack
1505int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001506 struct btrfs_path *path,
1507 struct btrfs_extent_inline_ref **ref_ret,
1508 u64 bytenr, u64 num_bytes,
1509 u64 parent, u64 root_objectid,
1510 u64 owner, u64 offset, int insert)
1511{
Nikolay Borisov867cc1f2018-06-20 15:48:48 +03001512 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney87bde3c2017-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 struct extent_buffer *leaf;
1516 struct btrfs_extent_item *ei;
1517 struct btrfs_extent_inline_ref *iref;
1518 u64 flags;
1519 u64 item_size;
1520 unsigned long ptr;
1521 unsigned long end;
1522 int extra_size;
1523 int type;
1524 int want;
1525 int ret;
1526 int err = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001527 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Liu Bo3de28d52017-08-18 15:15:19 -06001528 int needed;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001529
1530 key.objectid = bytenr;
1531 key.type = BTRFS_EXTENT_ITEM_KEY;
1532 key.offset = num_bytes;
1533
1534 want = extent_ref_type(parent, owner);
1535 if (insert) {
1536 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001537 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001538 } else
1539 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001540
1541 /*
Nikolay Borisov16d1c062018-06-18 14:59:26 +03001542 * Owner is our level, so we can just add one to get the level for the
1543 * block we are interested in.
Josef Bacik3173a182013-03-07 14:22:04 -05001544 */
1545 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1546 key.type = BTRFS_METADATA_ITEM_KEY;
1547 key.offset = owner;
1548 }
1549
1550again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001551 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1552 if (ret < 0) {
1553 err = ret;
1554 goto out;
1555 }
Josef Bacik3173a182013-03-07 14:22:04 -05001556
1557 /*
1558 * We may be a newly converted file system which still has the old fat
1559 * extent entries for metadata, so try and see if we have one of those.
1560 */
1561 if (ret > 0 && skinny_metadata) {
1562 skinny_metadata = false;
1563 if (path->slots[0]) {
1564 path->slots[0]--;
1565 btrfs_item_key_to_cpu(path->nodes[0], &key,
1566 path->slots[0]);
1567 if (key.objectid == bytenr &&
1568 key.type == BTRFS_EXTENT_ITEM_KEY &&
1569 key.offset == num_bytes)
1570 ret = 0;
1571 }
1572 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001573 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001574 key.type = BTRFS_EXTENT_ITEM_KEY;
1575 key.offset = num_bytes;
1576 btrfs_release_path(path);
1577 goto again;
1578 }
1579 }
1580
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001581 if (ret && !insert) {
1582 err = -ENOENT;
1583 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301584 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001585 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001586 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001587 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001588
1589 leaf = path->nodes[0];
1590 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
David Sterba6d8ff4e2018-06-26 16:20:59 +02001591 if (unlikely(item_size < sizeof(*ei))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03001592 err = -EINVAL;
1593 btrfs_print_v0_err(fs_info);
1594 btrfs_abort_transaction(trans, err);
1595 goto out;
1596 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001597
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001598 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1599 flags = btrfs_extent_flags(leaf, ei);
1600
1601 ptr = (unsigned long)(ei + 1);
1602 end = (unsigned long)ei + item_size;
1603
Josef Bacik3173a182013-03-07 14:22:04 -05001604 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001605 ptr += sizeof(struct btrfs_tree_block_info);
1606 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001607 }
1608
Liu Bo3de28d52017-08-18 15:15:19 -06001609 if (owner >= BTRFS_FIRST_FREE_OBJECTID)
1610 needed = BTRFS_REF_TYPE_DATA;
1611 else
1612 needed = BTRFS_REF_TYPE_BLOCK;
1613
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001614 err = -ENOENT;
1615 while (1) {
1616 if (ptr >= end) {
1617 WARN_ON(ptr > end);
1618 break;
1619 }
1620 iref = (struct btrfs_extent_inline_ref *)ptr;
Liu Bo3de28d52017-08-18 15:15:19 -06001621 type = btrfs_get_extent_inline_ref_type(leaf, iref, needed);
1622 if (type == BTRFS_REF_TYPE_INVALID) {
Su Yueaf431dc2018-06-22 16:18:01 +08001623 err = -EUCLEAN;
Liu Bo3de28d52017-08-18 15:15:19 -06001624 goto out;
1625 }
1626
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001627 if (want < type)
1628 break;
1629 if (want > type) {
1630 ptr += btrfs_extent_inline_ref_size(type);
1631 continue;
1632 }
1633
1634 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1635 struct btrfs_extent_data_ref *dref;
1636 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1637 if (match_extent_data_ref(leaf, dref, root_objectid,
1638 owner, offset)) {
1639 err = 0;
1640 break;
1641 }
1642 if (hash_extent_data_ref_item(leaf, dref) <
1643 hash_extent_data_ref(root_objectid, owner, offset))
1644 break;
1645 } else {
1646 u64 ref_offset;
1647 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1648 if (parent > 0) {
1649 if (parent == ref_offset) {
1650 err = 0;
1651 break;
1652 }
1653 if (ref_offset < parent)
1654 break;
1655 } else {
1656 if (root_objectid == ref_offset) {
1657 err = 0;
1658 break;
1659 }
1660 if (ref_offset < root_objectid)
1661 break;
1662 }
1663 }
1664 ptr += btrfs_extent_inline_ref_size(type);
1665 }
1666 if (err == -ENOENT && insert) {
1667 if (item_size + extra_size >=
1668 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1669 err = -EAGAIN;
1670 goto out;
1671 }
1672 /*
1673 * To add new inline back ref, we have to make sure
1674 * there is no corresponding back ref item.
1675 * For simplicity, we just do not add new inline back
1676 * ref if there is any kind of item for this block
1677 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001678 if (find_next_key(path, 0, &key) == 0 &&
1679 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001680 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001681 err = -EAGAIN;
1682 goto out;
1683 }
1684 }
1685 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1686out:
Yan Zheng85d41982009-06-11 08:51:10 -04001687 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001688 path->keep_locks = 0;
1689 btrfs_unlock_up_safe(path, 1);
1690 }
1691 return err;
1692}
1693
1694/*
1695 * helper to add new inline back ref
1696 */
1697static noinline_for_stack
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001698void setup_inline_extent_backref(struct btrfs_fs_info *fs_info,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001699 struct btrfs_path *path,
1700 struct btrfs_extent_inline_ref *iref,
1701 u64 parent, u64 root_objectid,
1702 u64 owner, u64 offset, int refs_to_add,
1703 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001704{
1705 struct extent_buffer *leaf;
1706 struct btrfs_extent_item *ei;
1707 unsigned long ptr;
1708 unsigned long end;
1709 unsigned long item_offset;
1710 u64 refs;
1711 int size;
1712 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001713
1714 leaf = path->nodes[0];
1715 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1716 item_offset = (unsigned long)iref - (unsigned long)ei;
1717
1718 type = extent_ref_type(parent, owner);
1719 size = btrfs_extent_inline_ref_size(type);
1720
David Sterbac71dd882019-03-20 14:51:10 +01001721 btrfs_extend_item(path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001722
1723 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1724 refs = btrfs_extent_refs(leaf, ei);
1725 refs += refs_to_add;
1726 btrfs_set_extent_refs(leaf, ei, refs);
1727 if (extent_op)
1728 __run_delayed_extent_op(extent_op, leaf, ei);
1729
1730 ptr = (unsigned long)ei + item_offset;
1731 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1732 if (ptr < end - size)
1733 memmove_extent_buffer(leaf, ptr + size, ptr,
1734 end - size - ptr);
1735
1736 iref = (struct btrfs_extent_inline_ref *)ptr;
1737 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1738 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1739 struct btrfs_extent_data_ref *dref;
1740 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1741 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1742 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1743 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1744 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1745 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1746 struct btrfs_shared_data_ref *sref;
1747 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1748 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1749 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1750 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1751 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1752 } else {
1753 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1754 }
1755 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001756}
1757
1758static int lookup_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001759 struct btrfs_path *path,
1760 struct btrfs_extent_inline_ref **ref_ret,
1761 u64 bytenr, u64 num_bytes, u64 parent,
1762 u64 root_objectid, u64 owner, u64 offset)
1763{
1764 int ret;
1765
Nikolay Borisov867cc1f2018-06-20 15:48:48 +03001766 ret = lookup_inline_extent_backref(trans, path, ref_ret, bytenr,
1767 num_bytes, parent, root_objectid,
1768 owner, offset, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001769 if (ret != -ENOENT)
1770 return ret;
1771
David Sterbab3b4aa72011-04-21 01:20:15 +02001772 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001773 *ref_ret = NULL;
1774
1775 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Nikolay Borisovb8582ee2018-06-20 15:48:50 +03001776 ret = lookup_tree_block_ref(trans, path, bytenr, parent,
1777 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001778 } else {
Nikolay Borisovbd1d53e2018-06-20 15:48:51 +03001779 ret = lookup_extent_data_ref(trans, path, bytenr, parent,
1780 root_objectid, owner, offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001781 }
1782 return ret;
1783}
1784
1785/*
1786 * helper to update/remove inline back ref
1787 */
1788static noinline_for_stack
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001789void update_inline_extent_backref(struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001790 struct btrfs_extent_inline_ref *iref,
1791 int refs_to_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07001792 struct btrfs_delayed_extent_op *extent_op,
1793 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001794{
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001795 struct extent_buffer *leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001796 struct btrfs_extent_item *ei;
1797 struct btrfs_extent_data_ref *dref = NULL;
1798 struct btrfs_shared_data_ref *sref = NULL;
1799 unsigned long ptr;
1800 unsigned long end;
1801 u32 item_size;
1802 int size;
1803 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001804 u64 refs;
1805
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001806 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1807 refs = btrfs_extent_refs(leaf, ei);
1808 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1809 refs += refs_to_mod;
1810 btrfs_set_extent_refs(leaf, ei, refs);
1811 if (extent_op)
1812 __run_delayed_extent_op(extent_op, leaf, ei);
1813
Liu Bo3de28d52017-08-18 15:15:19 -06001814 /*
1815 * If type is invalid, we should have bailed out after
1816 * lookup_inline_extent_backref().
1817 */
1818 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_ANY);
1819 ASSERT(type != BTRFS_REF_TYPE_INVALID);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001820
1821 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1822 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1823 refs = btrfs_extent_data_ref_count(leaf, dref);
1824 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1825 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1826 refs = btrfs_shared_data_ref_count(leaf, sref);
1827 } else {
1828 refs = 1;
1829 BUG_ON(refs_to_mod != -1);
1830 }
1831
1832 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1833 refs += refs_to_mod;
1834
1835 if (refs > 0) {
1836 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1837 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1838 else
1839 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1840 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001841 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001842 size = btrfs_extent_inline_ref_size(type);
1843 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1844 ptr = (unsigned long)iref;
1845 end = (unsigned long)ei + item_size;
1846 if (ptr + size < end)
1847 memmove_extent_buffer(leaf, ptr, ptr + size,
1848 end - ptr - size);
1849 item_size -= size;
David Sterba78ac4f92019-03-20 14:49:12 +01001850 btrfs_truncate_item(path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001851 }
1852 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001853}
1854
1855static noinline_for_stack
1856int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001857 struct btrfs_path *path,
1858 u64 bytenr, u64 num_bytes, u64 parent,
1859 u64 root_objectid, u64 owner,
1860 u64 offset, int refs_to_add,
1861 struct btrfs_delayed_extent_op *extent_op)
1862{
1863 struct btrfs_extent_inline_ref *iref;
1864 int ret;
1865
Nikolay Borisov867cc1f2018-06-20 15:48:48 +03001866 ret = lookup_inline_extent_backref(trans, path, &iref, bytenr,
1867 num_bytes, parent, root_objectid,
1868 owner, offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001869 if (ret == 0) {
1870 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001871 update_inline_extent_backref(path, iref, refs_to_add,
1872 extent_op, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001873 } else if (ret == -ENOENT) {
Nikolay Borisova639cde2018-06-20 15:49:10 +03001874 setup_inline_extent_backref(trans->fs_info, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001875 root_objectid, owner, offset,
1876 refs_to_add, extent_op);
1877 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001878 }
1879 return ret;
1880}
1881
1882static int insert_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001883 struct btrfs_path *path,
1884 u64 bytenr, u64 parent, u64 root_objectid,
1885 u64 owner, u64 offset, int refs_to_add)
1886{
1887 int ret;
1888 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1889 BUG_ON(refs_to_add != 1);
Nikolay Borisov10728402018-06-20 15:48:43 +03001890 ret = insert_tree_block_ref(trans, path, bytenr, parent,
1891 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001892 } else {
Nikolay Borisov62b895a2018-06-20 15:48:44 +03001893 ret = insert_extent_data_ref(trans, path, bytenr, parent,
1894 root_objectid, owner, offset,
1895 refs_to_add);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001896 }
1897 return ret;
1898}
1899
1900static int remove_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001901 struct btrfs_path *path,
1902 struct btrfs_extent_inline_ref *iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001903 int refs_to_drop, int is_data, int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001904{
Jeff Mahoney143bede2012-03-01 14:56:26 +01001905 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001906
1907 BUG_ON(!is_data && refs_to_drop != 1);
1908 if (iref) {
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001909 update_inline_extent_backref(path, iref, -refs_to_drop, NULL,
1910 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001911 } else if (is_data) {
Nikolay Borisove9f62902018-06-20 15:48:46 +03001912 ret = remove_extent_data_ref(trans, path, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07001913 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001914 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001915 *last_ref = 1;
Nikolay Borisov87cc7a82018-06-20 15:49:12 +03001916 ret = btrfs_del_item(trans, trans->fs_info->extent_root, path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001917 }
1918 return ret;
1919}
1920
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001921static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len,
1922 u64 *discarded_bytes)
Chris Mason15916de2008-11-19 21:17:22 -05001923{
Jeff Mahoney86557862015-06-15 09:41:16 -04001924 int j, ret = 0;
1925 u64 bytes_left, end;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001926 u64 aligned_start = ALIGN(start, 1 << 9);
1927
1928 if (WARN_ON(start != aligned_start)) {
1929 len -= aligned_start - start;
1930 len = round_down(len, 1 << 9);
1931 start = aligned_start;
1932 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001933
1934 *discarded_bytes = 0;
Jeff Mahoney86557862015-06-15 09:41:16 -04001935
1936 if (!len)
1937 return 0;
1938
1939 end = start + len;
1940 bytes_left = len;
1941
1942 /* Skip any superblocks on this device. */
1943 for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) {
1944 u64 sb_start = btrfs_sb_offset(j);
1945 u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE;
1946 u64 size = sb_start - start;
1947
1948 if (!in_range(sb_start, start, bytes_left) &&
1949 !in_range(sb_end, start, bytes_left) &&
1950 !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE))
1951 continue;
1952
1953 /*
1954 * Superblock spans beginning of range. Adjust start and
1955 * try again.
1956 */
1957 if (sb_start <= start) {
1958 start += sb_end - start;
1959 if (start > end) {
1960 bytes_left = 0;
1961 break;
1962 }
1963 bytes_left = end - start;
1964 continue;
1965 }
1966
1967 if (size) {
1968 ret = blkdev_issue_discard(bdev, start >> 9, size >> 9,
1969 GFP_NOFS, 0);
1970 if (!ret)
1971 *discarded_bytes += size;
1972 else if (ret != -EOPNOTSUPP)
1973 return ret;
1974 }
1975
1976 start = sb_end;
1977 if (start > end) {
1978 bytes_left = 0;
1979 break;
1980 }
1981 bytes_left = end - start;
1982 }
1983
1984 if (bytes_left) {
1985 ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9,
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001986 GFP_NOFS, 0);
1987 if (!ret)
Jeff Mahoney86557862015-06-15 09:41:16 -04001988 *discarded_bytes += bytes_left;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001989 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001990 return ret;
Chris Mason15916de2008-11-19 21:17:22 -05001991}
Chris Mason15916de2008-11-19 21:17:22 -05001992
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001993int btrfs_discard_extent(struct btrfs_fs_info *fs_info, u64 bytenr,
Filipe Manana1edb647b2014-12-08 14:01:12 +00001994 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05001995{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001996 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00001997 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02001998 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001999
Christoph Hellwige244a0a2009-10-14 09:24:59 -04002000
Filipe Manana29992412016-05-27 17:42:05 +01002001 /*
2002 * Avoid races with device replace and make sure our bbio has devices
2003 * associated to its stripes that don't go away while we are discarding.
2004 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002005 btrfs_bio_counter_inc_blocked(fs_info);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002006 /* Tell the block device(s) that the sectors can be discarded */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002007 ret = btrfs_map_block(fs_info, BTRFS_MAP_DISCARD, bytenr, &num_bytes,
2008 &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002009 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05002010 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02002011 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002012 int i;
2013
Liu Hui1f3c79a2009-01-05 15:57:51 -05002014
Jan Schmidta1d3c472011-08-04 17:15:33 +02002015 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002016 u64 bytes;
Anand Jain38b5f682017-11-29 18:53:43 +08002017 struct request_queue *req_q;
2018
Filipe Manana627e0872018-01-30 18:40:22 +00002019 if (!stripe->dev->bdev) {
2020 ASSERT(btrfs_test_opt(fs_info, DEGRADED));
2021 continue;
2022 }
Anand Jain38b5f682017-11-29 18:53:43 +08002023 req_q = bdev_get_queue(stripe->dev->bdev);
2024 if (!blk_queue_discard(req_q))
Josef Bacikd5e20032011-08-04 14:52:27 +00002025 continue;
2026
Li Dongyang5378e602011-03-24 10:24:27 +00002027 ret = btrfs_issue_discard(stripe->dev->bdev,
2028 stripe->physical,
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002029 stripe->length,
2030 &bytes);
Li Dongyang5378e602011-03-24 10:24:27 +00002031 if (!ret)
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002032 discarded_bytes += bytes;
Li Dongyang5378e602011-03-24 10:24:27 +00002033 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002034 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00002035
2036 /*
2037 * Just in case we get back EOPNOTSUPP for some reason,
2038 * just ignore the return value so we don't screw up
2039 * people calling discard_extent.
2040 */
2041 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002042 }
Zhao Lei6e9606d2015-01-20 15:11:34 +08002043 btrfs_put_bbio(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002044 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002045 btrfs_bio_counter_dec(fs_info);
Li Dongyang5378e602011-03-24 10:24:27 +00002046
2047 if (actual_bytes)
2048 *actual_bytes = discarded_bytes;
2049
Liu Hui1f3c79a2009-01-05 15:57:51 -05002050
David Woodhouse53b381b2013-01-29 18:40:14 -05002051 if (ret == -EOPNOTSUPP)
2052 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002053 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002054}
2055
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002056/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002057int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Qu Wenruo82fa1132019-04-04 14:45:35 +08002058 struct btrfs_ref *generic_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04002059{
Qu Wenruo82fa1132019-04-04 14:45:35 +08002060 struct btrfs_fs_info *fs_info = trans->fs_info;
Omar Sandovald7eae342017-06-06 16:45:31 -07002061 int old_ref_mod, new_ref_mod;
Zheng Yan31840ae2008-09-23 13:14:14 -04002062 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002063
Qu Wenruo82fa1132019-04-04 14:45:35 +08002064 ASSERT(generic_ref->type != BTRFS_REF_NOT_SET &&
2065 generic_ref->action);
2066 BUG_ON(generic_ref->type == BTRFS_REF_METADATA &&
2067 generic_ref->tree_ref.root == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04002068
Qu Wenruo82fa1132019-04-04 14:45:35 +08002069 if (generic_ref->type == BTRFS_REF_METADATA)
2070 ret = btrfs_add_delayed_tree_ref(trans, generic_ref,
Qu Wenruoed4f2552019-04-04 14:45:31 +08002071 NULL, &old_ref_mod, &new_ref_mod);
Qu Wenruo82fa1132019-04-04 14:45:35 +08002072 else
2073 ret = btrfs_add_delayed_data_ref(trans, generic_ref, 0,
Omar Sandovald7eae342017-06-06 16:45:31 -07002074 &old_ref_mod, &new_ref_mod);
Omar Sandovald7eae342017-06-06 16:45:31 -07002075
Qu Wenruo82fa1132019-04-04 14:45:35 +08002076 btrfs_ref_tree_mod(fs_info, generic_ref);
Qu Wenruo8a5040f2019-04-04 14:45:33 +08002077
Qu Wenruoddf30cf2019-04-04 14:45:34 +08002078 if (ret == 0 && old_ref_mod < 0 && new_ref_mod >= 0)
Qu Wenruo78192442019-05-15 07:33:48 +08002079 sub_pinned_bytes(fs_info, generic_ref);
Omar Sandovald7eae342017-06-06 16:45:31 -07002080
Zheng Yan31840ae2008-09-23 13:14:14 -04002081 return ret;
2082}
2083
Nikolay Borisovbd3c6852018-06-18 14:59:25 +03002084/*
2085 * __btrfs_inc_extent_ref - insert backreference for a given extent
2086 *
2087 * @trans: Handle of transaction
2088 *
2089 * @node: The delayed ref node used to get the bytenr/length for
2090 * extent whose references are incremented.
2091 *
2092 * @parent: If this is a shared extent (BTRFS_SHARED_DATA_REF_KEY/
2093 * BTRFS_SHARED_BLOCK_REF_KEY) then it holds the logical
2094 * bytenr of the parent block. Since new extents are always
2095 * created with indirect references, this will only be the case
2096 * when relocating a shared extent. In that case, root_objectid
2097 * will be BTRFS_TREE_RELOC_OBJECTID. Otheriwse, parent must
2098 * be 0
2099 *
2100 * @root_objectid: The id of the root where this modification has originated,
2101 * this can be either one of the well-known metadata trees or
2102 * the subvolume id which references this extent.
2103 *
2104 * @owner: For data extents it is the inode number of the owning file.
2105 * For metadata extents this parameter holds the level in the
2106 * tree of the extent.
2107 *
2108 * @offset: For metadata extents the offset is ignored and is currently
2109 * always passed as 0. For data extents it is the fileoffset
2110 * this extent belongs to.
2111 *
2112 * @refs_to_add Number of references to add
2113 *
2114 * @extent_op Pointer to a structure, holding information necessary when
2115 * updating a tree block's flags
2116 *
2117 */
Chris Mason925baed2008-06-25 16:01:30 -04002118static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002119 struct btrfs_delayed_ref_node *node,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002120 u64 parent, u64 root_objectid,
2121 u64 owner, u64 offset, int refs_to_add,
2122 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04002123{
Chris Mason5caf2a02007-04-02 11:20:42 -04002124 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002125 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04002126 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07002127 struct btrfs_key key;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002128 u64 bytenr = node->bytenr;
2129 u64 num_bytes = node->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002130 u64 refs;
2131 int ret;
Chris Mason037e6392007-03-07 11:50:24 -05002132
Chris Mason5caf2a02007-04-02 11:20:42 -04002133 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002134 if (!path)
2135 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04002136
David Sterbae4058b52015-11-27 16:31:35 +01002137 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002138 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002139 /* this will setup the path even if it fails to insert the back ref */
Nikolay Borisova639cde2018-06-20 15:49:10 +03002140 ret = insert_inline_extent_backref(trans, path, bytenr, num_bytes,
2141 parent, root_objectid, owner,
2142 offset, refs_to_add, extent_op);
Qu Wenruo0ed47922015-04-16 16:55:08 +08002143 if ((ret < 0 && ret != -EAGAIN) || !ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002144 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002145
2146 /*
2147 * Ok we had -EAGAIN which means we didn't have space to insert and
2148 * inline extent ref, so just update the reference count and add a
2149 * normal backref.
2150 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002151 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002152 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002153 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2154 refs = btrfs_extent_refs(leaf, item);
2155 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2156 if (extent_op)
2157 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002158
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002159 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002160 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002161
David Sterbae4058b52015-11-27 16:31:35 +01002162 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002163 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002164 /* now insert the actual backref */
Nikolay Borisov37593412018-06-20 15:48:45 +03002165 ret = insert_extent_backref(trans, path, bytenr, parent, root_objectid,
2166 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002167 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04002168 btrfs_abort_transaction(trans, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002169out:
Chris Mason74493f72007-12-11 09:25:06 -05002170 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002171 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002172}
2173
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002174static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002175 struct btrfs_delayed_ref_node *node,
2176 struct btrfs_delayed_extent_op *extent_op,
2177 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002178{
Chris Mason56bec292009-03-13 10:10:06 -04002179 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002180 struct btrfs_delayed_data_ref *ref;
2181 struct btrfs_key ins;
2182 u64 parent = 0;
2183 u64 ref_root = 0;
2184 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002185
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002186 ins.objectid = node->bytenr;
2187 ins.offset = node->num_bytes;
2188 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002189
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002190 ref = btrfs_delayed_node_to_data_ref(node);
Nikolay Borisov2bf98ef2018-06-20 15:49:00 +03002191 trace_run_delayed_data_ref(trans->fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002192
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002193 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2194 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002195 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002196
2197 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002198 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002199 flags |= extent_op->flags_to_set;
Nikolay Borisovef89b822018-06-20 15:48:58 +03002200 ret = alloc_reserved_file_extent(trans, parent, ref_root,
2201 flags, ref->objectid,
2202 ref->offset, &ins,
2203 node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002204 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Nikolay Borisov2590d0f2018-06-20 15:48:59 +03002205 ret = __btrfs_inc_extent_ref(trans, node, parent, ref_root,
2206 ref->objectid, ref->offset,
2207 node->ref_mod, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002208 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Nikolay Borisove72cb922018-06-20 15:48:57 +03002209 ret = __btrfs_free_extent(trans, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002210 ref_root, ref->objectid,
2211 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002212 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002213 } else {
2214 BUG();
2215 }
Chris Mason56bec292009-03-13 10:10:06 -04002216 return ret;
2217}
2218
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002219static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2220 struct extent_buffer *leaf,
2221 struct btrfs_extent_item *ei)
2222{
2223 u64 flags = btrfs_extent_flags(leaf, ei);
2224 if (extent_op->update_flags) {
2225 flags |= extent_op->flags_to_set;
2226 btrfs_set_extent_flags(leaf, ei, flags);
2227 }
2228
2229 if (extent_op->update_key) {
2230 struct btrfs_tree_block_info *bi;
2231 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2232 bi = (struct btrfs_tree_block_info *)(ei + 1);
2233 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2234 }
2235}
2236
2237static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
Josef Bacikd2788502017-09-29 15:43:57 -04002238 struct btrfs_delayed_ref_head *head,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002239 struct btrfs_delayed_extent_op *extent_op)
2240{
Nikolay Borisov20b9a2d2018-06-20 15:49:01 +03002241 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002242 struct btrfs_key key;
2243 struct btrfs_path *path;
2244 struct btrfs_extent_item *ei;
2245 struct extent_buffer *leaf;
2246 u32 item_size;
2247 int ret;
2248 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002249 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002250
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002251 if (trans->aborted)
2252 return 0;
2253
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002254 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik3173a182013-03-07 14:22:04 -05002255 metadata = 0;
2256
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002257 path = btrfs_alloc_path();
2258 if (!path)
2259 return -ENOMEM;
2260
Josef Bacikd2788502017-09-29 15:43:57 -04002261 key.objectid = head->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002262
Josef Bacik3173a182013-03-07 14:22:04 -05002263 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002264 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002265 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002266 } else {
2267 key.type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacikd2788502017-09-29 15:43:57 -04002268 key.offset = head->num_bytes;
Josef Bacik3173a182013-03-07 14:22:04 -05002269 }
2270
2271again:
David Sterbae4058b52015-11-27 16:31:35 +01002272 path->reada = READA_FORWARD;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002273 path->leave_spinning = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002274 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002275 if (ret < 0) {
2276 err = ret;
2277 goto out;
2278 }
2279 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002280 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002281 if (path->slots[0] > 0) {
2282 path->slots[0]--;
2283 btrfs_item_key_to_cpu(path->nodes[0], &key,
2284 path->slots[0]);
Josef Bacikd2788502017-09-29 15:43:57 -04002285 if (key.objectid == head->bytenr &&
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002286 key.type == BTRFS_EXTENT_ITEM_KEY &&
Josef Bacikd2788502017-09-29 15:43:57 -04002287 key.offset == head->num_bytes)
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002288 ret = 0;
2289 }
2290 if (ret > 0) {
2291 btrfs_release_path(path);
2292 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002293
Josef Bacikd2788502017-09-29 15:43:57 -04002294 key.objectid = head->bytenr;
2295 key.offset = head->num_bytes;
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002296 key.type = BTRFS_EXTENT_ITEM_KEY;
2297 goto again;
2298 }
2299 } else {
2300 err = -EIO;
2301 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002302 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002303 }
2304
2305 leaf = path->nodes[0];
2306 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03002307
David Sterba6d8ff4e2018-06-26 16:20:59 +02002308 if (unlikely(item_size < sizeof(*ei))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03002309 err = -EINVAL;
2310 btrfs_print_v0_err(fs_info);
2311 btrfs_abort_transaction(trans, err);
2312 goto out;
2313 }
2314
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002315 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2316 __run_delayed_extent_op(extent_op, leaf, ei);
2317
2318 btrfs_mark_buffer_dirty(leaf);
2319out:
2320 btrfs_free_path(path);
2321 return err;
2322}
2323
2324static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002325 struct btrfs_delayed_ref_node *node,
2326 struct btrfs_delayed_extent_op *extent_op,
2327 int insert_reserved)
2328{
2329 int ret = 0;
2330 struct btrfs_delayed_tree_ref *ref;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002331 u64 parent = 0;
2332 u64 ref_root = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002333
2334 ref = btrfs_delayed_node_to_tree_ref(node);
Nikolay Borisovf97806f2018-06-20 15:49:04 +03002335 trace_run_delayed_tree_ref(trans->fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002336
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002337 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2338 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002339 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002340
Liu Bo02794222016-09-14 19:19:05 -07002341 if (node->ref_mod != 1) {
Nikolay Borisovf97806f2018-06-20 15:49:04 +03002342 btrfs_err(trans->fs_info,
Liu Bo02794222016-09-14 19:19:05 -07002343 "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu",
2344 node->bytenr, node->ref_mod, node->action, ref_root,
2345 parent);
2346 return -EIO;
2347 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002348 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002349 BUG_ON(!extent_op || !extent_op->update_flags);
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03002350 ret = alloc_reserved_tree_block(trans, node, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002351 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Nikolay Borisov2590d0f2018-06-20 15:48:59 +03002352 ret = __btrfs_inc_extent_ref(trans, node, parent, ref_root,
2353 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002354 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Nikolay Borisove72cb922018-06-20 15:48:57 +03002355 ret = __btrfs_free_extent(trans, node, parent, ref_root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002356 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002357 } else {
2358 BUG();
2359 }
2360 return ret;
2361}
2362
Chris Mason56bec292009-03-13 10:10:06 -04002363/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002364static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002365 struct btrfs_delayed_ref_node *node,
2366 struct btrfs_delayed_extent_op *extent_op,
2367 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002368{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002369 int ret = 0;
2370
Josef Bacik857cc2f2013-10-07 15:21:08 -04002371 if (trans->aborted) {
2372 if (insert_reserved)
Nikolay Borisov5fac7f92018-06-20 15:49:11 +03002373 btrfs_pin_extent(trans->fs_info, node->bytenr,
Josef Bacik857cc2f2013-10-07 15:21:08 -04002374 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002375 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002376 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002377
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002378 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2379 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
Nikolay Borisovf97806f2018-06-20 15:49:04 +03002380 ret = run_delayed_tree_ref(trans, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002381 insert_reserved);
2382 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2383 node->type == BTRFS_SHARED_DATA_REF_KEY)
Nikolay Borisov2bf98ef2018-06-20 15:49:00 +03002384 ret = run_delayed_data_ref(trans, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002385 insert_reserved);
2386 else
2387 BUG();
Josef Bacik80ee54b2018-10-11 15:54:22 -04002388 if (ret && insert_reserved)
2389 btrfs_pin_extent(trans->fs_info, node->bytenr,
2390 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002391 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002392}
2393
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002394static inline struct btrfs_delayed_ref_node *
Chris Mason56bec292009-03-13 10:10:06 -04002395select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002396{
Filipe Mananacffc3372015-07-09 13:13:44 +01002397 struct btrfs_delayed_ref_node *ref;
2398
Liu Boe3d03962018-08-23 03:51:50 +08002399 if (RB_EMPTY_ROOT(&head->ref_tree.rb_root))
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002400 return NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002401
Filipe Mananacffc3372015-07-09 13:13:44 +01002402 /*
2403 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
2404 * This is to prevent a ref count from going down to zero, which deletes
2405 * the extent item from the extent tree, when there still are references
2406 * to add, which would fail because they would not find the extent item.
2407 */
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002408 if (!list_empty(&head->ref_add_list))
2409 return list_first_entry(&head->ref_add_list,
2410 struct btrfs_delayed_ref_node, add_list);
Filipe Mananacffc3372015-07-09 13:13:44 +01002411
Liu Boe3d03962018-08-23 03:51:50 +08002412 ref = rb_entry(rb_first_cached(&head->ref_tree),
Josef Bacik0e0adbc2017-10-19 14:16:00 -04002413 struct btrfs_delayed_ref_node, ref_node);
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002414 ASSERT(list_empty(&ref->add_list));
2415 return ref;
Chris Mason56bec292009-03-13 10:10:06 -04002416}
2417
Josef Bacik2eadaa22017-09-29 15:43:52 -04002418static void unselect_delayed_ref_head(struct btrfs_delayed_ref_root *delayed_refs,
2419 struct btrfs_delayed_ref_head *head)
2420{
2421 spin_lock(&delayed_refs->lock);
2422 head->processing = 0;
2423 delayed_refs->num_heads_ready++;
2424 spin_unlock(&delayed_refs->lock);
2425 btrfs_delayed_ref_unlock(head);
2426}
2427
Josef Bacikbedc66172018-12-03 10:20:31 -05002428static struct btrfs_delayed_extent_op *cleanup_extent_op(
2429 struct btrfs_delayed_ref_head *head)
Josef Bacikb00e6252017-09-29 15:43:53 -04002430{
2431 struct btrfs_delayed_extent_op *extent_op = head->extent_op;
Josef Bacikbedc66172018-12-03 10:20:31 -05002432
2433 if (!extent_op)
2434 return NULL;
2435
2436 if (head->must_insert_reserved) {
2437 head->extent_op = NULL;
2438 btrfs_free_delayed_extent_op(extent_op);
2439 return NULL;
2440 }
2441 return extent_op;
2442}
2443
2444static int run_and_cleanup_extent_op(struct btrfs_trans_handle *trans,
2445 struct btrfs_delayed_ref_head *head)
2446{
2447 struct btrfs_delayed_extent_op *extent_op;
Josef Bacikb00e6252017-09-29 15:43:53 -04002448 int ret;
2449
Josef Bacikbedc66172018-12-03 10:20:31 -05002450 extent_op = cleanup_extent_op(head);
Josef Bacikb00e6252017-09-29 15:43:53 -04002451 if (!extent_op)
2452 return 0;
2453 head->extent_op = NULL;
Josef Bacikb00e6252017-09-29 15:43:53 -04002454 spin_unlock(&head->lock);
Nikolay Borisov20b9a2d2018-06-20 15:49:01 +03002455 ret = run_delayed_extent_op(trans, head, extent_op);
Josef Bacikb00e6252017-09-29 15:43:53 -04002456 btrfs_free_delayed_extent_op(extent_op);
2457 return ret ? ret : 1;
2458}
2459
Josef Bacik31890da2018-11-21 14:05:41 -05002460void btrfs_cleanup_ref_head_accounting(struct btrfs_fs_info *fs_info,
2461 struct btrfs_delayed_ref_root *delayed_refs,
2462 struct btrfs_delayed_ref_head *head)
Josef Bacik07c47772018-12-03 10:20:30 -05002463{
Josef Bacikba2c4d42018-12-03 10:20:33 -05002464 int nr_items = 1; /* Dropping this ref head update. */
Josef Bacik07c47772018-12-03 10:20:30 -05002465
2466 if (head->total_ref_mod < 0) {
2467 struct btrfs_space_info *space_info;
2468 u64 flags;
2469
2470 if (head->is_data)
2471 flags = BTRFS_BLOCK_GROUP_DATA;
2472 else if (head->is_system)
2473 flags = BTRFS_BLOCK_GROUP_SYSTEM;
2474 else
2475 flags = BTRFS_BLOCK_GROUP_METADATA;
2476 space_info = __find_space_info(fs_info, flags);
2477 ASSERT(space_info);
2478 percpu_counter_add_batch(&space_info->total_bytes_pinned,
2479 -head->num_bytes,
2480 BTRFS_TOTAL_BYTES_PINNED_BATCH);
2481
Josef Bacikba2c4d42018-12-03 10:20:33 -05002482 /*
2483 * We had csum deletions accounted for in our delayed refs rsv,
2484 * we need to drop the csum leaves for this update from our
2485 * delayed_refs_rsv.
2486 */
Josef Bacik07c47772018-12-03 10:20:30 -05002487 if (head->is_data) {
2488 spin_lock(&delayed_refs->lock);
2489 delayed_refs->pending_csums -= head->num_bytes;
2490 spin_unlock(&delayed_refs->lock);
Josef Bacikba2c4d42018-12-03 10:20:33 -05002491 nr_items += btrfs_csum_bytes_to_leaves(fs_info,
2492 head->num_bytes);
Josef Bacik07c47772018-12-03 10:20:30 -05002493 }
2494 }
2495
Josef Bacikba2c4d42018-12-03 10:20:33 -05002496 btrfs_delayed_refs_rsv_release(fs_info, nr_items);
Josef Bacik07c47772018-12-03 10:20:30 -05002497}
2498
Josef Bacik194ab0b2017-09-29 15:43:54 -04002499static int cleanup_ref_head(struct btrfs_trans_handle *trans,
Josef Bacik194ab0b2017-09-29 15:43:54 -04002500 struct btrfs_delayed_ref_head *head)
2501{
Nikolay Borisovf9871ed2018-06-20 15:49:03 +03002502
2503 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacik194ab0b2017-09-29 15:43:54 -04002504 struct btrfs_delayed_ref_root *delayed_refs;
2505 int ret;
2506
2507 delayed_refs = &trans->transaction->delayed_refs;
2508
Josef Bacikbedc66172018-12-03 10:20:31 -05002509 ret = run_and_cleanup_extent_op(trans, head);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002510 if (ret < 0) {
2511 unselect_delayed_ref_head(delayed_refs, head);
2512 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
2513 return ret;
2514 } else if (ret) {
2515 return ret;
2516 }
2517
2518 /*
2519 * Need to drop our head ref lock and re-acquire the delayed ref lock
2520 * and then re-check to make sure nobody got added.
2521 */
2522 spin_unlock(&head->lock);
2523 spin_lock(&delayed_refs->lock);
2524 spin_lock(&head->lock);
Liu Boe3d03962018-08-23 03:51:50 +08002525 if (!RB_EMPTY_ROOT(&head->ref_tree.rb_root) || head->extent_op) {
Josef Bacik194ab0b2017-09-29 15:43:54 -04002526 spin_unlock(&head->lock);
2527 spin_unlock(&delayed_refs->lock);
2528 return 1;
2529 }
Josef Bacikd7baffd2018-12-03 10:20:29 -05002530 btrfs_delete_ref_head(delayed_refs, head);
Josef Bacikc1103f72017-09-29 15:43:56 -04002531 spin_unlock(&head->lock);
Nikolay Borisov1e7a1422018-04-11 11:21:18 +03002532 spin_unlock(&delayed_refs->lock);
Josef Bacikc1103f72017-09-29 15:43:56 -04002533
Josef Bacikc1103f72017-09-29 15:43:56 -04002534 if (head->must_insert_reserved) {
Josef Bacikd2788502017-09-29 15:43:57 -04002535 btrfs_pin_extent(fs_info, head->bytenr,
2536 head->num_bytes, 1);
Josef Bacikc1103f72017-09-29 15:43:56 -04002537 if (head->is_data) {
Josef Bacikd2788502017-09-29 15:43:57 -04002538 ret = btrfs_del_csums(trans, fs_info, head->bytenr,
2539 head->num_bytes);
Josef Bacikc1103f72017-09-29 15:43:56 -04002540 }
2541 }
2542
Josef Bacik31890da2018-11-21 14:05:41 -05002543 btrfs_cleanup_ref_head_accounting(fs_info, delayed_refs, head);
Josef Bacik07c47772018-12-03 10:20:30 -05002544
2545 trace_run_delayed_ref_head(fs_info, head, 0);
Josef Bacikc1103f72017-09-29 15:43:56 -04002546 btrfs_delayed_ref_unlock(head);
Josef Bacikd2788502017-09-29 15:43:57 -04002547 btrfs_put_delayed_ref_head(head);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002548 return 0;
2549}
2550
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002551static struct btrfs_delayed_ref_head *btrfs_obtain_ref_head(
2552 struct btrfs_trans_handle *trans)
2553{
2554 struct btrfs_delayed_ref_root *delayed_refs =
2555 &trans->transaction->delayed_refs;
2556 struct btrfs_delayed_ref_head *head = NULL;
2557 int ret;
2558
2559 spin_lock(&delayed_refs->lock);
Lu Fengqi5637c742018-10-11 13:40:33 +08002560 head = btrfs_select_ref_head(delayed_refs);
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002561 if (!head) {
2562 spin_unlock(&delayed_refs->lock);
2563 return head;
2564 }
2565
2566 /*
2567 * Grab the lock that says we are going to process all the refs for
2568 * this head
2569 */
Lu Fengqi9e920a62018-10-11 13:40:34 +08002570 ret = btrfs_delayed_ref_lock(delayed_refs, head);
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002571 spin_unlock(&delayed_refs->lock);
2572
2573 /*
2574 * We may have dropped the spin lock to get the head mutex lock, and
2575 * that might have given someone else time to free the head. If that's
2576 * true, it has been removed from our list and we can move on.
2577 */
2578 if (ret == -EAGAIN)
2579 head = ERR_PTR(-EAGAIN);
2580
2581 return head;
2582}
2583
Nikolay Borisove7261382018-08-15 10:39:55 +03002584static int btrfs_run_delayed_refs_for_head(struct btrfs_trans_handle *trans,
2585 struct btrfs_delayed_ref_head *locked_ref,
2586 unsigned long *run_refs)
2587{
2588 struct btrfs_fs_info *fs_info = trans->fs_info;
2589 struct btrfs_delayed_ref_root *delayed_refs;
2590 struct btrfs_delayed_extent_op *extent_op;
2591 struct btrfs_delayed_ref_node *ref;
2592 int must_insert_reserved = 0;
2593 int ret;
2594
2595 delayed_refs = &trans->transaction->delayed_refs;
2596
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002597 lockdep_assert_held(&locked_ref->mutex);
2598 lockdep_assert_held(&locked_ref->lock);
2599
Nikolay Borisove7261382018-08-15 10:39:55 +03002600 while ((ref = select_delayed_ref(locked_ref))) {
2601 if (ref->seq &&
2602 btrfs_check_delayed_seq(fs_info, ref->seq)) {
2603 spin_unlock(&locked_ref->lock);
2604 unselect_delayed_ref_head(delayed_refs, locked_ref);
2605 return -EAGAIN;
2606 }
2607
2608 (*run_refs)++;
2609 ref->in_tree = 0;
2610 rb_erase_cached(&ref->ref_node, &locked_ref->ref_tree);
2611 RB_CLEAR_NODE(&ref->ref_node);
2612 if (!list_empty(&ref->add_list))
2613 list_del(&ref->add_list);
2614 /*
2615 * When we play the delayed ref, also correct the ref_mod on
2616 * head
2617 */
2618 switch (ref->action) {
2619 case BTRFS_ADD_DELAYED_REF:
2620 case BTRFS_ADD_DELAYED_EXTENT:
2621 locked_ref->ref_mod -= ref->ref_mod;
2622 break;
2623 case BTRFS_DROP_DELAYED_REF:
2624 locked_ref->ref_mod += ref->ref_mod;
2625 break;
2626 default:
2627 WARN_ON(1);
2628 }
2629 atomic_dec(&delayed_refs->num_entries);
2630
2631 /*
2632 * Record the must_insert_reserved flag before we drop the
2633 * spin lock.
2634 */
2635 must_insert_reserved = locked_ref->must_insert_reserved;
2636 locked_ref->must_insert_reserved = 0;
2637
2638 extent_op = locked_ref->extent_op;
2639 locked_ref->extent_op = NULL;
2640 spin_unlock(&locked_ref->lock);
2641
2642 ret = run_one_delayed_ref(trans, ref, extent_op,
2643 must_insert_reserved);
2644
2645 btrfs_free_delayed_extent_op(extent_op);
2646 if (ret) {
2647 unselect_delayed_ref_head(delayed_refs, locked_ref);
2648 btrfs_put_delayed_ref(ref);
2649 btrfs_debug(fs_info, "run_one_delayed_ref returned %d",
2650 ret);
2651 return ret;
2652 }
2653
2654 btrfs_put_delayed_ref(ref);
2655 cond_resched();
2656
2657 spin_lock(&locked_ref->lock);
2658 btrfs_merge_delayed_refs(trans, delayed_refs, locked_ref);
2659 }
2660
2661 return 0;
2662}
2663
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002664/*
2665 * Returns 0 on success or if called with an already aborted transaction.
2666 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2667 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002668static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacikd7df2c72014-01-23 09:21:38 -05002669 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002670{
Nikolay Borisov0a1e4582018-03-15 16:00:27 +02002671 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason56bec292009-03-13 10:10:06 -04002672 struct btrfs_delayed_ref_root *delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002673 struct btrfs_delayed_ref_head *locked_ref = NULL;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002674 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002675 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002676 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002677 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002678
2679 delayed_refs = &trans->transaction->delayed_refs;
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002680 do {
Chris Mason56bec292009-03-13 10:10:06 -04002681 if (!locked_ref) {
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002682 locked_ref = btrfs_obtain_ref_head(trans);
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002683 if (IS_ERR_OR_NULL(locked_ref)) {
2684 if (PTR_ERR(locked_ref) == -EAGAIN) {
2685 continue;
2686 } else {
2687 break;
2688 }
Chris Mason56bec292009-03-13 10:10:06 -04002689 }
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002690 count++;
Chris Mason56bec292009-03-13 10:10:06 -04002691 }
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002692 /*
2693 * We need to try and merge add/drops of the same ref since we
2694 * can run into issues with relocate dropping the implicit ref
2695 * and then it being added back again before the drop can
2696 * finish. If we merged anything we need to re-loop so we can
2697 * get a good ref.
2698 * Or we can get node references of the same type that weren't
2699 * merged when created due to bumps in the tree mod seq, and
2700 * we need to merge them to prevent adding an inline extent
2701 * backref before dropping it (triggering a BUG_ON at
2702 * insert_inline_extent_backref()).
2703 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002704 spin_lock(&locked_ref->lock);
Nikolay Borisovbe97f132018-04-19 11:06:39 +03002705 btrfs_merge_delayed_refs(trans, delayed_refs, locked_ref);
Josef Bacikae1e2062012-08-07 16:00:32 -04002706
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002707 ret = btrfs_run_delayed_refs_for_head(trans, locked_ref,
2708 &actual_count);
2709 if (ret < 0 && ret != -EAGAIN) {
2710 /*
2711 * Error, btrfs_run_delayed_refs_for_head already
2712 * unlocked everything so just bail out
2713 */
2714 return ret;
2715 } else if (!ret) {
2716 /*
2717 * Success, perform the usual cleanup of a processed
2718 * head
2719 */
Nikolay Borisovf9871ed2018-06-20 15:49:03 +03002720 ret = cleanup_ref_head(trans, locked_ref);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002721 if (ret > 0 ) {
Josef Bacikb00e6252017-09-29 15:43:53 -04002722 /* We dropped our lock, we need to loop. */
2723 ret = 0;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002724 continue;
Josef Bacik194ab0b2017-09-29 15:43:54 -04002725 } else if (ret) {
2726 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002727 }
Josef Bacikc1103f72017-09-29 15:43:56 -04002728 }
Chris Mason56bec292009-03-13 10:10:06 -04002729
Josef Bacikb00e6252017-09-29 15:43:53 -04002730 /*
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002731 * Either success case or btrfs_run_delayed_refs_for_head
2732 * returned -EAGAIN, meaning we need to select another head
Josef Bacikb00e6252017-09-29 15:43:53 -04002733 */
Josef Bacikb00e6252017-09-29 15:43:53 -04002734
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002735 locked_ref = NULL;
Chris Mason1887be62009-03-13 10:11:24 -04002736 cond_resched();
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002737 } while ((nr != -1 && count < nr) || locked_ref);
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002738
2739 /*
2740 * We don't want to include ref heads since we can have empty ref heads
2741 * and those will drastically skew our runtime down since we just do
2742 * accounting, no actual extent tree updates.
2743 */
2744 if (actual_count > 0) {
2745 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2746 u64 avg;
2747
2748 /*
2749 * We weigh the current average higher than our current runtime
2750 * to avoid large swings in the average.
2751 */
2752 spin_lock(&delayed_refs->lock);
2753 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002754 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002755 spin_unlock(&delayed_refs->lock);
2756 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002757 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002758}
2759
Arne Jansen709c0482011-09-12 12:22:57 +02002760#ifdef SCRAMBLE_DELAYED_REFS
2761/*
2762 * Normally delayed refs get processed in ascending bytenr order. This
2763 * correlates in most cases to the order added. To expose dependencies on this
2764 * order, we start to process the tree in the middle instead of the beginning
2765 */
2766static u64 find_middle(struct rb_root *root)
2767{
2768 struct rb_node *n = root->rb_node;
2769 struct btrfs_delayed_ref_node *entry;
2770 int alt = 1;
2771 u64 middle;
2772 u64 first = 0, last = 0;
2773
2774 n = rb_first(root);
2775 if (n) {
2776 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2777 first = entry->bytenr;
2778 }
2779 n = rb_last(root);
2780 if (n) {
2781 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2782 last = entry->bytenr;
2783 }
2784 n = root->rb_node;
2785
2786 while (n) {
2787 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2788 WARN_ON(!entry->in_tree);
2789
2790 middle = entry->bytenr;
2791
2792 if (alt)
2793 n = n->rb_left;
2794 else
2795 n = n->rb_right;
2796
2797 alt = 1 - alt;
2798 }
2799 return middle;
2800}
2801#endif
2802
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002803static inline u64 heads_to_leaves(struct btrfs_fs_info *fs_info, u64 heads)
Josef Bacik1be41b72013-06-12 13:56:06 -04002804{
2805 u64 num_bytes;
2806
2807 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2808 sizeof(struct btrfs_extent_inline_ref));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002809 if (!btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik1be41b72013-06-12 13:56:06 -04002810 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2811
2812 /*
2813 * 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 -04002814 * closer to what we're really going to want to use.
Josef Bacik1be41b72013-06-12 13:56:06 -04002815 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002816 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(fs_info));
Josef Bacik1be41b72013-06-12 13:56:06 -04002817}
2818
Josef Bacik12621332015-02-03 07:50:16 -08002819/*
2820 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2821 * would require to store the csums for that many bytes.
2822 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002823u64 btrfs_csum_bytes_to_leaves(struct btrfs_fs_info *fs_info, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002824{
2825 u64 csum_size;
2826 u64 num_csums_per_leaf;
2827 u64 num_csums;
2828
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002829 csum_size = BTRFS_MAX_ITEM_SIZE(fs_info);
Josef Bacik12621332015-02-03 07:50:16 -08002830 num_csums_per_leaf = div64_u64(csum_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002831 (u64)btrfs_super_csum_size(fs_info->super_copy));
2832 num_csums = div64_u64(csum_bytes, fs_info->sectorsize);
Josef Bacik12621332015-02-03 07:50:16 -08002833 num_csums += num_csums_per_leaf - 1;
2834 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2835 return num_csums;
2836}
2837
Josef Bacik644036122018-12-03 10:20:36 -05002838bool btrfs_check_space_for_delayed_refs(struct btrfs_fs_info *fs_info)
Josef Bacik1be41b72013-06-12 13:56:06 -04002839{
Josef Bacik644036122018-12-03 10:20:36 -05002840 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
2841 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
2842 bool ret = false;
2843 u64 reserved;
Josef Bacik1be41b72013-06-12 13:56:06 -04002844
2845 spin_lock(&global_rsv->lock);
Josef Bacik644036122018-12-03 10:20:36 -05002846 reserved = global_rsv->reserved;
Josef Bacik1be41b72013-06-12 13:56:06 -04002847 spin_unlock(&global_rsv->lock);
Josef Bacik644036122018-12-03 10:20:36 -05002848
2849 /*
2850 * Since the global reserve is just kind of magic we don't really want
2851 * to rely on it to save our bacon, so if our size is more than the
2852 * delayed_refs_rsv and the global rsv then it's time to think about
2853 * bailing.
2854 */
2855 spin_lock(&delayed_refs_rsv->lock);
2856 reserved += delayed_refs_rsv->reserved;
2857 if (delayed_refs_rsv->size >= reserved)
2858 ret = true;
2859 spin_unlock(&delayed_refs_rsv->lock);
Josef Bacik1be41b72013-06-12 13:56:06 -04002860 return ret;
2861}
2862
Lu Fengqi7c861622018-10-11 13:40:36 +08002863int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002864{
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002865 u64 num_entries =
2866 atomic_read(&trans->transaction->delayed_refs.num_entries);
2867 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002868 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002869
2870 smp_mb();
Lu Fengqi7c861622018-10-11 13:40:36 +08002871 avg_runtime = trans->fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002872 val = num_entries * avg_runtime;
Wang Xiaoguangdc1a90c2016-10-26 15:23:01 +08002873 if (val >= NSEC_PER_SEC)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002874 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002875 if (val >= NSEC_PER_SEC / 2)
2876 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002877
Josef Bacik644036122018-12-03 10:20:36 -05002878 return btrfs_check_space_for_delayed_refs(trans->fs_info);
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002879}
2880
Chris Masonc3e69d52009-03-13 10:17:05 -04002881/*
2882 * this starts processing the delayed reference count updates and
2883 * extent insertions we have queued up so far. count can be
2884 * 0, which means to process everything in the tree at the start
2885 * of the run (but not newly added entries), or it can be some target
2886 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002887 *
2888 * Returns 0 on success or if called with an aborted transaction
2889 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002890 */
2891int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02002892 unsigned long count)
Chris Masonc3e69d52009-03-13 10:17:05 -04002893{
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02002894 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -04002895 struct rb_node *node;
2896 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002897 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002898 int ret;
2899 int run_all = count == (unsigned long)-1;
Chris Masonc3e69d52009-03-13 10:17:05 -04002900
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002901 /* We'll clean this up in btrfs_cleanup_transaction */
2902 if (trans->aborted)
2903 return 0;
2904
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002905 if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags))
Chris Mason511711a2015-12-30 07:52:35 -08002906 return 0;
2907
Chris Masonc3e69d52009-03-13 10:17:05 -04002908 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08002909 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05002910 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05002911
Chris Masonc3e69d52009-03-13 10:17:05 -04002912again:
Arne Jansen709c0482011-09-12 12:22:57 +02002913#ifdef SCRAMBLE_DELAYED_REFS
2914 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2915#endif
Nikolay Borisov0a1e4582018-03-15 16:00:27 +02002916 ret = __btrfs_run_delayed_refs(trans, count);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002917 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002918 btrfs_abort_transaction(trans, ret);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002919 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002920 }
2921
Chris Mason56bec292009-03-13 10:10:06 -04002922 if (run_all) {
Josef Bacik119e80d2018-11-21 14:05:42 -05002923 btrfs_create_pending_block_groups(trans);
Josef Bacikea658ba2012-09-11 16:57:25 -04002924
Josef Bacikd7df2c72014-01-23 09:21:38 -05002925 spin_lock(&delayed_refs->lock);
Liu Bo5c9d0282018-08-23 03:51:49 +08002926 node = rb_first_cached(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002927 if (!node) {
2928 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002929 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002930 }
Josef Bacikd2788502017-09-29 15:43:57 -04002931 head = rb_entry(node, struct btrfs_delayed_ref_head,
2932 href_node);
2933 refcount_inc(&head->refs);
Chris Mason56bec292009-03-13 10:10:06 -04002934 spin_unlock(&delayed_refs->lock);
Josef Bacikd2788502017-09-29 15:43:57 -04002935
2936 /* Mutex was contended, block until it's released and retry. */
2937 mutex_lock(&head->mutex);
2938 mutex_unlock(&head->mutex);
2939
2940 btrfs_put_delayed_ref_head(head);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002941 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002942 goto again;
2943 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002944out:
Chris Masona28ec192007-03-06 20:08:01 -05002945 return 0;
2946}
2947
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002948int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002949 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04002950 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002951{
2952 struct btrfs_delayed_extent_op *extent_op;
2953 int ret;
2954
Miao Xie78a61842012-11-21 02:21:28 +00002955 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002956 if (!extent_op)
2957 return -ENOMEM;
2958
2959 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01002960 extent_op->update_flags = true;
2961 extent_op->update_key = false;
2962 extent_op->is_data = is_data ? true : false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002963 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002964
David Sterbac6e340b2019-03-20 11:42:34 +01002965 ret = btrfs_add_delayed_extent_op(trans, bytenr, num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002966 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00002967 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002968 return ret;
2969}
2970
Liu Boe4c3b2d2017-01-30 12:25:28 -08002971static noinline int check_delayed_ref(struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002972 struct btrfs_path *path,
2973 u64 objectid, u64 offset, u64 bytenr)
2974{
2975 struct btrfs_delayed_ref_head *head;
2976 struct btrfs_delayed_ref_node *ref;
2977 struct btrfs_delayed_data_ref *data_ref;
2978 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boe4c3b2d2017-01-30 12:25:28 -08002979 struct btrfs_transaction *cur_trans;
Josef Bacik0e0adbc2017-10-19 14:16:00 -04002980 struct rb_node *node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002981 int ret = 0;
2982
ethanwu998ac6d2018-04-29 15:59:42 +08002983 spin_lock(&root->fs_info->trans_lock);
Liu Boe4c3b2d2017-01-30 12:25:28 -08002984 cur_trans = root->fs_info->running_transaction;
ethanwu998ac6d2018-04-29 15:59:42 +08002985 if (cur_trans)
2986 refcount_inc(&cur_trans->use_count);
2987 spin_unlock(&root->fs_info->trans_lock);
Liu Boe4c3b2d2017-01-30 12:25:28 -08002988 if (!cur_trans)
2989 return 0;
2990
2991 delayed_refs = &cur_trans->delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002992 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08002993 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002994 if (!head) {
2995 spin_unlock(&delayed_refs->lock);
ethanwu998ac6d2018-04-29 15:59:42 +08002996 btrfs_put_transaction(cur_trans);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002997 return 0;
2998 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002999
3000 if (!mutex_trylock(&head->mutex)) {
Josef Bacikd2788502017-09-29 15:43:57 -04003001 refcount_inc(&head->refs);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003002 spin_unlock(&delayed_refs->lock);
3003
David Sterbab3b4aa72011-04-21 01:20:15 +02003004 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003005
David Sterba8cc33e52011-05-02 15:29:25 +02003006 /*
3007 * Mutex was contended, block until it's released and let
3008 * caller try again
3009 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003010 mutex_lock(&head->mutex);
3011 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -04003012 btrfs_put_delayed_ref_head(head);
ethanwu998ac6d2018-04-29 15:59:42 +08003013 btrfs_put_transaction(cur_trans);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003014 return -EAGAIN;
3015 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003016 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003017
3018 spin_lock(&head->lock);
Josef Bacik0e0adbc2017-10-19 14:16:00 -04003019 /*
3020 * XXX: We should replace this with a proper search function in the
3021 * future.
3022 */
Liu Boe3d03962018-08-23 03:51:50 +08003023 for (node = rb_first_cached(&head->ref_tree); node;
3024 node = rb_next(node)) {
Josef Bacik0e0adbc2017-10-19 14:16:00 -04003025 ref = rb_entry(node, struct btrfs_delayed_ref_node, ref_node);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003026 /* If it's a shared ref we know a cross reference exists */
3027 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
3028 ret = 1;
3029 break;
3030 }
3031
3032 data_ref = btrfs_delayed_node_to_data_ref(ref);
3033
3034 /*
3035 * If our ref doesn't match the one we're currently looking at
3036 * then we have a cross reference.
3037 */
3038 if (data_ref->root != root->root_key.objectid ||
3039 data_ref->objectid != objectid ||
3040 data_ref->offset != offset) {
3041 ret = 1;
3042 break;
3043 }
3044 }
3045 spin_unlock(&head->lock);
3046 mutex_unlock(&head->mutex);
ethanwu998ac6d2018-04-29 15:59:42 +08003047 btrfs_put_transaction(cur_trans);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003048 return ret;
3049}
3050
Liu Boe4c3b2d2017-01-30 12:25:28 -08003051static noinline int check_committed_ref(struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003052 struct btrfs_path *path,
3053 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05003054{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003055 struct btrfs_fs_info *fs_info = root->fs_info;
3056 struct btrfs_root *extent_root = fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04003057 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003058 struct btrfs_extent_data_ref *ref;
3059 struct btrfs_extent_inline_ref *iref;
3060 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05003061 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003062 u32 item_size;
Liu Bo3de28d52017-08-18 15:15:19 -06003063 int type;
Yan Zhengf321e492008-07-30 09:26:11 -04003064 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05003065
Chris Masonbe20aa92007-12-17 20:14:01 -05003066 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04003067 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04003068 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05003069
Chris Masonbe20aa92007-12-17 20:14:01 -05003070 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3071 if (ret < 0)
3072 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003073 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04003074
3075 ret = -ENOENT;
3076 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04003077 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003078
Zheng Yan31840ae2008-09-23 13:14:14 -04003079 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04003080 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003081 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05003082
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003083 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05003084 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003085
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003086 ret = 1;
3087 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003088 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
3089
3090 if (item_size != sizeof(*ei) +
3091 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
3092 goto out;
3093
3094 if (btrfs_extent_generation(leaf, ei) <=
3095 btrfs_root_last_snapshot(&root->root_item))
3096 goto out;
3097
3098 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
Liu Bo3de28d52017-08-18 15:15:19 -06003099
3100 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
3101 if (type != BTRFS_EXTENT_DATA_REF_KEY)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003102 goto out;
3103
3104 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
3105 if (btrfs_extent_refs(leaf, ei) !=
3106 btrfs_extent_data_ref_count(leaf, ref) ||
3107 btrfs_extent_data_ref_root(leaf, ref) !=
3108 root->root_key.objectid ||
3109 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3110 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3111 goto out;
3112
Yan Zhengf321e492008-07-30 09:26:11 -04003113 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003114out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003115 return ret;
3116}
3117
Liu Boe4c3b2d2017-01-30 12:25:28 -08003118int btrfs_cross_ref_exist(struct btrfs_root *root, u64 objectid, u64 offset,
3119 u64 bytenr)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003120{
3121 struct btrfs_path *path;
3122 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003123
3124 path = btrfs_alloc_path();
3125 if (!path)
Su Yue9132c4f2018-05-30 14:49:10 +08003126 return -ENOMEM;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003127
3128 do {
Liu Boe4c3b2d2017-01-30 12:25:28 -08003129 ret = check_committed_ref(root, path, objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003130 offset, bytenr);
3131 if (ret && ret != -ENOENT)
3132 goto out;
3133
Misono Tomohiro380fd062018-08-30 10:59:16 +09003134 ret = check_delayed_ref(root, path, objectid, offset, bytenr);
3135 } while (ret == -EAGAIN);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003136
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003137out:
Yan Zhengf321e492008-07-30 09:26:11 -04003138 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003139 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3140 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003141 return ret;
3142}
3143
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003144static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003145 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003146 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003147 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003148{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003149 struct btrfs_fs_info *fs_info = root->fs_info;
Zheng Yan31840ae2008-09-23 13:14:14 -04003150 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003151 u64 num_bytes;
3152 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003153 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003154 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003155 struct btrfs_key key;
3156 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +08003157 struct btrfs_ref generic_ref = { 0 };
3158 bool for_reloc = btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC);
Zheng Yan31840ae2008-09-23 13:14:14 -04003159 int i;
Qu Wenruo82fa1132019-04-04 14:45:35 +08003160 int action;
Zheng Yan31840ae2008-09-23 13:14:14 -04003161 int level;
3162 int ret = 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003163
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003164 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003165 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003166
Zheng Yan31840ae2008-09-23 13:14:14 -04003167 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003168 nritems = btrfs_header_nritems(buf);
3169 level = btrfs_header_level(buf);
3170
Miao Xie27cdeb72014-04-02 19:51:05 +08003171 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003172 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003173
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003174 if (full_backref)
3175 parent = buf->start;
3176 else
3177 parent = 0;
Qu Wenruo82fa1132019-04-04 14:45:35 +08003178 if (inc)
3179 action = BTRFS_ADD_DELAYED_REF;
3180 else
3181 action = BTRFS_DROP_DELAYED_REF;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003182
Zheng Yan31840ae2008-09-23 13:14:14 -04003183 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003184 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003185 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003186 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003187 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003188 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003189 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003190 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003191 BTRFS_FILE_EXTENT_INLINE)
3192 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003193 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3194 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003195 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003196
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003197 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3198 key.offset -= btrfs_file_extent_offset(buf, fi);
Qu Wenruo82fa1132019-04-04 14:45:35 +08003199 btrfs_init_generic_ref(&generic_ref, action, bytenr,
3200 num_bytes, parent);
3201 generic_ref.real_root = root->root_key.objectid;
3202 btrfs_init_data_ref(&generic_ref, ref_root, key.objectid,
3203 key.offset);
3204 generic_ref.skip_qgroup = for_reloc;
Qu Wenruodd28b6a2019-04-04 14:45:30 +08003205 if (inc)
Qu Wenruo82fa1132019-04-04 14:45:35 +08003206 ret = btrfs_inc_extent_ref(trans, &generic_ref);
Qu Wenruodd28b6a2019-04-04 14:45:30 +08003207 else
Qu Wenruoffd4bb22019-04-04 14:45:36 +08003208 ret = btrfs_free_extent(trans, &generic_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003209 if (ret)
3210 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003211 } else {
3212 bytenr = btrfs_node_blockptr(buf, i);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003213 num_bytes = fs_info->nodesize;
Qu Wenruo82fa1132019-04-04 14:45:35 +08003214 btrfs_init_generic_ref(&generic_ref, action, bytenr,
3215 num_bytes, parent);
3216 generic_ref.real_root = root->root_key.objectid;
3217 btrfs_init_tree_ref(&generic_ref, level - 1, ref_root);
3218 generic_ref.skip_qgroup = for_reloc;
Qu Wenruodd28b6a2019-04-04 14:45:30 +08003219 if (inc)
Qu Wenruo82fa1132019-04-04 14:45:35 +08003220 ret = btrfs_inc_extent_ref(trans, &generic_ref);
Qu Wenruodd28b6a2019-04-04 14:45:30 +08003221 else
Qu Wenruoffd4bb22019-04-04 14:45:36 +08003222 ret = btrfs_free_extent(trans, &generic_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003223 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003224 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003225 }
3226 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003227 return 0;
3228fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003229 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003230}
3231
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003232int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003233 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003234{
Josef Bacike339a6b2014-07-02 10:54:25 -07003235 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003236}
Zheng Yan31840ae2008-09-23 13:14:14 -04003237
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003238int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003239 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003240{
Josef Bacike339a6b2014-07-02 10:54:25 -07003241 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003242}
3243
Chris Mason9078a3e2007-04-26 16:46:15 -04003244static int write_one_cache_group(struct btrfs_trans_handle *trans,
Chris Mason9078a3e2007-04-26 16:46:15 -04003245 struct btrfs_path *path,
3246 struct btrfs_block_group_cache *cache)
3247{
David Sterba39db2322019-03-20 11:57:46 +01003248 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04003249 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003250 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003251 unsigned long bi;
3252 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003253
Chris Mason9078a3e2007-04-26 16:46:15 -04003254 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003255 if (ret) {
3256 if (ret > 0)
3257 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003258 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003259 }
Chris Mason5f39d392007-10-15 16:14:19 -04003260
3261 leaf = path->nodes[0];
3262 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3263 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3264 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003265fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003266 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003267 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003268
3269}
3270
David Sterbaf87b7eb2019-03-20 12:01:07 +01003271static struct btrfs_block_group_cache *next_block_group(
3272 struct btrfs_block_group_cache *cache)
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003273{
David Sterbaf87b7eb2019-03-20 12:01:07 +01003274 struct btrfs_fs_info *fs_info = cache->fs_info;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003275 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003276
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003277 spin_lock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003278
3279 /* If our block group was removed, we need a full search. */
3280 if (RB_EMPTY_NODE(&cache->cache_node)) {
3281 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3282
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003283 spin_unlock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003284 btrfs_put_block_group(cache);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003285 cache = btrfs_lookup_first_block_group(fs_info, next_bytenr); return cache;
Filipe Manana292cbd52014-11-26 15:28:50 +00003286 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003287 node = rb_next(&cache->cache_node);
3288 btrfs_put_block_group(cache);
3289 if (node) {
3290 cache = rb_entry(node, struct btrfs_block_group_cache,
3291 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003292 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003293 } else
3294 cache = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003295 spin_unlock(&fs_info->block_group_cache_lock);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003296 return cache;
3297}
3298
Josef Bacik0af3d002010-06-21 14:48:16 -04003299static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3300 struct btrfs_trans_handle *trans,
3301 struct btrfs_path *path)
3302{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003303 struct btrfs_fs_info *fs_info = block_group->fs_info;
3304 struct btrfs_root *root = fs_info->tree_root;
Josef Bacik0af3d002010-06-21 14:48:16 -04003305 struct inode *inode = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003306 struct extent_changeset *data_reserved = NULL;
Josef Bacik0af3d002010-06-21 14:48:16 -04003307 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003308 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003309 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003310 int retries = 0;
3311 int ret = 0;
3312
3313 /*
3314 * If this block group is smaller than 100 megs don't bother caching the
3315 * block group.
3316 */
Byongho Leeee221842015-12-15 01:42:10 +09003317 if (block_group->key.offset < (100 * SZ_1M)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003318 spin_lock(&block_group->lock);
3319 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3320 spin_unlock(&block_group->lock);
3321 return 0;
3322 }
3323
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003324 if (trans->aborted)
3325 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003326again:
David Sterba7949f332019-03-20 13:40:19 +01003327 inode = lookup_free_space_inode(block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003328 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3329 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003330 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003331 goto out;
3332 }
3333
3334 if (IS_ERR(inode)) {
3335 BUG_ON(retries);
3336 retries++;
3337
3338 if (block_group->ro)
3339 goto out_free;
3340
David Sterba4ca75f12019-03-20 13:42:57 +01003341 ret = create_free_space_inode(trans, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003342 if (ret)
3343 goto out_free;
3344 goto again;
3345 }
3346
3347 /*
3348 * We want to set the generation to 0, that way if anything goes wrong
3349 * from here on out we know not to trust this cache when we load up next
3350 * time.
3351 */
3352 BTRFS_I(inode)->generation = 0;
3353 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003354 if (ret) {
3355 /*
3356 * So theoretically we could recover from this, simply set the
3357 * super cache generation to 0 so we know to invalidate the
3358 * cache, but then we'd have to keep track of the block groups
3359 * that fail this way so we know we _have_ to reset this cache
3360 * before the next commit or risk reading stale cache. So to
3361 * limit our exposure to horrible edge cases lets just abort the
3362 * transaction, this only happens in really bad situations
3363 * anyway.
3364 */
Jeff Mahoney66642832016-06-10 18:19:25 -04003365 btrfs_abort_transaction(trans, ret);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003366 goto out_put;
3367 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003368 WARN_ON(ret);
3369
Josef Bacik8e138e02017-11-17 14:50:46 -05003370 /* We've already setup this transaction, go ahead and exit */
3371 if (block_group->cache_generation == trans->transid &&
3372 i_size_read(inode)) {
3373 dcs = BTRFS_DC_SETUP;
3374 goto out_put;
3375 }
3376
Josef Bacik0af3d002010-06-21 14:48:16 -04003377 if (i_size_read(inode) > 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003378 ret = btrfs_check_trunc_cache_free_space(fs_info,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003379 &fs_info->global_block_rsv);
Miao Xie7b61cd92013-05-13 13:55:09 +00003380 if (ret)
3381 goto out_put;
3382
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003383 ret = btrfs_truncate_free_space_cache(trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003384 if (ret)
3385 goto out_put;
3386 }
3387
3388 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003389 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003390 !btrfs_test_opt(fs_info, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003391 /*
3392 * don't bother trying to write stuff out _if_
3393 * a) we're not cached,
Liu Bo1a79c1f2017-03-06 13:49:02 -08003394 * b) we're with nospace_cache mount option,
3395 * c) we're with v2 space_cache (FREE_SPACE_TREE).
Liu Bocf7c1ef2012-07-06 03:31:34 -06003396 */
Josef Bacik2b209822010-12-03 13:17:53 -05003397 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003398 spin_unlock(&block_group->lock);
3399 goto out_put;
3400 }
3401 spin_unlock(&block_group->lock);
3402
Josef Bacik6fc823b2012-08-06 13:46:38 -06003403 /*
Josef Bacik2968b1f2015-10-01 12:55:18 -04003404 * We hit an ENOSPC when setting up the cache in this transaction, just
3405 * skip doing the setup, we've already cleared the cache so we're safe.
3406 */
3407 if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
3408 ret = -ENOSPC;
3409 goto out_put;
3410 }
3411
3412 /*
Josef Bacik6fc823b2012-08-06 13:46:38 -06003413 * Try to preallocate enough space based on how big the block group is.
3414 * Keep in mind this has to include any pinned space which could end up
3415 * taking up quite a bit since it's not folded into the other space
3416 * cache.
3417 */
Byongho Leeee221842015-12-15 01:42:10 +09003418 num_pages = div_u64(block_group->key.offset, SZ_256M);
Josef Bacik0af3d002010-06-21 14:48:16 -04003419 if (!num_pages)
3420 num_pages = 1;
3421
Josef Bacik0af3d002010-06-21 14:48:16 -04003422 num_pages *= 16;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003423 num_pages *= PAGE_SIZE;
Josef Bacik0af3d002010-06-21 14:48:16 -04003424
Qu Wenruo364ecf32017-02-27 15:10:38 +08003425 ret = btrfs_check_data_free_space(inode, &data_reserved, 0, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003426 if (ret)
3427 goto out_put;
3428
3429 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3430 num_pages, num_pages,
3431 &alloc_hint);
Josef Bacik2968b1f2015-10-01 12:55:18 -04003432 /*
3433 * Our cache requires contiguous chunks so that we don't modify a bunch
3434 * of metadata or split extents when writing the cache out, which means
3435 * we can enospc if we are heavily fragmented in addition to just normal
3436 * out of space conditions. So if we hit this just skip setting up any
3437 * other block groups for this transaction, maybe we'll unpin enough
3438 * space the next time around.
3439 */
Josef Bacik2b209822010-12-03 13:17:53 -05003440 if (!ret)
3441 dcs = BTRFS_DC_SETUP;
Josef Bacik2968b1f2015-10-01 12:55:18 -04003442 else if (ret == -ENOSPC)
3443 set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
Josef Bacikc09544e2011-08-30 10:19:10 -04003444
Josef Bacik0af3d002010-06-21 14:48:16 -04003445out_put:
3446 iput(inode);
3447out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003448 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003449out:
3450 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003451 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003452 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003453 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003454 spin_unlock(&block_group->lock);
3455
Qu Wenruo364ecf32017-02-27 15:10:38 +08003456 extent_changeset_free(data_reserved);
Josef Bacik0af3d002010-06-21 14:48:16 -04003457 return ret;
3458}
3459
David Sterbabbebb3e2019-03-20 12:02:55 +01003460int btrfs_setup_space_cache(struct btrfs_trans_handle *trans)
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003461{
David Sterbabbebb3e2019-03-20 12:02:55 +01003462 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003463 struct btrfs_block_group_cache *cache, *tmp;
3464 struct btrfs_transaction *cur_trans = trans->transaction;
3465 struct btrfs_path *path;
3466
3467 if (list_empty(&cur_trans->dirty_bgs) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003468 !btrfs_test_opt(fs_info, SPACE_CACHE))
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003469 return 0;
3470
3471 path = btrfs_alloc_path();
3472 if (!path)
3473 return -ENOMEM;
3474
3475 /* Could add new block groups, use _safe just in case */
3476 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3477 dirty_list) {
3478 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3479 cache_save_setup(cache, trans, path);
3480 }
3481
3482 btrfs_free_path(path);
3483 return 0;
3484}
3485
Chris Mason1bbc6212015-04-06 12:46:08 -07003486/*
3487 * transaction commit does final block group cache writeback during a
3488 * critical section where nothing is allowed to change the FS. This is
3489 * required in order for the cache to actually match the block group,
3490 * but can introduce a lot of latency into the commit.
3491 *
3492 * So, btrfs_start_dirty_block_groups is here to kick off block group
3493 * cache IO. There's a chance we'll have to redo some of it if the
3494 * block group changes again during the commit, but it greatly reduces
3495 * the commit latency by getting rid of the easy block groups while
3496 * we're still allowing others to join the commit.
3497 */
Nikolay Borisov21217052018-02-07 17:55:41 +02003498int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans)
Chris Mason1bbc6212015-04-06 12:46:08 -07003499{
Nikolay Borisov21217052018-02-07 17:55:41 +02003500 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason1bbc6212015-04-06 12:46:08 -07003501 struct btrfs_block_group_cache *cache;
3502 struct btrfs_transaction *cur_trans = trans->transaction;
3503 int ret = 0;
3504 int should_put;
3505 struct btrfs_path *path = NULL;
3506 LIST_HEAD(dirty);
3507 struct list_head *io = &cur_trans->io_bgs;
3508 int num_started = 0;
3509 int loops = 0;
3510
3511 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003512 if (list_empty(&cur_trans->dirty_bgs)) {
3513 spin_unlock(&cur_trans->dirty_bgs_lock);
3514 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003515 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003516 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003517 spin_unlock(&cur_trans->dirty_bgs_lock);
3518
3519again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003520 /*
3521 * make sure all the block groups on our dirty list actually
3522 * exist
3523 */
Nikolay Borisov6c686b32018-02-07 17:55:40 +02003524 btrfs_create_pending_block_groups(trans);
Chris Mason1bbc6212015-04-06 12:46:08 -07003525
3526 if (!path) {
3527 path = btrfs_alloc_path();
3528 if (!path)
3529 return -ENOMEM;
3530 }
3531
Filipe Mananab58d1a92015-04-25 18:29:16 +01003532 /*
3533 * cache_write_mutex is here only to save us from balance or automatic
3534 * removal of empty block groups deleting this block group while we are
3535 * writing out the cache
3536 */
3537 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003538 while (!list_empty(&dirty)) {
Josef Bacikba2c4d42018-12-03 10:20:33 -05003539 bool drop_reserve = true;
3540
Chris Mason1bbc6212015-04-06 12:46:08 -07003541 cache = list_first_entry(&dirty,
3542 struct btrfs_block_group_cache,
3543 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003544 /*
3545 * this can happen if something re-dirties a block
3546 * group that is already under IO. Just wait for it to
3547 * finish and then do it all again
3548 */
3549 if (!list_empty(&cache->io_list)) {
3550 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003551 btrfs_wait_cache_io(trans, cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003552 btrfs_put_block_group(cache);
3553 }
3554
3555
3556 /*
3557 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3558 * if it should update the cache_state. Don't delete
3559 * until after we wait.
3560 *
3561 * Since we're not running in the commit critical section
3562 * we need the dirty_bgs_lock to protect from update_block_group
3563 */
3564 spin_lock(&cur_trans->dirty_bgs_lock);
3565 list_del_init(&cache->dirty_list);
3566 spin_unlock(&cur_trans->dirty_bgs_lock);
3567
3568 should_put = 1;
3569
3570 cache_save_setup(cache, trans, path);
3571
3572 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3573 cache->io_ctl.inode = NULL;
David Sterbafe041532019-03-20 13:51:56 +01003574 ret = btrfs_write_out_cache(trans, cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003575 if (ret == 0 && cache->io_ctl.inode) {
3576 num_started++;
3577 should_put = 0;
3578
3579 /*
Nikolay Borisov45ae2c12018-02-08 18:25:18 +02003580 * The cache_write_mutex is protecting the
3581 * io_list, also refer to the definition of
3582 * btrfs_transaction::io_bgs for more details
Chris Mason1bbc6212015-04-06 12:46:08 -07003583 */
3584 list_add_tail(&cache->io_list, io);
3585 } else {
3586 /*
3587 * if we failed to write the cache, the
3588 * generation will be bad and life goes on
3589 */
3590 ret = 0;
3591 }
3592 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003593 if (!ret) {
David Sterba39db2322019-03-20 11:57:46 +01003594 ret = write_one_cache_group(trans, path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003595 /*
3596 * Our block group might still be attached to the list
3597 * of new block groups in the transaction handle of some
3598 * other task (struct btrfs_trans_handle->new_bgs). This
3599 * means its block group item isn't yet in the extent
3600 * tree. If this happens ignore the error, as we will
3601 * try again later in the critical section of the
3602 * transaction commit.
3603 */
3604 if (ret == -ENOENT) {
3605 ret = 0;
3606 spin_lock(&cur_trans->dirty_bgs_lock);
3607 if (list_empty(&cache->dirty_list)) {
3608 list_add_tail(&cache->dirty_list,
3609 &cur_trans->dirty_bgs);
3610 btrfs_get_block_group(cache);
Josef Bacikba2c4d42018-12-03 10:20:33 -05003611 drop_reserve = false;
Filipe Mananaff1f8252015-05-06 16:15:09 +01003612 }
3613 spin_unlock(&cur_trans->dirty_bgs_lock);
3614 } else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003615 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003616 }
3617 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003618
Andrea Gelmini52042d82018-11-28 12:05:13 +01003619 /* if it's not on the io list, we need to put the block group */
Chris Mason1bbc6212015-04-06 12:46:08 -07003620 if (should_put)
3621 btrfs_put_block_group(cache);
Josef Bacikba2c4d42018-12-03 10:20:33 -05003622 if (drop_reserve)
3623 btrfs_delayed_refs_rsv_release(fs_info, 1);
Chris Mason1bbc6212015-04-06 12:46:08 -07003624
3625 if (ret)
3626 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003627
3628 /*
3629 * Avoid blocking other tasks for too long. It might even save
3630 * us from writing caches for block groups that are going to be
3631 * removed.
3632 */
3633 mutex_unlock(&trans->transaction->cache_write_mutex);
3634 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003635 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003636 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003637
3638 /*
3639 * go through delayed refs for all the stuff we've just kicked off
3640 * and then loop back (just once)
3641 */
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02003642 ret = btrfs_run_delayed_refs(trans, 0);
Chris Mason1bbc6212015-04-06 12:46:08 -07003643 if (!ret && loops == 0) {
3644 loops++;
3645 spin_lock(&cur_trans->dirty_bgs_lock);
3646 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003647 /*
3648 * dirty_bgs_lock protects us from concurrent block group
3649 * deletes too (not just cache_write_mutex).
3650 */
3651 if (!list_empty(&dirty)) {
3652 spin_unlock(&cur_trans->dirty_bgs_lock);
3653 goto again;
3654 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003655 spin_unlock(&cur_trans->dirty_bgs_lock);
Liu Boc79a1752016-07-20 17:44:12 -07003656 } else if (ret < 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003657 btrfs_cleanup_dirty_bgs(cur_trans, fs_info);
Chris Mason1bbc6212015-04-06 12:46:08 -07003658 }
3659
3660 btrfs_free_path(path);
3661 return ret;
3662}
3663
David Sterba5742d152019-03-20 12:04:08 +01003664int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans)
Chris Mason9078a3e2007-04-26 16:46:15 -04003665{
David Sterba5742d152019-03-20 12:04:08 +01003666 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003667 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003668 struct btrfs_transaction *cur_trans = trans->transaction;
3669 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003670 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003671 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003672 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003673 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003674
3675 path = btrfs_alloc_path();
3676 if (!path)
3677 return -ENOMEM;
3678
Josef Bacikce93ec52014-11-17 15:45:48 -05003679 /*
Filipe Mananae44081e2015-12-18 03:02:48 +00003680 * Even though we are in the critical section of the transaction commit,
3681 * we can still have concurrent tasks adding elements to this
3682 * transaction's list of dirty block groups. These tasks correspond to
3683 * endio free space workers started when writeback finishes for a
3684 * space cache, which run inode.c:btrfs_finish_ordered_io(), and can
3685 * allocate new block groups as a result of COWing nodes of the root
3686 * tree when updating the free space inode. The writeback for the space
3687 * caches is triggered by an earlier call to
3688 * btrfs_start_dirty_block_groups() and iterations of the following
3689 * loop.
3690 * Also we want to do the cache_save_setup first and then run the
Josef Bacikce93ec52014-11-17 15:45:48 -05003691 * delayed refs to make sure we have the best chance at doing this all
3692 * in one shot.
3693 */
Filipe Mananae44081e2015-12-18 03:02:48 +00003694 spin_lock(&cur_trans->dirty_bgs_lock);
Josef Bacikce93ec52014-11-17 15:45:48 -05003695 while (!list_empty(&cur_trans->dirty_bgs)) {
3696 cache = list_first_entry(&cur_trans->dirty_bgs,
3697 struct btrfs_block_group_cache,
3698 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003699
3700 /*
3701 * this can happen if cache_save_setup re-dirties a block
3702 * group that is already under IO. Just wait for it to
3703 * finish and then do it all again
3704 */
3705 if (!list_empty(&cache->io_list)) {
Filipe Mananae44081e2015-12-18 03:02:48 +00003706 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003707 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003708 btrfs_wait_cache_io(trans, cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003709 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003710 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003711 }
3712
Chris Mason1bbc6212015-04-06 12:46:08 -07003713 /*
3714 * don't remove from the dirty list until after we've waited
3715 * on any pending IO
3716 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003717 list_del_init(&cache->dirty_list);
Filipe Mananae44081e2015-12-18 03:02:48 +00003718 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003719 should_put = 1;
3720
Chris Mason1bbc6212015-04-06 12:46:08 -07003721 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003722
Josef Bacikce93ec52014-11-17 15:45:48 -05003723 if (!ret)
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02003724 ret = btrfs_run_delayed_refs(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003725 (unsigned long) -1);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003726
3727 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3728 cache->io_ctl.inode = NULL;
David Sterbafe041532019-03-20 13:51:56 +01003729 ret = btrfs_write_out_cache(trans, cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003730 if (ret == 0 && cache->io_ctl.inode) {
3731 num_started++;
3732 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003733 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003734 } else {
3735 /*
3736 * if we failed to write the cache, the
3737 * generation will be bad and life goes on
3738 */
3739 ret = 0;
3740 }
3741 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003742 if (!ret) {
David Sterba39db2322019-03-20 11:57:46 +01003743 ret = write_one_cache_group(trans, path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003744 /*
3745 * One of the free space endio workers might have
3746 * created a new block group while updating a free space
3747 * cache's inode (at inode.c:btrfs_finish_ordered_io())
3748 * and hasn't released its transaction handle yet, in
3749 * which case the new block group is still attached to
3750 * its transaction handle and its creation has not
3751 * finished yet (no block group item in the extent tree
3752 * yet, etc). If this is the case, wait for all free
3753 * space endio workers to finish and retry. This is a
3754 * a very rare case so no need for a more efficient and
3755 * complex approach.
3756 */
3757 if (ret == -ENOENT) {
3758 wait_event(cur_trans->writer_wait,
3759 atomic_read(&cur_trans->num_writers) == 1);
David Sterba39db2322019-03-20 11:57:46 +01003760 ret = write_one_cache_group(trans, path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003761 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003762 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003763 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003764 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003765
3766 /* if its not on the io list, we need to put the block group */
3767 if (should_put)
3768 btrfs_put_block_group(cache);
Josef Bacikba2c4d42018-12-03 10:20:33 -05003769 btrfs_delayed_refs_rsv_release(fs_info, 1);
Filipe Mananae44081e2015-12-18 03:02:48 +00003770 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003771 }
Filipe Mananae44081e2015-12-18 03:02:48 +00003772 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003773
Nikolay Borisov45ae2c12018-02-08 18:25:18 +02003774 /*
3775 * Refer to the definition of io_bgs member for details why it's safe
3776 * to use it without any locking
3777 */
Chris Mason1bbc6212015-04-06 12:46:08 -07003778 while (!list_empty(io)) {
3779 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003780 io_list);
3781 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003782 btrfs_wait_cache_io(trans, cache, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003783 btrfs_put_block_group(cache);
3784 }
3785
Chris Mason9078a3e2007-04-26 16:46:15 -04003786 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003787 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003788}
3789
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003790int btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr)
Yan Zhengd2fb3432008-12-11 16:30:39 -05003791{
3792 struct btrfs_block_group_cache *block_group;
3793 int readonly = 0;
3794
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003795 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003796 if (!block_group || block_group->ro)
3797 readonly = 1;
3798 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003799 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003800 return readonly;
3801}
3802
Filipe Mananaf78c4362016-05-09 13:15:41 +01003803bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3804{
3805 struct btrfs_block_group_cache *bg;
3806 bool ret = true;
3807
3808 bg = btrfs_lookup_block_group(fs_info, bytenr);
3809 if (!bg)
3810 return false;
3811
3812 spin_lock(&bg->lock);
3813 if (bg->ro)
3814 ret = false;
3815 else
3816 atomic_inc(&bg->nocow_writers);
3817 spin_unlock(&bg->lock);
3818
3819 /* no put on block group, done by btrfs_dec_nocow_writers */
3820 if (!ret)
3821 btrfs_put_block_group(bg);
3822
3823 return ret;
3824
3825}
3826
3827void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3828{
3829 struct btrfs_block_group_cache *bg;
3830
3831 bg = btrfs_lookup_block_group(fs_info, bytenr);
3832 ASSERT(bg);
3833 if (atomic_dec_and_test(&bg->nocow_writers))
Peter Zijlstra46259562018-03-15 11:43:08 +01003834 wake_up_var(&bg->nocow_writers);
Filipe Mananaf78c4362016-05-09 13:15:41 +01003835 /*
3836 * Once for our lookup and once for the lookup done by a previous call
3837 * to btrfs_inc_nocow_writers()
3838 */
3839 btrfs_put_block_group(bg);
3840 btrfs_put_block_group(bg);
3841}
3842
Filipe Mananaf78c4362016-05-09 13:15:41 +01003843void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg)
3844{
Peter Zijlstra46259562018-03-15 11:43:08 +01003845 wait_var_event(&bg->nocow_writers, !atomic_read(&bg->nocow_writers));
Filipe Mananaf78c4362016-05-09 13:15:41 +01003846}
3847
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003848static const char *alloc_name(u64 flags)
3849{
3850 switch (flags) {
3851 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3852 return "mixed";
3853 case BTRFS_BLOCK_GROUP_METADATA:
3854 return "metadata";
3855 case BTRFS_BLOCK_GROUP_DATA:
3856 return "data";
3857 case BTRFS_BLOCK_GROUP_SYSTEM:
3858 return "system";
3859 default:
3860 WARN_ON(1);
3861 return "invalid-combination";
3862 };
3863}
3864
Lu Fengqi4ca61682018-05-28 14:30:27 +08003865static int create_space_info(struct btrfs_fs_info *info, u64 flags)
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03003866{
3867
3868 struct btrfs_space_info *space_info;
3869 int i;
3870 int ret;
3871
3872 space_info = kzalloc(sizeof(*space_info), GFP_NOFS);
3873 if (!space_info)
3874 return -ENOMEM;
3875
3876 ret = percpu_counter_init(&space_info->total_bytes_pinned, 0,
3877 GFP_KERNEL);
3878 if (ret) {
3879 kfree(space_info);
3880 return ret;
3881 }
3882
3883 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
3884 INIT_LIST_HEAD(&space_info->block_groups[i]);
3885 init_rwsem(&space_info->groups_sem);
3886 spin_lock_init(&space_info->lock);
3887 space_info->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
3888 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
3889 init_waitqueue_head(&space_info->wait);
3890 INIT_LIST_HEAD(&space_info->ro_bgs);
3891 INIT_LIST_HEAD(&space_info->tickets);
3892 INIT_LIST_HEAD(&space_info->priority_tickets);
3893
3894 ret = kobject_init_and_add(&space_info->kobj, &space_info_ktype,
3895 info->space_info_kobj, "%s",
3896 alloc_name(space_info->flags));
3897 if (ret) {
Tobin C. Harding450ff832019-05-13 13:39:11 +10003898 kobject_put(&space_info->kobj);
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03003899 return ret;
3900 }
3901
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03003902 list_add_rcu(&space_info->list, &info->space_info);
3903 if (flags & BTRFS_BLOCK_GROUP_DATA)
3904 info->data_sinfo = space_info;
3905
3906 return ret;
3907}
3908
Nikolay Borisovd2006e62017-05-22 09:35:50 +03003909static void update_space_info(struct btrfs_fs_info *info, u64 flags,
Chris Mason593060d2008-03-25 16:50:33 -04003910 u64 total_bytes, u64 bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -04003911 u64 bytes_readonly,
Chris Mason593060d2008-03-25 16:50:33 -04003912 struct btrfs_space_info **space_info)
3913{
3914 struct btrfs_space_info *found;
Yan, Zhengb742bb822010-05-16 10:46:24 -04003915 int factor;
3916
David Sterba46df06b2018-07-13 20:46:30 +02003917 factor = btrfs_bg_type_to_factor(flags);
Chris Mason593060d2008-03-25 16:50:33 -04003918
3919 found = __find_space_info(info, flags);
Nikolay Borisovd2006e62017-05-22 09:35:50 +03003920 ASSERT(found);
3921 spin_lock(&found->lock);
3922 found->total_bytes += total_bytes;
3923 found->disk_total += total_bytes * factor;
3924 found->bytes_used += bytes_used;
3925 found->disk_used += bytes_used * factor;
3926 found->bytes_readonly += bytes_readonly;
3927 if (total_bytes > 0)
3928 found->full = 0;
3929 space_info_add_new_bytes(info, found, total_bytes -
3930 bytes_used - bytes_readonly);
3931 spin_unlock(&found->lock);
3932 *space_info = found;
Chris Mason593060d2008-03-25 16:50:33 -04003933}
3934
Chris Mason8790d502008-04-03 16:29:03 -04003935static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3936{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003937 u64 extra_flags = chunk_to_extended(flags) &
3938 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003939
Miao Xiede98ced2013-01-29 10:13:12 +00003940 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003941 if (flags & BTRFS_BLOCK_GROUP_DATA)
3942 fs_info->avail_data_alloc_bits |= extra_flags;
3943 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3944 fs_info->avail_metadata_alloc_bits |= extra_flags;
3945 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3946 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003947 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04003948}
Chris Mason593060d2008-03-25 16:50:33 -04003949
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003950/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003951 * returns target flags in extended format or 0 if restripe for this
3952 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04003953 *
David Sterbadccdb072018-03-21 00:20:05 +01003954 * should be called with balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003955 */
3956static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3957{
3958 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3959 u64 target = 0;
3960
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003961 if (!bctl)
3962 return 0;
3963
3964 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3965 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3966 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3967 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3968 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3969 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3970 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3971 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3972 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3973 }
3974
3975 return target;
3976}
3977
3978/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003979 * @flags: available profiles in extended format (see ctree.h)
3980 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003981 * Returns reduced profile in chunk format. If profile changing is in
3982 * progress (either running or paused) picks the target profile (if it's
3983 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003984 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003985static u64 btrfs_reduce_alloc_profile(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003986{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003987 u64 num_devices = fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003988 u64 target;
Zhao Lei9c170b22015-09-15 21:08:08 +08003989 u64 raid_type;
3990 u64 allowed = 0;
Chris Masona061fc82008-05-07 11:43:44 -04003991
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003992 /*
3993 * see if restripe for this chunk_type is in progress, if so
3994 * try to reduce to the target profile
3995 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003996 spin_lock(&fs_info->balance_lock);
3997 target = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003998 if (target) {
3999 /* pick target profile only if it's already available */
4000 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004001 spin_unlock(&fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004002 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004003 }
4004 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004005 spin_unlock(&fs_info->balance_lock);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004006
David Woodhouse53b381b2013-01-29 18:40:14 -05004007 /* First, mask out the RAID levels which aren't possible */
Zhao Lei9c170b22015-09-15 21:08:08 +08004008 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
4009 if (num_devices >= btrfs_raid_array[raid_type].devs_min)
Anand Jain41a6e892018-04-25 19:01:43 +08004010 allowed |= btrfs_raid_array[raid_type].bg_flag;
Zhao Lei9c170b22015-09-15 21:08:08 +08004011 }
4012 allowed &= flags;
Chris Masona061fc82008-05-07 11:43:44 -04004013
Zhao Lei9c170b22015-09-15 21:08:08 +08004014 if (allowed & BTRFS_BLOCK_GROUP_RAID6)
4015 allowed = BTRFS_BLOCK_GROUP_RAID6;
4016 else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
4017 allowed = BTRFS_BLOCK_GROUP_RAID5;
4018 else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
4019 allowed = BTRFS_BLOCK_GROUP_RAID10;
4020 else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
4021 allowed = BTRFS_BLOCK_GROUP_RAID1;
4022 else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
4023 allowed = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04004024
Zhao Lei9c170b22015-09-15 21:08:08 +08004025 flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
Chris Masonec44a352008-04-28 15:29:52 -04004026
Zhao Lei9c170b22015-09-15 21:08:08 +08004027 return extended_to_chunk(flags | allowed);
Chris Masonec44a352008-04-28 15:29:52 -04004028}
4029
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004030static u64 get_alloc_profile(struct btrfs_fs_info *fs_info, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05004031{
Miao Xiede98ced2013-01-29 10:13:12 +00004032 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004033 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004034
4035 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004036 flags = orig_flags;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004037 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00004038
4039 if (flags & BTRFS_BLOCK_GROUP_DATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004040 flags |= fs_info->avail_data_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004041 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004042 flags |= fs_info->avail_system_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004043 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004044 flags |= fs_info->avail_metadata_alloc_bits;
4045 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02004046
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004047 return btrfs_reduce_alloc_profile(fs_info, flags);
Yan, Zhengb742bb822010-05-16 10:46:24 -04004048}
Josef Bacik6a632092009-02-20 11:00:09 -05004049
Jeff Mahoney1b868262017-05-17 11:38:35 -04004050static u64 get_alloc_profile_by_root(struct btrfs_root *root, int data)
Yan, Zhengb742bb822010-05-16 10:46:24 -04004051{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004052 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengb742bb822010-05-16 10:46:24 -04004053 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05004054 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004055
Yan, Zhengb742bb822010-05-16 10:46:24 -04004056 if (data)
4057 flags = BTRFS_BLOCK_GROUP_DATA;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004058 else if (root == fs_info->chunk_root)
Yan, Zhengb742bb822010-05-16 10:46:24 -04004059 flags = BTRFS_BLOCK_GROUP_SYSTEM;
4060 else
4061 flags = BTRFS_BLOCK_GROUP_METADATA;
4062
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004063 ret = get_alloc_profile(fs_info, flags);
David Woodhouse53b381b2013-01-29 18:40:14 -05004064 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004065}
4066
Jeff Mahoney1b868262017-05-17 11:38:35 -04004067u64 btrfs_data_alloc_profile(struct btrfs_fs_info *fs_info)
4068{
4069 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_DATA);
4070}
4071
4072u64 btrfs_metadata_alloc_profile(struct btrfs_fs_info *fs_info)
4073{
4074 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4075}
4076
4077u64 btrfs_system_alloc_profile(struct btrfs_fs_info *fs_info)
4078{
4079 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4080}
4081
Liu Bo41361352017-02-13 15:42:21 -08004082static u64 btrfs_space_info_used(struct btrfs_space_info *s_info,
4083 bool may_use_included)
4084{
4085 ASSERT(s_info);
4086 return s_info->bytes_used + s_info->bytes_reserved +
4087 s_info->bytes_pinned + s_info->bytes_readonly +
4088 (may_use_included ? s_info->bytes_may_use : 0);
4089}
4090
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004091int btrfs_alloc_data_chunk_ondemand(struct btrfs_inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05004092{
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004093 struct btrfs_root *root = inode->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004094 struct btrfs_fs_info *fs_info = root->fs_info;
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004095 struct btrfs_space_info *data_sinfo = fs_info->data_sinfo;
Josef Bacikab6e24102010-03-19 14:38:13 +00004096 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08004097 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08004098 int need_commit = 2;
4099 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05004100
4101 /* make sure bytes are sectorsize aligned */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004102 bytes = ALIGN(bytes, fs_info->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05004103
Miao Xie9dced182013-10-25 17:33:36 +08004104 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004105 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08004106 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04004107 }
4108
Josef Bacik6a632092009-02-20 11:00:09 -05004109again:
4110 /* make sure we have enough space to handle the data first */
4111 spin_lock(&data_sinfo->lock);
Liu Bo41361352017-02-13 15:42:21 -08004112 used = btrfs_space_info_used(data_sinfo, true);
Josef Bacikab6e24102010-03-19 14:38:13 +00004113
4114 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004115 struct btrfs_trans_handle *trans;
4116
Josef Bacik6a632092009-02-20 11:00:09 -05004117 /*
4118 * if we don't have enough free bytes in this space then we need
4119 * to alloc a new chunk.
4120 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08004121 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05004122 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05004123
Chris Mason0e4f8f82011-04-15 16:05:44 -04004124 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05004125 spin_unlock(&data_sinfo->lock);
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004126
Jeff Mahoney1b868262017-05-17 11:38:35 -04004127 alloc_target = btrfs_data_alloc_profile(fs_info);
Miao Xie9dced182013-10-25 17:33:36 +08004128 /*
4129 * It is ugly that we don't call nolock join
4130 * transaction for the free space inode case here.
4131 * But it is safe because we only do the data space
4132 * reservation for the free space cache in the
4133 * transaction context, the common join transaction
4134 * just increase the counter of the current transaction
4135 * handler, doesn't try to acquire the trans_lock of
4136 * the fs.
4137 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004138 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004139 if (IS_ERR(trans))
4140 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05004141
Nikolay Borisov01458822018-06-20 15:49:05 +03004142 ret = do_chunk_alloc(trans, alloc_target,
Chris Mason0e4f8f82011-04-15 16:05:44 -04004143 CHUNK_ALLOC_NO_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004144 btrfs_end_transaction(trans);
Miao Xied52a5b52011-01-05 10:07:18 +00004145 if (ret < 0) {
4146 if (ret != -ENOSPC)
4147 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08004148 else {
4149 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00004150 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08004151 }
Miao Xied52a5b52011-01-05 10:07:18 +00004152 }
Chris Mason33b4d472009-09-22 14:45:50 -04004153
Josef Bacik6a632092009-02-20 11:00:09 -05004154 goto again;
4155 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004156
4157 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04004158 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08004159 * allocation, and no removed chunk in current transaction,
4160 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004161 */
Ethan Liendec59fa2018-07-13 16:50:42 +08004162 have_pinned_space = __percpu_counter_compare(
Zhao Leic99f1b02015-03-02 19:32:20 +08004163 &data_sinfo->total_bytes_pinned,
Ethan Liendec59fa2018-07-13 16:50:42 +08004164 used + bytes - data_sinfo->total_bytes,
4165 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Josef Bacik6a632092009-02-20 11:00:09 -05004166 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004167
4168 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00004169commit_trans:
Nikolay Borisov92e2f7e2018-02-05 10:41:16 +02004170 if (need_commit) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004171 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04004172
Zhao Leie1746e82015-12-01 18:39:40 +08004173 if (need_commit > 0) {
Nikolay Borisov82b3e532018-04-23 10:54:13 +03004174 btrfs_start_delalloc_roots(fs_info, -1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004175 btrfs_wait_ordered_roots(fs_info, U64_MAX, 0,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004176 (u64)-1);
Zhao Leie1746e82015-12-01 18:39:40 +08004177 }
Zhao Lei9a4e7272015-04-09 12:34:43 +08004178
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004179 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004180 if (IS_ERR(trans))
4181 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08004182 if (have_pinned_space >= 0 ||
Josef Bacik3204d332015-09-24 10:46:10 -04004183 test_bit(BTRFS_TRANS_HAVE_FREE_BGS,
4184 &trans->transaction->flags) ||
Zhao Leic99f1b02015-03-02 19:32:20 +08004185 need_commit > 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004186 ret = btrfs_commit_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004187 if (ret)
4188 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08004189 /*
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004190 * The cleaner kthread might still be doing iput
4191 * operations. Wait for it to finish so that
Josef Bacik034f7842018-12-03 11:06:52 -05004192 * more space is released. We don't need to
4193 * explicitly run the delayed iputs here because
4194 * the commit_transaction would have woken up
4195 * the cleaner.
Zhao Leid7c15172015-02-26 10:49:20 +08004196 */
Josef Bacik034f7842018-12-03 11:06:52 -05004197 ret = btrfs_wait_on_delayed_iputs(fs_info);
4198 if (ret)
4199 return ret;
Zhao Lei94b947b2015-02-14 13:23:45 +08004200 goto again;
4201 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004202 btrfs_end_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004203 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004204 }
4205
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004206 trace_btrfs_space_reservation(fs_info,
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004207 "space_info:enospc",
4208 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004209 return -ENOSPC;
4210 }
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08004211 update_bytes_may_use(data_sinfo, bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004212 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004213 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004214 spin_unlock(&data_sinfo->lock);
4215
Josef Bacik4559b0a72018-07-19 10:49:51 -04004216 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05004217}
4218
Qu Wenruo364ecf32017-02-27 15:10:38 +08004219int btrfs_check_data_free_space(struct inode *inode,
4220 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004221{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004222 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004223 int ret;
4224
4225 /* align the range */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004226 len = round_up(start + len, fs_info->sectorsize) -
4227 round_down(start, fs_info->sectorsize);
4228 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004229
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004230 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode), len);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004231 if (ret < 0)
4232 return ret;
4233
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004234 /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */
Qu Wenruo364ecf32017-02-27 15:10:38 +08004235 ret = btrfs_qgroup_reserve_data(inode, reserved, start, len);
Qu Wenruo7bc329c2017-02-27 15:10:36 +08004236 if (ret < 0)
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004237 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruo364ecf32017-02-27 15:10:38 +08004238 else
4239 ret = 0;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004240 return ret;
4241}
4242
4243/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004244 * Called if we need to clear a data reservation for this inode
4245 * Normally in a error case.
4246 *
Qu Wenruo51773be2015-10-08 18:19:37 +08004247 * This one will *NOT* use accurate qgroup reserved space API, just for case
4248 * which we can't sleep and is sure it won't affect qgroup reserved space.
4249 * Like clear_bit_hook().
Qu Wenruo4ceff072015-09-08 17:22:42 +08004250 */
Qu Wenruo51773be2015-10-08 18:19:37 +08004251void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start,
4252 u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004253{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004254 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004255 struct btrfs_space_info *data_sinfo;
4256
4257 /* Make sure the range is aligned to sectorsize */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004258 len = round_up(start + len, fs_info->sectorsize) -
4259 round_down(start, fs_info->sectorsize);
4260 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004261
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004262 data_sinfo = fs_info->data_sinfo;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004263 spin_lock(&data_sinfo->lock);
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08004264 update_bytes_may_use(data_sinfo, -len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004265 trace_btrfs_space_reservation(fs_info, "space_info",
Qu Wenruo4ceff072015-09-08 17:22:42 +08004266 data_sinfo->flags, len, 0);
4267 spin_unlock(&data_sinfo->lock);
4268}
4269
Qu Wenruo51773be2015-10-08 18:19:37 +08004270/*
4271 * Called if we need to clear a data reservation for this inode
4272 * Normally in a error case.
4273 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04004274 * This one will handle the per-inode data rsv map for accurate reserved
Qu Wenruo51773be2015-10-08 18:19:37 +08004275 * space framework.
4276 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08004277void btrfs_free_reserved_data_space(struct inode *inode,
4278 struct extent_changeset *reserved, u64 start, u64 len)
Qu Wenruo51773be2015-10-08 18:19:37 +08004279{
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004280 struct btrfs_root *root = BTRFS_I(inode)->root;
4281
4282 /* Make sure the range is aligned to sectorsize */
Jeff Mahoneyda170662016-06-15 09:22:56 -04004283 len = round_up(start + len, root->fs_info->sectorsize) -
4284 round_down(start, root->fs_info->sectorsize);
4285 start = round_down(start, root->fs_info->sectorsize);
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004286
Qu Wenruo51773be2015-10-08 18:19:37 +08004287 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruobc42bda2017-02-27 15:10:39 +08004288 btrfs_qgroup_free_data(inode, reserved, start, len);
Qu Wenruo51773be2015-10-08 18:19:37 +08004289}
4290
Josef Bacik97e728d2009-04-21 17:40:57 -04004291static void force_metadata_allocation(struct btrfs_fs_info *info)
4292{
4293 struct list_head *head = &info->space_info;
4294 struct btrfs_space_info *found;
4295
4296 rcu_read_lock();
4297 list_for_each_entry_rcu(found, head, list) {
4298 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004299 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04004300 }
4301 rcu_read_unlock();
4302}
4303
Miao Xie3c76cd82013-04-25 10:12:38 +00004304static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4305{
4306 return (global->size << 1);
4307}
4308
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004309static int should_alloc_chunk(struct btrfs_fs_info *fs_info,
Josef Bacik698d0082012-09-12 14:08:47 -04004310 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004311{
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004312 u64 bytes_used = btrfs_space_info_used(sinfo, false);
Chris Masone5bc2452010-10-26 13:37:56 -04004313 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004314
Chris Mason0e4f8f82011-04-15 16:05:44 -04004315 if (force == CHUNK_ALLOC_FORCE)
4316 return 1;
4317
4318 /*
4319 * in limited mode, we want to have some free space up to
4320 * about 1% of the FS size.
4321 */
4322 if (force == CHUNK_ALLOC_LIMITED) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004323 thresh = btrfs_super_total_bytes(fs_info->super_copy);
Byongho Leeee221842015-12-15 01:42:10 +09004324 thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
Chris Mason0e4f8f82011-04-15 16:05:44 -04004325
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004326 if (sinfo->total_bytes - bytes_used < thresh)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004327 return 1;
4328 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004329
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004330 if (bytes_used + SZ_2M < div_factor(sinfo->total_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004331 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004332 return 1;
4333}
4334
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004335static u64 get_profile_num_devs(struct btrfs_fs_info *fs_info, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004336{
4337 u64 num_dev;
4338
David Sterba9fa02ac2019-05-17 11:43:20 +02004339 num_dev = btrfs_raid_array[btrfs_bg_flags_to_raid_index(type)].devs_max;
4340 if (!num_dev)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004341 num_dev = fs_info->fs_devices->rw_devices;
Liu Bo15d1ff82012-03-29 09:57:44 -04004342
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004343 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004344}
4345
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004346/*
4347 * If @is_allocation is true, reserve space in the system space info necessary
4348 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4349 * removing a chunk.
4350 */
Nikolay Borisov451a2c12018-06-20 15:49:07 +03004351void check_system_chunk(struct btrfs_trans_handle *trans, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004352{
Nikolay Borisov451a2c12018-06-20 15:49:07 +03004353 struct btrfs_fs_info *fs_info = trans->fs_info;
Liu Bo15d1ff82012-03-29 09:57:44 -04004354 struct btrfs_space_info *info;
4355 u64 left;
4356 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004357 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004358 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004359
4360 /*
4361 * Needed because we can end up allocating a system chunk and for an
4362 * atomic and race free space reservation in the chunk block reserve.
4363 */
David Sterbaa32bf9a2018-03-16 02:21:22 +01004364 lockdep_assert_held(&fs_info->chunk_mutex);
Liu Bo15d1ff82012-03-29 09:57:44 -04004365
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004366 info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
Liu Bo15d1ff82012-03-29 09:57:44 -04004367 spin_lock(&info->lock);
Liu Bo41361352017-02-13 15:42:21 -08004368 left = info->total_bytes - btrfs_space_info_used(info, true);
Liu Bo15d1ff82012-03-29 09:57:44 -04004369 spin_unlock(&info->lock);
4370
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004371 num_devs = get_profile_num_devs(fs_info, type);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004372
4373 /* num_devs device items to update and 1 chunk item to add or remove */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004374 thresh = btrfs_calc_trunc_metadata_size(fs_info, num_devs) +
4375 btrfs_calc_trans_metadata_size(fs_info, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004376
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004377 if (left < thresh && btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
4378 btrfs_info(fs_info, "left=%llu, need=%llu, flags=%llu",
4379 left, thresh, type);
4380 dump_space_info(fs_info, info, 0, 0);
Liu Bo15d1ff82012-03-29 09:57:44 -04004381 }
4382
4383 if (left < thresh) {
Jeff Mahoney1b868262017-05-17 11:38:35 -04004384 u64 flags = btrfs_system_alloc_profile(fs_info);
Liu Bo15d1ff82012-03-29 09:57:44 -04004385
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004386 /*
4387 * Ignore failure to create system chunk. We might end up not
4388 * needing it, as we might not need to COW all nodes/leafs from
4389 * the paths we visit in the chunk tree (they were already COWed
4390 * or created in the current transaction for example).
4391 */
Nikolay Borisovc216b202018-06-20 15:49:06 +03004392 ret = btrfs_alloc_chunk(trans, flags);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004393 }
4394
4395 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004396 ret = btrfs_block_rsv_add(fs_info->chunk_root,
4397 &fs_info->chunk_block_rsv,
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004398 thresh, BTRFS_RESERVE_NO_FLUSH);
4399 if (!ret)
4400 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004401 }
4402}
4403
Liu Bo28b737f2016-07-29 11:09:50 -07004404/*
4405 * If force is CHUNK_ALLOC_FORCE:
4406 * - return 1 if it successfully allocates a chunk,
4407 * - return errors including -ENOSPC otherwise.
4408 * If force is NOT CHUNK_ALLOC_FORCE:
4409 * - return 0 if it doesn't need to allocate a new chunk,
4410 * - return 1 if it successfully allocates a chunk,
4411 * - return errors including -ENOSPC otherwise.
4412 */
Nikolay Borisov01458822018-06-20 15:49:05 +03004413static int do_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags,
4414 int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004415{
Nikolay Borisov01458822018-06-20 15:49:05 +03004416 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04004417 struct btrfs_space_info *space_info;
Nikolay Borisov2556fbb2018-04-18 10:27:57 +03004418 bool wait_for_alloc = false;
4419 bool should_alloc = false;
Yan Zhengc146afa2008-11-12 14:34:12 -05004420 int ret = 0;
4421
Josef Bacikc6b305a2012-12-18 09:16:16 -05004422 /* Don't re-enter if we're already allocating a chunk */
4423 if (trans->allocating_chunk)
4424 return -ENOSPC;
4425
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004426 space_info = __find_space_info(fs_info, flags);
Jeff Mahoneydc2d3002018-03-20 15:25:25 -04004427 ASSERT(space_info);
Chris Mason6324fbf2008-03-24 15:01:59 -04004428
Nikolay Borisov2556fbb2018-04-18 10:27:57 +03004429 do {
4430 spin_lock(&space_info->lock);
4431 if (force < space_info->force_alloc)
4432 force = space_info->force_alloc;
4433 should_alloc = should_alloc_chunk(fs_info, space_info, force);
4434 if (space_info->full) {
4435 /* No more free physical space */
4436 if (should_alloc)
4437 ret = -ENOSPC;
4438 else
4439 ret = 0;
4440 spin_unlock(&space_info->lock);
4441 return ret;
4442 } else if (!should_alloc) {
4443 spin_unlock(&space_info->lock);
4444 return 0;
4445 } else if (space_info->chunk_alloc) {
4446 /*
4447 * Someone is already allocating, so we need to block
4448 * until this someone is finished and then loop to
4449 * recheck if we should continue with our allocation
4450 * attempt.
4451 */
4452 wait_for_alloc = true;
4453 spin_unlock(&space_info->lock);
4454 mutex_lock(&fs_info->chunk_mutex);
4455 mutex_unlock(&fs_info->chunk_mutex);
4456 } else {
4457 /* Proceed with allocation */
4458 space_info->chunk_alloc = 1;
4459 wait_for_alloc = false;
4460 spin_unlock(&space_info->lock);
4461 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004462
Nikolay Borisov2556fbb2018-04-18 10:27:57 +03004463 cond_resched();
4464 } while (wait_for_alloc);
Josef Bacik25179202008-10-29 14:49:05 -04004465
Josef Bacik6d741192011-04-11 20:20:11 -04004466 mutex_lock(&fs_info->chunk_mutex);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004467 trans->allocating_chunk = true;
4468
Josef Bacik97e728d2009-04-21 17:40:57 -04004469 /*
Josef Bacik67377732010-09-16 16:19:09 -04004470 * If we have mixed data/metadata chunks we want to make sure we keep
4471 * allocating mixed chunks instead of individual chunks.
4472 */
4473 if (btrfs_mixed_space_info(space_info))
4474 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4475
4476 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004477 * if we're doing a data chunk, go ahead and make sure that
4478 * we keep a reasonable number of metadata chunks allocated in the
4479 * FS as well.
4480 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004481 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004482 fs_info->data_chunk_allocations++;
4483 if (!(fs_info->data_chunk_allocations %
4484 fs_info->metadata_ratio))
4485 force_metadata_allocation(fs_info);
4486 }
4487
Liu Bo15d1ff82012-03-29 09:57:44 -04004488 /*
4489 * Check if we have enough space in SYSTEM chunk because we may need
4490 * to update devices.
4491 */
Nikolay Borisov451a2c12018-06-20 15:49:07 +03004492 check_system_chunk(trans, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004493
Nikolay Borisovc216b202018-06-20 15:49:06 +03004494 ret = btrfs_alloc_chunk(trans, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004495 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004496
Josef Bacik9ed74f22009-09-11 16:12:44 -04004497 spin_lock(&space_info->lock);
Nikolay Borisov57f16422018-04-11 11:21:19 +03004498 if (ret < 0) {
4499 if (ret == -ENOSPC)
4500 space_info->full = 1;
4501 else
4502 goto out;
4503 } else {
Yan, Zheng424499d2010-05-16 10:46:25 -04004504 ret = 1;
Josef Bacik21a94f72018-10-11 15:54:03 -04004505 space_info->max_extent_size = 0;
Nikolay Borisov57f16422018-04-11 11:21:19 +03004506 }
Josef Bacik6d741192011-04-11 20:20:11 -04004507
Chris Mason0e4f8f82011-04-15 16:05:44 -04004508 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004509out:
Josef Bacik6d741192011-04-11 20:20:11 -04004510 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004511 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004512 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana00d80e32015-07-20 14:56:20 +01004513 /*
4514 * When we allocate a new chunk we reserve space in the chunk block
4515 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4516 * add new nodes/leafs to it if we end up needing to do it when
4517 * inserting the chunk item and updating device items as part of the
4518 * second phase of chunk allocation, performed by
4519 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4520 * large number of new block groups to create in our transaction
4521 * handle's new_bgs list to avoid exhausting the chunk block reserve
4522 * in extreme cases - like having a single transaction create many new
4523 * block groups when starting to write out the free space caches of all
4524 * the block groups that were made dirty during the lifetime of the
4525 * transaction.
4526 */
Filipe Manana5ce55552018-10-12 10:03:55 +01004527 if (trans->chunk_bytes_reserved >= (u64)SZ_2M)
Nikolay Borisov6c686b32018-02-07 17:55:40 +02004528 btrfs_create_pending_block_groups(trans);
Filipe Manana5ce55552018-10-12 10:03:55 +01004529
Josef Bacik0f9dd462008-09-23 13:14:11 -04004530 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004531}
4532
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004533static int can_overcommit(struct btrfs_fs_info *fs_info,
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004534 struct btrfs_space_info *space_info, u64 bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004535 enum btrfs_reserve_flush_enum flush,
4536 bool system_chunk)
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004537{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004538 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04004539 u64 profile;
Miao Xie3c76cd82013-04-25 10:12:38 +00004540 u64 space_size;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004541 u64 avail;
4542 u64 used;
David Sterba46df06b2018-07-13 20:46:30 +02004543 int factor;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004544
Josef Bacik957780e2016-05-17 13:30:55 -04004545 /* Don't overcommit when in mixed mode. */
4546 if (space_info->flags & BTRFS_BLOCK_GROUP_DATA)
4547 return 0;
4548
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004549 if (system_chunk)
4550 profile = btrfs_system_alloc_profile(fs_info);
4551 else
4552 profile = btrfs_metadata_alloc_profile(fs_info);
4553
Liu Bo41361352017-02-13 15:42:21 -08004554 used = btrfs_space_info_used(space_info, false);
Josef Bacik96f1bb52013-01-30 17:02:51 -05004555
Josef Bacik96f1bb52013-01-30 17:02:51 -05004556 /*
4557 * We only want to allow over committing if we have lots of actual space
4558 * free, but if we don't have enough space to handle the global reserve
4559 * space then we could end up having a real enospc problem when trying
4560 * to allocate a chunk or some other such important allocation.
4561 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004562 spin_lock(&global_rsv->lock);
4563 space_size = calc_global_rsv_need_space(global_rsv);
4564 spin_unlock(&global_rsv->lock);
4565 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004566 return 0;
4567
4568 used += space_info->bytes_may_use;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004569
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004570 avail = atomic64_read(&fs_info->free_chunk_space);
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004571
4572 /*
4573 * If we have dup, raid1 or raid10 then only half of the free
Andrea Gelmini52042d82018-11-28 12:05:13 +01004574 * space is actually usable. For raid56, the space info used
David Woodhouse53b381b2013-01-29 18:40:14 -05004575 * doesn't include the parity drive, so we don't have to
4576 * change the math
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004577 */
David Sterba46df06b2018-07-13 20:46:30 +02004578 factor = btrfs_bg_type_to_factor(profile);
4579 avail = div_u64(avail, factor);
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004580
4581 /*
Miao Xie561c2942012-10-16 11:32:18 +00004582 * If we aren't flushing all things, let us overcommit up to
4583 * 1/2th of the space. If we can flush, don't let us overcommit
4584 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004585 */
Miao Xie08e007d2012-10-16 11:33:38 +00004586 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004587 avail >>= 3;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004588 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004589 avail >>= 1;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004590
Josef Bacik14575ae2013-09-17 10:48:00 -04004591 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004592 return 1;
4593 return 0;
4594}
4595
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004596static void btrfs_writeback_inodes_sb_nr(struct btrfs_fs_info *fs_info,
Miao Xie6c255e62014-03-06 13:55:01 +08004597 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004598{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004599 struct super_block *sb = fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004600
Josef Bacik925a6ef2013-06-20 12:31:27 -04004601 if (down_read_trylock(&sb->s_umount)) {
4602 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4603 up_read(&sb->s_umount);
4604 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004605 /*
4606 * We needn't worry the filesystem going from r/w to r/o though
4607 * we don't acquire ->s_umount mutex, because the filesystem
4608 * should guarantee the delalloc inodes list be empty after
4609 * the filesystem is readonly(all dirty pages are written to
4610 * the disk).
4611 */
Nikolay Borisov82b3e532018-04-23 10:54:13 +03004612 btrfs_start_delalloc_roots(fs_info, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004613 if (!current->journal_info)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004614 btrfs_wait_ordered_roots(fs_info, nr_items, 0, (u64)-1);
Miao Xieda633a42012-12-20 11:19:09 +00004615 }
4616}
4617
Chris Mason6374e57a2017-06-23 09:48:21 -07004618static inline u64 calc_reclaim_items_nr(struct btrfs_fs_info *fs_info,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004619 u64 to_reclaim)
Miao Xie18cd8ea2013-11-04 23:13:22 +08004620{
4621 u64 bytes;
Chris Mason6374e57a2017-06-23 09:48:21 -07004622 u64 nr;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004623
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004624 bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004625 nr = div64_u64(to_reclaim, bytes);
Miao Xie18cd8ea2013-11-04 23:13:22 +08004626 if (!nr)
4627 nr = 1;
4628 return nr;
4629}
4630
Byongho Leeee221842015-12-15 01:42:10 +09004631#define EXTENT_SIZE_PER_ITEM SZ_256K
Miao Xiec61a16a2013-11-04 23:13:23 +08004632
Yan, Zheng5da9d012010-05-16 10:46:25 -04004633/*
4634 * shrink metadata reservation for delalloc
4635 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004636static void shrink_delalloc(struct btrfs_fs_info *fs_info, u64 to_reclaim,
4637 u64 orig, bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004638{
Josef Bacik0019f102010-10-15 15:18:40 -04004639 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004640 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004641 u64 delalloc_bytes;
Josef Bacik4297ff82019-04-10 15:56:09 -04004642 u64 dio_bytes;
Nikolay Borisov420829d2019-01-03 10:50:05 +02004643 u64 async_pages;
Chris Mason6374e57a2017-06-23 09:48:21 -07004644 u64 items;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004645 long time_left;
Miao Xied3ee29e32013-11-04 23:13:20 +08004646 unsigned long nr_pages;
4647 int loops;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004648
Miao Xiec61a16a2013-11-04 23:13:23 +08004649 /* Calc the number of the pages we need flush for space reservation */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004650 items = calc_reclaim_items_nr(fs_info, to_reclaim);
Chris Mason6374e57a2017-06-23 09:48:21 -07004651 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004652
Josef Bacik663350a2011-11-03 22:54:25 -04004653 trans = (struct btrfs_trans_handle *)current->journal_info;
Josef Bacik69fe2d72017-10-19 14:15:57 -04004654 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Chris Masonbf9022e2010-10-26 13:40:45 -04004655
Miao Xie963d6782013-01-29 10:10:51 +00004656 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004657 &fs_info->delalloc_bytes);
Josef Bacik4297ff82019-04-10 15:56:09 -04004658 dio_bytes = percpu_counter_sum_positive(&fs_info->dio_bytes);
4659 if (delalloc_bytes == 0 && dio_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004660 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004661 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004662 if (wait_ordered)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004663 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004664 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004665 }
4666
Josef Bacik4297ff82019-04-10 15:56:09 -04004667 /*
4668 * If we are doing more ordered than delalloc we need to just wait on
4669 * ordered extents, otherwise we'll waste time trying to flush delalloc
4670 * that likely won't give us the space back we need.
4671 */
4672 if (dio_bytes > delalloc_bytes)
4673 wait_ordered = true;
4674
Miao Xied3ee29e32013-11-04 23:13:20 +08004675 loops = 0;
Josef Bacik4297ff82019-04-10 15:56:09 -04004676 while ((delalloc_bytes || dio_bytes) && loops < 3) {
Nikolay Borisov420829d2019-01-03 10:50:05 +02004677 nr_pages = min(delalloc_bytes, to_reclaim) >> PAGE_SHIFT;
4678
Josef Bacikdea31f52012-09-06 16:47:00 -04004679 /*
Nikolay Borisov420829d2019-01-03 10:50:05 +02004680 * Triggers inode writeback for up to nr_pages. This will invoke
4681 * ->writepages callback and trigger delalloc filling
4682 * (btrfs_run_delalloc_range()).
Josef Bacikdea31f52012-09-06 16:47:00 -04004683 */
Nikolay Borisov420829d2019-01-03 10:50:05 +02004684 btrfs_writeback_inodes_sb_nr(fs_info, nr_pages, items);
4685
4686 /*
4687 * We need to wait for the compressed pages to start before
4688 * we continue.
4689 */
4690 async_pages = atomic_read(&fs_info->async_delalloc_pages);
4691 if (!async_pages)
Miao Xie9f3a0742013-11-04 23:13:24 +08004692 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004693
Nikolay Borisov420829d2019-01-03 10:50:05 +02004694 /*
4695 * Calculate how many compressed pages we want to be written
4696 * before we continue. I.e if there are more async pages than we
4697 * require wait_event will wait until nr_pages are written.
4698 */
4699 if (async_pages <= nr_pages)
4700 async_pages = 0;
Miao Xie9f3a0742013-11-04 23:13:24 +08004701 else
Nikolay Borisov420829d2019-01-03 10:50:05 +02004702 async_pages -= nr_pages;
Miao Xie9f3a0742013-11-04 23:13:24 +08004703
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004704 wait_event(fs_info->async_submit_wait,
4705 atomic_read(&fs_info->async_delalloc_pages) <=
Nikolay Borisov420829d2019-01-03 10:50:05 +02004706 (int)async_pages);
Miao Xie9f3a0742013-11-04 23:13:24 +08004707skip_async:
Josef Bacik0019f102010-10-15 15:18:40 -04004708 spin_lock(&space_info->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04004709 if (list_empty(&space_info->tickets) &&
4710 list_empty(&space_info->priority_tickets)) {
4711 spin_unlock(&space_info->lock);
4712 break;
4713 }
Josef Bacik0019f102010-10-15 15:18:40 -04004714 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004715
Chris Mason36e39c42011-03-12 07:08:42 -05004716 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004717 if (wait_ordered && !trans) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004718 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf104d042011-10-14 13:56:58 -04004719 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004720 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004721 if (time_left)
4722 break;
4723 }
Miao Xie963d6782013-01-29 10:10:51 +00004724 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004725 &fs_info->delalloc_bytes);
Josef Bacik4297ff82019-04-10 15:56:09 -04004726 dio_bytes = percpu_counter_sum_positive(&fs_info->dio_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004727 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004728}
4729
Josef Bacik996478c2017-08-22 16:00:39 -04004730struct reserve_ticket {
Josef Bacikf91587e2018-11-21 14:03:10 -05004731 u64 orig_bytes;
Josef Bacik996478c2017-08-22 16:00:39 -04004732 u64 bytes;
4733 int error;
4734 struct list_head list;
4735 wait_queue_head_t wait;
4736};
4737
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004738/**
Josef Bacik663350a2011-11-03 22:54:25 -04004739 * maybe_commit_transaction - possibly commit the transaction if its ok to
4740 * @root - the root we're allocating for
4741 * @bytes - the number of bytes we want to reserve
4742 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004743 *
Josef Bacik663350a2011-11-03 22:54:25 -04004744 * This will check to make sure that committing the transaction will actually
4745 * get us somewhere and then commit the transaction if it does. Otherwise it
4746 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004747 */
Jeff Mahoney0c9ab342017-02-15 16:28:28 -05004748static int may_commit_transaction(struct btrfs_fs_info *fs_info,
Josef Bacik996478c2017-08-22 16:00:39 -04004749 struct btrfs_space_info *space_info)
Josef Bacik663350a2011-11-03 22:54:25 -04004750{
Josef Bacik996478c2017-08-22 16:00:39 -04004751 struct reserve_ticket *ticket = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004752 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_block_rsv;
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004753 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
Josef Bacik663350a2011-11-03 22:54:25 -04004754 struct btrfs_trans_handle *trans;
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004755 u64 bytes_needed;
4756 u64 reclaim_bytes = 0;
Josef Bacik663350a2011-11-03 22:54:25 -04004757
4758 trans = (struct btrfs_trans_handle *)current->journal_info;
4759 if (trans)
4760 return -EAGAIN;
4761
Josef Bacik996478c2017-08-22 16:00:39 -04004762 spin_lock(&space_info->lock);
4763 if (!list_empty(&space_info->priority_tickets))
4764 ticket = list_first_entry(&space_info->priority_tickets,
4765 struct reserve_ticket, list);
4766 else if (!list_empty(&space_info->tickets))
4767 ticket = list_first_entry(&space_info->tickets,
4768 struct reserve_ticket, list);
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004769 bytes_needed = (ticket) ? ticket->bytes : 0;
Josef Bacik996478c2017-08-22 16:00:39 -04004770 spin_unlock(&space_info->lock);
4771
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004772 if (!bytes_needed)
Josef Bacik996478c2017-08-22 16:00:39 -04004773 return 0;
Josef Bacik663350a2011-11-03 22:54:25 -04004774
Josef Bacikd89dbef2018-11-21 14:03:06 -05004775 trans = btrfs_join_transaction(fs_info->extent_root);
4776 if (IS_ERR(trans))
4777 return PTR_ERR(trans);
4778
4779 /*
4780 * See if there is enough pinned space to make this reservation, or if
4781 * we have block groups that are going to be freed, allowing us to
4782 * possibly do a chunk allocation the next loop through.
4783 */
4784 if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags) ||
4785 __percpu_counter_compare(&space_info->total_bytes_pinned,
4786 bytes_needed,
4787 BTRFS_TOTAL_BYTES_PINNED_BATCH) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004788 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004789
4790 /*
4791 * See if there is some space in the delayed insertion reservation for
4792 * this reservation.
4793 */
4794 if (space_info != delayed_rsv->space_info)
Josef Bacikd89dbef2018-11-21 14:03:06 -05004795 goto enospc;
Josef Bacik663350a2011-11-03 22:54:25 -04004796
4797 spin_lock(&delayed_rsv->lock);
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004798 reclaim_bytes += delayed_rsv->reserved;
Nikolay Borisov057aac32017-11-07 11:22:54 +02004799 spin_unlock(&delayed_rsv->lock);
4800
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004801 spin_lock(&delayed_refs_rsv->lock);
4802 reclaim_bytes += delayed_refs_rsv->reserved;
4803 spin_unlock(&delayed_refs_rsv->lock);
4804 if (reclaim_bytes >= bytes_needed)
4805 goto commit;
4806 bytes_needed -= reclaim_bytes;
4807
Ethan Liendec59fa2018-07-13 16:50:42 +08004808 if (__percpu_counter_compare(&space_info->total_bytes_pinned,
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004809 bytes_needed,
Josef Bacikd89dbef2018-11-21 14:03:06 -05004810 BTRFS_TOTAL_BYTES_PINNED_BATCH) < 0)
4811 goto enospc;
Josef Bacik663350a2011-11-03 22:54:25 -04004812
4813commit:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004814 return btrfs_commit_transaction(trans);
Josef Bacikd89dbef2018-11-21 14:03:06 -05004815enospc:
4816 btrfs_end_transaction(trans);
4817 return -ENOSPC;
Josef Bacik663350a2011-11-03 22:54:25 -04004818}
4819
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03004820/*
4821 * Try to flush some data based on policy set by @state. This is only advisory
4822 * and may fail for various reasons. The caller is supposed to examine the
4823 * state of @space_info to detect the outcome.
4824 */
4825static void flush_space(struct btrfs_fs_info *fs_info,
Josef Bacik96c3f432012-06-21 14:05:49 -04004826 struct btrfs_space_info *space_info, u64 num_bytes,
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004827 int state)
Josef Bacik96c3f432012-06-21 14:05:49 -04004828{
Jeff Mahoneya9b33112017-05-17 11:38:34 -04004829 struct btrfs_root *root = fs_info->extent_root;
Josef Bacik96c3f432012-06-21 14:05:49 -04004830 struct btrfs_trans_handle *trans;
4831 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004832 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004833
4834 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004835 case FLUSH_DELAYED_ITEMS_NR:
4836 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004837 if (state == FLUSH_DELAYED_ITEMS_NR)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004838 nr = calc_reclaim_items_nr(fs_info, num_bytes) * 2;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004839 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004840 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004841
Josef Bacik96c3f432012-06-21 14:05:49 -04004842 trans = btrfs_join_transaction(root);
4843 if (IS_ERR(trans)) {
4844 ret = PTR_ERR(trans);
4845 break;
4846 }
Nikolay Borisove5c304e62018-02-07 17:55:43 +02004847 ret = btrfs_run_delayed_items_nr(trans, nr);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004848 btrfs_end_transaction(trans);
Josef Bacik96c3f432012-06-21 14:05:49 -04004849 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004850 case FLUSH_DELALLOC:
4851 case FLUSH_DELALLOC_WAIT:
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004852 shrink_delalloc(fs_info, num_bytes * 2, num_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004853 state == FLUSH_DELALLOC_WAIT);
4854 break;
Josef Bacik413df722018-12-03 10:20:35 -05004855 case FLUSH_DELAYED_REFS_NR:
4856 case FLUSH_DELAYED_REFS:
4857 trans = btrfs_join_transaction(root);
4858 if (IS_ERR(trans)) {
4859 ret = PTR_ERR(trans);
4860 break;
4861 }
4862 if (state == FLUSH_DELAYED_REFS_NR)
4863 nr = calc_reclaim_items_nr(fs_info, num_bytes);
4864 else
4865 nr = 0;
4866 btrfs_run_delayed_refs(trans, nr);
4867 btrfs_end_transaction(trans);
4868 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004869 case ALLOC_CHUNK:
Josef Bacik450114f2018-11-21 14:03:08 -05004870 case ALLOC_CHUNK_FORCE:
Josef Bacikea658ba2012-09-11 16:57:25 -04004871 trans = btrfs_join_transaction(root);
4872 if (IS_ERR(trans)) {
4873 ret = PTR_ERR(trans);
4874 break;
4875 }
Nikolay Borisov01458822018-06-20 15:49:05 +03004876 ret = do_chunk_alloc(trans,
Jeff Mahoney1b868262017-05-17 11:38:35 -04004877 btrfs_metadata_alloc_profile(fs_info),
Josef Bacik450114f2018-11-21 14:03:08 -05004878 (state == ALLOC_CHUNK) ?
4879 CHUNK_ALLOC_NO_FORCE : CHUNK_ALLOC_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004880 btrfs_end_transaction(trans);
Alex Lyakaseecba892015-12-06 12:32:31 +02004881 if (ret > 0 || ret == -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04004882 ret = 0;
4883 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004884 case COMMIT_TRANS:
Josef Bacik3ec9a4c2019-01-11 10:21:01 -05004885 /*
4886 * If we have pending delayed iputs then we could free up a
4887 * bunch of pinned space, so make sure we run the iputs before
4888 * we do our pinned bytes check below.
4889 */
Josef Bacik3ec9a4c2019-01-11 10:21:01 -05004890 btrfs_run_delayed_iputs(fs_info);
Josef Bacik034f7842018-12-03 11:06:52 -05004891 btrfs_wait_on_delayed_iputs(fs_info);
Josef Bacik3ec9a4c2019-01-11 10:21:01 -05004892
Josef Bacik996478c2017-08-22 16:00:39 -04004893 ret = may_commit_transaction(fs_info, space_info);
Josef Bacik96c3f432012-06-21 14:05:49 -04004894 break;
4895 default:
4896 ret = -ENOSPC;
4897 break;
4898 }
4899
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004900 trace_btrfs_flush_space(fs_info, space_info->flags, num_bytes, state,
4901 ret);
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03004902 return;
Josef Bacik96c3f432012-06-21 14:05:49 -04004903}
Miao Xie21c7e752014-05-13 17:29:04 -07004904
4905static inline u64
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004906btrfs_calc_reclaim_metadata_size(struct btrfs_fs_info *fs_info,
4907 struct btrfs_space_info *space_info,
4908 bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07004909{
Josef Bacik957780e2016-05-17 13:30:55 -04004910 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004911 u64 used;
4912 u64 expected;
Josef Bacik957780e2016-05-17 13:30:55 -04004913 u64 to_reclaim = 0;
Miao Xie21c7e752014-05-13 17:29:04 -07004914
Josef Bacik957780e2016-05-17 13:30:55 -04004915 list_for_each_entry(ticket, &space_info->tickets, list)
4916 to_reclaim += ticket->bytes;
4917 list_for_each_entry(ticket, &space_info->priority_tickets, list)
4918 to_reclaim += ticket->bytes;
4919 if (to_reclaim)
4920 return to_reclaim;
Miao Xie21c7e752014-05-13 17:29:04 -07004921
Wang Xiaoguange0af2482016-08-31 19:46:16 +08004922 to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004923 if (can_overcommit(fs_info, space_info, to_reclaim,
4924 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Wang Xiaoguange0af2482016-08-31 19:46:16 +08004925 return 0;
4926
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03004927 used = btrfs_space_info_used(space_info, true);
4928
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004929 if (can_overcommit(fs_info, space_info, SZ_1M,
4930 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Miao Xie21c7e752014-05-13 17:29:04 -07004931 expected = div_factor_fine(space_info->total_bytes, 95);
4932 else
4933 expected = div_factor_fine(space_info->total_bytes, 90);
4934
4935 if (used > expected)
4936 to_reclaim = used - expected;
4937 else
4938 to_reclaim = 0;
4939 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4940 space_info->bytes_reserved);
Miao Xie21c7e752014-05-13 17:29:04 -07004941 return to_reclaim;
4942}
4943
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004944static inline int need_do_async_reclaim(struct btrfs_fs_info *fs_info,
4945 struct btrfs_space_info *space_info,
4946 u64 used, bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07004947{
Josef Bacik365c5312015-02-18 13:58:15 -08004948 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
4949
4950 /* If we're just plain full then async reclaim just slows us down. */
Josef Bacikbaee8792016-01-26 09:35:38 -05004951 if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh)
Josef Bacik365c5312015-02-18 13:58:15 -08004952 return 0;
4953
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004954 if (!btrfs_calc_reclaim_metadata_size(fs_info, space_info,
4955 system_chunk))
Liu Bo25ce4592014-09-10 12:58:50 +08004956 return 0;
Liu Bo25ce4592014-09-10 12:58:50 +08004957
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004958 return (used >= thresh && !btrfs_fs_closing(fs_info) &&
4959 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
Miao Xie21c7e752014-05-13 17:29:04 -07004960}
4961
Josef Bacikf91587e2018-11-21 14:03:10 -05004962static bool wake_all_tickets(struct list_head *head)
Miao Xie21c7e752014-05-13 17:29:04 -07004963{
Josef Bacik957780e2016-05-17 13:30:55 -04004964 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004965
Josef Bacik957780e2016-05-17 13:30:55 -04004966 while (!list_empty(head)) {
4967 ticket = list_first_entry(head, struct reserve_ticket, list);
4968 list_del_init(&ticket->list);
4969 ticket->error = -ENOSPC;
4970 wake_up(&ticket->wait);
Josef Bacikf91587e2018-11-21 14:03:10 -05004971 if (ticket->bytes != ticket->orig_bytes)
4972 return true;
Miao Xie21c7e752014-05-13 17:29:04 -07004973 }
Josef Bacikf91587e2018-11-21 14:03:10 -05004974 return false;
Miao Xie21c7e752014-05-13 17:29:04 -07004975}
4976
Josef Bacik957780e2016-05-17 13:30:55 -04004977/*
4978 * This is for normal flushers, we can wait all goddamned day if we want to. We
4979 * will loop and continuously try to flush as long as we are making progress.
4980 * We count progress as clearing off tickets each time we have to loop.
4981 */
Miao Xie21c7e752014-05-13 17:29:04 -07004982static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4983{
4984 struct btrfs_fs_info *fs_info;
4985 struct btrfs_space_info *space_info;
4986 u64 to_reclaim;
4987 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04004988 int commit_cycles = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08004989 u64 last_tickets_id;
Miao Xie21c7e752014-05-13 17:29:04 -07004990
4991 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4992 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4993
Josef Bacik957780e2016-05-17 13:30:55 -04004994 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004995 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
4996 false);
Josef Bacik957780e2016-05-17 13:30:55 -04004997 if (!to_reclaim) {
4998 space_info->flush = 0;
4999 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005000 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005001 }
Wang Xiaoguangce129652016-09-02 10:58:46 +08005002 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005003 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005004
5005 flush_state = FLUSH_DELAYED_ITEMS_NR;
5006 do {
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03005007 flush_space(fs_info, space_info, to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04005008 spin_lock(&space_info->lock);
5009 if (list_empty(&space_info->tickets)) {
5010 space_info->flush = 0;
5011 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005012 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005013 }
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005014 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info,
5015 space_info,
5016 false);
Wang Xiaoguangce129652016-09-02 10:58:46 +08005017 if (last_tickets_id == space_info->tickets_id) {
Josef Bacik957780e2016-05-17 13:30:55 -04005018 flush_state++;
5019 } else {
Wang Xiaoguangce129652016-09-02 10:58:46 +08005020 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005021 flush_state = FLUSH_DELAYED_ITEMS_NR;
5022 if (commit_cycles)
5023 commit_cycles--;
5024 }
5025
Josef Bacik450114f2018-11-21 14:03:08 -05005026 /*
5027 * We don't want to force a chunk allocation until we've tried
5028 * pretty hard to reclaim space. Think of the case where we
5029 * freed up a bunch of space and so have a lot of pinned space
5030 * to reclaim. We would rather use that than possibly create a
5031 * underutilized metadata chunk. So if this is our first run
5032 * through the flushing state machine skip ALLOC_CHUNK_FORCE and
5033 * commit the transaction. If nothing has changed the next go
5034 * around then we can force a chunk allocation.
5035 */
5036 if (flush_state == ALLOC_CHUNK_FORCE && !commit_cycles)
5037 flush_state++;
5038
Josef Bacik957780e2016-05-17 13:30:55 -04005039 if (flush_state > COMMIT_TRANS) {
5040 commit_cycles++;
5041 if (commit_cycles > 2) {
Josef Bacikf91587e2018-11-21 14:03:10 -05005042 if (wake_all_tickets(&space_info->tickets)) {
5043 flush_state = FLUSH_DELAYED_ITEMS_NR;
5044 commit_cycles--;
5045 } else {
5046 space_info->flush = 0;
5047 }
Josef Bacik957780e2016-05-17 13:30:55 -04005048 } else {
5049 flush_state = FLUSH_DELAYED_ITEMS_NR;
5050 }
5051 }
5052 spin_unlock(&space_info->lock);
5053 } while (flush_state <= COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07005054}
5055
5056void btrfs_init_async_reclaim_work(struct work_struct *work)
5057{
5058 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
5059}
5060
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005061static const enum btrfs_flush_state priority_flush_states[] = {
5062 FLUSH_DELAYED_ITEMS_NR,
5063 FLUSH_DELAYED_ITEMS,
5064 ALLOC_CHUNK,
5065};
5066
Josef Bacik957780e2016-05-17 13:30:55 -04005067static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info,
5068 struct btrfs_space_info *space_info,
5069 struct reserve_ticket *ticket)
5070{
5071 u64 to_reclaim;
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005072 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04005073
5074 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005075 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5076 false);
Josef Bacik957780e2016-05-17 13:30:55 -04005077 if (!to_reclaim) {
5078 spin_unlock(&space_info->lock);
5079 return;
5080 }
5081 spin_unlock(&space_info->lock);
5082
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005083 flush_state = 0;
Josef Bacik957780e2016-05-17 13:30:55 -04005084 do {
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005085 flush_space(fs_info, space_info, to_reclaim,
5086 priority_flush_states[flush_state]);
Josef Bacik957780e2016-05-17 13:30:55 -04005087 flush_state++;
5088 spin_lock(&space_info->lock);
5089 if (ticket->bytes == 0) {
5090 spin_unlock(&space_info->lock);
5091 return;
5092 }
5093 spin_unlock(&space_info->lock);
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005094 } while (flush_state < ARRAY_SIZE(priority_flush_states));
Josef Bacik957780e2016-05-17 13:30:55 -04005095}
5096
5097static int wait_reserve_ticket(struct btrfs_fs_info *fs_info,
5098 struct btrfs_space_info *space_info,
Josef Bacikf91587e2018-11-21 14:03:10 -05005099 struct reserve_ticket *ticket)
Josef Bacik957780e2016-05-17 13:30:55 -04005100
5101{
5102 DEFINE_WAIT(wait);
Josef Bacikf91587e2018-11-21 14:03:10 -05005103 u64 reclaim_bytes = 0;
Josef Bacik957780e2016-05-17 13:30:55 -04005104 int ret = 0;
5105
5106 spin_lock(&space_info->lock);
5107 while (ticket->bytes > 0 && ticket->error == 0) {
5108 ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE);
5109 if (ret) {
5110 ret = -EINTR;
5111 break;
5112 }
5113 spin_unlock(&space_info->lock);
5114
5115 schedule();
5116
5117 finish_wait(&ticket->wait, &wait);
5118 spin_lock(&space_info->lock);
5119 }
5120 if (!ret)
5121 ret = ticket->error;
5122 if (!list_empty(&ticket->list))
5123 list_del_init(&ticket->list);
Josef Bacikf91587e2018-11-21 14:03:10 -05005124 if (ticket->bytes && ticket->bytes < ticket->orig_bytes)
5125 reclaim_bytes = ticket->orig_bytes - ticket->bytes;
Josef Bacik957780e2016-05-17 13:30:55 -04005126 spin_unlock(&space_info->lock);
5127
Josef Bacikf91587e2018-11-21 14:03:10 -05005128 if (reclaim_bytes)
5129 space_info_add_old_bytes(fs_info, space_info, reclaim_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005130 return ret;
5131}
5132
Josef Bacik663350a2011-11-03 22:54:25 -04005133/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005134 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5135 * @root - the root we're allocating for
Josef Bacik957780e2016-05-17 13:30:55 -04005136 * @space_info - the space info we want to allocate from
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005137 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04005138 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005139 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04005140 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005141 * with the block_rsv. If there is not enough space it will make an attempt to
5142 * flush out space to make room. It will do this by flushing delalloc if
5143 * possible or committing the transaction. If flush is 0 then no attempts to
5144 * regain reservations will be made and this will fail if there is not enough
5145 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005146 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005147static int __reserve_metadata_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik957780e2016-05-17 13:30:55 -04005148 struct btrfs_space_info *space_info,
5149 u64 orig_bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005150 enum btrfs_reserve_flush_enum flush,
5151 bool system_chunk)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005152{
Josef Bacik957780e2016-05-17 13:30:55 -04005153 struct reserve_ticket ticket;
Josef Bacik2bf64752011-09-26 17:12:22 -04005154 u64 used;
Josef Bacikf91587e2018-11-21 14:03:10 -05005155 u64 reclaim_bytes = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005156 int ret = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005157
Josef Bacik957780e2016-05-17 13:30:55 -04005158 ASSERT(orig_bytes);
Josef Bacik8ca17f02016-05-27 13:24:13 -04005159 ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL);
5160
Yan, Zhengf0486c62010-05-16 10:46:25 -04005161 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04005162 ret = -ENOSPC;
Liu Bo41361352017-02-13 15:42:21 -08005163 used = btrfs_space_info_used(space_info, true);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005164
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005165 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005166 * If we have enough space then hooray, make our reservation and carry
5167 * on. If not see if we can overcommit, and if we can, hooray carry on.
5168 * If not things get more complicated.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005169 */
Josef Bacik957780e2016-05-17 13:30:55 -04005170 if (used + orig_bytes <= space_info->total_bytes) {
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005171 update_bytes_may_use(space_info, orig_bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005172 trace_btrfs_space_reservation(fs_info, "space_info",
5173 space_info->flags, orig_bytes, 1);
Josef Bacik957780e2016-05-17 13:30:55 -04005174 ret = 0;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005175 } else if (can_overcommit(fs_info, space_info, orig_bytes, flush,
5176 system_chunk)) {
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005177 update_bytes_may_use(space_info, orig_bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005178 trace_btrfs_space_reservation(fs_info, "space_info",
5179 space_info->flags, orig_bytes, 1);
Josef Bacik44734ed2012-09-28 16:04:19 -04005180 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04005181 }
5182
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005183 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005184 * If we couldn't make a reservation then setup our reservation ticket
5185 * and kick the async worker if it's not already running.
Miao Xie08e007d2012-10-16 11:33:38 +00005186 *
Josef Bacik957780e2016-05-17 13:30:55 -04005187 * If we are a priority flusher then we just need to add our ticket to
5188 * the list and we will do our own flushing further down.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005189 */
Josef Bacik72bcd992012-12-18 15:16:34 -05005190 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacikf91587e2018-11-21 14:03:10 -05005191 ticket.orig_bytes = orig_bytes;
Josef Bacik957780e2016-05-17 13:30:55 -04005192 ticket.bytes = orig_bytes;
5193 ticket.error = 0;
5194 init_waitqueue_head(&ticket.wait);
5195 if (flush == BTRFS_RESERVE_FLUSH_ALL) {
5196 list_add_tail(&ticket.list, &space_info->tickets);
5197 if (!space_info->flush) {
5198 space_info->flush = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005199 trace_btrfs_trigger_flush(fs_info,
Josef Bacikf376df22016-03-25 13:25:56 -04005200 space_info->flags,
5201 orig_bytes, flush,
5202 "enospc");
Josef Bacik957780e2016-05-17 13:30:55 -04005203 queue_work(system_unbound_wq,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005204 &fs_info->async_reclaim_work);
Josef Bacik957780e2016-05-17 13:30:55 -04005205 }
5206 } else {
5207 list_add_tail(&ticket.list,
5208 &space_info->priority_tickets);
5209 }
Miao Xie21c7e752014-05-13 17:29:04 -07005210 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
5211 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04005212 /*
5213 * We will do the space reservation dance during log replay,
5214 * which means we won't have fs_info->fs_root set, so don't do
5215 * the async reclaim as we will panic.
5216 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005217 if (!test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags) &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005218 need_do_async_reclaim(fs_info, space_info,
5219 used, system_chunk) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005220 !work_busy(&fs_info->async_reclaim_work)) {
5221 trace_btrfs_trigger_flush(fs_info, space_info->flags,
5222 orig_bytes, flush, "preempt");
Miao Xie21c7e752014-05-13 17:29:04 -07005223 queue_work(system_unbound_wq,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005224 &fs_info->async_reclaim_work);
Josef Bacikf376df22016-03-25 13:25:56 -04005225 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005226 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005227 spin_unlock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00005228 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik957780e2016-05-17 13:30:55 -04005229 return ret;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005230
Josef Bacik957780e2016-05-17 13:30:55 -04005231 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacikf91587e2018-11-21 14:03:10 -05005232 return wait_reserve_ticket(fs_info, space_info, &ticket);
Miao Xie08e007d2012-10-16 11:33:38 +00005233
Josef Bacik957780e2016-05-17 13:30:55 -04005234 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005235 priority_reclaim_metadata_space(fs_info, space_info, &ticket);
Josef Bacik957780e2016-05-17 13:30:55 -04005236 spin_lock(&space_info->lock);
5237 if (ticket.bytes) {
Josef Bacikf91587e2018-11-21 14:03:10 -05005238 if (ticket.bytes < orig_bytes)
5239 reclaim_bytes = orig_bytes - ticket.bytes;
Josef Bacik957780e2016-05-17 13:30:55 -04005240 list_del_init(&ticket.list);
5241 ret = -ENOSPC;
5242 }
5243 spin_unlock(&space_info->lock);
Josef Bacikf91587e2018-11-21 14:03:10 -05005244
5245 if (reclaim_bytes)
5246 space_info_add_old_bytes(fs_info, space_info, reclaim_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005247 ASSERT(list_empty(&ticket.list));
5248 return ret;
5249}
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005250
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005251/**
5252 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5253 * @root - the root we're allocating for
5254 * @block_rsv - the block_rsv we're allocating for
5255 * @orig_bytes - the number of bytes we want
5256 * @flush - whether or not we can flush to make our reservation
5257 *
Andrea Gelmini52042d82018-11-28 12:05:13 +01005258 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005259 * with the block_rsv. If there is not enough space it will make an attempt to
5260 * flush out space to make room. It will do this by flushing delalloc if
5261 * possible or committing the transaction. If flush is 0 then no attempts to
5262 * regain reservations will be made and this will fail if there is not enough
5263 * space already.
5264 */
5265static int reserve_metadata_bytes(struct btrfs_root *root,
5266 struct btrfs_block_rsv *block_rsv,
5267 u64 orig_bytes,
5268 enum btrfs_reserve_flush_enum flush)
5269{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005270 struct btrfs_fs_info *fs_info = root->fs_info;
5271 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04005272 int ret;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005273 bool system_chunk = (root == fs_info->chunk_root);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005274
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005275 ret = __reserve_metadata_bytes(fs_info, block_rsv->space_info,
5276 orig_bytes, flush, system_chunk);
Josef Bacik5d803662013-02-07 16:06:02 -05005277 if (ret == -ENOSPC &&
5278 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
Josef Bacik5d803662013-02-07 16:06:02 -05005279 if (block_rsv != global_rsv &&
5280 !block_rsv_use_bytes(global_rsv, orig_bytes))
5281 ret = 0;
5282 }
Nikolay Borisov9a3daff2017-12-15 12:05:37 +02005283 if (ret == -ENOSPC) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005284 trace_btrfs_space_reservation(fs_info, "space_info:enospc",
Josef Bacik957780e2016-05-17 13:30:55 -04005285 block_rsv->space_info->flags,
5286 orig_bytes, 1);
Nikolay Borisov9a3daff2017-12-15 12:05:37 +02005287
5288 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG))
5289 dump_space_info(fs_info, block_rsv->space_info,
5290 orig_bytes, 0);
5291 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005292 return ret;
5293}
5294
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005295static struct btrfs_block_rsv *get_block_rsv(
5296 const struct btrfs_trans_handle *trans,
5297 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005298{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005299 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik4c13d752011-08-30 11:31:29 -04005300 struct btrfs_block_rsv *block_rsv = NULL;
5301
Alexandru Moisee9cf4392015-09-09 00:18:50 +00005302 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005303 (root == fs_info->csum_root && trans->adding_csums) ||
5304 (root == fs_info->uuid_root))
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02005305 block_rsv = trans->block_rsv;
5306
Josef Bacik4c13d752011-08-30 11:31:29 -04005307 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005308 block_rsv = root->block_rsv;
5309
5310 if (!block_rsv)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005311 block_rsv = &fs_info->empty_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005312
5313 return block_rsv;
5314}
5315
5316static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
5317 u64 num_bytes)
5318{
5319 int ret = -ENOSPC;
5320 spin_lock(&block_rsv->lock);
5321 if (block_rsv->reserved >= num_bytes) {
5322 block_rsv->reserved -= num_bytes;
5323 if (block_rsv->reserved < block_rsv->size)
5324 block_rsv->full = 0;
5325 ret = 0;
5326 }
5327 spin_unlock(&block_rsv->lock);
5328 return ret;
5329}
5330
5331static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08005332 u64 num_bytes, bool update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005333{
5334 spin_lock(&block_rsv->lock);
5335 block_rsv->reserved += num_bytes;
5336 if (update_size)
5337 block_rsv->size += num_bytes;
5338 else if (block_rsv->reserved >= block_rsv->size)
5339 block_rsv->full = 1;
5340 spin_unlock(&block_rsv->lock);
5341}
5342
Josef Bacikd52be812013-05-29 14:54:47 -04005343int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
5344 struct btrfs_block_rsv *dest, u64 num_bytes,
5345 int min_factor)
5346{
5347 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5348 u64 min_bytes;
5349
5350 if (global_rsv->space_info != dest->space_info)
5351 return -ENOSPC;
5352
5353 spin_lock(&global_rsv->lock);
5354 min_bytes = div_factor(global_rsv->size, min_factor);
5355 if (global_rsv->reserved < min_bytes + num_bytes) {
5356 spin_unlock(&global_rsv->lock);
5357 return -ENOSPC;
5358 }
5359 global_rsv->reserved -= num_bytes;
5360 if (global_rsv->reserved < global_rsv->size)
5361 global_rsv->full = 0;
5362 spin_unlock(&global_rsv->lock);
5363
Lu Fengqi3a584172018-08-04 21:10:55 +08005364 block_rsv_add_bytes(dest, num_bytes, true);
Josef Bacikd52be812013-05-29 14:54:47 -04005365 return 0;
5366}
5367
Josef Bacikba2c4d42018-12-03 10:20:33 -05005368/**
5369 * btrfs_migrate_to_delayed_refs_rsv - transfer bytes to our delayed refs rsv.
5370 * @fs_info - the fs info for our fs.
5371 * @src - the source block rsv to transfer from.
5372 * @num_bytes - the number of bytes to transfer.
5373 *
5374 * This transfers up to the num_bytes amount from the src rsv to the
5375 * delayed_refs_rsv. Any extra bytes are returned to the space info.
5376 */
5377void btrfs_migrate_to_delayed_refs_rsv(struct btrfs_fs_info *fs_info,
5378 struct btrfs_block_rsv *src,
5379 u64 num_bytes)
5380{
5381 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
5382 u64 to_free = 0;
5383
5384 spin_lock(&src->lock);
5385 src->reserved -= num_bytes;
5386 src->size -= num_bytes;
5387 spin_unlock(&src->lock);
5388
5389 spin_lock(&delayed_refs_rsv->lock);
5390 if (delayed_refs_rsv->size > delayed_refs_rsv->reserved) {
5391 u64 delta = delayed_refs_rsv->size -
5392 delayed_refs_rsv->reserved;
5393 if (num_bytes > delta) {
5394 to_free = num_bytes - delta;
5395 num_bytes = delta;
5396 }
5397 } else {
5398 to_free = num_bytes;
5399 num_bytes = 0;
5400 }
5401
5402 if (num_bytes)
5403 delayed_refs_rsv->reserved += num_bytes;
5404 if (delayed_refs_rsv->reserved >= delayed_refs_rsv->size)
5405 delayed_refs_rsv->full = 1;
5406 spin_unlock(&delayed_refs_rsv->lock);
5407
5408 if (num_bytes)
5409 trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
5410 0, num_bytes, 1);
5411 if (to_free)
5412 space_info_add_old_bytes(fs_info, delayed_refs_rsv->space_info,
5413 to_free);
5414}
5415
5416/**
5417 * btrfs_delayed_refs_rsv_refill - refill based on our delayed refs usage.
5418 * @fs_info - the fs_info for our fs.
5419 * @flush - control how we can flush for this reservation.
5420 *
5421 * This will refill the delayed block_rsv up to 1 items size worth of space and
5422 * will return -ENOSPC if we can't make the reservation.
5423 */
5424int btrfs_delayed_refs_rsv_refill(struct btrfs_fs_info *fs_info,
5425 enum btrfs_reserve_flush_enum flush)
5426{
5427 struct btrfs_block_rsv *block_rsv = &fs_info->delayed_refs_rsv;
5428 u64 limit = btrfs_calc_trans_metadata_size(fs_info, 1);
5429 u64 num_bytes = 0;
5430 int ret = -ENOSPC;
5431
5432 spin_lock(&block_rsv->lock);
5433 if (block_rsv->reserved < block_rsv->size) {
5434 num_bytes = block_rsv->size - block_rsv->reserved;
5435 num_bytes = min(num_bytes, limit);
5436 }
5437 spin_unlock(&block_rsv->lock);
5438
5439 if (!num_bytes)
5440 return 0;
5441
5442 ret = reserve_metadata_bytes(fs_info->extent_root, block_rsv,
5443 num_bytes, flush);
5444 if (ret)
5445 return ret;
5446 block_rsv_add_bytes(block_rsv, num_bytes, 0);
5447 trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
5448 0, num_bytes, 1);
5449 return 0;
5450}
5451
Josef Bacik957780e2016-05-17 13:30:55 -04005452/*
5453 * This is for space we already have accounted in space_info->bytes_may_use, so
5454 * basically when we're returning space from block_rsv's.
5455 */
5456static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
5457 struct btrfs_space_info *space_info,
5458 u64 num_bytes)
5459{
5460 struct reserve_ticket *ticket;
5461 struct list_head *head;
5462 u64 used;
5463 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH;
5464 bool check_overcommit = false;
5465
5466 spin_lock(&space_info->lock);
5467 head = &space_info->priority_tickets;
5468
5469 /*
5470 * If we are over our limit then we need to check and see if we can
5471 * overcommit, and if we can't then we just need to free up our space
5472 * and not satisfy any requests.
5473 */
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03005474 used = btrfs_space_info_used(space_info, true);
Josef Bacik957780e2016-05-17 13:30:55 -04005475 if (used - num_bytes >= space_info->total_bytes)
5476 check_overcommit = true;
5477again:
5478 while (!list_empty(head) && num_bytes) {
5479 ticket = list_first_entry(head, struct reserve_ticket,
5480 list);
5481 /*
5482 * We use 0 bytes because this space is already reserved, so
5483 * adding the ticket space would be a double count.
5484 */
5485 if (check_overcommit &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005486 !can_overcommit(fs_info, space_info, 0, flush, false))
Josef Bacik957780e2016-05-17 13:30:55 -04005487 break;
5488 if (num_bytes >= ticket->bytes) {
5489 list_del_init(&ticket->list);
5490 num_bytes -= ticket->bytes;
5491 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005492 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005493 wake_up(&ticket->wait);
5494 } else {
5495 ticket->bytes -= num_bytes;
5496 num_bytes = 0;
5497 }
5498 }
5499
5500 if (num_bytes && head == &space_info->priority_tickets) {
5501 head = &space_info->tickets;
5502 flush = BTRFS_RESERVE_FLUSH_ALL;
5503 goto again;
5504 }
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005505 update_bytes_may_use(space_info, -num_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005506 trace_btrfs_space_reservation(fs_info, "space_info",
5507 space_info->flags, num_bytes, 0);
5508 spin_unlock(&space_info->lock);
5509}
5510
5511/*
5512 * This is for newly allocated space that isn't accounted in
5513 * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent
5514 * we use this helper.
5515 */
5516static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
5517 struct btrfs_space_info *space_info,
5518 u64 num_bytes)
5519{
5520 struct reserve_ticket *ticket;
5521 struct list_head *head = &space_info->priority_tickets;
5522
5523again:
5524 while (!list_empty(head) && num_bytes) {
5525 ticket = list_first_entry(head, struct reserve_ticket,
5526 list);
5527 if (num_bytes >= ticket->bytes) {
5528 trace_btrfs_space_reservation(fs_info, "space_info",
5529 space_info->flags,
5530 ticket->bytes, 1);
5531 list_del_init(&ticket->list);
5532 num_bytes -= ticket->bytes;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005533 update_bytes_may_use(space_info, ticket->bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005534 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005535 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005536 wake_up(&ticket->wait);
5537 } else {
5538 trace_btrfs_space_reservation(fs_info, "space_info",
5539 space_info->flags,
5540 num_bytes, 1);
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005541 update_bytes_may_use(space_info, num_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005542 ticket->bytes -= num_bytes;
5543 num_bytes = 0;
5544 }
5545 }
5546
5547 if (num_bytes && head == &space_info->priority_tickets) {
5548 head = &space_info->tickets;
5549 goto again;
5550 }
5551}
5552
Josef Bacik69fe2d72017-10-19 14:15:57 -04005553static u64 block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005554 struct btrfs_block_rsv *block_rsv,
Qu Wenruoff6bc372017-12-21 13:42:04 +08005555 struct btrfs_block_rsv *dest, u64 num_bytes,
5556 u64 *qgroup_to_release_ret)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005557{
5558 struct btrfs_space_info *space_info = block_rsv->space_info;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005559 u64 qgroup_to_release = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005560 u64 ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005561
5562 spin_lock(&block_rsv->lock);
Qu Wenruoff6bc372017-12-21 13:42:04 +08005563 if (num_bytes == (u64)-1) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005564 num_bytes = block_rsv->size;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005565 qgroup_to_release = block_rsv->qgroup_rsv_size;
5566 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005567 block_rsv->size -= num_bytes;
5568 if (block_rsv->reserved >= block_rsv->size) {
5569 num_bytes = block_rsv->reserved - block_rsv->size;
5570 block_rsv->reserved = block_rsv->size;
5571 block_rsv->full = 1;
5572 } else {
5573 num_bytes = 0;
5574 }
Qu Wenruoff6bc372017-12-21 13:42:04 +08005575 if (block_rsv->qgroup_rsv_reserved >= block_rsv->qgroup_rsv_size) {
5576 qgroup_to_release = block_rsv->qgroup_rsv_reserved -
5577 block_rsv->qgroup_rsv_size;
5578 block_rsv->qgroup_rsv_reserved = block_rsv->qgroup_rsv_size;
5579 } else {
5580 qgroup_to_release = 0;
5581 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005582 spin_unlock(&block_rsv->lock);
5583
Josef Bacik69fe2d72017-10-19 14:15:57 -04005584 ret = num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005585 if (num_bytes > 0) {
5586 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00005587 spin_lock(&dest->lock);
5588 if (!dest->full) {
5589 u64 bytes_to_add;
5590
5591 bytes_to_add = dest->size - dest->reserved;
5592 bytes_to_add = min(num_bytes, bytes_to_add);
5593 dest->reserved += bytes_to_add;
5594 if (dest->reserved >= dest->size)
5595 dest->full = 1;
5596 num_bytes -= bytes_to_add;
5597 }
5598 spin_unlock(&dest->lock);
5599 }
Josef Bacik957780e2016-05-17 13:30:55 -04005600 if (num_bytes)
5601 space_info_add_old_bytes(fs_info, space_info,
5602 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005603 }
Qu Wenruoff6bc372017-12-21 13:42:04 +08005604 if (qgroup_to_release_ret)
5605 *qgroup_to_release_ret = qgroup_to_release;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005606 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005607}
5608
Josef Bacik25d609f2016-03-25 13:25:48 -04005609int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src,
5610 struct btrfs_block_rsv *dst, u64 num_bytes,
Lu Fengqi3a584172018-08-04 21:10:55 +08005611 bool update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005612{
5613 int ret;
5614
5615 ret = block_rsv_use_bytes(src, num_bytes);
5616 if (ret)
5617 return ret;
5618
Josef Bacik25d609f2016-03-25 13:25:48 -04005619 block_rsv_add_bytes(dst, num_bytes, update_size);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005620 return 0;
5621}
5622
Miao Xie66d8f3d2012-09-06 04:02:28 -06005623void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005624{
5625 memset(rsv, 0, sizeof(*rsv));
5626 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06005627 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005628}
5629
Josef Bacik69fe2d72017-10-19 14:15:57 -04005630void btrfs_init_metadata_block_rsv(struct btrfs_fs_info *fs_info,
5631 struct btrfs_block_rsv *rsv,
5632 unsigned short type)
5633{
5634 btrfs_init_block_rsv(rsv, type);
5635 rsv->space_info = __find_space_info(fs_info,
5636 BTRFS_BLOCK_GROUP_METADATA);
5637}
5638
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005639struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_fs_info *fs_info,
Miao Xie66d8f3d2012-09-06 04:02:28 -06005640 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005641{
5642 struct btrfs_block_rsv *block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005643
5644 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
5645 if (!block_rsv)
5646 return NULL;
5647
Josef Bacik69fe2d72017-10-19 14:15:57 -04005648 btrfs_init_metadata_block_rsv(fs_info, block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005649 return block_rsv;
5650}
5651
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005652void btrfs_free_block_rsv(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005653 struct btrfs_block_rsv *rsv)
5654{
Josef Bacik2aaa6652012-08-29 14:27:18 -04005655 if (!rsv)
5656 return;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005657 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Josef Bacikdabdb642011-08-08 12:50:18 -04005658 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005659}
5660
Miao Xie08e007d2012-10-16 11:33:38 +00005661int btrfs_block_rsv_add(struct btrfs_root *root,
5662 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
5663 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005664{
5665 int ret;
5666
5667 if (num_bytes == 0)
5668 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005669
Miao Xie61b520a2011-11-10 20:45:05 -05005670 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Lu Fengqi5a2cb252018-08-04 21:10:56 +08005671 if (!ret)
Lu Fengqi3a584172018-08-04 21:10:55 +08005672 block_rsv_add_bytes(block_rsv, num_bytes, true);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005673
Yan, Zhengf0486c62010-05-16 10:46:25 -04005674 return ret;
5675}
5676
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005677int btrfs_block_rsv_check(struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005678{
5679 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005680 int ret = -ENOSPC;
5681
5682 if (!block_rsv)
5683 return 0;
5684
5685 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04005686 num_bytes = div_factor(block_rsv->size, min_factor);
5687 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005688 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005689 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005690
Josef Bacik36ba0222011-10-18 12:15:48 -04005691 return ret;
5692}
5693
Miao Xie08e007d2012-10-16 11:33:38 +00005694int btrfs_block_rsv_refill(struct btrfs_root *root,
5695 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5696 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04005697{
5698 u64 num_bytes = 0;
5699 int ret = -ENOSPC;
5700
5701 if (!block_rsv)
5702 return 0;
5703
5704 spin_lock(&block_rsv->lock);
5705 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005706 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005707 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005708 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005709 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005710 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005711
Yan, Zhengf0486c62010-05-16 10:46:25 -04005712 if (!ret)
5713 return 0;
5714
Miao Xieaa38a712011-11-18 17:43:00 +08005715 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005716 if (!ret) {
Lu Fengqi3a584172018-08-04 21:10:55 +08005717 block_rsv_add_bytes(block_rsv, num_bytes, false);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005718 return 0;
5719 }
5720
Josef Bacik13553e52011-08-08 13:33:21 -04005721 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005722}
5723
Josef Bacikba2c4d42018-12-03 10:20:33 -05005724static u64 __btrfs_block_rsv_release(struct btrfs_fs_info *fs_info,
5725 struct btrfs_block_rsv *block_rsv,
5726 u64 num_bytes, u64 *qgroup_to_release)
5727{
5728 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5729 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_refs_rsv;
5730 struct btrfs_block_rsv *target = delayed_rsv;
5731
5732 if (target->full || target == block_rsv)
5733 target = global_rsv;
5734
5735 if (block_rsv->space_info != target->space_info)
5736 target = NULL;
5737
5738 return block_rsv_release_bytes(fs_info, block_rsv, target, num_bytes,
5739 qgroup_to_release);
5740}
5741
5742void btrfs_block_rsv_release(struct btrfs_fs_info *fs_info,
5743 struct btrfs_block_rsv *block_rsv,
5744 u64 num_bytes)
5745{
5746 __btrfs_block_rsv_release(fs_info, block_rsv, num_bytes, NULL);
5747}
5748
Josef Bacik69fe2d72017-10-19 14:15:57 -04005749/**
5750 * btrfs_inode_rsv_release - release any excessive reservation.
5751 * @inode - the inode we need to release from.
Qu Wenruo43b18592017-12-12 15:34:32 +08005752 * @qgroup_free - free or convert qgroup meta.
5753 * Unlike normal operation, qgroup meta reservation needs to know if we are
5754 * freeing qgroup reservation or just converting it into per-trans. Normally
5755 * @qgroup_free is true for error handling, and false for normal release.
Josef Bacik69fe2d72017-10-19 14:15:57 -04005756 *
5757 * This is the same as btrfs_block_rsv_release, except that it handles the
5758 * tracepoint for the reservation.
5759 */
Qu Wenruo43b18592017-12-12 15:34:32 +08005760static void btrfs_inode_rsv_release(struct btrfs_inode *inode, bool qgroup_free)
Josef Bacik69fe2d72017-10-19 14:15:57 -04005761{
5762 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005763 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
5764 u64 released = 0;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005765 u64 qgroup_to_release = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005766
5767 /*
5768 * Since we statically set the block_rsv->size we just want to say we
5769 * are releasing 0 bytes, and then we'll just get the reservation over
5770 * the size free'd.
5771 */
Josef Bacikba2c4d42018-12-03 10:20:33 -05005772 released = __btrfs_block_rsv_release(fs_info, block_rsv, 0,
5773 &qgroup_to_release);
Josef Bacik69fe2d72017-10-19 14:15:57 -04005774 if (released > 0)
5775 trace_btrfs_space_reservation(fs_info, "delalloc",
5776 btrfs_ino(inode), released, 0);
Qu Wenruo43b18592017-12-12 15:34:32 +08005777 if (qgroup_free)
Qu Wenruoff6bc372017-12-21 13:42:04 +08005778 btrfs_qgroup_free_meta_prealloc(inode->root, qgroup_to_release);
Qu Wenruo43b18592017-12-12 15:34:32 +08005779 else
Qu Wenruoff6bc372017-12-21 13:42:04 +08005780 btrfs_qgroup_convert_reserved_meta(inode->root,
5781 qgroup_to_release);
Josef Bacik69fe2d72017-10-19 14:15:57 -04005782}
5783
Josef Bacikba2c4d42018-12-03 10:20:33 -05005784/**
5785 * btrfs_delayed_refs_rsv_release - release a ref head's reservation.
5786 * @fs_info - the fs_info for our fs.
5787 * @nr - the number of items to drop.
5788 *
5789 * This drops the delayed ref head's count from the delayed refs rsv and frees
5790 * any excess reservation we had.
5791 */
5792void btrfs_delayed_refs_rsv_release(struct btrfs_fs_info *fs_info, int nr)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005793{
Josef Bacikba2c4d42018-12-03 10:20:33 -05005794 struct btrfs_block_rsv *block_rsv = &fs_info->delayed_refs_rsv;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005795 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikba2c4d42018-12-03 10:20:33 -05005796 u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, nr);
5797 u64 released = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005798
Josef Bacikba2c4d42018-12-03 10:20:33 -05005799 released = block_rsv_release_bytes(fs_info, block_rsv, global_rsv,
5800 num_bytes, NULL);
5801 if (released)
5802 trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
5803 0, released, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005804}
5805
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005806static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5807{
5808 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5809 struct btrfs_space_info *sinfo = block_rsv->space_info;
5810 u64 num_bytes;
5811
Josef Bacikae2e4722016-05-27 12:58:35 -04005812 /*
5813 * The global block rsv is based on the size of the extent tree, the
5814 * checksum tree and the root tree. If the fs is empty we want to set
5815 * it to a minimal amount for safety.
5816 */
5817 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) +
5818 btrfs_root_used(&fs_info->csum_root->root_item) +
5819 btrfs_root_used(&fs_info->tree_root->root_item);
5820 num_bytes = max_t(u64, num_bytes, SZ_16M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005821
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005822 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005823 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005824
Byongho Leeee221842015-12-15 01:42:10 +09005825 block_rsv->size = min_t(u64, num_bytes, SZ_512M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005826
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005827 if (block_rsv->reserved < block_rsv->size) {
Liu Bo41361352017-02-13 15:42:21 -08005828 num_bytes = btrfs_space_info_used(sinfo, true);
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005829 if (sinfo->total_bytes > num_bytes) {
5830 num_bytes = sinfo->total_bytes - num_bytes;
5831 num_bytes = min(num_bytes,
5832 block_rsv->size - block_rsv->reserved);
5833 block_rsv->reserved += num_bytes;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005834 update_bytes_may_use(sinfo, num_bytes);
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005835 trace_btrfs_space_reservation(fs_info, "space_info",
5836 sinfo->flags, num_bytes,
5837 1);
5838 }
5839 } else if (block_rsv->reserved > block_rsv->size) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005840 num_bytes = block_rsv->reserved - block_rsv->size;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005841 update_bytes_may_use(sinfo, -num_bytes);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005842 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005843 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005844 block_rsv->reserved = block_rsv->size;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005845 }
David Sterba182608c2011-05-05 13:13:16 +02005846
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005847 if (block_rsv->reserved == block_rsv->size)
5848 block_rsv->full = 1;
5849 else
5850 block_rsv->full = 0;
5851
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005852 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005853 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005854}
5855
Yan, Zhengf0486c62010-05-16 10:46:25 -04005856static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5857{
5858 struct btrfs_space_info *space_info;
5859
5860 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5861 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005862
5863 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005864 fs_info->global_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005865 fs_info->trans_block_rsv.space_info = space_info;
5866 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005867 fs_info->delayed_block_rsv.space_info = space_info;
Josef Bacikba2c4d42018-12-03 10:20:33 -05005868 fs_info->delayed_refs_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005869
Josef Bacikba2c4d42018-12-03 10:20:33 -05005870 fs_info->extent_root->block_rsv = &fs_info->delayed_refs_rsv;
5871 fs_info->csum_root->block_rsv = &fs_info->delayed_refs_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005872 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5873 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005874 if (fs_info->quota_root)
5875 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005876 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005877
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005878 update_global_block_rsv(fs_info);
5879}
5880
5881static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5882{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005883 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
Qu Wenruoff6bc372017-12-21 13:42:04 +08005884 (u64)-1, NULL);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005885 WARN_ON(fs_info->trans_block_rsv.size > 0);
5886 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5887 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5888 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04005889 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5890 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikba2c4d42018-12-03 10:20:33 -05005891 WARN_ON(fs_info->delayed_refs_rsv.reserved > 0);
5892 WARN_ON(fs_info->delayed_refs_rsv.size > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04005893}
5894
Josef Bacikba2c4d42018-12-03 10:20:33 -05005895/*
5896 * btrfs_update_delayed_refs_rsv - adjust the size of the delayed refs rsv
5897 * @trans - the trans that may have generated delayed refs
5898 *
5899 * This is to be called anytime we may have adjusted trans->delayed_ref_updates,
5900 * it'll calculate the additional size and add it to the delayed_refs_rsv.
5901 */
5902void btrfs_update_delayed_refs_rsv(struct btrfs_trans_handle *trans)
5903{
5904 struct btrfs_fs_info *fs_info = trans->fs_info;
5905 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_refs_rsv;
5906 u64 num_bytes;
5907
5908 if (!trans->delayed_ref_updates)
5909 return;
5910
5911 num_bytes = btrfs_calc_trans_metadata_size(fs_info,
5912 trans->delayed_ref_updates);
5913 spin_lock(&delayed_rsv->lock);
5914 delayed_rsv->size += num_bytes;
5915 delayed_rsv->full = 0;
5916 spin_unlock(&delayed_rsv->lock);
5917 trans->delayed_ref_updates = 0;
5918}
Yan, Zhenga22285a2010-05-16 10:48:46 -04005919
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005920/*
5921 * To be called after all the new block groups attached to the transaction
5922 * handle have been created (btrfs_create_pending_block_groups()).
5923 */
5924void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5925{
Jeff Mahoney64b63582016-06-20 17:23:41 -04005926 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005927
5928 if (!trans->chunk_bytes_reserved)
5929 return;
5930
5931 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5932
5933 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
Qu Wenruoff6bc372017-12-21 13:42:04 +08005934 trans->chunk_bytes_reserved, NULL);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005935 trans->chunk_bytes_reserved = 0;
5936}
5937
Miao Xied5c12072013-02-28 10:04:33 +00005938/*
5939 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
5940 * root: the root of the parent directory
5941 * rsv: block reservation
5942 * items: the number of items that we need do reservation
Lu Fengqia5b7f422018-08-09 09:46:04 +08005943 * use_global_rsv: allow fallback to the global block reservation
Miao Xied5c12072013-02-28 10:04:33 +00005944 *
5945 * This function is used to reserve the space for snapshot/subvolume
5946 * creation and deletion. Those operations are different with the
5947 * common file/directory operations, they change two fs/file trees
5948 * and root tree, the number of items that the qgroup reserves is
5949 * different with the free space reservation. So we can not use
Nicholas D Steeves01327612016-05-19 21:18:45 -04005950 * the space reservation mechanism in start_transaction().
Miao Xied5c12072013-02-28 10:04:33 +00005951 */
5952int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
Lu Fengqia5b7f422018-08-09 09:46:04 +08005953 struct btrfs_block_rsv *rsv, int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005954 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005955{
Lu Fengqia5b7f422018-08-09 09:46:04 +08005956 u64 qgroup_num_bytes = 0;
Miao Xied5c12072013-02-28 10:04:33 +00005957 u64 num_bytes;
5958 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005959 struct btrfs_fs_info *fs_info = root->fs_info;
5960 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005961
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005962 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
Miao Xied5c12072013-02-28 10:04:33 +00005963 /* One for parent inode, two for dir entries */
Lu Fengqia5b7f422018-08-09 09:46:04 +08005964 qgroup_num_bytes = 3 * fs_info->nodesize;
5965 ret = btrfs_qgroup_reserve_meta_prealloc(root,
5966 qgroup_num_bytes, true);
Miao Xied5c12072013-02-28 10:04:33 +00005967 if (ret)
5968 return ret;
Miao Xied5c12072013-02-28 10:04:33 +00005969 }
5970
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005971 num_bytes = btrfs_calc_trans_metadata_size(fs_info, items);
5972 rsv->space_info = __find_space_info(fs_info,
Miao Xied5c12072013-02-28 10:04:33 +00005973 BTRFS_BLOCK_GROUP_METADATA);
5974 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5975 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005976
5977 if (ret == -ENOSPC && use_global_rsv)
Lu Fengqi3a584172018-08-04 21:10:55 +08005978 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, true);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005979
Lu Fengqia5b7f422018-08-09 09:46:04 +08005980 if (ret && qgroup_num_bytes)
5981 btrfs_qgroup_free_meta_prealloc(root, qgroup_num_bytes);
Miao Xied5c12072013-02-28 10:04:33 +00005982
5983 return ret;
5984}
5985
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005986void btrfs_subvolume_release_metadata(struct btrfs_fs_info *fs_info,
David Sterba7775c812017-02-10 19:18:18 +01005987 struct btrfs_block_rsv *rsv)
Miao Xied5c12072013-02-28 10:04:33 +00005988{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005989 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005990}
5991
Josef Bacik69fe2d72017-10-19 14:15:57 -04005992static void btrfs_calculate_inode_block_rsv_size(struct btrfs_fs_info *fs_info,
5993 struct btrfs_inode *inode)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005994{
Josef Bacik69fe2d72017-10-19 14:15:57 -04005995 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
5996 u64 reserve_size = 0;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005997 u64 qgroup_rsv_size = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005998 u64 csum_leaves;
5999 unsigned outstanding_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006000
Josef Bacik69fe2d72017-10-19 14:15:57 -04006001 lockdep_assert_held(&inode->lock);
6002 outstanding_extents = inode->outstanding_extents;
6003 if (outstanding_extents)
6004 reserve_size = btrfs_calc_trans_metadata_size(fs_info,
6005 outstanding_extents + 1);
6006 csum_leaves = btrfs_csum_bytes_to_leaves(fs_info,
6007 inode->csum_bytes);
6008 reserve_size += btrfs_calc_trans_metadata_size(fs_info,
6009 csum_leaves);
Qu Wenruoff6bc372017-12-21 13:42:04 +08006010 /*
6011 * For qgroup rsv, the calculation is very simple:
6012 * account one nodesize for each outstanding extent
6013 *
6014 * This is overestimating in most cases.
6015 */
Nikolay Borisov139a5612019-03-18 17:45:20 +02006016 qgroup_rsv_size = (u64)outstanding_extents * fs_info->nodesize;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006017
Josef Bacik69fe2d72017-10-19 14:15:57 -04006018 spin_lock(&block_rsv->lock);
6019 block_rsv->size = reserve_size;
Qu Wenruoff6bc372017-12-21 13:42:04 +08006020 block_rsv->qgroup_rsv_size = qgroup_rsv_size;
Josef Bacik69fe2d72017-10-19 14:15:57 -04006021 spin_unlock(&block_rsv->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006022}
6023
Josef Bacikc8eaeac72019-04-10 15:56:10 -04006024static void calc_inode_reservations(struct btrfs_fs_info *fs_info,
6025 u64 num_bytes, u64 *meta_reserve,
6026 u64 *qgroup_reserve)
6027{
6028 u64 nr_extents = count_max_extents(num_bytes);
6029 u64 csum_leaves = btrfs_csum_bytes_to_leaves(fs_info, num_bytes);
6030
6031 /* We add one for the inode update at finish ordered time */
6032 *meta_reserve = btrfs_calc_trans_metadata_size(fs_info,
6033 nr_extents + csum_leaves + 1);
6034 *qgroup_reserve = nr_extents * fs_info->nodesize;
6035}
6036
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006037int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006038{
Josef Bacikc8eaeac72019-04-10 15:56:10 -04006039 struct btrfs_root *root = inode->root;
6040 struct btrfs_fs_info *fs_info = root->fs_info;
6041 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
6042 u64 meta_reserve, qgroup_reserve;
Josef Bacik69fe2d72017-10-19 14:15:57 -04006043 unsigned nr_extents;
Miao Xie08e007d2012-10-16 11:33:38 +00006044 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07006045 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006046 bool delalloc_lock = true;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006047
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006048 /* If we are a free space inode we need to not flush since we will be in
6049 * the middle of a transaction commit. We also don't need the delalloc
6050 * mutex since we won't race with anybody. We need this mostly to make
6051 * lockdep shut its filthy mouth.
Josef Bacikbac357dc2016-07-20 16:48:45 -07006052 *
6053 * If we have a transaction open (can happen if we call truncate_block
6054 * from truncate), then we need FLUSH_LIMIT so we don't deadlock.
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006055 */
6056 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00006057 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006058 delalloc_lock = false;
Nikolay Borisovda07d4a2018-01-12 16:21:05 +02006059 } else {
6060 if (current->journal_info)
6061 flush = BTRFS_RESERVE_FLUSH_LIMIT;
Josef Bacikc09544e2011-08-30 10:19:10 -04006062
Nikolay Borisovda07d4a2018-01-12 16:21:05 +02006063 if (btrfs_transaction_in_commit(fs_info))
6064 schedule_timeout(1);
6065 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006066
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006067 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006068 mutex_lock(&inode->delalloc_mutex);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006069
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006070 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006071
Josef Bacikc8eaeac72019-04-10 15:56:10 -04006072 /*
6073 * We always want to do it this way, every other way is wrong and ends
6074 * in tears. Pre-reserving the amount we are going to add will always
6075 * be the right way, because otherwise if we have enough parallelism we
6076 * could end up with thousands of inodes all holding little bits of
6077 * reservations they were able to make previously and the only way to
6078 * reclaim that space is to ENOSPC out the operations and clear
6079 * everything out and try again, which is bad. This way we just
6080 * over-reserve slightly, and clean up the mess when we are done.
6081 */
6082 calc_inode_reservations(fs_info, num_bytes, &meta_reserve,
6083 &qgroup_reserve);
6084 ret = btrfs_qgroup_reserve_meta_prealloc(root, qgroup_reserve, true);
6085 if (ret)
6086 goto out_fail;
6087 ret = reserve_metadata_bytes(root, block_rsv, meta_reserve, flush);
6088 if (ret)
6089 goto out_qgroup;
6090
6091 /*
6092 * Now we need to update our outstanding extents and csum bytes _first_
6093 * and then add the reservation to the block_rsv. This keeps us from
6094 * racing with an ordered completion or some such that would think it
6095 * needs to free the reservation we just made.
6096 */
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006097 spin_lock(&inode->lock);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006098 nr_extents = count_max_extents(num_bytes);
Josef Bacik8b62f872017-10-19 14:15:55 -04006099 btrfs_mod_outstanding_extents(inode, nr_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006100 inode->csum_bytes += num_bytes;
6101 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006102 spin_unlock(&inode->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05006103
Josef Bacikc8eaeac72019-04-10 15:56:10 -04006104 /* Now we can safely add our space to our block rsv */
6105 block_rsv_add_bytes(block_rsv, meta_reserve, false);
6106 trace_btrfs_space_reservation(root->fs_info, "delalloc",
6107 btrfs_ino(inode), meta_reserve, 1);
6108
6109 spin_lock(&block_rsv->lock);
6110 block_rsv->qgroup_rsv_reserved += qgroup_reserve;
6111 spin_unlock(&block_rsv->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006112
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006113 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006114 mutex_unlock(&inode->delalloc_mutex);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006115 return 0;
Josef Bacikc8eaeac72019-04-10 15:56:10 -04006116out_qgroup:
6117 btrfs_qgroup_free_meta_prealloc(root, qgroup_reserve);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006118out_fail:
Qu Wenruo43b18592017-12-12 15:34:32 +08006119 btrfs_inode_rsv_release(inode, true);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006120 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006121 mutex_unlock(&inode->delalloc_mutex);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006122 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006123}
6124
Josef Bacik7709cde2011-08-04 10:25:02 -04006125/**
6126 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
Josef Bacik8b62f872017-10-19 14:15:55 -04006127 * @inode: the inode to release the reservation for.
6128 * @num_bytes: the number of bytes we are releasing.
Qu Wenruo43b18592017-12-12 15:34:32 +08006129 * @qgroup_free: free qgroup reservation or convert it to per-trans reservation
Josef Bacik7709cde2011-08-04 10:25:02 -04006130 *
6131 * This will release the metadata reservation for an inode. This can be called
6132 * once we complete IO for a given set of bytes to release their metadata
Josef Bacik8b62f872017-10-19 14:15:55 -04006133 * reservations, or on error for the same reason.
Josef Bacik7709cde2011-08-04 10:25:02 -04006134 */
Qu Wenruo43b18592017-12-12 15:34:32 +08006135void btrfs_delalloc_release_metadata(struct btrfs_inode *inode, u64 num_bytes,
6136 bool qgroup_free)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006137{
David Sterba3ffbd682018-06-29 10:56:42 +02006138 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006139
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006140 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006141 spin_lock(&inode->lock);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006142 inode->csum_bytes -= num_bytes;
6143 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006144 spin_unlock(&inode->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006145
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006146 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04006147 return;
6148
Qu Wenruo43b18592017-12-12 15:34:32 +08006149 btrfs_inode_rsv_release(inode, qgroup_free);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006150}
6151
Josef Bacik7709cde2011-08-04 10:25:02 -04006152/**
Josef Bacik8b62f872017-10-19 14:15:55 -04006153 * btrfs_delalloc_release_extents - release our outstanding_extents
6154 * @inode: the inode to balance the reservation for.
6155 * @num_bytes: the number of bytes we originally reserved with
Qu Wenruo43b18592017-12-12 15:34:32 +08006156 * @qgroup_free: do we need to free qgroup meta reservation or convert them.
Josef Bacik8b62f872017-10-19 14:15:55 -04006157 *
6158 * When we reserve space we increase outstanding_extents for the extents we may
6159 * add. Once we've set the range as delalloc or created our ordered extents we
6160 * have outstanding_extents to track the real usage, so we use this to free our
6161 * temporarily tracked outstanding_extents. This _must_ be used in conjunction
6162 * with btrfs_delalloc_reserve_metadata.
6163 */
Qu Wenruo43b18592017-12-12 15:34:32 +08006164void btrfs_delalloc_release_extents(struct btrfs_inode *inode, u64 num_bytes,
6165 bool qgroup_free)
Josef Bacik8b62f872017-10-19 14:15:55 -04006166{
David Sterba3ffbd682018-06-29 10:56:42 +02006167 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Josef Bacik8b62f872017-10-19 14:15:55 -04006168 unsigned num_extents;
Josef Bacik8b62f872017-10-19 14:15:55 -04006169
6170 spin_lock(&inode->lock);
6171 num_extents = count_max_extents(num_bytes);
6172 btrfs_mod_outstanding_extents(inode, -num_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006173 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Josef Bacik8b62f872017-10-19 14:15:55 -04006174 spin_unlock(&inode->lock);
6175
Josef Bacik8b62f872017-10-19 14:15:55 -04006176 if (btrfs_is_testing(fs_info))
6177 return;
6178
Qu Wenruo43b18592017-12-12 15:34:32 +08006179 btrfs_inode_rsv_release(inode, qgroup_free);
Josef Bacik8b62f872017-10-19 14:15:55 -04006180}
6181
6182/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006183 * btrfs_delalloc_reserve_space - reserve data and metadata space for
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006184 * delalloc
6185 * @inode: inode we're writing to
6186 * @start: start range we are writing to
6187 * @len: how long the range we are writing to
Qu Wenruo364ecf32017-02-27 15:10:38 +08006188 * @reserved: mandatory parameter, record actually reserved qgroup ranges of
6189 * current reservation.
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006190 *
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006191 * This will do the following things
6192 *
6193 * o reserve space in data space info for num bytes
6194 * and reserve precious corresponding qgroup space
6195 * (Done in check_data_free_space)
6196 *
6197 * o reserve space for metadata space, based on the number of outstanding
6198 * extents and how much csums will be needed
6199 * also reserve metadata space in a per root over-reserve method.
6200 * o add to the inodes->delalloc_bytes
6201 * o add it to the fs_info's delalloc inodes list.
6202 * (Above 3 all done in delalloc_reserve_metadata)
6203 *
6204 * Return 0 for success
6205 * Return <0 for error(-ENOSPC or -EQUOT)
6206 */
Qu Wenruo364ecf32017-02-27 15:10:38 +08006207int btrfs_delalloc_reserve_space(struct inode *inode,
6208 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006209{
6210 int ret;
6211
Qu Wenruo364ecf32017-02-27 15:10:38 +08006212 ret = btrfs_check_data_free_space(inode, reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006213 if (ret < 0)
6214 return ret;
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006215 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode), len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006216 if (ret < 0)
Qu Wenruobc42bda2017-02-27 15:10:39 +08006217 btrfs_free_reserved_data_space(inode, *reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006218 return ret;
6219}
6220
6221/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006222 * btrfs_delalloc_release_space - release data and metadata space for delalloc
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006223 * @inode: inode we're releasing space for
6224 * @start: start position of the space already reserved
6225 * @len: the len of the space already reserved
Josef Bacik8b62f872017-10-19 14:15:55 -04006226 * @release_bytes: the len of the space we consumed or didn't use
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006227 *
6228 * This function will release the metadata space that was not used and will
6229 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
6230 * list if there are no delalloc bytes left.
6231 * Also it will handle the qgroup reserved space.
6232 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08006233void btrfs_delalloc_release_space(struct inode *inode,
Josef Bacik8b62f872017-10-19 14:15:55 -04006234 struct extent_changeset *reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08006235 u64 start, u64 len, bool qgroup_free)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006236{
Qu Wenruo43b18592017-12-12 15:34:32 +08006237 btrfs_delalloc_release_metadata(BTRFS_I(inode), len, qgroup_free);
Qu Wenruobc42bda2017-02-27 15:10:39 +08006238 btrfs_free_reserved_data_space(inode, reserved, start, len);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006239}
6240
Josef Bacikce93ec52014-11-17 15:45:48 -05006241static int update_block_group(struct btrfs_trans_handle *trans,
David Sterba6b279402019-03-20 12:10:15 +01006242 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04006243{
David Sterba6b279402019-03-20 12:10:15 +01006244 struct btrfs_fs_info *info = trans->fs_info;
Josef Bacik0af3d002010-06-21 14:48:16 -04006245 struct btrfs_block_group_cache *cache = NULL;
Chris Masondb945352007-10-15 16:15:53 -04006246 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006247 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04006248 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04006249 int factor;
Josef Bacikba2c4d42018-12-03 10:20:33 -05006250 int ret = 0;
Chris Mason3e1ad542007-05-07 20:03:49 -04006251
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006252 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00006253 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02006254 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006255 if (alloc)
6256 old_val += num_bytes;
6257 else
6258 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02006259 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00006260 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006261
Chris Masond3977122009-01-05 21:25:51 -05006262 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04006263 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikba2c4d42018-12-03 10:20:33 -05006264 if (!cache) {
6265 ret = -ENOENT;
6266 break;
6267 }
David Sterba46df06b2018-07-13 20:46:30 +02006268 factor = btrfs_bg_type_to_factor(cache->flags);
6269
Josef Bacik9d66e232010-08-25 16:54:15 -04006270 /*
6271 * If this block group has free space cache written out, we
6272 * need to make sure to load it if we are removing space. This
6273 * is because we need the unpinning stage to actually add the
6274 * space back to the block group, otherwise we will leak space.
6275 */
6276 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00006277 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04006278
Chris Masondb945352007-10-15 16:15:53 -04006279 byte_in_group = bytenr - cache->key.objectid;
6280 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04006281
Josef Bacik25179202008-10-29 14:49:05 -04006282 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04006283 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04006284
Jeff Mahoney6202df62016-06-22 18:54:22 -04006285 if (btrfs_test_opt(info, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04006286 cache->disk_cache_state < BTRFS_DC_CLEAR)
6287 cache->disk_cache_state = BTRFS_DC_CLEAR;
6288
Chris Mason9078a3e2007-04-26 16:46:15 -04006289 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04006290 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04006291 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04006292 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006293 btrfs_set_block_group_used(&cache->item, old_val);
6294 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006295 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb822010-05-16 10:46:24 -04006296 cache->space_info->bytes_used += num_bytes;
6297 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04006298 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006299 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04006300 } else {
Chris Masondb945352007-10-15 16:15:53 -04006301 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00006302 btrfs_set_block_group_used(&cache->item, old_val);
6303 cache->pinned += num_bytes;
Lu Fengqie2907c12018-10-24 20:24:02 +08006304 update_bytes_pinned(cache->space_info, num_bytes);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006305 cache->space_info->bytes_used -= num_bytes;
6306 cache->space_info->disk_used -= num_bytes * factor;
6307 spin_unlock(&cache->lock);
6308 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04006309
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006310 trace_btrfs_space_reservation(info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006311 cache->space_info->flags,
6312 num_bytes, 1);
Ethan Liendec59fa2018-07-13 16:50:42 +08006313 percpu_counter_add_batch(&cache->space_info->total_bytes_pinned,
6314 num_bytes,
6315 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006316 set_extent_dirty(info->pinned_extents,
6317 bytenr, bytenr + num_bytes - 1,
6318 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04006319 }
Chris Mason1bbc6212015-04-06 12:46:08 -07006320
6321 spin_lock(&trans->transaction->dirty_bgs_lock);
6322 if (list_empty(&cache->dirty_list)) {
6323 list_add_tail(&cache->dirty_list,
6324 &trans->transaction->dirty_bgs);
Josef Bacikba2c4d42018-12-03 10:20:33 -05006325 trans->delayed_ref_updates++;
Chris Mason1bbc6212015-04-06 12:46:08 -07006326 btrfs_get_block_group(cache);
6327 }
6328 spin_unlock(&trans->transaction->dirty_bgs_lock);
6329
Filipe Manana036a9342015-11-23 15:25:16 +00006330 /*
6331 * No longer have used bytes in this block group, queue it for
6332 * deletion. We do this after adding the block group to the
6333 * dirty list to avoid races between cleaner kthread and space
6334 * cache writeout.
6335 */
Qu Wenruo031f24d2018-05-22 16:43:47 +08006336 if (!alloc && old_val == 0)
6337 btrfs_mark_bg_unused(cache);
Filipe Manana036a9342015-11-23 15:25:16 +00006338
Chris Masonfa9c0d792009-04-03 09:47:43 -04006339 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04006340 total -= num_bytes;
6341 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006342 }
Josef Bacikba2c4d42018-12-03 10:20:33 -05006343
6344 /* Modified block groups are accounted for in the delayed_refs_rsv. */
6345 btrfs_update_delayed_refs_rsv(trans);
6346 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04006347}
Chris Mason6324fbf2008-03-24 15:01:59 -04006348
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006349static u64 first_logical_byte(struct btrfs_fs_info *fs_info, u64 search_start)
Chris Masona061fc82008-05-07 11:43:44 -04006350{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006351 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05006352 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006353
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006354 spin_lock(&fs_info->block_group_cache_lock);
6355 bytenr = fs_info->first_logical_byte;
6356 spin_unlock(&fs_info->block_group_cache_lock);
Liu Boa1897fd2012-12-27 09:01:23 +00006357
6358 if (bytenr < (u64)-1)
6359 return bytenr;
6360
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006361 cache = btrfs_lookup_first_block_group(fs_info, search_start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006362 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04006363 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006364
Yan Zhengd2fb3432008-12-11 16:30:39 -05006365 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006366 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05006367
6368 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04006369}
6370
David Sterbafdf08602019-03-20 12:12:32 +01006371static int pin_down_extent(struct btrfs_block_group_cache *cache,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006372 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05006373{
David Sterbafdf08602019-03-20 12:12:32 +01006374 struct btrfs_fs_info *fs_info = cache->fs_info;
6375
Yan Zheng11833d62009-09-11 16:11:19 -04006376 spin_lock(&cache->space_info->lock);
6377 spin_lock(&cache->lock);
6378 cache->pinned += num_bytes;
Lu Fengqie2907c12018-10-24 20:24:02 +08006379 update_bytes_pinned(cache->space_info, num_bytes);
Yan Zheng11833d62009-09-11 16:11:19 -04006380 if (reserved) {
6381 cache->reserved -= num_bytes;
6382 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05006383 }
Yan Zheng11833d62009-09-11 16:11:19 -04006384 spin_unlock(&cache->lock);
6385 spin_unlock(&cache->space_info->lock);
6386
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006387 trace_btrfs_space_reservation(fs_info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006388 cache->space_info->flags, num_bytes, 1);
Ethan Liendec59fa2018-07-13 16:50:42 +08006389 percpu_counter_add_batch(&cache->space_info->total_bytes_pinned,
6390 num_bytes, BTRFS_TOTAL_BYTES_PINNED_BATCH);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006391 set_extent_dirty(fs_info->pinned_extents, bytenr,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006392 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05006393 return 0;
6394}
Chris Mason9078a3e2007-04-26 16:46:15 -04006395
Yan, Zhengf0486c62010-05-16 10:46:25 -04006396/*
6397 * this function must be called within transaction
6398 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006399int btrfs_pin_extent(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006400 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04006401{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006402 struct btrfs_block_group_cache *cache;
6403
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006404 cache = btrfs_lookup_block_group(fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006405 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006406
David Sterbafdf08602019-03-20 12:12:32 +01006407 pin_down_extent(cache, bytenr, num_bytes, reserved);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006408
6409 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04006410 return 0;
6411}
Zheng Yane8569812008-09-26 10:05:48 -04006412
Yan, Zhengf0486c62010-05-16 10:46:25 -04006413/*
Chris Masone688b7252011-10-31 20:52:39 -04006414 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04006415 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006416int btrfs_pin_extent_for_log_replay(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04006417 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006418{
Chris Masone688b7252011-10-31 20:52:39 -04006419 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04006420 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04006421
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006422 cache = btrfs_lookup_block_group(fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006423 if (!cache)
6424 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04006425
6426 /*
6427 * pull in the free space cache (if any) so that our pin
6428 * removes the free space from the cache. We have load_only set
6429 * to one because the slow code to read in the free extents does check
6430 * the pinned extents.
6431 */
Liu Bof6373bf2012-12-27 09:01:18 +00006432 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04006433
David Sterbafdf08602019-03-20 12:12:32 +01006434 pin_down_extent(cache, bytenr, num_bytes, 0);
Chris Masone688b7252011-10-31 20:52:39 -04006435
6436 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04006437 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04006438 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006439 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04006440}
6441
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006442static int __exclude_logged_extent(struct btrfs_fs_info *fs_info,
6443 u64 start, u64 num_bytes)
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006444{
6445 int ret;
6446 struct btrfs_block_group_cache *block_group;
6447 struct btrfs_caching_control *caching_ctl;
6448
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006449 block_group = btrfs_lookup_block_group(fs_info, start);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006450 if (!block_group)
6451 return -EINVAL;
6452
6453 cache_block_group(block_group, 0);
6454 caching_ctl = get_caching_control(block_group);
6455
6456 if (!caching_ctl) {
6457 /* Logic error */
6458 BUG_ON(!block_group_cache_done(block_group));
6459 ret = btrfs_remove_free_space(block_group, start, num_bytes);
6460 } else {
6461 mutex_lock(&caching_ctl->mutex);
6462
6463 if (start >= caching_ctl->progress) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006464 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006465 } else if (start + num_bytes <= caching_ctl->progress) {
6466 ret = btrfs_remove_free_space(block_group,
6467 start, num_bytes);
6468 } else {
6469 num_bytes = caching_ctl->progress - start;
6470 ret = btrfs_remove_free_space(block_group,
6471 start, num_bytes);
6472 if (ret)
6473 goto out_lock;
6474
6475 num_bytes = (start + num_bytes) -
6476 caching_ctl->progress;
6477 start = caching_ctl->progress;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006478 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006479 }
6480out_lock:
6481 mutex_unlock(&caching_ctl->mutex);
6482 put_caching_control(caching_ctl);
6483 }
6484 btrfs_put_block_group(block_group);
6485 return ret;
6486}
6487
David Sterbabcdc4282019-03-20 12:14:33 +01006488int btrfs_exclude_logged_extents(struct extent_buffer *eb)
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006489{
David Sterbabcdc4282019-03-20 12:14:33 +01006490 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006491 struct btrfs_file_extent_item *item;
6492 struct btrfs_key key;
6493 int found_type;
6494 int i;
Gu Jinxiangb89311e2018-05-22 17:46:51 +08006495 int ret = 0;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006496
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006497 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS))
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006498 return 0;
6499
6500 for (i = 0; i < btrfs_header_nritems(eb); i++) {
6501 btrfs_item_key_to_cpu(eb, &key, i);
6502 if (key.type != BTRFS_EXTENT_DATA_KEY)
6503 continue;
6504 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
6505 found_type = btrfs_file_extent_type(eb, item);
6506 if (found_type == BTRFS_FILE_EXTENT_INLINE)
6507 continue;
6508 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
6509 continue;
6510 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
6511 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
Gu Jinxiangb89311e2018-05-22 17:46:51 +08006512 ret = __exclude_logged_extent(fs_info, key.objectid, key.offset);
6513 if (ret)
6514 break;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006515 }
6516
Gu Jinxiangb89311e2018-05-22 17:46:51 +08006517 return ret;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006518}
6519
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006520static void
6521btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg)
6522{
6523 atomic_inc(&bg->reservations);
6524}
6525
6526void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
6527 const u64 start)
6528{
6529 struct btrfs_block_group_cache *bg;
6530
6531 bg = btrfs_lookup_block_group(fs_info, start);
6532 ASSERT(bg);
6533 if (atomic_dec_and_test(&bg->reservations))
Peter Zijlstra46259562018-03-15 11:43:08 +01006534 wake_up_var(&bg->reservations);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006535 btrfs_put_block_group(bg);
6536}
6537
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006538void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg)
6539{
6540 struct btrfs_space_info *space_info = bg->space_info;
6541
6542 ASSERT(bg->ro);
6543
6544 if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA))
6545 return;
6546
6547 /*
6548 * Our block group is read only but before we set it to read only,
6549 * some task might have had allocated an extent from it already, but it
6550 * has not yet created a respective ordered extent (and added it to a
6551 * root's list of ordered extents).
6552 * Therefore wait for any task currently allocating extents, since the
6553 * block group's reservations counter is incremented while a read lock
6554 * on the groups' semaphore is held and decremented after releasing
6555 * the read access on that semaphore and creating the ordered extent.
6556 */
6557 down_write(&space_info->groups_sem);
6558 up_write(&space_info->groups_sem);
6559
Peter Zijlstra46259562018-03-15 11:43:08 +01006560 wait_var_event(&bg->reservations, !atomic_read(&bg->reservations));
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006561}
6562
Josef Bacikfb25e912011-07-26 17:00:46 -04006563/**
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006564 * btrfs_add_reserved_bytes - update the block_group and space info counters
Josef Bacikfb25e912011-07-26 17:00:46 -04006565 * @cache: The cache we are manipulating
Wang Xiaoguang18513092016-07-25 15:51:40 +08006566 * @ram_bytes: The number of bytes of file content, and will be same to
6567 * @num_bytes except for the compress path.
Josef Bacikfb25e912011-07-26 17:00:46 -04006568 * @num_bytes: The number of bytes in question
Miao Xiee570fd22014-06-19 10:42:50 +08006569 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04006570 *
Xiaoguang Wang745699e2016-09-23 12:38:50 +08006571 * This is called by the allocator when it reserves space. If this is a
6572 * reservation and the block group has become read only we cannot make the
6573 * reservation and return -EAGAIN, otherwise this function always succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04006574 */
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006575static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
Wang Xiaoguang18513092016-07-25 15:51:40 +08006576 u64 ram_bytes, u64 num_bytes, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006577{
Josef Bacikfb25e912011-07-26 17:00:46 -04006578 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006579 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006580
Josef Bacikfb25e912011-07-26 17:00:46 -04006581 spin_lock(&space_info->lock);
6582 spin_lock(&cache->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006583 if (cache->ro) {
6584 ret = -EAGAIN;
Josef Bacikfb25e912011-07-26 17:00:46 -04006585 } else {
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006586 cache->reserved += num_bytes;
6587 space_info->bytes_reserved += num_bytes;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08006588 update_bytes_may_use(space_info, -ram_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08006589 if (delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006590 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006591 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006592 spin_unlock(&cache->lock);
6593 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006594 return ret;
6595}
6596
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006597/**
6598 * btrfs_free_reserved_bytes - update the block_group and space info counters
6599 * @cache: The cache we are manipulating
6600 * @num_bytes: The number of bytes in question
6601 * @delalloc: The blocks are allocated for the delalloc write
6602 *
6603 * This is called by somebody who is freeing space that was never actually used
6604 * on disk. For example if you reserve some space for a new leaf in transaction
6605 * A and before transaction A commits you free that leaf, you call this with
6606 * reserve set to 0 in order to clear the reservation.
6607 */
6608
zhong jiang556f3ca2018-08-17 00:37:14 +08006609static void btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
6610 u64 num_bytes, int delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006611{
6612 struct btrfs_space_info *space_info = cache->space_info;
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006613
6614 spin_lock(&space_info->lock);
6615 spin_lock(&cache->lock);
6616 if (cache->ro)
6617 space_info->bytes_readonly += num_bytes;
6618 cache->reserved -= num_bytes;
6619 space_info->bytes_reserved -= num_bytes;
Josef Bacik21a94f72018-10-11 15:54:03 -04006620 space_info->max_extent_size = 0;
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006621
6622 if (delalloc)
6623 cache->delalloc_bytes -= num_bytes;
6624 spin_unlock(&cache->lock);
6625 spin_unlock(&space_info->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006626}
David Sterba8b74c032017-02-10 19:20:56 +01006627void btrfs_prepare_extent_commit(struct btrfs_fs_info *fs_info)
Yan Zheng11833d62009-09-11 16:11:19 -04006628{
Yan Zheng11833d62009-09-11 16:11:19 -04006629 struct btrfs_caching_control *next;
6630 struct btrfs_caching_control *caching_ctl;
6631 struct btrfs_block_group_cache *cache;
6632
Josef Bacik9e351cc2014-03-13 15:42:13 -04006633 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04006634
6635 list_for_each_entry_safe(caching_ctl, next,
6636 &fs_info->caching_block_groups, list) {
6637 cache = caching_ctl->block_group;
6638 if (block_group_cache_done(cache)) {
6639 cache->last_byte_to_unpin = (u64)-1;
6640 list_del_init(&caching_ctl->list);
6641 put_caching_control(caching_ctl);
6642 } else {
6643 cache->last_byte_to_unpin = caching_ctl->progress;
6644 }
6645 }
6646
6647 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6648 fs_info->pinned_extents = &fs_info->freed_extents[1];
6649 else
6650 fs_info->pinned_extents = &fs_info->freed_extents[0];
6651
Josef Bacik9e351cc2014-03-13 15:42:13 -04006652 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006653
6654 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04006655}
6656
Josef Bacikc759c4e2015-10-02 15:25:10 -04006657/*
6658 * Returns the free cluster for the given space info and sets empty_cluster to
6659 * what it should be based on the mount options.
6660 */
6661static struct btrfs_free_cluster *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006662fetch_cluster_info(struct btrfs_fs_info *fs_info,
6663 struct btrfs_space_info *space_info, u64 *empty_cluster)
Josef Bacikc759c4e2015-10-02 15:25:10 -04006664{
6665 struct btrfs_free_cluster *ret = NULL;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006666
6667 *empty_cluster = 0;
6668 if (btrfs_mixed_space_info(space_info))
6669 return ret;
6670
Josef Bacikc759c4e2015-10-02 15:25:10 -04006671 if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006672 ret = &fs_info->meta_alloc_cluster;
Hans van Kranenburg583b7232017-07-28 08:31:28 +02006673 if (btrfs_test_opt(fs_info, SSD))
6674 *empty_cluster = SZ_2M;
6675 else
Byongho Leeee221842015-12-15 01:42:10 +09006676 *empty_cluster = SZ_64K;
Hans van Kranenburg583b7232017-07-28 08:31:28 +02006677 } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) &&
6678 btrfs_test_opt(fs_info, SSD_SPREAD)) {
6679 *empty_cluster = SZ_2M;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006680 ret = &fs_info->data_alloc_cluster;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006681 }
6682
6683 return ret;
6684}
6685
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006686static int unpin_extent_range(struct btrfs_fs_info *fs_info,
6687 u64 start, u64 end,
Filipe Manana678886b2014-12-07 21:31:47 +00006688 const bool return_free_space)
Yan Zheng11833d62009-09-11 16:11:19 -04006689{
Yan Zheng11833d62009-09-11 16:11:19 -04006690 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04006691 struct btrfs_space_info *space_info;
6692 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006693 struct btrfs_free_cluster *cluster = NULL;
Yan Zheng11833d62009-09-11 16:11:19 -04006694 u64 len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006695 u64 total_unpinned = 0;
6696 u64 empty_cluster = 0;
Josef Bacik7b398f82012-10-22 15:52:28 -04006697 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04006698
6699 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04006700 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04006701 if (!cache ||
6702 start >= cache->key.objectid + cache->key.offset) {
6703 if (cache)
6704 btrfs_put_block_group(cache);
Josef Bacikc759c4e2015-10-02 15:25:10 -04006705 total_unpinned = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006706 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006707 BUG_ON(!cache); /* Logic error */
Josef Bacikc759c4e2015-10-02 15:25:10 -04006708
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006709 cluster = fetch_cluster_info(fs_info,
Josef Bacikc759c4e2015-10-02 15:25:10 -04006710 cache->space_info,
6711 &empty_cluster);
6712 empty_cluster <<= 1;
Yan Zheng11833d62009-09-11 16:11:19 -04006713 }
6714
6715 len = cache->key.objectid + cache->key.offset - start;
6716 len = min(len, end + 1 - start);
6717
6718 if (start < cache->last_byte_to_unpin) {
6719 len = min(len, cache->last_byte_to_unpin - start);
Filipe Manana678886b2014-12-07 21:31:47 +00006720 if (return_free_space)
6721 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04006722 }
Josef Bacik25179202008-10-29 14:49:05 -04006723
Yan, Zhengf0486c62010-05-16 10:46:25 -04006724 start += len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006725 total_unpinned += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006726 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006727
Josef Bacikc759c4e2015-10-02 15:25:10 -04006728 /*
6729 * If this space cluster has been marked as fragmented and we've
6730 * unpinned enough in this block group to potentially allow a
6731 * cluster to be created inside of it go ahead and clear the
6732 * fragmented check.
6733 */
6734 if (cluster && cluster->fragmented &&
6735 total_unpinned > empty_cluster) {
6736 spin_lock(&cluster->lock);
6737 cluster->fragmented = 0;
6738 spin_unlock(&cluster->lock);
6739 }
6740
Josef Bacik7b398f82012-10-22 15:52:28 -04006741 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006742 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006743 cache->pinned -= len;
Lu Fengqie2907c12018-10-24 20:24:02 +08006744 update_bytes_pinned(space_info, -len);
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006745
6746 trace_btrfs_space_reservation(fs_info, "pinned",
6747 space_info->flags, len, 0);
Josef Bacik4f4db212015-09-29 11:40:47 -04006748 space_info->max_extent_size = 0;
Ethan Liendec59fa2018-07-13 16:50:42 +08006749 percpu_counter_add_batch(&space_info->total_bytes_pinned,
6750 -len, BTRFS_TOTAL_BYTES_PINNED_BATCH);
Josef Bacik7b398f82012-10-22 15:52:28 -04006751 if (cache->ro) {
6752 space_info->bytes_readonly += len;
6753 readonly = true;
6754 }
Josef Bacik25179202008-10-29 14:49:05 -04006755 spin_unlock(&cache->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006756 if (!readonly && return_free_space &&
6757 global_rsv->space_info == space_info) {
6758 u64 to_add = len;
Nikolay Borisov92ac58e2017-08-17 10:52:28 +03006759
Josef Bacik7b398f82012-10-22 15:52:28 -04006760 spin_lock(&global_rsv->lock);
6761 if (!global_rsv->full) {
Josef Bacik957780e2016-05-17 13:30:55 -04006762 to_add = min(len, global_rsv->size -
6763 global_rsv->reserved);
6764 global_rsv->reserved += to_add;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08006765 update_bytes_may_use(space_info, to_add);
Josef Bacik7b398f82012-10-22 15:52:28 -04006766 if (global_rsv->reserved >= global_rsv->size)
6767 global_rsv->full = 1;
Josef Bacik957780e2016-05-17 13:30:55 -04006768 trace_btrfs_space_reservation(fs_info,
6769 "space_info",
6770 space_info->flags,
6771 to_add, 1);
6772 len -= to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006773 }
6774 spin_unlock(&global_rsv->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006775 /* Add to any tickets we may have */
6776 if (len)
6777 space_info_add_new_bytes(fs_info, space_info,
6778 len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006779 }
6780 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006781 }
6782
6783 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006784 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006785 return 0;
6786}
6787
Nikolay Borisov5ead2dd2018-03-15 16:00:26 +02006788int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans)
Chris Masona28ec192007-03-06 20:08:01 -05006789{
Nikolay Borisov5ead2dd2018-03-15 16:00:26 +02006790 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006791 struct btrfs_block_group_cache *block_group, *tmp;
6792 struct list_head *deleted_bgs;
Yan Zheng11833d62009-09-11 16:11:19 -04006793 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006794 u64 start;
6795 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006796 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006797
Yan Zheng11833d62009-09-11 16:11:19 -04006798 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6799 unpin = &fs_info->freed_extents[1];
6800 else
6801 unpin = &fs_info->freed_extents[0];
6802
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006803 while (!trans->aborted) {
Filipe Manana0e6ec382018-11-16 13:04:44 +00006804 struct extent_state *cached_state = NULL;
6805
Filipe Mananad4b450c2015-01-29 19:18:25 +00006806 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006807 ret = find_first_extent_bit(unpin, 0, &start, &end,
Filipe Manana0e6ec382018-11-16 13:04:44 +00006808 EXTENT_DIRTY, &cached_state);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006809 if (ret) {
6810 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006811 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006812 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006813
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006814 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006815 ret = btrfs_discard_extent(fs_info, start,
Li Dongyang5378e602011-03-24 10:24:27 +00006816 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006817
Filipe Manana0e6ec382018-11-16 13:04:44 +00006818 clear_extent_dirty(unpin, start, end, &cached_state);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006819 unpin_extent_range(fs_info, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006820 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana0e6ec382018-11-16 13:04:44 +00006821 free_extent_state(cached_state);
Chris Masonb9473432009-03-13 11:00:37 -04006822 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006823 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006824
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006825 /*
6826 * Transaction is finished. We don't need the lock anymore. We
6827 * do need to clean up the block groups in case of a transaction
6828 * abort.
6829 */
6830 deleted_bgs = &trans->transaction->deleted_bgs;
6831 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
6832 u64 trimmed = 0;
6833
6834 ret = -EROFS;
6835 if (!trans->aborted)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006836 ret = btrfs_discard_extent(fs_info,
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006837 block_group->key.objectid,
6838 block_group->key.offset,
6839 &trimmed);
6840
6841 list_del_init(&block_group->bg_list);
6842 btrfs_put_block_group_trimming(block_group);
6843 btrfs_put_block_group(block_group);
6844
6845 if (ret) {
6846 const char *errstr = btrfs_decode_error(ret);
6847 btrfs_warn(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02006848 "discard failed while removing blockgroup: errno=%d %s",
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006849 ret, errstr);
6850 }
6851 }
6852
Chris Masone20d96d2007-03-22 12:13:20 -04006853 return 0;
6854}
6855
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006856static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
Nikolay Borisove72cb922018-06-20 15:48:57 +03006857 struct btrfs_delayed_ref_node *node, u64 parent,
6858 u64 root_objectid, u64 owner_objectid,
6859 u64 owner_offset, int refs_to_drop,
6860 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006861{
Nikolay Borisove72cb922018-06-20 15:48:57 +03006862 struct btrfs_fs_info *info = trans->fs_info;
Chris Masone2fa7222007-03-12 16:22:34 -04006863 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006864 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006865 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006866 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006867 struct btrfs_extent_item *ei;
6868 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006869 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006870 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006871 int extent_slot = 0;
6872 int found_extent = 0;
6873 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006874 u32 item_size;
6875 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006876 u64 bytenr = node->bytenr;
6877 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006878 int last_ref = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006879 bool skinny_metadata = btrfs_fs_incompat(info, SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006880
Chris Mason5caf2a02007-04-02 11:20:42 -04006881 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006882 if (!path)
6883 return -ENOMEM;
6884
David Sterbae4058b52015-11-27 16:31:35 +01006885 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04006886 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006887
6888 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6889 BUG_ON(!is_data && refs_to_drop != 1);
6890
Josef Bacik3173a182013-03-07 14:22:04 -05006891 if (is_data)
Thomas Meyer897ca812017-10-07 16:02:21 +02006892 skinny_metadata = false;
Josef Bacik3173a182013-03-07 14:22:04 -05006893
Nikolay Borisovfbe48012018-06-20 15:48:52 +03006894 ret = lookup_extent_backref(trans, path, &iref, bytenr, num_bytes,
6895 parent, root_objectid, owner_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006896 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006897 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006898 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006899 while (extent_slot >= 0) {
6900 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006901 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006902 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006903 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006904 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6905 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006906 found_extent = 1;
6907 break;
6908 }
Josef Bacik3173a182013-03-07 14:22:04 -05006909 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6910 key.offset == owner_objectid) {
6911 found_extent = 1;
6912 break;
6913 }
Chris Mason952fcca2008-02-18 16:33:44 -05006914 if (path->slots[0] - extent_slot > 5)
6915 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006916 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006917 }
Nikolay Borisova79865c2018-06-21 09:45:00 +03006918
Zheng Yan31840ae2008-09-23 13:14:14 -04006919 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006920 BUG_ON(iref);
Nikolay Borisov87cc7a82018-06-20 15:49:12 +03006921 ret = remove_extent_backref(trans, path, NULL,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05006922 refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006923 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006924 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006925 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006926 goto out;
6927 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006928 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04006929 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006930
6931 key.objectid = bytenr;
6932 key.type = BTRFS_EXTENT_ITEM_KEY;
6933 key.offset = num_bytes;
6934
Josef Bacik3173a182013-03-07 14:22:04 -05006935 if (!is_data && skinny_metadata) {
6936 key.type = BTRFS_METADATA_ITEM_KEY;
6937 key.offset = owner_objectid;
6938 }
6939
Zheng Yan31840ae2008-09-23 13:14:14 -04006940 ret = btrfs_search_slot(trans, extent_root,
6941 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05006942 if (ret > 0 && skinny_metadata && path->slots[0]) {
6943 /*
6944 * Couldn't find our skinny metadata item,
6945 * see if we have ye olde extent item.
6946 */
6947 path->slots[0]--;
6948 btrfs_item_key_to_cpu(path->nodes[0], &key,
6949 path->slots[0]);
6950 if (key.objectid == bytenr &&
6951 key.type == BTRFS_EXTENT_ITEM_KEY &&
6952 key.offset == num_bytes)
6953 ret = 0;
6954 }
6955
6956 if (ret > 0 && skinny_metadata) {
6957 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01006958 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05006959 key.type = BTRFS_EXTENT_ITEM_KEY;
6960 key.offset = num_bytes;
6961 btrfs_release_path(path);
6962 ret = btrfs_search_slot(trans, extent_root,
6963 &key, path, -1, 1);
6964 }
6965
Josef Bacikf3465ca2008-11-12 14:19:50 -05006966 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006967 btrfs_err(info,
6968 "umm, got %d back from search, was looking for %llu",
6969 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00006970 if (ret > 0)
David Sterbaa4f78752017-06-29 18:37:49 +02006971 btrfs_print_leaf(path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006972 }
David Sterba005d6422012-09-18 07:52:32 -06006973 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006974 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006975 goto out;
6976 }
Zheng Yan31840ae2008-09-23 13:14:14 -04006977 extent_slot = path->slots[0];
6978 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306979 } else if (WARN_ON(ret == -ENOENT)) {
David Sterbaa4f78752017-06-29 18:37:49 +02006980 btrfs_print_leaf(path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006981 btrfs_err(info,
6982 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006983 bytenr, parent, root_objectid, owner_objectid,
6984 owner_offset);
Jeff Mahoney66642832016-06-10 18:19:25 -04006985 btrfs_abort_transaction(trans, ret);
Josef Bacikc4a050b2014-03-14 16:36:53 -04006986 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006987 } else {
Jeff Mahoney66642832016-06-10 18:19:25 -04006988 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006989 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05006990 }
Chris Mason5f39d392007-10-15 16:14:19 -04006991
6992 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006993 item_size = btrfs_item_size_nr(leaf, extent_slot);
David Sterba6d8ff4e2018-06-26 16:20:59 +02006994 if (unlikely(item_size < sizeof(*ei))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03006995 ret = -EINVAL;
6996 btrfs_print_v0_err(info);
6997 btrfs_abort_transaction(trans, ret);
6998 goto out;
6999 }
Chris Mason952fcca2008-02-18 16:33:44 -05007000 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04007001 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05007002 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
7003 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007004 struct btrfs_tree_block_info *bi;
7005 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
7006 bi = (struct btrfs_tree_block_info *)(ei + 1);
7007 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05007008 }
7009
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007010 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04007011 if (refs < refs_to_drop) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007012 btrfs_err(info,
7013 "trying to drop %d refs but we only have %Lu for bytenr %Lu",
7014 refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04007015 ret = -EINVAL;
Jeff Mahoney66642832016-06-10 18:19:25 -04007016 btrfs_abort_transaction(trans, ret);
Josef Bacik32b02532013-04-24 16:38:50 -04007017 goto out;
7018 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007019 refs -= refs_to_drop;
7020
7021 if (refs > 0) {
7022 if (extent_op)
7023 __run_delayed_extent_op(extent_op, leaf, ei);
7024 /*
7025 * In the case of inline back ref, reference count will
7026 * be updated by remove_extent_backref
7027 */
7028 if (iref) {
7029 BUG_ON(!found_extent);
7030 } else {
7031 btrfs_set_extent_refs(leaf, ei, refs);
7032 btrfs_mark_buffer_dirty(leaf);
7033 }
7034 if (found_extent) {
Nikolay Borisov87cc7a82018-06-20 15:49:12 +03007035 ret = remove_extent_backref(trans, path, iref,
7036 refs_to_drop, is_data,
7037 &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06007038 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007039 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007040 goto out;
7041 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007042 }
7043 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007044 if (found_extent) {
7045 BUG_ON(is_data && refs_to_drop !=
Zhaolei9ed0dea2015-08-06 22:16:24 +08007046 extent_data_ref_count(path, iref));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007047 if (iref) {
7048 BUG_ON(path->slots[0] != extent_slot);
7049 } else {
7050 BUG_ON(path->slots[0] != extent_slot + 1);
7051 path->slots[0] = extent_slot;
7052 num_to_del = 2;
7053 }
Chris Mason78fae272007-03-25 11:35:08 -04007054 }
Chris Masonb9473432009-03-13 11:00:37 -04007055
Josef Bacikfcebe452014-05-13 17:30:47 -07007056 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05007057 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
7058 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06007059 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007060 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007061 goto out;
7062 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007063 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01007064
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007065 if (is_data) {
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04007066 ret = btrfs_del_csums(trans, info, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06007067 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007068 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007069 goto out;
7070 }
Chris Mason459931e2008-12-10 09:10:46 -05007071 }
7072
Nikolay Borisove7355e52018-05-10 15:44:55 +03007073 ret = add_to_free_space_tree(trans, bytenr, num_bytes);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007074 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007075 btrfs_abort_transaction(trans, ret);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007076 goto out;
7077 }
7078
David Sterba6b279402019-03-20 12:10:15 +01007079 ret = update_block_group(trans, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06007080 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007081 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007082 goto out;
7083 }
Chris Masona28ec192007-03-06 20:08:01 -05007084 }
Josef Bacikfcebe452014-05-13 17:30:47 -07007085 btrfs_release_path(path);
7086
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007087out:
Chris Mason5caf2a02007-04-02 11:20:42 -04007088 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05007089 return ret;
7090}
7091
7092/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007093 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04007094 * delayed ref for that extent as well. This searches the delayed ref tree for
7095 * a given extent, and if there are no other delayed refs to be processed, it
7096 * removes it from the tree.
7097 */
7098static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007099 u64 bytenr)
Chris Mason1887be62009-03-13 10:11:24 -04007100{
7101 struct btrfs_delayed_ref_head *head;
7102 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007103 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04007104
7105 delayed_refs = &trans->transaction->delayed_refs;
7106 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08007107 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Chris Mason1887be62009-03-13 10:11:24 -04007108 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08007109 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04007110
Josef Bacikd7df2c72014-01-23 09:21:38 -05007111 spin_lock(&head->lock);
Liu Boe3d03962018-08-23 03:51:50 +08007112 if (!RB_EMPTY_ROOT(&head->ref_tree.rb_root))
Chris Mason1887be62009-03-13 10:11:24 -04007113 goto out;
7114
Josef Bacikbedc66172018-12-03 10:20:31 -05007115 if (cleanup_extent_op(head) != NULL)
7116 goto out;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007117
Chris Mason1887be62009-03-13 10:11:24 -04007118 /*
7119 * waiting for the lock here would deadlock. If someone else has it
7120 * locked they are already in the process of dropping it anyway
7121 */
7122 if (!mutex_trylock(&head->mutex))
7123 goto out;
7124
Josef Bacikd7baffd2018-12-03 10:20:29 -05007125 btrfs_delete_ref_head(delayed_refs, head);
Josef Bacikd7df2c72014-01-23 09:21:38 -05007126 head->processing = 0;
Josef Bacikd7baffd2018-12-03 10:20:29 -05007127
Josef Bacikd7df2c72014-01-23 09:21:38 -05007128 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04007129 spin_unlock(&delayed_refs->lock);
7130
Yan, Zhengf0486c62010-05-16 10:46:25 -04007131 BUG_ON(head->extent_op);
7132 if (head->must_insert_reserved)
7133 ret = 1;
7134
Josef Bacik31890da2018-11-21 14:05:41 -05007135 btrfs_cleanup_ref_head_accounting(trans->fs_info, delayed_refs, head);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007136 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -04007137 btrfs_put_delayed_ref_head(head);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007138 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04007139out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05007140 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08007141
7142out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04007143 spin_unlock(&delayed_refs->lock);
7144 return 0;
7145}
7146
Yan, Zhengf0486c62010-05-16 10:46:25 -04007147void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
7148 struct btrfs_root *root,
7149 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02007150 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007151{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007152 struct btrfs_fs_info *fs_info = root->fs_info;
Qu Wenruoed4f2552019-04-04 14:45:31 +08007153 struct btrfs_ref generic_ref = { 0 };
Josef Bacikb150a4f2013-06-19 15:00:04 -04007154 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007155 int ret;
7156
Qu Wenruoed4f2552019-04-04 14:45:31 +08007157 btrfs_init_generic_ref(&generic_ref, BTRFS_DROP_DELAYED_REF,
7158 buf->start, buf->len, parent);
7159 btrfs_init_tree_ref(&generic_ref, btrfs_header_level(buf),
7160 root->root_key.objectid);
7161
Yan, Zhengf0486c62010-05-16 10:46:25 -04007162 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Omar Sandovald7eae342017-06-06 16:45:31 -07007163 int old_ref_mod, new_ref_mod;
7164
Qu Wenruo8a5040f2019-04-04 14:45:33 +08007165 btrfs_ref_tree_mod(fs_info, &generic_ref);
Qu Wenruoed4f2552019-04-04 14:45:31 +08007166 ret = btrfs_add_delayed_tree_ref(trans, &generic_ref, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007167 &old_ref_mod, &new_ref_mod);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007168 BUG_ON(ret); /* -ENOMEM */
Omar Sandovald7eae342017-06-06 16:45:31 -07007169 pin = old_ref_mod >= 0 && new_ref_mod < 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007170 }
7171
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007172 if (last_ref && btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00007173 struct btrfs_block_group_cache *cache;
7174
Yan, Zhengf0486c62010-05-16 10:46:25 -04007175 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007176 ret = check_ref_cleanup(trans, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007177 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04007178 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007179 }
7180
Omar Sandoval4da8b762017-06-06 16:45:28 -07007181 pin = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007182 cache = btrfs_lookup_block_group(fs_info, buf->start);
Filipe Manana62198722015-01-06 20:18:45 +00007183
Yan, Zhengf0486c62010-05-16 10:46:25 -04007184 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
David Sterbafdf08602019-03-20 12:12:32 +01007185 pin_down_extent(cache, buf->start, buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00007186 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04007187 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007188 }
7189
7190 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
7191
7192 btrfs_add_free_space(cache, buf->start, buf->len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08007193 btrfs_free_reserved_bytes(cache, buf->len, 0);
Filipe Manana62198722015-01-06 20:18:45 +00007194 btrfs_put_block_group(cache);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007195 trace_btrfs_reserved_extent_free(fs_info, buf->start, buf->len);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007196 }
7197out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04007198 if (pin)
Qu Wenruo78192442019-05-15 07:33:48 +08007199 add_pinned_bytes(fs_info, &generic_ref);
Josef Bacikb150a4f2013-06-19 15:00:04 -04007200
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007201 if (last_ref) {
7202 /*
7203 * Deleting the buffer, clear the corrupt flag since it doesn't
7204 * matter anymore.
7205 */
7206 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
7207 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007208}
7209
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007210/* Can return -ENOMEM */
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007211int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_ref *ref)
Chris Mason925baed2008-06-25 16:01:30 -04007212{
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007213 struct btrfs_fs_info *fs_info = trans->fs_info;
Omar Sandovald7eae342017-06-06 16:45:31 -07007214 int old_ref_mod, new_ref_mod;
Chris Mason925baed2008-06-25 16:01:30 -04007215 int ret;
7216
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04007217 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007218 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02007219
Chris Mason56bec292009-03-13 10:10:06 -04007220 /*
7221 * tree log blocks never actually go into the extent allocation
7222 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04007223 */
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007224 if ((ref->type == BTRFS_REF_METADATA &&
7225 ref->tree_ref.root == BTRFS_TREE_LOG_OBJECTID) ||
7226 (ref->type == BTRFS_REF_DATA &&
7227 ref->data_ref.ref_root == BTRFS_TREE_LOG_OBJECTID)) {
Chris Masonb9473432009-03-13 11:00:37 -04007228 /* unlocks the pinned mutex */
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007229 btrfs_pin_extent(fs_info, ref->bytenr, ref->len, 1);
Omar Sandovald7eae342017-06-06 16:45:31 -07007230 old_ref_mod = new_ref_mod = 0;
Chris Mason56bec292009-03-13 10:10:06 -04007231 ret = 0;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007232 } else if (ref->type == BTRFS_REF_METADATA) {
7233 ret = btrfs_add_delayed_tree_ref(trans, ref, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007234 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007235 } else {
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007236 ret = btrfs_add_delayed_data_ref(trans, ref, 0,
Omar Sandovald7eae342017-06-06 16:45:31 -07007237 &old_ref_mod, &new_ref_mod);
Chris Mason56bec292009-03-13 10:10:06 -04007238 }
Omar Sandovald7eae342017-06-06 16:45:31 -07007239
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007240 if (!((ref->type == BTRFS_REF_METADATA &&
7241 ref->tree_ref.root == BTRFS_TREE_LOG_OBJECTID) ||
7242 (ref->type == BTRFS_REF_DATA &&
7243 ref->data_ref.ref_root == BTRFS_TREE_LOG_OBJECTID)))
7244 btrfs_ref_tree_mod(fs_info, ref);
Qu Wenruo8a5040f2019-04-04 14:45:33 +08007245
Qu Wenruoddf30cf2019-04-04 14:45:34 +08007246 if (ret == 0 && old_ref_mod >= 0 && new_ref_mod < 0)
Qu Wenruo78192442019-05-15 07:33:48 +08007247 add_pinned_bytes(fs_info, ref);
Omar Sandovald7eae342017-06-06 16:45:31 -07007248
Chris Mason925baed2008-06-25 16:01:30 -04007249 return ret;
7250}
7251
Chris Masonfec577f2007-02-26 10:40:21 -05007252/*
Josef Bacik817d52f2009-07-13 21:29:25 -04007253 * when we wait for progress in the block group caching, its because
7254 * our allocation attempt failed at least once. So, we must sleep
7255 * and let some progress happen before we try again.
7256 *
7257 * This function will sleep at least once waiting for new free space to
7258 * show up, and then it will check the block group free space numbers
7259 * for our min num_bytes. Another option is to have it go ahead
7260 * and look in the rbtree for a free extent of a given size, but this
7261 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04007262 *
7263 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
7264 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04007265 */
Josef Bacik36cce922013-08-05 11:15:21 -04007266static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04007267wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
7268 u64 num_bytes)
7269{
Yan Zheng11833d62009-09-11 16:11:19 -04007270 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04007271
Yan Zheng11833d62009-09-11 16:11:19 -04007272 caching_ctl = get_caching_control(cache);
7273 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007274 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04007275
Yan Zheng11833d62009-09-11 16:11:19 -04007276 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08007277 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04007278
7279 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04007280}
7281
7282static noinline int
7283wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
7284{
7285 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04007286 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007287
7288 caching_ctl = get_caching_control(cache);
7289 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007290 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007291
7292 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04007293 if (cache->cached == BTRFS_CACHE_ERROR)
7294 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04007295 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04007296 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04007297}
7298
7299enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05007300 LOOP_CACHING_NOWAIT = 0,
7301 LOOP_CACHING_WAIT = 1,
7302 LOOP_ALLOC_CHUNK = 2,
7303 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04007304};
7305
Miao Xiee570fd22014-06-19 10:42:50 +08007306static inline void
7307btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
7308 int delalloc)
7309{
7310 if (delalloc)
7311 down_read(&cache->data_rwsem);
7312}
7313
7314static inline void
7315btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
7316 int delalloc)
7317{
7318 btrfs_get_block_group(cache);
7319 if (delalloc)
7320 down_read(&cache->data_rwsem);
7321}
7322
7323static struct btrfs_block_group_cache *
7324btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
7325 struct btrfs_free_cluster *cluster,
7326 int delalloc)
7327{
Sudip Mukherjee89771cc2016-02-16 13:32:47 +05307328 struct btrfs_block_group_cache *used_bg = NULL;
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007329
Miao Xiee570fd22014-06-19 10:42:50 +08007330 spin_lock(&cluster->refill_lock);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007331 while (1) {
7332 used_bg = cluster->block_group;
7333 if (!used_bg)
7334 return NULL;
7335
7336 if (used_bg == block_group)
7337 return used_bg;
7338
7339 btrfs_get_block_group(used_bg);
7340
7341 if (!delalloc)
7342 return used_bg;
7343
7344 if (down_read_trylock(&used_bg->data_rwsem))
7345 return used_bg;
7346
7347 spin_unlock(&cluster->refill_lock);
7348
Liu Boe321f8a2016-11-30 16:11:04 -08007349 /* We should only have one-level nested. */
7350 down_read_nested(&used_bg->data_rwsem, SINGLE_DEPTH_NESTING);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007351
7352 spin_lock(&cluster->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007353 if (used_bg == cluster->block_group)
7354 return used_bg;
7355
7356 up_read(&used_bg->data_rwsem);
7357 btrfs_put_block_group(used_bg);
7358 }
Miao Xiee570fd22014-06-19 10:42:50 +08007359}
7360
7361static inline void
7362btrfs_release_block_group(struct btrfs_block_group_cache *cache,
7363 int delalloc)
7364{
7365 if (delalloc)
7366 up_read(&cache->data_rwsem);
7367 btrfs_put_block_group(cache);
7368}
7369
Josef Bacik817d52f2009-07-13 21:29:25 -04007370/*
Qu Wenruob4bd7452018-11-02 09:39:47 +08007371 * Structure used internally for find_free_extent() function. Wraps needed
7372 * parameters.
7373 */
7374struct find_free_extent_ctl {
7375 /* Basic allocation info */
7376 u64 ram_bytes;
7377 u64 num_bytes;
7378 u64 empty_size;
7379 u64 flags;
7380 int delalloc;
7381
7382 /* Where to start the search inside the bg */
7383 u64 search_start;
7384
7385 /* For clustered allocation */
7386 u64 empty_cluster;
7387
7388 bool have_caching_bg;
7389 bool orig_have_caching_bg;
7390
7391 /* RAID index, converted from flags */
7392 int index;
7393
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007394 /*
7395 * Current loop number, check find_free_extent_update_loop() for details
7396 */
Qu Wenruob4bd7452018-11-02 09:39:47 +08007397 int loop;
7398
7399 /*
7400 * Whether we're refilling a cluster, if true we need to re-search
7401 * current block group but don't try to refill the cluster again.
7402 */
7403 bool retry_clustered;
7404
7405 /*
7406 * Whether we're updating free space cache, if true we need to re-search
7407 * current block group but don't try updating free space cache again.
7408 */
7409 bool retry_unclustered;
7410
7411 /* If current block group is cached */
7412 int cached;
7413
7414 /* Max contiguous hole found */
7415 u64 max_extent_size;
7416
7417 /* Total free space from free space cache, not always contiguous */
7418 u64 total_free_space;
7419
7420 /* Found result */
7421 u64 found_offset;
7422};
7423
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007424
7425/*
7426 * Helper function for find_free_extent().
7427 *
7428 * Return -ENOENT to inform caller that we need fallback to unclustered mode.
7429 * Return -EAGAIN to inform caller that we need to re-search this block group
7430 * Return >0 to inform caller that we find nothing
7431 * Return 0 means we have found a location and set ffe_ctl->found_offset.
7432 */
7433static int find_free_extent_clustered(struct btrfs_block_group_cache *bg,
7434 struct btrfs_free_cluster *last_ptr,
7435 struct find_free_extent_ctl *ffe_ctl,
7436 struct btrfs_block_group_cache **cluster_bg_ret)
7437{
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007438 struct btrfs_block_group_cache *cluster_bg;
7439 u64 aligned_cluster;
7440 u64 offset;
7441 int ret;
7442
7443 cluster_bg = btrfs_lock_cluster(bg, last_ptr, ffe_ctl->delalloc);
7444 if (!cluster_bg)
7445 goto refill_cluster;
7446 if (cluster_bg != bg && (cluster_bg->ro ||
7447 !block_group_bits(cluster_bg, ffe_ctl->flags)))
7448 goto release_cluster;
7449
7450 offset = btrfs_alloc_from_cluster(cluster_bg, last_ptr,
7451 ffe_ctl->num_bytes, cluster_bg->key.objectid,
7452 &ffe_ctl->max_extent_size);
7453 if (offset) {
7454 /* We have a block, we're done */
7455 spin_unlock(&last_ptr->refill_lock);
7456 trace_btrfs_reserve_extent_cluster(cluster_bg,
7457 ffe_ctl->search_start, ffe_ctl->num_bytes);
7458 *cluster_bg_ret = cluster_bg;
7459 ffe_ctl->found_offset = offset;
7460 return 0;
7461 }
7462 WARN_ON(last_ptr->block_group != cluster_bg);
7463
7464release_cluster:
7465 /*
7466 * If we are on LOOP_NO_EMPTY_SIZE, we can't set up a new clusters, so
7467 * lets just skip it and let the allocator find whatever block it can
7468 * find. If we reach this point, we will have tried the cluster
7469 * allocator plenty of times and not have found anything, so we are
7470 * likely way too fragmented for the clustering stuff to find anything.
7471 *
7472 * However, if the cluster is taken from the current block group,
7473 * release the cluster first, so that we stand a better chance of
7474 * succeeding in the unclustered allocation.
7475 */
7476 if (ffe_ctl->loop >= LOOP_NO_EMPTY_SIZE && cluster_bg != bg) {
7477 spin_unlock(&last_ptr->refill_lock);
7478 btrfs_release_block_group(cluster_bg, ffe_ctl->delalloc);
7479 return -ENOENT;
7480 }
7481
7482 /* This cluster didn't work out, free it and start over */
7483 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7484
7485 if (cluster_bg != bg)
7486 btrfs_release_block_group(cluster_bg, ffe_ctl->delalloc);
7487
7488refill_cluster:
7489 if (ffe_ctl->loop >= LOOP_NO_EMPTY_SIZE) {
7490 spin_unlock(&last_ptr->refill_lock);
7491 return -ENOENT;
7492 }
7493
7494 aligned_cluster = max_t(u64,
7495 ffe_ctl->empty_cluster + ffe_ctl->empty_size,
7496 bg->full_stripe_len);
David Sterba2ceeae22019-03-20 13:53:49 +01007497 ret = btrfs_find_space_cluster(bg, last_ptr, ffe_ctl->search_start,
7498 ffe_ctl->num_bytes, aligned_cluster);
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007499 if (ret == 0) {
7500 /* Now pull our allocation out of this cluster */
7501 offset = btrfs_alloc_from_cluster(bg, last_ptr,
7502 ffe_ctl->num_bytes, ffe_ctl->search_start,
7503 &ffe_ctl->max_extent_size);
7504 if (offset) {
7505 /* We found one, proceed */
7506 spin_unlock(&last_ptr->refill_lock);
7507 trace_btrfs_reserve_extent_cluster(bg,
7508 ffe_ctl->search_start,
7509 ffe_ctl->num_bytes);
7510 ffe_ctl->found_offset = offset;
7511 return 0;
7512 }
7513 } else if (!ffe_ctl->cached && ffe_ctl->loop > LOOP_CACHING_NOWAIT &&
7514 !ffe_ctl->retry_clustered) {
7515 spin_unlock(&last_ptr->refill_lock);
7516
7517 ffe_ctl->retry_clustered = true;
7518 wait_block_group_cache_progress(bg, ffe_ctl->num_bytes +
7519 ffe_ctl->empty_cluster + ffe_ctl->empty_size);
7520 return -EAGAIN;
7521 }
7522 /*
7523 * At this point we either didn't find a cluster or we weren't able to
7524 * allocate a block from our cluster. Free the cluster we've been
7525 * trying to use, and go to the next block group.
7526 */
7527 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7528 spin_unlock(&last_ptr->refill_lock);
7529 return 1;
7530}
7531
Qu Wenruob4bd7452018-11-02 09:39:47 +08007532/*
Qu Wenruoe1a41842018-11-02 09:39:49 +08007533 * Return >0 to inform caller that we find nothing
7534 * Return 0 when we found an free extent and set ffe_ctrl->found_offset
7535 * Return -EAGAIN to inform caller that we need to re-search this block group
7536 */
7537static int find_free_extent_unclustered(struct btrfs_block_group_cache *bg,
7538 struct btrfs_free_cluster *last_ptr,
7539 struct find_free_extent_ctl *ffe_ctl)
7540{
7541 u64 offset;
7542
7543 /*
7544 * We are doing an unclustered allocation, set the fragmented flag so
7545 * we don't bother trying to setup a cluster again until we get more
7546 * space.
7547 */
7548 if (unlikely(last_ptr)) {
7549 spin_lock(&last_ptr->lock);
7550 last_ptr->fragmented = 1;
7551 spin_unlock(&last_ptr->lock);
7552 }
7553 if (ffe_ctl->cached) {
7554 struct btrfs_free_space_ctl *free_space_ctl;
7555
7556 free_space_ctl = bg->free_space_ctl;
7557 spin_lock(&free_space_ctl->tree_lock);
7558 if (free_space_ctl->free_space <
7559 ffe_ctl->num_bytes + ffe_ctl->empty_cluster +
7560 ffe_ctl->empty_size) {
7561 ffe_ctl->total_free_space = max_t(u64,
7562 ffe_ctl->total_free_space,
7563 free_space_ctl->free_space);
7564 spin_unlock(&free_space_ctl->tree_lock);
7565 return 1;
7566 }
7567 spin_unlock(&free_space_ctl->tree_lock);
7568 }
7569
7570 offset = btrfs_find_space_for_alloc(bg, ffe_ctl->search_start,
7571 ffe_ctl->num_bytes, ffe_ctl->empty_size,
7572 &ffe_ctl->max_extent_size);
7573
7574 /*
7575 * If we didn't find a chunk, and we haven't failed on this block group
7576 * before, and this block group is in the middle of caching and we are
7577 * ok with waiting, then go ahead and wait for progress to be made, and
7578 * set @retry_unclustered to true.
7579 *
7580 * If @retry_unclustered is true then we've already waited on this
7581 * block group once and should move on to the next block group.
7582 */
7583 if (!offset && !ffe_ctl->retry_unclustered && !ffe_ctl->cached &&
7584 ffe_ctl->loop > LOOP_CACHING_NOWAIT) {
7585 wait_block_group_cache_progress(bg, ffe_ctl->num_bytes +
7586 ffe_ctl->empty_size);
7587 ffe_ctl->retry_unclustered = true;
7588 return -EAGAIN;
7589 } else if (!offset) {
7590 return 1;
7591 }
7592 ffe_ctl->found_offset = offset;
7593 return 0;
7594}
7595
7596/*
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007597 * Return >0 means caller needs to re-search for free extent
7598 * Return 0 means we have the needed free extent.
7599 * Return <0 means we failed to locate any free extent.
7600 */
7601static int find_free_extent_update_loop(struct btrfs_fs_info *fs_info,
7602 struct btrfs_free_cluster *last_ptr,
7603 struct btrfs_key *ins,
7604 struct find_free_extent_ctl *ffe_ctl,
7605 int full_search, bool use_cluster)
7606{
7607 struct btrfs_root *root = fs_info->extent_root;
7608 int ret;
7609
7610 if ((ffe_ctl->loop == LOOP_CACHING_NOWAIT) &&
7611 ffe_ctl->have_caching_bg && !ffe_ctl->orig_have_caching_bg)
7612 ffe_ctl->orig_have_caching_bg = true;
7613
7614 if (!ins->objectid && ffe_ctl->loop >= LOOP_CACHING_WAIT &&
7615 ffe_ctl->have_caching_bg)
7616 return 1;
7617
7618 if (!ins->objectid && ++(ffe_ctl->index) < BTRFS_NR_RAID_TYPES)
7619 return 1;
7620
7621 if (ins->objectid) {
7622 if (!use_cluster && last_ptr) {
7623 spin_lock(&last_ptr->lock);
7624 last_ptr->window_start = ins->objectid;
7625 spin_unlock(&last_ptr->lock);
7626 }
7627 return 0;
7628 }
7629
7630 /*
7631 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7632 * caching kthreads as we move along
7633 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7634 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7635 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7636 * again
7637 */
7638 if (ffe_ctl->loop < LOOP_NO_EMPTY_SIZE) {
7639 ffe_ctl->index = 0;
7640 if (ffe_ctl->loop == LOOP_CACHING_NOWAIT) {
7641 /*
7642 * We want to skip the LOOP_CACHING_WAIT step if we
7643 * don't have any uncached bgs and we've already done a
7644 * full search through.
7645 */
7646 if (ffe_ctl->orig_have_caching_bg || !full_search)
7647 ffe_ctl->loop = LOOP_CACHING_WAIT;
7648 else
7649 ffe_ctl->loop = LOOP_ALLOC_CHUNK;
7650 } else {
7651 ffe_ctl->loop++;
7652 }
7653
7654 if (ffe_ctl->loop == LOOP_ALLOC_CHUNK) {
7655 struct btrfs_trans_handle *trans;
7656 int exist = 0;
7657
7658 trans = current->journal_info;
7659 if (trans)
7660 exist = 1;
7661 else
7662 trans = btrfs_join_transaction(root);
7663
7664 if (IS_ERR(trans)) {
7665 ret = PTR_ERR(trans);
7666 return ret;
7667 }
7668
7669 ret = do_chunk_alloc(trans, ffe_ctl->flags,
7670 CHUNK_ALLOC_FORCE);
7671
7672 /*
7673 * If we can't allocate a new chunk we've already looped
7674 * through at least once, move on to the NO_EMPTY_SIZE
7675 * case.
7676 */
7677 if (ret == -ENOSPC)
7678 ffe_ctl->loop = LOOP_NO_EMPTY_SIZE;
7679
7680 /* Do not bail out on ENOSPC since we can do more. */
7681 if (ret < 0 && ret != -ENOSPC)
7682 btrfs_abort_transaction(trans, ret);
7683 else
7684 ret = 0;
7685 if (!exist)
7686 btrfs_end_transaction(trans);
7687 if (ret)
7688 return ret;
7689 }
7690
7691 if (ffe_ctl->loop == LOOP_NO_EMPTY_SIZE) {
7692 /*
7693 * Don't loop again if we already have no empty_size and
7694 * no empty_cluster.
7695 */
7696 if (ffe_ctl->empty_size == 0 &&
7697 ffe_ctl->empty_cluster == 0)
7698 return -ENOSPC;
7699 ffe_ctl->empty_size = 0;
7700 ffe_ctl->empty_cluster = 0;
7701 }
7702 return 1;
7703 }
7704 return -ENOSPC;
7705}
7706
7707/*
Chris Masonfec577f2007-02-26 10:40:21 -05007708 * walks the btree of allocated extents and find a hole of a given size.
7709 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08007710 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04007711 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08007712 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05007713 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08007714 *
7715 * If there is no suitable free space, we will record the max size of
7716 * the free space extent currently.
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007717 *
7718 * The overall logic and call chain:
7719 *
7720 * find_free_extent()
7721 * |- Iterate through all block groups
7722 * | |- Get a valid block group
7723 * | |- Try to do clustered allocation in that block group
7724 * | |- Try to do unclustered allocation in that block group
7725 * | |- Check if the result is valid
7726 * | | |- If valid, then exit
7727 * | |- Jump to next block group
7728 * |
7729 * |- Push harder to find free extents
7730 * |- If not found, re-iterate all block groups
Chris Masonfec577f2007-02-26 10:40:21 -05007731 */
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05007732static noinline int find_free_extent(struct btrfs_fs_info *fs_info,
Wang Xiaoguang18513092016-07-25 15:51:40 +08007733 u64 ram_bytes, u64 num_bytes, u64 empty_size,
7734 u64 hint_byte, struct btrfs_key *ins,
7735 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007736{
Josef Bacik80eb2342008-10-29 14:49:05 -04007737 int ret = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007738 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04007739 struct btrfs_block_group_cache *block_group = NULL;
Qu Wenruob4bd7452018-11-02 09:39:47 +08007740 struct find_free_extent_ctl ffe_ctl = {0};
Josef Bacik80eb2342008-10-29 14:49:05 -04007741 struct btrfs_space_info *space_info;
Josef Bacik67377732010-09-16 16:19:09 -04007742 bool use_cluster = true;
Josef Bacika5e681d2015-10-01 14:54:10 -04007743 bool full_search = false;
Chris Masonfec577f2007-02-26 10:40:21 -05007744
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007745 WARN_ON(num_bytes < fs_info->sectorsize);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007746
7747 ffe_ctl.ram_bytes = ram_bytes;
7748 ffe_ctl.num_bytes = num_bytes;
7749 ffe_ctl.empty_size = empty_size;
7750 ffe_ctl.flags = flags;
7751 ffe_ctl.search_start = 0;
7752 ffe_ctl.retry_clustered = false;
7753 ffe_ctl.retry_unclustered = false;
7754 ffe_ctl.delalloc = delalloc;
7755 ffe_ctl.index = btrfs_bg_flags_to_raid_index(flags);
7756 ffe_ctl.have_caching_bg = false;
7757 ffe_ctl.orig_have_caching_bg = false;
7758 ffe_ctl.found_offset = 0;
7759
David Sterba962a2982014-06-04 18:41:45 +02007760 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04007761 ins->objectid = 0;
7762 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04007763
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007764 trace_find_free_extent(fs_info, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05007765
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007766 space_info = __find_space_info(fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007767 if (!space_info) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007768 btrfs_err(fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007769 return -ENOSPC;
7770 }
Josef Bacik2552d172009-04-03 10:14:19 -04007771
Josef Bacik67377732010-09-16 16:19:09 -04007772 /*
Josef Bacik4f4db212015-09-29 11:40:47 -04007773 * If our free space is heavily fragmented we may not be able to make
7774 * big contiguous allocations, so instead of doing the expensive search
7775 * for free space, simply return ENOSPC with our max_extent_size so we
7776 * can go ahead and search for a more manageable chunk.
7777 *
7778 * If our max_extent_size is large enough for our allocation simply
7779 * disable clustering since we will likely not be able to find enough
7780 * space to create a cluster and induce latency trying.
Josef Bacik67377732010-09-16 16:19:09 -04007781 */
Josef Bacik4f4db212015-09-29 11:40:47 -04007782 if (unlikely(space_info->max_extent_size)) {
7783 spin_lock(&space_info->lock);
7784 if (space_info->max_extent_size &&
7785 num_bytes > space_info->max_extent_size) {
7786 ins->offset = space_info->max_extent_size;
7787 spin_unlock(&space_info->lock);
7788 return -ENOSPC;
7789 } else if (space_info->max_extent_size) {
7790 use_cluster = false;
7791 }
7792 spin_unlock(&space_info->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007793 }
7794
Qu Wenruob4bd7452018-11-02 09:39:47 +08007795 last_ptr = fetch_cluster_info(fs_info, space_info,
7796 &ffe_ctl.empty_cluster);
Chris Mason239b14b2008-03-24 15:02:07 -04007797 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007798 spin_lock(&last_ptr->lock);
7799 if (last_ptr->block_group)
7800 hint_byte = last_ptr->window_start;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007801 if (last_ptr->fragmented) {
7802 /*
7803 * We still set window_start so we can keep track of the
7804 * last place we found an allocation to try and save
7805 * some time.
7806 */
7807 hint_byte = last_ptr->window_start;
7808 use_cluster = false;
7809 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007810 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007811 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007812
Qu Wenruob4bd7452018-11-02 09:39:47 +08007813 ffe_ctl.search_start = max(ffe_ctl.search_start,
7814 first_logical_byte(fs_info, 0));
7815 ffe_ctl.search_start = max(ffe_ctl.search_start, hint_byte);
7816 if (ffe_ctl.search_start == hint_byte) {
7817 block_group = btrfs_lookup_block_group(fs_info,
7818 ffe_ctl.search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04007819 /*
7820 * we don't want to use the block group if it doesn't match our
7821 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05007822 *
7823 * However if we are re-searching with an ideal block group
7824 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04007825 */
David Sterbab6919a52013-04-29 13:39:40 +00007826 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05007827 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04007828 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007829 if (list_empty(&block_group->list) ||
7830 block_group->ro) {
7831 /*
7832 * someone is removing this block group,
7833 * we can't jump into the have_block_group
7834 * target because our list pointers are not
7835 * valid
7836 */
7837 btrfs_put_block_group(block_group);
7838 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05007839 } else {
Qu Wenruob4bd7452018-11-02 09:39:47 +08007840 ffe_ctl.index = btrfs_bg_flags_to_raid_index(
Qu Wenruo3e72ee82018-01-30 18:20:45 +08007841 block_group->flags);
Miao Xiee570fd22014-06-19 10:42:50 +08007842 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04007843 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05007844 }
Josef Bacik2552d172009-04-03 10:14:19 -04007845 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007846 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04007847 }
Chris Mason42e70e72008-11-07 18:17:11 -05007848 }
Josef Bacik2552d172009-04-03 10:14:19 -04007849search:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007850 ffe_ctl.have_caching_bg = false;
7851 if (ffe_ctl.index == btrfs_bg_flags_to_raid_index(flags) ||
7852 ffe_ctl.index == 0)
Josef Bacika5e681d2015-10-01 14:54:10 -04007853 full_search = true;
Josef Bacik80eb2342008-10-29 14:49:05 -04007854 down_read(&space_info->groups_sem);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007855 list_for_each_entry(block_group,
7856 &space_info->block_groups[ffe_ctl.index], list) {
Jeff Mahoney14443932017-07-19 23:25:51 -04007857 /* If the block group is read-only, we can skip it entirely. */
7858 if (unlikely(block_group->ro))
7859 continue;
7860
Miao Xiee570fd22014-06-19 10:42:50 +08007861 btrfs_grab_block_group(block_group, delalloc);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007862 ffe_ctl.search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05007863
Chris Mason83a50de2010-12-13 15:06:46 -05007864 /*
7865 * this can happen if we end up cycling through all the
7866 * raid types, but we want to make sure we only allocate
7867 * for the proper type.
7868 */
David Sterbab6919a52013-04-29 13:39:40 +00007869 if (!block_group_bits(block_group, flags)) {
Bart Van Asschebece2e82018-06-20 10:03:31 -07007870 u64 extra = BTRFS_BLOCK_GROUP_DUP |
Chris Mason83a50de2010-12-13 15:06:46 -05007871 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007872 BTRFS_BLOCK_GROUP_RAID5 |
7873 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05007874 BTRFS_BLOCK_GROUP_RAID10;
7875
7876 /*
7877 * if they asked for extra copies and this block group
7878 * doesn't provide them, bail. This does allow us to
7879 * fill raid0 from raid1.
7880 */
David Sterbab6919a52013-04-29 13:39:40 +00007881 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05007882 goto loop;
7883 }
7884
Josef Bacik2552d172009-04-03 10:14:19 -04007885have_block_group:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007886 ffe_ctl.cached = block_group_cache_done(block_group);
7887 if (unlikely(!ffe_ctl.cached)) {
7888 ffe_ctl.have_caching_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00007889 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04007890 BUG_ON(ret < 0);
7891 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05007892 }
7893
Josef Bacik36cce922013-08-05 11:15:21 -04007894 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
7895 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007896
Josef Bacik0a243252009-09-11 16:11:20 -04007897 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007898 * Ok we want to try and use the cluster allocator, so
7899 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04007900 */
Josef Bacikc759c4e2015-10-02 15:25:10 -04007901 if (last_ptr && use_cluster) {
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007902 struct btrfs_block_group_cache *cluster_bg = NULL;
Chris Mason44fb5512009-06-04 15:34:51 -04007903
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007904 ret = find_free_extent_clustered(block_group, last_ptr,
7905 &ffe_ctl, &cluster_bg);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007906
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007907 if (ret == 0) {
7908 if (cluster_bg && cluster_bg != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08007909 btrfs_release_block_group(block_group,
7910 delalloc);
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007911 block_group = cluster_bg;
Miao Xie215a63d2014-01-15 20:00:56 +08007912 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007913 goto checks;
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007914 } else if (ret == -EAGAIN) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007915 goto have_block_group;
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007916 } else if (ret > 0) {
7917 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007918 }
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007919 /* ret == -ENOENT case falls through */
Chris Masonfa9c0d792009-04-03 09:47:43 -04007920 }
7921
Qu Wenruoe1a41842018-11-02 09:39:49 +08007922 ret = find_free_extent_unclustered(block_group, last_ptr,
7923 &ffe_ctl);
7924 if (ret == -EAGAIN)
Josef Bacik817d52f2009-07-13 21:29:25 -04007925 goto have_block_group;
Qu Wenruoe1a41842018-11-02 09:39:49 +08007926 else if (ret > 0)
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007927 goto loop;
Qu Wenruoe1a41842018-11-02 09:39:49 +08007928 /* ret == 0 case falls through */
Chris Masonfa9c0d792009-04-03 09:47:43 -04007929checks:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007930 ffe_ctl.search_start = round_up(ffe_ctl.found_offset,
7931 fs_info->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04007932
Josef Bacik2552d172009-04-03 10:14:19 -04007933 /* move on to the next group */
Qu Wenruob4bd7452018-11-02 09:39:47 +08007934 if (ffe_ctl.search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08007935 block_group->key.objectid + block_group->key.offset) {
Qu Wenruob4bd7452018-11-02 09:39:47 +08007936 btrfs_add_free_space(block_group, ffe_ctl.found_offset,
7937 num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04007938 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04007939 }
Josef Bacik80eb2342008-10-29 14:49:05 -04007940
Qu Wenruob4bd7452018-11-02 09:39:47 +08007941 if (ffe_ctl.found_offset < ffe_ctl.search_start)
7942 btrfs_add_free_space(block_group, ffe_ctl.found_offset,
7943 ffe_ctl.search_start - ffe_ctl.found_offset);
Josef Bacik6226cb02009-04-03 10:14:18 -04007944
Wang Xiaoguang18513092016-07-25 15:51:40 +08007945 ret = btrfs_add_reserved_bytes(block_group, ram_bytes,
7946 num_bytes, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007947 if (ret == -EAGAIN) {
Qu Wenruob4bd7452018-11-02 09:39:47 +08007948 btrfs_add_free_space(block_group, ffe_ctl.found_offset,
7949 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007950 goto loop;
7951 }
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007952 btrfs_inc_block_group_reservations(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -04007953
Josef Bacik2552d172009-04-03 10:14:19 -04007954 /* we are all good, lets return */
Qu Wenruob4bd7452018-11-02 09:39:47 +08007955 ins->objectid = ffe_ctl.search_start;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007956 ins->offset = num_bytes;
7957
Qu Wenruob4bd7452018-11-02 09:39:47 +08007958 trace_btrfs_reserve_extent(block_group, ffe_ctl.search_start,
7959 num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08007960 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007961 break;
7962loop:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007963 ffe_ctl.retry_clustered = false;
7964 ffe_ctl.retry_unclustered = false;
Qu Wenruo3e72ee82018-01-30 18:20:45 +08007965 BUG_ON(btrfs_bg_flags_to_raid_index(block_group->flags) !=
Qu Wenruob4bd7452018-11-02 09:39:47 +08007966 ffe_ctl.index);
Miao Xiee570fd22014-06-19 10:42:50 +08007967 btrfs_release_block_group(block_group, delalloc);
Jeff Mahoney14443932017-07-19 23:25:51 -04007968 cond_resched();
Josef Bacik2552d172009-04-03 10:14:19 -04007969 }
7970 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05007971
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007972 ret = find_free_extent_update_loop(fs_info, last_ptr, ins, &ffe_ctl,
7973 full_search, use_cluster);
7974 if (ret > 0)
Miao Xie60d2adb2011-09-09 17:34:35 +08007975 goto search;
7976
Josef Bacik4f4db212015-09-29 11:40:47 -04007977 if (ret == -ENOSPC) {
Qu Wenruob4bd7452018-11-02 09:39:47 +08007978 /*
7979 * Use ffe_ctl->total_free_space as fallback if we can't find
7980 * any contiguous hole.
7981 */
7982 if (!ffe_ctl.max_extent_size)
7983 ffe_ctl.max_extent_size = ffe_ctl.total_free_space;
Josef Bacik4f4db212015-09-29 11:40:47 -04007984 spin_lock(&space_info->lock);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007985 space_info->max_extent_size = ffe_ctl.max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04007986 spin_unlock(&space_info->lock);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007987 ins->offset = ffe_ctl.max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04007988 }
Chris Mason0f70abe2007-02-28 16:46:22 -05007989 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05007990}
Chris Masonec44a352008-04-28 15:29:52 -04007991
Josef Bacikb78e5612018-11-21 14:03:07 -05007992#define DUMP_BLOCK_RSV(fs_info, rsv_name) \
7993do { \
7994 struct btrfs_block_rsv *__rsv = &(fs_info)->rsv_name; \
7995 spin_lock(&__rsv->lock); \
7996 btrfs_info(fs_info, #rsv_name ": size %llu reserved %llu", \
7997 __rsv->size, __rsv->reserved); \
7998 spin_unlock(&__rsv->lock); \
7999} while (0)
8000
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008001static void dump_space_info(struct btrfs_fs_info *fs_info,
8002 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04008003 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04008004{
8005 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb822010-05-16 10:46:24 -04008006 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008007
Josef Bacik9ed74f22009-09-11 16:12:44 -04008008 spin_lock(&info->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008009 btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull",
8010 info->flags,
Liu Bo41361352017-02-13 15:42:21 -08008011 info->total_bytes - btrfs_space_info_used(info, true),
8012 info->full ? "" : "not ");
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008013 btrfs_info(fs_info,
8014 "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu",
8015 info->total_bytes, info->bytes_used, info->bytes_pinned,
8016 info->bytes_reserved, info->bytes_may_use,
8017 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008018 spin_unlock(&info->lock);
8019
Josef Bacikb78e5612018-11-21 14:03:07 -05008020 DUMP_BLOCK_RSV(fs_info, global_block_rsv);
8021 DUMP_BLOCK_RSV(fs_info, trans_block_rsv);
8022 DUMP_BLOCK_RSV(fs_info, chunk_block_rsv);
8023 DUMP_BLOCK_RSV(fs_info, delayed_block_rsv);
8024 DUMP_BLOCK_RSV(fs_info, delayed_refs_rsv);
8025
Josef Bacik9ed74f22009-09-11 16:12:44 -04008026 if (!dump_block_groups)
8027 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008028
Josef Bacik80eb2342008-10-29 14:49:05 -04008029 down_read(&info->groups_sem);
Yan, Zhengb742bb822010-05-16 10:46:24 -04008030again:
8031 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04008032 spin_lock(&cache->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008033 btrfs_info(fs_info,
8034 "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s",
8035 cache->key.objectid, cache->key.offset,
8036 btrfs_block_group_used(&cache->item), cache->pinned,
8037 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04008038 btrfs_dump_free_space(cache, bytes);
8039 spin_unlock(&cache->lock);
8040 }
Yan, Zhengb742bb822010-05-16 10:46:24 -04008041 if (++index < BTRFS_NR_RAID_TYPES)
8042 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04008043 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008044}
Zheng Yane8569812008-09-26 10:05:48 -04008045
Nikolay Borisov6f47c702018-03-13 12:22:32 +02008046/*
8047 * btrfs_reserve_extent - entry point to the extent allocator. Tries to find a
8048 * hole that is at least as big as @num_bytes.
8049 *
8050 * @root - The root that will contain this extent
8051 *
8052 * @ram_bytes - The amount of space in ram that @num_bytes take. This
8053 * is used for accounting purposes. This value differs
8054 * from @num_bytes only in the case of compressed extents.
8055 *
8056 * @num_bytes - Number of bytes to allocate on-disk.
8057 *
8058 * @min_alloc_size - Indicates the minimum amount of space that the
8059 * allocator should try to satisfy. In some cases
8060 * @num_bytes may be larger than what is required and if
8061 * the filesystem is fragmented then allocation fails.
8062 * However, the presence of @min_alloc_size gives a
8063 * chance to try and satisfy the smaller allocation.
8064 *
8065 * @empty_size - A hint that you plan on doing more COW. This is the
8066 * size in bytes the allocator should try to find free
8067 * next to the block it returns. This is just a hint and
8068 * may be ignored by the allocator.
8069 *
8070 * @hint_byte - Hint to the allocator to start searching above the byte
8071 * address passed. It might be ignored.
8072 *
8073 * @ins - This key is modified to record the found hole. It will
8074 * have the following values:
8075 * ins->objectid == start position
8076 * ins->flags = BTRFS_EXTENT_ITEM_KEY
8077 * ins->offset == the size of the hole.
8078 *
8079 * @is_data - Boolean flag indicating whether an extent is
8080 * allocated for data (true) or metadata (false)
8081 *
8082 * @delalloc - Boolean flag indicating whether this allocation is for
8083 * delalloc or not. If 'true' data_rwsem of block groups
8084 * is going to be acquired.
8085 *
8086 *
8087 * Returns 0 when an allocation succeeded or < 0 when an error occurred. In
8088 * case -ENOSPC is returned then @ins->offset will contain the size of the
8089 * largest available hole the allocator managed to find.
8090 */
Wang Xiaoguang18513092016-07-25 15:51:40 +08008091int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
Yan Zheng11833d62009-09-11 16:11:19 -04008092 u64 num_bytes, u64 min_alloc_size,
8093 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08008094 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05008095{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008096 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik36af4e02015-09-25 16:13:11 -04008097 bool final_tried = num_bytes == min_alloc_size;
David Sterbab6919a52013-04-29 13:39:40 +00008098 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05008099 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04008100
Jeff Mahoney1b868262017-05-17 11:38:35 -04008101 flags = get_alloc_profile_by_root(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04008102again:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008103 WARN_ON(num_bytes < fs_info->sectorsize);
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05008104 ret = find_free_extent(fs_info, ram_bytes, num_bytes, empty_size,
Wang Xiaoguang18513092016-07-25 15:51:40 +08008105 hint_byte, ins, flags, delalloc);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008106 if (!ret && !is_data) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008107 btrfs_dec_block_group_reservations(fs_info, ins->objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008108 } else if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08008109 if (!final_tried && ins->offset) {
8110 num_bytes = min(num_bytes >> 1, ins->offset);
Jeff Mahoneyda170662016-06-15 09:22:56 -04008111 num_bytes = round_down(num_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008112 fs_info->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05008113 num_bytes = max(num_bytes, min_alloc_size);
Wang Xiaoguang18513092016-07-25 15:51:40 +08008114 ram_bytes = num_bytes;
Miao Xie9e622d62012-01-26 15:01:12 -05008115 if (num_bytes == min_alloc_size)
8116 final_tried = true;
8117 goto again;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008118 } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xie9e622d62012-01-26 15:01:12 -05008119 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008120
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008121 sinfo = __find_space_info(fs_info, flags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008122 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008123 "allocation failed flags %llu, wanted %llu",
8124 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01008125 if (sinfo)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008126 dump_space_info(fs_info, sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05008127 }
Chris Mason925baed2008-06-25 16:01:30 -04008128 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008129
8130 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008131}
8132
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008133static int __btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008134 u64 start, u64 len,
8135 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04008136{
Josef Bacik0f9dd462008-09-23 13:14:11 -04008137 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05008138 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008139
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008140 cache = btrfs_lookup_block_group(fs_info, start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008141 if (!cache) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008142 btrfs_err(fs_info, "Unable to find block group for %llu",
8143 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008144 return -ENOSPC;
8145 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05008146
Chris Masone688b7252011-10-31 20:52:39 -04008147 if (pin)
David Sterbafdf08602019-03-20 12:12:32 +01008148 pin_down_extent(cache, start, len, 1);
Chris Masone688b7252011-10-31 20:52:39 -04008149 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008150 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008151 ret = btrfs_discard_extent(fs_info, start, len, NULL);
Chris Masone688b7252011-10-31 20:52:39 -04008152 btrfs_add_free_space(cache, start, len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08008153 btrfs_free_reserved_bytes(cache, len, delalloc);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008154 trace_btrfs_reserved_extent_free(fs_info, start, len);
Chris Masone688b7252011-10-31 20:52:39 -04008155 }
Dongsheng Yang31193212014-12-12 16:44:35 +08008156
Chris Masonfa9c0d792009-04-03 09:47:43 -04008157 btrfs_put_block_group(cache);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008158 return ret;
8159}
8160
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008161int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008162 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04008163{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008164 return __btrfs_free_reserved_extent(fs_info, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04008165}
8166
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008167int btrfs_free_and_pin_reserved_extent(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04008168 u64 start, u64 len)
8169{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008170 return __btrfs_free_reserved_extent(fs_info, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04008171}
8172
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008173static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008174 u64 parent, u64 root_objectid,
8175 u64 flags, u64 owner, u64 offset,
8176 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008177{
Nikolay Borisovef89b822018-06-20 15:48:58 +03008178 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008179 int ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008180 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008181 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008182 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008183 struct extent_buffer *leaf;
8184 int type;
8185 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04008186
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008187 if (parent > 0)
8188 type = BTRFS_SHARED_DATA_REF_KEY;
8189 else
8190 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04008191
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008192 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05008193
8194 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008195 if (!path)
8196 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05008197
Chris Masonb9473432009-03-13 11:00:37 -04008198 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008199 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8200 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008201 if (ret) {
8202 btrfs_free_path(path);
8203 return ret;
8204 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008205
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008206 leaf = path->nodes[0];
8207 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05008208 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008209 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
8210 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8211 btrfs_set_extent_flags(leaf, extent_item,
8212 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05008213
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008214 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8215 btrfs_set_extent_inline_ref_type(leaf, iref, type);
8216 if (parent > 0) {
8217 struct btrfs_shared_data_ref *ref;
8218 ref = (struct btrfs_shared_data_ref *)(iref + 1);
8219 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8220 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
8221 } else {
8222 struct btrfs_extent_data_ref *ref;
8223 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
8224 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
8225 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
8226 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
8227 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
8228 }
Chris Mason47e4bb92008-02-01 14:51:59 -05008229
8230 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05008231 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04008232
Nikolay Borisov25a356d2018-05-10 15:44:54 +03008233 ret = remove_from_free_space_tree(trans, ins->objectid, ins->offset);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008234 if (ret)
8235 return ret;
8236
David Sterba6b279402019-03-20 12:10:15 +01008237 ret = update_block_group(trans, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008238 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008239 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008240 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05008241 BUG();
8242 }
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008243 trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008244 return ret;
8245}
8246
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008247static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008248 struct btrfs_delayed_ref_node *node,
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03008249 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008250{
Nikolay Borisov9dcdbe02018-05-21 12:27:20 +03008251 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008252 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008253 struct btrfs_extent_item *extent_item;
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008254 struct btrfs_key extent_key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008255 struct btrfs_tree_block_info *block_info;
8256 struct btrfs_extent_inline_ref *iref;
8257 struct btrfs_path *path;
8258 struct extent_buffer *leaf;
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008259 struct btrfs_delayed_tree_ref *ref;
Josef Bacik3173a182013-03-07 14:22:04 -05008260 u32 size = sizeof(*extent_item) + sizeof(*iref);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008261 u64 num_bytes;
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03008262 u64 flags = extent_op->flags_to_set;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008263 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Josef Bacik3173a182013-03-07 14:22:04 -05008264
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008265 ref = btrfs_delayed_node_to_tree_ref(node);
8266
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008267 extent_key.objectid = node->bytenr;
8268 if (skinny_metadata) {
8269 extent_key.offset = ref->level;
8270 extent_key.type = BTRFS_METADATA_ITEM_KEY;
8271 num_bytes = fs_info->nodesize;
8272 } else {
8273 extent_key.offset = node->num_bytes;
8274 extent_key.type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik3173a182013-03-07 14:22:04 -05008275 size += sizeof(*block_info);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008276 num_bytes = node->num_bytes;
8277 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008278
8279 path = btrfs_alloc_path();
Josef Bacik80ee54b2018-10-11 15:54:22 -04008280 if (!path)
Mark Fashehd8926bb2011-07-13 10:38:47 -07008281 return -ENOMEM;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008282
8283 path->leave_spinning = 1;
8284 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008285 &extent_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008286 if (ret) {
Chris Masondd825252015-04-01 08:36:05 -07008287 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008288 return ret;
8289 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008290
8291 leaf = path->nodes[0];
8292 extent_item = btrfs_item_ptr(leaf, path->slots[0],
8293 struct btrfs_extent_item);
8294 btrfs_set_extent_refs(leaf, extent_item, 1);
8295 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8296 btrfs_set_extent_flags(leaf, extent_item,
8297 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008298
Josef Bacik3173a182013-03-07 14:22:04 -05008299 if (skinny_metadata) {
8300 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8301 } else {
8302 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03008303 btrfs_set_tree_block_key(leaf, block_info, &extent_op->key);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008304 btrfs_set_tree_block_level(leaf, block_info, ref->level);
Josef Bacik3173a182013-03-07 14:22:04 -05008305 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
8306 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008307
Nikolay Borisovd4b20732018-05-21 12:27:23 +03008308 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008309 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
8310 btrfs_set_extent_inline_ref_type(leaf, iref,
8311 BTRFS_SHARED_BLOCK_REF_KEY);
Nikolay Borisovd4b20732018-05-21 12:27:23 +03008312 btrfs_set_extent_inline_ref_offset(leaf, iref, ref->parent);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008313 } else {
8314 btrfs_set_extent_inline_ref_type(leaf, iref,
8315 BTRFS_TREE_BLOCK_REF_KEY);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008316 btrfs_set_extent_inline_ref_offset(leaf, iref, ref->root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008317 }
8318
8319 btrfs_mark_buffer_dirty(leaf);
8320 btrfs_free_path(path);
8321
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008322 ret = remove_from_free_space_tree(trans, extent_key.objectid,
8323 num_bytes);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008324 if (ret)
8325 return ret;
8326
David Sterba6b279402019-03-20 12:10:15 +01008327 ret = update_block_group(trans, extent_key.objectid,
Jeff Mahoney6202df62016-06-22 18:54:22 -04008328 fs_info->nodesize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008329 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008330 btrfs_err(fs_info, "update block group failed for %llu %llu",
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008331 extent_key.objectid, extent_key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008332 BUG();
8333 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04008334
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008335 trace_btrfs_reserved_extent_alloc(fs_info, extent_key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008336 fs_info->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008337 return ret;
8338}
8339
8340int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008341 struct btrfs_root *root, u64 owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08008342 u64 offset, u64 ram_bytes,
8343 struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008344{
Qu Wenruo76675592019-04-04 14:45:32 +08008345 struct btrfs_ref generic_ref = { 0 };
Chris Masone6dcd2d2008-07-17 12:53:50 -04008346 int ret;
Chris Mason1c2308f82008-09-23 13:14:13 -04008347
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008348 BUG_ON(root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04008349
Qu Wenruo76675592019-04-04 14:45:32 +08008350 btrfs_init_generic_ref(&generic_ref, BTRFS_ADD_DELAYED_EXTENT,
8351 ins->objectid, ins->offset, 0);
8352 btrfs_init_data_ref(&generic_ref, root->root_key.objectid, owner, offset);
Qu Wenruo8a5040f2019-04-04 14:45:33 +08008353 btrfs_ref_tree_mod(root->fs_info, &generic_ref);
Qu Wenruo76675592019-04-04 14:45:32 +08008354 ret = btrfs_add_delayed_data_ref(trans, &generic_ref,
8355 ram_bytes, NULL, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008356 return ret;
8357}
Chris Masone02119d2008-09-05 16:13:11 -04008358
8359/*
8360 * this is used by the tree logging recovery code. It records that
8361 * an extent has been allocated and makes sure to clear the free
8362 * space cache bits as well
8363 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008364int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008365 u64 root_objectid, u64 owner, u64 offset,
8366 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04008367{
Nikolay Borisov61da2ab2018-06-20 15:49:13 +03008368 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04008369 int ret;
8370 struct btrfs_block_group_cache *block_group;
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008371 struct btrfs_space_info *space_info;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008372
8373 /*
8374 * Mixed block groups will exclude before processing the log so we only
Nicholas D Steeves01327612016-05-19 21:18:45 -04008375 * need to do the exclude dance if this fs isn't mixed.
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008376 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008377 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008378 ret = __exclude_logged_extent(fs_info, ins->objectid,
8379 ins->offset);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008380 if (ret)
8381 return ret;
8382 }
Chris Masone02119d2008-09-05 16:13:11 -04008383
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008384 block_group = btrfs_lookup_block_group(fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008385 if (!block_group)
8386 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04008387
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008388 space_info = block_group->space_info;
8389 spin_lock(&space_info->lock);
8390 spin_lock(&block_group->lock);
8391 space_info->bytes_reserved += ins->offset;
8392 block_group->reserved += ins->offset;
8393 spin_unlock(&block_group->lock);
8394 spin_unlock(&space_info->lock);
8395
Nikolay Borisovef89b822018-06-20 15:48:58 +03008396 ret = alloc_reserved_file_extent(trans, 0, root_objectid, 0, owner,
8397 offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04008398 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04008399 return ret;
8400}
8401
Eric Sandeen48a3b632013-04-25 20:41:01 +00008402static struct extent_buffer *
8403btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008404 u64 bytenr, int level, u64 owner)
Chris Mason65b51a02008-08-01 15:11:20 -04008405{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008406 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason65b51a02008-08-01 15:11:20 -04008407 struct extent_buffer *buf;
8408
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008409 buf = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008410 if (IS_ERR(buf))
8411 return buf;
8412
Qu Wenruob72c3ab2018-08-21 09:53:47 +08008413 /*
8414 * Extra safety check in case the extent tree is corrupted and extent
8415 * allocator chooses to use a tree block which is already used and
8416 * locked.
8417 */
8418 if (buf->lock_owner == current->pid) {
8419 btrfs_err_rl(fs_info,
8420"tree block %llu owner %llu already locked by pid=%d, extent tree corruption detected",
8421 buf->start, btrfs_header_owner(buf), current->pid);
8422 free_extent_buffer(buf);
8423 return ERR_PTR(-EUCLEAN);
8424 }
8425
Chris Mason85d4e462011-07-26 16:11:19 -04008426 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04008427 btrfs_tree_lock(buf);
David Sterba6a884d7d2019-03-20 14:30:02 +01008428 btrfs_clean_tree_block(buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05008429 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008430
David Sterba8bead252018-04-04 02:03:48 +02008431 btrfs_set_lock_blocking_write(buf);
David Sterba4db8c522015-12-03 13:06:46 +01008432 set_extent_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008433
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008434 memzero_extent_buffer(buf, 0, sizeof(struct btrfs_header));
8435 btrfs_set_header_level(buf, level);
8436 btrfs_set_header_bytenr(buf, buf->start);
8437 btrfs_set_header_generation(buf, trans->transid);
8438 btrfs_set_header_backref_rev(buf, BTRFS_MIXED_BACKREF_REV);
8439 btrfs_set_header_owner(buf, owner);
Nikolay Borisovde37aa52018-10-30 16:43:24 +02008440 write_extent_buffer_fsid(buf, fs_info->fs_devices->metadata_uuid);
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008441 write_extent_buffer_chunk_tree_uuid(buf, fs_info->chunk_tree_uuid);
Chris Masond0c803c2008-09-11 16:17:57 -04008442 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01008443 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008444 /*
8445 * we allow two log transactions at a time, use different
Andrea Gelmini52042d82018-11-28 12:05:13 +01008446 * EXTENT bit to differentiate dirty pages.
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008447 */
Filipe Manana656f30d2014-09-26 12:25:56 +01008448 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008449 set_extent_dirty(&root->dirty_log_pages, buf->start,
8450 buf->start + buf->len - 1, GFP_NOFS);
8451 else
8452 set_extent_new(&root->dirty_log_pages, buf->start,
David Sterba3744dbe2016-04-26 23:54:39 +02008453 buf->start + buf->len - 1);
Chris Masond0c803c2008-09-11 16:17:57 -04008454 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01008455 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04008456 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
8457 buf->start + buf->len - 1, GFP_NOFS);
8458 }
Jeff Mahoney64c12922016-06-08 00:36:38 -04008459 trans->dirty = true;
Chris Masonb4ce94d2009-02-04 09:25:08 -05008460 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04008461 return buf;
8462}
8463
Yan, Zhengf0486c62010-05-16 10:46:25 -04008464static struct btrfs_block_rsv *
8465use_block_rsv(struct btrfs_trans_handle *trans,
8466 struct btrfs_root *root, u32 blocksize)
8467{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008468 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008469 struct btrfs_block_rsv *block_rsv;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008470 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008471 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00008472 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008473
8474 block_rsv = get_block_rsv(trans, root);
8475
Miao Xieb586b322013-05-13 13:55:10 +00008476 if (unlikely(block_rsv->size == 0))
8477 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00008478again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008479 ret = block_rsv_use_bytes(block_rsv, blocksize);
8480 if (!ret)
8481 return block_rsv;
8482
Miao Xieb586b322013-05-13 13:55:10 +00008483 if (block_rsv->failfast)
8484 return ERR_PTR(ret);
8485
Miao Xied88033d2013-05-13 13:55:12 +00008486 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
8487 global_updated = true;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008488 update_global_block_rsv(fs_info);
Miao Xied88033d2013-05-13 13:55:12 +00008489 goto again;
8490 }
8491
Josef Bacikba2c4d42018-12-03 10:20:33 -05008492 /*
8493 * The global reserve still exists to save us from ourselves, so don't
8494 * warn_on if we are short on our delayed refs reserve.
8495 */
8496 if (block_rsv->type != BTRFS_BLOCK_RSV_DELREFS &&
8497 btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xieb586b322013-05-13 13:55:10 +00008498 static DEFINE_RATELIMIT_STATE(_rs,
8499 DEFAULT_RATELIMIT_INTERVAL * 10,
8500 /*DEFAULT_RATELIMIT_BURST*/ 1);
8501 if (__ratelimit(&_rs))
8502 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05008503 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00008504 }
8505try_reserve:
8506 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
8507 BTRFS_RESERVE_NO_FLUSH);
8508 if (!ret)
8509 return block_rsv;
8510 /*
8511 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00008512 * the global reserve if its space type is the same as the global
8513 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00008514 */
Miao Xie5881cfc2013-05-13 13:55:11 +00008515 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
8516 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00008517 ret = block_rsv_use_bytes(global_rsv, blocksize);
8518 if (!ret)
8519 return global_rsv;
8520 }
8521 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008522}
8523
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008524static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
8525 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008526{
Lu Fengqi3a584172018-08-04 21:10:55 +08008527 block_rsv_add_bytes(block_rsv, blocksize, false);
Qu Wenruoff6bc372017-12-21 13:42:04 +08008528 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0, NULL);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008529}
8530
Chris Masonfec577f2007-02-26 10:40:21 -05008531/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04008532 * finds a free extent and does all the dirty work required for allocation
Omar Sandoval67b78592015-02-24 02:47:04 -08008533 * returns the tree buffer or an ERR_PTR on error.
Chris Masonfec577f2007-02-26 10:40:21 -05008534 */
David Sterba4d75f8a2014-06-15 01:54:12 +02008535struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
Omar Sandoval310712b2017-01-17 23:24:37 -08008536 struct btrfs_root *root,
8537 u64 parent, u64 root_objectid,
8538 const struct btrfs_disk_key *key,
8539 int level, u64 hint,
8540 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05008541{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008542 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone2fa7222007-03-12 16:22:34 -04008543 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008544 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04008545 struct extent_buffer *buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008546 struct btrfs_delayed_extent_op *extent_op;
Qu Wenruoed4f2552019-04-04 14:45:31 +08008547 struct btrfs_ref generic_ref = { 0 };
Yan, Zhengf0486c62010-05-16 10:46:25 -04008548 u64 flags = 0;
8549 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008550 u32 blocksize = fs_info->nodesize;
8551 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008552
David Sterba05653ef2016-07-15 15:23:37 +02008553#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008554 if (btrfs_is_testing(fs_info)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008555 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008556 level, root_objectid);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008557 if (!IS_ERR(buf))
8558 root->alloc_bytenr += blocksize;
8559 return buf;
8560 }
David Sterba05653ef2016-07-15 15:23:37 +02008561#endif
David Sterbafccb84c2014-09-29 23:53:21 +02008562
Yan, Zhengf0486c62010-05-16 10:46:25 -04008563 block_rsv = use_block_rsv(trans, root, blocksize);
8564 if (IS_ERR(block_rsv))
8565 return ERR_CAST(block_rsv);
8566
Wang Xiaoguang18513092016-07-25 15:51:40 +08008567 ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08008568 empty_size, hint, &ins, 0, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008569 if (ret)
8570 goto out_unuse;
Chris Mason55c69072008-01-09 15:55:33 -05008571
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008572 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level,
8573 root_objectid);
Omar Sandoval67b78592015-02-24 02:47:04 -08008574 if (IS_ERR(buf)) {
8575 ret = PTR_ERR(buf);
8576 goto out_free_reserved;
8577 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008578
8579 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
8580 if (parent == 0)
8581 parent = ins.objectid;
8582 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
8583 } else
8584 BUG_ON(parent > 0);
8585
8586 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Miao Xie78a61842012-11-21 02:21:28 +00008587 extent_op = btrfs_alloc_delayed_extent_op();
Omar Sandoval67b78592015-02-24 02:47:04 -08008588 if (!extent_op) {
8589 ret = -ENOMEM;
8590 goto out_free_buf;
8591 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008592 if (key)
8593 memcpy(&extent_op->key, key, sizeof(extent_op->key));
8594 else
8595 memset(&extent_op->key, 0, sizeof(extent_op->key));
8596 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01008597 extent_op->update_key = skinny_metadata ? false : true;
8598 extent_op->update_flags = true;
8599 extent_op->is_data = false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04008600 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008601
Qu Wenruoed4f2552019-04-04 14:45:31 +08008602 btrfs_init_generic_ref(&generic_ref, BTRFS_ADD_DELAYED_EXTENT,
8603 ins.objectid, ins.offset, parent);
8604 generic_ref.real_root = root->root_key.objectid;
8605 btrfs_init_tree_ref(&generic_ref, level, root_objectid);
Qu Wenruo8a5040f2019-04-04 14:45:33 +08008606 btrfs_ref_tree_mod(fs_info, &generic_ref);
Qu Wenruoed4f2552019-04-04 14:45:31 +08008607 ret = btrfs_add_delayed_tree_ref(trans, &generic_ref,
Omar Sandoval7be07912017-06-06 16:45:30 -07008608 extent_op, NULL, NULL);
Omar Sandoval67b78592015-02-24 02:47:04 -08008609 if (ret)
8610 goto out_free_delayed;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008611 }
Chris Masonfec577f2007-02-26 10:40:21 -05008612 return buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008613
8614out_free_delayed:
8615 btrfs_free_delayed_extent_op(extent_op);
8616out_free_buf:
8617 free_extent_buffer(buf);
8618out_free_reserved:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008619 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008620out_unuse:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008621 unuse_block_rsv(fs_info, block_rsv, blocksize);
Omar Sandoval67b78592015-02-24 02:47:04 -08008622 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05008623}
Chris Masona28ec192007-03-06 20:08:01 -05008624
Yan Zheng2c47e6052009-06-27 21:07:35 -04008625struct walk_control {
8626 u64 refs[BTRFS_MAX_LEVEL];
8627 u64 flags[BTRFS_MAX_LEVEL];
8628 struct btrfs_key update_progress;
Josef Bacikaea6f022019-02-06 15:46:15 -05008629 struct btrfs_key drop_progress;
8630 int drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008631 int stage;
8632 int level;
8633 int shared_level;
8634 int update_ref;
8635 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008636 int reada_slot;
8637 int reada_count;
Josef Bacik78c52d92019-02-06 15:46:14 -05008638 int restarted;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008639};
8640
8641#define DROP_REFERENCE 1
8642#define UPDATE_BACKREF 2
8643
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008644static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
8645 struct btrfs_root *root,
8646 struct walk_control *wc,
8647 struct btrfs_path *path)
8648{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008649 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008650 u64 bytenr;
8651 u64 generation;
8652 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008653 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008654 u32 nritems;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008655 struct btrfs_key key;
8656 struct extent_buffer *eb;
8657 int ret;
8658 int slot;
8659 int nread = 0;
8660
8661 if (path->slots[wc->level] < wc->reada_slot) {
8662 wc->reada_count = wc->reada_count * 2 / 3;
8663 wc->reada_count = max(wc->reada_count, 2);
8664 } else {
8665 wc->reada_count = wc->reada_count * 3 / 2;
8666 wc->reada_count = min_t(int, wc->reada_count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008667 BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008668 }
8669
8670 eb = path->nodes[wc->level];
8671 nritems = btrfs_header_nritems(eb);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008672
8673 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
8674 if (nread >= wc->reada_count)
8675 break;
8676
8677 cond_resched();
8678 bytenr = btrfs_node_blockptr(eb, slot);
8679 generation = btrfs_node_ptr_generation(eb, slot);
8680
8681 if (slot == path->slots[wc->level])
8682 goto reada;
8683
8684 if (wc->stage == UPDATE_BACKREF &&
8685 generation <= root->root_key.offset)
8686 continue;
8687
Yan, Zheng94fcca92009-10-09 09:25:16 -04008688 /* We don't lock the tree block, it's OK to be racy here */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008689 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -05008690 wc->level - 1, 1, &refs,
8691 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008692 /* We don't care about errors in readahead. */
8693 if (ret < 0)
8694 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008695 BUG_ON(refs == 0);
8696
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008697 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008698 if (refs == 1)
8699 goto reada;
8700
Yan, Zheng94fcca92009-10-09 09:25:16 -04008701 if (wc->level == 1 &&
8702 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8703 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008704 if (!wc->update_ref ||
8705 generation <= root->root_key.offset)
8706 continue;
8707 btrfs_node_key_to_cpu(eb, &key, slot);
8708 ret = btrfs_comp_cpu_keys(&key,
8709 &wc->update_progress);
8710 if (ret < 0)
8711 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008712 } else {
8713 if (wc->level == 1 &&
8714 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8715 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008716 }
8717reada:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008718 readahead_tree_block(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008719 nread++;
8720 }
8721 wc->reada_slot = slot;
8722}
8723
Chris Mason9aca1d52007-03-13 11:09:37 -04008724/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008725 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008726 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04008727 * when wc->stage == UPDATE_BACKREF, this function updates
8728 * back refs for pointers in the block.
8729 *
8730 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04008731 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008732static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
8733 struct btrfs_root *root,
8734 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008735 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04008736{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008737 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008738 int level = wc->level;
8739 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04008740 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8741 int ret;
8742
8743 if (wc->stage == UPDATE_BACKREF &&
8744 btrfs_header_owner(eb) != root->root_key.objectid)
8745 return 1;
8746
8747 /*
8748 * when reference count of tree block is 1, it won't increase
8749 * again. once full backref flag is set, we never clear it.
8750 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04008751 if (lookup_info &&
8752 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
8753 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008754 BUG_ON(!path->locks[level]);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008755 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05008756 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008757 &wc->refs[level],
8758 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008759 BUG_ON(ret == -ENOMEM);
8760 if (ret)
8761 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008762 BUG_ON(wc->refs[level] == 0);
8763 }
8764
Yan Zheng2c47e6052009-06-27 21:07:35 -04008765 if (wc->stage == DROP_REFERENCE) {
8766 if (wc->refs[level] > 1)
8767 return 1;
8768
8769 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04008770 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008771 path->locks[level] = 0;
8772 }
8773 return 0;
8774 }
8775
8776 /* wc->stage == UPDATE_BACKREF */
8777 if (!(wc->flags[level] & flag)) {
8778 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07008779 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008780 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07008781 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008782 BUG_ON(ret); /* -ENOMEM */
David Sterbaf5c8daa2019-03-20 11:43:36 +01008783 ret = btrfs_set_disk_extent_flags(trans, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04008784 eb->len, flag,
8785 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008786 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008787 wc->flags[level] |= flag;
8788 }
8789
8790 /*
8791 * the block is shared by multiple trees, so it's not good to
8792 * keep the tree lock
8793 */
8794 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008795 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008796 path->locks[level] = 0;
8797 }
8798 return 0;
8799}
8800
8801/*
Josef Bacik78c52d92019-02-06 15:46:14 -05008802 * This is used to verify a ref exists for this root to deal with a bug where we
8803 * would have a drop_progress key that hadn't been updated properly.
8804 */
8805static int check_ref_exists(struct btrfs_trans_handle *trans,
8806 struct btrfs_root *root, u64 bytenr, u64 parent,
8807 int level)
8808{
8809 struct btrfs_path *path;
8810 struct btrfs_extent_inline_ref *iref;
8811 int ret;
8812
8813 path = btrfs_alloc_path();
8814 if (!path)
8815 return -ENOMEM;
8816
8817 ret = lookup_extent_backref(trans, path, &iref, bytenr,
8818 root->fs_info->nodesize, parent,
8819 root->root_key.objectid, level, 0);
8820 btrfs_free_path(path);
8821 if (ret == -ENOENT)
8822 return 0;
8823 if (ret < 0)
8824 return ret;
8825 return 1;
8826}
8827
8828/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008829 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008830 *
8831 * when wc->stage == DROP_REFERENCE, this function checks
8832 * reference count of the block pointed to. if the block
8833 * is shared and we need update back refs for the subtree
8834 * rooted at the block, this function changes wc->stage to
8835 * UPDATE_BACKREF. if the block is shared and there is no
8836 * need to update back, this function drops the reference
8837 * to the block.
8838 *
8839 * NOTE: return value 1 means we should stop walking down.
8840 */
8841static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8842 struct btrfs_root *root,
8843 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008844 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008845{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008846 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008847 u64 bytenr;
8848 u64 generation;
8849 u64 parent;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008850 struct btrfs_key key;
Qu Wenruo581c1762018-03-29 09:08:11 +08008851 struct btrfs_key first_key;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08008852 struct btrfs_ref ref = { 0 };
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008853 struct extent_buffer *next;
8854 int level = wc->level;
8855 int reada = 0;
8856 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008857 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008858
8859 generation = btrfs_node_ptr_generation(path->nodes[level],
8860 path->slots[level]);
8861 /*
8862 * if the lower level block was created before the snapshot
8863 * was created, we know there is no need to update back refs
8864 * for the subtree
8865 */
8866 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008867 generation <= root->root_key.offset) {
8868 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008869 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008870 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008871
8872 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
Qu Wenruo581c1762018-03-29 09:08:11 +08008873 btrfs_node_key_to_cpu(path->nodes[level], &first_key,
8874 path->slots[level]);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008875
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008876 next = find_extent_buffer(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008877 if (!next) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008878 next = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008879 if (IS_ERR(next))
8880 return PTR_ERR(next);
8881
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008882 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8883 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008884 reada = 1;
8885 }
8886 btrfs_tree_lock(next);
David Sterba8bead252018-04-04 02:03:48 +02008887 btrfs_set_lock_blocking_write(next);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008888
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008889 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008890 &wc->refs[level - 1],
8891 &wc->flags[level - 1]);
Josef Bacik48672682016-09-23 13:23:28 +02008892 if (ret < 0)
8893 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008894
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008895 if (unlikely(wc->refs[level - 1] == 0)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008896 btrfs_err(fs_info, "Missing references.");
Josef Bacik48672682016-09-23 13:23:28 +02008897 ret = -EIO;
8898 goto out_unlock;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008899 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008900 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008901
Yan, Zheng94fcca92009-10-09 09:25:16 -04008902 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008903 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008904 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008905 if (level == 1 &&
8906 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8907 goto skip;
8908
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008909 if (!wc->update_ref ||
8910 generation <= root->root_key.offset)
8911 goto skip;
8912
8913 btrfs_node_key_to_cpu(path->nodes[level], &key,
8914 path->slots[level]);
8915 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8916 if (ret < 0)
8917 goto skip;
8918
8919 wc->stage = UPDATE_BACKREF;
8920 wc->shared_level = level - 1;
8921 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008922 } else {
8923 if (level == 1 &&
8924 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8925 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008926 }
8927
Chris Masonb9fab912012-05-06 07:23:47 -04008928 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008929 btrfs_tree_unlock(next);
8930 free_extent_buffer(next);
8931 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008932 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008933 }
8934
8935 if (!next) {
8936 if (reada && level == 1)
8937 reada_walk_down(trans, root, wc, path);
Qu Wenruo581c1762018-03-29 09:08:11 +08008938 next = read_tree_block(fs_info, bytenr, generation, level - 1,
8939 &first_key);
Liu Bo64c043d2015-05-25 17:30:15 +08008940 if (IS_ERR(next)) {
8941 return PTR_ERR(next);
8942 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008943 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008944 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008945 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008946 btrfs_tree_lock(next);
David Sterba8bead252018-04-04 02:03:48 +02008947 btrfs_set_lock_blocking_write(next);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008948 }
8949
8950 level--;
Josef Bacik48672682016-09-23 13:23:28 +02008951 ASSERT(level == btrfs_header_level(next));
8952 if (level != btrfs_header_level(next)) {
8953 btrfs_err(root->fs_info, "mismatched level");
8954 ret = -EIO;
8955 goto out_unlock;
8956 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008957 path->nodes[level] = next;
8958 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008959 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008960 wc->level = level;
8961 if (wc->level == 1)
8962 wc->reada_slot = 0;
8963 return 0;
8964skip:
8965 wc->refs[level - 1] = 0;
8966 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008967 if (wc->stage == DROP_REFERENCE) {
8968 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
8969 parent = path->nodes[level]->start;
8970 } else {
Josef Bacik48672682016-09-23 13:23:28 +02008971 ASSERT(root->root_key.objectid ==
Yan, Zheng94fcca92009-10-09 09:25:16 -04008972 btrfs_header_owner(path->nodes[level]));
Josef Bacik48672682016-09-23 13:23:28 +02008973 if (root->root_key.objectid !=
8974 btrfs_header_owner(path->nodes[level])) {
8975 btrfs_err(root->fs_info,
8976 "mismatched block owner");
8977 ret = -EIO;
8978 goto out_unlock;
8979 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008980 parent = 0;
8981 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008982
Qu Wenruo2cd86d32018-09-27 14:42:33 +08008983 /*
Josef Bacik78c52d92019-02-06 15:46:14 -05008984 * If we had a drop_progress we need to verify the refs are set
8985 * as expected. If we find our ref then we know that from here
8986 * on out everything should be correct, and we can clear the
8987 * ->restarted flag.
8988 */
8989 if (wc->restarted) {
8990 ret = check_ref_exists(trans, root, bytenr, parent,
8991 level - 1);
8992 if (ret < 0)
8993 goto out_unlock;
8994 if (ret == 0)
8995 goto no_delete;
8996 ret = 0;
8997 wc->restarted = 0;
8998 }
8999
9000 /*
Qu Wenruo2cd86d32018-09-27 14:42:33 +08009001 * Reloc tree doesn't contribute to qgroup numbers, and we have
9002 * already accounted them at merge time (replace_path),
9003 * thus we could skip expensive subtree trace here.
9004 */
9005 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
9006 need_account) {
Lu Fengqideb40622018-07-18 14:45:38 +08009007 ret = btrfs_qgroup_trace_subtree(trans, next,
Qu Wenruo33d1f052016-10-18 09:31:28 +08009008 generation, level - 1);
Mark Fasheh11526512014-07-17 12:39:01 -07009009 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009010 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009011 "Error %d accounting shared subtree. Quota is out of sync, rescan required.",
9012 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07009013 }
9014 }
Josef Bacikaea6f022019-02-06 15:46:15 -05009015
9016 /*
9017 * We need to update the next key in our walk control so we can
9018 * update the drop_progress key accordingly. We don't care if
9019 * find_next_key doesn't find a key because that means we're at
9020 * the end and are going to clean up now.
9021 */
9022 wc->drop_level = level;
9023 find_next_key(path, level, &wc->drop_progress);
9024
Qu Wenruoffd4bb22019-04-04 14:45:36 +08009025 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr,
9026 fs_info->nodesize, parent);
9027 btrfs_init_tree_ref(&ref, level - 1, root->root_key.objectid);
9028 ret = btrfs_free_extent(trans, &ref);
Josef Bacik48672682016-09-23 13:23:28 +02009029 if (ret)
9030 goto out_unlock;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009031 }
Josef Bacik78c52d92019-02-06 15:46:14 -05009032no_delete:
Josef Bacik48672682016-09-23 13:23:28 +02009033 *lookup_info = 1;
9034 ret = 1;
9035
9036out_unlock:
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009037 btrfs_tree_unlock(next);
9038 free_extent_buffer(next);
Josef Bacik48672682016-09-23 13:23:28 +02009039
9040 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009041}
9042
9043/*
Liu Bo2c016dc2012-12-26 15:32:17 +08009044 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04009045 *
9046 * when wc->stage == DROP_REFERENCE, this function drops
9047 * reference count on the block.
9048 *
9049 * when wc->stage == UPDATE_BACKREF, this function changes
9050 * wc->stage back to DROP_REFERENCE if we changed wc->stage
9051 * to UPDATE_BACKREF previously while processing the block.
9052 *
9053 * NOTE: return value 1 means we should stop walking up.
9054 */
9055static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
9056 struct btrfs_root *root,
9057 struct btrfs_path *path,
9058 struct walk_control *wc)
9059{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009060 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009061 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009062 int level = wc->level;
9063 struct extent_buffer *eb = path->nodes[level];
9064 u64 parent = 0;
9065
9066 if (wc->stage == UPDATE_BACKREF) {
9067 BUG_ON(wc->shared_level < level);
9068 if (level < wc->shared_level)
9069 goto out;
9070
Yan Zheng2c47e6052009-06-27 21:07:35 -04009071 ret = find_next_key(path, level + 1, &wc->update_progress);
9072 if (ret > 0)
9073 wc->update_ref = 0;
9074
9075 wc->stage = DROP_REFERENCE;
9076 wc->shared_level = -1;
9077 path->slots[level] = 0;
9078
9079 /*
9080 * check reference count again if the block isn't locked.
9081 * we should start walking down the tree again if reference
9082 * count is one.
9083 */
9084 if (!path->locks[level]) {
9085 BUG_ON(level == 0);
9086 btrfs_tree_lock(eb);
David Sterba8bead252018-04-04 02:03:48 +02009087 btrfs_set_lock_blocking_write(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009088 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009089
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009090 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05009091 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009092 &wc->refs[level],
9093 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009094 if (ret < 0) {
9095 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009096 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009097 return ret;
9098 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009099 BUG_ON(wc->refs[level] == 0);
9100 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04009101 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009102 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009103 return 1;
9104 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009105 }
9106 }
9107
9108 /* wc->stage == DROP_REFERENCE */
9109 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
9110
9111 if (wc->refs[level] == 1) {
9112 if (level == 0) {
9113 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07009114 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009115 else
Josef Bacike339a6b2014-07-02 10:54:25 -07009116 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009117 BUG_ON(ret); /* -ENOMEM */
Qu Wenruoc4140cb2019-04-04 14:45:37 +08009118 if (is_fstree(root->root_key.objectid)) {
9119 ret = btrfs_qgroup_trace_leaf_items(trans, eb);
9120 if (ret) {
9121 btrfs_err_rl(fs_info,
9122 "error %d accounting leaf items, quota is out of sync, rescan required",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009123 ret);
Qu Wenruoc4140cb2019-04-04 14:45:37 +08009124 }
Mark Fasheh11526512014-07-17 12:39:01 -07009125 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009126 }
David Sterba6a884d7d2019-03-20 14:30:02 +01009127 /* make block locked assertion in btrfs_clean_tree_block happy */
Yan Zheng2c47e6052009-06-27 21:07:35 -04009128 if (!path->locks[level] &&
9129 btrfs_header_generation(eb) == trans->transid) {
9130 btrfs_tree_lock(eb);
David Sterba8bead252018-04-04 02:03:48 +02009131 btrfs_set_lock_blocking_write(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009132 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009133 }
David Sterba6a884d7d2019-03-20 14:30:02 +01009134 btrfs_clean_tree_block(eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009135 }
9136
9137 if (eb == root->node) {
9138 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9139 parent = eb->start;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009140 else if (root->root_key.objectid != btrfs_header_owner(eb))
9141 goto owner_mismatch;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009142 } else {
9143 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9144 parent = path->nodes[level + 1]->start;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009145 else if (root->root_key.objectid !=
9146 btrfs_header_owner(path->nodes[level + 1]))
9147 goto owner_mismatch;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009148 }
9149
Jan Schmidt5581a512012-05-16 17:04:52 +02009150 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009151out:
9152 wc->refs[level] = 0;
9153 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009154 return 0;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009155
9156owner_mismatch:
9157 btrfs_err_rl(fs_info, "unexpected tree owner, have %llu expect %llu",
9158 btrfs_header_owner(eb), root->root_key.objectid);
9159 return -EUCLEAN;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009160}
9161
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009162static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
9163 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009164 struct btrfs_path *path,
9165 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009166{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009167 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04009168 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009169 int ret;
9170
Yan Zheng2c47e6052009-06-27 21:07:35 -04009171 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04009172 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009173 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009174 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009175
Yan Zheng2c47e6052009-06-27 21:07:35 -04009176 if (level == 0)
9177 break;
9178
Yan, Zheng7a7965f2010-02-01 02:41:17 +00009179 if (path->slots[level] >=
9180 btrfs_header_nritems(path->nodes[level]))
9181 break;
9182
Yan, Zheng94fcca92009-10-09 09:25:16 -04009183 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009184 if (ret > 0) {
9185 path->slots[level]++;
9186 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00009187 } else if (ret < 0)
9188 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009189 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009190 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009191 return 0;
9192}
9193
Chris Masond3977122009-01-05 21:25:51 -05009194static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05009195 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04009196 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009197 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05009198{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009199 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05009200 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04009201
Yan Zheng2c47e6052009-06-27 21:07:35 -04009202 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
9203 while (level < max_level && path->nodes[level]) {
9204 wc->level = level;
9205 if (path->slots[level] + 1 <
9206 btrfs_header_nritems(path->nodes[level])) {
9207 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05009208 return 0;
9209 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009210 ret = walk_up_proc(trans, root, path, wc);
9211 if (ret > 0)
9212 return 0;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009213 if (ret < 0)
9214 return ret;
Chris Masonbd56b302009-02-04 09:27:02 -05009215
Yan Zheng2c47e6052009-06-27 21:07:35 -04009216 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04009217 btrfs_tree_unlock_rw(path->nodes[level],
9218 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009219 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009220 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009221 free_extent_buffer(path->nodes[level]);
9222 path->nodes[level] = NULL;
9223 level++;
Chris Mason20524f02007-03-10 06:35:47 -05009224 }
9225 }
9226 return 1;
9227}
9228
Chris Mason9aca1d52007-03-13 11:09:37 -04009229/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04009230 * drop a subvolume tree.
9231 *
9232 * this function traverses the tree freeing any blocks that only
9233 * referenced by the tree.
9234 *
9235 * when a shared tree block is found. this function decreases its
9236 * reference count by one. if update_ref is true, this function
9237 * also make sure backrefs for the shared block and all lower level
9238 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00009239 *
9240 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04009241 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04009242int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009243 struct btrfs_block_rsv *block_rsv, int update_ref,
9244 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05009245{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009246 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04009247 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009248 struct btrfs_trans_handle *trans;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009249 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04009250 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009251 struct walk_control *wc;
9252 struct btrfs_key key;
9253 int err = 0;
9254 int ret;
9255 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04009256 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05009257
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09009258 btrfs_debug(fs_info, "Drop subvolume %llu", root->root_key.objectid);
Mark Fasheh11526512014-07-17 12:39:01 -07009259
Chris Mason5caf2a02007-04-02 11:20:42 -04009260 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009261 if (!path) {
9262 err = -ENOMEM;
9263 goto out;
9264 }
Chris Mason20524f02007-03-10 06:35:47 -05009265
Yan Zheng2c47e6052009-06-27 21:07:35 -04009266 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07009267 if (!wc) {
9268 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009269 err = -ENOMEM;
9270 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07009271 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009272
Yan, Zhenga22285a2010-05-16 10:48:46 -04009273 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009274 if (IS_ERR(trans)) {
9275 err = PTR_ERR(trans);
9276 goto out_free;
9277 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00009278
Josef Bacik0568e822018-11-30 11:52:14 -05009279 err = btrfs_run_delayed_items(trans);
9280 if (err)
9281 goto out_end_trans;
9282
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009283 if (block_rsv)
9284 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009285
Josef Bacik83354f02018-11-30 11:52:13 -05009286 /*
9287 * This will help us catch people modifying the fs tree while we're
9288 * dropping it. It is unsafe to mess with the fs tree while it's being
9289 * dropped as we unlock the root node and parent nodes as we walk down
9290 * the tree, assuming nothing will change. If something does change
9291 * then we'll have stale information and drop references to blocks we've
9292 * already dropped.
9293 */
9294 set_bit(BTRFS_ROOT_DELETING, &root->state);
Chris Mason9f3a7422007-08-07 15:52:19 -04009295 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009296 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009297 path->nodes[level] = btrfs_lock_root_node(root);
David Sterba8bead252018-04-04 02:03:48 +02009298 btrfs_set_lock_blocking_write(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04009299 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009300 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009301 memset(&wc->update_progress, 0,
9302 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04009303 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04009304 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009305 memcpy(&wc->update_progress, &key,
9306 sizeof(wc->update_progress));
9307
Chris Mason6702ed42007-08-07 16:15:09 -04009308 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009309 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04009310 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009311 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
9312 path->lowest_level = 0;
9313 if (ret < 0) {
9314 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009315 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04009316 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009317 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009318
Chris Mason7d9eb122008-07-08 14:19:17 -04009319 /*
9320 * unlock our path, this is safe because only this
9321 * function is allowed to delete this snapshot
9322 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009323 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04009324
Yan Zheng2c47e6052009-06-27 21:07:35 -04009325 level = btrfs_header_level(root->node);
9326 while (1) {
9327 btrfs_tree_lock(path->nodes[level]);
David Sterba8bead252018-04-04 02:03:48 +02009328 btrfs_set_lock_blocking_write(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009329 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009330
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009331 ret = btrfs_lookup_extent_info(trans, fs_info,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009332 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05009333 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04009334 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009335 if (ret < 0) {
9336 err = ret;
9337 goto out_end_trans;
9338 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009339 BUG_ON(wc->refs[level] == 0);
9340
9341 if (level == root_item->drop_level)
9342 break;
9343
9344 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009345 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009346 WARN_ON(wc->refs[level] != 1);
9347 level--;
9348 }
9349 }
9350
Josef Bacik78c52d92019-02-06 15:46:14 -05009351 wc->restarted = test_bit(BTRFS_ROOT_DEAD_TREE, &root->state);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009352 wc->level = level;
9353 wc->shared_level = -1;
9354 wc->stage = DROP_REFERENCE;
9355 wc->update_ref = update_ref;
9356 wc->keep_locks = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009357 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009358
9359 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00009360
Yan Zheng2c47e6052009-06-27 21:07:35 -04009361 ret = walk_down_tree(trans, root, path, wc);
9362 if (ret < 0) {
9363 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04009364 break;
9365 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009366
9367 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
9368 if (ret < 0) {
9369 err = ret;
9370 break;
9371 }
9372
9373 if (ret > 0) {
9374 BUG_ON(wc->stage != DROP_REFERENCE);
9375 break;
9376 }
9377
9378 if (wc->stage == DROP_REFERENCE) {
Josef Bacikaea6f022019-02-06 15:46:15 -05009379 wc->drop_level = wc->level;
9380 btrfs_node_key_to_cpu(path->nodes[wc->drop_level],
9381 &wc->drop_progress,
9382 path->slots[wc->drop_level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009383 }
Josef Bacikaea6f022019-02-06 15:46:15 -05009384 btrfs_cpu_key_to_disk(&root_item->drop_progress,
9385 &wc->drop_progress);
9386 root_item->drop_level = wc->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009387
9388 BUG_ON(wc->level == 0);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009389 if (btrfs_should_end_transaction(trans) ||
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009390 (!for_reloc && btrfs_need_cleaner_sleep(fs_info))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009391 ret = btrfs_update_root(trans, tree_root,
9392 &root->root_key,
9393 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009394 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009395 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009396 err = ret;
9397 goto out_end_trans;
9398 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009399
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009400 btrfs_end_transaction_throttle(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009401 if (!for_reloc && btrfs_need_cleaner_sleep(fs_info)) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009402 btrfs_debug(fs_info,
9403 "drop snapshot early exit");
Josef Bacik3c8f2422013-07-15 11:57:06 -04009404 err = -EAGAIN;
9405 goto out_free;
9406 }
9407
Yan, Zhenga22285a2010-05-16 10:48:46 -04009408 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009409 if (IS_ERR(trans)) {
9410 err = PTR_ERR(trans);
9411 goto out_free;
9412 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009413 if (block_rsv)
9414 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04009415 }
Chris Mason20524f02007-03-10 06:35:47 -05009416 }
David Sterbab3b4aa72011-04-21 01:20:15 +02009417 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009418 if (err)
9419 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009420
Lu Fengqiab9ce7d2018-08-01 11:32:27 +08009421 ret = btrfs_del_root(trans, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009422 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009423 btrfs_abort_transaction(trans, ret);
Jeff Mahoneye19182c2017-12-04 13:11:45 -05009424 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009425 goto out_end_trans;
9426 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009427
Yan, Zheng76dda932009-09-21 16:00:26 -04009428 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00009429 ret = btrfs_find_root(tree_root, &root->root_key, path,
9430 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009431 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009432 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009433 err = ret;
9434 goto out_end_trans;
9435 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05009436 /* if we fail to delete the orphan item this time
9437 * around, it'll get picked up the next time.
9438 *
9439 * The most common failure here is just -ENOENT.
9440 */
9441 btrfs_del_orphan_item(trans, tree_root,
9442 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04009443 }
9444 }
9445
Miao Xie27cdeb72014-04-02 19:51:05 +08009446 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Josef Bacik2b9dbef2015-09-15 10:07:04 -04009447 btrfs_add_dropped_root(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009448 } else {
9449 free_extent_buffer(root->node);
9450 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00009451 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009452 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04009453 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009454out_end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009455 btrfs_end_transaction_throttle(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009456out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04009457 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04009458 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009459out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04009460 /*
9461 * So if we need to stop dropping the snapshot for whatever reason we
9462 * need to make sure to add it back to the dead root list so that we
9463 * keep trying to do the work later. This also cleans up roots if we
9464 * don't have it in the radix (like when we recover after a power fail
9465 * or unmount) so we don't leak memory.
9466 */
Thomas Meyer897ca812017-10-07 16:02:21 +02009467 if (!for_reloc && !root_dropped)
Josef Bacikd29a9f62013-07-17 19:30:20 -04009468 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08009469 if (err && err != -EAGAIN)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009470 btrfs_handle_fs_error(fs_info, err, NULL);
Jeff Mahoney2c536792011-10-03 23:22:41 -04009471 return err;
Chris Mason20524f02007-03-10 06:35:47 -05009472}
Chris Mason9078a3e2007-04-26 16:46:15 -04009473
Yan Zheng2c47e6052009-06-27 21:07:35 -04009474/*
9475 * drop subtree rooted at tree block 'node'.
9476 *
9477 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009478 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04009479 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04009480int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
9481 struct btrfs_root *root,
9482 struct extent_buffer *node,
9483 struct extent_buffer *parent)
9484{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009485 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009486 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009487 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009488 int level;
9489 int parent_level;
9490 int ret = 0;
9491 int wret;
9492
Yan Zheng2c47e6052009-06-27 21:07:35 -04009493 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
9494
Yan Zhengf82d02d2008-10-29 14:49:05 -04009495 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009496 if (!path)
9497 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009498
Yan Zheng2c47e6052009-06-27 21:07:35 -04009499 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009500 if (!wc) {
9501 btrfs_free_path(path);
9502 return -ENOMEM;
9503 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009504
Chris Masonb9447ef82009-03-09 11:45:38 -04009505 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009506 parent_level = btrfs_header_level(parent);
9507 extent_buffer_get(parent);
9508 path->nodes[parent_level] = parent;
9509 path->slots[parent_level] = btrfs_header_nritems(parent);
9510
Chris Masonb9447ef82009-03-09 11:45:38 -04009511 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009512 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009513 path->nodes[level] = node;
9514 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009515 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009516
9517 wc->refs[parent_level] = 1;
9518 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
9519 wc->level = level;
9520 wc->shared_level = -1;
9521 wc->stage = DROP_REFERENCE;
9522 wc->update_ref = 0;
9523 wc->keep_locks = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009524 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009525
9526 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009527 wret = walk_down_tree(trans, root, path, wc);
9528 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04009529 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009530 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009531 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009532
Yan Zheng2c47e6052009-06-27 21:07:35 -04009533 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009534 if (wret < 0)
9535 ret = wret;
9536 if (wret != 0)
9537 break;
9538 }
9539
Yan Zheng2c47e6052009-06-27 21:07:35 -04009540 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009541 btrfs_free_path(path);
9542 return ret;
9543}
9544
Jeff Mahoney6202df62016-06-22 18:54:22 -04009545static u64 update_block_group_flags(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04009546{
9547 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009548 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04009549
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009550 /*
9551 * if restripe for this chunk_type is on pick target profile and
9552 * return, otherwise do the usual balance
9553 */
Jeff Mahoney6202df62016-06-22 18:54:22 -04009554 stripped = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009555 if (stripped)
9556 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02009557
Jeff Mahoney6202df62016-06-22 18:54:22 -04009558 num_devices = fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05009559
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009560 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009561 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009562 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
9563
Chris Masonec44a352008-04-28 15:29:52 -04009564 if (num_devices == 1) {
9565 stripped |= BTRFS_BLOCK_GROUP_DUP;
9566 stripped = flags & ~stripped;
9567
9568 /* turn raid0 into single device chunks */
9569 if (flags & BTRFS_BLOCK_GROUP_RAID0)
9570 return stripped;
9571
9572 /* turn mirroring into duplication */
9573 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
9574 BTRFS_BLOCK_GROUP_RAID10))
9575 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04009576 } else {
9577 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04009578 if (flags & stripped)
9579 return flags;
9580
9581 stripped |= BTRFS_BLOCK_GROUP_DUP;
9582 stripped = flags & ~stripped;
9583
9584 /* switch duplicated blocks with raid1 */
9585 if (flags & BTRFS_BLOCK_GROUP_DUP)
9586 return stripped | BTRFS_BLOCK_GROUP_RAID1;
9587
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009588 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04009589 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009590
Chris Masonec44a352008-04-28 15:29:52 -04009591 return flags;
9592}
9593
Zhaolei868f4012015-08-05 16:43:27 +08009594static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04009595{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009596 struct btrfs_space_info *sinfo = cache->space_info;
9597 u64 num_bytes;
Qu Wenruo3ece54e2019-01-30 13:07:51 +08009598 u64 sinfo_used;
Miao Xie199c36e2011-07-15 10:34:36 +00009599 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009600 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04009601
Miao Xie199c36e2011-07-15 10:34:36 +00009602 /*
9603 * We need some metadata space and system metadata space for
9604 * allocating chunks in some corner cases until we force to set
9605 * it to be readonly.
9606 */
9607 if ((sinfo->flags &
9608 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
9609 !force)
Byongho Leeee221842015-12-15 01:42:10 +09009610 min_allocable_bytes = SZ_1M;
Miao Xie199c36e2011-07-15 10:34:36 +00009611 else
9612 min_allocable_bytes = 0;
9613
Yan, Zhengf0486c62010-05-16 10:46:25 -04009614 spin_lock(&sinfo->lock);
9615 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00009616
9617 if (cache->ro) {
Zhaolei868f4012015-08-05 16:43:27 +08009618 cache->ro++;
WuBo61cfea92011-07-26 03:30:11 +00009619 ret = 0;
9620 goto out;
9621 }
9622
Yan, Zhengf0486c62010-05-16 10:46:25 -04009623 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
9624 cache->bytes_super - btrfs_block_group_used(&cache->item);
Qu Wenruo3ece54e2019-01-30 13:07:51 +08009625 sinfo_used = btrfs_space_info_used(sinfo, true);
Chris Mason7d9eb122008-07-08 14:19:17 -04009626
Qu Wenruo3ece54e2019-01-30 13:07:51 +08009627 if (sinfo_used + num_bytes + min_allocable_bytes <=
9628 sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04009629 sinfo->bytes_readonly += num_bytes;
Zhaolei868f4012015-08-05 16:43:27 +08009630 cache->ro++;
Josef Bacik633c0aa2014-10-31 09:49:34 -04009631 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009632 ret = 0;
9633 }
WuBo61cfea92011-07-26 03:30:11 +00009634out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04009635 spin_unlock(&cache->lock);
9636 spin_unlock(&sinfo->lock);
Qu Wenruo3ece54e2019-01-30 13:07:51 +08009637 if (ret == -ENOSPC && btrfs_test_opt(cache->fs_info, ENOSPC_DEBUG)) {
9638 btrfs_info(cache->fs_info,
9639 "unable to make block group %llu ro",
9640 cache->key.objectid);
9641 btrfs_info(cache->fs_info,
9642 "sinfo_used=%llu bg_num_bytes=%llu min_allocable=%llu",
9643 sinfo_used, num_bytes, min_allocable_bytes);
9644 dump_space_info(cache->fs_info, cache->space_info, 0, 0);
9645 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009646 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04009647}
9648
Nikolay Borisovc83488a2018-06-20 15:49:14 +03009649int btrfs_inc_block_group_ro(struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009650
9651{
Nikolay Borisovc83488a2018-06-20 15:49:14 +03009652 struct btrfs_fs_info *fs_info = cache->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009653 struct btrfs_trans_handle *trans;
9654 u64 alloc_flags;
9655 int ret;
9656
Chris Mason1bbc6212015-04-06 12:46:08 -07009657again:
Jeff Mahoney5e00f192017-02-15 16:28:29 -05009658 trans = btrfs_join_transaction(fs_info->extent_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009659 if (IS_ERR(trans))
9660 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009661
Chris Mason1bbc6212015-04-06 12:46:08 -07009662 /*
9663 * we're not allowed to set block groups readonly after the dirty
9664 * block groups cache has started writing. If it already started,
9665 * back off and let this transaction commit
9666 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009667 mutex_lock(&fs_info->ro_block_group_mutex);
Josef Bacik3204d332015-09-24 10:46:10 -04009668 if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009669 u64 transid = trans->transid;
9670
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009671 mutex_unlock(&fs_info->ro_block_group_mutex);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009672 btrfs_end_transaction(trans);
Chris Mason1bbc6212015-04-06 12:46:08 -07009673
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009674 ret = btrfs_wait_for_commit(fs_info, transid);
Chris Mason1bbc6212015-04-06 12:46:08 -07009675 if (ret)
9676 return ret;
9677 goto again;
9678 }
9679
Chris Mason153c35b2015-05-19 18:54:41 -07009680 /*
9681 * if we are changing raid levels, try to allocate a corresponding
9682 * block group with the new raid level.
9683 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009684 alloc_flags = update_block_group_flags(fs_info, cache->flags);
Chris Mason153c35b2015-05-19 18:54:41 -07009685 if (alloc_flags != cache->flags) {
Nikolay Borisov01458822018-06-20 15:49:05 +03009686 ret = do_chunk_alloc(trans, alloc_flags,
Chris Mason153c35b2015-05-19 18:54:41 -07009687 CHUNK_ALLOC_FORCE);
9688 /*
9689 * ENOSPC is allowed here, we may have enough space
9690 * already allocated at the new raid level to
9691 * carry on
9692 */
9693 if (ret == -ENOSPC)
9694 ret = 0;
9695 if (ret < 0)
9696 goto out;
9697 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009698
Zhaolei868f4012015-08-05 16:43:27 +08009699 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009700 if (!ret)
9701 goto out;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009702 alloc_flags = get_alloc_profile(fs_info, cache->space_info->flags);
Nikolay Borisov01458822018-06-20 15:49:05 +03009703 ret = do_chunk_alloc(trans, alloc_flags, CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009704 if (ret < 0)
9705 goto out;
Zhaolei868f4012015-08-05 16:43:27 +08009706 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009707out:
Shaohua Li2f081082015-01-09 10:40:15 -08009708 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009709 alloc_flags = update_block_group_flags(fs_info, cache->flags);
David Sterba34441362016-10-04 19:34:27 +02009710 mutex_lock(&fs_info->chunk_mutex);
Nikolay Borisov451a2c12018-06-20 15:49:07 +03009711 check_system_chunk(trans, alloc_flags);
David Sterba34441362016-10-04 19:34:27 +02009712 mutex_unlock(&fs_info->chunk_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009713 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009714 mutex_unlock(&fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009715
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009716 btrfs_end_transaction(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009717 return ret;
9718}
9719
Nikolay Borisov43a7e992018-06-20 15:49:15 +03009720int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, u64 type)
Chris Masonc87f08c2011-02-16 13:57:04 -05009721{
Nikolay Borisov43a7e992018-06-20 15:49:15 +03009722 u64 alloc_flags = get_alloc_profile(trans->fs_info, type);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009723
Nikolay Borisov01458822018-06-20 15:49:05 +03009724 return do_chunk_alloc(trans, alloc_flags, CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05009725}
9726
Miao Xie6d07bce2011-01-05 10:07:31 +00009727/*
9728 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04009729 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00009730 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009731u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00009732{
9733 struct btrfs_block_group_cache *block_group;
9734 u64 free_bytes = 0;
9735 int factor;
9736
Nicholas D Steeves01327612016-05-19 21:18:45 -04009737 /* It's df, we don't care if it's racy */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009738 if (list_empty(&sinfo->ro_bgs))
9739 return 0;
9740
9741 spin_lock(&sinfo->lock);
9742 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00009743 spin_lock(&block_group->lock);
9744
9745 if (!block_group->ro) {
9746 spin_unlock(&block_group->lock);
9747 continue;
9748 }
9749
David Sterba46df06b2018-07-13 20:46:30 +02009750 factor = btrfs_bg_type_to_factor(block_group->flags);
Miao Xie6d07bce2011-01-05 10:07:31 +00009751 free_bytes += (block_group->key.offset -
9752 btrfs_block_group_used(&block_group->item)) *
9753 factor;
9754
9755 spin_unlock(&block_group->lock);
9756 }
Miao Xie6d07bce2011-01-05 10:07:31 +00009757 spin_unlock(&sinfo->lock);
9758
9759 return free_bytes;
9760}
9761
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009762void btrfs_dec_block_group_ro(struct btrfs_block_group_cache *cache)
Yan, Zhengf0486c62010-05-16 10:46:25 -04009763{
9764 struct btrfs_space_info *sinfo = cache->space_info;
9765 u64 num_bytes;
9766
9767 BUG_ON(!cache->ro);
9768
9769 spin_lock(&sinfo->lock);
9770 spin_lock(&cache->lock);
Zhaolei868f4012015-08-05 16:43:27 +08009771 if (!--cache->ro) {
9772 num_bytes = cache->key.offset - cache->reserved -
9773 cache->pinned - cache->bytes_super -
9774 btrfs_block_group_used(&cache->item);
9775 sinfo->bytes_readonly -= num_bytes;
9776 list_del_init(&cache->ro_list);
9777 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009778 spin_unlock(&cache->lock);
9779 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009780}
9781
Josef Bacikba1bf482009-09-11 16:11:19 -04009782/*
Andrea Gelmini52042d82018-11-28 12:05:13 +01009783 * Checks to see if it's even possible to relocate this block group.
Josef Bacikba1bf482009-09-11 16:11:19 -04009784 *
9785 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
9786 * ok to go ahead and try.
9787 */
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009788int btrfs_can_relocate(struct btrfs_fs_info *fs_info, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04009789{
Zheng Yan1a40e232008-09-26 10:09:34 -04009790 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04009791 struct btrfs_space_info *space_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009792 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacikba1bf482009-09-11 16:11:19 -04009793 struct btrfs_device *device;
liubocdcb7252011-08-03 10:15:25 +00009794 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04009795 u64 dev_min = 1;
9796 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009797 u64 target;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009798 int debug;
liubocdcb7252011-08-03 10:15:25 +00009799 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04009800 int full = 0;
9801 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05009802
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009803 debug = btrfs_test_opt(fs_info, ENOSPC_DEBUG);
Qu Wenruo0305bc22016-03-23 11:38:17 +08009804
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009805 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04009806
Josef Bacikba1bf482009-09-11 16:11:19 -04009807 /* odd, couldn't find the block group, leave it alone */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009808 if (!block_group) {
9809 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009810 btrfs_warn(fs_info,
Qu Wenruo0305bc22016-03-23 11:38:17 +08009811 "can't find block group for bytenr %llu",
9812 bytenr);
Josef Bacikba1bf482009-09-11 16:11:19 -04009813 return -1;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009814 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009815
liubocdcb7252011-08-03 10:15:25 +00009816 min_free = btrfs_block_group_used(&block_group->item);
9817
Josef Bacikba1bf482009-09-11 16:11:19 -04009818 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00009819 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04009820 goto out;
Chris Mason323da792008-05-09 11:46:48 -04009821
Josef Bacikba1bf482009-09-11 16:11:19 -04009822 space_info = block_group->space_info;
9823 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04009824
Josef Bacikba1bf482009-09-11 16:11:19 -04009825 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04009826
Josef Bacikba1bf482009-09-11 16:11:19 -04009827 /*
9828 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04009829 * relocate it unless we're able to allocate a new chunk below.
9830 *
9831 * Otherwise, we need to make sure we have room in the space to handle
9832 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04009833 */
Chris Mason7ce618d2009-09-22 14:48:44 -04009834 if ((space_info->total_bytes != block_group->key.offset) &&
Liu Bo41361352017-02-13 15:42:21 -08009835 (btrfs_space_info_used(space_info, false) + min_free <
9836 space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04009837 spin_unlock(&space_info->lock);
9838 goto out;
9839 }
9840 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009841
Josef Bacikba1bf482009-09-11 16:11:19 -04009842 /*
9843 * ok we don't have enough space, but maybe we have free space on our
9844 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009845 * alloc devices and guess if we have enough space. if this block
9846 * group is going to be restriped, run checks against the target
9847 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04009848 */
9849 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05009850
liubocdcb7252011-08-03 10:15:25 +00009851 /*
9852 * index:
9853 * 0: raid10
9854 * 1: raid1
9855 * 2: dup
9856 * 3: raid0
9857 * 4: single
9858 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009859 target = get_restripe_target(fs_info, block_group->flags);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009860 if (target) {
Qu Wenruo3e72ee82018-01-30 18:20:45 +08009861 index = btrfs_bg_flags_to_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009862 } else {
9863 /*
9864 * this is just a balance, so if we were marked as full
9865 * we know there is no space for a new chunk
9866 */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009867 if (full) {
9868 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009869 btrfs_warn(fs_info,
9870 "no space to alloc new chunk for block group %llu",
9871 block_group->key.objectid);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009872 goto out;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009873 }
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009874
Qu Wenruo3e72ee82018-01-30 18:20:45 +08009875 index = btrfs_bg_flags_to_raid_index(block_group->flags);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009876 }
9877
Miao Xiee6ec7162013-01-17 05:38:51 +00009878 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00009879 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04009880 /* Divide by 2 */
9881 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009882 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00009883 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00009884 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04009885 /* Multiply by 2 */
9886 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009887 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00009888 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01009889 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00009890 }
9891
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009892 mutex_lock(&fs_info->chunk_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04009893 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00009894 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04009895
Josef Bacikba1bf482009-09-11 16:11:19 -04009896 /*
9897 * check to make sure we can actually find a chunk with enough
9898 * space to fit our block group in.
9899 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01009900 if (device->total_bytes > device->bytes_used + min_free &&
Anand Jain401e29c2017-12-04 12:54:55 +08009901 !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Nikolay Borisov60dfdf22019-03-27 14:24:14 +02009902 ret = find_free_dev_extent(device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00009903 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009904 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009905 dev_nr++;
9906
9907 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009908 break;
liubocdcb7252011-08-03 10:15:25 +00009909
Josef Bacikba1bf482009-09-11 16:11:19 -04009910 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009911 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009912 }
Qu Wenruo0305bc22016-03-23 11:38:17 +08009913 if (debug && ret == -1)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009914 btrfs_warn(fs_info,
9915 "no space to allocate a new chunk for block group %llu",
9916 block_group->key.objectid);
9917 mutex_unlock(&fs_info->chunk_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05009918out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009919 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009920 return ret;
9921}
9922
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009923static int find_first_block_group(struct btrfs_fs_info *fs_info,
9924 struct btrfs_path *path,
9925 struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009926{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009927 struct btrfs_root *root = fs_info->extent_root;
Chris Mason925baed2008-06-25 16:01:30 -04009928 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009929 struct btrfs_key found_key;
9930 struct extent_buffer *leaf;
Qu Wenruo514c7dc2018-08-01 10:37:16 +08009931 struct btrfs_block_group_item bg;
9932 u64 flags;
Chris Mason0b86a832008-03-24 15:01:56 -04009933 int slot;
9934
9935 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9936 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009937 goto out;
9938
Chris Masond3977122009-01-05 21:25:51 -05009939 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009940 slot = path->slots[0];
9941 leaf = path->nodes[0];
9942 if (slot >= btrfs_header_nritems(leaf)) {
9943 ret = btrfs_next_leaf(root, path);
9944 if (ret == 0)
9945 continue;
9946 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009947 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009948 break;
9949 }
9950 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9951
9952 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009953 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
Liu Bo6fb37b72016-06-22 18:31:27 -07009954 struct extent_map_tree *em_tree;
9955 struct extent_map *em;
9956
David Sterbac8bf1b62019-05-17 11:43:17 +02009957 em_tree = &root->fs_info->mapping_tree;
Liu Bo6fb37b72016-06-22 18:31:27 -07009958 read_lock(&em_tree->lock);
9959 em = lookup_extent_mapping(em_tree, found_key.objectid,
9960 found_key.offset);
9961 read_unlock(&em_tree->lock);
9962 if (!em) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009963 btrfs_err(fs_info,
Liu Bo6fb37b72016-06-22 18:31:27 -07009964 "logical %llu len %llu found bg but no related chunk",
9965 found_key.objectid, found_key.offset);
9966 ret = -ENOENT;
Qu Wenruo514c7dc2018-08-01 10:37:16 +08009967 } else if (em->start != found_key.objectid ||
9968 em->len != found_key.offset) {
9969 btrfs_err(fs_info,
9970 "block group %llu len %llu mismatch with chunk %llu len %llu",
9971 found_key.objectid, found_key.offset,
9972 em->start, em->len);
9973 ret = -EUCLEAN;
Liu Bo6fb37b72016-06-22 18:31:27 -07009974 } else {
Qu Wenruo514c7dc2018-08-01 10:37:16 +08009975 read_extent_buffer(leaf, &bg,
9976 btrfs_item_ptr_offset(leaf, slot),
9977 sizeof(bg));
9978 flags = btrfs_block_group_flags(&bg) &
9979 BTRFS_BLOCK_GROUP_TYPE_MASK;
9980
9981 if (flags != (em->map_lookup->type &
9982 BTRFS_BLOCK_GROUP_TYPE_MASK)) {
9983 btrfs_err(fs_info,
9984"block group %llu len %llu type flags 0x%llx mismatch with chunk type flags 0x%llx",
9985 found_key.objectid,
9986 found_key.offset, flags,
9987 (BTRFS_BLOCK_GROUP_TYPE_MASK &
9988 em->map_lookup->type));
9989 ret = -EUCLEAN;
9990 } else {
9991 ret = 0;
9992 }
Liu Bo6fb37b72016-06-22 18:31:27 -07009993 }
Josef Bacik187ee582016-08-18 15:30:06 -04009994 free_extent_map(em);
Chris Mason925baed2008-06-25 16:01:30 -04009995 goto out;
9996 }
Chris Mason0b86a832008-03-24 15:01:56 -04009997 path->slots[0]++;
9998 }
Chris Mason925baed2008-06-25 16:01:30 -04009999out:
Chris Mason0b86a832008-03-24 15:01:56 -040010000 return ret;
10001}
10002
Josef Bacik0af3d002010-06-21 14:48:16 -040010003void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
10004{
10005 struct btrfs_block_group_cache *block_group;
10006 u64 last = 0;
10007
10008 while (1) {
10009 struct inode *inode;
10010
10011 block_group = btrfs_lookup_first_block_group(info, last);
10012 while (block_group) {
Josef Bacik3aa7c7a2018-09-12 10:45:45 -040010013 wait_block_group_cache_done(block_group);
Josef Bacik0af3d002010-06-21 14:48:16 -040010014 spin_lock(&block_group->lock);
10015 if (block_group->iref)
10016 break;
10017 spin_unlock(&block_group->lock);
David Sterbaf87b7eb2019-03-20 12:01:07 +010010018 block_group = next_block_group(block_group);
Josef Bacik0af3d002010-06-21 14:48:16 -040010019 }
10020 if (!block_group) {
10021 if (last == 0)
10022 break;
10023 last = 0;
10024 continue;
10025 }
10026
10027 inode = block_group->inode;
10028 block_group->iref = 0;
10029 block_group->inode = NULL;
10030 spin_unlock(&block_group->lock);
Liu Bof3bca802016-07-20 17:33:44 -070010031 ASSERT(block_group->io_ctl.inode == NULL);
Josef Bacik0af3d002010-06-21 14:48:16 -040010032 iput(inode);
10033 last = block_group->key.objectid + block_group->key.offset;
10034 btrfs_put_block_group(block_group);
10035 }
10036}
10037
Filipe Manana5cdd7db2017-02-01 22:39:50 +000010038/*
10039 * Must be called only after stopping all workers, since we could have block
10040 * group caching kthreads running, and therefore they could race with us if we
10041 * freed the block groups before stopping them.
10042 */
Zheng Yan1a40e232008-09-26 10:09:34 -040010043int btrfs_free_block_groups(struct btrfs_fs_info *info)
10044{
10045 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -040010046 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -040010047 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -040010048 struct rb_node *n;
10049
Josef Bacik9e351cc2014-03-13 15:42:13 -040010050 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -040010051 while (!list_empty(&info->caching_block_groups)) {
10052 caching_ctl = list_entry(info->caching_block_groups.next,
10053 struct btrfs_caching_control, list);
10054 list_del(&caching_ctl->list);
10055 put_caching_control(caching_ctl);
10056 }
Josef Bacik9e351cc2014-03-13 15:42:13 -040010057 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -040010058
Josef Bacik47ab2a62014-09-18 11:20:02 -040010059 spin_lock(&info->unused_bgs_lock);
10060 while (!list_empty(&info->unused_bgs)) {
10061 block_group = list_first_entry(&info->unused_bgs,
10062 struct btrfs_block_group_cache,
10063 bg_list);
10064 list_del_init(&block_group->bg_list);
10065 btrfs_put_block_group(block_group);
10066 }
10067 spin_unlock(&info->unused_bgs_lock);
10068
Zheng Yan1a40e232008-09-26 10:09:34 -040010069 spin_lock(&info->block_group_cache_lock);
10070 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
10071 block_group = rb_entry(n, struct btrfs_block_group_cache,
10072 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -040010073 rb_erase(&block_group->cache_node,
10074 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +000010075 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -040010076 spin_unlock(&info->block_group_cache_lock);
10077
Josef Bacik80eb2342008-10-29 14:49:05 -040010078 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -040010079 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -040010080 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -050010081
Josef Bacik3c148742011-02-02 15:53:47 +000010082 /*
10083 * We haven't cached this block group, which means we could
10084 * possibly have excluded extents on this block group.
10085 */
Josef Bacik36cce922013-08-05 11:15:21 -040010086 if (block_group->cached == BTRFS_CACHE_NO ||
10087 block_group->cached == BTRFS_CACHE_ERROR)
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010088 free_excluded_extents(block_group);
Josef Bacik3c148742011-02-02 15:53:47 +000010089
Josef Bacik817d52f2009-07-13 21:29:25 -040010090 btrfs_remove_free_space_cache(block_group);
Filipe Manana5cdd7db2017-02-01 22:39:50 +000010091 ASSERT(block_group->cached != BTRFS_CACHE_STARTED);
Liu Bof3bca802016-07-20 17:33:44 -070010092 ASSERT(list_empty(&block_group->dirty_list));
10093 ASSERT(list_empty(&block_group->io_list));
10094 ASSERT(list_empty(&block_group->bg_list));
10095 ASSERT(atomic_read(&block_group->count) == 1);
Josef Bacik11dfe352009-11-13 20:12:59 +000010096 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -040010097
10098 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010099 }
10100 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -040010101
10102 /* now that all the block groups are freed, go through and
10103 * free all the space_info structs. This is only called during
10104 * the final stages of unmount, and so we know nobody is
10105 * using them. We call synchronize_rcu() once before we start,
10106 * just to be on the safe side.
10107 */
10108 synchronize_rcu();
10109
Yan, Zheng8929ecfa2010-05-16 10:49:58 -040010110 release_global_block_rsv(info);
10111
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010112 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010113 int i;
10114
Chris Mason4184ea72009-03-10 12:39:20 -040010115 space_info = list_entry(info->space_info.next,
10116 struct btrfs_space_info,
10117 list);
Josef Bacikd555b6c32016-03-25 13:25:51 -040010118
10119 /*
10120 * Do not hide this behind enospc_debug, this is actually
10121 * important and indicates a real bug if this happens.
10122 */
10123 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +000010124 space_info->bytes_reserved > 0 ||
Josef Bacikd555b6c32016-03-25 13:25:51 -040010125 space_info->bytes_may_use > 0))
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -040010126 dump_space_info(info, space_info, 0, 0);
Chris Mason4184ea72009-03-10 12:39:20 -040010127 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010128 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
10129 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010130 kobj = space_info->block_group_kobjs[i];
10131 space_info->block_group_kobjs[i] = NULL;
10132 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010133 kobject_del(kobj);
10134 kobject_put(kobj);
10135 }
10136 }
10137 kobject_del(&space_info->kobj);
10138 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -040010139 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010140 return 0;
10141}
10142
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010143/* link_block_group will queue up kobjects to add when we're reclaim-safe */
10144void btrfs_add_raid_kobjects(struct btrfs_fs_info *fs_info)
10145{
10146 struct btrfs_space_info *space_info;
10147 struct raid_kobject *rkobj;
10148 LIST_HEAD(list);
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010149 int ret = 0;
10150
10151 spin_lock(&fs_info->pending_raid_kobjs_lock);
10152 list_splice_init(&fs_info->pending_raid_kobjs, &list);
10153 spin_unlock(&fs_info->pending_raid_kobjs_lock);
10154
10155 list_for_each_entry(rkobj, &list, list) {
10156 space_info = __find_space_info(fs_info, rkobj->flags);
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010157
10158 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
David Sterba158da512019-05-17 11:43:41 +020010159 "%s", btrfs_bg_type_to_raid_name(rkobj->flags));
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010160 if (ret) {
10161 kobject_put(&rkobj->kobj);
10162 break;
10163 }
10164 }
10165 if (ret)
10166 btrfs_warn(fs_info,
10167 "failed to add kobject for block cache, ignoring");
10168}
10169
Nikolay Borisovc434d212017-08-21 12:43:50 +030010170static void link_block_group(struct btrfs_block_group_cache *cache)
Yan, Zhengb742bb822010-05-16 10:46:24 -040010171{
Nikolay Borisovc434d212017-08-21 12:43:50 +030010172 struct btrfs_space_info *space_info = cache->space_info;
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010173 struct btrfs_fs_info *fs_info = cache->fs_info;
Qu Wenruo3e72ee82018-01-30 18:20:45 +080010174 int index = btrfs_bg_flags_to_raid_index(cache->flags);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010175 bool first = false;
Yan, Zhengb742bb822010-05-16 10:46:24 -040010176
10177 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010178 if (list_empty(&space_info->block_groups[index]))
10179 first = true;
10180 list_add_tail(&cache->list, &space_info->block_groups[index]);
10181 up_write(&space_info->groups_sem);
10182
10183 if (first) {
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010184 struct raid_kobject *rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
10185 if (!rkobj) {
10186 btrfs_warn(cache->fs_info,
10187 "couldn't alloc memory for raid level kobject");
10188 return;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010189 }
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010190 rkobj->flags = cache->flags;
10191 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
10192
10193 spin_lock(&fs_info->pending_raid_kobjs_lock);
10194 list_add_tail(&rkobj->list, &fs_info->pending_raid_kobjs);
10195 spin_unlock(&fs_info->pending_raid_kobjs_lock);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010196 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010197 }
Yan, Zhengb742bb822010-05-16 10:46:24 -040010198}
10199
Miao Xie920e4a52014-01-15 20:00:55 +080010200static struct btrfs_block_group_cache *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010201btrfs_create_block_group_cache(struct btrfs_fs_info *fs_info,
10202 u64 start, u64 size)
Miao Xie920e4a52014-01-15 20:00:55 +080010203{
10204 struct btrfs_block_group_cache *cache;
10205
10206 cache = kzalloc(sizeof(*cache), GFP_NOFS);
10207 if (!cache)
10208 return NULL;
10209
10210 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
10211 GFP_NOFS);
10212 if (!cache->free_space_ctl) {
10213 kfree(cache);
10214 return NULL;
10215 }
10216
10217 cache->key.objectid = start;
10218 cache->key.offset = size;
10219 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
10220
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010221 cache->fs_info = fs_info;
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +030010222 cache->full_stripe_len = btrfs_full_stripe_len(fs_info, start);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010223 set_free_space_tree_thresholds(cache);
10224
Miao Xie920e4a52014-01-15 20:00:55 +080010225 atomic_set(&cache->count, 1);
10226 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +080010227 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +080010228 INIT_LIST_HEAD(&cache->list);
10229 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010230 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -040010231 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -050010232 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -070010233 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +080010234 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +000010235 atomic_set(&cache->trimming, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -070010236 mutex_init(&cache->free_space_lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +080010237 btrfs_init_full_stripe_locks_tree(&cache->full_stripe_locks_root);
Miao Xie920e4a52014-01-15 20:00:55 +080010238
10239 return cache;
10240}
10241
Qu Wenruo7ef49512018-08-01 10:37:17 +080010242
10243/*
10244 * Iterate all chunks and verify that each of them has the corresponding block
10245 * group
10246 */
10247static int check_chunk_block_group_mappings(struct btrfs_fs_info *fs_info)
10248{
David Sterbac8bf1b62019-05-17 11:43:17 +020010249 struct extent_map_tree *map_tree = &fs_info->mapping_tree;
Qu Wenruo7ef49512018-08-01 10:37:17 +080010250 struct extent_map *em;
10251 struct btrfs_block_group_cache *bg;
10252 u64 start = 0;
10253 int ret = 0;
10254
10255 while (1) {
David Sterbac8bf1b62019-05-17 11:43:17 +020010256 read_lock(&map_tree->lock);
Qu Wenruo7ef49512018-08-01 10:37:17 +080010257 /*
10258 * lookup_extent_mapping will return the first extent map
10259 * intersecting the range, so setting @len to 1 is enough to
10260 * get the first chunk.
10261 */
David Sterbac8bf1b62019-05-17 11:43:17 +020010262 em = lookup_extent_mapping(map_tree, start, 1);
10263 read_unlock(&map_tree->lock);
Qu Wenruo7ef49512018-08-01 10:37:17 +080010264 if (!em)
10265 break;
10266
10267 bg = btrfs_lookup_block_group(fs_info, em->start);
10268 if (!bg) {
10269 btrfs_err(fs_info,
10270 "chunk start=%llu len=%llu doesn't have corresponding block group",
10271 em->start, em->len);
10272 ret = -EUCLEAN;
10273 free_extent_map(em);
10274 break;
10275 }
10276 if (bg->key.objectid != em->start ||
10277 bg->key.offset != em->len ||
10278 (bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK) !=
10279 (em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK)) {
10280 btrfs_err(fs_info,
10281"chunk start=%llu len=%llu flags=0x%llx doesn't match block group start=%llu len=%llu flags=0x%llx",
10282 em->start, em->len,
10283 em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK,
10284 bg->key.objectid, bg->key.offset,
10285 bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK);
10286 ret = -EUCLEAN;
10287 free_extent_map(em);
10288 btrfs_put_block_group(bg);
10289 break;
10290 }
10291 start = em->start + em->len;
10292 free_extent_map(em);
10293 btrfs_put_block_group(bg);
10294 }
10295 return ret;
10296}
10297
Jeff Mahoney5b4aace2016-06-21 10:40:19 -040010298int btrfs_read_block_groups(struct btrfs_fs_info *info)
Chris Mason9078a3e2007-04-26 16:46:15 -040010299{
10300 struct btrfs_path *path;
10301 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010302 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -040010303 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -040010304 struct btrfs_key key;
10305 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -040010306 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -040010307 int need_clear = 0;
10308 u64 cache_gen;
Liu Bo49303382016-08-25 18:08:27 -070010309 u64 feature;
10310 int mixed;
10311
10312 feature = btrfs_super_incompat_flags(info->super_copy);
10313 mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS);
Chris Mason96b51792007-10-15 16:15:19 -040010314
Chris Mason9078a3e2007-04-26 16:46:15 -040010315 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -040010316 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010317 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -040010318 path = btrfs_alloc_path();
10319 if (!path)
10320 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +010010321 path->reada = READA_FORWARD;
Chris Mason9078a3e2007-04-26 16:46:15 -040010322
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010323 cache_gen = btrfs_super_cache_generation(info->super_copy);
10324 if (btrfs_test_opt(info, SPACE_CACHE) &&
10325 btrfs_super_generation(info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -040010326 need_clear = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010327 if (btrfs_test_opt(info, CLEAR_CACHE))
Josef Bacik88c2ba32010-09-21 14:21:34 -040010328 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -040010329
Chris Masond3977122009-01-05 21:25:51 -050010330 while (1) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010331 ret = find_first_block_group(info, path, &key);
Yan, Zhengb742bb822010-05-16 10:46:24 -040010332 if (ret > 0)
10333 break;
Chris Mason0b86a832008-03-24 15:01:56 -040010334 if (ret != 0)
10335 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +080010336
Chris Mason5f39d392007-10-15 16:14:19 -040010337 leaf = path->nodes[0];
10338 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +080010339
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010340 cache = btrfs_create_block_group_cache(info, found_key.objectid,
Miao Xie920e4a52014-01-15 20:00:55 +080010341 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -040010342 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -040010343 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -040010344 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -040010345 }
Josef Bacik96303082009-07-13 21:29:25 -040010346
Liu Bocf7c1ef2012-07-06 03:31:34 -060010347 if (need_clear) {
10348 /*
10349 * When we mount with old space cache, we need to
10350 * set BTRFS_DC_CLEAR and set dirty flag.
10351 *
10352 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
10353 * truncate the old free space cache inode and
10354 * setup a new one.
10355 * b) Setting 'dirty flag' makes sure that we flush
10356 * the new space cache info onto disk.
10357 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010358 if (btrfs_test_opt(info, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -050010359 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -060010360 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010361
Chris Mason5f39d392007-10-15 16:14:19 -040010362 read_extent_buffer(leaf, &cache->item,
10363 btrfs_item_ptr_offset(leaf, path->slots[0]),
10364 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +080010365 cache->flags = btrfs_block_group_flags(&cache->item);
Liu Bo49303382016-08-25 18:08:27 -070010366 if (!mixed &&
10367 ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) &&
10368 (cache->flags & BTRFS_BLOCK_GROUP_DATA))) {
10369 btrfs_err(info,
10370"bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups",
10371 cache->key.objectid);
10372 ret = -EINVAL;
10373 goto error;
10374 }
Chris Mason0b86a832008-03-24 15:01:56 -040010375
Chris Mason9078a3e2007-04-26 16:46:15 -040010376 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +020010377 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +080010378
Josef Bacik817d52f2009-07-13 21:29:25 -040010379 /*
Josef Bacik3c148742011-02-02 15:53:47 +000010380 * We need to exclude the super stripes now so that the space
10381 * info has super bytes accounted for, otherwise we'll think
10382 * we have more space than we actually do.
10383 */
Nikolay Borisov3c4da652018-06-20 15:49:09 +030010384 ret = exclude_super_stripes(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010385 if (ret) {
10386 /*
10387 * We may have excluded something, so call this just in
10388 * case.
10389 */
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010390 free_excluded_extents(cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010391 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010392 goto error;
10393 }
Josef Bacik3c148742011-02-02 15:53:47 +000010394
10395 /*
Josef Bacik817d52f2009-07-13 21:29:25 -040010396 * check for two cases, either we are full, and therefore
10397 * don't need to bother with the caching work since we won't
10398 * find any space, or we are empty, and we can just add all
Andrea Gelmini52042d82018-11-28 12:05:13 +010010399 * the space in and be done with it. This saves us _a_lot_ of
Josef Bacik817d52f2009-07-13 21:29:25 -040010400 * time, particularly in the full case.
10401 */
10402 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -040010403 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010404 cache->cached = BTRFS_CACHE_FINISHED;
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010405 free_excluded_extents(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010406 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -040010407 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010408 cache->cached = BTRFS_CACHE_FINISHED;
Nikolay Borisov4457c1c2018-05-10 15:44:45 +030010409 add_new_free_space(cache, found_key.objectid,
Josef Bacik817d52f2009-07-13 21:29:25 -040010410 found_key.objectid +
10411 found_key.offset);
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010412 free_excluded_extents(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010413 }
Chris Mason96b51792007-10-15 16:15:19 -040010414
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010415 ret = btrfs_add_block_group_cache(info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010416 if (ret) {
10417 btrfs_remove_free_space_cache(cache);
10418 btrfs_put_block_group(cache);
10419 goto error;
10420 }
10421
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010422 trace_btrfs_add_block_group(info, cache, 0);
Nikolay Borisovd2006e62017-05-22 09:35:50 +030010423 update_space_info(info, cache->flags, found_key.offset,
10424 btrfs_block_group_used(&cache->item),
10425 cache->bytes_super, &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010426
Chris Mason6324fbf2008-03-24 15:01:59 -040010427 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -040010428
Nikolay Borisovc434d212017-08-21 12:43:50 +030010429 link_block_group(cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010430
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010431 set_avail_alloc_bits(info, cache->flags);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010432 if (btrfs_chunk_readonly(info, cache->key.objectid)) {
Zhaolei868f4012015-08-05 16:43:27 +080010433 inc_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010434 } else if (btrfs_block_group_used(&cache->item) == 0) {
Qu Wenruo031f24d2018-05-22 16:43:47 +080010435 ASSERT(list_empty(&cache->bg_list));
10436 btrfs_mark_bg_unused(cache);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010437 }
Chris Mason9078a3e2007-04-26 16:46:15 -040010438 }
Yan, Zhengb742bb822010-05-16 10:46:24 -040010439
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010440 list_for_each_entry_rcu(space_info, &info->space_info, list) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010441 if (!(get_alloc_profile(info, space_info->flags) &
Yan, Zhengb742bb822010-05-16 10:46:24 -040010442 (BTRFS_BLOCK_GROUP_RAID10 |
10443 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -050010444 BTRFS_BLOCK_GROUP_RAID5 |
10445 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb822010-05-16 10:46:24 -040010446 BTRFS_BLOCK_GROUP_DUP)))
10447 continue;
10448 /*
10449 * avoid allocating from un-mirrored block group if there are
10450 * mirrored block groups.
10451 */
chandan1095cc02013-07-16 12:28:56 +053010452 list_for_each_entry(cache,
10453 &space_info->block_groups[BTRFS_RAID_RAID0],
10454 list)
Zhaolei868f4012015-08-05 16:43:27 +080010455 inc_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +053010456 list_for_each_entry(cache,
10457 &space_info->block_groups[BTRFS_RAID_SINGLE],
10458 list)
Zhaolei868f4012015-08-05 16:43:27 +080010459 inc_block_group_ro(cache, 1);
Yan, Zhengb742bb822010-05-16 10:46:24 -040010460 }
Yan, Zhengf0486c62010-05-16 10:46:25 -040010461
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010462 btrfs_add_raid_kobjects(info);
Yan, Zhengf0486c62010-05-16 10:46:25 -040010463 init_global_block_rsv(info);
Qu Wenruo7ef49512018-08-01 10:37:17 +080010464 ret = check_chunk_block_group_mappings(info);
Chris Mason0b86a832008-03-24 15:01:56 -040010465error:
Chris Mason9078a3e2007-04-26 16:46:15 -040010466 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -040010467 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010468}
Chris Mason6324fbf2008-03-24 15:01:59 -040010469
Nikolay Borisov6c686b32018-02-07 17:55:40 +020010470void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans)
Josef Bacikea658ba2012-09-11 16:57:25 -040010471{
Nikolay Borisov6c686b32018-02-07 17:55:40 +020010472 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacik545e3362018-09-28 07:18:02 -040010473 struct btrfs_block_group_cache *block_group;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010474 struct btrfs_root *extent_root = fs_info->extent_root;
Josef Bacikea658ba2012-09-11 16:57:25 -040010475 struct btrfs_block_group_item item;
10476 struct btrfs_key key;
10477 int ret = 0;
10478
Filipe Manana5ce55552018-10-12 10:03:55 +010010479 if (!trans->can_flush_pending_bgs)
10480 return;
10481
Josef Bacik545e3362018-09-28 07:18:02 -040010482 while (!list_empty(&trans->new_bgs)) {
10483 block_group = list_first_entry(&trans->new_bgs,
10484 struct btrfs_block_group_cache,
10485 bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010486 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +000010487 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -040010488
10489 spin_lock(&block_group->lock);
10490 memcpy(&item, &block_group->item, sizeof(item));
10491 memcpy(&key, &block_group->key, sizeof(key));
10492 spin_unlock(&block_group->lock);
10493
10494 ret = btrfs_insert_item(trans, extent_root, &key, &item,
10495 sizeof(item));
10496 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010497 btrfs_abort_transaction(trans, ret);
Nikolay Borisov97aff912018-07-20 19:37:53 +030010498 ret = btrfs_finish_chunk_alloc(trans, key.objectid, key.offset);
Josef Bacik6df9a952013-06-27 13:22:46 -040010499 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010500 btrfs_abort_transaction(trans, ret);
Nikolay Borisove4e07112018-05-10 15:44:41 +030010501 add_block_group_free_space(trans, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010502 /* already aborted the transaction if it failed. */
Filipe Mananac92f6be2014-11-26 15:28:55 +000010503next:
Josef Bacikba2c4d42018-12-03 10:20:33 -050010504 btrfs_delayed_refs_rsv_release(fs_info, 1);
Filipe Mananac92f6be2014-11-26 15:28:55 +000010505 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010506 }
Filipe Manana5ce55552018-10-12 10:03:55 +010010507 btrfs_trans_release_chunk_metadata(trans);
Josef Bacikea658ba2012-09-11 16:57:25 -040010508}
10509
Nikolay Borisove7e02092018-06-20 15:48:55 +030010510int btrfs_make_block_group(struct btrfs_trans_handle *trans, u64 bytes_used,
Nikolay Borisov01744842017-07-27 14:22:11 +030010511 u64 type, u64 chunk_offset, u64 size)
Chris Mason6324fbf2008-03-24 15:01:59 -040010512{
Nikolay Borisove7e02092018-06-20 15:48:55 +030010513 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -040010514 struct btrfs_block_group_cache *cache;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010515 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -040010516
David Sterba90787762019-03-20 13:28:05 +010010517 btrfs_set_log_full_commit(trans);
Chris Masone02119d2008-09-05 16:13:11 -040010518
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010519 cache = btrfs_create_block_group_cache(fs_info, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -040010520 if (!cache)
10521 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +080010522
Chris Mason6324fbf2008-03-24 15:01:59 -040010523 btrfs_set_block_group_used(&cache->item, bytes_used);
Nikolay Borisov01744842017-07-27 14:22:11 +030010524 btrfs_set_block_group_chunk_objectid(&cache->item,
10525 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
Chris Mason6324fbf2008-03-24 15:01:59 -040010526 btrfs_set_block_group_flags(&cache->item, type);
10527
Miao Xie920e4a52014-01-15 20:00:55 +080010528 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -040010529 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010530 cache->cached = BTRFS_CACHE_FINISHED;
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010531 cache->needs_free_space = 1;
Nikolay Borisov3c4da652018-06-20 15:49:09 +030010532 ret = exclude_super_stripes(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010533 if (ret) {
10534 /*
10535 * We may have excluded something, so call this just in
10536 * case.
10537 */
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010538 free_excluded_extents(cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010539 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010540 return ret;
10541 }
Josef Bacik96303082009-07-13 21:29:25 -040010542
Nikolay Borisov4457c1c2018-05-10 15:44:45 +030010543 add_new_free_space(cache, chunk_offset, chunk_offset + size);
Josef Bacik817d52f2009-07-13 21:29:25 -040010544
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010545 free_excluded_extents(cache);
Yan Zheng11833d62009-09-11 16:11:19 -040010546
Josef Bacikd0bd4562015-09-23 14:54:14 -040010547#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010548 if (btrfs_should_fragment_free_space(cache)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -040010549 u64 new_bytes_used = size - bytes_used;
10550
10551 bytes_used += new_bytes_used >> 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010552 fragment_free_space(cache);
Josef Bacikd0bd4562015-09-23 14:54:14 -040010553 }
10554#endif
Filipe Manana2e6e5182015-05-12 00:28:11 +010010555 /*
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010556 * Ensure the corresponding space_info object is created and
10557 * assigned to our block group. We want our bg to be added to the rbtree
10558 * with its ->space_info set.
Filipe Manana2e6e5182015-05-12 00:28:11 +010010559 */
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010560 cache->space_info = __find_space_info(fs_info, cache->flags);
Jeff Mahoneydc2d3002018-03-20 15:25:25 -040010561 ASSERT(cache->space_info);
Filipe Manana2e6e5182015-05-12 00:28:11 +010010562
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010563 ret = btrfs_add_block_group_cache(fs_info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010564 if (ret) {
10565 btrfs_remove_free_space_cache(cache);
10566 btrfs_put_block_group(cache);
10567 return ret;
10568 }
10569
Filipe Manana2e6e5182015-05-12 00:28:11 +010010570 /*
10571 * Now that our block group has its ->space_info set and is inserted in
10572 * the rbtree, update the space info's counters.
10573 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010574 trace_btrfs_add_block_group(fs_info, cache, 1);
Nikolay Borisovd2006e62017-05-22 09:35:50 +030010575 update_space_info(fs_info, cache->flags, size, bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -040010576 cache->bytes_super, &cache->space_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010577 update_global_block_rsv(fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -040010578
Nikolay Borisovc434d212017-08-21 12:43:50 +030010579 link_block_group(cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010580
Josef Bacik47ab2a62014-09-18 11:20:02 -040010581 list_add_tail(&cache->bg_list, &trans->new_bgs);
Josef Bacikba2c4d42018-12-03 10:20:33 -050010582 trans->delayed_ref_updates++;
10583 btrfs_update_delayed_refs_rsv(trans);
Chris Mason6324fbf2008-03-24 15:01:59 -040010584
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010585 set_avail_alloc_bits(fs_info, type);
Chris Mason6324fbf2008-03-24 15:01:59 -040010586 return 0;
10587}
Zheng Yan1a40e232008-09-26 10:09:34 -040010588
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010589static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
10590{
Ilya Dryomov899c81e2012-03-27 17:09:16 +030010591 u64 extra_flags = chunk_to_extended(flags) &
10592 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010593
Miao Xiede98ced2013-01-29 10:13:12 +000010594 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010595 if (flags & BTRFS_BLOCK_GROUP_DATA)
10596 fs_info->avail_data_alloc_bits &= ~extra_flags;
10597 if (flags & BTRFS_BLOCK_GROUP_METADATA)
10598 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
10599 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
10600 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +000010601 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010602}
10603
Zheng Yan1a40e232008-09-26 10:09:34 -040010604int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Nikolay Borisov5a98ec02018-06-20 15:48:56 +030010605 u64 group_start, struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -040010606{
Nikolay Borisov5a98ec02018-06-20 15:48:56 +030010607 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010608 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010609 struct btrfs_path *path;
10610 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -040010611 struct btrfs_free_cluster *cluster;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010612 struct btrfs_root *tree_root = fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010613 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -040010614 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010615 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -040010616 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010617 int index;
Josef Bacik89a55892010-10-14 14:52:27 -040010618 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +000010619 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +000010620 bool remove_em;
Josef Bacikba2c4d42018-12-03 10:20:33 -050010621 bool remove_rsv = false;
Zheng Yan1a40e232008-09-26 10:09:34 -040010622
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010623 block_group = btrfs_lookup_block_group(fs_info, group_start);
Zheng Yan1a40e232008-09-26 10:09:34 -040010624 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -050010625 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -040010626
Qu Wenruo4ed0a7a2018-04-26 17:17:20 +080010627 trace_btrfs_remove_block_group(block_group);
liubo9f7c43c2011-03-07 02:13:33 +000010628 /*
10629 * Free the reserved super bytes from this block group before
10630 * remove it.
10631 */
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010632 free_excluded_extents(block_group);
Josef Bacikfd708b82017-09-29 15:43:50 -040010633 btrfs_free_ref_tree_range(fs_info, block_group->key.objectid,
10634 block_group->key.offset);
liubo9f7c43c2011-03-07 02:13:33 +000010635
Zheng Yan1a40e232008-09-26 10:09:34 -040010636 memcpy(&key, &block_group->key, sizeof(key));
Qu Wenruo3e72ee82018-01-30 18:20:45 +080010637 index = btrfs_bg_flags_to_raid_index(block_group->flags);
David Sterba46df06b2018-07-13 20:46:30 +020010638 factor = btrfs_bg_type_to_factor(block_group->flags);
Zheng Yan1a40e232008-09-26 10:09:34 -040010639
Chris Mason44fb5512009-06-04 15:34:51 -040010640 /* make sure this block group isn't part of an allocation cluster */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010641 cluster = &fs_info->data_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010642 spin_lock(&cluster->refill_lock);
10643 btrfs_return_cluster_to_free_space(block_group, cluster);
10644 spin_unlock(&cluster->refill_lock);
10645
10646 /*
10647 * make sure this block group isn't part of a metadata
10648 * allocation cluster
10649 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010650 cluster = &fs_info->meta_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010651 spin_lock(&cluster->refill_lock);
10652 btrfs_return_cluster_to_free_space(block_group, cluster);
10653 spin_unlock(&cluster->refill_lock);
10654
Zheng Yan1a40e232008-09-26 10:09:34 -040010655 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010656 if (!path) {
10657 ret = -ENOMEM;
10658 goto out;
10659 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010660
Chris Mason1bbc6212015-04-06 12:46:08 -070010661 /*
10662 * get the inode first so any iput calls done for the io_list
10663 * aren't the final iput (no unlinks allowed now)
10664 */
David Sterba7949f332019-03-20 13:40:19 +010010665 inode = lookup_free_space_inode(block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010666
10667 mutex_lock(&trans->transaction->cache_write_mutex);
10668 /*
Andrea Gelmini52042d82018-11-28 12:05:13 +010010669 * Make sure our free space cache IO is done before removing the
Chris Mason1bbc6212015-04-06 12:46:08 -070010670 * free space inode
10671 */
10672 spin_lock(&trans->transaction->dirty_bgs_lock);
10673 if (!list_empty(&block_group->io_list)) {
10674 list_del_init(&block_group->io_list);
10675
10676 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
10677
10678 spin_unlock(&trans->transaction->dirty_bgs_lock);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -040010679 btrfs_wait_cache_io(trans, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010680 btrfs_put_block_group(block_group);
10681 spin_lock(&trans->transaction->dirty_bgs_lock);
10682 }
10683
10684 if (!list_empty(&block_group->dirty_list)) {
10685 list_del_init(&block_group->dirty_list);
Josef Bacikba2c4d42018-12-03 10:20:33 -050010686 remove_rsv = true;
Chris Mason1bbc6212015-04-06 12:46:08 -070010687 btrfs_put_block_group(block_group);
10688 }
10689 spin_unlock(&trans->transaction->dirty_bgs_lock);
10690 mutex_unlock(&trans->transaction->cache_write_mutex);
10691
Josef Bacik0af3d002010-06-21 14:48:16 -040010692 if (!IS_ERR(inode)) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010693 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010694 if (ret) {
10695 btrfs_add_delayed_iput(inode);
10696 goto out;
10697 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010698 clear_nlink(inode);
10699 /* One for the block groups ref */
10700 spin_lock(&block_group->lock);
10701 if (block_group->iref) {
10702 block_group->iref = 0;
10703 block_group->inode = NULL;
10704 spin_unlock(&block_group->lock);
10705 iput(inode);
10706 } else {
10707 spin_unlock(&block_group->lock);
10708 }
10709 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -040010710 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -040010711 }
10712
10713 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
10714 key.offset = block_group->key.objectid;
10715 key.type = 0;
10716
10717 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
10718 if (ret < 0)
10719 goto out;
10720 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +020010721 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010722 if (ret == 0) {
10723 ret = btrfs_del_item(trans, tree_root, path);
10724 if (ret)
10725 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +020010726 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010727 }
10728
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010729 spin_lock(&fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010730 rb_erase(&block_group->cache_node,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010731 &fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +000010732 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +000010733
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010734 if (fs_info->first_logical_byte == block_group->key.objectid)
10735 fs_info->first_logical_byte = (u64)-1;
10736 spin_unlock(&fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010737
Josef Bacik80eb2342008-10-29 14:49:05 -040010738 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -040010739 /*
10740 * we must use list_del_init so people can check to see if they
10741 * are still on the list after taking the semaphore
10742 */
10743 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010744 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010745 kobj = block_group->space_info->block_group_kobjs[index];
10746 block_group->space_info->block_group_kobjs[index] = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010747 clear_avail_alloc_bits(fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010748 }
Josef Bacik80eb2342008-10-29 14:49:05 -040010749 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010750 if (kobj) {
10751 kobject_del(kobj);
10752 kobject_put(kobj);
10753 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010754
Filipe Manana4f69cb92014-11-26 15:28:51 +000010755 if (block_group->has_caching_ctl)
10756 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -040010757 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -040010758 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010759 if (block_group->has_caching_ctl) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010760 down_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010761 if (!caching_ctl) {
10762 struct btrfs_caching_control *ctl;
10763
10764 list_for_each_entry(ctl,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010765 &fs_info->caching_block_groups, list)
Filipe Manana4f69cb92014-11-26 15:28:51 +000010766 if (ctl->block_group == block_group) {
10767 caching_ctl = ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +020010768 refcount_inc(&caching_ctl->count);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010769 break;
10770 }
10771 }
10772 if (caching_ctl)
10773 list_del_init(&caching_ctl->list);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010774 up_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010775 if (caching_ctl) {
10776 /* Once for the caching bgs list and once for us. */
10777 put_caching_control(caching_ctl);
10778 put_caching_control(caching_ctl);
10779 }
10780 }
Josef Bacik817d52f2009-07-13 21:29:25 -040010781
Josef Bacikce93ec52014-11-17 15:45:48 -050010782 spin_lock(&trans->transaction->dirty_bgs_lock);
Nikolay Borisov9a0ec832019-01-30 16:50:49 +020010783 WARN_ON(!list_empty(&block_group->dirty_list));
10784 WARN_ON(!list_empty(&block_group->io_list));
Josef Bacikce93ec52014-11-17 15:45:48 -050010785 spin_unlock(&trans->transaction->dirty_bgs_lock);
Nikolay Borisov9a0ec832019-01-30 16:50:49 +020010786
Josef Bacik817d52f2009-07-13 21:29:25 -040010787 btrfs_remove_free_space_cache(block_group);
10788
Yan Zhengc146afa2008-11-12 14:34:12 -050010789 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +000010790 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +080010791
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010792 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Zhao Lei18d018a2015-02-24 20:07:44 +080010793 WARN_ON(block_group->space_info->total_bytes
10794 < block_group->key.offset);
10795 WARN_ON(block_group->space_info->bytes_readonly
10796 < block_group->key.offset);
10797 WARN_ON(block_group->space_info->disk_total
10798 < block_group->key.offset * factor);
10799 }
Yan Zhengc146afa2008-11-12 14:34:12 -050010800 block_group->space_info->total_bytes -= block_group->key.offset;
10801 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -040010802 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +080010803
Yan Zhengc146afa2008-11-12 14:34:12 -050010804 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -040010805
Josef Bacik0af3d002010-06-21 14:48:16 -040010806 memcpy(&key, &block_group->key, sizeof(key));
10807
David Sterba34441362016-10-04 19:34:27 +020010808 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana04216822014-11-27 21:14:15 +000010809 spin_lock(&block_group->lock);
10810 block_group->removed = 1;
10811 /*
10812 * At this point trimming can't start on this block group, because we
10813 * removed the block group from the tree fs_info->block_group_cache_tree
10814 * so no one can't find it anymore and even if someone already got this
10815 * block group before we removed it from the rbtree, they have already
10816 * incremented block_group->trimming - if they didn't, they won't find
10817 * any free space entries because we already removed them all when we
10818 * called btrfs_remove_free_space_cache().
10819 *
10820 * And we must not remove the extent map from the fs_info->mapping_tree
10821 * to prevent the same logical address range and physical device space
10822 * ranges from being reused for a new block group. This is because our
10823 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
10824 * completely transactionless, so while it is trimming a range the
10825 * currently running transaction might finish and a new one start,
10826 * allowing for new block groups to be created that can reuse the same
10827 * physical device locations unless we take this special care.
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010828 *
10829 * There may also be an implicit trim operation if the file system
10830 * is mounted with -odiscard. The same protections must remain
10831 * in place until the extents have been discarded completely when
10832 * the transaction commit has completed.
Filipe Manana04216822014-11-27 21:14:15 +000010833 */
10834 remove_em = (atomic_read(&block_group->trimming) == 0);
Filipe Manana04216822014-11-27 21:14:15 +000010835 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +000010836
David Sterba34441362016-10-04 19:34:27 +020010837 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010838
Nikolay Borisovf3f72772018-05-10 15:44:46 +030010839 ret = remove_block_group_free_space(trans, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010840 if (ret)
10841 goto out;
10842
Chris Masonfa9c0d792009-04-03 09:47:43 -040010843 btrfs_put_block_group(block_group);
10844 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -040010845
10846 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
10847 if (ret > 0)
10848 ret = -EIO;
10849 if (ret < 0)
10850 goto out;
10851
10852 ret = btrfs_del_item(trans, root, path);
Filipe Manana8eaf40c2019-06-12 11:05:42 +010010853 if (ret)
10854 goto out;
10855
10856 if (remove_em) {
10857 struct extent_map_tree *em_tree;
10858
David Sterbac8bf1b62019-05-17 11:43:17 +020010859 em_tree = &fs_info->mapping_tree;
Filipe Manana8eaf40c2019-06-12 11:05:42 +010010860 write_lock(&em_tree->lock);
10861 remove_extent_mapping(em_tree, em);
10862 write_unlock(&em_tree->lock);
10863 /* once for the tree */
10864 free_extent_map(em);
10865 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010866out:
Josef Bacikba2c4d42018-12-03 10:20:33 -050010867 if (remove_rsv)
10868 btrfs_delayed_refs_rsv_release(fs_info, 1);
Zheng Yan1a40e232008-09-26 10:09:34 -040010869 btrfs_free_path(path);
10870 return ret;
10871}
liuboacce9522011-01-06 19:30:25 +080010872
Filipe Manana8eab77f2015-11-13 23:57:16 +000010873struct btrfs_trans_handle *
Filipe Manana7fd01182015-11-13 23:57:17 +000010874btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info,
10875 const u64 chunk_offset)
Filipe Manana8eab77f2015-11-13 23:57:16 +000010876{
David Sterbac8bf1b62019-05-17 11:43:17 +020010877 struct extent_map_tree *em_tree = &fs_info->mapping_tree;
Filipe Manana7fd01182015-11-13 23:57:17 +000010878 struct extent_map *em;
10879 struct map_lookup *map;
10880 unsigned int num_items;
10881
10882 read_lock(&em_tree->lock);
10883 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
10884 read_unlock(&em_tree->lock);
10885 ASSERT(em && em->start == chunk_offset);
10886
Filipe Manana8eab77f2015-11-13 23:57:16 +000010887 /*
Filipe Manana7fd01182015-11-13 23:57:17 +000010888 * We need to reserve 3 + N units from the metadata space info in order
10889 * to remove a block group (done at btrfs_remove_chunk() and at
10890 * btrfs_remove_block_group()), which are used for:
10891 *
Filipe Manana8eab77f2015-11-13 23:57:16 +000010892 * 1 unit for adding the free space inode's orphan (located in the tree
10893 * of tree roots).
Filipe Manana7fd01182015-11-13 23:57:17 +000010894 * 1 unit for deleting the block group item (located in the extent
10895 * tree).
10896 * 1 unit for deleting the free space item (located in tree of tree
10897 * roots).
10898 * N units for deleting N device extent items corresponding to each
10899 * stripe (located in the device tree).
10900 *
10901 * In order to remove a block group we also need to reserve units in the
10902 * system space info in order to update the chunk tree (update one or
10903 * more device items and remove one chunk item), but this is done at
10904 * btrfs_remove_chunk() through a call to check_system_chunk().
Filipe Manana8eab77f2015-11-13 23:57:16 +000010905 */
Jeff Mahoney95617d62015-06-03 10:55:48 -040010906 map = em->map_lookup;
Filipe Manana7fd01182015-11-13 23:57:17 +000010907 num_items = 3 + map->num_stripes;
10908 free_extent_map(em);
10909
Filipe Manana8eab77f2015-11-13 23:57:16 +000010910 return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root,
Filipe Manana7fd01182015-11-13 23:57:17 +000010911 num_items, 1);
Filipe Manana8eab77f2015-11-13 23:57:16 +000010912}
10913
Josef Bacik47ab2a62014-09-18 11:20:02 -040010914/*
10915 * Process the unused_bgs list and remove any that don't have any allocated
10916 * space inside of them.
10917 */
10918void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
10919{
10920 struct btrfs_block_group_cache *block_group;
10921 struct btrfs_space_info *space_info;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010922 struct btrfs_trans_handle *trans;
10923 int ret = 0;
10924
Josef Bacikafcdd122016-09-02 15:40:02 -040010925 if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
Josef Bacik47ab2a62014-09-18 11:20:02 -040010926 return;
10927
10928 spin_lock(&fs_info->unused_bgs_lock);
10929 while (!list_empty(&fs_info->unused_bgs)) {
10930 u64 start, end;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010931 int trimming;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010932
10933 block_group = list_first_entry(&fs_info->unused_bgs,
10934 struct btrfs_block_group_cache,
10935 bg_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010936 list_del_init(&block_group->bg_list);
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010937
10938 space_info = block_group->space_info;
10939
Josef Bacik47ab2a62014-09-18 11:20:02 -040010940 if (ret || btrfs_mixed_space_info(space_info)) {
10941 btrfs_put_block_group(block_group);
10942 continue;
10943 }
10944 spin_unlock(&fs_info->unused_bgs_lock);
10945
Zhao Leid5f2e332015-10-08 18:46:44 +080010946 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010947
Josef Bacik47ab2a62014-09-18 11:20:02 -040010948 /* Don't want to race with allocators so take the groups_sem */
10949 down_write(&space_info->groups_sem);
10950 spin_lock(&block_group->lock);
Qu Wenruo43794442018-06-22 12:35:00 +080010951 if (block_group->reserved || block_group->pinned ||
Josef Bacik47ab2a62014-09-18 11:20:02 -040010952 btrfs_block_group_used(&block_group->item) ||
Chris Mason19c4d2f2016-10-10 13:43:31 -070010953 block_group->ro ||
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010954 list_is_singular(&block_group->list)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -040010955 /*
10956 * We want to bail if we made new allocations or have
10957 * outstanding allocations in this block group. We do
10958 * the ro check in case balance is currently acting on
10959 * this block group.
10960 */
Qu Wenruo4ed0a7a2018-04-26 17:17:20 +080010961 trace_btrfs_skip_unused_block_group(block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010962 spin_unlock(&block_group->lock);
10963 up_write(&space_info->groups_sem);
10964 goto next;
10965 }
10966 spin_unlock(&block_group->lock);
10967
10968 /* We don't want to force the issue, only flip if it's ok. */
Zhaolei868f4012015-08-05 16:43:27 +080010969 ret = inc_block_group_ro(block_group, 0);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010970 up_write(&space_info->groups_sem);
10971 if (ret < 0) {
10972 ret = 0;
10973 goto next;
10974 }
10975
10976 /*
10977 * Want to do this before we do anything else so we can recover
10978 * properly if we fail to join the transaction.
10979 */
Filipe Manana7fd01182015-11-13 23:57:17 +000010980 trans = btrfs_start_trans_remove_block_group(fs_info,
10981 block_group->key.objectid);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010982 if (IS_ERR(trans)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010983 btrfs_dec_block_group_ro(block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010984 ret = PTR_ERR(trans);
10985 goto next;
10986 }
10987
10988 /*
10989 * We could have pending pinned extents for this block group,
10990 * just delete them, we don't care about them anymore.
10991 */
10992 start = block_group->key.objectid;
10993 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +000010994 /*
10995 * Hold the unused_bg_unpin_mutex lock to avoid racing with
10996 * btrfs_finish_extent_commit(). If we are at transaction N,
10997 * another task might be running finish_extent_commit() for the
10998 * previous transaction N - 1, and have seen a range belonging
10999 * to the block group in freed_extents[] before we were able to
11000 * clear the whole block group range from freed_extents[]. This
11001 * means that task can lookup for the block group after we
11002 * unpinned it from freed_extents[] and removed it, leading to
11003 * a BUG_ON() at btrfs_unpin_extent_range().
11004 */
11005 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +000011006 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
David Sterba91166212016-04-26 23:54:39 +020011007 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000011008 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000011009 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011010 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000011011 goto end_trans;
11012 }
11013 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
David Sterba91166212016-04-26 23:54:39 +020011014 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000011015 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000011016 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011017 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000011018 goto end_trans;
11019 }
Filipe Mananad4b450c2015-01-29 19:18:25 +000011020 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011021
11022 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +080011023 spin_lock(&space_info->lock);
11024 spin_lock(&block_group->lock);
11025
Lu Fengqie2907c12018-10-24 20:24:02 +080011026 update_bytes_pinned(space_info, -block_group->pinned);
Zhao Leic30666d2015-02-25 14:17:20 +080011027 space_info->bytes_readonly += block_group->pinned;
Ethan Liendec59fa2018-07-13 16:50:42 +080011028 percpu_counter_add_batch(&space_info->total_bytes_pinned,
11029 -block_group->pinned,
11030 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011031 block_group->pinned = 0;
11032
Zhao Leic30666d2015-02-25 14:17:20 +080011033 spin_unlock(&block_group->lock);
11034 spin_unlock(&space_info->lock);
11035
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011036 /* DISCARD can flip during remount */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011037 trimming = btrfs_test_opt(fs_info, DISCARD);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011038
11039 /* Implicit trim during transaction commit. */
11040 if (trimming)
11041 btrfs_get_block_group_trimming(block_group);
11042
Josef Bacik47ab2a62014-09-18 11:20:02 -040011043 /*
11044 * Btrfs_remove_chunk will abort the transaction if things go
11045 * horribly wrong.
11046 */
Nikolay Borisov97aff912018-07-20 19:37:53 +030011047 ret = btrfs_remove_chunk(trans, block_group->key.objectid);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011048
11049 if (ret) {
11050 if (trimming)
11051 btrfs_put_block_group_trimming(block_group);
11052 goto end_trans;
11053 }
11054
11055 /*
11056 * If we're not mounted with -odiscard, we can just forget
11057 * about this block group. Otherwise we'll need to wait
11058 * until transaction commit to do the actual discard.
11059 */
11060 if (trimming) {
Filipe Manana348a0012015-11-27 12:16:16 +000011061 spin_lock(&fs_info->unused_bgs_lock);
11062 /*
11063 * A concurrent scrub might have added us to the list
11064 * fs_info->unused_bgs, so use a list_move operation
11065 * to add the block group to the deleted_bgs list.
11066 */
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011067 list_move(&block_group->bg_list,
11068 &trans->transaction->deleted_bgs);
Filipe Manana348a0012015-11-27 12:16:16 +000011069 spin_unlock(&fs_info->unused_bgs_lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011070 btrfs_get_block_group(block_group);
11071 }
Filipe Manana758eb512014-11-03 14:08:39 +000011072end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040011073 btrfs_end_transaction(trans);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011074next:
Zhao Leid5f2e332015-10-08 18:46:44 +080011075 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011076 btrfs_put_block_group(block_group);
11077 spin_lock(&fs_info->unused_bgs_lock);
11078 }
11079 spin_unlock(&fs_info->unused_bgs_lock);
11080}
11081
liuboc59021f2011-03-07 02:13:14 +000011082int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
11083{
liubo1aba86d2011-04-08 08:44:37 +000011084 struct btrfs_super_block *disk_super;
11085 u64 features;
11086 u64 flags;
11087 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000011088 int ret;
11089
David Sterba6c417612011-04-13 15:41:04 +020011090 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000011091 if (!btrfs_super_root(disk_super))
Dan Carpenter0dc924c52016-01-13 15:21:17 +030011092 return -EINVAL;
liuboc59021f2011-03-07 02:13:14 +000011093
liubo1aba86d2011-04-08 08:44:37 +000011094 features = btrfs_super_incompat_flags(disk_super);
11095 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
11096 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000011097
liubo1aba86d2011-04-08 08:44:37 +000011098 flags = BTRFS_BLOCK_GROUP_SYSTEM;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011099 ret = create_space_info(fs_info, flags);
liuboc59021f2011-03-07 02:13:14 +000011100 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000011101 goto out;
liuboc59021f2011-03-07 02:13:14 +000011102
liubo1aba86d2011-04-08 08:44:37 +000011103 if (mixed) {
11104 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011105 ret = create_space_info(fs_info, flags);
liubo1aba86d2011-04-08 08:44:37 +000011106 } else {
11107 flags = BTRFS_BLOCK_GROUP_METADATA;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011108 ret = create_space_info(fs_info, flags);
liubo1aba86d2011-04-08 08:44:37 +000011109 if (ret)
11110 goto out;
11111
11112 flags = BTRFS_BLOCK_GROUP_DATA;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011113 ret = create_space_info(fs_info, flags);
liubo1aba86d2011-04-08 08:44:37 +000011114 }
11115out:
liuboc59021f2011-03-07 02:13:14 +000011116 return ret;
11117}
11118
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011119int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info,
11120 u64 start, u64 end)
liuboacce9522011-01-06 19:30:25 +080011121{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011122 return unpin_extent_range(fs_info, start, end, false);
liuboacce9522011-01-06 19:30:25 +080011123}
11124
Jeff Mahoney499f3772015-06-15 09:41:17 -040011125/*
11126 * It used to be that old block groups would be left around forever.
11127 * Iterating over them would be enough to trim unused space. Since we
11128 * now automatically remove them, we also need to iterate over unallocated
11129 * space.
11130 *
11131 * We don't want a transaction for this since the discard may take a
11132 * substantial amount of time. We don't require that a transaction be
11133 * running, but we do need to take a running transaction into account
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011134 * to ensure that we're not discarding chunks that were released or
11135 * allocated in the current transaction.
Jeff Mahoney499f3772015-06-15 09:41:17 -040011136 *
11137 * Holding the chunks lock will prevent other threads from allocating
11138 * or releasing chunks, but it won't prevent a running transaction
11139 * from committing and releasing the memory that the pending chunks
11140 * list head uses. For that, we need to take a reference to the
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011141 * transaction and hold the commit root sem. We only need to hold
11142 * it while performing the free space search since we have already
11143 * held back allocations.
Jeff Mahoney499f3772015-06-15 09:41:17 -040011144 */
Nikolay Borisov8103d102019-06-03 13:06:00 +030011145static int btrfs_trim_free_extents(struct btrfs_device *device, u64 *trimmed)
Jeff Mahoney499f3772015-06-15 09:41:17 -040011146{
Nikolay Borisov8103d102019-06-03 13:06:00 +030011147 u64 start = SZ_1M, len = 0, end = 0;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011148 int ret;
11149
11150 *trimmed = 0;
11151
Jeff Mahoney0be88e32018-09-06 17:18:15 -040011152 /* Discard not supported = nothing to do. */
11153 if (!blk_queue_discard(bdev_get_queue(device->bdev)))
11154 return 0;
11155
Andrea Gelmini52042d82018-11-28 12:05:13 +010011156 /* Not writable = nothing to do. */
Anand Jainebbede42017-12-04 12:54:52 +080011157 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Jeff Mahoney499f3772015-06-15 09:41:17 -040011158 return 0;
11159
11160 /* No free space = nothing to do. */
11161 if (device->total_bytes <= device->bytes_used)
11162 return 0;
11163
11164 ret = 0;
11165
11166 while (1) {
Jeff Mahoneyfb456252016-06-22 18:54:56 -040011167 struct btrfs_fs_info *fs_info = device->fs_info;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011168 u64 bytes;
11169
11170 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
11171 if (ret)
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011172 break;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011173
Nikolay Borisov929be172019-03-27 14:24:18 +020011174 find_first_clear_extent_bit(&device->alloc_state, start,
11175 &start, &end,
11176 CHUNK_TRIMMED | CHUNK_ALLOCATED);
11177 /*
11178 * If find_first_clear_extent_bit find a range that spans the
11179 * end of the device it will set end to -1, in this case it's up
11180 * to the caller to trim the value to the size of the device.
11181 */
11182 end = min(end, device->total_bytes - 1);
11183 len = end - start + 1;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011184
Nikolay Borisov929be172019-03-27 14:24:18 +020011185 /* We didn't find any extents */
11186 if (!len) {
Jeff Mahoney499f3772015-06-15 09:41:17 -040011187 mutex_unlock(&fs_info->chunk_mutex);
Nikolay Borisov929be172019-03-27 14:24:18 +020011188 ret = 0;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011189 break;
11190 }
11191
Nikolay Borisov929be172019-03-27 14:24:18 +020011192 ret = btrfs_issue_discard(device->bdev, start, len,
11193 &bytes);
11194 if (!ret)
11195 set_extent_bits(&device->alloc_state, start,
11196 start + bytes - 1,
11197 CHUNK_TRIMMED);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011198 mutex_unlock(&fs_info->chunk_mutex);
11199
11200 if (ret)
11201 break;
11202
11203 start += len;
11204 *trimmed += bytes;
11205
11206 if (fatal_signal_pending(current)) {
11207 ret = -ERESTARTSYS;
11208 break;
11209 }
11210
11211 cond_resched();
11212 }
11213
11214 return ret;
11215}
11216
Qu Wenruo93bba242018-09-07 14:16:23 +080011217/*
11218 * Trim the whole filesystem by:
11219 * 1) trimming the free space in each block group
11220 * 2) trimming the unallocated space on each device
11221 *
11222 * This will also continue trimming even if a block group or device encounters
11223 * an error. The return value will be the last error, or 0 if nothing bad
11224 * happens.
11225 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011226int btrfs_trim_fs(struct btrfs_fs_info *fs_info, struct fstrim_range *range)
Li Dongyangf7039b12011-03-24 10:24:28 +000011227{
Li Dongyangf7039b12011-03-24 10:24:28 +000011228 struct btrfs_block_group_cache *cache = NULL;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011229 struct btrfs_device *device;
11230 struct list_head *devices;
Li Dongyangf7039b12011-03-24 10:24:28 +000011231 u64 group_trimmed;
11232 u64 start;
11233 u64 end;
11234 u64 trimmed = 0;
Qu Wenruo93bba242018-09-07 14:16:23 +080011235 u64 bg_failed = 0;
11236 u64 dev_failed = 0;
11237 int bg_ret = 0;
11238 int dev_ret = 0;
Li Dongyangf7039b12011-03-24 10:24:28 +000011239 int ret = 0;
11240
Qu Wenruo6ba9fc82018-09-07 14:16:24 +080011241 cache = btrfs_lookup_first_block_group(fs_info, range->start);
David Sterbaf87b7eb2019-03-20 12:01:07 +010011242 for (; cache; cache = next_block_group(cache)) {
Li Dongyangf7039b12011-03-24 10:24:28 +000011243 if (cache->key.objectid >= (range->start + range->len)) {
11244 btrfs_put_block_group(cache);
11245 break;
11246 }
11247
11248 start = max(range->start, cache->key.objectid);
11249 end = min(range->start + range->len,
11250 cache->key.objectid + cache->key.offset);
11251
11252 if (end - start >= range->minlen) {
11253 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000011254 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040011255 if (ret) {
Qu Wenruo93bba242018-09-07 14:16:23 +080011256 bg_failed++;
11257 bg_ret = ret;
11258 continue;
Josef Bacik1be41b72013-06-12 13:56:06 -040011259 }
11260 ret = wait_block_group_cache_done(cache);
11261 if (ret) {
Qu Wenruo93bba242018-09-07 14:16:23 +080011262 bg_failed++;
11263 bg_ret = ret;
11264 continue;
Josef Bacik1be41b72013-06-12 13:56:06 -040011265 }
Li Dongyangf7039b12011-03-24 10:24:28 +000011266 }
11267 ret = btrfs_trim_block_group(cache,
11268 &group_trimmed,
11269 start,
11270 end,
11271 range->minlen);
11272
11273 trimmed += group_trimmed;
11274 if (ret) {
Qu Wenruo93bba242018-09-07 14:16:23 +080011275 bg_failed++;
11276 bg_ret = ret;
11277 continue;
Li Dongyangf7039b12011-03-24 10:24:28 +000011278 }
11279 }
Li Dongyangf7039b12011-03-24 10:24:28 +000011280 }
11281
Qu Wenruo93bba242018-09-07 14:16:23 +080011282 if (bg_failed)
11283 btrfs_warn(fs_info,
11284 "failed to trim %llu block group(s), last error %d",
11285 bg_failed, bg_ret);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011286 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoneyd4e329d2018-09-06 17:18:14 -040011287 devices = &fs_info->fs_devices->devices;
11288 list_for_each_entry(device, devices, dev_list) {
Nikolay Borisov8103d102019-06-03 13:06:00 +030011289 ret = btrfs_trim_free_extents(device, &group_trimmed);
Qu Wenruo93bba242018-09-07 14:16:23 +080011290 if (ret) {
11291 dev_failed++;
11292 dev_ret = ret;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011293 break;
Qu Wenruo93bba242018-09-07 14:16:23 +080011294 }
Jeff Mahoney499f3772015-06-15 09:41:17 -040011295
11296 trimmed += group_trimmed;
11297 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011298 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011299
Qu Wenruo93bba242018-09-07 14:16:23 +080011300 if (dev_failed)
11301 btrfs_warn(fs_info,
11302 "failed to trim %llu device(s), last error %d",
11303 dev_failed, dev_ret);
Li Dongyangf7039b12011-03-24 10:24:28 +000011304 range->len = trimmed;
Qu Wenruo93bba242018-09-07 14:16:23 +080011305 if (bg_ret)
11306 return bg_ret;
11307 return dev_ret;
Li Dongyangf7039b12011-03-24 10:24:28 +000011308}
Miao Xie8257b2d2014-03-06 13:38:19 +080011309
11310/*
David Sterbaea14b57f2017-06-22 02:19:11 +020011311 * btrfs_{start,end}_write_no_snapshotting() are similar to
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011312 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
11313 * data into the page cache through nocow before the subvolume is snapshoted,
11314 * but flush the data into disk after the snapshot creation, or to prevent
David Sterbaea14b57f2017-06-22 02:19:11 +020011315 * operations while snapshotting is ongoing and that cause the snapshot to be
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011316 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080011317 */
David Sterbaea14b57f2017-06-22 02:19:11 +020011318void btrfs_end_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011319{
11320 percpu_counter_dec(&root->subv_writers->counter);
David Sterba093258e2018-02-26 16:15:17 +010011321 cond_wake_up(&root->subv_writers->wait);
Miao Xie8257b2d2014-03-06 13:38:19 +080011322}
11323
David Sterbaea14b57f2017-06-22 02:19:11 +020011324int btrfs_start_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011325{
David Sterbaea14b57f2017-06-22 02:19:11 +020011326 if (atomic_read(&root->will_be_snapshotted))
Miao Xie8257b2d2014-03-06 13:38:19 +080011327 return 0;
11328
11329 percpu_counter_inc(&root->subv_writers->counter);
11330 /*
11331 * Make sure counter is updated before we check for snapshot creation.
11332 */
11333 smp_mb();
David Sterbaea14b57f2017-06-22 02:19:11 +020011334 if (atomic_read(&root->will_be_snapshotted)) {
11335 btrfs_end_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080011336 return 0;
11337 }
11338 return 1;
11339}
Zhao Lei0bc19f902016-01-06 18:56:36 +080011340
Zhao Lei0bc19f902016-01-06 18:56:36 +080011341void btrfs_wait_for_snapshot_creation(struct btrfs_root *root)
11342{
11343 while (true) {
11344 int ret;
11345
David Sterbaea14b57f2017-06-22 02:19:11 +020011346 ret = btrfs_start_write_no_snapshotting(root);
Zhao Lei0bc19f902016-01-06 18:56:36 +080011347 if (ret)
11348 break;
Peter Zijlstra46259562018-03-15 11:43:08 +010011349 wait_var_event(&root->will_be_snapshotted,
11350 !atomic_read(&root->will_be_snapshotted));
Zhao Lei0bc19f902016-01-06 18:56:36 +080011351 }
11352}
Qu Wenruo031f24d2018-05-22 16:43:47 +080011353
11354void btrfs_mark_bg_unused(struct btrfs_block_group_cache *bg)
11355{
11356 struct btrfs_fs_info *fs_info = bg->fs_info;
11357
11358 spin_lock(&fs_info->unused_bgs_lock);
11359 if (list_empty(&bg->bg_list)) {
11360 btrfs_get_block_group(bg);
11361 trace_btrfs_add_unused_block_group(bg);
11362 list_add_tail(&bg->bg_list, &fs_info->unused_bgs);
11363 }
11364 spin_unlock(&fs_info->unused_bgs_lock);
11365}