blob: cd33b89418ddb8e52dad7f93218106460857da96 [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
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700759static void add_pinned_bytes(struct btrfs_fs_info *fs_info, s64 num_bytes,
Nikolay Borisov29d2b842018-03-30 12:58:47 +0300760 bool metadata, u64 root_objectid)
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700761{
762 struct btrfs_space_info *space_info;
763 u64 flags;
764
Nikolay Borisov29d2b842018-03-30 12:58:47 +0300765 if (metadata) {
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700766 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
767 flags = BTRFS_BLOCK_GROUP_SYSTEM;
768 else
769 flags = BTRFS_BLOCK_GROUP_METADATA;
770 } else {
771 flags = BTRFS_BLOCK_GROUP_DATA;
772 }
773
774 space_info = __find_space_info(fs_info, flags);
Omar Sandoval55e81962017-06-06 16:45:27 -0700775 ASSERT(space_info);
Ethan Liendec59fa2018-07-13 16:50:42 +0800776 percpu_counter_add_batch(&space_info->total_bytes_pinned, num_bytes,
777 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700778}
779
Chris Mason4184ea72009-03-10 12:39:20 -0400780/*
781 * after adding space to the filesystem, we need to clear the full flags
782 * on all the space infos.
783 */
784void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
785{
786 struct list_head *head = &info->space_info;
787 struct btrfs_space_info *found;
788
789 rcu_read_lock();
790 list_for_each_entry_rcu(found, head, list)
791 found->full = 0;
792 rcu_read_unlock();
793}
794
Filipe Manana1a4ed8f2014-10-27 10:44:24 +0000795/* simple helper to search for an existing data extent at a given offset */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400796int btrfs_lookup_data_extent(struct btrfs_fs_info *fs_info, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400797{
798 int ret;
799 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400800 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400801
Zheng Yan31840ae2008-09-23 13:14:14 -0400802 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700803 if (!path)
804 return -ENOMEM;
805
Chris Masone02119d2008-09-05 16:13:11 -0400806 key.objectid = start;
807 key.offset = len;
Josef Bacik3173a182013-03-07 14:22:04 -0500808 key.type = BTRFS_EXTENT_ITEM_KEY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400809 ret = btrfs_search_slot(NULL, fs_info->extent_root, &key, path, 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400810 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500811 return ret;
812}
813
Chris Masond8d5f3e2007-12-11 12:42:00 -0500814/*
Josef Bacik3173a182013-03-07 14:22:04 -0500815 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400816 *
817 * the head node for delayed ref is used to store the sum of all the
818 * reference count modifications queued up in the rbtree. the head
819 * node may also store the extent flags to set. This way you can check
820 * to see what the reference count and extent flags would be if all of
821 * the delayed refs are not processed.
822 */
823int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400824 struct btrfs_fs_info *fs_info, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500825 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400826{
827 struct btrfs_delayed_ref_head *head;
828 struct btrfs_delayed_ref_root *delayed_refs;
829 struct btrfs_path *path;
830 struct btrfs_extent_item *ei;
831 struct extent_buffer *leaf;
832 struct btrfs_key key;
833 u32 item_size;
834 u64 num_refs;
835 u64 extent_flags;
836 int ret;
837
Josef Bacik3173a182013-03-07 14:22:04 -0500838 /*
839 * If we don't have skinny metadata, don't bother doing anything
840 * different
841 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400842 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) {
843 offset = fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500844 metadata = 0;
845 }
846
Yan, Zhenga22285a2010-05-16 10:48:46 -0400847 path = btrfs_alloc_path();
848 if (!path)
849 return -ENOMEM;
850
Yan, Zhenga22285a2010-05-16 10:48:46 -0400851 if (!trans) {
852 path->skip_locking = 1;
853 path->search_commit_root = 1;
854 }
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000855
856search_again:
857 key.objectid = bytenr;
858 key.offset = offset;
859 if (metadata)
860 key.type = BTRFS_METADATA_ITEM_KEY;
861 else
862 key.type = BTRFS_EXTENT_ITEM_KEY;
863
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400864 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400865 if (ret < 0)
866 goto out_free;
867
Josef Bacik3173a182013-03-07 14:22:04 -0500868 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100869 if (path->slots[0]) {
870 path->slots[0]--;
871 btrfs_item_key_to_cpu(path->nodes[0], &key,
872 path->slots[0]);
873 if (key.objectid == bytenr &&
874 key.type == BTRFS_EXTENT_ITEM_KEY &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400875 key.offset == fs_info->nodesize)
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100876 ret = 0;
877 }
Josef Bacik3173a182013-03-07 14:22:04 -0500878 }
879
Yan, Zhenga22285a2010-05-16 10:48:46 -0400880 if (ret == 0) {
881 leaf = path->nodes[0];
882 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
883 if (item_size >= sizeof(*ei)) {
884 ei = btrfs_item_ptr(leaf, path->slots[0],
885 struct btrfs_extent_item);
886 num_refs = btrfs_extent_refs(leaf, ei);
887 extent_flags = btrfs_extent_flags(leaf, ei);
888 } else {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +0300889 ret = -EINVAL;
890 btrfs_print_v0_err(fs_info);
891 if (trans)
892 btrfs_abort_transaction(trans, ret);
893 else
894 btrfs_handle_fs_error(fs_info, ret, NULL);
895
896 goto out_free;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400897 }
Nikolay Borisovba3c2b12018-06-26 16:57:36 +0300898
Yan, Zhenga22285a2010-05-16 10:48:46 -0400899 BUG_ON(num_refs == 0);
900 } else {
901 num_refs = 0;
902 extent_flags = 0;
903 ret = 0;
904 }
905
906 if (!trans)
907 goto out;
908
909 delayed_refs = &trans->transaction->delayed_refs;
910 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -0800911 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400912 if (head) {
913 if (!mutex_trylock(&head->mutex)) {
Josef Bacikd2788502017-09-29 15:43:57 -0400914 refcount_inc(&head->refs);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400915 spin_unlock(&delayed_refs->lock);
916
David Sterbab3b4aa72011-04-21 01:20:15 +0200917 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400918
David Sterba8cc33e52011-05-02 15:29:25 +0200919 /*
920 * Mutex was contended, block until it's released and try
921 * again
922 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400923 mutex_lock(&head->mutex);
924 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -0400925 btrfs_put_delayed_ref_head(head);
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000926 goto search_again;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400927 }
Josef Bacikd7df2c72014-01-23 09:21:38 -0500928 spin_lock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400929 if (head->extent_op && head->extent_op->update_flags)
930 extent_flags |= head->extent_op->flags_to_set;
931 else
932 BUG_ON(num_refs == 0);
933
Josef Bacikd2788502017-09-29 15:43:57 -0400934 num_refs += head->ref_mod;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500935 spin_unlock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400936 mutex_unlock(&head->mutex);
937 }
938 spin_unlock(&delayed_refs->lock);
939out:
940 WARN_ON(num_refs == 0);
941 if (refs)
942 *refs = num_refs;
943 if (flags)
944 *flags = extent_flags;
945out_free:
946 btrfs_free_path(path);
947 return ret;
948}
949
950/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500951 * Back reference rules. Back refs have three main goals:
952 *
953 * 1) differentiate between all holders of references to an extent so that
954 * when a reference is dropped we can make sure it was a valid reference
955 * before freeing the extent.
956 *
957 * 2) Provide enough information to quickly find the holders of an extent
958 * if we notice a given block is corrupted or bad.
959 *
960 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
961 * maintenance. This is actually the same as #2, but with a slightly
962 * different use case.
963 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400964 * There are two kinds of back refs. The implicit back refs is optimized
965 * for pointers in non-shared tree blocks. For a given pointer in a block,
966 * back refs of this kind provide information about the block's owner tree
967 * and the pointer's key. These information allow us to find the block by
968 * b-tree searching. The full back refs is for pointers in tree blocks not
969 * referenced by their owner trees. The location of tree block is recorded
970 * in the back refs. Actually the full back refs is generic, and can be
971 * used in all cases the implicit back refs is used. The major shortcoming
972 * of the full back refs is its overhead. Every time a tree block gets
973 * COWed, we have to update back refs entry for all pointers in it.
974 *
975 * For a newly allocated tree block, we use implicit back refs for
976 * pointers in it. This means most tree related operations only involve
977 * implicit back refs. For a tree block created in old transaction, the
978 * only way to drop a reference to it is COW it. So we can detect the
979 * event that tree block loses its owner tree's reference and do the
980 * back refs conversion.
981 *
Nicholas D Steeves01327612016-05-19 21:18:45 -0400982 * When a tree block is COWed through a tree, there are four cases:
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400983 *
984 * The reference count of the block is one and the tree is the block's
985 * owner tree. Nothing to do in this case.
986 *
987 * The reference count of the block is one and the tree is not the
988 * block's owner tree. In this case, full back refs is used for pointers
989 * in the block. Remove these full back refs, add implicit back refs for
990 * every pointers in the new block.
991 *
992 * The reference count of the block is greater than one and the tree is
993 * the block's owner tree. In this case, implicit back refs is used for
994 * pointers in the block. Add full back refs for every pointers in the
995 * block, increase lower level extents' reference counts. The original
996 * implicit back refs are entailed to the new block.
997 *
998 * The reference count of the block is greater than one and the tree is
999 * not the block's owner tree. Add implicit back refs for every pointer in
1000 * the new block, increase lower level extents' reference count.
1001 *
1002 * Back Reference Key composing:
1003 *
1004 * The key objectid corresponds to the first byte in the extent,
1005 * The key type is used to differentiate between types of back refs.
1006 * There are different meanings of the key offset for different types
1007 * of back refs.
1008 *
Chris Masond8d5f3e2007-12-11 12:42:00 -05001009 * File extents can be referenced by:
1010 *
1011 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -04001012 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -05001013 * - different offsets inside a file (bookend extents in file.c)
1014 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001015 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001016 *
1017 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -05001018 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001019 * - original offset in the file
1020 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -04001021 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001022 * The key offset for the implicit back refs is hash of the first
1023 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001024 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001025 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001026 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001027 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001028 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001029 * The key offset for the implicit back refs is the first byte of
1030 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001031 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001032 * When a file extent is allocated, The implicit back refs is used.
1033 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001034 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001035 * (root_key.objectid, inode objectid, offset in file, 1)
1036 *
1037 * When a file extent is removed file truncation, we find the
1038 * corresponding implicit back refs and check the following fields:
1039 *
1040 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -05001041 *
1042 * Btree extents can be referenced by:
1043 *
1044 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -05001045 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001046 * Both the implicit back refs and the full back refs for tree blocks
1047 * only consist of key. The key offset for the implicit back refs is
1048 * objectid of block's owner tree. The key offset for the full back refs
1049 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001050 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001051 * When implicit back refs is used, information about the lowest key and
1052 * level of the tree block are required. These information are stored in
1053 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001054 */
Zheng Yan31840ae2008-09-23 13:14:14 -04001055
Liu Bo167ce952017-08-18 15:15:18 -06001056/*
1057 * is_data == BTRFS_REF_TYPE_BLOCK, tree block type is required,
Andrea Gelmini52042d82018-11-28 12:05:13 +01001058 * is_data == BTRFS_REF_TYPE_DATA, data type is requiried,
Liu Bo167ce952017-08-18 15:15:18 -06001059 * is_data == BTRFS_REF_TYPE_ANY, either type is OK.
1060 */
1061int btrfs_get_extent_inline_ref_type(const struct extent_buffer *eb,
1062 struct btrfs_extent_inline_ref *iref,
1063 enum btrfs_inline_ref_type is_data)
1064{
1065 int type = btrfs_extent_inline_ref_type(eb, iref);
Liu Bo64ecdb62017-08-18 15:15:24 -06001066 u64 offset = btrfs_extent_inline_ref_offset(eb, iref);
Liu Bo167ce952017-08-18 15:15:18 -06001067
1068 if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1069 type == BTRFS_SHARED_BLOCK_REF_KEY ||
1070 type == BTRFS_SHARED_DATA_REF_KEY ||
1071 type == BTRFS_EXTENT_DATA_REF_KEY) {
1072 if (is_data == BTRFS_REF_TYPE_BLOCK) {
Liu Bo64ecdb62017-08-18 15:15:24 -06001073 if (type == BTRFS_TREE_BLOCK_REF_KEY)
Liu Bo167ce952017-08-18 15:15:18 -06001074 return type;
Liu Bo64ecdb62017-08-18 15:15:24 -06001075 if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1076 ASSERT(eb->fs_info);
1077 /*
1078 * Every shared one has parent tree
1079 * block, which must be aligned to
1080 * nodesize.
1081 */
1082 if (offset &&
1083 IS_ALIGNED(offset, eb->fs_info->nodesize))
1084 return type;
1085 }
Liu Bo167ce952017-08-18 15:15:18 -06001086 } else if (is_data == BTRFS_REF_TYPE_DATA) {
Liu Bo64ecdb62017-08-18 15:15:24 -06001087 if (type == BTRFS_EXTENT_DATA_REF_KEY)
Liu Bo167ce952017-08-18 15:15:18 -06001088 return type;
Liu Bo64ecdb62017-08-18 15:15:24 -06001089 if (type == BTRFS_SHARED_DATA_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 {
1101 ASSERT(is_data == BTRFS_REF_TYPE_ANY);
1102 return type;
1103 }
1104 }
1105
1106 btrfs_print_leaf((struct extent_buffer *)eb);
1107 btrfs_err(eb->fs_info, "eb %llu invalid extent inline ref type %d",
1108 eb->start, type);
1109 WARN_ON(1);
1110
1111 return BTRFS_REF_TYPE_INVALID;
1112}
1113
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001114static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1115{
1116 u32 high_crc = ~(u32)0;
1117 u32 low_crc = ~(u32)0;
1118 __le64 lenum;
1119
1120 lenum = cpu_to_le64(root_objectid);
Nikolay Borisov9678c542018-01-08 11:45:05 +02001121 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001122 lenum = cpu_to_le64(owner);
Nikolay Borisov9678c542018-01-08 11:45:05 +02001123 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001124 lenum = cpu_to_le64(offset);
Nikolay Borisov9678c542018-01-08 11:45:05 +02001125 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001126
1127 return ((u64)high_crc << 31) ^ (u64)low_crc;
1128}
1129
1130static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1131 struct btrfs_extent_data_ref *ref)
1132{
1133 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1134 btrfs_extent_data_ref_objectid(leaf, ref),
1135 btrfs_extent_data_ref_offset(leaf, ref));
1136}
1137
1138static int match_extent_data_ref(struct extent_buffer *leaf,
1139 struct btrfs_extent_data_ref *ref,
1140 u64 root_objectid, u64 owner, u64 offset)
1141{
1142 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1143 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1144 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1145 return 0;
1146 return 1;
1147}
1148
1149static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001150 struct btrfs_path *path,
1151 u64 bytenr, u64 parent,
1152 u64 root_objectid,
1153 u64 owner, u64 offset)
1154{
Nikolay Borisovbd1d53e2018-06-20 15:48:51 +03001155 struct btrfs_root *root = trans->fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001156 struct btrfs_key key;
1157 struct btrfs_extent_data_ref *ref;
1158 struct extent_buffer *leaf;
1159 u32 nritems;
1160 int ret;
1161 int recow;
1162 int err = -ENOENT;
1163
1164 key.objectid = bytenr;
1165 if (parent) {
1166 key.type = BTRFS_SHARED_DATA_REF_KEY;
1167 key.offset = parent;
1168 } else {
1169 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1170 key.offset = hash_extent_data_ref(root_objectid,
1171 owner, offset);
1172 }
1173again:
1174 recow = 0;
1175 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1176 if (ret < 0) {
1177 err = ret;
1178 goto fail;
1179 }
1180
1181 if (parent) {
1182 if (!ret)
1183 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001184 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001185 }
1186
1187 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001188 nritems = btrfs_header_nritems(leaf);
1189 while (1) {
1190 if (path->slots[0] >= nritems) {
1191 ret = btrfs_next_leaf(root, path);
1192 if (ret < 0)
1193 err = ret;
1194 if (ret)
1195 goto fail;
1196
1197 leaf = path->nodes[0];
1198 nritems = btrfs_header_nritems(leaf);
1199 recow = 1;
1200 }
1201
1202 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1203 if (key.objectid != bytenr ||
1204 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1205 goto fail;
1206
1207 ref = btrfs_item_ptr(leaf, path->slots[0],
1208 struct btrfs_extent_data_ref);
1209
1210 if (match_extent_data_ref(leaf, ref, root_objectid,
1211 owner, offset)) {
1212 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001213 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001214 goto again;
1215 }
1216 err = 0;
1217 break;
1218 }
1219 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001220 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001221fail:
1222 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001223}
1224
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001225static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001226 struct btrfs_path *path,
1227 u64 bytenr, u64 parent,
1228 u64 root_objectid, u64 owner,
1229 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001230{
Nikolay Borisov62b895a2018-06-20 15:48:44 +03001231 struct btrfs_root *root = trans->fs_info->extent_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04001232 struct btrfs_key key;
1233 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001234 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001235 u32 num_refs;
1236 int ret;
1237
1238 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001239 if (parent) {
1240 key.type = BTRFS_SHARED_DATA_REF_KEY;
1241 key.offset = parent;
1242 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001243 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001244 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1245 key.offset = hash_extent_data_ref(root_objectid,
1246 owner, offset);
1247 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001248 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001249
1250 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1251 if (ret && ret != -EEXIST)
1252 goto fail;
1253
1254 leaf = path->nodes[0];
1255 if (parent) {
1256 struct btrfs_shared_data_ref *ref;
1257 ref = btrfs_item_ptr(leaf, path->slots[0],
1258 struct btrfs_shared_data_ref);
1259 if (ret == 0) {
1260 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1261 } else {
1262 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1263 num_refs += refs_to_add;
1264 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1265 }
1266 } else {
1267 struct btrfs_extent_data_ref *ref;
1268 while (ret == -EEXIST) {
1269 ref = btrfs_item_ptr(leaf, path->slots[0],
1270 struct btrfs_extent_data_ref);
1271 if (match_extent_data_ref(leaf, ref, root_objectid,
1272 owner, offset))
1273 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001274 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001275 key.offset++;
1276 ret = btrfs_insert_empty_item(trans, root, path, &key,
1277 size);
1278 if (ret && ret != -EEXIST)
1279 goto fail;
1280
1281 leaf = path->nodes[0];
1282 }
1283 ref = btrfs_item_ptr(leaf, path->slots[0],
1284 struct btrfs_extent_data_ref);
1285 if (ret == 0) {
1286 btrfs_set_extent_data_ref_root(leaf, ref,
1287 root_objectid);
1288 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1289 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1290 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1291 } else {
1292 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1293 num_refs += refs_to_add;
1294 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1295 }
1296 }
1297 btrfs_mark_buffer_dirty(leaf);
1298 ret = 0;
1299fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001300 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001301 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001302}
1303
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001304static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001305 struct btrfs_path *path,
Josef Bacikfcebe452014-05-13 17:30:47 -07001306 int refs_to_drop, int *last_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04001307{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001308 struct btrfs_key key;
1309 struct btrfs_extent_data_ref *ref1 = NULL;
1310 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001311 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001312 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001313 int ret = 0;
1314
1315 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001316 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1317
1318 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1319 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1320 struct btrfs_extent_data_ref);
1321 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1322 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1323 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1324 struct btrfs_shared_data_ref);
1325 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
David Sterba6d8ff4e2018-06-26 16:20:59 +02001326 } else if (unlikely(key.type == BTRFS_EXTENT_REF_V0_KEY)) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03001327 btrfs_print_v0_err(trans->fs_info);
1328 btrfs_abort_transaction(trans, -EINVAL);
1329 return -EINVAL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001330 } else {
1331 BUG();
1332 }
1333
Chris Mason56bec292009-03-13 10:10:06 -04001334 BUG_ON(num_refs < refs_to_drop);
1335 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001336
Zheng Yan31840ae2008-09-23 13:14:14 -04001337 if (num_refs == 0) {
Nikolay Borisove9f62902018-06-20 15:48:46 +03001338 ret = btrfs_del_item(trans, trans->fs_info->extent_root, path);
Josef Bacikfcebe452014-05-13 17:30:47 -07001339 *last_ref = 1;
Zheng Yan31840ae2008-09-23 13:14:14 -04001340 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001341 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1342 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1343 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1344 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
Zheng Yan31840ae2008-09-23 13:14:14 -04001345 btrfs_mark_buffer_dirty(leaf);
1346 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001347 return ret;
1348}
1349
Zhaolei9ed0dea2015-08-06 22:16:24 +08001350static noinline u32 extent_data_ref_count(struct btrfs_path *path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001351 struct btrfs_extent_inline_ref *iref)
1352{
1353 struct btrfs_key key;
1354 struct extent_buffer *leaf;
1355 struct btrfs_extent_data_ref *ref1;
1356 struct btrfs_shared_data_ref *ref2;
1357 u32 num_refs = 0;
Liu Bo3de28d52017-08-18 15:15:19 -06001358 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001359
1360 leaf = path->nodes[0];
1361 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03001362
1363 BUG_ON(key.type == BTRFS_EXTENT_REF_V0_KEY);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001364 if (iref) {
Liu Bo3de28d52017-08-18 15:15:19 -06001365 /*
1366 * If type is invalid, we should have bailed out earlier than
1367 * this call.
1368 */
1369 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
1370 ASSERT(type != BTRFS_REF_TYPE_INVALID);
1371 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001372 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1373 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1374 } else {
1375 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1376 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1377 }
1378 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1379 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1380 struct btrfs_extent_data_ref);
1381 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1382 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1383 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1384 struct btrfs_shared_data_ref);
1385 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001386 } else {
1387 WARN_ON(1);
1388 }
1389 return num_refs;
1390}
1391
1392static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001393 struct btrfs_path *path,
1394 u64 bytenr, u64 parent,
1395 u64 root_objectid)
1396{
Nikolay Borisovb8582ee2018-06-20 15:48:50 +03001397 struct btrfs_root *root = trans->fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001398 struct btrfs_key key;
1399 int ret;
1400
1401 key.objectid = bytenr;
1402 if (parent) {
1403 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1404 key.offset = parent;
1405 } else {
1406 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1407 key.offset = root_objectid;
1408 }
1409
1410 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1411 if (ret > 0)
1412 ret = -ENOENT;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001413 return ret;
1414}
1415
1416static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001417 struct btrfs_path *path,
1418 u64 bytenr, u64 parent,
1419 u64 root_objectid)
1420{
1421 struct btrfs_key key;
1422 int ret;
1423
1424 key.objectid = bytenr;
1425 if (parent) {
1426 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1427 key.offset = parent;
1428 } else {
1429 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1430 key.offset = root_objectid;
1431 }
1432
Nikolay Borisov10728402018-06-20 15:48:43 +03001433 ret = btrfs_insert_empty_item(trans, trans->fs_info->extent_root,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001434 path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001435 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001436 return ret;
1437}
1438
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001439static inline int extent_ref_type(u64 parent, u64 owner)
1440{
1441 int type;
1442 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1443 if (parent > 0)
1444 type = BTRFS_SHARED_BLOCK_REF_KEY;
1445 else
1446 type = BTRFS_TREE_BLOCK_REF_KEY;
1447 } else {
1448 if (parent > 0)
1449 type = BTRFS_SHARED_DATA_REF_KEY;
1450 else
1451 type = BTRFS_EXTENT_DATA_REF_KEY;
1452 }
1453 return type;
1454}
1455
Yan Zheng2c47e6052009-06-27 21:07:35 -04001456static int find_next_key(struct btrfs_path *path, int level,
1457 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001458
1459{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001460 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001461 if (!path->nodes[level])
1462 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001463 if (path->slots[level] + 1 >=
1464 btrfs_header_nritems(path->nodes[level]))
1465 continue;
1466 if (level == 0)
1467 btrfs_item_key_to_cpu(path->nodes[level], key,
1468 path->slots[level] + 1);
1469 else
1470 btrfs_node_key_to_cpu(path->nodes[level], key,
1471 path->slots[level] + 1);
1472 return 0;
1473 }
1474 return 1;
1475}
1476
1477/*
1478 * look for inline back ref. if back ref is found, *ref_ret is set
1479 * to the address of inline back ref, and 0 is returned.
1480 *
1481 * if back ref isn't found, *ref_ret is set to the address where it
1482 * should be inserted, and -ENOENT is returned.
1483 *
1484 * if insert is true and there are too many inline back refs, the path
1485 * points to the extent item, and -EAGAIN is returned.
1486 *
1487 * NOTE: inline back refs are ordered in the same way that back ref
1488 * items in the tree are ordered.
1489 */
1490static noinline_for_stack
1491int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001492 struct btrfs_path *path,
1493 struct btrfs_extent_inline_ref **ref_ret,
1494 u64 bytenr, u64 num_bytes,
1495 u64 parent, u64 root_objectid,
1496 u64 owner, u64 offset, int insert)
1497{
Nikolay Borisov867cc1f2018-06-20 15:48:48 +03001498 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001499 struct btrfs_root *root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001500 struct btrfs_key key;
1501 struct extent_buffer *leaf;
1502 struct btrfs_extent_item *ei;
1503 struct btrfs_extent_inline_ref *iref;
1504 u64 flags;
1505 u64 item_size;
1506 unsigned long ptr;
1507 unsigned long end;
1508 int extra_size;
1509 int type;
1510 int want;
1511 int ret;
1512 int err = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001513 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Liu Bo3de28d52017-08-18 15:15:19 -06001514 int needed;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001515
1516 key.objectid = bytenr;
1517 key.type = BTRFS_EXTENT_ITEM_KEY;
1518 key.offset = num_bytes;
1519
1520 want = extent_ref_type(parent, owner);
1521 if (insert) {
1522 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001523 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001524 } else
1525 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001526
1527 /*
Nikolay Borisov16d1c062018-06-18 14:59:26 +03001528 * Owner is our level, so we can just add one to get the level for the
1529 * block we are interested in.
Josef Bacik3173a182013-03-07 14:22:04 -05001530 */
1531 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1532 key.type = BTRFS_METADATA_ITEM_KEY;
1533 key.offset = owner;
1534 }
1535
1536again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001537 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1538 if (ret < 0) {
1539 err = ret;
1540 goto out;
1541 }
Josef Bacik3173a182013-03-07 14:22:04 -05001542
1543 /*
1544 * We may be a newly converted file system which still has the old fat
1545 * extent entries for metadata, so try and see if we have one of those.
1546 */
1547 if (ret > 0 && skinny_metadata) {
1548 skinny_metadata = false;
1549 if (path->slots[0]) {
1550 path->slots[0]--;
1551 btrfs_item_key_to_cpu(path->nodes[0], &key,
1552 path->slots[0]);
1553 if (key.objectid == bytenr &&
1554 key.type == BTRFS_EXTENT_ITEM_KEY &&
1555 key.offset == num_bytes)
1556 ret = 0;
1557 }
1558 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001559 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001560 key.type = BTRFS_EXTENT_ITEM_KEY;
1561 key.offset = num_bytes;
1562 btrfs_release_path(path);
1563 goto again;
1564 }
1565 }
1566
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001567 if (ret && !insert) {
1568 err = -ENOENT;
1569 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301570 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001571 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001572 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001573 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001574
1575 leaf = path->nodes[0];
1576 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
David Sterba6d8ff4e2018-06-26 16:20:59 +02001577 if (unlikely(item_size < sizeof(*ei))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03001578 err = -EINVAL;
1579 btrfs_print_v0_err(fs_info);
1580 btrfs_abort_transaction(trans, err);
1581 goto out;
1582 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001583
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001584 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1585 flags = btrfs_extent_flags(leaf, ei);
1586
1587 ptr = (unsigned long)(ei + 1);
1588 end = (unsigned long)ei + item_size;
1589
Josef Bacik3173a182013-03-07 14:22:04 -05001590 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001591 ptr += sizeof(struct btrfs_tree_block_info);
1592 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001593 }
1594
Liu Bo3de28d52017-08-18 15:15:19 -06001595 if (owner >= BTRFS_FIRST_FREE_OBJECTID)
1596 needed = BTRFS_REF_TYPE_DATA;
1597 else
1598 needed = BTRFS_REF_TYPE_BLOCK;
1599
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001600 err = -ENOENT;
1601 while (1) {
1602 if (ptr >= end) {
1603 WARN_ON(ptr > end);
1604 break;
1605 }
1606 iref = (struct btrfs_extent_inline_ref *)ptr;
Liu Bo3de28d52017-08-18 15:15:19 -06001607 type = btrfs_get_extent_inline_ref_type(leaf, iref, needed);
1608 if (type == BTRFS_REF_TYPE_INVALID) {
Su Yueaf431dc2018-06-22 16:18:01 +08001609 err = -EUCLEAN;
Liu Bo3de28d52017-08-18 15:15:19 -06001610 goto out;
1611 }
1612
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001613 if (want < type)
1614 break;
1615 if (want > type) {
1616 ptr += btrfs_extent_inline_ref_size(type);
1617 continue;
1618 }
1619
1620 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1621 struct btrfs_extent_data_ref *dref;
1622 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1623 if (match_extent_data_ref(leaf, dref, root_objectid,
1624 owner, offset)) {
1625 err = 0;
1626 break;
1627 }
1628 if (hash_extent_data_ref_item(leaf, dref) <
1629 hash_extent_data_ref(root_objectid, owner, offset))
1630 break;
1631 } else {
1632 u64 ref_offset;
1633 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1634 if (parent > 0) {
1635 if (parent == ref_offset) {
1636 err = 0;
1637 break;
1638 }
1639 if (ref_offset < parent)
1640 break;
1641 } else {
1642 if (root_objectid == ref_offset) {
1643 err = 0;
1644 break;
1645 }
1646 if (ref_offset < root_objectid)
1647 break;
1648 }
1649 }
1650 ptr += btrfs_extent_inline_ref_size(type);
1651 }
1652 if (err == -ENOENT && insert) {
1653 if (item_size + extra_size >=
1654 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1655 err = -EAGAIN;
1656 goto out;
1657 }
1658 /*
1659 * To add new inline back ref, we have to make sure
1660 * there is no corresponding back ref item.
1661 * For simplicity, we just do not add new inline back
1662 * ref if there is any kind of item for this block
1663 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001664 if (find_next_key(path, 0, &key) == 0 &&
1665 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001666 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001667 err = -EAGAIN;
1668 goto out;
1669 }
1670 }
1671 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1672out:
Yan Zheng85d41982009-06-11 08:51:10 -04001673 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001674 path->keep_locks = 0;
1675 btrfs_unlock_up_safe(path, 1);
1676 }
1677 return err;
1678}
1679
1680/*
1681 * helper to add new inline back ref
1682 */
1683static noinline_for_stack
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001684void setup_inline_extent_backref(struct btrfs_fs_info *fs_info,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001685 struct btrfs_path *path,
1686 struct btrfs_extent_inline_ref *iref,
1687 u64 parent, u64 root_objectid,
1688 u64 owner, u64 offset, int refs_to_add,
1689 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001690{
1691 struct extent_buffer *leaf;
1692 struct btrfs_extent_item *ei;
1693 unsigned long ptr;
1694 unsigned long end;
1695 unsigned long item_offset;
1696 u64 refs;
1697 int size;
1698 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001699
1700 leaf = path->nodes[0];
1701 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1702 item_offset = (unsigned long)iref - (unsigned long)ei;
1703
1704 type = extent_ref_type(parent, owner);
1705 size = btrfs_extent_inline_ref_size(type);
1706
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001707 btrfs_extend_item(fs_info, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001708
1709 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1710 refs = btrfs_extent_refs(leaf, ei);
1711 refs += refs_to_add;
1712 btrfs_set_extent_refs(leaf, ei, refs);
1713 if (extent_op)
1714 __run_delayed_extent_op(extent_op, leaf, ei);
1715
1716 ptr = (unsigned long)ei + item_offset;
1717 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1718 if (ptr < end - size)
1719 memmove_extent_buffer(leaf, ptr + size, ptr,
1720 end - size - ptr);
1721
1722 iref = (struct btrfs_extent_inline_ref *)ptr;
1723 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1724 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1725 struct btrfs_extent_data_ref *dref;
1726 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1727 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1728 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1729 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1730 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1731 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1732 struct btrfs_shared_data_ref *sref;
1733 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1734 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1735 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1736 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1737 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1738 } else {
1739 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1740 }
1741 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001742}
1743
1744static int lookup_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001745 struct btrfs_path *path,
1746 struct btrfs_extent_inline_ref **ref_ret,
1747 u64 bytenr, u64 num_bytes, u64 parent,
1748 u64 root_objectid, u64 owner, u64 offset)
1749{
1750 int ret;
1751
Nikolay Borisov867cc1f2018-06-20 15:48:48 +03001752 ret = lookup_inline_extent_backref(trans, path, ref_ret, bytenr,
1753 num_bytes, parent, root_objectid,
1754 owner, offset, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001755 if (ret != -ENOENT)
1756 return ret;
1757
David Sterbab3b4aa72011-04-21 01:20:15 +02001758 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001759 *ref_ret = NULL;
1760
1761 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Nikolay Borisovb8582ee2018-06-20 15:48:50 +03001762 ret = lookup_tree_block_ref(trans, path, bytenr, parent,
1763 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001764 } else {
Nikolay Borisovbd1d53e2018-06-20 15:48:51 +03001765 ret = lookup_extent_data_ref(trans, path, bytenr, parent,
1766 root_objectid, owner, offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001767 }
1768 return ret;
1769}
1770
1771/*
1772 * helper to update/remove inline back ref
1773 */
1774static noinline_for_stack
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001775void update_inline_extent_backref(struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001776 struct btrfs_extent_inline_ref *iref,
1777 int refs_to_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07001778 struct btrfs_delayed_extent_op *extent_op,
1779 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001780{
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001781 struct extent_buffer *leaf = path->nodes[0];
1782 struct btrfs_fs_info *fs_info = leaf->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001783 struct btrfs_extent_item *ei;
1784 struct btrfs_extent_data_ref *dref = NULL;
1785 struct btrfs_shared_data_ref *sref = NULL;
1786 unsigned long ptr;
1787 unsigned long end;
1788 u32 item_size;
1789 int size;
1790 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001791 u64 refs;
1792
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001793 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1794 refs = btrfs_extent_refs(leaf, ei);
1795 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1796 refs += refs_to_mod;
1797 btrfs_set_extent_refs(leaf, ei, refs);
1798 if (extent_op)
1799 __run_delayed_extent_op(extent_op, leaf, ei);
1800
Liu Bo3de28d52017-08-18 15:15:19 -06001801 /*
1802 * If type is invalid, we should have bailed out after
1803 * lookup_inline_extent_backref().
1804 */
1805 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_ANY);
1806 ASSERT(type != BTRFS_REF_TYPE_INVALID);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001807
1808 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1809 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1810 refs = btrfs_extent_data_ref_count(leaf, dref);
1811 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1812 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1813 refs = btrfs_shared_data_ref_count(leaf, sref);
1814 } else {
1815 refs = 1;
1816 BUG_ON(refs_to_mod != -1);
1817 }
1818
1819 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1820 refs += refs_to_mod;
1821
1822 if (refs > 0) {
1823 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1824 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1825 else
1826 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1827 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001828 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001829 size = btrfs_extent_inline_ref_size(type);
1830 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1831 ptr = (unsigned long)iref;
1832 end = (unsigned long)ei + item_size;
1833 if (ptr + size < end)
1834 memmove_extent_buffer(leaf, ptr, ptr + size,
1835 end - ptr - size);
1836 item_size -= size;
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001837 btrfs_truncate_item(fs_info, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001838 }
1839 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001840}
1841
1842static noinline_for_stack
1843int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001844 struct btrfs_path *path,
1845 u64 bytenr, u64 num_bytes, u64 parent,
1846 u64 root_objectid, u64 owner,
1847 u64 offset, int refs_to_add,
1848 struct btrfs_delayed_extent_op *extent_op)
1849{
1850 struct btrfs_extent_inline_ref *iref;
1851 int ret;
1852
Nikolay Borisov867cc1f2018-06-20 15:48:48 +03001853 ret = lookup_inline_extent_backref(trans, path, &iref, bytenr,
1854 num_bytes, parent, root_objectid,
1855 owner, offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001856 if (ret == 0) {
1857 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001858 update_inline_extent_backref(path, iref, refs_to_add,
1859 extent_op, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001860 } else if (ret == -ENOENT) {
Nikolay Borisova639cde2018-06-20 15:49:10 +03001861 setup_inline_extent_backref(trans->fs_info, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001862 root_objectid, owner, offset,
1863 refs_to_add, extent_op);
1864 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001865 }
1866 return ret;
1867}
1868
1869static int insert_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001870 struct btrfs_path *path,
1871 u64 bytenr, u64 parent, u64 root_objectid,
1872 u64 owner, u64 offset, int refs_to_add)
1873{
1874 int ret;
1875 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1876 BUG_ON(refs_to_add != 1);
Nikolay Borisov10728402018-06-20 15:48:43 +03001877 ret = insert_tree_block_ref(trans, path, bytenr, parent,
1878 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001879 } else {
Nikolay Borisov62b895a2018-06-20 15:48:44 +03001880 ret = insert_extent_data_ref(trans, path, bytenr, parent,
1881 root_objectid, owner, offset,
1882 refs_to_add);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001883 }
1884 return ret;
1885}
1886
1887static int remove_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001888 struct btrfs_path *path,
1889 struct btrfs_extent_inline_ref *iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001890 int refs_to_drop, int is_data, int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001891{
Jeff Mahoney143bede2012-03-01 14:56:26 +01001892 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001893
1894 BUG_ON(!is_data && refs_to_drop != 1);
1895 if (iref) {
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001896 update_inline_extent_backref(path, iref, -refs_to_drop, NULL,
1897 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001898 } else if (is_data) {
Nikolay Borisove9f62902018-06-20 15:48:46 +03001899 ret = remove_extent_data_ref(trans, path, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07001900 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001901 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001902 *last_ref = 1;
Nikolay Borisov87cc7a82018-06-20 15:49:12 +03001903 ret = btrfs_del_item(trans, trans->fs_info->extent_root, path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001904 }
1905 return ret;
1906}
1907
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001908static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len,
1909 u64 *discarded_bytes)
Chris Mason15916de2008-11-19 21:17:22 -05001910{
Jeff Mahoney86557862015-06-15 09:41:16 -04001911 int j, ret = 0;
1912 u64 bytes_left, end;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001913 u64 aligned_start = ALIGN(start, 1 << 9);
1914
1915 if (WARN_ON(start != aligned_start)) {
1916 len -= aligned_start - start;
1917 len = round_down(len, 1 << 9);
1918 start = aligned_start;
1919 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001920
1921 *discarded_bytes = 0;
Jeff Mahoney86557862015-06-15 09:41:16 -04001922
1923 if (!len)
1924 return 0;
1925
1926 end = start + len;
1927 bytes_left = len;
1928
1929 /* Skip any superblocks on this device. */
1930 for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) {
1931 u64 sb_start = btrfs_sb_offset(j);
1932 u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE;
1933 u64 size = sb_start - start;
1934
1935 if (!in_range(sb_start, start, bytes_left) &&
1936 !in_range(sb_end, start, bytes_left) &&
1937 !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE))
1938 continue;
1939
1940 /*
1941 * Superblock spans beginning of range. Adjust start and
1942 * try again.
1943 */
1944 if (sb_start <= start) {
1945 start += sb_end - start;
1946 if (start > end) {
1947 bytes_left = 0;
1948 break;
1949 }
1950 bytes_left = end - start;
1951 continue;
1952 }
1953
1954 if (size) {
1955 ret = blkdev_issue_discard(bdev, start >> 9, size >> 9,
1956 GFP_NOFS, 0);
1957 if (!ret)
1958 *discarded_bytes += size;
1959 else if (ret != -EOPNOTSUPP)
1960 return ret;
1961 }
1962
1963 start = sb_end;
1964 if (start > end) {
1965 bytes_left = 0;
1966 break;
1967 }
1968 bytes_left = end - start;
1969 }
1970
1971 if (bytes_left) {
1972 ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9,
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001973 GFP_NOFS, 0);
1974 if (!ret)
Jeff Mahoney86557862015-06-15 09:41:16 -04001975 *discarded_bytes += bytes_left;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001976 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001977 return ret;
Chris Mason15916de2008-11-19 21:17:22 -05001978}
Chris Mason15916de2008-11-19 21:17:22 -05001979
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001980int btrfs_discard_extent(struct btrfs_fs_info *fs_info, u64 bytenr,
Filipe Manana1edb647b2014-12-08 14:01:12 +00001981 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05001982{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001983 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00001984 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02001985 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001986
Christoph Hellwige244a0a2009-10-14 09:24:59 -04001987
Filipe Manana29992412016-05-27 17:42:05 +01001988 /*
1989 * Avoid races with device replace and make sure our bbio has devices
1990 * associated to its stripes that don't go away while we are discarding.
1991 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001992 btrfs_bio_counter_inc_blocked(fs_info);
Liu Hui1f3c79a2009-01-05 15:57:51 -05001993 /* Tell the block device(s) that the sectors can be discarded */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001994 ret = btrfs_map_block(fs_info, BTRFS_MAP_DISCARD, bytenr, &num_bytes,
1995 &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001996 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05001997 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02001998 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001999 int i;
2000
Liu Hui1f3c79a2009-01-05 15:57:51 -05002001
Jan Schmidta1d3c472011-08-04 17:15:33 +02002002 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002003 u64 bytes;
Anand Jain38b5f682017-11-29 18:53:43 +08002004 struct request_queue *req_q;
2005
Filipe Manana627e0872018-01-30 18:40:22 +00002006 if (!stripe->dev->bdev) {
2007 ASSERT(btrfs_test_opt(fs_info, DEGRADED));
2008 continue;
2009 }
Anand Jain38b5f682017-11-29 18:53:43 +08002010 req_q = bdev_get_queue(stripe->dev->bdev);
2011 if (!blk_queue_discard(req_q))
Josef Bacikd5e20032011-08-04 14:52:27 +00002012 continue;
2013
Li Dongyang5378e602011-03-24 10:24:27 +00002014 ret = btrfs_issue_discard(stripe->dev->bdev,
2015 stripe->physical,
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002016 stripe->length,
2017 &bytes);
Li Dongyang5378e602011-03-24 10:24:27 +00002018 if (!ret)
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002019 discarded_bytes += bytes;
Li Dongyang5378e602011-03-24 10:24:27 +00002020 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002021 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00002022
2023 /*
2024 * Just in case we get back EOPNOTSUPP for some reason,
2025 * just ignore the return value so we don't screw up
2026 * people calling discard_extent.
2027 */
2028 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002029 }
Zhao Lei6e9606d2015-01-20 15:11:34 +08002030 btrfs_put_bbio(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002031 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002032 btrfs_bio_counter_dec(fs_info);
Li Dongyang5378e602011-03-24 10:24:27 +00002033
2034 if (actual_bytes)
2035 *actual_bytes = discarded_bytes;
2036
Liu Hui1f3c79a2009-01-05 15:57:51 -05002037
David Woodhouse53b381b2013-01-29 18:40:14 -05002038 if (ret == -EOPNOTSUPP)
2039 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002040 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002041}
2042
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002043/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002044int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002045 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002046 u64 bytenr, u64 num_bytes, u64 parent,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002047 u64 root_objectid, u64 owner, u64 offset)
Zheng Yan31840ae2008-09-23 13:14:14 -04002048{
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002049 struct btrfs_fs_info *fs_info = root->fs_info;
Omar Sandovald7eae342017-06-06 16:45:31 -07002050 int old_ref_mod, new_ref_mod;
Zheng Yan31840ae2008-09-23 13:14:14 -04002051 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002052
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002053 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
2054 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04002055
Josef Bacikfd708b82017-09-29 15:43:50 -04002056 btrfs_ref_tree_mod(root, bytenr, num_bytes, parent, root_objectid,
2057 owner, offset, BTRFS_ADD_DELAYED_REF);
2058
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002059 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Nikolay Borisov44e1c472018-06-20 15:48:53 +03002060 ret = btrfs_add_delayed_tree_ref(trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07002061 num_bytes, parent,
2062 root_objectid, (int)owner,
2063 BTRFS_ADD_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07002064 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002065 } else {
Nikolay Borisov88a979c2018-06-20 15:48:54 +03002066 ret = btrfs_add_delayed_data_ref(trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07002067 num_bytes, parent,
2068 root_objectid, owner, offset,
Omar Sandovald7eae342017-06-06 16:45:31 -07002069 0, BTRFS_ADD_DELAYED_REF,
2070 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002071 }
Omar Sandovald7eae342017-06-06 16:45:31 -07002072
Nikolay Borisov29d2b842018-03-30 12:58:47 +03002073 if (ret == 0 && old_ref_mod < 0 && new_ref_mod >= 0) {
2074 bool metadata = owner < BTRFS_FIRST_FREE_OBJECTID;
2075
2076 add_pinned_bytes(fs_info, -num_bytes, metadata, root_objectid);
2077 }
Omar Sandovald7eae342017-06-06 16:45:31 -07002078
Zheng Yan31840ae2008-09-23 13:14:14 -04002079 return ret;
2080}
2081
Nikolay Borisovbd3c6852018-06-18 14:59:25 +03002082/*
2083 * __btrfs_inc_extent_ref - insert backreference for a given extent
2084 *
2085 * @trans: Handle of transaction
2086 *
2087 * @node: The delayed ref node used to get the bytenr/length for
2088 * extent whose references are incremented.
2089 *
2090 * @parent: If this is a shared extent (BTRFS_SHARED_DATA_REF_KEY/
2091 * BTRFS_SHARED_BLOCK_REF_KEY) then it holds the logical
2092 * bytenr of the parent block. Since new extents are always
2093 * created with indirect references, this will only be the case
2094 * when relocating a shared extent. In that case, root_objectid
2095 * will be BTRFS_TREE_RELOC_OBJECTID. Otheriwse, parent must
2096 * be 0
2097 *
2098 * @root_objectid: The id of the root where this modification has originated,
2099 * this can be either one of the well-known metadata trees or
2100 * the subvolume id which references this extent.
2101 *
2102 * @owner: For data extents it is the inode number of the owning file.
2103 * For metadata extents this parameter holds the level in the
2104 * tree of the extent.
2105 *
2106 * @offset: For metadata extents the offset is ignored and is currently
2107 * always passed as 0. For data extents it is the fileoffset
2108 * this extent belongs to.
2109 *
2110 * @refs_to_add Number of references to add
2111 *
2112 * @extent_op Pointer to a structure, holding information necessary when
2113 * updating a tree block's flags
2114 *
2115 */
Chris Mason925baed2008-06-25 16:01:30 -04002116static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002117 struct btrfs_delayed_ref_node *node,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002118 u64 parent, u64 root_objectid,
2119 u64 owner, u64 offset, int refs_to_add,
2120 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04002121{
Chris Mason5caf2a02007-04-02 11:20:42 -04002122 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002123 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04002124 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07002125 struct btrfs_key key;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002126 u64 bytenr = node->bytenr;
2127 u64 num_bytes = node->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002128 u64 refs;
2129 int ret;
Chris Mason037e6392007-03-07 11:50:24 -05002130
Chris Mason5caf2a02007-04-02 11:20:42 -04002131 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002132 if (!path)
2133 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04002134
David Sterbae4058b52015-11-27 16:31:35 +01002135 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002136 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002137 /* this will setup the path even if it fails to insert the back ref */
Nikolay Borisova639cde2018-06-20 15:49:10 +03002138 ret = insert_inline_extent_backref(trans, path, bytenr, num_bytes,
2139 parent, root_objectid, owner,
2140 offset, refs_to_add, extent_op);
Qu Wenruo0ed47922015-04-16 16:55:08 +08002141 if ((ret < 0 && ret != -EAGAIN) || !ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002142 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002143
2144 /*
2145 * Ok we had -EAGAIN which means we didn't have space to insert and
2146 * inline extent ref, so just update the reference count and add a
2147 * normal backref.
2148 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002149 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002150 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002151 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2152 refs = btrfs_extent_refs(leaf, item);
2153 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2154 if (extent_op)
2155 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002156
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002157 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002158 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002159
David Sterbae4058b52015-11-27 16:31:35 +01002160 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002161 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002162 /* now insert the actual backref */
Nikolay Borisov37593412018-06-20 15:48:45 +03002163 ret = insert_extent_backref(trans, path, bytenr, parent, root_objectid,
2164 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002165 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04002166 btrfs_abort_transaction(trans, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002167out:
Chris Mason74493f72007-12-11 09:25:06 -05002168 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002169 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002170}
2171
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002172static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002173 struct btrfs_delayed_ref_node *node,
2174 struct btrfs_delayed_extent_op *extent_op,
2175 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002176{
Chris Mason56bec292009-03-13 10:10:06 -04002177 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002178 struct btrfs_delayed_data_ref *ref;
2179 struct btrfs_key ins;
2180 u64 parent = 0;
2181 u64 ref_root = 0;
2182 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002183
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002184 ins.objectid = node->bytenr;
2185 ins.offset = node->num_bytes;
2186 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002187
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002188 ref = btrfs_delayed_node_to_data_ref(node);
Nikolay Borisov2bf98ef2018-06-20 15:49:00 +03002189 trace_run_delayed_data_ref(trans->fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002190
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002191 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2192 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002193 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002194
2195 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002196 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002197 flags |= extent_op->flags_to_set;
Nikolay Borisovef89b822018-06-20 15:48:58 +03002198 ret = alloc_reserved_file_extent(trans, parent, ref_root,
2199 flags, ref->objectid,
2200 ref->offset, &ins,
2201 node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002202 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Nikolay Borisov2590d0f2018-06-20 15:48:59 +03002203 ret = __btrfs_inc_extent_ref(trans, node, parent, ref_root,
2204 ref->objectid, ref->offset,
2205 node->ref_mod, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002206 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Nikolay Borisove72cb922018-06-20 15:48:57 +03002207 ret = __btrfs_free_extent(trans, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002208 ref_root, ref->objectid,
2209 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002210 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002211 } else {
2212 BUG();
2213 }
Chris Mason56bec292009-03-13 10:10:06 -04002214 return ret;
2215}
2216
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002217static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2218 struct extent_buffer *leaf,
2219 struct btrfs_extent_item *ei)
2220{
2221 u64 flags = btrfs_extent_flags(leaf, ei);
2222 if (extent_op->update_flags) {
2223 flags |= extent_op->flags_to_set;
2224 btrfs_set_extent_flags(leaf, ei, flags);
2225 }
2226
2227 if (extent_op->update_key) {
2228 struct btrfs_tree_block_info *bi;
2229 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2230 bi = (struct btrfs_tree_block_info *)(ei + 1);
2231 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2232 }
2233}
2234
2235static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
Josef Bacikd2788502017-09-29 15:43:57 -04002236 struct btrfs_delayed_ref_head *head,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002237 struct btrfs_delayed_extent_op *extent_op)
2238{
Nikolay Borisov20b9a2d2018-06-20 15:49:01 +03002239 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002240 struct btrfs_key key;
2241 struct btrfs_path *path;
2242 struct btrfs_extent_item *ei;
2243 struct extent_buffer *leaf;
2244 u32 item_size;
2245 int ret;
2246 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002247 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002248
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002249 if (trans->aborted)
2250 return 0;
2251
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002252 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik3173a182013-03-07 14:22:04 -05002253 metadata = 0;
2254
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002255 path = btrfs_alloc_path();
2256 if (!path)
2257 return -ENOMEM;
2258
Josef Bacikd2788502017-09-29 15:43:57 -04002259 key.objectid = head->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002260
Josef Bacik3173a182013-03-07 14:22:04 -05002261 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002262 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002263 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002264 } else {
2265 key.type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacikd2788502017-09-29 15:43:57 -04002266 key.offset = head->num_bytes;
Josef Bacik3173a182013-03-07 14:22:04 -05002267 }
2268
2269again:
David Sterbae4058b52015-11-27 16:31:35 +01002270 path->reada = READA_FORWARD;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002271 path->leave_spinning = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002272 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002273 if (ret < 0) {
2274 err = ret;
2275 goto out;
2276 }
2277 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002278 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002279 if (path->slots[0] > 0) {
2280 path->slots[0]--;
2281 btrfs_item_key_to_cpu(path->nodes[0], &key,
2282 path->slots[0]);
Josef Bacikd2788502017-09-29 15:43:57 -04002283 if (key.objectid == head->bytenr &&
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002284 key.type == BTRFS_EXTENT_ITEM_KEY &&
Josef Bacikd2788502017-09-29 15:43:57 -04002285 key.offset == head->num_bytes)
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002286 ret = 0;
2287 }
2288 if (ret > 0) {
2289 btrfs_release_path(path);
2290 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002291
Josef Bacikd2788502017-09-29 15:43:57 -04002292 key.objectid = head->bytenr;
2293 key.offset = head->num_bytes;
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002294 key.type = BTRFS_EXTENT_ITEM_KEY;
2295 goto again;
2296 }
2297 } else {
2298 err = -EIO;
2299 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002300 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002301 }
2302
2303 leaf = path->nodes[0];
2304 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03002305
David Sterba6d8ff4e2018-06-26 16:20:59 +02002306 if (unlikely(item_size < sizeof(*ei))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03002307 err = -EINVAL;
2308 btrfs_print_v0_err(fs_info);
2309 btrfs_abort_transaction(trans, err);
2310 goto out;
2311 }
2312
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002313 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2314 __run_delayed_extent_op(extent_op, leaf, ei);
2315
2316 btrfs_mark_buffer_dirty(leaf);
2317out:
2318 btrfs_free_path(path);
2319 return err;
2320}
2321
2322static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002323 struct btrfs_delayed_ref_node *node,
2324 struct btrfs_delayed_extent_op *extent_op,
2325 int insert_reserved)
2326{
2327 int ret = 0;
2328 struct btrfs_delayed_tree_ref *ref;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002329 u64 parent = 0;
2330 u64 ref_root = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002331
2332 ref = btrfs_delayed_node_to_tree_ref(node);
Nikolay Borisovf97806f2018-06-20 15:49:04 +03002333 trace_run_delayed_tree_ref(trans->fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002334
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002335 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2336 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002337 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002338
Liu Bo02794222016-09-14 19:19:05 -07002339 if (node->ref_mod != 1) {
Nikolay Borisovf97806f2018-06-20 15:49:04 +03002340 btrfs_err(trans->fs_info,
Liu Bo02794222016-09-14 19:19:05 -07002341 "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu",
2342 node->bytenr, node->ref_mod, node->action, ref_root,
2343 parent);
2344 return -EIO;
2345 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002346 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002347 BUG_ON(!extent_op || !extent_op->update_flags);
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03002348 ret = alloc_reserved_tree_block(trans, node, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002349 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Nikolay Borisov2590d0f2018-06-20 15:48:59 +03002350 ret = __btrfs_inc_extent_ref(trans, node, parent, ref_root,
2351 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002352 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Nikolay Borisove72cb922018-06-20 15:48:57 +03002353 ret = __btrfs_free_extent(trans, node, parent, ref_root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002354 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002355 } else {
2356 BUG();
2357 }
2358 return ret;
2359}
2360
Chris Mason56bec292009-03-13 10:10:06 -04002361/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002362static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002363 struct btrfs_delayed_ref_node *node,
2364 struct btrfs_delayed_extent_op *extent_op,
2365 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002366{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002367 int ret = 0;
2368
Josef Bacik857cc2f2013-10-07 15:21:08 -04002369 if (trans->aborted) {
2370 if (insert_reserved)
Nikolay Borisov5fac7f92018-06-20 15:49:11 +03002371 btrfs_pin_extent(trans->fs_info, node->bytenr,
Josef Bacik857cc2f2013-10-07 15:21:08 -04002372 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002373 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002374 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002375
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002376 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2377 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
Nikolay Borisovf97806f2018-06-20 15:49:04 +03002378 ret = run_delayed_tree_ref(trans, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002379 insert_reserved);
2380 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2381 node->type == BTRFS_SHARED_DATA_REF_KEY)
Nikolay Borisov2bf98ef2018-06-20 15:49:00 +03002382 ret = run_delayed_data_ref(trans, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002383 insert_reserved);
2384 else
2385 BUG();
Josef Bacik80ee54b2018-10-11 15:54:22 -04002386 if (ret && insert_reserved)
2387 btrfs_pin_extent(trans->fs_info, node->bytenr,
2388 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002389 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002390}
2391
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002392static inline struct btrfs_delayed_ref_node *
Chris Mason56bec292009-03-13 10:10:06 -04002393select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002394{
Filipe Mananacffc3372015-07-09 13:13:44 +01002395 struct btrfs_delayed_ref_node *ref;
2396
Liu Boe3d03962018-08-23 03:51:50 +08002397 if (RB_EMPTY_ROOT(&head->ref_tree.rb_root))
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002398 return NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002399
Filipe Mananacffc3372015-07-09 13:13:44 +01002400 /*
2401 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
2402 * This is to prevent a ref count from going down to zero, which deletes
2403 * the extent item from the extent tree, when there still are references
2404 * to add, which would fail because they would not find the extent item.
2405 */
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002406 if (!list_empty(&head->ref_add_list))
2407 return list_first_entry(&head->ref_add_list,
2408 struct btrfs_delayed_ref_node, add_list);
Filipe Mananacffc3372015-07-09 13:13:44 +01002409
Liu Boe3d03962018-08-23 03:51:50 +08002410 ref = rb_entry(rb_first_cached(&head->ref_tree),
Josef Bacik0e0adbc2017-10-19 14:16:00 -04002411 struct btrfs_delayed_ref_node, ref_node);
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002412 ASSERT(list_empty(&ref->add_list));
2413 return ref;
Chris Mason56bec292009-03-13 10:10:06 -04002414}
2415
Josef Bacik2eadaa22017-09-29 15:43:52 -04002416static void unselect_delayed_ref_head(struct btrfs_delayed_ref_root *delayed_refs,
2417 struct btrfs_delayed_ref_head *head)
2418{
2419 spin_lock(&delayed_refs->lock);
2420 head->processing = 0;
2421 delayed_refs->num_heads_ready++;
2422 spin_unlock(&delayed_refs->lock);
2423 btrfs_delayed_ref_unlock(head);
2424}
2425
Josef Bacikbedc66172018-12-03 10:20:31 -05002426static struct btrfs_delayed_extent_op *cleanup_extent_op(
2427 struct btrfs_delayed_ref_head *head)
Josef Bacikb00e6252017-09-29 15:43:53 -04002428{
2429 struct btrfs_delayed_extent_op *extent_op = head->extent_op;
Josef Bacikbedc66172018-12-03 10:20:31 -05002430
2431 if (!extent_op)
2432 return NULL;
2433
2434 if (head->must_insert_reserved) {
2435 head->extent_op = NULL;
2436 btrfs_free_delayed_extent_op(extent_op);
2437 return NULL;
2438 }
2439 return extent_op;
2440}
2441
2442static int run_and_cleanup_extent_op(struct btrfs_trans_handle *trans,
2443 struct btrfs_delayed_ref_head *head)
2444{
2445 struct btrfs_delayed_extent_op *extent_op;
Josef Bacikb00e6252017-09-29 15:43:53 -04002446 int ret;
2447
Josef Bacikbedc66172018-12-03 10:20:31 -05002448 extent_op = cleanup_extent_op(head);
Josef Bacikb00e6252017-09-29 15:43:53 -04002449 if (!extent_op)
2450 return 0;
2451 head->extent_op = NULL;
Josef Bacikb00e6252017-09-29 15:43:53 -04002452 spin_unlock(&head->lock);
Nikolay Borisov20b9a2d2018-06-20 15:49:01 +03002453 ret = run_delayed_extent_op(trans, head, extent_op);
Josef Bacikb00e6252017-09-29 15:43:53 -04002454 btrfs_free_delayed_extent_op(extent_op);
2455 return ret ? ret : 1;
2456}
2457
Josef Bacik31890da2018-11-21 14:05:41 -05002458void btrfs_cleanup_ref_head_accounting(struct btrfs_fs_info *fs_info,
2459 struct btrfs_delayed_ref_root *delayed_refs,
2460 struct btrfs_delayed_ref_head *head)
Josef Bacik07c47772018-12-03 10:20:30 -05002461{
Josef Bacikba2c4d42018-12-03 10:20:33 -05002462 int nr_items = 1; /* Dropping this ref head update. */
Josef Bacik07c47772018-12-03 10:20:30 -05002463
2464 if (head->total_ref_mod < 0) {
2465 struct btrfs_space_info *space_info;
2466 u64 flags;
2467
2468 if (head->is_data)
2469 flags = BTRFS_BLOCK_GROUP_DATA;
2470 else if (head->is_system)
2471 flags = BTRFS_BLOCK_GROUP_SYSTEM;
2472 else
2473 flags = BTRFS_BLOCK_GROUP_METADATA;
2474 space_info = __find_space_info(fs_info, flags);
2475 ASSERT(space_info);
2476 percpu_counter_add_batch(&space_info->total_bytes_pinned,
2477 -head->num_bytes,
2478 BTRFS_TOTAL_BYTES_PINNED_BATCH);
2479
Josef Bacikba2c4d42018-12-03 10:20:33 -05002480 /*
2481 * We had csum deletions accounted for in our delayed refs rsv,
2482 * we need to drop the csum leaves for this update from our
2483 * delayed_refs_rsv.
2484 */
Josef Bacik07c47772018-12-03 10:20:30 -05002485 if (head->is_data) {
2486 spin_lock(&delayed_refs->lock);
2487 delayed_refs->pending_csums -= head->num_bytes;
2488 spin_unlock(&delayed_refs->lock);
Josef Bacikba2c4d42018-12-03 10:20:33 -05002489 nr_items += btrfs_csum_bytes_to_leaves(fs_info,
2490 head->num_bytes);
Josef Bacik07c47772018-12-03 10:20:30 -05002491 }
2492 }
2493
Josef Bacikba2c4d42018-12-03 10:20:33 -05002494 btrfs_delayed_refs_rsv_release(fs_info, nr_items);
Josef Bacik07c47772018-12-03 10:20:30 -05002495}
2496
Josef Bacik194ab0b2017-09-29 15:43:54 -04002497static int cleanup_ref_head(struct btrfs_trans_handle *trans,
Josef Bacik194ab0b2017-09-29 15:43:54 -04002498 struct btrfs_delayed_ref_head *head)
2499{
Nikolay Borisovf9871ed2018-06-20 15:49:03 +03002500
2501 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacik194ab0b2017-09-29 15:43:54 -04002502 struct btrfs_delayed_ref_root *delayed_refs;
2503 int ret;
2504
2505 delayed_refs = &trans->transaction->delayed_refs;
2506
Josef Bacikbedc66172018-12-03 10:20:31 -05002507 ret = run_and_cleanup_extent_op(trans, head);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002508 if (ret < 0) {
2509 unselect_delayed_ref_head(delayed_refs, head);
2510 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
2511 return ret;
2512 } else if (ret) {
2513 return ret;
2514 }
2515
2516 /*
2517 * Need to drop our head ref lock and re-acquire the delayed ref lock
2518 * and then re-check to make sure nobody got added.
2519 */
2520 spin_unlock(&head->lock);
2521 spin_lock(&delayed_refs->lock);
2522 spin_lock(&head->lock);
Liu Boe3d03962018-08-23 03:51:50 +08002523 if (!RB_EMPTY_ROOT(&head->ref_tree.rb_root) || head->extent_op) {
Josef Bacik194ab0b2017-09-29 15:43:54 -04002524 spin_unlock(&head->lock);
2525 spin_unlock(&delayed_refs->lock);
2526 return 1;
2527 }
Josef Bacikd7baffd2018-12-03 10:20:29 -05002528 btrfs_delete_ref_head(delayed_refs, head);
Josef Bacikc1103f72017-09-29 15:43:56 -04002529 spin_unlock(&head->lock);
Nikolay Borisov1e7a1422018-04-11 11:21:18 +03002530 spin_unlock(&delayed_refs->lock);
Josef Bacikc1103f72017-09-29 15:43:56 -04002531
Josef Bacikc1103f72017-09-29 15:43:56 -04002532 if (head->must_insert_reserved) {
Josef Bacikd2788502017-09-29 15:43:57 -04002533 btrfs_pin_extent(fs_info, head->bytenr,
2534 head->num_bytes, 1);
Josef Bacikc1103f72017-09-29 15:43:56 -04002535 if (head->is_data) {
Josef Bacikd2788502017-09-29 15:43:57 -04002536 ret = btrfs_del_csums(trans, fs_info, head->bytenr,
2537 head->num_bytes);
Josef Bacikc1103f72017-09-29 15:43:56 -04002538 }
2539 }
2540
Josef Bacik31890da2018-11-21 14:05:41 -05002541 btrfs_cleanup_ref_head_accounting(fs_info, delayed_refs, head);
Josef Bacik07c47772018-12-03 10:20:30 -05002542
2543 trace_run_delayed_ref_head(fs_info, head, 0);
Josef Bacikc1103f72017-09-29 15:43:56 -04002544 btrfs_delayed_ref_unlock(head);
Josef Bacikd2788502017-09-29 15:43:57 -04002545 btrfs_put_delayed_ref_head(head);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002546 return 0;
2547}
2548
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002549static struct btrfs_delayed_ref_head *btrfs_obtain_ref_head(
2550 struct btrfs_trans_handle *trans)
2551{
2552 struct btrfs_delayed_ref_root *delayed_refs =
2553 &trans->transaction->delayed_refs;
2554 struct btrfs_delayed_ref_head *head = NULL;
2555 int ret;
2556
2557 spin_lock(&delayed_refs->lock);
Lu Fengqi5637c742018-10-11 13:40:33 +08002558 head = btrfs_select_ref_head(delayed_refs);
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002559 if (!head) {
2560 spin_unlock(&delayed_refs->lock);
2561 return head;
2562 }
2563
2564 /*
2565 * Grab the lock that says we are going to process all the refs for
2566 * this head
2567 */
Lu Fengqi9e920a62018-10-11 13:40:34 +08002568 ret = btrfs_delayed_ref_lock(delayed_refs, head);
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002569 spin_unlock(&delayed_refs->lock);
2570
2571 /*
2572 * We may have dropped the spin lock to get the head mutex lock, and
2573 * that might have given someone else time to free the head. If that's
2574 * true, it has been removed from our list and we can move on.
2575 */
2576 if (ret == -EAGAIN)
2577 head = ERR_PTR(-EAGAIN);
2578
2579 return head;
2580}
2581
Nikolay Borisove7261382018-08-15 10:39:55 +03002582static int btrfs_run_delayed_refs_for_head(struct btrfs_trans_handle *trans,
2583 struct btrfs_delayed_ref_head *locked_ref,
2584 unsigned long *run_refs)
2585{
2586 struct btrfs_fs_info *fs_info = trans->fs_info;
2587 struct btrfs_delayed_ref_root *delayed_refs;
2588 struct btrfs_delayed_extent_op *extent_op;
2589 struct btrfs_delayed_ref_node *ref;
2590 int must_insert_reserved = 0;
2591 int ret;
2592
2593 delayed_refs = &trans->transaction->delayed_refs;
2594
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002595 lockdep_assert_held(&locked_ref->mutex);
2596 lockdep_assert_held(&locked_ref->lock);
2597
Nikolay Borisove7261382018-08-15 10:39:55 +03002598 while ((ref = select_delayed_ref(locked_ref))) {
2599 if (ref->seq &&
2600 btrfs_check_delayed_seq(fs_info, ref->seq)) {
2601 spin_unlock(&locked_ref->lock);
2602 unselect_delayed_ref_head(delayed_refs, locked_ref);
2603 return -EAGAIN;
2604 }
2605
2606 (*run_refs)++;
2607 ref->in_tree = 0;
2608 rb_erase_cached(&ref->ref_node, &locked_ref->ref_tree);
2609 RB_CLEAR_NODE(&ref->ref_node);
2610 if (!list_empty(&ref->add_list))
2611 list_del(&ref->add_list);
2612 /*
2613 * When we play the delayed ref, also correct the ref_mod on
2614 * head
2615 */
2616 switch (ref->action) {
2617 case BTRFS_ADD_DELAYED_REF:
2618 case BTRFS_ADD_DELAYED_EXTENT:
2619 locked_ref->ref_mod -= ref->ref_mod;
2620 break;
2621 case BTRFS_DROP_DELAYED_REF:
2622 locked_ref->ref_mod += ref->ref_mod;
2623 break;
2624 default:
2625 WARN_ON(1);
2626 }
2627 atomic_dec(&delayed_refs->num_entries);
2628
2629 /*
2630 * Record the must_insert_reserved flag before we drop the
2631 * spin lock.
2632 */
2633 must_insert_reserved = locked_ref->must_insert_reserved;
2634 locked_ref->must_insert_reserved = 0;
2635
2636 extent_op = locked_ref->extent_op;
2637 locked_ref->extent_op = NULL;
2638 spin_unlock(&locked_ref->lock);
2639
2640 ret = run_one_delayed_ref(trans, ref, extent_op,
2641 must_insert_reserved);
2642
2643 btrfs_free_delayed_extent_op(extent_op);
2644 if (ret) {
2645 unselect_delayed_ref_head(delayed_refs, locked_ref);
2646 btrfs_put_delayed_ref(ref);
2647 btrfs_debug(fs_info, "run_one_delayed_ref returned %d",
2648 ret);
2649 return ret;
2650 }
2651
2652 btrfs_put_delayed_ref(ref);
2653 cond_resched();
2654
2655 spin_lock(&locked_ref->lock);
2656 btrfs_merge_delayed_refs(trans, delayed_refs, locked_ref);
2657 }
2658
2659 return 0;
2660}
2661
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002662/*
2663 * Returns 0 on success or if called with an already aborted transaction.
2664 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2665 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002666static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacikd7df2c72014-01-23 09:21:38 -05002667 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002668{
Nikolay Borisov0a1e4582018-03-15 16:00:27 +02002669 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason56bec292009-03-13 10:10:06 -04002670 struct btrfs_delayed_ref_root *delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002671 struct btrfs_delayed_ref_head *locked_ref = NULL;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002672 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002673 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002674 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002675 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002676
2677 delayed_refs = &trans->transaction->delayed_refs;
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002678 do {
Chris Mason56bec292009-03-13 10:10:06 -04002679 if (!locked_ref) {
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002680 locked_ref = btrfs_obtain_ref_head(trans);
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002681 if (IS_ERR_OR_NULL(locked_ref)) {
2682 if (PTR_ERR(locked_ref) == -EAGAIN) {
2683 continue;
2684 } else {
2685 break;
2686 }
Chris Mason56bec292009-03-13 10:10:06 -04002687 }
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002688 count++;
Chris Mason56bec292009-03-13 10:10:06 -04002689 }
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002690 /*
2691 * We need to try and merge add/drops of the same ref since we
2692 * can run into issues with relocate dropping the implicit ref
2693 * and then it being added back again before the drop can
2694 * finish. If we merged anything we need to re-loop so we can
2695 * get a good ref.
2696 * Or we can get node references of the same type that weren't
2697 * merged when created due to bumps in the tree mod seq, and
2698 * we need to merge them to prevent adding an inline extent
2699 * backref before dropping it (triggering a BUG_ON at
2700 * insert_inline_extent_backref()).
2701 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002702 spin_lock(&locked_ref->lock);
Nikolay Borisovbe97f132018-04-19 11:06:39 +03002703 btrfs_merge_delayed_refs(trans, delayed_refs, locked_ref);
Josef Bacikae1e2062012-08-07 16:00:32 -04002704
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002705 ret = btrfs_run_delayed_refs_for_head(trans, locked_ref,
2706 &actual_count);
2707 if (ret < 0 && ret != -EAGAIN) {
2708 /*
2709 * Error, btrfs_run_delayed_refs_for_head already
2710 * unlocked everything so just bail out
2711 */
2712 return ret;
2713 } else if (!ret) {
2714 /*
2715 * Success, perform the usual cleanup of a processed
2716 * head
2717 */
Nikolay Borisovf9871ed2018-06-20 15:49:03 +03002718 ret = cleanup_ref_head(trans, locked_ref);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002719 if (ret > 0 ) {
Josef Bacikb00e6252017-09-29 15:43:53 -04002720 /* We dropped our lock, we need to loop. */
2721 ret = 0;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002722 continue;
Josef Bacik194ab0b2017-09-29 15:43:54 -04002723 } else if (ret) {
2724 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002725 }
Josef Bacikc1103f72017-09-29 15:43:56 -04002726 }
Chris Mason56bec292009-03-13 10:10:06 -04002727
Josef Bacikb00e6252017-09-29 15:43:53 -04002728 /*
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002729 * Either success case or btrfs_run_delayed_refs_for_head
2730 * returned -EAGAIN, meaning we need to select another head
Josef Bacikb00e6252017-09-29 15:43:53 -04002731 */
Josef Bacikb00e6252017-09-29 15:43:53 -04002732
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002733 locked_ref = NULL;
Chris Mason1887be62009-03-13 10:11:24 -04002734 cond_resched();
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002735 } while ((nr != -1 && count < nr) || locked_ref);
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002736
2737 /*
2738 * We don't want to include ref heads since we can have empty ref heads
2739 * and those will drastically skew our runtime down since we just do
2740 * accounting, no actual extent tree updates.
2741 */
2742 if (actual_count > 0) {
2743 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2744 u64 avg;
2745
2746 /*
2747 * We weigh the current average higher than our current runtime
2748 * to avoid large swings in the average.
2749 */
2750 spin_lock(&delayed_refs->lock);
2751 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002752 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002753 spin_unlock(&delayed_refs->lock);
2754 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002755 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002756}
2757
Arne Jansen709c0482011-09-12 12:22:57 +02002758#ifdef SCRAMBLE_DELAYED_REFS
2759/*
2760 * Normally delayed refs get processed in ascending bytenr order. This
2761 * correlates in most cases to the order added. To expose dependencies on this
2762 * order, we start to process the tree in the middle instead of the beginning
2763 */
2764static u64 find_middle(struct rb_root *root)
2765{
2766 struct rb_node *n = root->rb_node;
2767 struct btrfs_delayed_ref_node *entry;
2768 int alt = 1;
2769 u64 middle;
2770 u64 first = 0, last = 0;
2771
2772 n = rb_first(root);
2773 if (n) {
2774 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2775 first = entry->bytenr;
2776 }
2777 n = rb_last(root);
2778 if (n) {
2779 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2780 last = entry->bytenr;
2781 }
2782 n = root->rb_node;
2783
2784 while (n) {
2785 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2786 WARN_ON(!entry->in_tree);
2787
2788 middle = entry->bytenr;
2789
2790 if (alt)
2791 n = n->rb_left;
2792 else
2793 n = n->rb_right;
2794
2795 alt = 1 - alt;
2796 }
2797 return middle;
2798}
2799#endif
2800
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002801static inline u64 heads_to_leaves(struct btrfs_fs_info *fs_info, u64 heads)
Josef Bacik1be41b72013-06-12 13:56:06 -04002802{
2803 u64 num_bytes;
2804
2805 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2806 sizeof(struct btrfs_extent_inline_ref));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002807 if (!btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik1be41b72013-06-12 13:56:06 -04002808 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2809
2810 /*
2811 * 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 -04002812 * closer to what we're really going to want to use.
Josef Bacik1be41b72013-06-12 13:56:06 -04002813 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002814 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(fs_info));
Josef Bacik1be41b72013-06-12 13:56:06 -04002815}
2816
Josef Bacik12621332015-02-03 07:50:16 -08002817/*
2818 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2819 * would require to store the csums for that many bytes.
2820 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002821u64 btrfs_csum_bytes_to_leaves(struct btrfs_fs_info *fs_info, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002822{
2823 u64 csum_size;
2824 u64 num_csums_per_leaf;
2825 u64 num_csums;
2826
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002827 csum_size = BTRFS_MAX_ITEM_SIZE(fs_info);
Josef Bacik12621332015-02-03 07:50:16 -08002828 num_csums_per_leaf = div64_u64(csum_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002829 (u64)btrfs_super_csum_size(fs_info->super_copy));
2830 num_csums = div64_u64(csum_bytes, fs_info->sectorsize);
Josef Bacik12621332015-02-03 07:50:16 -08002831 num_csums += num_csums_per_leaf - 1;
2832 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2833 return num_csums;
2834}
2835
Josef Bacik644036122018-12-03 10:20:36 -05002836bool btrfs_check_space_for_delayed_refs(struct btrfs_fs_info *fs_info)
Josef Bacik1be41b72013-06-12 13:56:06 -04002837{
Josef Bacik644036122018-12-03 10:20:36 -05002838 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
2839 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
2840 bool ret = false;
2841 u64 reserved;
Josef Bacik1be41b72013-06-12 13:56:06 -04002842
2843 spin_lock(&global_rsv->lock);
Josef Bacik644036122018-12-03 10:20:36 -05002844 reserved = global_rsv->reserved;
Josef Bacik1be41b72013-06-12 13:56:06 -04002845 spin_unlock(&global_rsv->lock);
Josef Bacik644036122018-12-03 10:20:36 -05002846
2847 /*
2848 * Since the global reserve is just kind of magic we don't really want
2849 * to rely on it to save our bacon, so if our size is more than the
2850 * delayed_refs_rsv and the global rsv then it's time to think about
2851 * bailing.
2852 */
2853 spin_lock(&delayed_refs_rsv->lock);
2854 reserved += delayed_refs_rsv->reserved;
2855 if (delayed_refs_rsv->size >= reserved)
2856 ret = true;
2857 spin_unlock(&delayed_refs_rsv->lock);
Josef Bacik1be41b72013-06-12 13:56:06 -04002858 return ret;
2859}
2860
Lu Fengqi7c861622018-10-11 13:40:36 +08002861int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002862{
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002863 u64 num_entries =
2864 atomic_read(&trans->transaction->delayed_refs.num_entries);
2865 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002866 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002867
2868 smp_mb();
Lu Fengqi7c861622018-10-11 13:40:36 +08002869 avg_runtime = trans->fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002870 val = num_entries * avg_runtime;
Wang Xiaoguangdc1a90c2016-10-26 15:23:01 +08002871 if (val >= NSEC_PER_SEC)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002872 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002873 if (val >= NSEC_PER_SEC / 2)
2874 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002875
Josef Bacik644036122018-12-03 10:20:36 -05002876 return btrfs_check_space_for_delayed_refs(trans->fs_info);
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002877}
2878
Chris Masonc3e69d52009-03-13 10:17:05 -04002879/*
2880 * this starts processing the delayed reference count updates and
2881 * extent insertions we have queued up so far. count can be
2882 * 0, which means to process everything in the tree at the start
2883 * of the run (but not newly added entries), or it can be some target
2884 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002885 *
2886 * Returns 0 on success or if called with an aborted transaction
2887 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002888 */
2889int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02002890 unsigned long count)
Chris Masonc3e69d52009-03-13 10:17:05 -04002891{
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02002892 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -04002893 struct rb_node *node;
2894 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002895 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002896 int ret;
2897 int run_all = count == (unsigned long)-1;
Chris Masonc3e69d52009-03-13 10:17:05 -04002898
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002899 /* We'll clean this up in btrfs_cleanup_transaction */
2900 if (trans->aborted)
2901 return 0;
2902
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002903 if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags))
Chris Mason511711a2015-12-30 07:52:35 -08002904 return 0;
2905
Chris Masonc3e69d52009-03-13 10:17:05 -04002906 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08002907 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05002908 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05002909
Chris Masonc3e69d52009-03-13 10:17:05 -04002910again:
Arne Jansen709c0482011-09-12 12:22:57 +02002911#ifdef SCRAMBLE_DELAYED_REFS
2912 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2913#endif
Nikolay Borisov0a1e4582018-03-15 16:00:27 +02002914 ret = __btrfs_run_delayed_refs(trans, count);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002915 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002916 btrfs_abort_transaction(trans, ret);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002917 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002918 }
2919
Chris Mason56bec292009-03-13 10:10:06 -04002920 if (run_all) {
Josef Bacik119e80d2018-11-21 14:05:42 -05002921 btrfs_create_pending_block_groups(trans);
Josef Bacikea658ba2012-09-11 16:57:25 -04002922
Josef Bacikd7df2c72014-01-23 09:21:38 -05002923 spin_lock(&delayed_refs->lock);
Liu Bo5c9d0282018-08-23 03:51:49 +08002924 node = rb_first_cached(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002925 if (!node) {
2926 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002927 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002928 }
Josef Bacikd2788502017-09-29 15:43:57 -04002929 head = rb_entry(node, struct btrfs_delayed_ref_head,
2930 href_node);
2931 refcount_inc(&head->refs);
Chris Mason56bec292009-03-13 10:10:06 -04002932 spin_unlock(&delayed_refs->lock);
Josef Bacikd2788502017-09-29 15:43:57 -04002933
2934 /* Mutex was contended, block until it's released and retry. */
2935 mutex_lock(&head->mutex);
2936 mutex_unlock(&head->mutex);
2937
2938 btrfs_put_delayed_ref_head(head);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002939 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002940 goto again;
2941 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002942out:
Chris Masona28ec192007-03-06 20:08:01 -05002943 return 0;
2944}
2945
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002946int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002947 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002948 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04002949 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002950{
2951 struct btrfs_delayed_extent_op *extent_op;
2952 int ret;
2953
Miao Xie78a61842012-11-21 02:21:28 +00002954 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002955 if (!extent_op)
2956 return -ENOMEM;
2957
2958 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01002959 extent_op->update_flags = true;
2960 extent_op->update_key = false;
2961 extent_op->is_data = is_data ? true : false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002962 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002963
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002964 ret = btrfs_add_delayed_extent_op(fs_info, trans, bytenr,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002965 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;
3157 int i;
3158 int level;
3159 int ret = 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003160
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003161 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003162 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003163
Zheng Yan31840ae2008-09-23 13:14:14 -04003164 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003165 nritems = btrfs_header_nritems(buf);
3166 level = btrfs_header_level(buf);
3167
Miao Xie27cdeb72014-04-02 19:51:05 +08003168 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003169 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003170
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003171 if (full_backref)
3172 parent = buf->start;
3173 else
3174 parent = 0;
3175
Zheng Yan31840ae2008-09-23 13:14:14 -04003176 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003177 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003178 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003179 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003180 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003181 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003182 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003183 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003184 BTRFS_FILE_EXTENT_INLINE)
3185 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003186 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3187 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003188 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003189
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003190 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3191 key.offset -= btrfs_file_extent_offset(buf, fi);
Qu Wenruodd28b6a2019-04-04 14:45:30 +08003192 if (inc)
3193 ret = btrfs_inc_extent_ref(trans, root, bytenr,
3194 num_bytes, parent, ref_root,
3195 key.objectid, key.offset);
3196 else
3197 ret = btrfs_free_extent(trans, root, bytenr,
3198 num_bytes, parent, ref_root,
3199 key.objectid, key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003200 if (ret)
3201 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003202 } else {
3203 bytenr = btrfs_node_blockptr(buf, i);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003204 num_bytes = fs_info->nodesize;
Qu Wenruodd28b6a2019-04-04 14:45:30 +08003205 if (inc)
3206 ret = btrfs_inc_extent_ref(trans, root, bytenr,
3207 num_bytes, parent, ref_root,
3208 level - 1, 0);
3209 else
3210 ret = btrfs_free_extent(trans, root, bytenr,
3211 num_bytes, parent, ref_root,
3212 level - 1, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003213 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003214 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003215 }
3216 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003217 return 0;
3218fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003219 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003220}
3221
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003222int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003223 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003224{
Josef Bacike339a6b2014-07-02 10:54:25 -07003225 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003226}
Zheng Yan31840ae2008-09-23 13:14:14 -04003227
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003228int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003229 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003230{
Josef Bacike339a6b2014-07-02 10:54:25 -07003231 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003232}
3233
Chris Mason9078a3e2007-04-26 16:46:15 -04003234static int write_one_cache_group(struct btrfs_trans_handle *trans,
Chris Mason9078a3e2007-04-26 16:46:15 -04003235 struct btrfs_path *path,
3236 struct btrfs_block_group_cache *cache)
3237{
David Sterba39db2322019-03-20 11:57:46 +01003238 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04003239 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003240 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003241 unsigned long bi;
3242 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003243
Chris Mason9078a3e2007-04-26 16:46:15 -04003244 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003245 if (ret) {
3246 if (ret > 0)
3247 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003248 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003249 }
Chris Mason5f39d392007-10-15 16:14:19 -04003250
3251 leaf = path->nodes[0];
3252 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3253 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3254 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003255fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003256 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003257 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003258
3259}
3260
David Sterbaf87b7eb2019-03-20 12:01:07 +01003261static struct btrfs_block_group_cache *next_block_group(
3262 struct btrfs_block_group_cache *cache)
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003263{
David Sterbaf87b7eb2019-03-20 12:01:07 +01003264 struct btrfs_fs_info *fs_info = cache->fs_info;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003265 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003266
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003267 spin_lock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003268
3269 /* If our block group was removed, we need a full search. */
3270 if (RB_EMPTY_NODE(&cache->cache_node)) {
3271 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3272
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003273 spin_unlock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003274 btrfs_put_block_group(cache);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003275 cache = btrfs_lookup_first_block_group(fs_info, next_bytenr); return cache;
Filipe Manana292cbd52014-11-26 15:28:50 +00003276 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003277 node = rb_next(&cache->cache_node);
3278 btrfs_put_block_group(cache);
3279 if (node) {
3280 cache = rb_entry(node, struct btrfs_block_group_cache,
3281 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003282 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003283 } else
3284 cache = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003285 spin_unlock(&fs_info->block_group_cache_lock);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003286 return cache;
3287}
3288
Josef Bacik0af3d002010-06-21 14:48:16 -04003289static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3290 struct btrfs_trans_handle *trans,
3291 struct btrfs_path *path)
3292{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003293 struct btrfs_fs_info *fs_info = block_group->fs_info;
3294 struct btrfs_root *root = fs_info->tree_root;
Josef Bacik0af3d002010-06-21 14:48:16 -04003295 struct inode *inode = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003296 struct extent_changeset *data_reserved = NULL;
Josef Bacik0af3d002010-06-21 14:48:16 -04003297 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003298 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003299 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003300 int retries = 0;
3301 int ret = 0;
3302
3303 /*
3304 * If this block group is smaller than 100 megs don't bother caching the
3305 * block group.
3306 */
Byongho Leeee221842015-12-15 01:42:10 +09003307 if (block_group->key.offset < (100 * SZ_1M)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003308 spin_lock(&block_group->lock);
3309 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3310 spin_unlock(&block_group->lock);
3311 return 0;
3312 }
3313
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003314 if (trans->aborted)
3315 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003316again:
David Sterba7949f332019-03-20 13:40:19 +01003317 inode = lookup_free_space_inode(block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003318 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3319 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003320 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003321 goto out;
3322 }
3323
3324 if (IS_ERR(inode)) {
3325 BUG_ON(retries);
3326 retries++;
3327
3328 if (block_group->ro)
3329 goto out_free;
3330
David Sterba4ca75f12019-03-20 13:42:57 +01003331 ret = create_free_space_inode(trans, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003332 if (ret)
3333 goto out_free;
3334 goto again;
3335 }
3336
3337 /*
3338 * We want to set the generation to 0, that way if anything goes wrong
3339 * from here on out we know not to trust this cache when we load up next
3340 * time.
3341 */
3342 BTRFS_I(inode)->generation = 0;
3343 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003344 if (ret) {
3345 /*
3346 * So theoretically we could recover from this, simply set the
3347 * super cache generation to 0 so we know to invalidate the
3348 * cache, but then we'd have to keep track of the block groups
3349 * that fail this way so we know we _have_ to reset this cache
3350 * before the next commit or risk reading stale cache. So to
3351 * limit our exposure to horrible edge cases lets just abort the
3352 * transaction, this only happens in really bad situations
3353 * anyway.
3354 */
Jeff Mahoney66642832016-06-10 18:19:25 -04003355 btrfs_abort_transaction(trans, ret);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003356 goto out_put;
3357 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003358 WARN_ON(ret);
3359
Josef Bacik8e138e02017-11-17 14:50:46 -05003360 /* We've already setup this transaction, go ahead and exit */
3361 if (block_group->cache_generation == trans->transid &&
3362 i_size_read(inode)) {
3363 dcs = BTRFS_DC_SETUP;
3364 goto out_put;
3365 }
3366
Josef Bacik0af3d002010-06-21 14:48:16 -04003367 if (i_size_read(inode) > 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003368 ret = btrfs_check_trunc_cache_free_space(fs_info,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003369 &fs_info->global_block_rsv);
Miao Xie7b61cd92013-05-13 13:55:09 +00003370 if (ret)
3371 goto out_put;
3372
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003373 ret = btrfs_truncate_free_space_cache(trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003374 if (ret)
3375 goto out_put;
3376 }
3377
3378 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003379 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003380 !btrfs_test_opt(fs_info, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003381 /*
3382 * don't bother trying to write stuff out _if_
3383 * a) we're not cached,
Liu Bo1a79c1f2017-03-06 13:49:02 -08003384 * b) we're with nospace_cache mount option,
3385 * c) we're with v2 space_cache (FREE_SPACE_TREE).
Liu Bocf7c1ef2012-07-06 03:31:34 -06003386 */
Josef Bacik2b209822010-12-03 13:17:53 -05003387 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003388 spin_unlock(&block_group->lock);
3389 goto out_put;
3390 }
3391 spin_unlock(&block_group->lock);
3392
Josef Bacik6fc823b2012-08-06 13:46:38 -06003393 /*
Josef Bacik2968b1f2015-10-01 12:55:18 -04003394 * We hit an ENOSPC when setting up the cache in this transaction, just
3395 * skip doing the setup, we've already cleared the cache so we're safe.
3396 */
3397 if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
3398 ret = -ENOSPC;
3399 goto out_put;
3400 }
3401
3402 /*
Josef Bacik6fc823b2012-08-06 13:46:38 -06003403 * Try to preallocate enough space based on how big the block group is.
3404 * Keep in mind this has to include any pinned space which could end up
3405 * taking up quite a bit since it's not folded into the other space
3406 * cache.
3407 */
Byongho Leeee221842015-12-15 01:42:10 +09003408 num_pages = div_u64(block_group->key.offset, SZ_256M);
Josef Bacik0af3d002010-06-21 14:48:16 -04003409 if (!num_pages)
3410 num_pages = 1;
3411
Josef Bacik0af3d002010-06-21 14:48:16 -04003412 num_pages *= 16;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003413 num_pages *= PAGE_SIZE;
Josef Bacik0af3d002010-06-21 14:48:16 -04003414
Qu Wenruo364ecf32017-02-27 15:10:38 +08003415 ret = btrfs_check_data_free_space(inode, &data_reserved, 0, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003416 if (ret)
3417 goto out_put;
3418
3419 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3420 num_pages, num_pages,
3421 &alloc_hint);
Josef Bacik2968b1f2015-10-01 12:55:18 -04003422 /*
3423 * Our cache requires contiguous chunks so that we don't modify a bunch
3424 * of metadata or split extents when writing the cache out, which means
3425 * we can enospc if we are heavily fragmented in addition to just normal
3426 * out of space conditions. So if we hit this just skip setting up any
3427 * other block groups for this transaction, maybe we'll unpin enough
3428 * space the next time around.
3429 */
Josef Bacik2b209822010-12-03 13:17:53 -05003430 if (!ret)
3431 dcs = BTRFS_DC_SETUP;
Josef Bacik2968b1f2015-10-01 12:55:18 -04003432 else if (ret == -ENOSPC)
3433 set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
Josef Bacikc09544e2011-08-30 10:19:10 -04003434
Josef Bacik0af3d002010-06-21 14:48:16 -04003435out_put:
3436 iput(inode);
3437out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003438 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003439out:
3440 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003441 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003442 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003443 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003444 spin_unlock(&block_group->lock);
3445
Qu Wenruo364ecf32017-02-27 15:10:38 +08003446 extent_changeset_free(data_reserved);
Josef Bacik0af3d002010-06-21 14:48:16 -04003447 return ret;
3448}
3449
David Sterbabbebb3e2019-03-20 12:02:55 +01003450int btrfs_setup_space_cache(struct btrfs_trans_handle *trans)
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003451{
David Sterbabbebb3e2019-03-20 12:02:55 +01003452 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003453 struct btrfs_block_group_cache *cache, *tmp;
3454 struct btrfs_transaction *cur_trans = trans->transaction;
3455 struct btrfs_path *path;
3456
3457 if (list_empty(&cur_trans->dirty_bgs) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003458 !btrfs_test_opt(fs_info, SPACE_CACHE))
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003459 return 0;
3460
3461 path = btrfs_alloc_path();
3462 if (!path)
3463 return -ENOMEM;
3464
3465 /* Could add new block groups, use _safe just in case */
3466 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3467 dirty_list) {
3468 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3469 cache_save_setup(cache, trans, path);
3470 }
3471
3472 btrfs_free_path(path);
3473 return 0;
3474}
3475
Chris Mason1bbc6212015-04-06 12:46:08 -07003476/*
3477 * transaction commit does final block group cache writeback during a
3478 * critical section where nothing is allowed to change the FS. This is
3479 * required in order for the cache to actually match the block group,
3480 * but can introduce a lot of latency into the commit.
3481 *
3482 * So, btrfs_start_dirty_block_groups is here to kick off block group
3483 * cache IO. There's a chance we'll have to redo some of it if the
3484 * block group changes again during the commit, but it greatly reduces
3485 * the commit latency by getting rid of the easy block groups while
3486 * we're still allowing others to join the commit.
3487 */
Nikolay Borisov21217052018-02-07 17:55:41 +02003488int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans)
Chris Mason1bbc6212015-04-06 12:46:08 -07003489{
Nikolay Borisov21217052018-02-07 17:55:41 +02003490 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason1bbc6212015-04-06 12:46:08 -07003491 struct btrfs_block_group_cache *cache;
3492 struct btrfs_transaction *cur_trans = trans->transaction;
3493 int ret = 0;
3494 int should_put;
3495 struct btrfs_path *path = NULL;
3496 LIST_HEAD(dirty);
3497 struct list_head *io = &cur_trans->io_bgs;
3498 int num_started = 0;
3499 int loops = 0;
3500
3501 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003502 if (list_empty(&cur_trans->dirty_bgs)) {
3503 spin_unlock(&cur_trans->dirty_bgs_lock);
3504 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003505 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003506 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003507 spin_unlock(&cur_trans->dirty_bgs_lock);
3508
3509again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003510 /*
3511 * make sure all the block groups on our dirty list actually
3512 * exist
3513 */
Nikolay Borisov6c686b32018-02-07 17:55:40 +02003514 btrfs_create_pending_block_groups(trans);
Chris Mason1bbc6212015-04-06 12:46:08 -07003515
3516 if (!path) {
3517 path = btrfs_alloc_path();
3518 if (!path)
3519 return -ENOMEM;
3520 }
3521
Filipe Mananab58d1a92015-04-25 18:29:16 +01003522 /*
3523 * cache_write_mutex is here only to save us from balance or automatic
3524 * removal of empty block groups deleting this block group while we are
3525 * writing out the cache
3526 */
3527 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003528 while (!list_empty(&dirty)) {
Josef Bacikba2c4d42018-12-03 10:20:33 -05003529 bool drop_reserve = true;
3530
Chris Mason1bbc6212015-04-06 12:46:08 -07003531 cache = list_first_entry(&dirty,
3532 struct btrfs_block_group_cache,
3533 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003534 /*
3535 * this can happen if something re-dirties a block
3536 * group that is already under IO. Just wait for it to
3537 * finish and then do it all again
3538 */
3539 if (!list_empty(&cache->io_list)) {
3540 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003541 btrfs_wait_cache_io(trans, cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003542 btrfs_put_block_group(cache);
3543 }
3544
3545
3546 /*
3547 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3548 * if it should update the cache_state. Don't delete
3549 * until after we wait.
3550 *
3551 * Since we're not running in the commit critical section
3552 * we need the dirty_bgs_lock to protect from update_block_group
3553 */
3554 spin_lock(&cur_trans->dirty_bgs_lock);
3555 list_del_init(&cache->dirty_list);
3556 spin_unlock(&cur_trans->dirty_bgs_lock);
3557
3558 should_put = 1;
3559
3560 cache_save_setup(cache, trans, path);
3561
3562 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3563 cache->io_ctl.inode = NULL;
David Sterbafe041532019-03-20 13:51:56 +01003564 ret = btrfs_write_out_cache(trans, cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003565 if (ret == 0 && cache->io_ctl.inode) {
3566 num_started++;
3567 should_put = 0;
3568
3569 /*
Nikolay Borisov45ae2c12018-02-08 18:25:18 +02003570 * The cache_write_mutex is protecting the
3571 * io_list, also refer to the definition of
3572 * btrfs_transaction::io_bgs for more details
Chris Mason1bbc6212015-04-06 12:46:08 -07003573 */
3574 list_add_tail(&cache->io_list, io);
3575 } else {
3576 /*
3577 * if we failed to write the cache, the
3578 * generation will be bad and life goes on
3579 */
3580 ret = 0;
3581 }
3582 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003583 if (!ret) {
David Sterba39db2322019-03-20 11:57:46 +01003584 ret = write_one_cache_group(trans, path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003585 /*
3586 * Our block group might still be attached to the list
3587 * of new block groups in the transaction handle of some
3588 * other task (struct btrfs_trans_handle->new_bgs). This
3589 * means its block group item isn't yet in the extent
3590 * tree. If this happens ignore the error, as we will
3591 * try again later in the critical section of the
3592 * transaction commit.
3593 */
3594 if (ret == -ENOENT) {
3595 ret = 0;
3596 spin_lock(&cur_trans->dirty_bgs_lock);
3597 if (list_empty(&cache->dirty_list)) {
3598 list_add_tail(&cache->dirty_list,
3599 &cur_trans->dirty_bgs);
3600 btrfs_get_block_group(cache);
Josef Bacikba2c4d42018-12-03 10:20:33 -05003601 drop_reserve = false;
Filipe Mananaff1f8252015-05-06 16:15:09 +01003602 }
3603 spin_unlock(&cur_trans->dirty_bgs_lock);
3604 } else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003605 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003606 }
3607 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003608
Andrea Gelmini52042d82018-11-28 12:05:13 +01003609 /* if it's not on the io list, we need to put the block group */
Chris Mason1bbc6212015-04-06 12:46:08 -07003610 if (should_put)
3611 btrfs_put_block_group(cache);
Josef Bacikba2c4d42018-12-03 10:20:33 -05003612 if (drop_reserve)
3613 btrfs_delayed_refs_rsv_release(fs_info, 1);
Chris Mason1bbc6212015-04-06 12:46:08 -07003614
3615 if (ret)
3616 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003617
3618 /*
3619 * Avoid blocking other tasks for too long. It might even save
3620 * us from writing caches for block groups that are going to be
3621 * removed.
3622 */
3623 mutex_unlock(&trans->transaction->cache_write_mutex);
3624 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003625 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003626 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003627
3628 /*
3629 * go through delayed refs for all the stuff we've just kicked off
3630 * and then loop back (just once)
3631 */
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02003632 ret = btrfs_run_delayed_refs(trans, 0);
Chris Mason1bbc6212015-04-06 12:46:08 -07003633 if (!ret && loops == 0) {
3634 loops++;
3635 spin_lock(&cur_trans->dirty_bgs_lock);
3636 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003637 /*
3638 * dirty_bgs_lock protects us from concurrent block group
3639 * deletes too (not just cache_write_mutex).
3640 */
3641 if (!list_empty(&dirty)) {
3642 spin_unlock(&cur_trans->dirty_bgs_lock);
3643 goto again;
3644 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003645 spin_unlock(&cur_trans->dirty_bgs_lock);
Liu Boc79a1752016-07-20 17:44:12 -07003646 } else if (ret < 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003647 btrfs_cleanup_dirty_bgs(cur_trans, fs_info);
Chris Mason1bbc6212015-04-06 12:46:08 -07003648 }
3649
3650 btrfs_free_path(path);
3651 return ret;
3652}
3653
David Sterba5742d152019-03-20 12:04:08 +01003654int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans)
Chris Mason9078a3e2007-04-26 16:46:15 -04003655{
David Sterba5742d152019-03-20 12:04:08 +01003656 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003657 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003658 struct btrfs_transaction *cur_trans = trans->transaction;
3659 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003660 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003661 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003662 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003663 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003664
3665 path = btrfs_alloc_path();
3666 if (!path)
3667 return -ENOMEM;
3668
Josef Bacikce93ec52014-11-17 15:45:48 -05003669 /*
Filipe Mananae44081e2015-12-18 03:02:48 +00003670 * Even though we are in the critical section of the transaction commit,
3671 * we can still have concurrent tasks adding elements to this
3672 * transaction's list of dirty block groups. These tasks correspond to
3673 * endio free space workers started when writeback finishes for a
3674 * space cache, which run inode.c:btrfs_finish_ordered_io(), and can
3675 * allocate new block groups as a result of COWing nodes of the root
3676 * tree when updating the free space inode. The writeback for the space
3677 * caches is triggered by an earlier call to
3678 * btrfs_start_dirty_block_groups() and iterations of the following
3679 * loop.
3680 * Also we want to do the cache_save_setup first and then run the
Josef Bacikce93ec52014-11-17 15:45:48 -05003681 * delayed refs to make sure we have the best chance at doing this all
3682 * in one shot.
3683 */
Filipe Mananae44081e2015-12-18 03:02:48 +00003684 spin_lock(&cur_trans->dirty_bgs_lock);
Josef Bacikce93ec52014-11-17 15:45:48 -05003685 while (!list_empty(&cur_trans->dirty_bgs)) {
3686 cache = list_first_entry(&cur_trans->dirty_bgs,
3687 struct btrfs_block_group_cache,
3688 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003689
3690 /*
3691 * this can happen if cache_save_setup re-dirties a block
3692 * group that is already under IO. Just wait for it to
3693 * finish and then do it all again
3694 */
3695 if (!list_empty(&cache->io_list)) {
Filipe Mananae44081e2015-12-18 03:02:48 +00003696 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003697 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003698 btrfs_wait_cache_io(trans, cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003699 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003700 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003701 }
3702
Chris Mason1bbc6212015-04-06 12:46:08 -07003703 /*
3704 * don't remove from the dirty list until after we've waited
3705 * on any pending IO
3706 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003707 list_del_init(&cache->dirty_list);
Filipe Mananae44081e2015-12-18 03:02:48 +00003708 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003709 should_put = 1;
3710
Chris Mason1bbc6212015-04-06 12:46:08 -07003711 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003712
Josef Bacikce93ec52014-11-17 15:45:48 -05003713 if (!ret)
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02003714 ret = btrfs_run_delayed_refs(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003715 (unsigned long) -1);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003716
3717 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3718 cache->io_ctl.inode = NULL;
David Sterbafe041532019-03-20 13:51:56 +01003719 ret = btrfs_write_out_cache(trans, cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003720 if (ret == 0 && cache->io_ctl.inode) {
3721 num_started++;
3722 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003723 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003724 } else {
3725 /*
3726 * if we failed to write the cache, the
3727 * generation will be bad and life goes on
3728 */
3729 ret = 0;
3730 }
3731 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003732 if (!ret) {
David Sterba39db2322019-03-20 11:57:46 +01003733 ret = write_one_cache_group(trans, path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003734 /*
3735 * One of the free space endio workers might have
3736 * created a new block group while updating a free space
3737 * cache's inode (at inode.c:btrfs_finish_ordered_io())
3738 * and hasn't released its transaction handle yet, in
3739 * which case the new block group is still attached to
3740 * its transaction handle and its creation has not
3741 * finished yet (no block group item in the extent tree
3742 * yet, etc). If this is the case, wait for all free
3743 * space endio workers to finish and retry. This is a
3744 * a very rare case so no need for a more efficient and
3745 * complex approach.
3746 */
3747 if (ret == -ENOENT) {
3748 wait_event(cur_trans->writer_wait,
3749 atomic_read(&cur_trans->num_writers) == 1);
David Sterba39db2322019-03-20 11:57:46 +01003750 ret = write_one_cache_group(trans, path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003751 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003752 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003753 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003754 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003755
3756 /* if its not on the io list, we need to put the block group */
3757 if (should_put)
3758 btrfs_put_block_group(cache);
Josef Bacikba2c4d42018-12-03 10:20:33 -05003759 btrfs_delayed_refs_rsv_release(fs_info, 1);
Filipe Mananae44081e2015-12-18 03:02:48 +00003760 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003761 }
Filipe Mananae44081e2015-12-18 03:02:48 +00003762 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003763
Nikolay Borisov45ae2c12018-02-08 18:25:18 +02003764 /*
3765 * Refer to the definition of io_bgs member for details why it's safe
3766 * to use it without any locking
3767 */
Chris Mason1bbc6212015-04-06 12:46:08 -07003768 while (!list_empty(io)) {
3769 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003770 io_list);
3771 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003772 btrfs_wait_cache_io(trans, cache, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003773 btrfs_put_block_group(cache);
3774 }
3775
Chris Mason9078a3e2007-04-26 16:46:15 -04003776 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003777 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003778}
3779
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003780int btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr)
Yan Zhengd2fb3432008-12-11 16:30:39 -05003781{
3782 struct btrfs_block_group_cache *block_group;
3783 int readonly = 0;
3784
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003785 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003786 if (!block_group || block_group->ro)
3787 readonly = 1;
3788 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003789 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003790 return readonly;
3791}
3792
Filipe Mananaf78c4362016-05-09 13:15:41 +01003793bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3794{
3795 struct btrfs_block_group_cache *bg;
3796 bool ret = true;
3797
3798 bg = btrfs_lookup_block_group(fs_info, bytenr);
3799 if (!bg)
3800 return false;
3801
3802 spin_lock(&bg->lock);
3803 if (bg->ro)
3804 ret = false;
3805 else
3806 atomic_inc(&bg->nocow_writers);
3807 spin_unlock(&bg->lock);
3808
3809 /* no put on block group, done by btrfs_dec_nocow_writers */
3810 if (!ret)
3811 btrfs_put_block_group(bg);
3812
3813 return ret;
3814
3815}
3816
3817void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3818{
3819 struct btrfs_block_group_cache *bg;
3820
3821 bg = btrfs_lookup_block_group(fs_info, bytenr);
3822 ASSERT(bg);
3823 if (atomic_dec_and_test(&bg->nocow_writers))
Peter Zijlstra46259562018-03-15 11:43:08 +01003824 wake_up_var(&bg->nocow_writers);
Filipe Mananaf78c4362016-05-09 13:15:41 +01003825 /*
3826 * Once for our lookup and once for the lookup done by a previous call
3827 * to btrfs_inc_nocow_writers()
3828 */
3829 btrfs_put_block_group(bg);
3830 btrfs_put_block_group(bg);
3831}
3832
Filipe Mananaf78c4362016-05-09 13:15:41 +01003833void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg)
3834{
Peter Zijlstra46259562018-03-15 11:43:08 +01003835 wait_var_event(&bg->nocow_writers, !atomic_read(&bg->nocow_writers));
Filipe Mananaf78c4362016-05-09 13:15:41 +01003836}
3837
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003838static const char *alloc_name(u64 flags)
3839{
3840 switch (flags) {
3841 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3842 return "mixed";
3843 case BTRFS_BLOCK_GROUP_METADATA:
3844 return "metadata";
3845 case BTRFS_BLOCK_GROUP_DATA:
3846 return "data";
3847 case BTRFS_BLOCK_GROUP_SYSTEM:
3848 return "system";
3849 default:
3850 WARN_ON(1);
3851 return "invalid-combination";
3852 };
3853}
3854
Lu Fengqi4ca61682018-05-28 14:30:27 +08003855static int create_space_info(struct btrfs_fs_info *info, u64 flags)
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03003856{
3857
3858 struct btrfs_space_info *space_info;
3859 int i;
3860 int ret;
3861
3862 space_info = kzalloc(sizeof(*space_info), GFP_NOFS);
3863 if (!space_info)
3864 return -ENOMEM;
3865
3866 ret = percpu_counter_init(&space_info->total_bytes_pinned, 0,
3867 GFP_KERNEL);
3868 if (ret) {
3869 kfree(space_info);
3870 return ret;
3871 }
3872
3873 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
3874 INIT_LIST_HEAD(&space_info->block_groups[i]);
3875 init_rwsem(&space_info->groups_sem);
3876 spin_lock_init(&space_info->lock);
3877 space_info->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
3878 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
3879 init_waitqueue_head(&space_info->wait);
3880 INIT_LIST_HEAD(&space_info->ro_bgs);
3881 INIT_LIST_HEAD(&space_info->tickets);
3882 INIT_LIST_HEAD(&space_info->priority_tickets);
3883
3884 ret = kobject_init_and_add(&space_info->kobj, &space_info_ktype,
3885 info->space_info_kobj, "%s",
3886 alloc_name(space_info->flags));
3887 if (ret) {
3888 percpu_counter_destroy(&space_info->total_bytes_pinned);
3889 kfree(space_info);
3890 return ret;
3891 }
3892
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03003893 list_add_rcu(&space_info->list, &info->space_info);
3894 if (flags & BTRFS_BLOCK_GROUP_DATA)
3895 info->data_sinfo = space_info;
3896
3897 return ret;
3898}
3899
Nikolay Borisovd2006e62017-05-22 09:35:50 +03003900static void update_space_info(struct btrfs_fs_info *info, u64 flags,
Chris Mason593060d2008-03-25 16:50:33 -04003901 u64 total_bytes, u64 bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -04003902 u64 bytes_readonly,
Chris Mason593060d2008-03-25 16:50:33 -04003903 struct btrfs_space_info **space_info)
3904{
3905 struct btrfs_space_info *found;
Yan, Zhengb742bb822010-05-16 10:46:24 -04003906 int factor;
3907
David Sterba46df06b2018-07-13 20:46:30 +02003908 factor = btrfs_bg_type_to_factor(flags);
Chris Mason593060d2008-03-25 16:50:33 -04003909
3910 found = __find_space_info(info, flags);
Nikolay Borisovd2006e62017-05-22 09:35:50 +03003911 ASSERT(found);
3912 spin_lock(&found->lock);
3913 found->total_bytes += total_bytes;
3914 found->disk_total += total_bytes * factor;
3915 found->bytes_used += bytes_used;
3916 found->disk_used += bytes_used * factor;
3917 found->bytes_readonly += bytes_readonly;
3918 if (total_bytes > 0)
3919 found->full = 0;
3920 space_info_add_new_bytes(info, found, total_bytes -
3921 bytes_used - bytes_readonly);
3922 spin_unlock(&found->lock);
3923 *space_info = found;
Chris Mason593060d2008-03-25 16:50:33 -04003924}
3925
Chris Mason8790d502008-04-03 16:29:03 -04003926static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3927{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003928 u64 extra_flags = chunk_to_extended(flags) &
3929 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003930
Miao Xiede98ced2013-01-29 10:13:12 +00003931 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003932 if (flags & BTRFS_BLOCK_GROUP_DATA)
3933 fs_info->avail_data_alloc_bits |= extra_flags;
3934 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3935 fs_info->avail_metadata_alloc_bits |= extra_flags;
3936 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3937 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003938 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04003939}
Chris Mason593060d2008-03-25 16:50:33 -04003940
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003941/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003942 * returns target flags in extended format or 0 if restripe for this
3943 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04003944 *
David Sterbadccdb072018-03-21 00:20:05 +01003945 * should be called with balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003946 */
3947static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3948{
3949 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3950 u64 target = 0;
3951
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003952 if (!bctl)
3953 return 0;
3954
3955 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3956 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3957 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3958 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3959 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3960 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3961 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3962 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3963 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3964 }
3965
3966 return target;
3967}
3968
3969/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003970 * @flags: available profiles in extended format (see ctree.h)
3971 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003972 * Returns reduced profile in chunk format. If profile changing is in
3973 * progress (either running or paused) picks the target profile (if it's
3974 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003975 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003976static u64 btrfs_reduce_alloc_profile(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003977{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003978 u64 num_devices = fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003979 u64 target;
Zhao Lei9c170b22015-09-15 21:08:08 +08003980 u64 raid_type;
3981 u64 allowed = 0;
Chris Masona061fc82008-05-07 11:43:44 -04003982
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003983 /*
3984 * see if restripe for this chunk_type is in progress, if so
3985 * try to reduce to the target profile
3986 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003987 spin_lock(&fs_info->balance_lock);
3988 target = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003989 if (target) {
3990 /* pick target profile only if it's already available */
3991 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003992 spin_unlock(&fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003993 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003994 }
3995 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003996 spin_unlock(&fs_info->balance_lock);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003997
David Woodhouse53b381b2013-01-29 18:40:14 -05003998 /* First, mask out the RAID levels which aren't possible */
Zhao Lei9c170b22015-09-15 21:08:08 +08003999 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
4000 if (num_devices >= btrfs_raid_array[raid_type].devs_min)
Anand Jain41a6e892018-04-25 19:01:43 +08004001 allowed |= btrfs_raid_array[raid_type].bg_flag;
Zhao Lei9c170b22015-09-15 21:08:08 +08004002 }
4003 allowed &= flags;
Chris Masona061fc82008-05-07 11:43:44 -04004004
Zhao Lei9c170b22015-09-15 21:08:08 +08004005 if (allowed & BTRFS_BLOCK_GROUP_RAID6)
4006 allowed = BTRFS_BLOCK_GROUP_RAID6;
4007 else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
4008 allowed = BTRFS_BLOCK_GROUP_RAID5;
4009 else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
4010 allowed = BTRFS_BLOCK_GROUP_RAID10;
4011 else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
4012 allowed = BTRFS_BLOCK_GROUP_RAID1;
4013 else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
4014 allowed = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04004015
Zhao Lei9c170b22015-09-15 21:08:08 +08004016 flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
Chris Masonec44a352008-04-28 15:29:52 -04004017
Zhao Lei9c170b22015-09-15 21:08:08 +08004018 return extended_to_chunk(flags | allowed);
Chris Masonec44a352008-04-28 15:29:52 -04004019}
4020
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004021static u64 get_alloc_profile(struct btrfs_fs_info *fs_info, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05004022{
Miao Xiede98ced2013-01-29 10:13:12 +00004023 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004024 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004025
4026 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004027 flags = orig_flags;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004028 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00004029
4030 if (flags & BTRFS_BLOCK_GROUP_DATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004031 flags |= fs_info->avail_data_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004032 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004033 flags |= fs_info->avail_system_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004034 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004035 flags |= fs_info->avail_metadata_alloc_bits;
4036 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02004037
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004038 return btrfs_reduce_alloc_profile(fs_info, flags);
Yan, Zhengb742bb822010-05-16 10:46:24 -04004039}
Josef Bacik6a632092009-02-20 11:00:09 -05004040
Jeff Mahoney1b868262017-05-17 11:38:35 -04004041static u64 get_alloc_profile_by_root(struct btrfs_root *root, int data)
Yan, Zhengb742bb822010-05-16 10:46:24 -04004042{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004043 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengb742bb822010-05-16 10:46:24 -04004044 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05004045 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004046
Yan, Zhengb742bb822010-05-16 10:46:24 -04004047 if (data)
4048 flags = BTRFS_BLOCK_GROUP_DATA;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004049 else if (root == fs_info->chunk_root)
Yan, Zhengb742bb822010-05-16 10:46:24 -04004050 flags = BTRFS_BLOCK_GROUP_SYSTEM;
4051 else
4052 flags = BTRFS_BLOCK_GROUP_METADATA;
4053
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004054 ret = get_alloc_profile(fs_info, flags);
David Woodhouse53b381b2013-01-29 18:40:14 -05004055 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004056}
4057
Jeff Mahoney1b868262017-05-17 11:38:35 -04004058u64 btrfs_data_alloc_profile(struct btrfs_fs_info *fs_info)
4059{
4060 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_DATA);
4061}
4062
4063u64 btrfs_metadata_alloc_profile(struct btrfs_fs_info *fs_info)
4064{
4065 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4066}
4067
4068u64 btrfs_system_alloc_profile(struct btrfs_fs_info *fs_info)
4069{
4070 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4071}
4072
Liu Bo41361352017-02-13 15:42:21 -08004073static u64 btrfs_space_info_used(struct btrfs_space_info *s_info,
4074 bool may_use_included)
4075{
4076 ASSERT(s_info);
4077 return s_info->bytes_used + s_info->bytes_reserved +
4078 s_info->bytes_pinned + s_info->bytes_readonly +
4079 (may_use_included ? s_info->bytes_may_use : 0);
4080}
4081
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004082int btrfs_alloc_data_chunk_ondemand(struct btrfs_inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05004083{
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004084 struct btrfs_root *root = inode->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004085 struct btrfs_fs_info *fs_info = root->fs_info;
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004086 struct btrfs_space_info *data_sinfo = fs_info->data_sinfo;
Josef Bacikab6e24102010-03-19 14:38:13 +00004087 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08004088 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08004089 int need_commit = 2;
4090 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05004091
4092 /* make sure bytes are sectorsize aligned */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004093 bytes = ALIGN(bytes, fs_info->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05004094
Miao Xie9dced182013-10-25 17:33:36 +08004095 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004096 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08004097 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04004098 }
4099
Josef Bacik6a632092009-02-20 11:00:09 -05004100again:
4101 /* make sure we have enough space to handle the data first */
4102 spin_lock(&data_sinfo->lock);
Liu Bo41361352017-02-13 15:42:21 -08004103 used = btrfs_space_info_used(data_sinfo, true);
Josef Bacikab6e24102010-03-19 14:38:13 +00004104
4105 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004106 struct btrfs_trans_handle *trans;
4107
Josef Bacik6a632092009-02-20 11:00:09 -05004108 /*
4109 * if we don't have enough free bytes in this space then we need
4110 * to alloc a new chunk.
4111 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08004112 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05004113 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05004114
Chris Mason0e4f8f82011-04-15 16:05:44 -04004115 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05004116 spin_unlock(&data_sinfo->lock);
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004117
Jeff Mahoney1b868262017-05-17 11:38:35 -04004118 alloc_target = btrfs_data_alloc_profile(fs_info);
Miao Xie9dced182013-10-25 17:33:36 +08004119 /*
4120 * It is ugly that we don't call nolock join
4121 * transaction for the free space inode case here.
4122 * But it is safe because we only do the data space
4123 * reservation for the free space cache in the
4124 * transaction context, the common join transaction
4125 * just increase the counter of the current transaction
4126 * handler, doesn't try to acquire the trans_lock of
4127 * the fs.
4128 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004129 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004130 if (IS_ERR(trans))
4131 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05004132
Nikolay Borisov01458822018-06-20 15:49:05 +03004133 ret = do_chunk_alloc(trans, alloc_target,
Chris Mason0e4f8f82011-04-15 16:05:44 -04004134 CHUNK_ALLOC_NO_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004135 btrfs_end_transaction(trans);
Miao Xied52a5b52011-01-05 10:07:18 +00004136 if (ret < 0) {
4137 if (ret != -ENOSPC)
4138 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08004139 else {
4140 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00004141 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08004142 }
Miao Xied52a5b52011-01-05 10:07:18 +00004143 }
Chris Mason33b4d472009-09-22 14:45:50 -04004144
Josef Bacik6a632092009-02-20 11:00:09 -05004145 goto again;
4146 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004147
4148 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04004149 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08004150 * allocation, and no removed chunk in current transaction,
4151 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004152 */
Ethan Liendec59fa2018-07-13 16:50:42 +08004153 have_pinned_space = __percpu_counter_compare(
Zhao Leic99f1b02015-03-02 19:32:20 +08004154 &data_sinfo->total_bytes_pinned,
Ethan Liendec59fa2018-07-13 16:50:42 +08004155 used + bytes - data_sinfo->total_bytes,
4156 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Josef Bacik6a632092009-02-20 11:00:09 -05004157 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004158
4159 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00004160commit_trans:
Nikolay Borisov92e2f7e2018-02-05 10:41:16 +02004161 if (need_commit) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004162 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04004163
Zhao Leie1746e82015-12-01 18:39:40 +08004164 if (need_commit > 0) {
Nikolay Borisov82b3e532018-04-23 10:54:13 +03004165 btrfs_start_delalloc_roots(fs_info, -1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004166 btrfs_wait_ordered_roots(fs_info, U64_MAX, 0,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004167 (u64)-1);
Zhao Leie1746e82015-12-01 18:39:40 +08004168 }
Zhao Lei9a4e7272015-04-09 12:34:43 +08004169
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004170 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004171 if (IS_ERR(trans))
4172 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08004173 if (have_pinned_space >= 0 ||
Josef Bacik3204d332015-09-24 10:46:10 -04004174 test_bit(BTRFS_TRANS_HAVE_FREE_BGS,
4175 &trans->transaction->flags) ||
Zhao Leic99f1b02015-03-02 19:32:20 +08004176 need_commit > 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004177 ret = btrfs_commit_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004178 if (ret)
4179 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08004180 /*
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004181 * The cleaner kthread might still be doing iput
4182 * operations. Wait for it to finish so that
Josef Bacik034f7842018-12-03 11:06:52 -05004183 * more space is released. We don't need to
4184 * explicitly run the delayed iputs here because
4185 * the commit_transaction would have woken up
4186 * the cleaner.
Zhao Leid7c15172015-02-26 10:49:20 +08004187 */
Josef Bacik034f7842018-12-03 11:06:52 -05004188 ret = btrfs_wait_on_delayed_iputs(fs_info);
4189 if (ret)
4190 return ret;
Zhao Lei94b947b2015-02-14 13:23:45 +08004191 goto again;
4192 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004193 btrfs_end_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004194 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004195 }
4196
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004197 trace_btrfs_space_reservation(fs_info,
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004198 "space_info:enospc",
4199 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004200 return -ENOSPC;
4201 }
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08004202 update_bytes_may_use(data_sinfo, bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004203 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004204 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004205 spin_unlock(&data_sinfo->lock);
4206
Josef Bacik4559b0a72018-07-19 10:49:51 -04004207 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05004208}
4209
Qu Wenruo364ecf32017-02-27 15:10:38 +08004210int btrfs_check_data_free_space(struct inode *inode,
4211 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004212{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004213 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004214 int ret;
4215
4216 /* align the range */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004217 len = round_up(start + len, fs_info->sectorsize) -
4218 round_down(start, fs_info->sectorsize);
4219 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004220
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004221 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode), len);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004222 if (ret < 0)
4223 return ret;
4224
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004225 /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */
Qu Wenruo364ecf32017-02-27 15:10:38 +08004226 ret = btrfs_qgroup_reserve_data(inode, reserved, start, len);
Qu Wenruo7bc329c2017-02-27 15:10:36 +08004227 if (ret < 0)
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004228 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruo364ecf32017-02-27 15:10:38 +08004229 else
4230 ret = 0;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004231 return ret;
4232}
4233
4234/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004235 * Called if we need to clear a data reservation for this inode
4236 * Normally in a error case.
4237 *
Qu Wenruo51773be2015-10-08 18:19:37 +08004238 * This one will *NOT* use accurate qgroup reserved space API, just for case
4239 * which we can't sleep and is sure it won't affect qgroup reserved space.
4240 * Like clear_bit_hook().
Qu Wenruo4ceff072015-09-08 17:22:42 +08004241 */
Qu Wenruo51773be2015-10-08 18:19:37 +08004242void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start,
4243 u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004244{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004245 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004246 struct btrfs_space_info *data_sinfo;
4247
4248 /* Make sure the range is aligned to sectorsize */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004249 len = round_up(start + len, fs_info->sectorsize) -
4250 round_down(start, fs_info->sectorsize);
4251 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004252
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004253 data_sinfo = fs_info->data_sinfo;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004254 spin_lock(&data_sinfo->lock);
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08004255 update_bytes_may_use(data_sinfo, -len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004256 trace_btrfs_space_reservation(fs_info, "space_info",
Qu Wenruo4ceff072015-09-08 17:22:42 +08004257 data_sinfo->flags, len, 0);
4258 spin_unlock(&data_sinfo->lock);
4259}
4260
Qu Wenruo51773be2015-10-08 18:19:37 +08004261/*
4262 * Called if we need to clear a data reservation for this inode
4263 * Normally in a error case.
4264 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04004265 * This one will handle the per-inode data rsv map for accurate reserved
Qu Wenruo51773be2015-10-08 18:19:37 +08004266 * space framework.
4267 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08004268void btrfs_free_reserved_data_space(struct inode *inode,
4269 struct extent_changeset *reserved, u64 start, u64 len)
Qu Wenruo51773be2015-10-08 18:19:37 +08004270{
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004271 struct btrfs_root *root = BTRFS_I(inode)->root;
4272
4273 /* Make sure the range is aligned to sectorsize */
Jeff Mahoneyda170662016-06-15 09:22:56 -04004274 len = round_up(start + len, root->fs_info->sectorsize) -
4275 round_down(start, root->fs_info->sectorsize);
4276 start = round_down(start, root->fs_info->sectorsize);
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004277
Qu Wenruo51773be2015-10-08 18:19:37 +08004278 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruobc42bda2017-02-27 15:10:39 +08004279 btrfs_qgroup_free_data(inode, reserved, start, len);
Qu Wenruo51773be2015-10-08 18:19:37 +08004280}
4281
Josef Bacik97e728d2009-04-21 17:40:57 -04004282static void force_metadata_allocation(struct btrfs_fs_info *info)
4283{
4284 struct list_head *head = &info->space_info;
4285 struct btrfs_space_info *found;
4286
4287 rcu_read_lock();
4288 list_for_each_entry_rcu(found, head, list) {
4289 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004290 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04004291 }
4292 rcu_read_unlock();
4293}
4294
Miao Xie3c76cd82013-04-25 10:12:38 +00004295static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4296{
4297 return (global->size << 1);
4298}
4299
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004300static int should_alloc_chunk(struct btrfs_fs_info *fs_info,
Josef Bacik698d0082012-09-12 14:08:47 -04004301 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004302{
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004303 u64 bytes_used = btrfs_space_info_used(sinfo, false);
Chris Masone5bc2452010-10-26 13:37:56 -04004304 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004305
Chris Mason0e4f8f82011-04-15 16:05:44 -04004306 if (force == CHUNK_ALLOC_FORCE)
4307 return 1;
4308
4309 /*
4310 * in limited mode, we want to have some free space up to
4311 * about 1% of the FS size.
4312 */
4313 if (force == CHUNK_ALLOC_LIMITED) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004314 thresh = btrfs_super_total_bytes(fs_info->super_copy);
Byongho Leeee221842015-12-15 01:42:10 +09004315 thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
Chris Mason0e4f8f82011-04-15 16:05:44 -04004316
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004317 if (sinfo->total_bytes - bytes_used < thresh)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004318 return 1;
4319 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004320
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004321 if (bytes_used + SZ_2M < div_factor(sinfo->total_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004322 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004323 return 1;
4324}
4325
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004326static u64 get_profile_num_devs(struct btrfs_fs_info *fs_info, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004327{
4328 u64 num_dev;
4329
David Woodhouse53b381b2013-01-29 18:40:14 -05004330 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
4331 BTRFS_BLOCK_GROUP_RAID0 |
4332 BTRFS_BLOCK_GROUP_RAID5 |
4333 BTRFS_BLOCK_GROUP_RAID6))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004334 num_dev = fs_info->fs_devices->rw_devices;
Liu Bo15d1ff82012-03-29 09:57:44 -04004335 else if (type & BTRFS_BLOCK_GROUP_RAID1)
4336 num_dev = 2;
4337 else
4338 num_dev = 1; /* DUP or single */
4339
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004340 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004341}
4342
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004343/*
4344 * If @is_allocation is true, reserve space in the system space info necessary
4345 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4346 * removing a chunk.
4347 */
Nikolay Borisov451a2c12018-06-20 15:49:07 +03004348void check_system_chunk(struct btrfs_trans_handle *trans, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004349{
Nikolay Borisov451a2c12018-06-20 15:49:07 +03004350 struct btrfs_fs_info *fs_info = trans->fs_info;
Liu Bo15d1ff82012-03-29 09:57:44 -04004351 struct btrfs_space_info *info;
4352 u64 left;
4353 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004354 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004355 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004356
4357 /*
4358 * Needed because we can end up allocating a system chunk and for an
4359 * atomic and race free space reservation in the chunk block reserve.
4360 */
David Sterbaa32bf9a2018-03-16 02:21:22 +01004361 lockdep_assert_held(&fs_info->chunk_mutex);
Liu Bo15d1ff82012-03-29 09:57:44 -04004362
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004363 info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
Liu Bo15d1ff82012-03-29 09:57:44 -04004364 spin_lock(&info->lock);
Liu Bo41361352017-02-13 15:42:21 -08004365 left = info->total_bytes - btrfs_space_info_used(info, true);
Liu Bo15d1ff82012-03-29 09:57:44 -04004366 spin_unlock(&info->lock);
4367
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004368 num_devs = get_profile_num_devs(fs_info, type);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004369
4370 /* num_devs device items to update and 1 chunk item to add or remove */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004371 thresh = btrfs_calc_trunc_metadata_size(fs_info, num_devs) +
4372 btrfs_calc_trans_metadata_size(fs_info, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004373
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004374 if (left < thresh && btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
4375 btrfs_info(fs_info, "left=%llu, need=%llu, flags=%llu",
4376 left, thresh, type);
4377 dump_space_info(fs_info, info, 0, 0);
Liu Bo15d1ff82012-03-29 09:57:44 -04004378 }
4379
4380 if (left < thresh) {
Jeff Mahoney1b868262017-05-17 11:38:35 -04004381 u64 flags = btrfs_system_alloc_profile(fs_info);
Liu Bo15d1ff82012-03-29 09:57:44 -04004382
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004383 /*
4384 * Ignore failure to create system chunk. We might end up not
4385 * needing it, as we might not need to COW all nodes/leafs from
4386 * the paths we visit in the chunk tree (they were already COWed
4387 * or created in the current transaction for example).
4388 */
Nikolay Borisovc216b202018-06-20 15:49:06 +03004389 ret = btrfs_alloc_chunk(trans, flags);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004390 }
4391
4392 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004393 ret = btrfs_block_rsv_add(fs_info->chunk_root,
4394 &fs_info->chunk_block_rsv,
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004395 thresh, BTRFS_RESERVE_NO_FLUSH);
4396 if (!ret)
4397 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004398 }
4399}
4400
Liu Bo28b737f2016-07-29 11:09:50 -07004401/*
4402 * If force is CHUNK_ALLOC_FORCE:
4403 * - return 1 if it successfully allocates a chunk,
4404 * - return errors including -ENOSPC otherwise.
4405 * If force is NOT CHUNK_ALLOC_FORCE:
4406 * - return 0 if it doesn't need to allocate a new chunk,
4407 * - return 1 if it successfully allocates a chunk,
4408 * - return errors including -ENOSPC otherwise.
4409 */
Nikolay Borisov01458822018-06-20 15:49:05 +03004410static int do_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags,
4411 int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004412{
Nikolay Borisov01458822018-06-20 15:49:05 +03004413 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04004414 struct btrfs_space_info *space_info;
Nikolay Borisov2556fbb2018-04-18 10:27:57 +03004415 bool wait_for_alloc = false;
4416 bool should_alloc = false;
Yan Zhengc146afa2008-11-12 14:34:12 -05004417 int ret = 0;
4418
Josef Bacikc6b305a2012-12-18 09:16:16 -05004419 /* Don't re-enter if we're already allocating a chunk */
4420 if (trans->allocating_chunk)
4421 return -ENOSPC;
4422
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004423 space_info = __find_space_info(fs_info, flags);
Jeff Mahoneydc2d3002018-03-20 15:25:25 -04004424 ASSERT(space_info);
Chris Mason6324fbf2008-03-24 15:01:59 -04004425
Nikolay Borisov2556fbb2018-04-18 10:27:57 +03004426 do {
4427 spin_lock(&space_info->lock);
4428 if (force < space_info->force_alloc)
4429 force = space_info->force_alloc;
4430 should_alloc = should_alloc_chunk(fs_info, space_info, force);
4431 if (space_info->full) {
4432 /* No more free physical space */
4433 if (should_alloc)
4434 ret = -ENOSPC;
4435 else
4436 ret = 0;
4437 spin_unlock(&space_info->lock);
4438 return ret;
4439 } else if (!should_alloc) {
4440 spin_unlock(&space_info->lock);
4441 return 0;
4442 } else if (space_info->chunk_alloc) {
4443 /*
4444 * Someone is already allocating, so we need to block
4445 * until this someone is finished and then loop to
4446 * recheck if we should continue with our allocation
4447 * attempt.
4448 */
4449 wait_for_alloc = true;
4450 spin_unlock(&space_info->lock);
4451 mutex_lock(&fs_info->chunk_mutex);
4452 mutex_unlock(&fs_info->chunk_mutex);
4453 } else {
4454 /* Proceed with allocation */
4455 space_info->chunk_alloc = 1;
4456 wait_for_alloc = false;
4457 spin_unlock(&space_info->lock);
4458 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004459
Nikolay Borisov2556fbb2018-04-18 10:27:57 +03004460 cond_resched();
4461 } while (wait_for_alloc);
Josef Bacik25179202008-10-29 14:49:05 -04004462
Josef Bacik6d741192011-04-11 20:20:11 -04004463 mutex_lock(&fs_info->chunk_mutex);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004464 trans->allocating_chunk = true;
4465
Josef Bacik97e728d2009-04-21 17:40:57 -04004466 /*
Josef Bacik67377732010-09-16 16:19:09 -04004467 * If we have mixed data/metadata chunks we want to make sure we keep
4468 * allocating mixed chunks instead of individual chunks.
4469 */
4470 if (btrfs_mixed_space_info(space_info))
4471 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4472
4473 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004474 * if we're doing a data chunk, go ahead and make sure that
4475 * we keep a reasonable number of metadata chunks allocated in the
4476 * FS as well.
4477 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004478 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004479 fs_info->data_chunk_allocations++;
4480 if (!(fs_info->data_chunk_allocations %
4481 fs_info->metadata_ratio))
4482 force_metadata_allocation(fs_info);
4483 }
4484
Liu Bo15d1ff82012-03-29 09:57:44 -04004485 /*
4486 * Check if we have enough space in SYSTEM chunk because we may need
4487 * to update devices.
4488 */
Nikolay Borisov451a2c12018-06-20 15:49:07 +03004489 check_system_chunk(trans, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004490
Nikolay Borisovc216b202018-06-20 15:49:06 +03004491 ret = btrfs_alloc_chunk(trans, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004492 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004493
Josef Bacik9ed74f22009-09-11 16:12:44 -04004494 spin_lock(&space_info->lock);
Nikolay Borisov57f16422018-04-11 11:21:19 +03004495 if (ret < 0) {
4496 if (ret == -ENOSPC)
4497 space_info->full = 1;
4498 else
4499 goto out;
4500 } else {
Yan, Zheng424499d2010-05-16 10:46:25 -04004501 ret = 1;
Josef Bacik21a94f72018-10-11 15:54:03 -04004502 space_info->max_extent_size = 0;
Nikolay Borisov57f16422018-04-11 11:21:19 +03004503 }
Josef Bacik6d741192011-04-11 20:20:11 -04004504
Chris Mason0e4f8f82011-04-15 16:05:44 -04004505 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004506out:
Josef Bacik6d741192011-04-11 20:20:11 -04004507 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004508 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004509 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana00d80e32015-07-20 14:56:20 +01004510 /*
4511 * When we allocate a new chunk we reserve space in the chunk block
4512 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4513 * add new nodes/leafs to it if we end up needing to do it when
4514 * inserting the chunk item and updating device items as part of the
4515 * second phase of chunk allocation, performed by
4516 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4517 * large number of new block groups to create in our transaction
4518 * handle's new_bgs list to avoid exhausting the chunk block reserve
4519 * in extreme cases - like having a single transaction create many new
4520 * block groups when starting to write out the free space caches of all
4521 * the block groups that were made dirty during the lifetime of the
4522 * transaction.
4523 */
Filipe Manana5ce55552018-10-12 10:03:55 +01004524 if (trans->chunk_bytes_reserved >= (u64)SZ_2M)
Nikolay Borisov6c686b32018-02-07 17:55:40 +02004525 btrfs_create_pending_block_groups(trans);
Filipe Manana5ce55552018-10-12 10:03:55 +01004526
Josef Bacik0f9dd462008-09-23 13:14:11 -04004527 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004528}
4529
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004530static int can_overcommit(struct btrfs_fs_info *fs_info,
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004531 struct btrfs_space_info *space_info, u64 bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004532 enum btrfs_reserve_flush_enum flush,
4533 bool system_chunk)
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004534{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004535 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04004536 u64 profile;
Miao Xie3c76cd82013-04-25 10:12:38 +00004537 u64 space_size;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004538 u64 avail;
4539 u64 used;
David Sterba46df06b2018-07-13 20:46:30 +02004540 int factor;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004541
Josef Bacik957780e2016-05-17 13:30:55 -04004542 /* Don't overcommit when in mixed mode. */
4543 if (space_info->flags & BTRFS_BLOCK_GROUP_DATA)
4544 return 0;
4545
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004546 if (system_chunk)
4547 profile = btrfs_system_alloc_profile(fs_info);
4548 else
4549 profile = btrfs_metadata_alloc_profile(fs_info);
4550
Liu Bo41361352017-02-13 15:42:21 -08004551 used = btrfs_space_info_used(space_info, false);
Josef Bacik96f1bb52013-01-30 17:02:51 -05004552
Josef Bacik96f1bb52013-01-30 17:02:51 -05004553 /*
4554 * We only want to allow over committing if we have lots of actual space
4555 * free, but if we don't have enough space to handle the global reserve
4556 * space then we could end up having a real enospc problem when trying
4557 * to allocate a chunk or some other such important allocation.
4558 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004559 spin_lock(&global_rsv->lock);
4560 space_size = calc_global_rsv_need_space(global_rsv);
4561 spin_unlock(&global_rsv->lock);
4562 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004563 return 0;
4564
4565 used += space_info->bytes_may_use;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004566
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004567 avail = atomic64_read(&fs_info->free_chunk_space);
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004568
4569 /*
4570 * If we have dup, raid1 or raid10 then only half of the free
Andrea Gelmini52042d82018-11-28 12:05:13 +01004571 * space is actually usable. For raid56, the space info used
David Woodhouse53b381b2013-01-29 18:40:14 -05004572 * doesn't include the parity drive, so we don't have to
4573 * change the math
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004574 */
David Sterba46df06b2018-07-13 20:46:30 +02004575 factor = btrfs_bg_type_to_factor(profile);
4576 avail = div_u64(avail, factor);
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004577
4578 /*
Miao Xie561c2942012-10-16 11:32:18 +00004579 * If we aren't flushing all things, let us overcommit up to
4580 * 1/2th of the space. If we can flush, don't let us overcommit
4581 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004582 */
Miao Xie08e007d2012-10-16 11:33:38 +00004583 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004584 avail >>= 3;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004585 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004586 avail >>= 1;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004587
Josef Bacik14575ae2013-09-17 10:48:00 -04004588 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004589 return 1;
4590 return 0;
4591}
4592
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004593static void btrfs_writeback_inodes_sb_nr(struct btrfs_fs_info *fs_info,
Miao Xie6c255e62014-03-06 13:55:01 +08004594 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004595{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004596 struct super_block *sb = fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004597
Josef Bacik925a6ef2013-06-20 12:31:27 -04004598 if (down_read_trylock(&sb->s_umount)) {
4599 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4600 up_read(&sb->s_umount);
4601 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004602 /*
4603 * We needn't worry the filesystem going from r/w to r/o though
4604 * we don't acquire ->s_umount mutex, because the filesystem
4605 * should guarantee the delalloc inodes list be empty after
4606 * the filesystem is readonly(all dirty pages are written to
4607 * the disk).
4608 */
Nikolay Borisov82b3e532018-04-23 10:54:13 +03004609 btrfs_start_delalloc_roots(fs_info, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004610 if (!current->journal_info)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004611 btrfs_wait_ordered_roots(fs_info, nr_items, 0, (u64)-1);
Miao Xieda633a42012-12-20 11:19:09 +00004612 }
4613}
4614
Chris Mason6374e57a2017-06-23 09:48:21 -07004615static inline u64 calc_reclaim_items_nr(struct btrfs_fs_info *fs_info,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004616 u64 to_reclaim)
Miao Xie18cd8ea2013-11-04 23:13:22 +08004617{
4618 u64 bytes;
Chris Mason6374e57a2017-06-23 09:48:21 -07004619 u64 nr;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004620
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004621 bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004622 nr = div64_u64(to_reclaim, bytes);
Miao Xie18cd8ea2013-11-04 23:13:22 +08004623 if (!nr)
4624 nr = 1;
4625 return nr;
4626}
4627
Byongho Leeee221842015-12-15 01:42:10 +09004628#define EXTENT_SIZE_PER_ITEM SZ_256K
Miao Xiec61a16a2013-11-04 23:13:23 +08004629
Yan, Zheng5da9d012010-05-16 10:46:25 -04004630/*
4631 * shrink metadata reservation for delalloc
4632 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004633static void shrink_delalloc(struct btrfs_fs_info *fs_info, u64 to_reclaim,
4634 u64 orig, bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004635{
Josef Bacik0019f102010-10-15 15:18:40 -04004636 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004637 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004638 u64 delalloc_bytes;
Nikolay Borisov420829d2019-01-03 10:50:05 +02004639 u64 async_pages;
Chris Mason6374e57a2017-06-23 09:48:21 -07004640 u64 items;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004641 long time_left;
Miao Xied3ee29e32013-11-04 23:13:20 +08004642 unsigned long nr_pages;
4643 int loops;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004644
Miao Xiec61a16a2013-11-04 23:13:23 +08004645 /* Calc the number of the pages we need flush for space reservation */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004646 items = calc_reclaim_items_nr(fs_info, to_reclaim);
Chris Mason6374e57a2017-06-23 09:48:21 -07004647 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004648
Josef Bacik663350a2011-11-03 22:54:25 -04004649 trans = (struct btrfs_trans_handle *)current->journal_info;
Josef Bacik69fe2d72017-10-19 14:15:57 -04004650 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Chris Masonbf9022e2010-10-26 13:40:45 -04004651
Miao Xie963d6782013-01-29 10:10:51 +00004652 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004653 &fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004654 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004655 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004656 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004657 if (wait_ordered)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004658 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004659 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004660 }
4661
Miao Xied3ee29e32013-11-04 23:13:20 +08004662 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004663 while (delalloc_bytes && loops < 3) {
Nikolay Borisov420829d2019-01-03 10:50:05 +02004664 nr_pages = min(delalloc_bytes, to_reclaim) >> PAGE_SHIFT;
4665
Josef Bacikdea31f52012-09-06 16:47:00 -04004666 /*
Nikolay Borisov420829d2019-01-03 10:50:05 +02004667 * Triggers inode writeback for up to nr_pages. This will invoke
4668 * ->writepages callback and trigger delalloc filling
4669 * (btrfs_run_delalloc_range()).
Josef Bacikdea31f52012-09-06 16:47:00 -04004670 */
Nikolay Borisov420829d2019-01-03 10:50:05 +02004671 btrfs_writeback_inodes_sb_nr(fs_info, nr_pages, items);
4672
4673 /*
4674 * We need to wait for the compressed pages to start before
4675 * we continue.
4676 */
4677 async_pages = atomic_read(&fs_info->async_delalloc_pages);
4678 if (!async_pages)
Miao Xie9f3a0742013-11-04 23:13:24 +08004679 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004680
Nikolay Borisov420829d2019-01-03 10:50:05 +02004681 /*
4682 * Calculate how many compressed pages we want to be written
4683 * before we continue. I.e if there are more async pages than we
4684 * require wait_event will wait until nr_pages are written.
4685 */
4686 if (async_pages <= nr_pages)
4687 async_pages = 0;
Miao Xie9f3a0742013-11-04 23:13:24 +08004688 else
Nikolay Borisov420829d2019-01-03 10:50:05 +02004689 async_pages -= nr_pages;
Miao Xie9f3a0742013-11-04 23:13:24 +08004690
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004691 wait_event(fs_info->async_submit_wait,
4692 atomic_read(&fs_info->async_delalloc_pages) <=
Nikolay Borisov420829d2019-01-03 10:50:05 +02004693 (int)async_pages);
Miao Xie9f3a0742013-11-04 23:13:24 +08004694skip_async:
Josef Bacik0019f102010-10-15 15:18:40 -04004695 spin_lock(&space_info->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04004696 if (list_empty(&space_info->tickets) &&
4697 list_empty(&space_info->priority_tickets)) {
4698 spin_unlock(&space_info->lock);
4699 break;
4700 }
Josef Bacik0019f102010-10-15 15:18:40 -04004701 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004702
Chris Mason36e39c42011-03-12 07:08:42 -05004703 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004704 if (wait_ordered && !trans) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004705 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf104d042011-10-14 13:56:58 -04004706 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004707 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004708 if (time_left)
4709 break;
4710 }
Miao Xie963d6782013-01-29 10:10:51 +00004711 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004712 &fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004713 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004714}
4715
Josef Bacik996478c2017-08-22 16:00:39 -04004716struct reserve_ticket {
Josef Bacikf91587e2018-11-21 14:03:10 -05004717 u64 orig_bytes;
Josef Bacik996478c2017-08-22 16:00:39 -04004718 u64 bytes;
4719 int error;
4720 struct list_head list;
4721 wait_queue_head_t wait;
4722};
4723
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004724/**
Josef Bacik663350a2011-11-03 22:54:25 -04004725 * maybe_commit_transaction - possibly commit the transaction if its ok to
4726 * @root - the root we're allocating for
4727 * @bytes - the number of bytes we want to reserve
4728 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004729 *
Josef Bacik663350a2011-11-03 22:54:25 -04004730 * This will check to make sure that committing the transaction will actually
4731 * get us somewhere and then commit the transaction if it does. Otherwise it
4732 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004733 */
Jeff Mahoney0c9ab342017-02-15 16:28:28 -05004734static int may_commit_transaction(struct btrfs_fs_info *fs_info,
Josef Bacik996478c2017-08-22 16:00:39 -04004735 struct btrfs_space_info *space_info)
Josef Bacik663350a2011-11-03 22:54:25 -04004736{
Josef Bacik996478c2017-08-22 16:00:39 -04004737 struct reserve_ticket *ticket = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004738 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_block_rsv;
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004739 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
Josef Bacik663350a2011-11-03 22:54:25 -04004740 struct btrfs_trans_handle *trans;
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004741 u64 bytes_needed;
4742 u64 reclaim_bytes = 0;
Josef Bacik663350a2011-11-03 22:54:25 -04004743
4744 trans = (struct btrfs_trans_handle *)current->journal_info;
4745 if (trans)
4746 return -EAGAIN;
4747
Josef Bacik996478c2017-08-22 16:00:39 -04004748 spin_lock(&space_info->lock);
4749 if (!list_empty(&space_info->priority_tickets))
4750 ticket = list_first_entry(&space_info->priority_tickets,
4751 struct reserve_ticket, list);
4752 else if (!list_empty(&space_info->tickets))
4753 ticket = list_first_entry(&space_info->tickets,
4754 struct reserve_ticket, list);
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004755 bytes_needed = (ticket) ? ticket->bytes : 0;
Josef Bacik996478c2017-08-22 16:00:39 -04004756 spin_unlock(&space_info->lock);
4757
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004758 if (!bytes_needed)
Josef Bacik996478c2017-08-22 16:00:39 -04004759 return 0;
Josef Bacik663350a2011-11-03 22:54:25 -04004760
Josef Bacikd89dbef2018-11-21 14:03:06 -05004761 trans = btrfs_join_transaction(fs_info->extent_root);
4762 if (IS_ERR(trans))
4763 return PTR_ERR(trans);
4764
4765 /*
4766 * See if there is enough pinned space to make this reservation, or if
4767 * we have block groups that are going to be freed, allowing us to
4768 * possibly do a chunk allocation the next loop through.
4769 */
4770 if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags) ||
4771 __percpu_counter_compare(&space_info->total_bytes_pinned,
4772 bytes_needed,
4773 BTRFS_TOTAL_BYTES_PINNED_BATCH) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004774 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004775
4776 /*
4777 * See if there is some space in the delayed insertion reservation for
4778 * this reservation.
4779 */
4780 if (space_info != delayed_rsv->space_info)
Josef Bacikd89dbef2018-11-21 14:03:06 -05004781 goto enospc;
Josef Bacik663350a2011-11-03 22:54:25 -04004782
4783 spin_lock(&delayed_rsv->lock);
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004784 reclaim_bytes += delayed_rsv->reserved;
Nikolay Borisov057aac32017-11-07 11:22:54 +02004785 spin_unlock(&delayed_rsv->lock);
4786
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004787 spin_lock(&delayed_refs_rsv->lock);
4788 reclaim_bytes += delayed_refs_rsv->reserved;
4789 spin_unlock(&delayed_refs_rsv->lock);
4790 if (reclaim_bytes >= bytes_needed)
4791 goto commit;
4792 bytes_needed -= reclaim_bytes;
4793
Ethan Liendec59fa2018-07-13 16:50:42 +08004794 if (__percpu_counter_compare(&space_info->total_bytes_pinned,
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004795 bytes_needed,
Josef Bacikd89dbef2018-11-21 14:03:06 -05004796 BTRFS_TOTAL_BYTES_PINNED_BATCH) < 0)
4797 goto enospc;
Josef Bacik663350a2011-11-03 22:54:25 -04004798
4799commit:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004800 return btrfs_commit_transaction(trans);
Josef Bacikd89dbef2018-11-21 14:03:06 -05004801enospc:
4802 btrfs_end_transaction(trans);
4803 return -ENOSPC;
Josef Bacik663350a2011-11-03 22:54:25 -04004804}
4805
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03004806/*
4807 * Try to flush some data based on policy set by @state. This is only advisory
4808 * and may fail for various reasons. The caller is supposed to examine the
4809 * state of @space_info to detect the outcome.
4810 */
4811static void flush_space(struct btrfs_fs_info *fs_info,
Josef Bacik96c3f432012-06-21 14:05:49 -04004812 struct btrfs_space_info *space_info, u64 num_bytes,
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004813 int state)
Josef Bacik96c3f432012-06-21 14:05:49 -04004814{
Jeff Mahoneya9b33112017-05-17 11:38:34 -04004815 struct btrfs_root *root = fs_info->extent_root;
Josef Bacik96c3f432012-06-21 14:05:49 -04004816 struct btrfs_trans_handle *trans;
4817 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004818 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004819
4820 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004821 case FLUSH_DELAYED_ITEMS_NR:
4822 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004823 if (state == FLUSH_DELAYED_ITEMS_NR)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004824 nr = calc_reclaim_items_nr(fs_info, num_bytes) * 2;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004825 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004826 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004827
Josef Bacik96c3f432012-06-21 14:05:49 -04004828 trans = btrfs_join_transaction(root);
4829 if (IS_ERR(trans)) {
4830 ret = PTR_ERR(trans);
4831 break;
4832 }
Nikolay Borisove5c304e62018-02-07 17:55:43 +02004833 ret = btrfs_run_delayed_items_nr(trans, nr);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004834 btrfs_end_transaction(trans);
Josef Bacik96c3f432012-06-21 14:05:49 -04004835 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004836 case FLUSH_DELALLOC:
4837 case FLUSH_DELALLOC_WAIT:
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004838 shrink_delalloc(fs_info, num_bytes * 2, num_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004839 state == FLUSH_DELALLOC_WAIT);
4840 break;
Josef Bacik413df722018-12-03 10:20:35 -05004841 case FLUSH_DELAYED_REFS_NR:
4842 case FLUSH_DELAYED_REFS:
4843 trans = btrfs_join_transaction(root);
4844 if (IS_ERR(trans)) {
4845 ret = PTR_ERR(trans);
4846 break;
4847 }
4848 if (state == FLUSH_DELAYED_REFS_NR)
4849 nr = calc_reclaim_items_nr(fs_info, num_bytes);
4850 else
4851 nr = 0;
4852 btrfs_run_delayed_refs(trans, nr);
4853 btrfs_end_transaction(trans);
4854 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004855 case ALLOC_CHUNK:
Josef Bacik450114f2018-11-21 14:03:08 -05004856 case ALLOC_CHUNK_FORCE:
Josef Bacikea658ba2012-09-11 16:57:25 -04004857 trans = btrfs_join_transaction(root);
4858 if (IS_ERR(trans)) {
4859 ret = PTR_ERR(trans);
4860 break;
4861 }
Nikolay Borisov01458822018-06-20 15:49:05 +03004862 ret = do_chunk_alloc(trans,
Jeff Mahoney1b868262017-05-17 11:38:35 -04004863 btrfs_metadata_alloc_profile(fs_info),
Josef Bacik450114f2018-11-21 14:03:08 -05004864 (state == ALLOC_CHUNK) ?
4865 CHUNK_ALLOC_NO_FORCE : CHUNK_ALLOC_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004866 btrfs_end_transaction(trans);
Alex Lyakaseecba892015-12-06 12:32:31 +02004867 if (ret > 0 || ret == -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04004868 ret = 0;
4869 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004870 case COMMIT_TRANS:
Josef Bacik3ec9a4c2019-01-11 10:21:01 -05004871 /*
4872 * If we have pending delayed iputs then we could free up a
4873 * bunch of pinned space, so make sure we run the iputs before
4874 * we do our pinned bytes check below.
4875 */
Josef Bacik3ec9a4c2019-01-11 10:21:01 -05004876 btrfs_run_delayed_iputs(fs_info);
Josef Bacik034f7842018-12-03 11:06:52 -05004877 btrfs_wait_on_delayed_iputs(fs_info);
Josef Bacik3ec9a4c2019-01-11 10:21:01 -05004878
Josef Bacik996478c2017-08-22 16:00:39 -04004879 ret = may_commit_transaction(fs_info, space_info);
Josef Bacik96c3f432012-06-21 14:05:49 -04004880 break;
4881 default:
4882 ret = -ENOSPC;
4883 break;
4884 }
4885
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004886 trace_btrfs_flush_space(fs_info, space_info->flags, num_bytes, state,
4887 ret);
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03004888 return;
Josef Bacik96c3f432012-06-21 14:05:49 -04004889}
Miao Xie21c7e752014-05-13 17:29:04 -07004890
4891static inline u64
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004892btrfs_calc_reclaim_metadata_size(struct btrfs_fs_info *fs_info,
4893 struct btrfs_space_info *space_info,
4894 bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07004895{
Josef Bacik957780e2016-05-17 13:30:55 -04004896 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004897 u64 used;
4898 u64 expected;
Josef Bacik957780e2016-05-17 13:30:55 -04004899 u64 to_reclaim = 0;
Miao Xie21c7e752014-05-13 17:29:04 -07004900
Josef Bacik957780e2016-05-17 13:30:55 -04004901 list_for_each_entry(ticket, &space_info->tickets, list)
4902 to_reclaim += ticket->bytes;
4903 list_for_each_entry(ticket, &space_info->priority_tickets, list)
4904 to_reclaim += ticket->bytes;
4905 if (to_reclaim)
4906 return to_reclaim;
Miao Xie21c7e752014-05-13 17:29:04 -07004907
Wang Xiaoguange0af2482016-08-31 19:46:16 +08004908 to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004909 if (can_overcommit(fs_info, space_info, to_reclaim,
4910 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Wang Xiaoguange0af2482016-08-31 19:46:16 +08004911 return 0;
4912
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03004913 used = btrfs_space_info_used(space_info, true);
4914
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004915 if (can_overcommit(fs_info, space_info, SZ_1M,
4916 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Miao Xie21c7e752014-05-13 17:29:04 -07004917 expected = div_factor_fine(space_info->total_bytes, 95);
4918 else
4919 expected = div_factor_fine(space_info->total_bytes, 90);
4920
4921 if (used > expected)
4922 to_reclaim = used - expected;
4923 else
4924 to_reclaim = 0;
4925 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4926 space_info->bytes_reserved);
Miao Xie21c7e752014-05-13 17:29:04 -07004927 return to_reclaim;
4928}
4929
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004930static inline int need_do_async_reclaim(struct btrfs_fs_info *fs_info,
4931 struct btrfs_space_info *space_info,
4932 u64 used, bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07004933{
Josef Bacik365c5312015-02-18 13:58:15 -08004934 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
4935
4936 /* If we're just plain full then async reclaim just slows us down. */
Josef Bacikbaee8792016-01-26 09:35:38 -05004937 if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh)
Josef Bacik365c5312015-02-18 13:58:15 -08004938 return 0;
4939
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004940 if (!btrfs_calc_reclaim_metadata_size(fs_info, space_info,
4941 system_chunk))
Liu Bo25ce4592014-09-10 12:58:50 +08004942 return 0;
Liu Bo25ce4592014-09-10 12:58:50 +08004943
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004944 return (used >= thresh && !btrfs_fs_closing(fs_info) &&
4945 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
Miao Xie21c7e752014-05-13 17:29:04 -07004946}
4947
Josef Bacikf91587e2018-11-21 14:03:10 -05004948static bool wake_all_tickets(struct list_head *head)
Miao Xie21c7e752014-05-13 17:29:04 -07004949{
Josef Bacik957780e2016-05-17 13:30:55 -04004950 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004951
Josef Bacik957780e2016-05-17 13:30:55 -04004952 while (!list_empty(head)) {
4953 ticket = list_first_entry(head, struct reserve_ticket, list);
4954 list_del_init(&ticket->list);
4955 ticket->error = -ENOSPC;
4956 wake_up(&ticket->wait);
Josef Bacikf91587e2018-11-21 14:03:10 -05004957 if (ticket->bytes != ticket->orig_bytes)
4958 return true;
Miao Xie21c7e752014-05-13 17:29:04 -07004959 }
Josef Bacikf91587e2018-11-21 14:03:10 -05004960 return false;
Miao Xie21c7e752014-05-13 17:29:04 -07004961}
4962
Josef Bacik957780e2016-05-17 13:30:55 -04004963/*
4964 * This is for normal flushers, we can wait all goddamned day if we want to. We
4965 * will loop and continuously try to flush as long as we are making progress.
4966 * We count progress as clearing off tickets each time we have to loop.
4967 */
Miao Xie21c7e752014-05-13 17:29:04 -07004968static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4969{
4970 struct btrfs_fs_info *fs_info;
4971 struct btrfs_space_info *space_info;
4972 u64 to_reclaim;
4973 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04004974 int commit_cycles = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08004975 u64 last_tickets_id;
Miao Xie21c7e752014-05-13 17:29:04 -07004976
4977 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4978 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4979
Josef Bacik957780e2016-05-17 13:30:55 -04004980 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004981 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
4982 false);
Josef Bacik957780e2016-05-17 13:30:55 -04004983 if (!to_reclaim) {
4984 space_info->flush = 0;
4985 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004986 return;
Josef Bacik957780e2016-05-17 13:30:55 -04004987 }
Wang Xiaoguangce129652016-09-02 10:58:46 +08004988 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04004989 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004990
4991 flush_state = FLUSH_DELAYED_ITEMS_NR;
4992 do {
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03004993 flush_space(fs_info, space_info, to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04004994 spin_lock(&space_info->lock);
4995 if (list_empty(&space_info->tickets)) {
4996 space_info->flush = 0;
4997 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004998 return;
Josef Bacik957780e2016-05-17 13:30:55 -04004999 }
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005000 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info,
5001 space_info,
5002 false);
Wang Xiaoguangce129652016-09-02 10:58:46 +08005003 if (last_tickets_id == space_info->tickets_id) {
Josef Bacik957780e2016-05-17 13:30:55 -04005004 flush_state++;
5005 } else {
Wang Xiaoguangce129652016-09-02 10:58:46 +08005006 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005007 flush_state = FLUSH_DELAYED_ITEMS_NR;
5008 if (commit_cycles)
5009 commit_cycles--;
5010 }
5011
Josef Bacik450114f2018-11-21 14:03:08 -05005012 /*
5013 * We don't want to force a chunk allocation until we've tried
5014 * pretty hard to reclaim space. Think of the case where we
5015 * freed up a bunch of space and so have a lot of pinned space
5016 * to reclaim. We would rather use that than possibly create a
5017 * underutilized metadata chunk. So if this is our first run
5018 * through the flushing state machine skip ALLOC_CHUNK_FORCE and
5019 * commit the transaction. If nothing has changed the next go
5020 * around then we can force a chunk allocation.
5021 */
5022 if (flush_state == ALLOC_CHUNK_FORCE && !commit_cycles)
5023 flush_state++;
5024
Josef Bacik957780e2016-05-17 13:30:55 -04005025 if (flush_state > COMMIT_TRANS) {
5026 commit_cycles++;
5027 if (commit_cycles > 2) {
Josef Bacikf91587e2018-11-21 14:03:10 -05005028 if (wake_all_tickets(&space_info->tickets)) {
5029 flush_state = FLUSH_DELAYED_ITEMS_NR;
5030 commit_cycles--;
5031 } else {
5032 space_info->flush = 0;
5033 }
Josef Bacik957780e2016-05-17 13:30:55 -04005034 } else {
5035 flush_state = FLUSH_DELAYED_ITEMS_NR;
5036 }
5037 }
5038 spin_unlock(&space_info->lock);
5039 } while (flush_state <= COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07005040}
5041
5042void btrfs_init_async_reclaim_work(struct work_struct *work)
5043{
5044 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
5045}
5046
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005047static const enum btrfs_flush_state priority_flush_states[] = {
5048 FLUSH_DELAYED_ITEMS_NR,
5049 FLUSH_DELAYED_ITEMS,
5050 ALLOC_CHUNK,
5051};
5052
Josef Bacik957780e2016-05-17 13:30:55 -04005053static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info,
5054 struct btrfs_space_info *space_info,
5055 struct reserve_ticket *ticket)
5056{
5057 u64 to_reclaim;
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005058 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04005059
5060 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005061 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5062 false);
Josef Bacik957780e2016-05-17 13:30:55 -04005063 if (!to_reclaim) {
5064 spin_unlock(&space_info->lock);
5065 return;
5066 }
5067 spin_unlock(&space_info->lock);
5068
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005069 flush_state = 0;
Josef Bacik957780e2016-05-17 13:30:55 -04005070 do {
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005071 flush_space(fs_info, space_info, to_reclaim,
5072 priority_flush_states[flush_state]);
Josef Bacik957780e2016-05-17 13:30:55 -04005073 flush_state++;
5074 spin_lock(&space_info->lock);
5075 if (ticket->bytes == 0) {
5076 spin_unlock(&space_info->lock);
5077 return;
5078 }
5079 spin_unlock(&space_info->lock);
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005080 } while (flush_state < ARRAY_SIZE(priority_flush_states));
Josef Bacik957780e2016-05-17 13:30:55 -04005081}
5082
5083static int wait_reserve_ticket(struct btrfs_fs_info *fs_info,
5084 struct btrfs_space_info *space_info,
Josef Bacikf91587e2018-11-21 14:03:10 -05005085 struct reserve_ticket *ticket)
Josef Bacik957780e2016-05-17 13:30:55 -04005086
5087{
5088 DEFINE_WAIT(wait);
Josef Bacikf91587e2018-11-21 14:03:10 -05005089 u64 reclaim_bytes = 0;
Josef Bacik957780e2016-05-17 13:30:55 -04005090 int ret = 0;
5091
5092 spin_lock(&space_info->lock);
5093 while (ticket->bytes > 0 && ticket->error == 0) {
5094 ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE);
5095 if (ret) {
5096 ret = -EINTR;
5097 break;
5098 }
5099 spin_unlock(&space_info->lock);
5100
5101 schedule();
5102
5103 finish_wait(&ticket->wait, &wait);
5104 spin_lock(&space_info->lock);
5105 }
5106 if (!ret)
5107 ret = ticket->error;
5108 if (!list_empty(&ticket->list))
5109 list_del_init(&ticket->list);
Josef Bacikf91587e2018-11-21 14:03:10 -05005110 if (ticket->bytes && ticket->bytes < ticket->orig_bytes)
5111 reclaim_bytes = ticket->orig_bytes - ticket->bytes;
Josef Bacik957780e2016-05-17 13:30:55 -04005112 spin_unlock(&space_info->lock);
5113
Josef Bacikf91587e2018-11-21 14:03:10 -05005114 if (reclaim_bytes)
5115 space_info_add_old_bytes(fs_info, space_info, reclaim_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005116 return ret;
5117}
5118
Josef Bacik663350a2011-11-03 22:54:25 -04005119/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005120 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5121 * @root - the root we're allocating for
Josef Bacik957780e2016-05-17 13:30:55 -04005122 * @space_info - the space info we want to allocate from
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005123 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04005124 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005125 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04005126 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005127 * with the block_rsv. If there is not enough space it will make an attempt to
5128 * flush out space to make room. It will do this by flushing delalloc if
5129 * possible or committing the transaction. If flush is 0 then no attempts to
5130 * regain reservations will be made and this will fail if there is not enough
5131 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005132 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005133static int __reserve_metadata_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik957780e2016-05-17 13:30:55 -04005134 struct btrfs_space_info *space_info,
5135 u64 orig_bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005136 enum btrfs_reserve_flush_enum flush,
5137 bool system_chunk)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005138{
Josef Bacik957780e2016-05-17 13:30:55 -04005139 struct reserve_ticket ticket;
Josef Bacik2bf64752011-09-26 17:12:22 -04005140 u64 used;
Josef Bacikf91587e2018-11-21 14:03:10 -05005141 u64 reclaim_bytes = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005142 int ret = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005143
Josef Bacik957780e2016-05-17 13:30:55 -04005144 ASSERT(orig_bytes);
Josef Bacik8ca17f02016-05-27 13:24:13 -04005145 ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL);
5146
Yan, Zhengf0486c62010-05-16 10:46:25 -04005147 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04005148 ret = -ENOSPC;
Liu Bo41361352017-02-13 15:42:21 -08005149 used = btrfs_space_info_used(space_info, true);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005150
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005151 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005152 * If we have enough space then hooray, make our reservation and carry
5153 * on. If not see if we can overcommit, and if we can, hooray carry on.
5154 * If not things get more complicated.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005155 */
Josef Bacik957780e2016-05-17 13:30:55 -04005156 if (used + orig_bytes <= space_info->total_bytes) {
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005157 update_bytes_may_use(space_info, orig_bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005158 trace_btrfs_space_reservation(fs_info, "space_info",
5159 space_info->flags, orig_bytes, 1);
Josef Bacik957780e2016-05-17 13:30:55 -04005160 ret = 0;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005161 } else if (can_overcommit(fs_info, space_info, orig_bytes, flush,
5162 system_chunk)) {
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005163 update_bytes_may_use(space_info, orig_bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005164 trace_btrfs_space_reservation(fs_info, "space_info",
5165 space_info->flags, orig_bytes, 1);
Josef Bacik44734ed2012-09-28 16:04:19 -04005166 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04005167 }
5168
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005169 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005170 * If we couldn't make a reservation then setup our reservation ticket
5171 * and kick the async worker if it's not already running.
Miao Xie08e007d2012-10-16 11:33:38 +00005172 *
Josef Bacik957780e2016-05-17 13:30:55 -04005173 * If we are a priority flusher then we just need to add our ticket to
5174 * the list and we will do our own flushing further down.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005175 */
Josef Bacik72bcd992012-12-18 15:16:34 -05005176 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacikf91587e2018-11-21 14:03:10 -05005177 ticket.orig_bytes = orig_bytes;
Josef Bacik957780e2016-05-17 13:30:55 -04005178 ticket.bytes = orig_bytes;
5179 ticket.error = 0;
5180 init_waitqueue_head(&ticket.wait);
5181 if (flush == BTRFS_RESERVE_FLUSH_ALL) {
5182 list_add_tail(&ticket.list, &space_info->tickets);
5183 if (!space_info->flush) {
5184 space_info->flush = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005185 trace_btrfs_trigger_flush(fs_info,
Josef Bacikf376df22016-03-25 13:25:56 -04005186 space_info->flags,
5187 orig_bytes, flush,
5188 "enospc");
Josef Bacik957780e2016-05-17 13:30:55 -04005189 queue_work(system_unbound_wq,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005190 &fs_info->async_reclaim_work);
Josef Bacik957780e2016-05-17 13:30:55 -04005191 }
5192 } else {
5193 list_add_tail(&ticket.list,
5194 &space_info->priority_tickets);
5195 }
Miao Xie21c7e752014-05-13 17:29:04 -07005196 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
5197 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04005198 /*
5199 * We will do the space reservation dance during log replay,
5200 * which means we won't have fs_info->fs_root set, so don't do
5201 * the async reclaim as we will panic.
5202 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005203 if (!test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags) &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005204 need_do_async_reclaim(fs_info, space_info,
5205 used, system_chunk) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005206 !work_busy(&fs_info->async_reclaim_work)) {
5207 trace_btrfs_trigger_flush(fs_info, space_info->flags,
5208 orig_bytes, flush, "preempt");
Miao Xie21c7e752014-05-13 17:29:04 -07005209 queue_work(system_unbound_wq,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005210 &fs_info->async_reclaim_work);
Josef Bacikf376df22016-03-25 13:25:56 -04005211 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005212 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005213 spin_unlock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00005214 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik957780e2016-05-17 13:30:55 -04005215 return ret;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005216
Josef Bacik957780e2016-05-17 13:30:55 -04005217 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacikf91587e2018-11-21 14:03:10 -05005218 return wait_reserve_ticket(fs_info, space_info, &ticket);
Miao Xie08e007d2012-10-16 11:33:38 +00005219
Josef Bacik957780e2016-05-17 13:30:55 -04005220 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005221 priority_reclaim_metadata_space(fs_info, space_info, &ticket);
Josef Bacik957780e2016-05-17 13:30:55 -04005222 spin_lock(&space_info->lock);
5223 if (ticket.bytes) {
Josef Bacikf91587e2018-11-21 14:03:10 -05005224 if (ticket.bytes < orig_bytes)
5225 reclaim_bytes = orig_bytes - ticket.bytes;
Josef Bacik957780e2016-05-17 13:30:55 -04005226 list_del_init(&ticket.list);
5227 ret = -ENOSPC;
5228 }
5229 spin_unlock(&space_info->lock);
Josef Bacikf91587e2018-11-21 14:03:10 -05005230
5231 if (reclaim_bytes)
5232 space_info_add_old_bytes(fs_info, space_info, reclaim_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005233 ASSERT(list_empty(&ticket.list));
5234 return ret;
5235}
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005236
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005237/**
5238 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5239 * @root - the root we're allocating for
5240 * @block_rsv - the block_rsv we're allocating for
5241 * @orig_bytes - the number of bytes we want
5242 * @flush - whether or not we can flush to make our reservation
5243 *
Andrea Gelmini52042d82018-11-28 12:05:13 +01005244 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005245 * with the block_rsv. If there is not enough space it will make an attempt to
5246 * flush out space to make room. It will do this by flushing delalloc if
5247 * possible or committing the transaction. If flush is 0 then no attempts to
5248 * regain reservations will be made and this will fail if there is not enough
5249 * space already.
5250 */
5251static int reserve_metadata_bytes(struct btrfs_root *root,
5252 struct btrfs_block_rsv *block_rsv,
5253 u64 orig_bytes,
5254 enum btrfs_reserve_flush_enum flush)
5255{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005256 struct btrfs_fs_info *fs_info = root->fs_info;
5257 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04005258 int ret;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005259 bool system_chunk = (root == fs_info->chunk_root);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005260
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005261 ret = __reserve_metadata_bytes(fs_info, block_rsv->space_info,
5262 orig_bytes, flush, system_chunk);
Josef Bacik5d803662013-02-07 16:06:02 -05005263 if (ret == -ENOSPC &&
5264 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
Josef Bacik5d803662013-02-07 16:06:02 -05005265 if (block_rsv != global_rsv &&
5266 !block_rsv_use_bytes(global_rsv, orig_bytes))
5267 ret = 0;
5268 }
Nikolay Borisov9a3daff2017-12-15 12:05:37 +02005269 if (ret == -ENOSPC) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005270 trace_btrfs_space_reservation(fs_info, "space_info:enospc",
Josef Bacik957780e2016-05-17 13:30:55 -04005271 block_rsv->space_info->flags,
5272 orig_bytes, 1);
Nikolay Borisov9a3daff2017-12-15 12:05:37 +02005273
5274 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG))
5275 dump_space_info(fs_info, block_rsv->space_info,
5276 orig_bytes, 0);
5277 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005278 return ret;
5279}
5280
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005281static struct btrfs_block_rsv *get_block_rsv(
5282 const struct btrfs_trans_handle *trans,
5283 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005284{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005285 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik4c13d752011-08-30 11:31:29 -04005286 struct btrfs_block_rsv *block_rsv = NULL;
5287
Alexandru Moisee9cf4392015-09-09 00:18:50 +00005288 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005289 (root == fs_info->csum_root && trans->adding_csums) ||
5290 (root == fs_info->uuid_root))
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02005291 block_rsv = trans->block_rsv;
5292
Josef Bacik4c13d752011-08-30 11:31:29 -04005293 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005294 block_rsv = root->block_rsv;
5295
5296 if (!block_rsv)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005297 block_rsv = &fs_info->empty_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005298
5299 return block_rsv;
5300}
5301
5302static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
5303 u64 num_bytes)
5304{
5305 int ret = -ENOSPC;
5306 spin_lock(&block_rsv->lock);
5307 if (block_rsv->reserved >= num_bytes) {
5308 block_rsv->reserved -= num_bytes;
5309 if (block_rsv->reserved < block_rsv->size)
5310 block_rsv->full = 0;
5311 ret = 0;
5312 }
5313 spin_unlock(&block_rsv->lock);
5314 return ret;
5315}
5316
5317static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08005318 u64 num_bytes, bool update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005319{
5320 spin_lock(&block_rsv->lock);
5321 block_rsv->reserved += num_bytes;
5322 if (update_size)
5323 block_rsv->size += num_bytes;
5324 else if (block_rsv->reserved >= block_rsv->size)
5325 block_rsv->full = 1;
5326 spin_unlock(&block_rsv->lock);
5327}
5328
Josef Bacikd52be812013-05-29 14:54:47 -04005329int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
5330 struct btrfs_block_rsv *dest, u64 num_bytes,
5331 int min_factor)
5332{
5333 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5334 u64 min_bytes;
5335
5336 if (global_rsv->space_info != dest->space_info)
5337 return -ENOSPC;
5338
5339 spin_lock(&global_rsv->lock);
5340 min_bytes = div_factor(global_rsv->size, min_factor);
5341 if (global_rsv->reserved < min_bytes + num_bytes) {
5342 spin_unlock(&global_rsv->lock);
5343 return -ENOSPC;
5344 }
5345 global_rsv->reserved -= num_bytes;
5346 if (global_rsv->reserved < global_rsv->size)
5347 global_rsv->full = 0;
5348 spin_unlock(&global_rsv->lock);
5349
Lu Fengqi3a584172018-08-04 21:10:55 +08005350 block_rsv_add_bytes(dest, num_bytes, true);
Josef Bacikd52be812013-05-29 14:54:47 -04005351 return 0;
5352}
5353
Josef Bacikba2c4d42018-12-03 10:20:33 -05005354/**
5355 * btrfs_migrate_to_delayed_refs_rsv - transfer bytes to our delayed refs rsv.
5356 * @fs_info - the fs info for our fs.
5357 * @src - the source block rsv to transfer from.
5358 * @num_bytes - the number of bytes to transfer.
5359 *
5360 * This transfers up to the num_bytes amount from the src rsv to the
5361 * delayed_refs_rsv. Any extra bytes are returned to the space info.
5362 */
5363void btrfs_migrate_to_delayed_refs_rsv(struct btrfs_fs_info *fs_info,
5364 struct btrfs_block_rsv *src,
5365 u64 num_bytes)
5366{
5367 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
5368 u64 to_free = 0;
5369
5370 spin_lock(&src->lock);
5371 src->reserved -= num_bytes;
5372 src->size -= num_bytes;
5373 spin_unlock(&src->lock);
5374
5375 spin_lock(&delayed_refs_rsv->lock);
5376 if (delayed_refs_rsv->size > delayed_refs_rsv->reserved) {
5377 u64 delta = delayed_refs_rsv->size -
5378 delayed_refs_rsv->reserved;
5379 if (num_bytes > delta) {
5380 to_free = num_bytes - delta;
5381 num_bytes = delta;
5382 }
5383 } else {
5384 to_free = num_bytes;
5385 num_bytes = 0;
5386 }
5387
5388 if (num_bytes)
5389 delayed_refs_rsv->reserved += num_bytes;
5390 if (delayed_refs_rsv->reserved >= delayed_refs_rsv->size)
5391 delayed_refs_rsv->full = 1;
5392 spin_unlock(&delayed_refs_rsv->lock);
5393
5394 if (num_bytes)
5395 trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
5396 0, num_bytes, 1);
5397 if (to_free)
5398 space_info_add_old_bytes(fs_info, delayed_refs_rsv->space_info,
5399 to_free);
5400}
5401
5402/**
5403 * btrfs_delayed_refs_rsv_refill - refill based on our delayed refs usage.
5404 * @fs_info - the fs_info for our fs.
5405 * @flush - control how we can flush for this reservation.
5406 *
5407 * This will refill the delayed block_rsv up to 1 items size worth of space and
5408 * will return -ENOSPC if we can't make the reservation.
5409 */
5410int btrfs_delayed_refs_rsv_refill(struct btrfs_fs_info *fs_info,
5411 enum btrfs_reserve_flush_enum flush)
5412{
5413 struct btrfs_block_rsv *block_rsv = &fs_info->delayed_refs_rsv;
5414 u64 limit = btrfs_calc_trans_metadata_size(fs_info, 1);
5415 u64 num_bytes = 0;
5416 int ret = -ENOSPC;
5417
5418 spin_lock(&block_rsv->lock);
5419 if (block_rsv->reserved < block_rsv->size) {
5420 num_bytes = block_rsv->size - block_rsv->reserved;
5421 num_bytes = min(num_bytes, limit);
5422 }
5423 spin_unlock(&block_rsv->lock);
5424
5425 if (!num_bytes)
5426 return 0;
5427
5428 ret = reserve_metadata_bytes(fs_info->extent_root, block_rsv,
5429 num_bytes, flush);
5430 if (ret)
5431 return ret;
5432 block_rsv_add_bytes(block_rsv, num_bytes, 0);
5433 trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
5434 0, num_bytes, 1);
5435 return 0;
5436}
5437
Josef Bacik957780e2016-05-17 13:30:55 -04005438/*
5439 * This is for space we already have accounted in space_info->bytes_may_use, so
5440 * basically when we're returning space from block_rsv's.
5441 */
5442static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
5443 struct btrfs_space_info *space_info,
5444 u64 num_bytes)
5445{
5446 struct reserve_ticket *ticket;
5447 struct list_head *head;
5448 u64 used;
5449 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH;
5450 bool check_overcommit = false;
5451
5452 spin_lock(&space_info->lock);
5453 head = &space_info->priority_tickets;
5454
5455 /*
5456 * If we are over our limit then we need to check and see if we can
5457 * overcommit, and if we can't then we just need to free up our space
5458 * and not satisfy any requests.
5459 */
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03005460 used = btrfs_space_info_used(space_info, true);
Josef Bacik957780e2016-05-17 13:30:55 -04005461 if (used - num_bytes >= space_info->total_bytes)
5462 check_overcommit = true;
5463again:
5464 while (!list_empty(head) && num_bytes) {
5465 ticket = list_first_entry(head, struct reserve_ticket,
5466 list);
5467 /*
5468 * We use 0 bytes because this space is already reserved, so
5469 * adding the ticket space would be a double count.
5470 */
5471 if (check_overcommit &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005472 !can_overcommit(fs_info, space_info, 0, flush, false))
Josef Bacik957780e2016-05-17 13:30:55 -04005473 break;
5474 if (num_bytes >= ticket->bytes) {
5475 list_del_init(&ticket->list);
5476 num_bytes -= ticket->bytes;
5477 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005478 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005479 wake_up(&ticket->wait);
5480 } else {
5481 ticket->bytes -= num_bytes;
5482 num_bytes = 0;
5483 }
5484 }
5485
5486 if (num_bytes && head == &space_info->priority_tickets) {
5487 head = &space_info->tickets;
5488 flush = BTRFS_RESERVE_FLUSH_ALL;
5489 goto again;
5490 }
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005491 update_bytes_may_use(space_info, -num_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005492 trace_btrfs_space_reservation(fs_info, "space_info",
5493 space_info->flags, num_bytes, 0);
5494 spin_unlock(&space_info->lock);
5495}
5496
5497/*
5498 * This is for newly allocated space that isn't accounted in
5499 * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent
5500 * we use this helper.
5501 */
5502static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
5503 struct btrfs_space_info *space_info,
5504 u64 num_bytes)
5505{
5506 struct reserve_ticket *ticket;
5507 struct list_head *head = &space_info->priority_tickets;
5508
5509again:
5510 while (!list_empty(head) && num_bytes) {
5511 ticket = list_first_entry(head, struct reserve_ticket,
5512 list);
5513 if (num_bytes >= ticket->bytes) {
5514 trace_btrfs_space_reservation(fs_info, "space_info",
5515 space_info->flags,
5516 ticket->bytes, 1);
5517 list_del_init(&ticket->list);
5518 num_bytes -= ticket->bytes;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005519 update_bytes_may_use(space_info, ticket->bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005520 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005521 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005522 wake_up(&ticket->wait);
5523 } else {
5524 trace_btrfs_space_reservation(fs_info, "space_info",
5525 space_info->flags,
5526 num_bytes, 1);
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005527 update_bytes_may_use(space_info, num_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005528 ticket->bytes -= num_bytes;
5529 num_bytes = 0;
5530 }
5531 }
5532
5533 if (num_bytes && head == &space_info->priority_tickets) {
5534 head = &space_info->tickets;
5535 goto again;
5536 }
5537}
5538
Josef Bacik69fe2d72017-10-19 14:15:57 -04005539static u64 block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005540 struct btrfs_block_rsv *block_rsv,
Qu Wenruoff6bc372017-12-21 13:42:04 +08005541 struct btrfs_block_rsv *dest, u64 num_bytes,
5542 u64 *qgroup_to_release_ret)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005543{
5544 struct btrfs_space_info *space_info = block_rsv->space_info;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005545 u64 qgroup_to_release = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005546 u64 ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005547
5548 spin_lock(&block_rsv->lock);
Qu Wenruoff6bc372017-12-21 13:42:04 +08005549 if (num_bytes == (u64)-1) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005550 num_bytes = block_rsv->size;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005551 qgroup_to_release = block_rsv->qgroup_rsv_size;
5552 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005553 block_rsv->size -= num_bytes;
5554 if (block_rsv->reserved >= block_rsv->size) {
5555 num_bytes = block_rsv->reserved - block_rsv->size;
5556 block_rsv->reserved = block_rsv->size;
5557 block_rsv->full = 1;
5558 } else {
5559 num_bytes = 0;
5560 }
Qu Wenruoff6bc372017-12-21 13:42:04 +08005561 if (block_rsv->qgroup_rsv_reserved >= block_rsv->qgroup_rsv_size) {
5562 qgroup_to_release = block_rsv->qgroup_rsv_reserved -
5563 block_rsv->qgroup_rsv_size;
5564 block_rsv->qgroup_rsv_reserved = block_rsv->qgroup_rsv_size;
5565 } else {
5566 qgroup_to_release = 0;
5567 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005568 spin_unlock(&block_rsv->lock);
5569
Josef Bacik69fe2d72017-10-19 14:15:57 -04005570 ret = num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005571 if (num_bytes > 0) {
5572 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00005573 spin_lock(&dest->lock);
5574 if (!dest->full) {
5575 u64 bytes_to_add;
5576
5577 bytes_to_add = dest->size - dest->reserved;
5578 bytes_to_add = min(num_bytes, bytes_to_add);
5579 dest->reserved += bytes_to_add;
5580 if (dest->reserved >= dest->size)
5581 dest->full = 1;
5582 num_bytes -= bytes_to_add;
5583 }
5584 spin_unlock(&dest->lock);
5585 }
Josef Bacik957780e2016-05-17 13:30:55 -04005586 if (num_bytes)
5587 space_info_add_old_bytes(fs_info, space_info,
5588 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005589 }
Qu Wenruoff6bc372017-12-21 13:42:04 +08005590 if (qgroup_to_release_ret)
5591 *qgroup_to_release_ret = qgroup_to_release;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005592 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005593}
5594
Josef Bacik25d609f2016-03-25 13:25:48 -04005595int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src,
5596 struct btrfs_block_rsv *dst, u64 num_bytes,
Lu Fengqi3a584172018-08-04 21:10:55 +08005597 bool update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005598{
5599 int ret;
5600
5601 ret = block_rsv_use_bytes(src, num_bytes);
5602 if (ret)
5603 return ret;
5604
Josef Bacik25d609f2016-03-25 13:25:48 -04005605 block_rsv_add_bytes(dst, num_bytes, update_size);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005606 return 0;
5607}
5608
Miao Xie66d8f3d2012-09-06 04:02:28 -06005609void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005610{
5611 memset(rsv, 0, sizeof(*rsv));
5612 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06005613 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005614}
5615
Josef Bacik69fe2d72017-10-19 14:15:57 -04005616void btrfs_init_metadata_block_rsv(struct btrfs_fs_info *fs_info,
5617 struct btrfs_block_rsv *rsv,
5618 unsigned short type)
5619{
5620 btrfs_init_block_rsv(rsv, type);
5621 rsv->space_info = __find_space_info(fs_info,
5622 BTRFS_BLOCK_GROUP_METADATA);
5623}
5624
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005625struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_fs_info *fs_info,
Miao Xie66d8f3d2012-09-06 04:02:28 -06005626 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005627{
5628 struct btrfs_block_rsv *block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005629
5630 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
5631 if (!block_rsv)
5632 return NULL;
5633
Josef Bacik69fe2d72017-10-19 14:15:57 -04005634 btrfs_init_metadata_block_rsv(fs_info, block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005635 return block_rsv;
5636}
5637
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005638void btrfs_free_block_rsv(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005639 struct btrfs_block_rsv *rsv)
5640{
Josef Bacik2aaa6652012-08-29 14:27:18 -04005641 if (!rsv)
5642 return;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005643 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Josef Bacikdabdb642011-08-08 12:50:18 -04005644 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005645}
5646
Miao Xie08e007d2012-10-16 11:33:38 +00005647int btrfs_block_rsv_add(struct btrfs_root *root,
5648 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
5649 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005650{
5651 int ret;
5652
5653 if (num_bytes == 0)
5654 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005655
Miao Xie61b520a2011-11-10 20:45:05 -05005656 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Lu Fengqi5a2cb252018-08-04 21:10:56 +08005657 if (!ret)
Lu Fengqi3a584172018-08-04 21:10:55 +08005658 block_rsv_add_bytes(block_rsv, num_bytes, true);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005659
Yan, Zhengf0486c62010-05-16 10:46:25 -04005660 return ret;
5661}
5662
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005663int btrfs_block_rsv_check(struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005664{
5665 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005666 int ret = -ENOSPC;
5667
5668 if (!block_rsv)
5669 return 0;
5670
5671 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04005672 num_bytes = div_factor(block_rsv->size, min_factor);
5673 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005674 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005675 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005676
Josef Bacik36ba0222011-10-18 12:15:48 -04005677 return ret;
5678}
5679
Miao Xie08e007d2012-10-16 11:33:38 +00005680int btrfs_block_rsv_refill(struct btrfs_root *root,
5681 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5682 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04005683{
5684 u64 num_bytes = 0;
5685 int ret = -ENOSPC;
5686
5687 if (!block_rsv)
5688 return 0;
5689
5690 spin_lock(&block_rsv->lock);
5691 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005692 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005693 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005694 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005695 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005696 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005697
Yan, Zhengf0486c62010-05-16 10:46:25 -04005698 if (!ret)
5699 return 0;
5700
Miao Xieaa38a712011-11-18 17:43:00 +08005701 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005702 if (!ret) {
Lu Fengqi3a584172018-08-04 21:10:55 +08005703 block_rsv_add_bytes(block_rsv, num_bytes, false);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005704 return 0;
5705 }
5706
Josef Bacik13553e52011-08-08 13:33:21 -04005707 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005708}
5709
Josef Bacik5df11362018-11-21 14:03:11 -05005710static void calc_refill_bytes(struct btrfs_block_rsv *block_rsv,
5711 u64 *metadata_bytes, u64 *qgroup_bytes)
5712{
5713 *metadata_bytes = 0;
5714 *qgroup_bytes = 0;
5715
5716 spin_lock(&block_rsv->lock);
5717 if (block_rsv->reserved < block_rsv->size)
5718 *metadata_bytes = block_rsv->size - block_rsv->reserved;
5719 if (block_rsv->qgroup_rsv_reserved < block_rsv->qgroup_rsv_size)
5720 *qgroup_bytes = block_rsv->qgroup_rsv_size -
5721 block_rsv->qgroup_rsv_reserved;
5722 spin_unlock(&block_rsv->lock);
5723}
5724
Josef Bacik69fe2d72017-10-19 14:15:57 -04005725/**
5726 * btrfs_inode_rsv_refill - refill the inode block rsv.
5727 * @inode - the inode we are refilling.
Andrea Gelmini52042d82018-11-28 12:05:13 +01005728 * @flush - the flushing restriction.
Josef Bacik69fe2d72017-10-19 14:15:57 -04005729 *
5730 * Essentially the same as btrfs_block_rsv_refill, except it uses the
5731 * block_rsv->size as the minimum size. We'll either refill the missing amount
Andrea Gelmini52042d82018-11-28 12:05:13 +01005732 * or return if we already have enough space. This will also handle the reserve
Josef Bacik69fe2d72017-10-19 14:15:57 -04005733 * tracepoint for the reserved amount.
5734 */
Qu Wenruo3f2dd7a2017-11-17 15:14:19 +08005735static int btrfs_inode_rsv_refill(struct btrfs_inode *inode,
5736 enum btrfs_reserve_flush_enum flush)
Josef Bacik69fe2d72017-10-19 14:15:57 -04005737{
5738 struct btrfs_root *root = inode->root;
5739 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
Josef Bacik5df11362018-11-21 14:03:11 -05005740 u64 num_bytes, last = 0;
5741 u64 qgroup_num_bytes;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005742 int ret = -ENOSPC;
5743
Josef Bacik5df11362018-11-21 14:03:11 -05005744 calc_refill_bytes(block_rsv, &num_bytes, &qgroup_num_bytes);
Josef Bacik69fe2d72017-10-19 14:15:57 -04005745 if (num_bytes == 0)
5746 return 0;
5747
Josef Bacik5df11362018-11-21 14:03:11 -05005748 do {
5749 ret = btrfs_qgroup_reserve_meta_prealloc(root, qgroup_num_bytes,
5750 true);
5751 if (ret)
5752 return ret;
5753 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
5754 if (ret) {
5755 btrfs_qgroup_free_meta_prealloc(root, qgroup_num_bytes);
5756 last = num_bytes;
5757 /*
5758 * If we are fragmented we can end up with a lot of
5759 * outstanding extents which will make our size be much
5760 * larger than our reserved amount.
5761 *
5762 * If the reservation happens here, it might be very
5763 * big though not needed in the end, if the delalloc
5764 * flushing happens.
5765 *
5766 * If this is the case try and do the reserve again.
5767 */
5768 if (flush == BTRFS_RESERVE_FLUSH_ALL)
5769 calc_refill_bytes(block_rsv, &num_bytes,
5770 &qgroup_num_bytes);
5771 if (num_bytes == 0)
5772 return 0;
5773 }
5774 } while (ret && last != num_bytes);
5775
Josef Bacik69fe2d72017-10-19 14:15:57 -04005776 if (!ret) {
Lu Fengqi3a584172018-08-04 21:10:55 +08005777 block_rsv_add_bytes(block_rsv, num_bytes, false);
Josef Bacik69fe2d72017-10-19 14:15:57 -04005778 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5779 btrfs_ino(inode), num_bytes, 1);
Qu Wenruoff6bc372017-12-21 13:42:04 +08005780
5781 /* Don't forget to increase qgroup_rsv_reserved */
5782 spin_lock(&block_rsv->lock);
5783 block_rsv->qgroup_rsv_reserved += qgroup_num_bytes;
5784 spin_unlock(&block_rsv->lock);
Josef Bacik5df11362018-11-21 14:03:11 -05005785 }
Josef Bacik69fe2d72017-10-19 14:15:57 -04005786 return ret;
5787}
5788
Josef Bacikba2c4d42018-12-03 10:20:33 -05005789static u64 __btrfs_block_rsv_release(struct btrfs_fs_info *fs_info,
5790 struct btrfs_block_rsv *block_rsv,
5791 u64 num_bytes, u64 *qgroup_to_release)
5792{
5793 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5794 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_refs_rsv;
5795 struct btrfs_block_rsv *target = delayed_rsv;
5796
5797 if (target->full || target == block_rsv)
5798 target = global_rsv;
5799
5800 if (block_rsv->space_info != target->space_info)
5801 target = NULL;
5802
5803 return block_rsv_release_bytes(fs_info, block_rsv, target, num_bytes,
5804 qgroup_to_release);
5805}
5806
5807void btrfs_block_rsv_release(struct btrfs_fs_info *fs_info,
5808 struct btrfs_block_rsv *block_rsv,
5809 u64 num_bytes)
5810{
5811 __btrfs_block_rsv_release(fs_info, block_rsv, num_bytes, NULL);
5812}
5813
Josef Bacik69fe2d72017-10-19 14:15:57 -04005814/**
5815 * btrfs_inode_rsv_release - release any excessive reservation.
5816 * @inode - the inode we need to release from.
Qu Wenruo43b18592017-12-12 15:34:32 +08005817 * @qgroup_free - free or convert qgroup meta.
5818 * Unlike normal operation, qgroup meta reservation needs to know if we are
5819 * freeing qgroup reservation or just converting it into per-trans. Normally
5820 * @qgroup_free is true for error handling, and false for normal release.
Josef Bacik69fe2d72017-10-19 14:15:57 -04005821 *
5822 * This is the same as btrfs_block_rsv_release, except that it handles the
5823 * tracepoint for the reservation.
5824 */
Qu Wenruo43b18592017-12-12 15:34:32 +08005825static void btrfs_inode_rsv_release(struct btrfs_inode *inode, bool qgroup_free)
Josef Bacik69fe2d72017-10-19 14:15:57 -04005826{
5827 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005828 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
5829 u64 released = 0;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005830 u64 qgroup_to_release = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005831
5832 /*
5833 * Since we statically set the block_rsv->size we just want to say we
5834 * are releasing 0 bytes, and then we'll just get the reservation over
5835 * the size free'd.
5836 */
Josef Bacikba2c4d42018-12-03 10:20:33 -05005837 released = __btrfs_block_rsv_release(fs_info, block_rsv, 0,
5838 &qgroup_to_release);
Josef Bacik69fe2d72017-10-19 14:15:57 -04005839 if (released > 0)
5840 trace_btrfs_space_reservation(fs_info, "delalloc",
5841 btrfs_ino(inode), released, 0);
Qu Wenruo43b18592017-12-12 15:34:32 +08005842 if (qgroup_free)
Qu Wenruoff6bc372017-12-21 13:42:04 +08005843 btrfs_qgroup_free_meta_prealloc(inode->root, qgroup_to_release);
Qu Wenruo43b18592017-12-12 15:34:32 +08005844 else
Qu Wenruoff6bc372017-12-21 13:42:04 +08005845 btrfs_qgroup_convert_reserved_meta(inode->root,
5846 qgroup_to_release);
Josef Bacik69fe2d72017-10-19 14:15:57 -04005847}
5848
Josef Bacikba2c4d42018-12-03 10:20:33 -05005849/**
5850 * btrfs_delayed_refs_rsv_release - release a ref head's reservation.
5851 * @fs_info - the fs_info for our fs.
5852 * @nr - the number of items to drop.
5853 *
5854 * This drops the delayed ref head's count from the delayed refs rsv and frees
5855 * any excess reservation we had.
5856 */
5857void btrfs_delayed_refs_rsv_release(struct btrfs_fs_info *fs_info, int nr)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005858{
Josef Bacikba2c4d42018-12-03 10:20:33 -05005859 struct btrfs_block_rsv *block_rsv = &fs_info->delayed_refs_rsv;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005860 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikba2c4d42018-12-03 10:20:33 -05005861 u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, nr);
5862 u64 released = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005863
Josef Bacikba2c4d42018-12-03 10:20:33 -05005864 released = block_rsv_release_bytes(fs_info, block_rsv, global_rsv,
5865 num_bytes, NULL);
5866 if (released)
5867 trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
5868 0, released, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005869}
5870
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005871static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5872{
5873 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5874 struct btrfs_space_info *sinfo = block_rsv->space_info;
5875 u64 num_bytes;
5876
Josef Bacikae2e4722016-05-27 12:58:35 -04005877 /*
5878 * The global block rsv is based on the size of the extent tree, the
5879 * checksum tree and the root tree. If the fs is empty we want to set
5880 * it to a minimal amount for safety.
5881 */
5882 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) +
5883 btrfs_root_used(&fs_info->csum_root->root_item) +
5884 btrfs_root_used(&fs_info->tree_root->root_item);
5885 num_bytes = max_t(u64, num_bytes, SZ_16M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005886
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005887 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005888 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005889
Byongho Leeee221842015-12-15 01:42:10 +09005890 block_rsv->size = min_t(u64, num_bytes, SZ_512M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005891
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005892 if (block_rsv->reserved < block_rsv->size) {
Liu Bo41361352017-02-13 15:42:21 -08005893 num_bytes = btrfs_space_info_used(sinfo, true);
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005894 if (sinfo->total_bytes > num_bytes) {
5895 num_bytes = sinfo->total_bytes - num_bytes;
5896 num_bytes = min(num_bytes,
5897 block_rsv->size - block_rsv->reserved);
5898 block_rsv->reserved += num_bytes;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005899 update_bytes_may_use(sinfo, num_bytes);
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005900 trace_btrfs_space_reservation(fs_info, "space_info",
5901 sinfo->flags, num_bytes,
5902 1);
5903 }
5904 } else if (block_rsv->reserved > block_rsv->size) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005905 num_bytes = block_rsv->reserved - block_rsv->size;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005906 update_bytes_may_use(sinfo, -num_bytes);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005907 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005908 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005909 block_rsv->reserved = block_rsv->size;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005910 }
David Sterba182608c2011-05-05 13:13:16 +02005911
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005912 if (block_rsv->reserved == block_rsv->size)
5913 block_rsv->full = 1;
5914 else
5915 block_rsv->full = 0;
5916
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005917 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005918 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005919}
5920
Yan, Zhengf0486c62010-05-16 10:46:25 -04005921static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5922{
5923 struct btrfs_space_info *space_info;
5924
5925 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5926 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005927
5928 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005929 fs_info->global_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005930 fs_info->trans_block_rsv.space_info = space_info;
5931 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005932 fs_info->delayed_block_rsv.space_info = space_info;
Josef Bacikba2c4d42018-12-03 10:20:33 -05005933 fs_info->delayed_refs_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005934
Josef Bacikba2c4d42018-12-03 10:20:33 -05005935 fs_info->extent_root->block_rsv = &fs_info->delayed_refs_rsv;
5936 fs_info->csum_root->block_rsv = &fs_info->delayed_refs_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005937 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5938 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005939 if (fs_info->quota_root)
5940 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005941 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005942
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005943 update_global_block_rsv(fs_info);
5944}
5945
5946static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5947{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005948 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
Qu Wenruoff6bc372017-12-21 13:42:04 +08005949 (u64)-1, NULL);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005950 WARN_ON(fs_info->trans_block_rsv.size > 0);
5951 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5952 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5953 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04005954 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5955 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikba2c4d42018-12-03 10:20:33 -05005956 WARN_ON(fs_info->delayed_refs_rsv.reserved > 0);
5957 WARN_ON(fs_info->delayed_refs_rsv.size > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04005958}
5959
Josef Bacikba2c4d42018-12-03 10:20:33 -05005960/*
5961 * btrfs_update_delayed_refs_rsv - adjust the size of the delayed refs rsv
5962 * @trans - the trans that may have generated delayed refs
5963 *
5964 * This is to be called anytime we may have adjusted trans->delayed_ref_updates,
5965 * it'll calculate the additional size and add it to the delayed_refs_rsv.
5966 */
5967void btrfs_update_delayed_refs_rsv(struct btrfs_trans_handle *trans)
5968{
5969 struct btrfs_fs_info *fs_info = trans->fs_info;
5970 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_refs_rsv;
5971 u64 num_bytes;
5972
5973 if (!trans->delayed_ref_updates)
5974 return;
5975
5976 num_bytes = btrfs_calc_trans_metadata_size(fs_info,
5977 trans->delayed_ref_updates);
5978 spin_lock(&delayed_rsv->lock);
5979 delayed_rsv->size += num_bytes;
5980 delayed_rsv->full = 0;
5981 spin_unlock(&delayed_rsv->lock);
5982 trans->delayed_ref_updates = 0;
5983}
Yan, Zhenga22285a2010-05-16 10:48:46 -04005984
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005985/*
5986 * To be called after all the new block groups attached to the transaction
5987 * handle have been created (btrfs_create_pending_block_groups()).
5988 */
5989void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5990{
Jeff Mahoney64b63582016-06-20 17:23:41 -04005991 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005992
5993 if (!trans->chunk_bytes_reserved)
5994 return;
5995
5996 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5997
5998 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
Qu Wenruoff6bc372017-12-21 13:42:04 +08005999 trans->chunk_bytes_reserved, NULL);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01006000 trans->chunk_bytes_reserved = 0;
6001}
6002
Miao Xied5c12072013-02-28 10:04:33 +00006003/*
6004 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
6005 * root: the root of the parent directory
6006 * rsv: block reservation
6007 * items: the number of items that we need do reservation
Lu Fengqia5b7f422018-08-09 09:46:04 +08006008 * use_global_rsv: allow fallback to the global block reservation
Miao Xied5c12072013-02-28 10:04:33 +00006009 *
6010 * This function is used to reserve the space for snapshot/subvolume
6011 * creation and deletion. Those operations are different with the
6012 * common file/directory operations, they change two fs/file trees
6013 * and root tree, the number of items that the qgroup reserves is
6014 * different with the free space reservation. So we can not use
Nicholas D Steeves01327612016-05-19 21:18:45 -04006015 * the space reservation mechanism in start_transaction().
Miao Xied5c12072013-02-28 10:04:33 +00006016 */
6017int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
Lu Fengqia5b7f422018-08-09 09:46:04 +08006018 struct btrfs_block_rsv *rsv, int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04006019 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04006020{
Lu Fengqia5b7f422018-08-09 09:46:04 +08006021 u64 qgroup_num_bytes = 0;
Miao Xied5c12072013-02-28 10:04:33 +00006022 u64 num_bytes;
6023 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006024 struct btrfs_fs_info *fs_info = root->fs_info;
6025 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00006026
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006027 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
Miao Xied5c12072013-02-28 10:04:33 +00006028 /* One for parent inode, two for dir entries */
Lu Fengqia5b7f422018-08-09 09:46:04 +08006029 qgroup_num_bytes = 3 * fs_info->nodesize;
6030 ret = btrfs_qgroup_reserve_meta_prealloc(root,
6031 qgroup_num_bytes, true);
Miao Xied5c12072013-02-28 10:04:33 +00006032 if (ret)
6033 return ret;
Miao Xied5c12072013-02-28 10:04:33 +00006034 }
6035
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006036 num_bytes = btrfs_calc_trans_metadata_size(fs_info, items);
6037 rsv->space_info = __find_space_info(fs_info,
Miao Xied5c12072013-02-28 10:04:33 +00006038 BTRFS_BLOCK_GROUP_METADATA);
6039 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
6040 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04006041
6042 if (ret == -ENOSPC && use_global_rsv)
Lu Fengqi3a584172018-08-04 21:10:55 +08006043 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, true);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04006044
Lu Fengqia5b7f422018-08-09 09:46:04 +08006045 if (ret && qgroup_num_bytes)
6046 btrfs_qgroup_free_meta_prealloc(root, qgroup_num_bytes);
Miao Xied5c12072013-02-28 10:04:33 +00006047
6048 return ret;
6049}
6050
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006051void btrfs_subvolume_release_metadata(struct btrfs_fs_info *fs_info,
David Sterba7775c812017-02-10 19:18:18 +01006052 struct btrfs_block_rsv *rsv)
Miao Xied5c12072013-02-28 10:04:33 +00006053{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006054 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006055}
6056
Josef Bacik69fe2d72017-10-19 14:15:57 -04006057static void btrfs_calculate_inode_block_rsv_size(struct btrfs_fs_info *fs_info,
6058 struct btrfs_inode *inode)
Josef Bacik9e0baf62011-07-15 15:16:44 +00006059{
Josef Bacik69fe2d72017-10-19 14:15:57 -04006060 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
6061 u64 reserve_size = 0;
Qu Wenruoff6bc372017-12-21 13:42:04 +08006062 u64 qgroup_rsv_size = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04006063 u64 csum_leaves;
6064 unsigned outstanding_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006065
Josef Bacik69fe2d72017-10-19 14:15:57 -04006066 lockdep_assert_held(&inode->lock);
6067 outstanding_extents = inode->outstanding_extents;
6068 if (outstanding_extents)
6069 reserve_size = btrfs_calc_trans_metadata_size(fs_info,
6070 outstanding_extents + 1);
6071 csum_leaves = btrfs_csum_bytes_to_leaves(fs_info,
6072 inode->csum_bytes);
6073 reserve_size += btrfs_calc_trans_metadata_size(fs_info,
6074 csum_leaves);
Qu Wenruoff6bc372017-12-21 13:42:04 +08006075 /*
6076 * For qgroup rsv, the calculation is very simple:
6077 * account one nodesize for each outstanding extent
6078 *
6079 * This is overestimating in most cases.
6080 */
Nikolay Borisov139a5612019-03-18 17:45:20 +02006081 qgroup_rsv_size = (u64)outstanding_extents * fs_info->nodesize;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006082
Josef Bacik69fe2d72017-10-19 14:15:57 -04006083 spin_lock(&block_rsv->lock);
6084 block_rsv->size = reserve_size;
Qu Wenruoff6bc372017-12-21 13:42:04 +08006085 block_rsv->qgroup_rsv_size = qgroup_rsv_size;
Josef Bacik69fe2d72017-10-19 14:15:57 -04006086 spin_unlock(&block_rsv->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006087}
6088
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006089int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006090{
David Sterba3ffbd682018-06-29 10:56:42 +02006091 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Josef Bacik69fe2d72017-10-19 14:15:57 -04006092 unsigned nr_extents;
Miao Xie08e007d2012-10-16 11:33:38 +00006093 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07006094 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006095 bool delalloc_lock = true;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006096
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006097 /* If we are a free space inode we need to not flush since we will be in
6098 * the middle of a transaction commit. We also don't need the delalloc
6099 * mutex since we won't race with anybody. We need this mostly to make
6100 * lockdep shut its filthy mouth.
Josef Bacikbac357dc2016-07-20 16:48:45 -07006101 *
6102 * If we have a transaction open (can happen if we call truncate_block
6103 * from truncate), then we need FLUSH_LIMIT so we don't deadlock.
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006104 */
6105 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00006106 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006107 delalloc_lock = false;
Nikolay Borisovda07d4a2018-01-12 16:21:05 +02006108 } else {
6109 if (current->journal_info)
6110 flush = BTRFS_RESERVE_FLUSH_LIMIT;
Josef Bacikc09544e2011-08-30 10:19:10 -04006111
Nikolay Borisovda07d4a2018-01-12 16:21:05 +02006112 if (btrfs_transaction_in_commit(fs_info))
6113 schedule_timeout(1);
6114 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006115
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006116 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006117 mutex_lock(&inode->delalloc_mutex);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006118
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006119 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006120
6121 /* Add our new extents and calculate the new rsv size. */
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006122 spin_lock(&inode->lock);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006123 nr_extents = count_max_extents(num_bytes);
Josef Bacik8b62f872017-10-19 14:15:55 -04006124 btrfs_mod_outstanding_extents(inode, nr_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006125 inode->csum_bytes += num_bytes;
6126 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006127 spin_unlock(&inode->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05006128
Josef Bacik69fe2d72017-10-19 14:15:57 -04006129 ret = btrfs_inode_rsv_refill(inode, flush);
Qu Wenruo43b18592017-12-12 15:34:32 +08006130 if (unlikely(ret))
Wang Shilong88e081bf2013-03-01 11:36:01 +00006131 goto out_fail;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006132
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006133 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006134 mutex_unlock(&inode->delalloc_mutex);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006135 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00006136
6137out_fail:
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006138 spin_lock(&inode->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04006139 nr_extents = count_max_extents(num_bytes);
6140 btrfs_mod_outstanding_extents(inode, -nr_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006141 inode->csum_bytes -= num_bytes;
6142 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006143 spin_unlock(&inode->lock);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006144
Qu Wenruo43b18592017-12-12 15:34:32 +08006145 btrfs_inode_rsv_release(inode, true);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006146 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006147 mutex_unlock(&inode->delalloc_mutex);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006148 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006149}
6150
Josef Bacik7709cde2011-08-04 10:25:02 -04006151/**
6152 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
Josef Bacik8b62f872017-10-19 14:15:55 -04006153 * @inode: the inode to release the reservation for.
6154 * @num_bytes: the number of bytes we are releasing.
Qu Wenruo43b18592017-12-12 15:34:32 +08006155 * @qgroup_free: free qgroup reservation or convert it to per-trans reservation
Josef Bacik7709cde2011-08-04 10:25:02 -04006156 *
6157 * This will release the metadata reservation for an inode. This can be called
6158 * once we complete IO for a given set of bytes to release their metadata
Josef Bacik8b62f872017-10-19 14:15:55 -04006159 * reservations, or on error for the same reason.
Josef Bacik7709cde2011-08-04 10:25:02 -04006160 */
Qu Wenruo43b18592017-12-12 15:34:32 +08006161void btrfs_delalloc_release_metadata(struct btrfs_inode *inode, u64 num_bytes,
6162 bool qgroup_free)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006163{
David Sterba3ffbd682018-06-29 10:56:42 +02006164 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006165
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006166 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006167 spin_lock(&inode->lock);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006168 inode->csum_bytes -= num_bytes;
6169 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006170 spin_unlock(&inode->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006171
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006172 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04006173 return;
6174
Qu Wenruo43b18592017-12-12 15:34:32 +08006175 btrfs_inode_rsv_release(inode, qgroup_free);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006176}
6177
Josef Bacik7709cde2011-08-04 10:25:02 -04006178/**
Josef Bacik8b62f872017-10-19 14:15:55 -04006179 * btrfs_delalloc_release_extents - release our outstanding_extents
6180 * @inode: the inode to balance the reservation for.
6181 * @num_bytes: the number of bytes we originally reserved with
Qu Wenruo43b18592017-12-12 15:34:32 +08006182 * @qgroup_free: do we need to free qgroup meta reservation or convert them.
Josef Bacik8b62f872017-10-19 14:15:55 -04006183 *
6184 * When we reserve space we increase outstanding_extents for the extents we may
6185 * add. Once we've set the range as delalloc or created our ordered extents we
6186 * have outstanding_extents to track the real usage, so we use this to free our
6187 * temporarily tracked outstanding_extents. This _must_ be used in conjunction
6188 * with btrfs_delalloc_reserve_metadata.
6189 */
Qu Wenruo43b18592017-12-12 15:34:32 +08006190void btrfs_delalloc_release_extents(struct btrfs_inode *inode, u64 num_bytes,
6191 bool qgroup_free)
Josef Bacik8b62f872017-10-19 14:15:55 -04006192{
David Sterba3ffbd682018-06-29 10:56:42 +02006193 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Josef Bacik8b62f872017-10-19 14:15:55 -04006194 unsigned num_extents;
Josef Bacik8b62f872017-10-19 14:15:55 -04006195
6196 spin_lock(&inode->lock);
6197 num_extents = count_max_extents(num_bytes);
6198 btrfs_mod_outstanding_extents(inode, -num_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006199 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Josef Bacik8b62f872017-10-19 14:15:55 -04006200 spin_unlock(&inode->lock);
6201
Josef Bacik8b62f872017-10-19 14:15:55 -04006202 if (btrfs_is_testing(fs_info))
6203 return;
6204
Qu Wenruo43b18592017-12-12 15:34:32 +08006205 btrfs_inode_rsv_release(inode, qgroup_free);
Josef Bacik8b62f872017-10-19 14:15:55 -04006206}
6207
6208/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006209 * btrfs_delalloc_reserve_space - reserve data and metadata space for
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006210 * delalloc
6211 * @inode: inode we're writing to
6212 * @start: start range we are writing to
6213 * @len: how long the range we are writing to
Qu Wenruo364ecf32017-02-27 15:10:38 +08006214 * @reserved: mandatory parameter, record actually reserved qgroup ranges of
6215 * current reservation.
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006216 *
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006217 * This will do the following things
6218 *
6219 * o reserve space in data space info for num bytes
6220 * and reserve precious corresponding qgroup space
6221 * (Done in check_data_free_space)
6222 *
6223 * o reserve space for metadata space, based on the number of outstanding
6224 * extents and how much csums will be needed
6225 * also reserve metadata space in a per root over-reserve method.
6226 * o add to the inodes->delalloc_bytes
6227 * o add it to the fs_info's delalloc inodes list.
6228 * (Above 3 all done in delalloc_reserve_metadata)
6229 *
6230 * Return 0 for success
6231 * Return <0 for error(-ENOSPC or -EQUOT)
6232 */
Qu Wenruo364ecf32017-02-27 15:10:38 +08006233int btrfs_delalloc_reserve_space(struct inode *inode,
6234 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006235{
6236 int ret;
6237
Qu Wenruo364ecf32017-02-27 15:10:38 +08006238 ret = btrfs_check_data_free_space(inode, reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006239 if (ret < 0)
6240 return ret;
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006241 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode), len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006242 if (ret < 0)
Qu Wenruobc42bda2017-02-27 15:10:39 +08006243 btrfs_free_reserved_data_space(inode, *reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006244 return ret;
6245}
6246
6247/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006248 * btrfs_delalloc_release_space - release data and metadata space for delalloc
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006249 * @inode: inode we're releasing space for
6250 * @start: start position of the space already reserved
6251 * @len: the len of the space already reserved
Josef Bacik8b62f872017-10-19 14:15:55 -04006252 * @release_bytes: the len of the space we consumed or didn't use
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006253 *
6254 * This function will release the metadata space that was not used and will
6255 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
6256 * list if there are no delalloc bytes left.
6257 * Also it will handle the qgroup reserved space.
6258 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08006259void btrfs_delalloc_release_space(struct inode *inode,
Josef Bacik8b62f872017-10-19 14:15:55 -04006260 struct extent_changeset *reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08006261 u64 start, u64 len, bool qgroup_free)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006262{
Qu Wenruo43b18592017-12-12 15:34:32 +08006263 btrfs_delalloc_release_metadata(BTRFS_I(inode), len, qgroup_free);
Qu Wenruobc42bda2017-02-27 15:10:39 +08006264 btrfs_free_reserved_data_space(inode, reserved, start, len);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006265}
6266
Josef Bacikce93ec52014-11-17 15:45:48 -05006267static int update_block_group(struct btrfs_trans_handle *trans,
David Sterba6b279402019-03-20 12:10:15 +01006268 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04006269{
David Sterba6b279402019-03-20 12:10:15 +01006270 struct btrfs_fs_info *info = trans->fs_info;
Josef Bacik0af3d002010-06-21 14:48:16 -04006271 struct btrfs_block_group_cache *cache = NULL;
Chris Masondb945352007-10-15 16:15:53 -04006272 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006273 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04006274 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04006275 int factor;
Josef Bacikba2c4d42018-12-03 10:20:33 -05006276 int ret = 0;
Chris Mason3e1ad542007-05-07 20:03:49 -04006277
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006278 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00006279 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02006280 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006281 if (alloc)
6282 old_val += num_bytes;
6283 else
6284 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02006285 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00006286 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006287
Chris Masond3977122009-01-05 21:25:51 -05006288 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04006289 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikba2c4d42018-12-03 10:20:33 -05006290 if (!cache) {
6291 ret = -ENOENT;
6292 break;
6293 }
David Sterba46df06b2018-07-13 20:46:30 +02006294 factor = btrfs_bg_type_to_factor(cache->flags);
6295
Josef Bacik9d66e232010-08-25 16:54:15 -04006296 /*
6297 * If this block group has free space cache written out, we
6298 * need to make sure to load it if we are removing space. This
6299 * is because we need the unpinning stage to actually add the
6300 * space back to the block group, otherwise we will leak space.
6301 */
6302 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00006303 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04006304
Chris Masondb945352007-10-15 16:15:53 -04006305 byte_in_group = bytenr - cache->key.objectid;
6306 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04006307
Josef Bacik25179202008-10-29 14:49:05 -04006308 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04006309 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04006310
Jeff Mahoney6202df62016-06-22 18:54:22 -04006311 if (btrfs_test_opt(info, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04006312 cache->disk_cache_state < BTRFS_DC_CLEAR)
6313 cache->disk_cache_state = BTRFS_DC_CLEAR;
6314
Chris Mason9078a3e2007-04-26 16:46:15 -04006315 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04006316 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04006317 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04006318 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006319 btrfs_set_block_group_used(&cache->item, old_val);
6320 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006321 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb822010-05-16 10:46:24 -04006322 cache->space_info->bytes_used += num_bytes;
6323 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04006324 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006325 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04006326 } else {
Chris Masondb945352007-10-15 16:15:53 -04006327 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00006328 btrfs_set_block_group_used(&cache->item, old_val);
6329 cache->pinned += num_bytes;
Lu Fengqie2907c12018-10-24 20:24:02 +08006330 update_bytes_pinned(cache->space_info, num_bytes);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006331 cache->space_info->bytes_used -= num_bytes;
6332 cache->space_info->disk_used -= num_bytes * factor;
6333 spin_unlock(&cache->lock);
6334 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04006335
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006336 trace_btrfs_space_reservation(info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006337 cache->space_info->flags,
6338 num_bytes, 1);
Ethan Liendec59fa2018-07-13 16:50:42 +08006339 percpu_counter_add_batch(&cache->space_info->total_bytes_pinned,
6340 num_bytes,
6341 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006342 set_extent_dirty(info->pinned_extents,
6343 bytenr, bytenr + num_bytes - 1,
6344 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04006345 }
Chris Mason1bbc6212015-04-06 12:46:08 -07006346
6347 spin_lock(&trans->transaction->dirty_bgs_lock);
6348 if (list_empty(&cache->dirty_list)) {
6349 list_add_tail(&cache->dirty_list,
6350 &trans->transaction->dirty_bgs);
Josef Bacikba2c4d42018-12-03 10:20:33 -05006351 trans->delayed_ref_updates++;
Chris Mason1bbc6212015-04-06 12:46:08 -07006352 btrfs_get_block_group(cache);
6353 }
6354 spin_unlock(&trans->transaction->dirty_bgs_lock);
6355
Filipe Manana036a9342015-11-23 15:25:16 +00006356 /*
6357 * No longer have used bytes in this block group, queue it for
6358 * deletion. We do this after adding the block group to the
6359 * dirty list to avoid races between cleaner kthread and space
6360 * cache writeout.
6361 */
Qu Wenruo031f24d2018-05-22 16:43:47 +08006362 if (!alloc && old_val == 0)
6363 btrfs_mark_bg_unused(cache);
Filipe Manana036a9342015-11-23 15:25:16 +00006364
Chris Masonfa9c0d792009-04-03 09:47:43 -04006365 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04006366 total -= num_bytes;
6367 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006368 }
Josef Bacikba2c4d42018-12-03 10:20:33 -05006369
6370 /* Modified block groups are accounted for in the delayed_refs_rsv. */
6371 btrfs_update_delayed_refs_rsv(trans);
6372 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04006373}
Chris Mason6324fbf2008-03-24 15:01:59 -04006374
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006375static u64 first_logical_byte(struct btrfs_fs_info *fs_info, u64 search_start)
Chris Masona061fc82008-05-07 11:43:44 -04006376{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006377 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05006378 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006379
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006380 spin_lock(&fs_info->block_group_cache_lock);
6381 bytenr = fs_info->first_logical_byte;
6382 spin_unlock(&fs_info->block_group_cache_lock);
Liu Boa1897fd2012-12-27 09:01:23 +00006383
6384 if (bytenr < (u64)-1)
6385 return bytenr;
6386
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006387 cache = btrfs_lookup_first_block_group(fs_info, search_start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006388 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04006389 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006390
Yan Zhengd2fb3432008-12-11 16:30:39 -05006391 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006392 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05006393
6394 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04006395}
6396
David Sterbafdf08602019-03-20 12:12:32 +01006397static int pin_down_extent(struct btrfs_block_group_cache *cache,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006398 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05006399{
David Sterbafdf08602019-03-20 12:12:32 +01006400 struct btrfs_fs_info *fs_info = cache->fs_info;
6401
Yan Zheng11833d62009-09-11 16:11:19 -04006402 spin_lock(&cache->space_info->lock);
6403 spin_lock(&cache->lock);
6404 cache->pinned += num_bytes;
Lu Fengqie2907c12018-10-24 20:24:02 +08006405 update_bytes_pinned(cache->space_info, num_bytes);
Yan Zheng11833d62009-09-11 16:11:19 -04006406 if (reserved) {
6407 cache->reserved -= num_bytes;
6408 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05006409 }
Yan Zheng11833d62009-09-11 16:11:19 -04006410 spin_unlock(&cache->lock);
6411 spin_unlock(&cache->space_info->lock);
6412
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006413 trace_btrfs_space_reservation(fs_info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006414 cache->space_info->flags, num_bytes, 1);
Ethan Liendec59fa2018-07-13 16:50:42 +08006415 percpu_counter_add_batch(&cache->space_info->total_bytes_pinned,
6416 num_bytes, BTRFS_TOTAL_BYTES_PINNED_BATCH);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006417 set_extent_dirty(fs_info->pinned_extents, bytenr,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006418 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05006419 return 0;
6420}
Chris Mason9078a3e2007-04-26 16:46:15 -04006421
Yan, Zhengf0486c62010-05-16 10:46:25 -04006422/*
6423 * this function must be called within transaction
6424 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006425int btrfs_pin_extent(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006426 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04006427{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006428 struct btrfs_block_group_cache *cache;
6429
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006430 cache = btrfs_lookup_block_group(fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006431 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006432
David Sterbafdf08602019-03-20 12:12:32 +01006433 pin_down_extent(cache, bytenr, num_bytes, reserved);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006434
6435 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04006436 return 0;
6437}
Zheng Yane8569812008-09-26 10:05:48 -04006438
Yan, Zhengf0486c62010-05-16 10:46:25 -04006439/*
Chris Masone688b7252011-10-31 20:52:39 -04006440 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04006441 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006442int btrfs_pin_extent_for_log_replay(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04006443 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006444{
Chris Masone688b7252011-10-31 20:52:39 -04006445 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04006446 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04006447
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006448 cache = btrfs_lookup_block_group(fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006449 if (!cache)
6450 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04006451
6452 /*
6453 * pull in the free space cache (if any) so that our pin
6454 * removes the free space from the cache. We have load_only set
6455 * to one because the slow code to read in the free extents does check
6456 * the pinned extents.
6457 */
Liu Bof6373bf2012-12-27 09:01:18 +00006458 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04006459
David Sterbafdf08602019-03-20 12:12:32 +01006460 pin_down_extent(cache, bytenr, num_bytes, 0);
Chris Masone688b7252011-10-31 20:52:39 -04006461
6462 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04006463 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04006464 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006465 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04006466}
6467
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006468static int __exclude_logged_extent(struct btrfs_fs_info *fs_info,
6469 u64 start, u64 num_bytes)
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006470{
6471 int ret;
6472 struct btrfs_block_group_cache *block_group;
6473 struct btrfs_caching_control *caching_ctl;
6474
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006475 block_group = btrfs_lookup_block_group(fs_info, start);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006476 if (!block_group)
6477 return -EINVAL;
6478
6479 cache_block_group(block_group, 0);
6480 caching_ctl = get_caching_control(block_group);
6481
6482 if (!caching_ctl) {
6483 /* Logic error */
6484 BUG_ON(!block_group_cache_done(block_group));
6485 ret = btrfs_remove_free_space(block_group, start, num_bytes);
6486 } else {
6487 mutex_lock(&caching_ctl->mutex);
6488
6489 if (start >= caching_ctl->progress) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006490 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006491 } else if (start + num_bytes <= caching_ctl->progress) {
6492 ret = btrfs_remove_free_space(block_group,
6493 start, num_bytes);
6494 } else {
6495 num_bytes = caching_ctl->progress - start;
6496 ret = btrfs_remove_free_space(block_group,
6497 start, num_bytes);
6498 if (ret)
6499 goto out_lock;
6500
6501 num_bytes = (start + num_bytes) -
6502 caching_ctl->progress;
6503 start = caching_ctl->progress;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006504 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006505 }
6506out_lock:
6507 mutex_unlock(&caching_ctl->mutex);
6508 put_caching_control(caching_ctl);
6509 }
6510 btrfs_put_block_group(block_group);
6511 return ret;
6512}
6513
David Sterbabcdc4282019-03-20 12:14:33 +01006514int btrfs_exclude_logged_extents(struct extent_buffer *eb)
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006515{
David Sterbabcdc4282019-03-20 12:14:33 +01006516 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006517 struct btrfs_file_extent_item *item;
6518 struct btrfs_key key;
6519 int found_type;
6520 int i;
Gu Jinxiangb89311e2018-05-22 17:46:51 +08006521 int ret = 0;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006522
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006523 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS))
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006524 return 0;
6525
6526 for (i = 0; i < btrfs_header_nritems(eb); i++) {
6527 btrfs_item_key_to_cpu(eb, &key, i);
6528 if (key.type != BTRFS_EXTENT_DATA_KEY)
6529 continue;
6530 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
6531 found_type = btrfs_file_extent_type(eb, item);
6532 if (found_type == BTRFS_FILE_EXTENT_INLINE)
6533 continue;
6534 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
6535 continue;
6536 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
6537 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
Gu Jinxiangb89311e2018-05-22 17:46:51 +08006538 ret = __exclude_logged_extent(fs_info, key.objectid, key.offset);
6539 if (ret)
6540 break;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006541 }
6542
Gu Jinxiangb89311e2018-05-22 17:46:51 +08006543 return ret;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006544}
6545
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006546static void
6547btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg)
6548{
6549 atomic_inc(&bg->reservations);
6550}
6551
6552void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
6553 const u64 start)
6554{
6555 struct btrfs_block_group_cache *bg;
6556
6557 bg = btrfs_lookup_block_group(fs_info, start);
6558 ASSERT(bg);
6559 if (atomic_dec_and_test(&bg->reservations))
Peter Zijlstra46259562018-03-15 11:43:08 +01006560 wake_up_var(&bg->reservations);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006561 btrfs_put_block_group(bg);
6562}
6563
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006564void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg)
6565{
6566 struct btrfs_space_info *space_info = bg->space_info;
6567
6568 ASSERT(bg->ro);
6569
6570 if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA))
6571 return;
6572
6573 /*
6574 * Our block group is read only but before we set it to read only,
6575 * some task might have had allocated an extent from it already, but it
6576 * has not yet created a respective ordered extent (and added it to a
6577 * root's list of ordered extents).
6578 * Therefore wait for any task currently allocating extents, since the
6579 * block group's reservations counter is incremented while a read lock
6580 * on the groups' semaphore is held and decremented after releasing
6581 * the read access on that semaphore and creating the ordered extent.
6582 */
6583 down_write(&space_info->groups_sem);
6584 up_write(&space_info->groups_sem);
6585
Peter Zijlstra46259562018-03-15 11:43:08 +01006586 wait_var_event(&bg->reservations, !atomic_read(&bg->reservations));
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006587}
6588
Josef Bacikfb25e912011-07-26 17:00:46 -04006589/**
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006590 * btrfs_add_reserved_bytes - update the block_group and space info counters
Josef Bacikfb25e912011-07-26 17:00:46 -04006591 * @cache: The cache we are manipulating
Wang Xiaoguang18513092016-07-25 15:51:40 +08006592 * @ram_bytes: The number of bytes of file content, and will be same to
6593 * @num_bytes except for the compress path.
Josef Bacikfb25e912011-07-26 17:00:46 -04006594 * @num_bytes: The number of bytes in question
Miao Xiee570fd22014-06-19 10:42:50 +08006595 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04006596 *
Xiaoguang Wang745699e2016-09-23 12:38:50 +08006597 * This is called by the allocator when it reserves space. If this is a
6598 * reservation and the block group has become read only we cannot make the
6599 * reservation and return -EAGAIN, otherwise this function always succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04006600 */
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006601static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
Wang Xiaoguang18513092016-07-25 15:51:40 +08006602 u64 ram_bytes, u64 num_bytes, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006603{
Josef Bacikfb25e912011-07-26 17:00:46 -04006604 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006605 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006606
Josef Bacikfb25e912011-07-26 17:00:46 -04006607 spin_lock(&space_info->lock);
6608 spin_lock(&cache->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006609 if (cache->ro) {
6610 ret = -EAGAIN;
Josef Bacikfb25e912011-07-26 17:00:46 -04006611 } else {
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006612 cache->reserved += num_bytes;
6613 space_info->bytes_reserved += num_bytes;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08006614 update_bytes_may_use(space_info, -ram_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08006615 if (delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006616 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006617 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006618 spin_unlock(&cache->lock);
6619 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006620 return ret;
6621}
6622
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006623/**
6624 * btrfs_free_reserved_bytes - update the block_group and space info counters
6625 * @cache: The cache we are manipulating
6626 * @num_bytes: The number of bytes in question
6627 * @delalloc: The blocks are allocated for the delalloc write
6628 *
6629 * This is called by somebody who is freeing space that was never actually used
6630 * on disk. For example if you reserve some space for a new leaf in transaction
6631 * A and before transaction A commits you free that leaf, you call this with
6632 * reserve set to 0 in order to clear the reservation.
6633 */
6634
zhong jiang556f3ca2018-08-17 00:37:14 +08006635static void btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
6636 u64 num_bytes, int delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006637{
6638 struct btrfs_space_info *space_info = cache->space_info;
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006639
6640 spin_lock(&space_info->lock);
6641 spin_lock(&cache->lock);
6642 if (cache->ro)
6643 space_info->bytes_readonly += num_bytes;
6644 cache->reserved -= num_bytes;
6645 space_info->bytes_reserved -= num_bytes;
Josef Bacik21a94f72018-10-11 15:54:03 -04006646 space_info->max_extent_size = 0;
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006647
6648 if (delalloc)
6649 cache->delalloc_bytes -= num_bytes;
6650 spin_unlock(&cache->lock);
6651 spin_unlock(&space_info->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006652}
David Sterba8b74c032017-02-10 19:20:56 +01006653void btrfs_prepare_extent_commit(struct btrfs_fs_info *fs_info)
Yan Zheng11833d62009-09-11 16:11:19 -04006654{
Yan Zheng11833d62009-09-11 16:11:19 -04006655 struct btrfs_caching_control *next;
6656 struct btrfs_caching_control *caching_ctl;
6657 struct btrfs_block_group_cache *cache;
6658
Josef Bacik9e351cc2014-03-13 15:42:13 -04006659 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04006660
6661 list_for_each_entry_safe(caching_ctl, next,
6662 &fs_info->caching_block_groups, list) {
6663 cache = caching_ctl->block_group;
6664 if (block_group_cache_done(cache)) {
6665 cache->last_byte_to_unpin = (u64)-1;
6666 list_del_init(&caching_ctl->list);
6667 put_caching_control(caching_ctl);
6668 } else {
6669 cache->last_byte_to_unpin = caching_ctl->progress;
6670 }
6671 }
6672
6673 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6674 fs_info->pinned_extents = &fs_info->freed_extents[1];
6675 else
6676 fs_info->pinned_extents = &fs_info->freed_extents[0];
6677
Josef Bacik9e351cc2014-03-13 15:42:13 -04006678 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006679
6680 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04006681}
6682
Josef Bacikc759c4e2015-10-02 15:25:10 -04006683/*
6684 * Returns the free cluster for the given space info and sets empty_cluster to
6685 * what it should be based on the mount options.
6686 */
6687static struct btrfs_free_cluster *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006688fetch_cluster_info(struct btrfs_fs_info *fs_info,
6689 struct btrfs_space_info *space_info, u64 *empty_cluster)
Josef Bacikc759c4e2015-10-02 15:25:10 -04006690{
6691 struct btrfs_free_cluster *ret = NULL;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006692
6693 *empty_cluster = 0;
6694 if (btrfs_mixed_space_info(space_info))
6695 return ret;
6696
Josef Bacikc759c4e2015-10-02 15:25:10 -04006697 if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006698 ret = &fs_info->meta_alloc_cluster;
Hans van Kranenburg583b7232017-07-28 08:31:28 +02006699 if (btrfs_test_opt(fs_info, SSD))
6700 *empty_cluster = SZ_2M;
6701 else
Byongho Leeee221842015-12-15 01:42:10 +09006702 *empty_cluster = SZ_64K;
Hans van Kranenburg583b7232017-07-28 08:31:28 +02006703 } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) &&
6704 btrfs_test_opt(fs_info, SSD_SPREAD)) {
6705 *empty_cluster = SZ_2M;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006706 ret = &fs_info->data_alloc_cluster;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006707 }
6708
6709 return ret;
6710}
6711
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006712static int unpin_extent_range(struct btrfs_fs_info *fs_info,
6713 u64 start, u64 end,
Filipe Manana678886b2014-12-07 21:31:47 +00006714 const bool return_free_space)
Yan Zheng11833d62009-09-11 16:11:19 -04006715{
Yan Zheng11833d62009-09-11 16:11:19 -04006716 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04006717 struct btrfs_space_info *space_info;
6718 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006719 struct btrfs_free_cluster *cluster = NULL;
Yan Zheng11833d62009-09-11 16:11:19 -04006720 u64 len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006721 u64 total_unpinned = 0;
6722 u64 empty_cluster = 0;
Josef Bacik7b398f82012-10-22 15:52:28 -04006723 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04006724
6725 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04006726 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04006727 if (!cache ||
6728 start >= cache->key.objectid + cache->key.offset) {
6729 if (cache)
6730 btrfs_put_block_group(cache);
Josef Bacikc759c4e2015-10-02 15:25:10 -04006731 total_unpinned = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006732 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006733 BUG_ON(!cache); /* Logic error */
Josef Bacikc759c4e2015-10-02 15:25:10 -04006734
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006735 cluster = fetch_cluster_info(fs_info,
Josef Bacikc759c4e2015-10-02 15:25:10 -04006736 cache->space_info,
6737 &empty_cluster);
6738 empty_cluster <<= 1;
Yan Zheng11833d62009-09-11 16:11:19 -04006739 }
6740
6741 len = cache->key.objectid + cache->key.offset - start;
6742 len = min(len, end + 1 - start);
6743
6744 if (start < cache->last_byte_to_unpin) {
6745 len = min(len, cache->last_byte_to_unpin - start);
Filipe Manana678886b2014-12-07 21:31:47 +00006746 if (return_free_space)
6747 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04006748 }
Josef Bacik25179202008-10-29 14:49:05 -04006749
Yan, Zhengf0486c62010-05-16 10:46:25 -04006750 start += len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006751 total_unpinned += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006752 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006753
Josef Bacikc759c4e2015-10-02 15:25:10 -04006754 /*
6755 * If this space cluster has been marked as fragmented and we've
6756 * unpinned enough in this block group to potentially allow a
6757 * cluster to be created inside of it go ahead and clear the
6758 * fragmented check.
6759 */
6760 if (cluster && cluster->fragmented &&
6761 total_unpinned > empty_cluster) {
6762 spin_lock(&cluster->lock);
6763 cluster->fragmented = 0;
6764 spin_unlock(&cluster->lock);
6765 }
6766
Josef Bacik7b398f82012-10-22 15:52:28 -04006767 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006768 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006769 cache->pinned -= len;
Lu Fengqie2907c12018-10-24 20:24:02 +08006770 update_bytes_pinned(space_info, -len);
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006771
6772 trace_btrfs_space_reservation(fs_info, "pinned",
6773 space_info->flags, len, 0);
Josef Bacik4f4db212015-09-29 11:40:47 -04006774 space_info->max_extent_size = 0;
Ethan Liendec59fa2018-07-13 16:50:42 +08006775 percpu_counter_add_batch(&space_info->total_bytes_pinned,
6776 -len, BTRFS_TOTAL_BYTES_PINNED_BATCH);
Josef Bacik7b398f82012-10-22 15:52:28 -04006777 if (cache->ro) {
6778 space_info->bytes_readonly += len;
6779 readonly = true;
6780 }
Josef Bacik25179202008-10-29 14:49:05 -04006781 spin_unlock(&cache->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006782 if (!readonly && return_free_space &&
6783 global_rsv->space_info == space_info) {
6784 u64 to_add = len;
Nikolay Borisov92ac58e2017-08-17 10:52:28 +03006785
Josef Bacik7b398f82012-10-22 15:52:28 -04006786 spin_lock(&global_rsv->lock);
6787 if (!global_rsv->full) {
Josef Bacik957780e2016-05-17 13:30:55 -04006788 to_add = min(len, global_rsv->size -
6789 global_rsv->reserved);
6790 global_rsv->reserved += to_add;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08006791 update_bytes_may_use(space_info, to_add);
Josef Bacik7b398f82012-10-22 15:52:28 -04006792 if (global_rsv->reserved >= global_rsv->size)
6793 global_rsv->full = 1;
Josef Bacik957780e2016-05-17 13:30:55 -04006794 trace_btrfs_space_reservation(fs_info,
6795 "space_info",
6796 space_info->flags,
6797 to_add, 1);
6798 len -= to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006799 }
6800 spin_unlock(&global_rsv->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006801 /* Add to any tickets we may have */
6802 if (len)
6803 space_info_add_new_bytes(fs_info, space_info,
6804 len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006805 }
6806 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006807 }
6808
6809 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006810 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006811 return 0;
6812}
6813
Nikolay Borisov5ead2dd2018-03-15 16:00:26 +02006814int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans)
Chris Masona28ec192007-03-06 20:08:01 -05006815{
Nikolay Borisov5ead2dd2018-03-15 16:00:26 +02006816 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006817 struct btrfs_block_group_cache *block_group, *tmp;
6818 struct list_head *deleted_bgs;
Yan Zheng11833d62009-09-11 16:11:19 -04006819 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006820 u64 start;
6821 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006822 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006823
Yan Zheng11833d62009-09-11 16:11:19 -04006824 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6825 unpin = &fs_info->freed_extents[1];
6826 else
6827 unpin = &fs_info->freed_extents[0];
6828
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006829 while (!trans->aborted) {
Filipe Manana0e6ec382018-11-16 13:04:44 +00006830 struct extent_state *cached_state = NULL;
6831
Filipe Mananad4b450c2015-01-29 19:18:25 +00006832 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006833 ret = find_first_extent_bit(unpin, 0, &start, &end,
Filipe Manana0e6ec382018-11-16 13:04:44 +00006834 EXTENT_DIRTY, &cached_state);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006835 if (ret) {
6836 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006837 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006838 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006839
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006840 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006841 ret = btrfs_discard_extent(fs_info, start,
Li Dongyang5378e602011-03-24 10:24:27 +00006842 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006843
Filipe Manana0e6ec382018-11-16 13:04:44 +00006844 clear_extent_dirty(unpin, start, end, &cached_state);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006845 unpin_extent_range(fs_info, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006846 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana0e6ec382018-11-16 13:04:44 +00006847 free_extent_state(cached_state);
Chris Masonb9473432009-03-13 11:00:37 -04006848 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006849 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006850
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006851 /*
6852 * Transaction is finished. We don't need the lock anymore. We
6853 * do need to clean up the block groups in case of a transaction
6854 * abort.
6855 */
6856 deleted_bgs = &trans->transaction->deleted_bgs;
6857 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
6858 u64 trimmed = 0;
6859
6860 ret = -EROFS;
6861 if (!trans->aborted)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006862 ret = btrfs_discard_extent(fs_info,
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006863 block_group->key.objectid,
6864 block_group->key.offset,
6865 &trimmed);
6866
6867 list_del_init(&block_group->bg_list);
6868 btrfs_put_block_group_trimming(block_group);
6869 btrfs_put_block_group(block_group);
6870
6871 if (ret) {
6872 const char *errstr = btrfs_decode_error(ret);
6873 btrfs_warn(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02006874 "discard failed while removing blockgroup: errno=%d %s",
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006875 ret, errstr);
6876 }
6877 }
6878
Chris Masone20d96d2007-03-22 12:13:20 -04006879 return 0;
6880}
6881
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006882static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
Nikolay Borisove72cb922018-06-20 15:48:57 +03006883 struct btrfs_delayed_ref_node *node, u64 parent,
6884 u64 root_objectid, u64 owner_objectid,
6885 u64 owner_offset, int refs_to_drop,
6886 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006887{
Nikolay Borisove72cb922018-06-20 15:48:57 +03006888 struct btrfs_fs_info *info = trans->fs_info;
Chris Masone2fa7222007-03-12 16:22:34 -04006889 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006890 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006891 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006892 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006893 struct btrfs_extent_item *ei;
6894 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006895 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006896 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006897 int extent_slot = 0;
6898 int found_extent = 0;
6899 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006900 u32 item_size;
6901 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006902 u64 bytenr = node->bytenr;
6903 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006904 int last_ref = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006905 bool skinny_metadata = btrfs_fs_incompat(info, SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006906
Chris Mason5caf2a02007-04-02 11:20:42 -04006907 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006908 if (!path)
6909 return -ENOMEM;
6910
David Sterbae4058b52015-11-27 16:31:35 +01006911 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04006912 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006913
6914 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6915 BUG_ON(!is_data && refs_to_drop != 1);
6916
Josef Bacik3173a182013-03-07 14:22:04 -05006917 if (is_data)
Thomas Meyer897ca812017-10-07 16:02:21 +02006918 skinny_metadata = false;
Josef Bacik3173a182013-03-07 14:22:04 -05006919
Nikolay Borisovfbe48012018-06-20 15:48:52 +03006920 ret = lookup_extent_backref(trans, path, &iref, bytenr, num_bytes,
6921 parent, root_objectid, owner_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006922 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006923 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006924 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006925 while (extent_slot >= 0) {
6926 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006927 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006928 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006929 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006930 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6931 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006932 found_extent = 1;
6933 break;
6934 }
Josef Bacik3173a182013-03-07 14:22:04 -05006935 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6936 key.offset == owner_objectid) {
6937 found_extent = 1;
6938 break;
6939 }
Chris Mason952fcca2008-02-18 16:33:44 -05006940 if (path->slots[0] - extent_slot > 5)
6941 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006942 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006943 }
Nikolay Borisova79865c2018-06-21 09:45:00 +03006944
Zheng Yan31840ae2008-09-23 13:14:14 -04006945 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006946 BUG_ON(iref);
Nikolay Borisov87cc7a82018-06-20 15:49:12 +03006947 ret = remove_extent_backref(trans, path, NULL,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05006948 refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006949 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006950 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006951 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006952 goto out;
6953 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006954 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04006955 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006956
6957 key.objectid = bytenr;
6958 key.type = BTRFS_EXTENT_ITEM_KEY;
6959 key.offset = num_bytes;
6960
Josef Bacik3173a182013-03-07 14:22:04 -05006961 if (!is_data && skinny_metadata) {
6962 key.type = BTRFS_METADATA_ITEM_KEY;
6963 key.offset = owner_objectid;
6964 }
6965
Zheng Yan31840ae2008-09-23 13:14:14 -04006966 ret = btrfs_search_slot(trans, extent_root,
6967 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05006968 if (ret > 0 && skinny_metadata && path->slots[0]) {
6969 /*
6970 * Couldn't find our skinny metadata item,
6971 * see if we have ye olde extent item.
6972 */
6973 path->slots[0]--;
6974 btrfs_item_key_to_cpu(path->nodes[0], &key,
6975 path->slots[0]);
6976 if (key.objectid == bytenr &&
6977 key.type == BTRFS_EXTENT_ITEM_KEY &&
6978 key.offset == num_bytes)
6979 ret = 0;
6980 }
6981
6982 if (ret > 0 && skinny_metadata) {
6983 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01006984 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05006985 key.type = BTRFS_EXTENT_ITEM_KEY;
6986 key.offset = num_bytes;
6987 btrfs_release_path(path);
6988 ret = btrfs_search_slot(trans, extent_root,
6989 &key, path, -1, 1);
6990 }
6991
Josef Bacikf3465ca2008-11-12 14:19:50 -05006992 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006993 btrfs_err(info,
6994 "umm, got %d back from search, was looking for %llu",
6995 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00006996 if (ret > 0)
David Sterbaa4f78752017-06-29 18:37:49 +02006997 btrfs_print_leaf(path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006998 }
David Sterba005d6422012-09-18 07:52:32 -06006999 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007000 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007001 goto out;
7002 }
Zheng Yan31840ae2008-09-23 13:14:14 -04007003 extent_slot = path->slots[0];
7004 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05307005 } else if (WARN_ON(ret == -ENOENT)) {
David Sterbaa4f78752017-06-29 18:37:49 +02007006 btrfs_print_leaf(path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007007 btrfs_err(info,
7008 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007009 bytenr, parent, root_objectid, owner_objectid,
7010 owner_offset);
Jeff Mahoney66642832016-06-10 18:19:25 -04007011 btrfs_abort_transaction(trans, ret);
Josef Bacikc4a050b2014-03-14 16:36:53 -04007012 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007013 } else {
Jeff Mahoney66642832016-06-10 18:19:25 -04007014 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007015 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05007016 }
Chris Mason5f39d392007-10-15 16:14:19 -04007017
7018 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007019 item_size = btrfs_item_size_nr(leaf, extent_slot);
David Sterba6d8ff4e2018-06-26 16:20:59 +02007020 if (unlikely(item_size < sizeof(*ei))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03007021 ret = -EINVAL;
7022 btrfs_print_v0_err(info);
7023 btrfs_abort_transaction(trans, ret);
7024 goto out;
7025 }
Chris Mason952fcca2008-02-18 16:33:44 -05007026 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04007027 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05007028 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
7029 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007030 struct btrfs_tree_block_info *bi;
7031 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
7032 bi = (struct btrfs_tree_block_info *)(ei + 1);
7033 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05007034 }
7035
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007036 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04007037 if (refs < refs_to_drop) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007038 btrfs_err(info,
7039 "trying to drop %d refs but we only have %Lu for bytenr %Lu",
7040 refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04007041 ret = -EINVAL;
Jeff Mahoney66642832016-06-10 18:19:25 -04007042 btrfs_abort_transaction(trans, ret);
Josef Bacik32b02532013-04-24 16:38:50 -04007043 goto out;
7044 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007045 refs -= refs_to_drop;
7046
7047 if (refs > 0) {
7048 if (extent_op)
7049 __run_delayed_extent_op(extent_op, leaf, ei);
7050 /*
7051 * In the case of inline back ref, reference count will
7052 * be updated by remove_extent_backref
7053 */
7054 if (iref) {
7055 BUG_ON(!found_extent);
7056 } else {
7057 btrfs_set_extent_refs(leaf, ei, refs);
7058 btrfs_mark_buffer_dirty(leaf);
7059 }
7060 if (found_extent) {
Nikolay Borisov87cc7a82018-06-20 15:49:12 +03007061 ret = remove_extent_backref(trans, path, iref,
7062 refs_to_drop, is_data,
7063 &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06007064 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007065 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007066 goto out;
7067 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007068 }
7069 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007070 if (found_extent) {
7071 BUG_ON(is_data && refs_to_drop !=
Zhaolei9ed0dea2015-08-06 22:16:24 +08007072 extent_data_ref_count(path, iref));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007073 if (iref) {
7074 BUG_ON(path->slots[0] != extent_slot);
7075 } else {
7076 BUG_ON(path->slots[0] != extent_slot + 1);
7077 path->slots[0] = extent_slot;
7078 num_to_del = 2;
7079 }
Chris Mason78fae272007-03-25 11:35:08 -04007080 }
Chris Masonb9473432009-03-13 11:00:37 -04007081
Josef Bacikfcebe452014-05-13 17:30:47 -07007082 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05007083 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
7084 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06007085 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007086 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007087 goto out;
7088 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007089 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01007090
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007091 if (is_data) {
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04007092 ret = btrfs_del_csums(trans, info, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06007093 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007094 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007095 goto out;
7096 }
Chris Mason459931e2008-12-10 09:10:46 -05007097 }
7098
Nikolay Borisove7355e52018-05-10 15:44:55 +03007099 ret = add_to_free_space_tree(trans, bytenr, num_bytes);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007100 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007101 btrfs_abort_transaction(trans, ret);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007102 goto out;
7103 }
7104
David Sterba6b279402019-03-20 12:10:15 +01007105 ret = update_block_group(trans, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06007106 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007107 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007108 goto out;
7109 }
Chris Masona28ec192007-03-06 20:08:01 -05007110 }
Josef Bacikfcebe452014-05-13 17:30:47 -07007111 btrfs_release_path(path);
7112
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007113out:
Chris Mason5caf2a02007-04-02 11:20:42 -04007114 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05007115 return ret;
7116}
7117
7118/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007119 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04007120 * delayed ref for that extent as well. This searches the delayed ref tree for
7121 * a given extent, and if there are no other delayed refs to be processed, it
7122 * removes it from the tree.
7123 */
7124static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007125 u64 bytenr)
Chris Mason1887be62009-03-13 10:11:24 -04007126{
7127 struct btrfs_delayed_ref_head *head;
7128 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007129 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04007130
7131 delayed_refs = &trans->transaction->delayed_refs;
7132 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08007133 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Chris Mason1887be62009-03-13 10:11:24 -04007134 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08007135 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04007136
Josef Bacikd7df2c72014-01-23 09:21:38 -05007137 spin_lock(&head->lock);
Liu Boe3d03962018-08-23 03:51:50 +08007138 if (!RB_EMPTY_ROOT(&head->ref_tree.rb_root))
Chris Mason1887be62009-03-13 10:11:24 -04007139 goto out;
7140
Josef Bacikbedc66172018-12-03 10:20:31 -05007141 if (cleanup_extent_op(head) != NULL)
7142 goto out;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007143
Chris Mason1887be62009-03-13 10:11:24 -04007144 /*
7145 * waiting for the lock here would deadlock. If someone else has it
7146 * locked they are already in the process of dropping it anyway
7147 */
7148 if (!mutex_trylock(&head->mutex))
7149 goto out;
7150
Josef Bacikd7baffd2018-12-03 10:20:29 -05007151 btrfs_delete_ref_head(delayed_refs, head);
Josef Bacikd7df2c72014-01-23 09:21:38 -05007152 head->processing = 0;
Josef Bacikd7baffd2018-12-03 10:20:29 -05007153
Josef Bacikd7df2c72014-01-23 09:21:38 -05007154 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04007155 spin_unlock(&delayed_refs->lock);
7156
Yan, Zhengf0486c62010-05-16 10:46:25 -04007157 BUG_ON(head->extent_op);
7158 if (head->must_insert_reserved)
7159 ret = 1;
7160
Josef Bacik31890da2018-11-21 14:05:41 -05007161 btrfs_cleanup_ref_head_accounting(trans->fs_info, delayed_refs, head);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007162 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -04007163 btrfs_put_delayed_ref_head(head);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007164 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04007165out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05007166 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08007167
7168out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04007169 spin_unlock(&delayed_refs->lock);
7170 return 0;
7171}
7172
Yan, Zhengf0486c62010-05-16 10:46:25 -04007173void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
7174 struct btrfs_root *root,
7175 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02007176 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007177{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007178 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikb150a4f2013-06-19 15:00:04 -04007179 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007180 int ret;
7181
7182 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Omar Sandovald7eae342017-06-06 16:45:31 -07007183 int old_ref_mod, new_ref_mod;
7184
Josef Bacikfd708b82017-09-29 15:43:50 -04007185 btrfs_ref_tree_mod(root, buf->start, buf->len, parent,
7186 root->root_key.objectid,
7187 btrfs_header_level(buf), 0,
7188 BTRFS_DROP_DELAYED_REF);
Nikolay Borisov44e1c472018-06-20 15:48:53 +03007189 ret = btrfs_add_delayed_tree_ref(trans, buf->start,
Omar Sandoval7be07912017-06-06 16:45:30 -07007190 buf->len, parent,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007191 root->root_key.objectid,
7192 btrfs_header_level(buf),
Omar Sandoval7be07912017-06-06 16:45:30 -07007193 BTRFS_DROP_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007194 &old_ref_mod, &new_ref_mod);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007195 BUG_ON(ret); /* -ENOMEM */
Omar Sandovald7eae342017-06-06 16:45:31 -07007196 pin = old_ref_mod >= 0 && new_ref_mod < 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007197 }
7198
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007199 if (last_ref && btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00007200 struct btrfs_block_group_cache *cache;
7201
Yan, Zhengf0486c62010-05-16 10:46:25 -04007202 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007203 ret = check_ref_cleanup(trans, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007204 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04007205 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007206 }
7207
Omar Sandoval4da8b762017-06-06 16:45:28 -07007208 pin = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007209 cache = btrfs_lookup_block_group(fs_info, buf->start);
Filipe Manana62198722015-01-06 20:18:45 +00007210
Yan, Zhengf0486c62010-05-16 10:46:25 -04007211 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
David Sterbafdf08602019-03-20 12:12:32 +01007212 pin_down_extent(cache, buf->start, buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00007213 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04007214 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007215 }
7216
7217 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
7218
7219 btrfs_add_free_space(cache, buf->start, buf->len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08007220 btrfs_free_reserved_bytes(cache, buf->len, 0);
Filipe Manana62198722015-01-06 20:18:45 +00007221 btrfs_put_block_group(cache);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007222 trace_btrfs_reserved_extent_free(fs_info, buf->start, buf->len);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007223 }
7224out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04007225 if (pin)
Nikolay Borisov29d2b842018-03-30 12:58:47 +03007226 add_pinned_bytes(fs_info, buf->len, true,
Josef Bacikb150a4f2013-06-19 15:00:04 -04007227 root->root_key.objectid);
7228
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007229 if (last_ref) {
7230 /*
7231 * Deleting the buffer, clear the corrupt flag since it doesn't
7232 * matter anymore.
7233 */
7234 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
7235 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007236}
7237
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007238/* Can return -ENOMEM */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007239int btrfs_free_extent(struct btrfs_trans_handle *trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04007240 struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007241 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007242 u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04007243{
Josef Bacik84f7d8e2017-09-29 15:43:49 -04007244 struct btrfs_fs_info *fs_info = root->fs_info;
Omar Sandovald7eae342017-06-06 16:45:31 -07007245 int old_ref_mod, new_ref_mod;
Chris Mason925baed2008-06-25 16:01:30 -04007246 int ret;
7247
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04007248 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007249 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02007250
Josef Bacikfd708b82017-09-29 15:43:50 -04007251 if (root_objectid != BTRFS_TREE_LOG_OBJECTID)
7252 btrfs_ref_tree_mod(root, bytenr, num_bytes, parent,
7253 root_objectid, owner, offset,
7254 BTRFS_DROP_DELAYED_REF);
7255
Chris Mason56bec292009-03-13 10:10:06 -04007256 /*
7257 * tree log blocks never actually go into the extent allocation
7258 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04007259 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007260 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
7261 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04007262 /* unlocks the pinned mutex */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007263 btrfs_pin_extent(fs_info, bytenr, num_bytes, 1);
Omar Sandovald7eae342017-06-06 16:45:31 -07007264 old_ref_mod = new_ref_mod = 0;
Chris Mason56bec292009-03-13 10:10:06 -04007265 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007266 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Nikolay Borisov44e1c472018-06-20 15:48:53 +03007267 ret = btrfs_add_delayed_tree_ref(trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07007268 num_bytes, parent,
7269 root_objectid, (int)owner,
7270 BTRFS_DROP_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007271 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007272 } else {
Nikolay Borisov88a979c2018-06-20 15:48:54 +03007273 ret = btrfs_add_delayed_data_ref(trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07007274 num_bytes, parent,
7275 root_objectid, owner, offset,
7276 0, BTRFS_DROP_DELAYED_REF,
Omar Sandovald7eae342017-06-06 16:45:31 -07007277 &old_ref_mod, &new_ref_mod);
Chris Mason56bec292009-03-13 10:10:06 -04007278 }
Omar Sandovald7eae342017-06-06 16:45:31 -07007279
Nikolay Borisov29d2b842018-03-30 12:58:47 +03007280 if (ret == 0 && old_ref_mod >= 0 && new_ref_mod < 0) {
7281 bool metadata = owner < BTRFS_FIRST_FREE_OBJECTID;
7282
7283 add_pinned_bytes(fs_info, num_bytes, metadata, root_objectid);
7284 }
Omar Sandovald7eae342017-06-06 16:45:31 -07007285
Chris Mason925baed2008-06-25 16:01:30 -04007286 return ret;
7287}
7288
Chris Masonfec577f2007-02-26 10:40:21 -05007289/*
Josef Bacik817d52f2009-07-13 21:29:25 -04007290 * when we wait for progress in the block group caching, its because
7291 * our allocation attempt failed at least once. So, we must sleep
7292 * and let some progress happen before we try again.
7293 *
7294 * This function will sleep at least once waiting for new free space to
7295 * show up, and then it will check the block group free space numbers
7296 * for our min num_bytes. Another option is to have it go ahead
7297 * and look in the rbtree for a free extent of a given size, but this
7298 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04007299 *
7300 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
7301 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04007302 */
Josef Bacik36cce922013-08-05 11:15:21 -04007303static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04007304wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
7305 u64 num_bytes)
7306{
Yan Zheng11833d62009-09-11 16:11:19 -04007307 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04007308
Yan Zheng11833d62009-09-11 16:11:19 -04007309 caching_ctl = get_caching_control(cache);
7310 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007311 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04007312
Yan Zheng11833d62009-09-11 16:11:19 -04007313 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08007314 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04007315
7316 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04007317}
7318
7319static noinline int
7320wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
7321{
7322 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04007323 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007324
7325 caching_ctl = get_caching_control(cache);
7326 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007327 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007328
7329 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04007330 if (cache->cached == BTRFS_CACHE_ERROR)
7331 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04007332 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04007333 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04007334}
7335
7336enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05007337 LOOP_CACHING_NOWAIT = 0,
7338 LOOP_CACHING_WAIT = 1,
7339 LOOP_ALLOC_CHUNK = 2,
7340 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04007341};
7342
Miao Xiee570fd22014-06-19 10:42:50 +08007343static inline void
7344btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
7345 int delalloc)
7346{
7347 if (delalloc)
7348 down_read(&cache->data_rwsem);
7349}
7350
7351static inline void
7352btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
7353 int delalloc)
7354{
7355 btrfs_get_block_group(cache);
7356 if (delalloc)
7357 down_read(&cache->data_rwsem);
7358}
7359
7360static struct btrfs_block_group_cache *
7361btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
7362 struct btrfs_free_cluster *cluster,
7363 int delalloc)
7364{
Sudip Mukherjee89771cc2016-02-16 13:32:47 +05307365 struct btrfs_block_group_cache *used_bg = NULL;
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007366
Miao Xiee570fd22014-06-19 10:42:50 +08007367 spin_lock(&cluster->refill_lock);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007368 while (1) {
7369 used_bg = cluster->block_group;
7370 if (!used_bg)
7371 return NULL;
7372
7373 if (used_bg == block_group)
7374 return used_bg;
7375
7376 btrfs_get_block_group(used_bg);
7377
7378 if (!delalloc)
7379 return used_bg;
7380
7381 if (down_read_trylock(&used_bg->data_rwsem))
7382 return used_bg;
7383
7384 spin_unlock(&cluster->refill_lock);
7385
Liu Boe321f8a2016-11-30 16:11:04 -08007386 /* We should only have one-level nested. */
7387 down_read_nested(&used_bg->data_rwsem, SINGLE_DEPTH_NESTING);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007388
7389 spin_lock(&cluster->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007390 if (used_bg == cluster->block_group)
7391 return used_bg;
7392
7393 up_read(&used_bg->data_rwsem);
7394 btrfs_put_block_group(used_bg);
7395 }
Miao Xiee570fd22014-06-19 10:42:50 +08007396}
7397
7398static inline void
7399btrfs_release_block_group(struct btrfs_block_group_cache *cache,
7400 int delalloc)
7401{
7402 if (delalloc)
7403 up_read(&cache->data_rwsem);
7404 btrfs_put_block_group(cache);
7405}
7406
Josef Bacik817d52f2009-07-13 21:29:25 -04007407/*
Qu Wenruob4bd7452018-11-02 09:39:47 +08007408 * Structure used internally for find_free_extent() function. Wraps needed
7409 * parameters.
7410 */
7411struct find_free_extent_ctl {
7412 /* Basic allocation info */
7413 u64 ram_bytes;
7414 u64 num_bytes;
7415 u64 empty_size;
7416 u64 flags;
7417 int delalloc;
7418
7419 /* Where to start the search inside the bg */
7420 u64 search_start;
7421
7422 /* For clustered allocation */
7423 u64 empty_cluster;
7424
7425 bool have_caching_bg;
7426 bool orig_have_caching_bg;
7427
7428 /* RAID index, converted from flags */
7429 int index;
7430
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007431 /*
7432 * Current loop number, check find_free_extent_update_loop() for details
7433 */
Qu Wenruob4bd7452018-11-02 09:39:47 +08007434 int loop;
7435
7436 /*
7437 * Whether we're refilling a cluster, if true we need to re-search
7438 * current block group but don't try to refill the cluster again.
7439 */
7440 bool retry_clustered;
7441
7442 /*
7443 * Whether we're updating free space cache, if true we need to re-search
7444 * current block group but don't try updating free space cache again.
7445 */
7446 bool retry_unclustered;
7447
7448 /* If current block group is cached */
7449 int cached;
7450
7451 /* Max contiguous hole found */
7452 u64 max_extent_size;
7453
7454 /* Total free space from free space cache, not always contiguous */
7455 u64 total_free_space;
7456
7457 /* Found result */
7458 u64 found_offset;
7459};
7460
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007461
7462/*
7463 * Helper function for find_free_extent().
7464 *
7465 * Return -ENOENT to inform caller that we need fallback to unclustered mode.
7466 * Return -EAGAIN to inform caller that we need to re-search this block group
7467 * Return >0 to inform caller that we find nothing
7468 * Return 0 means we have found a location and set ffe_ctl->found_offset.
7469 */
7470static int find_free_extent_clustered(struct btrfs_block_group_cache *bg,
7471 struct btrfs_free_cluster *last_ptr,
7472 struct find_free_extent_ctl *ffe_ctl,
7473 struct btrfs_block_group_cache **cluster_bg_ret)
7474{
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007475 struct btrfs_block_group_cache *cluster_bg;
7476 u64 aligned_cluster;
7477 u64 offset;
7478 int ret;
7479
7480 cluster_bg = btrfs_lock_cluster(bg, last_ptr, ffe_ctl->delalloc);
7481 if (!cluster_bg)
7482 goto refill_cluster;
7483 if (cluster_bg != bg && (cluster_bg->ro ||
7484 !block_group_bits(cluster_bg, ffe_ctl->flags)))
7485 goto release_cluster;
7486
7487 offset = btrfs_alloc_from_cluster(cluster_bg, last_ptr,
7488 ffe_ctl->num_bytes, cluster_bg->key.objectid,
7489 &ffe_ctl->max_extent_size);
7490 if (offset) {
7491 /* We have a block, we're done */
7492 spin_unlock(&last_ptr->refill_lock);
7493 trace_btrfs_reserve_extent_cluster(cluster_bg,
7494 ffe_ctl->search_start, ffe_ctl->num_bytes);
7495 *cluster_bg_ret = cluster_bg;
7496 ffe_ctl->found_offset = offset;
7497 return 0;
7498 }
7499 WARN_ON(last_ptr->block_group != cluster_bg);
7500
7501release_cluster:
7502 /*
7503 * If we are on LOOP_NO_EMPTY_SIZE, we can't set up a new clusters, so
7504 * lets just skip it and let the allocator find whatever block it can
7505 * find. If we reach this point, we will have tried the cluster
7506 * allocator plenty of times and not have found anything, so we are
7507 * likely way too fragmented for the clustering stuff to find anything.
7508 *
7509 * However, if the cluster is taken from the current block group,
7510 * release the cluster first, so that we stand a better chance of
7511 * succeeding in the unclustered allocation.
7512 */
7513 if (ffe_ctl->loop >= LOOP_NO_EMPTY_SIZE && cluster_bg != bg) {
7514 spin_unlock(&last_ptr->refill_lock);
7515 btrfs_release_block_group(cluster_bg, ffe_ctl->delalloc);
7516 return -ENOENT;
7517 }
7518
7519 /* This cluster didn't work out, free it and start over */
7520 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7521
7522 if (cluster_bg != bg)
7523 btrfs_release_block_group(cluster_bg, ffe_ctl->delalloc);
7524
7525refill_cluster:
7526 if (ffe_ctl->loop >= LOOP_NO_EMPTY_SIZE) {
7527 spin_unlock(&last_ptr->refill_lock);
7528 return -ENOENT;
7529 }
7530
7531 aligned_cluster = max_t(u64,
7532 ffe_ctl->empty_cluster + ffe_ctl->empty_size,
7533 bg->full_stripe_len);
David Sterba2ceeae22019-03-20 13:53:49 +01007534 ret = btrfs_find_space_cluster(bg, last_ptr, ffe_ctl->search_start,
7535 ffe_ctl->num_bytes, aligned_cluster);
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007536 if (ret == 0) {
7537 /* Now pull our allocation out of this cluster */
7538 offset = btrfs_alloc_from_cluster(bg, last_ptr,
7539 ffe_ctl->num_bytes, ffe_ctl->search_start,
7540 &ffe_ctl->max_extent_size);
7541 if (offset) {
7542 /* We found one, proceed */
7543 spin_unlock(&last_ptr->refill_lock);
7544 trace_btrfs_reserve_extent_cluster(bg,
7545 ffe_ctl->search_start,
7546 ffe_ctl->num_bytes);
7547 ffe_ctl->found_offset = offset;
7548 return 0;
7549 }
7550 } else if (!ffe_ctl->cached && ffe_ctl->loop > LOOP_CACHING_NOWAIT &&
7551 !ffe_ctl->retry_clustered) {
7552 spin_unlock(&last_ptr->refill_lock);
7553
7554 ffe_ctl->retry_clustered = true;
7555 wait_block_group_cache_progress(bg, ffe_ctl->num_bytes +
7556 ffe_ctl->empty_cluster + ffe_ctl->empty_size);
7557 return -EAGAIN;
7558 }
7559 /*
7560 * At this point we either didn't find a cluster or we weren't able to
7561 * allocate a block from our cluster. Free the cluster we've been
7562 * trying to use, and go to the next block group.
7563 */
7564 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7565 spin_unlock(&last_ptr->refill_lock);
7566 return 1;
7567}
7568
Qu Wenruob4bd7452018-11-02 09:39:47 +08007569/*
Qu Wenruoe1a41842018-11-02 09:39:49 +08007570 * Return >0 to inform caller that we find nothing
7571 * Return 0 when we found an free extent and set ffe_ctrl->found_offset
7572 * Return -EAGAIN to inform caller that we need to re-search this block group
7573 */
7574static int find_free_extent_unclustered(struct btrfs_block_group_cache *bg,
7575 struct btrfs_free_cluster *last_ptr,
7576 struct find_free_extent_ctl *ffe_ctl)
7577{
7578 u64 offset;
7579
7580 /*
7581 * We are doing an unclustered allocation, set the fragmented flag so
7582 * we don't bother trying to setup a cluster again until we get more
7583 * space.
7584 */
7585 if (unlikely(last_ptr)) {
7586 spin_lock(&last_ptr->lock);
7587 last_ptr->fragmented = 1;
7588 spin_unlock(&last_ptr->lock);
7589 }
7590 if (ffe_ctl->cached) {
7591 struct btrfs_free_space_ctl *free_space_ctl;
7592
7593 free_space_ctl = bg->free_space_ctl;
7594 spin_lock(&free_space_ctl->tree_lock);
7595 if (free_space_ctl->free_space <
7596 ffe_ctl->num_bytes + ffe_ctl->empty_cluster +
7597 ffe_ctl->empty_size) {
7598 ffe_ctl->total_free_space = max_t(u64,
7599 ffe_ctl->total_free_space,
7600 free_space_ctl->free_space);
7601 spin_unlock(&free_space_ctl->tree_lock);
7602 return 1;
7603 }
7604 spin_unlock(&free_space_ctl->tree_lock);
7605 }
7606
7607 offset = btrfs_find_space_for_alloc(bg, ffe_ctl->search_start,
7608 ffe_ctl->num_bytes, ffe_ctl->empty_size,
7609 &ffe_ctl->max_extent_size);
7610
7611 /*
7612 * If we didn't find a chunk, and we haven't failed on this block group
7613 * before, and this block group is in the middle of caching and we are
7614 * ok with waiting, then go ahead and wait for progress to be made, and
7615 * set @retry_unclustered to true.
7616 *
7617 * If @retry_unclustered is true then we've already waited on this
7618 * block group once and should move on to the next block group.
7619 */
7620 if (!offset && !ffe_ctl->retry_unclustered && !ffe_ctl->cached &&
7621 ffe_ctl->loop > LOOP_CACHING_NOWAIT) {
7622 wait_block_group_cache_progress(bg, ffe_ctl->num_bytes +
7623 ffe_ctl->empty_size);
7624 ffe_ctl->retry_unclustered = true;
7625 return -EAGAIN;
7626 } else if (!offset) {
7627 return 1;
7628 }
7629 ffe_ctl->found_offset = offset;
7630 return 0;
7631}
7632
7633/*
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007634 * Return >0 means caller needs to re-search for free extent
7635 * Return 0 means we have the needed free extent.
7636 * Return <0 means we failed to locate any free extent.
7637 */
7638static int find_free_extent_update_loop(struct btrfs_fs_info *fs_info,
7639 struct btrfs_free_cluster *last_ptr,
7640 struct btrfs_key *ins,
7641 struct find_free_extent_ctl *ffe_ctl,
7642 int full_search, bool use_cluster)
7643{
7644 struct btrfs_root *root = fs_info->extent_root;
7645 int ret;
7646
7647 if ((ffe_ctl->loop == LOOP_CACHING_NOWAIT) &&
7648 ffe_ctl->have_caching_bg && !ffe_ctl->orig_have_caching_bg)
7649 ffe_ctl->orig_have_caching_bg = true;
7650
7651 if (!ins->objectid && ffe_ctl->loop >= LOOP_CACHING_WAIT &&
7652 ffe_ctl->have_caching_bg)
7653 return 1;
7654
7655 if (!ins->objectid && ++(ffe_ctl->index) < BTRFS_NR_RAID_TYPES)
7656 return 1;
7657
7658 if (ins->objectid) {
7659 if (!use_cluster && last_ptr) {
7660 spin_lock(&last_ptr->lock);
7661 last_ptr->window_start = ins->objectid;
7662 spin_unlock(&last_ptr->lock);
7663 }
7664 return 0;
7665 }
7666
7667 /*
7668 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7669 * caching kthreads as we move along
7670 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7671 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7672 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7673 * again
7674 */
7675 if (ffe_ctl->loop < LOOP_NO_EMPTY_SIZE) {
7676 ffe_ctl->index = 0;
7677 if (ffe_ctl->loop == LOOP_CACHING_NOWAIT) {
7678 /*
7679 * We want to skip the LOOP_CACHING_WAIT step if we
7680 * don't have any uncached bgs and we've already done a
7681 * full search through.
7682 */
7683 if (ffe_ctl->orig_have_caching_bg || !full_search)
7684 ffe_ctl->loop = LOOP_CACHING_WAIT;
7685 else
7686 ffe_ctl->loop = LOOP_ALLOC_CHUNK;
7687 } else {
7688 ffe_ctl->loop++;
7689 }
7690
7691 if (ffe_ctl->loop == LOOP_ALLOC_CHUNK) {
7692 struct btrfs_trans_handle *trans;
7693 int exist = 0;
7694
7695 trans = current->journal_info;
7696 if (trans)
7697 exist = 1;
7698 else
7699 trans = btrfs_join_transaction(root);
7700
7701 if (IS_ERR(trans)) {
7702 ret = PTR_ERR(trans);
7703 return ret;
7704 }
7705
7706 ret = do_chunk_alloc(trans, ffe_ctl->flags,
7707 CHUNK_ALLOC_FORCE);
7708
7709 /*
7710 * If we can't allocate a new chunk we've already looped
7711 * through at least once, move on to the NO_EMPTY_SIZE
7712 * case.
7713 */
7714 if (ret == -ENOSPC)
7715 ffe_ctl->loop = LOOP_NO_EMPTY_SIZE;
7716
7717 /* Do not bail out on ENOSPC since we can do more. */
7718 if (ret < 0 && ret != -ENOSPC)
7719 btrfs_abort_transaction(trans, ret);
7720 else
7721 ret = 0;
7722 if (!exist)
7723 btrfs_end_transaction(trans);
7724 if (ret)
7725 return ret;
7726 }
7727
7728 if (ffe_ctl->loop == LOOP_NO_EMPTY_SIZE) {
7729 /*
7730 * Don't loop again if we already have no empty_size and
7731 * no empty_cluster.
7732 */
7733 if (ffe_ctl->empty_size == 0 &&
7734 ffe_ctl->empty_cluster == 0)
7735 return -ENOSPC;
7736 ffe_ctl->empty_size = 0;
7737 ffe_ctl->empty_cluster = 0;
7738 }
7739 return 1;
7740 }
7741 return -ENOSPC;
7742}
7743
7744/*
Chris Masonfec577f2007-02-26 10:40:21 -05007745 * walks the btree of allocated extents and find a hole of a given size.
7746 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08007747 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04007748 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08007749 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05007750 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08007751 *
7752 * If there is no suitable free space, we will record the max size of
7753 * the free space extent currently.
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007754 *
7755 * The overall logic and call chain:
7756 *
7757 * find_free_extent()
7758 * |- Iterate through all block groups
7759 * | |- Get a valid block group
7760 * | |- Try to do clustered allocation in that block group
7761 * | |- Try to do unclustered allocation in that block group
7762 * | |- Check if the result is valid
7763 * | | |- If valid, then exit
7764 * | |- Jump to next block group
7765 * |
7766 * |- Push harder to find free extents
7767 * |- If not found, re-iterate all block groups
Chris Masonfec577f2007-02-26 10:40:21 -05007768 */
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05007769static noinline int find_free_extent(struct btrfs_fs_info *fs_info,
Wang Xiaoguang18513092016-07-25 15:51:40 +08007770 u64 ram_bytes, u64 num_bytes, u64 empty_size,
7771 u64 hint_byte, struct btrfs_key *ins,
7772 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007773{
Josef Bacik80eb2342008-10-29 14:49:05 -04007774 int ret = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007775 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04007776 struct btrfs_block_group_cache *block_group = NULL;
Qu Wenruob4bd7452018-11-02 09:39:47 +08007777 struct find_free_extent_ctl ffe_ctl = {0};
Josef Bacik80eb2342008-10-29 14:49:05 -04007778 struct btrfs_space_info *space_info;
Josef Bacik67377732010-09-16 16:19:09 -04007779 bool use_cluster = true;
Josef Bacika5e681d2015-10-01 14:54:10 -04007780 bool full_search = false;
Chris Masonfec577f2007-02-26 10:40:21 -05007781
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007782 WARN_ON(num_bytes < fs_info->sectorsize);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007783
7784 ffe_ctl.ram_bytes = ram_bytes;
7785 ffe_ctl.num_bytes = num_bytes;
7786 ffe_ctl.empty_size = empty_size;
7787 ffe_ctl.flags = flags;
7788 ffe_ctl.search_start = 0;
7789 ffe_ctl.retry_clustered = false;
7790 ffe_ctl.retry_unclustered = false;
7791 ffe_ctl.delalloc = delalloc;
7792 ffe_ctl.index = btrfs_bg_flags_to_raid_index(flags);
7793 ffe_ctl.have_caching_bg = false;
7794 ffe_ctl.orig_have_caching_bg = false;
7795 ffe_ctl.found_offset = 0;
7796
David Sterba962a2982014-06-04 18:41:45 +02007797 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04007798 ins->objectid = 0;
7799 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04007800
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007801 trace_find_free_extent(fs_info, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05007802
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007803 space_info = __find_space_info(fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007804 if (!space_info) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007805 btrfs_err(fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007806 return -ENOSPC;
7807 }
Josef Bacik2552d172009-04-03 10:14:19 -04007808
Josef Bacik67377732010-09-16 16:19:09 -04007809 /*
Josef Bacik4f4db212015-09-29 11:40:47 -04007810 * If our free space is heavily fragmented we may not be able to make
7811 * big contiguous allocations, so instead of doing the expensive search
7812 * for free space, simply return ENOSPC with our max_extent_size so we
7813 * can go ahead and search for a more manageable chunk.
7814 *
7815 * If our max_extent_size is large enough for our allocation simply
7816 * disable clustering since we will likely not be able to find enough
7817 * space to create a cluster and induce latency trying.
Josef Bacik67377732010-09-16 16:19:09 -04007818 */
Josef Bacik4f4db212015-09-29 11:40:47 -04007819 if (unlikely(space_info->max_extent_size)) {
7820 spin_lock(&space_info->lock);
7821 if (space_info->max_extent_size &&
7822 num_bytes > space_info->max_extent_size) {
7823 ins->offset = space_info->max_extent_size;
7824 spin_unlock(&space_info->lock);
7825 return -ENOSPC;
7826 } else if (space_info->max_extent_size) {
7827 use_cluster = false;
7828 }
7829 spin_unlock(&space_info->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007830 }
7831
Qu Wenruob4bd7452018-11-02 09:39:47 +08007832 last_ptr = fetch_cluster_info(fs_info, space_info,
7833 &ffe_ctl.empty_cluster);
Chris Mason239b14b2008-03-24 15:02:07 -04007834 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007835 spin_lock(&last_ptr->lock);
7836 if (last_ptr->block_group)
7837 hint_byte = last_ptr->window_start;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007838 if (last_ptr->fragmented) {
7839 /*
7840 * We still set window_start so we can keep track of the
7841 * last place we found an allocation to try and save
7842 * some time.
7843 */
7844 hint_byte = last_ptr->window_start;
7845 use_cluster = false;
7846 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007847 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007848 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007849
Qu Wenruob4bd7452018-11-02 09:39:47 +08007850 ffe_ctl.search_start = max(ffe_ctl.search_start,
7851 first_logical_byte(fs_info, 0));
7852 ffe_ctl.search_start = max(ffe_ctl.search_start, hint_byte);
7853 if (ffe_ctl.search_start == hint_byte) {
7854 block_group = btrfs_lookup_block_group(fs_info,
7855 ffe_ctl.search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04007856 /*
7857 * we don't want to use the block group if it doesn't match our
7858 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05007859 *
7860 * However if we are re-searching with an ideal block group
7861 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04007862 */
David Sterbab6919a52013-04-29 13:39:40 +00007863 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05007864 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04007865 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007866 if (list_empty(&block_group->list) ||
7867 block_group->ro) {
7868 /*
7869 * someone is removing this block group,
7870 * we can't jump into the have_block_group
7871 * target because our list pointers are not
7872 * valid
7873 */
7874 btrfs_put_block_group(block_group);
7875 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05007876 } else {
Qu Wenruob4bd7452018-11-02 09:39:47 +08007877 ffe_ctl.index = btrfs_bg_flags_to_raid_index(
Qu Wenruo3e72ee82018-01-30 18:20:45 +08007878 block_group->flags);
Miao Xiee570fd22014-06-19 10:42:50 +08007879 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04007880 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05007881 }
Josef Bacik2552d172009-04-03 10:14:19 -04007882 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007883 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04007884 }
Chris Mason42e70e72008-11-07 18:17:11 -05007885 }
Josef Bacik2552d172009-04-03 10:14:19 -04007886search:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007887 ffe_ctl.have_caching_bg = false;
7888 if (ffe_ctl.index == btrfs_bg_flags_to_raid_index(flags) ||
7889 ffe_ctl.index == 0)
Josef Bacika5e681d2015-10-01 14:54:10 -04007890 full_search = true;
Josef Bacik80eb2342008-10-29 14:49:05 -04007891 down_read(&space_info->groups_sem);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007892 list_for_each_entry(block_group,
7893 &space_info->block_groups[ffe_ctl.index], list) {
Jeff Mahoney14443932017-07-19 23:25:51 -04007894 /* If the block group is read-only, we can skip it entirely. */
7895 if (unlikely(block_group->ro))
7896 continue;
7897
Miao Xiee570fd22014-06-19 10:42:50 +08007898 btrfs_grab_block_group(block_group, delalloc);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007899 ffe_ctl.search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05007900
Chris Mason83a50de2010-12-13 15:06:46 -05007901 /*
7902 * this can happen if we end up cycling through all the
7903 * raid types, but we want to make sure we only allocate
7904 * for the proper type.
7905 */
David Sterbab6919a52013-04-29 13:39:40 +00007906 if (!block_group_bits(block_group, flags)) {
Bart Van Asschebece2e82018-06-20 10:03:31 -07007907 u64 extra = BTRFS_BLOCK_GROUP_DUP |
Chris Mason83a50de2010-12-13 15:06:46 -05007908 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007909 BTRFS_BLOCK_GROUP_RAID5 |
7910 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05007911 BTRFS_BLOCK_GROUP_RAID10;
7912
7913 /*
7914 * if they asked for extra copies and this block group
7915 * doesn't provide them, bail. This does allow us to
7916 * fill raid0 from raid1.
7917 */
David Sterbab6919a52013-04-29 13:39:40 +00007918 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05007919 goto loop;
7920 }
7921
Josef Bacik2552d172009-04-03 10:14:19 -04007922have_block_group:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007923 ffe_ctl.cached = block_group_cache_done(block_group);
7924 if (unlikely(!ffe_ctl.cached)) {
7925 ffe_ctl.have_caching_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00007926 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04007927 BUG_ON(ret < 0);
7928 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05007929 }
7930
Josef Bacik36cce922013-08-05 11:15:21 -04007931 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
7932 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007933
Josef Bacik0a243252009-09-11 16:11:20 -04007934 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007935 * Ok we want to try and use the cluster allocator, so
7936 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04007937 */
Josef Bacikc759c4e2015-10-02 15:25:10 -04007938 if (last_ptr && use_cluster) {
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007939 struct btrfs_block_group_cache *cluster_bg = NULL;
Chris Mason44fb5512009-06-04 15:34:51 -04007940
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007941 ret = find_free_extent_clustered(block_group, last_ptr,
7942 &ffe_ctl, &cluster_bg);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007943
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007944 if (ret == 0) {
7945 if (cluster_bg && cluster_bg != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08007946 btrfs_release_block_group(block_group,
7947 delalloc);
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007948 block_group = cluster_bg;
Miao Xie215a63d2014-01-15 20:00:56 +08007949 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007950 goto checks;
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007951 } else if (ret == -EAGAIN) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007952 goto have_block_group;
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007953 } else if (ret > 0) {
7954 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007955 }
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007956 /* ret == -ENOENT case falls through */
Chris Masonfa9c0d792009-04-03 09:47:43 -04007957 }
7958
Qu Wenruoe1a41842018-11-02 09:39:49 +08007959 ret = find_free_extent_unclustered(block_group, last_ptr,
7960 &ffe_ctl);
7961 if (ret == -EAGAIN)
Josef Bacik817d52f2009-07-13 21:29:25 -04007962 goto have_block_group;
Qu Wenruoe1a41842018-11-02 09:39:49 +08007963 else if (ret > 0)
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007964 goto loop;
Qu Wenruoe1a41842018-11-02 09:39:49 +08007965 /* ret == 0 case falls through */
Chris Masonfa9c0d792009-04-03 09:47:43 -04007966checks:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007967 ffe_ctl.search_start = round_up(ffe_ctl.found_offset,
7968 fs_info->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04007969
Josef Bacik2552d172009-04-03 10:14:19 -04007970 /* move on to the next group */
Qu Wenruob4bd7452018-11-02 09:39:47 +08007971 if (ffe_ctl.search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08007972 block_group->key.objectid + block_group->key.offset) {
Qu Wenruob4bd7452018-11-02 09:39:47 +08007973 btrfs_add_free_space(block_group, ffe_ctl.found_offset,
7974 num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04007975 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04007976 }
Josef Bacik80eb2342008-10-29 14:49:05 -04007977
Qu Wenruob4bd7452018-11-02 09:39:47 +08007978 if (ffe_ctl.found_offset < ffe_ctl.search_start)
7979 btrfs_add_free_space(block_group, ffe_ctl.found_offset,
7980 ffe_ctl.search_start - ffe_ctl.found_offset);
Josef Bacik6226cb02009-04-03 10:14:18 -04007981
Wang Xiaoguang18513092016-07-25 15:51:40 +08007982 ret = btrfs_add_reserved_bytes(block_group, ram_bytes,
7983 num_bytes, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007984 if (ret == -EAGAIN) {
Qu Wenruob4bd7452018-11-02 09:39:47 +08007985 btrfs_add_free_space(block_group, ffe_ctl.found_offset,
7986 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007987 goto loop;
7988 }
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007989 btrfs_inc_block_group_reservations(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -04007990
Josef Bacik2552d172009-04-03 10:14:19 -04007991 /* we are all good, lets return */
Qu Wenruob4bd7452018-11-02 09:39:47 +08007992 ins->objectid = ffe_ctl.search_start;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007993 ins->offset = num_bytes;
7994
Qu Wenruob4bd7452018-11-02 09:39:47 +08007995 trace_btrfs_reserve_extent(block_group, ffe_ctl.search_start,
7996 num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08007997 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007998 break;
7999loop:
Qu Wenruob4bd7452018-11-02 09:39:47 +08008000 ffe_ctl.retry_clustered = false;
8001 ffe_ctl.retry_unclustered = false;
Qu Wenruo3e72ee82018-01-30 18:20:45 +08008002 BUG_ON(btrfs_bg_flags_to_raid_index(block_group->flags) !=
Qu Wenruob4bd7452018-11-02 09:39:47 +08008003 ffe_ctl.index);
Miao Xiee570fd22014-06-19 10:42:50 +08008004 btrfs_release_block_group(block_group, delalloc);
Jeff Mahoney14443932017-07-19 23:25:51 -04008005 cond_resched();
Josef Bacik2552d172009-04-03 10:14:19 -04008006 }
8007 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05008008
Qu Wenruoe72d79d2018-11-02 09:39:50 +08008009 ret = find_free_extent_update_loop(fs_info, last_ptr, ins, &ffe_ctl,
8010 full_search, use_cluster);
8011 if (ret > 0)
Miao Xie60d2adb2011-09-09 17:34:35 +08008012 goto search;
8013
Josef Bacik4f4db212015-09-29 11:40:47 -04008014 if (ret == -ENOSPC) {
Qu Wenruob4bd7452018-11-02 09:39:47 +08008015 /*
8016 * Use ffe_ctl->total_free_space as fallback if we can't find
8017 * any contiguous hole.
8018 */
8019 if (!ffe_ctl.max_extent_size)
8020 ffe_ctl.max_extent_size = ffe_ctl.total_free_space;
Josef Bacik4f4db212015-09-29 11:40:47 -04008021 spin_lock(&space_info->lock);
Qu Wenruob4bd7452018-11-02 09:39:47 +08008022 space_info->max_extent_size = ffe_ctl.max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04008023 spin_unlock(&space_info->lock);
Qu Wenruob4bd7452018-11-02 09:39:47 +08008024 ins->offset = ffe_ctl.max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04008025 }
Chris Mason0f70abe2007-02-28 16:46:22 -05008026 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05008027}
Chris Masonec44a352008-04-28 15:29:52 -04008028
Josef Bacikb78e5612018-11-21 14:03:07 -05008029#define DUMP_BLOCK_RSV(fs_info, rsv_name) \
8030do { \
8031 struct btrfs_block_rsv *__rsv = &(fs_info)->rsv_name; \
8032 spin_lock(&__rsv->lock); \
8033 btrfs_info(fs_info, #rsv_name ": size %llu reserved %llu", \
8034 __rsv->size, __rsv->reserved); \
8035 spin_unlock(&__rsv->lock); \
8036} while (0)
8037
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008038static void dump_space_info(struct btrfs_fs_info *fs_info,
8039 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04008040 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04008041{
8042 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb822010-05-16 10:46:24 -04008043 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008044
Josef Bacik9ed74f22009-09-11 16:12:44 -04008045 spin_lock(&info->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008046 btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull",
8047 info->flags,
Liu Bo41361352017-02-13 15:42:21 -08008048 info->total_bytes - btrfs_space_info_used(info, true),
8049 info->full ? "" : "not ");
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008050 btrfs_info(fs_info,
8051 "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu",
8052 info->total_bytes, info->bytes_used, info->bytes_pinned,
8053 info->bytes_reserved, info->bytes_may_use,
8054 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008055 spin_unlock(&info->lock);
8056
Josef Bacikb78e5612018-11-21 14:03:07 -05008057 DUMP_BLOCK_RSV(fs_info, global_block_rsv);
8058 DUMP_BLOCK_RSV(fs_info, trans_block_rsv);
8059 DUMP_BLOCK_RSV(fs_info, chunk_block_rsv);
8060 DUMP_BLOCK_RSV(fs_info, delayed_block_rsv);
8061 DUMP_BLOCK_RSV(fs_info, delayed_refs_rsv);
8062
Josef Bacik9ed74f22009-09-11 16:12:44 -04008063 if (!dump_block_groups)
8064 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008065
Josef Bacik80eb2342008-10-29 14:49:05 -04008066 down_read(&info->groups_sem);
Yan, Zhengb742bb822010-05-16 10:46:24 -04008067again:
8068 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04008069 spin_lock(&cache->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008070 btrfs_info(fs_info,
8071 "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s",
8072 cache->key.objectid, cache->key.offset,
8073 btrfs_block_group_used(&cache->item), cache->pinned,
8074 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04008075 btrfs_dump_free_space(cache, bytes);
8076 spin_unlock(&cache->lock);
8077 }
Yan, Zhengb742bb822010-05-16 10:46:24 -04008078 if (++index < BTRFS_NR_RAID_TYPES)
8079 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04008080 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008081}
Zheng Yane8569812008-09-26 10:05:48 -04008082
Nikolay Borisov6f47c702018-03-13 12:22:32 +02008083/*
8084 * btrfs_reserve_extent - entry point to the extent allocator. Tries to find a
8085 * hole that is at least as big as @num_bytes.
8086 *
8087 * @root - The root that will contain this extent
8088 *
8089 * @ram_bytes - The amount of space in ram that @num_bytes take. This
8090 * is used for accounting purposes. This value differs
8091 * from @num_bytes only in the case of compressed extents.
8092 *
8093 * @num_bytes - Number of bytes to allocate on-disk.
8094 *
8095 * @min_alloc_size - Indicates the minimum amount of space that the
8096 * allocator should try to satisfy. In some cases
8097 * @num_bytes may be larger than what is required and if
8098 * the filesystem is fragmented then allocation fails.
8099 * However, the presence of @min_alloc_size gives a
8100 * chance to try and satisfy the smaller allocation.
8101 *
8102 * @empty_size - A hint that you plan on doing more COW. This is the
8103 * size in bytes the allocator should try to find free
8104 * next to the block it returns. This is just a hint and
8105 * may be ignored by the allocator.
8106 *
8107 * @hint_byte - Hint to the allocator to start searching above the byte
8108 * address passed. It might be ignored.
8109 *
8110 * @ins - This key is modified to record the found hole. It will
8111 * have the following values:
8112 * ins->objectid == start position
8113 * ins->flags = BTRFS_EXTENT_ITEM_KEY
8114 * ins->offset == the size of the hole.
8115 *
8116 * @is_data - Boolean flag indicating whether an extent is
8117 * allocated for data (true) or metadata (false)
8118 *
8119 * @delalloc - Boolean flag indicating whether this allocation is for
8120 * delalloc or not. If 'true' data_rwsem of block groups
8121 * is going to be acquired.
8122 *
8123 *
8124 * Returns 0 when an allocation succeeded or < 0 when an error occurred. In
8125 * case -ENOSPC is returned then @ins->offset will contain the size of the
8126 * largest available hole the allocator managed to find.
8127 */
Wang Xiaoguang18513092016-07-25 15:51:40 +08008128int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
Yan Zheng11833d62009-09-11 16:11:19 -04008129 u64 num_bytes, u64 min_alloc_size,
8130 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08008131 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05008132{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008133 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik36af4e02015-09-25 16:13:11 -04008134 bool final_tried = num_bytes == min_alloc_size;
David Sterbab6919a52013-04-29 13:39:40 +00008135 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05008136 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04008137
Jeff Mahoney1b868262017-05-17 11:38:35 -04008138 flags = get_alloc_profile_by_root(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04008139again:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008140 WARN_ON(num_bytes < fs_info->sectorsize);
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05008141 ret = find_free_extent(fs_info, ram_bytes, num_bytes, empty_size,
Wang Xiaoguang18513092016-07-25 15:51:40 +08008142 hint_byte, ins, flags, delalloc);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008143 if (!ret && !is_data) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008144 btrfs_dec_block_group_reservations(fs_info, ins->objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008145 } else if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08008146 if (!final_tried && ins->offset) {
8147 num_bytes = min(num_bytes >> 1, ins->offset);
Jeff Mahoneyda170662016-06-15 09:22:56 -04008148 num_bytes = round_down(num_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008149 fs_info->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05008150 num_bytes = max(num_bytes, min_alloc_size);
Wang Xiaoguang18513092016-07-25 15:51:40 +08008151 ram_bytes = num_bytes;
Miao Xie9e622d62012-01-26 15:01:12 -05008152 if (num_bytes == min_alloc_size)
8153 final_tried = true;
8154 goto again;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008155 } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xie9e622d62012-01-26 15:01:12 -05008156 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008157
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008158 sinfo = __find_space_info(fs_info, flags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008159 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008160 "allocation failed flags %llu, wanted %llu",
8161 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01008162 if (sinfo)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008163 dump_space_info(fs_info, sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05008164 }
Chris Mason925baed2008-06-25 16:01:30 -04008165 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008166
8167 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008168}
8169
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008170static int __btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008171 u64 start, u64 len,
8172 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04008173{
Josef Bacik0f9dd462008-09-23 13:14:11 -04008174 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05008175 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008176
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008177 cache = btrfs_lookup_block_group(fs_info, start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008178 if (!cache) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008179 btrfs_err(fs_info, "Unable to find block group for %llu",
8180 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008181 return -ENOSPC;
8182 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05008183
Chris Masone688b7252011-10-31 20:52:39 -04008184 if (pin)
David Sterbafdf08602019-03-20 12:12:32 +01008185 pin_down_extent(cache, start, len, 1);
Chris Masone688b7252011-10-31 20:52:39 -04008186 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008187 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008188 ret = btrfs_discard_extent(fs_info, start, len, NULL);
Chris Masone688b7252011-10-31 20:52:39 -04008189 btrfs_add_free_space(cache, start, len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08008190 btrfs_free_reserved_bytes(cache, len, delalloc);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008191 trace_btrfs_reserved_extent_free(fs_info, start, len);
Chris Masone688b7252011-10-31 20:52:39 -04008192 }
Dongsheng Yang31193212014-12-12 16:44:35 +08008193
Chris Masonfa9c0d792009-04-03 09:47:43 -04008194 btrfs_put_block_group(cache);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008195 return ret;
8196}
8197
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008198int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008199 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04008200{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008201 return __btrfs_free_reserved_extent(fs_info, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04008202}
8203
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008204int btrfs_free_and_pin_reserved_extent(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04008205 u64 start, u64 len)
8206{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008207 return __btrfs_free_reserved_extent(fs_info, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04008208}
8209
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008210static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008211 u64 parent, u64 root_objectid,
8212 u64 flags, u64 owner, u64 offset,
8213 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008214{
Nikolay Borisovef89b822018-06-20 15:48:58 +03008215 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008216 int ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008217 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008218 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008219 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008220 struct extent_buffer *leaf;
8221 int type;
8222 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04008223
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008224 if (parent > 0)
8225 type = BTRFS_SHARED_DATA_REF_KEY;
8226 else
8227 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04008228
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008229 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05008230
8231 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008232 if (!path)
8233 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05008234
Chris Masonb9473432009-03-13 11:00:37 -04008235 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008236 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8237 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008238 if (ret) {
8239 btrfs_free_path(path);
8240 return ret;
8241 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008242
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008243 leaf = path->nodes[0];
8244 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05008245 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008246 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
8247 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8248 btrfs_set_extent_flags(leaf, extent_item,
8249 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05008250
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008251 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8252 btrfs_set_extent_inline_ref_type(leaf, iref, type);
8253 if (parent > 0) {
8254 struct btrfs_shared_data_ref *ref;
8255 ref = (struct btrfs_shared_data_ref *)(iref + 1);
8256 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8257 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
8258 } else {
8259 struct btrfs_extent_data_ref *ref;
8260 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
8261 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
8262 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
8263 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
8264 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
8265 }
Chris Mason47e4bb92008-02-01 14:51:59 -05008266
8267 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05008268 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04008269
Nikolay Borisov25a356d2018-05-10 15:44:54 +03008270 ret = remove_from_free_space_tree(trans, ins->objectid, ins->offset);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008271 if (ret)
8272 return ret;
8273
David Sterba6b279402019-03-20 12:10:15 +01008274 ret = update_block_group(trans, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008275 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008276 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008277 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05008278 BUG();
8279 }
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008280 trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008281 return ret;
8282}
8283
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008284static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008285 struct btrfs_delayed_ref_node *node,
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03008286 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008287{
Nikolay Borisov9dcdbe02018-05-21 12:27:20 +03008288 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008289 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008290 struct btrfs_extent_item *extent_item;
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008291 struct btrfs_key extent_key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008292 struct btrfs_tree_block_info *block_info;
8293 struct btrfs_extent_inline_ref *iref;
8294 struct btrfs_path *path;
8295 struct extent_buffer *leaf;
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008296 struct btrfs_delayed_tree_ref *ref;
Josef Bacik3173a182013-03-07 14:22:04 -05008297 u32 size = sizeof(*extent_item) + sizeof(*iref);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008298 u64 num_bytes;
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03008299 u64 flags = extent_op->flags_to_set;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008300 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Josef Bacik3173a182013-03-07 14:22:04 -05008301
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008302 ref = btrfs_delayed_node_to_tree_ref(node);
8303
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008304 extent_key.objectid = node->bytenr;
8305 if (skinny_metadata) {
8306 extent_key.offset = ref->level;
8307 extent_key.type = BTRFS_METADATA_ITEM_KEY;
8308 num_bytes = fs_info->nodesize;
8309 } else {
8310 extent_key.offset = node->num_bytes;
8311 extent_key.type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik3173a182013-03-07 14:22:04 -05008312 size += sizeof(*block_info);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008313 num_bytes = node->num_bytes;
8314 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008315
8316 path = btrfs_alloc_path();
Josef Bacik80ee54b2018-10-11 15:54:22 -04008317 if (!path)
Mark Fashehd8926bb2011-07-13 10:38:47 -07008318 return -ENOMEM;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008319
8320 path->leave_spinning = 1;
8321 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008322 &extent_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008323 if (ret) {
Chris Masondd825252015-04-01 08:36:05 -07008324 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008325 return ret;
8326 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008327
8328 leaf = path->nodes[0];
8329 extent_item = btrfs_item_ptr(leaf, path->slots[0],
8330 struct btrfs_extent_item);
8331 btrfs_set_extent_refs(leaf, extent_item, 1);
8332 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8333 btrfs_set_extent_flags(leaf, extent_item,
8334 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008335
Josef Bacik3173a182013-03-07 14:22:04 -05008336 if (skinny_metadata) {
8337 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8338 } else {
8339 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03008340 btrfs_set_tree_block_key(leaf, block_info, &extent_op->key);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008341 btrfs_set_tree_block_level(leaf, block_info, ref->level);
Josef Bacik3173a182013-03-07 14:22:04 -05008342 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
8343 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008344
Nikolay Borisovd4b20732018-05-21 12:27:23 +03008345 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008346 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
8347 btrfs_set_extent_inline_ref_type(leaf, iref,
8348 BTRFS_SHARED_BLOCK_REF_KEY);
Nikolay Borisovd4b20732018-05-21 12:27:23 +03008349 btrfs_set_extent_inline_ref_offset(leaf, iref, ref->parent);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008350 } else {
8351 btrfs_set_extent_inline_ref_type(leaf, iref,
8352 BTRFS_TREE_BLOCK_REF_KEY);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008353 btrfs_set_extent_inline_ref_offset(leaf, iref, ref->root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008354 }
8355
8356 btrfs_mark_buffer_dirty(leaf);
8357 btrfs_free_path(path);
8358
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008359 ret = remove_from_free_space_tree(trans, extent_key.objectid,
8360 num_bytes);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008361 if (ret)
8362 return ret;
8363
David Sterba6b279402019-03-20 12:10:15 +01008364 ret = update_block_group(trans, extent_key.objectid,
Jeff Mahoney6202df62016-06-22 18:54:22 -04008365 fs_info->nodesize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008366 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008367 btrfs_err(fs_info, "update block group failed for %llu %llu",
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008368 extent_key.objectid, extent_key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008369 BUG();
8370 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04008371
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008372 trace_btrfs_reserved_extent_alloc(fs_info, extent_key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008373 fs_info->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008374 return ret;
8375}
8376
8377int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008378 struct btrfs_root *root, u64 owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08008379 u64 offset, u64 ram_bytes,
8380 struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008381{
8382 int ret;
Chris Mason1c2308f82008-09-23 13:14:13 -04008383
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008384 BUG_ON(root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04008385
Josef Bacikfd708b82017-09-29 15:43:50 -04008386 btrfs_ref_tree_mod(root, ins->objectid, ins->offset, 0,
8387 root->root_key.objectid, owner, offset,
8388 BTRFS_ADD_DELAYED_EXTENT);
8389
Nikolay Borisov88a979c2018-06-20 15:48:54 +03008390 ret = btrfs_add_delayed_data_ref(trans, ins->objectid,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008391 ins->offset, 0,
8392 root->root_key.objectid, owner,
Omar Sandoval7be07912017-06-06 16:45:30 -07008393 offset, ram_bytes,
8394 BTRFS_ADD_DELAYED_EXTENT, NULL, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008395 return ret;
8396}
Chris Masone02119d2008-09-05 16:13:11 -04008397
8398/*
8399 * this is used by the tree logging recovery code. It records that
8400 * an extent has been allocated and makes sure to clear the free
8401 * space cache bits as well
8402 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008403int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008404 u64 root_objectid, u64 owner, u64 offset,
8405 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04008406{
Nikolay Borisov61da2ab2018-06-20 15:49:13 +03008407 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04008408 int ret;
8409 struct btrfs_block_group_cache *block_group;
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008410 struct btrfs_space_info *space_info;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008411
8412 /*
8413 * Mixed block groups will exclude before processing the log so we only
Nicholas D Steeves01327612016-05-19 21:18:45 -04008414 * need to do the exclude dance if this fs isn't mixed.
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008415 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008416 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008417 ret = __exclude_logged_extent(fs_info, ins->objectid,
8418 ins->offset);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008419 if (ret)
8420 return ret;
8421 }
Chris Masone02119d2008-09-05 16:13:11 -04008422
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008423 block_group = btrfs_lookup_block_group(fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008424 if (!block_group)
8425 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04008426
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008427 space_info = block_group->space_info;
8428 spin_lock(&space_info->lock);
8429 spin_lock(&block_group->lock);
8430 space_info->bytes_reserved += ins->offset;
8431 block_group->reserved += ins->offset;
8432 spin_unlock(&block_group->lock);
8433 spin_unlock(&space_info->lock);
8434
Nikolay Borisovef89b822018-06-20 15:48:58 +03008435 ret = alloc_reserved_file_extent(trans, 0, root_objectid, 0, owner,
8436 offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04008437 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04008438 return ret;
8439}
8440
Eric Sandeen48a3b632013-04-25 20:41:01 +00008441static struct extent_buffer *
8442btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008443 u64 bytenr, int level, u64 owner)
Chris Mason65b51a02008-08-01 15:11:20 -04008444{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008445 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason65b51a02008-08-01 15:11:20 -04008446 struct extent_buffer *buf;
8447
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008448 buf = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008449 if (IS_ERR(buf))
8450 return buf;
8451
Qu Wenruob72c3ab2018-08-21 09:53:47 +08008452 /*
8453 * Extra safety check in case the extent tree is corrupted and extent
8454 * allocator chooses to use a tree block which is already used and
8455 * locked.
8456 */
8457 if (buf->lock_owner == current->pid) {
8458 btrfs_err_rl(fs_info,
8459"tree block %llu owner %llu already locked by pid=%d, extent tree corruption detected",
8460 buf->start, btrfs_header_owner(buf), current->pid);
8461 free_extent_buffer(buf);
8462 return ERR_PTR(-EUCLEAN);
8463 }
8464
Chris Mason85d4e462011-07-26 16:11:19 -04008465 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04008466 btrfs_tree_lock(buf);
David Sterba6a884d7d2019-03-20 14:30:02 +01008467 btrfs_clean_tree_block(buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05008468 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008469
David Sterba8bead252018-04-04 02:03:48 +02008470 btrfs_set_lock_blocking_write(buf);
David Sterba4db8c522015-12-03 13:06:46 +01008471 set_extent_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008472
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008473 memzero_extent_buffer(buf, 0, sizeof(struct btrfs_header));
8474 btrfs_set_header_level(buf, level);
8475 btrfs_set_header_bytenr(buf, buf->start);
8476 btrfs_set_header_generation(buf, trans->transid);
8477 btrfs_set_header_backref_rev(buf, BTRFS_MIXED_BACKREF_REV);
8478 btrfs_set_header_owner(buf, owner);
Nikolay Borisovde37aa52018-10-30 16:43:24 +02008479 write_extent_buffer_fsid(buf, fs_info->fs_devices->metadata_uuid);
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008480 write_extent_buffer_chunk_tree_uuid(buf, fs_info->chunk_tree_uuid);
Chris Masond0c803c2008-09-11 16:17:57 -04008481 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01008482 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008483 /*
8484 * we allow two log transactions at a time, use different
Andrea Gelmini52042d82018-11-28 12:05:13 +01008485 * EXTENT bit to differentiate dirty pages.
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008486 */
Filipe Manana656f30d2014-09-26 12:25:56 +01008487 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008488 set_extent_dirty(&root->dirty_log_pages, buf->start,
8489 buf->start + buf->len - 1, GFP_NOFS);
8490 else
8491 set_extent_new(&root->dirty_log_pages, buf->start,
David Sterba3744dbe2016-04-26 23:54:39 +02008492 buf->start + buf->len - 1);
Chris Masond0c803c2008-09-11 16:17:57 -04008493 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01008494 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04008495 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
8496 buf->start + buf->len - 1, GFP_NOFS);
8497 }
Jeff Mahoney64c12922016-06-08 00:36:38 -04008498 trans->dirty = true;
Chris Masonb4ce94d2009-02-04 09:25:08 -05008499 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04008500 return buf;
8501}
8502
Yan, Zhengf0486c62010-05-16 10:46:25 -04008503static struct btrfs_block_rsv *
8504use_block_rsv(struct btrfs_trans_handle *trans,
8505 struct btrfs_root *root, u32 blocksize)
8506{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008507 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008508 struct btrfs_block_rsv *block_rsv;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008509 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008510 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00008511 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008512
8513 block_rsv = get_block_rsv(trans, root);
8514
Miao Xieb586b322013-05-13 13:55:10 +00008515 if (unlikely(block_rsv->size == 0))
8516 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00008517again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008518 ret = block_rsv_use_bytes(block_rsv, blocksize);
8519 if (!ret)
8520 return block_rsv;
8521
Miao Xieb586b322013-05-13 13:55:10 +00008522 if (block_rsv->failfast)
8523 return ERR_PTR(ret);
8524
Miao Xied88033d2013-05-13 13:55:12 +00008525 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
8526 global_updated = true;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008527 update_global_block_rsv(fs_info);
Miao Xied88033d2013-05-13 13:55:12 +00008528 goto again;
8529 }
8530
Josef Bacikba2c4d42018-12-03 10:20:33 -05008531 /*
8532 * The global reserve still exists to save us from ourselves, so don't
8533 * warn_on if we are short on our delayed refs reserve.
8534 */
8535 if (block_rsv->type != BTRFS_BLOCK_RSV_DELREFS &&
8536 btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xieb586b322013-05-13 13:55:10 +00008537 static DEFINE_RATELIMIT_STATE(_rs,
8538 DEFAULT_RATELIMIT_INTERVAL * 10,
8539 /*DEFAULT_RATELIMIT_BURST*/ 1);
8540 if (__ratelimit(&_rs))
8541 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05008542 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00008543 }
8544try_reserve:
8545 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
8546 BTRFS_RESERVE_NO_FLUSH);
8547 if (!ret)
8548 return block_rsv;
8549 /*
8550 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00008551 * the global reserve if its space type is the same as the global
8552 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00008553 */
Miao Xie5881cfc2013-05-13 13:55:11 +00008554 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
8555 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00008556 ret = block_rsv_use_bytes(global_rsv, blocksize);
8557 if (!ret)
8558 return global_rsv;
8559 }
8560 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008561}
8562
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008563static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
8564 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008565{
Lu Fengqi3a584172018-08-04 21:10:55 +08008566 block_rsv_add_bytes(block_rsv, blocksize, false);
Qu Wenruoff6bc372017-12-21 13:42:04 +08008567 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0, NULL);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008568}
8569
Chris Masonfec577f2007-02-26 10:40:21 -05008570/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04008571 * finds a free extent and does all the dirty work required for allocation
Omar Sandoval67b78592015-02-24 02:47:04 -08008572 * returns the tree buffer or an ERR_PTR on error.
Chris Masonfec577f2007-02-26 10:40:21 -05008573 */
David Sterba4d75f8a2014-06-15 01:54:12 +02008574struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
Omar Sandoval310712b2017-01-17 23:24:37 -08008575 struct btrfs_root *root,
8576 u64 parent, u64 root_objectid,
8577 const struct btrfs_disk_key *key,
8578 int level, u64 hint,
8579 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05008580{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008581 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone2fa7222007-03-12 16:22:34 -04008582 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008583 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04008584 struct extent_buffer *buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008585 struct btrfs_delayed_extent_op *extent_op;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008586 u64 flags = 0;
8587 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008588 u32 blocksize = fs_info->nodesize;
8589 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008590
David Sterba05653ef2016-07-15 15:23:37 +02008591#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008592 if (btrfs_is_testing(fs_info)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008593 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008594 level, root_objectid);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008595 if (!IS_ERR(buf))
8596 root->alloc_bytenr += blocksize;
8597 return buf;
8598 }
David Sterba05653ef2016-07-15 15:23:37 +02008599#endif
David Sterbafccb84c2014-09-29 23:53:21 +02008600
Yan, Zhengf0486c62010-05-16 10:46:25 -04008601 block_rsv = use_block_rsv(trans, root, blocksize);
8602 if (IS_ERR(block_rsv))
8603 return ERR_CAST(block_rsv);
8604
Wang Xiaoguang18513092016-07-25 15:51:40 +08008605 ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08008606 empty_size, hint, &ins, 0, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008607 if (ret)
8608 goto out_unuse;
Chris Mason55c69072008-01-09 15:55:33 -05008609
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008610 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level,
8611 root_objectid);
Omar Sandoval67b78592015-02-24 02:47:04 -08008612 if (IS_ERR(buf)) {
8613 ret = PTR_ERR(buf);
8614 goto out_free_reserved;
8615 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008616
8617 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
8618 if (parent == 0)
8619 parent = ins.objectid;
8620 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
8621 } else
8622 BUG_ON(parent > 0);
8623
8624 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Miao Xie78a61842012-11-21 02:21:28 +00008625 extent_op = btrfs_alloc_delayed_extent_op();
Omar Sandoval67b78592015-02-24 02:47:04 -08008626 if (!extent_op) {
8627 ret = -ENOMEM;
8628 goto out_free_buf;
8629 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008630 if (key)
8631 memcpy(&extent_op->key, key, sizeof(extent_op->key));
8632 else
8633 memset(&extent_op->key, 0, sizeof(extent_op->key));
8634 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01008635 extent_op->update_key = skinny_metadata ? false : true;
8636 extent_op->update_flags = true;
8637 extent_op->is_data = false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04008638 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008639
Josef Bacikfd708b82017-09-29 15:43:50 -04008640 btrfs_ref_tree_mod(root, ins.objectid, ins.offset, parent,
8641 root_objectid, level, 0,
8642 BTRFS_ADD_DELAYED_EXTENT);
Nikolay Borisov44e1c472018-06-20 15:48:53 +03008643 ret = btrfs_add_delayed_tree_ref(trans, ins.objectid,
Omar Sandoval7be07912017-06-06 16:45:30 -07008644 ins.offset, parent,
8645 root_objectid, level,
Omar Sandoval67b78592015-02-24 02:47:04 -08008646 BTRFS_ADD_DELAYED_EXTENT,
Omar Sandoval7be07912017-06-06 16:45:30 -07008647 extent_op, NULL, NULL);
Omar Sandoval67b78592015-02-24 02:47:04 -08008648 if (ret)
8649 goto out_free_delayed;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008650 }
Chris Masonfec577f2007-02-26 10:40:21 -05008651 return buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008652
8653out_free_delayed:
8654 btrfs_free_delayed_extent_op(extent_op);
8655out_free_buf:
8656 free_extent_buffer(buf);
8657out_free_reserved:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008658 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008659out_unuse:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008660 unuse_block_rsv(fs_info, block_rsv, blocksize);
Omar Sandoval67b78592015-02-24 02:47:04 -08008661 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05008662}
Chris Masona28ec192007-03-06 20:08:01 -05008663
Yan Zheng2c47e6052009-06-27 21:07:35 -04008664struct walk_control {
8665 u64 refs[BTRFS_MAX_LEVEL];
8666 u64 flags[BTRFS_MAX_LEVEL];
8667 struct btrfs_key update_progress;
Josef Bacikaea6f022019-02-06 15:46:15 -05008668 struct btrfs_key drop_progress;
8669 int drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008670 int stage;
8671 int level;
8672 int shared_level;
8673 int update_ref;
8674 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008675 int reada_slot;
8676 int reada_count;
Josef Bacik78c52d92019-02-06 15:46:14 -05008677 int restarted;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008678};
8679
8680#define DROP_REFERENCE 1
8681#define UPDATE_BACKREF 2
8682
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008683static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
8684 struct btrfs_root *root,
8685 struct walk_control *wc,
8686 struct btrfs_path *path)
8687{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008688 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008689 u64 bytenr;
8690 u64 generation;
8691 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008692 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008693 u32 nritems;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008694 struct btrfs_key key;
8695 struct extent_buffer *eb;
8696 int ret;
8697 int slot;
8698 int nread = 0;
8699
8700 if (path->slots[wc->level] < wc->reada_slot) {
8701 wc->reada_count = wc->reada_count * 2 / 3;
8702 wc->reada_count = max(wc->reada_count, 2);
8703 } else {
8704 wc->reada_count = wc->reada_count * 3 / 2;
8705 wc->reada_count = min_t(int, wc->reada_count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008706 BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008707 }
8708
8709 eb = path->nodes[wc->level];
8710 nritems = btrfs_header_nritems(eb);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008711
8712 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
8713 if (nread >= wc->reada_count)
8714 break;
8715
8716 cond_resched();
8717 bytenr = btrfs_node_blockptr(eb, slot);
8718 generation = btrfs_node_ptr_generation(eb, slot);
8719
8720 if (slot == path->slots[wc->level])
8721 goto reada;
8722
8723 if (wc->stage == UPDATE_BACKREF &&
8724 generation <= root->root_key.offset)
8725 continue;
8726
Yan, Zheng94fcca92009-10-09 09:25:16 -04008727 /* We don't lock the tree block, it's OK to be racy here */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008728 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -05008729 wc->level - 1, 1, &refs,
8730 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008731 /* We don't care about errors in readahead. */
8732 if (ret < 0)
8733 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008734 BUG_ON(refs == 0);
8735
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008736 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008737 if (refs == 1)
8738 goto reada;
8739
Yan, Zheng94fcca92009-10-09 09:25:16 -04008740 if (wc->level == 1 &&
8741 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8742 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008743 if (!wc->update_ref ||
8744 generation <= root->root_key.offset)
8745 continue;
8746 btrfs_node_key_to_cpu(eb, &key, slot);
8747 ret = btrfs_comp_cpu_keys(&key,
8748 &wc->update_progress);
8749 if (ret < 0)
8750 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008751 } else {
8752 if (wc->level == 1 &&
8753 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8754 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008755 }
8756reada:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008757 readahead_tree_block(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008758 nread++;
8759 }
8760 wc->reada_slot = slot;
8761}
8762
Chris Mason9aca1d52007-03-13 11:09:37 -04008763/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008764 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008765 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04008766 * when wc->stage == UPDATE_BACKREF, this function updates
8767 * back refs for pointers in the block.
8768 *
8769 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04008770 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008771static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
8772 struct btrfs_root *root,
8773 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008774 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04008775{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008776 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008777 int level = wc->level;
8778 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04008779 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8780 int ret;
8781
8782 if (wc->stage == UPDATE_BACKREF &&
8783 btrfs_header_owner(eb) != root->root_key.objectid)
8784 return 1;
8785
8786 /*
8787 * when reference count of tree block is 1, it won't increase
8788 * again. once full backref flag is set, we never clear it.
8789 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04008790 if (lookup_info &&
8791 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
8792 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008793 BUG_ON(!path->locks[level]);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008794 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05008795 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008796 &wc->refs[level],
8797 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008798 BUG_ON(ret == -ENOMEM);
8799 if (ret)
8800 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008801 BUG_ON(wc->refs[level] == 0);
8802 }
8803
Yan Zheng2c47e6052009-06-27 21:07:35 -04008804 if (wc->stage == DROP_REFERENCE) {
8805 if (wc->refs[level] > 1)
8806 return 1;
8807
8808 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04008809 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008810 path->locks[level] = 0;
8811 }
8812 return 0;
8813 }
8814
8815 /* wc->stage == UPDATE_BACKREF */
8816 if (!(wc->flags[level] & flag)) {
8817 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07008818 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008819 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07008820 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008821 BUG_ON(ret); /* -ENOMEM */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008822 ret = btrfs_set_disk_extent_flags(trans, fs_info, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04008823 eb->len, flag,
8824 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008825 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008826 wc->flags[level] |= flag;
8827 }
8828
8829 /*
8830 * the block is shared by multiple trees, so it's not good to
8831 * keep the tree lock
8832 */
8833 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008834 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008835 path->locks[level] = 0;
8836 }
8837 return 0;
8838}
8839
8840/*
Josef Bacik78c52d92019-02-06 15:46:14 -05008841 * This is used to verify a ref exists for this root to deal with a bug where we
8842 * would have a drop_progress key that hadn't been updated properly.
8843 */
8844static int check_ref_exists(struct btrfs_trans_handle *trans,
8845 struct btrfs_root *root, u64 bytenr, u64 parent,
8846 int level)
8847{
8848 struct btrfs_path *path;
8849 struct btrfs_extent_inline_ref *iref;
8850 int ret;
8851
8852 path = btrfs_alloc_path();
8853 if (!path)
8854 return -ENOMEM;
8855
8856 ret = lookup_extent_backref(trans, path, &iref, bytenr,
8857 root->fs_info->nodesize, parent,
8858 root->root_key.objectid, level, 0);
8859 btrfs_free_path(path);
8860 if (ret == -ENOENT)
8861 return 0;
8862 if (ret < 0)
8863 return ret;
8864 return 1;
8865}
8866
8867/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008868 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008869 *
8870 * when wc->stage == DROP_REFERENCE, this function checks
8871 * reference count of the block pointed to. if the block
8872 * is shared and we need update back refs for the subtree
8873 * rooted at the block, this function changes wc->stage to
8874 * UPDATE_BACKREF. if the block is shared and there is no
8875 * need to update back, this function drops the reference
8876 * to the block.
8877 *
8878 * NOTE: return value 1 means we should stop walking down.
8879 */
8880static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8881 struct btrfs_root *root,
8882 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008883 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008884{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008885 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008886 u64 bytenr;
8887 u64 generation;
8888 u64 parent;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008889 struct btrfs_key key;
Qu Wenruo581c1762018-03-29 09:08:11 +08008890 struct btrfs_key first_key;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008891 struct extent_buffer *next;
8892 int level = wc->level;
8893 int reada = 0;
8894 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008895 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008896
8897 generation = btrfs_node_ptr_generation(path->nodes[level],
8898 path->slots[level]);
8899 /*
8900 * if the lower level block was created before the snapshot
8901 * was created, we know there is no need to update back refs
8902 * for the subtree
8903 */
8904 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008905 generation <= root->root_key.offset) {
8906 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008907 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008908 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008909
8910 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
Qu Wenruo581c1762018-03-29 09:08:11 +08008911 btrfs_node_key_to_cpu(path->nodes[level], &first_key,
8912 path->slots[level]);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008913
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008914 next = find_extent_buffer(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008915 if (!next) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008916 next = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008917 if (IS_ERR(next))
8918 return PTR_ERR(next);
8919
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008920 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8921 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008922 reada = 1;
8923 }
8924 btrfs_tree_lock(next);
David Sterba8bead252018-04-04 02:03:48 +02008925 btrfs_set_lock_blocking_write(next);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008926
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008927 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008928 &wc->refs[level - 1],
8929 &wc->flags[level - 1]);
Josef Bacik48672682016-09-23 13:23:28 +02008930 if (ret < 0)
8931 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008932
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008933 if (unlikely(wc->refs[level - 1] == 0)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008934 btrfs_err(fs_info, "Missing references.");
Josef Bacik48672682016-09-23 13:23:28 +02008935 ret = -EIO;
8936 goto out_unlock;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008937 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008938 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008939
Yan, Zheng94fcca92009-10-09 09:25:16 -04008940 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008941 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008942 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008943 if (level == 1 &&
8944 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8945 goto skip;
8946
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008947 if (!wc->update_ref ||
8948 generation <= root->root_key.offset)
8949 goto skip;
8950
8951 btrfs_node_key_to_cpu(path->nodes[level], &key,
8952 path->slots[level]);
8953 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8954 if (ret < 0)
8955 goto skip;
8956
8957 wc->stage = UPDATE_BACKREF;
8958 wc->shared_level = level - 1;
8959 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008960 } else {
8961 if (level == 1 &&
8962 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8963 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008964 }
8965
Chris Masonb9fab912012-05-06 07:23:47 -04008966 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008967 btrfs_tree_unlock(next);
8968 free_extent_buffer(next);
8969 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008970 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008971 }
8972
8973 if (!next) {
8974 if (reada && level == 1)
8975 reada_walk_down(trans, root, wc, path);
Qu Wenruo581c1762018-03-29 09:08:11 +08008976 next = read_tree_block(fs_info, bytenr, generation, level - 1,
8977 &first_key);
Liu Bo64c043d2015-05-25 17:30:15 +08008978 if (IS_ERR(next)) {
8979 return PTR_ERR(next);
8980 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008981 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008982 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008983 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008984 btrfs_tree_lock(next);
David Sterba8bead252018-04-04 02:03:48 +02008985 btrfs_set_lock_blocking_write(next);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008986 }
8987
8988 level--;
Josef Bacik48672682016-09-23 13:23:28 +02008989 ASSERT(level == btrfs_header_level(next));
8990 if (level != btrfs_header_level(next)) {
8991 btrfs_err(root->fs_info, "mismatched level");
8992 ret = -EIO;
8993 goto out_unlock;
8994 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008995 path->nodes[level] = next;
8996 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008997 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008998 wc->level = level;
8999 if (wc->level == 1)
9000 wc->reada_slot = 0;
9001 return 0;
9002skip:
9003 wc->refs[level - 1] = 0;
9004 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04009005 if (wc->stage == DROP_REFERENCE) {
9006 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
9007 parent = path->nodes[level]->start;
9008 } else {
Josef Bacik48672682016-09-23 13:23:28 +02009009 ASSERT(root->root_key.objectid ==
Yan, Zheng94fcca92009-10-09 09:25:16 -04009010 btrfs_header_owner(path->nodes[level]));
Josef Bacik48672682016-09-23 13:23:28 +02009011 if (root->root_key.objectid !=
9012 btrfs_header_owner(path->nodes[level])) {
9013 btrfs_err(root->fs_info,
9014 "mismatched block owner");
9015 ret = -EIO;
9016 goto out_unlock;
9017 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04009018 parent = 0;
9019 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009020
Qu Wenruo2cd86d32018-09-27 14:42:33 +08009021 /*
Josef Bacik78c52d92019-02-06 15:46:14 -05009022 * If we had a drop_progress we need to verify the refs are set
9023 * as expected. If we find our ref then we know that from here
9024 * on out everything should be correct, and we can clear the
9025 * ->restarted flag.
9026 */
9027 if (wc->restarted) {
9028 ret = check_ref_exists(trans, root, bytenr, parent,
9029 level - 1);
9030 if (ret < 0)
9031 goto out_unlock;
9032 if (ret == 0)
9033 goto no_delete;
9034 ret = 0;
9035 wc->restarted = 0;
9036 }
9037
9038 /*
Qu Wenruo2cd86d32018-09-27 14:42:33 +08009039 * Reloc tree doesn't contribute to qgroup numbers, and we have
9040 * already accounted them at merge time (replace_path),
9041 * thus we could skip expensive subtree trace here.
9042 */
9043 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
9044 need_account) {
Lu Fengqideb40622018-07-18 14:45:38 +08009045 ret = btrfs_qgroup_trace_subtree(trans, next,
Qu Wenruo33d1f052016-10-18 09:31:28 +08009046 generation, level - 1);
Mark Fasheh11526512014-07-17 12:39:01 -07009047 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009048 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009049 "Error %d accounting shared subtree. Quota is out of sync, rescan required.",
9050 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07009051 }
9052 }
Josef Bacikaea6f022019-02-06 15:46:15 -05009053
9054 /*
9055 * We need to update the next key in our walk control so we can
9056 * update the drop_progress key accordingly. We don't care if
9057 * find_next_key doesn't find a key because that means we're at
9058 * the end and are going to clean up now.
9059 */
9060 wc->drop_level = level;
9061 find_next_key(path, level, &wc->drop_progress);
9062
Qu Wenruo01e0da42018-12-10 15:01:03 +08009063 ret = btrfs_free_extent(trans, root, bytenr, fs_info->nodesize,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009064 parent, root->root_key.objectid,
9065 level - 1, 0);
Josef Bacik48672682016-09-23 13:23:28 +02009066 if (ret)
9067 goto out_unlock;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009068 }
Josef Bacik78c52d92019-02-06 15:46:14 -05009069no_delete:
Josef Bacik48672682016-09-23 13:23:28 +02009070 *lookup_info = 1;
9071 ret = 1;
9072
9073out_unlock:
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009074 btrfs_tree_unlock(next);
9075 free_extent_buffer(next);
Josef Bacik48672682016-09-23 13:23:28 +02009076
9077 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009078}
9079
9080/*
Liu Bo2c016dc2012-12-26 15:32:17 +08009081 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04009082 *
9083 * when wc->stage == DROP_REFERENCE, this function drops
9084 * reference count on the block.
9085 *
9086 * when wc->stage == UPDATE_BACKREF, this function changes
9087 * wc->stage back to DROP_REFERENCE if we changed wc->stage
9088 * to UPDATE_BACKREF previously while processing the block.
9089 *
9090 * NOTE: return value 1 means we should stop walking up.
9091 */
9092static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
9093 struct btrfs_root *root,
9094 struct btrfs_path *path,
9095 struct walk_control *wc)
9096{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009097 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009098 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009099 int level = wc->level;
9100 struct extent_buffer *eb = path->nodes[level];
9101 u64 parent = 0;
9102
9103 if (wc->stage == UPDATE_BACKREF) {
9104 BUG_ON(wc->shared_level < level);
9105 if (level < wc->shared_level)
9106 goto out;
9107
Yan Zheng2c47e6052009-06-27 21:07:35 -04009108 ret = find_next_key(path, level + 1, &wc->update_progress);
9109 if (ret > 0)
9110 wc->update_ref = 0;
9111
9112 wc->stage = DROP_REFERENCE;
9113 wc->shared_level = -1;
9114 path->slots[level] = 0;
9115
9116 /*
9117 * check reference count again if the block isn't locked.
9118 * we should start walking down the tree again if reference
9119 * count is one.
9120 */
9121 if (!path->locks[level]) {
9122 BUG_ON(level == 0);
9123 btrfs_tree_lock(eb);
David Sterba8bead252018-04-04 02:03:48 +02009124 btrfs_set_lock_blocking_write(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009125 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009126
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009127 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05009128 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009129 &wc->refs[level],
9130 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009131 if (ret < 0) {
9132 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009133 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009134 return ret;
9135 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009136 BUG_ON(wc->refs[level] == 0);
9137 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04009138 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009139 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009140 return 1;
9141 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009142 }
9143 }
9144
9145 /* wc->stage == DROP_REFERENCE */
9146 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
9147
9148 if (wc->refs[level] == 1) {
9149 if (level == 0) {
9150 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07009151 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009152 else
Josef Bacike339a6b2014-07-02 10:54:25 -07009153 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009154 BUG_ON(ret); /* -ENOMEM */
Lu Fengqi8d38d7e2018-07-18 14:45:37 +08009155 ret = btrfs_qgroup_trace_leaf_items(trans, eb);
Mark Fasheh11526512014-07-17 12:39:01 -07009156 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009157 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009158 "error %d accounting leaf items. Quota is out of sync, rescan required.",
9159 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07009160 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009161 }
David Sterba6a884d7d2019-03-20 14:30:02 +01009162 /* make block locked assertion in btrfs_clean_tree_block happy */
Yan Zheng2c47e6052009-06-27 21:07:35 -04009163 if (!path->locks[level] &&
9164 btrfs_header_generation(eb) == trans->transid) {
9165 btrfs_tree_lock(eb);
David Sterba8bead252018-04-04 02:03:48 +02009166 btrfs_set_lock_blocking_write(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009167 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009168 }
David Sterba6a884d7d2019-03-20 14:30:02 +01009169 btrfs_clean_tree_block(eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009170 }
9171
9172 if (eb == root->node) {
9173 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9174 parent = eb->start;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009175 else if (root->root_key.objectid != btrfs_header_owner(eb))
9176 goto owner_mismatch;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009177 } else {
9178 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9179 parent = path->nodes[level + 1]->start;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009180 else if (root->root_key.objectid !=
9181 btrfs_header_owner(path->nodes[level + 1]))
9182 goto owner_mismatch;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009183 }
9184
Jan Schmidt5581a512012-05-16 17:04:52 +02009185 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009186out:
9187 wc->refs[level] = 0;
9188 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009189 return 0;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009190
9191owner_mismatch:
9192 btrfs_err_rl(fs_info, "unexpected tree owner, have %llu expect %llu",
9193 btrfs_header_owner(eb), root->root_key.objectid);
9194 return -EUCLEAN;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009195}
9196
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009197static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
9198 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009199 struct btrfs_path *path,
9200 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009201{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009202 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04009203 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009204 int ret;
9205
Yan Zheng2c47e6052009-06-27 21:07:35 -04009206 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04009207 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009208 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009209 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009210
Yan Zheng2c47e6052009-06-27 21:07:35 -04009211 if (level == 0)
9212 break;
9213
Yan, Zheng7a7965f2010-02-01 02:41:17 +00009214 if (path->slots[level] >=
9215 btrfs_header_nritems(path->nodes[level]))
9216 break;
9217
Yan, Zheng94fcca92009-10-09 09:25:16 -04009218 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009219 if (ret > 0) {
9220 path->slots[level]++;
9221 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00009222 } else if (ret < 0)
9223 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009224 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009225 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009226 return 0;
9227}
9228
Chris Masond3977122009-01-05 21:25:51 -05009229static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05009230 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04009231 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009232 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05009233{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009234 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05009235 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04009236
Yan Zheng2c47e6052009-06-27 21:07:35 -04009237 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
9238 while (level < max_level && path->nodes[level]) {
9239 wc->level = level;
9240 if (path->slots[level] + 1 <
9241 btrfs_header_nritems(path->nodes[level])) {
9242 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05009243 return 0;
9244 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009245 ret = walk_up_proc(trans, root, path, wc);
9246 if (ret > 0)
9247 return 0;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009248 if (ret < 0)
9249 return ret;
Chris Masonbd56b302009-02-04 09:27:02 -05009250
Yan Zheng2c47e6052009-06-27 21:07:35 -04009251 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04009252 btrfs_tree_unlock_rw(path->nodes[level],
9253 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009254 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009255 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009256 free_extent_buffer(path->nodes[level]);
9257 path->nodes[level] = NULL;
9258 level++;
Chris Mason20524f02007-03-10 06:35:47 -05009259 }
9260 }
9261 return 1;
9262}
9263
Chris Mason9aca1d52007-03-13 11:09:37 -04009264/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04009265 * drop a subvolume tree.
9266 *
9267 * this function traverses the tree freeing any blocks that only
9268 * referenced by the tree.
9269 *
9270 * when a shared tree block is found. this function decreases its
9271 * reference count by one. if update_ref is true, this function
9272 * also make sure backrefs for the shared block and all lower level
9273 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00009274 *
9275 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04009276 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04009277int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009278 struct btrfs_block_rsv *block_rsv, int update_ref,
9279 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05009280{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009281 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04009282 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009283 struct btrfs_trans_handle *trans;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009284 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04009285 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009286 struct walk_control *wc;
9287 struct btrfs_key key;
9288 int err = 0;
9289 int ret;
9290 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04009291 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05009292
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09009293 btrfs_debug(fs_info, "Drop subvolume %llu", root->root_key.objectid);
Mark Fasheh11526512014-07-17 12:39:01 -07009294
Chris Mason5caf2a02007-04-02 11:20:42 -04009295 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009296 if (!path) {
9297 err = -ENOMEM;
9298 goto out;
9299 }
Chris Mason20524f02007-03-10 06:35:47 -05009300
Yan Zheng2c47e6052009-06-27 21:07:35 -04009301 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07009302 if (!wc) {
9303 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009304 err = -ENOMEM;
9305 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07009306 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009307
Yan, Zhenga22285a2010-05-16 10:48:46 -04009308 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009309 if (IS_ERR(trans)) {
9310 err = PTR_ERR(trans);
9311 goto out_free;
9312 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00009313
Josef Bacik0568e822018-11-30 11:52:14 -05009314 err = btrfs_run_delayed_items(trans);
9315 if (err)
9316 goto out_end_trans;
9317
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009318 if (block_rsv)
9319 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009320
Josef Bacik83354f02018-11-30 11:52:13 -05009321 /*
9322 * This will help us catch people modifying the fs tree while we're
9323 * dropping it. It is unsafe to mess with the fs tree while it's being
9324 * dropped as we unlock the root node and parent nodes as we walk down
9325 * the tree, assuming nothing will change. If something does change
9326 * then we'll have stale information and drop references to blocks we've
9327 * already dropped.
9328 */
9329 set_bit(BTRFS_ROOT_DELETING, &root->state);
Chris Mason9f3a7422007-08-07 15:52:19 -04009330 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009331 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009332 path->nodes[level] = btrfs_lock_root_node(root);
David Sterba8bead252018-04-04 02:03:48 +02009333 btrfs_set_lock_blocking_write(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04009334 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009335 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009336 memset(&wc->update_progress, 0,
9337 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04009338 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04009339 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009340 memcpy(&wc->update_progress, &key,
9341 sizeof(wc->update_progress));
9342
Chris Mason6702ed42007-08-07 16:15:09 -04009343 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009344 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04009345 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009346 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
9347 path->lowest_level = 0;
9348 if (ret < 0) {
9349 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009350 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04009351 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009352 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009353
Chris Mason7d9eb122008-07-08 14:19:17 -04009354 /*
9355 * unlock our path, this is safe because only this
9356 * function is allowed to delete this snapshot
9357 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009358 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04009359
Yan Zheng2c47e6052009-06-27 21:07:35 -04009360 level = btrfs_header_level(root->node);
9361 while (1) {
9362 btrfs_tree_lock(path->nodes[level]);
David Sterba8bead252018-04-04 02:03:48 +02009363 btrfs_set_lock_blocking_write(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009364 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009365
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009366 ret = btrfs_lookup_extent_info(trans, fs_info,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009367 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05009368 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04009369 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009370 if (ret < 0) {
9371 err = ret;
9372 goto out_end_trans;
9373 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009374 BUG_ON(wc->refs[level] == 0);
9375
9376 if (level == root_item->drop_level)
9377 break;
9378
9379 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009380 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009381 WARN_ON(wc->refs[level] != 1);
9382 level--;
9383 }
9384 }
9385
Josef Bacik78c52d92019-02-06 15:46:14 -05009386 wc->restarted = test_bit(BTRFS_ROOT_DEAD_TREE, &root->state);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009387 wc->level = level;
9388 wc->shared_level = -1;
9389 wc->stage = DROP_REFERENCE;
9390 wc->update_ref = update_ref;
9391 wc->keep_locks = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009392 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009393
9394 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00009395
Yan Zheng2c47e6052009-06-27 21:07:35 -04009396 ret = walk_down_tree(trans, root, path, wc);
9397 if (ret < 0) {
9398 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04009399 break;
9400 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009401
9402 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
9403 if (ret < 0) {
9404 err = ret;
9405 break;
9406 }
9407
9408 if (ret > 0) {
9409 BUG_ON(wc->stage != DROP_REFERENCE);
9410 break;
9411 }
9412
9413 if (wc->stage == DROP_REFERENCE) {
Josef Bacikaea6f022019-02-06 15:46:15 -05009414 wc->drop_level = wc->level;
9415 btrfs_node_key_to_cpu(path->nodes[wc->drop_level],
9416 &wc->drop_progress,
9417 path->slots[wc->drop_level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009418 }
Josef Bacikaea6f022019-02-06 15:46:15 -05009419 btrfs_cpu_key_to_disk(&root_item->drop_progress,
9420 &wc->drop_progress);
9421 root_item->drop_level = wc->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009422
9423 BUG_ON(wc->level == 0);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009424 if (btrfs_should_end_transaction(trans) ||
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009425 (!for_reloc && btrfs_need_cleaner_sleep(fs_info))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009426 ret = btrfs_update_root(trans, tree_root,
9427 &root->root_key,
9428 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009429 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009430 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009431 err = ret;
9432 goto out_end_trans;
9433 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009434
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009435 btrfs_end_transaction_throttle(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009436 if (!for_reloc && btrfs_need_cleaner_sleep(fs_info)) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009437 btrfs_debug(fs_info,
9438 "drop snapshot early exit");
Josef Bacik3c8f2422013-07-15 11:57:06 -04009439 err = -EAGAIN;
9440 goto out_free;
9441 }
9442
Yan, Zhenga22285a2010-05-16 10:48:46 -04009443 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009444 if (IS_ERR(trans)) {
9445 err = PTR_ERR(trans);
9446 goto out_free;
9447 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009448 if (block_rsv)
9449 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04009450 }
Chris Mason20524f02007-03-10 06:35:47 -05009451 }
David Sterbab3b4aa72011-04-21 01:20:15 +02009452 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009453 if (err)
9454 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009455
Lu Fengqiab9ce7d2018-08-01 11:32:27 +08009456 ret = btrfs_del_root(trans, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009457 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009458 btrfs_abort_transaction(trans, ret);
Jeff Mahoneye19182c2017-12-04 13:11:45 -05009459 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009460 goto out_end_trans;
9461 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009462
Yan, Zheng76dda932009-09-21 16:00:26 -04009463 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00009464 ret = btrfs_find_root(tree_root, &root->root_key, path,
9465 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009466 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009467 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009468 err = ret;
9469 goto out_end_trans;
9470 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05009471 /* if we fail to delete the orphan item this time
9472 * around, it'll get picked up the next time.
9473 *
9474 * The most common failure here is just -ENOENT.
9475 */
9476 btrfs_del_orphan_item(trans, tree_root,
9477 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04009478 }
9479 }
9480
Miao Xie27cdeb72014-04-02 19:51:05 +08009481 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Josef Bacik2b9dbef2015-09-15 10:07:04 -04009482 btrfs_add_dropped_root(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009483 } else {
9484 free_extent_buffer(root->node);
9485 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00009486 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009487 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04009488 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009489out_end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009490 btrfs_end_transaction_throttle(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009491out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04009492 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04009493 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009494out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04009495 /*
9496 * So if we need to stop dropping the snapshot for whatever reason we
9497 * need to make sure to add it back to the dead root list so that we
9498 * keep trying to do the work later. This also cleans up roots if we
9499 * don't have it in the radix (like when we recover after a power fail
9500 * or unmount) so we don't leak memory.
9501 */
Thomas Meyer897ca812017-10-07 16:02:21 +02009502 if (!for_reloc && !root_dropped)
Josef Bacikd29a9f62013-07-17 19:30:20 -04009503 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08009504 if (err && err != -EAGAIN)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009505 btrfs_handle_fs_error(fs_info, err, NULL);
Jeff Mahoney2c536792011-10-03 23:22:41 -04009506 return err;
Chris Mason20524f02007-03-10 06:35:47 -05009507}
Chris Mason9078a3e2007-04-26 16:46:15 -04009508
Yan Zheng2c47e6052009-06-27 21:07:35 -04009509/*
9510 * drop subtree rooted at tree block 'node'.
9511 *
9512 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009513 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04009514 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04009515int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
9516 struct btrfs_root *root,
9517 struct extent_buffer *node,
9518 struct extent_buffer *parent)
9519{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009520 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009521 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009522 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009523 int level;
9524 int parent_level;
9525 int ret = 0;
9526 int wret;
9527
Yan Zheng2c47e6052009-06-27 21:07:35 -04009528 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
9529
Yan Zhengf82d02d2008-10-29 14:49:05 -04009530 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009531 if (!path)
9532 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009533
Yan Zheng2c47e6052009-06-27 21:07:35 -04009534 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009535 if (!wc) {
9536 btrfs_free_path(path);
9537 return -ENOMEM;
9538 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009539
Chris Masonb9447ef82009-03-09 11:45:38 -04009540 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009541 parent_level = btrfs_header_level(parent);
9542 extent_buffer_get(parent);
9543 path->nodes[parent_level] = parent;
9544 path->slots[parent_level] = btrfs_header_nritems(parent);
9545
Chris Masonb9447ef82009-03-09 11:45:38 -04009546 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009547 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009548 path->nodes[level] = node;
9549 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009550 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009551
9552 wc->refs[parent_level] = 1;
9553 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
9554 wc->level = level;
9555 wc->shared_level = -1;
9556 wc->stage = DROP_REFERENCE;
9557 wc->update_ref = 0;
9558 wc->keep_locks = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009559 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009560
9561 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009562 wret = walk_down_tree(trans, root, path, wc);
9563 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04009564 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009565 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009566 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009567
Yan Zheng2c47e6052009-06-27 21:07:35 -04009568 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009569 if (wret < 0)
9570 ret = wret;
9571 if (wret != 0)
9572 break;
9573 }
9574
Yan Zheng2c47e6052009-06-27 21:07:35 -04009575 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009576 btrfs_free_path(path);
9577 return ret;
9578}
9579
Jeff Mahoney6202df62016-06-22 18:54:22 -04009580static u64 update_block_group_flags(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04009581{
9582 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009583 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04009584
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009585 /*
9586 * if restripe for this chunk_type is on pick target profile and
9587 * return, otherwise do the usual balance
9588 */
Jeff Mahoney6202df62016-06-22 18:54:22 -04009589 stripped = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009590 if (stripped)
9591 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02009592
Jeff Mahoney6202df62016-06-22 18:54:22 -04009593 num_devices = fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05009594
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009595 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009596 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009597 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
9598
Chris Masonec44a352008-04-28 15:29:52 -04009599 if (num_devices == 1) {
9600 stripped |= BTRFS_BLOCK_GROUP_DUP;
9601 stripped = flags & ~stripped;
9602
9603 /* turn raid0 into single device chunks */
9604 if (flags & BTRFS_BLOCK_GROUP_RAID0)
9605 return stripped;
9606
9607 /* turn mirroring into duplication */
9608 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
9609 BTRFS_BLOCK_GROUP_RAID10))
9610 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04009611 } else {
9612 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04009613 if (flags & stripped)
9614 return flags;
9615
9616 stripped |= BTRFS_BLOCK_GROUP_DUP;
9617 stripped = flags & ~stripped;
9618
9619 /* switch duplicated blocks with raid1 */
9620 if (flags & BTRFS_BLOCK_GROUP_DUP)
9621 return stripped | BTRFS_BLOCK_GROUP_RAID1;
9622
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009623 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04009624 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009625
Chris Masonec44a352008-04-28 15:29:52 -04009626 return flags;
9627}
9628
Zhaolei868f4012015-08-05 16:43:27 +08009629static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04009630{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009631 struct btrfs_space_info *sinfo = cache->space_info;
9632 u64 num_bytes;
Qu Wenruo3ece54e2019-01-30 13:07:51 +08009633 u64 sinfo_used;
Miao Xie199c36e2011-07-15 10:34:36 +00009634 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009635 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04009636
Miao Xie199c36e2011-07-15 10:34:36 +00009637 /*
9638 * We need some metadata space and system metadata space for
9639 * allocating chunks in some corner cases until we force to set
9640 * it to be readonly.
9641 */
9642 if ((sinfo->flags &
9643 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
9644 !force)
Byongho Leeee221842015-12-15 01:42:10 +09009645 min_allocable_bytes = SZ_1M;
Miao Xie199c36e2011-07-15 10:34:36 +00009646 else
9647 min_allocable_bytes = 0;
9648
Yan, Zhengf0486c62010-05-16 10:46:25 -04009649 spin_lock(&sinfo->lock);
9650 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00009651
9652 if (cache->ro) {
Zhaolei868f4012015-08-05 16:43:27 +08009653 cache->ro++;
WuBo61cfea92011-07-26 03:30:11 +00009654 ret = 0;
9655 goto out;
9656 }
9657
Yan, Zhengf0486c62010-05-16 10:46:25 -04009658 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
9659 cache->bytes_super - btrfs_block_group_used(&cache->item);
Qu Wenruo3ece54e2019-01-30 13:07:51 +08009660 sinfo_used = btrfs_space_info_used(sinfo, true);
Chris Mason7d9eb122008-07-08 14:19:17 -04009661
Qu Wenruo3ece54e2019-01-30 13:07:51 +08009662 if (sinfo_used + num_bytes + min_allocable_bytes <=
9663 sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04009664 sinfo->bytes_readonly += num_bytes;
Zhaolei868f4012015-08-05 16:43:27 +08009665 cache->ro++;
Josef Bacik633c0aa2014-10-31 09:49:34 -04009666 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009667 ret = 0;
9668 }
WuBo61cfea92011-07-26 03:30:11 +00009669out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04009670 spin_unlock(&cache->lock);
9671 spin_unlock(&sinfo->lock);
Qu Wenruo3ece54e2019-01-30 13:07:51 +08009672 if (ret == -ENOSPC && btrfs_test_opt(cache->fs_info, ENOSPC_DEBUG)) {
9673 btrfs_info(cache->fs_info,
9674 "unable to make block group %llu ro",
9675 cache->key.objectid);
9676 btrfs_info(cache->fs_info,
9677 "sinfo_used=%llu bg_num_bytes=%llu min_allocable=%llu",
9678 sinfo_used, num_bytes, min_allocable_bytes);
9679 dump_space_info(cache->fs_info, cache->space_info, 0, 0);
9680 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009681 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04009682}
9683
Nikolay Borisovc83488a2018-06-20 15:49:14 +03009684int btrfs_inc_block_group_ro(struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009685
9686{
Nikolay Borisovc83488a2018-06-20 15:49:14 +03009687 struct btrfs_fs_info *fs_info = cache->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009688 struct btrfs_trans_handle *trans;
9689 u64 alloc_flags;
9690 int ret;
9691
Chris Mason1bbc6212015-04-06 12:46:08 -07009692again:
Jeff Mahoney5e00f192017-02-15 16:28:29 -05009693 trans = btrfs_join_transaction(fs_info->extent_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009694 if (IS_ERR(trans))
9695 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009696
Chris Mason1bbc6212015-04-06 12:46:08 -07009697 /*
9698 * we're not allowed to set block groups readonly after the dirty
9699 * block groups cache has started writing. If it already started,
9700 * back off and let this transaction commit
9701 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009702 mutex_lock(&fs_info->ro_block_group_mutex);
Josef Bacik3204d332015-09-24 10:46:10 -04009703 if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009704 u64 transid = trans->transid;
9705
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009706 mutex_unlock(&fs_info->ro_block_group_mutex);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009707 btrfs_end_transaction(trans);
Chris Mason1bbc6212015-04-06 12:46:08 -07009708
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009709 ret = btrfs_wait_for_commit(fs_info, transid);
Chris Mason1bbc6212015-04-06 12:46:08 -07009710 if (ret)
9711 return ret;
9712 goto again;
9713 }
9714
Chris Mason153c35b2015-05-19 18:54:41 -07009715 /*
9716 * if we are changing raid levels, try to allocate a corresponding
9717 * block group with the new raid level.
9718 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009719 alloc_flags = update_block_group_flags(fs_info, cache->flags);
Chris Mason153c35b2015-05-19 18:54:41 -07009720 if (alloc_flags != cache->flags) {
Nikolay Borisov01458822018-06-20 15:49:05 +03009721 ret = do_chunk_alloc(trans, alloc_flags,
Chris Mason153c35b2015-05-19 18:54:41 -07009722 CHUNK_ALLOC_FORCE);
9723 /*
9724 * ENOSPC is allowed here, we may have enough space
9725 * already allocated at the new raid level to
9726 * carry on
9727 */
9728 if (ret == -ENOSPC)
9729 ret = 0;
9730 if (ret < 0)
9731 goto out;
9732 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009733
Zhaolei868f4012015-08-05 16:43:27 +08009734 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009735 if (!ret)
9736 goto out;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009737 alloc_flags = get_alloc_profile(fs_info, cache->space_info->flags);
Nikolay Borisov01458822018-06-20 15:49:05 +03009738 ret = do_chunk_alloc(trans, alloc_flags, CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009739 if (ret < 0)
9740 goto out;
Zhaolei868f4012015-08-05 16:43:27 +08009741 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009742out:
Shaohua Li2f081082015-01-09 10:40:15 -08009743 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009744 alloc_flags = update_block_group_flags(fs_info, cache->flags);
David Sterba34441362016-10-04 19:34:27 +02009745 mutex_lock(&fs_info->chunk_mutex);
Nikolay Borisov451a2c12018-06-20 15:49:07 +03009746 check_system_chunk(trans, alloc_flags);
David Sterba34441362016-10-04 19:34:27 +02009747 mutex_unlock(&fs_info->chunk_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009748 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009749 mutex_unlock(&fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009750
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009751 btrfs_end_transaction(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009752 return ret;
9753}
9754
Nikolay Borisov43a7e992018-06-20 15:49:15 +03009755int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, u64 type)
Chris Masonc87f08c2011-02-16 13:57:04 -05009756{
Nikolay Borisov43a7e992018-06-20 15:49:15 +03009757 u64 alloc_flags = get_alloc_profile(trans->fs_info, type);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009758
Nikolay Borisov01458822018-06-20 15:49:05 +03009759 return do_chunk_alloc(trans, alloc_flags, CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05009760}
9761
Miao Xie6d07bce2011-01-05 10:07:31 +00009762/*
9763 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04009764 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00009765 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009766u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00009767{
9768 struct btrfs_block_group_cache *block_group;
9769 u64 free_bytes = 0;
9770 int factor;
9771
Nicholas D Steeves01327612016-05-19 21:18:45 -04009772 /* It's df, we don't care if it's racy */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009773 if (list_empty(&sinfo->ro_bgs))
9774 return 0;
9775
9776 spin_lock(&sinfo->lock);
9777 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00009778 spin_lock(&block_group->lock);
9779
9780 if (!block_group->ro) {
9781 spin_unlock(&block_group->lock);
9782 continue;
9783 }
9784
David Sterba46df06b2018-07-13 20:46:30 +02009785 factor = btrfs_bg_type_to_factor(block_group->flags);
Miao Xie6d07bce2011-01-05 10:07:31 +00009786 free_bytes += (block_group->key.offset -
9787 btrfs_block_group_used(&block_group->item)) *
9788 factor;
9789
9790 spin_unlock(&block_group->lock);
9791 }
Miao Xie6d07bce2011-01-05 10:07:31 +00009792 spin_unlock(&sinfo->lock);
9793
9794 return free_bytes;
9795}
9796
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009797void btrfs_dec_block_group_ro(struct btrfs_block_group_cache *cache)
Yan, Zhengf0486c62010-05-16 10:46:25 -04009798{
9799 struct btrfs_space_info *sinfo = cache->space_info;
9800 u64 num_bytes;
9801
9802 BUG_ON(!cache->ro);
9803
9804 spin_lock(&sinfo->lock);
9805 spin_lock(&cache->lock);
Zhaolei868f4012015-08-05 16:43:27 +08009806 if (!--cache->ro) {
9807 num_bytes = cache->key.offset - cache->reserved -
9808 cache->pinned - cache->bytes_super -
9809 btrfs_block_group_used(&cache->item);
9810 sinfo->bytes_readonly -= num_bytes;
9811 list_del_init(&cache->ro_list);
9812 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009813 spin_unlock(&cache->lock);
9814 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009815}
9816
Josef Bacikba1bf482009-09-11 16:11:19 -04009817/*
Andrea Gelmini52042d82018-11-28 12:05:13 +01009818 * Checks to see if it's even possible to relocate this block group.
Josef Bacikba1bf482009-09-11 16:11:19 -04009819 *
9820 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
9821 * ok to go ahead and try.
9822 */
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009823int btrfs_can_relocate(struct btrfs_fs_info *fs_info, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04009824{
Zheng Yan1a40e232008-09-26 10:09:34 -04009825 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04009826 struct btrfs_space_info *space_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009827 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacikba1bf482009-09-11 16:11:19 -04009828 struct btrfs_device *device;
liubocdcb7252011-08-03 10:15:25 +00009829 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04009830 u64 dev_min = 1;
9831 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009832 u64 target;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009833 int debug;
liubocdcb7252011-08-03 10:15:25 +00009834 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04009835 int full = 0;
9836 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05009837
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009838 debug = btrfs_test_opt(fs_info, ENOSPC_DEBUG);
Qu Wenruo0305bc22016-03-23 11:38:17 +08009839
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009840 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04009841
Josef Bacikba1bf482009-09-11 16:11:19 -04009842 /* odd, couldn't find the block group, leave it alone */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009843 if (!block_group) {
9844 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009845 btrfs_warn(fs_info,
Qu Wenruo0305bc22016-03-23 11:38:17 +08009846 "can't find block group for bytenr %llu",
9847 bytenr);
Josef Bacikba1bf482009-09-11 16:11:19 -04009848 return -1;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009849 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009850
liubocdcb7252011-08-03 10:15:25 +00009851 min_free = btrfs_block_group_used(&block_group->item);
9852
Josef Bacikba1bf482009-09-11 16:11:19 -04009853 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00009854 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04009855 goto out;
Chris Mason323da792008-05-09 11:46:48 -04009856
Josef Bacikba1bf482009-09-11 16:11:19 -04009857 space_info = block_group->space_info;
9858 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04009859
Josef Bacikba1bf482009-09-11 16:11:19 -04009860 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04009861
Josef Bacikba1bf482009-09-11 16:11:19 -04009862 /*
9863 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04009864 * relocate it unless we're able to allocate a new chunk below.
9865 *
9866 * Otherwise, we need to make sure we have room in the space to handle
9867 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04009868 */
Chris Mason7ce618d2009-09-22 14:48:44 -04009869 if ((space_info->total_bytes != block_group->key.offset) &&
Liu Bo41361352017-02-13 15:42:21 -08009870 (btrfs_space_info_used(space_info, false) + min_free <
9871 space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04009872 spin_unlock(&space_info->lock);
9873 goto out;
9874 }
9875 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009876
Josef Bacikba1bf482009-09-11 16:11:19 -04009877 /*
9878 * ok we don't have enough space, but maybe we have free space on our
9879 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009880 * alloc devices and guess if we have enough space. if this block
9881 * group is going to be restriped, run checks against the target
9882 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04009883 */
9884 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05009885
liubocdcb7252011-08-03 10:15:25 +00009886 /*
9887 * index:
9888 * 0: raid10
9889 * 1: raid1
9890 * 2: dup
9891 * 3: raid0
9892 * 4: single
9893 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009894 target = get_restripe_target(fs_info, block_group->flags);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009895 if (target) {
Qu Wenruo3e72ee82018-01-30 18:20:45 +08009896 index = btrfs_bg_flags_to_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009897 } else {
9898 /*
9899 * this is just a balance, so if we were marked as full
9900 * we know there is no space for a new chunk
9901 */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009902 if (full) {
9903 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009904 btrfs_warn(fs_info,
9905 "no space to alloc new chunk for block group %llu",
9906 block_group->key.objectid);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009907 goto out;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009908 }
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009909
Qu Wenruo3e72ee82018-01-30 18:20:45 +08009910 index = btrfs_bg_flags_to_raid_index(block_group->flags);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009911 }
9912
Miao Xiee6ec7162013-01-17 05:38:51 +00009913 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00009914 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04009915 /* Divide by 2 */
9916 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009917 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00009918 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00009919 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04009920 /* Multiply by 2 */
9921 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009922 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00009923 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01009924 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00009925 }
9926
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009927 mutex_lock(&fs_info->chunk_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04009928 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00009929 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04009930
Josef Bacikba1bf482009-09-11 16:11:19 -04009931 /*
9932 * check to make sure we can actually find a chunk with enough
9933 * space to fit our block group in.
9934 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01009935 if (device->total_bytes > device->bytes_used + min_free &&
Anand Jain401e29c2017-12-04 12:54:55 +08009936 !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Nikolay Borisov60dfdf22019-03-27 14:24:14 +02009937 ret = find_free_dev_extent(device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00009938 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009939 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009940 dev_nr++;
9941
9942 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009943 break;
liubocdcb7252011-08-03 10:15:25 +00009944
Josef Bacikba1bf482009-09-11 16:11:19 -04009945 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009946 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009947 }
Qu Wenruo0305bc22016-03-23 11:38:17 +08009948 if (debug && ret == -1)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009949 btrfs_warn(fs_info,
9950 "no space to allocate a new chunk for block group %llu",
9951 block_group->key.objectid);
9952 mutex_unlock(&fs_info->chunk_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05009953out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009954 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009955 return ret;
9956}
9957
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009958static int find_first_block_group(struct btrfs_fs_info *fs_info,
9959 struct btrfs_path *path,
9960 struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009961{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009962 struct btrfs_root *root = fs_info->extent_root;
Chris Mason925baed2008-06-25 16:01:30 -04009963 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009964 struct btrfs_key found_key;
9965 struct extent_buffer *leaf;
Qu Wenruo514c7dc2018-08-01 10:37:16 +08009966 struct btrfs_block_group_item bg;
9967 u64 flags;
Chris Mason0b86a832008-03-24 15:01:56 -04009968 int slot;
9969
9970 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9971 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009972 goto out;
9973
Chris Masond3977122009-01-05 21:25:51 -05009974 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009975 slot = path->slots[0];
9976 leaf = path->nodes[0];
9977 if (slot >= btrfs_header_nritems(leaf)) {
9978 ret = btrfs_next_leaf(root, path);
9979 if (ret == 0)
9980 continue;
9981 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009982 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009983 break;
9984 }
9985 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9986
9987 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009988 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
Liu Bo6fb37b72016-06-22 18:31:27 -07009989 struct extent_map_tree *em_tree;
9990 struct extent_map *em;
9991
9992 em_tree = &root->fs_info->mapping_tree.map_tree;
9993 read_lock(&em_tree->lock);
9994 em = lookup_extent_mapping(em_tree, found_key.objectid,
9995 found_key.offset);
9996 read_unlock(&em_tree->lock);
9997 if (!em) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009998 btrfs_err(fs_info,
Liu Bo6fb37b72016-06-22 18:31:27 -07009999 "logical %llu len %llu found bg but no related chunk",
10000 found_key.objectid, found_key.offset);
10001 ret = -ENOENT;
Qu Wenruo514c7dc2018-08-01 10:37:16 +080010002 } else if (em->start != found_key.objectid ||
10003 em->len != found_key.offset) {
10004 btrfs_err(fs_info,
10005 "block group %llu len %llu mismatch with chunk %llu len %llu",
10006 found_key.objectid, found_key.offset,
10007 em->start, em->len);
10008 ret = -EUCLEAN;
Liu Bo6fb37b72016-06-22 18:31:27 -070010009 } else {
Qu Wenruo514c7dc2018-08-01 10:37:16 +080010010 read_extent_buffer(leaf, &bg,
10011 btrfs_item_ptr_offset(leaf, slot),
10012 sizeof(bg));
10013 flags = btrfs_block_group_flags(&bg) &
10014 BTRFS_BLOCK_GROUP_TYPE_MASK;
10015
10016 if (flags != (em->map_lookup->type &
10017 BTRFS_BLOCK_GROUP_TYPE_MASK)) {
10018 btrfs_err(fs_info,
10019"block group %llu len %llu type flags 0x%llx mismatch with chunk type flags 0x%llx",
10020 found_key.objectid,
10021 found_key.offset, flags,
10022 (BTRFS_BLOCK_GROUP_TYPE_MASK &
10023 em->map_lookup->type));
10024 ret = -EUCLEAN;
10025 } else {
10026 ret = 0;
10027 }
Liu Bo6fb37b72016-06-22 18:31:27 -070010028 }
Josef Bacik187ee582016-08-18 15:30:06 -040010029 free_extent_map(em);
Chris Mason925baed2008-06-25 16:01:30 -040010030 goto out;
10031 }
Chris Mason0b86a832008-03-24 15:01:56 -040010032 path->slots[0]++;
10033 }
Chris Mason925baed2008-06-25 16:01:30 -040010034out:
Chris Mason0b86a832008-03-24 15:01:56 -040010035 return ret;
10036}
10037
Josef Bacik0af3d002010-06-21 14:48:16 -040010038void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
10039{
10040 struct btrfs_block_group_cache *block_group;
10041 u64 last = 0;
10042
10043 while (1) {
10044 struct inode *inode;
10045
10046 block_group = btrfs_lookup_first_block_group(info, last);
10047 while (block_group) {
Josef Bacik3aa7c7a2018-09-12 10:45:45 -040010048 wait_block_group_cache_done(block_group);
Josef Bacik0af3d002010-06-21 14:48:16 -040010049 spin_lock(&block_group->lock);
10050 if (block_group->iref)
10051 break;
10052 spin_unlock(&block_group->lock);
David Sterbaf87b7eb2019-03-20 12:01:07 +010010053 block_group = next_block_group(block_group);
Josef Bacik0af3d002010-06-21 14:48:16 -040010054 }
10055 if (!block_group) {
10056 if (last == 0)
10057 break;
10058 last = 0;
10059 continue;
10060 }
10061
10062 inode = block_group->inode;
10063 block_group->iref = 0;
10064 block_group->inode = NULL;
10065 spin_unlock(&block_group->lock);
Liu Bof3bca802016-07-20 17:33:44 -070010066 ASSERT(block_group->io_ctl.inode == NULL);
Josef Bacik0af3d002010-06-21 14:48:16 -040010067 iput(inode);
10068 last = block_group->key.objectid + block_group->key.offset;
10069 btrfs_put_block_group(block_group);
10070 }
10071}
10072
Filipe Manana5cdd7db2017-02-01 22:39:50 +000010073/*
10074 * Must be called only after stopping all workers, since we could have block
10075 * group caching kthreads running, and therefore they could race with us if we
10076 * freed the block groups before stopping them.
10077 */
Zheng Yan1a40e232008-09-26 10:09:34 -040010078int btrfs_free_block_groups(struct btrfs_fs_info *info)
10079{
10080 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -040010081 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -040010082 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -040010083 struct rb_node *n;
10084
Josef Bacik9e351cc2014-03-13 15:42:13 -040010085 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -040010086 while (!list_empty(&info->caching_block_groups)) {
10087 caching_ctl = list_entry(info->caching_block_groups.next,
10088 struct btrfs_caching_control, list);
10089 list_del(&caching_ctl->list);
10090 put_caching_control(caching_ctl);
10091 }
Josef Bacik9e351cc2014-03-13 15:42:13 -040010092 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -040010093
Josef Bacik47ab2a62014-09-18 11:20:02 -040010094 spin_lock(&info->unused_bgs_lock);
10095 while (!list_empty(&info->unused_bgs)) {
10096 block_group = list_first_entry(&info->unused_bgs,
10097 struct btrfs_block_group_cache,
10098 bg_list);
10099 list_del_init(&block_group->bg_list);
10100 btrfs_put_block_group(block_group);
10101 }
10102 spin_unlock(&info->unused_bgs_lock);
10103
Zheng Yan1a40e232008-09-26 10:09:34 -040010104 spin_lock(&info->block_group_cache_lock);
10105 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
10106 block_group = rb_entry(n, struct btrfs_block_group_cache,
10107 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -040010108 rb_erase(&block_group->cache_node,
10109 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +000010110 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -040010111 spin_unlock(&info->block_group_cache_lock);
10112
Josef Bacik80eb2342008-10-29 14:49:05 -040010113 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -040010114 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -040010115 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -050010116
Josef Bacik3c148742011-02-02 15:53:47 +000010117 /*
10118 * We haven't cached this block group, which means we could
10119 * possibly have excluded extents on this block group.
10120 */
Josef Bacik36cce922013-08-05 11:15:21 -040010121 if (block_group->cached == BTRFS_CACHE_NO ||
10122 block_group->cached == BTRFS_CACHE_ERROR)
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010123 free_excluded_extents(block_group);
Josef Bacik3c148742011-02-02 15:53:47 +000010124
Josef Bacik817d52f2009-07-13 21:29:25 -040010125 btrfs_remove_free_space_cache(block_group);
Filipe Manana5cdd7db2017-02-01 22:39:50 +000010126 ASSERT(block_group->cached != BTRFS_CACHE_STARTED);
Liu Bof3bca802016-07-20 17:33:44 -070010127 ASSERT(list_empty(&block_group->dirty_list));
10128 ASSERT(list_empty(&block_group->io_list));
10129 ASSERT(list_empty(&block_group->bg_list));
10130 ASSERT(atomic_read(&block_group->count) == 1);
Josef Bacik11dfe352009-11-13 20:12:59 +000010131 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -040010132
10133 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010134 }
10135 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -040010136
10137 /* now that all the block groups are freed, go through and
10138 * free all the space_info structs. This is only called during
10139 * the final stages of unmount, and so we know nobody is
10140 * using them. We call synchronize_rcu() once before we start,
10141 * just to be on the safe side.
10142 */
10143 synchronize_rcu();
10144
Yan, Zheng8929ecfa2010-05-16 10:49:58 -040010145 release_global_block_rsv(info);
10146
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010147 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010148 int i;
10149
Chris Mason4184ea72009-03-10 12:39:20 -040010150 space_info = list_entry(info->space_info.next,
10151 struct btrfs_space_info,
10152 list);
Josef Bacikd555b6c32016-03-25 13:25:51 -040010153
10154 /*
10155 * Do not hide this behind enospc_debug, this is actually
10156 * important and indicates a real bug if this happens.
10157 */
10158 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +000010159 space_info->bytes_reserved > 0 ||
Josef Bacikd555b6c32016-03-25 13:25:51 -040010160 space_info->bytes_may_use > 0))
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -040010161 dump_space_info(info, space_info, 0, 0);
Chris Mason4184ea72009-03-10 12:39:20 -040010162 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010163 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
10164 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010165 kobj = space_info->block_group_kobjs[i];
10166 space_info->block_group_kobjs[i] = NULL;
10167 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010168 kobject_del(kobj);
10169 kobject_put(kobj);
10170 }
10171 }
10172 kobject_del(&space_info->kobj);
10173 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -040010174 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010175 return 0;
10176}
10177
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010178/* link_block_group will queue up kobjects to add when we're reclaim-safe */
10179void btrfs_add_raid_kobjects(struct btrfs_fs_info *fs_info)
10180{
10181 struct btrfs_space_info *space_info;
10182 struct raid_kobject *rkobj;
10183 LIST_HEAD(list);
10184 int index;
10185 int ret = 0;
10186
10187 spin_lock(&fs_info->pending_raid_kobjs_lock);
10188 list_splice_init(&fs_info->pending_raid_kobjs, &list);
10189 spin_unlock(&fs_info->pending_raid_kobjs_lock);
10190
10191 list_for_each_entry(rkobj, &list, list) {
10192 space_info = __find_space_info(fs_info, rkobj->flags);
10193 index = btrfs_bg_flags_to_raid_index(rkobj->flags);
10194
10195 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
10196 "%s", get_raid_name(index));
10197 if (ret) {
10198 kobject_put(&rkobj->kobj);
10199 break;
10200 }
10201 }
10202 if (ret)
10203 btrfs_warn(fs_info,
10204 "failed to add kobject for block cache, ignoring");
10205}
10206
Nikolay Borisovc434d212017-08-21 12:43:50 +030010207static void link_block_group(struct btrfs_block_group_cache *cache)
Yan, Zhengb742bb822010-05-16 10:46:24 -040010208{
Nikolay Borisovc434d212017-08-21 12:43:50 +030010209 struct btrfs_space_info *space_info = cache->space_info;
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010210 struct btrfs_fs_info *fs_info = cache->fs_info;
Qu Wenruo3e72ee82018-01-30 18:20:45 +080010211 int index = btrfs_bg_flags_to_raid_index(cache->flags);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010212 bool first = false;
Yan, Zhengb742bb822010-05-16 10:46:24 -040010213
10214 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010215 if (list_empty(&space_info->block_groups[index]))
10216 first = true;
10217 list_add_tail(&cache->list, &space_info->block_groups[index]);
10218 up_write(&space_info->groups_sem);
10219
10220 if (first) {
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010221 struct raid_kobject *rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
10222 if (!rkobj) {
10223 btrfs_warn(cache->fs_info,
10224 "couldn't alloc memory for raid level kobject");
10225 return;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010226 }
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010227 rkobj->flags = cache->flags;
10228 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
10229
10230 spin_lock(&fs_info->pending_raid_kobjs_lock);
10231 list_add_tail(&rkobj->list, &fs_info->pending_raid_kobjs);
10232 spin_unlock(&fs_info->pending_raid_kobjs_lock);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010233 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010234 }
Yan, Zhengb742bb822010-05-16 10:46:24 -040010235}
10236
Miao Xie920e4a52014-01-15 20:00:55 +080010237static struct btrfs_block_group_cache *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010238btrfs_create_block_group_cache(struct btrfs_fs_info *fs_info,
10239 u64 start, u64 size)
Miao Xie920e4a52014-01-15 20:00:55 +080010240{
10241 struct btrfs_block_group_cache *cache;
10242
10243 cache = kzalloc(sizeof(*cache), GFP_NOFS);
10244 if (!cache)
10245 return NULL;
10246
10247 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
10248 GFP_NOFS);
10249 if (!cache->free_space_ctl) {
10250 kfree(cache);
10251 return NULL;
10252 }
10253
10254 cache->key.objectid = start;
10255 cache->key.offset = size;
10256 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
10257
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010258 cache->fs_info = fs_info;
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +030010259 cache->full_stripe_len = btrfs_full_stripe_len(fs_info, start);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010260 set_free_space_tree_thresholds(cache);
10261
Miao Xie920e4a52014-01-15 20:00:55 +080010262 atomic_set(&cache->count, 1);
10263 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +080010264 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +080010265 INIT_LIST_HEAD(&cache->list);
10266 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010267 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -040010268 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -050010269 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -070010270 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +080010271 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +000010272 atomic_set(&cache->trimming, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -070010273 mutex_init(&cache->free_space_lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +080010274 btrfs_init_full_stripe_locks_tree(&cache->full_stripe_locks_root);
Miao Xie920e4a52014-01-15 20:00:55 +080010275
10276 return cache;
10277}
10278
Qu Wenruo7ef49512018-08-01 10:37:17 +080010279
10280/*
10281 * Iterate all chunks and verify that each of them has the corresponding block
10282 * group
10283 */
10284static int check_chunk_block_group_mappings(struct btrfs_fs_info *fs_info)
10285{
10286 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
10287 struct extent_map *em;
10288 struct btrfs_block_group_cache *bg;
10289 u64 start = 0;
10290 int ret = 0;
10291
10292 while (1) {
10293 read_lock(&map_tree->map_tree.lock);
10294 /*
10295 * lookup_extent_mapping will return the first extent map
10296 * intersecting the range, so setting @len to 1 is enough to
10297 * get the first chunk.
10298 */
10299 em = lookup_extent_mapping(&map_tree->map_tree, start, 1);
10300 read_unlock(&map_tree->map_tree.lock);
10301 if (!em)
10302 break;
10303
10304 bg = btrfs_lookup_block_group(fs_info, em->start);
10305 if (!bg) {
10306 btrfs_err(fs_info,
10307 "chunk start=%llu len=%llu doesn't have corresponding block group",
10308 em->start, em->len);
10309 ret = -EUCLEAN;
10310 free_extent_map(em);
10311 break;
10312 }
10313 if (bg->key.objectid != em->start ||
10314 bg->key.offset != em->len ||
10315 (bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK) !=
10316 (em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK)) {
10317 btrfs_err(fs_info,
10318"chunk start=%llu len=%llu flags=0x%llx doesn't match block group start=%llu len=%llu flags=0x%llx",
10319 em->start, em->len,
10320 em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK,
10321 bg->key.objectid, bg->key.offset,
10322 bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK);
10323 ret = -EUCLEAN;
10324 free_extent_map(em);
10325 btrfs_put_block_group(bg);
10326 break;
10327 }
10328 start = em->start + em->len;
10329 free_extent_map(em);
10330 btrfs_put_block_group(bg);
10331 }
10332 return ret;
10333}
10334
Jeff Mahoney5b4aace2016-06-21 10:40:19 -040010335int btrfs_read_block_groups(struct btrfs_fs_info *info)
Chris Mason9078a3e2007-04-26 16:46:15 -040010336{
10337 struct btrfs_path *path;
10338 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010339 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -040010340 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -040010341 struct btrfs_key key;
10342 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -040010343 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -040010344 int need_clear = 0;
10345 u64 cache_gen;
Liu Bo49303382016-08-25 18:08:27 -070010346 u64 feature;
10347 int mixed;
10348
10349 feature = btrfs_super_incompat_flags(info->super_copy);
10350 mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS);
Chris Mason96b51792007-10-15 16:15:19 -040010351
Chris Mason9078a3e2007-04-26 16:46:15 -040010352 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -040010353 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010354 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -040010355 path = btrfs_alloc_path();
10356 if (!path)
10357 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +010010358 path->reada = READA_FORWARD;
Chris Mason9078a3e2007-04-26 16:46:15 -040010359
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010360 cache_gen = btrfs_super_cache_generation(info->super_copy);
10361 if (btrfs_test_opt(info, SPACE_CACHE) &&
10362 btrfs_super_generation(info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -040010363 need_clear = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010364 if (btrfs_test_opt(info, CLEAR_CACHE))
Josef Bacik88c2ba32010-09-21 14:21:34 -040010365 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -040010366
Chris Masond3977122009-01-05 21:25:51 -050010367 while (1) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010368 ret = find_first_block_group(info, path, &key);
Yan, Zhengb742bb822010-05-16 10:46:24 -040010369 if (ret > 0)
10370 break;
Chris Mason0b86a832008-03-24 15:01:56 -040010371 if (ret != 0)
10372 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +080010373
Chris Mason5f39d392007-10-15 16:14:19 -040010374 leaf = path->nodes[0];
10375 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +080010376
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010377 cache = btrfs_create_block_group_cache(info, found_key.objectid,
Miao Xie920e4a52014-01-15 20:00:55 +080010378 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -040010379 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -040010380 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -040010381 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -040010382 }
Josef Bacik96303082009-07-13 21:29:25 -040010383
Liu Bocf7c1ef2012-07-06 03:31:34 -060010384 if (need_clear) {
10385 /*
10386 * When we mount with old space cache, we need to
10387 * set BTRFS_DC_CLEAR and set dirty flag.
10388 *
10389 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
10390 * truncate the old free space cache inode and
10391 * setup a new one.
10392 * b) Setting 'dirty flag' makes sure that we flush
10393 * the new space cache info onto disk.
10394 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010395 if (btrfs_test_opt(info, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -050010396 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -060010397 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010398
Chris Mason5f39d392007-10-15 16:14:19 -040010399 read_extent_buffer(leaf, &cache->item,
10400 btrfs_item_ptr_offset(leaf, path->slots[0]),
10401 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +080010402 cache->flags = btrfs_block_group_flags(&cache->item);
Liu Bo49303382016-08-25 18:08:27 -070010403 if (!mixed &&
10404 ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) &&
10405 (cache->flags & BTRFS_BLOCK_GROUP_DATA))) {
10406 btrfs_err(info,
10407"bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups",
10408 cache->key.objectid);
10409 ret = -EINVAL;
10410 goto error;
10411 }
Chris Mason0b86a832008-03-24 15:01:56 -040010412
Chris Mason9078a3e2007-04-26 16:46:15 -040010413 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +020010414 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +080010415
Josef Bacik817d52f2009-07-13 21:29:25 -040010416 /*
Josef Bacik3c148742011-02-02 15:53:47 +000010417 * We need to exclude the super stripes now so that the space
10418 * info has super bytes accounted for, otherwise we'll think
10419 * we have more space than we actually do.
10420 */
Nikolay Borisov3c4da652018-06-20 15:49:09 +030010421 ret = exclude_super_stripes(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010422 if (ret) {
10423 /*
10424 * We may have excluded something, so call this just in
10425 * case.
10426 */
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010427 free_excluded_extents(cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010428 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010429 goto error;
10430 }
Josef Bacik3c148742011-02-02 15:53:47 +000010431
10432 /*
Josef Bacik817d52f2009-07-13 21:29:25 -040010433 * check for two cases, either we are full, and therefore
10434 * don't need to bother with the caching work since we won't
10435 * find any space, or we are empty, and we can just add all
Andrea Gelmini52042d82018-11-28 12:05:13 +010010436 * the space in and be done with it. This saves us _a_lot_ of
Josef Bacik817d52f2009-07-13 21:29:25 -040010437 * time, particularly in the full case.
10438 */
10439 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -040010440 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010441 cache->cached = BTRFS_CACHE_FINISHED;
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010442 free_excluded_extents(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010443 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -040010444 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010445 cache->cached = BTRFS_CACHE_FINISHED;
Nikolay Borisov4457c1c2018-05-10 15:44:45 +030010446 add_new_free_space(cache, found_key.objectid,
Josef Bacik817d52f2009-07-13 21:29:25 -040010447 found_key.objectid +
10448 found_key.offset);
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010449 free_excluded_extents(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010450 }
Chris Mason96b51792007-10-15 16:15:19 -040010451
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010452 ret = btrfs_add_block_group_cache(info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010453 if (ret) {
10454 btrfs_remove_free_space_cache(cache);
10455 btrfs_put_block_group(cache);
10456 goto error;
10457 }
10458
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010459 trace_btrfs_add_block_group(info, cache, 0);
Nikolay Borisovd2006e62017-05-22 09:35:50 +030010460 update_space_info(info, cache->flags, found_key.offset,
10461 btrfs_block_group_used(&cache->item),
10462 cache->bytes_super, &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010463
Chris Mason6324fbf2008-03-24 15:01:59 -040010464 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -040010465
Nikolay Borisovc434d212017-08-21 12:43:50 +030010466 link_block_group(cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010467
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010468 set_avail_alloc_bits(info, cache->flags);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010469 if (btrfs_chunk_readonly(info, cache->key.objectid)) {
Zhaolei868f4012015-08-05 16:43:27 +080010470 inc_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010471 } else if (btrfs_block_group_used(&cache->item) == 0) {
Qu Wenruo031f24d2018-05-22 16:43:47 +080010472 ASSERT(list_empty(&cache->bg_list));
10473 btrfs_mark_bg_unused(cache);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010474 }
Chris Mason9078a3e2007-04-26 16:46:15 -040010475 }
Yan, Zhengb742bb822010-05-16 10:46:24 -040010476
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010477 list_for_each_entry_rcu(space_info, &info->space_info, list) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010478 if (!(get_alloc_profile(info, space_info->flags) &
Yan, Zhengb742bb822010-05-16 10:46:24 -040010479 (BTRFS_BLOCK_GROUP_RAID10 |
10480 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -050010481 BTRFS_BLOCK_GROUP_RAID5 |
10482 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb822010-05-16 10:46:24 -040010483 BTRFS_BLOCK_GROUP_DUP)))
10484 continue;
10485 /*
10486 * avoid allocating from un-mirrored block group if there are
10487 * mirrored block groups.
10488 */
chandan1095cc02013-07-16 12:28:56 +053010489 list_for_each_entry(cache,
10490 &space_info->block_groups[BTRFS_RAID_RAID0],
10491 list)
Zhaolei868f4012015-08-05 16:43:27 +080010492 inc_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +053010493 list_for_each_entry(cache,
10494 &space_info->block_groups[BTRFS_RAID_SINGLE],
10495 list)
Zhaolei868f4012015-08-05 16:43:27 +080010496 inc_block_group_ro(cache, 1);
Yan, Zhengb742bb822010-05-16 10:46:24 -040010497 }
Yan, Zhengf0486c62010-05-16 10:46:25 -040010498
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010499 btrfs_add_raid_kobjects(info);
Yan, Zhengf0486c62010-05-16 10:46:25 -040010500 init_global_block_rsv(info);
Qu Wenruo7ef49512018-08-01 10:37:17 +080010501 ret = check_chunk_block_group_mappings(info);
Chris Mason0b86a832008-03-24 15:01:56 -040010502error:
Chris Mason9078a3e2007-04-26 16:46:15 -040010503 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -040010504 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010505}
Chris Mason6324fbf2008-03-24 15:01:59 -040010506
Nikolay Borisov6c686b32018-02-07 17:55:40 +020010507void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans)
Josef Bacikea658ba2012-09-11 16:57:25 -040010508{
Nikolay Borisov6c686b32018-02-07 17:55:40 +020010509 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacik545e3362018-09-28 07:18:02 -040010510 struct btrfs_block_group_cache *block_group;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010511 struct btrfs_root *extent_root = fs_info->extent_root;
Josef Bacikea658ba2012-09-11 16:57:25 -040010512 struct btrfs_block_group_item item;
10513 struct btrfs_key key;
10514 int ret = 0;
10515
Filipe Manana5ce55552018-10-12 10:03:55 +010010516 if (!trans->can_flush_pending_bgs)
10517 return;
10518
Josef Bacik545e3362018-09-28 07:18:02 -040010519 while (!list_empty(&trans->new_bgs)) {
10520 block_group = list_first_entry(&trans->new_bgs,
10521 struct btrfs_block_group_cache,
10522 bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010523 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +000010524 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -040010525
10526 spin_lock(&block_group->lock);
10527 memcpy(&item, &block_group->item, sizeof(item));
10528 memcpy(&key, &block_group->key, sizeof(key));
10529 spin_unlock(&block_group->lock);
10530
10531 ret = btrfs_insert_item(trans, extent_root, &key, &item,
10532 sizeof(item));
10533 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010534 btrfs_abort_transaction(trans, ret);
Nikolay Borisov97aff912018-07-20 19:37:53 +030010535 ret = btrfs_finish_chunk_alloc(trans, key.objectid, key.offset);
Josef Bacik6df9a952013-06-27 13:22:46 -040010536 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010537 btrfs_abort_transaction(trans, ret);
Nikolay Borisove4e07112018-05-10 15:44:41 +030010538 add_block_group_free_space(trans, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010539 /* already aborted the transaction if it failed. */
Filipe Mananac92f6be2014-11-26 15:28:55 +000010540next:
Josef Bacikba2c4d42018-12-03 10:20:33 -050010541 btrfs_delayed_refs_rsv_release(fs_info, 1);
Filipe Mananac92f6be2014-11-26 15:28:55 +000010542 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010543 }
Filipe Manana5ce55552018-10-12 10:03:55 +010010544 btrfs_trans_release_chunk_metadata(trans);
Josef Bacikea658ba2012-09-11 16:57:25 -040010545}
10546
Nikolay Borisove7e02092018-06-20 15:48:55 +030010547int btrfs_make_block_group(struct btrfs_trans_handle *trans, u64 bytes_used,
Nikolay Borisov01744842017-07-27 14:22:11 +030010548 u64 type, u64 chunk_offset, u64 size)
Chris Mason6324fbf2008-03-24 15:01:59 -040010549{
Nikolay Borisove7e02092018-06-20 15:48:55 +030010550 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -040010551 struct btrfs_block_group_cache *cache;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010552 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -040010553
David Sterba90787762019-03-20 13:28:05 +010010554 btrfs_set_log_full_commit(trans);
Chris Masone02119d2008-09-05 16:13:11 -040010555
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010556 cache = btrfs_create_block_group_cache(fs_info, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -040010557 if (!cache)
10558 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +080010559
Chris Mason6324fbf2008-03-24 15:01:59 -040010560 btrfs_set_block_group_used(&cache->item, bytes_used);
Nikolay Borisov01744842017-07-27 14:22:11 +030010561 btrfs_set_block_group_chunk_objectid(&cache->item,
10562 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
Chris Mason6324fbf2008-03-24 15:01:59 -040010563 btrfs_set_block_group_flags(&cache->item, type);
10564
Miao Xie920e4a52014-01-15 20:00:55 +080010565 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -040010566 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010567 cache->cached = BTRFS_CACHE_FINISHED;
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010568 cache->needs_free_space = 1;
Nikolay Borisov3c4da652018-06-20 15:49:09 +030010569 ret = exclude_super_stripes(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010570 if (ret) {
10571 /*
10572 * We may have excluded something, so call this just in
10573 * case.
10574 */
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010575 free_excluded_extents(cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010576 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010577 return ret;
10578 }
Josef Bacik96303082009-07-13 21:29:25 -040010579
Nikolay Borisov4457c1c2018-05-10 15:44:45 +030010580 add_new_free_space(cache, chunk_offset, chunk_offset + size);
Josef Bacik817d52f2009-07-13 21:29:25 -040010581
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010582 free_excluded_extents(cache);
Yan Zheng11833d62009-09-11 16:11:19 -040010583
Josef Bacikd0bd4562015-09-23 14:54:14 -040010584#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010585 if (btrfs_should_fragment_free_space(cache)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -040010586 u64 new_bytes_used = size - bytes_used;
10587
10588 bytes_used += new_bytes_used >> 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010589 fragment_free_space(cache);
Josef Bacikd0bd4562015-09-23 14:54:14 -040010590 }
10591#endif
Filipe Manana2e6e5182015-05-12 00:28:11 +010010592 /*
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010593 * Ensure the corresponding space_info object is created and
10594 * assigned to our block group. We want our bg to be added to the rbtree
10595 * with its ->space_info set.
Filipe Manana2e6e5182015-05-12 00:28:11 +010010596 */
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010597 cache->space_info = __find_space_info(fs_info, cache->flags);
Jeff Mahoneydc2d3002018-03-20 15:25:25 -040010598 ASSERT(cache->space_info);
Filipe Manana2e6e5182015-05-12 00:28:11 +010010599
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010600 ret = btrfs_add_block_group_cache(fs_info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010601 if (ret) {
10602 btrfs_remove_free_space_cache(cache);
10603 btrfs_put_block_group(cache);
10604 return ret;
10605 }
10606
Filipe Manana2e6e5182015-05-12 00:28:11 +010010607 /*
10608 * Now that our block group has its ->space_info set and is inserted in
10609 * the rbtree, update the space info's counters.
10610 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010611 trace_btrfs_add_block_group(fs_info, cache, 1);
Nikolay Borisovd2006e62017-05-22 09:35:50 +030010612 update_space_info(fs_info, cache->flags, size, bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -040010613 cache->bytes_super, &cache->space_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010614 update_global_block_rsv(fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -040010615
Nikolay Borisovc434d212017-08-21 12:43:50 +030010616 link_block_group(cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010617
Josef Bacik47ab2a62014-09-18 11:20:02 -040010618 list_add_tail(&cache->bg_list, &trans->new_bgs);
Josef Bacikba2c4d42018-12-03 10:20:33 -050010619 trans->delayed_ref_updates++;
10620 btrfs_update_delayed_refs_rsv(trans);
Chris Mason6324fbf2008-03-24 15:01:59 -040010621
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010622 set_avail_alloc_bits(fs_info, type);
Chris Mason6324fbf2008-03-24 15:01:59 -040010623 return 0;
10624}
Zheng Yan1a40e232008-09-26 10:09:34 -040010625
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010626static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
10627{
Ilya Dryomov899c81e2012-03-27 17:09:16 +030010628 u64 extra_flags = chunk_to_extended(flags) &
10629 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010630
Miao Xiede98ced2013-01-29 10:13:12 +000010631 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010632 if (flags & BTRFS_BLOCK_GROUP_DATA)
10633 fs_info->avail_data_alloc_bits &= ~extra_flags;
10634 if (flags & BTRFS_BLOCK_GROUP_METADATA)
10635 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
10636 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
10637 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +000010638 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010639}
10640
Zheng Yan1a40e232008-09-26 10:09:34 -040010641int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Nikolay Borisov5a98ec02018-06-20 15:48:56 +030010642 u64 group_start, struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -040010643{
Nikolay Borisov5a98ec02018-06-20 15:48:56 +030010644 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010645 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010646 struct btrfs_path *path;
10647 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -040010648 struct btrfs_free_cluster *cluster;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010649 struct btrfs_root *tree_root = fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010650 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -040010651 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010652 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -040010653 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010654 int index;
Josef Bacik89a55892010-10-14 14:52:27 -040010655 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +000010656 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +000010657 bool remove_em;
Josef Bacikba2c4d42018-12-03 10:20:33 -050010658 bool remove_rsv = false;
Zheng Yan1a40e232008-09-26 10:09:34 -040010659
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010660 block_group = btrfs_lookup_block_group(fs_info, group_start);
Zheng Yan1a40e232008-09-26 10:09:34 -040010661 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -050010662 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -040010663
Qu Wenruo4ed0a7a2018-04-26 17:17:20 +080010664 trace_btrfs_remove_block_group(block_group);
liubo9f7c43c2011-03-07 02:13:33 +000010665 /*
10666 * Free the reserved super bytes from this block group before
10667 * remove it.
10668 */
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010669 free_excluded_extents(block_group);
Josef Bacikfd708b82017-09-29 15:43:50 -040010670 btrfs_free_ref_tree_range(fs_info, block_group->key.objectid,
10671 block_group->key.offset);
liubo9f7c43c2011-03-07 02:13:33 +000010672
Zheng Yan1a40e232008-09-26 10:09:34 -040010673 memcpy(&key, &block_group->key, sizeof(key));
Qu Wenruo3e72ee82018-01-30 18:20:45 +080010674 index = btrfs_bg_flags_to_raid_index(block_group->flags);
David Sterba46df06b2018-07-13 20:46:30 +020010675 factor = btrfs_bg_type_to_factor(block_group->flags);
Zheng Yan1a40e232008-09-26 10:09:34 -040010676
Chris Mason44fb5512009-06-04 15:34:51 -040010677 /* make sure this block group isn't part of an allocation cluster */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010678 cluster = &fs_info->data_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010679 spin_lock(&cluster->refill_lock);
10680 btrfs_return_cluster_to_free_space(block_group, cluster);
10681 spin_unlock(&cluster->refill_lock);
10682
10683 /*
10684 * make sure this block group isn't part of a metadata
10685 * allocation cluster
10686 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010687 cluster = &fs_info->meta_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010688 spin_lock(&cluster->refill_lock);
10689 btrfs_return_cluster_to_free_space(block_group, cluster);
10690 spin_unlock(&cluster->refill_lock);
10691
Zheng Yan1a40e232008-09-26 10:09:34 -040010692 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010693 if (!path) {
10694 ret = -ENOMEM;
10695 goto out;
10696 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010697
Chris Mason1bbc6212015-04-06 12:46:08 -070010698 /*
10699 * get the inode first so any iput calls done for the io_list
10700 * aren't the final iput (no unlinks allowed now)
10701 */
David Sterba7949f332019-03-20 13:40:19 +010010702 inode = lookup_free_space_inode(block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010703
10704 mutex_lock(&trans->transaction->cache_write_mutex);
10705 /*
Andrea Gelmini52042d82018-11-28 12:05:13 +010010706 * Make sure our free space cache IO is done before removing the
Chris Mason1bbc6212015-04-06 12:46:08 -070010707 * free space inode
10708 */
10709 spin_lock(&trans->transaction->dirty_bgs_lock);
10710 if (!list_empty(&block_group->io_list)) {
10711 list_del_init(&block_group->io_list);
10712
10713 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
10714
10715 spin_unlock(&trans->transaction->dirty_bgs_lock);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -040010716 btrfs_wait_cache_io(trans, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010717 btrfs_put_block_group(block_group);
10718 spin_lock(&trans->transaction->dirty_bgs_lock);
10719 }
10720
10721 if (!list_empty(&block_group->dirty_list)) {
10722 list_del_init(&block_group->dirty_list);
Josef Bacikba2c4d42018-12-03 10:20:33 -050010723 remove_rsv = true;
Chris Mason1bbc6212015-04-06 12:46:08 -070010724 btrfs_put_block_group(block_group);
10725 }
10726 spin_unlock(&trans->transaction->dirty_bgs_lock);
10727 mutex_unlock(&trans->transaction->cache_write_mutex);
10728
Josef Bacik0af3d002010-06-21 14:48:16 -040010729 if (!IS_ERR(inode)) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010730 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010731 if (ret) {
10732 btrfs_add_delayed_iput(inode);
10733 goto out;
10734 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010735 clear_nlink(inode);
10736 /* One for the block groups ref */
10737 spin_lock(&block_group->lock);
10738 if (block_group->iref) {
10739 block_group->iref = 0;
10740 block_group->inode = NULL;
10741 spin_unlock(&block_group->lock);
10742 iput(inode);
10743 } else {
10744 spin_unlock(&block_group->lock);
10745 }
10746 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -040010747 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -040010748 }
10749
10750 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
10751 key.offset = block_group->key.objectid;
10752 key.type = 0;
10753
10754 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
10755 if (ret < 0)
10756 goto out;
10757 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +020010758 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010759 if (ret == 0) {
10760 ret = btrfs_del_item(trans, tree_root, path);
10761 if (ret)
10762 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +020010763 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010764 }
10765
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010766 spin_lock(&fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010767 rb_erase(&block_group->cache_node,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010768 &fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +000010769 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +000010770
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010771 if (fs_info->first_logical_byte == block_group->key.objectid)
10772 fs_info->first_logical_byte = (u64)-1;
10773 spin_unlock(&fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010774
Josef Bacik80eb2342008-10-29 14:49:05 -040010775 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -040010776 /*
10777 * we must use list_del_init so people can check to see if they
10778 * are still on the list after taking the semaphore
10779 */
10780 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010781 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010782 kobj = block_group->space_info->block_group_kobjs[index];
10783 block_group->space_info->block_group_kobjs[index] = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010784 clear_avail_alloc_bits(fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010785 }
Josef Bacik80eb2342008-10-29 14:49:05 -040010786 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010787 if (kobj) {
10788 kobject_del(kobj);
10789 kobject_put(kobj);
10790 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010791
Filipe Manana4f69cb92014-11-26 15:28:51 +000010792 if (block_group->has_caching_ctl)
10793 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -040010794 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -040010795 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010796 if (block_group->has_caching_ctl) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010797 down_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010798 if (!caching_ctl) {
10799 struct btrfs_caching_control *ctl;
10800
10801 list_for_each_entry(ctl,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010802 &fs_info->caching_block_groups, list)
Filipe Manana4f69cb92014-11-26 15:28:51 +000010803 if (ctl->block_group == block_group) {
10804 caching_ctl = ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +020010805 refcount_inc(&caching_ctl->count);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010806 break;
10807 }
10808 }
10809 if (caching_ctl)
10810 list_del_init(&caching_ctl->list);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010811 up_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010812 if (caching_ctl) {
10813 /* Once for the caching bgs list and once for us. */
10814 put_caching_control(caching_ctl);
10815 put_caching_control(caching_ctl);
10816 }
10817 }
Josef Bacik817d52f2009-07-13 21:29:25 -040010818
Josef Bacikce93ec52014-11-17 15:45:48 -050010819 spin_lock(&trans->transaction->dirty_bgs_lock);
Nikolay Borisov9a0ec832019-01-30 16:50:49 +020010820 WARN_ON(!list_empty(&block_group->dirty_list));
10821 WARN_ON(!list_empty(&block_group->io_list));
Josef Bacikce93ec52014-11-17 15:45:48 -050010822 spin_unlock(&trans->transaction->dirty_bgs_lock);
Nikolay Borisov9a0ec832019-01-30 16:50:49 +020010823
Josef Bacik817d52f2009-07-13 21:29:25 -040010824 btrfs_remove_free_space_cache(block_group);
10825
Yan Zhengc146afa2008-11-12 14:34:12 -050010826 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +000010827 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +080010828
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010829 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Zhao Lei18d018a2015-02-24 20:07:44 +080010830 WARN_ON(block_group->space_info->total_bytes
10831 < block_group->key.offset);
10832 WARN_ON(block_group->space_info->bytes_readonly
10833 < block_group->key.offset);
10834 WARN_ON(block_group->space_info->disk_total
10835 < block_group->key.offset * factor);
10836 }
Yan Zhengc146afa2008-11-12 14:34:12 -050010837 block_group->space_info->total_bytes -= block_group->key.offset;
10838 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -040010839 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +080010840
Yan Zhengc146afa2008-11-12 14:34:12 -050010841 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -040010842
Josef Bacik0af3d002010-06-21 14:48:16 -040010843 memcpy(&key, &block_group->key, sizeof(key));
10844
David Sterba34441362016-10-04 19:34:27 +020010845 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana04216822014-11-27 21:14:15 +000010846 spin_lock(&block_group->lock);
10847 block_group->removed = 1;
10848 /*
10849 * At this point trimming can't start on this block group, because we
10850 * removed the block group from the tree fs_info->block_group_cache_tree
10851 * so no one can't find it anymore and even if someone already got this
10852 * block group before we removed it from the rbtree, they have already
10853 * incremented block_group->trimming - if they didn't, they won't find
10854 * any free space entries because we already removed them all when we
10855 * called btrfs_remove_free_space_cache().
10856 *
10857 * And we must not remove the extent map from the fs_info->mapping_tree
10858 * to prevent the same logical address range and physical device space
10859 * ranges from being reused for a new block group. This is because our
10860 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
10861 * completely transactionless, so while it is trimming a range the
10862 * currently running transaction might finish and a new one start,
10863 * allowing for new block groups to be created that can reuse the same
10864 * physical device locations unless we take this special care.
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010865 *
10866 * There may also be an implicit trim operation if the file system
10867 * is mounted with -odiscard. The same protections must remain
10868 * in place until the extents have been discarded completely when
10869 * the transaction commit has completed.
Filipe Manana04216822014-11-27 21:14:15 +000010870 */
10871 remove_em = (atomic_read(&block_group->trimming) == 0);
Filipe Manana04216822014-11-27 21:14:15 +000010872 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +000010873
10874 if (remove_em) {
10875 struct extent_map_tree *em_tree;
10876
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010877 em_tree = &fs_info->mapping_tree.map_tree;
Filipe Manana04216822014-11-27 21:14:15 +000010878 write_lock(&em_tree->lock);
10879 remove_extent_mapping(em_tree, em);
10880 write_unlock(&em_tree->lock);
10881 /* once for the tree */
10882 free_extent_map(em);
10883 }
10884
David Sterba34441362016-10-04 19:34:27 +020010885 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010886
Nikolay Borisovf3f72772018-05-10 15:44:46 +030010887 ret = remove_block_group_free_space(trans, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010888 if (ret)
10889 goto out;
10890
Chris Masonfa9c0d792009-04-03 09:47:43 -040010891 btrfs_put_block_group(block_group);
10892 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -040010893
10894 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
10895 if (ret > 0)
10896 ret = -EIO;
10897 if (ret < 0)
10898 goto out;
10899
10900 ret = btrfs_del_item(trans, root, path);
10901out:
Josef Bacikba2c4d42018-12-03 10:20:33 -050010902 if (remove_rsv)
10903 btrfs_delayed_refs_rsv_release(fs_info, 1);
Zheng Yan1a40e232008-09-26 10:09:34 -040010904 btrfs_free_path(path);
10905 return ret;
10906}
liuboacce9522011-01-06 19:30:25 +080010907
Filipe Manana8eab77f2015-11-13 23:57:16 +000010908struct btrfs_trans_handle *
Filipe Manana7fd01182015-11-13 23:57:17 +000010909btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info,
10910 const u64 chunk_offset)
Filipe Manana8eab77f2015-11-13 23:57:16 +000010911{
Filipe Manana7fd01182015-11-13 23:57:17 +000010912 struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree;
10913 struct extent_map *em;
10914 struct map_lookup *map;
10915 unsigned int num_items;
10916
10917 read_lock(&em_tree->lock);
10918 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
10919 read_unlock(&em_tree->lock);
10920 ASSERT(em && em->start == chunk_offset);
10921
Filipe Manana8eab77f2015-11-13 23:57:16 +000010922 /*
Filipe Manana7fd01182015-11-13 23:57:17 +000010923 * We need to reserve 3 + N units from the metadata space info in order
10924 * to remove a block group (done at btrfs_remove_chunk() and at
10925 * btrfs_remove_block_group()), which are used for:
10926 *
Filipe Manana8eab77f2015-11-13 23:57:16 +000010927 * 1 unit for adding the free space inode's orphan (located in the tree
10928 * of tree roots).
Filipe Manana7fd01182015-11-13 23:57:17 +000010929 * 1 unit for deleting the block group item (located in the extent
10930 * tree).
10931 * 1 unit for deleting the free space item (located in tree of tree
10932 * roots).
10933 * N units for deleting N device extent items corresponding to each
10934 * stripe (located in the device tree).
10935 *
10936 * In order to remove a block group we also need to reserve units in the
10937 * system space info in order to update the chunk tree (update one or
10938 * more device items and remove one chunk item), but this is done at
10939 * btrfs_remove_chunk() through a call to check_system_chunk().
Filipe Manana8eab77f2015-11-13 23:57:16 +000010940 */
Jeff Mahoney95617d62015-06-03 10:55:48 -040010941 map = em->map_lookup;
Filipe Manana7fd01182015-11-13 23:57:17 +000010942 num_items = 3 + map->num_stripes;
10943 free_extent_map(em);
10944
Filipe Manana8eab77f2015-11-13 23:57:16 +000010945 return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root,
Filipe Manana7fd01182015-11-13 23:57:17 +000010946 num_items, 1);
Filipe Manana8eab77f2015-11-13 23:57:16 +000010947}
10948
Josef Bacik47ab2a62014-09-18 11:20:02 -040010949/*
10950 * Process the unused_bgs list and remove any that don't have any allocated
10951 * space inside of them.
10952 */
10953void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
10954{
10955 struct btrfs_block_group_cache *block_group;
10956 struct btrfs_space_info *space_info;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010957 struct btrfs_trans_handle *trans;
10958 int ret = 0;
10959
Josef Bacikafcdd122016-09-02 15:40:02 -040010960 if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
Josef Bacik47ab2a62014-09-18 11:20:02 -040010961 return;
10962
10963 spin_lock(&fs_info->unused_bgs_lock);
10964 while (!list_empty(&fs_info->unused_bgs)) {
10965 u64 start, end;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010966 int trimming;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010967
10968 block_group = list_first_entry(&fs_info->unused_bgs,
10969 struct btrfs_block_group_cache,
10970 bg_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010971 list_del_init(&block_group->bg_list);
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010972
10973 space_info = block_group->space_info;
10974
Josef Bacik47ab2a62014-09-18 11:20:02 -040010975 if (ret || btrfs_mixed_space_info(space_info)) {
10976 btrfs_put_block_group(block_group);
10977 continue;
10978 }
10979 spin_unlock(&fs_info->unused_bgs_lock);
10980
Zhao Leid5f2e332015-10-08 18:46:44 +080010981 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010982
Josef Bacik47ab2a62014-09-18 11:20:02 -040010983 /* Don't want to race with allocators so take the groups_sem */
10984 down_write(&space_info->groups_sem);
10985 spin_lock(&block_group->lock);
Qu Wenruo43794442018-06-22 12:35:00 +080010986 if (block_group->reserved || block_group->pinned ||
Josef Bacik47ab2a62014-09-18 11:20:02 -040010987 btrfs_block_group_used(&block_group->item) ||
Chris Mason19c4d2f2016-10-10 13:43:31 -070010988 block_group->ro ||
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010989 list_is_singular(&block_group->list)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -040010990 /*
10991 * We want to bail if we made new allocations or have
10992 * outstanding allocations in this block group. We do
10993 * the ro check in case balance is currently acting on
10994 * this block group.
10995 */
Qu Wenruo4ed0a7a2018-04-26 17:17:20 +080010996 trace_btrfs_skip_unused_block_group(block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010997 spin_unlock(&block_group->lock);
10998 up_write(&space_info->groups_sem);
10999 goto next;
11000 }
11001 spin_unlock(&block_group->lock);
11002
11003 /* We don't want to force the issue, only flip if it's ok. */
Zhaolei868f4012015-08-05 16:43:27 +080011004 ret = inc_block_group_ro(block_group, 0);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011005 up_write(&space_info->groups_sem);
11006 if (ret < 0) {
11007 ret = 0;
11008 goto next;
11009 }
11010
11011 /*
11012 * Want to do this before we do anything else so we can recover
11013 * properly if we fail to join the transaction.
11014 */
Filipe Manana7fd01182015-11-13 23:57:17 +000011015 trans = btrfs_start_trans_remove_block_group(fs_info,
11016 block_group->key.objectid);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011017 if (IS_ERR(trans)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011018 btrfs_dec_block_group_ro(block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011019 ret = PTR_ERR(trans);
11020 goto next;
11021 }
11022
11023 /*
11024 * We could have pending pinned extents for this block group,
11025 * just delete them, we don't care about them anymore.
11026 */
11027 start = block_group->key.objectid;
11028 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +000011029 /*
11030 * Hold the unused_bg_unpin_mutex lock to avoid racing with
11031 * btrfs_finish_extent_commit(). If we are at transaction N,
11032 * another task might be running finish_extent_commit() for the
11033 * previous transaction N - 1, and have seen a range belonging
11034 * to the block group in freed_extents[] before we were able to
11035 * clear the whole block group range from freed_extents[]. This
11036 * means that task can lookup for the block group after we
11037 * unpinned it from freed_extents[] and removed it, leading to
11038 * a BUG_ON() at btrfs_unpin_extent_range().
11039 */
11040 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +000011041 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
David Sterba91166212016-04-26 23:54:39 +020011042 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000011043 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000011044 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011045 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000011046 goto end_trans;
11047 }
11048 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
David Sterba91166212016-04-26 23:54:39 +020011049 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000011050 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000011051 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011052 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000011053 goto end_trans;
11054 }
Filipe Mananad4b450c2015-01-29 19:18:25 +000011055 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011056
11057 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +080011058 spin_lock(&space_info->lock);
11059 spin_lock(&block_group->lock);
11060
Lu Fengqie2907c12018-10-24 20:24:02 +080011061 update_bytes_pinned(space_info, -block_group->pinned);
Zhao Leic30666d2015-02-25 14:17:20 +080011062 space_info->bytes_readonly += block_group->pinned;
Ethan Liendec59fa2018-07-13 16:50:42 +080011063 percpu_counter_add_batch(&space_info->total_bytes_pinned,
11064 -block_group->pinned,
11065 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011066 block_group->pinned = 0;
11067
Zhao Leic30666d2015-02-25 14:17:20 +080011068 spin_unlock(&block_group->lock);
11069 spin_unlock(&space_info->lock);
11070
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011071 /* DISCARD can flip during remount */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011072 trimming = btrfs_test_opt(fs_info, DISCARD);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011073
11074 /* Implicit trim during transaction commit. */
11075 if (trimming)
11076 btrfs_get_block_group_trimming(block_group);
11077
Josef Bacik47ab2a62014-09-18 11:20:02 -040011078 /*
11079 * Btrfs_remove_chunk will abort the transaction if things go
11080 * horribly wrong.
11081 */
Nikolay Borisov97aff912018-07-20 19:37:53 +030011082 ret = btrfs_remove_chunk(trans, block_group->key.objectid);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011083
11084 if (ret) {
11085 if (trimming)
11086 btrfs_put_block_group_trimming(block_group);
11087 goto end_trans;
11088 }
11089
11090 /*
11091 * If we're not mounted with -odiscard, we can just forget
11092 * about this block group. Otherwise we'll need to wait
11093 * until transaction commit to do the actual discard.
11094 */
11095 if (trimming) {
Filipe Manana348a0012015-11-27 12:16:16 +000011096 spin_lock(&fs_info->unused_bgs_lock);
11097 /*
11098 * A concurrent scrub might have added us to the list
11099 * fs_info->unused_bgs, so use a list_move operation
11100 * to add the block group to the deleted_bgs list.
11101 */
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011102 list_move(&block_group->bg_list,
11103 &trans->transaction->deleted_bgs);
Filipe Manana348a0012015-11-27 12:16:16 +000011104 spin_unlock(&fs_info->unused_bgs_lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011105 btrfs_get_block_group(block_group);
11106 }
Filipe Manana758eb512014-11-03 14:08:39 +000011107end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040011108 btrfs_end_transaction(trans);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011109next:
Zhao Leid5f2e332015-10-08 18:46:44 +080011110 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011111 btrfs_put_block_group(block_group);
11112 spin_lock(&fs_info->unused_bgs_lock);
11113 }
11114 spin_unlock(&fs_info->unused_bgs_lock);
11115}
11116
liuboc59021f2011-03-07 02:13:14 +000011117int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
11118{
liubo1aba86d2011-04-08 08:44:37 +000011119 struct btrfs_super_block *disk_super;
11120 u64 features;
11121 u64 flags;
11122 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000011123 int ret;
11124
David Sterba6c417612011-04-13 15:41:04 +020011125 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000011126 if (!btrfs_super_root(disk_super))
Dan Carpenter0dc924c52016-01-13 15:21:17 +030011127 return -EINVAL;
liuboc59021f2011-03-07 02:13:14 +000011128
liubo1aba86d2011-04-08 08:44:37 +000011129 features = btrfs_super_incompat_flags(disk_super);
11130 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
11131 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000011132
liubo1aba86d2011-04-08 08:44:37 +000011133 flags = BTRFS_BLOCK_GROUP_SYSTEM;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011134 ret = create_space_info(fs_info, flags);
liuboc59021f2011-03-07 02:13:14 +000011135 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000011136 goto out;
liuboc59021f2011-03-07 02:13:14 +000011137
liubo1aba86d2011-04-08 08:44:37 +000011138 if (mixed) {
11139 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011140 ret = create_space_info(fs_info, flags);
liubo1aba86d2011-04-08 08:44:37 +000011141 } else {
11142 flags = BTRFS_BLOCK_GROUP_METADATA;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011143 ret = create_space_info(fs_info, flags);
liubo1aba86d2011-04-08 08:44:37 +000011144 if (ret)
11145 goto out;
11146
11147 flags = BTRFS_BLOCK_GROUP_DATA;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011148 ret = create_space_info(fs_info, flags);
liubo1aba86d2011-04-08 08:44:37 +000011149 }
11150out:
liuboc59021f2011-03-07 02:13:14 +000011151 return ret;
11152}
11153
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011154int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info,
11155 u64 start, u64 end)
liuboacce9522011-01-06 19:30:25 +080011156{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011157 return unpin_extent_range(fs_info, start, end, false);
liuboacce9522011-01-06 19:30:25 +080011158}
11159
Jeff Mahoney499f3772015-06-15 09:41:17 -040011160/*
11161 * It used to be that old block groups would be left around forever.
11162 * Iterating over them would be enough to trim unused space. Since we
11163 * now automatically remove them, we also need to iterate over unallocated
11164 * space.
11165 *
11166 * We don't want a transaction for this since the discard may take a
11167 * substantial amount of time. We don't require that a transaction be
11168 * running, but we do need to take a running transaction into account
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011169 * to ensure that we're not discarding chunks that were released or
11170 * allocated in the current transaction.
Jeff Mahoney499f3772015-06-15 09:41:17 -040011171 *
11172 * Holding the chunks lock will prevent other threads from allocating
11173 * or releasing chunks, but it won't prevent a running transaction
11174 * from committing and releasing the memory that the pending chunks
11175 * list head uses. For that, we need to take a reference to the
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011176 * transaction and hold the commit root sem. We only need to hold
11177 * it while performing the free space search since we have already
11178 * held back allocations.
Jeff Mahoney499f3772015-06-15 09:41:17 -040011179 */
11180static int btrfs_trim_free_extents(struct btrfs_device *device,
Nikolay Borisovc2d1b3a2019-03-25 14:31:21 +020011181 struct fstrim_range *range, u64 *trimmed)
Jeff Mahoney499f3772015-06-15 09:41:17 -040011182{
Nikolay Borisov929be172019-03-27 14:24:18 +020011183 u64 start, len = 0, end = 0;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011184 int ret;
11185
Nikolay Borisov929be172019-03-27 14:24:18 +020011186 start = max_t(u64, range->start, SZ_1M);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011187 *trimmed = 0;
11188
Jeff Mahoney0be88e32018-09-06 17:18:15 -040011189 /* Discard not supported = nothing to do. */
11190 if (!blk_queue_discard(bdev_get_queue(device->bdev)))
11191 return 0;
11192
Andrea Gelmini52042d82018-11-28 12:05:13 +010011193 /* Not writable = nothing to do. */
Anand Jainebbede42017-12-04 12:54:52 +080011194 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Jeff Mahoney499f3772015-06-15 09:41:17 -040011195 return 0;
11196
11197 /* No free space = nothing to do. */
11198 if (device->total_bytes <= device->bytes_used)
11199 return 0;
11200
11201 ret = 0;
11202
11203 while (1) {
Jeff Mahoneyfb456252016-06-22 18:54:56 -040011204 struct btrfs_fs_info *fs_info = device->fs_info;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011205 u64 bytes;
11206
11207 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
11208 if (ret)
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011209 break;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011210
Nikolay Borisov929be172019-03-27 14:24:18 +020011211 find_first_clear_extent_bit(&device->alloc_state, start,
11212 &start, &end,
11213 CHUNK_TRIMMED | CHUNK_ALLOCATED);
11214 /*
11215 * If find_first_clear_extent_bit find a range that spans the
11216 * end of the device it will set end to -1, in this case it's up
11217 * to the caller to trim the value to the size of the device.
11218 */
11219 end = min(end, device->total_bytes - 1);
11220 len = end - start + 1;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011221
Nikolay Borisov929be172019-03-27 14:24:18 +020011222 /* We didn't find any extents */
11223 if (!len) {
Jeff Mahoney499f3772015-06-15 09:41:17 -040011224 mutex_unlock(&fs_info->chunk_mutex);
Nikolay Borisov929be172019-03-27 14:24:18 +020011225 ret = 0;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011226 break;
11227 }
11228
Nikolay Borisov929be172019-03-27 14:24:18 +020011229 /* Keep going until we satisfy minlen or reach end of space */
11230 if (len < range->minlen) {
11231 mutex_unlock(&fs_info->chunk_mutex);
11232 start += len;
11233 continue;
11234 }
11235
Nikolay Borisovc2d1b3a2019-03-25 14:31:21 +020011236 /* If we are out of the passed range break */
11237 if (start > range->start + range->len - 1) {
11238 mutex_unlock(&fs_info->chunk_mutex);
Nikolay Borisovc2d1b3a2019-03-25 14:31:21 +020011239 break;
11240 }
11241
11242 start = max(range->start, start);
11243 len = min(range->len, len);
11244
Nikolay Borisov929be172019-03-27 14:24:18 +020011245 ret = btrfs_issue_discard(device->bdev, start, len,
11246 &bytes);
11247 if (!ret)
11248 set_extent_bits(&device->alloc_state, start,
11249 start + bytes - 1,
11250 CHUNK_TRIMMED);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011251 mutex_unlock(&fs_info->chunk_mutex);
11252
11253 if (ret)
11254 break;
11255
11256 start += len;
11257 *trimmed += bytes;
11258
Nikolay Borisovc2d1b3a2019-03-25 14:31:21 +020011259 /* We've trimmed enough */
11260 if (*trimmed >= range->len)
11261 break;
11262
Jeff Mahoney499f3772015-06-15 09:41:17 -040011263 if (fatal_signal_pending(current)) {
11264 ret = -ERESTARTSYS;
11265 break;
11266 }
11267
11268 cond_resched();
11269 }
11270
11271 return ret;
11272}
11273
Qu Wenruo93bba242018-09-07 14:16:23 +080011274/*
11275 * Trim the whole filesystem by:
11276 * 1) trimming the free space in each block group
11277 * 2) trimming the unallocated space on each device
11278 *
11279 * This will also continue trimming even if a block group or device encounters
11280 * an error. The return value will be the last error, or 0 if nothing bad
11281 * happens.
11282 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011283int btrfs_trim_fs(struct btrfs_fs_info *fs_info, struct fstrim_range *range)
Li Dongyangf7039b12011-03-24 10:24:28 +000011284{
Li Dongyangf7039b12011-03-24 10:24:28 +000011285 struct btrfs_block_group_cache *cache = NULL;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011286 struct btrfs_device *device;
11287 struct list_head *devices;
Li Dongyangf7039b12011-03-24 10:24:28 +000011288 u64 group_trimmed;
11289 u64 start;
11290 u64 end;
11291 u64 trimmed = 0;
Qu Wenruo93bba242018-09-07 14:16:23 +080011292 u64 bg_failed = 0;
11293 u64 dev_failed = 0;
11294 int bg_ret = 0;
11295 int dev_ret = 0;
Li Dongyangf7039b12011-03-24 10:24:28 +000011296 int ret = 0;
11297
Qu Wenruo6ba9fc82018-09-07 14:16:24 +080011298 cache = btrfs_lookup_first_block_group(fs_info, range->start);
David Sterbaf87b7eb2019-03-20 12:01:07 +010011299 for (; cache; cache = next_block_group(cache)) {
Li Dongyangf7039b12011-03-24 10:24:28 +000011300 if (cache->key.objectid >= (range->start + range->len)) {
11301 btrfs_put_block_group(cache);
11302 break;
11303 }
11304
11305 start = max(range->start, cache->key.objectid);
11306 end = min(range->start + range->len,
11307 cache->key.objectid + cache->key.offset);
11308
11309 if (end - start >= range->minlen) {
11310 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000011311 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040011312 if (ret) {
Qu Wenruo93bba242018-09-07 14:16:23 +080011313 bg_failed++;
11314 bg_ret = ret;
11315 continue;
Josef Bacik1be41b72013-06-12 13:56:06 -040011316 }
11317 ret = wait_block_group_cache_done(cache);
11318 if (ret) {
Qu Wenruo93bba242018-09-07 14:16:23 +080011319 bg_failed++;
11320 bg_ret = ret;
11321 continue;
Josef Bacik1be41b72013-06-12 13:56:06 -040011322 }
Li Dongyangf7039b12011-03-24 10:24:28 +000011323 }
11324 ret = btrfs_trim_block_group(cache,
11325 &group_trimmed,
11326 start,
11327 end,
11328 range->minlen);
11329
11330 trimmed += group_trimmed;
11331 if (ret) {
Qu Wenruo93bba242018-09-07 14:16:23 +080011332 bg_failed++;
11333 bg_ret = ret;
11334 continue;
Li Dongyangf7039b12011-03-24 10:24:28 +000011335 }
11336 }
Li Dongyangf7039b12011-03-24 10:24:28 +000011337 }
11338
Qu Wenruo93bba242018-09-07 14:16:23 +080011339 if (bg_failed)
11340 btrfs_warn(fs_info,
11341 "failed to trim %llu block group(s), last error %d",
11342 bg_failed, bg_ret);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011343 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoneyd4e329d2018-09-06 17:18:14 -040011344 devices = &fs_info->fs_devices->devices;
11345 list_for_each_entry(device, devices, dev_list) {
Nikolay Borisovc2d1b3a2019-03-25 14:31:21 +020011346 ret = btrfs_trim_free_extents(device, range, &group_trimmed);
Qu Wenruo93bba242018-09-07 14:16:23 +080011347 if (ret) {
11348 dev_failed++;
11349 dev_ret = ret;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011350 break;
Qu Wenruo93bba242018-09-07 14:16:23 +080011351 }
Jeff Mahoney499f3772015-06-15 09:41:17 -040011352
11353 trimmed += group_trimmed;
11354 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011355 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011356
Qu Wenruo93bba242018-09-07 14:16:23 +080011357 if (dev_failed)
11358 btrfs_warn(fs_info,
11359 "failed to trim %llu device(s), last error %d",
11360 dev_failed, dev_ret);
Li Dongyangf7039b12011-03-24 10:24:28 +000011361 range->len = trimmed;
Qu Wenruo93bba242018-09-07 14:16:23 +080011362 if (bg_ret)
11363 return bg_ret;
11364 return dev_ret;
Li Dongyangf7039b12011-03-24 10:24:28 +000011365}
Miao Xie8257b2d2014-03-06 13:38:19 +080011366
11367/*
David Sterbaea14b57f2017-06-22 02:19:11 +020011368 * btrfs_{start,end}_write_no_snapshotting() are similar to
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011369 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
11370 * data into the page cache through nocow before the subvolume is snapshoted,
11371 * but flush the data into disk after the snapshot creation, or to prevent
David Sterbaea14b57f2017-06-22 02:19:11 +020011372 * operations while snapshotting is ongoing and that cause the snapshot to be
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011373 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080011374 */
David Sterbaea14b57f2017-06-22 02:19:11 +020011375void btrfs_end_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011376{
11377 percpu_counter_dec(&root->subv_writers->counter);
David Sterba093258e2018-02-26 16:15:17 +010011378 cond_wake_up(&root->subv_writers->wait);
Miao Xie8257b2d2014-03-06 13:38:19 +080011379}
11380
David Sterbaea14b57f2017-06-22 02:19:11 +020011381int btrfs_start_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011382{
David Sterbaea14b57f2017-06-22 02:19:11 +020011383 if (atomic_read(&root->will_be_snapshotted))
Miao Xie8257b2d2014-03-06 13:38:19 +080011384 return 0;
11385
11386 percpu_counter_inc(&root->subv_writers->counter);
11387 /*
11388 * Make sure counter is updated before we check for snapshot creation.
11389 */
11390 smp_mb();
David Sterbaea14b57f2017-06-22 02:19:11 +020011391 if (atomic_read(&root->will_be_snapshotted)) {
11392 btrfs_end_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080011393 return 0;
11394 }
11395 return 1;
11396}
Zhao Lei0bc19f902016-01-06 18:56:36 +080011397
Zhao Lei0bc19f902016-01-06 18:56:36 +080011398void btrfs_wait_for_snapshot_creation(struct btrfs_root *root)
11399{
11400 while (true) {
11401 int ret;
11402
David Sterbaea14b57f2017-06-22 02:19:11 +020011403 ret = btrfs_start_write_no_snapshotting(root);
Zhao Lei0bc19f902016-01-06 18:56:36 +080011404 if (ret)
11405 break;
Peter Zijlstra46259562018-03-15 11:43:08 +010011406 wait_var_event(&root->will_be_snapshotted,
11407 !atomic_read(&root->will_be_snapshotted));
Zhao Lei0bc19f902016-01-06 18:56:36 +080011408 }
11409}
Qu Wenruo031f24d2018-05-22 16:43:47 +080011410
11411void btrfs_mark_bg_unused(struct btrfs_block_group_cache *bg)
11412{
11413 struct btrfs_fs_info *fs_info = bg->fs_info;
11414
11415 spin_lock(&fs_info->unused_bgs_lock);
11416 if (list_empty(&bg->bg_list)) {
11417 btrfs_get_block_group(bg);
11418 trace_btrfs_add_unused_block_group(bg);
11419 list_add_tail(&bg->bg_list, &fs_info->unused_bgs);
11420 }
11421 spin_unlock(&fs_info->unused_bgs_lock);
11422}