blob: f79e477a378e7836bb3ad9739861cf0428afd1dc [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason6cbd5572007-06-12 09:07:21 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04004 */
David Sterbac1d7c512018-04-03 19:23:33 +02005
Zach Brownec6b9102007-07-11 10:00:37 -04006#include <linux/sched.h>
Ingo Molnarf361bf42017-02-03 23:47:37 +01007#include <linux/sched/signal.h>
Chris Masonedbd8d42007-12-21 16:27:24 -05008#include <linux/pagemap.h>
Chris Masonec44a352008-04-28 15:29:52 -04009#include <linux/writeback.h>
David Woodhouse21af8042008-08-12 14:13:26 +010010#include <linux/blkdev.h>
Chris Masonb7a9f292009-02-04 09:23:45 -050011#include <linux/sort.h>
Chris Mason4184ea72009-03-10 12:39:20 -040012#include <linux/rcupdate.h>
Josef Bacik817d52f2009-07-13 21:29:25 -040013#include <linux/kthread.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
David Sterbadff51cd2011-06-14 12:52:17 +020015#include <linux/ratelimit.h>
Josef Bacikb150a4f2013-06-19 15:00:04 -040016#include <linux/percpu_counter.h>
Josef Bacik69fe2d72017-10-19 14:15:57 -040017#include <linux/lockdep.h>
Nikolay Borisov9678c542018-01-08 11:45:05 +020018#include <linux/crc32c.h>
Miao Xie995946d2014-04-02 19:51:06 +080019#include "tree-log.h"
Chris Masonfec577f2007-02-26 10:40:21 -050020#include "disk-io.h"
21#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040022#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050023#include "raid56.h"
Chris Mason925baed2008-06-25 16:01:30 -040024#include "locking.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040025#include "free-space-cache.h"
Omar Sandoval1e144fb2015-09-29 20:50:37 -070026#include "free-space-tree.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060027#include "math.h"
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040028#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070029#include "qgroup.h"
Josef Bacikfd708b82017-09-29 15:43:50 -040030#include "ref-verify.h"
Chris Masonfec577f2007-02-26 10:40:21 -050031
Arne Jansen709c0482011-09-12 12:22:57 +020032#undef SCRAMBLE_DELAYED_REFS
33
Miao Xie9e622d62012-01-26 15:01:12 -050034/*
35 * control flags for do_chunk_alloc's force field
Chris Mason0e4f8f82011-04-15 16:05:44 -040036 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
37 * if we really need one.
38 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040039 * CHUNK_ALLOC_LIMITED means to only try and allocate one
40 * if we have very few chunks already allocated. This is
41 * used as part of the clustering code to help make sure
42 * we have a good pool of storage to cluster in, without
43 * filling the FS with empty chunks
44 *
Miao Xie9e622d62012-01-26 15:01:12 -050045 * CHUNK_ALLOC_FORCE means it must try to allocate one
46 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040047 */
48enum {
49 CHUNK_ALLOC_NO_FORCE = 0,
Miao Xie9e622d62012-01-26 15:01:12 -050050 CHUNK_ALLOC_LIMITED = 1,
51 CHUNK_ALLOC_FORCE = 2,
Chris Mason0e4f8f82011-04-15 16:05:44 -040052};
53
Qu Wenruo9f9b8e82018-10-24 20:24:01 +080054/*
55 * Declare a helper function to detect underflow of various space info members
56 */
57#define DECLARE_SPACE_INFO_UPDATE(name) \
58static inline void update_##name(struct btrfs_space_info *sinfo, \
59 s64 bytes) \
60{ \
61 if (bytes < 0 && sinfo->name < -bytes) { \
62 WARN_ON(1); \
63 sinfo->name = 0; \
64 return; \
65 } \
66 sinfo->name += bytes; \
67}
68
69DECLARE_SPACE_INFO_UPDATE(bytes_may_use);
Lu Fengqie2907c12018-10-24 20:24:02 +080070DECLARE_SPACE_INFO_UPDATE(bytes_pinned);
Qu Wenruo9f9b8e82018-10-24 20:24:01 +080071
Yan Zheng5d4f98a2009-06-10 10:45:14 -040072static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
Nikolay Borisove72cb922018-06-20 15:48:57 +030073 struct btrfs_delayed_ref_node *node, u64 parent,
74 u64 root_objectid, u64 owner_objectid,
75 u64 owner_offset, int refs_to_drop,
76 struct btrfs_delayed_extent_op *extra_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040077static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
78 struct extent_buffer *leaf,
79 struct btrfs_extent_item *ei);
80static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -040081 u64 parent, u64 root_objectid,
82 u64 flags, u64 owner, u64 offset,
83 struct btrfs_key *ins, int ref_mod);
84static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +030085 struct btrfs_delayed_ref_node *node,
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +030086 struct btrfs_delayed_extent_op *extent_op);
Nikolay Borisov01458822018-06-20 15:49:05 +030087static int do_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags,
Josef Bacik698d0082012-09-12 14:08:47 -040088 int force);
Yan Zheng11833d62009-09-11 16:11:19 -040089static int find_next_key(struct btrfs_path *path, int level,
90 struct btrfs_key *key);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -040091static void dump_space_info(struct btrfs_fs_info *fs_info,
92 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -040093 int dump_block_groups);
Josef Bacik5d803662013-02-07 16:06:02 -050094static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
95 u64 num_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -040096static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
97 struct btrfs_space_info *space_info,
98 u64 num_bytes);
99static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
100 struct btrfs_space_info *space_info,
101 u64 num_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -0500102
Josef Bacik817d52f2009-07-13 21:29:25 -0400103static noinline int
104block_group_cache_done(struct btrfs_block_group_cache *cache)
105{
106 smp_mb();
Josef Bacik36cce922013-08-05 11:15:21 -0400107 return cache->cached == BTRFS_CACHE_FINISHED ||
108 cache->cached == BTRFS_CACHE_ERROR;
Josef Bacik817d52f2009-07-13 21:29:25 -0400109}
110
Josef Bacik0f9dd462008-09-23 13:14:11 -0400111static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
112{
113 return (cache->flags & bits) == bits;
114}
115
Filipe Manana758f2df2015-11-19 11:45:48 +0000116void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +0000117{
118 atomic_inc(&cache->count);
119}
120
121void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
122{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400123 if (atomic_dec_and_test(&cache->count)) {
124 WARN_ON(cache->pinned > 0);
125 WARN_ON(cache->reserved > 0);
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800126
127 /*
128 * If not empty, someone is still holding mutex of
129 * full_stripe_lock, which can only be released by caller.
130 * And it will definitely cause use-after-free when caller
131 * tries to release full stripe lock.
132 *
133 * No better way to resolve, but only to warn.
134 */
135 WARN_ON(!RB_EMPTY_ROOT(&cache->full_stripe_locks_root.root));
Li Zefan34d52cb2011-03-29 13:46:06 +0800136 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000137 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400138 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000139}
140
Josef Bacik0f9dd462008-09-23 13:14:11 -0400141/*
142 * this adds the block group to the fs_info rb tree for the block group
143 * cache
144 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500145static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400146 struct btrfs_block_group_cache *block_group)
147{
148 struct rb_node **p;
149 struct rb_node *parent = NULL;
150 struct btrfs_block_group_cache *cache;
151
152 spin_lock(&info->block_group_cache_lock);
153 p = &info->block_group_cache_tree.rb_node;
154
155 while (*p) {
156 parent = *p;
157 cache = rb_entry(parent, struct btrfs_block_group_cache,
158 cache_node);
159 if (block_group->key.objectid < cache->key.objectid) {
160 p = &(*p)->rb_left;
161 } else if (block_group->key.objectid > cache->key.objectid) {
162 p = &(*p)->rb_right;
163 } else {
164 spin_unlock(&info->block_group_cache_lock);
165 return -EEXIST;
166 }
167 }
168
169 rb_link_node(&block_group->cache_node, parent, p);
170 rb_insert_color(&block_group->cache_node,
171 &info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +0000172
173 if (info->first_logical_byte > block_group->key.objectid)
174 info->first_logical_byte = block_group->key.objectid;
175
Josef Bacik0f9dd462008-09-23 13:14:11 -0400176 spin_unlock(&info->block_group_cache_lock);
177
178 return 0;
179}
180
181/*
182 * This will return the block group at or after bytenr if contains is 0, else
183 * it will return the block group that contains the bytenr
184 */
185static struct btrfs_block_group_cache *
186block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
187 int contains)
188{
189 struct btrfs_block_group_cache *cache, *ret = NULL;
190 struct rb_node *n;
191 u64 end, start;
192
193 spin_lock(&info->block_group_cache_lock);
194 n = info->block_group_cache_tree.rb_node;
195
196 while (n) {
197 cache = rb_entry(n, struct btrfs_block_group_cache,
198 cache_node);
199 end = cache->key.objectid + cache->key.offset - 1;
200 start = cache->key.objectid;
201
202 if (bytenr < start) {
203 if (!contains && (!ret || start < ret->key.objectid))
204 ret = cache;
205 n = n->rb_left;
206 } else if (bytenr > start) {
207 if (contains && bytenr <= end) {
208 ret = cache;
209 break;
210 }
211 n = n->rb_right;
212 } else {
213 ret = cache;
214 break;
215 }
216 }
Liu Boa1897fd2012-12-27 09:01:23 +0000217 if (ret) {
Josef Bacik11dfe352009-11-13 20:12:59 +0000218 btrfs_get_block_group(ret);
Liu Boa1897fd2012-12-27 09:01:23 +0000219 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
220 info->first_logical_byte = ret->key.objectid;
221 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400222 spin_unlock(&info->block_group_cache_lock);
223
224 return ret;
225}
226
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400227static int add_excluded_extent(struct btrfs_fs_info *fs_info,
Yan Zheng11833d62009-09-11 16:11:19 -0400228 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400229{
Yan Zheng11833d62009-09-11 16:11:19 -0400230 u64 end = start + num_bytes - 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400231 set_extent_bits(&fs_info->freed_extents[0],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200232 start, end, EXTENT_UPTODATE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400233 set_extent_bits(&fs_info->freed_extents[1],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200234 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400235 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400236}
237
Nikolay Borisov9e715da2018-06-20 15:49:08 +0300238static void free_excluded_extents(struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400239{
Nikolay Borisov9e715da2018-06-20 15:49:08 +0300240 struct btrfs_fs_info *fs_info = cache->fs_info;
Yan Zheng11833d62009-09-11 16:11:19 -0400241 u64 start, end;
242
243 start = cache->key.objectid;
244 end = start + cache->key.offset - 1;
245
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400246 clear_extent_bits(&fs_info->freed_extents[0],
David Sterba91166212016-04-26 23:54:39 +0200247 start, end, EXTENT_UPTODATE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400248 clear_extent_bits(&fs_info->freed_extents[1],
David Sterba91166212016-04-26 23:54:39 +0200249 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400250}
251
Nikolay Borisov3c4da652018-06-20 15:49:09 +0300252static int exclude_super_stripes(struct btrfs_block_group_cache *cache)
Yan Zheng11833d62009-09-11 16:11:19 -0400253{
Nikolay Borisov3c4da652018-06-20 15:49:09 +0300254 struct btrfs_fs_info *fs_info = cache->fs_info;
Josef Bacik817d52f2009-07-13 21:29:25 -0400255 u64 bytenr;
256 u64 *logical;
257 int stripe_len;
258 int i, nr, ret;
259
Yan, Zheng06b23312009-11-26 09:31:11 +0000260 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
261 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
262 cache->bytes_super += stripe_len;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400263 ret = add_excluded_extent(fs_info, cache->key.objectid,
Yan, Zheng06b23312009-11-26 09:31:11 +0000264 stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400265 if (ret)
266 return ret;
Yan, Zheng06b23312009-11-26 09:31:11 +0000267 }
268
Josef Bacik817d52f2009-07-13 21:29:25 -0400269 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
270 bytenr = btrfs_sb_offset(i);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400271 ret = btrfs_rmap_block(fs_info, cache->key.objectid,
Nikolay Borisov63a9c7b2018-05-04 10:53:05 +0300272 bytenr, &logical, &nr, &stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400273 if (ret)
274 return ret;
Yan Zheng11833d62009-09-11 16:11:19 -0400275
Josef Bacik817d52f2009-07-13 21:29:25 -0400276 while (nr--) {
Josef Bacik51bf5f02013-04-23 12:55:21 -0400277 u64 start, len;
278
279 if (logical[nr] > cache->key.objectid +
280 cache->key.offset)
281 continue;
282
283 if (logical[nr] + stripe_len <= cache->key.objectid)
284 continue;
285
286 start = logical[nr];
287 if (start < cache->key.objectid) {
288 start = cache->key.objectid;
289 len = (logical[nr] + stripe_len) - start;
290 } else {
291 len = min_t(u64, stripe_len,
292 cache->key.objectid +
293 cache->key.offset - start);
294 }
295
296 cache->bytes_super += len;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400297 ret = add_excluded_extent(fs_info, start, len);
Josef Bacik835d9742013-03-19 12:13:25 -0400298 if (ret) {
299 kfree(logical);
300 return ret;
301 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400302 }
Yan Zheng11833d62009-09-11 16:11:19 -0400303
Josef Bacik817d52f2009-07-13 21:29:25 -0400304 kfree(logical);
305 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400306 return 0;
307}
308
Yan Zheng11833d62009-09-11 16:11:19 -0400309static struct btrfs_caching_control *
310get_caching_control(struct btrfs_block_group_cache *cache)
311{
312 struct btrfs_caching_control *ctl;
313
314 spin_lock(&cache->lock);
Josef Bacikdde5abe2010-09-16 16:17:03 -0400315 if (!cache->caching_ctl) {
316 spin_unlock(&cache->lock);
317 return NULL;
318 }
319
Yan Zheng11833d62009-09-11 16:11:19 -0400320 ctl = cache->caching_ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200321 refcount_inc(&ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400322 spin_unlock(&cache->lock);
323 return ctl;
324}
325
326static void put_caching_control(struct btrfs_caching_control *ctl)
327{
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200328 if (refcount_dec_and_test(&ctl->count))
Yan Zheng11833d62009-09-11 16:11:19 -0400329 kfree(ctl);
330}
331
Josef Bacikd0bd4562015-09-23 14:54:14 -0400332#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400333static void fragment_free_space(struct btrfs_block_group_cache *block_group)
Josef Bacikd0bd4562015-09-23 14:54:14 -0400334{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400335 struct btrfs_fs_info *fs_info = block_group->fs_info;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400336 u64 start = block_group->key.objectid;
337 u64 len = block_group->key.offset;
338 u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ?
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400339 fs_info->nodesize : fs_info->sectorsize;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400340 u64 step = chunk << 1;
341
342 while (len > chunk) {
343 btrfs_remove_free_space(block_group, start, chunk);
344 start += step;
345 if (len < step)
346 len = 0;
347 else
348 len -= step;
349 }
350}
351#endif
352
Josef Bacik0f9dd462008-09-23 13:14:11 -0400353/*
354 * this is only called by cache_block_group, since we could have freed extents
355 * we need to check the pinned_extents for any extents that can't be used yet
356 * since their free space will be released as soon as the transaction commits.
357 */
Omar Sandovala5ed9182015-09-29 20:50:35 -0700358u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Nikolay Borisov4457c1c2018-05-10 15:44:45 +0300359 u64 start, u64 end)
Josef Bacik0f9dd462008-09-23 13:14:11 -0400360{
Nikolay Borisov4457c1c2018-05-10 15:44:45 +0300361 struct btrfs_fs_info *info = block_group->fs_info;
Josef Bacik817d52f2009-07-13 21:29:25 -0400362 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400363 int ret;
364
365 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400366 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400367 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400368 EXTENT_DIRTY | EXTENT_UPTODATE,
369 NULL);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400370 if (ret)
371 break;
372
Yan, Zheng06b23312009-11-26 09:31:11 +0000373 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400374 start = extent_end + 1;
375 } else if (extent_start > start && extent_start < end) {
376 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400377 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500378 ret = btrfs_add_free_space(block_group, start,
379 size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100380 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400381 start = extent_end + 1;
382 } else {
383 break;
384 }
385 }
386
387 if (start < end) {
388 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400389 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500390 ret = btrfs_add_free_space(block_group, start, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100391 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400392 }
393
Josef Bacik817d52f2009-07-13 21:29:25 -0400394 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400395}
396
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700397static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl)
Chris Masone37c9e62007-05-09 20:13:14 -0400398{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400399 struct btrfs_block_group_cache *block_group = caching_ctl->block_group;
400 struct btrfs_fs_info *fs_info = block_group->fs_info;
401 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400402 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400403 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400404 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400405 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400406 u64 last = 0;
407 u32 nritems;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700408 int ret;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400409 bool wakeup = true;
Chris Masonf510cfe2007-10-15 16:14:48 -0400410
Chris Masone37c9e62007-05-09 20:13:14 -0400411 path = btrfs_alloc_path();
412 if (!path)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700413 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -0400414
Josef Bacik817d52f2009-07-13 21:29:25 -0400415 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400416
Josef Bacikd0bd4562015-09-23 14:54:14 -0400417#ifdef CONFIG_BTRFS_DEBUG
418 /*
419 * If we're fragmenting we don't want to make anybody think we can
420 * allocate from this block group until we've had a chance to fragment
421 * the free space.
422 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400423 if (btrfs_should_fragment_free_space(block_group))
Josef Bacikd0bd4562015-09-23 14:54:14 -0400424 wakeup = false;
425#endif
Chris Mason5cd57b22008-06-25 16:01:30 -0400426 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400427 * We don't want to deadlock with somebody trying to allocate a new
428 * extent for the extent root while also trying to search the extent
429 * root to add free space. So we skip locking and search the commit
430 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400431 */
432 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400433 path->search_commit_root = 1;
David Sterbae4058b52015-11-27 16:31:35 +0100434 path->reada = READA_FORWARD;
Josef Bacik817d52f2009-07-13 21:29:25 -0400435
Yan Zhenge4404d62008-12-12 10:03:26 -0500436 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400437 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400438 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400439
Liu Bo52ee28d2013-07-11 17:51:15 +0800440next:
Yan Zheng11833d62009-09-11 16:11:19 -0400441 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400442 if (ret < 0)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700443 goto out;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500444
Yan Zheng11833d62009-09-11 16:11:19 -0400445 leaf = path->nodes[0];
446 nritems = btrfs_header_nritems(leaf);
447
Chris Masond3977122009-01-05 21:25:51 -0500448 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200449 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400450 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400451 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400452 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400453
Yan Zheng11833d62009-09-11 16:11:19 -0400454 if (path->slots[0] < nritems) {
455 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
456 } else {
457 ret = find_next_key(path, 0, &key);
458 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400459 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400460
Josef Bacikc9ea7b22013-09-19 10:02:11 -0400461 if (need_resched() ||
Josef Bacik9e351cc2014-03-13 15:42:13 -0400462 rwsem_is_contended(&fs_info->commit_root_sem)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400463 if (wakeup)
464 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400465 btrfs_release_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400466 up_read(&fs_info->commit_root_sem);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400467 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400468 cond_resched();
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700469 mutex_lock(&caching_ctl->mutex);
470 down_read(&fs_info->commit_root_sem);
471 goto next;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400472 }
Josef Bacik0a3896d2013-04-19 14:37:26 -0400473
474 ret = btrfs_next_leaf(extent_root, path);
475 if (ret < 0)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700476 goto out;
Josef Bacik0a3896d2013-04-19 14:37:26 -0400477 if (ret)
478 break;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400479 leaf = path->nodes[0];
480 nritems = btrfs_header_nritems(leaf);
481 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400482 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400483
Liu Bo52ee28d2013-07-11 17:51:15 +0800484 if (key.objectid < last) {
485 key.objectid = last;
486 key.offset = 0;
487 key.type = BTRFS_EXTENT_ITEM_KEY;
488
Josef Bacikd0bd4562015-09-23 14:54:14 -0400489 if (wakeup)
490 caching_ctl->progress = last;
Liu Bo52ee28d2013-07-11 17:51:15 +0800491 btrfs_release_path(path);
492 goto next;
493 }
494
Yan Zheng11833d62009-09-11 16:11:19 -0400495 if (key.objectid < block_group->key.objectid) {
496 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400497 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400498 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400499
Chris Masone37c9e62007-05-09 20:13:14 -0400500 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400501 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400502 break;
Yan7d7d6062007-09-14 16:15:28 -0400503
Josef Bacik3173a182013-03-07 14:22:04 -0500504 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
505 key.type == BTRFS_METADATA_ITEM_KEY) {
Nikolay Borisov4457c1c2018-05-10 15:44:45 +0300506 total_found += add_new_free_space(block_group, last,
Josef Bacik817d52f2009-07-13 21:29:25 -0400507 key.objectid);
Josef Bacik3173a182013-03-07 14:22:04 -0500508 if (key.type == BTRFS_METADATA_ITEM_KEY)
509 last = key.objectid +
Jeff Mahoneyda170662016-06-15 09:22:56 -0400510 fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500511 else
512 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400513
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700514 if (total_found > CACHING_CTL_WAKE_UP) {
Yan Zheng11833d62009-09-11 16:11:19 -0400515 total_found = 0;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400516 if (wakeup)
517 wake_up(&caching_ctl->wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400518 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400519 }
Chris Masone37c9e62007-05-09 20:13:14 -0400520 path->slots[0]++;
521 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400522 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400523
Nikolay Borisov4457c1c2018-05-10 15:44:45 +0300524 total_found += add_new_free_space(block_group, last,
Josef Bacik817d52f2009-07-13 21:29:25 -0400525 block_group->key.objectid +
526 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400527 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400528
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700529out:
530 btrfs_free_path(path);
531 return ret;
532}
533
534static noinline void caching_thread(struct btrfs_work *work)
535{
536 struct btrfs_block_group_cache *block_group;
537 struct btrfs_fs_info *fs_info;
538 struct btrfs_caching_control *caching_ctl;
539 int ret;
540
541 caching_ctl = container_of(work, struct btrfs_caching_control, work);
542 block_group = caching_ctl->block_group;
543 fs_info = block_group->fs_info;
544
545 mutex_lock(&caching_ctl->mutex);
546 down_read(&fs_info->commit_root_sem);
547
Omar Sandoval1e144fb2015-09-29 20:50:37 -0700548 if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE))
549 ret = load_free_space_tree(caching_ctl);
550 else
551 ret = load_extent_tree_free(caching_ctl);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700552
Josef Bacik817d52f2009-07-13 21:29:25 -0400553 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400554 block_group->caching_ctl = NULL;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700555 block_group->cached = ret ? BTRFS_CACHE_ERROR : BTRFS_CACHE_FINISHED;
Josef Bacik817d52f2009-07-13 21:29:25 -0400556 spin_unlock(&block_group->lock);
557
Josef Bacikd0bd4562015-09-23 14:54:14 -0400558#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400559 if (btrfs_should_fragment_free_space(block_group)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400560 u64 bytes_used;
561
562 spin_lock(&block_group->space_info->lock);
563 spin_lock(&block_group->lock);
564 bytes_used = block_group->key.offset -
565 btrfs_block_group_used(&block_group->item);
566 block_group->space_info->bytes_used += bytes_used >> 1;
567 spin_unlock(&block_group->lock);
568 spin_unlock(&block_group->space_info->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400569 fragment_free_space(block_group);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400570 }
571#endif
572
573 caching_ctl->progress = (u64)-1;
Chris Masonf7d3d2f2015-12-18 11:11:10 -0800574
Josef Bacik9e351cc2014-03-13 15:42:13 -0400575 up_read(&fs_info->commit_root_sem);
Nikolay Borisov9e715da2018-06-20 15:49:08 +0300576 free_excluded_extents(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -0400577 mutex_unlock(&caching_ctl->mutex);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700578
Yan Zheng11833d62009-09-11 16:11:19 -0400579 wake_up(&caching_ctl->wait);
580
581 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000582 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400583}
584
Josef Bacik9d66e232010-08-25 16:54:15 -0400585static int cache_block_group(struct btrfs_block_group_cache *cache,
Josef Bacik9d66e232010-08-25 16:54:15 -0400586 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400587{
Josef Bacik291c7d22011-11-14 13:52:14 -0500588 DEFINE_WAIT(wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400589 struct btrfs_fs_info *fs_info = cache->fs_info;
590 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400591 int ret = 0;
592
Josef Bacik291c7d22011-11-14 13:52:14 -0500593 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100594 if (!caching_ctl)
595 return -ENOMEM;
Josef Bacik291c7d22011-11-14 13:52:14 -0500596
597 INIT_LIST_HEAD(&caching_ctl->list);
598 mutex_init(&caching_ctl->mutex);
599 init_waitqueue_head(&caching_ctl->wait);
600 caching_ctl->block_group = cache;
601 caching_ctl->progress = cache->key.objectid;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200602 refcount_set(&caching_ctl->count, 1);
Liu Bo9e0af232014-08-15 23:36:53 +0800603 btrfs_init_work(&caching_ctl->work, btrfs_cache_helper,
604 caching_thread, NULL, NULL);
Josef Bacik291c7d22011-11-14 13:52:14 -0500605
606 spin_lock(&cache->lock);
607 /*
608 * This should be a rare occasion, but this could happen I think in the
609 * case where one thread starts to load the space cache info, and then
610 * some other thread starts a transaction commit which tries to do an
611 * allocation while the other thread is still loading the space cache
612 * info. The previous loop should have kept us from choosing this block
613 * group, but if we've moved to the state where we will wait on caching
614 * block groups we need to first check if we're doing a fast load here,
615 * so we can wait for it to finish, otherwise we could end up allocating
616 * from a block group who's cache gets evicted for one reason or
617 * another.
618 */
619 while (cache->cached == BTRFS_CACHE_FAST) {
620 struct btrfs_caching_control *ctl;
621
622 ctl = cache->caching_ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200623 refcount_inc(&ctl->count);
Josef Bacik291c7d22011-11-14 13:52:14 -0500624 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
625 spin_unlock(&cache->lock);
626
627 schedule();
628
629 finish_wait(&ctl->wait, &wait);
630 put_caching_control(ctl);
631 spin_lock(&cache->lock);
632 }
633
634 if (cache->cached != BTRFS_CACHE_NO) {
635 spin_unlock(&cache->lock);
636 kfree(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400637 return 0;
Josef Bacik291c7d22011-11-14 13:52:14 -0500638 }
639 WARN_ON(cache->caching_ctl);
640 cache->caching_ctl = caching_ctl;
641 cache->cached = BTRFS_CACHE_FAST;
642 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400643
Satoru Takeuchid8953d62017-09-12 20:08:08 +0900644 if (btrfs_test_opt(fs_info, SPACE_CACHE)) {
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500645 mutex_lock(&caching_ctl->mutex);
David Sterbabb6cb1c2019-03-20 13:47:15 +0100646 ret = load_free_space_cache(cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400647
648 spin_lock(&cache->lock);
649 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500650 cache->caching_ctl = NULL;
Josef Bacik9d66e232010-08-25 16:54:15 -0400651 cache->cached = BTRFS_CACHE_FINISHED;
652 cache->last_byte_to_unpin = (u64)-1;
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500653 caching_ctl->progress = (u64)-1;
Josef Bacik9d66e232010-08-25 16:54:15 -0400654 } else {
Josef Bacik291c7d22011-11-14 13:52:14 -0500655 if (load_cache_only) {
656 cache->caching_ctl = NULL;
657 cache->cached = BTRFS_CACHE_NO;
658 } else {
659 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000660 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500661 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400662 }
663 spin_unlock(&cache->lock);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400664#ifdef CONFIG_BTRFS_DEBUG
665 if (ret == 1 &&
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400666 btrfs_should_fragment_free_space(cache)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400667 u64 bytes_used;
668
669 spin_lock(&cache->space_info->lock);
670 spin_lock(&cache->lock);
671 bytes_used = cache->key.offset -
672 btrfs_block_group_used(&cache->item);
673 cache->space_info->bytes_used += bytes_used >> 1;
674 spin_unlock(&cache->lock);
675 spin_unlock(&cache->space_info->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400676 fragment_free_space(cache);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400677 }
678#endif
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500679 mutex_unlock(&caching_ctl->mutex);
680
Josef Bacik291c7d22011-11-14 13:52:14 -0500681 wake_up(&caching_ctl->wait);
Josef Bacik3c148742011-02-02 15:53:47 +0000682 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500683 put_caching_control(caching_ctl);
Nikolay Borisov9e715da2018-06-20 15:49:08 +0300684 free_excluded_extents(cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400685 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000686 }
Josef Bacik291c7d22011-11-14 13:52:14 -0500687 } else {
688 /*
Omar Sandoval1e144fb2015-09-29 20:50:37 -0700689 * We're either using the free space tree or no caching at all.
690 * Set cached to the appropriate value and wakeup any waiters.
Josef Bacik291c7d22011-11-14 13:52:14 -0500691 */
692 spin_lock(&cache->lock);
693 if (load_cache_only) {
694 cache->caching_ctl = NULL;
695 cache->cached = BTRFS_CACHE_NO;
696 } else {
697 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000698 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500699 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400700 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500701 wake_up(&caching_ctl->wait);
702 }
703
704 if (load_cache_only) {
705 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400706 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400707 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400708
Josef Bacik9e351cc2014-03-13 15:42:13 -0400709 down_write(&fs_info->commit_root_sem);
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200710 refcount_inc(&caching_ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400711 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400712 up_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -0400713
Josef Bacik11dfe352009-11-13 20:12:59 +0000714 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400715
Qu Wenruoe66f0bb2014-02-28 10:46:12 +0800716 btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work);
Josef Bacik817d52f2009-07-13 21:29:25 -0400717
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400718 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400719}
720
Josef Bacik0f9dd462008-09-23 13:14:11 -0400721/*
722 * return the block group that starts at or after bytenr
723 */
Chris Masond3977122009-01-05 21:25:51 -0500724static struct btrfs_block_group_cache *
725btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400726{
Masahiro Yamadae2c89902016-09-13 04:35:52 +0900727 return block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400728}
729
Josef Bacik0f9dd462008-09-23 13:14:11 -0400730/*
Sankar P9f556842009-05-14 13:52:22 -0400731 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400732 */
Chris Masond3977122009-01-05 21:25:51 -0500733struct btrfs_block_group_cache *btrfs_lookup_block_group(
734 struct btrfs_fs_info *info,
735 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400736{
Masahiro Yamadae2c89902016-09-13 04:35:52 +0900737 return block_group_cache_tree_search(info, bytenr, 1);
Chris Masonbe744172007-05-06 10:15:01 -0400738}
Chris Mason0b86a832008-03-24 15:01:56 -0400739
Josef Bacik0f9dd462008-09-23 13:14:11 -0400740static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
741 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400742{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400743 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400744 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400745
Ilya Dryomov52ba6922012-01-16 22:04:47 +0200746 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
Yan, Zhengb742bb822010-05-16 10:46:24 -0400747
Chris Mason4184ea72009-03-10 12:39:20 -0400748 rcu_read_lock();
749 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400750 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400751 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400752 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400753 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400754 }
Chris Mason4184ea72009-03-10 12:39:20 -0400755 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400756 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400757}
758
Qu Wenruoddf30cf2019-04-04 14:45:34 +0800759static void add_pinned_bytes(struct btrfs_fs_info *fs_info,
760 struct btrfs_ref *ref)
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700761{
762 struct btrfs_space_info *space_info;
Qu Wenruoddf30cf2019-04-04 14:45:34 +0800763 s64 num_bytes = -ref->len;
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700764 u64 flags;
765
Qu Wenruoddf30cf2019-04-04 14:45:34 +0800766 if (ref->type == BTRFS_REF_METADATA) {
767 if (ref->tree_ref.root == BTRFS_CHUNK_TREE_OBJECTID)
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700768 flags = BTRFS_BLOCK_GROUP_SYSTEM;
769 else
770 flags = BTRFS_BLOCK_GROUP_METADATA;
771 } else {
772 flags = BTRFS_BLOCK_GROUP_DATA;
773 }
774
775 space_info = __find_space_info(fs_info, flags);
Omar Sandoval55e81962017-06-06 16:45:27 -0700776 ASSERT(space_info);
Ethan Liendec59fa2018-07-13 16:50:42 +0800777 percpu_counter_add_batch(&space_info->total_bytes_pinned, num_bytes,
778 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700779}
780
Chris Mason4184ea72009-03-10 12:39:20 -0400781/*
782 * after adding space to the filesystem, we need to clear the full flags
783 * on all the space infos.
784 */
785void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
786{
787 struct list_head *head = &info->space_info;
788 struct btrfs_space_info *found;
789
790 rcu_read_lock();
791 list_for_each_entry_rcu(found, head, list)
792 found->full = 0;
793 rcu_read_unlock();
794}
795
Filipe Manana1a4ed8f2014-10-27 10:44:24 +0000796/* simple helper to search for an existing data extent at a given offset */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400797int btrfs_lookup_data_extent(struct btrfs_fs_info *fs_info, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400798{
799 int ret;
800 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400801 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400802
Zheng Yan31840ae2008-09-23 13:14:14 -0400803 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700804 if (!path)
805 return -ENOMEM;
806
Chris Masone02119d2008-09-05 16:13:11 -0400807 key.objectid = start;
808 key.offset = len;
Josef Bacik3173a182013-03-07 14:22:04 -0500809 key.type = BTRFS_EXTENT_ITEM_KEY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400810 ret = btrfs_search_slot(NULL, fs_info->extent_root, &key, path, 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400811 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500812 return ret;
813}
814
Chris Masond8d5f3e2007-12-11 12:42:00 -0500815/*
Josef Bacik3173a182013-03-07 14:22:04 -0500816 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400817 *
818 * the head node for delayed ref is used to store the sum of all the
819 * reference count modifications queued up in the rbtree. the head
820 * node may also store the extent flags to set. This way you can check
821 * to see what the reference count and extent flags would be if all of
822 * the delayed refs are not processed.
823 */
824int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400825 struct btrfs_fs_info *fs_info, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500826 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400827{
828 struct btrfs_delayed_ref_head *head;
829 struct btrfs_delayed_ref_root *delayed_refs;
830 struct btrfs_path *path;
831 struct btrfs_extent_item *ei;
832 struct extent_buffer *leaf;
833 struct btrfs_key key;
834 u32 item_size;
835 u64 num_refs;
836 u64 extent_flags;
837 int ret;
838
Josef Bacik3173a182013-03-07 14:22:04 -0500839 /*
840 * If we don't have skinny metadata, don't bother doing anything
841 * different
842 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400843 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) {
844 offset = fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500845 metadata = 0;
846 }
847
Yan, Zhenga22285a2010-05-16 10:48:46 -0400848 path = btrfs_alloc_path();
849 if (!path)
850 return -ENOMEM;
851
Yan, Zhenga22285a2010-05-16 10:48:46 -0400852 if (!trans) {
853 path->skip_locking = 1;
854 path->search_commit_root = 1;
855 }
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000856
857search_again:
858 key.objectid = bytenr;
859 key.offset = offset;
860 if (metadata)
861 key.type = BTRFS_METADATA_ITEM_KEY;
862 else
863 key.type = BTRFS_EXTENT_ITEM_KEY;
864
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400865 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400866 if (ret < 0)
867 goto out_free;
868
Josef Bacik3173a182013-03-07 14:22:04 -0500869 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100870 if (path->slots[0]) {
871 path->slots[0]--;
872 btrfs_item_key_to_cpu(path->nodes[0], &key,
873 path->slots[0]);
874 if (key.objectid == bytenr &&
875 key.type == BTRFS_EXTENT_ITEM_KEY &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400876 key.offset == fs_info->nodesize)
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100877 ret = 0;
878 }
Josef Bacik3173a182013-03-07 14:22:04 -0500879 }
880
Yan, Zhenga22285a2010-05-16 10:48:46 -0400881 if (ret == 0) {
882 leaf = path->nodes[0];
883 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
884 if (item_size >= sizeof(*ei)) {
885 ei = btrfs_item_ptr(leaf, path->slots[0],
886 struct btrfs_extent_item);
887 num_refs = btrfs_extent_refs(leaf, ei);
888 extent_flags = btrfs_extent_flags(leaf, ei);
889 } else {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +0300890 ret = -EINVAL;
891 btrfs_print_v0_err(fs_info);
892 if (trans)
893 btrfs_abort_transaction(trans, ret);
894 else
895 btrfs_handle_fs_error(fs_info, ret, NULL);
896
897 goto out_free;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400898 }
Nikolay Borisovba3c2b12018-06-26 16:57:36 +0300899
Yan, Zhenga22285a2010-05-16 10:48:46 -0400900 BUG_ON(num_refs == 0);
901 } else {
902 num_refs = 0;
903 extent_flags = 0;
904 ret = 0;
905 }
906
907 if (!trans)
908 goto out;
909
910 delayed_refs = &trans->transaction->delayed_refs;
911 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -0800912 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400913 if (head) {
914 if (!mutex_trylock(&head->mutex)) {
Josef Bacikd2788502017-09-29 15:43:57 -0400915 refcount_inc(&head->refs);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400916 spin_unlock(&delayed_refs->lock);
917
David Sterbab3b4aa72011-04-21 01:20:15 +0200918 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400919
David Sterba8cc33e52011-05-02 15:29:25 +0200920 /*
921 * Mutex was contended, block until it's released and try
922 * again
923 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400924 mutex_lock(&head->mutex);
925 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -0400926 btrfs_put_delayed_ref_head(head);
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000927 goto search_again;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400928 }
Josef Bacikd7df2c72014-01-23 09:21:38 -0500929 spin_lock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400930 if (head->extent_op && head->extent_op->update_flags)
931 extent_flags |= head->extent_op->flags_to_set;
932 else
933 BUG_ON(num_refs == 0);
934
Josef Bacikd2788502017-09-29 15:43:57 -0400935 num_refs += head->ref_mod;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500936 spin_unlock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400937 mutex_unlock(&head->mutex);
938 }
939 spin_unlock(&delayed_refs->lock);
940out:
941 WARN_ON(num_refs == 0);
942 if (refs)
943 *refs = num_refs;
944 if (flags)
945 *flags = extent_flags;
946out_free:
947 btrfs_free_path(path);
948 return ret;
949}
950
951/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500952 * Back reference rules. Back refs have three main goals:
953 *
954 * 1) differentiate between all holders of references to an extent so that
955 * when a reference is dropped we can make sure it was a valid reference
956 * before freeing the extent.
957 *
958 * 2) Provide enough information to quickly find the holders of an extent
959 * if we notice a given block is corrupted or bad.
960 *
961 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
962 * maintenance. This is actually the same as #2, but with a slightly
963 * different use case.
964 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400965 * There are two kinds of back refs. The implicit back refs is optimized
966 * for pointers in non-shared tree blocks. For a given pointer in a block,
967 * back refs of this kind provide information about the block's owner tree
968 * and the pointer's key. These information allow us to find the block by
969 * b-tree searching. The full back refs is for pointers in tree blocks not
970 * referenced by their owner trees. The location of tree block is recorded
971 * in the back refs. Actually the full back refs is generic, and can be
972 * used in all cases the implicit back refs is used. The major shortcoming
973 * of the full back refs is its overhead. Every time a tree block gets
974 * COWed, we have to update back refs entry for all pointers in it.
975 *
976 * For a newly allocated tree block, we use implicit back refs for
977 * pointers in it. This means most tree related operations only involve
978 * implicit back refs. For a tree block created in old transaction, the
979 * only way to drop a reference to it is COW it. So we can detect the
980 * event that tree block loses its owner tree's reference and do the
981 * back refs conversion.
982 *
Nicholas D Steeves01327612016-05-19 21:18:45 -0400983 * When a tree block is COWed through a tree, there are four cases:
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400984 *
985 * The reference count of the block is one and the tree is the block's
986 * owner tree. Nothing to do in this case.
987 *
988 * The reference count of the block is one and the tree is not the
989 * block's owner tree. In this case, full back refs is used for pointers
990 * in the block. Remove these full back refs, add implicit back refs for
991 * every pointers in the new block.
992 *
993 * The reference count of the block is greater than one and the tree is
994 * the block's owner tree. In this case, implicit back refs is used for
995 * pointers in the block. Add full back refs for every pointers in the
996 * block, increase lower level extents' reference counts. The original
997 * implicit back refs are entailed to the new block.
998 *
999 * The reference count of the block is greater than one and the tree is
1000 * not the block's owner tree. Add implicit back refs for every pointer in
1001 * the new block, increase lower level extents' reference count.
1002 *
1003 * Back Reference Key composing:
1004 *
1005 * The key objectid corresponds to the first byte in the extent,
1006 * The key type is used to differentiate between types of back refs.
1007 * There are different meanings of the key offset for different types
1008 * of back refs.
1009 *
Chris Masond8d5f3e2007-12-11 12:42:00 -05001010 * File extents can be referenced by:
1011 *
1012 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -04001013 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -05001014 * - different offsets inside a file (bookend extents in file.c)
1015 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001016 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001017 *
1018 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -05001019 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001020 * - original offset in the file
1021 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -04001022 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001023 * The key offset for the implicit back refs is hash of the first
1024 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001025 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001026 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001027 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001028 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001029 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001030 * The key offset for the implicit back refs is the first byte of
1031 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001032 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001033 * When a file extent is allocated, The implicit back refs is used.
1034 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001035 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001036 * (root_key.objectid, inode objectid, offset in file, 1)
1037 *
1038 * When a file extent is removed file truncation, we find the
1039 * corresponding implicit back refs and check the following fields:
1040 *
1041 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -05001042 *
1043 * Btree extents can be referenced by:
1044 *
1045 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -05001046 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001047 * Both the implicit back refs and the full back refs for tree blocks
1048 * only consist of key. The key offset for the implicit back refs is
1049 * objectid of block's owner tree. The key offset for the full back refs
1050 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001051 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001052 * When implicit back refs is used, information about the lowest key and
1053 * level of the tree block are required. These information are stored in
1054 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001055 */
Zheng Yan31840ae2008-09-23 13:14:14 -04001056
Liu Bo167ce952017-08-18 15:15:18 -06001057/*
1058 * is_data == BTRFS_REF_TYPE_BLOCK, tree block type is required,
Andrea Gelmini52042d82018-11-28 12:05:13 +01001059 * is_data == BTRFS_REF_TYPE_DATA, data type is requiried,
Liu Bo167ce952017-08-18 15:15:18 -06001060 * is_data == BTRFS_REF_TYPE_ANY, either type is OK.
1061 */
1062int btrfs_get_extent_inline_ref_type(const struct extent_buffer *eb,
1063 struct btrfs_extent_inline_ref *iref,
1064 enum btrfs_inline_ref_type is_data)
1065{
1066 int type = btrfs_extent_inline_ref_type(eb, iref);
Liu Bo64ecdb62017-08-18 15:15:24 -06001067 u64 offset = btrfs_extent_inline_ref_offset(eb, iref);
Liu Bo167ce952017-08-18 15:15:18 -06001068
1069 if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1070 type == BTRFS_SHARED_BLOCK_REF_KEY ||
1071 type == BTRFS_SHARED_DATA_REF_KEY ||
1072 type == BTRFS_EXTENT_DATA_REF_KEY) {
1073 if (is_data == BTRFS_REF_TYPE_BLOCK) {
Liu Bo64ecdb62017-08-18 15:15:24 -06001074 if (type == BTRFS_TREE_BLOCK_REF_KEY)
Liu Bo167ce952017-08-18 15:15:18 -06001075 return type;
Liu Bo64ecdb62017-08-18 15:15:24 -06001076 if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1077 ASSERT(eb->fs_info);
1078 /*
1079 * Every shared one has parent tree
1080 * block, which must be aligned to
1081 * nodesize.
1082 */
1083 if (offset &&
1084 IS_ALIGNED(offset, eb->fs_info->nodesize))
1085 return type;
1086 }
Liu Bo167ce952017-08-18 15:15:18 -06001087 } else if (is_data == BTRFS_REF_TYPE_DATA) {
Liu Bo64ecdb62017-08-18 15:15:24 -06001088 if (type == BTRFS_EXTENT_DATA_REF_KEY)
Liu Bo167ce952017-08-18 15:15:18 -06001089 return type;
Liu Bo64ecdb62017-08-18 15:15:24 -06001090 if (type == BTRFS_SHARED_DATA_REF_KEY) {
1091 ASSERT(eb->fs_info);
1092 /*
1093 * Every shared one has parent tree
1094 * block, which must be aligned to
1095 * nodesize.
1096 */
1097 if (offset &&
1098 IS_ALIGNED(offset, eb->fs_info->nodesize))
1099 return type;
1100 }
Liu Bo167ce952017-08-18 15:15:18 -06001101 } else {
1102 ASSERT(is_data == BTRFS_REF_TYPE_ANY);
1103 return type;
1104 }
1105 }
1106
1107 btrfs_print_leaf((struct extent_buffer *)eb);
1108 btrfs_err(eb->fs_info, "eb %llu invalid extent inline ref type %d",
1109 eb->start, type);
1110 WARN_ON(1);
1111
1112 return BTRFS_REF_TYPE_INVALID;
1113}
1114
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001115static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1116{
1117 u32 high_crc = ~(u32)0;
1118 u32 low_crc = ~(u32)0;
1119 __le64 lenum;
1120
1121 lenum = cpu_to_le64(root_objectid);
Nikolay Borisov9678c542018-01-08 11:45:05 +02001122 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001123 lenum = cpu_to_le64(owner);
Nikolay Borisov9678c542018-01-08 11:45:05 +02001124 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001125 lenum = cpu_to_le64(offset);
Nikolay Borisov9678c542018-01-08 11:45:05 +02001126 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001127
1128 return ((u64)high_crc << 31) ^ (u64)low_crc;
1129}
1130
1131static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1132 struct btrfs_extent_data_ref *ref)
1133{
1134 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1135 btrfs_extent_data_ref_objectid(leaf, ref),
1136 btrfs_extent_data_ref_offset(leaf, ref));
1137}
1138
1139static int match_extent_data_ref(struct extent_buffer *leaf,
1140 struct btrfs_extent_data_ref *ref,
1141 u64 root_objectid, u64 owner, u64 offset)
1142{
1143 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1144 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1145 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1146 return 0;
1147 return 1;
1148}
1149
1150static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001151 struct btrfs_path *path,
1152 u64 bytenr, u64 parent,
1153 u64 root_objectid,
1154 u64 owner, u64 offset)
1155{
Nikolay Borisovbd1d53e2018-06-20 15:48:51 +03001156 struct btrfs_root *root = trans->fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001157 struct btrfs_key key;
1158 struct btrfs_extent_data_ref *ref;
1159 struct extent_buffer *leaf;
1160 u32 nritems;
1161 int ret;
1162 int recow;
1163 int err = -ENOENT;
1164
1165 key.objectid = bytenr;
1166 if (parent) {
1167 key.type = BTRFS_SHARED_DATA_REF_KEY;
1168 key.offset = parent;
1169 } else {
1170 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1171 key.offset = hash_extent_data_ref(root_objectid,
1172 owner, offset);
1173 }
1174again:
1175 recow = 0;
1176 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1177 if (ret < 0) {
1178 err = ret;
1179 goto fail;
1180 }
1181
1182 if (parent) {
1183 if (!ret)
1184 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001185 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001186 }
1187
1188 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001189 nritems = btrfs_header_nritems(leaf);
1190 while (1) {
1191 if (path->slots[0] >= nritems) {
1192 ret = btrfs_next_leaf(root, path);
1193 if (ret < 0)
1194 err = ret;
1195 if (ret)
1196 goto fail;
1197
1198 leaf = path->nodes[0];
1199 nritems = btrfs_header_nritems(leaf);
1200 recow = 1;
1201 }
1202
1203 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1204 if (key.objectid != bytenr ||
1205 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1206 goto fail;
1207
1208 ref = btrfs_item_ptr(leaf, path->slots[0],
1209 struct btrfs_extent_data_ref);
1210
1211 if (match_extent_data_ref(leaf, ref, root_objectid,
1212 owner, offset)) {
1213 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001214 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001215 goto again;
1216 }
1217 err = 0;
1218 break;
1219 }
1220 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001221 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001222fail:
1223 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001224}
1225
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001226static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001227 struct btrfs_path *path,
1228 u64 bytenr, u64 parent,
1229 u64 root_objectid, u64 owner,
1230 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001231{
Nikolay Borisov62b895a2018-06-20 15:48:44 +03001232 struct btrfs_root *root = trans->fs_info->extent_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04001233 struct btrfs_key key;
1234 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001235 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001236 u32 num_refs;
1237 int ret;
1238
1239 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001240 if (parent) {
1241 key.type = BTRFS_SHARED_DATA_REF_KEY;
1242 key.offset = parent;
1243 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001244 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001245 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1246 key.offset = hash_extent_data_ref(root_objectid,
1247 owner, offset);
1248 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001249 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001250
1251 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1252 if (ret && ret != -EEXIST)
1253 goto fail;
1254
1255 leaf = path->nodes[0];
1256 if (parent) {
1257 struct btrfs_shared_data_ref *ref;
1258 ref = btrfs_item_ptr(leaf, path->slots[0],
1259 struct btrfs_shared_data_ref);
1260 if (ret == 0) {
1261 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1262 } else {
1263 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1264 num_refs += refs_to_add;
1265 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1266 }
1267 } else {
1268 struct btrfs_extent_data_ref *ref;
1269 while (ret == -EEXIST) {
1270 ref = btrfs_item_ptr(leaf, path->slots[0],
1271 struct btrfs_extent_data_ref);
1272 if (match_extent_data_ref(leaf, ref, root_objectid,
1273 owner, offset))
1274 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001275 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001276 key.offset++;
1277 ret = btrfs_insert_empty_item(trans, root, path, &key,
1278 size);
1279 if (ret && ret != -EEXIST)
1280 goto fail;
1281
1282 leaf = path->nodes[0];
1283 }
1284 ref = btrfs_item_ptr(leaf, path->slots[0],
1285 struct btrfs_extent_data_ref);
1286 if (ret == 0) {
1287 btrfs_set_extent_data_ref_root(leaf, ref,
1288 root_objectid);
1289 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1290 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1291 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1292 } else {
1293 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1294 num_refs += refs_to_add;
1295 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1296 }
1297 }
1298 btrfs_mark_buffer_dirty(leaf);
1299 ret = 0;
1300fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001301 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001302 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001303}
1304
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001305static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001306 struct btrfs_path *path,
Josef Bacikfcebe452014-05-13 17:30:47 -07001307 int refs_to_drop, int *last_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04001308{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001309 struct btrfs_key key;
1310 struct btrfs_extent_data_ref *ref1 = NULL;
1311 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001312 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001313 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001314 int ret = 0;
1315
1316 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001317 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1318
1319 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1320 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1321 struct btrfs_extent_data_ref);
1322 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1323 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1324 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1325 struct btrfs_shared_data_ref);
1326 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
David Sterba6d8ff4e2018-06-26 16:20:59 +02001327 } else if (unlikely(key.type == BTRFS_EXTENT_REF_V0_KEY)) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03001328 btrfs_print_v0_err(trans->fs_info);
1329 btrfs_abort_transaction(trans, -EINVAL);
1330 return -EINVAL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001331 } else {
1332 BUG();
1333 }
1334
Chris Mason56bec292009-03-13 10:10:06 -04001335 BUG_ON(num_refs < refs_to_drop);
1336 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001337
Zheng Yan31840ae2008-09-23 13:14:14 -04001338 if (num_refs == 0) {
Nikolay Borisove9f62902018-06-20 15:48:46 +03001339 ret = btrfs_del_item(trans, trans->fs_info->extent_root, path);
Josef Bacikfcebe452014-05-13 17:30:47 -07001340 *last_ref = 1;
Zheng Yan31840ae2008-09-23 13:14:14 -04001341 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001342 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1343 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1344 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1345 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
Zheng Yan31840ae2008-09-23 13:14:14 -04001346 btrfs_mark_buffer_dirty(leaf);
1347 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001348 return ret;
1349}
1350
Zhaolei9ed0dea2015-08-06 22:16:24 +08001351static noinline u32 extent_data_ref_count(struct btrfs_path *path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001352 struct btrfs_extent_inline_ref *iref)
1353{
1354 struct btrfs_key key;
1355 struct extent_buffer *leaf;
1356 struct btrfs_extent_data_ref *ref1;
1357 struct btrfs_shared_data_ref *ref2;
1358 u32 num_refs = 0;
Liu Bo3de28d52017-08-18 15:15:19 -06001359 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001360
1361 leaf = path->nodes[0];
1362 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03001363
1364 BUG_ON(key.type == BTRFS_EXTENT_REF_V0_KEY);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001365 if (iref) {
Liu Bo3de28d52017-08-18 15:15:19 -06001366 /*
1367 * If type is invalid, we should have bailed out earlier than
1368 * this call.
1369 */
1370 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
1371 ASSERT(type != BTRFS_REF_TYPE_INVALID);
1372 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001373 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1374 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1375 } else {
1376 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1377 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1378 }
1379 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1380 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1381 struct btrfs_extent_data_ref);
1382 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1383 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1384 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1385 struct btrfs_shared_data_ref);
1386 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001387 } else {
1388 WARN_ON(1);
1389 }
1390 return num_refs;
1391}
1392
1393static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001394 struct btrfs_path *path,
1395 u64 bytenr, u64 parent,
1396 u64 root_objectid)
1397{
Nikolay Borisovb8582ee2018-06-20 15:48:50 +03001398 struct btrfs_root *root = trans->fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001399 struct btrfs_key key;
1400 int ret;
1401
1402 key.objectid = bytenr;
1403 if (parent) {
1404 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1405 key.offset = parent;
1406 } else {
1407 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1408 key.offset = root_objectid;
1409 }
1410
1411 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1412 if (ret > 0)
1413 ret = -ENOENT;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001414 return ret;
1415}
1416
1417static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001418 struct btrfs_path *path,
1419 u64 bytenr, u64 parent,
1420 u64 root_objectid)
1421{
1422 struct btrfs_key key;
1423 int ret;
1424
1425 key.objectid = bytenr;
1426 if (parent) {
1427 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1428 key.offset = parent;
1429 } else {
1430 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1431 key.offset = root_objectid;
1432 }
1433
Nikolay Borisov10728402018-06-20 15:48:43 +03001434 ret = btrfs_insert_empty_item(trans, trans->fs_info->extent_root,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001435 path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001436 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001437 return ret;
1438}
1439
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001440static inline int extent_ref_type(u64 parent, u64 owner)
1441{
1442 int type;
1443 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1444 if (parent > 0)
1445 type = BTRFS_SHARED_BLOCK_REF_KEY;
1446 else
1447 type = BTRFS_TREE_BLOCK_REF_KEY;
1448 } else {
1449 if (parent > 0)
1450 type = BTRFS_SHARED_DATA_REF_KEY;
1451 else
1452 type = BTRFS_EXTENT_DATA_REF_KEY;
1453 }
1454 return type;
1455}
1456
Yan Zheng2c47e6052009-06-27 21:07:35 -04001457static int find_next_key(struct btrfs_path *path, int level,
1458 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001459
1460{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001461 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001462 if (!path->nodes[level])
1463 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001464 if (path->slots[level] + 1 >=
1465 btrfs_header_nritems(path->nodes[level]))
1466 continue;
1467 if (level == 0)
1468 btrfs_item_key_to_cpu(path->nodes[level], key,
1469 path->slots[level] + 1);
1470 else
1471 btrfs_node_key_to_cpu(path->nodes[level], key,
1472 path->slots[level] + 1);
1473 return 0;
1474 }
1475 return 1;
1476}
1477
1478/*
1479 * look for inline back ref. if back ref is found, *ref_ret is set
1480 * to the address of inline back ref, and 0 is returned.
1481 *
1482 * if back ref isn't found, *ref_ret is set to the address where it
1483 * should be inserted, and -ENOENT is returned.
1484 *
1485 * if insert is true and there are too many inline back refs, the path
1486 * points to the extent item, and -EAGAIN is returned.
1487 *
1488 * NOTE: inline back refs are ordered in the same way that back ref
1489 * items in the tree are ordered.
1490 */
1491static noinline_for_stack
1492int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001493 struct btrfs_path *path,
1494 struct btrfs_extent_inline_ref **ref_ret,
1495 u64 bytenr, u64 num_bytes,
1496 u64 parent, u64 root_objectid,
1497 u64 owner, u64 offset, int insert)
1498{
Nikolay Borisov867cc1f2018-06-20 15:48:48 +03001499 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001500 struct btrfs_root *root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001501 struct btrfs_key key;
1502 struct extent_buffer *leaf;
1503 struct btrfs_extent_item *ei;
1504 struct btrfs_extent_inline_ref *iref;
1505 u64 flags;
1506 u64 item_size;
1507 unsigned long ptr;
1508 unsigned long end;
1509 int extra_size;
1510 int type;
1511 int want;
1512 int ret;
1513 int err = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001514 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Liu Bo3de28d52017-08-18 15:15:19 -06001515 int needed;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001516
1517 key.objectid = bytenr;
1518 key.type = BTRFS_EXTENT_ITEM_KEY;
1519 key.offset = num_bytes;
1520
1521 want = extent_ref_type(parent, owner);
1522 if (insert) {
1523 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001524 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001525 } else
1526 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001527
1528 /*
Nikolay Borisov16d1c062018-06-18 14:59:26 +03001529 * Owner is our level, so we can just add one to get the level for the
1530 * block we are interested in.
Josef Bacik3173a182013-03-07 14:22:04 -05001531 */
1532 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1533 key.type = BTRFS_METADATA_ITEM_KEY;
1534 key.offset = owner;
1535 }
1536
1537again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001538 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1539 if (ret < 0) {
1540 err = ret;
1541 goto out;
1542 }
Josef Bacik3173a182013-03-07 14:22:04 -05001543
1544 /*
1545 * We may be a newly converted file system which still has the old fat
1546 * extent entries for metadata, so try and see if we have one of those.
1547 */
1548 if (ret > 0 && skinny_metadata) {
1549 skinny_metadata = false;
1550 if (path->slots[0]) {
1551 path->slots[0]--;
1552 btrfs_item_key_to_cpu(path->nodes[0], &key,
1553 path->slots[0]);
1554 if (key.objectid == bytenr &&
1555 key.type == BTRFS_EXTENT_ITEM_KEY &&
1556 key.offset == num_bytes)
1557 ret = 0;
1558 }
1559 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001560 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001561 key.type = BTRFS_EXTENT_ITEM_KEY;
1562 key.offset = num_bytes;
1563 btrfs_release_path(path);
1564 goto again;
1565 }
1566 }
1567
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001568 if (ret && !insert) {
1569 err = -ENOENT;
1570 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301571 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001572 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001573 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001574 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001575
1576 leaf = path->nodes[0];
1577 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
David Sterba6d8ff4e2018-06-26 16:20:59 +02001578 if (unlikely(item_size < sizeof(*ei))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03001579 err = -EINVAL;
1580 btrfs_print_v0_err(fs_info);
1581 btrfs_abort_transaction(trans, err);
1582 goto out;
1583 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001584
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001585 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1586 flags = btrfs_extent_flags(leaf, ei);
1587
1588 ptr = (unsigned long)(ei + 1);
1589 end = (unsigned long)ei + item_size;
1590
Josef Bacik3173a182013-03-07 14:22:04 -05001591 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001592 ptr += sizeof(struct btrfs_tree_block_info);
1593 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001594 }
1595
Liu Bo3de28d52017-08-18 15:15:19 -06001596 if (owner >= BTRFS_FIRST_FREE_OBJECTID)
1597 needed = BTRFS_REF_TYPE_DATA;
1598 else
1599 needed = BTRFS_REF_TYPE_BLOCK;
1600
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001601 err = -ENOENT;
1602 while (1) {
1603 if (ptr >= end) {
1604 WARN_ON(ptr > end);
1605 break;
1606 }
1607 iref = (struct btrfs_extent_inline_ref *)ptr;
Liu Bo3de28d52017-08-18 15:15:19 -06001608 type = btrfs_get_extent_inline_ref_type(leaf, iref, needed);
1609 if (type == BTRFS_REF_TYPE_INVALID) {
Su Yueaf431dc2018-06-22 16:18:01 +08001610 err = -EUCLEAN;
Liu Bo3de28d52017-08-18 15:15:19 -06001611 goto out;
1612 }
1613
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001614 if (want < type)
1615 break;
1616 if (want > type) {
1617 ptr += btrfs_extent_inline_ref_size(type);
1618 continue;
1619 }
1620
1621 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1622 struct btrfs_extent_data_ref *dref;
1623 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1624 if (match_extent_data_ref(leaf, dref, root_objectid,
1625 owner, offset)) {
1626 err = 0;
1627 break;
1628 }
1629 if (hash_extent_data_ref_item(leaf, dref) <
1630 hash_extent_data_ref(root_objectid, owner, offset))
1631 break;
1632 } else {
1633 u64 ref_offset;
1634 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1635 if (parent > 0) {
1636 if (parent == ref_offset) {
1637 err = 0;
1638 break;
1639 }
1640 if (ref_offset < parent)
1641 break;
1642 } else {
1643 if (root_objectid == ref_offset) {
1644 err = 0;
1645 break;
1646 }
1647 if (ref_offset < root_objectid)
1648 break;
1649 }
1650 }
1651 ptr += btrfs_extent_inline_ref_size(type);
1652 }
1653 if (err == -ENOENT && insert) {
1654 if (item_size + extra_size >=
1655 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1656 err = -EAGAIN;
1657 goto out;
1658 }
1659 /*
1660 * To add new inline back ref, we have to make sure
1661 * there is no corresponding back ref item.
1662 * For simplicity, we just do not add new inline back
1663 * ref if there is any kind of item for this block
1664 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001665 if (find_next_key(path, 0, &key) == 0 &&
1666 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001667 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001668 err = -EAGAIN;
1669 goto out;
1670 }
1671 }
1672 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1673out:
Yan Zheng85d41982009-06-11 08:51:10 -04001674 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001675 path->keep_locks = 0;
1676 btrfs_unlock_up_safe(path, 1);
1677 }
1678 return err;
1679}
1680
1681/*
1682 * helper to add new inline back ref
1683 */
1684static noinline_for_stack
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001685void setup_inline_extent_backref(struct btrfs_fs_info *fs_info,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001686 struct btrfs_path *path,
1687 struct btrfs_extent_inline_ref *iref,
1688 u64 parent, u64 root_objectid,
1689 u64 owner, u64 offset, int refs_to_add,
1690 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001691{
1692 struct extent_buffer *leaf;
1693 struct btrfs_extent_item *ei;
1694 unsigned long ptr;
1695 unsigned long end;
1696 unsigned long item_offset;
1697 u64 refs;
1698 int size;
1699 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001700
1701 leaf = path->nodes[0];
1702 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1703 item_offset = (unsigned long)iref - (unsigned long)ei;
1704
1705 type = extent_ref_type(parent, owner);
1706 size = btrfs_extent_inline_ref_size(type);
1707
David Sterbac71dd882019-03-20 14:51:10 +01001708 btrfs_extend_item(path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001709
1710 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1711 refs = btrfs_extent_refs(leaf, ei);
1712 refs += refs_to_add;
1713 btrfs_set_extent_refs(leaf, ei, refs);
1714 if (extent_op)
1715 __run_delayed_extent_op(extent_op, leaf, ei);
1716
1717 ptr = (unsigned long)ei + item_offset;
1718 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1719 if (ptr < end - size)
1720 memmove_extent_buffer(leaf, ptr + size, ptr,
1721 end - size - ptr);
1722
1723 iref = (struct btrfs_extent_inline_ref *)ptr;
1724 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1725 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1726 struct btrfs_extent_data_ref *dref;
1727 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1728 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1729 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1730 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1731 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1732 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1733 struct btrfs_shared_data_ref *sref;
1734 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1735 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1736 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1737 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1738 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1739 } else {
1740 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1741 }
1742 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001743}
1744
1745static int lookup_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001746 struct btrfs_path *path,
1747 struct btrfs_extent_inline_ref **ref_ret,
1748 u64 bytenr, u64 num_bytes, u64 parent,
1749 u64 root_objectid, u64 owner, u64 offset)
1750{
1751 int ret;
1752
Nikolay Borisov867cc1f2018-06-20 15:48:48 +03001753 ret = lookup_inline_extent_backref(trans, path, ref_ret, bytenr,
1754 num_bytes, parent, root_objectid,
1755 owner, offset, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001756 if (ret != -ENOENT)
1757 return ret;
1758
David Sterbab3b4aa72011-04-21 01:20:15 +02001759 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001760 *ref_ret = NULL;
1761
1762 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Nikolay Borisovb8582ee2018-06-20 15:48:50 +03001763 ret = lookup_tree_block_ref(trans, path, bytenr, parent,
1764 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001765 } else {
Nikolay Borisovbd1d53e2018-06-20 15:48:51 +03001766 ret = lookup_extent_data_ref(trans, path, bytenr, parent,
1767 root_objectid, owner, offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001768 }
1769 return ret;
1770}
1771
1772/*
1773 * helper to update/remove inline back ref
1774 */
1775static noinline_for_stack
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001776void update_inline_extent_backref(struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001777 struct btrfs_extent_inline_ref *iref,
1778 int refs_to_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07001779 struct btrfs_delayed_extent_op *extent_op,
1780 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001781{
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001782 struct extent_buffer *leaf = path->nodes[0];
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;
David Sterba78ac4f92019-03-20 14:49:12 +01001837 btrfs_truncate_item(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,
Qu Wenruo82fa1132019-04-04 14:45:35 +08002045 struct btrfs_ref *generic_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04002046{
Qu Wenruo82fa1132019-04-04 14:45:35 +08002047 struct btrfs_fs_info *fs_info = trans->fs_info;
Omar Sandovald7eae342017-06-06 16:45:31 -07002048 int old_ref_mod, new_ref_mod;
Zheng Yan31840ae2008-09-23 13:14:14 -04002049 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002050
Qu Wenruo82fa1132019-04-04 14:45:35 +08002051 ASSERT(generic_ref->type != BTRFS_REF_NOT_SET &&
2052 generic_ref->action);
2053 BUG_ON(generic_ref->type == BTRFS_REF_METADATA &&
2054 generic_ref->tree_ref.root == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04002055
Qu Wenruo82fa1132019-04-04 14:45:35 +08002056 if (generic_ref->type == BTRFS_REF_METADATA)
2057 ret = btrfs_add_delayed_tree_ref(trans, generic_ref,
Qu Wenruoed4f2552019-04-04 14:45:31 +08002058 NULL, &old_ref_mod, &new_ref_mod);
Qu Wenruo82fa1132019-04-04 14:45:35 +08002059 else
2060 ret = btrfs_add_delayed_data_ref(trans, generic_ref, 0,
Omar Sandovald7eae342017-06-06 16:45:31 -07002061 &old_ref_mod, &new_ref_mod);
Omar Sandovald7eae342017-06-06 16:45:31 -07002062
Qu Wenruo82fa1132019-04-04 14:45:35 +08002063 btrfs_ref_tree_mod(fs_info, generic_ref);
Qu Wenruo8a5040f2019-04-04 14:45:33 +08002064
Qu Wenruoddf30cf2019-04-04 14:45:34 +08002065 if (ret == 0 && old_ref_mod < 0 && new_ref_mod >= 0)
Qu Wenruo82fa1132019-04-04 14:45:35 +08002066 add_pinned_bytes(fs_info, generic_ref);
Omar Sandovald7eae342017-06-06 16:45:31 -07002067
Zheng Yan31840ae2008-09-23 13:14:14 -04002068 return ret;
2069}
2070
Nikolay Borisovbd3c6852018-06-18 14:59:25 +03002071/*
2072 * __btrfs_inc_extent_ref - insert backreference for a given extent
2073 *
2074 * @trans: Handle of transaction
2075 *
2076 * @node: The delayed ref node used to get the bytenr/length for
2077 * extent whose references are incremented.
2078 *
2079 * @parent: If this is a shared extent (BTRFS_SHARED_DATA_REF_KEY/
2080 * BTRFS_SHARED_BLOCK_REF_KEY) then it holds the logical
2081 * bytenr of the parent block. Since new extents are always
2082 * created with indirect references, this will only be the case
2083 * when relocating a shared extent. In that case, root_objectid
2084 * will be BTRFS_TREE_RELOC_OBJECTID. Otheriwse, parent must
2085 * be 0
2086 *
2087 * @root_objectid: The id of the root where this modification has originated,
2088 * this can be either one of the well-known metadata trees or
2089 * the subvolume id which references this extent.
2090 *
2091 * @owner: For data extents it is the inode number of the owning file.
2092 * For metadata extents this parameter holds the level in the
2093 * tree of the extent.
2094 *
2095 * @offset: For metadata extents the offset is ignored and is currently
2096 * always passed as 0. For data extents it is the fileoffset
2097 * this extent belongs to.
2098 *
2099 * @refs_to_add Number of references to add
2100 *
2101 * @extent_op Pointer to a structure, holding information necessary when
2102 * updating a tree block's flags
2103 *
2104 */
Chris Mason925baed2008-06-25 16:01:30 -04002105static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002106 struct btrfs_delayed_ref_node *node,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002107 u64 parent, u64 root_objectid,
2108 u64 owner, u64 offset, int refs_to_add,
2109 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04002110{
Chris Mason5caf2a02007-04-02 11:20:42 -04002111 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002112 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04002113 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07002114 struct btrfs_key key;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002115 u64 bytenr = node->bytenr;
2116 u64 num_bytes = node->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002117 u64 refs;
2118 int ret;
Chris Mason037e6392007-03-07 11:50:24 -05002119
Chris Mason5caf2a02007-04-02 11:20:42 -04002120 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002121 if (!path)
2122 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04002123
David Sterbae4058b52015-11-27 16:31:35 +01002124 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002125 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002126 /* this will setup the path even if it fails to insert the back ref */
Nikolay Borisova639cde2018-06-20 15:49:10 +03002127 ret = insert_inline_extent_backref(trans, path, bytenr, num_bytes,
2128 parent, root_objectid, owner,
2129 offset, refs_to_add, extent_op);
Qu Wenruo0ed47922015-04-16 16:55:08 +08002130 if ((ret < 0 && ret != -EAGAIN) || !ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002131 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002132
2133 /*
2134 * Ok we had -EAGAIN which means we didn't have space to insert and
2135 * inline extent ref, so just update the reference count and add a
2136 * normal backref.
2137 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002138 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002139 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002140 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2141 refs = btrfs_extent_refs(leaf, item);
2142 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2143 if (extent_op)
2144 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002145
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002146 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002147 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002148
David Sterbae4058b52015-11-27 16:31:35 +01002149 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002150 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002151 /* now insert the actual backref */
Nikolay Borisov37593412018-06-20 15:48:45 +03002152 ret = insert_extent_backref(trans, path, bytenr, parent, root_objectid,
2153 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002154 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04002155 btrfs_abort_transaction(trans, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002156out:
Chris Mason74493f72007-12-11 09:25:06 -05002157 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002158 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002159}
2160
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002161static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002162 struct btrfs_delayed_ref_node *node,
2163 struct btrfs_delayed_extent_op *extent_op,
2164 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002165{
Chris Mason56bec292009-03-13 10:10:06 -04002166 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002167 struct btrfs_delayed_data_ref *ref;
2168 struct btrfs_key ins;
2169 u64 parent = 0;
2170 u64 ref_root = 0;
2171 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002172
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002173 ins.objectid = node->bytenr;
2174 ins.offset = node->num_bytes;
2175 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002176
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002177 ref = btrfs_delayed_node_to_data_ref(node);
Nikolay Borisov2bf98ef2018-06-20 15:49:00 +03002178 trace_run_delayed_data_ref(trans->fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002179
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002180 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2181 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002182 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002183
2184 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002185 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002186 flags |= extent_op->flags_to_set;
Nikolay Borisovef89b822018-06-20 15:48:58 +03002187 ret = alloc_reserved_file_extent(trans, parent, ref_root,
2188 flags, ref->objectid,
2189 ref->offset, &ins,
2190 node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002191 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Nikolay Borisov2590d0f2018-06-20 15:48:59 +03002192 ret = __btrfs_inc_extent_ref(trans, node, parent, ref_root,
2193 ref->objectid, ref->offset,
2194 node->ref_mod, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002195 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Nikolay Borisove72cb922018-06-20 15:48:57 +03002196 ret = __btrfs_free_extent(trans, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002197 ref_root, ref->objectid,
2198 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002199 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002200 } else {
2201 BUG();
2202 }
Chris Mason56bec292009-03-13 10:10:06 -04002203 return ret;
2204}
2205
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002206static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2207 struct extent_buffer *leaf,
2208 struct btrfs_extent_item *ei)
2209{
2210 u64 flags = btrfs_extent_flags(leaf, ei);
2211 if (extent_op->update_flags) {
2212 flags |= extent_op->flags_to_set;
2213 btrfs_set_extent_flags(leaf, ei, flags);
2214 }
2215
2216 if (extent_op->update_key) {
2217 struct btrfs_tree_block_info *bi;
2218 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2219 bi = (struct btrfs_tree_block_info *)(ei + 1);
2220 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2221 }
2222}
2223
2224static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
Josef Bacikd2788502017-09-29 15:43:57 -04002225 struct btrfs_delayed_ref_head *head,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002226 struct btrfs_delayed_extent_op *extent_op)
2227{
Nikolay Borisov20b9a2d2018-06-20 15:49:01 +03002228 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002229 struct btrfs_key key;
2230 struct btrfs_path *path;
2231 struct btrfs_extent_item *ei;
2232 struct extent_buffer *leaf;
2233 u32 item_size;
2234 int ret;
2235 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002236 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002237
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002238 if (trans->aborted)
2239 return 0;
2240
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002241 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik3173a182013-03-07 14:22:04 -05002242 metadata = 0;
2243
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002244 path = btrfs_alloc_path();
2245 if (!path)
2246 return -ENOMEM;
2247
Josef Bacikd2788502017-09-29 15:43:57 -04002248 key.objectid = head->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002249
Josef Bacik3173a182013-03-07 14:22:04 -05002250 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002251 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002252 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002253 } else {
2254 key.type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacikd2788502017-09-29 15:43:57 -04002255 key.offset = head->num_bytes;
Josef Bacik3173a182013-03-07 14:22:04 -05002256 }
2257
2258again:
David Sterbae4058b52015-11-27 16:31:35 +01002259 path->reada = READA_FORWARD;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002260 path->leave_spinning = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002261 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002262 if (ret < 0) {
2263 err = ret;
2264 goto out;
2265 }
2266 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002267 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002268 if (path->slots[0] > 0) {
2269 path->slots[0]--;
2270 btrfs_item_key_to_cpu(path->nodes[0], &key,
2271 path->slots[0]);
Josef Bacikd2788502017-09-29 15:43:57 -04002272 if (key.objectid == head->bytenr &&
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002273 key.type == BTRFS_EXTENT_ITEM_KEY &&
Josef Bacikd2788502017-09-29 15:43:57 -04002274 key.offset == head->num_bytes)
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002275 ret = 0;
2276 }
2277 if (ret > 0) {
2278 btrfs_release_path(path);
2279 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002280
Josef Bacikd2788502017-09-29 15:43:57 -04002281 key.objectid = head->bytenr;
2282 key.offset = head->num_bytes;
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002283 key.type = BTRFS_EXTENT_ITEM_KEY;
2284 goto again;
2285 }
2286 } else {
2287 err = -EIO;
2288 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002289 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002290 }
2291
2292 leaf = path->nodes[0];
2293 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03002294
David Sterba6d8ff4e2018-06-26 16:20:59 +02002295 if (unlikely(item_size < sizeof(*ei))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03002296 err = -EINVAL;
2297 btrfs_print_v0_err(fs_info);
2298 btrfs_abort_transaction(trans, err);
2299 goto out;
2300 }
2301
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002302 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2303 __run_delayed_extent_op(extent_op, leaf, ei);
2304
2305 btrfs_mark_buffer_dirty(leaf);
2306out:
2307 btrfs_free_path(path);
2308 return err;
2309}
2310
2311static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002312 struct btrfs_delayed_ref_node *node,
2313 struct btrfs_delayed_extent_op *extent_op,
2314 int insert_reserved)
2315{
2316 int ret = 0;
2317 struct btrfs_delayed_tree_ref *ref;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002318 u64 parent = 0;
2319 u64 ref_root = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002320
2321 ref = btrfs_delayed_node_to_tree_ref(node);
Nikolay Borisovf97806f2018-06-20 15:49:04 +03002322 trace_run_delayed_tree_ref(trans->fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002323
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002324 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2325 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002326 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002327
Liu Bo02794222016-09-14 19:19:05 -07002328 if (node->ref_mod != 1) {
Nikolay Borisovf97806f2018-06-20 15:49:04 +03002329 btrfs_err(trans->fs_info,
Liu Bo02794222016-09-14 19:19:05 -07002330 "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu",
2331 node->bytenr, node->ref_mod, node->action, ref_root,
2332 parent);
2333 return -EIO;
2334 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002335 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002336 BUG_ON(!extent_op || !extent_op->update_flags);
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03002337 ret = alloc_reserved_tree_block(trans, node, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002338 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Nikolay Borisov2590d0f2018-06-20 15:48:59 +03002339 ret = __btrfs_inc_extent_ref(trans, node, parent, ref_root,
2340 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002341 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Nikolay Borisove72cb922018-06-20 15:48:57 +03002342 ret = __btrfs_free_extent(trans, node, parent, ref_root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002343 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002344 } else {
2345 BUG();
2346 }
2347 return ret;
2348}
2349
Chris Mason56bec292009-03-13 10:10:06 -04002350/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002351static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002352 struct btrfs_delayed_ref_node *node,
2353 struct btrfs_delayed_extent_op *extent_op,
2354 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002355{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002356 int ret = 0;
2357
Josef Bacik857cc2f2013-10-07 15:21:08 -04002358 if (trans->aborted) {
2359 if (insert_reserved)
Nikolay Borisov5fac7f92018-06-20 15:49:11 +03002360 btrfs_pin_extent(trans->fs_info, node->bytenr,
Josef Bacik857cc2f2013-10-07 15:21:08 -04002361 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002362 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002363 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002364
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002365 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2366 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
Nikolay Borisovf97806f2018-06-20 15:49:04 +03002367 ret = run_delayed_tree_ref(trans, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002368 insert_reserved);
2369 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2370 node->type == BTRFS_SHARED_DATA_REF_KEY)
Nikolay Borisov2bf98ef2018-06-20 15:49:00 +03002371 ret = run_delayed_data_ref(trans, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002372 insert_reserved);
2373 else
2374 BUG();
Josef Bacik80ee54b2018-10-11 15:54:22 -04002375 if (ret && insert_reserved)
2376 btrfs_pin_extent(trans->fs_info, node->bytenr,
2377 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002378 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002379}
2380
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002381static inline struct btrfs_delayed_ref_node *
Chris Mason56bec292009-03-13 10:10:06 -04002382select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002383{
Filipe Mananacffc3372015-07-09 13:13:44 +01002384 struct btrfs_delayed_ref_node *ref;
2385
Liu Boe3d03962018-08-23 03:51:50 +08002386 if (RB_EMPTY_ROOT(&head->ref_tree.rb_root))
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002387 return NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002388
Filipe Mananacffc3372015-07-09 13:13:44 +01002389 /*
2390 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
2391 * This is to prevent a ref count from going down to zero, which deletes
2392 * the extent item from the extent tree, when there still are references
2393 * to add, which would fail because they would not find the extent item.
2394 */
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002395 if (!list_empty(&head->ref_add_list))
2396 return list_first_entry(&head->ref_add_list,
2397 struct btrfs_delayed_ref_node, add_list);
Filipe Mananacffc3372015-07-09 13:13:44 +01002398
Liu Boe3d03962018-08-23 03:51:50 +08002399 ref = rb_entry(rb_first_cached(&head->ref_tree),
Josef Bacik0e0adbc2017-10-19 14:16:00 -04002400 struct btrfs_delayed_ref_node, ref_node);
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002401 ASSERT(list_empty(&ref->add_list));
2402 return ref;
Chris Mason56bec292009-03-13 10:10:06 -04002403}
2404
Josef Bacik2eadaa22017-09-29 15:43:52 -04002405static void unselect_delayed_ref_head(struct btrfs_delayed_ref_root *delayed_refs,
2406 struct btrfs_delayed_ref_head *head)
2407{
2408 spin_lock(&delayed_refs->lock);
2409 head->processing = 0;
2410 delayed_refs->num_heads_ready++;
2411 spin_unlock(&delayed_refs->lock);
2412 btrfs_delayed_ref_unlock(head);
2413}
2414
Josef Bacikbedc66172018-12-03 10:20:31 -05002415static struct btrfs_delayed_extent_op *cleanup_extent_op(
2416 struct btrfs_delayed_ref_head *head)
Josef Bacikb00e6252017-09-29 15:43:53 -04002417{
2418 struct btrfs_delayed_extent_op *extent_op = head->extent_op;
Josef Bacikbedc66172018-12-03 10:20:31 -05002419
2420 if (!extent_op)
2421 return NULL;
2422
2423 if (head->must_insert_reserved) {
2424 head->extent_op = NULL;
2425 btrfs_free_delayed_extent_op(extent_op);
2426 return NULL;
2427 }
2428 return extent_op;
2429}
2430
2431static int run_and_cleanup_extent_op(struct btrfs_trans_handle *trans,
2432 struct btrfs_delayed_ref_head *head)
2433{
2434 struct btrfs_delayed_extent_op *extent_op;
Josef Bacikb00e6252017-09-29 15:43:53 -04002435 int ret;
2436
Josef Bacikbedc66172018-12-03 10:20:31 -05002437 extent_op = cleanup_extent_op(head);
Josef Bacikb00e6252017-09-29 15:43:53 -04002438 if (!extent_op)
2439 return 0;
2440 head->extent_op = NULL;
Josef Bacikb00e6252017-09-29 15:43:53 -04002441 spin_unlock(&head->lock);
Nikolay Borisov20b9a2d2018-06-20 15:49:01 +03002442 ret = run_delayed_extent_op(trans, head, extent_op);
Josef Bacikb00e6252017-09-29 15:43:53 -04002443 btrfs_free_delayed_extent_op(extent_op);
2444 return ret ? ret : 1;
2445}
2446
Josef Bacik31890da2018-11-21 14:05:41 -05002447void btrfs_cleanup_ref_head_accounting(struct btrfs_fs_info *fs_info,
2448 struct btrfs_delayed_ref_root *delayed_refs,
2449 struct btrfs_delayed_ref_head *head)
Josef Bacik07c47772018-12-03 10:20:30 -05002450{
Josef Bacikba2c4d42018-12-03 10:20:33 -05002451 int nr_items = 1; /* Dropping this ref head update. */
Josef Bacik07c47772018-12-03 10:20:30 -05002452
2453 if (head->total_ref_mod < 0) {
2454 struct btrfs_space_info *space_info;
2455 u64 flags;
2456
2457 if (head->is_data)
2458 flags = BTRFS_BLOCK_GROUP_DATA;
2459 else if (head->is_system)
2460 flags = BTRFS_BLOCK_GROUP_SYSTEM;
2461 else
2462 flags = BTRFS_BLOCK_GROUP_METADATA;
2463 space_info = __find_space_info(fs_info, flags);
2464 ASSERT(space_info);
2465 percpu_counter_add_batch(&space_info->total_bytes_pinned,
2466 -head->num_bytes,
2467 BTRFS_TOTAL_BYTES_PINNED_BATCH);
2468
Josef Bacikba2c4d42018-12-03 10:20:33 -05002469 /*
2470 * We had csum deletions accounted for in our delayed refs rsv,
2471 * we need to drop the csum leaves for this update from our
2472 * delayed_refs_rsv.
2473 */
Josef Bacik07c47772018-12-03 10:20:30 -05002474 if (head->is_data) {
2475 spin_lock(&delayed_refs->lock);
2476 delayed_refs->pending_csums -= head->num_bytes;
2477 spin_unlock(&delayed_refs->lock);
Josef Bacikba2c4d42018-12-03 10:20:33 -05002478 nr_items += btrfs_csum_bytes_to_leaves(fs_info,
2479 head->num_bytes);
Josef Bacik07c47772018-12-03 10:20:30 -05002480 }
2481 }
2482
Josef Bacikba2c4d42018-12-03 10:20:33 -05002483 btrfs_delayed_refs_rsv_release(fs_info, nr_items);
Josef Bacik07c47772018-12-03 10:20:30 -05002484}
2485
Josef Bacik194ab0b2017-09-29 15:43:54 -04002486static int cleanup_ref_head(struct btrfs_trans_handle *trans,
Josef Bacik194ab0b2017-09-29 15:43:54 -04002487 struct btrfs_delayed_ref_head *head)
2488{
Nikolay Borisovf9871ed2018-06-20 15:49:03 +03002489
2490 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacik194ab0b2017-09-29 15:43:54 -04002491 struct btrfs_delayed_ref_root *delayed_refs;
2492 int ret;
2493
2494 delayed_refs = &trans->transaction->delayed_refs;
2495
Josef Bacikbedc66172018-12-03 10:20:31 -05002496 ret = run_and_cleanup_extent_op(trans, head);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002497 if (ret < 0) {
2498 unselect_delayed_ref_head(delayed_refs, head);
2499 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
2500 return ret;
2501 } else if (ret) {
2502 return ret;
2503 }
2504
2505 /*
2506 * Need to drop our head ref lock and re-acquire the delayed ref lock
2507 * and then re-check to make sure nobody got added.
2508 */
2509 spin_unlock(&head->lock);
2510 spin_lock(&delayed_refs->lock);
2511 spin_lock(&head->lock);
Liu Boe3d03962018-08-23 03:51:50 +08002512 if (!RB_EMPTY_ROOT(&head->ref_tree.rb_root) || head->extent_op) {
Josef Bacik194ab0b2017-09-29 15:43:54 -04002513 spin_unlock(&head->lock);
2514 spin_unlock(&delayed_refs->lock);
2515 return 1;
2516 }
Josef Bacikd7baffd2018-12-03 10:20:29 -05002517 btrfs_delete_ref_head(delayed_refs, head);
Josef Bacikc1103f72017-09-29 15:43:56 -04002518 spin_unlock(&head->lock);
Nikolay Borisov1e7a1422018-04-11 11:21:18 +03002519 spin_unlock(&delayed_refs->lock);
Josef Bacikc1103f72017-09-29 15:43:56 -04002520
Josef Bacikc1103f72017-09-29 15:43:56 -04002521 if (head->must_insert_reserved) {
Josef Bacikd2788502017-09-29 15:43:57 -04002522 btrfs_pin_extent(fs_info, head->bytenr,
2523 head->num_bytes, 1);
Josef Bacikc1103f72017-09-29 15:43:56 -04002524 if (head->is_data) {
Josef Bacikd2788502017-09-29 15:43:57 -04002525 ret = btrfs_del_csums(trans, fs_info, head->bytenr,
2526 head->num_bytes);
Josef Bacikc1103f72017-09-29 15:43:56 -04002527 }
2528 }
2529
Josef Bacik31890da2018-11-21 14:05:41 -05002530 btrfs_cleanup_ref_head_accounting(fs_info, delayed_refs, head);
Josef Bacik07c47772018-12-03 10:20:30 -05002531
2532 trace_run_delayed_ref_head(fs_info, head, 0);
Josef Bacikc1103f72017-09-29 15:43:56 -04002533 btrfs_delayed_ref_unlock(head);
Josef Bacikd2788502017-09-29 15:43:57 -04002534 btrfs_put_delayed_ref_head(head);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002535 return 0;
2536}
2537
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002538static struct btrfs_delayed_ref_head *btrfs_obtain_ref_head(
2539 struct btrfs_trans_handle *trans)
2540{
2541 struct btrfs_delayed_ref_root *delayed_refs =
2542 &trans->transaction->delayed_refs;
2543 struct btrfs_delayed_ref_head *head = NULL;
2544 int ret;
2545
2546 spin_lock(&delayed_refs->lock);
Lu Fengqi5637c742018-10-11 13:40:33 +08002547 head = btrfs_select_ref_head(delayed_refs);
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002548 if (!head) {
2549 spin_unlock(&delayed_refs->lock);
2550 return head;
2551 }
2552
2553 /*
2554 * Grab the lock that says we are going to process all the refs for
2555 * this head
2556 */
Lu Fengqi9e920a62018-10-11 13:40:34 +08002557 ret = btrfs_delayed_ref_lock(delayed_refs, head);
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002558 spin_unlock(&delayed_refs->lock);
2559
2560 /*
2561 * We may have dropped the spin lock to get the head mutex lock, and
2562 * that might have given someone else time to free the head. If that's
2563 * true, it has been removed from our list and we can move on.
2564 */
2565 if (ret == -EAGAIN)
2566 head = ERR_PTR(-EAGAIN);
2567
2568 return head;
2569}
2570
Nikolay Borisove7261382018-08-15 10:39:55 +03002571static int btrfs_run_delayed_refs_for_head(struct btrfs_trans_handle *trans,
2572 struct btrfs_delayed_ref_head *locked_ref,
2573 unsigned long *run_refs)
2574{
2575 struct btrfs_fs_info *fs_info = trans->fs_info;
2576 struct btrfs_delayed_ref_root *delayed_refs;
2577 struct btrfs_delayed_extent_op *extent_op;
2578 struct btrfs_delayed_ref_node *ref;
2579 int must_insert_reserved = 0;
2580 int ret;
2581
2582 delayed_refs = &trans->transaction->delayed_refs;
2583
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002584 lockdep_assert_held(&locked_ref->mutex);
2585 lockdep_assert_held(&locked_ref->lock);
2586
Nikolay Borisove7261382018-08-15 10:39:55 +03002587 while ((ref = select_delayed_ref(locked_ref))) {
2588 if (ref->seq &&
2589 btrfs_check_delayed_seq(fs_info, ref->seq)) {
2590 spin_unlock(&locked_ref->lock);
2591 unselect_delayed_ref_head(delayed_refs, locked_ref);
2592 return -EAGAIN;
2593 }
2594
2595 (*run_refs)++;
2596 ref->in_tree = 0;
2597 rb_erase_cached(&ref->ref_node, &locked_ref->ref_tree);
2598 RB_CLEAR_NODE(&ref->ref_node);
2599 if (!list_empty(&ref->add_list))
2600 list_del(&ref->add_list);
2601 /*
2602 * When we play the delayed ref, also correct the ref_mod on
2603 * head
2604 */
2605 switch (ref->action) {
2606 case BTRFS_ADD_DELAYED_REF:
2607 case BTRFS_ADD_DELAYED_EXTENT:
2608 locked_ref->ref_mod -= ref->ref_mod;
2609 break;
2610 case BTRFS_DROP_DELAYED_REF:
2611 locked_ref->ref_mod += ref->ref_mod;
2612 break;
2613 default:
2614 WARN_ON(1);
2615 }
2616 atomic_dec(&delayed_refs->num_entries);
2617
2618 /*
2619 * Record the must_insert_reserved flag before we drop the
2620 * spin lock.
2621 */
2622 must_insert_reserved = locked_ref->must_insert_reserved;
2623 locked_ref->must_insert_reserved = 0;
2624
2625 extent_op = locked_ref->extent_op;
2626 locked_ref->extent_op = NULL;
2627 spin_unlock(&locked_ref->lock);
2628
2629 ret = run_one_delayed_ref(trans, ref, extent_op,
2630 must_insert_reserved);
2631
2632 btrfs_free_delayed_extent_op(extent_op);
2633 if (ret) {
2634 unselect_delayed_ref_head(delayed_refs, locked_ref);
2635 btrfs_put_delayed_ref(ref);
2636 btrfs_debug(fs_info, "run_one_delayed_ref returned %d",
2637 ret);
2638 return ret;
2639 }
2640
2641 btrfs_put_delayed_ref(ref);
2642 cond_resched();
2643
2644 spin_lock(&locked_ref->lock);
2645 btrfs_merge_delayed_refs(trans, delayed_refs, locked_ref);
2646 }
2647
2648 return 0;
2649}
2650
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002651/*
2652 * Returns 0 on success or if called with an already aborted transaction.
2653 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2654 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002655static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacikd7df2c72014-01-23 09:21:38 -05002656 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002657{
Nikolay Borisov0a1e4582018-03-15 16:00:27 +02002658 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason56bec292009-03-13 10:10:06 -04002659 struct btrfs_delayed_ref_root *delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002660 struct btrfs_delayed_ref_head *locked_ref = NULL;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002661 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002662 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002663 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002664 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002665
2666 delayed_refs = &trans->transaction->delayed_refs;
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002667 do {
Chris Mason56bec292009-03-13 10:10:06 -04002668 if (!locked_ref) {
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002669 locked_ref = btrfs_obtain_ref_head(trans);
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002670 if (IS_ERR_OR_NULL(locked_ref)) {
2671 if (PTR_ERR(locked_ref) == -EAGAIN) {
2672 continue;
2673 } else {
2674 break;
2675 }
Chris Mason56bec292009-03-13 10:10:06 -04002676 }
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002677 count++;
Chris Mason56bec292009-03-13 10:10:06 -04002678 }
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002679 /*
2680 * We need to try and merge add/drops of the same ref since we
2681 * can run into issues with relocate dropping the implicit ref
2682 * and then it being added back again before the drop can
2683 * finish. If we merged anything we need to re-loop so we can
2684 * get a good ref.
2685 * Or we can get node references of the same type that weren't
2686 * merged when created due to bumps in the tree mod seq, and
2687 * we need to merge them to prevent adding an inline extent
2688 * backref before dropping it (triggering a BUG_ON at
2689 * insert_inline_extent_backref()).
2690 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002691 spin_lock(&locked_ref->lock);
Nikolay Borisovbe97f132018-04-19 11:06:39 +03002692 btrfs_merge_delayed_refs(trans, delayed_refs, locked_ref);
Josef Bacikae1e2062012-08-07 16:00:32 -04002693
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002694 ret = btrfs_run_delayed_refs_for_head(trans, locked_ref,
2695 &actual_count);
2696 if (ret < 0 && ret != -EAGAIN) {
2697 /*
2698 * Error, btrfs_run_delayed_refs_for_head already
2699 * unlocked everything so just bail out
2700 */
2701 return ret;
2702 } else if (!ret) {
2703 /*
2704 * Success, perform the usual cleanup of a processed
2705 * head
2706 */
Nikolay Borisovf9871ed2018-06-20 15:49:03 +03002707 ret = cleanup_ref_head(trans, locked_ref);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002708 if (ret > 0 ) {
Josef Bacikb00e6252017-09-29 15:43:53 -04002709 /* We dropped our lock, we need to loop. */
2710 ret = 0;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002711 continue;
Josef Bacik194ab0b2017-09-29 15:43:54 -04002712 } else if (ret) {
2713 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002714 }
Josef Bacikc1103f72017-09-29 15:43:56 -04002715 }
Chris Mason56bec292009-03-13 10:10:06 -04002716
Josef Bacikb00e6252017-09-29 15:43:53 -04002717 /*
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002718 * Either success case or btrfs_run_delayed_refs_for_head
2719 * returned -EAGAIN, meaning we need to select another head
Josef Bacikb00e6252017-09-29 15:43:53 -04002720 */
Josef Bacikb00e6252017-09-29 15:43:53 -04002721
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002722 locked_ref = NULL;
Chris Mason1887be62009-03-13 10:11:24 -04002723 cond_resched();
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002724 } while ((nr != -1 && count < nr) || locked_ref);
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002725
2726 /*
2727 * We don't want to include ref heads since we can have empty ref heads
2728 * and those will drastically skew our runtime down since we just do
2729 * accounting, no actual extent tree updates.
2730 */
2731 if (actual_count > 0) {
2732 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2733 u64 avg;
2734
2735 /*
2736 * We weigh the current average higher than our current runtime
2737 * to avoid large swings in the average.
2738 */
2739 spin_lock(&delayed_refs->lock);
2740 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002741 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002742 spin_unlock(&delayed_refs->lock);
2743 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002744 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002745}
2746
Arne Jansen709c0482011-09-12 12:22:57 +02002747#ifdef SCRAMBLE_DELAYED_REFS
2748/*
2749 * Normally delayed refs get processed in ascending bytenr order. This
2750 * correlates in most cases to the order added. To expose dependencies on this
2751 * order, we start to process the tree in the middle instead of the beginning
2752 */
2753static u64 find_middle(struct rb_root *root)
2754{
2755 struct rb_node *n = root->rb_node;
2756 struct btrfs_delayed_ref_node *entry;
2757 int alt = 1;
2758 u64 middle;
2759 u64 first = 0, last = 0;
2760
2761 n = rb_first(root);
2762 if (n) {
2763 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2764 first = entry->bytenr;
2765 }
2766 n = rb_last(root);
2767 if (n) {
2768 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2769 last = entry->bytenr;
2770 }
2771 n = root->rb_node;
2772
2773 while (n) {
2774 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2775 WARN_ON(!entry->in_tree);
2776
2777 middle = entry->bytenr;
2778
2779 if (alt)
2780 n = n->rb_left;
2781 else
2782 n = n->rb_right;
2783
2784 alt = 1 - alt;
2785 }
2786 return middle;
2787}
2788#endif
2789
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002790static inline u64 heads_to_leaves(struct btrfs_fs_info *fs_info, u64 heads)
Josef Bacik1be41b72013-06-12 13:56:06 -04002791{
2792 u64 num_bytes;
2793
2794 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2795 sizeof(struct btrfs_extent_inline_ref));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002796 if (!btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik1be41b72013-06-12 13:56:06 -04002797 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2798
2799 /*
2800 * 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 -04002801 * closer to what we're really going to want to use.
Josef Bacik1be41b72013-06-12 13:56:06 -04002802 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002803 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(fs_info));
Josef Bacik1be41b72013-06-12 13:56:06 -04002804}
2805
Josef Bacik12621332015-02-03 07:50:16 -08002806/*
2807 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2808 * would require to store the csums for that many bytes.
2809 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002810u64 btrfs_csum_bytes_to_leaves(struct btrfs_fs_info *fs_info, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002811{
2812 u64 csum_size;
2813 u64 num_csums_per_leaf;
2814 u64 num_csums;
2815
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002816 csum_size = BTRFS_MAX_ITEM_SIZE(fs_info);
Josef Bacik12621332015-02-03 07:50:16 -08002817 num_csums_per_leaf = div64_u64(csum_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002818 (u64)btrfs_super_csum_size(fs_info->super_copy));
2819 num_csums = div64_u64(csum_bytes, fs_info->sectorsize);
Josef Bacik12621332015-02-03 07:50:16 -08002820 num_csums += num_csums_per_leaf - 1;
2821 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2822 return num_csums;
2823}
2824
Josef Bacik644036122018-12-03 10:20:36 -05002825bool btrfs_check_space_for_delayed_refs(struct btrfs_fs_info *fs_info)
Josef Bacik1be41b72013-06-12 13:56:06 -04002826{
Josef Bacik644036122018-12-03 10:20:36 -05002827 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
2828 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
2829 bool ret = false;
2830 u64 reserved;
Josef Bacik1be41b72013-06-12 13:56:06 -04002831
2832 spin_lock(&global_rsv->lock);
Josef Bacik644036122018-12-03 10:20:36 -05002833 reserved = global_rsv->reserved;
Josef Bacik1be41b72013-06-12 13:56:06 -04002834 spin_unlock(&global_rsv->lock);
Josef Bacik644036122018-12-03 10:20:36 -05002835
2836 /*
2837 * Since the global reserve is just kind of magic we don't really want
2838 * to rely on it to save our bacon, so if our size is more than the
2839 * delayed_refs_rsv and the global rsv then it's time to think about
2840 * bailing.
2841 */
2842 spin_lock(&delayed_refs_rsv->lock);
2843 reserved += delayed_refs_rsv->reserved;
2844 if (delayed_refs_rsv->size >= reserved)
2845 ret = true;
2846 spin_unlock(&delayed_refs_rsv->lock);
Josef Bacik1be41b72013-06-12 13:56:06 -04002847 return ret;
2848}
2849
Lu Fengqi7c861622018-10-11 13:40:36 +08002850int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002851{
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002852 u64 num_entries =
2853 atomic_read(&trans->transaction->delayed_refs.num_entries);
2854 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002855 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002856
2857 smp_mb();
Lu Fengqi7c861622018-10-11 13:40:36 +08002858 avg_runtime = trans->fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002859 val = num_entries * avg_runtime;
Wang Xiaoguangdc1a90c2016-10-26 15:23:01 +08002860 if (val >= NSEC_PER_SEC)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002861 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002862 if (val >= NSEC_PER_SEC / 2)
2863 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002864
Josef Bacik644036122018-12-03 10:20:36 -05002865 return btrfs_check_space_for_delayed_refs(trans->fs_info);
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002866}
2867
Chris Masonc3e69d52009-03-13 10:17:05 -04002868/*
2869 * this starts processing the delayed reference count updates and
2870 * extent insertions we have queued up so far. count can be
2871 * 0, which means to process everything in the tree at the start
2872 * of the run (but not newly added entries), or it can be some target
2873 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002874 *
2875 * Returns 0 on success or if called with an aborted transaction
2876 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002877 */
2878int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02002879 unsigned long count)
Chris Masonc3e69d52009-03-13 10:17:05 -04002880{
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02002881 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -04002882 struct rb_node *node;
2883 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002884 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002885 int ret;
2886 int run_all = count == (unsigned long)-1;
Chris Masonc3e69d52009-03-13 10:17:05 -04002887
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002888 /* We'll clean this up in btrfs_cleanup_transaction */
2889 if (trans->aborted)
2890 return 0;
2891
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002892 if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags))
Chris Mason511711a2015-12-30 07:52:35 -08002893 return 0;
2894
Chris Masonc3e69d52009-03-13 10:17:05 -04002895 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08002896 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05002897 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05002898
Chris Masonc3e69d52009-03-13 10:17:05 -04002899again:
Arne Jansen709c0482011-09-12 12:22:57 +02002900#ifdef SCRAMBLE_DELAYED_REFS
2901 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2902#endif
Nikolay Borisov0a1e4582018-03-15 16:00:27 +02002903 ret = __btrfs_run_delayed_refs(trans, count);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002904 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002905 btrfs_abort_transaction(trans, ret);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002906 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002907 }
2908
Chris Mason56bec292009-03-13 10:10:06 -04002909 if (run_all) {
Josef Bacik119e80d2018-11-21 14:05:42 -05002910 btrfs_create_pending_block_groups(trans);
Josef Bacikea658ba2012-09-11 16:57:25 -04002911
Josef Bacikd7df2c72014-01-23 09:21:38 -05002912 spin_lock(&delayed_refs->lock);
Liu Bo5c9d0282018-08-23 03:51:49 +08002913 node = rb_first_cached(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002914 if (!node) {
2915 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002916 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002917 }
Josef Bacikd2788502017-09-29 15:43:57 -04002918 head = rb_entry(node, struct btrfs_delayed_ref_head,
2919 href_node);
2920 refcount_inc(&head->refs);
Chris Mason56bec292009-03-13 10:10:06 -04002921 spin_unlock(&delayed_refs->lock);
Josef Bacikd2788502017-09-29 15:43:57 -04002922
2923 /* Mutex was contended, block until it's released and retry. */
2924 mutex_lock(&head->mutex);
2925 mutex_unlock(&head->mutex);
2926
2927 btrfs_put_delayed_ref_head(head);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002928 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002929 goto again;
2930 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002931out:
Chris Masona28ec192007-03-06 20:08:01 -05002932 return 0;
2933}
2934
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002935int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002936 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04002937 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002938{
2939 struct btrfs_delayed_extent_op *extent_op;
2940 int ret;
2941
Miao Xie78a61842012-11-21 02:21:28 +00002942 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002943 if (!extent_op)
2944 return -ENOMEM;
2945
2946 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01002947 extent_op->update_flags = true;
2948 extent_op->update_key = false;
2949 extent_op->is_data = is_data ? true : false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002950 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002951
David Sterbac6e340b2019-03-20 11:42:34 +01002952 ret = btrfs_add_delayed_extent_op(trans, bytenr, num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002953 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00002954 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002955 return ret;
2956}
2957
Liu Boe4c3b2d2017-01-30 12:25:28 -08002958static noinline int check_delayed_ref(struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002959 struct btrfs_path *path,
2960 u64 objectid, u64 offset, u64 bytenr)
2961{
2962 struct btrfs_delayed_ref_head *head;
2963 struct btrfs_delayed_ref_node *ref;
2964 struct btrfs_delayed_data_ref *data_ref;
2965 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boe4c3b2d2017-01-30 12:25:28 -08002966 struct btrfs_transaction *cur_trans;
Josef Bacik0e0adbc2017-10-19 14:16:00 -04002967 struct rb_node *node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002968 int ret = 0;
2969
ethanwu998ac6d2018-04-29 15:59:42 +08002970 spin_lock(&root->fs_info->trans_lock);
Liu Boe4c3b2d2017-01-30 12:25:28 -08002971 cur_trans = root->fs_info->running_transaction;
ethanwu998ac6d2018-04-29 15:59:42 +08002972 if (cur_trans)
2973 refcount_inc(&cur_trans->use_count);
2974 spin_unlock(&root->fs_info->trans_lock);
Liu Boe4c3b2d2017-01-30 12:25:28 -08002975 if (!cur_trans)
2976 return 0;
2977
2978 delayed_refs = &cur_trans->delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002979 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08002980 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002981 if (!head) {
2982 spin_unlock(&delayed_refs->lock);
ethanwu998ac6d2018-04-29 15:59:42 +08002983 btrfs_put_transaction(cur_trans);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002984 return 0;
2985 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002986
2987 if (!mutex_trylock(&head->mutex)) {
Josef Bacikd2788502017-09-29 15:43:57 -04002988 refcount_inc(&head->refs);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002989 spin_unlock(&delayed_refs->lock);
2990
David Sterbab3b4aa72011-04-21 01:20:15 +02002991 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002992
David Sterba8cc33e52011-05-02 15:29:25 +02002993 /*
2994 * Mutex was contended, block until it's released and let
2995 * caller try again
2996 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002997 mutex_lock(&head->mutex);
2998 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -04002999 btrfs_put_delayed_ref_head(head);
ethanwu998ac6d2018-04-29 15:59:42 +08003000 btrfs_put_transaction(cur_trans);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003001 return -EAGAIN;
3002 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003003 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003004
3005 spin_lock(&head->lock);
Josef Bacik0e0adbc2017-10-19 14:16:00 -04003006 /*
3007 * XXX: We should replace this with a proper search function in the
3008 * future.
3009 */
Liu Boe3d03962018-08-23 03:51:50 +08003010 for (node = rb_first_cached(&head->ref_tree); node;
3011 node = rb_next(node)) {
Josef Bacik0e0adbc2017-10-19 14:16:00 -04003012 ref = rb_entry(node, struct btrfs_delayed_ref_node, ref_node);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003013 /* If it's a shared ref we know a cross reference exists */
3014 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
3015 ret = 1;
3016 break;
3017 }
3018
3019 data_ref = btrfs_delayed_node_to_data_ref(ref);
3020
3021 /*
3022 * If our ref doesn't match the one we're currently looking at
3023 * then we have a cross reference.
3024 */
3025 if (data_ref->root != root->root_key.objectid ||
3026 data_ref->objectid != objectid ||
3027 data_ref->offset != offset) {
3028 ret = 1;
3029 break;
3030 }
3031 }
3032 spin_unlock(&head->lock);
3033 mutex_unlock(&head->mutex);
ethanwu998ac6d2018-04-29 15:59:42 +08003034 btrfs_put_transaction(cur_trans);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003035 return ret;
3036}
3037
Liu Boe4c3b2d2017-01-30 12:25:28 -08003038static noinline int check_committed_ref(struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003039 struct btrfs_path *path,
3040 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05003041{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003042 struct btrfs_fs_info *fs_info = root->fs_info;
3043 struct btrfs_root *extent_root = fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04003044 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003045 struct btrfs_extent_data_ref *ref;
3046 struct btrfs_extent_inline_ref *iref;
3047 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05003048 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003049 u32 item_size;
Liu Bo3de28d52017-08-18 15:15:19 -06003050 int type;
Yan Zhengf321e492008-07-30 09:26:11 -04003051 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05003052
Chris Masonbe20aa92007-12-17 20:14:01 -05003053 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04003054 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04003055 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05003056
Chris Masonbe20aa92007-12-17 20:14:01 -05003057 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3058 if (ret < 0)
3059 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003060 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04003061
3062 ret = -ENOENT;
3063 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04003064 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003065
Zheng Yan31840ae2008-09-23 13:14:14 -04003066 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04003067 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003068 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05003069
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003070 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05003071 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003072
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003073 ret = 1;
3074 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003075 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
3076
3077 if (item_size != sizeof(*ei) +
3078 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
3079 goto out;
3080
3081 if (btrfs_extent_generation(leaf, ei) <=
3082 btrfs_root_last_snapshot(&root->root_item))
3083 goto out;
3084
3085 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
Liu Bo3de28d52017-08-18 15:15:19 -06003086
3087 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
3088 if (type != BTRFS_EXTENT_DATA_REF_KEY)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003089 goto out;
3090
3091 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
3092 if (btrfs_extent_refs(leaf, ei) !=
3093 btrfs_extent_data_ref_count(leaf, ref) ||
3094 btrfs_extent_data_ref_root(leaf, ref) !=
3095 root->root_key.objectid ||
3096 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3097 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3098 goto out;
3099
Yan Zhengf321e492008-07-30 09:26:11 -04003100 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003101out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003102 return ret;
3103}
3104
Liu Boe4c3b2d2017-01-30 12:25:28 -08003105int btrfs_cross_ref_exist(struct btrfs_root *root, u64 objectid, u64 offset,
3106 u64 bytenr)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003107{
3108 struct btrfs_path *path;
3109 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003110
3111 path = btrfs_alloc_path();
3112 if (!path)
Su Yue9132c4f2018-05-30 14:49:10 +08003113 return -ENOMEM;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003114
3115 do {
Liu Boe4c3b2d2017-01-30 12:25:28 -08003116 ret = check_committed_ref(root, path, objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003117 offset, bytenr);
3118 if (ret && ret != -ENOENT)
3119 goto out;
3120
Misono Tomohiro380fd062018-08-30 10:59:16 +09003121 ret = check_delayed_ref(root, path, objectid, offset, bytenr);
3122 } while (ret == -EAGAIN);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003123
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003124out:
Yan Zhengf321e492008-07-30 09:26:11 -04003125 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003126 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3127 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003128 return ret;
3129}
3130
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003131static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003132 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003133 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003134 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003135{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003136 struct btrfs_fs_info *fs_info = root->fs_info;
Zheng Yan31840ae2008-09-23 13:14:14 -04003137 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003138 u64 num_bytes;
3139 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003140 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003141 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003142 struct btrfs_key key;
3143 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +08003144 struct btrfs_ref generic_ref = { 0 };
3145 bool for_reloc = btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC);
Zheng Yan31840ae2008-09-23 13:14:14 -04003146 int i;
Qu Wenruo82fa1132019-04-04 14:45:35 +08003147 int action;
Zheng Yan31840ae2008-09-23 13:14:14 -04003148 int level;
3149 int ret = 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003150
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003151 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003152 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003153
Zheng Yan31840ae2008-09-23 13:14:14 -04003154 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003155 nritems = btrfs_header_nritems(buf);
3156 level = btrfs_header_level(buf);
3157
Miao Xie27cdeb72014-04-02 19:51:05 +08003158 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003159 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003160
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003161 if (full_backref)
3162 parent = buf->start;
3163 else
3164 parent = 0;
Qu Wenruo82fa1132019-04-04 14:45:35 +08003165 if (inc)
3166 action = BTRFS_ADD_DELAYED_REF;
3167 else
3168 action = BTRFS_DROP_DELAYED_REF;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003169
Zheng Yan31840ae2008-09-23 13:14:14 -04003170 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003171 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003172 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003173 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003174 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003175 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003176 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003177 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003178 BTRFS_FILE_EXTENT_INLINE)
3179 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003180 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3181 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003182 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003183
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003184 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3185 key.offset -= btrfs_file_extent_offset(buf, fi);
Qu Wenruo82fa1132019-04-04 14:45:35 +08003186 btrfs_init_generic_ref(&generic_ref, action, bytenr,
3187 num_bytes, parent);
3188 generic_ref.real_root = root->root_key.objectid;
3189 btrfs_init_data_ref(&generic_ref, ref_root, key.objectid,
3190 key.offset);
3191 generic_ref.skip_qgroup = for_reloc;
Qu Wenruodd28b6a2019-04-04 14:45:30 +08003192 if (inc)
Qu Wenruo82fa1132019-04-04 14:45:35 +08003193 ret = btrfs_inc_extent_ref(trans, &generic_ref);
Qu Wenruodd28b6a2019-04-04 14:45:30 +08003194 else
Qu Wenruoffd4bb22019-04-04 14:45:36 +08003195 ret = btrfs_free_extent(trans, &generic_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003196 if (ret)
3197 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003198 } else {
3199 bytenr = btrfs_node_blockptr(buf, i);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003200 num_bytes = fs_info->nodesize;
Qu Wenruo82fa1132019-04-04 14:45:35 +08003201 btrfs_init_generic_ref(&generic_ref, action, bytenr,
3202 num_bytes, parent);
3203 generic_ref.real_root = root->root_key.objectid;
3204 btrfs_init_tree_ref(&generic_ref, level - 1, ref_root);
3205 generic_ref.skip_qgroup = for_reloc;
Qu Wenruodd28b6a2019-04-04 14:45:30 +08003206 if (inc)
Qu Wenruo82fa1132019-04-04 14:45:35 +08003207 ret = btrfs_inc_extent_ref(trans, &generic_ref);
Qu Wenruodd28b6a2019-04-04 14:45:30 +08003208 else
Qu Wenruoffd4bb22019-04-04 14:45:36 +08003209 ret = btrfs_free_extent(trans, &generic_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003210 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003211 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003212 }
3213 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003214 return 0;
3215fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003216 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003217}
3218
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003219int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003220 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003221{
Josef Bacike339a6b2014-07-02 10:54:25 -07003222 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003223}
Zheng Yan31840ae2008-09-23 13:14:14 -04003224
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003225int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003226 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003227{
Josef Bacike339a6b2014-07-02 10:54:25 -07003228 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003229}
3230
Chris Mason9078a3e2007-04-26 16:46:15 -04003231static int write_one_cache_group(struct btrfs_trans_handle *trans,
Chris Mason9078a3e2007-04-26 16:46:15 -04003232 struct btrfs_path *path,
3233 struct btrfs_block_group_cache *cache)
3234{
David Sterba39db2322019-03-20 11:57:46 +01003235 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04003236 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003237 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003238 unsigned long bi;
3239 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003240
Chris Mason9078a3e2007-04-26 16:46:15 -04003241 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003242 if (ret) {
3243 if (ret > 0)
3244 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003245 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003246 }
Chris Mason5f39d392007-10-15 16:14:19 -04003247
3248 leaf = path->nodes[0];
3249 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3250 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3251 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003252fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003253 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003254 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003255
3256}
3257
David Sterbaf87b7eb2019-03-20 12:01:07 +01003258static struct btrfs_block_group_cache *next_block_group(
3259 struct btrfs_block_group_cache *cache)
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003260{
David Sterbaf87b7eb2019-03-20 12:01:07 +01003261 struct btrfs_fs_info *fs_info = cache->fs_info;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003262 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003263
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003264 spin_lock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003265
3266 /* If our block group was removed, we need a full search. */
3267 if (RB_EMPTY_NODE(&cache->cache_node)) {
3268 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3269
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003270 spin_unlock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003271 btrfs_put_block_group(cache);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003272 cache = btrfs_lookup_first_block_group(fs_info, next_bytenr); return cache;
Filipe Manana292cbd52014-11-26 15:28:50 +00003273 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003274 node = rb_next(&cache->cache_node);
3275 btrfs_put_block_group(cache);
3276 if (node) {
3277 cache = rb_entry(node, struct btrfs_block_group_cache,
3278 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003279 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003280 } else
3281 cache = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003282 spin_unlock(&fs_info->block_group_cache_lock);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003283 return cache;
3284}
3285
Josef Bacik0af3d002010-06-21 14:48:16 -04003286static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3287 struct btrfs_trans_handle *trans,
3288 struct btrfs_path *path)
3289{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003290 struct btrfs_fs_info *fs_info = block_group->fs_info;
3291 struct btrfs_root *root = fs_info->tree_root;
Josef Bacik0af3d002010-06-21 14:48:16 -04003292 struct inode *inode = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003293 struct extent_changeset *data_reserved = NULL;
Josef Bacik0af3d002010-06-21 14:48:16 -04003294 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003295 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003296 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003297 int retries = 0;
3298 int ret = 0;
3299
3300 /*
3301 * If this block group is smaller than 100 megs don't bother caching the
3302 * block group.
3303 */
Byongho Leeee221842015-12-15 01:42:10 +09003304 if (block_group->key.offset < (100 * SZ_1M)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003305 spin_lock(&block_group->lock);
3306 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3307 spin_unlock(&block_group->lock);
3308 return 0;
3309 }
3310
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003311 if (trans->aborted)
3312 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003313again:
David Sterba7949f332019-03-20 13:40:19 +01003314 inode = lookup_free_space_inode(block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003315 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3316 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003317 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003318 goto out;
3319 }
3320
3321 if (IS_ERR(inode)) {
3322 BUG_ON(retries);
3323 retries++;
3324
3325 if (block_group->ro)
3326 goto out_free;
3327
David Sterba4ca75f12019-03-20 13:42:57 +01003328 ret = create_free_space_inode(trans, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003329 if (ret)
3330 goto out_free;
3331 goto again;
3332 }
3333
3334 /*
3335 * We want to set the generation to 0, that way if anything goes wrong
3336 * from here on out we know not to trust this cache when we load up next
3337 * time.
3338 */
3339 BTRFS_I(inode)->generation = 0;
3340 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003341 if (ret) {
3342 /*
3343 * So theoretically we could recover from this, simply set the
3344 * super cache generation to 0 so we know to invalidate the
3345 * cache, but then we'd have to keep track of the block groups
3346 * that fail this way so we know we _have_ to reset this cache
3347 * before the next commit or risk reading stale cache. So to
3348 * limit our exposure to horrible edge cases lets just abort the
3349 * transaction, this only happens in really bad situations
3350 * anyway.
3351 */
Jeff Mahoney66642832016-06-10 18:19:25 -04003352 btrfs_abort_transaction(trans, ret);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003353 goto out_put;
3354 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003355 WARN_ON(ret);
3356
Josef Bacik8e138e02017-11-17 14:50:46 -05003357 /* We've already setup this transaction, go ahead and exit */
3358 if (block_group->cache_generation == trans->transid &&
3359 i_size_read(inode)) {
3360 dcs = BTRFS_DC_SETUP;
3361 goto out_put;
3362 }
3363
Josef Bacik0af3d002010-06-21 14:48:16 -04003364 if (i_size_read(inode) > 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003365 ret = btrfs_check_trunc_cache_free_space(fs_info,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003366 &fs_info->global_block_rsv);
Miao Xie7b61cd92013-05-13 13:55:09 +00003367 if (ret)
3368 goto out_put;
3369
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003370 ret = btrfs_truncate_free_space_cache(trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003371 if (ret)
3372 goto out_put;
3373 }
3374
3375 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003376 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003377 !btrfs_test_opt(fs_info, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003378 /*
3379 * don't bother trying to write stuff out _if_
3380 * a) we're not cached,
Liu Bo1a79c1f2017-03-06 13:49:02 -08003381 * b) we're with nospace_cache mount option,
3382 * c) we're with v2 space_cache (FREE_SPACE_TREE).
Liu Bocf7c1ef2012-07-06 03:31:34 -06003383 */
Josef Bacik2b209822010-12-03 13:17:53 -05003384 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003385 spin_unlock(&block_group->lock);
3386 goto out_put;
3387 }
3388 spin_unlock(&block_group->lock);
3389
Josef Bacik6fc823b2012-08-06 13:46:38 -06003390 /*
Josef Bacik2968b1f2015-10-01 12:55:18 -04003391 * We hit an ENOSPC when setting up the cache in this transaction, just
3392 * skip doing the setup, we've already cleared the cache so we're safe.
3393 */
3394 if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
3395 ret = -ENOSPC;
3396 goto out_put;
3397 }
3398
3399 /*
Josef Bacik6fc823b2012-08-06 13:46:38 -06003400 * Try to preallocate enough space based on how big the block group is.
3401 * Keep in mind this has to include any pinned space which could end up
3402 * taking up quite a bit since it's not folded into the other space
3403 * cache.
3404 */
Byongho Leeee221842015-12-15 01:42:10 +09003405 num_pages = div_u64(block_group->key.offset, SZ_256M);
Josef Bacik0af3d002010-06-21 14:48:16 -04003406 if (!num_pages)
3407 num_pages = 1;
3408
Josef Bacik0af3d002010-06-21 14:48:16 -04003409 num_pages *= 16;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003410 num_pages *= PAGE_SIZE;
Josef Bacik0af3d002010-06-21 14:48:16 -04003411
Qu Wenruo364ecf32017-02-27 15:10:38 +08003412 ret = btrfs_check_data_free_space(inode, &data_reserved, 0, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003413 if (ret)
3414 goto out_put;
3415
3416 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3417 num_pages, num_pages,
3418 &alloc_hint);
Josef Bacik2968b1f2015-10-01 12:55:18 -04003419 /*
3420 * Our cache requires contiguous chunks so that we don't modify a bunch
3421 * of metadata or split extents when writing the cache out, which means
3422 * we can enospc if we are heavily fragmented in addition to just normal
3423 * out of space conditions. So if we hit this just skip setting up any
3424 * other block groups for this transaction, maybe we'll unpin enough
3425 * space the next time around.
3426 */
Josef Bacik2b209822010-12-03 13:17:53 -05003427 if (!ret)
3428 dcs = BTRFS_DC_SETUP;
Josef Bacik2968b1f2015-10-01 12:55:18 -04003429 else if (ret == -ENOSPC)
3430 set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
Josef Bacikc09544e2011-08-30 10:19:10 -04003431
Josef Bacik0af3d002010-06-21 14:48:16 -04003432out_put:
3433 iput(inode);
3434out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003435 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003436out:
3437 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003438 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003439 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003440 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003441 spin_unlock(&block_group->lock);
3442
Qu Wenruo364ecf32017-02-27 15:10:38 +08003443 extent_changeset_free(data_reserved);
Josef Bacik0af3d002010-06-21 14:48:16 -04003444 return ret;
3445}
3446
David Sterbabbebb3e2019-03-20 12:02:55 +01003447int btrfs_setup_space_cache(struct btrfs_trans_handle *trans)
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003448{
David Sterbabbebb3e2019-03-20 12:02:55 +01003449 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003450 struct btrfs_block_group_cache *cache, *tmp;
3451 struct btrfs_transaction *cur_trans = trans->transaction;
3452 struct btrfs_path *path;
3453
3454 if (list_empty(&cur_trans->dirty_bgs) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003455 !btrfs_test_opt(fs_info, SPACE_CACHE))
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003456 return 0;
3457
3458 path = btrfs_alloc_path();
3459 if (!path)
3460 return -ENOMEM;
3461
3462 /* Could add new block groups, use _safe just in case */
3463 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3464 dirty_list) {
3465 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3466 cache_save_setup(cache, trans, path);
3467 }
3468
3469 btrfs_free_path(path);
3470 return 0;
3471}
3472
Chris Mason1bbc6212015-04-06 12:46:08 -07003473/*
3474 * transaction commit does final block group cache writeback during a
3475 * critical section where nothing is allowed to change the FS. This is
3476 * required in order for the cache to actually match the block group,
3477 * but can introduce a lot of latency into the commit.
3478 *
3479 * So, btrfs_start_dirty_block_groups is here to kick off block group
3480 * cache IO. There's a chance we'll have to redo some of it if the
3481 * block group changes again during the commit, but it greatly reduces
3482 * the commit latency by getting rid of the easy block groups while
3483 * we're still allowing others to join the commit.
3484 */
Nikolay Borisov21217052018-02-07 17:55:41 +02003485int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans)
Chris Mason1bbc6212015-04-06 12:46:08 -07003486{
Nikolay Borisov21217052018-02-07 17:55:41 +02003487 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason1bbc6212015-04-06 12:46:08 -07003488 struct btrfs_block_group_cache *cache;
3489 struct btrfs_transaction *cur_trans = trans->transaction;
3490 int ret = 0;
3491 int should_put;
3492 struct btrfs_path *path = NULL;
3493 LIST_HEAD(dirty);
3494 struct list_head *io = &cur_trans->io_bgs;
3495 int num_started = 0;
3496 int loops = 0;
3497
3498 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003499 if (list_empty(&cur_trans->dirty_bgs)) {
3500 spin_unlock(&cur_trans->dirty_bgs_lock);
3501 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003502 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003503 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003504 spin_unlock(&cur_trans->dirty_bgs_lock);
3505
3506again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003507 /*
3508 * make sure all the block groups on our dirty list actually
3509 * exist
3510 */
Nikolay Borisov6c686b32018-02-07 17:55:40 +02003511 btrfs_create_pending_block_groups(trans);
Chris Mason1bbc6212015-04-06 12:46:08 -07003512
3513 if (!path) {
3514 path = btrfs_alloc_path();
3515 if (!path)
3516 return -ENOMEM;
3517 }
3518
Filipe Mananab58d1a92015-04-25 18:29:16 +01003519 /*
3520 * cache_write_mutex is here only to save us from balance or automatic
3521 * removal of empty block groups deleting this block group while we are
3522 * writing out the cache
3523 */
3524 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003525 while (!list_empty(&dirty)) {
Josef Bacikba2c4d42018-12-03 10:20:33 -05003526 bool drop_reserve = true;
3527
Chris Mason1bbc6212015-04-06 12:46:08 -07003528 cache = list_first_entry(&dirty,
3529 struct btrfs_block_group_cache,
3530 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003531 /*
3532 * this can happen if something re-dirties a block
3533 * group that is already under IO. Just wait for it to
3534 * finish and then do it all again
3535 */
3536 if (!list_empty(&cache->io_list)) {
3537 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003538 btrfs_wait_cache_io(trans, cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003539 btrfs_put_block_group(cache);
3540 }
3541
3542
3543 /*
3544 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3545 * if it should update the cache_state. Don't delete
3546 * until after we wait.
3547 *
3548 * Since we're not running in the commit critical section
3549 * we need the dirty_bgs_lock to protect from update_block_group
3550 */
3551 spin_lock(&cur_trans->dirty_bgs_lock);
3552 list_del_init(&cache->dirty_list);
3553 spin_unlock(&cur_trans->dirty_bgs_lock);
3554
3555 should_put = 1;
3556
3557 cache_save_setup(cache, trans, path);
3558
3559 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3560 cache->io_ctl.inode = NULL;
David Sterbafe041532019-03-20 13:51:56 +01003561 ret = btrfs_write_out_cache(trans, cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003562 if (ret == 0 && cache->io_ctl.inode) {
3563 num_started++;
3564 should_put = 0;
3565
3566 /*
Nikolay Borisov45ae2c12018-02-08 18:25:18 +02003567 * The cache_write_mutex is protecting the
3568 * io_list, also refer to the definition of
3569 * btrfs_transaction::io_bgs for more details
Chris Mason1bbc6212015-04-06 12:46:08 -07003570 */
3571 list_add_tail(&cache->io_list, io);
3572 } else {
3573 /*
3574 * if we failed to write the cache, the
3575 * generation will be bad and life goes on
3576 */
3577 ret = 0;
3578 }
3579 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003580 if (!ret) {
David Sterba39db2322019-03-20 11:57:46 +01003581 ret = write_one_cache_group(trans, path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003582 /*
3583 * Our block group might still be attached to the list
3584 * of new block groups in the transaction handle of some
3585 * other task (struct btrfs_trans_handle->new_bgs). This
3586 * means its block group item isn't yet in the extent
3587 * tree. If this happens ignore the error, as we will
3588 * try again later in the critical section of the
3589 * transaction commit.
3590 */
3591 if (ret == -ENOENT) {
3592 ret = 0;
3593 spin_lock(&cur_trans->dirty_bgs_lock);
3594 if (list_empty(&cache->dirty_list)) {
3595 list_add_tail(&cache->dirty_list,
3596 &cur_trans->dirty_bgs);
3597 btrfs_get_block_group(cache);
Josef Bacikba2c4d42018-12-03 10:20:33 -05003598 drop_reserve = false;
Filipe Mananaff1f8252015-05-06 16:15:09 +01003599 }
3600 spin_unlock(&cur_trans->dirty_bgs_lock);
3601 } else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003602 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003603 }
3604 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003605
Andrea Gelmini52042d82018-11-28 12:05:13 +01003606 /* if it's not on the io list, we need to put the block group */
Chris Mason1bbc6212015-04-06 12:46:08 -07003607 if (should_put)
3608 btrfs_put_block_group(cache);
Josef Bacikba2c4d42018-12-03 10:20:33 -05003609 if (drop_reserve)
3610 btrfs_delayed_refs_rsv_release(fs_info, 1);
Chris Mason1bbc6212015-04-06 12:46:08 -07003611
3612 if (ret)
3613 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003614
3615 /*
3616 * Avoid blocking other tasks for too long. It might even save
3617 * us from writing caches for block groups that are going to be
3618 * removed.
3619 */
3620 mutex_unlock(&trans->transaction->cache_write_mutex);
3621 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003622 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003623 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003624
3625 /*
3626 * go through delayed refs for all the stuff we've just kicked off
3627 * and then loop back (just once)
3628 */
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02003629 ret = btrfs_run_delayed_refs(trans, 0);
Chris Mason1bbc6212015-04-06 12:46:08 -07003630 if (!ret && loops == 0) {
3631 loops++;
3632 spin_lock(&cur_trans->dirty_bgs_lock);
3633 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003634 /*
3635 * dirty_bgs_lock protects us from concurrent block group
3636 * deletes too (not just cache_write_mutex).
3637 */
3638 if (!list_empty(&dirty)) {
3639 spin_unlock(&cur_trans->dirty_bgs_lock);
3640 goto again;
3641 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003642 spin_unlock(&cur_trans->dirty_bgs_lock);
Liu Boc79a1752016-07-20 17:44:12 -07003643 } else if (ret < 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003644 btrfs_cleanup_dirty_bgs(cur_trans, fs_info);
Chris Mason1bbc6212015-04-06 12:46:08 -07003645 }
3646
3647 btrfs_free_path(path);
3648 return ret;
3649}
3650
David Sterba5742d152019-03-20 12:04:08 +01003651int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans)
Chris Mason9078a3e2007-04-26 16:46:15 -04003652{
David Sterba5742d152019-03-20 12:04:08 +01003653 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003654 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003655 struct btrfs_transaction *cur_trans = trans->transaction;
3656 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003657 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003658 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003659 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003660 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003661
3662 path = btrfs_alloc_path();
3663 if (!path)
3664 return -ENOMEM;
3665
Josef Bacikce93ec52014-11-17 15:45:48 -05003666 /*
Filipe Mananae44081e2015-12-18 03:02:48 +00003667 * Even though we are in the critical section of the transaction commit,
3668 * we can still have concurrent tasks adding elements to this
3669 * transaction's list of dirty block groups. These tasks correspond to
3670 * endio free space workers started when writeback finishes for a
3671 * space cache, which run inode.c:btrfs_finish_ordered_io(), and can
3672 * allocate new block groups as a result of COWing nodes of the root
3673 * tree when updating the free space inode. The writeback for the space
3674 * caches is triggered by an earlier call to
3675 * btrfs_start_dirty_block_groups() and iterations of the following
3676 * loop.
3677 * Also we want to do the cache_save_setup first and then run the
Josef Bacikce93ec52014-11-17 15:45:48 -05003678 * delayed refs to make sure we have the best chance at doing this all
3679 * in one shot.
3680 */
Filipe Mananae44081e2015-12-18 03:02:48 +00003681 spin_lock(&cur_trans->dirty_bgs_lock);
Josef Bacikce93ec52014-11-17 15:45:48 -05003682 while (!list_empty(&cur_trans->dirty_bgs)) {
3683 cache = list_first_entry(&cur_trans->dirty_bgs,
3684 struct btrfs_block_group_cache,
3685 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003686
3687 /*
3688 * this can happen if cache_save_setup re-dirties a block
3689 * group that is already under IO. Just wait for it to
3690 * finish and then do it all again
3691 */
3692 if (!list_empty(&cache->io_list)) {
Filipe Mananae44081e2015-12-18 03:02:48 +00003693 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003694 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003695 btrfs_wait_cache_io(trans, cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003696 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003697 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003698 }
3699
Chris Mason1bbc6212015-04-06 12:46:08 -07003700 /*
3701 * don't remove from the dirty list until after we've waited
3702 * on any pending IO
3703 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003704 list_del_init(&cache->dirty_list);
Filipe Mananae44081e2015-12-18 03:02:48 +00003705 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003706 should_put = 1;
3707
Chris Mason1bbc6212015-04-06 12:46:08 -07003708 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003709
Josef Bacikce93ec52014-11-17 15:45:48 -05003710 if (!ret)
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02003711 ret = btrfs_run_delayed_refs(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003712 (unsigned long) -1);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003713
3714 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3715 cache->io_ctl.inode = NULL;
David Sterbafe041532019-03-20 13:51:56 +01003716 ret = btrfs_write_out_cache(trans, cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003717 if (ret == 0 && cache->io_ctl.inode) {
3718 num_started++;
3719 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003720 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003721 } else {
3722 /*
3723 * if we failed to write the cache, the
3724 * generation will be bad and life goes on
3725 */
3726 ret = 0;
3727 }
3728 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003729 if (!ret) {
David Sterba39db2322019-03-20 11:57:46 +01003730 ret = write_one_cache_group(trans, path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003731 /*
3732 * One of the free space endio workers might have
3733 * created a new block group while updating a free space
3734 * cache's inode (at inode.c:btrfs_finish_ordered_io())
3735 * and hasn't released its transaction handle yet, in
3736 * which case the new block group is still attached to
3737 * its transaction handle and its creation has not
3738 * finished yet (no block group item in the extent tree
3739 * yet, etc). If this is the case, wait for all free
3740 * space endio workers to finish and retry. This is a
3741 * a very rare case so no need for a more efficient and
3742 * complex approach.
3743 */
3744 if (ret == -ENOENT) {
3745 wait_event(cur_trans->writer_wait,
3746 atomic_read(&cur_trans->num_writers) == 1);
David Sterba39db2322019-03-20 11:57:46 +01003747 ret = write_one_cache_group(trans, path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003748 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003749 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003750 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003751 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003752
3753 /* if its not on the io list, we need to put the block group */
3754 if (should_put)
3755 btrfs_put_block_group(cache);
Josef Bacikba2c4d42018-12-03 10:20:33 -05003756 btrfs_delayed_refs_rsv_release(fs_info, 1);
Filipe Mananae44081e2015-12-18 03:02:48 +00003757 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003758 }
Filipe Mananae44081e2015-12-18 03:02:48 +00003759 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003760
Nikolay Borisov45ae2c12018-02-08 18:25:18 +02003761 /*
3762 * Refer to the definition of io_bgs member for details why it's safe
3763 * to use it without any locking
3764 */
Chris Mason1bbc6212015-04-06 12:46:08 -07003765 while (!list_empty(io)) {
3766 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003767 io_list);
3768 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003769 btrfs_wait_cache_io(trans, cache, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003770 btrfs_put_block_group(cache);
3771 }
3772
Chris Mason9078a3e2007-04-26 16:46:15 -04003773 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003774 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003775}
3776
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003777int btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr)
Yan Zhengd2fb3432008-12-11 16:30:39 -05003778{
3779 struct btrfs_block_group_cache *block_group;
3780 int readonly = 0;
3781
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003782 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003783 if (!block_group || block_group->ro)
3784 readonly = 1;
3785 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003786 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003787 return readonly;
3788}
3789
Filipe Mananaf78c4362016-05-09 13:15:41 +01003790bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3791{
3792 struct btrfs_block_group_cache *bg;
3793 bool ret = true;
3794
3795 bg = btrfs_lookup_block_group(fs_info, bytenr);
3796 if (!bg)
3797 return false;
3798
3799 spin_lock(&bg->lock);
3800 if (bg->ro)
3801 ret = false;
3802 else
3803 atomic_inc(&bg->nocow_writers);
3804 spin_unlock(&bg->lock);
3805
3806 /* no put on block group, done by btrfs_dec_nocow_writers */
3807 if (!ret)
3808 btrfs_put_block_group(bg);
3809
3810 return ret;
3811
3812}
3813
3814void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3815{
3816 struct btrfs_block_group_cache *bg;
3817
3818 bg = btrfs_lookup_block_group(fs_info, bytenr);
3819 ASSERT(bg);
3820 if (atomic_dec_and_test(&bg->nocow_writers))
Peter Zijlstra46259562018-03-15 11:43:08 +01003821 wake_up_var(&bg->nocow_writers);
Filipe Mananaf78c4362016-05-09 13:15:41 +01003822 /*
3823 * Once for our lookup and once for the lookup done by a previous call
3824 * to btrfs_inc_nocow_writers()
3825 */
3826 btrfs_put_block_group(bg);
3827 btrfs_put_block_group(bg);
3828}
3829
Filipe Mananaf78c4362016-05-09 13:15:41 +01003830void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg)
3831{
Peter Zijlstra46259562018-03-15 11:43:08 +01003832 wait_var_event(&bg->nocow_writers, !atomic_read(&bg->nocow_writers));
Filipe Mananaf78c4362016-05-09 13:15:41 +01003833}
3834
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003835static const char *alloc_name(u64 flags)
3836{
3837 switch (flags) {
3838 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3839 return "mixed";
3840 case BTRFS_BLOCK_GROUP_METADATA:
3841 return "metadata";
3842 case BTRFS_BLOCK_GROUP_DATA:
3843 return "data";
3844 case BTRFS_BLOCK_GROUP_SYSTEM:
3845 return "system";
3846 default:
3847 WARN_ON(1);
3848 return "invalid-combination";
3849 };
3850}
3851
Lu Fengqi4ca61682018-05-28 14:30:27 +08003852static int create_space_info(struct btrfs_fs_info *info, u64 flags)
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03003853{
3854
3855 struct btrfs_space_info *space_info;
3856 int i;
3857 int ret;
3858
3859 space_info = kzalloc(sizeof(*space_info), GFP_NOFS);
3860 if (!space_info)
3861 return -ENOMEM;
3862
3863 ret = percpu_counter_init(&space_info->total_bytes_pinned, 0,
3864 GFP_KERNEL);
3865 if (ret) {
3866 kfree(space_info);
3867 return ret;
3868 }
3869
3870 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
3871 INIT_LIST_HEAD(&space_info->block_groups[i]);
3872 init_rwsem(&space_info->groups_sem);
3873 spin_lock_init(&space_info->lock);
3874 space_info->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
3875 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
3876 init_waitqueue_head(&space_info->wait);
3877 INIT_LIST_HEAD(&space_info->ro_bgs);
3878 INIT_LIST_HEAD(&space_info->tickets);
3879 INIT_LIST_HEAD(&space_info->priority_tickets);
3880
3881 ret = kobject_init_and_add(&space_info->kobj, &space_info_ktype,
3882 info->space_info_kobj, "%s",
3883 alloc_name(space_info->flags));
3884 if (ret) {
3885 percpu_counter_destroy(&space_info->total_bytes_pinned);
3886 kfree(space_info);
3887 return ret;
3888 }
3889
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03003890 list_add_rcu(&space_info->list, &info->space_info);
3891 if (flags & BTRFS_BLOCK_GROUP_DATA)
3892 info->data_sinfo = space_info;
3893
3894 return ret;
3895}
3896
Nikolay Borisovd2006e62017-05-22 09:35:50 +03003897static void update_space_info(struct btrfs_fs_info *info, u64 flags,
Chris Mason593060d2008-03-25 16:50:33 -04003898 u64 total_bytes, u64 bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -04003899 u64 bytes_readonly,
Chris Mason593060d2008-03-25 16:50:33 -04003900 struct btrfs_space_info **space_info)
3901{
3902 struct btrfs_space_info *found;
Yan, Zhengb742bb822010-05-16 10:46:24 -04003903 int factor;
3904
David Sterba46df06b2018-07-13 20:46:30 +02003905 factor = btrfs_bg_type_to_factor(flags);
Chris Mason593060d2008-03-25 16:50:33 -04003906
3907 found = __find_space_info(info, flags);
Nikolay Borisovd2006e62017-05-22 09:35:50 +03003908 ASSERT(found);
3909 spin_lock(&found->lock);
3910 found->total_bytes += total_bytes;
3911 found->disk_total += total_bytes * factor;
3912 found->bytes_used += bytes_used;
3913 found->disk_used += bytes_used * factor;
3914 found->bytes_readonly += bytes_readonly;
3915 if (total_bytes > 0)
3916 found->full = 0;
3917 space_info_add_new_bytes(info, found, total_bytes -
3918 bytes_used - bytes_readonly);
3919 spin_unlock(&found->lock);
3920 *space_info = found;
Chris Mason593060d2008-03-25 16:50:33 -04003921}
3922
Chris Mason8790d502008-04-03 16:29:03 -04003923static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3924{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003925 u64 extra_flags = chunk_to_extended(flags) &
3926 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003927
Miao Xiede98ced2013-01-29 10:13:12 +00003928 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003929 if (flags & BTRFS_BLOCK_GROUP_DATA)
3930 fs_info->avail_data_alloc_bits |= extra_flags;
3931 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3932 fs_info->avail_metadata_alloc_bits |= extra_flags;
3933 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3934 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003935 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04003936}
Chris Mason593060d2008-03-25 16:50:33 -04003937
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003938/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003939 * returns target flags in extended format or 0 if restripe for this
3940 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04003941 *
David Sterbadccdb072018-03-21 00:20:05 +01003942 * should be called with balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003943 */
3944static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3945{
3946 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3947 u64 target = 0;
3948
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003949 if (!bctl)
3950 return 0;
3951
3952 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3953 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3954 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3955 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3956 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3957 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3958 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3959 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3960 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3961 }
3962
3963 return target;
3964}
3965
3966/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003967 * @flags: available profiles in extended format (see ctree.h)
3968 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003969 * Returns reduced profile in chunk format. If profile changing is in
3970 * progress (either running or paused) picks the target profile (if it's
3971 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003972 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003973static u64 btrfs_reduce_alloc_profile(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003974{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003975 u64 num_devices = fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003976 u64 target;
Zhao Lei9c170b22015-09-15 21:08:08 +08003977 u64 raid_type;
3978 u64 allowed = 0;
Chris Masona061fc82008-05-07 11:43:44 -04003979
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003980 /*
3981 * see if restripe for this chunk_type is in progress, if so
3982 * try to reduce to the target profile
3983 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003984 spin_lock(&fs_info->balance_lock);
3985 target = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003986 if (target) {
3987 /* pick target profile only if it's already available */
3988 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003989 spin_unlock(&fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003990 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003991 }
3992 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003993 spin_unlock(&fs_info->balance_lock);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003994
David Woodhouse53b381b2013-01-29 18:40:14 -05003995 /* First, mask out the RAID levels which aren't possible */
Zhao Lei9c170b22015-09-15 21:08:08 +08003996 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
3997 if (num_devices >= btrfs_raid_array[raid_type].devs_min)
Anand Jain41a6e892018-04-25 19:01:43 +08003998 allowed |= btrfs_raid_array[raid_type].bg_flag;
Zhao Lei9c170b22015-09-15 21:08:08 +08003999 }
4000 allowed &= flags;
Chris Masona061fc82008-05-07 11:43:44 -04004001
Zhao Lei9c170b22015-09-15 21:08:08 +08004002 if (allowed & BTRFS_BLOCK_GROUP_RAID6)
4003 allowed = BTRFS_BLOCK_GROUP_RAID6;
4004 else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
4005 allowed = BTRFS_BLOCK_GROUP_RAID5;
4006 else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
4007 allowed = BTRFS_BLOCK_GROUP_RAID10;
4008 else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
4009 allowed = BTRFS_BLOCK_GROUP_RAID1;
4010 else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
4011 allowed = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04004012
Zhao Lei9c170b22015-09-15 21:08:08 +08004013 flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
Chris Masonec44a352008-04-28 15:29:52 -04004014
Zhao Lei9c170b22015-09-15 21:08:08 +08004015 return extended_to_chunk(flags | allowed);
Chris Masonec44a352008-04-28 15:29:52 -04004016}
4017
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004018static u64 get_alloc_profile(struct btrfs_fs_info *fs_info, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05004019{
Miao Xiede98ced2013-01-29 10:13:12 +00004020 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004021 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004022
4023 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004024 flags = orig_flags;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004025 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00004026
4027 if (flags & BTRFS_BLOCK_GROUP_DATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004028 flags |= fs_info->avail_data_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004029 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004030 flags |= fs_info->avail_system_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004031 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004032 flags |= fs_info->avail_metadata_alloc_bits;
4033 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02004034
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004035 return btrfs_reduce_alloc_profile(fs_info, flags);
Yan, Zhengb742bb822010-05-16 10:46:24 -04004036}
Josef Bacik6a632092009-02-20 11:00:09 -05004037
Jeff Mahoney1b868262017-05-17 11:38:35 -04004038static u64 get_alloc_profile_by_root(struct btrfs_root *root, int data)
Yan, Zhengb742bb822010-05-16 10:46:24 -04004039{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004040 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengb742bb822010-05-16 10:46:24 -04004041 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05004042 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004043
Yan, Zhengb742bb822010-05-16 10:46:24 -04004044 if (data)
4045 flags = BTRFS_BLOCK_GROUP_DATA;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004046 else if (root == fs_info->chunk_root)
Yan, Zhengb742bb822010-05-16 10:46:24 -04004047 flags = BTRFS_BLOCK_GROUP_SYSTEM;
4048 else
4049 flags = BTRFS_BLOCK_GROUP_METADATA;
4050
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004051 ret = get_alloc_profile(fs_info, flags);
David Woodhouse53b381b2013-01-29 18:40:14 -05004052 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004053}
4054
Jeff Mahoney1b868262017-05-17 11:38:35 -04004055u64 btrfs_data_alloc_profile(struct btrfs_fs_info *fs_info)
4056{
4057 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_DATA);
4058}
4059
4060u64 btrfs_metadata_alloc_profile(struct btrfs_fs_info *fs_info)
4061{
4062 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4063}
4064
4065u64 btrfs_system_alloc_profile(struct btrfs_fs_info *fs_info)
4066{
4067 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4068}
4069
Liu Bo41361352017-02-13 15:42:21 -08004070static u64 btrfs_space_info_used(struct btrfs_space_info *s_info,
4071 bool may_use_included)
4072{
4073 ASSERT(s_info);
4074 return s_info->bytes_used + s_info->bytes_reserved +
4075 s_info->bytes_pinned + s_info->bytes_readonly +
4076 (may_use_included ? s_info->bytes_may_use : 0);
4077}
4078
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004079int btrfs_alloc_data_chunk_ondemand(struct btrfs_inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05004080{
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004081 struct btrfs_root *root = inode->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004082 struct btrfs_fs_info *fs_info = root->fs_info;
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004083 struct btrfs_space_info *data_sinfo = fs_info->data_sinfo;
Josef Bacikab6e24102010-03-19 14:38:13 +00004084 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08004085 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08004086 int need_commit = 2;
4087 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05004088
4089 /* make sure bytes are sectorsize aligned */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004090 bytes = ALIGN(bytes, fs_info->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05004091
Miao Xie9dced182013-10-25 17:33:36 +08004092 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004093 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08004094 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04004095 }
4096
Josef Bacik6a632092009-02-20 11:00:09 -05004097again:
4098 /* make sure we have enough space to handle the data first */
4099 spin_lock(&data_sinfo->lock);
Liu Bo41361352017-02-13 15:42:21 -08004100 used = btrfs_space_info_used(data_sinfo, true);
Josef Bacikab6e24102010-03-19 14:38:13 +00004101
4102 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004103 struct btrfs_trans_handle *trans;
4104
Josef Bacik6a632092009-02-20 11:00:09 -05004105 /*
4106 * if we don't have enough free bytes in this space then we need
4107 * to alloc a new chunk.
4108 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08004109 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05004110 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05004111
Chris Mason0e4f8f82011-04-15 16:05:44 -04004112 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05004113 spin_unlock(&data_sinfo->lock);
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004114
Jeff Mahoney1b868262017-05-17 11:38:35 -04004115 alloc_target = btrfs_data_alloc_profile(fs_info);
Miao Xie9dced182013-10-25 17:33:36 +08004116 /*
4117 * It is ugly that we don't call nolock join
4118 * transaction for the free space inode case here.
4119 * But it is safe because we only do the data space
4120 * reservation for the free space cache in the
4121 * transaction context, the common join transaction
4122 * just increase the counter of the current transaction
4123 * handler, doesn't try to acquire the trans_lock of
4124 * the fs.
4125 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004126 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004127 if (IS_ERR(trans))
4128 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05004129
Nikolay Borisov01458822018-06-20 15:49:05 +03004130 ret = do_chunk_alloc(trans, alloc_target,
Chris Mason0e4f8f82011-04-15 16:05:44 -04004131 CHUNK_ALLOC_NO_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004132 btrfs_end_transaction(trans);
Miao Xied52a5b52011-01-05 10:07:18 +00004133 if (ret < 0) {
4134 if (ret != -ENOSPC)
4135 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08004136 else {
4137 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00004138 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08004139 }
Miao Xied52a5b52011-01-05 10:07:18 +00004140 }
Chris Mason33b4d472009-09-22 14:45:50 -04004141
Josef Bacik6a632092009-02-20 11:00:09 -05004142 goto again;
4143 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004144
4145 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04004146 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08004147 * allocation, and no removed chunk in current transaction,
4148 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004149 */
Ethan Liendec59fa2018-07-13 16:50:42 +08004150 have_pinned_space = __percpu_counter_compare(
Zhao Leic99f1b02015-03-02 19:32:20 +08004151 &data_sinfo->total_bytes_pinned,
Ethan Liendec59fa2018-07-13 16:50:42 +08004152 used + bytes - data_sinfo->total_bytes,
4153 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Josef Bacik6a632092009-02-20 11:00:09 -05004154 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004155
4156 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00004157commit_trans:
Nikolay Borisov92e2f7e2018-02-05 10:41:16 +02004158 if (need_commit) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004159 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04004160
Zhao Leie1746e82015-12-01 18:39:40 +08004161 if (need_commit > 0) {
Nikolay Borisov82b3e532018-04-23 10:54:13 +03004162 btrfs_start_delalloc_roots(fs_info, -1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004163 btrfs_wait_ordered_roots(fs_info, U64_MAX, 0,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004164 (u64)-1);
Zhao Leie1746e82015-12-01 18:39:40 +08004165 }
Zhao Lei9a4e7272015-04-09 12:34:43 +08004166
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004167 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004168 if (IS_ERR(trans))
4169 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08004170 if (have_pinned_space >= 0 ||
Josef Bacik3204d332015-09-24 10:46:10 -04004171 test_bit(BTRFS_TRANS_HAVE_FREE_BGS,
4172 &trans->transaction->flags) ||
Zhao Leic99f1b02015-03-02 19:32:20 +08004173 need_commit > 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004174 ret = btrfs_commit_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004175 if (ret)
4176 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08004177 /*
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004178 * The cleaner kthread might still be doing iput
4179 * operations. Wait for it to finish so that
Josef Bacik034f7842018-12-03 11:06:52 -05004180 * more space is released. We don't need to
4181 * explicitly run the delayed iputs here because
4182 * the commit_transaction would have woken up
4183 * the cleaner.
Zhao Leid7c15172015-02-26 10:49:20 +08004184 */
Josef Bacik034f7842018-12-03 11:06:52 -05004185 ret = btrfs_wait_on_delayed_iputs(fs_info);
4186 if (ret)
4187 return ret;
Zhao Lei94b947b2015-02-14 13:23:45 +08004188 goto again;
4189 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004190 btrfs_end_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004191 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004192 }
4193
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004194 trace_btrfs_space_reservation(fs_info,
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004195 "space_info:enospc",
4196 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004197 return -ENOSPC;
4198 }
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08004199 update_bytes_may_use(data_sinfo, bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004200 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004201 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004202 spin_unlock(&data_sinfo->lock);
4203
Josef Bacik4559b0a72018-07-19 10:49:51 -04004204 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05004205}
4206
Qu Wenruo364ecf32017-02-27 15:10:38 +08004207int btrfs_check_data_free_space(struct inode *inode,
4208 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004209{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004210 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004211 int ret;
4212
4213 /* align the range */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004214 len = round_up(start + len, fs_info->sectorsize) -
4215 round_down(start, fs_info->sectorsize);
4216 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004217
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004218 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode), len);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004219 if (ret < 0)
4220 return ret;
4221
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004222 /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */
Qu Wenruo364ecf32017-02-27 15:10:38 +08004223 ret = btrfs_qgroup_reserve_data(inode, reserved, start, len);
Qu Wenruo7bc329c2017-02-27 15:10:36 +08004224 if (ret < 0)
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004225 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruo364ecf32017-02-27 15:10:38 +08004226 else
4227 ret = 0;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004228 return ret;
4229}
4230
4231/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004232 * Called if we need to clear a data reservation for this inode
4233 * Normally in a error case.
4234 *
Qu Wenruo51773be2015-10-08 18:19:37 +08004235 * This one will *NOT* use accurate qgroup reserved space API, just for case
4236 * which we can't sleep and is sure it won't affect qgroup reserved space.
4237 * Like clear_bit_hook().
Qu Wenruo4ceff072015-09-08 17:22:42 +08004238 */
Qu Wenruo51773be2015-10-08 18:19:37 +08004239void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start,
4240 u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004241{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004242 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004243 struct btrfs_space_info *data_sinfo;
4244
4245 /* Make sure the range is aligned to sectorsize */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004246 len = round_up(start + len, fs_info->sectorsize) -
4247 round_down(start, fs_info->sectorsize);
4248 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004249
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004250 data_sinfo = fs_info->data_sinfo;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004251 spin_lock(&data_sinfo->lock);
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08004252 update_bytes_may_use(data_sinfo, -len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004253 trace_btrfs_space_reservation(fs_info, "space_info",
Qu Wenruo4ceff072015-09-08 17:22:42 +08004254 data_sinfo->flags, len, 0);
4255 spin_unlock(&data_sinfo->lock);
4256}
4257
Qu Wenruo51773be2015-10-08 18:19:37 +08004258/*
4259 * Called if we need to clear a data reservation for this inode
4260 * Normally in a error case.
4261 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04004262 * This one will handle the per-inode data rsv map for accurate reserved
Qu Wenruo51773be2015-10-08 18:19:37 +08004263 * space framework.
4264 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08004265void btrfs_free_reserved_data_space(struct inode *inode,
4266 struct extent_changeset *reserved, u64 start, u64 len)
Qu Wenruo51773be2015-10-08 18:19:37 +08004267{
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004268 struct btrfs_root *root = BTRFS_I(inode)->root;
4269
4270 /* Make sure the range is aligned to sectorsize */
Jeff Mahoneyda170662016-06-15 09:22:56 -04004271 len = round_up(start + len, root->fs_info->sectorsize) -
4272 round_down(start, root->fs_info->sectorsize);
4273 start = round_down(start, root->fs_info->sectorsize);
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004274
Qu Wenruo51773be2015-10-08 18:19:37 +08004275 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruobc42bda2017-02-27 15:10:39 +08004276 btrfs_qgroup_free_data(inode, reserved, start, len);
Qu Wenruo51773be2015-10-08 18:19:37 +08004277}
4278
Josef Bacik97e728d2009-04-21 17:40:57 -04004279static void force_metadata_allocation(struct btrfs_fs_info *info)
4280{
4281 struct list_head *head = &info->space_info;
4282 struct btrfs_space_info *found;
4283
4284 rcu_read_lock();
4285 list_for_each_entry_rcu(found, head, list) {
4286 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004287 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04004288 }
4289 rcu_read_unlock();
4290}
4291
Miao Xie3c76cd82013-04-25 10:12:38 +00004292static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4293{
4294 return (global->size << 1);
4295}
4296
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004297static int should_alloc_chunk(struct btrfs_fs_info *fs_info,
Josef Bacik698d0082012-09-12 14:08:47 -04004298 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004299{
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004300 u64 bytes_used = btrfs_space_info_used(sinfo, false);
Chris Masone5bc2452010-10-26 13:37:56 -04004301 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004302
Chris Mason0e4f8f82011-04-15 16:05:44 -04004303 if (force == CHUNK_ALLOC_FORCE)
4304 return 1;
4305
4306 /*
4307 * in limited mode, we want to have some free space up to
4308 * about 1% of the FS size.
4309 */
4310 if (force == CHUNK_ALLOC_LIMITED) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004311 thresh = btrfs_super_total_bytes(fs_info->super_copy);
Byongho Leeee221842015-12-15 01:42:10 +09004312 thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
Chris Mason0e4f8f82011-04-15 16:05:44 -04004313
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004314 if (sinfo->total_bytes - bytes_used < thresh)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004315 return 1;
4316 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004317
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004318 if (bytes_used + SZ_2M < div_factor(sinfo->total_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004319 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004320 return 1;
4321}
4322
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004323static u64 get_profile_num_devs(struct btrfs_fs_info *fs_info, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004324{
4325 u64 num_dev;
4326
David Woodhouse53b381b2013-01-29 18:40:14 -05004327 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
4328 BTRFS_BLOCK_GROUP_RAID0 |
4329 BTRFS_BLOCK_GROUP_RAID5 |
4330 BTRFS_BLOCK_GROUP_RAID6))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004331 num_dev = fs_info->fs_devices->rw_devices;
Liu Bo15d1ff82012-03-29 09:57:44 -04004332 else if (type & BTRFS_BLOCK_GROUP_RAID1)
4333 num_dev = 2;
4334 else
4335 num_dev = 1; /* DUP or single */
4336
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004337 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004338}
4339
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004340/*
4341 * If @is_allocation is true, reserve space in the system space info necessary
4342 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4343 * removing a chunk.
4344 */
Nikolay Borisov451a2c12018-06-20 15:49:07 +03004345void check_system_chunk(struct btrfs_trans_handle *trans, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004346{
Nikolay Borisov451a2c12018-06-20 15:49:07 +03004347 struct btrfs_fs_info *fs_info = trans->fs_info;
Liu Bo15d1ff82012-03-29 09:57:44 -04004348 struct btrfs_space_info *info;
4349 u64 left;
4350 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004351 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004352 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004353
4354 /*
4355 * Needed because we can end up allocating a system chunk and for an
4356 * atomic and race free space reservation in the chunk block reserve.
4357 */
David Sterbaa32bf9a2018-03-16 02:21:22 +01004358 lockdep_assert_held(&fs_info->chunk_mutex);
Liu Bo15d1ff82012-03-29 09:57:44 -04004359
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004360 info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
Liu Bo15d1ff82012-03-29 09:57:44 -04004361 spin_lock(&info->lock);
Liu Bo41361352017-02-13 15:42:21 -08004362 left = info->total_bytes - btrfs_space_info_used(info, true);
Liu Bo15d1ff82012-03-29 09:57:44 -04004363 spin_unlock(&info->lock);
4364
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004365 num_devs = get_profile_num_devs(fs_info, type);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004366
4367 /* num_devs device items to update and 1 chunk item to add or remove */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004368 thresh = btrfs_calc_trunc_metadata_size(fs_info, num_devs) +
4369 btrfs_calc_trans_metadata_size(fs_info, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004370
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004371 if (left < thresh && btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
4372 btrfs_info(fs_info, "left=%llu, need=%llu, flags=%llu",
4373 left, thresh, type);
4374 dump_space_info(fs_info, info, 0, 0);
Liu Bo15d1ff82012-03-29 09:57:44 -04004375 }
4376
4377 if (left < thresh) {
Jeff Mahoney1b868262017-05-17 11:38:35 -04004378 u64 flags = btrfs_system_alloc_profile(fs_info);
Liu Bo15d1ff82012-03-29 09:57:44 -04004379
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004380 /*
4381 * Ignore failure to create system chunk. We might end up not
4382 * needing it, as we might not need to COW all nodes/leafs from
4383 * the paths we visit in the chunk tree (they were already COWed
4384 * or created in the current transaction for example).
4385 */
Nikolay Borisovc216b202018-06-20 15:49:06 +03004386 ret = btrfs_alloc_chunk(trans, flags);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004387 }
4388
4389 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004390 ret = btrfs_block_rsv_add(fs_info->chunk_root,
4391 &fs_info->chunk_block_rsv,
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004392 thresh, BTRFS_RESERVE_NO_FLUSH);
4393 if (!ret)
4394 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004395 }
4396}
4397
Liu Bo28b737f2016-07-29 11:09:50 -07004398/*
4399 * If force is CHUNK_ALLOC_FORCE:
4400 * - return 1 if it successfully allocates a chunk,
4401 * - return errors including -ENOSPC otherwise.
4402 * If force is NOT CHUNK_ALLOC_FORCE:
4403 * - return 0 if it doesn't need to allocate a new chunk,
4404 * - return 1 if it successfully allocates a chunk,
4405 * - return errors including -ENOSPC otherwise.
4406 */
Nikolay Borisov01458822018-06-20 15:49:05 +03004407static int do_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags,
4408 int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004409{
Nikolay Borisov01458822018-06-20 15:49:05 +03004410 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04004411 struct btrfs_space_info *space_info;
Nikolay Borisov2556fbb2018-04-18 10:27:57 +03004412 bool wait_for_alloc = false;
4413 bool should_alloc = false;
Yan Zhengc146afa2008-11-12 14:34:12 -05004414 int ret = 0;
4415
Josef Bacikc6b305a2012-12-18 09:16:16 -05004416 /* Don't re-enter if we're already allocating a chunk */
4417 if (trans->allocating_chunk)
4418 return -ENOSPC;
4419
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004420 space_info = __find_space_info(fs_info, flags);
Jeff Mahoneydc2d3002018-03-20 15:25:25 -04004421 ASSERT(space_info);
Chris Mason6324fbf2008-03-24 15:01:59 -04004422
Nikolay Borisov2556fbb2018-04-18 10:27:57 +03004423 do {
4424 spin_lock(&space_info->lock);
4425 if (force < space_info->force_alloc)
4426 force = space_info->force_alloc;
4427 should_alloc = should_alloc_chunk(fs_info, space_info, force);
4428 if (space_info->full) {
4429 /* No more free physical space */
4430 if (should_alloc)
4431 ret = -ENOSPC;
4432 else
4433 ret = 0;
4434 spin_unlock(&space_info->lock);
4435 return ret;
4436 } else if (!should_alloc) {
4437 spin_unlock(&space_info->lock);
4438 return 0;
4439 } else if (space_info->chunk_alloc) {
4440 /*
4441 * Someone is already allocating, so we need to block
4442 * until this someone is finished and then loop to
4443 * recheck if we should continue with our allocation
4444 * attempt.
4445 */
4446 wait_for_alloc = true;
4447 spin_unlock(&space_info->lock);
4448 mutex_lock(&fs_info->chunk_mutex);
4449 mutex_unlock(&fs_info->chunk_mutex);
4450 } else {
4451 /* Proceed with allocation */
4452 space_info->chunk_alloc = 1;
4453 wait_for_alloc = false;
4454 spin_unlock(&space_info->lock);
4455 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004456
Nikolay Borisov2556fbb2018-04-18 10:27:57 +03004457 cond_resched();
4458 } while (wait_for_alloc);
Josef Bacik25179202008-10-29 14:49:05 -04004459
Josef Bacik6d741192011-04-11 20:20:11 -04004460 mutex_lock(&fs_info->chunk_mutex);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004461 trans->allocating_chunk = true;
4462
Josef Bacik97e728d2009-04-21 17:40:57 -04004463 /*
Josef Bacik67377732010-09-16 16:19:09 -04004464 * If we have mixed data/metadata chunks we want to make sure we keep
4465 * allocating mixed chunks instead of individual chunks.
4466 */
4467 if (btrfs_mixed_space_info(space_info))
4468 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4469
4470 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004471 * if we're doing a data chunk, go ahead and make sure that
4472 * we keep a reasonable number of metadata chunks allocated in the
4473 * FS as well.
4474 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004475 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004476 fs_info->data_chunk_allocations++;
4477 if (!(fs_info->data_chunk_allocations %
4478 fs_info->metadata_ratio))
4479 force_metadata_allocation(fs_info);
4480 }
4481
Liu Bo15d1ff82012-03-29 09:57:44 -04004482 /*
4483 * Check if we have enough space in SYSTEM chunk because we may need
4484 * to update devices.
4485 */
Nikolay Borisov451a2c12018-06-20 15:49:07 +03004486 check_system_chunk(trans, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004487
Nikolay Borisovc216b202018-06-20 15:49:06 +03004488 ret = btrfs_alloc_chunk(trans, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004489 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004490
Josef Bacik9ed74f22009-09-11 16:12:44 -04004491 spin_lock(&space_info->lock);
Nikolay Borisov57f16422018-04-11 11:21:19 +03004492 if (ret < 0) {
4493 if (ret == -ENOSPC)
4494 space_info->full = 1;
4495 else
4496 goto out;
4497 } else {
Yan, Zheng424499d2010-05-16 10:46:25 -04004498 ret = 1;
Josef Bacik21a94f72018-10-11 15:54:03 -04004499 space_info->max_extent_size = 0;
Nikolay Borisov57f16422018-04-11 11:21:19 +03004500 }
Josef Bacik6d741192011-04-11 20:20:11 -04004501
Chris Mason0e4f8f82011-04-15 16:05:44 -04004502 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004503out:
Josef Bacik6d741192011-04-11 20:20:11 -04004504 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004505 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004506 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana00d80e32015-07-20 14:56:20 +01004507 /*
4508 * When we allocate a new chunk we reserve space in the chunk block
4509 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4510 * add new nodes/leafs to it if we end up needing to do it when
4511 * inserting the chunk item and updating device items as part of the
4512 * second phase of chunk allocation, performed by
4513 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4514 * large number of new block groups to create in our transaction
4515 * handle's new_bgs list to avoid exhausting the chunk block reserve
4516 * in extreme cases - like having a single transaction create many new
4517 * block groups when starting to write out the free space caches of all
4518 * the block groups that were made dirty during the lifetime of the
4519 * transaction.
4520 */
Filipe Manana5ce55552018-10-12 10:03:55 +01004521 if (trans->chunk_bytes_reserved >= (u64)SZ_2M)
Nikolay Borisov6c686b32018-02-07 17:55:40 +02004522 btrfs_create_pending_block_groups(trans);
Filipe Manana5ce55552018-10-12 10:03:55 +01004523
Josef Bacik0f9dd462008-09-23 13:14:11 -04004524 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004525}
4526
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004527static int can_overcommit(struct btrfs_fs_info *fs_info,
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004528 struct btrfs_space_info *space_info, u64 bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004529 enum btrfs_reserve_flush_enum flush,
4530 bool system_chunk)
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004531{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004532 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04004533 u64 profile;
Miao Xie3c76cd82013-04-25 10:12:38 +00004534 u64 space_size;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004535 u64 avail;
4536 u64 used;
David Sterba46df06b2018-07-13 20:46:30 +02004537 int factor;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004538
Josef Bacik957780e2016-05-17 13:30:55 -04004539 /* Don't overcommit when in mixed mode. */
4540 if (space_info->flags & BTRFS_BLOCK_GROUP_DATA)
4541 return 0;
4542
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004543 if (system_chunk)
4544 profile = btrfs_system_alloc_profile(fs_info);
4545 else
4546 profile = btrfs_metadata_alloc_profile(fs_info);
4547
Liu Bo41361352017-02-13 15:42:21 -08004548 used = btrfs_space_info_used(space_info, false);
Josef Bacik96f1bb52013-01-30 17:02:51 -05004549
Josef Bacik96f1bb52013-01-30 17:02:51 -05004550 /*
4551 * We only want to allow over committing if we have lots of actual space
4552 * free, but if we don't have enough space to handle the global reserve
4553 * space then we could end up having a real enospc problem when trying
4554 * to allocate a chunk or some other such important allocation.
4555 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004556 spin_lock(&global_rsv->lock);
4557 space_size = calc_global_rsv_need_space(global_rsv);
4558 spin_unlock(&global_rsv->lock);
4559 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004560 return 0;
4561
4562 used += space_info->bytes_may_use;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004563
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004564 avail = atomic64_read(&fs_info->free_chunk_space);
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004565
4566 /*
4567 * If we have dup, raid1 or raid10 then only half of the free
Andrea Gelmini52042d82018-11-28 12:05:13 +01004568 * space is actually usable. For raid56, the space info used
David Woodhouse53b381b2013-01-29 18:40:14 -05004569 * doesn't include the parity drive, so we don't have to
4570 * change the math
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004571 */
David Sterba46df06b2018-07-13 20:46:30 +02004572 factor = btrfs_bg_type_to_factor(profile);
4573 avail = div_u64(avail, factor);
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004574
4575 /*
Miao Xie561c2942012-10-16 11:32:18 +00004576 * If we aren't flushing all things, let us overcommit up to
4577 * 1/2th of the space. If we can flush, don't let us overcommit
4578 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004579 */
Miao Xie08e007d2012-10-16 11:33:38 +00004580 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004581 avail >>= 3;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004582 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004583 avail >>= 1;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004584
Josef Bacik14575ae2013-09-17 10:48:00 -04004585 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004586 return 1;
4587 return 0;
4588}
4589
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004590static void btrfs_writeback_inodes_sb_nr(struct btrfs_fs_info *fs_info,
Miao Xie6c255e62014-03-06 13:55:01 +08004591 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004592{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004593 struct super_block *sb = fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004594
Josef Bacik925a6ef2013-06-20 12:31:27 -04004595 if (down_read_trylock(&sb->s_umount)) {
4596 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4597 up_read(&sb->s_umount);
4598 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004599 /*
4600 * We needn't worry the filesystem going from r/w to r/o though
4601 * we don't acquire ->s_umount mutex, because the filesystem
4602 * should guarantee the delalloc inodes list be empty after
4603 * the filesystem is readonly(all dirty pages are written to
4604 * the disk).
4605 */
Nikolay Borisov82b3e532018-04-23 10:54:13 +03004606 btrfs_start_delalloc_roots(fs_info, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004607 if (!current->journal_info)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004608 btrfs_wait_ordered_roots(fs_info, nr_items, 0, (u64)-1);
Miao Xieda633a42012-12-20 11:19:09 +00004609 }
4610}
4611
Chris Mason6374e57a2017-06-23 09:48:21 -07004612static inline u64 calc_reclaim_items_nr(struct btrfs_fs_info *fs_info,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004613 u64 to_reclaim)
Miao Xie18cd8ea2013-11-04 23:13:22 +08004614{
4615 u64 bytes;
Chris Mason6374e57a2017-06-23 09:48:21 -07004616 u64 nr;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004617
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004618 bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004619 nr = div64_u64(to_reclaim, bytes);
Miao Xie18cd8ea2013-11-04 23:13:22 +08004620 if (!nr)
4621 nr = 1;
4622 return nr;
4623}
4624
Byongho Leeee221842015-12-15 01:42:10 +09004625#define EXTENT_SIZE_PER_ITEM SZ_256K
Miao Xiec61a16a2013-11-04 23:13:23 +08004626
Yan, Zheng5da9d012010-05-16 10:46:25 -04004627/*
4628 * shrink metadata reservation for delalloc
4629 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004630static void shrink_delalloc(struct btrfs_fs_info *fs_info, u64 to_reclaim,
4631 u64 orig, bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004632{
Josef Bacik0019f102010-10-15 15:18:40 -04004633 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004634 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004635 u64 delalloc_bytes;
Josef Bacik4297ff82019-04-10 15:56:09 -04004636 u64 dio_bytes;
Nikolay Borisov420829d2019-01-03 10:50:05 +02004637 u64 async_pages;
Chris Mason6374e57a2017-06-23 09:48:21 -07004638 u64 items;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004639 long time_left;
Miao Xied3ee29e32013-11-04 23:13:20 +08004640 unsigned long nr_pages;
4641 int loops;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004642
Miao Xiec61a16a2013-11-04 23:13:23 +08004643 /* Calc the number of the pages we need flush for space reservation */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004644 items = calc_reclaim_items_nr(fs_info, to_reclaim);
Chris Mason6374e57a2017-06-23 09:48:21 -07004645 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004646
Josef Bacik663350a2011-11-03 22:54:25 -04004647 trans = (struct btrfs_trans_handle *)current->journal_info;
Josef Bacik69fe2d72017-10-19 14:15:57 -04004648 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Chris Masonbf9022e2010-10-26 13:40:45 -04004649
Miao Xie963d6782013-01-29 10:10:51 +00004650 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004651 &fs_info->delalloc_bytes);
Josef Bacik4297ff82019-04-10 15:56:09 -04004652 dio_bytes = percpu_counter_sum_positive(&fs_info->dio_bytes);
4653 if (delalloc_bytes == 0 && dio_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004654 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004655 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004656 if (wait_ordered)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004657 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004658 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004659 }
4660
Josef Bacik4297ff82019-04-10 15:56:09 -04004661 /*
4662 * If we are doing more ordered than delalloc we need to just wait on
4663 * ordered extents, otherwise we'll waste time trying to flush delalloc
4664 * that likely won't give us the space back we need.
4665 */
4666 if (dio_bytes > delalloc_bytes)
4667 wait_ordered = true;
4668
Miao Xied3ee29e32013-11-04 23:13:20 +08004669 loops = 0;
Josef Bacik4297ff82019-04-10 15:56:09 -04004670 while ((delalloc_bytes || dio_bytes) && loops < 3) {
Nikolay Borisov420829d2019-01-03 10:50:05 +02004671 nr_pages = min(delalloc_bytes, to_reclaim) >> PAGE_SHIFT;
4672
Josef Bacikdea31f52012-09-06 16:47:00 -04004673 /*
Nikolay Borisov420829d2019-01-03 10:50:05 +02004674 * Triggers inode writeback for up to nr_pages. This will invoke
4675 * ->writepages callback and trigger delalloc filling
4676 * (btrfs_run_delalloc_range()).
Josef Bacikdea31f52012-09-06 16:47:00 -04004677 */
Nikolay Borisov420829d2019-01-03 10:50:05 +02004678 btrfs_writeback_inodes_sb_nr(fs_info, nr_pages, items);
4679
4680 /*
4681 * We need to wait for the compressed pages to start before
4682 * we continue.
4683 */
4684 async_pages = atomic_read(&fs_info->async_delalloc_pages);
4685 if (!async_pages)
Miao Xie9f3a0742013-11-04 23:13:24 +08004686 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004687
Nikolay Borisov420829d2019-01-03 10:50:05 +02004688 /*
4689 * Calculate how many compressed pages we want to be written
4690 * before we continue. I.e if there are more async pages than we
4691 * require wait_event will wait until nr_pages are written.
4692 */
4693 if (async_pages <= nr_pages)
4694 async_pages = 0;
Miao Xie9f3a0742013-11-04 23:13:24 +08004695 else
Nikolay Borisov420829d2019-01-03 10:50:05 +02004696 async_pages -= nr_pages;
Miao Xie9f3a0742013-11-04 23:13:24 +08004697
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004698 wait_event(fs_info->async_submit_wait,
4699 atomic_read(&fs_info->async_delalloc_pages) <=
Nikolay Borisov420829d2019-01-03 10:50:05 +02004700 (int)async_pages);
Miao Xie9f3a0742013-11-04 23:13:24 +08004701skip_async:
Josef Bacik0019f102010-10-15 15:18:40 -04004702 spin_lock(&space_info->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04004703 if (list_empty(&space_info->tickets) &&
4704 list_empty(&space_info->priority_tickets)) {
4705 spin_unlock(&space_info->lock);
4706 break;
4707 }
Josef Bacik0019f102010-10-15 15:18:40 -04004708 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004709
Chris Mason36e39c42011-03-12 07:08:42 -05004710 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004711 if (wait_ordered && !trans) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004712 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf104d042011-10-14 13:56:58 -04004713 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004714 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004715 if (time_left)
4716 break;
4717 }
Miao Xie963d6782013-01-29 10:10:51 +00004718 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004719 &fs_info->delalloc_bytes);
Josef Bacik4297ff82019-04-10 15:56:09 -04004720 dio_bytes = percpu_counter_sum_positive(&fs_info->dio_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004721 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004722}
4723
Josef Bacik996478c2017-08-22 16:00:39 -04004724struct reserve_ticket {
Josef Bacikf91587e2018-11-21 14:03:10 -05004725 u64 orig_bytes;
Josef Bacik996478c2017-08-22 16:00:39 -04004726 u64 bytes;
4727 int error;
4728 struct list_head list;
4729 wait_queue_head_t wait;
4730};
4731
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004732/**
Josef Bacik663350a2011-11-03 22:54:25 -04004733 * maybe_commit_transaction - possibly commit the transaction if its ok to
4734 * @root - the root we're allocating for
4735 * @bytes - the number of bytes we want to reserve
4736 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004737 *
Josef Bacik663350a2011-11-03 22:54:25 -04004738 * This will check to make sure that committing the transaction will actually
4739 * get us somewhere and then commit the transaction if it does. Otherwise it
4740 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004741 */
Jeff Mahoney0c9ab342017-02-15 16:28:28 -05004742static int may_commit_transaction(struct btrfs_fs_info *fs_info,
Josef Bacik996478c2017-08-22 16:00:39 -04004743 struct btrfs_space_info *space_info)
Josef Bacik663350a2011-11-03 22:54:25 -04004744{
Josef Bacik996478c2017-08-22 16:00:39 -04004745 struct reserve_ticket *ticket = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004746 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_block_rsv;
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004747 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
Josef Bacik663350a2011-11-03 22:54:25 -04004748 struct btrfs_trans_handle *trans;
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004749 u64 bytes_needed;
4750 u64 reclaim_bytes = 0;
Josef Bacik663350a2011-11-03 22:54:25 -04004751
4752 trans = (struct btrfs_trans_handle *)current->journal_info;
4753 if (trans)
4754 return -EAGAIN;
4755
Josef Bacik996478c2017-08-22 16:00:39 -04004756 spin_lock(&space_info->lock);
4757 if (!list_empty(&space_info->priority_tickets))
4758 ticket = list_first_entry(&space_info->priority_tickets,
4759 struct reserve_ticket, list);
4760 else if (!list_empty(&space_info->tickets))
4761 ticket = list_first_entry(&space_info->tickets,
4762 struct reserve_ticket, list);
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004763 bytes_needed = (ticket) ? ticket->bytes : 0;
Josef Bacik996478c2017-08-22 16:00:39 -04004764 spin_unlock(&space_info->lock);
4765
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004766 if (!bytes_needed)
Josef Bacik996478c2017-08-22 16:00:39 -04004767 return 0;
Josef Bacik663350a2011-11-03 22:54:25 -04004768
Josef Bacikd89dbef2018-11-21 14:03:06 -05004769 trans = btrfs_join_transaction(fs_info->extent_root);
4770 if (IS_ERR(trans))
4771 return PTR_ERR(trans);
4772
4773 /*
4774 * See if there is enough pinned space to make this reservation, or if
4775 * we have block groups that are going to be freed, allowing us to
4776 * possibly do a chunk allocation the next loop through.
4777 */
4778 if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags) ||
4779 __percpu_counter_compare(&space_info->total_bytes_pinned,
4780 bytes_needed,
4781 BTRFS_TOTAL_BYTES_PINNED_BATCH) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004782 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004783
4784 /*
4785 * See if there is some space in the delayed insertion reservation for
4786 * this reservation.
4787 */
4788 if (space_info != delayed_rsv->space_info)
Josef Bacikd89dbef2018-11-21 14:03:06 -05004789 goto enospc;
Josef Bacik663350a2011-11-03 22:54:25 -04004790
4791 spin_lock(&delayed_rsv->lock);
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004792 reclaim_bytes += delayed_rsv->reserved;
Nikolay Borisov057aac32017-11-07 11:22:54 +02004793 spin_unlock(&delayed_rsv->lock);
4794
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004795 spin_lock(&delayed_refs_rsv->lock);
4796 reclaim_bytes += delayed_refs_rsv->reserved;
4797 spin_unlock(&delayed_refs_rsv->lock);
4798 if (reclaim_bytes >= bytes_needed)
4799 goto commit;
4800 bytes_needed -= reclaim_bytes;
4801
Ethan Liendec59fa2018-07-13 16:50:42 +08004802 if (__percpu_counter_compare(&space_info->total_bytes_pinned,
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004803 bytes_needed,
Josef Bacikd89dbef2018-11-21 14:03:06 -05004804 BTRFS_TOTAL_BYTES_PINNED_BATCH) < 0)
4805 goto enospc;
Josef Bacik663350a2011-11-03 22:54:25 -04004806
4807commit:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004808 return btrfs_commit_transaction(trans);
Josef Bacikd89dbef2018-11-21 14:03:06 -05004809enospc:
4810 btrfs_end_transaction(trans);
4811 return -ENOSPC;
Josef Bacik663350a2011-11-03 22:54:25 -04004812}
4813
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03004814/*
4815 * Try to flush some data based on policy set by @state. This is only advisory
4816 * and may fail for various reasons. The caller is supposed to examine the
4817 * state of @space_info to detect the outcome.
4818 */
4819static void flush_space(struct btrfs_fs_info *fs_info,
Josef Bacik96c3f432012-06-21 14:05:49 -04004820 struct btrfs_space_info *space_info, u64 num_bytes,
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004821 int state)
Josef Bacik96c3f432012-06-21 14:05:49 -04004822{
Jeff Mahoneya9b33112017-05-17 11:38:34 -04004823 struct btrfs_root *root = fs_info->extent_root;
Josef Bacik96c3f432012-06-21 14:05:49 -04004824 struct btrfs_trans_handle *trans;
4825 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004826 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004827
4828 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004829 case FLUSH_DELAYED_ITEMS_NR:
4830 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004831 if (state == FLUSH_DELAYED_ITEMS_NR)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004832 nr = calc_reclaim_items_nr(fs_info, num_bytes) * 2;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004833 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004834 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004835
Josef Bacik96c3f432012-06-21 14:05:49 -04004836 trans = btrfs_join_transaction(root);
4837 if (IS_ERR(trans)) {
4838 ret = PTR_ERR(trans);
4839 break;
4840 }
Nikolay Borisove5c304e62018-02-07 17:55:43 +02004841 ret = btrfs_run_delayed_items_nr(trans, nr);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004842 btrfs_end_transaction(trans);
Josef Bacik96c3f432012-06-21 14:05:49 -04004843 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004844 case FLUSH_DELALLOC:
4845 case FLUSH_DELALLOC_WAIT:
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004846 shrink_delalloc(fs_info, num_bytes * 2, num_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004847 state == FLUSH_DELALLOC_WAIT);
4848 break;
Josef Bacik413df722018-12-03 10:20:35 -05004849 case FLUSH_DELAYED_REFS_NR:
4850 case FLUSH_DELAYED_REFS:
4851 trans = btrfs_join_transaction(root);
4852 if (IS_ERR(trans)) {
4853 ret = PTR_ERR(trans);
4854 break;
4855 }
4856 if (state == FLUSH_DELAYED_REFS_NR)
4857 nr = calc_reclaim_items_nr(fs_info, num_bytes);
4858 else
4859 nr = 0;
4860 btrfs_run_delayed_refs(trans, nr);
4861 btrfs_end_transaction(trans);
4862 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004863 case ALLOC_CHUNK:
Josef Bacik450114f2018-11-21 14:03:08 -05004864 case ALLOC_CHUNK_FORCE:
Josef Bacikea658ba2012-09-11 16:57:25 -04004865 trans = btrfs_join_transaction(root);
4866 if (IS_ERR(trans)) {
4867 ret = PTR_ERR(trans);
4868 break;
4869 }
Nikolay Borisov01458822018-06-20 15:49:05 +03004870 ret = do_chunk_alloc(trans,
Jeff Mahoney1b868262017-05-17 11:38:35 -04004871 btrfs_metadata_alloc_profile(fs_info),
Josef Bacik450114f2018-11-21 14:03:08 -05004872 (state == ALLOC_CHUNK) ?
4873 CHUNK_ALLOC_NO_FORCE : CHUNK_ALLOC_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004874 btrfs_end_transaction(trans);
Alex Lyakaseecba892015-12-06 12:32:31 +02004875 if (ret > 0 || ret == -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04004876 ret = 0;
4877 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004878 case COMMIT_TRANS:
Josef Bacik3ec9a4c2019-01-11 10:21:01 -05004879 /*
4880 * If we have pending delayed iputs then we could free up a
4881 * bunch of pinned space, so make sure we run the iputs before
4882 * we do our pinned bytes check below.
4883 */
Josef Bacik3ec9a4c2019-01-11 10:21:01 -05004884 btrfs_run_delayed_iputs(fs_info);
Josef Bacik034f7842018-12-03 11:06:52 -05004885 btrfs_wait_on_delayed_iputs(fs_info);
Josef Bacik3ec9a4c2019-01-11 10:21:01 -05004886
Josef Bacik996478c2017-08-22 16:00:39 -04004887 ret = may_commit_transaction(fs_info, space_info);
Josef Bacik96c3f432012-06-21 14:05:49 -04004888 break;
4889 default:
4890 ret = -ENOSPC;
4891 break;
4892 }
4893
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004894 trace_btrfs_flush_space(fs_info, space_info->flags, num_bytes, state,
4895 ret);
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03004896 return;
Josef Bacik96c3f432012-06-21 14:05:49 -04004897}
Miao Xie21c7e752014-05-13 17:29:04 -07004898
4899static inline u64
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004900btrfs_calc_reclaim_metadata_size(struct btrfs_fs_info *fs_info,
4901 struct btrfs_space_info *space_info,
4902 bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07004903{
Josef Bacik957780e2016-05-17 13:30:55 -04004904 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004905 u64 used;
4906 u64 expected;
Josef Bacik957780e2016-05-17 13:30:55 -04004907 u64 to_reclaim = 0;
Miao Xie21c7e752014-05-13 17:29:04 -07004908
Josef Bacik957780e2016-05-17 13:30:55 -04004909 list_for_each_entry(ticket, &space_info->tickets, list)
4910 to_reclaim += ticket->bytes;
4911 list_for_each_entry(ticket, &space_info->priority_tickets, list)
4912 to_reclaim += ticket->bytes;
4913 if (to_reclaim)
4914 return to_reclaim;
Miao Xie21c7e752014-05-13 17:29:04 -07004915
Wang Xiaoguange0af2482016-08-31 19:46:16 +08004916 to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004917 if (can_overcommit(fs_info, space_info, to_reclaim,
4918 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Wang Xiaoguange0af2482016-08-31 19:46:16 +08004919 return 0;
4920
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03004921 used = btrfs_space_info_used(space_info, true);
4922
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004923 if (can_overcommit(fs_info, space_info, SZ_1M,
4924 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Miao Xie21c7e752014-05-13 17:29:04 -07004925 expected = div_factor_fine(space_info->total_bytes, 95);
4926 else
4927 expected = div_factor_fine(space_info->total_bytes, 90);
4928
4929 if (used > expected)
4930 to_reclaim = used - expected;
4931 else
4932 to_reclaim = 0;
4933 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4934 space_info->bytes_reserved);
Miao Xie21c7e752014-05-13 17:29:04 -07004935 return to_reclaim;
4936}
4937
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004938static inline int need_do_async_reclaim(struct btrfs_fs_info *fs_info,
4939 struct btrfs_space_info *space_info,
4940 u64 used, bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07004941{
Josef Bacik365c5312015-02-18 13:58:15 -08004942 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
4943
4944 /* If we're just plain full then async reclaim just slows us down. */
Josef Bacikbaee8792016-01-26 09:35:38 -05004945 if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh)
Josef Bacik365c5312015-02-18 13:58:15 -08004946 return 0;
4947
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004948 if (!btrfs_calc_reclaim_metadata_size(fs_info, space_info,
4949 system_chunk))
Liu Bo25ce4592014-09-10 12:58:50 +08004950 return 0;
Liu Bo25ce4592014-09-10 12:58:50 +08004951
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004952 return (used >= thresh && !btrfs_fs_closing(fs_info) &&
4953 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
Miao Xie21c7e752014-05-13 17:29:04 -07004954}
4955
Josef Bacikf91587e2018-11-21 14:03:10 -05004956static bool wake_all_tickets(struct list_head *head)
Miao Xie21c7e752014-05-13 17:29:04 -07004957{
Josef Bacik957780e2016-05-17 13:30:55 -04004958 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004959
Josef Bacik957780e2016-05-17 13:30:55 -04004960 while (!list_empty(head)) {
4961 ticket = list_first_entry(head, struct reserve_ticket, list);
4962 list_del_init(&ticket->list);
4963 ticket->error = -ENOSPC;
4964 wake_up(&ticket->wait);
Josef Bacikf91587e2018-11-21 14:03:10 -05004965 if (ticket->bytes != ticket->orig_bytes)
4966 return true;
Miao Xie21c7e752014-05-13 17:29:04 -07004967 }
Josef Bacikf91587e2018-11-21 14:03:10 -05004968 return false;
Miao Xie21c7e752014-05-13 17:29:04 -07004969}
4970
Josef Bacik957780e2016-05-17 13:30:55 -04004971/*
4972 * This is for normal flushers, we can wait all goddamned day if we want to. We
4973 * will loop and continuously try to flush as long as we are making progress.
4974 * We count progress as clearing off tickets each time we have to loop.
4975 */
Miao Xie21c7e752014-05-13 17:29:04 -07004976static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4977{
4978 struct btrfs_fs_info *fs_info;
4979 struct btrfs_space_info *space_info;
4980 u64 to_reclaim;
4981 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04004982 int commit_cycles = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08004983 u64 last_tickets_id;
Miao Xie21c7e752014-05-13 17:29:04 -07004984
4985 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4986 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4987
Josef Bacik957780e2016-05-17 13:30:55 -04004988 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004989 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
4990 false);
Josef Bacik957780e2016-05-17 13:30:55 -04004991 if (!to_reclaim) {
4992 space_info->flush = 0;
4993 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004994 return;
Josef Bacik957780e2016-05-17 13:30:55 -04004995 }
Wang Xiaoguangce129652016-09-02 10:58:46 +08004996 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04004997 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07004998
4999 flush_state = FLUSH_DELAYED_ITEMS_NR;
5000 do {
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03005001 flush_space(fs_info, space_info, to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04005002 spin_lock(&space_info->lock);
5003 if (list_empty(&space_info->tickets)) {
5004 space_info->flush = 0;
5005 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005006 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005007 }
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005008 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info,
5009 space_info,
5010 false);
Wang Xiaoguangce129652016-09-02 10:58:46 +08005011 if (last_tickets_id == space_info->tickets_id) {
Josef Bacik957780e2016-05-17 13:30:55 -04005012 flush_state++;
5013 } else {
Wang Xiaoguangce129652016-09-02 10:58:46 +08005014 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005015 flush_state = FLUSH_DELAYED_ITEMS_NR;
5016 if (commit_cycles)
5017 commit_cycles--;
5018 }
5019
Josef Bacik450114f2018-11-21 14:03:08 -05005020 /*
5021 * We don't want to force a chunk allocation until we've tried
5022 * pretty hard to reclaim space. Think of the case where we
5023 * freed up a bunch of space and so have a lot of pinned space
5024 * to reclaim. We would rather use that than possibly create a
5025 * underutilized metadata chunk. So if this is our first run
5026 * through the flushing state machine skip ALLOC_CHUNK_FORCE and
5027 * commit the transaction. If nothing has changed the next go
5028 * around then we can force a chunk allocation.
5029 */
5030 if (flush_state == ALLOC_CHUNK_FORCE && !commit_cycles)
5031 flush_state++;
5032
Josef Bacik957780e2016-05-17 13:30:55 -04005033 if (flush_state > COMMIT_TRANS) {
5034 commit_cycles++;
5035 if (commit_cycles > 2) {
Josef Bacikf91587e2018-11-21 14:03:10 -05005036 if (wake_all_tickets(&space_info->tickets)) {
5037 flush_state = FLUSH_DELAYED_ITEMS_NR;
5038 commit_cycles--;
5039 } else {
5040 space_info->flush = 0;
5041 }
Josef Bacik957780e2016-05-17 13:30:55 -04005042 } else {
5043 flush_state = FLUSH_DELAYED_ITEMS_NR;
5044 }
5045 }
5046 spin_unlock(&space_info->lock);
5047 } while (flush_state <= COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07005048}
5049
5050void btrfs_init_async_reclaim_work(struct work_struct *work)
5051{
5052 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
5053}
5054
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005055static const enum btrfs_flush_state priority_flush_states[] = {
5056 FLUSH_DELAYED_ITEMS_NR,
5057 FLUSH_DELAYED_ITEMS,
5058 ALLOC_CHUNK,
5059};
5060
Josef Bacik957780e2016-05-17 13:30:55 -04005061static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info,
5062 struct btrfs_space_info *space_info,
5063 struct reserve_ticket *ticket)
5064{
5065 u64 to_reclaim;
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005066 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04005067
5068 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005069 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5070 false);
Josef Bacik957780e2016-05-17 13:30:55 -04005071 if (!to_reclaim) {
5072 spin_unlock(&space_info->lock);
5073 return;
5074 }
5075 spin_unlock(&space_info->lock);
5076
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005077 flush_state = 0;
Josef Bacik957780e2016-05-17 13:30:55 -04005078 do {
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005079 flush_space(fs_info, space_info, to_reclaim,
5080 priority_flush_states[flush_state]);
Josef Bacik957780e2016-05-17 13:30:55 -04005081 flush_state++;
5082 spin_lock(&space_info->lock);
5083 if (ticket->bytes == 0) {
5084 spin_unlock(&space_info->lock);
5085 return;
5086 }
5087 spin_unlock(&space_info->lock);
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005088 } while (flush_state < ARRAY_SIZE(priority_flush_states));
Josef Bacik957780e2016-05-17 13:30:55 -04005089}
5090
5091static int wait_reserve_ticket(struct btrfs_fs_info *fs_info,
5092 struct btrfs_space_info *space_info,
Josef Bacikf91587e2018-11-21 14:03:10 -05005093 struct reserve_ticket *ticket)
Josef Bacik957780e2016-05-17 13:30:55 -04005094
5095{
5096 DEFINE_WAIT(wait);
Josef Bacikf91587e2018-11-21 14:03:10 -05005097 u64 reclaim_bytes = 0;
Josef Bacik957780e2016-05-17 13:30:55 -04005098 int ret = 0;
5099
5100 spin_lock(&space_info->lock);
5101 while (ticket->bytes > 0 && ticket->error == 0) {
5102 ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE);
5103 if (ret) {
5104 ret = -EINTR;
5105 break;
5106 }
5107 spin_unlock(&space_info->lock);
5108
5109 schedule();
5110
5111 finish_wait(&ticket->wait, &wait);
5112 spin_lock(&space_info->lock);
5113 }
5114 if (!ret)
5115 ret = ticket->error;
5116 if (!list_empty(&ticket->list))
5117 list_del_init(&ticket->list);
Josef Bacikf91587e2018-11-21 14:03:10 -05005118 if (ticket->bytes && ticket->bytes < ticket->orig_bytes)
5119 reclaim_bytes = ticket->orig_bytes - ticket->bytes;
Josef Bacik957780e2016-05-17 13:30:55 -04005120 spin_unlock(&space_info->lock);
5121
Josef Bacikf91587e2018-11-21 14:03:10 -05005122 if (reclaim_bytes)
5123 space_info_add_old_bytes(fs_info, space_info, reclaim_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005124 return ret;
5125}
5126
Josef Bacik663350a2011-11-03 22:54:25 -04005127/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005128 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5129 * @root - the root we're allocating for
Josef Bacik957780e2016-05-17 13:30:55 -04005130 * @space_info - the space info we want to allocate from
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005131 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04005132 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005133 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04005134 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005135 * with the block_rsv. If there is not enough space it will make an attempt to
5136 * flush out space to make room. It will do this by flushing delalloc if
5137 * possible or committing the transaction. If flush is 0 then no attempts to
5138 * regain reservations will be made and this will fail if there is not enough
5139 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005140 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005141static int __reserve_metadata_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik957780e2016-05-17 13:30:55 -04005142 struct btrfs_space_info *space_info,
5143 u64 orig_bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005144 enum btrfs_reserve_flush_enum flush,
5145 bool system_chunk)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005146{
Josef Bacik957780e2016-05-17 13:30:55 -04005147 struct reserve_ticket ticket;
Josef Bacik2bf64752011-09-26 17:12:22 -04005148 u64 used;
Josef Bacikf91587e2018-11-21 14:03:10 -05005149 u64 reclaim_bytes = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005150 int ret = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005151
Josef Bacik957780e2016-05-17 13:30:55 -04005152 ASSERT(orig_bytes);
Josef Bacik8ca17f02016-05-27 13:24:13 -04005153 ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL);
5154
Yan, Zhengf0486c62010-05-16 10:46:25 -04005155 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04005156 ret = -ENOSPC;
Liu Bo41361352017-02-13 15:42:21 -08005157 used = btrfs_space_info_used(space_info, true);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005158
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005159 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005160 * If we have enough space then hooray, make our reservation and carry
5161 * on. If not see if we can overcommit, and if we can, hooray carry on.
5162 * If not things get more complicated.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005163 */
Josef Bacik957780e2016-05-17 13:30:55 -04005164 if (used + orig_bytes <= space_info->total_bytes) {
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005165 update_bytes_may_use(space_info, orig_bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005166 trace_btrfs_space_reservation(fs_info, "space_info",
5167 space_info->flags, orig_bytes, 1);
Josef Bacik957780e2016-05-17 13:30:55 -04005168 ret = 0;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005169 } else if (can_overcommit(fs_info, space_info, orig_bytes, flush,
5170 system_chunk)) {
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005171 update_bytes_may_use(space_info, orig_bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005172 trace_btrfs_space_reservation(fs_info, "space_info",
5173 space_info->flags, orig_bytes, 1);
Josef Bacik44734ed2012-09-28 16:04:19 -04005174 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04005175 }
5176
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005177 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005178 * If we couldn't make a reservation then setup our reservation ticket
5179 * and kick the async worker if it's not already running.
Miao Xie08e007d2012-10-16 11:33:38 +00005180 *
Josef Bacik957780e2016-05-17 13:30:55 -04005181 * If we are a priority flusher then we just need to add our ticket to
5182 * the list and we will do our own flushing further down.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005183 */
Josef Bacik72bcd992012-12-18 15:16:34 -05005184 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacikf91587e2018-11-21 14:03:10 -05005185 ticket.orig_bytes = orig_bytes;
Josef Bacik957780e2016-05-17 13:30:55 -04005186 ticket.bytes = orig_bytes;
5187 ticket.error = 0;
5188 init_waitqueue_head(&ticket.wait);
5189 if (flush == BTRFS_RESERVE_FLUSH_ALL) {
5190 list_add_tail(&ticket.list, &space_info->tickets);
5191 if (!space_info->flush) {
5192 space_info->flush = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005193 trace_btrfs_trigger_flush(fs_info,
Josef Bacikf376df22016-03-25 13:25:56 -04005194 space_info->flags,
5195 orig_bytes, flush,
5196 "enospc");
Josef Bacik957780e2016-05-17 13:30:55 -04005197 queue_work(system_unbound_wq,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005198 &fs_info->async_reclaim_work);
Josef Bacik957780e2016-05-17 13:30:55 -04005199 }
5200 } else {
5201 list_add_tail(&ticket.list,
5202 &space_info->priority_tickets);
5203 }
Miao Xie21c7e752014-05-13 17:29:04 -07005204 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
5205 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04005206 /*
5207 * We will do the space reservation dance during log replay,
5208 * which means we won't have fs_info->fs_root set, so don't do
5209 * the async reclaim as we will panic.
5210 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005211 if (!test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags) &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005212 need_do_async_reclaim(fs_info, space_info,
5213 used, system_chunk) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005214 !work_busy(&fs_info->async_reclaim_work)) {
5215 trace_btrfs_trigger_flush(fs_info, space_info->flags,
5216 orig_bytes, flush, "preempt");
Miao Xie21c7e752014-05-13 17:29:04 -07005217 queue_work(system_unbound_wq,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005218 &fs_info->async_reclaim_work);
Josef Bacikf376df22016-03-25 13:25:56 -04005219 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005220 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005221 spin_unlock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00005222 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik957780e2016-05-17 13:30:55 -04005223 return ret;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005224
Josef Bacik957780e2016-05-17 13:30:55 -04005225 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacikf91587e2018-11-21 14:03:10 -05005226 return wait_reserve_ticket(fs_info, space_info, &ticket);
Miao Xie08e007d2012-10-16 11:33:38 +00005227
Josef Bacik957780e2016-05-17 13:30:55 -04005228 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005229 priority_reclaim_metadata_space(fs_info, space_info, &ticket);
Josef Bacik957780e2016-05-17 13:30:55 -04005230 spin_lock(&space_info->lock);
5231 if (ticket.bytes) {
Josef Bacikf91587e2018-11-21 14:03:10 -05005232 if (ticket.bytes < orig_bytes)
5233 reclaim_bytes = orig_bytes - ticket.bytes;
Josef Bacik957780e2016-05-17 13:30:55 -04005234 list_del_init(&ticket.list);
5235 ret = -ENOSPC;
5236 }
5237 spin_unlock(&space_info->lock);
Josef Bacikf91587e2018-11-21 14:03:10 -05005238
5239 if (reclaim_bytes)
5240 space_info_add_old_bytes(fs_info, space_info, reclaim_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005241 ASSERT(list_empty(&ticket.list));
5242 return ret;
5243}
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005244
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005245/**
5246 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5247 * @root - the root we're allocating for
5248 * @block_rsv - the block_rsv we're allocating for
5249 * @orig_bytes - the number of bytes we want
5250 * @flush - whether or not we can flush to make our reservation
5251 *
Andrea Gelmini52042d82018-11-28 12:05:13 +01005252 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005253 * with the block_rsv. If there is not enough space it will make an attempt to
5254 * flush out space to make room. It will do this by flushing delalloc if
5255 * possible or committing the transaction. If flush is 0 then no attempts to
5256 * regain reservations will be made and this will fail if there is not enough
5257 * space already.
5258 */
5259static int reserve_metadata_bytes(struct btrfs_root *root,
5260 struct btrfs_block_rsv *block_rsv,
5261 u64 orig_bytes,
5262 enum btrfs_reserve_flush_enum flush)
5263{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005264 struct btrfs_fs_info *fs_info = root->fs_info;
5265 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04005266 int ret;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005267 bool system_chunk = (root == fs_info->chunk_root);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005268
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005269 ret = __reserve_metadata_bytes(fs_info, block_rsv->space_info,
5270 orig_bytes, flush, system_chunk);
Josef Bacik5d803662013-02-07 16:06:02 -05005271 if (ret == -ENOSPC &&
5272 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
Josef Bacik5d803662013-02-07 16:06:02 -05005273 if (block_rsv != global_rsv &&
5274 !block_rsv_use_bytes(global_rsv, orig_bytes))
5275 ret = 0;
5276 }
Nikolay Borisov9a3daff2017-12-15 12:05:37 +02005277 if (ret == -ENOSPC) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005278 trace_btrfs_space_reservation(fs_info, "space_info:enospc",
Josef Bacik957780e2016-05-17 13:30:55 -04005279 block_rsv->space_info->flags,
5280 orig_bytes, 1);
Nikolay Borisov9a3daff2017-12-15 12:05:37 +02005281
5282 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG))
5283 dump_space_info(fs_info, block_rsv->space_info,
5284 orig_bytes, 0);
5285 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005286 return ret;
5287}
5288
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005289static struct btrfs_block_rsv *get_block_rsv(
5290 const struct btrfs_trans_handle *trans,
5291 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005292{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005293 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik4c13d752011-08-30 11:31:29 -04005294 struct btrfs_block_rsv *block_rsv = NULL;
5295
Alexandru Moisee9cf4392015-09-09 00:18:50 +00005296 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005297 (root == fs_info->csum_root && trans->adding_csums) ||
5298 (root == fs_info->uuid_root))
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02005299 block_rsv = trans->block_rsv;
5300
Josef Bacik4c13d752011-08-30 11:31:29 -04005301 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005302 block_rsv = root->block_rsv;
5303
5304 if (!block_rsv)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005305 block_rsv = &fs_info->empty_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005306
5307 return block_rsv;
5308}
5309
5310static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
5311 u64 num_bytes)
5312{
5313 int ret = -ENOSPC;
5314 spin_lock(&block_rsv->lock);
5315 if (block_rsv->reserved >= num_bytes) {
5316 block_rsv->reserved -= num_bytes;
5317 if (block_rsv->reserved < block_rsv->size)
5318 block_rsv->full = 0;
5319 ret = 0;
5320 }
5321 spin_unlock(&block_rsv->lock);
5322 return ret;
5323}
5324
5325static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08005326 u64 num_bytes, bool update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005327{
5328 spin_lock(&block_rsv->lock);
5329 block_rsv->reserved += num_bytes;
5330 if (update_size)
5331 block_rsv->size += num_bytes;
5332 else if (block_rsv->reserved >= block_rsv->size)
5333 block_rsv->full = 1;
5334 spin_unlock(&block_rsv->lock);
5335}
5336
Josef Bacikd52be812013-05-29 14:54:47 -04005337int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
5338 struct btrfs_block_rsv *dest, u64 num_bytes,
5339 int min_factor)
5340{
5341 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5342 u64 min_bytes;
5343
5344 if (global_rsv->space_info != dest->space_info)
5345 return -ENOSPC;
5346
5347 spin_lock(&global_rsv->lock);
5348 min_bytes = div_factor(global_rsv->size, min_factor);
5349 if (global_rsv->reserved < min_bytes + num_bytes) {
5350 spin_unlock(&global_rsv->lock);
5351 return -ENOSPC;
5352 }
5353 global_rsv->reserved -= num_bytes;
5354 if (global_rsv->reserved < global_rsv->size)
5355 global_rsv->full = 0;
5356 spin_unlock(&global_rsv->lock);
5357
Lu Fengqi3a584172018-08-04 21:10:55 +08005358 block_rsv_add_bytes(dest, num_bytes, true);
Josef Bacikd52be812013-05-29 14:54:47 -04005359 return 0;
5360}
5361
Josef Bacikba2c4d42018-12-03 10:20:33 -05005362/**
5363 * btrfs_migrate_to_delayed_refs_rsv - transfer bytes to our delayed refs rsv.
5364 * @fs_info - the fs info for our fs.
5365 * @src - the source block rsv to transfer from.
5366 * @num_bytes - the number of bytes to transfer.
5367 *
5368 * This transfers up to the num_bytes amount from the src rsv to the
5369 * delayed_refs_rsv. Any extra bytes are returned to the space info.
5370 */
5371void btrfs_migrate_to_delayed_refs_rsv(struct btrfs_fs_info *fs_info,
5372 struct btrfs_block_rsv *src,
5373 u64 num_bytes)
5374{
5375 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
5376 u64 to_free = 0;
5377
5378 spin_lock(&src->lock);
5379 src->reserved -= num_bytes;
5380 src->size -= num_bytes;
5381 spin_unlock(&src->lock);
5382
5383 spin_lock(&delayed_refs_rsv->lock);
5384 if (delayed_refs_rsv->size > delayed_refs_rsv->reserved) {
5385 u64 delta = delayed_refs_rsv->size -
5386 delayed_refs_rsv->reserved;
5387 if (num_bytes > delta) {
5388 to_free = num_bytes - delta;
5389 num_bytes = delta;
5390 }
5391 } else {
5392 to_free = num_bytes;
5393 num_bytes = 0;
5394 }
5395
5396 if (num_bytes)
5397 delayed_refs_rsv->reserved += num_bytes;
5398 if (delayed_refs_rsv->reserved >= delayed_refs_rsv->size)
5399 delayed_refs_rsv->full = 1;
5400 spin_unlock(&delayed_refs_rsv->lock);
5401
5402 if (num_bytes)
5403 trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
5404 0, num_bytes, 1);
5405 if (to_free)
5406 space_info_add_old_bytes(fs_info, delayed_refs_rsv->space_info,
5407 to_free);
5408}
5409
5410/**
5411 * btrfs_delayed_refs_rsv_refill - refill based on our delayed refs usage.
5412 * @fs_info - the fs_info for our fs.
5413 * @flush - control how we can flush for this reservation.
5414 *
5415 * This will refill the delayed block_rsv up to 1 items size worth of space and
5416 * will return -ENOSPC if we can't make the reservation.
5417 */
5418int btrfs_delayed_refs_rsv_refill(struct btrfs_fs_info *fs_info,
5419 enum btrfs_reserve_flush_enum flush)
5420{
5421 struct btrfs_block_rsv *block_rsv = &fs_info->delayed_refs_rsv;
5422 u64 limit = btrfs_calc_trans_metadata_size(fs_info, 1);
5423 u64 num_bytes = 0;
5424 int ret = -ENOSPC;
5425
5426 spin_lock(&block_rsv->lock);
5427 if (block_rsv->reserved < block_rsv->size) {
5428 num_bytes = block_rsv->size - block_rsv->reserved;
5429 num_bytes = min(num_bytes, limit);
5430 }
5431 spin_unlock(&block_rsv->lock);
5432
5433 if (!num_bytes)
5434 return 0;
5435
5436 ret = reserve_metadata_bytes(fs_info->extent_root, block_rsv,
5437 num_bytes, flush);
5438 if (ret)
5439 return ret;
5440 block_rsv_add_bytes(block_rsv, num_bytes, 0);
5441 trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
5442 0, num_bytes, 1);
5443 return 0;
5444}
5445
Josef Bacik957780e2016-05-17 13:30:55 -04005446/*
5447 * This is for space we already have accounted in space_info->bytes_may_use, so
5448 * basically when we're returning space from block_rsv's.
5449 */
5450static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
5451 struct btrfs_space_info *space_info,
5452 u64 num_bytes)
5453{
5454 struct reserve_ticket *ticket;
5455 struct list_head *head;
5456 u64 used;
5457 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH;
5458 bool check_overcommit = false;
5459
5460 spin_lock(&space_info->lock);
5461 head = &space_info->priority_tickets;
5462
5463 /*
5464 * If we are over our limit then we need to check and see if we can
5465 * overcommit, and if we can't then we just need to free up our space
5466 * and not satisfy any requests.
5467 */
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03005468 used = btrfs_space_info_used(space_info, true);
Josef Bacik957780e2016-05-17 13:30:55 -04005469 if (used - num_bytes >= space_info->total_bytes)
5470 check_overcommit = true;
5471again:
5472 while (!list_empty(head) && num_bytes) {
5473 ticket = list_first_entry(head, struct reserve_ticket,
5474 list);
5475 /*
5476 * We use 0 bytes because this space is already reserved, so
5477 * adding the ticket space would be a double count.
5478 */
5479 if (check_overcommit &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005480 !can_overcommit(fs_info, space_info, 0, flush, false))
Josef Bacik957780e2016-05-17 13:30:55 -04005481 break;
5482 if (num_bytes >= ticket->bytes) {
5483 list_del_init(&ticket->list);
5484 num_bytes -= ticket->bytes;
5485 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005486 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005487 wake_up(&ticket->wait);
5488 } else {
5489 ticket->bytes -= num_bytes;
5490 num_bytes = 0;
5491 }
5492 }
5493
5494 if (num_bytes && head == &space_info->priority_tickets) {
5495 head = &space_info->tickets;
5496 flush = BTRFS_RESERVE_FLUSH_ALL;
5497 goto again;
5498 }
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005499 update_bytes_may_use(space_info, -num_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005500 trace_btrfs_space_reservation(fs_info, "space_info",
5501 space_info->flags, num_bytes, 0);
5502 spin_unlock(&space_info->lock);
5503}
5504
5505/*
5506 * This is for newly allocated space that isn't accounted in
5507 * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent
5508 * we use this helper.
5509 */
5510static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
5511 struct btrfs_space_info *space_info,
5512 u64 num_bytes)
5513{
5514 struct reserve_ticket *ticket;
5515 struct list_head *head = &space_info->priority_tickets;
5516
5517again:
5518 while (!list_empty(head) && num_bytes) {
5519 ticket = list_first_entry(head, struct reserve_ticket,
5520 list);
5521 if (num_bytes >= ticket->bytes) {
5522 trace_btrfs_space_reservation(fs_info, "space_info",
5523 space_info->flags,
5524 ticket->bytes, 1);
5525 list_del_init(&ticket->list);
5526 num_bytes -= ticket->bytes;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005527 update_bytes_may_use(space_info, ticket->bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005528 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005529 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005530 wake_up(&ticket->wait);
5531 } else {
5532 trace_btrfs_space_reservation(fs_info, "space_info",
5533 space_info->flags,
5534 num_bytes, 1);
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005535 update_bytes_may_use(space_info, num_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005536 ticket->bytes -= num_bytes;
5537 num_bytes = 0;
5538 }
5539 }
5540
5541 if (num_bytes && head == &space_info->priority_tickets) {
5542 head = &space_info->tickets;
5543 goto again;
5544 }
5545}
5546
Josef Bacik69fe2d72017-10-19 14:15:57 -04005547static u64 block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005548 struct btrfs_block_rsv *block_rsv,
Qu Wenruoff6bc372017-12-21 13:42:04 +08005549 struct btrfs_block_rsv *dest, u64 num_bytes,
5550 u64 *qgroup_to_release_ret)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005551{
5552 struct btrfs_space_info *space_info = block_rsv->space_info;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005553 u64 qgroup_to_release = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005554 u64 ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005555
5556 spin_lock(&block_rsv->lock);
Qu Wenruoff6bc372017-12-21 13:42:04 +08005557 if (num_bytes == (u64)-1) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005558 num_bytes = block_rsv->size;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005559 qgroup_to_release = block_rsv->qgroup_rsv_size;
5560 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005561 block_rsv->size -= num_bytes;
5562 if (block_rsv->reserved >= block_rsv->size) {
5563 num_bytes = block_rsv->reserved - block_rsv->size;
5564 block_rsv->reserved = block_rsv->size;
5565 block_rsv->full = 1;
5566 } else {
5567 num_bytes = 0;
5568 }
Qu Wenruoff6bc372017-12-21 13:42:04 +08005569 if (block_rsv->qgroup_rsv_reserved >= block_rsv->qgroup_rsv_size) {
5570 qgroup_to_release = block_rsv->qgroup_rsv_reserved -
5571 block_rsv->qgroup_rsv_size;
5572 block_rsv->qgroup_rsv_reserved = block_rsv->qgroup_rsv_size;
5573 } else {
5574 qgroup_to_release = 0;
5575 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005576 spin_unlock(&block_rsv->lock);
5577
Josef Bacik69fe2d72017-10-19 14:15:57 -04005578 ret = num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005579 if (num_bytes > 0) {
5580 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00005581 spin_lock(&dest->lock);
5582 if (!dest->full) {
5583 u64 bytes_to_add;
5584
5585 bytes_to_add = dest->size - dest->reserved;
5586 bytes_to_add = min(num_bytes, bytes_to_add);
5587 dest->reserved += bytes_to_add;
5588 if (dest->reserved >= dest->size)
5589 dest->full = 1;
5590 num_bytes -= bytes_to_add;
5591 }
5592 spin_unlock(&dest->lock);
5593 }
Josef Bacik957780e2016-05-17 13:30:55 -04005594 if (num_bytes)
5595 space_info_add_old_bytes(fs_info, space_info,
5596 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005597 }
Qu Wenruoff6bc372017-12-21 13:42:04 +08005598 if (qgroup_to_release_ret)
5599 *qgroup_to_release_ret = qgroup_to_release;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005600 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005601}
5602
Josef Bacik25d609f2016-03-25 13:25:48 -04005603int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src,
5604 struct btrfs_block_rsv *dst, u64 num_bytes,
Lu Fengqi3a584172018-08-04 21:10:55 +08005605 bool update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005606{
5607 int ret;
5608
5609 ret = block_rsv_use_bytes(src, num_bytes);
5610 if (ret)
5611 return ret;
5612
Josef Bacik25d609f2016-03-25 13:25:48 -04005613 block_rsv_add_bytes(dst, num_bytes, update_size);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005614 return 0;
5615}
5616
Miao Xie66d8f3d2012-09-06 04:02:28 -06005617void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005618{
5619 memset(rsv, 0, sizeof(*rsv));
5620 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06005621 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005622}
5623
Josef Bacik69fe2d72017-10-19 14:15:57 -04005624void btrfs_init_metadata_block_rsv(struct btrfs_fs_info *fs_info,
5625 struct btrfs_block_rsv *rsv,
5626 unsigned short type)
5627{
5628 btrfs_init_block_rsv(rsv, type);
5629 rsv->space_info = __find_space_info(fs_info,
5630 BTRFS_BLOCK_GROUP_METADATA);
5631}
5632
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005633struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_fs_info *fs_info,
Miao Xie66d8f3d2012-09-06 04:02:28 -06005634 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005635{
5636 struct btrfs_block_rsv *block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005637
5638 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
5639 if (!block_rsv)
5640 return NULL;
5641
Josef Bacik69fe2d72017-10-19 14:15:57 -04005642 btrfs_init_metadata_block_rsv(fs_info, block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005643 return block_rsv;
5644}
5645
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005646void btrfs_free_block_rsv(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005647 struct btrfs_block_rsv *rsv)
5648{
Josef Bacik2aaa6652012-08-29 14:27:18 -04005649 if (!rsv)
5650 return;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005651 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Josef Bacikdabdb642011-08-08 12:50:18 -04005652 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005653}
5654
Miao Xie08e007d2012-10-16 11:33:38 +00005655int btrfs_block_rsv_add(struct btrfs_root *root,
5656 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
5657 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005658{
5659 int ret;
5660
5661 if (num_bytes == 0)
5662 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005663
Miao Xie61b520a2011-11-10 20:45:05 -05005664 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Lu Fengqi5a2cb252018-08-04 21:10:56 +08005665 if (!ret)
Lu Fengqi3a584172018-08-04 21:10:55 +08005666 block_rsv_add_bytes(block_rsv, num_bytes, true);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005667
Yan, Zhengf0486c62010-05-16 10:46:25 -04005668 return ret;
5669}
5670
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005671int btrfs_block_rsv_check(struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005672{
5673 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005674 int ret = -ENOSPC;
5675
5676 if (!block_rsv)
5677 return 0;
5678
5679 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04005680 num_bytes = div_factor(block_rsv->size, min_factor);
5681 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005682 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005683 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005684
Josef Bacik36ba0222011-10-18 12:15:48 -04005685 return ret;
5686}
5687
Miao Xie08e007d2012-10-16 11:33:38 +00005688int btrfs_block_rsv_refill(struct btrfs_root *root,
5689 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5690 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04005691{
5692 u64 num_bytes = 0;
5693 int ret = -ENOSPC;
5694
5695 if (!block_rsv)
5696 return 0;
5697
5698 spin_lock(&block_rsv->lock);
5699 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005700 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005701 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005702 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005703 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005704 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005705
Yan, Zhengf0486c62010-05-16 10:46:25 -04005706 if (!ret)
5707 return 0;
5708
Miao Xieaa38a712011-11-18 17:43:00 +08005709 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005710 if (!ret) {
Lu Fengqi3a584172018-08-04 21:10:55 +08005711 block_rsv_add_bytes(block_rsv, num_bytes, false);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005712 return 0;
5713 }
5714
Josef Bacik13553e52011-08-08 13:33:21 -04005715 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005716}
5717
Josef Bacikba2c4d42018-12-03 10:20:33 -05005718static u64 __btrfs_block_rsv_release(struct btrfs_fs_info *fs_info,
5719 struct btrfs_block_rsv *block_rsv,
5720 u64 num_bytes, u64 *qgroup_to_release)
5721{
5722 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5723 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_refs_rsv;
5724 struct btrfs_block_rsv *target = delayed_rsv;
5725
5726 if (target->full || target == block_rsv)
5727 target = global_rsv;
5728
5729 if (block_rsv->space_info != target->space_info)
5730 target = NULL;
5731
5732 return block_rsv_release_bytes(fs_info, block_rsv, target, num_bytes,
5733 qgroup_to_release);
5734}
5735
5736void btrfs_block_rsv_release(struct btrfs_fs_info *fs_info,
5737 struct btrfs_block_rsv *block_rsv,
5738 u64 num_bytes)
5739{
5740 __btrfs_block_rsv_release(fs_info, block_rsv, num_bytes, NULL);
5741}
5742
Josef Bacik69fe2d72017-10-19 14:15:57 -04005743/**
5744 * btrfs_inode_rsv_release - release any excessive reservation.
5745 * @inode - the inode we need to release from.
Qu Wenruo43b18592017-12-12 15:34:32 +08005746 * @qgroup_free - free or convert qgroup meta.
5747 * Unlike normal operation, qgroup meta reservation needs to know if we are
5748 * freeing qgroup reservation or just converting it into per-trans. Normally
5749 * @qgroup_free is true for error handling, and false for normal release.
Josef Bacik69fe2d72017-10-19 14:15:57 -04005750 *
5751 * This is the same as btrfs_block_rsv_release, except that it handles the
5752 * tracepoint for the reservation.
5753 */
Qu Wenruo43b18592017-12-12 15:34:32 +08005754static void btrfs_inode_rsv_release(struct btrfs_inode *inode, bool qgroup_free)
Josef Bacik69fe2d72017-10-19 14:15:57 -04005755{
5756 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005757 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
5758 u64 released = 0;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005759 u64 qgroup_to_release = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005760
5761 /*
5762 * Since we statically set the block_rsv->size we just want to say we
5763 * are releasing 0 bytes, and then we'll just get the reservation over
5764 * the size free'd.
5765 */
Josef Bacikba2c4d42018-12-03 10:20:33 -05005766 released = __btrfs_block_rsv_release(fs_info, block_rsv, 0,
5767 &qgroup_to_release);
Josef Bacik69fe2d72017-10-19 14:15:57 -04005768 if (released > 0)
5769 trace_btrfs_space_reservation(fs_info, "delalloc",
5770 btrfs_ino(inode), released, 0);
Qu Wenruo43b18592017-12-12 15:34:32 +08005771 if (qgroup_free)
Qu Wenruoff6bc372017-12-21 13:42:04 +08005772 btrfs_qgroup_free_meta_prealloc(inode->root, qgroup_to_release);
Qu Wenruo43b18592017-12-12 15:34:32 +08005773 else
Qu Wenruoff6bc372017-12-21 13:42:04 +08005774 btrfs_qgroup_convert_reserved_meta(inode->root,
5775 qgroup_to_release);
Josef Bacik69fe2d72017-10-19 14:15:57 -04005776}
5777
Josef Bacikba2c4d42018-12-03 10:20:33 -05005778/**
5779 * btrfs_delayed_refs_rsv_release - release a ref head's reservation.
5780 * @fs_info - the fs_info for our fs.
5781 * @nr - the number of items to drop.
5782 *
5783 * This drops the delayed ref head's count from the delayed refs rsv and frees
5784 * any excess reservation we had.
5785 */
5786void btrfs_delayed_refs_rsv_release(struct btrfs_fs_info *fs_info, int nr)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005787{
Josef Bacikba2c4d42018-12-03 10:20:33 -05005788 struct btrfs_block_rsv *block_rsv = &fs_info->delayed_refs_rsv;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005789 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikba2c4d42018-12-03 10:20:33 -05005790 u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, nr);
5791 u64 released = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005792
Josef Bacikba2c4d42018-12-03 10:20:33 -05005793 released = block_rsv_release_bytes(fs_info, block_rsv, global_rsv,
5794 num_bytes, NULL);
5795 if (released)
5796 trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
5797 0, released, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005798}
5799
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005800static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5801{
5802 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5803 struct btrfs_space_info *sinfo = block_rsv->space_info;
5804 u64 num_bytes;
5805
Josef Bacikae2e4722016-05-27 12:58:35 -04005806 /*
5807 * The global block rsv is based on the size of the extent tree, the
5808 * checksum tree and the root tree. If the fs is empty we want to set
5809 * it to a minimal amount for safety.
5810 */
5811 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) +
5812 btrfs_root_used(&fs_info->csum_root->root_item) +
5813 btrfs_root_used(&fs_info->tree_root->root_item);
5814 num_bytes = max_t(u64, num_bytes, SZ_16M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005815
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005816 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005817 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005818
Byongho Leeee221842015-12-15 01:42:10 +09005819 block_rsv->size = min_t(u64, num_bytes, SZ_512M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005820
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005821 if (block_rsv->reserved < block_rsv->size) {
Liu Bo41361352017-02-13 15:42:21 -08005822 num_bytes = btrfs_space_info_used(sinfo, true);
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005823 if (sinfo->total_bytes > num_bytes) {
5824 num_bytes = sinfo->total_bytes - num_bytes;
5825 num_bytes = min(num_bytes,
5826 block_rsv->size - block_rsv->reserved);
5827 block_rsv->reserved += num_bytes;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005828 update_bytes_may_use(sinfo, num_bytes);
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005829 trace_btrfs_space_reservation(fs_info, "space_info",
5830 sinfo->flags, num_bytes,
5831 1);
5832 }
5833 } else if (block_rsv->reserved > block_rsv->size) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005834 num_bytes = block_rsv->reserved - block_rsv->size;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005835 update_bytes_may_use(sinfo, -num_bytes);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005836 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005837 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005838 block_rsv->reserved = block_rsv->size;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005839 }
David Sterba182608c2011-05-05 13:13:16 +02005840
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005841 if (block_rsv->reserved == block_rsv->size)
5842 block_rsv->full = 1;
5843 else
5844 block_rsv->full = 0;
5845
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005846 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005847 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005848}
5849
Yan, Zhengf0486c62010-05-16 10:46:25 -04005850static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5851{
5852 struct btrfs_space_info *space_info;
5853
5854 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5855 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005856
5857 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005858 fs_info->global_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005859 fs_info->trans_block_rsv.space_info = space_info;
5860 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005861 fs_info->delayed_block_rsv.space_info = space_info;
Josef Bacikba2c4d42018-12-03 10:20:33 -05005862 fs_info->delayed_refs_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005863
Josef Bacikba2c4d42018-12-03 10:20:33 -05005864 fs_info->extent_root->block_rsv = &fs_info->delayed_refs_rsv;
5865 fs_info->csum_root->block_rsv = &fs_info->delayed_refs_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005866 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5867 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005868 if (fs_info->quota_root)
5869 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005870 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005871
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005872 update_global_block_rsv(fs_info);
5873}
5874
5875static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5876{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005877 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
Qu Wenruoff6bc372017-12-21 13:42:04 +08005878 (u64)-1, NULL);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005879 WARN_ON(fs_info->trans_block_rsv.size > 0);
5880 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5881 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5882 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04005883 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5884 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikba2c4d42018-12-03 10:20:33 -05005885 WARN_ON(fs_info->delayed_refs_rsv.reserved > 0);
5886 WARN_ON(fs_info->delayed_refs_rsv.size > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04005887}
5888
Josef Bacikba2c4d42018-12-03 10:20:33 -05005889/*
5890 * btrfs_update_delayed_refs_rsv - adjust the size of the delayed refs rsv
5891 * @trans - the trans that may have generated delayed refs
5892 *
5893 * This is to be called anytime we may have adjusted trans->delayed_ref_updates,
5894 * it'll calculate the additional size and add it to the delayed_refs_rsv.
5895 */
5896void btrfs_update_delayed_refs_rsv(struct btrfs_trans_handle *trans)
5897{
5898 struct btrfs_fs_info *fs_info = trans->fs_info;
5899 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_refs_rsv;
5900 u64 num_bytes;
5901
5902 if (!trans->delayed_ref_updates)
5903 return;
5904
5905 num_bytes = btrfs_calc_trans_metadata_size(fs_info,
5906 trans->delayed_ref_updates);
5907 spin_lock(&delayed_rsv->lock);
5908 delayed_rsv->size += num_bytes;
5909 delayed_rsv->full = 0;
5910 spin_unlock(&delayed_rsv->lock);
5911 trans->delayed_ref_updates = 0;
5912}
Yan, Zhenga22285a2010-05-16 10:48:46 -04005913
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005914/*
5915 * To be called after all the new block groups attached to the transaction
5916 * handle have been created (btrfs_create_pending_block_groups()).
5917 */
5918void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5919{
Jeff Mahoney64b63582016-06-20 17:23:41 -04005920 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005921
5922 if (!trans->chunk_bytes_reserved)
5923 return;
5924
5925 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5926
5927 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
Qu Wenruoff6bc372017-12-21 13:42:04 +08005928 trans->chunk_bytes_reserved, NULL);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005929 trans->chunk_bytes_reserved = 0;
5930}
5931
Miao Xied5c12072013-02-28 10:04:33 +00005932/*
5933 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
5934 * root: the root of the parent directory
5935 * rsv: block reservation
5936 * items: the number of items that we need do reservation
Lu Fengqia5b7f422018-08-09 09:46:04 +08005937 * use_global_rsv: allow fallback to the global block reservation
Miao Xied5c12072013-02-28 10:04:33 +00005938 *
5939 * This function is used to reserve the space for snapshot/subvolume
5940 * creation and deletion. Those operations are different with the
5941 * common file/directory operations, they change two fs/file trees
5942 * and root tree, the number of items that the qgroup reserves is
5943 * different with the free space reservation. So we can not use
Nicholas D Steeves01327612016-05-19 21:18:45 -04005944 * the space reservation mechanism in start_transaction().
Miao Xied5c12072013-02-28 10:04:33 +00005945 */
5946int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
Lu Fengqia5b7f422018-08-09 09:46:04 +08005947 struct btrfs_block_rsv *rsv, int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005948 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005949{
Lu Fengqia5b7f422018-08-09 09:46:04 +08005950 u64 qgroup_num_bytes = 0;
Miao Xied5c12072013-02-28 10:04:33 +00005951 u64 num_bytes;
5952 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005953 struct btrfs_fs_info *fs_info = root->fs_info;
5954 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005955
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005956 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
Miao Xied5c12072013-02-28 10:04:33 +00005957 /* One for parent inode, two for dir entries */
Lu Fengqia5b7f422018-08-09 09:46:04 +08005958 qgroup_num_bytes = 3 * fs_info->nodesize;
5959 ret = btrfs_qgroup_reserve_meta_prealloc(root,
5960 qgroup_num_bytes, true);
Miao Xied5c12072013-02-28 10:04:33 +00005961 if (ret)
5962 return ret;
Miao Xied5c12072013-02-28 10:04:33 +00005963 }
5964
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005965 num_bytes = btrfs_calc_trans_metadata_size(fs_info, items);
5966 rsv->space_info = __find_space_info(fs_info,
Miao Xied5c12072013-02-28 10:04:33 +00005967 BTRFS_BLOCK_GROUP_METADATA);
5968 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5969 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005970
5971 if (ret == -ENOSPC && use_global_rsv)
Lu Fengqi3a584172018-08-04 21:10:55 +08005972 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, true);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005973
Lu Fengqia5b7f422018-08-09 09:46:04 +08005974 if (ret && qgroup_num_bytes)
5975 btrfs_qgroup_free_meta_prealloc(root, qgroup_num_bytes);
Miao Xied5c12072013-02-28 10:04:33 +00005976
5977 return ret;
5978}
5979
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005980void btrfs_subvolume_release_metadata(struct btrfs_fs_info *fs_info,
David Sterba7775c812017-02-10 19:18:18 +01005981 struct btrfs_block_rsv *rsv)
Miao Xied5c12072013-02-28 10:04:33 +00005982{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005983 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005984}
5985
Josef Bacik69fe2d72017-10-19 14:15:57 -04005986static void btrfs_calculate_inode_block_rsv_size(struct btrfs_fs_info *fs_info,
5987 struct btrfs_inode *inode)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005988{
Josef Bacik69fe2d72017-10-19 14:15:57 -04005989 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
5990 u64 reserve_size = 0;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005991 u64 qgroup_rsv_size = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005992 u64 csum_leaves;
5993 unsigned outstanding_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005994
Josef Bacik69fe2d72017-10-19 14:15:57 -04005995 lockdep_assert_held(&inode->lock);
5996 outstanding_extents = inode->outstanding_extents;
5997 if (outstanding_extents)
5998 reserve_size = btrfs_calc_trans_metadata_size(fs_info,
5999 outstanding_extents + 1);
6000 csum_leaves = btrfs_csum_bytes_to_leaves(fs_info,
6001 inode->csum_bytes);
6002 reserve_size += btrfs_calc_trans_metadata_size(fs_info,
6003 csum_leaves);
Qu Wenruoff6bc372017-12-21 13:42:04 +08006004 /*
6005 * For qgroup rsv, the calculation is very simple:
6006 * account one nodesize for each outstanding extent
6007 *
6008 * This is overestimating in most cases.
6009 */
Nikolay Borisov139a5612019-03-18 17:45:20 +02006010 qgroup_rsv_size = (u64)outstanding_extents * fs_info->nodesize;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006011
Josef Bacik69fe2d72017-10-19 14:15:57 -04006012 spin_lock(&block_rsv->lock);
6013 block_rsv->size = reserve_size;
Qu Wenruoff6bc372017-12-21 13:42:04 +08006014 block_rsv->qgroup_rsv_size = qgroup_rsv_size;
Josef Bacik69fe2d72017-10-19 14:15:57 -04006015 spin_unlock(&block_rsv->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006016}
6017
Josef Bacikc8eaeac72019-04-10 15:56:10 -04006018static void calc_inode_reservations(struct btrfs_fs_info *fs_info,
6019 u64 num_bytes, u64 *meta_reserve,
6020 u64 *qgroup_reserve)
6021{
6022 u64 nr_extents = count_max_extents(num_bytes);
6023 u64 csum_leaves = btrfs_csum_bytes_to_leaves(fs_info, num_bytes);
6024
6025 /* We add one for the inode update at finish ordered time */
6026 *meta_reserve = btrfs_calc_trans_metadata_size(fs_info,
6027 nr_extents + csum_leaves + 1);
6028 *qgroup_reserve = nr_extents * fs_info->nodesize;
6029}
6030
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006031int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006032{
Josef Bacikc8eaeac72019-04-10 15:56:10 -04006033 struct btrfs_root *root = inode->root;
6034 struct btrfs_fs_info *fs_info = root->fs_info;
6035 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
6036 u64 meta_reserve, qgroup_reserve;
Josef Bacik69fe2d72017-10-19 14:15:57 -04006037 unsigned nr_extents;
Miao Xie08e007d2012-10-16 11:33:38 +00006038 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07006039 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006040 bool delalloc_lock = true;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006041
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006042 /* If we are a free space inode we need to not flush since we will be in
6043 * the middle of a transaction commit. We also don't need the delalloc
6044 * mutex since we won't race with anybody. We need this mostly to make
6045 * lockdep shut its filthy mouth.
Josef Bacikbac357dc2016-07-20 16:48:45 -07006046 *
6047 * If we have a transaction open (can happen if we call truncate_block
6048 * from truncate), then we need FLUSH_LIMIT so we don't deadlock.
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006049 */
6050 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00006051 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006052 delalloc_lock = false;
Nikolay Borisovda07d4a2018-01-12 16:21:05 +02006053 } else {
6054 if (current->journal_info)
6055 flush = BTRFS_RESERVE_FLUSH_LIMIT;
Josef Bacikc09544e2011-08-30 10:19:10 -04006056
Nikolay Borisovda07d4a2018-01-12 16:21:05 +02006057 if (btrfs_transaction_in_commit(fs_info))
6058 schedule_timeout(1);
6059 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006060
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006061 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006062 mutex_lock(&inode->delalloc_mutex);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006063
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006064 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006065
Josef Bacikc8eaeac72019-04-10 15:56:10 -04006066 /*
6067 * We always want to do it this way, every other way is wrong and ends
6068 * in tears. Pre-reserving the amount we are going to add will always
6069 * be the right way, because otherwise if we have enough parallelism we
6070 * could end up with thousands of inodes all holding little bits of
6071 * reservations they were able to make previously and the only way to
6072 * reclaim that space is to ENOSPC out the operations and clear
6073 * everything out and try again, which is bad. This way we just
6074 * over-reserve slightly, and clean up the mess when we are done.
6075 */
6076 calc_inode_reservations(fs_info, num_bytes, &meta_reserve,
6077 &qgroup_reserve);
6078 ret = btrfs_qgroup_reserve_meta_prealloc(root, qgroup_reserve, true);
6079 if (ret)
6080 goto out_fail;
6081 ret = reserve_metadata_bytes(root, block_rsv, meta_reserve, flush);
6082 if (ret)
6083 goto out_qgroup;
6084
6085 /*
6086 * Now we need to update our outstanding extents and csum bytes _first_
6087 * and then add the reservation to the block_rsv. This keeps us from
6088 * racing with an ordered completion or some such that would think it
6089 * needs to free the reservation we just made.
6090 */
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006091 spin_lock(&inode->lock);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006092 nr_extents = count_max_extents(num_bytes);
Josef Bacik8b62f872017-10-19 14:15:55 -04006093 btrfs_mod_outstanding_extents(inode, nr_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006094 inode->csum_bytes += num_bytes;
6095 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006096 spin_unlock(&inode->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05006097
Josef Bacikc8eaeac72019-04-10 15:56:10 -04006098 /* Now we can safely add our space to our block rsv */
6099 block_rsv_add_bytes(block_rsv, meta_reserve, false);
6100 trace_btrfs_space_reservation(root->fs_info, "delalloc",
6101 btrfs_ino(inode), meta_reserve, 1);
6102
6103 spin_lock(&block_rsv->lock);
6104 block_rsv->qgroup_rsv_reserved += qgroup_reserve;
6105 spin_unlock(&block_rsv->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006106
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006107 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006108 mutex_unlock(&inode->delalloc_mutex);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006109 return 0;
Josef Bacikc8eaeac72019-04-10 15:56:10 -04006110out_qgroup:
6111 btrfs_qgroup_free_meta_prealloc(root, qgroup_reserve);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006112out_fail:
Qu Wenruo43b18592017-12-12 15:34:32 +08006113 btrfs_inode_rsv_release(inode, true);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006114 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006115 mutex_unlock(&inode->delalloc_mutex);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006116 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006117}
6118
Josef Bacik7709cde2011-08-04 10:25:02 -04006119/**
6120 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
Josef Bacik8b62f872017-10-19 14:15:55 -04006121 * @inode: the inode to release the reservation for.
6122 * @num_bytes: the number of bytes we are releasing.
Qu Wenruo43b18592017-12-12 15:34:32 +08006123 * @qgroup_free: free qgroup reservation or convert it to per-trans reservation
Josef Bacik7709cde2011-08-04 10:25:02 -04006124 *
6125 * This will release the metadata reservation for an inode. This can be called
6126 * once we complete IO for a given set of bytes to release their metadata
Josef Bacik8b62f872017-10-19 14:15:55 -04006127 * reservations, or on error for the same reason.
Josef Bacik7709cde2011-08-04 10:25:02 -04006128 */
Qu Wenruo43b18592017-12-12 15:34:32 +08006129void btrfs_delalloc_release_metadata(struct btrfs_inode *inode, u64 num_bytes,
6130 bool qgroup_free)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006131{
David Sterba3ffbd682018-06-29 10:56:42 +02006132 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006133
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006134 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006135 spin_lock(&inode->lock);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006136 inode->csum_bytes -= num_bytes;
6137 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006138 spin_unlock(&inode->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006139
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006140 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04006141 return;
6142
Qu Wenruo43b18592017-12-12 15:34:32 +08006143 btrfs_inode_rsv_release(inode, qgroup_free);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006144}
6145
Josef Bacik7709cde2011-08-04 10:25:02 -04006146/**
Josef Bacik8b62f872017-10-19 14:15:55 -04006147 * btrfs_delalloc_release_extents - release our outstanding_extents
6148 * @inode: the inode to balance the reservation for.
6149 * @num_bytes: the number of bytes we originally reserved with
Qu Wenruo43b18592017-12-12 15:34:32 +08006150 * @qgroup_free: do we need to free qgroup meta reservation or convert them.
Josef Bacik8b62f872017-10-19 14:15:55 -04006151 *
6152 * When we reserve space we increase outstanding_extents for the extents we may
6153 * add. Once we've set the range as delalloc or created our ordered extents we
6154 * have outstanding_extents to track the real usage, so we use this to free our
6155 * temporarily tracked outstanding_extents. This _must_ be used in conjunction
6156 * with btrfs_delalloc_reserve_metadata.
6157 */
Qu Wenruo43b18592017-12-12 15:34:32 +08006158void btrfs_delalloc_release_extents(struct btrfs_inode *inode, u64 num_bytes,
6159 bool qgroup_free)
Josef Bacik8b62f872017-10-19 14:15:55 -04006160{
David Sterba3ffbd682018-06-29 10:56:42 +02006161 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Josef Bacik8b62f872017-10-19 14:15:55 -04006162 unsigned num_extents;
Josef Bacik8b62f872017-10-19 14:15:55 -04006163
6164 spin_lock(&inode->lock);
6165 num_extents = count_max_extents(num_bytes);
6166 btrfs_mod_outstanding_extents(inode, -num_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006167 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Josef Bacik8b62f872017-10-19 14:15:55 -04006168 spin_unlock(&inode->lock);
6169
Josef Bacik8b62f872017-10-19 14:15:55 -04006170 if (btrfs_is_testing(fs_info))
6171 return;
6172
Qu Wenruo43b18592017-12-12 15:34:32 +08006173 btrfs_inode_rsv_release(inode, qgroup_free);
Josef Bacik8b62f872017-10-19 14:15:55 -04006174}
6175
6176/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006177 * btrfs_delalloc_reserve_space - reserve data and metadata space for
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006178 * delalloc
6179 * @inode: inode we're writing to
6180 * @start: start range we are writing to
6181 * @len: how long the range we are writing to
Qu Wenruo364ecf32017-02-27 15:10:38 +08006182 * @reserved: mandatory parameter, record actually reserved qgroup ranges of
6183 * current reservation.
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006184 *
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006185 * This will do the following things
6186 *
6187 * o reserve space in data space info for num bytes
6188 * and reserve precious corresponding qgroup space
6189 * (Done in check_data_free_space)
6190 *
6191 * o reserve space for metadata space, based on the number of outstanding
6192 * extents and how much csums will be needed
6193 * also reserve metadata space in a per root over-reserve method.
6194 * o add to the inodes->delalloc_bytes
6195 * o add it to the fs_info's delalloc inodes list.
6196 * (Above 3 all done in delalloc_reserve_metadata)
6197 *
6198 * Return 0 for success
6199 * Return <0 for error(-ENOSPC or -EQUOT)
6200 */
Qu Wenruo364ecf32017-02-27 15:10:38 +08006201int btrfs_delalloc_reserve_space(struct inode *inode,
6202 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006203{
6204 int ret;
6205
Qu Wenruo364ecf32017-02-27 15:10:38 +08006206 ret = btrfs_check_data_free_space(inode, reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006207 if (ret < 0)
6208 return ret;
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006209 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode), len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006210 if (ret < 0)
Qu Wenruobc42bda2017-02-27 15:10:39 +08006211 btrfs_free_reserved_data_space(inode, *reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006212 return ret;
6213}
6214
6215/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006216 * btrfs_delalloc_release_space - release data and metadata space for delalloc
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006217 * @inode: inode we're releasing space for
6218 * @start: start position of the space already reserved
6219 * @len: the len of the space already reserved
Josef Bacik8b62f872017-10-19 14:15:55 -04006220 * @release_bytes: the len of the space we consumed or didn't use
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006221 *
6222 * This function will release the metadata space that was not used and will
6223 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
6224 * list if there are no delalloc bytes left.
6225 * Also it will handle the qgroup reserved space.
6226 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08006227void btrfs_delalloc_release_space(struct inode *inode,
Josef Bacik8b62f872017-10-19 14:15:55 -04006228 struct extent_changeset *reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08006229 u64 start, u64 len, bool qgroup_free)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006230{
Qu Wenruo43b18592017-12-12 15:34:32 +08006231 btrfs_delalloc_release_metadata(BTRFS_I(inode), len, qgroup_free);
Qu Wenruobc42bda2017-02-27 15:10:39 +08006232 btrfs_free_reserved_data_space(inode, reserved, start, len);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006233}
6234
Josef Bacikce93ec52014-11-17 15:45:48 -05006235static int update_block_group(struct btrfs_trans_handle *trans,
David Sterba6b279402019-03-20 12:10:15 +01006236 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04006237{
David Sterba6b279402019-03-20 12:10:15 +01006238 struct btrfs_fs_info *info = trans->fs_info;
Josef Bacik0af3d002010-06-21 14:48:16 -04006239 struct btrfs_block_group_cache *cache = NULL;
Chris Masondb945352007-10-15 16:15:53 -04006240 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006241 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04006242 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04006243 int factor;
Josef Bacikba2c4d42018-12-03 10:20:33 -05006244 int ret = 0;
Chris Mason3e1ad542007-05-07 20:03:49 -04006245
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006246 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00006247 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02006248 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006249 if (alloc)
6250 old_val += num_bytes;
6251 else
6252 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02006253 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00006254 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006255
Chris Masond3977122009-01-05 21:25:51 -05006256 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04006257 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikba2c4d42018-12-03 10:20:33 -05006258 if (!cache) {
6259 ret = -ENOENT;
6260 break;
6261 }
David Sterba46df06b2018-07-13 20:46:30 +02006262 factor = btrfs_bg_type_to_factor(cache->flags);
6263
Josef Bacik9d66e232010-08-25 16:54:15 -04006264 /*
6265 * If this block group has free space cache written out, we
6266 * need to make sure to load it if we are removing space. This
6267 * is because we need the unpinning stage to actually add the
6268 * space back to the block group, otherwise we will leak space.
6269 */
6270 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00006271 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04006272
Chris Masondb945352007-10-15 16:15:53 -04006273 byte_in_group = bytenr - cache->key.objectid;
6274 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04006275
Josef Bacik25179202008-10-29 14:49:05 -04006276 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04006277 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04006278
Jeff Mahoney6202df62016-06-22 18:54:22 -04006279 if (btrfs_test_opt(info, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04006280 cache->disk_cache_state < BTRFS_DC_CLEAR)
6281 cache->disk_cache_state = BTRFS_DC_CLEAR;
6282
Chris Mason9078a3e2007-04-26 16:46:15 -04006283 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04006284 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04006285 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04006286 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006287 btrfs_set_block_group_used(&cache->item, old_val);
6288 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006289 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb822010-05-16 10:46:24 -04006290 cache->space_info->bytes_used += num_bytes;
6291 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04006292 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006293 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04006294 } else {
Chris Masondb945352007-10-15 16:15:53 -04006295 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00006296 btrfs_set_block_group_used(&cache->item, old_val);
6297 cache->pinned += num_bytes;
Lu Fengqie2907c12018-10-24 20:24:02 +08006298 update_bytes_pinned(cache->space_info, num_bytes);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006299 cache->space_info->bytes_used -= num_bytes;
6300 cache->space_info->disk_used -= num_bytes * factor;
6301 spin_unlock(&cache->lock);
6302 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04006303
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006304 trace_btrfs_space_reservation(info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006305 cache->space_info->flags,
6306 num_bytes, 1);
Ethan Liendec59fa2018-07-13 16:50:42 +08006307 percpu_counter_add_batch(&cache->space_info->total_bytes_pinned,
6308 num_bytes,
6309 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006310 set_extent_dirty(info->pinned_extents,
6311 bytenr, bytenr + num_bytes - 1,
6312 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04006313 }
Chris Mason1bbc6212015-04-06 12:46:08 -07006314
6315 spin_lock(&trans->transaction->dirty_bgs_lock);
6316 if (list_empty(&cache->dirty_list)) {
6317 list_add_tail(&cache->dirty_list,
6318 &trans->transaction->dirty_bgs);
Josef Bacikba2c4d42018-12-03 10:20:33 -05006319 trans->delayed_ref_updates++;
Chris Mason1bbc6212015-04-06 12:46:08 -07006320 btrfs_get_block_group(cache);
6321 }
6322 spin_unlock(&trans->transaction->dirty_bgs_lock);
6323
Filipe Manana036a9342015-11-23 15:25:16 +00006324 /*
6325 * No longer have used bytes in this block group, queue it for
6326 * deletion. We do this after adding the block group to the
6327 * dirty list to avoid races between cleaner kthread and space
6328 * cache writeout.
6329 */
Qu Wenruo031f24d2018-05-22 16:43:47 +08006330 if (!alloc && old_val == 0)
6331 btrfs_mark_bg_unused(cache);
Filipe Manana036a9342015-11-23 15:25:16 +00006332
Chris Masonfa9c0d792009-04-03 09:47:43 -04006333 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04006334 total -= num_bytes;
6335 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006336 }
Josef Bacikba2c4d42018-12-03 10:20:33 -05006337
6338 /* Modified block groups are accounted for in the delayed_refs_rsv. */
6339 btrfs_update_delayed_refs_rsv(trans);
6340 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04006341}
Chris Mason6324fbf2008-03-24 15:01:59 -04006342
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006343static u64 first_logical_byte(struct btrfs_fs_info *fs_info, u64 search_start)
Chris Masona061fc82008-05-07 11:43:44 -04006344{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006345 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05006346 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006347
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006348 spin_lock(&fs_info->block_group_cache_lock);
6349 bytenr = fs_info->first_logical_byte;
6350 spin_unlock(&fs_info->block_group_cache_lock);
Liu Boa1897fd2012-12-27 09:01:23 +00006351
6352 if (bytenr < (u64)-1)
6353 return bytenr;
6354
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006355 cache = btrfs_lookup_first_block_group(fs_info, search_start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006356 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04006357 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006358
Yan Zhengd2fb3432008-12-11 16:30:39 -05006359 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006360 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05006361
6362 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04006363}
6364
David Sterbafdf08602019-03-20 12:12:32 +01006365static int pin_down_extent(struct btrfs_block_group_cache *cache,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006366 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05006367{
David Sterbafdf08602019-03-20 12:12:32 +01006368 struct btrfs_fs_info *fs_info = cache->fs_info;
6369
Yan Zheng11833d62009-09-11 16:11:19 -04006370 spin_lock(&cache->space_info->lock);
6371 spin_lock(&cache->lock);
6372 cache->pinned += num_bytes;
Lu Fengqie2907c12018-10-24 20:24:02 +08006373 update_bytes_pinned(cache->space_info, num_bytes);
Yan Zheng11833d62009-09-11 16:11:19 -04006374 if (reserved) {
6375 cache->reserved -= num_bytes;
6376 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05006377 }
Yan Zheng11833d62009-09-11 16:11:19 -04006378 spin_unlock(&cache->lock);
6379 spin_unlock(&cache->space_info->lock);
6380
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006381 trace_btrfs_space_reservation(fs_info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006382 cache->space_info->flags, num_bytes, 1);
Ethan Liendec59fa2018-07-13 16:50:42 +08006383 percpu_counter_add_batch(&cache->space_info->total_bytes_pinned,
6384 num_bytes, BTRFS_TOTAL_BYTES_PINNED_BATCH);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006385 set_extent_dirty(fs_info->pinned_extents, bytenr,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006386 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05006387 return 0;
6388}
Chris Mason9078a3e2007-04-26 16:46:15 -04006389
Yan, Zhengf0486c62010-05-16 10:46:25 -04006390/*
6391 * this function must be called within transaction
6392 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006393int btrfs_pin_extent(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006394 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04006395{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006396 struct btrfs_block_group_cache *cache;
6397
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006398 cache = btrfs_lookup_block_group(fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006399 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006400
David Sterbafdf08602019-03-20 12:12:32 +01006401 pin_down_extent(cache, bytenr, num_bytes, reserved);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006402
6403 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04006404 return 0;
6405}
Zheng Yane8569812008-09-26 10:05:48 -04006406
Yan, Zhengf0486c62010-05-16 10:46:25 -04006407/*
Chris Masone688b7252011-10-31 20:52:39 -04006408 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04006409 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006410int btrfs_pin_extent_for_log_replay(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04006411 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006412{
Chris Masone688b7252011-10-31 20:52:39 -04006413 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04006414 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04006415
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006416 cache = btrfs_lookup_block_group(fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006417 if (!cache)
6418 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04006419
6420 /*
6421 * pull in the free space cache (if any) so that our pin
6422 * removes the free space from the cache. We have load_only set
6423 * to one because the slow code to read in the free extents does check
6424 * the pinned extents.
6425 */
Liu Bof6373bf2012-12-27 09:01:18 +00006426 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04006427
David Sterbafdf08602019-03-20 12:12:32 +01006428 pin_down_extent(cache, bytenr, num_bytes, 0);
Chris Masone688b7252011-10-31 20:52:39 -04006429
6430 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04006431 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04006432 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006433 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04006434}
6435
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006436static int __exclude_logged_extent(struct btrfs_fs_info *fs_info,
6437 u64 start, u64 num_bytes)
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006438{
6439 int ret;
6440 struct btrfs_block_group_cache *block_group;
6441 struct btrfs_caching_control *caching_ctl;
6442
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006443 block_group = btrfs_lookup_block_group(fs_info, start);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006444 if (!block_group)
6445 return -EINVAL;
6446
6447 cache_block_group(block_group, 0);
6448 caching_ctl = get_caching_control(block_group);
6449
6450 if (!caching_ctl) {
6451 /* Logic error */
6452 BUG_ON(!block_group_cache_done(block_group));
6453 ret = btrfs_remove_free_space(block_group, start, num_bytes);
6454 } else {
6455 mutex_lock(&caching_ctl->mutex);
6456
6457 if (start >= caching_ctl->progress) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006458 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006459 } else if (start + num_bytes <= caching_ctl->progress) {
6460 ret = btrfs_remove_free_space(block_group,
6461 start, num_bytes);
6462 } else {
6463 num_bytes = caching_ctl->progress - start;
6464 ret = btrfs_remove_free_space(block_group,
6465 start, num_bytes);
6466 if (ret)
6467 goto out_lock;
6468
6469 num_bytes = (start + num_bytes) -
6470 caching_ctl->progress;
6471 start = caching_ctl->progress;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006472 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006473 }
6474out_lock:
6475 mutex_unlock(&caching_ctl->mutex);
6476 put_caching_control(caching_ctl);
6477 }
6478 btrfs_put_block_group(block_group);
6479 return ret;
6480}
6481
David Sterbabcdc4282019-03-20 12:14:33 +01006482int btrfs_exclude_logged_extents(struct extent_buffer *eb)
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006483{
David Sterbabcdc4282019-03-20 12:14:33 +01006484 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006485 struct btrfs_file_extent_item *item;
6486 struct btrfs_key key;
6487 int found_type;
6488 int i;
Gu Jinxiangb89311e2018-05-22 17:46:51 +08006489 int ret = 0;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006490
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006491 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS))
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006492 return 0;
6493
6494 for (i = 0; i < btrfs_header_nritems(eb); i++) {
6495 btrfs_item_key_to_cpu(eb, &key, i);
6496 if (key.type != BTRFS_EXTENT_DATA_KEY)
6497 continue;
6498 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
6499 found_type = btrfs_file_extent_type(eb, item);
6500 if (found_type == BTRFS_FILE_EXTENT_INLINE)
6501 continue;
6502 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
6503 continue;
6504 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
6505 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
Gu Jinxiangb89311e2018-05-22 17:46:51 +08006506 ret = __exclude_logged_extent(fs_info, key.objectid, key.offset);
6507 if (ret)
6508 break;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006509 }
6510
Gu Jinxiangb89311e2018-05-22 17:46:51 +08006511 return ret;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006512}
6513
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006514static void
6515btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg)
6516{
6517 atomic_inc(&bg->reservations);
6518}
6519
6520void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
6521 const u64 start)
6522{
6523 struct btrfs_block_group_cache *bg;
6524
6525 bg = btrfs_lookup_block_group(fs_info, start);
6526 ASSERT(bg);
6527 if (atomic_dec_and_test(&bg->reservations))
Peter Zijlstra46259562018-03-15 11:43:08 +01006528 wake_up_var(&bg->reservations);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006529 btrfs_put_block_group(bg);
6530}
6531
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006532void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg)
6533{
6534 struct btrfs_space_info *space_info = bg->space_info;
6535
6536 ASSERT(bg->ro);
6537
6538 if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA))
6539 return;
6540
6541 /*
6542 * Our block group is read only but before we set it to read only,
6543 * some task might have had allocated an extent from it already, but it
6544 * has not yet created a respective ordered extent (and added it to a
6545 * root's list of ordered extents).
6546 * Therefore wait for any task currently allocating extents, since the
6547 * block group's reservations counter is incremented while a read lock
6548 * on the groups' semaphore is held and decremented after releasing
6549 * the read access on that semaphore and creating the ordered extent.
6550 */
6551 down_write(&space_info->groups_sem);
6552 up_write(&space_info->groups_sem);
6553
Peter Zijlstra46259562018-03-15 11:43:08 +01006554 wait_var_event(&bg->reservations, !atomic_read(&bg->reservations));
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006555}
6556
Josef Bacikfb25e912011-07-26 17:00:46 -04006557/**
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006558 * btrfs_add_reserved_bytes - update the block_group and space info counters
Josef Bacikfb25e912011-07-26 17:00:46 -04006559 * @cache: The cache we are manipulating
Wang Xiaoguang18513092016-07-25 15:51:40 +08006560 * @ram_bytes: The number of bytes of file content, and will be same to
6561 * @num_bytes except for the compress path.
Josef Bacikfb25e912011-07-26 17:00:46 -04006562 * @num_bytes: The number of bytes in question
Miao Xiee570fd22014-06-19 10:42:50 +08006563 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04006564 *
Xiaoguang Wang745699e2016-09-23 12:38:50 +08006565 * This is called by the allocator when it reserves space. If this is a
6566 * reservation and the block group has become read only we cannot make the
6567 * reservation and return -EAGAIN, otherwise this function always succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04006568 */
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006569static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
Wang Xiaoguang18513092016-07-25 15:51:40 +08006570 u64 ram_bytes, u64 num_bytes, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006571{
Josef Bacikfb25e912011-07-26 17:00:46 -04006572 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006573 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006574
Josef Bacikfb25e912011-07-26 17:00:46 -04006575 spin_lock(&space_info->lock);
6576 spin_lock(&cache->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006577 if (cache->ro) {
6578 ret = -EAGAIN;
Josef Bacikfb25e912011-07-26 17:00:46 -04006579 } else {
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006580 cache->reserved += num_bytes;
6581 space_info->bytes_reserved += num_bytes;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08006582 update_bytes_may_use(space_info, -ram_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08006583 if (delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006584 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006585 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006586 spin_unlock(&cache->lock);
6587 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006588 return ret;
6589}
6590
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006591/**
6592 * btrfs_free_reserved_bytes - update the block_group and space info counters
6593 * @cache: The cache we are manipulating
6594 * @num_bytes: The number of bytes in question
6595 * @delalloc: The blocks are allocated for the delalloc write
6596 *
6597 * This is called by somebody who is freeing space that was never actually used
6598 * on disk. For example if you reserve some space for a new leaf in transaction
6599 * A and before transaction A commits you free that leaf, you call this with
6600 * reserve set to 0 in order to clear the reservation.
6601 */
6602
zhong jiang556f3ca2018-08-17 00:37:14 +08006603static void btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
6604 u64 num_bytes, int delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006605{
6606 struct btrfs_space_info *space_info = cache->space_info;
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006607
6608 spin_lock(&space_info->lock);
6609 spin_lock(&cache->lock);
6610 if (cache->ro)
6611 space_info->bytes_readonly += num_bytes;
6612 cache->reserved -= num_bytes;
6613 space_info->bytes_reserved -= num_bytes;
Josef Bacik21a94f72018-10-11 15:54:03 -04006614 space_info->max_extent_size = 0;
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006615
6616 if (delalloc)
6617 cache->delalloc_bytes -= num_bytes;
6618 spin_unlock(&cache->lock);
6619 spin_unlock(&space_info->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006620}
David Sterba8b74c032017-02-10 19:20:56 +01006621void btrfs_prepare_extent_commit(struct btrfs_fs_info *fs_info)
Yan Zheng11833d62009-09-11 16:11:19 -04006622{
Yan Zheng11833d62009-09-11 16:11:19 -04006623 struct btrfs_caching_control *next;
6624 struct btrfs_caching_control *caching_ctl;
6625 struct btrfs_block_group_cache *cache;
6626
Josef Bacik9e351cc2014-03-13 15:42:13 -04006627 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04006628
6629 list_for_each_entry_safe(caching_ctl, next,
6630 &fs_info->caching_block_groups, list) {
6631 cache = caching_ctl->block_group;
6632 if (block_group_cache_done(cache)) {
6633 cache->last_byte_to_unpin = (u64)-1;
6634 list_del_init(&caching_ctl->list);
6635 put_caching_control(caching_ctl);
6636 } else {
6637 cache->last_byte_to_unpin = caching_ctl->progress;
6638 }
6639 }
6640
6641 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6642 fs_info->pinned_extents = &fs_info->freed_extents[1];
6643 else
6644 fs_info->pinned_extents = &fs_info->freed_extents[0];
6645
Josef Bacik9e351cc2014-03-13 15:42:13 -04006646 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006647
6648 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04006649}
6650
Josef Bacikc759c4e2015-10-02 15:25:10 -04006651/*
6652 * Returns the free cluster for the given space info and sets empty_cluster to
6653 * what it should be based on the mount options.
6654 */
6655static struct btrfs_free_cluster *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006656fetch_cluster_info(struct btrfs_fs_info *fs_info,
6657 struct btrfs_space_info *space_info, u64 *empty_cluster)
Josef Bacikc759c4e2015-10-02 15:25:10 -04006658{
6659 struct btrfs_free_cluster *ret = NULL;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006660
6661 *empty_cluster = 0;
6662 if (btrfs_mixed_space_info(space_info))
6663 return ret;
6664
Josef Bacikc759c4e2015-10-02 15:25:10 -04006665 if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006666 ret = &fs_info->meta_alloc_cluster;
Hans van Kranenburg583b7232017-07-28 08:31:28 +02006667 if (btrfs_test_opt(fs_info, SSD))
6668 *empty_cluster = SZ_2M;
6669 else
Byongho Leeee221842015-12-15 01:42:10 +09006670 *empty_cluster = SZ_64K;
Hans van Kranenburg583b7232017-07-28 08:31:28 +02006671 } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) &&
6672 btrfs_test_opt(fs_info, SSD_SPREAD)) {
6673 *empty_cluster = SZ_2M;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006674 ret = &fs_info->data_alloc_cluster;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006675 }
6676
6677 return ret;
6678}
6679
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006680static int unpin_extent_range(struct btrfs_fs_info *fs_info,
6681 u64 start, u64 end,
Filipe Manana678886b2014-12-07 21:31:47 +00006682 const bool return_free_space)
Yan Zheng11833d62009-09-11 16:11:19 -04006683{
Yan Zheng11833d62009-09-11 16:11:19 -04006684 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04006685 struct btrfs_space_info *space_info;
6686 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006687 struct btrfs_free_cluster *cluster = NULL;
Yan Zheng11833d62009-09-11 16:11:19 -04006688 u64 len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006689 u64 total_unpinned = 0;
6690 u64 empty_cluster = 0;
Josef Bacik7b398f82012-10-22 15:52:28 -04006691 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04006692
6693 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04006694 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04006695 if (!cache ||
6696 start >= cache->key.objectid + cache->key.offset) {
6697 if (cache)
6698 btrfs_put_block_group(cache);
Josef Bacikc759c4e2015-10-02 15:25:10 -04006699 total_unpinned = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006700 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006701 BUG_ON(!cache); /* Logic error */
Josef Bacikc759c4e2015-10-02 15:25:10 -04006702
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006703 cluster = fetch_cluster_info(fs_info,
Josef Bacikc759c4e2015-10-02 15:25:10 -04006704 cache->space_info,
6705 &empty_cluster);
6706 empty_cluster <<= 1;
Yan Zheng11833d62009-09-11 16:11:19 -04006707 }
6708
6709 len = cache->key.objectid + cache->key.offset - start;
6710 len = min(len, end + 1 - start);
6711
6712 if (start < cache->last_byte_to_unpin) {
6713 len = min(len, cache->last_byte_to_unpin - start);
Filipe Manana678886b2014-12-07 21:31:47 +00006714 if (return_free_space)
6715 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04006716 }
Josef Bacik25179202008-10-29 14:49:05 -04006717
Yan, Zhengf0486c62010-05-16 10:46:25 -04006718 start += len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006719 total_unpinned += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006720 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006721
Josef Bacikc759c4e2015-10-02 15:25:10 -04006722 /*
6723 * If this space cluster has been marked as fragmented and we've
6724 * unpinned enough in this block group to potentially allow a
6725 * cluster to be created inside of it go ahead and clear the
6726 * fragmented check.
6727 */
6728 if (cluster && cluster->fragmented &&
6729 total_unpinned > empty_cluster) {
6730 spin_lock(&cluster->lock);
6731 cluster->fragmented = 0;
6732 spin_unlock(&cluster->lock);
6733 }
6734
Josef Bacik7b398f82012-10-22 15:52:28 -04006735 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006736 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006737 cache->pinned -= len;
Lu Fengqie2907c12018-10-24 20:24:02 +08006738 update_bytes_pinned(space_info, -len);
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006739
6740 trace_btrfs_space_reservation(fs_info, "pinned",
6741 space_info->flags, len, 0);
Josef Bacik4f4db212015-09-29 11:40:47 -04006742 space_info->max_extent_size = 0;
Ethan Liendec59fa2018-07-13 16:50:42 +08006743 percpu_counter_add_batch(&space_info->total_bytes_pinned,
6744 -len, BTRFS_TOTAL_BYTES_PINNED_BATCH);
Josef Bacik7b398f82012-10-22 15:52:28 -04006745 if (cache->ro) {
6746 space_info->bytes_readonly += len;
6747 readonly = true;
6748 }
Josef Bacik25179202008-10-29 14:49:05 -04006749 spin_unlock(&cache->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006750 if (!readonly && return_free_space &&
6751 global_rsv->space_info == space_info) {
6752 u64 to_add = len;
Nikolay Borisov92ac58e2017-08-17 10:52:28 +03006753
Josef Bacik7b398f82012-10-22 15:52:28 -04006754 spin_lock(&global_rsv->lock);
6755 if (!global_rsv->full) {
Josef Bacik957780e2016-05-17 13:30:55 -04006756 to_add = min(len, global_rsv->size -
6757 global_rsv->reserved);
6758 global_rsv->reserved += to_add;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08006759 update_bytes_may_use(space_info, to_add);
Josef Bacik7b398f82012-10-22 15:52:28 -04006760 if (global_rsv->reserved >= global_rsv->size)
6761 global_rsv->full = 1;
Josef Bacik957780e2016-05-17 13:30:55 -04006762 trace_btrfs_space_reservation(fs_info,
6763 "space_info",
6764 space_info->flags,
6765 to_add, 1);
6766 len -= to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006767 }
6768 spin_unlock(&global_rsv->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006769 /* Add to any tickets we may have */
6770 if (len)
6771 space_info_add_new_bytes(fs_info, space_info,
6772 len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006773 }
6774 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006775 }
6776
6777 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006778 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006779 return 0;
6780}
6781
Nikolay Borisov5ead2dd2018-03-15 16:00:26 +02006782int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans)
Chris Masona28ec192007-03-06 20:08:01 -05006783{
Nikolay Borisov5ead2dd2018-03-15 16:00:26 +02006784 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006785 struct btrfs_block_group_cache *block_group, *tmp;
6786 struct list_head *deleted_bgs;
Yan Zheng11833d62009-09-11 16:11:19 -04006787 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006788 u64 start;
6789 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006790 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006791
Yan Zheng11833d62009-09-11 16:11:19 -04006792 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6793 unpin = &fs_info->freed_extents[1];
6794 else
6795 unpin = &fs_info->freed_extents[0];
6796
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006797 while (!trans->aborted) {
Filipe Manana0e6ec382018-11-16 13:04:44 +00006798 struct extent_state *cached_state = NULL;
6799
Filipe Mananad4b450c2015-01-29 19:18:25 +00006800 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006801 ret = find_first_extent_bit(unpin, 0, &start, &end,
Filipe Manana0e6ec382018-11-16 13:04:44 +00006802 EXTENT_DIRTY, &cached_state);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006803 if (ret) {
6804 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006805 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006806 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006807
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006808 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006809 ret = btrfs_discard_extent(fs_info, start,
Li Dongyang5378e602011-03-24 10:24:27 +00006810 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006811
Filipe Manana0e6ec382018-11-16 13:04:44 +00006812 clear_extent_dirty(unpin, start, end, &cached_state);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006813 unpin_extent_range(fs_info, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006814 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana0e6ec382018-11-16 13:04:44 +00006815 free_extent_state(cached_state);
Chris Masonb9473432009-03-13 11:00:37 -04006816 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006817 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006818
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006819 /*
6820 * Transaction is finished. We don't need the lock anymore. We
6821 * do need to clean up the block groups in case of a transaction
6822 * abort.
6823 */
6824 deleted_bgs = &trans->transaction->deleted_bgs;
6825 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
6826 u64 trimmed = 0;
6827
6828 ret = -EROFS;
6829 if (!trans->aborted)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006830 ret = btrfs_discard_extent(fs_info,
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006831 block_group->key.objectid,
6832 block_group->key.offset,
6833 &trimmed);
6834
6835 list_del_init(&block_group->bg_list);
6836 btrfs_put_block_group_trimming(block_group);
6837 btrfs_put_block_group(block_group);
6838
6839 if (ret) {
6840 const char *errstr = btrfs_decode_error(ret);
6841 btrfs_warn(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02006842 "discard failed while removing blockgroup: errno=%d %s",
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006843 ret, errstr);
6844 }
6845 }
6846
Chris Masone20d96d2007-03-22 12:13:20 -04006847 return 0;
6848}
6849
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006850static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
Nikolay Borisove72cb922018-06-20 15:48:57 +03006851 struct btrfs_delayed_ref_node *node, u64 parent,
6852 u64 root_objectid, u64 owner_objectid,
6853 u64 owner_offset, int refs_to_drop,
6854 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006855{
Nikolay Borisove72cb922018-06-20 15:48:57 +03006856 struct btrfs_fs_info *info = trans->fs_info;
Chris Masone2fa7222007-03-12 16:22:34 -04006857 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006858 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006859 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006860 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006861 struct btrfs_extent_item *ei;
6862 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006863 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006864 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006865 int extent_slot = 0;
6866 int found_extent = 0;
6867 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006868 u32 item_size;
6869 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006870 u64 bytenr = node->bytenr;
6871 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006872 int last_ref = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006873 bool skinny_metadata = btrfs_fs_incompat(info, SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006874
Chris Mason5caf2a02007-04-02 11:20:42 -04006875 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006876 if (!path)
6877 return -ENOMEM;
6878
David Sterbae4058b52015-11-27 16:31:35 +01006879 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04006880 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006881
6882 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6883 BUG_ON(!is_data && refs_to_drop != 1);
6884
Josef Bacik3173a182013-03-07 14:22:04 -05006885 if (is_data)
Thomas Meyer897ca812017-10-07 16:02:21 +02006886 skinny_metadata = false;
Josef Bacik3173a182013-03-07 14:22:04 -05006887
Nikolay Borisovfbe48012018-06-20 15:48:52 +03006888 ret = lookup_extent_backref(trans, path, &iref, bytenr, num_bytes,
6889 parent, root_objectid, owner_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006890 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006891 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006892 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006893 while (extent_slot >= 0) {
6894 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006895 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006896 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006897 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006898 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6899 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006900 found_extent = 1;
6901 break;
6902 }
Josef Bacik3173a182013-03-07 14:22:04 -05006903 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6904 key.offset == owner_objectid) {
6905 found_extent = 1;
6906 break;
6907 }
Chris Mason952fcca2008-02-18 16:33:44 -05006908 if (path->slots[0] - extent_slot > 5)
6909 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006910 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006911 }
Nikolay Borisova79865c2018-06-21 09:45:00 +03006912
Zheng Yan31840ae2008-09-23 13:14:14 -04006913 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006914 BUG_ON(iref);
Nikolay Borisov87cc7a82018-06-20 15:49:12 +03006915 ret = remove_extent_backref(trans, path, NULL,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05006916 refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006917 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006918 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006919 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006920 goto out;
6921 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006922 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04006923 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006924
6925 key.objectid = bytenr;
6926 key.type = BTRFS_EXTENT_ITEM_KEY;
6927 key.offset = num_bytes;
6928
Josef Bacik3173a182013-03-07 14:22:04 -05006929 if (!is_data && skinny_metadata) {
6930 key.type = BTRFS_METADATA_ITEM_KEY;
6931 key.offset = owner_objectid;
6932 }
6933
Zheng Yan31840ae2008-09-23 13:14:14 -04006934 ret = btrfs_search_slot(trans, extent_root,
6935 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05006936 if (ret > 0 && skinny_metadata && path->slots[0]) {
6937 /*
6938 * Couldn't find our skinny metadata item,
6939 * see if we have ye olde extent item.
6940 */
6941 path->slots[0]--;
6942 btrfs_item_key_to_cpu(path->nodes[0], &key,
6943 path->slots[0]);
6944 if (key.objectid == bytenr &&
6945 key.type == BTRFS_EXTENT_ITEM_KEY &&
6946 key.offset == num_bytes)
6947 ret = 0;
6948 }
6949
6950 if (ret > 0 && skinny_metadata) {
6951 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01006952 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05006953 key.type = BTRFS_EXTENT_ITEM_KEY;
6954 key.offset = num_bytes;
6955 btrfs_release_path(path);
6956 ret = btrfs_search_slot(trans, extent_root,
6957 &key, path, -1, 1);
6958 }
6959
Josef Bacikf3465ca2008-11-12 14:19:50 -05006960 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006961 btrfs_err(info,
6962 "umm, got %d back from search, was looking for %llu",
6963 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00006964 if (ret > 0)
David Sterbaa4f78752017-06-29 18:37:49 +02006965 btrfs_print_leaf(path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006966 }
David Sterba005d6422012-09-18 07:52:32 -06006967 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006968 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006969 goto out;
6970 }
Zheng Yan31840ae2008-09-23 13:14:14 -04006971 extent_slot = path->slots[0];
6972 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306973 } else if (WARN_ON(ret == -ENOENT)) {
David Sterbaa4f78752017-06-29 18:37:49 +02006974 btrfs_print_leaf(path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006975 btrfs_err(info,
6976 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006977 bytenr, parent, root_objectid, owner_objectid,
6978 owner_offset);
Jeff Mahoney66642832016-06-10 18:19:25 -04006979 btrfs_abort_transaction(trans, ret);
Josef Bacikc4a050b2014-03-14 16:36:53 -04006980 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006981 } else {
Jeff Mahoney66642832016-06-10 18:19:25 -04006982 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006983 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05006984 }
Chris Mason5f39d392007-10-15 16:14:19 -04006985
6986 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006987 item_size = btrfs_item_size_nr(leaf, extent_slot);
David Sterba6d8ff4e2018-06-26 16:20:59 +02006988 if (unlikely(item_size < sizeof(*ei))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03006989 ret = -EINVAL;
6990 btrfs_print_v0_err(info);
6991 btrfs_abort_transaction(trans, ret);
6992 goto out;
6993 }
Chris Mason952fcca2008-02-18 16:33:44 -05006994 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04006995 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05006996 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
6997 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006998 struct btrfs_tree_block_info *bi;
6999 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
7000 bi = (struct btrfs_tree_block_info *)(ei + 1);
7001 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05007002 }
7003
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007004 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04007005 if (refs < refs_to_drop) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007006 btrfs_err(info,
7007 "trying to drop %d refs but we only have %Lu for bytenr %Lu",
7008 refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04007009 ret = -EINVAL;
Jeff Mahoney66642832016-06-10 18:19:25 -04007010 btrfs_abort_transaction(trans, ret);
Josef Bacik32b02532013-04-24 16:38:50 -04007011 goto out;
7012 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007013 refs -= refs_to_drop;
7014
7015 if (refs > 0) {
7016 if (extent_op)
7017 __run_delayed_extent_op(extent_op, leaf, ei);
7018 /*
7019 * In the case of inline back ref, reference count will
7020 * be updated by remove_extent_backref
7021 */
7022 if (iref) {
7023 BUG_ON(!found_extent);
7024 } else {
7025 btrfs_set_extent_refs(leaf, ei, refs);
7026 btrfs_mark_buffer_dirty(leaf);
7027 }
7028 if (found_extent) {
Nikolay Borisov87cc7a82018-06-20 15:49:12 +03007029 ret = remove_extent_backref(trans, path, iref,
7030 refs_to_drop, is_data,
7031 &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06007032 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007033 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007034 goto out;
7035 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007036 }
7037 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007038 if (found_extent) {
7039 BUG_ON(is_data && refs_to_drop !=
Zhaolei9ed0dea2015-08-06 22:16:24 +08007040 extent_data_ref_count(path, iref));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007041 if (iref) {
7042 BUG_ON(path->slots[0] != extent_slot);
7043 } else {
7044 BUG_ON(path->slots[0] != extent_slot + 1);
7045 path->slots[0] = extent_slot;
7046 num_to_del = 2;
7047 }
Chris Mason78fae272007-03-25 11:35:08 -04007048 }
Chris Masonb9473432009-03-13 11:00:37 -04007049
Josef Bacikfcebe452014-05-13 17:30:47 -07007050 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05007051 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
7052 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06007053 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007054 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007055 goto out;
7056 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007057 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01007058
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007059 if (is_data) {
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04007060 ret = btrfs_del_csums(trans, info, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06007061 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007062 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007063 goto out;
7064 }
Chris Mason459931e2008-12-10 09:10:46 -05007065 }
7066
Nikolay Borisove7355e52018-05-10 15:44:55 +03007067 ret = add_to_free_space_tree(trans, bytenr, num_bytes);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007068 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007069 btrfs_abort_transaction(trans, ret);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007070 goto out;
7071 }
7072
David Sterba6b279402019-03-20 12:10:15 +01007073 ret = update_block_group(trans, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06007074 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007075 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007076 goto out;
7077 }
Chris Masona28ec192007-03-06 20:08:01 -05007078 }
Josef Bacikfcebe452014-05-13 17:30:47 -07007079 btrfs_release_path(path);
7080
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007081out:
Chris Mason5caf2a02007-04-02 11:20:42 -04007082 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05007083 return ret;
7084}
7085
7086/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007087 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04007088 * delayed ref for that extent as well. This searches the delayed ref tree for
7089 * a given extent, and if there are no other delayed refs to be processed, it
7090 * removes it from the tree.
7091 */
7092static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007093 u64 bytenr)
Chris Mason1887be62009-03-13 10:11:24 -04007094{
7095 struct btrfs_delayed_ref_head *head;
7096 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007097 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04007098
7099 delayed_refs = &trans->transaction->delayed_refs;
7100 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08007101 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Chris Mason1887be62009-03-13 10:11:24 -04007102 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08007103 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04007104
Josef Bacikd7df2c72014-01-23 09:21:38 -05007105 spin_lock(&head->lock);
Liu Boe3d03962018-08-23 03:51:50 +08007106 if (!RB_EMPTY_ROOT(&head->ref_tree.rb_root))
Chris Mason1887be62009-03-13 10:11:24 -04007107 goto out;
7108
Josef Bacikbedc66172018-12-03 10:20:31 -05007109 if (cleanup_extent_op(head) != NULL)
7110 goto out;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007111
Chris Mason1887be62009-03-13 10:11:24 -04007112 /*
7113 * waiting for the lock here would deadlock. If someone else has it
7114 * locked they are already in the process of dropping it anyway
7115 */
7116 if (!mutex_trylock(&head->mutex))
7117 goto out;
7118
Josef Bacikd7baffd2018-12-03 10:20:29 -05007119 btrfs_delete_ref_head(delayed_refs, head);
Josef Bacikd7df2c72014-01-23 09:21:38 -05007120 head->processing = 0;
Josef Bacikd7baffd2018-12-03 10:20:29 -05007121
Josef Bacikd7df2c72014-01-23 09:21:38 -05007122 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04007123 spin_unlock(&delayed_refs->lock);
7124
Yan, Zhengf0486c62010-05-16 10:46:25 -04007125 BUG_ON(head->extent_op);
7126 if (head->must_insert_reserved)
7127 ret = 1;
7128
Josef Bacik31890da2018-11-21 14:05:41 -05007129 btrfs_cleanup_ref_head_accounting(trans->fs_info, delayed_refs, head);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007130 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -04007131 btrfs_put_delayed_ref_head(head);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007132 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04007133out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05007134 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08007135
7136out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04007137 spin_unlock(&delayed_refs->lock);
7138 return 0;
7139}
7140
Yan, Zhengf0486c62010-05-16 10:46:25 -04007141void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
7142 struct btrfs_root *root,
7143 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02007144 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007145{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007146 struct btrfs_fs_info *fs_info = root->fs_info;
Qu Wenruoed4f2552019-04-04 14:45:31 +08007147 struct btrfs_ref generic_ref = { 0 };
Josef Bacikb150a4f2013-06-19 15:00:04 -04007148 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007149 int ret;
7150
Qu Wenruoed4f2552019-04-04 14:45:31 +08007151 btrfs_init_generic_ref(&generic_ref, BTRFS_DROP_DELAYED_REF,
7152 buf->start, buf->len, parent);
7153 btrfs_init_tree_ref(&generic_ref, btrfs_header_level(buf),
7154 root->root_key.objectid);
7155
Yan, Zhengf0486c62010-05-16 10:46:25 -04007156 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Omar Sandovald7eae342017-06-06 16:45:31 -07007157 int old_ref_mod, new_ref_mod;
7158
Qu Wenruo8a5040f2019-04-04 14:45:33 +08007159 btrfs_ref_tree_mod(fs_info, &generic_ref);
Qu Wenruoed4f2552019-04-04 14:45:31 +08007160 ret = btrfs_add_delayed_tree_ref(trans, &generic_ref, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007161 &old_ref_mod, &new_ref_mod);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007162 BUG_ON(ret); /* -ENOMEM */
Omar Sandovald7eae342017-06-06 16:45:31 -07007163 pin = old_ref_mod >= 0 && new_ref_mod < 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007164 }
7165
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007166 if (last_ref && btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00007167 struct btrfs_block_group_cache *cache;
7168
Yan, Zhengf0486c62010-05-16 10:46:25 -04007169 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007170 ret = check_ref_cleanup(trans, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007171 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04007172 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007173 }
7174
Omar Sandoval4da8b762017-06-06 16:45:28 -07007175 pin = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007176 cache = btrfs_lookup_block_group(fs_info, buf->start);
Filipe Manana62198722015-01-06 20:18:45 +00007177
Yan, Zhengf0486c62010-05-16 10:46:25 -04007178 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
David Sterbafdf08602019-03-20 12:12:32 +01007179 pin_down_extent(cache, buf->start, buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00007180 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04007181 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007182 }
7183
7184 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
7185
7186 btrfs_add_free_space(cache, buf->start, buf->len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08007187 btrfs_free_reserved_bytes(cache, buf->len, 0);
Filipe Manana62198722015-01-06 20:18:45 +00007188 btrfs_put_block_group(cache);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007189 trace_btrfs_reserved_extent_free(fs_info, buf->start, buf->len);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007190 }
7191out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04007192 if (pin)
Qu Wenruoddf30cf2019-04-04 14:45:34 +08007193 add_pinned_bytes(fs_info, &generic_ref);
Josef Bacikb150a4f2013-06-19 15:00:04 -04007194
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007195 if (last_ref) {
7196 /*
7197 * Deleting the buffer, clear the corrupt flag since it doesn't
7198 * matter anymore.
7199 */
7200 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
7201 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007202}
7203
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007204/* Can return -ENOMEM */
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007205int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_ref *ref)
Chris Mason925baed2008-06-25 16:01:30 -04007206{
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007207 struct btrfs_fs_info *fs_info = trans->fs_info;
Omar Sandovald7eae342017-06-06 16:45:31 -07007208 int old_ref_mod, new_ref_mod;
Chris Mason925baed2008-06-25 16:01:30 -04007209 int ret;
7210
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04007211 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007212 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02007213
Chris Mason56bec292009-03-13 10:10:06 -04007214 /*
7215 * tree log blocks never actually go into the extent allocation
7216 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04007217 */
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007218 if ((ref->type == BTRFS_REF_METADATA &&
7219 ref->tree_ref.root == BTRFS_TREE_LOG_OBJECTID) ||
7220 (ref->type == BTRFS_REF_DATA &&
7221 ref->data_ref.ref_root == BTRFS_TREE_LOG_OBJECTID)) {
Chris Masonb9473432009-03-13 11:00:37 -04007222 /* unlocks the pinned mutex */
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007223 btrfs_pin_extent(fs_info, ref->bytenr, ref->len, 1);
Omar Sandovald7eae342017-06-06 16:45:31 -07007224 old_ref_mod = new_ref_mod = 0;
Chris Mason56bec292009-03-13 10:10:06 -04007225 ret = 0;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007226 } else if (ref->type == BTRFS_REF_METADATA) {
7227 ret = btrfs_add_delayed_tree_ref(trans, ref, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007228 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007229 } else {
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007230 ret = btrfs_add_delayed_data_ref(trans, ref, 0,
Omar Sandovald7eae342017-06-06 16:45:31 -07007231 &old_ref_mod, &new_ref_mod);
Chris Mason56bec292009-03-13 10:10:06 -04007232 }
Omar Sandovald7eae342017-06-06 16:45:31 -07007233
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007234 if (!((ref->type == BTRFS_REF_METADATA &&
7235 ref->tree_ref.root == BTRFS_TREE_LOG_OBJECTID) ||
7236 (ref->type == BTRFS_REF_DATA &&
7237 ref->data_ref.ref_root == BTRFS_TREE_LOG_OBJECTID)))
7238 btrfs_ref_tree_mod(fs_info, ref);
Qu Wenruo8a5040f2019-04-04 14:45:33 +08007239
Qu Wenruoddf30cf2019-04-04 14:45:34 +08007240 if (ret == 0 && old_ref_mod >= 0 && new_ref_mod < 0)
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007241 add_pinned_bytes(fs_info, ref);
Omar Sandovald7eae342017-06-06 16:45:31 -07007242
Chris Mason925baed2008-06-25 16:01:30 -04007243 return ret;
7244}
7245
Chris Masonfec577f2007-02-26 10:40:21 -05007246/*
Josef Bacik817d52f2009-07-13 21:29:25 -04007247 * when we wait for progress in the block group caching, its because
7248 * our allocation attempt failed at least once. So, we must sleep
7249 * and let some progress happen before we try again.
7250 *
7251 * This function will sleep at least once waiting for new free space to
7252 * show up, and then it will check the block group free space numbers
7253 * for our min num_bytes. Another option is to have it go ahead
7254 * and look in the rbtree for a free extent of a given size, but this
7255 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04007256 *
7257 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
7258 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04007259 */
Josef Bacik36cce922013-08-05 11:15:21 -04007260static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04007261wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
7262 u64 num_bytes)
7263{
Yan Zheng11833d62009-09-11 16:11:19 -04007264 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04007265
Yan Zheng11833d62009-09-11 16:11:19 -04007266 caching_ctl = get_caching_control(cache);
7267 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007268 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04007269
Yan Zheng11833d62009-09-11 16:11:19 -04007270 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08007271 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04007272
7273 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04007274}
7275
7276static noinline int
7277wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
7278{
7279 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04007280 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007281
7282 caching_ctl = get_caching_control(cache);
7283 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007284 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007285
7286 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04007287 if (cache->cached == BTRFS_CACHE_ERROR)
7288 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04007289 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04007290 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04007291}
7292
7293enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05007294 LOOP_CACHING_NOWAIT = 0,
7295 LOOP_CACHING_WAIT = 1,
7296 LOOP_ALLOC_CHUNK = 2,
7297 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04007298};
7299
Miao Xiee570fd22014-06-19 10:42:50 +08007300static inline void
7301btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
7302 int delalloc)
7303{
7304 if (delalloc)
7305 down_read(&cache->data_rwsem);
7306}
7307
7308static inline void
7309btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
7310 int delalloc)
7311{
7312 btrfs_get_block_group(cache);
7313 if (delalloc)
7314 down_read(&cache->data_rwsem);
7315}
7316
7317static struct btrfs_block_group_cache *
7318btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
7319 struct btrfs_free_cluster *cluster,
7320 int delalloc)
7321{
Sudip Mukherjee89771cc2016-02-16 13:32:47 +05307322 struct btrfs_block_group_cache *used_bg = NULL;
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007323
Miao Xiee570fd22014-06-19 10:42:50 +08007324 spin_lock(&cluster->refill_lock);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007325 while (1) {
7326 used_bg = cluster->block_group;
7327 if (!used_bg)
7328 return NULL;
7329
7330 if (used_bg == block_group)
7331 return used_bg;
7332
7333 btrfs_get_block_group(used_bg);
7334
7335 if (!delalloc)
7336 return used_bg;
7337
7338 if (down_read_trylock(&used_bg->data_rwsem))
7339 return used_bg;
7340
7341 spin_unlock(&cluster->refill_lock);
7342
Liu Boe321f8a2016-11-30 16:11:04 -08007343 /* We should only have one-level nested. */
7344 down_read_nested(&used_bg->data_rwsem, SINGLE_DEPTH_NESTING);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007345
7346 spin_lock(&cluster->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007347 if (used_bg == cluster->block_group)
7348 return used_bg;
7349
7350 up_read(&used_bg->data_rwsem);
7351 btrfs_put_block_group(used_bg);
7352 }
Miao Xiee570fd22014-06-19 10:42:50 +08007353}
7354
7355static inline void
7356btrfs_release_block_group(struct btrfs_block_group_cache *cache,
7357 int delalloc)
7358{
7359 if (delalloc)
7360 up_read(&cache->data_rwsem);
7361 btrfs_put_block_group(cache);
7362}
7363
Josef Bacik817d52f2009-07-13 21:29:25 -04007364/*
Qu Wenruob4bd7452018-11-02 09:39:47 +08007365 * Structure used internally for find_free_extent() function. Wraps needed
7366 * parameters.
7367 */
7368struct find_free_extent_ctl {
7369 /* Basic allocation info */
7370 u64 ram_bytes;
7371 u64 num_bytes;
7372 u64 empty_size;
7373 u64 flags;
7374 int delalloc;
7375
7376 /* Where to start the search inside the bg */
7377 u64 search_start;
7378
7379 /* For clustered allocation */
7380 u64 empty_cluster;
7381
7382 bool have_caching_bg;
7383 bool orig_have_caching_bg;
7384
7385 /* RAID index, converted from flags */
7386 int index;
7387
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007388 /*
7389 * Current loop number, check find_free_extent_update_loop() for details
7390 */
Qu Wenruob4bd7452018-11-02 09:39:47 +08007391 int loop;
7392
7393 /*
7394 * Whether we're refilling a cluster, if true we need to re-search
7395 * current block group but don't try to refill the cluster again.
7396 */
7397 bool retry_clustered;
7398
7399 /*
7400 * Whether we're updating free space cache, if true we need to re-search
7401 * current block group but don't try updating free space cache again.
7402 */
7403 bool retry_unclustered;
7404
7405 /* If current block group is cached */
7406 int cached;
7407
7408 /* Max contiguous hole found */
7409 u64 max_extent_size;
7410
7411 /* Total free space from free space cache, not always contiguous */
7412 u64 total_free_space;
7413
7414 /* Found result */
7415 u64 found_offset;
7416};
7417
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007418
7419/*
7420 * Helper function for find_free_extent().
7421 *
7422 * Return -ENOENT to inform caller that we need fallback to unclustered mode.
7423 * Return -EAGAIN to inform caller that we need to re-search this block group
7424 * Return >0 to inform caller that we find nothing
7425 * Return 0 means we have found a location and set ffe_ctl->found_offset.
7426 */
7427static int find_free_extent_clustered(struct btrfs_block_group_cache *bg,
7428 struct btrfs_free_cluster *last_ptr,
7429 struct find_free_extent_ctl *ffe_ctl,
7430 struct btrfs_block_group_cache **cluster_bg_ret)
7431{
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007432 struct btrfs_block_group_cache *cluster_bg;
7433 u64 aligned_cluster;
7434 u64 offset;
7435 int ret;
7436
7437 cluster_bg = btrfs_lock_cluster(bg, last_ptr, ffe_ctl->delalloc);
7438 if (!cluster_bg)
7439 goto refill_cluster;
7440 if (cluster_bg != bg && (cluster_bg->ro ||
7441 !block_group_bits(cluster_bg, ffe_ctl->flags)))
7442 goto release_cluster;
7443
7444 offset = btrfs_alloc_from_cluster(cluster_bg, last_ptr,
7445 ffe_ctl->num_bytes, cluster_bg->key.objectid,
7446 &ffe_ctl->max_extent_size);
7447 if (offset) {
7448 /* We have a block, we're done */
7449 spin_unlock(&last_ptr->refill_lock);
7450 trace_btrfs_reserve_extent_cluster(cluster_bg,
7451 ffe_ctl->search_start, ffe_ctl->num_bytes);
7452 *cluster_bg_ret = cluster_bg;
7453 ffe_ctl->found_offset = offset;
7454 return 0;
7455 }
7456 WARN_ON(last_ptr->block_group != cluster_bg);
7457
7458release_cluster:
7459 /*
7460 * If we are on LOOP_NO_EMPTY_SIZE, we can't set up a new clusters, so
7461 * lets just skip it and let the allocator find whatever block it can
7462 * find. If we reach this point, we will have tried the cluster
7463 * allocator plenty of times and not have found anything, so we are
7464 * likely way too fragmented for the clustering stuff to find anything.
7465 *
7466 * However, if the cluster is taken from the current block group,
7467 * release the cluster first, so that we stand a better chance of
7468 * succeeding in the unclustered allocation.
7469 */
7470 if (ffe_ctl->loop >= LOOP_NO_EMPTY_SIZE && cluster_bg != bg) {
7471 spin_unlock(&last_ptr->refill_lock);
7472 btrfs_release_block_group(cluster_bg, ffe_ctl->delalloc);
7473 return -ENOENT;
7474 }
7475
7476 /* This cluster didn't work out, free it and start over */
7477 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7478
7479 if (cluster_bg != bg)
7480 btrfs_release_block_group(cluster_bg, ffe_ctl->delalloc);
7481
7482refill_cluster:
7483 if (ffe_ctl->loop >= LOOP_NO_EMPTY_SIZE) {
7484 spin_unlock(&last_ptr->refill_lock);
7485 return -ENOENT;
7486 }
7487
7488 aligned_cluster = max_t(u64,
7489 ffe_ctl->empty_cluster + ffe_ctl->empty_size,
7490 bg->full_stripe_len);
David Sterba2ceeae22019-03-20 13:53:49 +01007491 ret = btrfs_find_space_cluster(bg, last_ptr, ffe_ctl->search_start,
7492 ffe_ctl->num_bytes, aligned_cluster);
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007493 if (ret == 0) {
7494 /* Now pull our allocation out of this cluster */
7495 offset = btrfs_alloc_from_cluster(bg, last_ptr,
7496 ffe_ctl->num_bytes, ffe_ctl->search_start,
7497 &ffe_ctl->max_extent_size);
7498 if (offset) {
7499 /* We found one, proceed */
7500 spin_unlock(&last_ptr->refill_lock);
7501 trace_btrfs_reserve_extent_cluster(bg,
7502 ffe_ctl->search_start,
7503 ffe_ctl->num_bytes);
7504 ffe_ctl->found_offset = offset;
7505 return 0;
7506 }
7507 } else if (!ffe_ctl->cached && ffe_ctl->loop > LOOP_CACHING_NOWAIT &&
7508 !ffe_ctl->retry_clustered) {
7509 spin_unlock(&last_ptr->refill_lock);
7510
7511 ffe_ctl->retry_clustered = true;
7512 wait_block_group_cache_progress(bg, ffe_ctl->num_bytes +
7513 ffe_ctl->empty_cluster + ffe_ctl->empty_size);
7514 return -EAGAIN;
7515 }
7516 /*
7517 * At this point we either didn't find a cluster or we weren't able to
7518 * allocate a block from our cluster. Free the cluster we've been
7519 * trying to use, and go to the next block group.
7520 */
7521 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7522 spin_unlock(&last_ptr->refill_lock);
7523 return 1;
7524}
7525
Qu Wenruob4bd7452018-11-02 09:39:47 +08007526/*
Qu Wenruoe1a41842018-11-02 09:39:49 +08007527 * Return >0 to inform caller that we find nothing
7528 * Return 0 when we found an free extent and set ffe_ctrl->found_offset
7529 * Return -EAGAIN to inform caller that we need to re-search this block group
7530 */
7531static int find_free_extent_unclustered(struct btrfs_block_group_cache *bg,
7532 struct btrfs_free_cluster *last_ptr,
7533 struct find_free_extent_ctl *ffe_ctl)
7534{
7535 u64 offset;
7536
7537 /*
7538 * We are doing an unclustered allocation, set the fragmented flag so
7539 * we don't bother trying to setup a cluster again until we get more
7540 * space.
7541 */
7542 if (unlikely(last_ptr)) {
7543 spin_lock(&last_ptr->lock);
7544 last_ptr->fragmented = 1;
7545 spin_unlock(&last_ptr->lock);
7546 }
7547 if (ffe_ctl->cached) {
7548 struct btrfs_free_space_ctl *free_space_ctl;
7549
7550 free_space_ctl = bg->free_space_ctl;
7551 spin_lock(&free_space_ctl->tree_lock);
7552 if (free_space_ctl->free_space <
7553 ffe_ctl->num_bytes + ffe_ctl->empty_cluster +
7554 ffe_ctl->empty_size) {
7555 ffe_ctl->total_free_space = max_t(u64,
7556 ffe_ctl->total_free_space,
7557 free_space_ctl->free_space);
7558 spin_unlock(&free_space_ctl->tree_lock);
7559 return 1;
7560 }
7561 spin_unlock(&free_space_ctl->tree_lock);
7562 }
7563
7564 offset = btrfs_find_space_for_alloc(bg, ffe_ctl->search_start,
7565 ffe_ctl->num_bytes, ffe_ctl->empty_size,
7566 &ffe_ctl->max_extent_size);
7567
7568 /*
7569 * If we didn't find a chunk, and we haven't failed on this block group
7570 * before, and this block group is in the middle of caching and we are
7571 * ok with waiting, then go ahead and wait for progress to be made, and
7572 * set @retry_unclustered to true.
7573 *
7574 * If @retry_unclustered is true then we've already waited on this
7575 * block group once and should move on to the next block group.
7576 */
7577 if (!offset && !ffe_ctl->retry_unclustered && !ffe_ctl->cached &&
7578 ffe_ctl->loop > LOOP_CACHING_NOWAIT) {
7579 wait_block_group_cache_progress(bg, ffe_ctl->num_bytes +
7580 ffe_ctl->empty_size);
7581 ffe_ctl->retry_unclustered = true;
7582 return -EAGAIN;
7583 } else if (!offset) {
7584 return 1;
7585 }
7586 ffe_ctl->found_offset = offset;
7587 return 0;
7588}
7589
7590/*
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007591 * Return >0 means caller needs to re-search for free extent
7592 * Return 0 means we have the needed free extent.
7593 * Return <0 means we failed to locate any free extent.
7594 */
7595static int find_free_extent_update_loop(struct btrfs_fs_info *fs_info,
7596 struct btrfs_free_cluster *last_ptr,
7597 struct btrfs_key *ins,
7598 struct find_free_extent_ctl *ffe_ctl,
7599 int full_search, bool use_cluster)
7600{
7601 struct btrfs_root *root = fs_info->extent_root;
7602 int ret;
7603
7604 if ((ffe_ctl->loop == LOOP_CACHING_NOWAIT) &&
7605 ffe_ctl->have_caching_bg && !ffe_ctl->orig_have_caching_bg)
7606 ffe_ctl->orig_have_caching_bg = true;
7607
7608 if (!ins->objectid && ffe_ctl->loop >= LOOP_CACHING_WAIT &&
7609 ffe_ctl->have_caching_bg)
7610 return 1;
7611
7612 if (!ins->objectid && ++(ffe_ctl->index) < BTRFS_NR_RAID_TYPES)
7613 return 1;
7614
7615 if (ins->objectid) {
7616 if (!use_cluster && last_ptr) {
7617 spin_lock(&last_ptr->lock);
7618 last_ptr->window_start = ins->objectid;
7619 spin_unlock(&last_ptr->lock);
7620 }
7621 return 0;
7622 }
7623
7624 /*
7625 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7626 * caching kthreads as we move along
7627 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7628 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7629 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7630 * again
7631 */
7632 if (ffe_ctl->loop < LOOP_NO_EMPTY_SIZE) {
7633 ffe_ctl->index = 0;
7634 if (ffe_ctl->loop == LOOP_CACHING_NOWAIT) {
7635 /*
7636 * We want to skip the LOOP_CACHING_WAIT step if we
7637 * don't have any uncached bgs and we've already done a
7638 * full search through.
7639 */
7640 if (ffe_ctl->orig_have_caching_bg || !full_search)
7641 ffe_ctl->loop = LOOP_CACHING_WAIT;
7642 else
7643 ffe_ctl->loop = LOOP_ALLOC_CHUNK;
7644 } else {
7645 ffe_ctl->loop++;
7646 }
7647
7648 if (ffe_ctl->loop == LOOP_ALLOC_CHUNK) {
7649 struct btrfs_trans_handle *trans;
7650 int exist = 0;
7651
7652 trans = current->journal_info;
7653 if (trans)
7654 exist = 1;
7655 else
7656 trans = btrfs_join_transaction(root);
7657
7658 if (IS_ERR(trans)) {
7659 ret = PTR_ERR(trans);
7660 return ret;
7661 }
7662
7663 ret = do_chunk_alloc(trans, ffe_ctl->flags,
7664 CHUNK_ALLOC_FORCE);
7665
7666 /*
7667 * If we can't allocate a new chunk we've already looped
7668 * through at least once, move on to the NO_EMPTY_SIZE
7669 * case.
7670 */
7671 if (ret == -ENOSPC)
7672 ffe_ctl->loop = LOOP_NO_EMPTY_SIZE;
7673
7674 /* Do not bail out on ENOSPC since we can do more. */
7675 if (ret < 0 && ret != -ENOSPC)
7676 btrfs_abort_transaction(trans, ret);
7677 else
7678 ret = 0;
7679 if (!exist)
7680 btrfs_end_transaction(trans);
7681 if (ret)
7682 return ret;
7683 }
7684
7685 if (ffe_ctl->loop == LOOP_NO_EMPTY_SIZE) {
7686 /*
7687 * Don't loop again if we already have no empty_size and
7688 * no empty_cluster.
7689 */
7690 if (ffe_ctl->empty_size == 0 &&
7691 ffe_ctl->empty_cluster == 0)
7692 return -ENOSPC;
7693 ffe_ctl->empty_size = 0;
7694 ffe_ctl->empty_cluster = 0;
7695 }
7696 return 1;
7697 }
7698 return -ENOSPC;
7699}
7700
7701/*
Chris Masonfec577f2007-02-26 10:40:21 -05007702 * walks the btree of allocated extents and find a hole of a given size.
7703 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08007704 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04007705 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08007706 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05007707 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08007708 *
7709 * If there is no suitable free space, we will record the max size of
7710 * the free space extent currently.
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007711 *
7712 * The overall logic and call chain:
7713 *
7714 * find_free_extent()
7715 * |- Iterate through all block groups
7716 * | |- Get a valid block group
7717 * | |- Try to do clustered allocation in that block group
7718 * | |- Try to do unclustered allocation in that block group
7719 * | |- Check if the result is valid
7720 * | | |- If valid, then exit
7721 * | |- Jump to next block group
7722 * |
7723 * |- Push harder to find free extents
7724 * |- If not found, re-iterate all block groups
Chris Masonfec577f2007-02-26 10:40:21 -05007725 */
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05007726static noinline int find_free_extent(struct btrfs_fs_info *fs_info,
Wang Xiaoguang18513092016-07-25 15:51:40 +08007727 u64 ram_bytes, u64 num_bytes, u64 empty_size,
7728 u64 hint_byte, struct btrfs_key *ins,
7729 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007730{
Josef Bacik80eb2342008-10-29 14:49:05 -04007731 int ret = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007732 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04007733 struct btrfs_block_group_cache *block_group = NULL;
Qu Wenruob4bd7452018-11-02 09:39:47 +08007734 struct find_free_extent_ctl ffe_ctl = {0};
Josef Bacik80eb2342008-10-29 14:49:05 -04007735 struct btrfs_space_info *space_info;
Josef Bacik67377732010-09-16 16:19:09 -04007736 bool use_cluster = true;
Josef Bacika5e681d2015-10-01 14:54:10 -04007737 bool full_search = false;
Chris Masonfec577f2007-02-26 10:40:21 -05007738
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007739 WARN_ON(num_bytes < fs_info->sectorsize);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007740
7741 ffe_ctl.ram_bytes = ram_bytes;
7742 ffe_ctl.num_bytes = num_bytes;
7743 ffe_ctl.empty_size = empty_size;
7744 ffe_ctl.flags = flags;
7745 ffe_ctl.search_start = 0;
7746 ffe_ctl.retry_clustered = false;
7747 ffe_ctl.retry_unclustered = false;
7748 ffe_ctl.delalloc = delalloc;
7749 ffe_ctl.index = btrfs_bg_flags_to_raid_index(flags);
7750 ffe_ctl.have_caching_bg = false;
7751 ffe_ctl.orig_have_caching_bg = false;
7752 ffe_ctl.found_offset = 0;
7753
David Sterba962a2982014-06-04 18:41:45 +02007754 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04007755 ins->objectid = 0;
7756 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04007757
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007758 trace_find_free_extent(fs_info, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05007759
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007760 space_info = __find_space_info(fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007761 if (!space_info) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007762 btrfs_err(fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007763 return -ENOSPC;
7764 }
Josef Bacik2552d172009-04-03 10:14:19 -04007765
Josef Bacik67377732010-09-16 16:19:09 -04007766 /*
Josef Bacik4f4db212015-09-29 11:40:47 -04007767 * If our free space is heavily fragmented we may not be able to make
7768 * big contiguous allocations, so instead of doing the expensive search
7769 * for free space, simply return ENOSPC with our max_extent_size so we
7770 * can go ahead and search for a more manageable chunk.
7771 *
7772 * If our max_extent_size is large enough for our allocation simply
7773 * disable clustering since we will likely not be able to find enough
7774 * space to create a cluster and induce latency trying.
Josef Bacik67377732010-09-16 16:19:09 -04007775 */
Josef Bacik4f4db212015-09-29 11:40:47 -04007776 if (unlikely(space_info->max_extent_size)) {
7777 spin_lock(&space_info->lock);
7778 if (space_info->max_extent_size &&
7779 num_bytes > space_info->max_extent_size) {
7780 ins->offset = space_info->max_extent_size;
7781 spin_unlock(&space_info->lock);
7782 return -ENOSPC;
7783 } else if (space_info->max_extent_size) {
7784 use_cluster = false;
7785 }
7786 spin_unlock(&space_info->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007787 }
7788
Qu Wenruob4bd7452018-11-02 09:39:47 +08007789 last_ptr = fetch_cluster_info(fs_info, space_info,
7790 &ffe_ctl.empty_cluster);
Chris Mason239b14b2008-03-24 15:02:07 -04007791 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007792 spin_lock(&last_ptr->lock);
7793 if (last_ptr->block_group)
7794 hint_byte = last_ptr->window_start;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007795 if (last_ptr->fragmented) {
7796 /*
7797 * We still set window_start so we can keep track of the
7798 * last place we found an allocation to try and save
7799 * some time.
7800 */
7801 hint_byte = last_ptr->window_start;
7802 use_cluster = false;
7803 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007804 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007805 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007806
Qu Wenruob4bd7452018-11-02 09:39:47 +08007807 ffe_ctl.search_start = max(ffe_ctl.search_start,
7808 first_logical_byte(fs_info, 0));
7809 ffe_ctl.search_start = max(ffe_ctl.search_start, hint_byte);
7810 if (ffe_ctl.search_start == hint_byte) {
7811 block_group = btrfs_lookup_block_group(fs_info,
7812 ffe_ctl.search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04007813 /*
7814 * we don't want to use the block group if it doesn't match our
7815 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05007816 *
7817 * However if we are re-searching with an ideal block group
7818 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04007819 */
David Sterbab6919a52013-04-29 13:39:40 +00007820 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05007821 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04007822 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007823 if (list_empty(&block_group->list) ||
7824 block_group->ro) {
7825 /*
7826 * someone is removing this block group,
7827 * we can't jump into the have_block_group
7828 * target because our list pointers are not
7829 * valid
7830 */
7831 btrfs_put_block_group(block_group);
7832 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05007833 } else {
Qu Wenruob4bd7452018-11-02 09:39:47 +08007834 ffe_ctl.index = btrfs_bg_flags_to_raid_index(
Qu Wenruo3e72ee82018-01-30 18:20:45 +08007835 block_group->flags);
Miao Xiee570fd22014-06-19 10:42:50 +08007836 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04007837 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05007838 }
Josef Bacik2552d172009-04-03 10:14:19 -04007839 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007840 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04007841 }
Chris Mason42e70e72008-11-07 18:17:11 -05007842 }
Josef Bacik2552d172009-04-03 10:14:19 -04007843search:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007844 ffe_ctl.have_caching_bg = false;
7845 if (ffe_ctl.index == btrfs_bg_flags_to_raid_index(flags) ||
7846 ffe_ctl.index == 0)
Josef Bacika5e681d2015-10-01 14:54:10 -04007847 full_search = true;
Josef Bacik80eb2342008-10-29 14:49:05 -04007848 down_read(&space_info->groups_sem);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007849 list_for_each_entry(block_group,
7850 &space_info->block_groups[ffe_ctl.index], list) {
Jeff Mahoney14443932017-07-19 23:25:51 -04007851 /* If the block group is read-only, we can skip it entirely. */
7852 if (unlikely(block_group->ro))
7853 continue;
7854
Miao Xiee570fd22014-06-19 10:42:50 +08007855 btrfs_grab_block_group(block_group, delalloc);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007856 ffe_ctl.search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05007857
Chris Mason83a50de2010-12-13 15:06:46 -05007858 /*
7859 * this can happen if we end up cycling through all the
7860 * raid types, but we want to make sure we only allocate
7861 * for the proper type.
7862 */
David Sterbab6919a52013-04-29 13:39:40 +00007863 if (!block_group_bits(block_group, flags)) {
Bart Van Asschebece2e82018-06-20 10:03:31 -07007864 u64 extra = BTRFS_BLOCK_GROUP_DUP |
Chris Mason83a50de2010-12-13 15:06:46 -05007865 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007866 BTRFS_BLOCK_GROUP_RAID5 |
7867 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05007868 BTRFS_BLOCK_GROUP_RAID10;
7869
7870 /*
7871 * if they asked for extra copies and this block group
7872 * doesn't provide them, bail. This does allow us to
7873 * fill raid0 from raid1.
7874 */
David Sterbab6919a52013-04-29 13:39:40 +00007875 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05007876 goto loop;
7877 }
7878
Josef Bacik2552d172009-04-03 10:14:19 -04007879have_block_group:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007880 ffe_ctl.cached = block_group_cache_done(block_group);
7881 if (unlikely(!ffe_ctl.cached)) {
7882 ffe_ctl.have_caching_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00007883 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04007884 BUG_ON(ret < 0);
7885 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05007886 }
7887
Josef Bacik36cce922013-08-05 11:15:21 -04007888 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
7889 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007890
Josef Bacik0a243252009-09-11 16:11:20 -04007891 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007892 * Ok we want to try and use the cluster allocator, so
7893 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04007894 */
Josef Bacikc759c4e2015-10-02 15:25:10 -04007895 if (last_ptr && use_cluster) {
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007896 struct btrfs_block_group_cache *cluster_bg = NULL;
Chris Mason44fb5512009-06-04 15:34:51 -04007897
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007898 ret = find_free_extent_clustered(block_group, last_ptr,
7899 &ffe_ctl, &cluster_bg);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007900
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007901 if (ret == 0) {
7902 if (cluster_bg && cluster_bg != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08007903 btrfs_release_block_group(block_group,
7904 delalloc);
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007905 block_group = cluster_bg;
Miao Xie215a63d2014-01-15 20:00:56 +08007906 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007907 goto checks;
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007908 } else if (ret == -EAGAIN) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007909 goto have_block_group;
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007910 } else if (ret > 0) {
7911 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007912 }
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007913 /* ret == -ENOENT case falls through */
Chris Masonfa9c0d792009-04-03 09:47:43 -04007914 }
7915
Qu Wenruoe1a41842018-11-02 09:39:49 +08007916 ret = find_free_extent_unclustered(block_group, last_ptr,
7917 &ffe_ctl);
7918 if (ret == -EAGAIN)
Josef Bacik817d52f2009-07-13 21:29:25 -04007919 goto have_block_group;
Qu Wenruoe1a41842018-11-02 09:39:49 +08007920 else if (ret > 0)
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007921 goto loop;
Qu Wenruoe1a41842018-11-02 09:39:49 +08007922 /* ret == 0 case falls through */
Chris Masonfa9c0d792009-04-03 09:47:43 -04007923checks:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007924 ffe_ctl.search_start = round_up(ffe_ctl.found_offset,
7925 fs_info->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04007926
Josef Bacik2552d172009-04-03 10:14:19 -04007927 /* move on to the next group */
Qu Wenruob4bd7452018-11-02 09:39:47 +08007928 if (ffe_ctl.search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08007929 block_group->key.objectid + block_group->key.offset) {
Qu Wenruob4bd7452018-11-02 09:39:47 +08007930 btrfs_add_free_space(block_group, ffe_ctl.found_offset,
7931 num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04007932 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04007933 }
Josef Bacik80eb2342008-10-29 14:49:05 -04007934
Qu Wenruob4bd7452018-11-02 09:39:47 +08007935 if (ffe_ctl.found_offset < ffe_ctl.search_start)
7936 btrfs_add_free_space(block_group, ffe_ctl.found_offset,
7937 ffe_ctl.search_start - ffe_ctl.found_offset);
Josef Bacik6226cb02009-04-03 10:14:18 -04007938
Wang Xiaoguang18513092016-07-25 15:51:40 +08007939 ret = btrfs_add_reserved_bytes(block_group, ram_bytes,
7940 num_bytes, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007941 if (ret == -EAGAIN) {
Qu Wenruob4bd7452018-11-02 09:39:47 +08007942 btrfs_add_free_space(block_group, ffe_ctl.found_offset,
7943 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007944 goto loop;
7945 }
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007946 btrfs_inc_block_group_reservations(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -04007947
Josef Bacik2552d172009-04-03 10:14:19 -04007948 /* we are all good, lets return */
Qu Wenruob4bd7452018-11-02 09:39:47 +08007949 ins->objectid = ffe_ctl.search_start;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007950 ins->offset = num_bytes;
7951
Qu Wenruob4bd7452018-11-02 09:39:47 +08007952 trace_btrfs_reserve_extent(block_group, ffe_ctl.search_start,
7953 num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08007954 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007955 break;
7956loop:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007957 ffe_ctl.retry_clustered = false;
7958 ffe_ctl.retry_unclustered = false;
Qu Wenruo3e72ee82018-01-30 18:20:45 +08007959 BUG_ON(btrfs_bg_flags_to_raid_index(block_group->flags) !=
Qu Wenruob4bd7452018-11-02 09:39:47 +08007960 ffe_ctl.index);
Miao Xiee570fd22014-06-19 10:42:50 +08007961 btrfs_release_block_group(block_group, delalloc);
Jeff Mahoney14443932017-07-19 23:25:51 -04007962 cond_resched();
Josef Bacik2552d172009-04-03 10:14:19 -04007963 }
7964 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05007965
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007966 ret = find_free_extent_update_loop(fs_info, last_ptr, ins, &ffe_ctl,
7967 full_search, use_cluster);
7968 if (ret > 0)
Miao Xie60d2adb2011-09-09 17:34:35 +08007969 goto search;
7970
Josef Bacik4f4db212015-09-29 11:40:47 -04007971 if (ret == -ENOSPC) {
Qu Wenruob4bd7452018-11-02 09:39:47 +08007972 /*
7973 * Use ffe_ctl->total_free_space as fallback if we can't find
7974 * any contiguous hole.
7975 */
7976 if (!ffe_ctl.max_extent_size)
7977 ffe_ctl.max_extent_size = ffe_ctl.total_free_space;
Josef Bacik4f4db212015-09-29 11:40:47 -04007978 spin_lock(&space_info->lock);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007979 space_info->max_extent_size = ffe_ctl.max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04007980 spin_unlock(&space_info->lock);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007981 ins->offset = ffe_ctl.max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04007982 }
Chris Mason0f70abe2007-02-28 16:46:22 -05007983 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05007984}
Chris Masonec44a352008-04-28 15:29:52 -04007985
Josef Bacikb78e5612018-11-21 14:03:07 -05007986#define DUMP_BLOCK_RSV(fs_info, rsv_name) \
7987do { \
7988 struct btrfs_block_rsv *__rsv = &(fs_info)->rsv_name; \
7989 spin_lock(&__rsv->lock); \
7990 btrfs_info(fs_info, #rsv_name ": size %llu reserved %llu", \
7991 __rsv->size, __rsv->reserved); \
7992 spin_unlock(&__rsv->lock); \
7993} while (0)
7994
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007995static void dump_space_info(struct btrfs_fs_info *fs_info,
7996 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007997 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04007998{
7999 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb822010-05-16 10:46:24 -04008000 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008001
Josef Bacik9ed74f22009-09-11 16:12:44 -04008002 spin_lock(&info->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008003 btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull",
8004 info->flags,
Liu Bo41361352017-02-13 15:42:21 -08008005 info->total_bytes - btrfs_space_info_used(info, true),
8006 info->full ? "" : "not ");
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008007 btrfs_info(fs_info,
8008 "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu",
8009 info->total_bytes, info->bytes_used, info->bytes_pinned,
8010 info->bytes_reserved, info->bytes_may_use,
8011 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008012 spin_unlock(&info->lock);
8013
Josef Bacikb78e5612018-11-21 14:03:07 -05008014 DUMP_BLOCK_RSV(fs_info, global_block_rsv);
8015 DUMP_BLOCK_RSV(fs_info, trans_block_rsv);
8016 DUMP_BLOCK_RSV(fs_info, chunk_block_rsv);
8017 DUMP_BLOCK_RSV(fs_info, delayed_block_rsv);
8018 DUMP_BLOCK_RSV(fs_info, delayed_refs_rsv);
8019
Josef Bacik9ed74f22009-09-11 16:12:44 -04008020 if (!dump_block_groups)
8021 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008022
Josef Bacik80eb2342008-10-29 14:49:05 -04008023 down_read(&info->groups_sem);
Yan, Zhengb742bb822010-05-16 10:46:24 -04008024again:
8025 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04008026 spin_lock(&cache->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008027 btrfs_info(fs_info,
8028 "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s",
8029 cache->key.objectid, cache->key.offset,
8030 btrfs_block_group_used(&cache->item), cache->pinned,
8031 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04008032 btrfs_dump_free_space(cache, bytes);
8033 spin_unlock(&cache->lock);
8034 }
Yan, Zhengb742bb822010-05-16 10:46:24 -04008035 if (++index < BTRFS_NR_RAID_TYPES)
8036 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04008037 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008038}
Zheng Yane8569812008-09-26 10:05:48 -04008039
Nikolay Borisov6f47c702018-03-13 12:22:32 +02008040/*
8041 * btrfs_reserve_extent - entry point to the extent allocator. Tries to find a
8042 * hole that is at least as big as @num_bytes.
8043 *
8044 * @root - The root that will contain this extent
8045 *
8046 * @ram_bytes - The amount of space in ram that @num_bytes take. This
8047 * is used for accounting purposes. This value differs
8048 * from @num_bytes only in the case of compressed extents.
8049 *
8050 * @num_bytes - Number of bytes to allocate on-disk.
8051 *
8052 * @min_alloc_size - Indicates the minimum amount of space that the
8053 * allocator should try to satisfy. In some cases
8054 * @num_bytes may be larger than what is required and if
8055 * the filesystem is fragmented then allocation fails.
8056 * However, the presence of @min_alloc_size gives a
8057 * chance to try and satisfy the smaller allocation.
8058 *
8059 * @empty_size - A hint that you plan on doing more COW. This is the
8060 * size in bytes the allocator should try to find free
8061 * next to the block it returns. This is just a hint and
8062 * may be ignored by the allocator.
8063 *
8064 * @hint_byte - Hint to the allocator to start searching above the byte
8065 * address passed. It might be ignored.
8066 *
8067 * @ins - This key is modified to record the found hole. It will
8068 * have the following values:
8069 * ins->objectid == start position
8070 * ins->flags = BTRFS_EXTENT_ITEM_KEY
8071 * ins->offset == the size of the hole.
8072 *
8073 * @is_data - Boolean flag indicating whether an extent is
8074 * allocated for data (true) or metadata (false)
8075 *
8076 * @delalloc - Boolean flag indicating whether this allocation is for
8077 * delalloc or not. If 'true' data_rwsem of block groups
8078 * is going to be acquired.
8079 *
8080 *
8081 * Returns 0 when an allocation succeeded or < 0 when an error occurred. In
8082 * case -ENOSPC is returned then @ins->offset will contain the size of the
8083 * largest available hole the allocator managed to find.
8084 */
Wang Xiaoguang18513092016-07-25 15:51:40 +08008085int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
Yan Zheng11833d62009-09-11 16:11:19 -04008086 u64 num_bytes, u64 min_alloc_size,
8087 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08008088 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05008089{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008090 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik36af4e02015-09-25 16:13:11 -04008091 bool final_tried = num_bytes == min_alloc_size;
David Sterbab6919a52013-04-29 13:39:40 +00008092 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05008093 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04008094
Jeff Mahoney1b868262017-05-17 11:38:35 -04008095 flags = get_alloc_profile_by_root(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04008096again:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008097 WARN_ON(num_bytes < fs_info->sectorsize);
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05008098 ret = find_free_extent(fs_info, ram_bytes, num_bytes, empty_size,
Wang Xiaoguang18513092016-07-25 15:51:40 +08008099 hint_byte, ins, flags, delalloc);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008100 if (!ret && !is_data) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008101 btrfs_dec_block_group_reservations(fs_info, ins->objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008102 } else if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08008103 if (!final_tried && ins->offset) {
8104 num_bytes = min(num_bytes >> 1, ins->offset);
Jeff Mahoneyda170662016-06-15 09:22:56 -04008105 num_bytes = round_down(num_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008106 fs_info->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05008107 num_bytes = max(num_bytes, min_alloc_size);
Wang Xiaoguang18513092016-07-25 15:51:40 +08008108 ram_bytes = num_bytes;
Miao Xie9e622d62012-01-26 15:01:12 -05008109 if (num_bytes == min_alloc_size)
8110 final_tried = true;
8111 goto again;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008112 } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xie9e622d62012-01-26 15:01:12 -05008113 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008114
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008115 sinfo = __find_space_info(fs_info, flags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008116 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008117 "allocation failed flags %llu, wanted %llu",
8118 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01008119 if (sinfo)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008120 dump_space_info(fs_info, sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05008121 }
Chris Mason925baed2008-06-25 16:01:30 -04008122 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008123
8124 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008125}
8126
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008127static int __btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008128 u64 start, u64 len,
8129 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04008130{
Josef Bacik0f9dd462008-09-23 13:14:11 -04008131 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05008132 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008133
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008134 cache = btrfs_lookup_block_group(fs_info, start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008135 if (!cache) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008136 btrfs_err(fs_info, "Unable to find block group for %llu",
8137 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008138 return -ENOSPC;
8139 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05008140
Chris Masone688b7252011-10-31 20:52:39 -04008141 if (pin)
David Sterbafdf08602019-03-20 12:12:32 +01008142 pin_down_extent(cache, start, len, 1);
Chris Masone688b7252011-10-31 20:52:39 -04008143 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008144 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008145 ret = btrfs_discard_extent(fs_info, start, len, NULL);
Chris Masone688b7252011-10-31 20:52:39 -04008146 btrfs_add_free_space(cache, start, len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08008147 btrfs_free_reserved_bytes(cache, len, delalloc);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008148 trace_btrfs_reserved_extent_free(fs_info, start, len);
Chris Masone688b7252011-10-31 20:52:39 -04008149 }
Dongsheng Yang31193212014-12-12 16:44:35 +08008150
Chris Masonfa9c0d792009-04-03 09:47:43 -04008151 btrfs_put_block_group(cache);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008152 return ret;
8153}
8154
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008155int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008156 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04008157{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008158 return __btrfs_free_reserved_extent(fs_info, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04008159}
8160
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008161int btrfs_free_and_pin_reserved_extent(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04008162 u64 start, u64 len)
8163{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008164 return __btrfs_free_reserved_extent(fs_info, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04008165}
8166
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008167static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008168 u64 parent, u64 root_objectid,
8169 u64 flags, u64 owner, u64 offset,
8170 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008171{
Nikolay Borisovef89b822018-06-20 15:48:58 +03008172 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008173 int ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008174 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008175 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008176 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008177 struct extent_buffer *leaf;
8178 int type;
8179 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04008180
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008181 if (parent > 0)
8182 type = BTRFS_SHARED_DATA_REF_KEY;
8183 else
8184 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04008185
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008186 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05008187
8188 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008189 if (!path)
8190 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05008191
Chris Masonb9473432009-03-13 11:00:37 -04008192 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008193 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8194 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008195 if (ret) {
8196 btrfs_free_path(path);
8197 return ret;
8198 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008199
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008200 leaf = path->nodes[0];
8201 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05008202 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008203 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
8204 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8205 btrfs_set_extent_flags(leaf, extent_item,
8206 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05008207
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008208 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8209 btrfs_set_extent_inline_ref_type(leaf, iref, type);
8210 if (parent > 0) {
8211 struct btrfs_shared_data_ref *ref;
8212 ref = (struct btrfs_shared_data_ref *)(iref + 1);
8213 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8214 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
8215 } else {
8216 struct btrfs_extent_data_ref *ref;
8217 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
8218 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
8219 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
8220 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
8221 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
8222 }
Chris Mason47e4bb92008-02-01 14:51:59 -05008223
8224 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05008225 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04008226
Nikolay Borisov25a356d2018-05-10 15:44:54 +03008227 ret = remove_from_free_space_tree(trans, ins->objectid, ins->offset);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008228 if (ret)
8229 return ret;
8230
David Sterba6b279402019-03-20 12:10:15 +01008231 ret = update_block_group(trans, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008232 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008233 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008234 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05008235 BUG();
8236 }
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008237 trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008238 return ret;
8239}
8240
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008241static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008242 struct btrfs_delayed_ref_node *node,
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03008243 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008244{
Nikolay Borisov9dcdbe02018-05-21 12:27:20 +03008245 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008246 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008247 struct btrfs_extent_item *extent_item;
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008248 struct btrfs_key extent_key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008249 struct btrfs_tree_block_info *block_info;
8250 struct btrfs_extent_inline_ref *iref;
8251 struct btrfs_path *path;
8252 struct extent_buffer *leaf;
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008253 struct btrfs_delayed_tree_ref *ref;
Josef Bacik3173a182013-03-07 14:22:04 -05008254 u32 size = sizeof(*extent_item) + sizeof(*iref);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008255 u64 num_bytes;
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03008256 u64 flags = extent_op->flags_to_set;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008257 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Josef Bacik3173a182013-03-07 14:22:04 -05008258
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008259 ref = btrfs_delayed_node_to_tree_ref(node);
8260
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008261 extent_key.objectid = node->bytenr;
8262 if (skinny_metadata) {
8263 extent_key.offset = ref->level;
8264 extent_key.type = BTRFS_METADATA_ITEM_KEY;
8265 num_bytes = fs_info->nodesize;
8266 } else {
8267 extent_key.offset = node->num_bytes;
8268 extent_key.type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik3173a182013-03-07 14:22:04 -05008269 size += sizeof(*block_info);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008270 num_bytes = node->num_bytes;
8271 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008272
8273 path = btrfs_alloc_path();
Josef Bacik80ee54b2018-10-11 15:54:22 -04008274 if (!path)
Mark Fashehd8926bb2011-07-13 10:38:47 -07008275 return -ENOMEM;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008276
8277 path->leave_spinning = 1;
8278 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008279 &extent_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008280 if (ret) {
Chris Masondd825252015-04-01 08:36:05 -07008281 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008282 return ret;
8283 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008284
8285 leaf = path->nodes[0];
8286 extent_item = btrfs_item_ptr(leaf, path->slots[0],
8287 struct btrfs_extent_item);
8288 btrfs_set_extent_refs(leaf, extent_item, 1);
8289 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8290 btrfs_set_extent_flags(leaf, extent_item,
8291 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008292
Josef Bacik3173a182013-03-07 14:22:04 -05008293 if (skinny_metadata) {
8294 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8295 } else {
8296 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03008297 btrfs_set_tree_block_key(leaf, block_info, &extent_op->key);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008298 btrfs_set_tree_block_level(leaf, block_info, ref->level);
Josef Bacik3173a182013-03-07 14:22:04 -05008299 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
8300 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008301
Nikolay Borisovd4b20732018-05-21 12:27:23 +03008302 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008303 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
8304 btrfs_set_extent_inline_ref_type(leaf, iref,
8305 BTRFS_SHARED_BLOCK_REF_KEY);
Nikolay Borisovd4b20732018-05-21 12:27:23 +03008306 btrfs_set_extent_inline_ref_offset(leaf, iref, ref->parent);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008307 } else {
8308 btrfs_set_extent_inline_ref_type(leaf, iref,
8309 BTRFS_TREE_BLOCK_REF_KEY);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008310 btrfs_set_extent_inline_ref_offset(leaf, iref, ref->root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008311 }
8312
8313 btrfs_mark_buffer_dirty(leaf);
8314 btrfs_free_path(path);
8315
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008316 ret = remove_from_free_space_tree(trans, extent_key.objectid,
8317 num_bytes);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008318 if (ret)
8319 return ret;
8320
David Sterba6b279402019-03-20 12:10:15 +01008321 ret = update_block_group(trans, extent_key.objectid,
Jeff Mahoney6202df62016-06-22 18:54:22 -04008322 fs_info->nodesize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008323 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008324 btrfs_err(fs_info, "update block group failed for %llu %llu",
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008325 extent_key.objectid, extent_key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008326 BUG();
8327 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04008328
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008329 trace_btrfs_reserved_extent_alloc(fs_info, extent_key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008330 fs_info->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008331 return ret;
8332}
8333
8334int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008335 struct btrfs_root *root, u64 owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08008336 u64 offset, u64 ram_bytes,
8337 struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008338{
Qu Wenruo76675592019-04-04 14:45:32 +08008339 struct btrfs_ref generic_ref = { 0 };
Chris Masone6dcd2d2008-07-17 12:53:50 -04008340 int ret;
Chris Mason1c2308f82008-09-23 13:14:13 -04008341
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008342 BUG_ON(root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04008343
Qu Wenruo76675592019-04-04 14:45:32 +08008344 btrfs_init_generic_ref(&generic_ref, BTRFS_ADD_DELAYED_EXTENT,
8345 ins->objectid, ins->offset, 0);
8346 btrfs_init_data_ref(&generic_ref, root->root_key.objectid, owner, offset);
Qu Wenruo8a5040f2019-04-04 14:45:33 +08008347 btrfs_ref_tree_mod(root->fs_info, &generic_ref);
Qu Wenruo76675592019-04-04 14:45:32 +08008348 ret = btrfs_add_delayed_data_ref(trans, &generic_ref,
8349 ram_bytes, NULL, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008350 return ret;
8351}
Chris Masone02119d2008-09-05 16:13:11 -04008352
8353/*
8354 * this is used by the tree logging recovery code. It records that
8355 * an extent has been allocated and makes sure to clear the free
8356 * space cache bits as well
8357 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008358int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008359 u64 root_objectid, u64 owner, u64 offset,
8360 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04008361{
Nikolay Borisov61da2ab2018-06-20 15:49:13 +03008362 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04008363 int ret;
8364 struct btrfs_block_group_cache *block_group;
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008365 struct btrfs_space_info *space_info;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008366
8367 /*
8368 * Mixed block groups will exclude before processing the log so we only
Nicholas D Steeves01327612016-05-19 21:18:45 -04008369 * need to do the exclude dance if this fs isn't mixed.
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008370 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008371 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008372 ret = __exclude_logged_extent(fs_info, ins->objectid,
8373 ins->offset);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008374 if (ret)
8375 return ret;
8376 }
Chris Masone02119d2008-09-05 16:13:11 -04008377
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008378 block_group = btrfs_lookup_block_group(fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008379 if (!block_group)
8380 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04008381
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008382 space_info = block_group->space_info;
8383 spin_lock(&space_info->lock);
8384 spin_lock(&block_group->lock);
8385 space_info->bytes_reserved += ins->offset;
8386 block_group->reserved += ins->offset;
8387 spin_unlock(&block_group->lock);
8388 spin_unlock(&space_info->lock);
8389
Nikolay Borisovef89b822018-06-20 15:48:58 +03008390 ret = alloc_reserved_file_extent(trans, 0, root_objectid, 0, owner,
8391 offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04008392 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04008393 return ret;
8394}
8395
Eric Sandeen48a3b632013-04-25 20:41:01 +00008396static struct extent_buffer *
8397btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008398 u64 bytenr, int level, u64 owner)
Chris Mason65b51a02008-08-01 15:11:20 -04008399{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008400 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason65b51a02008-08-01 15:11:20 -04008401 struct extent_buffer *buf;
8402
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008403 buf = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008404 if (IS_ERR(buf))
8405 return buf;
8406
Qu Wenruob72c3ab2018-08-21 09:53:47 +08008407 /*
8408 * Extra safety check in case the extent tree is corrupted and extent
8409 * allocator chooses to use a tree block which is already used and
8410 * locked.
8411 */
8412 if (buf->lock_owner == current->pid) {
8413 btrfs_err_rl(fs_info,
8414"tree block %llu owner %llu already locked by pid=%d, extent tree corruption detected",
8415 buf->start, btrfs_header_owner(buf), current->pid);
8416 free_extent_buffer(buf);
8417 return ERR_PTR(-EUCLEAN);
8418 }
8419
Chris Mason85d4e462011-07-26 16:11:19 -04008420 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04008421 btrfs_tree_lock(buf);
David Sterba6a884d7d2019-03-20 14:30:02 +01008422 btrfs_clean_tree_block(buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05008423 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008424
David Sterba8bead252018-04-04 02:03:48 +02008425 btrfs_set_lock_blocking_write(buf);
David Sterba4db8c522015-12-03 13:06:46 +01008426 set_extent_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008427
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008428 memzero_extent_buffer(buf, 0, sizeof(struct btrfs_header));
8429 btrfs_set_header_level(buf, level);
8430 btrfs_set_header_bytenr(buf, buf->start);
8431 btrfs_set_header_generation(buf, trans->transid);
8432 btrfs_set_header_backref_rev(buf, BTRFS_MIXED_BACKREF_REV);
8433 btrfs_set_header_owner(buf, owner);
Nikolay Borisovde37aa52018-10-30 16:43:24 +02008434 write_extent_buffer_fsid(buf, fs_info->fs_devices->metadata_uuid);
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008435 write_extent_buffer_chunk_tree_uuid(buf, fs_info->chunk_tree_uuid);
Chris Masond0c803c2008-09-11 16:17:57 -04008436 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01008437 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008438 /*
8439 * we allow two log transactions at a time, use different
Andrea Gelmini52042d82018-11-28 12:05:13 +01008440 * EXTENT bit to differentiate dirty pages.
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008441 */
Filipe Manana656f30d2014-09-26 12:25:56 +01008442 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008443 set_extent_dirty(&root->dirty_log_pages, buf->start,
8444 buf->start + buf->len - 1, GFP_NOFS);
8445 else
8446 set_extent_new(&root->dirty_log_pages, buf->start,
David Sterba3744dbe2016-04-26 23:54:39 +02008447 buf->start + buf->len - 1);
Chris Masond0c803c2008-09-11 16:17:57 -04008448 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01008449 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04008450 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
8451 buf->start + buf->len - 1, GFP_NOFS);
8452 }
Jeff Mahoney64c12922016-06-08 00:36:38 -04008453 trans->dirty = true;
Chris Masonb4ce94d2009-02-04 09:25:08 -05008454 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04008455 return buf;
8456}
8457
Yan, Zhengf0486c62010-05-16 10:46:25 -04008458static struct btrfs_block_rsv *
8459use_block_rsv(struct btrfs_trans_handle *trans,
8460 struct btrfs_root *root, u32 blocksize)
8461{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008462 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008463 struct btrfs_block_rsv *block_rsv;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008464 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008465 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00008466 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008467
8468 block_rsv = get_block_rsv(trans, root);
8469
Miao Xieb586b322013-05-13 13:55:10 +00008470 if (unlikely(block_rsv->size == 0))
8471 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00008472again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008473 ret = block_rsv_use_bytes(block_rsv, blocksize);
8474 if (!ret)
8475 return block_rsv;
8476
Miao Xieb586b322013-05-13 13:55:10 +00008477 if (block_rsv->failfast)
8478 return ERR_PTR(ret);
8479
Miao Xied88033d2013-05-13 13:55:12 +00008480 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
8481 global_updated = true;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008482 update_global_block_rsv(fs_info);
Miao Xied88033d2013-05-13 13:55:12 +00008483 goto again;
8484 }
8485
Josef Bacikba2c4d42018-12-03 10:20:33 -05008486 /*
8487 * The global reserve still exists to save us from ourselves, so don't
8488 * warn_on if we are short on our delayed refs reserve.
8489 */
8490 if (block_rsv->type != BTRFS_BLOCK_RSV_DELREFS &&
8491 btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xieb586b322013-05-13 13:55:10 +00008492 static DEFINE_RATELIMIT_STATE(_rs,
8493 DEFAULT_RATELIMIT_INTERVAL * 10,
8494 /*DEFAULT_RATELIMIT_BURST*/ 1);
8495 if (__ratelimit(&_rs))
8496 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05008497 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00008498 }
8499try_reserve:
8500 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
8501 BTRFS_RESERVE_NO_FLUSH);
8502 if (!ret)
8503 return block_rsv;
8504 /*
8505 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00008506 * the global reserve if its space type is the same as the global
8507 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00008508 */
Miao Xie5881cfc2013-05-13 13:55:11 +00008509 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
8510 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00008511 ret = block_rsv_use_bytes(global_rsv, blocksize);
8512 if (!ret)
8513 return global_rsv;
8514 }
8515 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008516}
8517
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008518static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
8519 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008520{
Lu Fengqi3a584172018-08-04 21:10:55 +08008521 block_rsv_add_bytes(block_rsv, blocksize, false);
Qu Wenruoff6bc372017-12-21 13:42:04 +08008522 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0, NULL);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008523}
8524
Chris Masonfec577f2007-02-26 10:40:21 -05008525/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04008526 * finds a free extent and does all the dirty work required for allocation
Omar Sandoval67b78592015-02-24 02:47:04 -08008527 * returns the tree buffer or an ERR_PTR on error.
Chris Masonfec577f2007-02-26 10:40:21 -05008528 */
David Sterba4d75f8a2014-06-15 01:54:12 +02008529struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
Omar Sandoval310712b2017-01-17 23:24:37 -08008530 struct btrfs_root *root,
8531 u64 parent, u64 root_objectid,
8532 const struct btrfs_disk_key *key,
8533 int level, u64 hint,
8534 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05008535{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008536 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone2fa7222007-03-12 16:22:34 -04008537 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008538 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04008539 struct extent_buffer *buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008540 struct btrfs_delayed_extent_op *extent_op;
Qu Wenruoed4f2552019-04-04 14:45:31 +08008541 struct btrfs_ref generic_ref = { 0 };
Yan, Zhengf0486c62010-05-16 10:46:25 -04008542 u64 flags = 0;
8543 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008544 u32 blocksize = fs_info->nodesize;
8545 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008546
David Sterba05653ef2016-07-15 15:23:37 +02008547#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008548 if (btrfs_is_testing(fs_info)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008549 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008550 level, root_objectid);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008551 if (!IS_ERR(buf))
8552 root->alloc_bytenr += blocksize;
8553 return buf;
8554 }
David Sterba05653ef2016-07-15 15:23:37 +02008555#endif
David Sterbafccb84c2014-09-29 23:53:21 +02008556
Yan, Zhengf0486c62010-05-16 10:46:25 -04008557 block_rsv = use_block_rsv(trans, root, blocksize);
8558 if (IS_ERR(block_rsv))
8559 return ERR_CAST(block_rsv);
8560
Wang Xiaoguang18513092016-07-25 15:51:40 +08008561 ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08008562 empty_size, hint, &ins, 0, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008563 if (ret)
8564 goto out_unuse;
Chris Mason55c69072008-01-09 15:55:33 -05008565
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008566 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level,
8567 root_objectid);
Omar Sandoval67b78592015-02-24 02:47:04 -08008568 if (IS_ERR(buf)) {
8569 ret = PTR_ERR(buf);
8570 goto out_free_reserved;
8571 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008572
8573 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
8574 if (parent == 0)
8575 parent = ins.objectid;
8576 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
8577 } else
8578 BUG_ON(parent > 0);
8579
8580 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Miao Xie78a61842012-11-21 02:21:28 +00008581 extent_op = btrfs_alloc_delayed_extent_op();
Omar Sandoval67b78592015-02-24 02:47:04 -08008582 if (!extent_op) {
8583 ret = -ENOMEM;
8584 goto out_free_buf;
8585 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008586 if (key)
8587 memcpy(&extent_op->key, key, sizeof(extent_op->key));
8588 else
8589 memset(&extent_op->key, 0, sizeof(extent_op->key));
8590 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01008591 extent_op->update_key = skinny_metadata ? false : true;
8592 extent_op->update_flags = true;
8593 extent_op->is_data = false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04008594 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008595
Qu Wenruoed4f2552019-04-04 14:45:31 +08008596 btrfs_init_generic_ref(&generic_ref, BTRFS_ADD_DELAYED_EXTENT,
8597 ins.objectid, ins.offset, parent);
8598 generic_ref.real_root = root->root_key.objectid;
8599 btrfs_init_tree_ref(&generic_ref, level, root_objectid);
Qu Wenruo8a5040f2019-04-04 14:45:33 +08008600 btrfs_ref_tree_mod(fs_info, &generic_ref);
Qu Wenruoed4f2552019-04-04 14:45:31 +08008601 ret = btrfs_add_delayed_tree_ref(trans, &generic_ref,
Omar Sandoval7be07912017-06-06 16:45:30 -07008602 extent_op, NULL, NULL);
Omar Sandoval67b78592015-02-24 02:47:04 -08008603 if (ret)
8604 goto out_free_delayed;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008605 }
Chris Masonfec577f2007-02-26 10:40:21 -05008606 return buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008607
8608out_free_delayed:
8609 btrfs_free_delayed_extent_op(extent_op);
8610out_free_buf:
8611 free_extent_buffer(buf);
8612out_free_reserved:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008613 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008614out_unuse:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008615 unuse_block_rsv(fs_info, block_rsv, blocksize);
Omar Sandoval67b78592015-02-24 02:47:04 -08008616 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05008617}
Chris Masona28ec192007-03-06 20:08:01 -05008618
Yan Zheng2c47e6052009-06-27 21:07:35 -04008619struct walk_control {
8620 u64 refs[BTRFS_MAX_LEVEL];
8621 u64 flags[BTRFS_MAX_LEVEL];
8622 struct btrfs_key update_progress;
Josef Bacikaea6f022019-02-06 15:46:15 -05008623 struct btrfs_key drop_progress;
8624 int drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008625 int stage;
8626 int level;
8627 int shared_level;
8628 int update_ref;
8629 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008630 int reada_slot;
8631 int reada_count;
Josef Bacik78c52d92019-02-06 15:46:14 -05008632 int restarted;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008633};
8634
8635#define DROP_REFERENCE 1
8636#define UPDATE_BACKREF 2
8637
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008638static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
8639 struct btrfs_root *root,
8640 struct walk_control *wc,
8641 struct btrfs_path *path)
8642{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008643 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008644 u64 bytenr;
8645 u64 generation;
8646 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008647 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008648 u32 nritems;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008649 struct btrfs_key key;
8650 struct extent_buffer *eb;
8651 int ret;
8652 int slot;
8653 int nread = 0;
8654
8655 if (path->slots[wc->level] < wc->reada_slot) {
8656 wc->reada_count = wc->reada_count * 2 / 3;
8657 wc->reada_count = max(wc->reada_count, 2);
8658 } else {
8659 wc->reada_count = wc->reada_count * 3 / 2;
8660 wc->reada_count = min_t(int, wc->reada_count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008661 BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008662 }
8663
8664 eb = path->nodes[wc->level];
8665 nritems = btrfs_header_nritems(eb);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008666
8667 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
8668 if (nread >= wc->reada_count)
8669 break;
8670
8671 cond_resched();
8672 bytenr = btrfs_node_blockptr(eb, slot);
8673 generation = btrfs_node_ptr_generation(eb, slot);
8674
8675 if (slot == path->slots[wc->level])
8676 goto reada;
8677
8678 if (wc->stage == UPDATE_BACKREF &&
8679 generation <= root->root_key.offset)
8680 continue;
8681
Yan, Zheng94fcca92009-10-09 09:25:16 -04008682 /* We don't lock the tree block, it's OK to be racy here */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008683 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -05008684 wc->level - 1, 1, &refs,
8685 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008686 /* We don't care about errors in readahead. */
8687 if (ret < 0)
8688 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008689 BUG_ON(refs == 0);
8690
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008691 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008692 if (refs == 1)
8693 goto reada;
8694
Yan, Zheng94fcca92009-10-09 09:25:16 -04008695 if (wc->level == 1 &&
8696 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8697 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008698 if (!wc->update_ref ||
8699 generation <= root->root_key.offset)
8700 continue;
8701 btrfs_node_key_to_cpu(eb, &key, slot);
8702 ret = btrfs_comp_cpu_keys(&key,
8703 &wc->update_progress);
8704 if (ret < 0)
8705 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008706 } else {
8707 if (wc->level == 1 &&
8708 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8709 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008710 }
8711reada:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008712 readahead_tree_block(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008713 nread++;
8714 }
8715 wc->reada_slot = slot;
8716}
8717
Chris Mason9aca1d52007-03-13 11:09:37 -04008718/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008719 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008720 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04008721 * when wc->stage == UPDATE_BACKREF, this function updates
8722 * back refs for pointers in the block.
8723 *
8724 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04008725 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008726static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
8727 struct btrfs_root *root,
8728 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008729 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04008730{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008731 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008732 int level = wc->level;
8733 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04008734 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8735 int ret;
8736
8737 if (wc->stage == UPDATE_BACKREF &&
8738 btrfs_header_owner(eb) != root->root_key.objectid)
8739 return 1;
8740
8741 /*
8742 * when reference count of tree block is 1, it won't increase
8743 * again. once full backref flag is set, we never clear it.
8744 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04008745 if (lookup_info &&
8746 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
8747 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008748 BUG_ON(!path->locks[level]);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008749 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05008750 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008751 &wc->refs[level],
8752 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008753 BUG_ON(ret == -ENOMEM);
8754 if (ret)
8755 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008756 BUG_ON(wc->refs[level] == 0);
8757 }
8758
Yan Zheng2c47e6052009-06-27 21:07:35 -04008759 if (wc->stage == DROP_REFERENCE) {
8760 if (wc->refs[level] > 1)
8761 return 1;
8762
8763 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04008764 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008765 path->locks[level] = 0;
8766 }
8767 return 0;
8768 }
8769
8770 /* wc->stage == UPDATE_BACKREF */
8771 if (!(wc->flags[level] & flag)) {
8772 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07008773 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008774 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07008775 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008776 BUG_ON(ret); /* -ENOMEM */
David Sterbaf5c8daa2019-03-20 11:43:36 +01008777 ret = btrfs_set_disk_extent_flags(trans, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04008778 eb->len, flag,
8779 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008780 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008781 wc->flags[level] |= flag;
8782 }
8783
8784 /*
8785 * the block is shared by multiple trees, so it's not good to
8786 * keep the tree lock
8787 */
8788 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008789 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008790 path->locks[level] = 0;
8791 }
8792 return 0;
8793}
8794
8795/*
Josef Bacik78c52d92019-02-06 15:46:14 -05008796 * This is used to verify a ref exists for this root to deal with a bug where we
8797 * would have a drop_progress key that hadn't been updated properly.
8798 */
8799static int check_ref_exists(struct btrfs_trans_handle *trans,
8800 struct btrfs_root *root, u64 bytenr, u64 parent,
8801 int level)
8802{
8803 struct btrfs_path *path;
8804 struct btrfs_extent_inline_ref *iref;
8805 int ret;
8806
8807 path = btrfs_alloc_path();
8808 if (!path)
8809 return -ENOMEM;
8810
8811 ret = lookup_extent_backref(trans, path, &iref, bytenr,
8812 root->fs_info->nodesize, parent,
8813 root->root_key.objectid, level, 0);
8814 btrfs_free_path(path);
8815 if (ret == -ENOENT)
8816 return 0;
8817 if (ret < 0)
8818 return ret;
8819 return 1;
8820}
8821
8822/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008823 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008824 *
8825 * when wc->stage == DROP_REFERENCE, this function checks
8826 * reference count of the block pointed to. if the block
8827 * is shared and we need update back refs for the subtree
8828 * rooted at the block, this function changes wc->stage to
8829 * UPDATE_BACKREF. if the block is shared and there is no
8830 * need to update back, this function drops the reference
8831 * to the block.
8832 *
8833 * NOTE: return value 1 means we should stop walking down.
8834 */
8835static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8836 struct btrfs_root *root,
8837 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008838 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008839{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008840 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008841 u64 bytenr;
8842 u64 generation;
8843 u64 parent;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008844 struct btrfs_key key;
Qu Wenruo581c1762018-03-29 09:08:11 +08008845 struct btrfs_key first_key;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08008846 struct btrfs_ref ref = { 0 };
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008847 struct extent_buffer *next;
8848 int level = wc->level;
8849 int reada = 0;
8850 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008851 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008852
8853 generation = btrfs_node_ptr_generation(path->nodes[level],
8854 path->slots[level]);
8855 /*
8856 * if the lower level block was created before the snapshot
8857 * was created, we know there is no need to update back refs
8858 * for the subtree
8859 */
8860 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008861 generation <= root->root_key.offset) {
8862 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008863 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008864 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008865
8866 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
Qu Wenruo581c1762018-03-29 09:08:11 +08008867 btrfs_node_key_to_cpu(path->nodes[level], &first_key,
8868 path->slots[level]);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008869
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008870 next = find_extent_buffer(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008871 if (!next) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008872 next = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008873 if (IS_ERR(next))
8874 return PTR_ERR(next);
8875
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008876 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8877 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008878 reada = 1;
8879 }
8880 btrfs_tree_lock(next);
David Sterba8bead252018-04-04 02:03:48 +02008881 btrfs_set_lock_blocking_write(next);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008882
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008883 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008884 &wc->refs[level - 1],
8885 &wc->flags[level - 1]);
Josef Bacik48672682016-09-23 13:23:28 +02008886 if (ret < 0)
8887 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008888
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008889 if (unlikely(wc->refs[level - 1] == 0)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008890 btrfs_err(fs_info, "Missing references.");
Josef Bacik48672682016-09-23 13:23:28 +02008891 ret = -EIO;
8892 goto out_unlock;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008893 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008894 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008895
Yan, Zheng94fcca92009-10-09 09:25:16 -04008896 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008897 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008898 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008899 if (level == 1 &&
8900 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8901 goto skip;
8902
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008903 if (!wc->update_ref ||
8904 generation <= root->root_key.offset)
8905 goto skip;
8906
8907 btrfs_node_key_to_cpu(path->nodes[level], &key,
8908 path->slots[level]);
8909 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8910 if (ret < 0)
8911 goto skip;
8912
8913 wc->stage = UPDATE_BACKREF;
8914 wc->shared_level = level - 1;
8915 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008916 } else {
8917 if (level == 1 &&
8918 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8919 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008920 }
8921
Chris Masonb9fab912012-05-06 07:23:47 -04008922 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008923 btrfs_tree_unlock(next);
8924 free_extent_buffer(next);
8925 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008926 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008927 }
8928
8929 if (!next) {
8930 if (reada && level == 1)
8931 reada_walk_down(trans, root, wc, path);
Qu Wenruo581c1762018-03-29 09:08:11 +08008932 next = read_tree_block(fs_info, bytenr, generation, level - 1,
8933 &first_key);
Liu Bo64c043d2015-05-25 17:30:15 +08008934 if (IS_ERR(next)) {
8935 return PTR_ERR(next);
8936 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008937 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008938 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008939 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008940 btrfs_tree_lock(next);
David Sterba8bead252018-04-04 02:03:48 +02008941 btrfs_set_lock_blocking_write(next);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008942 }
8943
8944 level--;
Josef Bacik48672682016-09-23 13:23:28 +02008945 ASSERT(level == btrfs_header_level(next));
8946 if (level != btrfs_header_level(next)) {
8947 btrfs_err(root->fs_info, "mismatched level");
8948 ret = -EIO;
8949 goto out_unlock;
8950 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008951 path->nodes[level] = next;
8952 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008953 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008954 wc->level = level;
8955 if (wc->level == 1)
8956 wc->reada_slot = 0;
8957 return 0;
8958skip:
8959 wc->refs[level - 1] = 0;
8960 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008961 if (wc->stage == DROP_REFERENCE) {
8962 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
8963 parent = path->nodes[level]->start;
8964 } else {
Josef Bacik48672682016-09-23 13:23:28 +02008965 ASSERT(root->root_key.objectid ==
Yan, Zheng94fcca92009-10-09 09:25:16 -04008966 btrfs_header_owner(path->nodes[level]));
Josef Bacik48672682016-09-23 13:23:28 +02008967 if (root->root_key.objectid !=
8968 btrfs_header_owner(path->nodes[level])) {
8969 btrfs_err(root->fs_info,
8970 "mismatched block owner");
8971 ret = -EIO;
8972 goto out_unlock;
8973 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008974 parent = 0;
8975 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008976
Qu Wenruo2cd86d32018-09-27 14:42:33 +08008977 /*
Josef Bacik78c52d92019-02-06 15:46:14 -05008978 * If we had a drop_progress we need to verify the refs are set
8979 * as expected. If we find our ref then we know that from here
8980 * on out everything should be correct, and we can clear the
8981 * ->restarted flag.
8982 */
8983 if (wc->restarted) {
8984 ret = check_ref_exists(trans, root, bytenr, parent,
8985 level - 1);
8986 if (ret < 0)
8987 goto out_unlock;
8988 if (ret == 0)
8989 goto no_delete;
8990 ret = 0;
8991 wc->restarted = 0;
8992 }
8993
8994 /*
Qu Wenruo2cd86d32018-09-27 14:42:33 +08008995 * Reloc tree doesn't contribute to qgroup numbers, and we have
8996 * already accounted them at merge time (replace_path),
8997 * thus we could skip expensive subtree trace here.
8998 */
8999 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
9000 need_account) {
Lu Fengqideb40622018-07-18 14:45:38 +08009001 ret = btrfs_qgroup_trace_subtree(trans, next,
Qu Wenruo33d1f052016-10-18 09:31:28 +08009002 generation, level - 1);
Mark Fasheh11526512014-07-17 12:39:01 -07009003 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009004 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009005 "Error %d accounting shared subtree. Quota is out of sync, rescan required.",
9006 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07009007 }
9008 }
Josef Bacikaea6f022019-02-06 15:46:15 -05009009
9010 /*
9011 * We need to update the next key in our walk control so we can
9012 * update the drop_progress key accordingly. We don't care if
9013 * find_next_key doesn't find a key because that means we're at
9014 * the end and are going to clean up now.
9015 */
9016 wc->drop_level = level;
9017 find_next_key(path, level, &wc->drop_progress);
9018
Qu Wenruoffd4bb22019-04-04 14:45:36 +08009019 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr,
9020 fs_info->nodesize, parent);
9021 btrfs_init_tree_ref(&ref, level - 1, root->root_key.objectid);
9022 ret = btrfs_free_extent(trans, &ref);
Josef Bacik48672682016-09-23 13:23:28 +02009023 if (ret)
9024 goto out_unlock;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009025 }
Josef Bacik78c52d92019-02-06 15:46:14 -05009026no_delete:
Josef Bacik48672682016-09-23 13:23:28 +02009027 *lookup_info = 1;
9028 ret = 1;
9029
9030out_unlock:
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009031 btrfs_tree_unlock(next);
9032 free_extent_buffer(next);
Josef Bacik48672682016-09-23 13:23:28 +02009033
9034 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009035}
9036
9037/*
Liu Bo2c016dc2012-12-26 15:32:17 +08009038 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04009039 *
9040 * when wc->stage == DROP_REFERENCE, this function drops
9041 * reference count on the block.
9042 *
9043 * when wc->stage == UPDATE_BACKREF, this function changes
9044 * wc->stage back to DROP_REFERENCE if we changed wc->stage
9045 * to UPDATE_BACKREF previously while processing the block.
9046 *
9047 * NOTE: return value 1 means we should stop walking up.
9048 */
9049static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
9050 struct btrfs_root *root,
9051 struct btrfs_path *path,
9052 struct walk_control *wc)
9053{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009054 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009055 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009056 int level = wc->level;
9057 struct extent_buffer *eb = path->nodes[level];
9058 u64 parent = 0;
9059
9060 if (wc->stage == UPDATE_BACKREF) {
9061 BUG_ON(wc->shared_level < level);
9062 if (level < wc->shared_level)
9063 goto out;
9064
Yan Zheng2c47e6052009-06-27 21:07:35 -04009065 ret = find_next_key(path, level + 1, &wc->update_progress);
9066 if (ret > 0)
9067 wc->update_ref = 0;
9068
9069 wc->stage = DROP_REFERENCE;
9070 wc->shared_level = -1;
9071 path->slots[level] = 0;
9072
9073 /*
9074 * check reference count again if the block isn't locked.
9075 * we should start walking down the tree again if reference
9076 * count is one.
9077 */
9078 if (!path->locks[level]) {
9079 BUG_ON(level == 0);
9080 btrfs_tree_lock(eb);
David Sterba8bead252018-04-04 02:03:48 +02009081 btrfs_set_lock_blocking_write(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009082 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009083
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009084 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05009085 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009086 &wc->refs[level],
9087 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009088 if (ret < 0) {
9089 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009090 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009091 return ret;
9092 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009093 BUG_ON(wc->refs[level] == 0);
9094 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04009095 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009096 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009097 return 1;
9098 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009099 }
9100 }
9101
9102 /* wc->stage == DROP_REFERENCE */
9103 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
9104
9105 if (wc->refs[level] == 1) {
9106 if (level == 0) {
9107 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07009108 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009109 else
Josef Bacike339a6b2014-07-02 10:54:25 -07009110 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009111 BUG_ON(ret); /* -ENOMEM */
Qu Wenruoc4140cb2019-04-04 14:45:37 +08009112 if (is_fstree(root->root_key.objectid)) {
9113 ret = btrfs_qgroup_trace_leaf_items(trans, eb);
9114 if (ret) {
9115 btrfs_err_rl(fs_info,
9116 "error %d accounting leaf items, quota is out of sync, rescan required",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009117 ret);
Qu Wenruoc4140cb2019-04-04 14:45:37 +08009118 }
Mark Fasheh11526512014-07-17 12:39:01 -07009119 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009120 }
David Sterba6a884d7d2019-03-20 14:30:02 +01009121 /* make block locked assertion in btrfs_clean_tree_block happy */
Yan Zheng2c47e6052009-06-27 21:07:35 -04009122 if (!path->locks[level] &&
9123 btrfs_header_generation(eb) == trans->transid) {
9124 btrfs_tree_lock(eb);
David Sterba8bead252018-04-04 02:03:48 +02009125 btrfs_set_lock_blocking_write(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009126 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009127 }
David Sterba6a884d7d2019-03-20 14:30:02 +01009128 btrfs_clean_tree_block(eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009129 }
9130
9131 if (eb == root->node) {
9132 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9133 parent = eb->start;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009134 else if (root->root_key.objectid != btrfs_header_owner(eb))
9135 goto owner_mismatch;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009136 } else {
9137 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9138 parent = path->nodes[level + 1]->start;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009139 else if (root->root_key.objectid !=
9140 btrfs_header_owner(path->nodes[level + 1]))
9141 goto owner_mismatch;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009142 }
9143
Jan Schmidt5581a512012-05-16 17:04:52 +02009144 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009145out:
9146 wc->refs[level] = 0;
9147 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009148 return 0;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009149
9150owner_mismatch:
9151 btrfs_err_rl(fs_info, "unexpected tree owner, have %llu expect %llu",
9152 btrfs_header_owner(eb), root->root_key.objectid);
9153 return -EUCLEAN;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009154}
9155
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009156static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
9157 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009158 struct btrfs_path *path,
9159 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009160{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009161 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04009162 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009163 int ret;
9164
Yan Zheng2c47e6052009-06-27 21:07:35 -04009165 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04009166 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009167 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009168 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009169
Yan Zheng2c47e6052009-06-27 21:07:35 -04009170 if (level == 0)
9171 break;
9172
Yan, Zheng7a7965f2010-02-01 02:41:17 +00009173 if (path->slots[level] >=
9174 btrfs_header_nritems(path->nodes[level]))
9175 break;
9176
Yan, Zheng94fcca92009-10-09 09:25:16 -04009177 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009178 if (ret > 0) {
9179 path->slots[level]++;
9180 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00009181 } else if (ret < 0)
9182 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009183 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009184 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009185 return 0;
9186}
9187
Chris Masond3977122009-01-05 21:25:51 -05009188static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05009189 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04009190 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009191 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05009192{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009193 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05009194 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04009195
Yan Zheng2c47e6052009-06-27 21:07:35 -04009196 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
9197 while (level < max_level && path->nodes[level]) {
9198 wc->level = level;
9199 if (path->slots[level] + 1 <
9200 btrfs_header_nritems(path->nodes[level])) {
9201 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05009202 return 0;
9203 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009204 ret = walk_up_proc(trans, root, path, wc);
9205 if (ret > 0)
9206 return 0;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009207 if (ret < 0)
9208 return ret;
Chris Masonbd56b302009-02-04 09:27:02 -05009209
Yan Zheng2c47e6052009-06-27 21:07:35 -04009210 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04009211 btrfs_tree_unlock_rw(path->nodes[level],
9212 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009213 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009214 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009215 free_extent_buffer(path->nodes[level]);
9216 path->nodes[level] = NULL;
9217 level++;
Chris Mason20524f02007-03-10 06:35:47 -05009218 }
9219 }
9220 return 1;
9221}
9222
Chris Mason9aca1d52007-03-13 11:09:37 -04009223/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04009224 * drop a subvolume tree.
9225 *
9226 * this function traverses the tree freeing any blocks that only
9227 * referenced by the tree.
9228 *
9229 * when a shared tree block is found. this function decreases its
9230 * reference count by one. if update_ref is true, this function
9231 * also make sure backrefs for the shared block and all lower level
9232 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00009233 *
9234 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04009235 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04009236int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009237 struct btrfs_block_rsv *block_rsv, int update_ref,
9238 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05009239{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009240 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04009241 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009242 struct btrfs_trans_handle *trans;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009243 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04009244 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009245 struct walk_control *wc;
9246 struct btrfs_key key;
9247 int err = 0;
9248 int ret;
9249 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04009250 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05009251
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09009252 btrfs_debug(fs_info, "Drop subvolume %llu", root->root_key.objectid);
Mark Fasheh11526512014-07-17 12:39:01 -07009253
Chris Mason5caf2a02007-04-02 11:20:42 -04009254 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009255 if (!path) {
9256 err = -ENOMEM;
9257 goto out;
9258 }
Chris Mason20524f02007-03-10 06:35:47 -05009259
Yan Zheng2c47e6052009-06-27 21:07:35 -04009260 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07009261 if (!wc) {
9262 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009263 err = -ENOMEM;
9264 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07009265 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009266
Yan, Zhenga22285a2010-05-16 10:48:46 -04009267 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009268 if (IS_ERR(trans)) {
9269 err = PTR_ERR(trans);
9270 goto out_free;
9271 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00009272
Josef Bacik0568e822018-11-30 11:52:14 -05009273 err = btrfs_run_delayed_items(trans);
9274 if (err)
9275 goto out_end_trans;
9276
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009277 if (block_rsv)
9278 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009279
Josef Bacik83354f02018-11-30 11:52:13 -05009280 /*
9281 * This will help us catch people modifying the fs tree while we're
9282 * dropping it. It is unsafe to mess with the fs tree while it's being
9283 * dropped as we unlock the root node and parent nodes as we walk down
9284 * the tree, assuming nothing will change. If something does change
9285 * then we'll have stale information and drop references to blocks we've
9286 * already dropped.
9287 */
9288 set_bit(BTRFS_ROOT_DELETING, &root->state);
Chris Mason9f3a7422007-08-07 15:52:19 -04009289 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009290 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009291 path->nodes[level] = btrfs_lock_root_node(root);
David Sterba8bead252018-04-04 02:03:48 +02009292 btrfs_set_lock_blocking_write(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04009293 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009294 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009295 memset(&wc->update_progress, 0,
9296 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04009297 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04009298 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009299 memcpy(&wc->update_progress, &key,
9300 sizeof(wc->update_progress));
9301
Chris Mason6702ed42007-08-07 16:15:09 -04009302 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009303 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04009304 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009305 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
9306 path->lowest_level = 0;
9307 if (ret < 0) {
9308 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009309 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04009310 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009311 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009312
Chris Mason7d9eb122008-07-08 14:19:17 -04009313 /*
9314 * unlock our path, this is safe because only this
9315 * function is allowed to delete this snapshot
9316 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009317 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04009318
Yan Zheng2c47e6052009-06-27 21:07:35 -04009319 level = btrfs_header_level(root->node);
9320 while (1) {
9321 btrfs_tree_lock(path->nodes[level]);
David Sterba8bead252018-04-04 02:03:48 +02009322 btrfs_set_lock_blocking_write(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009323 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009324
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009325 ret = btrfs_lookup_extent_info(trans, fs_info,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009326 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05009327 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04009328 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009329 if (ret < 0) {
9330 err = ret;
9331 goto out_end_trans;
9332 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009333 BUG_ON(wc->refs[level] == 0);
9334
9335 if (level == root_item->drop_level)
9336 break;
9337
9338 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009339 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009340 WARN_ON(wc->refs[level] != 1);
9341 level--;
9342 }
9343 }
9344
Josef Bacik78c52d92019-02-06 15:46:14 -05009345 wc->restarted = test_bit(BTRFS_ROOT_DEAD_TREE, &root->state);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009346 wc->level = level;
9347 wc->shared_level = -1;
9348 wc->stage = DROP_REFERENCE;
9349 wc->update_ref = update_ref;
9350 wc->keep_locks = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009351 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009352
9353 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00009354
Yan Zheng2c47e6052009-06-27 21:07:35 -04009355 ret = walk_down_tree(trans, root, path, wc);
9356 if (ret < 0) {
9357 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04009358 break;
9359 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009360
9361 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
9362 if (ret < 0) {
9363 err = ret;
9364 break;
9365 }
9366
9367 if (ret > 0) {
9368 BUG_ON(wc->stage != DROP_REFERENCE);
9369 break;
9370 }
9371
9372 if (wc->stage == DROP_REFERENCE) {
Josef Bacikaea6f022019-02-06 15:46:15 -05009373 wc->drop_level = wc->level;
9374 btrfs_node_key_to_cpu(path->nodes[wc->drop_level],
9375 &wc->drop_progress,
9376 path->slots[wc->drop_level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009377 }
Josef Bacikaea6f022019-02-06 15:46:15 -05009378 btrfs_cpu_key_to_disk(&root_item->drop_progress,
9379 &wc->drop_progress);
9380 root_item->drop_level = wc->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009381
9382 BUG_ON(wc->level == 0);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009383 if (btrfs_should_end_transaction(trans) ||
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009384 (!for_reloc && btrfs_need_cleaner_sleep(fs_info))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009385 ret = btrfs_update_root(trans, tree_root,
9386 &root->root_key,
9387 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009388 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009389 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009390 err = ret;
9391 goto out_end_trans;
9392 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009393
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009394 btrfs_end_transaction_throttle(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009395 if (!for_reloc && btrfs_need_cleaner_sleep(fs_info)) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009396 btrfs_debug(fs_info,
9397 "drop snapshot early exit");
Josef Bacik3c8f2422013-07-15 11:57:06 -04009398 err = -EAGAIN;
9399 goto out_free;
9400 }
9401
Yan, Zhenga22285a2010-05-16 10:48:46 -04009402 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009403 if (IS_ERR(trans)) {
9404 err = PTR_ERR(trans);
9405 goto out_free;
9406 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009407 if (block_rsv)
9408 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04009409 }
Chris Mason20524f02007-03-10 06:35:47 -05009410 }
David Sterbab3b4aa72011-04-21 01:20:15 +02009411 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009412 if (err)
9413 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009414
Lu Fengqiab9ce7d2018-08-01 11:32:27 +08009415 ret = btrfs_del_root(trans, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009416 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009417 btrfs_abort_transaction(trans, ret);
Jeff Mahoneye19182c2017-12-04 13:11:45 -05009418 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009419 goto out_end_trans;
9420 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009421
Yan, Zheng76dda932009-09-21 16:00:26 -04009422 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00009423 ret = btrfs_find_root(tree_root, &root->root_key, path,
9424 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009425 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009426 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009427 err = ret;
9428 goto out_end_trans;
9429 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05009430 /* if we fail to delete the orphan item this time
9431 * around, it'll get picked up the next time.
9432 *
9433 * The most common failure here is just -ENOENT.
9434 */
9435 btrfs_del_orphan_item(trans, tree_root,
9436 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04009437 }
9438 }
9439
Miao Xie27cdeb72014-04-02 19:51:05 +08009440 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Josef Bacik2b9dbef2015-09-15 10:07:04 -04009441 btrfs_add_dropped_root(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009442 } else {
9443 free_extent_buffer(root->node);
9444 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00009445 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009446 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04009447 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009448out_end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009449 btrfs_end_transaction_throttle(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009450out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04009451 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04009452 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009453out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04009454 /*
9455 * So if we need to stop dropping the snapshot for whatever reason we
9456 * need to make sure to add it back to the dead root list so that we
9457 * keep trying to do the work later. This also cleans up roots if we
9458 * don't have it in the radix (like when we recover after a power fail
9459 * or unmount) so we don't leak memory.
9460 */
Thomas Meyer897ca812017-10-07 16:02:21 +02009461 if (!for_reloc && !root_dropped)
Josef Bacikd29a9f62013-07-17 19:30:20 -04009462 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08009463 if (err && err != -EAGAIN)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009464 btrfs_handle_fs_error(fs_info, err, NULL);
Jeff Mahoney2c536792011-10-03 23:22:41 -04009465 return err;
Chris Mason20524f02007-03-10 06:35:47 -05009466}
Chris Mason9078a3e2007-04-26 16:46:15 -04009467
Yan Zheng2c47e6052009-06-27 21:07:35 -04009468/*
9469 * drop subtree rooted at tree block 'node'.
9470 *
9471 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009472 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04009473 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04009474int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
9475 struct btrfs_root *root,
9476 struct extent_buffer *node,
9477 struct extent_buffer *parent)
9478{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009479 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009480 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009481 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009482 int level;
9483 int parent_level;
9484 int ret = 0;
9485 int wret;
9486
Yan Zheng2c47e6052009-06-27 21:07:35 -04009487 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
9488
Yan Zhengf82d02d2008-10-29 14:49:05 -04009489 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009490 if (!path)
9491 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009492
Yan Zheng2c47e6052009-06-27 21:07:35 -04009493 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009494 if (!wc) {
9495 btrfs_free_path(path);
9496 return -ENOMEM;
9497 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009498
Chris Masonb9447ef82009-03-09 11:45:38 -04009499 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009500 parent_level = btrfs_header_level(parent);
9501 extent_buffer_get(parent);
9502 path->nodes[parent_level] = parent;
9503 path->slots[parent_level] = btrfs_header_nritems(parent);
9504
Chris Masonb9447ef82009-03-09 11:45:38 -04009505 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009506 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009507 path->nodes[level] = node;
9508 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009509 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009510
9511 wc->refs[parent_level] = 1;
9512 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
9513 wc->level = level;
9514 wc->shared_level = -1;
9515 wc->stage = DROP_REFERENCE;
9516 wc->update_ref = 0;
9517 wc->keep_locks = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009518 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009519
9520 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009521 wret = walk_down_tree(trans, root, path, wc);
9522 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04009523 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009524 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009525 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009526
Yan Zheng2c47e6052009-06-27 21:07:35 -04009527 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009528 if (wret < 0)
9529 ret = wret;
9530 if (wret != 0)
9531 break;
9532 }
9533
Yan Zheng2c47e6052009-06-27 21:07:35 -04009534 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009535 btrfs_free_path(path);
9536 return ret;
9537}
9538
Jeff Mahoney6202df62016-06-22 18:54:22 -04009539static u64 update_block_group_flags(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04009540{
9541 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009542 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04009543
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009544 /*
9545 * if restripe for this chunk_type is on pick target profile and
9546 * return, otherwise do the usual balance
9547 */
Jeff Mahoney6202df62016-06-22 18:54:22 -04009548 stripped = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009549 if (stripped)
9550 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02009551
Jeff Mahoney6202df62016-06-22 18:54:22 -04009552 num_devices = fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05009553
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009554 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009555 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009556 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
9557
Chris Masonec44a352008-04-28 15:29:52 -04009558 if (num_devices == 1) {
9559 stripped |= BTRFS_BLOCK_GROUP_DUP;
9560 stripped = flags & ~stripped;
9561
9562 /* turn raid0 into single device chunks */
9563 if (flags & BTRFS_BLOCK_GROUP_RAID0)
9564 return stripped;
9565
9566 /* turn mirroring into duplication */
9567 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
9568 BTRFS_BLOCK_GROUP_RAID10))
9569 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04009570 } else {
9571 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04009572 if (flags & stripped)
9573 return flags;
9574
9575 stripped |= BTRFS_BLOCK_GROUP_DUP;
9576 stripped = flags & ~stripped;
9577
9578 /* switch duplicated blocks with raid1 */
9579 if (flags & BTRFS_BLOCK_GROUP_DUP)
9580 return stripped | BTRFS_BLOCK_GROUP_RAID1;
9581
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009582 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04009583 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009584
Chris Masonec44a352008-04-28 15:29:52 -04009585 return flags;
9586}
9587
Zhaolei868f4012015-08-05 16:43:27 +08009588static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04009589{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009590 struct btrfs_space_info *sinfo = cache->space_info;
9591 u64 num_bytes;
Qu Wenruo3ece54e2019-01-30 13:07:51 +08009592 u64 sinfo_used;
Miao Xie199c36e2011-07-15 10:34:36 +00009593 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009594 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04009595
Miao Xie199c36e2011-07-15 10:34:36 +00009596 /*
9597 * We need some metadata space and system metadata space for
9598 * allocating chunks in some corner cases until we force to set
9599 * it to be readonly.
9600 */
9601 if ((sinfo->flags &
9602 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
9603 !force)
Byongho Leeee221842015-12-15 01:42:10 +09009604 min_allocable_bytes = SZ_1M;
Miao Xie199c36e2011-07-15 10:34:36 +00009605 else
9606 min_allocable_bytes = 0;
9607
Yan, Zhengf0486c62010-05-16 10:46:25 -04009608 spin_lock(&sinfo->lock);
9609 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00009610
9611 if (cache->ro) {
Zhaolei868f4012015-08-05 16:43:27 +08009612 cache->ro++;
WuBo61cfea92011-07-26 03:30:11 +00009613 ret = 0;
9614 goto out;
9615 }
9616
Yan, Zhengf0486c62010-05-16 10:46:25 -04009617 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
9618 cache->bytes_super - btrfs_block_group_used(&cache->item);
Qu Wenruo3ece54e2019-01-30 13:07:51 +08009619 sinfo_used = btrfs_space_info_used(sinfo, true);
Chris Mason7d9eb122008-07-08 14:19:17 -04009620
Qu Wenruo3ece54e2019-01-30 13:07:51 +08009621 if (sinfo_used + num_bytes + min_allocable_bytes <=
9622 sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04009623 sinfo->bytes_readonly += num_bytes;
Zhaolei868f4012015-08-05 16:43:27 +08009624 cache->ro++;
Josef Bacik633c0aa2014-10-31 09:49:34 -04009625 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009626 ret = 0;
9627 }
WuBo61cfea92011-07-26 03:30:11 +00009628out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04009629 spin_unlock(&cache->lock);
9630 spin_unlock(&sinfo->lock);
Qu Wenruo3ece54e2019-01-30 13:07:51 +08009631 if (ret == -ENOSPC && btrfs_test_opt(cache->fs_info, ENOSPC_DEBUG)) {
9632 btrfs_info(cache->fs_info,
9633 "unable to make block group %llu ro",
9634 cache->key.objectid);
9635 btrfs_info(cache->fs_info,
9636 "sinfo_used=%llu bg_num_bytes=%llu min_allocable=%llu",
9637 sinfo_used, num_bytes, min_allocable_bytes);
9638 dump_space_info(cache->fs_info, cache->space_info, 0, 0);
9639 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009640 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04009641}
9642
Nikolay Borisovc83488a2018-06-20 15:49:14 +03009643int btrfs_inc_block_group_ro(struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009644
9645{
Nikolay Borisovc83488a2018-06-20 15:49:14 +03009646 struct btrfs_fs_info *fs_info = cache->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009647 struct btrfs_trans_handle *trans;
9648 u64 alloc_flags;
9649 int ret;
9650
Chris Mason1bbc6212015-04-06 12:46:08 -07009651again:
Jeff Mahoney5e00f192017-02-15 16:28:29 -05009652 trans = btrfs_join_transaction(fs_info->extent_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009653 if (IS_ERR(trans))
9654 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009655
Chris Mason1bbc6212015-04-06 12:46:08 -07009656 /*
9657 * we're not allowed to set block groups readonly after the dirty
9658 * block groups cache has started writing. If it already started,
9659 * back off and let this transaction commit
9660 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009661 mutex_lock(&fs_info->ro_block_group_mutex);
Josef Bacik3204d332015-09-24 10:46:10 -04009662 if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009663 u64 transid = trans->transid;
9664
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009665 mutex_unlock(&fs_info->ro_block_group_mutex);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009666 btrfs_end_transaction(trans);
Chris Mason1bbc6212015-04-06 12:46:08 -07009667
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009668 ret = btrfs_wait_for_commit(fs_info, transid);
Chris Mason1bbc6212015-04-06 12:46:08 -07009669 if (ret)
9670 return ret;
9671 goto again;
9672 }
9673
Chris Mason153c35b2015-05-19 18:54:41 -07009674 /*
9675 * if we are changing raid levels, try to allocate a corresponding
9676 * block group with the new raid level.
9677 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009678 alloc_flags = update_block_group_flags(fs_info, cache->flags);
Chris Mason153c35b2015-05-19 18:54:41 -07009679 if (alloc_flags != cache->flags) {
Nikolay Borisov01458822018-06-20 15:49:05 +03009680 ret = do_chunk_alloc(trans, alloc_flags,
Chris Mason153c35b2015-05-19 18:54:41 -07009681 CHUNK_ALLOC_FORCE);
9682 /*
9683 * ENOSPC is allowed here, we may have enough space
9684 * already allocated at the new raid level to
9685 * carry on
9686 */
9687 if (ret == -ENOSPC)
9688 ret = 0;
9689 if (ret < 0)
9690 goto out;
9691 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009692
Zhaolei868f4012015-08-05 16:43:27 +08009693 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009694 if (!ret)
9695 goto out;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009696 alloc_flags = get_alloc_profile(fs_info, cache->space_info->flags);
Nikolay Borisov01458822018-06-20 15:49:05 +03009697 ret = do_chunk_alloc(trans, alloc_flags, CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009698 if (ret < 0)
9699 goto out;
Zhaolei868f4012015-08-05 16:43:27 +08009700 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009701out:
Shaohua Li2f081082015-01-09 10:40:15 -08009702 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009703 alloc_flags = update_block_group_flags(fs_info, cache->flags);
David Sterba34441362016-10-04 19:34:27 +02009704 mutex_lock(&fs_info->chunk_mutex);
Nikolay Borisov451a2c12018-06-20 15:49:07 +03009705 check_system_chunk(trans, alloc_flags);
David Sterba34441362016-10-04 19:34:27 +02009706 mutex_unlock(&fs_info->chunk_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009707 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009708 mutex_unlock(&fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009709
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009710 btrfs_end_transaction(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009711 return ret;
9712}
9713
Nikolay Borisov43a7e992018-06-20 15:49:15 +03009714int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, u64 type)
Chris Masonc87f08c2011-02-16 13:57:04 -05009715{
Nikolay Borisov43a7e992018-06-20 15:49:15 +03009716 u64 alloc_flags = get_alloc_profile(trans->fs_info, type);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009717
Nikolay Borisov01458822018-06-20 15:49:05 +03009718 return do_chunk_alloc(trans, alloc_flags, CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05009719}
9720
Miao Xie6d07bce2011-01-05 10:07:31 +00009721/*
9722 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04009723 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00009724 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009725u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00009726{
9727 struct btrfs_block_group_cache *block_group;
9728 u64 free_bytes = 0;
9729 int factor;
9730
Nicholas D Steeves01327612016-05-19 21:18:45 -04009731 /* It's df, we don't care if it's racy */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009732 if (list_empty(&sinfo->ro_bgs))
9733 return 0;
9734
9735 spin_lock(&sinfo->lock);
9736 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00009737 spin_lock(&block_group->lock);
9738
9739 if (!block_group->ro) {
9740 spin_unlock(&block_group->lock);
9741 continue;
9742 }
9743
David Sterba46df06b2018-07-13 20:46:30 +02009744 factor = btrfs_bg_type_to_factor(block_group->flags);
Miao Xie6d07bce2011-01-05 10:07:31 +00009745 free_bytes += (block_group->key.offset -
9746 btrfs_block_group_used(&block_group->item)) *
9747 factor;
9748
9749 spin_unlock(&block_group->lock);
9750 }
Miao Xie6d07bce2011-01-05 10:07:31 +00009751 spin_unlock(&sinfo->lock);
9752
9753 return free_bytes;
9754}
9755
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009756void btrfs_dec_block_group_ro(struct btrfs_block_group_cache *cache)
Yan, Zhengf0486c62010-05-16 10:46:25 -04009757{
9758 struct btrfs_space_info *sinfo = cache->space_info;
9759 u64 num_bytes;
9760
9761 BUG_ON(!cache->ro);
9762
9763 spin_lock(&sinfo->lock);
9764 spin_lock(&cache->lock);
Zhaolei868f4012015-08-05 16:43:27 +08009765 if (!--cache->ro) {
9766 num_bytes = cache->key.offset - cache->reserved -
9767 cache->pinned - cache->bytes_super -
9768 btrfs_block_group_used(&cache->item);
9769 sinfo->bytes_readonly -= num_bytes;
9770 list_del_init(&cache->ro_list);
9771 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009772 spin_unlock(&cache->lock);
9773 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009774}
9775
Josef Bacikba1bf482009-09-11 16:11:19 -04009776/*
Andrea Gelmini52042d82018-11-28 12:05:13 +01009777 * Checks to see if it's even possible to relocate this block group.
Josef Bacikba1bf482009-09-11 16:11:19 -04009778 *
9779 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
9780 * ok to go ahead and try.
9781 */
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009782int btrfs_can_relocate(struct btrfs_fs_info *fs_info, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04009783{
Zheng Yan1a40e232008-09-26 10:09:34 -04009784 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04009785 struct btrfs_space_info *space_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009786 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacikba1bf482009-09-11 16:11:19 -04009787 struct btrfs_device *device;
liubocdcb7252011-08-03 10:15:25 +00009788 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04009789 u64 dev_min = 1;
9790 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009791 u64 target;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009792 int debug;
liubocdcb7252011-08-03 10:15:25 +00009793 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04009794 int full = 0;
9795 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05009796
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009797 debug = btrfs_test_opt(fs_info, ENOSPC_DEBUG);
Qu Wenruo0305bc22016-03-23 11:38:17 +08009798
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009799 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04009800
Josef Bacikba1bf482009-09-11 16:11:19 -04009801 /* odd, couldn't find the block group, leave it alone */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009802 if (!block_group) {
9803 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009804 btrfs_warn(fs_info,
Qu Wenruo0305bc22016-03-23 11:38:17 +08009805 "can't find block group for bytenr %llu",
9806 bytenr);
Josef Bacikba1bf482009-09-11 16:11:19 -04009807 return -1;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009808 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009809
liubocdcb7252011-08-03 10:15:25 +00009810 min_free = btrfs_block_group_used(&block_group->item);
9811
Josef Bacikba1bf482009-09-11 16:11:19 -04009812 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00009813 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04009814 goto out;
Chris Mason323da792008-05-09 11:46:48 -04009815
Josef Bacikba1bf482009-09-11 16:11:19 -04009816 space_info = block_group->space_info;
9817 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04009818
Josef Bacikba1bf482009-09-11 16:11:19 -04009819 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04009820
Josef Bacikba1bf482009-09-11 16:11:19 -04009821 /*
9822 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04009823 * relocate it unless we're able to allocate a new chunk below.
9824 *
9825 * Otherwise, we need to make sure we have room in the space to handle
9826 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04009827 */
Chris Mason7ce618d2009-09-22 14:48:44 -04009828 if ((space_info->total_bytes != block_group->key.offset) &&
Liu Bo41361352017-02-13 15:42:21 -08009829 (btrfs_space_info_used(space_info, false) + min_free <
9830 space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04009831 spin_unlock(&space_info->lock);
9832 goto out;
9833 }
9834 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009835
Josef Bacikba1bf482009-09-11 16:11:19 -04009836 /*
9837 * ok we don't have enough space, but maybe we have free space on our
9838 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009839 * alloc devices and guess if we have enough space. if this block
9840 * group is going to be restriped, run checks against the target
9841 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04009842 */
9843 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05009844
liubocdcb7252011-08-03 10:15:25 +00009845 /*
9846 * index:
9847 * 0: raid10
9848 * 1: raid1
9849 * 2: dup
9850 * 3: raid0
9851 * 4: single
9852 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009853 target = get_restripe_target(fs_info, block_group->flags);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009854 if (target) {
Qu Wenruo3e72ee82018-01-30 18:20:45 +08009855 index = btrfs_bg_flags_to_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009856 } else {
9857 /*
9858 * this is just a balance, so if we were marked as full
9859 * we know there is no space for a new chunk
9860 */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009861 if (full) {
9862 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009863 btrfs_warn(fs_info,
9864 "no space to alloc new chunk for block group %llu",
9865 block_group->key.objectid);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009866 goto out;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009867 }
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009868
Qu Wenruo3e72ee82018-01-30 18:20:45 +08009869 index = btrfs_bg_flags_to_raid_index(block_group->flags);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009870 }
9871
Miao Xiee6ec7162013-01-17 05:38:51 +00009872 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00009873 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04009874 /* Divide by 2 */
9875 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009876 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00009877 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00009878 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04009879 /* Multiply by 2 */
9880 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009881 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00009882 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01009883 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00009884 }
9885
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009886 mutex_lock(&fs_info->chunk_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04009887 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00009888 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04009889
Josef Bacikba1bf482009-09-11 16:11:19 -04009890 /*
9891 * check to make sure we can actually find a chunk with enough
9892 * space to fit our block group in.
9893 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01009894 if (device->total_bytes > device->bytes_used + min_free &&
Anand Jain401e29c2017-12-04 12:54:55 +08009895 !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Nikolay Borisov60dfdf22019-03-27 14:24:14 +02009896 ret = find_free_dev_extent(device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00009897 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009898 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009899 dev_nr++;
9900
9901 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009902 break;
liubocdcb7252011-08-03 10:15:25 +00009903
Josef Bacikba1bf482009-09-11 16:11:19 -04009904 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009905 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009906 }
Qu Wenruo0305bc22016-03-23 11:38:17 +08009907 if (debug && ret == -1)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009908 btrfs_warn(fs_info,
9909 "no space to allocate a new chunk for block group %llu",
9910 block_group->key.objectid);
9911 mutex_unlock(&fs_info->chunk_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05009912out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009913 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009914 return ret;
9915}
9916
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009917static int find_first_block_group(struct btrfs_fs_info *fs_info,
9918 struct btrfs_path *path,
9919 struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009920{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009921 struct btrfs_root *root = fs_info->extent_root;
Chris Mason925baed2008-06-25 16:01:30 -04009922 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009923 struct btrfs_key found_key;
9924 struct extent_buffer *leaf;
Qu Wenruo514c7dc2018-08-01 10:37:16 +08009925 struct btrfs_block_group_item bg;
9926 u64 flags;
Chris Mason0b86a832008-03-24 15:01:56 -04009927 int slot;
9928
9929 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9930 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009931 goto out;
9932
Chris Masond3977122009-01-05 21:25:51 -05009933 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009934 slot = path->slots[0];
9935 leaf = path->nodes[0];
9936 if (slot >= btrfs_header_nritems(leaf)) {
9937 ret = btrfs_next_leaf(root, path);
9938 if (ret == 0)
9939 continue;
9940 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009941 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009942 break;
9943 }
9944 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9945
9946 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009947 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
Liu Bo6fb37b72016-06-22 18:31:27 -07009948 struct extent_map_tree *em_tree;
9949 struct extent_map *em;
9950
9951 em_tree = &root->fs_info->mapping_tree.map_tree;
9952 read_lock(&em_tree->lock);
9953 em = lookup_extent_mapping(em_tree, found_key.objectid,
9954 found_key.offset);
9955 read_unlock(&em_tree->lock);
9956 if (!em) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009957 btrfs_err(fs_info,
Liu Bo6fb37b72016-06-22 18:31:27 -07009958 "logical %llu len %llu found bg but no related chunk",
9959 found_key.objectid, found_key.offset);
9960 ret = -ENOENT;
Qu Wenruo514c7dc2018-08-01 10:37:16 +08009961 } else if (em->start != found_key.objectid ||
9962 em->len != found_key.offset) {
9963 btrfs_err(fs_info,
9964 "block group %llu len %llu mismatch with chunk %llu len %llu",
9965 found_key.objectid, found_key.offset,
9966 em->start, em->len);
9967 ret = -EUCLEAN;
Liu Bo6fb37b72016-06-22 18:31:27 -07009968 } else {
Qu Wenruo514c7dc2018-08-01 10:37:16 +08009969 read_extent_buffer(leaf, &bg,
9970 btrfs_item_ptr_offset(leaf, slot),
9971 sizeof(bg));
9972 flags = btrfs_block_group_flags(&bg) &
9973 BTRFS_BLOCK_GROUP_TYPE_MASK;
9974
9975 if (flags != (em->map_lookup->type &
9976 BTRFS_BLOCK_GROUP_TYPE_MASK)) {
9977 btrfs_err(fs_info,
9978"block group %llu len %llu type flags 0x%llx mismatch with chunk type flags 0x%llx",
9979 found_key.objectid,
9980 found_key.offset, flags,
9981 (BTRFS_BLOCK_GROUP_TYPE_MASK &
9982 em->map_lookup->type));
9983 ret = -EUCLEAN;
9984 } else {
9985 ret = 0;
9986 }
Liu Bo6fb37b72016-06-22 18:31:27 -07009987 }
Josef Bacik187ee582016-08-18 15:30:06 -04009988 free_extent_map(em);
Chris Mason925baed2008-06-25 16:01:30 -04009989 goto out;
9990 }
Chris Mason0b86a832008-03-24 15:01:56 -04009991 path->slots[0]++;
9992 }
Chris Mason925baed2008-06-25 16:01:30 -04009993out:
Chris Mason0b86a832008-03-24 15:01:56 -04009994 return ret;
9995}
9996
Josef Bacik0af3d002010-06-21 14:48:16 -04009997void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
9998{
9999 struct btrfs_block_group_cache *block_group;
10000 u64 last = 0;
10001
10002 while (1) {
10003 struct inode *inode;
10004
10005 block_group = btrfs_lookup_first_block_group(info, last);
10006 while (block_group) {
Josef Bacik3aa7c7a2018-09-12 10:45:45 -040010007 wait_block_group_cache_done(block_group);
Josef Bacik0af3d002010-06-21 14:48:16 -040010008 spin_lock(&block_group->lock);
10009 if (block_group->iref)
10010 break;
10011 spin_unlock(&block_group->lock);
David Sterbaf87b7eb2019-03-20 12:01:07 +010010012 block_group = next_block_group(block_group);
Josef Bacik0af3d002010-06-21 14:48:16 -040010013 }
10014 if (!block_group) {
10015 if (last == 0)
10016 break;
10017 last = 0;
10018 continue;
10019 }
10020
10021 inode = block_group->inode;
10022 block_group->iref = 0;
10023 block_group->inode = NULL;
10024 spin_unlock(&block_group->lock);
Liu Bof3bca802016-07-20 17:33:44 -070010025 ASSERT(block_group->io_ctl.inode == NULL);
Josef Bacik0af3d002010-06-21 14:48:16 -040010026 iput(inode);
10027 last = block_group->key.objectid + block_group->key.offset;
10028 btrfs_put_block_group(block_group);
10029 }
10030}
10031
Filipe Manana5cdd7db2017-02-01 22:39:50 +000010032/*
10033 * Must be called only after stopping all workers, since we could have block
10034 * group caching kthreads running, and therefore they could race with us if we
10035 * freed the block groups before stopping them.
10036 */
Zheng Yan1a40e232008-09-26 10:09:34 -040010037int btrfs_free_block_groups(struct btrfs_fs_info *info)
10038{
10039 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -040010040 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -040010041 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -040010042 struct rb_node *n;
10043
Josef Bacik9e351cc2014-03-13 15:42:13 -040010044 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -040010045 while (!list_empty(&info->caching_block_groups)) {
10046 caching_ctl = list_entry(info->caching_block_groups.next,
10047 struct btrfs_caching_control, list);
10048 list_del(&caching_ctl->list);
10049 put_caching_control(caching_ctl);
10050 }
Josef Bacik9e351cc2014-03-13 15:42:13 -040010051 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -040010052
Josef Bacik47ab2a62014-09-18 11:20:02 -040010053 spin_lock(&info->unused_bgs_lock);
10054 while (!list_empty(&info->unused_bgs)) {
10055 block_group = list_first_entry(&info->unused_bgs,
10056 struct btrfs_block_group_cache,
10057 bg_list);
10058 list_del_init(&block_group->bg_list);
10059 btrfs_put_block_group(block_group);
10060 }
10061 spin_unlock(&info->unused_bgs_lock);
10062
Zheng Yan1a40e232008-09-26 10:09:34 -040010063 spin_lock(&info->block_group_cache_lock);
10064 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
10065 block_group = rb_entry(n, struct btrfs_block_group_cache,
10066 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -040010067 rb_erase(&block_group->cache_node,
10068 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +000010069 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -040010070 spin_unlock(&info->block_group_cache_lock);
10071
Josef Bacik80eb2342008-10-29 14:49:05 -040010072 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -040010073 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -040010074 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -050010075
Josef Bacik3c148742011-02-02 15:53:47 +000010076 /*
10077 * We haven't cached this block group, which means we could
10078 * possibly have excluded extents on this block group.
10079 */
Josef Bacik36cce922013-08-05 11:15:21 -040010080 if (block_group->cached == BTRFS_CACHE_NO ||
10081 block_group->cached == BTRFS_CACHE_ERROR)
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010082 free_excluded_extents(block_group);
Josef Bacik3c148742011-02-02 15:53:47 +000010083
Josef Bacik817d52f2009-07-13 21:29:25 -040010084 btrfs_remove_free_space_cache(block_group);
Filipe Manana5cdd7db2017-02-01 22:39:50 +000010085 ASSERT(block_group->cached != BTRFS_CACHE_STARTED);
Liu Bof3bca802016-07-20 17:33:44 -070010086 ASSERT(list_empty(&block_group->dirty_list));
10087 ASSERT(list_empty(&block_group->io_list));
10088 ASSERT(list_empty(&block_group->bg_list));
10089 ASSERT(atomic_read(&block_group->count) == 1);
Josef Bacik11dfe352009-11-13 20:12:59 +000010090 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -040010091
10092 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010093 }
10094 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -040010095
10096 /* now that all the block groups are freed, go through and
10097 * free all the space_info structs. This is only called during
10098 * the final stages of unmount, and so we know nobody is
10099 * using them. We call synchronize_rcu() once before we start,
10100 * just to be on the safe side.
10101 */
10102 synchronize_rcu();
10103
Yan, Zheng8929ecfa2010-05-16 10:49:58 -040010104 release_global_block_rsv(info);
10105
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010106 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010107 int i;
10108
Chris Mason4184ea72009-03-10 12:39:20 -040010109 space_info = list_entry(info->space_info.next,
10110 struct btrfs_space_info,
10111 list);
Josef Bacikd555b6c32016-03-25 13:25:51 -040010112
10113 /*
10114 * Do not hide this behind enospc_debug, this is actually
10115 * important and indicates a real bug if this happens.
10116 */
10117 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +000010118 space_info->bytes_reserved > 0 ||
Josef Bacikd555b6c32016-03-25 13:25:51 -040010119 space_info->bytes_may_use > 0))
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -040010120 dump_space_info(info, space_info, 0, 0);
Chris Mason4184ea72009-03-10 12:39:20 -040010121 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010122 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
10123 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010124 kobj = space_info->block_group_kobjs[i];
10125 space_info->block_group_kobjs[i] = NULL;
10126 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010127 kobject_del(kobj);
10128 kobject_put(kobj);
10129 }
10130 }
10131 kobject_del(&space_info->kobj);
10132 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -040010133 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010134 return 0;
10135}
10136
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010137/* link_block_group will queue up kobjects to add when we're reclaim-safe */
10138void btrfs_add_raid_kobjects(struct btrfs_fs_info *fs_info)
10139{
10140 struct btrfs_space_info *space_info;
10141 struct raid_kobject *rkobj;
10142 LIST_HEAD(list);
10143 int index;
10144 int ret = 0;
10145
10146 spin_lock(&fs_info->pending_raid_kobjs_lock);
10147 list_splice_init(&fs_info->pending_raid_kobjs, &list);
10148 spin_unlock(&fs_info->pending_raid_kobjs_lock);
10149
10150 list_for_each_entry(rkobj, &list, list) {
10151 space_info = __find_space_info(fs_info, rkobj->flags);
10152 index = btrfs_bg_flags_to_raid_index(rkobj->flags);
10153
10154 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
10155 "%s", get_raid_name(index));
10156 if (ret) {
10157 kobject_put(&rkobj->kobj);
10158 break;
10159 }
10160 }
10161 if (ret)
10162 btrfs_warn(fs_info,
10163 "failed to add kobject for block cache, ignoring");
10164}
10165
Nikolay Borisovc434d212017-08-21 12:43:50 +030010166static void link_block_group(struct btrfs_block_group_cache *cache)
Yan, Zhengb742bb822010-05-16 10:46:24 -040010167{
Nikolay Borisovc434d212017-08-21 12:43:50 +030010168 struct btrfs_space_info *space_info = cache->space_info;
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010169 struct btrfs_fs_info *fs_info = cache->fs_info;
Qu Wenruo3e72ee82018-01-30 18:20:45 +080010170 int index = btrfs_bg_flags_to_raid_index(cache->flags);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010171 bool first = false;
Yan, Zhengb742bb822010-05-16 10:46:24 -040010172
10173 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010174 if (list_empty(&space_info->block_groups[index]))
10175 first = true;
10176 list_add_tail(&cache->list, &space_info->block_groups[index]);
10177 up_write(&space_info->groups_sem);
10178
10179 if (first) {
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010180 struct raid_kobject *rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
10181 if (!rkobj) {
10182 btrfs_warn(cache->fs_info,
10183 "couldn't alloc memory for raid level kobject");
10184 return;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010185 }
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010186 rkobj->flags = cache->flags;
10187 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
10188
10189 spin_lock(&fs_info->pending_raid_kobjs_lock);
10190 list_add_tail(&rkobj->list, &fs_info->pending_raid_kobjs);
10191 spin_unlock(&fs_info->pending_raid_kobjs_lock);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010192 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010193 }
Yan, Zhengb742bb822010-05-16 10:46:24 -040010194}
10195
Miao Xie920e4a52014-01-15 20:00:55 +080010196static struct btrfs_block_group_cache *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010197btrfs_create_block_group_cache(struct btrfs_fs_info *fs_info,
10198 u64 start, u64 size)
Miao Xie920e4a52014-01-15 20:00:55 +080010199{
10200 struct btrfs_block_group_cache *cache;
10201
10202 cache = kzalloc(sizeof(*cache), GFP_NOFS);
10203 if (!cache)
10204 return NULL;
10205
10206 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
10207 GFP_NOFS);
10208 if (!cache->free_space_ctl) {
10209 kfree(cache);
10210 return NULL;
10211 }
10212
10213 cache->key.objectid = start;
10214 cache->key.offset = size;
10215 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
10216
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010217 cache->fs_info = fs_info;
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +030010218 cache->full_stripe_len = btrfs_full_stripe_len(fs_info, start);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010219 set_free_space_tree_thresholds(cache);
10220
Miao Xie920e4a52014-01-15 20:00:55 +080010221 atomic_set(&cache->count, 1);
10222 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +080010223 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +080010224 INIT_LIST_HEAD(&cache->list);
10225 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010226 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -040010227 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -050010228 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -070010229 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +080010230 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +000010231 atomic_set(&cache->trimming, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -070010232 mutex_init(&cache->free_space_lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +080010233 btrfs_init_full_stripe_locks_tree(&cache->full_stripe_locks_root);
Miao Xie920e4a52014-01-15 20:00:55 +080010234
10235 return cache;
10236}
10237
Qu Wenruo7ef49512018-08-01 10:37:17 +080010238
10239/*
10240 * Iterate all chunks and verify that each of them has the corresponding block
10241 * group
10242 */
10243static int check_chunk_block_group_mappings(struct btrfs_fs_info *fs_info)
10244{
10245 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
10246 struct extent_map *em;
10247 struct btrfs_block_group_cache *bg;
10248 u64 start = 0;
10249 int ret = 0;
10250
10251 while (1) {
10252 read_lock(&map_tree->map_tree.lock);
10253 /*
10254 * lookup_extent_mapping will return the first extent map
10255 * intersecting the range, so setting @len to 1 is enough to
10256 * get the first chunk.
10257 */
10258 em = lookup_extent_mapping(&map_tree->map_tree, start, 1);
10259 read_unlock(&map_tree->map_tree.lock);
10260 if (!em)
10261 break;
10262
10263 bg = btrfs_lookup_block_group(fs_info, em->start);
10264 if (!bg) {
10265 btrfs_err(fs_info,
10266 "chunk start=%llu len=%llu doesn't have corresponding block group",
10267 em->start, em->len);
10268 ret = -EUCLEAN;
10269 free_extent_map(em);
10270 break;
10271 }
10272 if (bg->key.objectid != em->start ||
10273 bg->key.offset != em->len ||
10274 (bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK) !=
10275 (em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK)) {
10276 btrfs_err(fs_info,
10277"chunk start=%llu len=%llu flags=0x%llx doesn't match block group start=%llu len=%llu flags=0x%llx",
10278 em->start, em->len,
10279 em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK,
10280 bg->key.objectid, bg->key.offset,
10281 bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK);
10282 ret = -EUCLEAN;
10283 free_extent_map(em);
10284 btrfs_put_block_group(bg);
10285 break;
10286 }
10287 start = em->start + em->len;
10288 free_extent_map(em);
10289 btrfs_put_block_group(bg);
10290 }
10291 return ret;
10292}
10293
Jeff Mahoney5b4aace2016-06-21 10:40:19 -040010294int btrfs_read_block_groups(struct btrfs_fs_info *info)
Chris Mason9078a3e2007-04-26 16:46:15 -040010295{
10296 struct btrfs_path *path;
10297 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010298 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -040010299 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -040010300 struct btrfs_key key;
10301 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -040010302 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -040010303 int need_clear = 0;
10304 u64 cache_gen;
Liu Bo49303382016-08-25 18:08:27 -070010305 u64 feature;
10306 int mixed;
10307
10308 feature = btrfs_super_incompat_flags(info->super_copy);
10309 mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS);
Chris Mason96b51792007-10-15 16:15:19 -040010310
Chris Mason9078a3e2007-04-26 16:46:15 -040010311 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -040010312 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010313 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -040010314 path = btrfs_alloc_path();
10315 if (!path)
10316 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +010010317 path->reada = READA_FORWARD;
Chris Mason9078a3e2007-04-26 16:46:15 -040010318
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010319 cache_gen = btrfs_super_cache_generation(info->super_copy);
10320 if (btrfs_test_opt(info, SPACE_CACHE) &&
10321 btrfs_super_generation(info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -040010322 need_clear = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010323 if (btrfs_test_opt(info, CLEAR_CACHE))
Josef Bacik88c2ba32010-09-21 14:21:34 -040010324 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -040010325
Chris Masond3977122009-01-05 21:25:51 -050010326 while (1) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010327 ret = find_first_block_group(info, path, &key);
Yan, Zhengb742bb822010-05-16 10:46:24 -040010328 if (ret > 0)
10329 break;
Chris Mason0b86a832008-03-24 15:01:56 -040010330 if (ret != 0)
10331 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +080010332
Chris Mason5f39d392007-10-15 16:14:19 -040010333 leaf = path->nodes[0];
10334 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +080010335
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010336 cache = btrfs_create_block_group_cache(info, found_key.objectid,
Miao Xie920e4a52014-01-15 20:00:55 +080010337 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -040010338 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -040010339 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -040010340 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -040010341 }
Josef Bacik96303082009-07-13 21:29:25 -040010342
Liu Bocf7c1ef2012-07-06 03:31:34 -060010343 if (need_clear) {
10344 /*
10345 * When we mount with old space cache, we need to
10346 * set BTRFS_DC_CLEAR and set dirty flag.
10347 *
10348 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
10349 * truncate the old free space cache inode and
10350 * setup a new one.
10351 * b) Setting 'dirty flag' makes sure that we flush
10352 * the new space cache info onto disk.
10353 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010354 if (btrfs_test_opt(info, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -050010355 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -060010356 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010357
Chris Mason5f39d392007-10-15 16:14:19 -040010358 read_extent_buffer(leaf, &cache->item,
10359 btrfs_item_ptr_offset(leaf, path->slots[0]),
10360 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +080010361 cache->flags = btrfs_block_group_flags(&cache->item);
Liu Bo49303382016-08-25 18:08:27 -070010362 if (!mixed &&
10363 ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) &&
10364 (cache->flags & BTRFS_BLOCK_GROUP_DATA))) {
10365 btrfs_err(info,
10366"bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups",
10367 cache->key.objectid);
10368 ret = -EINVAL;
10369 goto error;
10370 }
Chris Mason0b86a832008-03-24 15:01:56 -040010371
Chris Mason9078a3e2007-04-26 16:46:15 -040010372 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +020010373 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +080010374
Josef Bacik817d52f2009-07-13 21:29:25 -040010375 /*
Josef Bacik3c148742011-02-02 15:53:47 +000010376 * We need to exclude the super stripes now so that the space
10377 * info has super bytes accounted for, otherwise we'll think
10378 * we have more space than we actually do.
10379 */
Nikolay Borisov3c4da652018-06-20 15:49:09 +030010380 ret = exclude_super_stripes(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010381 if (ret) {
10382 /*
10383 * We may have excluded something, so call this just in
10384 * case.
10385 */
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010386 free_excluded_extents(cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010387 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010388 goto error;
10389 }
Josef Bacik3c148742011-02-02 15:53:47 +000010390
10391 /*
Josef Bacik817d52f2009-07-13 21:29:25 -040010392 * check for two cases, either we are full, and therefore
10393 * don't need to bother with the caching work since we won't
10394 * find any space, or we are empty, and we can just add all
Andrea Gelmini52042d82018-11-28 12:05:13 +010010395 * the space in and be done with it. This saves us _a_lot_ of
Josef Bacik817d52f2009-07-13 21:29:25 -040010396 * time, particularly in the full case.
10397 */
10398 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -040010399 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010400 cache->cached = BTRFS_CACHE_FINISHED;
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010401 free_excluded_extents(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010402 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -040010403 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010404 cache->cached = BTRFS_CACHE_FINISHED;
Nikolay Borisov4457c1c2018-05-10 15:44:45 +030010405 add_new_free_space(cache, found_key.objectid,
Josef Bacik817d52f2009-07-13 21:29:25 -040010406 found_key.objectid +
10407 found_key.offset);
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010408 free_excluded_extents(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010409 }
Chris Mason96b51792007-10-15 16:15:19 -040010410
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010411 ret = btrfs_add_block_group_cache(info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010412 if (ret) {
10413 btrfs_remove_free_space_cache(cache);
10414 btrfs_put_block_group(cache);
10415 goto error;
10416 }
10417
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010418 trace_btrfs_add_block_group(info, cache, 0);
Nikolay Borisovd2006e62017-05-22 09:35:50 +030010419 update_space_info(info, cache->flags, found_key.offset,
10420 btrfs_block_group_used(&cache->item),
10421 cache->bytes_super, &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010422
Chris Mason6324fbf2008-03-24 15:01:59 -040010423 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -040010424
Nikolay Borisovc434d212017-08-21 12:43:50 +030010425 link_block_group(cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010426
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010427 set_avail_alloc_bits(info, cache->flags);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010428 if (btrfs_chunk_readonly(info, cache->key.objectid)) {
Zhaolei868f4012015-08-05 16:43:27 +080010429 inc_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010430 } else if (btrfs_block_group_used(&cache->item) == 0) {
Qu Wenruo031f24d2018-05-22 16:43:47 +080010431 ASSERT(list_empty(&cache->bg_list));
10432 btrfs_mark_bg_unused(cache);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010433 }
Chris Mason9078a3e2007-04-26 16:46:15 -040010434 }
Yan, Zhengb742bb822010-05-16 10:46:24 -040010435
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010436 list_for_each_entry_rcu(space_info, &info->space_info, list) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010437 if (!(get_alloc_profile(info, space_info->flags) &
Yan, Zhengb742bb822010-05-16 10:46:24 -040010438 (BTRFS_BLOCK_GROUP_RAID10 |
10439 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -050010440 BTRFS_BLOCK_GROUP_RAID5 |
10441 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb822010-05-16 10:46:24 -040010442 BTRFS_BLOCK_GROUP_DUP)))
10443 continue;
10444 /*
10445 * avoid allocating from un-mirrored block group if there are
10446 * mirrored block groups.
10447 */
chandan1095cc02013-07-16 12:28:56 +053010448 list_for_each_entry(cache,
10449 &space_info->block_groups[BTRFS_RAID_RAID0],
10450 list)
Zhaolei868f4012015-08-05 16:43:27 +080010451 inc_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +053010452 list_for_each_entry(cache,
10453 &space_info->block_groups[BTRFS_RAID_SINGLE],
10454 list)
Zhaolei868f4012015-08-05 16:43:27 +080010455 inc_block_group_ro(cache, 1);
Yan, Zhengb742bb822010-05-16 10:46:24 -040010456 }
Yan, Zhengf0486c62010-05-16 10:46:25 -040010457
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010458 btrfs_add_raid_kobjects(info);
Yan, Zhengf0486c62010-05-16 10:46:25 -040010459 init_global_block_rsv(info);
Qu Wenruo7ef49512018-08-01 10:37:17 +080010460 ret = check_chunk_block_group_mappings(info);
Chris Mason0b86a832008-03-24 15:01:56 -040010461error:
Chris Mason9078a3e2007-04-26 16:46:15 -040010462 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -040010463 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010464}
Chris Mason6324fbf2008-03-24 15:01:59 -040010465
Nikolay Borisov6c686b32018-02-07 17:55:40 +020010466void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans)
Josef Bacikea658ba2012-09-11 16:57:25 -040010467{
Nikolay Borisov6c686b32018-02-07 17:55:40 +020010468 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacik545e3362018-09-28 07:18:02 -040010469 struct btrfs_block_group_cache *block_group;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010470 struct btrfs_root *extent_root = fs_info->extent_root;
Josef Bacikea658ba2012-09-11 16:57:25 -040010471 struct btrfs_block_group_item item;
10472 struct btrfs_key key;
10473 int ret = 0;
10474
Filipe Manana5ce55552018-10-12 10:03:55 +010010475 if (!trans->can_flush_pending_bgs)
10476 return;
10477
Josef Bacik545e3362018-09-28 07:18:02 -040010478 while (!list_empty(&trans->new_bgs)) {
10479 block_group = list_first_entry(&trans->new_bgs,
10480 struct btrfs_block_group_cache,
10481 bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010482 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +000010483 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -040010484
10485 spin_lock(&block_group->lock);
10486 memcpy(&item, &block_group->item, sizeof(item));
10487 memcpy(&key, &block_group->key, sizeof(key));
10488 spin_unlock(&block_group->lock);
10489
10490 ret = btrfs_insert_item(trans, extent_root, &key, &item,
10491 sizeof(item));
10492 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010493 btrfs_abort_transaction(trans, ret);
Nikolay Borisov97aff912018-07-20 19:37:53 +030010494 ret = btrfs_finish_chunk_alloc(trans, key.objectid, key.offset);
Josef Bacik6df9a952013-06-27 13:22:46 -040010495 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010496 btrfs_abort_transaction(trans, ret);
Nikolay Borisove4e07112018-05-10 15:44:41 +030010497 add_block_group_free_space(trans, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010498 /* already aborted the transaction if it failed. */
Filipe Mananac92f6be2014-11-26 15:28:55 +000010499next:
Josef Bacikba2c4d42018-12-03 10:20:33 -050010500 btrfs_delayed_refs_rsv_release(fs_info, 1);
Filipe Mananac92f6be2014-11-26 15:28:55 +000010501 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010502 }
Filipe Manana5ce55552018-10-12 10:03:55 +010010503 btrfs_trans_release_chunk_metadata(trans);
Josef Bacikea658ba2012-09-11 16:57:25 -040010504}
10505
Nikolay Borisove7e02092018-06-20 15:48:55 +030010506int btrfs_make_block_group(struct btrfs_trans_handle *trans, u64 bytes_used,
Nikolay Borisov01744842017-07-27 14:22:11 +030010507 u64 type, u64 chunk_offset, u64 size)
Chris Mason6324fbf2008-03-24 15:01:59 -040010508{
Nikolay Borisove7e02092018-06-20 15:48:55 +030010509 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -040010510 struct btrfs_block_group_cache *cache;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010511 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -040010512
David Sterba90787762019-03-20 13:28:05 +010010513 btrfs_set_log_full_commit(trans);
Chris Masone02119d2008-09-05 16:13:11 -040010514
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010515 cache = btrfs_create_block_group_cache(fs_info, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -040010516 if (!cache)
10517 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +080010518
Chris Mason6324fbf2008-03-24 15:01:59 -040010519 btrfs_set_block_group_used(&cache->item, bytes_used);
Nikolay Borisov01744842017-07-27 14:22:11 +030010520 btrfs_set_block_group_chunk_objectid(&cache->item,
10521 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
Chris Mason6324fbf2008-03-24 15:01:59 -040010522 btrfs_set_block_group_flags(&cache->item, type);
10523
Miao Xie920e4a52014-01-15 20:00:55 +080010524 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -040010525 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010526 cache->cached = BTRFS_CACHE_FINISHED;
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010527 cache->needs_free_space = 1;
Nikolay Borisov3c4da652018-06-20 15:49:09 +030010528 ret = exclude_super_stripes(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010529 if (ret) {
10530 /*
10531 * We may have excluded something, so call this just in
10532 * case.
10533 */
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010534 free_excluded_extents(cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010535 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010536 return ret;
10537 }
Josef Bacik96303082009-07-13 21:29:25 -040010538
Nikolay Borisov4457c1c2018-05-10 15:44:45 +030010539 add_new_free_space(cache, chunk_offset, chunk_offset + size);
Josef Bacik817d52f2009-07-13 21:29:25 -040010540
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010541 free_excluded_extents(cache);
Yan Zheng11833d62009-09-11 16:11:19 -040010542
Josef Bacikd0bd4562015-09-23 14:54:14 -040010543#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010544 if (btrfs_should_fragment_free_space(cache)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -040010545 u64 new_bytes_used = size - bytes_used;
10546
10547 bytes_used += new_bytes_used >> 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010548 fragment_free_space(cache);
Josef Bacikd0bd4562015-09-23 14:54:14 -040010549 }
10550#endif
Filipe Manana2e6e5182015-05-12 00:28:11 +010010551 /*
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010552 * Ensure the corresponding space_info object is created and
10553 * assigned to our block group. We want our bg to be added to the rbtree
10554 * with its ->space_info set.
Filipe Manana2e6e5182015-05-12 00:28:11 +010010555 */
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010556 cache->space_info = __find_space_info(fs_info, cache->flags);
Jeff Mahoneydc2d3002018-03-20 15:25:25 -040010557 ASSERT(cache->space_info);
Filipe Manana2e6e5182015-05-12 00:28:11 +010010558
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010559 ret = btrfs_add_block_group_cache(fs_info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010560 if (ret) {
10561 btrfs_remove_free_space_cache(cache);
10562 btrfs_put_block_group(cache);
10563 return ret;
10564 }
10565
Filipe Manana2e6e5182015-05-12 00:28:11 +010010566 /*
10567 * Now that our block group has its ->space_info set and is inserted in
10568 * the rbtree, update the space info's counters.
10569 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010570 trace_btrfs_add_block_group(fs_info, cache, 1);
Nikolay Borisovd2006e62017-05-22 09:35:50 +030010571 update_space_info(fs_info, cache->flags, size, bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -040010572 cache->bytes_super, &cache->space_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010573 update_global_block_rsv(fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -040010574
Nikolay Borisovc434d212017-08-21 12:43:50 +030010575 link_block_group(cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010576
Josef Bacik47ab2a62014-09-18 11:20:02 -040010577 list_add_tail(&cache->bg_list, &trans->new_bgs);
Josef Bacikba2c4d42018-12-03 10:20:33 -050010578 trans->delayed_ref_updates++;
10579 btrfs_update_delayed_refs_rsv(trans);
Chris Mason6324fbf2008-03-24 15:01:59 -040010580
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010581 set_avail_alloc_bits(fs_info, type);
Chris Mason6324fbf2008-03-24 15:01:59 -040010582 return 0;
10583}
Zheng Yan1a40e232008-09-26 10:09:34 -040010584
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010585static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
10586{
Ilya Dryomov899c81e2012-03-27 17:09:16 +030010587 u64 extra_flags = chunk_to_extended(flags) &
10588 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010589
Miao Xiede98ced2013-01-29 10:13:12 +000010590 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010591 if (flags & BTRFS_BLOCK_GROUP_DATA)
10592 fs_info->avail_data_alloc_bits &= ~extra_flags;
10593 if (flags & BTRFS_BLOCK_GROUP_METADATA)
10594 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
10595 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
10596 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +000010597 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010598}
10599
Zheng Yan1a40e232008-09-26 10:09:34 -040010600int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Nikolay Borisov5a98ec02018-06-20 15:48:56 +030010601 u64 group_start, struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -040010602{
Nikolay Borisov5a98ec02018-06-20 15:48:56 +030010603 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010604 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010605 struct btrfs_path *path;
10606 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -040010607 struct btrfs_free_cluster *cluster;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010608 struct btrfs_root *tree_root = fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010609 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -040010610 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010611 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -040010612 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010613 int index;
Josef Bacik89a55892010-10-14 14:52:27 -040010614 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +000010615 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +000010616 bool remove_em;
Josef Bacikba2c4d42018-12-03 10:20:33 -050010617 bool remove_rsv = false;
Zheng Yan1a40e232008-09-26 10:09:34 -040010618
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010619 block_group = btrfs_lookup_block_group(fs_info, group_start);
Zheng Yan1a40e232008-09-26 10:09:34 -040010620 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -050010621 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -040010622
Qu Wenruo4ed0a7a2018-04-26 17:17:20 +080010623 trace_btrfs_remove_block_group(block_group);
liubo9f7c43c2011-03-07 02:13:33 +000010624 /*
10625 * Free the reserved super bytes from this block group before
10626 * remove it.
10627 */
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010628 free_excluded_extents(block_group);
Josef Bacikfd708b82017-09-29 15:43:50 -040010629 btrfs_free_ref_tree_range(fs_info, block_group->key.objectid,
10630 block_group->key.offset);
liubo9f7c43c2011-03-07 02:13:33 +000010631
Zheng Yan1a40e232008-09-26 10:09:34 -040010632 memcpy(&key, &block_group->key, sizeof(key));
Qu Wenruo3e72ee82018-01-30 18:20:45 +080010633 index = btrfs_bg_flags_to_raid_index(block_group->flags);
David Sterba46df06b2018-07-13 20:46:30 +020010634 factor = btrfs_bg_type_to_factor(block_group->flags);
Zheng Yan1a40e232008-09-26 10:09:34 -040010635
Chris Mason44fb5512009-06-04 15:34:51 -040010636 /* make sure this block group isn't part of an allocation cluster */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010637 cluster = &fs_info->data_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010638 spin_lock(&cluster->refill_lock);
10639 btrfs_return_cluster_to_free_space(block_group, cluster);
10640 spin_unlock(&cluster->refill_lock);
10641
10642 /*
10643 * make sure this block group isn't part of a metadata
10644 * allocation cluster
10645 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010646 cluster = &fs_info->meta_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010647 spin_lock(&cluster->refill_lock);
10648 btrfs_return_cluster_to_free_space(block_group, cluster);
10649 spin_unlock(&cluster->refill_lock);
10650
Zheng Yan1a40e232008-09-26 10:09:34 -040010651 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010652 if (!path) {
10653 ret = -ENOMEM;
10654 goto out;
10655 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010656
Chris Mason1bbc6212015-04-06 12:46:08 -070010657 /*
10658 * get the inode first so any iput calls done for the io_list
10659 * aren't the final iput (no unlinks allowed now)
10660 */
David Sterba7949f332019-03-20 13:40:19 +010010661 inode = lookup_free_space_inode(block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010662
10663 mutex_lock(&trans->transaction->cache_write_mutex);
10664 /*
Andrea Gelmini52042d82018-11-28 12:05:13 +010010665 * Make sure our free space cache IO is done before removing the
Chris Mason1bbc6212015-04-06 12:46:08 -070010666 * free space inode
10667 */
10668 spin_lock(&trans->transaction->dirty_bgs_lock);
10669 if (!list_empty(&block_group->io_list)) {
10670 list_del_init(&block_group->io_list);
10671
10672 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
10673
10674 spin_unlock(&trans->transaction->dirty_bgs_lock);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -040010675 btrfs_wait_cache_io(trans, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010676 btrfs_put_block_group(block_group);
10677 spin_lock(&trans->transaction->dirty_bgs_lock);
10678 }
10679
10680 if (!list_empty(&block_group->dirty_list)) {
10681 list_del_init(&block_group->dirty_list);
Josef Bacikba2c4d42018-12-03 10:20:33 -050010682 remove_rsv = true;
Chris Mason1bbc6212015-04-06 12:46:08 -070010683 btrfs_put_block_group(block_group);
10684 }
10685 spin_unlock(&trans->transaction->dirty_bgs_lock);
10686 mutex_unlock(&trans->transaction->cache_write_mutex);
10687
Josef Bacik0af3d002010-06-21 14:48:16 -040010688 if (!IS_ERR(inode)) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010689 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010690 if (ret) {
10691 btrfs_add_delayed_iput(inode);
10692 goto out;
10693 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010694 clear_nlink(inode);
10695 /* One for the block groups ref */
10696 spin_lock(&block_group->lock);
10697 if (block_group->iref) {
10698 block_group->iref = 0;
10699 block_group->inode = NULL;
10700 spin_unlock(&block_group->lock);
10701 iput(inode);
10702 } else {
10703 spin_unlock(&block_group->lock);
10704 }
10705 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -040010706 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -040010707 }
10708
10709 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
10710 key.offset = block_group->key.objectid;
10711 key.type = 0;
10712
10713 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
10714 if (ret < 0)
10715 goto out;
10716 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +020010717 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010718 if (ret == 0) {
10719 ret = btrfs_del_item(trans, tree_root, path);
10720 if (ret)
10721 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +020010722 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010723 }
10724
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010725 spin_lock(&fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010726 rb_erase(&block_group->cache_node,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010727 &fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +000010728 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +000010729
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010730 if (fs_info->first_logical_byte == block_group->key.objectid)
10731 fs_info->first_logical_byte = (u64)-1;
10732 spin_unlock(&fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010733
Josef Bacik80eb2342008-10-29 14:49:05 -040010734 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -040010735 /*
10736 * we must use list_del_init so people can check to see if they
10737 * are still on the list after taking the semaphore
10738 */
10739 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010740 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010741 kobj = block_group->space_info->block_group_kobjs[index];
10742 block_group->space_info->block_group_kobjs[index] = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010743 clear_avail_alloc_bits(fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010744 }
Josef Bacik80eb2342008-10-29 14:49:05 -040010745 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010746 if (kobj) {
10747 kobject_del(kobj);
10748 kobject_put(kobj);
10749 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010750
Filipe Manana4f69cb92014-11-26 15:28:51 +000010751 if (block_group->has_caching_ctl)
10752 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -040010753 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -040010754 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010755 if (block_group->has_caching_ctl) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010756 down_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010757 if (!caching_ctl) {
10758 struct btrfs_caching_control *ctl;
10759
10760 list_for_each_entry(ctl,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010761 &fs_info->caching_block_groups, list)
Filipe Manana4f69cb92014-11-26 15:28:51 +000010762 if (ctl->block_group == block_group) {
10763 caching_ctl = ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +020010764 refcount_inc(&caching_ctl->count);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010765 break;
10766 }
10767 }
10768 if (caching_ctl)
10769 list_del_init(&caching_ctl->list);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010770 up_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010771 if (caching_ctl) {
10772 /* Once for the caching bgs list and once for us. */
10773 put_caching_control(caching_ctl);
10774 put_caching_control(caching_ctl);
10775 }
10776 }
Josef Bacik817d52f2009-07-13 21:29:25 -040010777
Josef Bacikce93ec52014-11-17 15:45:48 -050010778 spin_lock(&trans->transaction->dirty_bgs_lock);
Nikolay Borisov9a0ec832019-01-30 16:50:49 +020010779 WARN_ON(!list_empty(&block_group->dirty_list));
10780 WARN_ON(!list_empty(&block_group->io_list));
Josef Bacikce93ec52014-11-17 15:45:48 -050010781 spin_unlock(&trans->transaction->dirty_bgs_lock);
Nikolay Borisov9a0ec832019-01-30 16:50:49 +020010782
Josef Bacik817d52f2009-07-13 21:29:25 -040010783 btrfs_remove_free_space_cache(block_group);
10784
Yan Zhengc146afa2008-11-12 14:34:12 -050010785 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +000010786 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +080010787
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010788 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Zhao Lei18d018a2015-02-24 20:07:44 +080010789 WARN_ON(block_group->space_info->total_bytes
10790 < block_group->key.offset);
10791 WARN_ON(block_group->space_info->bytes_readonly
10792 < block_group->key.offset);
10793 WARN_ON(block_group->space_info->disk_total
10794 < block_group->key.offset * factor);
10795 }
Yan Zhengc146afa2008-11-12 14:34:12 -050010796 block_group->space_info->total_bytes -= block_group->key.offset;
10797 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -040010798 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +080010799
Yan Zhengc146afa2008-11-12 14:34:12 -050010800 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -040010801
Josef Bacik0af3d002010-06-21 14:48:16 -040010802 memcpy(&key, &block_group->key, sizeof(key));
10803
David Sterba34441362016-10-04 19:34:27 +020010804 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana04216822014-11-27 21:14:15 +000010805 spin_lock(&block_group->lock);
10806 block_group->removed = 1;
10807 /*
10808 * At this point trimming can't start on this block group, because we
10809 * removed the block group from the tree fs_info->block_group_cache_tree
10810 * so no one can't find it anymore and even if someone already got this
10811 * block group before we removed it from the rbtree, they have already
10812 * incremented block_group->trimming - if they didn't, they won't find
10813 * any free space entries because we already removed them all when we
10814 * called btrfs_remove_free_space_cache().
10815 *
10816 * And we must not remove the extent map from the fs_info->mapping_tree
10817 * to prevent the same logical address range and physical device space
10818 * ranges from being reused for a new block group. This is because our
10819 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
10820 * completely transactionless, so while it is trimming a range the
10821 * currently running transaction might finish and a new one start,
10822 * allowing for new block groups to be created that can reuse the same
10823 * physical device locations unless we take this special care.
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010824 *
10825 * There may also be an implicit trim operation if the file system
10826 * is mounted with -odiscard. The same protections must remain
10827 * in place until the extents have been discarded completely when
10828 * the transaction commit has completed.
Filipe Manana04216822014-11-27 21:14:15 +000010829 */
10830 remove_em = (atomic_read(&block_group->trimming) == 0);
Filipe Manana04216822014-11-27 21:14:15 +000010831 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +000010832
10833 if (remove_em) {
10834 struct extent_map_tree *em_tree;
10835
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010836 em_tree = &fs_info->mapping_tree.map_tree;
Filipe Manana04216822014-11-27 21:14:15 +000010837 write_lock(&em_tree->lock);
10838 remove_extent_mapping(em_tree, em);
10839 write_unlock(&em_tree->lock);
10840 /* once for the tree */
10841 free_extent_map(em);
10842 }
10843
David Sterba34441362016-10-04 19:34:27 +020010844 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010845
Nikolay Borisovf3f72772018-05-10 15:44:46 +030010846 ret = remove_block_group_free_space(trans, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010847 if (ret)
10848 goto out;
10849
Chris Masonfa9c0d792009-04-03 09:47:43 -040010850 btrfs_put_block_group(block_group);
10851 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -040010852
10853 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
10854 if (ret > 0)
10855 ret = -EIO;
10856 if (ret < 0)
10857 goto out;
10858
10859 ret = btrfs_del_item(trans, root, path);
10860out:
Josef Bacikba2c4d42018-12-03 10:20:33 -050010861 if (remove_rsv)
10862 btrfs_delayed_refs_rsv_release(fs_info, 1);
Zheng Yan1a40e232008-09-26 10:09:34 -040010863 btrfs_free_path(path);
10864 return ret;
10865}
liuboacce9522011-01-06 19:30:25 +080010866
Filipe Manana8eab77f2015-11-13 23:57:16 +000010867struct btrfs_trans_handle *
Filipe Manana7fd01182015-11-13 23:57:17 +000010868btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info,
10869 const u64 chunk_offset)
Filipe Manana8eab77f2015-11-13 23:57:16 +000010870{
Filipe Manana7fd01182015-11-13 23:57:17 +000010871 struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree;
10872 struct extent_map *em;
10873 struct map_lookup *map;
10874 unsigned int num_items;
10875
10876 read_lock(&em_tree->lock);
10877 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
10878 read_unlock(&em_tree->lock);
10879 ASSERT(em && em->start == chunk_offset);
10880
Filipe Manana8eab77f2015-11-13 23:57:16 +000010881 /*
Filipe Manana7fd01182015-11-13 23:57:17 +000010882 * We need to reserve 3 + N units from the metadata space info in order
10883 * to remove a block group (done at btrfs_remove_chunk() and at
10884 * btrfs_remove_block_group()), which are used for:
10885 *
Filipe Manana8eab77f2015-11-13 23:57:16 +000010886 * 1 unit for adding the free space inode's orphan (located in the tree
10887 * of tree roots).
Filipe Manana7fd01182015-11-13 23:57:17 +000010888 * 1 unit for deleting the block group item (located in the extent
10889 * tree).
10890 * 1 unit for deleting the free space item (located in tree of tree
10891 * roots).
10892 * N units for deleting N device extent items corresponding to each
10893 * stripe (located in the device tree).
10894 *
10895 * In order to remove a block group we also need to reserve units in the
10896 * system space info in order to update the chunk tree (update one or
10897 * more device items and remove one chunk item), but this is done at
10898 * btrfs_remove_chunk() through a call to check_system_chunk().
Filipe Manana8eab77f2015-11-13 23:57:16 +000010899 */
Jeff Mahoney95617d62015-06-03 10:55:48 -040010900 map = em->map_lookup;
Filipe Manana7fd01182015-11-13 23:57:17 +000010901 num_items = 3 + map->num_stripes;
10902 free_extent_map(em);
10903
Filipe Manana8eab77f2015-11-13 23:57:16 +000010904 return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root,
Filipe Manana7fd01182015-11-13 23:57:17 +000010905 num_items, 1);
Filipe Manana8eab77f2015-11-13 23:57:16 +000010906}
10907
Josef Bacik47ab2a62014-09-18 11:20:02 -040010908/*
10909 * Process the unused_bgs list and remove any that don't have any allocated
10910 * space inside of them.
10911 */
10912void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
10913{
10914 struct btrfs_block_group_cache *block_group;
10915 struct btrfs_space_info *space_info;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010916 struct btrfs_trans_handle *trans;
10917 int ret = 0;
10918
Josef Bacikafcdd122016-09-02 15:40:02 -040010919 if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
Josef Bacik47ab2a62014-09-18 11:20:02 -040010920 return;
10921
10922 spin_lock(&fs_info->unused_bgs_lock);
10923 while (!list_empty(&fs_info->unused_bgs)) {
10924 u64 start, end;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010925 int trimming;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010926
10927 block_group = list_first_entry(&fs_info->unused_bgs,
10928 struct btrfs_block_group_cache,
10929 bg_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010930 list_del_init(&block_group->bg_list);
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010931
10932 space_info = block_group->space_info;
10933
Josef Bacik47ab2a62014-09-18 11:20:02 -040010934 if (ret || btrfs_mixed_space_info(space_info)) {
10935 btrfs_put_block_group(block_group);
10936 continue;
10937 }
10938 spin_unlock(&fs_info->unused_bgs_lock);
10939
Zhao Leid5f2e332015-10-08 18:46:44 +080010940 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010941
Josef Bacik47ab2a62014-09-18 11:20:02 -040010942 /* Don't want to race with allocators so take the groups_sem */
10943 down_write(&space_info->groups_sem);
10944 spin_lock(&block_group->lock);
Qu Wenruo43794442018-06-22 12:35:00 +080010945 if (block_group->reserved || block_group->pinned ||
Josef Bacik47ab2a62014-09-18 11:20:02 -040010946 btrfs_block_group_used(&block_group->item) ||
Chris Mason19c4d2f2016-10-10 13:43:31 -070010947 block_group->ro ||
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010948 list_is_singular(&block_group->list)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -040010949 /*
10950 * We want to bail if we made new allocations or have
10951 * outstanding allocations in this block group. We do
10952 * the ro check in case balance is currently acting on
10953 * this block group.
10954 */
Qu Wenruo4ed0a7a2018-04-26 17:17:20 +080010955 trace_btrfs_skip_unused_block_group(block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010956 spin_unlock(&block_group->lock);
10957 up_write(&space_info->groups_sem);
10958 goto next;
10959 }
10960 spin_unlock(&block_group->lock);
10961
10962 /* We don't want to force the issue, only flip if it's ok. */
Zhaolei868f4012015-08-05 16:43:27 +080010963 ret = inc_block_group_ro(block_group, 0);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010964 up_write(&space_info->groups_sem);
10965 if (ret < 0) {
10966 ret = 0;
10967 goto next;
10968 }
10969
10970 /*
10971 * Want to do this before we do anything else so we can recover
10972 * properly if we fail to join the transaction.
10973 */
Filipe Manana7fd01182015-11-13 23:57:17 +000010974 trans = btrfs_start_trans_remove_block_group(fs_info,
10975 block_group->key.objectid);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010976 if (IS_ERR(trans)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010977 btrfs_dec_block_group_ro(block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010978 ret = PTR_ERR(trans);
10979 goto next;
10980 }
10981
10982 /*
10983 * We could have pending pinned extents for this block group,
10984 * just delete them, we don't care about them anymore.
10985 */
10986 start = block_group->key.objectid;
10987 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +000010988 /*
10989 * Hold the unused_bg_unpin_mutex lock to avoid racing with
10990 * btrfs_finish_extent_commit(). If we are at transaction N,
10991 * another task might be running finish_extent_commit() for the
10992 * previous transaction N - 1, and have seen a range belonging
10993 * to the block group in freed_extents[] before we were able to
10994 * clear the whole block group range from freed_extents[]. This
10995 * means that task can lookup for the block group after we
10996 * unpinned it from freed_extents[] and removed it, leading to
10997 * a BUG_ON() at btrfs_unpin_extent_range().
10998 */
10999 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +000011000 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
David Sterba91166212016-04-26 23:54:39 +020011001 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000011002 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000011003 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011004 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000011005 goto end_trans;
11006 }
11007 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
David Sterba91166212016-04-26 23:54:39 +020011008 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000011009 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000011010 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011011 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000011012 goto end_trans;
11013 }
Filipe Mananad4b450c2015-01-29 19:18:25 +000011014 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011015
11016 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +080011017 spin_lock(&space_info->lock);
11018 spin_lock(&block_group->lock);
11019
Lu Fengqie2907c12018-10-24 20:24:02 +080011020 update_bytes_pinned(space_info, -block_group->pinned);
Zhao Leic30666d2015-02-25 14:17:20 +080011021 space_info->bytes_readonly += block_group->pinned;
Ethan Liendec59fa2018-07-13 16:50:42 +080011022 percpu_counter_add_batch(&space_info->total_bytes_pinned,
11023 -block_group->pinned,
11024 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011025 block_group->pinned = 0;
11026
Zhao Leic30666d2015-02-25 14:17:20 +080011027 spin_unlock(&block_group->lock);
11028 spin_unlock(&space_info->lock);
11029
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011030 /* DISCARD can flip during remount */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011031 trimming = btrfs_test_opt(fs_info, DISCARD);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011032
11033 /* Implicit trim during transaction commit. */
11034 if (trimming)
11035 btrfs_get_block_group_trimming(block_group);
11036
Josef Bacik47ab2a62014-09-18 11:20:02 -040011037 /*
11038 * Btrfs_remove_chunk will abort the transaction if things go
11039 * horribly wrong.
11040 */
Nikolay Borisov97aff912018-07-20 19:37:53 +030011041 ret = btrfs_remove_chunk(trans, block_group->key.objectid);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011042
11043 if (ret) {
11044 if (trimming)
11045 btrfs_put_block_group_trimming(block_group);
11046 goto end_trans;
11047 }
11048
11049 /*
11050 * If we're not mounted with -odiscard, we can just forget
11051 * about this block group. Otherwise we'll need to wait
11052 * until transaction commit to do the actual discard.
11053 */
11054 if (trimming) {
Filipe Manana348a0012015-11-27 12:16:16 +000011055 spin_lock(&fs_info->unused_bgs_lock);
11056 /*
11057 * A concurrent scrub might have added us to the list
11058 * fs_info->unused_bgs, so use a list_move operation
11059 * to add the block group to the deleted_bgs list.
11060 */
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011061 list_move(&block_group->bg_list,
11062 &trans->transaction->deleted_bgs);
Filipe Manana348a0012015-11-27 12:16:16 +000011063 spin_unlock(&fs_info->unused_bgs_lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011064 btrfs_get_block_group(block_group);
11065 }
Filipe Manana758eb512014-11-03 14:08:39 +000011066end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040011067 btrfs_end_transaction(trans);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011068next:
Zhao Leid5f2e332015-10-08 18:46:44 +080011069 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011070 btrfs_put_block_group(block_group);
11071 spin_lock(&fs_info->unused_bgs_lock);
11072 }
11073 spin_unlock(&fs_info->unused_bgs_lock);
11074}
11075
liuboc59021f2011-03-07 02:13:14 +000011076int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
11077{
liubo1aba86d2011-04-08 08:44:37 +000011078 struct btrfs_super_block *disk_super;
11079 u64 features;
11080 u64 flags;
11081 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000011082 int ret;
11083
David Sterba6c417612011-04-13 15:41:04 +020011084 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000011085 if (!btrfs_super_root(disk_super))
Dan Carpenter0dc924c52016-01-13 15:21:17 +030011086 return -EINVAL;
liuboc59021f2011-03-07 02:13:14 +000011087
liubo1aba86d2011-04-08 08:44:37 +000011088 features = btrfs_super_incompat_flags(disk_super);
11089 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
11090 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000011091
liubo1aba86d2011-04-08 08:44:37 +000011092 flags = BTRFS_BLOCK_GROUP_SYSTEM;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011093 ret = create_space_info(fs_info, flags);
liuboc59021f2011-03-07 02:13:14 +000011094 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000011095 goto out;
liuboc59021f2011-03-07 02:13:14 +000011096
liubo1aba86d2011-04-08 08:44:37 +000011097 if (mixed) {
11098 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011099 ret = create_space_info(fs_info, flags);
liubo1aba86d2011-04-08 08:44:37 +000011100 } else {
11101 flags = BTRFS_BLOCK_GROUP_METADATA;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011102 ret = create_space_info(fs_info, flags);
liubo1aba86d2011-04-08 08:44:37 +000011103 if (ret)
11104 goto out;
11105
11106 flags = BTRFS_BLOCK_GROUP_DATA;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011107 ret = create_space_info(fs_info, flags);
liubo1aba86d2011-04-08 08:44:37 +000011108 }
11109out:
liuboc59021f2011-03-07 02:13:14 +000011110 return ret;
11111}
11112
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011113int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info,
11114 u64 start, u64 end)
liuboacce9522011-01-06 19:30:25 +080011115{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011116 return unpin_extent_range(fs_info, start, end, false);
liuboacce9522011-01-06 19:30:25 +080011117}
11118
Jeff Mahoney499f3772015-06-15 09:41:17 -040011119/*
11120 * It used to be that old block groups would be left around forever.
11121 * Iterating over them would be enough to trim unused space. Since we
11122 * now automatically remove them, we also need to iterate over unallocated
11123 * space.
11124 *
11125 * We don't want a transaction for this since the discard may take a
11126 * substantial amount of time. We don't require that a transaction be
11127 * running, but we do need to take a running transaction into account
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011128 * to ensure that we're not discarding chunks that were released or
11129 * allocated in the current transaction.
Jeff Mahoney499f3772015-06-15 09:41:17 -040011130 *
11131 * Holding the chunks lock will prevent other threads from allocating
11132 * or releasing chunks, but it won't prevent a running transaction
11133 * from committing and releasing the memory that the pending chunks
11134 * list head uses. For that, we need to take a reference to the
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011135 * transaction and hold the commit root sem. We only need to hold
11136 * it while performing the free space search since we have already
11137 * held back allocations.
Jeff Mahoney499f3772015-06-15 09:41:17 -040011138 */
11139static int btrfs_trim_free_extents(struct btrfs_device *device,
Nikolay Borisovc2d1b3a2019-03-25 14:31:21 +020011140 struct fstrim_range *range, u64 *trimmed)
Jeff Mahoney499f3772015-06-15 09:41:17 -040011141{
Nikolay Borisov929be172019-03-27 14:24:18 +020011142 u64 start, len = 0, end = 0;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011143 int ret;
11144
Nikolay Borisov929be172019-03-27 14:24:18 +020011145 start = max_t(u64, range->start, SZ_1M);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011146 *trimmed = 0;
11147
Jeff Mahoney0be88e32018-09-06 17:18:15 -040011148 /* Discard not supported = nothing to do. */
11149 if (!blk_queue_discard(bdev_get_queue(device->bdev)))
11150 return 0;
11151
Andrea Gelmini52042d82018-11-28 12:05:13 +010011152 /* Not writable = nothing to do. */
Anand Jainebbede42017-12-04 12:54:52 +080011153 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Jeff Mahoney499f3772015-06-15 09:41:17 -040011154 return 0;
11155
11156 /* No free space = nothing to do. */
11157 if (device->total_bytes <= device->bytes_used)
11158 return 0;
11159
11160 ret = 0;
11161
11162 while (1) {
Jeff Mahoneyfb456252016-06-22 18:54:56 -040011163 struct btrfs_fs_info *fs_info = device->fs_info;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011164 u64 bytes;
11165
11166 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
11167 if (ret)
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011168 break;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011169
Nikolay Borisov929be172019-03-27 14:24:18 +020011170 find_first_clear_extent_bit(&device->alloc_state, start,
11171 &start, &end,
11172 CHUNK_TRIMMED | CHUNK_ALLOCATED);
11173 /*
11174 * If find_first_clear_extent_bit find a range that spans the
11175 * end of the device it will set end to -1, in this case it's up
11176 * to the caller to trim the value to the size of the device.
11177 */
11178 end = min(end, device->total_bytes - 1);
11179 len = end - start + 1;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011180
Nikolay Borisov929be172019-03-27 14:24:18 +020011181 /* We didn't find any extents */
11182 if (!len) {
Jeff Mahoney499f3772015-06-15 09:41:17 -040011183 mutex_unlock(&fs_info->chunk_mutex);
Nikolay Borisov929be172019-03-27 14:24:18 +020011184 ret = 0;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011185 break;
11186 }
11187
Nikolay Borisov929be172019-03-27 14:24:18 +020011188 /* Keep going until we satisfy minlen or reach end of space */
11189 if (len < range->minlen) {
11190 mutex_unlock(&fs_info->chunk_mutex);
11191 start += len;
11192 continue;
11193 }
11194
Nikolay Borisovc2d1b3a2019-03-25 14:31:21 +020011195 /* If we are out of the passed range break */
11196 if (start > range->start + range->len - 1) {
11197 mutex_unlock(&fs_info->chunk_mutex);
Nikolay Borisovc2d1b3a2019-03-25 14:31:21 +020011198 break;
11199 }
11200
11201 start = max(range->start, start);
11202 len = min(range->len, len);
11203
Nikolay Borisov929be172019-03-27 14:24:18 +020011204 ret = btrfs_issue_discard(device->bdev, start, len,
11205 &bytes);
11206 if (!ret)
11207 set_extent_bits(&device->alloc_state, start,
11208 start + bytes - 1,
11209 CHUNK_TRIMMED);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011210 mutex_unlock(&fs_info->chunk_mutex);
11211
11212 if (ret)
11213 break;
11214
11215 start += len;
11216 *trimmed += bytes;
11217
Nikolay Borisovc2d1b3a2019-03-25 14:31:21 +020011218 /* We've trimmed enough */
11219 if (*trimmed >= range->len)
11220 break;
11221
Jeff Mahoney499f3772015-06-15 09:41:17 -040011222 if (fatal_signal_pending(current)) {
11223 ret = -ERESTARTSYS;
11224 break;
11225 }
11226
11227 cond_resched();
11228 }
11229
11230 return ret;
11231}
11232
Qu Wenruo93bba242018-09-07 14:16:23 +080011233/*
11234 * Trim the whole filesystem by:
11235 * 1) trimming the free space in each block group
11236 * 2) trimming the unallocated space on each device
11237 *
11238 * This will also continue trimming even if a block group or device encounters
11239 * an error. The return value will be the last error, or 0 if nothing bad
11240 * happens.
11241 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011242int btrfs_trim_fs(struct btrfs_fs_info *fs_info, struct fstrim_range *range)
Li Dongyangf7039b12011-03-24 10:24:28 +000011243{
Li Dongyangf7039b12011-03-24 10:24:28 +000011244 struct btrfs_block_group_cache *cache = NULL;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011245 struct btrfs_device *device;
11246 struct list_head *devices;
Li Dongyangf7039b12011-03-24 10:24:28 +000011247 u64 group_trimmed;
11248 u64 start;
11249 u64 end;
11250 u64 trimmed = 0;
Qu Wenruo93bba242018-09-07 14:16:23 +080011251 u64 bg_failed = 0;
11252 u64 dev_failed = 0;
11253 int bg_ret = 0;
11254 int dev_ret = 0;
Li Dongyangf7039b12011-03-24 10:24:28 +000011255 int ret = 0;
11256
Qu Wenruo6ba9fc82018-09-07 14:16:24 +080011257 cache = btrfs_lookup_first_block_group(fs_info, range->start);
David Sterbaf87b7eb2019-03-20 12:01:07 +010011258 for (; cache; cache = next_block_group(cache)) {
Li Dongyangf7039b12011-03-24 10:24:28 +000011259 if (cache->key.objectid >= (range->start + range->len)) {
11260 btrfs_put_block_group(cache);
11261 break;
11262 }
11263
11264 start = max(range->start, cache->key.objectid);
11265 end = min(range->start + range->len,
11266 cache->key.objectid + cache->key.offset);
11267
11268 if (end - start >= range->minlen) {
11269 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000011270 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040011271 if (ret) {
Qu Wenruo93bba242018-09-07 14:16:23 +080011272 bg_failed++;
11273 bg_ret = ret;
11274 continue;
Josef Bacik1be41b72013-06-12 13:56:06 -040011275 }
11276 ret = wait_block_group_cache_done(cache);
11277 if (ret) {
Qu Wenruo93bba242018-09-07 14:16:23 +080011278 bg_failed++;
11279 bg_ret = ret;
11280 continue;
Josef Bacik1be41b72013-06-12 13:56:06 -040011281 }
Li Dongyangf7039b12011-03-24 10:24:28 +000011282 }
11283 ret = btrfs_trim_block_group(cache,
11284 &group_trimmed,
11285 start,
11286 end,
11287 range->minlen);
11288
11289 trimmed += group_trimmed;
11290 if (ret) {
Qu Wenruo93bba242018-09-07 14:16:23 +080011291 bg_failed++;
11292 bg_ret = ret;
11293 continue;
Li Dongyangf7039b12011-03-24 10:24:28 +000011294 }
11295 }
Li Dongyangf7039b12011-03-24 10:24:28 +000011296 }
11297
Qu Wenruo93bba242018-09-07 14:16:23 +080011298 if (bg_failed)
11299 btrfs_warn(fs_info,
11300 "failed to trim %llu block group(s), last error %d",
11301 bg_failed, bg_ret);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011302 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoneyd4e329d2018-09-06 17:18:14 -040011303 devices = &fs_info->fs_devices->devices;
11304 list_for_each_entry(device, devices, dev_list) {
Nikolay Borisovc2d1b3a2019-03-25 14:31:21 +020011305 ret = btrfs_trim_free_extents(device, range, &group_trimmed);
Qu Wenruo93bba242018-09-07 14:16:23 +080011306 if (ret) {
11307 dev_failed++;
11308 dev_ret = ret;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011309 break;
Qu Wenruo93bba242018-09-07 14:16:23 +080011310 }
Jeff Mahoney499f3772015-06-15 09:41:17 -040011311
11312 trimmed += group_trimmed;
11313 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011314 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011315
Qu Wenruo93bba242018-09-07 14:16:23 +080011316 if (dev_failed)
11317 btrfs_warn(fs_info,
11318 "failed to trim %llu device(s), last error %d",
11319 dev_failed, dev_ret);
Li Dongyangf7039b12011-03-24 10:24:28 +000011320 range->len = trimmed;
Qu Wenruo93bba242018-09-07 14:16:23 +080011321 if (bg_ret)
11322 return bg_ret;
11323 return dev_ret;
Li Dongyangf7039b12011-03-24 10:24:28 +000011324}
Miao Xie8257b2d2014-03-06 13:38:19 +080011325
11326/*
David Sterbaea14b57f2017-06-22 02:19:11 +020011327 * btrfs_{start,end}_write_no_snapshotting() are similar to
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011328 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
11329 * data into the page cache through nocow before the subvolume is snapshoted,
11330 * but flush the data into disk after the snapshot creation, or to prevent
David Sterbaea14b57f2017-06-22 02:19:11 +020011331 * operations while snapshotting is ongoing and that cause the snapshot to be
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011332 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080011333 */
David Sterbaea14b57f2017-06-22 02:19:11 +020011334void btrfs_end_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011335{
11336 percpu_counter_dec(&root->subv_writers->counter);
David Sterba093258e2018-02-26 16:15:17 +010011337 cond_wake_up(&root->subv_writers->wait);
Miao Xie8257b2d2014-03-06 13:38:19 +080011338}
11339
David Sterbaea14b57f2017-06-22 02:19:11 +020011340int btrfs_start_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011341{
David Sterbaea14b57f2017-06-22 02:19:11 +020011342 if (atomic_read(&root->will_be_snapshotted))
Miao Xie8257b2d2014-03-06 13:38:19 +080011343 return 0;
11344
11345 percpu_counter_inc(&root->subv_writers->counter);
11346 /*
11347 * Make sure counter is updated before we check for snapshot creation.
11348 */
11349 smp_mb();
David Sterbaea14b57f2017-06-22 02:19:11 +020011350 if (atomic_read(&root->will_be_snapshotted)) {
11351 btrfs_end_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080011352 return 0;
11353 }
11354 return 1;
11355}
Zhao Lei0bc19f902016-01-06 18:56:36 +080011356
Zhao Lei0bc19f902016-01-06 18:56:36 +080011357void btrfs_wait_for_snapshot_creation(struct btrfs_root *root)
11358{
11359 while (true) {
11360 int ret;
11361
David Sterbaea14b57f2017-06-22 02:19:11 +020011362 ret = btrfs_start_write_no_snapshotting(root);
Zhao Lei0bc19f902016-01-06 18:56:36 +080011363 if (ret)
11364 break;
Peter Zijlstra46259562018-03-15 11:43:08 +010011365 wait_var_event(&root->will_be_snapshotted,
11366 !atomic_read(&root->will_be_snapshotted));
Zhao Lei0bc19f902016-01-06 18:56:36 +080011367 }
11368}
Qu Wenruo031f24d2018-05-22 16:43:47 +080011369
11370void btrfs_mark_bg_unused(struct btrfs_block_group_cache *bg)
11371{
11372 struct btrfs_fs_info *fs_info = bg->fs_info;
11373
11374 spin_lock(&fs_info->unused_bgs_lock);
11375 if (list_empty(&bg->bg_list)) {
11376 btrfs_get_block_group(bg);
11377 trace_btrfs_add_unused_block_group(bg);
11378 list_add_tail(&bg->bg_list, &fs_info->unused_bgs);
11379 }
11380 spin_unlock(&fs_info->unused_bgs_lock);
11381}