blob: 8ec9d6fbad42a9b02544984b44181c147a390502 [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 {
David Sterbaf262fa82019-06-18 20:00:08 +020049 CHUNK_ALLOC_NO_FORCE,
50 CHUNK_ALLOC_LIMITED,
51 CHUNK_ALLOC_FORCE,
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) \
Qu Wenruo480b9b42019-04-29 14:03:33 +080058static inline void update_##name(struct btrfs_fs_info *fs_info, \
59 struct btrfs_space_info *sinfo, \
Qu Wenruo9f9b8e82018-10-24 20:24:01 +080060 s64 bytes) \
61{ \
Qu Wenruo0185f362019-04-29 14:03:32 +080062 lockdep_assert_held(&sinfo->lock); \
Qu Wenruo480b9b42019-04-29 14:03:33 +080063 trace_update_##name(fs_info, sinfo, sinfo->name, bytes); \
Qu Wenruo9f9b8e82018-10-24 20:24:01 +080064 if (bytes < 0 && sinfo->name < -bytes) { \
65 WARN_ON(1); \
66 sinfo->name = 0; \
67 return; \
68 } \
69 sinfo->name += bytes; \
70}
71
72DECLARE_SPACE_INFO_UPDATE(bytes_may_use);
Lu Fengqie2907c12018-10-24 20:24:02 +080073DECLARE_SPACE_INFO_UPDATE(bytes_pinned);
Qu Wenruo9f9b8e82018-10-24 20:24:01 +080074
Yan Zheng5d4f98a2009-06-10 10:45:14 -040075static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
Nikolay Borisove72cb922018-06-20 15:48:57 +030076 struct btrfs_delayed_ref_node *node, u64 parent,
77 u64 root_objectid, u64 owner_objectid,
78 u64 owner_offset, int refs_to_drop,
79 struct btrfs_delayed_extent_op *extra_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040080static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
81 struct extent_buffer *leaf,
82 struct btrfs_extent_item *ei);
83static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -040084 u64 parent, u64 root_objectid,
85 u64 flags, u64 owner, u64 offset,
86 struct btrfs_key *ins, int ref_mod);
87static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +030088 struct btrfs_delayed_ref_node *node,
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +030089 struct btrfs_delayed_extent_op *extent_op);
Nikolay Borisov01458822018-06-20 15:49:05 +030090static int do_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags,
Josef Bacik698d0082012-09-12 14:08:47 -040091 int force);
Yan Zheng11833d62009-09-11 16:11:19 -040092static int find_next_key(struct btrfs_path *path, int level,
93 struct btrfs_key *key);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -040094static void dump_space_info(struct btrfs_fs_info *fs_info,
95 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -040096 int dump_block_groups);
Josef Bacik5d803662013-02-07 16:06:02 -050097static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
98 u64 num_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -040099static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
100 struct btrfs_space_info *space_info,
101 u64 num_bytes);
102static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
103 struct btrfs_space_info *space_info,
104 u64 num_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -0500105
Josef Bacik817d52f2009-07-13 21:29:25 -0400106static noinline int
107block_group_cache_done(struct btrfs_block_group_cache *cache)
108{
109 smp_mb();
Josef Bacik36cce922013-08-05 11:15:21 -0400110 return cache->cached == BTRFS_CACHE_FINISHED ||
111 cache->cached == BTRFS_CACHE_ERROR;
Josef Bacik817d52f2009-07-13 21:29:25 -0400112}
113
Josef Bacik0f9dd462008-09-23 13:14:11 -0400114static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
115{
116 return (cache->flags & bits) == bits;
117}
118
Filipe Manana758f2df2015-11-19 11:45:48 +0000119void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +0000120{
121 atomic_inc(&cache->count);
122}
123
124void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
125{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400126 if (atomic_dec_and_test(&cache->count)) {
127 WARN_ON(cache->pinned > 0);
128 WARN_ON(cache->reserved > 0);
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800129
130 /*
131 * If not empty, someone is still holding mutex of
132 * full_stripe_lock, which can only be released by caller.
133 * And it will definitely cause use-after-free when caller
134 * tries to release full stripe lock.
135 *
136 * No better way to resolve, but only to warn.
137 */
138 WARN_ON(!RB_EMPTY_ROOT(&cache->full_stripe_locks_root.root));
Li Zefan34d52cb2011-03-29 13:46:06 +0800139 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000140 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400141 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000142}
143
Josef Bacik0f9dd462008-09-23 13:14:11 -0400144/*
145 * this adds the block group to the fs_info rb tree for the block group
146 * cache
147 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500148static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400149 struct btrfs_block_group_cache *block_group)
150{
151 struct rb_node **p;
152 struct rb_node *parent = NULL;
153 struct btrfs_block_group_cache *cache;
154
155 spin_lock(&info->block_group_cache_lock);
156 p = &info->block_group_cache_tree.rb_node;
157
158 while (*p) {
159 parent = *p;
160 cache = rb_entry(parent, struct btrfs_block_group_cache,
161 cache_node);
162 if (block_group->key.objectid < cache->key.objectid) {
163 p = &(*p)->rb_left;
164 } else if (block_group->key.objectid > cache->key.objectid) {
165 p = &(*p)->rb_right;
166 } else {
167 spin_unlock(&info->block_group_cache_lock);
168 return -EEXIST;
169 }
170 }
171
172 rb_link_node(&block_group->cache_node, parent, p);
173 rb_insert_color(&block_group->cache_node,
174 &info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +0000175
176 if (info->first_logical_byte > block_group->key.objectid)
177 info->first_logical_byte = block_group->key.objectid;
178
Josef Bacik0f9dd462008-09-23 13:14:11 -0400179 spin_unlock(&info->block_group_cache_lock);
180
181 return 0;
182}
183
184/*
185 * This will return the block group at or after bytenr if contains is 0, else
186 * it will return the block group that contains the bytenr
187 */
188static struct btrfs_block_group_cache *
189block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
190 int contains)
191{
192 struct btrfs_block_group_cache *cache, *ret = NULL;
193 struct rb_node *n;
194 u64 end, start;
195
196 spin_lock(&info->block_group_cache_lock);
197 n = info->block_group_cache_tree.rb_node;
198
199 while (n) {
200 cache = rb_entry(n, struct btrfs_block_group_cache,
201 cache_node);
202 end = cache->key.objectid + cache->key.offset - 1;
203 start = cache->key.objectid;
204
205 if (bytenr < start) {
206 if (!contains && (!ret || start < ret->key.objectid))
207 ret = cache;
208 n = n->rb_left;
209 } else if (bytenr > start) {
210 if (contains && bytenr <= end) {
211 ret = cache;
212 break;
213 }
214 n = n->rb_right;
215 } else {
216 ret = cache;
217 break;
218 }
219 }
Liu Boa1897fd2012-12-27 09:01:23 +0000220 if (ret) {
Josef Bacik11dfe352009-11-13 20:12:59 +0000221 btrfs_get_block_group(ret);
Liu Boa1897fd2012-12-27 09:01:23 +0000222 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
223 info->first_logical_byte = ret->key.objectid;
224 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400225 spin_unlock(&info->block_group_cache_lock);
226
227 return ret;
228}
229
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400230static int add_excluded_extent(struct btrfs_fs_info *fs_info,
Yan Zheng11833d62009-09-11 16:11:19 -0400231 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400232{
Yan Zheng11833d62009-09-11 16:11:19 -0400233 u64 end = start + num_bytes - 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400234 set_extent_bits(&fs_info->freed_extents[0],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200235 start, end, EXTENT_UPTODATE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400236 set_extent_bits(&fs_info->freed_extents[1],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200237 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400238 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400239}
240
Nikolay Borisov9e715da2018-06-20 15:49:08 +0300241static void free_excluded_extents(struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400242{
Nikolay Borisov9e715da2018-06-20 15:49:08 +0300243 struct btrfs_fs_info *fs_info = cache->fs_info;
Yan Zheng11833d62009-09-11 16:11:19 -0400244 u64 start, end;
245
246 start = cache->key.objectid;
247 end = start + cache->key.offset - 1;
248
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400249 clear_extent_bits(&fs_info->freed_extents[0],
David Sterba91166212016-04-26 23:54:39 +0200250 start, end, EXTENT_UPTODATE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400251 clear_extent_bits(&fs_info->freed_extents[1],
David Sterba91166212016-04-26 23:54:39 +0200252 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400253}
254
Nikolay Borisov3c4da652018-06-20 15:49:09 +0300255static int exclude_super_stripes(struct btrfs_block_group_cache *cache)
Yan Zheng11833d62009-09-11 16:11:19 -0400256{
Nikolay Borisov3c4da652018-06-20 15:49:09 +0300257 struct btrfs_fs_info *fs_info = cache->fs_info;
Josef Bacik817d52f2009-07-13 21:29:25 -0400258 u64 bytenr;
259 u64 *logical;
260 int stripe_len;
261 int i, nr, ret;
262
Yan, Zheng06b23312009-11-26 09:31:11 +0000263 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
264 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
265 cache->bytes_super += stripe_len;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400266 ret = add_excluded_extent(fs_info, cache->key.objectid,
Yan, Zheng06b23312009-11-26 09:31:11 +0000267 stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400268 if (ret)
269 return ret;
Yan, Zheng06b23312009-11-26 09:31:11 +0000270 }
271
Josef Bacik817d52f2009-07-13 21:29:25 -0400272 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
273 bytenr = btrfs_sb_offset(i);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400274 ret = btrfs_rmap_block(fs_info, cache->key.objectid,
Nikolay Borisov63a9c7b2018-05-04 10:53:05 +0300275 bytenr, &logical, &nr, &stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400276 if (ret)
277 return ret;
Yan Zheng11833d62009-09-11 16:11:19 -0400278
Josef Bacik817d52f2009-07-13 21:29:25 -0400279 while (nr--) {
Josef Bacik51bf5f02013-04-23 12:55:21 -0400280 u64 start, len;
281
282 if (logical[nr] > cache->key.objectid +
283 cache->key.offset)
284 continue;
285
286 if (logical[nr] + stripe_len <= cache->key.objectid)
287 continue;
288
289 start = logical[nr];
290 if (start < cache->key.objectid) {
291 start = cache->key.objectid;
292 len = (logical[nr] + stripe_len) - start;
293 } else {
294 len = min_t(u64, stripe_len,
295 cache->key.objectid +
296 cache->key.offset - start);
297 }
298
299 cache->bytes_super += len;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400300 ret = add_excluded_extent(fs_info, start, len);
Josef Bacik835d9742013-03-19 12:13:25 -0400301 if (ret) {
302 kfree(logical);
303 return ret;
304 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400305 }
Yan Zheng11833d62009-09-11 16:11:19 -0400306
Josef Bacik817d52f2009-07-13 21:29:25 -0400307 kfree(logical);
308 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400309 return 0;
310}
311
Yan Zheng11833d62009-09-11 16:11:19 -0400312static struct btrfs_caching_control *
313get_caching_control(struct btrfs_block_group_cache *cache)
314{
315 struct btrfs_caching_control *ctl;
316
317 spin_lock(&cache->lock);
Josef Bacikdde5abe2010-09-16 16:17:03 -0400318 if (!cache->caching_ctl) {
319 spin_unlock(&cache->lock);
320 return NULL;
321 }
322
Yan Zheng11833d62009-09-11 16:11:19 -0400323 ctl = cache->caching_ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200324 refcount_inc(&ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400325 spin_unlock(&cache->lock);
326 return ctl;
327}
328
329static void put_caching_control(struct btrfs_caching_control *ctl)
330{
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200331 if (refcount_dec_and_test(&ctl->count))
Yan Zheng11833d62009-09-11 16:11:19 -0400332 kfree(ctl);
333}
334
Josef Bacikd0bd4562015-09-23 14:54:14 -0400335#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400336static void fragment_free_space(struct btrfs_block_group_cache *block_group)
Josef Bacikd0bd4562015-09-23 14:54:14 -0400337{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400338 struct btrfs_fs_info *fs_info = block_group->fs_info;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400339 u64 start = block_group->key.objectid;
340 u64 len = block_group->key.offset;
341 u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ?
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400342 fs_info->nodesize : fs_info->sectorsize;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400343 u64 step = chunk << 1;
344
345 while (len > chunk) {
346 btrfs_remove_free_space(block_group, start, chunk);
347 start += step;
348 if (len < step)
349 len = 0;
350 else
351 len -= step;
352 }
353}
354#endif
355
Josef Bacik0f9dd462008-09-23 13:14:11 -0400356/*
357 * this is only called by cache_block_group, since we could have freed extents
358 * we need to check the pinned_extents for any extents that can't be used yet
359 * since their free space will be released as soon as the transaction commits.
360 */
Omar Sandovala5ed9182015-09-29 20:50:35 -0700361u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Nikolay Borisov4457c1c2018-05-10 15:44:45 +0300362 u64 start, u64 end)
Josef Bacik0f9dd462008-09-23 13:14:11 -0400363{
Nikolay Borisov4457c1c2018-05-10 15:44:45 +0300364 struct btrfs_fs_info *info = block_group->fs_info;
Josef Bacik817d52f2009-07-13 21:29:25 -0400365 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400366 int ret;
367
368 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400369 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400370 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400371 EXTENT_DIRTY | EXTENT_UPTODATE,
372 NULL);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400373 if (ret)
374 break;
375
Yan, Zheng06b23312009-11-26 09:31:11 +0000376 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400377 start = extent_end + 1;
378 } else if (extent_start > start && extent_start < end) {
379 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400380 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500381 ret = btrfs_add_free_space(block_group, start,
382 size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100383 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400384 start = extent_end + 1;
385 } else {
386 break;
387 }
388 }
389
390 if (start < end) {
391 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400392 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500393 ret = btrfs_add_free_space(block_group, start, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100394 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400395 }
396
Josef Bacik817d52f2009-07-13 21:29:25 -0400397 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400398}
399
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700400static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl)
Chris Masone37c9e62007-05-09 20:13:14 -0400401{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400402 struct btrfs_block_group_cache *block_group = caching_ctl->block_group;
403 struct btrfs_fs_info *fs_info = block_group->fs_info;
404 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400405 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400406 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400407 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400408 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400409 u64 last = 0;
410 u32 nritems;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700411 int ret;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400412 bool wakeup = true;
Chris Masonf510cfe2007-10-15 16:14:48 -0400413
Chris Masone37c9e62007-05-09 20:13:14 -0400414 path = btrfs_alloc_path();
415 if (!path)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700416 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -0400417
Josef Bacik817d52f2009-07-13 21:29:25 -0400418 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400419
Josef Bacikd0bd4562015-09-23 14:54:14 -0400420#ifdef CONFIG_BTRFS_DEBUG
421 /*
422 * If we're fragmenting we don't want to make anybody think we can
423 * allocate from this block group until we've had a chance to fragment
424 * the free space.
425 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400426 if (btrfs_should_fragment_free_space(block_group))
Josef Bacikd0bd4562015-09-23 14:54:14 -0400427 wakeup = false;
428#endif
Chris Mason5cd57b22008-06-25 16:01:30 -0400429 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400430 * We don't want to deadlock with somebody trying to allocate a new
431 * extent for the extent root while also trying to search the extent
432 * root to add free space. So we skip locking and search the commit
433 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400434 */
435 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400436 path->search_commit_root = 1;
David Sterbae4058b52015-11-27 16:31:35 +0100437 path->reada = READA_FORWARD;
Josef Bacik817d52f2009-07-13 21:29:25 -0400438
Yan Zhenge4404d62008-12-12 10:03:26 -0500439 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400440 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400441 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400442
Liu Bo52ee28d2013-07-11 17:51:15 +0800443next:
Yan Zheng11833d62009-09-11 16:11:19 -0400444 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400445 if (ret < 0)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700446 goto out;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500447
Yan Zheng11833d62009-09-11 16:11:19 -0400448 leaf = path->nodes[0];
449 nritems = btrfs_header_nritems(leaf);
450
Chris Masond3977122009-01-05 21:25:51 -0500451 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200452 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400453 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400454 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400455 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400456
Yan Zheng11833d62009-09-11 16:11:19 -0400457 if (path->slots[0] < nritems) {
458 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
459 } else {
460 ret = find_next_key(path, 0, &key);
461 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400462 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400463
Josef Bacikc9ea7b22013-09-19 10:02:11 -0400464 if (need_resched() ||
Josef Bacik9e351cc2014-03-13 15:42:13 -0400465 rwsem_is_contended(&fs_info->commit_root_sem)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400466 if (wakeup)
467 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400468 btrfs_release_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400469 up_read(&fs_info->commit_root_sem);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400470 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400471 cond_resched();
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700472 mutex_lock(&caching_ctl->mutex);
473 down_read(&fs_info->commit_root_sem);
474 goto next;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400475 }
Josef Bacik0a3896d2013-04-19 14:37:26 -0400476
477 ret = btrfs_next_leaf(extent_root, path);
478 if (ret < 0)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700479 goto out;
Josef Bacik0a3896d2013-04-19 14:37:26 -0400480 if (ret)
481 break;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400482 leaf = path->nodes[0];
483 nritems = btrfs_header_nritems(leaf);
484 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400485 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400486
Liu Bo52ee28d2013-07-11 17:51:15 +0800487 if (key.objectid < last) {
488 key.objectid = last;
489 key.offset = 0;
490 key.type = BTRFS_EXTENT_ITEM_KEY;
491
Josef Bacikd0bd4562015-09-23 14:54:14 -0400492 if (wakeup)
493 caching_ctl->progress = last;
Liu Bo52ee28d2013-07-11 17:51:15 +0800494 btrfs_release_path(path);
495 goto next;
496 }
497
Yan Zheng11833d62009-09-11 16:11:19 -0400498 if (key.objectid < block_group->key.objectid) {
499 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400500 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400501 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400502
Chris Masone37c9e62007-05-09 20:13:14 -0400503 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400504 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400505 break;
Yan7d7d6062007-09-14 16:15:28 -0400506
Josef Bacik3173a182013-03-07 14:22:04 -0500507 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
508 key.type == BTRFS_METADATA_ITEM_KEY) {
Nikolay Borisov4457c1c2018-05-10 15:44:45 +0300509 total_found += add_new_free_space(block_group, last,
Josef Bacik817d52f2009-07-13 21:29:25 -0400510 key.objectid);
Josef Bacik3173a182013-03-07 14:22:04 -0500511 if (key.type == BTRFS_METADATA_ITEM_KEY)
512 last = key.objectid +
Jeff Mahoneyda170662016-06-15 09:22:56 -0400513 fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500514 else
515 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400516
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700517 if (total_found > CACHING_CTL_WAKE_UP) {
Yan Zheng11833d62009-09-11 16:11:19 -0400518 total_found = 0;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400519 if (wakeup)
520 wake_up(&caching_ctl->wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400521 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400522 }
Chris Masone37c9e62007-05-09 20:13:14 -0400523 path->slots[0]++;
524 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400525 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400526
Nikolay Borisov4457c1c2018-05-10 15:44:45 +0300527 total_found += add_new_free_space(block_group, last,
Josef Bacik817d52f2009-07-13 21:29:25 -0400528 block_group->key.objectid +
529 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400530 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400531
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700532out:
533 btrfs_free_path(path);
534 return ret;
535}
536
537static noinline void caching_thread(struct btrfs_work *work)
538{
539 struct btrfs_block_group_cache *block_group;
540 struct btrfs_fs_info *fs_info;
541 struct btrfs_caching_control *caching_ctl;
542 int ret;
543
544 caching_ctl = container_of(work, struct btrfs_caching_control, work);
545 block_group = caching_ctl->block_group;
546 fs_info = block_group->fs_info;
547
548 mutex_lock(&caching_ctl->mutex);
549 down_read(&fs_info->commit_root_sem);
550
Omar Sandoval1e144fb2015-09-29 20:50:37 -0700551 if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE))
552 ret = load_free_space_tree(caching_ctl);
553 else
554 ret = load_extent_tree_free(caching_ctl);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700555
Josef Bacik817d52f2009-07-13 21:29:25 -0400556 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400557 block_group->caching_ctl = NULL;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700558 block_group->cached = ret ? BTRFS_CACHE_ERROR : BTRFS_CACHE_FINISHED;
Josef Bacik817d52f2009-07-13 21:29:25 -0400559 spin_unlock(&block_group->lock);
560
Josef Bacikd0bd4562015-09-23 14:54:14 -0400561#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400562 if (btrfs_should_fragment_free_space(block_group)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400563 u64 bytes_used;
564
565 spin_lock(&block_group->space_info->lock);
566 spin_lock(&block_group->lock);
567 bytes_used = block_group->key.offset -
568 btrfs_block_group_used(&block_group->item);
569 block_group->space_info->bytes_used += bytes_used >> 1;
570 spin_unlock(&block_group->lock);
571 spin_unlock(&block_group->space_info->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400572 fragment_free_space(block_group);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400573 }
574#endif
575
576 caching_ctl->progress = (u64)-1;
Chris Masonf7d3d2f2015-12-18 11:11:10 -0800577
Josef Bacik9e351cc2014-03-13 15:42:13 -0400578 up_read(&fs_info->commit_root_sem);
Nikolay Borisov9e715da2018-06-20 15:49:08 +0300579 free_excluded_extents(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -0400580 mutex_unlock(&caching_ctl->mutex);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700581
Yan Zheng11833d62009-09-11 16:11:19 -0400582 wake_up(&caching_ctl->wait);
583
584 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000585 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400586}
587
Josef Bacik9d66e232010-08-25 16:54:15 -0400588static int cache_block_group(struct btrfs_block_group_cache *cache,
Josef Bacik9d66e232010-08-25 16:54:15 -0400589 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400590{
Josef Bacik291c7d22011-11-14 13:52:14 -0500591 DEFINE_WAIT(wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400592 struct btrfs_fs_info *fs_info = cache->fs_info;
593 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400594 int ret = 0;
595
Josef Bacik291c7d22011-11-14 13:52:14 -0500596 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100597 if (!caching_ctl)
598 return -ENOMEM;
Josef Bacik291c7d22011-11-14 13:52:14 -0500599
600 INIT_LIST_HEAD(&caching_ctl->list);
601 mutex_init(&caching_ctl->mutex);
602 init_waitqueue_head(&caching_ctl->wait);
603 caching_ctl->block_group = cache;
604 caching_ctl->progress = cache->key.objectid;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200605 refcount_set(&caching_ctl->count, 1);
Liu Bo9e0af232014-08-15 23:36:53 +0800606 btrfs_init_work(&caching_ctl->work, btrfs_cache_helper,
607 caching_thread, NULL, NULL);
Josef Bacik291c7d22011-11-14 13:52:14 -0500608
609 spin_lock(&cache->lock);
610 /*
611 * This should be a rare occasion, but this could happen I think in the
612 * case where one thread starts to load the space cache info, and then
613 * some other thread starts a transaction commit which tries to do an
614 * allocation while the other thread is still loading the space cache
615 * info. The previous loop should have kept us from choosing this block
616 * group, but if we've moved to the state where we will wait on caching
617 * block groups we need to first check if we're doing a fast load here,
618 * so we can wait for it to finish, otherwise we could end up allocating
619 * from a block group who's cache gets evicted for one reason or
620 * another.
621 */
622 while (cache->cached == BTRFS_CACHE_FAST) {
623 struct btrfs_caching_control *ctl;
624
625 ctl = cache->caching_ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200626 refcount_inc(&ctl->count);
Josef Bacik291c7d22011-11-14 13:52:14 -0500627 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
628 spin_unlock(&cache->lock);
629
630 schedule();
631
632 finish_wait(&ctl->wait, &wait);
633 put_caching_control(ctl);
634 spin_lock(&cache->lock);
635 }
636
637 if (cache->cached != BTRFS_CACHE_NO) {
638 spin_unlock(&cache->lock);
639 kfree(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400640 return 0;
Josef Bacik291c7d22011-11-14 13:52:14 -0500641 }
642 WARN_ON(cache->caching_ctl);
643 cache->caching_ctl = caching_ctl;
644 cache->cached = BTRFS_CACHE_FAST;
645 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400646
Satoru Takeuchid8953d62017-09-12 20:08:08 +0900647 if (btrfs_test_opt(fs_info, SPACE_CACHE)) {
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500648 mutex_lock(&caching_ctl->mutex);
David Sterbabb6cb1c2019-03-20 13:47:15 +0100649 ret = load_free_space_cache(cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400650
651 spin_lock(&cache->lock);
652 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500653 cache->caching_ctl = NULL;
Josef Bacik9d66e232010-08-25 16:54:15 -0400654 cache->cached = BTRFS_CACHE_FINISHED;
655 cache->last_byte_to_unpin = (u64)-1;
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500656 caching_ctl->progress = (u64)-1;
Josef Bacik9d66e232010-08-25 16:54:15 -0400657 } else {
Josef Bacik291c7d22011-11-14 13:52:14 -0500658 if (load_cache_only) {
659 cache->caching_ctl = NULL;
660 cache->cached = BTRFS_CACHE_NO;
661 } else {
662 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000663 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500664 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400665 }
666 spin_unlock(&cache->lock);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400667#ifdef CONFIG_BTRFS_DEBUG
668 if (ret == 1 &&
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400669 btrfs_should_fragment_free_space(cache)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400670 u64 bytes_used;
671
672 spin_lock(&cache->space_info->lock);
673 spin_lock(&cache->lock);
674 bytes_used = cache->key.offset -
675 btrfs_block_group_used(&cache->item);
676 cache->space_info->bytes_used += bytes_used >> 1;
677 spin_unlock(&cache->lock);
678 spin_unlock(&cache->space_info->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400679 fragment_free_space(cache);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400680 }
681#endif
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500682 mutex_unlock(&caching_ctl->mutex);
683
Josef Bacik291c7d22011-11-14 13:52:14 -0500684 wake_up(&caching_ctl->wait);
Josef Bacik3c148742011-02-02 15:53:47 +0000685 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500686 put_caching_control(caching_ctl);
Nikolay Borisov9e715da2018-06-20 15:49:08 +0300687 free_excluded_extents(cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400688 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000689 }
Josef Bacik291c7d22011-11-14 13:52:14 -0500690 } else {
691 /*
Omar Sandoval1e144fb2015-09-29 20:50:37 -0700692 * We're either using the free space tree or no caching at all.
693 * Set cached to the appropriate value and wakeup any waiters.
Josef Bacik291c7d22011-11-14 13:52:14 -0500694 */
695 spin_lock(&cache->lock);
696 if (load_cache_only) {
697 cache->caching_ctl = NULL;
698 cache->cached = BTRFS_CACHE_NO;
699 } else {
700 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000701 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500702 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400703 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500704 wake_up(&caching_ctl->wait);
705 }
706
707 if (load_cache_only) {
708 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400709 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400710 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400711
Josef Bacik9e351cc2014-03-13 15:42:13 -0400712 down_write(&fs_info->commit_root_sem);
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200713 refcount_inc(&caching_ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400714 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400715 up_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -0400716
Josef Bacik11dfe352009-11-13 20:12:59 +0000717 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400718
Qu Wenruoe66f0bb2014-02-28 10:46:12 +0800719 btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work);
Josef Bacik817d52f2009-07-13 21:29:25 -0400720
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400721 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400722}
723
Josef Bacik0f9dd462008-09-23 13:14:11 -0400724/*
725 * return the block group that starts at or after bytenr
726 */
Chris Masond3977122009-01-05 21:25:51 -0500727static struct btrfs_block_group_cache *
728btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400729{
Masahiro Yamadae2c89902016-09-13 04:35:52 +0900730 return block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400731}
732
Josef Bacik0f9dd462008-09-23 13:14:11 -0400733/*
Sankar P9f556842009-05-14 13:52:22 -0400734 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400735 */
Chris Masond3977122009-01-05 21:25:51 -0500736struct btrfs_block_group_cache *btrfs_lookup_block_group(
737 struct btrfs_fs_info *info,
738 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400739{
Masahiro Yamadae2c89902016-09-13 04:35:52 +0900740 return block_group_cache_tree_search(info, bytenr, 1);
Chris Masonbe744172007-05-06 10:15:01 -0400741}
Chris Mason0b86a832008-03-24 15:01:56 -0400742
Josef Bacik0f9dd462008-09-23 13:14:11 -0400743static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
744 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400745{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400746 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400747 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400748
Ilya Dryomov52ba6922012-01-16 22:04:47 +0200749 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
Yan, Zhengb742bb822010-05-16 10:46:24 -0400750
Chris Mason4184ea72009-03-10 12:39:20 -0400751 rcu_read_lock();
752 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400753 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400754 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400755 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400756 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400757 }
Chris Mason4184ea72009-03-10 12:39:20 -0400758 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400759 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400760}
761
Qu Wenruo78192442019-05-15 07:33:48 +0800762static u64 generic_ref_to_space_flags(struct btrfs_ref *ref)
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700763{
Qu Wenruoddf30cf2019-04-04 14:45:34 +0800764 if (ref->type == BTRFS_REF_METADATA) {
765 if (ref->tree_ref.root == BTRFS_CHUNK_TREE_OBJECTID)
Qu Wenruo78192442019-05-15 07:33:48 +0800766 return BTRFS_BLOCK_GROUP_SYSTEM;
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700767 else
Qu Wenruo78192442019-05-15 07:33:48 +0800768 return BTRFS_BLOCK_GROUP_METADATA;
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700769 }
Qu Wenruo78192442019-05-15 07:33:48 +0800770 return BTRFS_BLOCK_GROUP_DATA;
771}
772
773static void add_pinned_bytes(struct btrfs_fs_info *fs_info,
774 struct btrfs_ref *ref)
775{
776 struct btrfs_space_info *space_info;
777 u64 flags = generic_ref_to_space_flags(ref);
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700778
779 space_info = __find_space_info(fs_info, flags);
Omar Sandoval55e81962017-06-06 16:45:27 -0700780 ASSERT(space_info);
Qu Wenruo78192442019-05-15 07:33:48 +0800781 percpu_counter_add_batch(&space_info->total_bytes_pinned, ref->len,
782 BTRFS_TOTAL_BYTES_PINNED_BATCH);
783}
784
785static void sub_pinned_bytes(struct btrfs_fs_info *fs_info,
786 struct btrfs_ref *ref)
787{
788 struct btrfs_space_info *space_info;
789 u64 flags = generic_ref_to_space_flags(ref);
790
791 space_info = __find_space_info(fs_info, flags);
792 ASSERT(space_info);
793 percpu_counter_add_batch(&space_info->total_bytes_pinned, -ref->len,
Ethan Liendec59fa2018-07-13 16:50:42 +0800794 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700795}
796
Chris Mason4184ea72009-03-10 12:39:20 -0400797/*
798 * after adding space to the filesystem, we need to clear the full flags
799 * on all the space infos.
800 */
801void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
802{
803 struct list_head *head = &info->space_info;
804 struct btrfs_space_info *found;
805
806 rcu_read_lock();
807 list_for_each_entry_rcu(found, head, list)
808 found->full = 0;
809 rcu_read_unlock();
810}
811
Filipe Manana1a4ed8f2014-10-27 10:44:24 +0000812/* simple helper to search for an existing data extent at a given offset */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400813int btrfs_lookup_data_extent(struct btrfs_fs_info *fs_info, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400814{
815 int ret;
816 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400817 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400818
Zheng Yan31840ae2008-09-23 13:14:14 -0400819 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700820 if (!path)
821 return -ENOMEM;
822
Chris Masone02119d2008-09-05 16:13:11 -0400823 key.objectid = start;
824 key.offset = len;
Josef Bacik3173a182013-03-07 14:22:04 -0500825 key.type = BTRFS_EXTENT_ITEM_KEY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400826 ret = btrfs_search_slot(NULL, fs_info->extent_root, &key, path, 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400827 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500828 return ret;
829}
830
Chris Masond8d5f3e2007-12-11 12:42:00 -0500831/*
Josef Bacik3173a182013-03-07 14:22:04 -0500832 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400833 *
834 * the head node for delayed ref is used to store the sum of all the
835 * reference count modifications queued up in the rbtree. the head
836 * node may also store the extent flags to set. This way you can check
837 * to see what the reference count and extent flags would be if all of
838 * the delayed refs are not processed.
839 */
840int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400841 struct btrfs_fs_info *fs_info, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500842 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400843{
844 struct btrfs_delayed_ref_head *head;
845 struct btrfs_delayed_ref_root *delayed_refs;
846 struct btrfs_path *path;
847 struct btrfs_extent_item *ei;
848 struct extent_buffer *leaf;
849 struct btrfs_key key;
850 u32 item_size;
851 u64 num_refs;
852 u64 extent_flags;
853 int ret;
854
Josef Bacik3173a182013-03-07 14:22:04 -0500855 /*
856 * If we don't have skinny metadata, don't bother doing anything
857 * different
858 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400859 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) {
860 offset = fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500861 metadata = 0;
862 }
863
Yan, Zhenga22285a2010-05-16 10:48:46 -0400864 path = btrfs_alloc_path();
865 if (!path)
866 return -ENOMEM;
867
Yan, Zhenga22285a2010-05-16 10:48:46 -0400868 if (!trans) {
869 path->skip_locking = 1;
870 path->search_commit_root = 1;
871 }
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000872
873search_again:
874 key.objectid = bytenr;
875 key.offset = offset;
876 if (metadata)
877 key.type = BTRFS_METADATA_ITEM_KEY;
878 else
879 key.type = BTRFS_EXTENT_ITEM_KEY;
880
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400881 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400882 if (ret < 0)
883 goto out_free;
884
Josef Bacik3173a182013-03-07 14:22:04 -0500885 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100886 if (path->slots[0]) {
887 path->slots[0]--;
888 btrfs_item_key_to_cpu(path->nodes[0], &key,
889 path->slots[0]);
890 if (key.objectid == bytenr &&
891 key.type == BTRFS_EXTENT_ITEM_KEY &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400892 key.offset == fs_info->nodesize)
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100893 ret = 0;
894 }
Josef Bacik3173a182013-03-07 14:22:04 -0500895 }
896
Yan, Zhenga22285a2010-05-16 10:48:46 -0400897 if (ret == 0) {
898 leaf = path->nodes[0];
899 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
900 if (item_size >= sizeof(*ei)) {
901 ei = btrfs_item_ptr(leaf, path->slots[0],
902 struct btrfs_extent_item);
903 num_refs = btrfs_extent_refs(leaf, ei);
904 extent_flags = btrfs_extent_flags(leaf, ei);
905 } else {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +0300906 ret = -EINVAL;
907 btrfs_print_v0_err(fs_info);
908 if (trans)
909 btrfs_abort_transaction(trans, ret);
910 else
911 btrfs_handle_fs_error(fs_info, ret, NULL);
912
913 goto out_free;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400914 }
Nikolay Borisovba3c2b12018-06-26 16:57:36 +0300915
Yan, Zhenga22285a2010-05-16 10:48:46 -0400916 BUG_ON(num_refs == 0);
917 } else {
918 num_refs = 0;
919 extent_flags = 0;
920 ret = 0;
921 }
922
923 if (!trans)
924 goto out;
925
926 delayed_refs = &trans->transaction->delayed_refs;
927 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -0800928 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400929 if (head) {
930 if (!mutex_trylock(&head->mutex)) {
Josef Bacikd2788502017-09-29 15:43:57 -0400931 refcount_inc(&head->refs);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400932 spin_unlock(&delayed_refs->lock);
933
David Sterbab3b4aa72011-04-21 01:20:15 +0200934 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400935
David Sterba8cc33e52011-05-02 15:29:25 +0200936 /*
937 * Mutex was contended, block until it's released and try
938 * again
939 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400940 mutex_lock(&head->mutex);
941 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -0400942 btrfs_put_delayed_ref_head(head);
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000943 goto search_again;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400944 }
Josef Bacikd7df2c72014-01-23 09:21:38 -0500945 spin_lock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400946 if (head->extent_op && head->extent_op->update_flags)
947 extent_flags |= head->extent_op->flags_to_set;
948 else
949 BUG_ON(num_refs == 0);
950
Josef Bacikd2788502017-09-29 15:43:57 -0400951 num_refs += head->ref_mod;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500952 spin_unlock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400953 mutex_unlock(&head->mutex);
954 }
955 spin_unlock(&delayed_refs->lock);
956out:
957 WARN_ON(num_refs == 0);
958 if (refs)
959 *refs = num_refs;
960 if (flags)
961 *flags = extent_flags;
962out_free:
963 btrfs_free_path(path);
964 return ret;
965}
966
967/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500968 * Back reference rules. Back refs have three main goals:
969 *
970 * 1) differentiate between all holders of references to an extent so that
971 * when a reference is dropped we can make sure it was a valid reference
972 * before freeing the extent.
973 *
974 * 2) Provide enough information to quickly find the holders of an extent
975 * if we notice a given block is corrupted or bad.
976 *
977 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
978 * maintenance. This is actually the same as #2, but with a slightly
979 * different use case.
980 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400981 * There are two kinds of back refs. The implicit back refs is optimized
982 * for pointers in non-shared tree blocks. For a given pointer in a block,
983 * back refs of this kind provide information about the block's owner tree
984 * and the pointer's key. These information allow us to find the block by
985 * b-tree searching. The full back refs is for pointers in tree blocks not
986 * referenced by their owner trees. The location of tree block is recorded
987 * in the back refs. Actually the full back refs is generic, and can be
988 * used in all cases the implicit back refs is used. The major shortcoming
989 * of the full back refs is its overhead. Every time a tree block gets
990 * COWed, we have to update back refs entry for all pointers in it.
991 *
992 * For a newly allocated tree block, we use implicit back refs for
993 * pointers in it. This means most tree related operations only involve
994 * implicit back refs. For a tree block created in old transaction, the
995 * only way to drop a reference to it is COW it. So we can detect the
996 * event that tree block loses its owner tree's reference and do the
997 * back refs conversion.
998 *
Nicholas D Steeves01327612016-05-19 21:18:45 -0400999 * When a tree block is COWed through a tree, there are four cases:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001000 *
1001 * The reference count of the block is one and the tree is the block's
1002 * owner tree. Nothing to do in this case.
1003 *
1004 * The reference count of the block is one and the tree is not the
1005 * block's owner tree. In this case, full back refs is used for pointers
1006 * in the block. Remove these full back refs, add implicit back refs for
1007 * every pointers in the new block.
1008 *
1009 * The reference count of the block is greater than one and the tree is
1010 * the block's owner tree. In this case, implicit back refs is used for
1011 * pointers in the block. Add full back refs for every pointers in the
1012 * block, increase lower level extents' reference counts. The original
1013 * implicit back refs are entailed to the new block.
1014 *
1015 * The reference count of the block is greater than one and the tree is
1016 * not the block's owner tree. Add implicit back refs for every pointer in
1017 * the new block, increase lower level extents' reference count.
1018 *
1019 * Back Reference Key composing:
1020 *
1021 * The key objectid corresponds to the first byte in the extent,
1022 * The key type is used to differentiate between types of back refs.
1023 * There are different meanings of the key offset for different types
1024 * of back refs.
1025 *
Chris Masond8d5f3e2007-12-11 12:42:00 -05001026 * File extents can be referenced by:
1027 *
1028 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -04001029 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -05001030 * - different offsets inside a file (bookend extents in file.c)
1031 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001032 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001033 *
1034 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -05001035 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001036 * - original offset in the file
1037 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -04001038 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001039 * The key offset for the implicit back refs is hash of the first
1040 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001041 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001042 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001043 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001044 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001045 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001046 * The key offset for the implicit back refs is the first byte of
1047 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001048 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001049 * When a file extent is allocated, The implicit back refs is used.
1050 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001051 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001052 * (root_key.objectid, inode objectid, offset in file, 1)
1053 *
1054 * When a file extent is removed file truncation, we find the
1055 * corresponding implicit back refs and check the following fields:
1056 *
1057 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -05001058 *
1059 * Btree extents can be referenced by:
1060 *
1061 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -05001062 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001063 * Both the implicit back refs and the full back refs for tree blocks
1064 * only consist of key. The key offset for the implicit back refs is
1065 * objectid of block's owner tree. The key offset for the full back refs
1066 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001067 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001068 * When implicit back refs is used, information about the lowest key and
1069 * level of the tree block are required. These information are stored in
1070 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001071 */
Zheng Yan31840ae2008-09-23 13:14:14 -04001072
Liu Bo167ce952017-08-18 15:15:18 -06001073/*
1074 * is_data == BTRFS_REF_TYPE_BLOCK, tree block type is required,
Andrea Gelmini52042d82018-11-28 12:05:13 +01001075 * is_data == BTRFS_REF_TYPE_DATA, data type is requiried,
Liu Bo167ce952017-08-18 15:15:18 -06001076 * is_data == BTRFS_REF_TYPE_ANY, either type is OK.
1077 */
1078int btrfs_get_extent_inline_ref_type(const struct extent_buffer *eb,
1079 struct btrfs_extent_inline_ref *iref,
1080 enum btrfs_inline_ref_type is_data)
1081{
1082 int type = btrfs_extent_inline_ref_type(eb, iref);
Liu Bo64ecdb62017-08-18 15:15:24 -06001083 u64 offset = btrfs_extent_inline_ref_offset(eb, iref);
Liu Bo167ce952017-08-18 15:15:18 -06001084
1085 if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1086 type == BTRFS_SHARED_BLOCK_REF_KEY ||
1087 type == BTRFS_SHARED_DATA_REF_KEY ||
1088 type == BTRFS_EXTENT_DATA_REF_KEY) {
1089 if (is_data == BTRFS_REF_TYPE_BLOCK) {
Liu Bo64ecdb62017-08-18 15:15:24 -06001090 if (type == BTRFS_TREE_BLOCK_REF_KEY)
Liu Bo167ce952017-08-18 15:15:18 -06001091 return type;
Liu Bo64ecdb62017-08-18 15:15:24 -06001092 if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1093 ASSERT(eb->fs_info);
1094 /*
1095 * Every shared one has parent tree
1096 * block, which must be aligned to
1097 * nodesize.
1098 */
1099 if (offset &&
1100 IS_ALIGNED(offset, eb->fs_info->nodesize))
1101 return type;
1102 }
Liu Bo167ce952017-08-18 15:15:18 -06001103 } else if (is_data == BTRFS_REF_TYPE_DATA) {
Liu Bo64ecdb62017-08-18 15:15:24 -06001104 if (type == BTRFS_EXTENT_DATA_REF_KEY)
Liu Bo167ce952017-08-18 15:15:18 -06001105 return type;
Liu Bo64ecdb62017-08-18 15:15:24 -06001106 if (type == BTRFS_SHARED_DATA_REF_KEY) {
1107 ASSERT(eb->fs_info);
1108 /*
1109 * Every shared one has parent tree
1110 * block, which must be aligned to
1111 * nodesize.
1112 */
1113 if (offset &&
1114 IS_ALIGNED(offset, eb->fs_info->nodesize))
1115 return type;
1116 }
Liu Bo167ce952017-08-18 15:15:18 -06001117 } else {
1118 ASSERT(is_data == BTRFS_REF_TYPE_ANY);
1119 return type;
1120 }
1121 }
1122
1123 btrfs_print_leaf((struct extent_buffer *)eb);
1124 btrfs_err(eb->fs_info, "eb %llu invalid extent inline ref type %d",
1125 eb->start, type);
1126 WARN_ON(1);
1127
1128 return BTRFS_REF_TYPE_INVALID;
1129}
1130
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001131static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1132{
1133 u32 high_crc = ~(u32)0;
1134 u32 low_crc = ~(u32)0;
1135 __le64 lenum;
1136
1137 lenum = cpu_to_le64(root_objectid);
Johannes Thumshirn65019df2019-05-22 10:18:59 +02001138 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001139 lenum = cpu_to_le64(owner);
Johannes Thumshirn65019df2019-05-22 10:18:59 +02001140 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001141 lenum = cpu_to_le64(offset);
Johannes Thumshirn65019df2019-05-22 10:18:59 +02001142 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001143
1144 return ((u64)high_crc << 31) ^ (u64)low_crc;
1145}
1146
1147static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1148 struct btrfs_extent_data_ref *ref)
1149{
1150 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1151 btrfs_extent_data_ref_objectid(leaf, ref),
1152 btrfs_extent_data_ref_offset(leaf, ref));
1153}
1154
1155static int match_extent_data_ref(struct extent_buffer *leaf,
1156 struct btrfs_extent_data_ref *ref,
1157 u64 root_objectid, u64 owner, u64 offset)
1158{
1159 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1160 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1161 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1162 return 0;
1163 return 1;
1164}
1165
1166static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001167 struct btrfs_path *path,
1168 u64 bytenr, u64 parent,
1169 u64 root_objectid,
1170 u64 owner, u64 offset)
1171{
Nikolay Borisovbd1d53e2018-06-20 15:48:51 +03001172 struct btrfs_root *root = trans->fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001173 struct btrfs_key key;
1174 struct btrfs_extent_data_ref *ref;
1175 struct extent_buffer *leaf;
1176 u32 nritems;
1177 int ret;
1178 int recow;
1179 int err = -ENOENT;
1180
1181 key.objectid = bytenr;
1182 if (parent) {
1183 key.type = BTRFS_SHARED_DATA_REF_KEY;
1184 key.offset = parent;
1185 } else {
1186 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1187 key.offset = hash_extent_data_ref(root_objectid,
1188 owner, offset);
1189 }
1190again:
1191 recow = 0;
1192 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1193 if (ret < 0) {
1194 err = ret;
1195 goto fail;
1196 }
1197
1198 if (parent) {
1199 if (!ret)
1200 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001201 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001202 }
1203
1204 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001205 nritems = btrfs_header_nritems(leaf);
1206 while (1) {
1207 if (path->slots[0] >= nritems) {
1208 ret = btrfs_next_leaf(root, path);
1209 if (ret < 0)
1210 err = ret;
1211 if (ret)
1212 goto fail;
1213
1214 leaf = path->nodes[0];
1215 nritems = btrfs_header_nritems(leaf);
1216 recow = 1;
1217 }
1218
1219 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1220 if (key.objectid != bytenr ||
1221 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1222 goto fail;
1223
1224 ref = btrfs_item_ptr(leaf, path->slots[0],
1225 struct btrfs_extent_data_ref);
1226
1227 if (match_extent_data_ref(leaf, ref, root_objectid,
1228 owner, offset)) {
1229 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001230 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001231 goto again;
1232 }
1233 err = 0;
1234 break;
1235 }
1236 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001237 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001238fail:
1239 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001240}
1241
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001242static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001243 struct btrfs_path *path,
1244 u64 bytenr, u64 parent,
1245 u64 root_objectid, u64 owner,
1246 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001247{
Nikolay Borisov62b895a2018-06-20 15:48:44 +03001248 struct btrfs_root *root = trans->fs_info->extent_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04001249 struct btrfs_key key;
1250 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001251 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001252 u32 num_refs;
1253 int ret;
1254
1255 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001256 if (parent) {
1257 key.type = BTRFS_SHARED_DATA_REF_KEY;
1258 key.offset = parent;
1259 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001260 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001261 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1262 key.offset = hash_extent_data_ref(root_objectid,
1263 owner, offset);
1264 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001265 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001266
1267 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1268 if (ret && ret != -EEXIST)
1269 goto fail;
1270
1271 leaf = path->nodes[0];
1272 if (parent) {
1273 struct btrfs_shared_data_ref *ref;
1274 ref = btrfs_item_ptr(leaf, path->slots[0],
1275 struct btrfs_shared_data_ref);
1276 if (ret == 0) {
1277 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1278 } else {
1279 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1280 num_refs += refs_to_add;
1281 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1282 }
1283 } else {
1284 struct btrfs_extent_data_ref *ref;
1285 while (ret == -EEXIST) {
1286 ref = btrfs_item_ptr(leaf, path->slots[0],
1287 struct btrfs_extent_data_ref);
1288 if (match_extent_data_ref(leaf, ref, root_objectid,
1289 owner, offset))
1290 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001291 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001292 key.offset++;
1293 ret = btrfs_insert_empty_item(trans, root, path, &key,
1294 size);
1295 if (ret && ret != -EEXIST)
1296 goto fail;
1297
1298 leaf = path->nodes[0];
1299 }
1300 ref = btrfs_item_ptr(leaf, path->slots[0],
1301 struct btrfs_extent_data_ref);
1302 if (ret == 0) {
1303 btrfs_set_extent_data_ref_root(leaf, ref,
1304 root_objectid);
1305 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1306 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1307 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1308 } else {
1309 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1310 num_refs += refs_to_add;
1311 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1312 }
1313 }
1314 btrfs_mark_buffer_dirty(leaf);
1315 ret = 0;
1316fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001317 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001318 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001319}
1320
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001321static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001322 struct btrfs_path *path,
Josef Bacikfcebe452014-05-13 17:30:47 -07001323 int refs_to_drop, int *last_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04001324{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001325 struct btrfs_key key;
1326 struct btrfs_extent_data_ref *ref1 = NULL;
1327 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001328 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001329 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001330 int ret = 0;
1331
1332 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001333 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1334
1335 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1336 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1337 struct btrfs_extent_data_ref);
1338 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1339 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1340 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1341 struct btrfs_shared_data_ref);
1342 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
David Sterba6d8ff4e2018-06-26 16:20:59 +02001343 } else if (unlikely(key.type == BTRFS_EXTENT_REF_V0_KEY)) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03001344 btrfs_print_v0_err(trans->fs_info);
1345 btrfs_abort_transaction(trans, -EINVAL);
1346 return -EINVAL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001347 } else {
1348 BUG();
1349 }
1350
Chris Mason56bec292009-03-13 10:10:06 -04001351 BUG_ON(num_refs < refs_to_drop);
1352 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001353
Zheng Yan31840ae2008-09-23 13:14:14 -04001354 if (num_refs == 0) {
Nikolay Borisove9f62902018-06-20 15:48:46 +03001355 ret = btrfs_del_item(trans, trans->fs_info->extent_root, path);
Josef Bacikfcebe452014-05-13 17:30:47 -07001356 *last_ref = 1;
Zheng Yan31840ae2008-09-23 13:14:14 -04001357 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001358 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1359 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1360 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1361 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
Zheng Yan31840ae2008-09-23 13:14:14 -04001362 btrfs_mark_buffer_dirty(leaf);
1363 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001364 return ret;
1365}
1366
Zhaolei9ed0dea2015-08-06 22:16:24 +08001367static noinline u32 extent_data_ref_count(struct btrfs_path *path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001368 struct btrfs_extent_inline_ref *iref)
1369{
1370 struct btrfs_key key;
1371 struct extent_buffer *leaf;
1372 struct btrfs_extent_data_ref *ref1;
1373 struct btrfs_shared_data_ref *ref2;
1374 u32 num_refs = 0;
Liu Bo3de28d52017-08-18 15:15:19 -06001375 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001376
1377 leaf = path->nodes[0];
1378 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03001379
1380 BUG_ON(key.type == BTRFS_EXTENT_REF_V0_KEY);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001381 if (iref) {
Liu Bo3de28d52017-08-18 15:15:19 -06001382 /*
1383 * If type is invalid, we should have bailed out earlier than
1384 * this call.
1385 */
1386 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
1387 ASSERT(type != BTRFS_REF_TYPE_INVALID);
1388 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001389 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1390 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1391 } else {
1392 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1393 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1394 }
1395 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1396 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1397 struct btrfs_extent_data_ref);
1398 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1399 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1400 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1401 struct btrfs_shared_data_ref);
1402 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001403 } else {
1404 WARN_ON(1);
1405 }
1406 return num_refs;
1407}
1408
1409static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001410 struct btrfs_path *path,
1411 u64 bytenr, u64 parent,
1412 u64 root_objectid)
1413{
Nikolay Borisovb8582ee2018-06-20 15:48:50 +03001414 struct btrfs_root *root = trans->fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001415 struct btrfs_key key;
1416 int ret;
1417
1418 key.objectid = bytenr;
1419 if (parent) {
1420 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1421 key.offset = parent;
1422 } else {
1423 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1424 key.offset = root_objectid;
1425 }
1426
1427 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1428 if (ret > 0)
1429 ret = -ENOENT;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001430 return ret;
1431}
1432
1433static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001434 struct btrfs_path *path,
1435 u64 bytenr, u64 parent,
1436 u64 root_objectid)
1437{
1438 struct btrfs_key key;
1439 int ret;
1440
1441 key.objectid = bytenr;
1442 if (parent) {
1443 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1444 key.offset = parent;
1445 } else {
1446 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1447 key.offset = root_objectid;
1448 }
1449
Nikolay Borisov10728402018-06-20 15:48:43 +03001450 ret = btrfs_insert_empty_item(trans, trans->fs_info->extent_root,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001451 path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001452 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001453 return ret;
1454}
1455
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001456static inline int extent_ref_type(u64 parent, u64 owner)
1457{
1458 int type;
1459 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1460 if (parent > 0)
1461 type = BTRFS_SHARED_BLOCK_REF_KEY;
1462 else
1463 type = BTRFS_TREE_BLOCK_REF_KEY;
1464 } else {
1465 if (parent > 0)
1466 type = BTRFS_SHARED_DATA_REF_KEY;
1467 else
1468 type = BTRFS_EXTENT_DATA_REF_KEY;
1469 }
1470 return type;
1471}
1472
Yan Zheng2c47e6052009-06-27 21:07:35 -04001473static int find_next_key(struct btrfs_path *path, int level,
1474 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001475
1476{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001477 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001478 if (!path->nodes[level])
1479 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001480 if (path->slots[level] + 1 >=
1481 btrfs_header_nritems(path->nodes[level]))
1482 continue;
1483 if (level == 0)
1484 btrfs_item_key_to_cpu(path->nodes[level], key,
1485 path->slots[level] + 1);
1486 else
1487 btrfs_node_key_to_cpu(path->nodes[level], key,
1488 path->slots[level] + 1);
1489 return 0;
1490 }
1491 return 1;
1492}
1493
1494/*
1495 * look for inline back ref. if back ref is found, *ref_ret is set
1496 * to the address of inline back ref, and 0 is returned.
1497 *
1498 * if back ref isn't found, *ref_ret is set to the address where it
1499 * should be inserted, and -ENOENT is returned.
1500 *
1501 * if insert is true and there are too many inline back refs, the path
1502 * points to the extent item, and -EAGAIN is returned.
1503 *
1504 * NOTE: inline back refs are ordered in the same way that back ref
1505 * items in the tree are ordered.
1506 */
1507static noinline_for_stack
1508int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001509 struct btrfs_path *path,
1510 struct btrfs_extent_inline_ref **ref_ret,
1511 u64 bytenr, u64 num_bytes,
1512 u64 parent, u64 root_objectid,
1513 u64 owner, u64 offset, int insert)
1514{
Nikolay Borisov867cc1f2018-06-20 15:48:48 +03001515 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001516 struct btrfs_root *root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001517 struct btrfs_key key;
1518 struct extent_buffer *leaf;
1519 struct btrfs_extent_item *ei;
1520 struct btrfs_extent_inline_ref *iref;
1521 u64 flags;
1522 u64 item_size;
1523 unsigned long ptr;
1524 unsigned long end;
1525 int extra_size;
1526 int type;
1527 int want;
1528 int ret;
1529 int err = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001530 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Liu Bo3de28d52017-08-18 15:15:19 -06001531 int needed;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001532
1533 key.objectid = bytenr;
1534 key.type = BTRFS_EXTENT_ITEM_KEY;
1535 key.offset = num_bytes;
1536
1537 want = extent_ref_type(parent, owner);
1538 if (insert) {
1539 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001540 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001541 } else
1542 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001543
1544 /*
Nikolay Borisov16d1c062018-06-18 14:59:26 +03001545 * Owner is our level, so we can just add one to get the level for the
1546 * block we are interested in.
Josef Bacik3173a182013-03-07 14:22:04 -05001547 */
1548 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1549 key.type = BTRFS_METADATA_ITEM_KEY;
1550 key.offset = owner;
1551 }
1552
1553again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001554 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1555 if (ret < 0) {
1556 err = ret;
1557 goto out;
1558 }
Josef Bacik3173a182013-03-07 14:22:04 -05001559
1560 /*
1561 * We may be a newly converted file system which still has the old fat
1562 * extent entries for metadata, so try and see if we have one of those.
1563 */
1564 if (ret > 0 && skinny_metadata) {
1565 skinny_metadata = false;
1566 if (path->slots[0]) {
1567 path->slots[0]--;
1568 btrfs_item_key_to_cpu(path->nodes[0], &key,
1569 path->slots[0]);
1570 if (key.objectid == bytenr &&
1571 key.type == BTRFS_EXTENT_ITEM_KEY &&
1572 key.offset == num_bytes)
1573 ret = 0;
1574 }
1575 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001576 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001577 key.type = BTRFS_EXTENT_ITEM_KEY;
1578 key.offset = num_bytes;
1579 btrfs_release_path(path);
1580 goto again;
1581 }
1582 }
1583
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001584 if (ret && !insert) {
1585 err = -ENOENT;
1586 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301587 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001588 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001589 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001590 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001591
1592 leaf = path->nodes[0];
1593 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
David Sterba6d8ff4e2018-06-26 16:20:59 +02001594 if (unlikely(item_size < sizeof(*ei))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03001595 err = -EINVAL;
1596 btrfs_print_v0_err(fs_info);
1597 btrfs_abort_transaction(trans, err);
1598 goto out;
1599 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001600
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001601 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1602 flags = btrfs_extent_flags(leaf, ei);
1603
1604 ptr = (unsigned long)(ei + 1);
1605 end = (unsigned long)ei + item_size;
1606
Josef Bacik3173a182013-03-07 14:22:04 -05001607 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001608 ptr += sizeof(struct btrfs_tree_block_info);
1609 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001610 }
1611
Liu Bo3de28d52017-08-18 15:15:19 -06001612 if (owner >= BTRFS_FIRST_FREE_OBJECTID)
1613 needed = BTRFS_REF_TYPE_DATA;
1614 else
1615 needed = BTRFS_REF_TYPE_BLOCK;
1616
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001617 err = -ENOENT;
1618 while (1) {
1619 if (ptr >= end) {
1620 WARN_ON(ptr > end);
1621 break;
1622 }
1623 iref = (struct btrfs_extent_inline_ref *)ptr;
Liu Bo3de28d52017-08-18 15:15:19 -06001624 type = btrfs_get_extent_inline_ref_type(leaf, iref, needed);
1625 if (type == BTRFS_REF_TYPE_INVALID) {
Su Yueaf431dc2018-06-22 16:18:01 +08001626 err = -EUCLEAN;
Liu Bo3de28d52017-08-18 15:15:19 -06001627 goto out;
1628 }
1629
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001630 if (want < type)
1631 break;
1632 if (want > type) {
1633 ptr += btrfs_extent_inline_ref_size(type);
1634 continue;
1635 }
1636
1637 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1638 struct btrfs_extent_data_ref *dref;
1639 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1640 if (match_extent_data_ref(leaf, dref, root_objectid,
1641 owner, offset)) {
1642 err = 0;
1643 break;
1644 }
1645 if (hash_extent_data_ref_item(leaf, dref) <
1646 hash_extent_data_ref(root_objectid, owner, offset))
1647 break;
1648 } else {
1649 u64 ref_offset;
1650 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1651 if (parent > 0) {
1652 if (parent == ref_offset) {
1653 err = 0;
1654 break;
1655 }
1656 if (ref_offset < parent)
1657 break;
1658 } else {
1659 if (root_objectid == ref_offset) {
1660 err = 0;
1661 break;
1662 }
1663 if (ref_offset < root_objectid)
1664 break;
1665 }
1666 }
1667 ptr += btrfs_extent_inline_ref_size(type);
1668 }
1669 if (err == -ENOENT && insert) {
1670 if (item_size + extra_size >=
1671 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1672 err = -EAGAIN;
1673 goto out;
1674 }
1675 /*
1676 * To add new inline back ref, we have to make sure
1677 * there is no corresponding back ref item.
1678 * For simplicity, we just do not add new inline back
1679 * ref if there is any kind of item for this block
1680 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001681 if (find_next_key(path, 0, &key) == 0 &&
1682 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001683 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001684 err = -EAGAIN;
1685 goto out;
1686 }
1687 }
1688 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1689out:
Yan Zheng85d41982009-06-11 08:51:10 -04001690 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001691 path->keep_locks = 0;
1692 btrfs_unlock_up_safe(path, 1);
1693 }
1694 return err;
1695}
1696
1697/*
1698 * helper to add new inline back ref
1699 */
1700static noinline_for_stack
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001701void setup_inline_extent_backref(struct btrfs_fs_info *fs_info,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001702 struct btrfs_path *path,
1703 struct btrfs_extent_inline_ref *iref,
1704 u64 parent, u64 root_objectid,
1705 u64 owner, u64 offset, int refs_to_add,
1706 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001707{
1708 struct extent_buffer *leaf;
1709 struct btrfs_extent_item *ei;
1710 unsigned long ptr;
1711 unsigned long end;
1712 unsigned long item_offset;
1713 u64 refs;
1714 int size;
1715 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001716
1717 leaf = path->nodes[0];
1718 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1719 item_offset = (unsigned long)iref - (unsigned long)ei;
1720
1721 type = extent_ref_type(parent, owner);
1722 size = btrfs_extent_inline_ref_size(type);
1723
David Sterbac71dd882019-03-20 14:51:10 +01001724 btrfs_extend_item(path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001725
1726 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1727 refs = btrfs_extent_refs(leaf, ei);
1728 refs += refs_to_add;
1729 btrfs_set_extent_refs(leaf, ei, refs);
1730 if (extent_op)
1731 __run_delayed_extent_op(extent_op, leaf, ei);
1732
1733 ptr = (unsigned long)ei + item_offset;
1734 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1735 if (ptr < end - size)
1736 memmove_extent_buffer(leaf, ptr + size, ptr,
1737 end - size - ptr);
1738
1739 iref = (struct btrfs_extent_inline_ref *)ptr;
1740 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1741 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1742 struct btrfs_extent_data_ref *dref;
1743 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1744 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1745 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1746 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1747 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1748 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1749 struct btrfs_shared_data_ref *sref;
1750 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1751 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1752 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1753 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1754 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1755 } else {
1756 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1757 }
1758 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001759}
1760
1761static int lookup_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001762 struct btrfs_path *path,
1763 struct btrfs_extent_inline_ref **ref_ret,
1764 u64 bytenr, u64 num_bytes, u64 parent,
1765 u64 root_objectid, u64 owner, u64 offset)
1766{
1767 int ret;
1768
Nikolay Borisov867cc1f2018-06-20 15:48:48 +03001769 ret = lookup_inline_extent_backref(trans, path, ref_ret, bytenr,
1770 num_bytes, parent, root_objectid,
1771 owner, offset, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001772 if (ret != -ENOENT)
1773 return ret;
1774
David Sterbab3b4aa72011-04-21 01:20:15 +02001775 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001776 *ref_ret = NULL;
1777
1778 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Nikolay Borisovb8582ee2018-06-20 15:48:50 +03001779 ret = lookup_tree_block_ref(trans, path, bytenr, parent,
1780 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001781 } else {
Nikolay Borisovbd1d53e2018-06-20 15:48:51 +03001782 ret = lookup_extent_data_ref(trans, path, bytenr, parent,
1783 root_objectid, owner, offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001784 }
1785 return ret;
1786}
1787
1788/*
1789 * helper to update/remove inline back ref
1790 */
1791static noinline_for_stack
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001792void update_inline_extent_backref(struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001793 struct btrfs_extent_inline_ref *iref,
1794 int refs_to_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07001795 struct btrfs_delayed_extent_op *extent_op,
1796 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001797{
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001798 struct extent_buffer *leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001799 struct btrfs_extent_item *ei;
1800 struct btrfs_extent_data_ref *dref = NULL;
1801 struct btrfs_shared_data_ref *sref = NULL;
1802 unsigned long ptr;
1803 unsigned long end;
1804 u32 item_size;
1805 int size;
1806 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001807 u64 refs;
1808
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001809 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1810 refs = btrfs_extent_refs(leaf, ei);
1811 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1812 refs += refs_to_mod;
1813 btrfs_set_extent_refs(leaf, ei, refs);
1814 if (extent_op)
1815 __run_delayed_extent_op(extent_op, leaf, ei);
1816
Liu Bo3de28d52017-08-18 15:15:19 -06001817 /*
1818 * If type is invalid, we should have bailed out after
1819 * lookup_inline_extent_backref().
1820 */
1821 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_ANY);
1822 ASSERT(type != BTRFS_REF_TYPE_INVALID);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001823
1824 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1825 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1826 refs = btrfs_extent_data_ref_count(leaf, dref);
1827 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1828 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1829 refs = btrfs_shared_data_ref_count(leaf, sref);
1830 } else {
1831 refs = 1;
1832 BUG_ON(refs_to_mod != -1);
1833 }
1834
1835 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1836 refs += refs_to_mod;
1837
1838 if (refs > 0) {
1839 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1840 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1841 else
1842 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1843 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001844 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001845 size = btrfs_extent_inline_ref_size(type);
1846 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1847 ptr = (unsigned long)iref;
1848 end = (unsigned long)ei + item_size;
1849 if (ptr + size < end)
1850 memmove_extent_buffer(leaf, ptr, ptr + size,
1851 end - ptr - size);
1852 item_size -= size;
David Sterba78ac4f92019-03-20 14:49:12 +01001853 btrfs_truncate_item(path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001854 }
1855 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001856}
1857
1858static noinline_for_stack
1859int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001860 struct btrfs_path *path,
1861 u64 bytenr, u64 num_bytes, u64 parent,
1862 u64 root_objectid, u64 owner,
1863 u64 offset, int refs_to_add,
1864 struct btrfs_delayed_extent_op *extent_op)
1865{
1866 struct btrfs_extent_inline_ref *iref;
1867 int ret;
1868
Nikolay Borisov867cc1f2018-06-20 15:48:48 +03001869 ret = lookup_inline_extent_backref(trans, path, &iref, bytenr,
1870 num_bytes, parent, root_objectid,
1871 owner, offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001872 if (ret == 0) {
1873 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001874 update_inline_extent_backref(path, iref, refs_to_add,
1875 extent_op, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001876 } else if (ret == -ENOENT) {
Nikolay Borisova639cde2018-06-20 15:49:10 +03001877 setup_inline_extent_backref(trans->fs_info, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001878 root_objectid, owner, offset,
1879 refs_to_add, extent_op);
1880 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001881 }
1882 return ret;
1883}
1884
1885static int insert_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001886 struct btrfs_path *path,
1887 u64 bytenr, u64 parent, u64 root_objectid,
1888 u64 owner, u64 offset, int refs_to_add)
1889{
1890 int ret;
1891 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1892 BUG_ON(refs_to_add != 1);
Nikolay Borisov10728402018-06-20 15:48:43 +03001893 ret = insert_tree_block_ref(trans, path, bytenr, parent,
1894 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001895 } else {
Nikolay Borisov62b895a2018-06-20 15:48:44 +03001896 ret = insert_extent_data_ref(trans, path, bytenr, parent,
1897 root_objectid, owner, offset,
1898 refs_to_add);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001899 }
1900 return ret;
1901}
1902
1903static int remove_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001904 struct btrfs_path *path,
1905 struct btrfs_extent_inline_ref *iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001906 int refs_to_drop, int is_data, int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001907{
Jeff Mahoney143bede2012-03-01 14:56:26 +01001908 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001909
1910 BUG_ON(!is_data && refs_to_drop != 1);
1911 if (iref) {
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001912 update_inline_extent_backref(path, iref, -refs_to_drop, NULL,
1913 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001914 } else if (is_data) {
Nikolay Borisove9f62902018-06-20 15:48:46 +03001915 ret = remove_extent_data_ref(trans, path, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07001916 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001917 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001918 *last_ref = 1;
Nikolay Borisov87cc7a82018-06-20 15:49:12 +03001919 ret = btrfs_del_item(trans, trans->fs_info->extent_root, path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001920 }
1921 return ret;
1922}
1923
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001924static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len,
1925 u64 *discarded_bytes)
Chris Mason15916de2008-11-19 21:17:22 -05001926{
Jeff Mahoney86557862015-06-15 09:41:16 -04001927 int j, ret = 0;
1928 u64 bytes_left, end;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001929 u64 aligned_start = ALIGN(start, 1 << 9);
1930
1931 if (WARN_ON(start != aligned_start)) {
1932 len -= aligned_start - start;
1933 len = round_down(len, 1 << 9);
1934 start = aligned_start;
1935 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001936
1937 *discarded_bytes = 0;
Jeff Mahoney86557862015-06-15 09:41:16 -04001938
1939 if (!len)
1940 return 0;
1941
1942 end = start + len;
1943 bytes_left = len;
1944
1945 /* Skip any superblocks on this device. */
1946 for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) {
1947 u64 sb_start = btrfs_sb_offset(j);
1948 u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE;
1949 u64 size = sb_start - start;
1950
1951 if (!in_range(sb_start, start, bytes_left) &&
1952 !in_range(sb_end, start, bytes_left) &&
1953 !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE))
1954 continue;
1955
1956 /*
1957 * Superblock spans beginning of range. Adjust start and
1958 * try again.
1959 */
1960 if (sb_start <= start) {
1961 start += sb_end - start;
1962 if (start > end) {
1963 bytes_left = 0;
1964 break;
1965 }
1966 bytes_left = end - start;
1967 continue;
1968 }
1969
1970 if (size) {
1971 ret = blkdev_issue_discard(bdev, start >> 9, size >> 9,
1972 GFP_NOFS, 0);
1973 if (!ret)
1974 *discarded_bytes += size;
1975 else if (ret != -EOPNOTSUPP)
1976 return ret;
1977 }
1978
1979 start = sb_end;
1980 if (start > end) {
1981 bytes_left = 0;
1982 break;
1983 }
1984 bytes_left = end - start;
1985 }
1986
1987 if (bytes_left) {
1988 ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9,
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001989 GFP_NOFS, 0);
1990 if (!ret)
Jeff Mahoney86557862015-06-15 09:41:16 -04001991 *discarded_bytes += bytes_left;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001992 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001993 return ret;
Chris Mason15916de2008-11-19 21:17:22 -05001994}
Chris Mason15916de2008-11-19 21:17:22 -05001995
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001996int btrfs_discard_extent(struct btrfs_fs_info *fs_info, u64 bytenr,
Filipe Manana1edb647b2014-12-08 14:01:12 +00001997 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05001998{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001999 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00002000 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02002001 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002002
Christoph Hellwige244a0a2009-10-14 09:24:59 -04002003
Filipe Manana29992412016-05-27 17:42:05 +01002004 /*
2005 * Avoid races with device replace and make sure our bbio has devices
2006 * associated to its stripes that don't go away while we are discarding.
2007 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002008 btrfs_bio_counter_inc_blocked(fs_info);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002009 /* Tell the block device(s) that the sectors can be discarded */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002010 ret = btrfs_map_block(fs_info, BTRFS_MAP_DISCARD, bytenr, &num_bytes,
2011 &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002012 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05002013 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02002014 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002015 int i;
2016
Liu Hui1f3c79a2009-01-05 15:57:51 -05002017
Jan Schmidta1d3c472011-08-04 17:15:33 +02002018 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002019 u64 bytes;
Anand Jain38b5f682017-11-29 18:53:43 +08002020 struct request_queue *req_q;
2021
Filipe Manana627e0872018-01-30 18:40:22 +00002022 if (!stripe->dev->bdev) {
2023 ASSERT(btrfs_test_opt(fs_info, DEGRADED));
2024 continue;
2025 }
Anand Jain38b5f682017-11-29 18:53:43 +08002026 req_q = bdev_get_queue(stripe->dev->bdev);
2027 if (!blk_queue_discard(req_q))
Josef Bacikd5e20032011-08-04 14:52:27 +00002028 continue;
2029
Li Dongyang5378e602011-03-24 10:24:27 +00002030 ret = btrfs_issue_discard(stripe->dev->bdev,
2031 stripe->physical,
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002032 stripe->length,
2033 &bytes);
Li Dongyang5378e602011-03-24 10:24:27 +00002034 if (!ret)
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002035 discarded_bytes += bytes;
Li Dongyang5378e602011-03-24 10:24:27 +00002036 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002037 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00002038
2039 /*
2040 * Just in case we get back EOPNOTSUPP for some reason,
2041 * just ignore the return value so we don't screw up
2042 * people calling discard_extent.
2043 */
2044 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002045 }
Zhao Lei6e9606d2015-01-20 15:11:34 +08002046 btrfs_put_bbio(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002047 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002048 btrfs_bio_counter_dec(fs_info);
Li Dongyang5378e602011-03-24 10:24:27 +00002049
2050 if (actual_bytes)
2051 *actual_bytes = discarded_bytes;
2052
Liu Hui1f3c79a2009-01-05 15:57:51 -05002053
David Woodhouse53b381b2013-01-29 18:40:14 -05002054 if (ret == -EOPNOTSUPP)
2055 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002056 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002057}
2058
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002059/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002060int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Qu Wenruo82fa1132019-04-04 14:45:35 +08002061 struct btrfs_ref *generic_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04002062{
Qu Wenruo82fa1132019-04-04 14:45:35 +08002063 struct btrfs_fs_info *fs_info = trans->fs_info;
Omar Sandovald7eae342017-06-06 16:45:31 -07002064 int old_ref_mod, new_ref_mod;
Zheng Yan31840ae2008-09-23 13:14:14 -04002065 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002066
Qu Wenruo82fa1132019-04-04 14:45:35 +08002067 ASSERT(generic_ref->type != BTRFS_REF_NOT_SET &&
2068 generic_ref->action);
2069 BUG_ON(generic_ref->type == BTRFS_REF_METADATA &&
2070 generic_ref->tree_ref.root == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04002071
Qu Wenruo82fa1132019-04-04 14:45:35 +08002072 if (generic_ref->type == BTRFS_REF_METADATA)
2073 ret = btrfs_add_delayed_tree_ref(trans, generic_ref,
Qu Wenruoed4f2552019-04-04 14:45:31 +08002074 NULL, &old_ref_mod, &new_ref_mod);
Qu Wenruo82fa1132019-04-04 14:45:35 +08002075 else
2076 ret = btrfs_add_delayed_data_ref(trans, generic_ref, 0,
Omar Sandovald7eae342017-06-06 16:45:31 -07002077 &old_ref_mod, &new_ref_mod);
Omar Sandovald7eae342017-06-06 16:45:31 -07002078
Qu Wenruo82fa1132019-04-04 14:45:35 +08002079 btrfs_ref_tree_mod(fs_info, generic_ref);
Qu Wenruo8a5040f2019-04-04 14:45:33 +08002080
Qu Wenruoddf30cf2019-04-04 14:45:34 +08002081 if (ret == 0 && old_ref_mod < 0 && new_ref_mod >= 0)
Qu Wenruo78192442019-05-15 07:33:48 +08002082 sub_pinned_bytes(fs_info, generic_ref);
Omar Sandovald7eae342017-06-06 16:45:31 -07002083
Zheng Yan31840ae2008-09-23 13:14:14 -04002084 return ret;
2085}
2086
Nikolay Borisovbd3c6852018-06-18 14:59:25 +03002087/*
2088 * __btrfs_inc_extent_ref - insert backreference for a given extent
2089 *
2090 * @trans: Handle of transaction
2091 *
2092 * @node: The delayed ref node used to get the bytenr/length for
2093 * extent whose references are incremented.
2094 *
2095 * @parent: If this is a shared extent (BTRFS_SHARED_DATA_REF_KEY/
2096 * BTRFS_SHARED_BLOCK_REF_KEY) then it holds the logical
2097 * bytenr of the parent block. Since new extents are always
2098 * created with indirect references, this will only be the case
2099 * when relocating a shared extent. In that case, root_objectid
2100 * will be BTRFS_TREE_RELOC_OBJECTID. Otheriwse, parent must
2101 * be 0
2102 *
2103 * @root_objectid: The id of the root where this modification has originated,
2104 * this can be either one of the well-known metadata trees or
2105 * the subvolume id which references this extent.
2106 *
2107 * @owner: For data extents it is the inode number of the owning file.
2108 * For metadata extents this parameter holds the level in the
2109 * tree of the extent.
2110 *
2111 * @offset: For metadata extents the offset is ignored and is currently
2112 * always passed as 0. For data extents it is the fileoffset
2113 * this extent belongs to.
2114 *
2115 * @refs_to_add Number of references to add
2116 *
2117 * @extent_op Pointer to a structure, holding information necessary when
2118 * updating a tree block's flags
2119 *
2120 */
Chris Mason925baed2008-06-25 16:01:30 -04002121static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002122 struct btrfs_delayed_ref_node *node,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002123 u64 parent, u64 root_objectid,
2124 u64 owner, u64 offset, int refs_to_add,
2125 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04002126{
Chris Mason5caf2a02007-04-02 11:20:42 -04002127 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002128 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04002129 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07002130 struct btrfs_key key;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002131 u64 bytenr = node->bytenr;
2132 u64 num_bytes = node->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002133 u64 refs;
2134 int ret;
Chris Mason037e6392007-03-07 11:50:24 -05002135
Chris Mason5caf2a02007-04-02 11:20:42 -04002136 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002137 if (!path)
2138 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04002139
David Sterbae4058b52015-11-27 16:31:35 +01002140 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002141 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002142 /* this will setup the path even if it fails to insert the back ref */
Nikolay Borisova639cde2018-06-20 15:49:10 +03002143 ret = insert_inline_extent_backref(trans, path, bytenr, num_bytes,
2144 parent, root_objectid, owner,
2145 offset, refs_to_add, extent_op);
Qu Wenruo0ed47922015-04-16 16:55:08 +08002146 if ((ret < 0 && ret != -EAGAIN) || !ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002147 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002148
2149 /*
2150 * Ok we had -EAGAIN which means we didn't have space to insert and
2151 * inline extent ref, so just update the reference count and add a
2152 * normal backref.
2153 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002154 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002155 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002156 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2157 refs = btrfs_extent_refs(leaf, item);
2158 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2159 if (extent_op)
2160 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002161
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002162 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002163 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002164
David Sterbae4058b52015-11-27 16:31:35 +01002165 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002166 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002167 /* now insert the actual backref */
Nikolay Borisov37593412018-06-20 15:48:45 +03002168 ret = insert_extent_backref(trans, path, bytenr, parent, root_objectid,
2169 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002170 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04002171 btrfs_abort_transaction(trans, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002172out:
Chris Mason74493f72007-12-11 09:25:06 -05002173 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002174 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002175}
2176
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002177static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002178 struct btrfs_delayed_ref_node *node,
2179 struct btrfs_delayed_extent_op *extent_op,
2180 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002181{
Chris Mason56bec292009-03-13 10:10:06 -04002182 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002183 struct btrfs_delayed_data_ref *ref;
2184 struct btrfs_key ins;
2185 u64 parent = 0;
2186 u64 ref_root = 0;
2187 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002188
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002189 ins.objectid = node->bytenr;
2190 ins.offset = node->num_bytes;
2191 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002192
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002193 ref = btrfs_delayed_node_to_data_ref(node);
Nikolay Borisov2bf98ef2018-06-20 15:49:00 +03002194 trace_run_delayed_data_ref(trans->fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002195
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002196 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2197 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002198 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002199
2200 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002201 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002202 flags |= extent_op->flags_to_set;
Nikolay Borisovef89b822018-06-20 15:48:58 +03002203 ret = alloc_reserved_file_extent(trans, parent, ref_root,
2204 flags, ref->objectid,
2205 ref->offset, &ins,
2206 node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002207 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Nikolay Borisov2590d0f2018-06-20 15:48:59 +03002208 ret = __btrfs_inc_extent_ref(trans, node, parent, ref_root,
2209 ref->objectid, ref->offset,
2210 node->ref_mod, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002211 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Nikolay Borisove72cb922018-06-20 15:48:57 +03002212 ret = __btrfs_free_extent(trans, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002213 ref_root, ref->objectid,
2214 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002215 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002216 } else {
2217 BUG();
2218 }
Chris Mason56bec292009-03-13 10:10:06 -04002219 return ret;
2220}
2221
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002222static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2223 struct extent_buffer *leaf,
2224 struct btrfs_extent_item *ei)
2225{
2226 u64 flags = btrfs_extent_flags(leaf, ei);
2227 if (extent_op->update_flags) {
2228 flags |= extent_op->flags_to_set;
2229 btrfs_set_extent_flags(leaf, ei, flags);
2230 }
2231
2232 if (extent_op->update_key) {
2233 struct btrfs_tree_block_info *bi;
2234 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2235 bi = (struct btrfs_tree_block_info *)(ei + 1);
2236 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2237 }
2238}
2239
2240static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
Josef Bacikd2788502017-09-29 15:43:57 -04002241 struct btrfs_delayed_ref_head *head,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002242 struct btrfs_delayed_extent_op *extent_op)
2243{
Nikolay Borisov20b9a2d2018-06-20 15:49:01 +03002244 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002245 struct btrfs_key key;
2246 struct btrfs_path *path;
2247 struct btrfs_extent_item *ei;
2248 struct extent_buffer *leaf;
2249 u32 item_size;
2250 int ret;
2251 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002252 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002253
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002254 if (trans->aborted)
2255 return 0;
2256
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002257 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik3173a182013-03-07 14:22:04 -05002258 metadata = 0;
2259
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002260 path = btrfs_alloc_path();
2261 if (!path)
2262 return -ENOMEM;
2263
Josef Bacikd2788502017-09-29 15:43:57 -04002264 key.objectid = head->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002265
Josef Bacik3173a182013-03-07 14:22:04 -05002266 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002267 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002268 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002269 } else {
2270 key.type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacikd2788502017-09-29 15:43:57 -04002271 key.offset = head->num_bytes;
Josef Bacik3173a182013-03-07 14:22:04 -05002272 }
2273
2274again:
David Sterbae4058b52015-11-27 16:31:35 +01002275 path->reada = READA_FORWARD;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002276 path->leave_spinning = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002277 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002278 if (ret < 0) {
2279 err = ret;
2280 goto out;
2281 }
2282 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002283 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002284 if (path->slots[0] > 0) {
2285 path->slots[0]--;
2286 btrfs_item_key_to_cpu(path->nodes[0], &key,
2287 path->slots[0]);
Josef Bacikd2788502017-09-29 15:43:57 -04002288 if (key.objectid == head->bytenr &&
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002289 key.type == BTRFS_EXTENT_ITEM_KEY &&
Josef Bacikd2788502017-09-29 15:43:57 -04002290 key.offset == head->num_bytes)
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002291 ret = 0;
2292 }
2293 if (ret > 0) {
2294 btrfs_release_path(path);
2295 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002296
Josef Bacikd2788502017-09-29 15:43:57 -04002297 key.objectid = head->bytenr;
2298 key.offset = head->num_bytes;
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002299 key.type = BTRFS_EXTENT_ITEM_KEY;
2300 goto again;
2301 }
2302 } else {
2303 err = -EIO;
2304 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002305 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002306 }
2307
2308 leaf = path->nodes[0];
2309 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03002310
David Sterba6d8ff4e2018-06-26 16:20:59 +02002311 if (unlikely(item_size < sizeof(*ei))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03002312 err = -EINVAL;
2313 btrfs_print_v0_err(fs_info);
2314 btrfs_abort_transaction(trans, err);
2315 goto out;
2316 }
2317
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002318 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2319 __run_delayed_extent_op(extent_op, leaf, ei);
2320
2321 btrfs_mark_buffer_dirty(leaf);
2322out:
2323 btrfs_free_path(path);
2324 return err;
2325}
2326
2327static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002328 struct btrfs_delayed_ref_node *node,
2329 struct btrfs_delayed_extent_op *extent_op,
2330 int insert_reserved)
2331{
2332 int ret = 0;
2333 struct btrfs_delayed_tree_ref *ref;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002334 u64 parent = 0;
2335 u64 ref_root = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002336
2337 ref = btrfs_delayed_node_to_tree_ref(node);
Nikolay Borisovf97806f2018-06-20 15:49:04 +03002338 trace_run_delayed_tree_ref(trans->fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002339
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002340 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2341 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002342 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002343
Liu Bo02794222016-09-14 19:19:05 -07002344 if (node->ref_mod != 1) {
Nikolay Borisovf97806f2018-06-20 15:49:04 +03002345 btrfs_err(trans->fs_info,
Liu Bo02794222016-09-14 19:19:05 -07002346 "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu",
2347 node->bytenr, node->ref_mod, node->action, ref_root,
2348 parent);
2349 return -EIO;
2350 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002351 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002352 BUG_ON(!extent_op || !extent_op->update_flags);
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03002353 ret = alloc_reserved_tree_block(trans, node, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002354 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Nikolay Borisov2590d0f2018-06-20 15:48:59 +03002355 ret = __btrfs_inc_extent_ref(trans, node, parent, ref_root,
2356 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002357 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Nikolay Borisove72cb922018-06-20 15:48:57 +03002358 ret = __btrfs_free_extent(trans, node, parent, ref_root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002359 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002360 } else {
2361 BUG();
2362 }
2363 return ret;
2364}
2365
Chris Mason56bec292009-03-13 10:10:06 -04002366/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002367static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002368 struct btrfs_delayed_ref_node *node,
2369 struct btrfs_delayed_extent_op *extent_op,
2370 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002371{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002372 int ret = 0;
2373
Josef Bacik857cc2f2013-10-07 15:21:08 -04002374 if (trans->aborted) {
2375 if (insert_reserved)
Nikolay Borisov5fac7f92018-06-20 15:49:11 +03002376 btrfs_pin_extent(trans->fs_info, node->bytenr,
Josef Bacik857cc2f2013-10-07 15:21:08 -04002377 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002378 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002379 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002380
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002381 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2382 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
Nikolay Borisovf97806f2018-06-20 15:49:04 +03002383 ret = run_delayed_tree_ref(trans, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002384 insert_reserved);
2385 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2386 node->type == BTRFS_SHARED_DATA_REF_KEY)
Nikolay Borisov2bf98ef2018-06-20 15:49:00 +03002387 ret = run_delayed_data_ref(trans, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002388 insert_reserved);
2389 else
2390 BUG();
Josef Bacik80ee54b2018-10-11 15:54:22 -04002391 if (ret && insert_reserved)
2392 btrfs_pin_extent(trans->fs_info, node->bytenr,
2393 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002394 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002395}
2396
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002397static inline struct btrfs_delayed_ref_node *
Chris Mason56bec292009-03-13 10:10:06 -04002398select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002399{
Filipe Mananacffc3372015-07-09 13:13:44 +01002400 struct btrfs_delayed_ref_node *ref;
2401
Liu Boe3d03962018-08-23 03:51:50 +08002402 if (RB_EMPTY_ROOT(&head->ref_tree.rb_root))
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002403 return NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002404
Filipe Mananacffc3372015-07-09 13:13:44 +01002405 /*
2406 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
2407 * This is to prevent a ref count from going down to zero, which deletes
2408 * the extent item from the extent tree, when there still are references
2409 * to add, which would fail because they would not find the extent item.
2410 */
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002411 if (!list_empty(&head->ref_add_list))
2412 return list_first_entry(&head->ref_add_list,
2413 struct btrfs_delayed_ref_node, add_list);
Filipe Mananacffc3372015-07-09 13:13:44 +01002414
Liu Boe3d03962018-08-23 03:51:50 +08002415 ref = rb_entry(rb_first_cached(&head->ref_tree),
Josef Bacik0e0adbc2017-10-19 14:16:00 -04002416 struct btrfs_delayed_ref_node, ref_node);
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002417 ASSERT(list_empty(&ref->add_list));
2418 return ref;
Chris Mason56bec292009-03-13 10:10:06 -04002419}
2420
Josef Bacik2eadaa22017-09-29 15:43:52 -04002421static void unselect_delayed_ref_head(struct btrfs_delayed_ref_root *delayed_refs,
2422 struct btrfs_delayed_ref_head *head)
2423{
2424 spin_lock(&delayed_refs->lock);
2425 head->processing = 0;
2426 delayed_refs->num_heads_ready++;
2427 spin_unlock(&delayed_refs->lock);
2428 btrfs_delayed_ref_unlock(head);
2429}
2430
Josef Bacikbedc66172018-12-03 10:20:31 -05002431static struct btrfs_delayed_extent_op *cleanup_extent_op(
2432 struct btrfs_delayed_ref_head *head)
Josef Bacikb00e6252017-09-29 15:43:53 -04002433{
2434 struct btrfs_delayed_extent_op *extent_op = head->extent_op;
Josef Bacikbedc66172018-12-03 10:20:31 -05002435
2436 if (!extent_op)
2437 return NULL;
2438
2439 if (head->must_insert_reserved) {
2440 head->extent_op = NULL;
2441 btrfs_free_delayed_extent_op(extent_op);
2442 return NULL;
2443 }
2444 return extent_op;
2445}
2446
2447static int run_and_cleanup_extent_op(struct btrfs_trans_handle *trans,
2448 struct btrfs_delayed_ref_head *head)
2449{
2450 struct btrfs_delayed_extent_op *extent_op;
Josef Bacikb00e6252017-09-29 15:43:53 -04002451 int ret;
2452
Josef Bacikbedc66172018-12-03 10:20:31 -05002453 extent_op = cleanup_extent_op(head);
Josef Bacikb00e6252017-09-29 15:43:53 -04002454 if (!extent_op)
2455 return 0;
2456 head->extent_op = NULL;
Josef Bacikb00e6252017-09-29 15:43:53 -04002457 spin_unlock(&head->lock);
Nikolay Borisov20b9a2d2018-06-20 15:49:01 +03002458 ret = run_delayed_extent_op(trans, head, extent_op);
Josef Bacikb00e6252017-09-29 15:43:53 -04002459 btrfs_free_delayed_extent_op(extent_op);
2460 return ret ? ret : 1;
2461}
2462
Josef Bacik31890da2018-11-21 14:05:41 -05002463void btrfs_cleanup_ref_head_accounting(struct btrfs_fs_info *fs_info,
2464 struct btrfs_delayed_ref_root *delayed_refs,
2465 struct btrfs_delayed_ref_head *head)
Josef Bacik07c47772018-12-03 10:20:30 -05002466{
Josef Bacikba2c4d42018-12-03 10:20:33 -05002467 int nr_items = 1; /* Dropping this ref head update. */
Josef Bacik07c47772018-12-03 10:20:30 -05002468
2469 if (head->total_ref_mod < 0) {
2470 struct btrfs_space_info *space_info;
2471 u64 flags;
2472
2473 if (head->is_data)
2474 flags = BTRFS_BLOCK_GROUP_DATA;
2475 else if (head->is_system)
2476 flags = BTRFS_BLOCK_GROUP_SYSTEM;
2477 else
2478 flags = BTRFS_BLOCK_GROUP_METADATA;
2479 space_info = __find_space_info(fs_info, flags);
2480 ASSERT(space_info);
2481 percpu_counter_add_batch(&space_info->total_bytes_pinned,
2482 -head->num_bytes,
2483 BTRFS_TOTAL_BYTES_PINNED_BATCH);
2484
Josef Bacikba2c4d42018-12-03 10:20:33 -05002485 /*
2486 * We had csum deletions accounted for in our delayed refs rsv,
2487 * we need to drop the csum leaves for this update from our
2488 * delayed_refs_rsv.
2489 */
Josef Bacik07c47772018-12-03 10:20:30 -05002490 if (head->is_data) {
2491 spin_lock(&delayed_refs->lock);
2492 delayed_refs->pending_csums -= head->num_bytes;
2493 spin_unlock(&delayed_refs->lock);
Josef Bacikba2c4d42018-12-03 10:20:33 -05002494 nr_items += btrfs_csum_bytes_to_leaves(fs_info,
2495 head->num_bytes);
Josef Bacik07c47772018-12-03 10:20:30 -05002496 }
2497 }
2498
Josef Bacikba2c4d42018-12-03 10:20:33 -05002499 btrfs_delayed_refs_rsv_release(fs_info, nr_items);
Josef Bacik07c47772018-12-03 10:20:30 -05002500}
2501
Josef Bacik194ab0b2017-09-29 15:43:54 -04002502static int cleanup_ref_head(struct btrfs_trans_handle *trans,
Josef Bacik194ab0b2017-09-29 15:43:54 -04002503 struct btrfs_delayed_ref_head *head)
2504{
Nikolay Borisovf9871ed2018-06-20 15:49:03 +03002505
2506 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacik194ab0b2017-09-29 15:43:54 -04002507 struct btrfs_delayed_ref_root *delayed_refs;
2508 int ret;
2509
2510 delayed_refs = &trans->transaction->delayed_refs;
2511
Josef Bacikbedc66172018-12-03 10:20:31 -05002512 ret = run_and_cleanup_extent_op(trans, head);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002513 if (ret < 0) {
2514 unselect_delayed_ref_head(delayed_refs, head);
2515 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
2516 return ret;
2517 } else if (ret) {
2518 return ret;
2519 }
2520
2521 /*
2522 * Need to drop our head ref lock and re-acquire the delayed ref lock
2523 * and then re-check to make sure nobody got added.
2524 */
2525 spin_unlock(&head->lock);
2526 spin_lock(&delayed_refs->lock);
2527 spin_lock(&head->lock);
Liu Boe3d03962018-08-23 03:51:50 +08002528 if (!RB_EMPTY_ROOT(&head->ref_tree.rb_root) || head->extent_op) {
Josef Bacik194ab0b2017-09-29 15:43:54 -04002529 spin_unlock(&head->lock);
2530 spin_unlock(&delayed_refs->lock);
2531 return 1;
2532 }
Josef Bacikd7baffd2018-12-03 10:20:29 -05002533 btrfs_delete_ref_head(delayed_refs, head);
Josef Bacikc1103f72017-09-29 15:43:56 -04002534 spin_unlock(&head->lock);
Nikolay Borisov1e7a1422018-04-11 11:21:18 +03002535 spin_unlock(&delayed_refs->lock);
Josef Bacikc1103f72017-09-29 15:43:56 -04002536
Josef Bacikc1103f72017-09-29 15:43:56 -04002537 if (head->must_insert_reserved) {
Josef Bacikd2788502017-09-29 15:43:57 -04002538 btrfs_pin_extent(fs_info, head->bytenr,
2539 head->num_bytes, 1);
Josef Bacikc1103f72017-09-29 15:43:56 -04002540 if (head->is_data) {
Josef Bacikd2788502017-09-29 15:43:57 -04002541 ret = btrfs_del_csums(trans, fs_info, head->bytenr,
2542 head->num_bytes);
Josef Bacikc1103f72017-09-29 15:43:56 -04002543 }
2544 }
2545
Josef Bacik31890da2018-11-21 14:05:41 -05002546 btrfs_cleanup_ref_head_accounting(fs_info, delayed_refs, head);
Josef Bacik07c47772018-12-03 10:20:30 -05002547
2548 trace_run_delayed_ref_head(fs_info, head, 0);
Josef Bacikc1103f72017-09-29 15:43:56 -04002549 btrfs_delayed_ref_unlock(head);
Josef Bacikd2788502017-09-29 15:43:57 -04002550 btrfs_put_delayed_ref_head(head);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002551 return 0;
2552}
2553
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002554static struct btrfs_delayed_ref_head *btrfs_obtain_ref_head(
2555 struct btrfs_trans_handle *trans)
2556{
2557 struct btrfs_delayed_ref_root *delayed_refs =
2558 &trans->transaction->delayed_refs;
2559 struct btrfs_delayed_ref_head *head = NULL;
2560 int ret;
2561
2562 spin_lock(&delayed_refs->lock);
Lu Fengqi5637c742018-10-11 13:40:33 +08002563 head = btrfs_select_ref_head(delayed_refs);
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002564 if (!head) {
2565 spin_unlock(&delayed_refs->lock);
2566 return head;
2567 }
2568
2569 /*
2570 * Grab the lock that says we are going to process all the refs for
2571 * this head
2572 */
Lu Fengqi9e920a62018-10-11 13:40:34 +08002573 ret = btrfs_delayed_ref_lock(delayed_refs, head);
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002574 spin_unlock(&delayed_refs->lock);
2575
2576 /*
2577 * We may have dropped the spin lock to get the head mutex lock, and
2578 * that might have given someone else time to free the head. If that's
2579 * true, it has been removed from our list and we can move on.
2580 */
2581 if (ret == -EAGAIN)
2582 head = ERR_PTR(-EAGAIN);
2583
2584 return head;
2585}
2586
Nikolay Borisove7261382018-08-15 10:39:55 +03002587static int btrfs_run_delayed_refs_for_head(struct btrfs_trans_handle *trans,
2588 struct btrfs_delayed_ref_head *locked_ref,
2589 unsigned long *run_refs)
2590{
2591 struct btrfs_fs_info *fs_info = trans->fs_info;
2592 struct btrfs_delayed_ref_root *delayed_refs;
2593 struct btrfs_delayed_extent_op *extent_op;
2594 struct btrfs_delayed_ref_node *ref;
2595 int must_insert_reserved = 0;
2596 int ret;
2597
2598 delayed_refs = &trans->transaction->delayed_refs;
2599
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002600 lockdep_assert_held(&locked_ref->mutex);
2601 lockdep_assert_held(&locked_ref->lock);
2602
Nikolay Borisove7261382018-08-15 10:39:55 +03002603 while ((ref = select_delayed_ref(locked_ref))) {
2604 if (ref->seq &&
2605 btrfs_check_delayed_seq(fs_info, ref->seq)) {
2606 spin_unlock(&locked_ref->lock);
2607 unselect_delayed_ref_head(delayed_refs, locked_ref);
2608 return -EAGAIN;
2609 }
2610
2611 (*run_refs)++;
2612 ref->in_tree = 0;
2613 rb_erase_cached(&ref->ref_node, &locked_ref->ref_tree);
2614 RB_CLEAR_NODE(&ref->ref_node);
2615 if (!list_empty(&ref->add_list))
2616 list_del(&ref->add_list);
2617 /*
2618 * When we play the delayed ref, also correct the ref_mod on
2619 * head
2620 */
2621 switch (ref->action) {
2622 case BTRFS_ADD_DELAYED_REF:
2623 case BTRFS_ADD_DELAYED_EXTENT:
2624 locked_ref->ref_mod -= ref->ref_mod;
2625 break;
2626 case BTRFS_DROP_DELAYED_REF:
2627 locked_ref->ref_mod += ref->ref_mod;
2628 break;
2629 default:
2630 WARN_ON(1);
2631 }
2632 atomic_dec(&delayed_refs->num_entries);
2633
2634 /*
2635 * Record the must_insert_reserved flag before we drop the
2636 * spin lock.
2637 */
2638 must_insert_reserved = locked_ref->must_insert_reserved;
2639 locked_ref->must_insert_reserved = 0;
2640
2641 extent_op = locked_ref->extent_op;
2642 locked_ref->extent_op = NULL;
2643 spin_unlock(&locked_ref->lock);
2644
2645 ret = run_one_delayed_ref(trans, ref, extent_op,
2646 must_insert_reserved);
2647
2648 btrfs_free_delayed_extent_op(extent_op);
2649 if (ret) {
2650 unselect_delayed_ref_head(delayed_refs, locked_ref);
2651 btrfs_put_delayed_ref(ref);
2652 btrfs_debug(fs_info, "run_one_delayed_ref returned %d",
2653 ret);
2654 return ret;
2655 }
2656
2657 btrfs_put_delayed_ref(ref);
2658 cond_resched();
2659
2660 spin_lock(&locked_ref->lock);
2661 btrfs_merge_delayed_refs(trans, delayed_refs, locked_ref);
2662 }
2663
2664 return 0;
2665}
2666
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002667/*
2668 * Returns 0 on success or if called with an already aborted transaction.
2669 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2670 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002671static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacikd7df2c72014-01-23 09:21:38 -05002672 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002673{
Nikolay Borisov0a1e4582018-03-15 16:00:27 +02002674 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason56bec292009-03-13 10:10:06 -04002675 struct btrfs_delayed_ref_root *delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002676 struct btrfs_delayed_ref_head *locked_ref = NULL;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002677 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002678 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002679 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002680 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002681
2682 delayed_refs = &trans->transaction->delayed_refs;
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002683 do {
Chris Mason56bec292009-03-13 10:10:06 -04002684 if (!locked_ref) {
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002685 locked_ref = btrfs_obtain_ref_head(trans);
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002686 if (IS_ERR_OR_NULL(locked_ref)) {
2687 if (PTR_ERR(locked_ref) == -EAGAIN) {
2688 continue;
2689 } else {
2690 break;
2691 }
Chris Mason56bec292009-03-13 10:10:06 -04002692 }
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002693 count++;
Chris Mason56bec292009-03-13 10:10:06 -04002694 }
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002695 /*
2696 * We need to try and merge add/drops of the same ref since we
2697 * can run into issues with relocate dropping the implicit ref
2698 * and then it being added back again before the drop can
2699 * finish. If we merged anything we need to re-loop so we can
2700 * get a good ref.
2701 * Or we can get node references of the same type that weren't
2702 * merged when created due to bumps in the tree mod seq, and
2703 * we need to merge them to prevent adding an inline extent
2704 * backref before dropping it (triggering a BUG_ON at
2705 * insert_inline_extent_backref()).
2706 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002707 spin_lock(&locked_ref->lock);
Nikolay Borisovbe97f132018-04-19 11:06:39 +03002708 btrfs_merge_delayed_refs(trans, delayed_refs, locked_ref);
Josef Bacikae1e2062012-08-07 16:00:32 -04002709
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002710 ret = btrfs_run_delayed_refs_for_head(trans, locked_ref,
2711 &actual_count);
2712 if (ret < 0 && ret != -EAGAIN) {
2713 /*
2714 * Error, btrfs_run_delayed_refs_for_head already
2715 * unlocked everything so just bail out
2716 */
2717 return ret;
2718 } else if (!ret) {
2719 /*
2720 * Success, perform the usual cleanup of a processed
2721 * head
2722 */
Nikolay Borisovf9871ed2018-06-20 15:49:03 +03002723 ret = cleanup_ref_head(trans, locked_ref);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002724 if (ret > 0 ) {
Josef Bacikb00e6252017-09-29 15:43:53 -04002725 /* We dropped our lock, we need to loop. */
2726 ret = 0;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002727 continue;
Josef Bacik194ab0b2017-09-29 15:43:54 -04002728 } else if (ret) {
2729 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002730 }
Josef Bacikc1103f72017-09-29 15:43:56 -04002731 }
Chris Mason56bec292009-03-13 10:10:06 -04002732
Josef Bacikb00e6252017-09-29 15:43:53 -04002733 /*
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002734 * Either success case or btrfs_run_delayed_refs_for_head
2735 * returned -EAGAIN, meaning we need to select another head
Josef Bacikb00e6252017-09-29 15:43:53 -04002736 */
Josef Bacikb00e6252017-09-29 15:43:53 -04002737
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002738 locked_ref = NULL;
Chris Mason1887be62009-03-13 10:11:24 -04002739 cond_resched();
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002740 } while ((nr != -1 && count < nr) || locked_ref);
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002741
2742 /*
2743 * We don't want to include ref heads since we can have empty ref heads
2744 * and those will drastically skew our runtime down since we just do
2745 * accounting, no actual extent tree updates.
2746 */
2747 if (actual_count > 0) {
2748 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2749 u64 avg;
2750
2751 /*
2752 * We weigh the current average higher than our current runtime
2753 * to avoid large swings in the average.
2754 */
2755 spin_lock(&delayed_refs->lock);
2756 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002757 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002758 spin_unlock(&delayed_refs->lock);
2759 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002760 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002761}
2762
Arne Jansen709c0482011-09-12 12:22:57 +02002763#ifdef SCRAMBLE_DELAYED_REFS
2764/*
2765 * Normally delayed refs get processed in ascending bytenr order. This
2766 * correlates in most cases to the order added. To expose dependencies on this
2767 * order, we start to process the tree in the middle instead of the beginning
2768 */
2769static u64 find_middle(struct rb_root *root)
2770{
2771 struct rb_node *n = root->rb_node;
2772 struct btrfs_delayed_ref_node *entry;
2773 int alt = 1;
2774 u64 middle;
2775 u64 first = 0, last = 0;
2776
2777 n = rb_first(root);
2778 if (n) {
2779 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2780 first = entry->bytenr;
2781 }
2782 n = rb_last(root);
2783 if (n) {
2784 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2785 last = entry->bytenr;
2786 }
2787 n = root->rb_node;
2788
2789 while (n) {
2790 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2791 WARN_ON(!entry->in_tree);
2792
2793 middle = entry->bytenr;
2794
2795 if (alt)
2796 n = n->rb_left;
2797 else
2798 n = n->rb_right;
2799
2800 alt = 1 - alt;
2801 }
2802 return middle;
2803}
2804#endif
2805
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002806static inline u64 heads_to_leaves(struct btrfs_fs_info *fs_info, u64 heads)
Josef Bacik1be41b72013-06-12 13:56:06 -04002807{
2808 u64 num_bytes;
2809
2810 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2811 sizeof(struct btrfs_extent_inline_ref));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002812 if (!btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik1be41b72013-06-12 13:56:06 -04002813 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2814
2815 /*
2816 * 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 -04002817 * closer to what we're really going to want to use.
Josef Bacik1be41b72013-06-12 13:56:06 -04002818 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002819 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(fs_info));
Josef Bacik1be41b72013-06-12 13:56:06 -04002820}
2821
Josef Bacik12621332015-02-03 07:50:16 -08002822/*
2823 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2824 * would require to store the csums for that many bytes.
2825 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002826u64 btrfs_csum_bytes_to_leaves(struct btrfs_fs_info *fs_info, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002827{
2828 u64 csum_size;
2829 u64 num_csums_per_leaf;
2830 u64 num_csums;
2831
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002832 csum_size = BTRFS_MAX_ITEM_SIZE(fs_info);
Josef Bacik12621332015-02-03 07:50:16 -08002833 num_csums_per_leaf = div64_u64(csum_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002834 (u64)btrfs_super_csum_size(fs_info->super_copy));
2835 num_csums = div64_u64(csum_bytes, fs_info->sectorsize);
Josef Bacik12621332015-02-03 07:50:16 -08002836 num_csums += num_csums_per_leaf - 1;
2837 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2838 return num_csums;
2839}
2840
Josef Bacik644036122018-12-03 10:20:36 -05002841bool btrfs_check_space_for_delayed_refs(struct btrfs_fs_info *fs_info)
Josef Bacik1be41b72013-06-12 13:56:06 -04002842{
Josef Bacik644036122018-12-03 10:20:36 -05002843 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
2844 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
2845 bool ret = false;
2846 u64 reserved;
Josef Bacik1be41b72013-06-12 13:56:06 -04002847
2848 spin_lock(&global_rsv->lock);
Josef Bacik644036122018-12-03 10:20:36 -05002849 reserved = global_rsv->reserved;
Josef Bacik1be41b72013-06-12 13:56:06 -04002850 spin_unlock(&global_rsv->lock);
Josef Bacik644036122018-12-03 10:20:36 -05002851
2852 /*
2853 * Since the global reserve is just kind of magic we don't really want
2854 * to rely on it to save our bacon, so if our size is more than the
2855 * delayed_refs_rsv and the global rsv then it's time to think about
2856 * bailing.
2857 */
2858 spin_lock(&delayed_refs_rsv->lock);
2859 reserved += delayed_refs_rsv->reserved;
2860 if (delayed_refs_rsv->size >= reserved)
2861 ret = true;
2862 spin_unlock(&delayed_refs_rsv->lock);
Josef Bacik1be41b72013-06-12 13:56:06 -04002863 return ret;
2864}
2865
Lu Fengqi7c861622018-10-11 13:40:36 +08002866int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002867{
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002868 u64 num_entries =
2869 atomic_read(&trans->transaction->delayed_refs.num_entries);
2870 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002871 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002872
2873 smp_mb();
Lu Fengqi7c861622018-10-11 13:40:36 +08002874 avg_runtime = trans->fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002875 val = num_entries * avg_runtime;
Wang Xiaoguangdc1a90c2016-10-26 15:23:01 +08002876 if (val >= NSEC_PER_SEC)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002877 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002878 if (val >= NSEC_PER_SEC / 2)
2879 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002880
Josef Bacik644036122018-12-03 10:20:36 -05002881 return btrfs_check_space_for_delayed_refs(trans->fs_info);
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002882}
2883
Chris Masonc3e69d52009-03-13 10:17:05 -04002884/*
2885 * this starts processing the delayed reference count updates and
2886 * extent insertions we have queued up so far. count can be
2887 * 0, which means to process everything in the tree at the start
2888 * of the run (but not newly added entries), or it can be some target
2889 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002890 *
2891 * Returns 0 on success or if called with an aborted transaction
2892 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002893 */
2894int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02002895 unsigned long count)
Chris Masonc3e69d52009-03-13 10:17:05 -04002896{
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02002897 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -04002898 struct rb_node *node;
2899 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002900 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002901 int ret;
2902 int run_all = count == (unsigned long)-1;
Chris Masonc3e69d52009-03-13 10:17:05 -04002903
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002904 /* We'll clean this up in btrfs_cleanup_transaction */
2905 if (trans->aborted)
2906 return 0;
2907
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002908 if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags))
Chris Mason511711a2015-12-30 07:52:35 -08002909 return 0;
2910
Chris Masonc3e69d52009-03-13 10:17:05 -04002911 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08002912 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05002913 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05002914
Chris Masonc3e69d52009-03-13 10:17:05 -04002915again:
Arne Jansen709c0482011-09-12 12:22:57 +02002916#ifdef SCRAMBLE_DELAYED_REFS
2917 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
2918#endif
Nikolay Borisov0a1e4582018-03-15 16:00:27 +02002919 ret = __btrfs_run_delayed_refs(trans, count);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002920 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04002921 btrfs_abort_transaction(trans, ret);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002922 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04002923 }
2924
Chris Mason56bec292009-03-13 10:10:06 -04002925 if (run_all) {
Josef Bacik119e80d2018-11-21 14:05:42 -05002926 btrfs_create_pending_block_groups(trans);
Josef Bacikea658ba2012-09-11 16:57:25 -04002927
Josef Bacikd7df2c72014-01-23 09:21:38 -05002928 spin_lock(&delayed_refs->lock);
Liu Bo5c9d0282018-08-23 03:51:49 +08002929 node = rb_first_cached(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002930 if (!node) {
2931 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002932 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002933 }
Josef Bacikd2788502017-09-29 15:43:57 -04002934 head = rb_entry(node, struct btrfs_delayed_ref_head,
2935 href_node);
2936 refcount_inc(&head->refs);
Chris Mason56bec292009-03-13 10:10:06 -04002937 spin_unlock(&delayed_refs->lock);
Josef Bacikd2788502017-09-29 15:43:57 -04002938
2939 /* Mutex was contended, block until it's released and retry. */
2940 mutex_lock(&head->mutex);
2941 mutex_unlock(&head->mutex);
2942
2943 btrfs_put_delayed_ref_head(head);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002944 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002945 goto again;
2946 }
Chris Mason54aa1f42007-06-22 14:16:25 -04002947out:
Chris Masona28ec192007-03-06 20:08:01 -05002948 return 0;
2949}
2950
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002951int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002952 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04002953 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002954{
2955 struct btrfs_delayed_extent_op *extent_op;
2956 int ret;
2957
Miao Xie78a61842012-11-21 02:21:28 +00002958 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002959 if (!extent_op)
2960 return -ENOMEM;
2961
2962 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01002963 extent_op->update_flags = true;
2964 extent_op->update_key = false;
2965 extent_op->is_data = is_data ? true : false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002966 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002967
David Sterbac6e340b2019-03-20 11:42:34 +01002968 ret = btrfs_add_delayed_extent_op(trans, bytenr, num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002969 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00002970 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002971 return ret;
2972}
2973
Liu Boe4c3b2d2017-01-30 12:25:28 -08002974static noinline int check_delayed_ref(struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002975 struct btrfs_path *path,
2976 u64 objectid, u64 offset, u64 bytenr)
2977{
2978 struct btrfs_delayed_ref_head *head;
2979 struct btrfs_delayed_ref_node *ref;
2980 struct btrfs_delayed_data_ref *data_ref;
2981 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boe4c3b2d2017-01-30 12:25:28 -08002982 struct btrfs_transaction *cur_trans;
Josef Bacik0e0adbc2017-10-19 14:16:00 -04002983 struct rb_node *node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002984 int ret = 0;
2985
ethanwu998ac6d2018-04-29 15:59:42 +08002986 spin_lock(&root->fs_info->trans_lock);
Liu Boe4c3b2d2017-01-30 12:25:28 -08002987 cur_trans = root->fs_info->running_transaction;
ethanwu998ac6d2018-04-29 15:59:42 +08002988 if (cur_trans)
2989 refcount_inc(&cur_trans->use_count);
2990 spin_unlock(&root->fs_info->trans_lock);
Liu Boe4c3b2d2017-01-30 12:25:28 -08002991 if (!cur_trans)
2992 return 0;
2993
2994 delayed_refs = &cur_trans->delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002995 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08002996 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002997 if (!head) {
2998 spin_unlock(&delayed_refs->lock);
ethanwu998ac6d2018-04-29 15:59:42 +08002999 btrfs_put_transaction(cur_trans);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003000 return 0;
3001 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003002
3003 if (!mutex_trylock(&head->mutex)) {
Josef Bacikd2788502017-09-29 15:43:57 -04003004 refcount_inc(&head->refs);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003005 spin_unlock(&delayed_refs->lock);
3006
David Sterbab3b4aa72011-04-21 01:20:15 +02003007 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003008
David Sterba8cc33e52011-05-02 15:29:25 +02003009 /*
3010 * Mutex was contended, block until it's released and let
3011 * caller try again
3012 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003013 mutex_lock(&head->mutex);
3014 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -04003015 btrfs_put_delayed_ref_head(head);
ethanwu998ac6d2018-04-29 15:59:42 +08003016 btrfs_put_transaction(cur_trans);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003017 return -EAGAIN;
3018 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003019 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003020
3021 spin_lock(&head->lock);
Josef Bacik0e0adbc2017-10-19 14:16:00 -04003022 /*
3023 * XXX: We should replace this with a proper search function in the
3024 * future.
3025 */
Liu Boe3d03962018-08-23 03:51:50 +08003026 for (node = rb_first_cached(&head->ref_tree); node;
3027 node = rb_next(node)) {
Josef Bacik0e0adbc2017-10-19 14:16:00 -04003028 ref = rb_entry(node, struct btrfs_delayed_ref_node, ref_node);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003029 /* If it's a shared ref we know a cross reference exists */
3030 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
3031 ret = 1;
3032 break;
3033 }
3034
3035 data_ref = btrfs_delayed_node_to_data_ref(ref);
3036
3037 /*
3038 * If our ref doesn't match the one we're currently looking at
3039 * then we have a cross reference.
3040 */
3041 if (data_ref->root != root->root_key.objectid ||
3042 data_ref->objectid != objectid ||
3043 data_ref->offset != offset) {
3044 ret = 1;
3045 break;
3046 }
3047 }
3048 spin_unlock(&head->lock);
3049 mutex_unlock(&head->mutex);
ethanwu998ac6d2018-04-29 15:59:42 +08003050 btrfs_put_transaction(cur_trans);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003051 return ret;
3052}
3053
Liu Boe4c3b2d2017-01-30 12:25:28 -08003054static noinline int check_committed_ref(struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003055 struct btrfs_path *path,
3056 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05003057{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003058 struct btrfs_fs_info *fs_info = root->fs_info;
3059 struct btrfs_root *extent_root = fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04003060 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003061 struct btrfs_extent_data_ref *ref;
3062 struct btrfs_extent_inline_ref *iref;
3063 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05003064 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003065 u32 item_size;
Liu Bo3de28d52017-08-18 15:15:19 -06003066 int type;
Yan Zhengf321e492008-07-30 09:26:11 -04003067 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05003068
Chris Masonbe20aa92007-12-17 20:14:01 -05003069 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04003070 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04003071 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05003072
Chris Masonbe20aa92007-12-17 20:14:01 -05003073 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3074 if (ret < 0)
3075 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003076 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04003077
3078 ret = -ENOENT;
3079 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04003080 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003081
Zheng Yan31840ae2008-09-23 13:14:14 -04003082 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04003083 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003084 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05003085
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003086 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05003087 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003088
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003089 ret = 1;
3090 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003091 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
3092
3093 if (item_size != sizeof(*ei) +
3094 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
3095 goto out;
3096
3097 if (btrfs_extent_generation(leaf, ei) <=
3098 btrfs_root_last_snapshot(&root->root_item))
3099 goto out;
3100
3101 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
Liu Bo3de28d52017-08-18 15:15:19 -06003102
3103 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
3104 if (type != BTRFS_EXTENT_DATA_REF_KEY)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003105 goto out;
3106
3107 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
3108 if (btrfs_extent_refs(leaf, ei) !=
3109 btrfs_extent_data_ref_count(leaf, ref) ||
3110 btrfs_extent_data_ref_root(leaf, ref) !=
3111 root->root_key.objectid ||
3112 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3113 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3114 goto out;
3115
Yan Zhengf321e492008-07-30 09:26:11 -04003116 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003117out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003118 return ret;
3119}
3120
Liu Boe4c3b2d2017-01-30 12:25:28 -08003121int btrfs_cross_ref_exist(struct btrfs_root *root, u64 objectid, u64 offset,
3122 u64 bytenr)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003123{
3124 struct btrfs_path *path;
3125 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003126
3127 path = btrfs_alloc_path();
3128 if (!path)
Su Yue9132c4f2018-05-30 14:49:10 +08003129 return -ENOMEM;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003130
3131 do {
Liu Boe4c3b2d2017-01-30 12:25:28 -08003132 ret = check_committed_ref(root, path, objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003133 offset, bytenr);
3134 if (ret && ret != -ENOENT)
3135 goto out;
3136
Misono Tomohiro380fd062018-08-30 10:59:16 +09003137 ret = check_delayed_ref(root, path, objectid, offset, bytenr);
3138 } while (ret == -EAGAIN);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003139
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003140out:
Yan Zhengf321e492008-07-30 09:26:11 -04003141 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003142 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3143 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003144 return ret;
3145}
3146
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003147static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003148 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003149 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003150 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003151{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003152 struct btrfs_fs_info *fs_info = root->fs_info;
Zheng Yan31840ae2008-09-23 13:14:14 -04003153 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003154 u64 num_bytes;
3155 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003156 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003157 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003158 struct btrfs_key key;
3159 struct btrfs_file_extent_item *fi;
Qu Wenruo82fa1132019-04-04 14:45:35 +08003160 struct btrfs_ref generic_ref = { 0 };
3161 bool for_reloc = btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC);
Zheng Yan31840ae2008-09-23 13:14:14 -04003162 int i;
Qu Wenruo82fa1132019-04-04 14:45:35 +08003163 int action;
Zheng Yan31840ae2008-09-23 13:14:14 -04003164 int level;
3165 int ret = 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003166
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003167 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003168 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003169
Zheng Yan31840ae2008-09-23 13:14:14 -04003170 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003171 nritems = btrfs_header_nritems(buf);
3172 level = btrfs_header_level(buf);
3173
Miao Xie27cdeb72014-04-02 19:51:05 +08003174 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003175 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003176
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003177 if (full_backref)
3178 parent = buf->start;
3179 else
3180 parent = 0;
Qu Wenruo82fa1132019-04-04 14:45:35 +08003181 if (inc)
3182 action = BTRFS_ADD_DELAYED_REF;
3183 else
3184 action = BTRFS_DROP_DELAYED_REF;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003185
Zheng Yan31840ae2008-09-23 13:14:14 -04003186 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003187 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003188 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003189 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003190 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003191 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003192 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003193 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003194 BTRFS_FILE_EXTENT_INLINE)
3195 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003196 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3197 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003198 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003199
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003200 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3201 key.offset -= btrfs_file_extent_offset(buf, fi);
Qu Wenruo82fa1132019-04-04 14:45:35 +08003202 btrfs_init_generic_ref(&generic_ref, action, bytenr,
3203 num_bytes, parent);
3204 generic_ref.real_root = root->root_key.objectid;
3205 btrfs_init_data_ref(&generic_ref, ref_root, key.objectid,
3206 key.offset);
3207 generic_ref.skip_qgroup = for_reloc;
Qu Wenruodd28b6a2019-04-04 14:45:30 +08003208 if (inc)
Qu Wenruo82fa1132019-04-04 14:45:35 +08003209 ret = btrfs_inc_extent_ref(trans, &generic_ref);
Qu Wenruodd28b6a2019-04-04 14:45:30 +08003210 else
Qu Wenruoffd4bb22019-04-04 14:45:36 +08003211 ret = btrfs_free_extent(trans, &generic_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003212 if (ret)
3213 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003214 } else {
3215 bytenr = btrfs_node_blockptr(buf, i);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003216 num_bytes = fs_info->nodesize;
Qu Wenruo82fa1132019-04-04 14:45:35 +08003217 btrfs_init_generic_ref(&generic_ref, action, bytenr,
3218 num_bytes, parent);
3219 generic_ref.real_root = root->root_key.objectid;
3220 btrfs_init_tree_ref(&generic_ref, level - 1, ref_root);
3221 generic_ref.skip_qgroup = for_reloc;
Qu Wenruodd28b6a2019-04-04 14:45:30 +08003222 if (inc)
Qu Wenruo82fa1132019-04-04 14:45:35 +08003223 ret = btrfs_inc_extent_ref(trans, &generic_ref);
Qu Wenruodd28b6a2019-04-04 14:45:30 +08003224 else
Qu Wenruoffd4bb22019-04-04 14:45:36 +08003225 ret = btrfs_free_extent(trans, &generic_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003226 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003227 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003228 }
3229 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003230 return 0;
3231fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003232 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003233}
3234
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003235int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003236 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003237{
Josef Bacike339a6b2014-07-02 10:54:25 -07003238 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003239}
Zheng Yan31840ae2008-09-23 13:14:14 -04003240
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003241int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003242 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003243{
Josef Bacike339a6b2014-07-02 10:54:25 -07003244 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003245}
3246
Chris Mason9078a3e2007-04-26 16:46:15 -04003247static int write_one_cache_group(struct btrfs_trans_handle *trans,
Chris Mason9078a3e2007-04-26 16:46:15 -04003248 struct btrfs_path *path,
3249 struct btrfs_block_group_cache *cache)
3250{
David Sterba39db2322019-03-20 11:57:46 +01003251 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason9078a3e2007-04-26 16:46:15 -04003252 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003253 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003254 unsigned long bi;
3255 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003256
Chris Mason9078a3e2007-04-26 16:46:15 -04003257 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003258 if (ret) {
3259 if (ret > 0)
3260 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003261 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003262 }
Chris Mason5f39d392007-10-15 16:14:19 -04003263
3264 leaf = path->nodes[0];
3265 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3266 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3267 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003268fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003269 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003270 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003271
3272}
3273
David Sterbaf87b7eb2019-03-20 12:01:07 +01003274static struct btrfs_block_group_cache *next_block_group(
3275 struct btrfs_block_group_cache *cache)
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003276{
David Sterbaf87b7eb2019-03-20 12:01:07 +01003277 struct btrfs_fs_info *fs_info = cache->fs_info;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003278 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003279
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003280 spin_lock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003281
3282 /* If our block group was removed, we need a full search. */
3283 if (RB_EMPTY_NODE(&cache->cache_node)) {
3284 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3285
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003286 spin_unlock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003287 btrfs_put_block_group(cache);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003288 cache = btrfs_lookup_first_block_group(fs_info, next_bytenr); return cache;
Filipe Manana292cbd52014-11-26 15:28:50 +00003289 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003290 node = rb_next(&cache->cache_node);
3291 btrfs_put_block_group(cache);
3292 if (node) {
3293 cache = rb_entry(node, struct btrfs_block_group_cache,
3294 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003295 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003296 } else
3297 cache = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003298 spin_unlock(&fs_info->block_group_cache_lock);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003299 return cache;
3300}
3301
Josef Bacik0af3d002010-06-21 14:48:16 -04003302static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3303 struct btrfs_trans_handle *trans,
3304 struct btrfs_path *path)
3305{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003306 struct btrfs_fs_info *fs_info = block_group->fs_info;
3307 struct btrfs_root *root = fs_info->tree_root;
Josef Bacik0af3d002010-06-21 14:48:16 -04003308 struct inode *inode = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003309 struct extent_changeset *data_reserved = NULL;
Josef Bacik0af3d002010-06-21 14:48:16 -04003310 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003311 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003312 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003313 int retries = 0;
3314 int ret = 0;
3315
3316 /*
3317 * If this block group is smaller than 100 megs don't bother caching the
3318 * block group.
3319 */
Byongho Leeee221842015-12-15 01:42:10 +09003320 if (block_group->key.offset < (100 * SZ_1M)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003321 spin_lock(&block_group->lock);
3322 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3323 spin_unlock(&block_group->lock);
3324 return 0;
3325 }
3326
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003327 if (trans->aborted)
3328 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003329again:
David Sterba7949f332019-03-20 13:40:19 +01003330 inode = lookup_free_space_inode(block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003331 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3332 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003333 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003334 goto out;
3335 }
3336
3337 if (IS_ERR(inode)) {
3338 BUG_ON(retries);
3339 retries++;
3340
3341 if (block_group->ro)
3342 goto out_free;
3343
David Sterba4ca75f12019-03-20 13:42:57 +01003344 ret = create_free_space_inode(trans, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003345 if (ret)
3346 goto out_free;
3347 goto again;
3348 }
3349
3350 /*
3351 * We want to set the generation to 0, that way if anything goes wrong
3352 * from here on out we know not to trust this cache when we load up next
3353 * time.
3354 */
3355 BTRFS_I(inode)->generation = 0;
3356 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003357 if (ret) {
3358 /*
3359 * So theoretically we could recover from this, simply set the
3360 * super cache generation to 0 so we know to invalidate the
3361 * cache, but then we'd have to keep track of the block groups
3362 * that fail this way so we know we _have_ to reset this cache
3363 * before the next commit or risk reading stale cache. So to
3364 * limit our exposure to horrible edge cases lets just abort the
3365 * transaction, this only happens in really bad situations
3366 * anyway.
3367 */
Jeff Mahoney66642832016-06-10 18:19:25 -04003368 btrfs_abort_transaction(trans, ret);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003369 goto out_put;
3370 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003371 WARN_ON(ret);
3372
Josef Bacik8e138e02017-11-17 14:50:46 -05003373 /* We've already setup this transaction, go ahead and exit */
3374 if (block_group->cache_generation == trans->transid &&
3375 i_size_read(inode)) {
3376 dcs = BTRFS_DC_SETUP;
3377 goto out_put;
3378 }
3379
Josef Bacik0af3d002010-06-21 14:48:16 -04003380 if (i_size_read(inode) > 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003381 ret = btrfs_check_trunc_cache_free_space(fs_info,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003382 &fs_info->global_block_rsv);
Miao Xie7b61cd92013-05-13 13:55:09 +00003383 if (ret)
3384 goto out_put;
3385
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003386 ret = btrfs_truncate_free_space_cache(trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003387 if (ret)
3388 goto out_put;
3389 }
3390
3391 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003392 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003393 !btrfs_test_opt(fs_info, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003394 /*
3395 * don't bother trying to write stuff out _if_
3396 * a) we're not cached,
Liu Bo1a79c1f2017-03-06 13:49:02 -08003397 * b) we're with nospace_cache mount option,
3398 * c) we're with v2 space_cache (FREE_SPACE_TREE).
Liu Bocf7c1ef2012-07-06 03:31:34 -06003399 */
Josef Bacik2b209822010-12-03 13:17:53 -05003400 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003401 spin_unlock(&block_group->lock);
3402 goto out_put;
3403 }
3404 spin_unlock(&block_group->lock);
3405
Josef Bacik6fc823b2012-08-06 13:46:38 -06003406 /*
Josef Bacik2968b1f2015-10-01 12:55:18 -04003407 * We hit an ENOSPC when setting up the cache in this transaction, just
3408 * skip doing the setup, we've already cleared the cache so we're safe.
3409 */
3410 if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
3411 ret = -ENOSPC;
3412 goto out_put;
3413 }
3414
3415 /*
Josef Bacik6fc823b2012-08-06 13:46:38 -06003416 * Try to preallocate enough space based on how big the block group is.
3417 * Keep in mind this has to include any pinned space which could end up
3418 * taking up quite a bit since it's not folded into the other space
3419 * cache.
3420 */
Byongho Leeee221842015-12-15 01:42:10 +09003421 num_pages = div_u64(block_group->key.offset, SZ_256M);
Josef Bacik0af3d002010-06-21 14:48:16 -04003422 if (!num_pages)
3423 num_pages = 1;
3424
Josef Bacik0af3d002010-06-21 14:48:16 -04003425 num_pages *= 16;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003426 num_pages *= PAGE_SIZE;
Josef Bacik0af3d002010-06-21 14:48:16 -04003427
Qu Wenruo364ecf32017-02-27 15:10:38 +08003428 ret = btrfs_check_data_free_space(inode, &data_reserved, 0, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003429 if (ret)
3430 goto out_put;
3431
3432 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3433 num_pages, num_pages,
3434 &alloc_hint);
Josef Bacik2968b1f2015-10-01 12:55:18 -04003435 /*
3436 * Our cache requires contiguous chunks so that we don't modify a bunch
3437 * of metadata or split extents when writing the cache out, which means
3438 * we can enospc if we are heavily fragmented in addition to just normal
3439 * out of space conditions. So if we hit this just skip setting up any
3440 * other block groups for this transaction, maybe we'll unpin enough
3441 * space the next time around.
3442 */
Josef Bacik2b209822010-12-03 13:17:53 -05003443 if (!ret)
3444 dcs = BTRFS_DC_SETUP;
Josef Bacik2968b1f2015-10-01 12:55:18 -04003445 else if (ret == -ENOSPC)
3446 set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
Josef Bacikc09544e2011-08-30 10:19:10 -04003447
Josef Bacik0af3d002010-06-21 14:48:16 -04003448out_put:
3449 iput(inode);
3450out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003451 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003452out:
3453 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003454 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003455 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003456 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003457 spin_unlock(&block_group->lock);
3458
Qu Wenruo364ecf32017-02-27 15:10:38 +08003459 extent_changeset_free(data_reserved);
Josef Bacik0af3d002010-06-21 14:48:16 -04003460 return ret;
3461}
3462
David Sterbabbebb3e2019-03-20 12:02:55 +01003463int btrfs_setup_space_cache(struct btrfs_trans_handle *trans)
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003464{
David Sterbabbebb3e2019-03-20 12:02:55 +01003465 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003466 struct btrfs_block_group_cache *cache, *tmp;
3467 struct btrfs_transaction *cur_trans = trans->transaction;
3468 struct btrfs_path *path;
3469
3470 if (list_empty(&cur_trans->dirty_bgs) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003471 !btrfs_test_opt(fs_info, SPACE_CACHE))
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003472 return 0;
3473
3474 path = btrfs_alloc_path();
3475 if (!path)
3476 return -ENOMEM;
3477
3478 /* Could add new block groups, use _safe just in case */
3479 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3480 dirty_list) {
3481 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3482 cache_save_setup(cache, trans, path);
3483 }
3484
3485 btrfs_free_path(path);
3486 return 0;
3487}
3488
Chris Mason1bbc6212015-04-06 12:46:08 -07003489/*
3490 * transaction commit does final block group cache writeback during a
3491 * critical section where nothing is allowed to change the FS. This is
3492 * required in order for the cache to actually match the block group,
3493 * but can introduce a lot of latency into the commit.
3494 *
3495 * So, btrfs_start_dirty_block_groups is here to kick off block group
3496 * cache IO. There's a chance we'll have to redo some of it if the
3497 * block group changes again during the commit, but it greatly reduces
3498 * the commit latency by getting rid of the easy block groups while
3499 * we're still allowing others to join the commit.
3500 */
Nikolay Borisov21217052018-02-07 17:55:41 +02003501int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans)
Chris Mason1bbc6212015-04-06 12:46:08 -07003502{
Nikolay Borisov21217052018-02-07 17:55:41 +02003503 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason1bbc6212015-04-06 12:46:08 -07003504 struct btrfs_block_group_cache *cache;
3505 struct btrfs_transaction *cur_trans = trans->transaction;
3506 int ret = 0;
3507 int should_put;
3508 struct btrfs_path *path = NULL;
3509 LIST_HEAD(dirty);
3510 struct list_head *io = &cur_trans->io_bgs;
3511 int num_started = 0;
3512 int loops = 0;
3513
3514 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003515 if (list_empty(&cur_trans->dirty_bgs)) {
3516 spin_unlock(&cur_trans->dirty_bgs_lock);
3517 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003518 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003519 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003520 spin_unlock(&cur_trans->dirty_bgs_lock);
3521
3522again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003523 /*
3524 * make sure all the block groups on our dirty list actually
3525 * exist
3526 */
Nikolay Borisov6c686b32018-02-07 17:55:40 +02003527 btrfs_create_pending_block_groups(trans);
Chris Mason1bbc6212015-04-06 12:46:08 -07003528
3529 if (!path) {
3530 path = btrfs_alloc_path();
3531 if (!path)
3532 return -ENOMEM;
3533 }
3534
Filipe Mananab58d1a92015-04-25 18:29:16 +01003535 /*
3536 * cache_write_mutex is here only to save us from balance or automatic
3537 * removal of empty block groups deleting this block group while we are
3538 * writing out the cache
3539 */
3540 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003541 while (!list_empty(&dirty)) {
Josef Bacikba2c4d42018-12-03 10:20:33 -05003542 bool drop_reserve = true;
3543
Chris Mason1bbc6212015-04-06 12:46:08 -07003544 cache = list_first_entry(&dirty,
3545 struct btrfs_block_group_cache,
3546 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003547 /*
3548 * this can happen if something re-dirties a block
3549 * group that is already under IO. Just wait for it to
3550 * finish and then do it all again
3551 */
3552 if (!list_empty(&cache->io_list)) {
3553 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003554 btrfs_wait_cache_io(trans, cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003555 btrfs_put_block_group(cache);
3556 }
3557
3558
3559 /*
3560 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3561 * if it should update the cache_state. Don't delete
3562 * until after we wait.
3563 *
3564 * Since we're not running in the commit critical section
3565 * we need the dirty_bgs_lock to protect from update_block_group
3566 */
3567 spin_lock(&cur_trans->dirty_bgs_lock);
3568 list_del_init(&cache->dirty_list);
3569 spin_unlock(&cur_trans->dirty_bgs_lock);
3570
3571 should_put = 1;
3572
3573 cache_save_setup(cache, trans, path);
3574
3575 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3576 cache->io_ctl.inode = NULL;
David Sterbafe041532019-03-20 13:51:56 +01003577 ret = btrfs_write_out_cache(trans, cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003578 if (ret == 0 && cache->io_ctl.inode) {
3579 num_started++;
3580 should_put = 0;
3581
3582 /*
Nikolay Borisov45ae2c12018-02-08 18:25:18 +02003583 * The cache_write_mutex is protecting the
3584 * io_list, also refer to the definition of
3585 * btrfs_transaction::io_bgs for more details
Chris Mason1bbc6212015-04-06 12:46:08 -07003586 */
3587 list_add_tail(&cache->io_list, io);
3588 } else {
3589 /*
3590 * if we failed to write the cache, the
3591 * generation will be bad and life goes on
3592 */
3593 ret = 0;
3594 }
3595 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003596 if (!ret) {
David Sterba39db2322019-03-20 11:57:46 +01003597 ret = write_one_cache_group(trans, path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003598 /*
3599 * Our block group might still be attached to the list
3600 * of new block groups in the transaction handle of some
3601 * other task (struct btrfs_trans_handle->new_bgs). This
3602 * means its block group item isn't yet in the extent
3603 * tree. If this happens ignore the error, as we will
3604 * try again later in the critical section of the
3605 * transaction commit.
3606 */
3607 if (ret == -ENOENT) {
3608 ret = 0;
3609 spin_lock(&cur_trans->dirty_bgs_lock);
3610 if (list_empty(&cache->dirty_list)) {
3611 list_add_tail(&cache->dirty_list,
3612 &cur_trans->dirty_bgs);
3613 btrfs_get_block_group(cache);
Josef Bacikba2c4d42018-12-03 10:20:33 -05003614 drop_reserve = false;
Filipe Mananaff1f8252015-05-06 16:15:09 +01003615 }
3616 spin_unlock(&cur_trans->dirty_bgs_lock);
3617 } else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003618 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003619 }
3620 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003621
Andrea Gelmini52042d82018-11-28 12:05:13 +01003622 /* if it's not on the io list, we need to put the block group */
Chris Mason1bbc6212015-04-06 12:46:08 -07003623 if (should_put)
3624 btrfs_put_block_group(cache);
Josef Bacikba2c4d42018-12-03 10:20:33 -05003625 if (drop_reserve)
3626 btrfs_delayed_refs_rsv_release(fs_info, 1);
Chris Mason1bbc6212015-04-06 12:46:08 -07003627
3628 if (ret)
3629 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003630
3631 /*
3632 * Avoid blocking other tasks for too long. It might even save
3633 * us from writing caches for block groups that are going to be
3634 * removed.
3635 */
3636 mutex_unlock(&trans->transaction->cache_write_mutex);
3637 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003638 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003639 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003640
3641 /*
3642 * go through delayed refs for all the stuff we've just kicked off
3643 * and then loop back (just once)
3644 */
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02003645 ret = btrfs_run_delayed_refs(trans, 0);
Chris Mason1bbc6212015-04-06 12:46:08 -07003646 if (!ret && loops == 0) {
3647 loops++;
3648 spin_lock(&cur_trans->dirty_bgs_lock);
3649 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003650 /*
3651 * dirty_bgs_lock protects us from concurrent block group
3652 * deletes too (not just cache_write_mutex).
3653 */
3654 if (!list_empty(&dirty)) {
3655 spin_unlock(&cur_trans->dirty_bgs_lock);
3656 goto again;
3657 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003658 spin_unlock(&cur_trans->dirty_bgs_lock);
Liu Boc79a1752016-07-20 17:44:12 -07003659 } else if (ret < 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003660 btrfs_cleanup_dirty_bgs(cur_trans, fs_info);
Chris Mason1bbc6212015-04-06 12:46:08 -07003661 }
3662
3663 btrfs_free_path(path);
3664 return ret;
3665}
3666
David Sterba5742d152019-03-20 12:04:08 +01003667int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans)
Chris Mason9078a3e2007-04-26 16:46:15 -04003668{
David Sterba5742d152019-03-20 12:04:08 +01003669 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003670 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003671 struct btrfs_transaction *cur_trans = trans->transaction;
3672 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003673 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003674 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003675 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003676 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003677
3678 path = btrfs_alloc_path();
3679 if (!path)
3680 return -ENOMEM;
3681
Josef Bacikce93ec52014-11-17 15:45:48 -05003682 /*
Filipe Mananae44081e2015-12-18 03:02:48 +00003683 * Even though we are in the critical section of the transaction commit,
3684 * we can still have concurrent tasks adding elements to this
3685 * transaction's list of dirty block groups. These tasks correspond to
3686 * endio free space workers started when writeback finishes for a
3687 * space cache, which run inode.c:btrfs_finish_ordered_io(), and can
3688 * allocate new block groups as a result of COWing nodes of the root
3689 * tree when updating the free space inode. The writeback for the space
3690 * caches is triggered by an earlier call to
3691 * btrfs_start_dirty_block_groups() and iterations of the following
3692 * loop.
3693 * Also we want to do the cache_save_setup first and then run the
Josef Bacikce93ec52014-11-17 15:45:48 -05003694 * delayed refs to make sure we have the best chance at doing this all
3695 * in one shot.
3696 */
Filipe Mananae44081e2015-12-18 03:02:48 +00003697 spin_lock(&cur_trans->dirty_bgs_lock);
Josef Bacikce93ec52014-11-17 15:45:48 -05003698 while (!list_empty(&cur_trans->dirty_bgs)) {
3699 cache = list_first_entry(&cur_trans->dirty_bgs,
3700 struct btrfs_block_group_cache,
3701 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003702
3703 /*
3704 * this can happen if cache_save_setup re-dirties a block
3705 * group that is already under IO. Just wait for it to
3706 * finish and then do it all again
3707 */
3708 if (!list_empty(&cache->io_list)) {
Filipe Mananae44081e2015-12-18 03:02:48 +00003709 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003710 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003711 btrfs_wait_cache_io(trans, cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003712 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003713 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003714 }
3715
Chris Mason1bbc6212015-04-06 12:46:08 -07003716 /*
3717 * don't remove from the dirty list until after we've waited
3718 * on any pending IO
3719 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003720 list_del_init(&cache->dirty_list);
Filipe Mananae44081e2015-12-18 03:02:48 +00003721 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003722 should_put = 1;
3723
Chris Mason1bbc6212015-04-06 12:46:08 -07003724 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003725
Josef Bacikce93ec52014-11-17 15:45:48 -05003726 if (!ret)
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02003727 ret = btrfs_run_delayed_refs(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003728 (unsigned long) -1);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003729
3730 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3731 cache->io_ctl.inode = NULL;
David Sterbafe041532019-03-20 13:51:56 +01003732 ret = btrfs_write_out_cache(trans, cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003733 if (ret == 0 && cache->io_ctl.inode) {
3734 num_started++;
3735 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003736 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003737 } else {
3738 /*
3739 * if we failed to write the cache, the
3740 * generation will be bad and life goes on
3741 */
3742 ret = 0;
3743 }
3744 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003745 if (!ret) {
David Sterba39db2322019-03-20 11:57:46 +01003746 ret = write_one_cache_group(trans, path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003747 /*
3748 * One of the free space endio workers might have
3749 * created a new block group while updating a free space
3750 * cache's inode (at inode.c:btrfs_finish_ordered_io())
3751 * and hasn't released its transaction handle yet, in
3752 * which case the new block group is still attached to
3753 * its transaction handle and its creation has not
3754 * finished yet (no block group item in the extent tree
3755 * yet, etc). If this is the case, wait for all free
3756 * space endio workers to finish and retry. This is a
3757 * a very rare case so no need for a more efficient and
3758 * complex approach.
3759 */
3760 if (ret == -ENOENT) {
3761 wait_event(cur_trans->writer_wait,
3762 atomic_read(&cur_trans->num_writers) == 1);
David Sterba39db2322019-03-20 11:57:46 +01003763 ret = write_one_cache_group(trans, path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003764 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003765 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003766 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003767 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003768
3769 /* if its not on the io list, we need to put the block group */
3770 if (should_put)
3771 btrfs_put_block_group(cache);
Josef Bacikba2c4d42018-12-03 10:20:33 -05003772 btrfs_delayed_refs_rsv_release(fs_info, 1);
Filipe Mananae44081e2015-12-18 03:02:48 +00003773 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003774 }
Filipe Mananae44081e2015-12-18 03:02:48 +00003775 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003776
Nikolay Borisov45ae2c12018-02-08 18:25:18 +02003777 /*
3778 * Refer to the definition of io_bgs member for details why it's safe
3779 * to use it without any locking
3780 */
Chris Mason1bbc6212015-04-06 12:46:08 -07003781 while (!list_empty(io)) {
3782 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003783 io_list);
3784 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003785 btrfs_wait_cache_io(trans, cache, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003786 btrfs_put_block_group(cache);
3787 }
3788
Chris Mason9078a3e2007-04-26 16:46:15 -04003789 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003790 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003791}
3792
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003793int btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr)
Yan Zhengd2fb3432008-12-11 16:30:39 -05003794{
3795 struct btrfs_block_group_cache *block_group;
3796 int readonly = 0;
3797
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003798 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003799 if (!block_group || block_group->ro)
3800 readonly = 1;
3801 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003802 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003803 return readonly;
3804}
3805
Filipe Mananaf78c4362016-05-09 13:15:41 +01003806bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3807{
3808 struct btrfs_block_group_cache *bg;
3809 bool ret = true;
3810
3811 bg = btrfs_lookup_block_group(fs_info, bytenr);
3812 if (!bg)
3813 return false;
3814
3815 spin_lock(&bg->lock);
3816 if (bg->ro)
3817 ret = false;
3818 else
3819 atomic_inc(&bg->nocow_writers);
3820 spin_unlock(&bg->lock);
3821
3822 /* no put on block group, done by btrfs_dec_nocow_writers */
3823 if (!ret)
3824 btrfs_put_block_group(bg);
3825
3826 return ret;
3827
3828}
3829
3830void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3831{
3832 struct btrfs_block_group_cache *bg;
3833
3834 bg = btrfs_lookup_block_group(fs_info, bytenr);
3835 ASSERT(bg);
3836 if (atomic_dec_and_test(&bg->nocow_writers))
Peter Zijlstra46259562018-03-15 11:43:08 +01003837 wake_up_var(&bg->nocow_writers);
Filipe Mananaf78c4362016-05-09 13:15:41 +01003838 /*
3839 * Once for our lookup and once for the lookup done by a previous call
3840 * to btrfs_inc_nocow_writers()
3841 */
3842 btrfs_put_block_group(bg);
3843 btrfs_put_block_group(bg);
3844}
3845
Filipe Mananaf78c4362016-05-09 13:15:41 +01003846void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg)
3847{
Peter Zijlstra46259562018-03-15 11:43:08 +01003848 wait_var_event(&bg->nocow_writers, !atomic_read(&bg->nocow_writers));
Filipe Mananaf78c4362016-05-09 13:15:41 +01003849}
3850
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003851static const char *alloc_name(u64 flags)
3852{
3853 switch (flags) {
3854 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3855 return "mixed";
3856 case BTRFS_BLOCK_GROUP_METADATA:
3857 return "metadata";
3858 case BTRFS_BLOCK_GROUP_DATA:
3859 return "data";
3860 case BTRFS_BLOCK_GROUP_SYSTEM:
3861 return "system";
3862 default:
3863 WARN_ON(1);
3864 return "invalid-combination";
3865 };
3866}
3867
Lu Fengqi4ca61682018-05-28 14:30:27 +08003868static int create_space_info(struct btrfs_fs_info *info, u64 flags)
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03003869{
3870
3871 struct btrfs_space_info *space_info;
3872 int i;
3873 int ret;
3874
3875 space_info = kzalloc(sizeof(*space_info), GFP_NOFS);
3876 if (!space_info)
3877 return -ENOMEM;
3878
3879 ret = percpu_counter_init(&space_info->total_bytes_pinned, 0,
3880 GFP_KERNEL);
3881 if (ret) {
3882 kfree(space_info);
3883 return ret;
3884 }
3885
3886 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
3887 INIT_LIST_HEAD(&space_info->block_groups[i]);
3888 init_rwsem(&space_info->groups_sem);
3889 spin_lock_init(&space_info->lock);
3890 space_info->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
3891 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
3892 init_waitqueue_head(&space_info->wait);
3893 INIT_LIST_HEAD(&space_info->ro_bgs);
3894 INIT_LIST_HEAD(&space_info->tickets);
3895 INIT_LIST_HEAD(&space_info->priority_tickets);
3896
3897 ret = kobject_init_and_add(&space_info->kobj, &space_info_ktype,
3898 info->space_info_kobj, "%s",
3899 alloc_name(space_info->flags));
3900 if (ret) {
Tobin C. Harding450ff832019-05-13 13:39:11 +10003901 kobject_put(&space_info->kobj);
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03003902 return ret;
3903 }
3904
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03003905 list_add_rcu(&space_info->list, &info->space_info);
3906 if (flags & BTRFS_BLOCK_GROUP_DATA)
3907 info->data_sinfo = space_info;
3908
3909 return ret;
3910}
3911
Nikolay Borisovd2006e62017-05-22 09:35:50 +03003912static void update_space_info(struct btrfs_fs_info *info, u64 flags,
Chris Mason593060d2008-03-25 16:50:33 -04003913 u64 total_bytes, u64 bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -04003914 u64 bytes_readonly,
Chris Mason593060d2008-03-25 16:50:33 -04003915 struct btrfs_space_info **space_info)
3916{
3917 struct btrfs_space_info *found;
Yan, Zhengb742bb822010-05-16 10:46:24 -04003918 int factor;
3919
David Sterba46df06b2018-07-13 20:46:30 +02003920 factor = btrfs_bg_type_to_factor(flags);
Chris Mason593060d2008-03-25 16:50:33 -04003921
3922 found = __find_space_info(info, flags);
Nikolay Borisovd2006e62017-05-22 09:35:50 +03003923 ASSERT(found);
3924 spin_lock(&found->lock);
3925 found->total_bytes += total_bytes;
3926 found->disk_total += total_bytes * factor;
3927 found->bytes_used += bytes_used;
3928 found->disk_used += bytes_used * factor;
3929 found->bytes_readonly += bytes_readonly;
3930 if (total_bytes > 0)
3931 found->full = 0;
3932 space_info_add_new_bytes(info, found, total_bytes -
3933 bytes_used - bytes_readonly);
3934 spin_unlock(&found->lock);
3935 *space_info = found;
Chris Mason593060d2008-03-25 16:50:33 -04003936}
3937
Chris Mason8790d502008-04-03 16:29:03 -04003938static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
3939{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03003940 u64 extra_flags = chunk_to_extended(flags) &
3941 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003942
Miao Xiede98ced2013-01-29 10:13:12 +00003943 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003944 if (flags & BTRFS_BLOCK_GROUP_DATA)
3945 fs_info->avail_data_alloc_bits |= extra_flags;
3946 if (flags & BTRFS_BLOCK_GROUP_METADATA)
3947 fs_info->avail_metadata_alloc_bits |= extra_flags;
3948 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
3949 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00003950 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04003951}
Chris Mason593060d2008-03-25 16:50:33 -04003952
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003953/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003954 * returns target flags in extended format or 0 if restripe for this
3955 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04003956 *
David Sterbadccdb072018-03-21 00:20:05 +01003957 * should be called with balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003958 */
3959static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
3960{
3961 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
3962 u64 target = 0;
3963
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003964 if (!bctl)
3965 return 0;
3966
3967 if (flags & BTRFS_BLOCK_GROUP_DATA &&
3968 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3969 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
3970 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
3971 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3972 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
3973 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
3974 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
3975 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
3976 }
3977
3978 return target;
3979}
3980
3981/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003982 * @flags: available profiles in extended format (see ctree.h)
3983 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02003984 * Returns reduced profile in chunk format. If profile changing is in
3985 * progress (either running or paused) picks the target profile (if it's
3986 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02003987 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003988static u64 btrfs_reduce_alloc_profile(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04003989{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003990 u64 num_devices = fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003991 u64 target;
Zhao Lei9c170b22015-09-15 21:08:08 +08003992 u64 raid_type;
3993 u64 allowed = 0;
Chris Masona061fc82008-05-07 11:43:44 -04003994
Ilya Dryomovfc67c452012-03-27 17:09:17 +03003995 /*
3996 * see if restripe for this chunk_type is in progress, if so
3997 * try to reduce to the target profile
3998 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003999 spin_lock(&fs_info->balance_lock);
4000 target = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004001 if (target) {
4002 /* pick target profile only if it's already available */
4003 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004004 spin_unlock(&fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004005 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004006 }
4007 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004008 spin_unlock(&fs_info->balance_lock);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004009
David Woodhouse53b381b2013-01-29 18:40:14 -05004010 /* First, mask out the RAID levels which aren't possible */
Zhao Lei9c170b22015-09-15 21:08:08 +08004011 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
4012 if (num_devices >= btrfs_raid_array[raid_type].devs_min)
Anand Jain41a6e892018-04-25 19:01:43 +08004013 allowed |= btrfs_raid_array[raid_type].bg_flag;
Zhao Lei9c170b22015-09-15 21:08:08 +08004014 }
4015 allowed &= flags;
Chris Masona061fc82008-05-07 11:43:44 -04004016
Zhao Lei9c170b22015-09-15 21:08:08 +08004017 if (allowed & BTRFS_BLOCK_GROUP_RAID6)
4018 allowed = BTRFS_BLOCK_GROUP_RAID6;
4019 else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
4020 allowed = BTRFS_BLOCK_GROUP_RAID5;
4021 else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
4022 allowed = BTRFS_BLOCK_GROUP_RAID10;
4023 else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
4024 allowed = BTRFS_BLOCK_GROUP_RAID1;
4025 else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
4026 allowed = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04004027
Zhao Lei9c170b22015-09-15 21:08:08 +08004028 flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
Chris Masonec44a352008-04-28 15:29:52 -04004029
Zhao Lei9c170b22015-09-15 21:08:08 +08004030 return extended_to_chunk(flags | allowed);
Chris Masonec44a352008-04-28 15:29:52 -04004031}
4032
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004033static u64 get_alloc_profile(struct btrfs_fs_info *fs_info, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05004034{
Miao Xiede98ced2013-01-29 10:13:12 +00004035 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004036 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004037
4038 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004039 flags = orig_flags;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004040 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00004041
4042 if (flags & BTRFS_BLOCK_GROUP_DATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004043 flags |= fs_info->avail_data_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004044 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004045 flags |= fs_info->avail_system_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004046 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004047 flags |= fs_info->avail_metadata_alloc_bits;
4048 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02004049
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004050 return btrfs_reduce_alloc_profile(fs_info, flags);
Yan, Zhengb742bb822010-05-16 10:46:24 -04004051}
Josef Bacik6a632092009-02-20 11:00:09 -05004052
Jeff Mahoney1b868262017-05-17 11:38:35 -04004053static u64 get_alloc_profile_by_root(struct btrfs_root *root, int data)
Yan, Zhengb742bb822010-05-16 10:46:24 -04004054{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004055 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengb742bb822010-05-16 10:46:24 -04004056 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05004057 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004058
Yan, Zhengb742bb822010-05-16 10:46:24 -04004059 if (data)
4060 flags = BTRFS_BLOCK_GROUP_DATA;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004061 else if (root == fs_info->chunk_root)
Yan, Zhengb742bb822010-05-16 10:46:24 -04004062 flags = BTRFS_BLOCK_GROUP_SYSTEM;
4063 else
4064 flags = BTRFS_BLOCK_GROUP_METADATA;
4065
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004066 ret = get_alloc_profile(fs_info, flags);
David Woodhouse53b381b2013-01-29 18:40:14 -05004067 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004068}
4069
Jeff Mahoney1b868262017-05-17 11:38:35 -04004070u64 btrfs_data_alloc_profile(struct btrfs_fs_info *fs_info)
4071{
4072 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_DATA);
4073}
4074
4075u64 btrfs_metadata_alloc_profile(struct btrfs_fs_info *fs_info)
4076{
4077 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4078}
4079
4080u64 btrfs_system_alloc_profile(struct btrfs_fs_info *fs_info)
4081{
4082 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4083}
4084
Liu Bo41361352017-02-13 15:42:21 -08004085static u64 btrfs_space_info_used(struct btrfs_space_info *s_info,
4086 bool may_use_included)
4087{
4088 ASSERT(s_info);
4089 return s_info->bytes_used + s_info->bytes_reserved +
4090 s_info->bytes_pinned + s_info->bytes_readonly +
4091 (may_use_included ? s_info->bytes_may_use : 0);
4092}
4093
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004094int btrfs_alloc_data_chunk_ondemand(struct btrfs_inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05004095{
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004096 struct btrfs_root *root = inode->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004097 struct btrfs_fs_info *fs_info = root->fs_info;
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004098 struct btrfs_space_info *data_sinfo = fs_info->data_sinfo;
Josef Bacikab6e24102010-03-19 14:38:13 +00004099 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08004100 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08004101 int need_commit = 2;
4102 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05004103
4104 /* make sure bytes are sectorsize aligned */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004105 bytes = ALIGN(bytes, fs_info->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05004106
Miao Xie9dced182013-10-25 17:33:36 +08004107 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004108 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08004109 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04004110 }
4111
Josef Bacik6a632092009-02-20 11:00:09 -05004112again:
4113 /* make sure we have enough space to handle the data first */
4114 spin_lock(&data_sinfo->lock);
Liu Bo41361352017-02-13 15:42:21 -08004115 used = btrfs_space_info_used(data_sinfo, true);
Josef Bacikab6e24102010-03-19 14:38:13 +00004116
4117 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004118 struct btrfs_trans_handle *trans;
4119
Josef Bacik6a632092009-02-20 11:00:09 -05004120 /*
4121 * if we don't have enough free bytes in this space then we need
4122 * to alloc a new chunk.
4123 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08004124 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05004125 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05004126
Chris Mason0e4f8f82011-04-15 16:05:44 -04004127 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05004128 spin_unlock(&data_sinfo->lock);
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004129
Jeff Mahoney1b868262017-05-17 11:38:35 -04004130 alloc_target = btrfs_data_alloc_profile(fs_info);
Miao Xie9dced182013-10-25 17:33:36 +08004131 /*
4132 * It is ugly that we don't call nolock join
4133 * transaction for the free space inode case here.
4134 * But it is safe because we only do the data space
4135 * reservation for the free space cache in the
4136 * transaction context, the common join transaction
4137 * just increase the counter of the current transaction
4138 * handler, doesn't try to acquire the trans_lock of
4139 * the fs.
4140 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004141 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004142 if (IS_ERR(trans))
4143 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05004144
Nikolay Borisov01458822018-06-20 15:49:05 +03004145 ret = do_chunk_alloc(trans, alloc_target,
Chris Mason0e4f8f82011-04-15 16:05:44 -04004146 CHUNK_ALLOC_NO_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004147 btrfs_end_transaction(trans);
Miao Xied52a5b52011-01-05 10:07:18 +00004148 if (ret < 0) {
4149 if (ret != -ENOSPC)
4150 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08004151 else {
4152 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00004153 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08004154 }
Miao Xied52a5b52011-01-05 10:07:18 +00004155 }
Chris Mason33b4d472009-09-22 14:45:50 -04004156
Josef Bacik6a632092009-02-20 11:00:09 -05004157 goto again;
4158 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004159
4160 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04004161 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08004162 * allocation, and no removed chunk in current transaction,
4163 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004164 */
Ethan Liendec59fa2018-07-13 16:50:42 +08004165 have_pinned_space = __percpu_counter_compare(
Zhao Leic99f1b02015-03-02 19:32:20 +08004166 &data_sinfo->total_bytes_pinned,
Ethan Liendec59fa2018-07-13 16:50:42 +08004167 used + bytes - data_sinfo->total_bytes,
4168 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Josef Bacik6a632092009-02-20 11:00:09 -05004169 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004170
4171 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00004172commit_trans:
Nikolay Borisov92e2f7e2018-02-05 10:41:16 +02004173 if (need_commit) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004174 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04004175
Zhao Leie1746e82015-12-01 18:39:40 +08004176 if (need_commit > 0) {
Nikolay Borisov82b3e532018-04-23 10:54:13 +03004177 btrfs_start_delalloc_roots(fs_info, -1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004178 btrfs_wait_ordered_roots(fs_info, U64_MAX, 0,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004179 (u64)-1);
Zhao Leie1746e82015-12-01 18:39:40 +08004180 }
Zhao Lei9a4e7272015-04-09 12:34:43 +08004181
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004182 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004183 if (IS_ERR(trans))
4184 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08004185 if (have_pinned_space >= 0 ||
Josef Bacik3204d332015-09-24 10:46:10 -04004186 test_bit(BTRFS_TRANS_HAVE_FREE_BGS,
4187 &trans->transaction->flags) ||
Zhao Leic99f1b02015-03-02 19:32:20 +08004188 need_commit > 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004189 ret = btrfs_commit_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004190 if (ret)
4191 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08004192 /*
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004193 * The cleaner kthread might still be doing iput
4194 * operations. Wait for it to finish so that
Josef Bacik034f7842018-12-03 11:06:52 -05004195 * more space is released. We don't need to
4196 * explicitly run the delayed iputs here because
4197 * the commit_transaction would have woken up
4198 * the cleaner.
Zhao Leid7c15172015-02-26 10:49:20 +08004199 */
Josef Bacik034f7842018-12-03 11:06:52 -05004200 ret = btrfs_wait_on_delayed_iputs(fs_info);
4201 if (ret)
4202 return ret;
Zhao Lei94b947b2015-02-14 13:23:45 +08004203 goto again;
4204 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004205 btrfs_end_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004206 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004207 }
4208
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004209 trace_btrfs_space_reservation(fs_info,
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004210 "space_info:enospc",
4211 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004212 return -ENOSPC;
4213 }
Qu Wenruo480b9b42019-04-29 14:03:33 +08004214 update_bytes_may_use(fs_info, data_sinfo, bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004215 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004216 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004217 spin_unlock(&data_sinfo->lock);
4218
Josef Bacik4559b0a72018-07-19 10:49:51 -04004219 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05004220}
4221
Qu Wenruo364ecf32017-02-27 15:10:38 +08004222int btrfs_check_data_free_space(struct inode *inode,
4223 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004224{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004225 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004226 int ret;
4227
4228 /* align the range */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004229 len = round_up(start + len, fs_info->sectorsize) -
4230 round_down(start, fs_info->sectorsize);
4231 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004232
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004233 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode), len);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004234 if (ret < 0)
4235 return ret;
4236
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004237 /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */
Qu Wenruo364ecf32017-02-27 15:10:38 +08004238 ret = btrfs_qgroup_reserve_data(inode, reserved, start, len);
Qu Wenruo7bc329c2017-02-27 15:10:36 +08004239 if (ret < 0)
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004240 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruo364ecf32017-02-27 15:10:38 +08004241 else
4242 ret = 0;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004243 return ret;
4244}
4245
4246/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004247 * Called if we need to clear a data reservation for this inode
4248 * Normally in a error case.
4249 *
Qu Wenruo51773be2015-10-08 18:19:37 +08004250 * This one will *NOT* use accurate qgroup reserved space API, just for case
4251 * which we can't sleep and is sure it won't affect qgroup reserved space.
4252 * Like clear_bit_hook().
Qu Wenruo4ceff072015-09-08 17:22:42 +08004253 */
Qu Wenruo51773be2015-10-08 18:19:37 +08004254void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start,
4255 u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004256{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004257 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004258 struct btrfs_space_info *data_sinfo;
4259
4260 /* Make sure the range is aligned to sectorsize */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004261 len = round_up(start + len, fs_info->sectorsize) -
4262 round_down(start, fs_info->sectorsize);
4263 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004264
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004265 data_sinfo = fs_info->data_sinfo;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004266 spin_lock(&data_sinfo->lock);
Qu Wenruo480b9b42019-04-29 14:03:33 +08004267 update_bytes_may_use(fs_info, data_sinfo, -len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004268 trace_btrfs_space_reservation(fs_info, "space_info",
Qu Wenruo4ceff072015-09-08 17:22:42 +08004269 data_sinfo->flags, len, 0);
4270 spin_unlock(&data_sinfo->lock);
4271}
4272
Qu Wenruo51773be2015-10-08 18:19:37 +08004273/*
4274 * Called if we need to clear a data reservation for this inode
4275 * Normally in a error case.
4276 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04004277 * This one will handle the per-inode data rsv map for accurate reserved
Qu Wenruo51773be2015-10-08 18:19:37 +08004278 * space framework.
4279 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08004280void btrfs_free_reserved_data_space(struct inode *inode,
4281 struct extent_changeset *reserved, u64 start, u64 len)
Qu Wenruo51773be2015-10-08 18:19:37 +08004282{
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004283 struct btrfs_root *root = BTRFS_I(inode)->root;
4284
4285 /* Make sure the range is aligned to sectorsize */
Jeff Mahoneyda170662016-06-15 09:22:56 -04004286 len = round_up(start + len, root->fs_info->sectorsize) -
4287 round_down(start, root->fs_info->sectorsize);
4288 start = round_down(start, root->fs_info->sectorsize);
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004289
Qu Wenruo51773be2015-10-08 18:19:37 +08004290 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruobc42bda2017-02-27 15:10:39 +08004291 btrfs_qgroup_free_data(inode, reserved, start, len);
Qu Wenruo51773be2015-10-08 18:19:37 +08004292}
4293
Josef Bacik97e728d2009-04-21 17:40:57 -04004294static void force_metadata_allocation(struct btrfs_fs_info *info)
4295{
4296 struct list_head *head = &info->space_info;
4297 struct btrfs_space_info *found;
4298
4299 rcu_read_lock();
4300 list_for_each_entry_rcu(found, head, list) {
4301 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004302 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04004303 }
4304 rcu_read_unlock();
4305}
4306
Miao Xie3c76cd82013-04-25 10:12:38 +00004307static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4308{
4309 return (global->size << 1);
4310}
4311
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004312static int should_alloc_chunk(struct btrfs_fs_info *fs_info,
Josef Bacik698d0082012-09-12 14:08:47 -04004313 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004314{
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004315 u64 bytes_used = btrfs_space_info_used(sinfo, false);
Chris Masone5bc2452010-10-26 13:37:56 -04004316 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004317
Chris Mason0e4f8f82011-04-15 16:05:44 -04004318 if (force == CHUNK_ALLOC_FORCE)
4319 return 1;
4320
4321 /*
4322 * in limited mode, we want to have some free space up to
4323 * about 1% of the FS size.
4324 */
4325 if (force == CHUNK_ALLOC_LIMITED) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004326 thresh = btrfs_super_total_bytes(fs_info->super_copy);
Byongho Leeee221842015-12-15 01:42:10 +09004327 thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
Chris Mason0e4f8f82011-04-15 16:05:44 -04004328
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004329 if (sinfo->total_bytes - bytes_used < thresh)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004330 return 1;
4331 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004332
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004333 if (bytes_used + SZ_2M < div_factor(sinfo->total_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004334 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004335 return 1;
4336}
4337
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004338static u64 get_profile_num_devs(struct btrfs_fs_info *fs_info, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004339{
4340 u64 num_dev;
4341
David Sterba9fa02ac2019-05-17 11:43:20 +02004342 num_dev = btrfs_raid_array[btrfs_bg_flags_to_raid_index(type)].devs_max;
4343 if (!num_dev)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004344 num_dev = fs_info->fs_devices->rw_devices;
Liu Bo15d1ff82012-03-29 09:57:44 -04004345
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004346 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004347}
4348
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004349/*
4350 * If @is_allocation is true, reserve space in the system space info necessary
4351 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4352 * removing a chunk.
4353 */
Nikolay Borisov451a2c12018-06-20 15:49:07 +03004354void check_system_chunk(struct btrfs_trans_handle *trans, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004355{
Nikolay Borisov451a2c12018-06-20 15:49:07 +03004356 struct btrfs_fs_info *fs_info = trans->fs_info;
Liu Bo15d1ff82012-03-29 09:57:44 -04004357 struct btrfs_space_info *info;
4358 u64 left;
4359 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004360 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004361 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004362
4363 /*
4364 * Needed because we can end up allocating a system chunk and for an
4365 * atomic and race free space reservation in the chunk block reserve.
4366 */
David Sterbaa32bf9a2018-03-16 02:21:22 +01004367 lockdep_assert_held(&fs_info->chunk_mutex);
Liu Bo15d1ff82012-03-29 09:57:44 -04004368
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004369 info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
Liu Bo15d1ff82012-03-29 09:57:44 -04004370 spin_lock(&info->lock);
Liu Bo41361352017-02-13 15:42:21 -08004371 left = info->total_bytes - btrfs_space_info_used(info, true);
Liu Bo15d1ff82012-03-29 09:57:44 -04004372 spin_unlock(&info->lock);
4373
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004374 num_devs = get_profile_num_devs(fs_info, type);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004375
4376 /* num_devs device items to update and 1 chunk item to add or remove */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004377 thresh = btrfs_calc_trunc_metadata_size(fs_info, num_devs) +
4378 btrfs_calc_trans_metadata_size(fs_info, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004379
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004380 if (left < thresh && btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
4381 btrfs_info(fs_info, "left=%llu, need=%llu, flags=%llu",
4382 left, thresh, type);
4383 dump_space_info(fs_info, info, 0, 0);
Liu Bo15d1ff82012-03-29 09:57:44 -04004384 }
4385
4386 if (left < thresh) {
Jeff Mahoney1b868262017-05-17 11:38:35 -04004387 u64 flags = btrfs_system_alloc_profile(fs_info);
Liu Bo15d1ff82012-03-29 09:57:44 -04004388
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004389 /*
4390 * Ignore failure to create system chunk. We might end up not
4391 * needing it, as we might not need to COW all nodes/leafs from
4392 * the paths we visit in the chunk tree (they were already COWed
4393 * or created in the current transaction for example).
4394 */
Nikolay Borisovc216b202018-06-20 15:49:06 +03004395 ret = btrfs_alloc_chunk(trans, flags);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004396 }
4397
4398 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004399 ret = btrfs_block_rsv_add(fs_info->chunk_root,
4400 &fs_info->chunk_block_rsv,
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004401 thresh, BTRFS_RESERVE_NO_FLUSH);
4402 if (!ret)
4403 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004404 }
4405}
4406
Liu Bo28b737f2016-07-29 11:09:50 -07004407/*
4408 * If force is CHUNK_ALLOC_FORCE:
4409 * - return 1 if it successfully allocates a chunk,
4410 * - return errors including -ENOSPC otherwise.
4411 * If force is NOT CHUNK_ALLOC_FORCE:
4412 * - return 0 if it doesn't need to allocate a new chunk,
4413 * - return 1 if it successfully allocates a chunk,
4414 * - return errors including -ENOSPC otherwise.
4415 */
Nikolay Borisov01458822018-06-20 15:49:05 +03004416static int do_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags,
4417 int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004418{
Nikolay Borisov01458822018-06-20 15:49:05 +03004419 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04004420 struct btrfs_space_info *space_info;
Nikolay Borisov2556fbb2018-04-18 10:27:57 +03004421 bool wait_for_alloc = false;
4422 bool should_alloc = false;
Yan Zhengc146afa2008-11-12 14:34:12 -05004423 int ret = 0;
4424
Josef Bacikc6b305a2012-12-18 09:16:16 -05004425 /* Don't re-enter if we're already allocating a chunk */
4426 if (trans->allocating_chunk)
4427 return -ENOSPC;
4428
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004429 space_info = __find_space_info(fs_info, flags);
Jeff Mahoneydc2d3002018-03-20 15:25:25 -04004430 ASSERT(space_info);
Chris Mason6324fbf2008-03-24 15:01:59 -04004431
Nikolay Borisov2556fbb2018-04-18 10:27:57 +03004432 do {
4433 spin_lock(&space_info->lock);
4434 if (force < space_info->force_alloc)
4435 force = space_info->force_alloc;
4436 should_alloc = should_alloc_chunk(fs_info, space_info, force);
4437 if (space_info->full) {
4438 /* No more free physical space */
4439 if (should_alloc)
4440 ret = -ENOSPC;
4441 else
4442 ret = 0;
4443 spin_unlock(&space_info->lock);
4444 return ret;
4445 } else if (!should_alloc) {
4446 spin_unlock(&space_info->lock);
4447 return 0;
4448 } else if (space_info->chunk_alloc) {
4449 /*
4450 * Someone is already allocating, so we need to block
4451 * until this someone is finished and then loop to
4452 * recheck if we should continue with our allocation
4453 * attempt.
4454 */
4455 wait_for_alloc = true;
4456 spin_unlock(&space_info->lock);
4457 mutex_lock(&fs_info->chunk_mutex);
4458 mutex_unlock(&fs_info->chunk_mutex);
4459 } else {
4460 /* Proceed with allocation */
4461 space_info->chunk_alloc = 1;
4462 wait_for_alloc = false;
4463 spin_unlock(&space_info->lock);
4464 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004465
Nikolay Borisov2556fbb2018-04-18 10:27:57 +03004466 cond_resched();
4467 } while (wait_for_alloc);
Josef Bacik25179202008-10-29 14:49:05 -04004468
Josef Bacik6d741192011-04-11 20:20:11 -04004469 mutex_lock(&fs_info->chunk_mutex);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004470 trans->allocating_chunk = true;
4471
Josef Bacik97e728d2009-04-21 17:40:57 -04004472 /*
Josef Bacik67377732010-09-16 16:19:09 -04004473 * If we have mixed data/metadata chunks we want to make sure we keep
4474 * allocating mixed chunks instead of individual chunks.
4475 */
4476 if (btrfs_mixed_space_info(space_info))
4477 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4478
4479 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004480 * if we're doing a data chunk, go ahead and make sure that
4481 * we keep a reasonable number of metadata chunks allocated in the
4482 * FS as well.
4483 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004484 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004485 fs_info->data_chunk_allocations++;
4486 if (!(fs_info->data_chunk_allocations %
4487 fs_info->metadata_ratio))
4488 force_metadata_allocation(fs_info);
4489 }
4490
Liu Bo15d1ff82012-03-29 09:57:44 -04004491 /*
4492 * Check if we have enough space in SYSTEM chunk because we may need
4493 * to update devices.
4494 */
Nikolay Borisov451a2c12018-06-20 15:49:07 +03004495 check_system_chunk(trans, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004496
Nikolay Borisovc216b202018-06-20 15:49:06 +03004497 ret = btrfs_alloc_chunk(trans, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004498 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004499
Josef Bacik9ed74f22009-09-11 16:12:44 -04004500 spin_lock(&space_info->lock);
Nikolay Borisov57f16422018-04-11 11:21:19 +03004501 if (ret < 0) {
4502 if (ret == -ENOSPC)
4503 space_info->full = 1;
4504 else
4505 goto out;
4506 } else {
Yan, Zheng424499d2010-05-16 10:46:25 -04004507 ret = 1;
Josef Bacik21a94f72018-10-11 15:54:03 -04004508 space_info->max_extent_size = 0;
Nikolay Borisov57f16422018-04-11 11:21:19 +03004509 }
Josef Bacik6d741192011-04-11 20:20:11 -04004510
Chris Mason0e4f8f82011-04-15 16:05:44 -04004511 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004512out:
Josef Bacik6d741192011-04-11 20:20:11 -04004513 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004514 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004515 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana00d80e32015-07-20 14:56:20 +01004516 /*
4517 * When we allocate a new chunk we reserve space in the chunk block
4518 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4519 * add new nodes/leafs to it if we end up needing to do it when
4520 * inserting the chunk item and updating device items as part of the
4521 * second phase of chunk allocation, performed by
4522 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4523 * large number of new block groups to create in our transaction
4524 * handle's new_bgs list to avoid exhausting the chunk block reserve
4525 * in extreme cases - like having a single transaction create many new
4526 * block groups when starting to write out the free space caches of all
4527 * the block groups that were made dirty during the lifetime of the
4528 * transaction.
4529 */
Filipe Manana5ce55552018-10-12 10:03:55 +01004530 if (trans->chunk_bytes_reserved >= (u64)SZ_2M)
Nikolay Borisov6c686b32018-02-07 17:55:40 +02004531 btrfs_create_pending_block_groups(trans);
Filipe Manana5ce55552018-10-12 10:03:55 +01004532
Josef Bacik0f9dd462008-09-23 13:14:11 -04004533 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004534}
4535
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004536static int can_overcommit(struct btrfs_fs_info *fs_info,
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004537 struct btrfs_space_info *space_info, u64 bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004538 enum btrfs_reserve_flush_enum flush,
4539 bool system_chunk)
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004540{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004541 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04004542 u64 profile;
Miao Xie3c76cd82013-04-25 10:12:38 +00004543 u64 space_size;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004544 u64 avail;
4545 u64 used;
David Sterba46df06b2018-07-13 20:46:30 +02004546 int factor;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004547
Josef Bacik957780e2016-05-17 13:30:55 -04004548 /* Don't overcommit when in mixed mode. */
4549 if (space_info->flags & BTRFS_BLOCK_GROUP_DATA)
4550 return 0;
4551
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004552 if (system_chunk)
4553 profile = btrfs_system_alloc_profile(fs_info);
4554 else
4555 profile = btrfs_metadata_alloc_profile(fs_info);
4556
Liu Bo41361352017-02-13 15:42:21 -08004557 used = btrfs_space_info_used(space_info, false);
Josef Bacik96f1bb52013-01-30 17:02:51 -05004558
Josef Bacik96f1bb52013-01-30 17:02:51 -05004559 /*
4560 * We only want to allow over committing if we have lots of actual space
4561 * free, but if we don't have enough space to handle the global reserve
4562 * space then we could end up having a real enospc problem when trying
4563 * to allocate a chunk or some other such important allocation.
4564 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004565 spin_lock(&global_rsv->lock);
4566 space_size = calc_global_rsv_need_space(global_rsv);
4567 spin_unlock(&global_rsv->lock);
4568 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004569 return 0;
4570
4571 used += space_info->bytes_may_use;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004572
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004573 avail = atomic64_read(&fs_info->free_chunk_space);
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004574
4575 /*
4576 * If we have dup, raid1 or raid10 then only half of the free
Andrea Gelmini52042d82018-11-28 12:05:13 +01004577 * space is actually usable. For raid56, the space info used
David Woodhouse53b381b2013-01-29 18:40:14 -05004578 * doesn't include the parity drive, so we don't have to
4579 * change the math
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004580 */
David Sterba46df06b2018-07-13 20:46:30 +02004581 factor = btrfs_bg_type_to_factor(profile);
4582 avail = div_u64(avail, factor);
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004583
4584 /*
Miao Xie561c2942012-10-16 11:32:18 +00004585 * If we aren't flushing all things, let us overcommit up to
4586 * 1/2th of the space. If we can flush, don't let us overcommit
4587 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004588 */
Miao Xie08e007d2012-10-16 11:33:38 +00004589 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004590 avail >>= 3;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004591 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004592 avail >>= 1;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004593
Josef Bacik14575ae2013-09-17 10:48:00 -04004594 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004595 return 1;
4596 return 0;
4597}
4598
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004599static void btrfs_writeback_inodes_sb_nr(struct btrfs_fs_info *fs_info,
Miao Xie6c255e62014-03-06 13:55:01 +08004600 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004601{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004602 struct super_block *sb = fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004603
Josef Bacik925a6ef2013-06-20 12:31:27 -04004604 if (down_read_trylock(&sb->s_umount)) {
4605 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4606 up_read(&sb->s_umount);
4607 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004608 /*
4609 * We needn't worry the filesystem going from r/w to r/o though
4610 * we don't acquire ->s_umount mutex, because the filesystem
4611 * should guarantee the delalloc inodes list be empty after
4612 * the filesystem is readonly(all dirty pages are written to
4613 * the disk).
4614 */
Nikolay Borisov82b3e532018-04-23 10:54:13 +03004615 btrfs_start_delalloc_roots(fs_info, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004616 if (!current->journal_info)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004617 btrfs_wait_ordered_roots(fs_info, nr_items, 0, (u64)-1);
Miao Xieda633a42012-12-20 11:19:09 +00004618 }
4619}
4620
Chris Mason6374e57a2017-06-23 09:48:21 -07004621static inline u64 calc_reclaim_items_nr(struct btrfs_fs_info *fs_info,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004622 u64 to_reclaim)
Miao Xie18cd8ea2013-11-04 23:13:22 +08004623{
4624 u64 bytes;
Chris Mason6374e57a2017-06-23 09:48:21 -07004625 u64 nr;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004626
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004627 bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004628 nr = div64_u64(to_reclaim, bytes);
Miao Xie18cd8ea2013-11-04 23:13:22 +08004629 if (!nr)
4630 nr = 1;
4631 return nr;
4632}
4633
Byongho Leeee221842015-12-15 01:42:10 +09004634#define EXTENT_SIZE_PER_ITEM SZ_256K
Miao Xiec61a16a2013-11-04 23:13:23 +08004635
Yan, Zheng5da9d012010-05-16 10:46:25 -04004636/*
4637 * shrink metadata reservation for delalloc
4638 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004639static void shrink_delalloc(struct btrfs_fs_info *fs_info, u64 to_reclaim,
4640 u64 orig, bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004641{
Josef Bacik0019f102010-10-15 15:18:40 -04004642 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004643 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004644 u64 delalloc_bytes;
Josef Bacik4297ff82019-04-10 15:56:09 -04004645 u64 dio_bytes;
Nikolay Borisov420829d2019-01-03 10:50:05 +02004646 u64 async_pages;
Chris Mason6374e57a2017-06-23 09:48:21 -07004647 u64 items;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004648 long time_left;
Miao Xied3ee29e32013-11-04 23:13:20 +08004649 unsigned long nr_pages;
4650 int loops;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004651
Miao Xiec61a16a2013-11-04 23:13:23 +08004652 /* Calc the number of the pages we need flush for space reservation */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004653 items = calc_reclaim_items_nr(fs_info, to_reclaim);
Chris Mason6374e57a2017-06-23 09:48:21 -07004654 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004655
Josef Bacik663350a2011-11-03 22:54:25 -04004656 trans = (struct btrfs_trans_handle *)current->journal_info;
Josef Bacik69fe2d72017-10-19 14:15:57 -04004657 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Chris Masonbf9022e2010-10-26 13:40:45 -04004658
Miao Xie963d6782013-01-29 10:10:51 +00004659 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004660 &fs_info->delalloc_bytes);
Josef Bacik4297ff82019-04-10 15:56:09 -04004661 dio_bytes = percpu_counter_sum_positive(&fs_info->dio_bytes);
4662 if (delalloc_bytes == 0 && dio_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004663 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004664 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004665 if (wait_ordered)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004666 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004667 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004668 }
4669
Josef Bacik4297ff82019-04-10 15:56:09 -04004670 /*
4671 * If we are doing more ordered than delalloc we need to just wait on
4672 * ordered extents, otherwise we'll waste time trying to flush delalloc
4673 * that likely won't give us the space back we need.
4674 */
4675 if (dio_bytes > delalloc_bytes)
4676 wait_ordered = true;
4677
Miao Xied3ee29e32013-11-04 23:13:20 +08004678 loops = 0;
Josef Bacik4297ff82019-04-10 15:56:09 -04004679 while ((delalloc_bytes || dio_bytes) && loops < 3) {
Nikolay Borisov420829d2019-01-03 10:50:05 +02004680 nr_pages = min(delalloc_bytes, to_reclaim) >> PAGE_SHIFT;
4681
Josef Bacikdea31f52012-09-06 16:47:00 -04004682 /*
Nikolay Borisov420829d2019-01-03 10:50:05 +02004683 * Triggers inode writeback for up to nr_pages. This will invoke
4684 * ->writepages callback and trigger delalloc filling
4685 * (btrfs_run_delalloc_range()).
Josef Bacikdea31f52012-09-06 16:47:00 -04004686 */
Nikolay Borisov420829d2019-01-03 10:50:05 +02004687 btrfs_writeback_inodes_sb_nr(fs_info, nr_pages, items);
4688
4689 /*
4690 * We need to wait for the compressed pages to start before
4691 * we continue.
4692 */
4693 async_pages = atomic_read(&fs_info->async_delalloc_pages);
4694 if (!async_pages)
Miao Xie9f3a0742013-11-04 23:13:24 +08004695 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004696
Nikolay Borisov420829d2019-01-03 10:50:05 +02004697 /*
4698 * Calculate how many compressed pages we want to be written
4699 * before we continue. I.e if there are more async pages than we
4700 * require wait_event will wait until nr_pages are written.
4701 */
4702 if (async_pages <= nr_pages)
4703 async_pages = 0;
Miao Xie9f3a0742013-11-04 23:13:24 +08004704 else
Nikolay Borisov420829d2019-01-03 10:50:05 +02004705 async_pages -= nr_pages;
Miao Xie9f3a0742013-11-04 23:13:24 +08004706
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004707 wait_event(fs_info->async_submit_wait,
4708 atomic_read(&fs_info->async_delalloc_pages) <=
Nikolay Borisov420829d2019-01-03 10:50:05 +02004709 (int)async_pages);
Miao Xie9f3a0742013-11-04 23:13:24 +08004710skip_async:
Josef Bacik0019f102010-10-15 15:18:40 -04004711 spin_lock(&space_info->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04004712 if (list_empty(&space_info->tickets) &&
4713 list_empty(&space_info->priority_tickets)) {
4714 spin_unlock(&space_info->lock);
4715 break;
4716 }
Josef Bacik0019f102010-10-15 15:18:40 -04004717 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004718
Chris Mason36e39c42011-03-12 07:08:42 -05004719 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004720 if (wait_ordered && !trans) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004721 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf104d042011-10-14 13:56:58 -04004722 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004723 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004724 if (time_left)
4725 break;
4726 }
Miao Xie963d6782013-01-29 10:10:51 +00004727 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004728 &fs_info->delalloc_bytes);
Josef Bacik4297ff82019-04-10 15:56:09 -04004729 dio_bytes = percpu_counter_sum_positive(&fs_info->dio_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004730 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004731}
4732
Josef Bacik996478c2017-08-22 16:00:39 -04004733struct reserve_ticket {
Josef Bacikf91587e2018-11-21 14:03:10 -05004734 u64 orig_bytes;
Josef Bacik996478c2017-08-22 16:00:39 -04004735 u64 bytes;
4736 int error;
4737 struct list_head list;
4738 wait_queue_head_t wait;
4739};
4740
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004741/**
Josef Bacik663350a2011-11-03 22:54:25 -04004742 * maybe_commit_transaction - possibly commit the transaction if its ok to
4743 * @root - the root we're allocating for
4744 * @bytes - the number of bytes we want to reserve
4745 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004746 *
Josef Bacik663350a2011-11-03 22:54:25 -04004747 * This will check to make sure that committing the transaction will actually
4748 * get us somewhere and then commit the transaction if it does. Otherwise it
4749 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004750 */
Jeff Mahoney0c9ab342017-02-15 16:28:28 -05004751static int may_commit_transaction(struct btrfs_fs_info *fs_info,
Josef Bacik996478c2017-08-22 16:00:39 -04004752 struct btrfs_space_info *space_info)
Josef Bacik663350a2011-11-03 22:54:25 -04004753{
Josef Bacik996478c2017-08-22 16:00:39 -04004754 struct reserve_ticket *ticket = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004755 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_block_rsv;
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004756 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
Josef Bacik663350a2011-11-03 22:54:25 -04004757 struct btrfs_trans_handle *trans;
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004758 u64 bytes_needed;
4759 u64 reclaim_bytes = 0;
Josef Bacik663350a2011-11-03 22:54:25 -04004760
4761 trans = (struct btrfs_trans_handle *)current->journal_info;
4762 if (trans)
4763 return -EAGAIN;
4764
Josef Bacik996478c2017-08-22 16:00:39 -04004765 spin_lock(&space_info->lock);
4766 if (!list_empty(&space_info->priority_tickets))
4767 ticket = list_first_entry(&space_info->priority_tickets,
4768 struct reserve_ticket, list);
4769 else if (!list_empty(&space_info->tickets))
4770 ticket = list_first_entry(&space_info->tickets,
4771 struct reserve_ticket, list);
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004772 bytes_needed = (ticket) ? ticket->bytes : 0;
Josef Bacik996478c2017-08-22 16:00:39 -04004773 spin_unlock(&space_info->lock);
4774
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004775 if (!bytes_needed)
Josef Bacik996478c2017-08-22 16:00:39 -04004776 return 0;
Josef Bacik663350a2011-11-03 22:54:25 -04004777
Josef Bacikd89dbef2018-11-21 14:03:06 -05004778 trans = btrfs_join_transaction(fs_info->extent_root);
4779 if (IS_ERR(trans))
4780 return PTR_ERR(trans);
4781
4782 /*
4783 * See if there is enough pinned space to make this reservation, or if
4784 * we have block groups that are going to be freed, allowing us to
4785 * possibly do a chunk allocation the next loop through.
4786 */
4787 if (test_bit(BTRFS_TRANS_HAVE_FREE_BGS, &trans->transaction->flags) ||
4788 __percpu_counter_compare(&space_info->total_bytes_pinned,
4789 bytes_needed,
4790 BTRFS_TOTAL_BYTES_PINNED_BATCH) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004791 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004792
4793 /*
4794 * See if there is some space in the delayed insertion reservation for
4795 * this reservation.
4796 */
4797 if (space_info != delayed_rsv->space_info)
Josef Bacikd89dbef2018-11-21 14:03:06 -05004798 goto enospc;
Josef Bacik663350a2011-11-03 22:54:25 -04004799
4800 spin_lock(&delayed_rsv->lock);
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004801 reclaim_bytes += delayed_rsv->reserved;
Nikolay Borisov057aac32017-11-07 11:22:54 +02004802 spin_unlock(&delayed_rsv->lock);
4803
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004804 spin_lock(&delayed_refs_rsv->lock);
4805 reclaim_bytes += delayed_refs_rsv->reserved;
4806 spin_unlock(&delayed_refs_rsv->lock);
4807 if (reclaim_bytes >= bytes_needed)
4808 goto commit;
4809 bytes_needed -= reclaim_bytes;
4810
Ethan Liendec59fa2018-07-13 16:50:42 +08004811 if (__percpu_counter_compare(&space_info->total_bytes_pinned,
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004812 bytes_needed,
Josef Bacikd89dbef2018-11-21 14:03:06 -05004813 BTRFS_TOTAL_BYTES_PINNED_BATCH) < 0)
4814 goto enospc;
Josef Bacik663350a2011-11-03 22:54:25 -04004815
4816commit:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004817 return btrfs_commit_transaction(trans);
Josef Bacikd89dbef2018-11-21 14:03:06 -05004818enospc:
4819 btrfs_end_transaction(trans);
4820 return -ENOSPC;
Josef Bacik663350a2011-11-03 22:54:25 -04004821}
4822
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03004823/*
4824 * Try to flush some data based on policy set by @state. This is only advisory
4825 * and may fail for various reasons. The caller is supposed to examine the
4826 * state of @space_info to detect the outcome.
4827 */
4828static void flush_space(struct btrfs_fs_info *fs_info,
Josef Bacik96c3f432012-06-21 14:05:49 -04004829 struct btrfs_space_info *space_info, u64 num_bytes,
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004830 int state)
Josef Bacik96c3f432012-06-21 14:05:49 -04004831{
Jeff Mahoneya9b33112017-05-17 11:38:34 -04004832 struct btrfs_root *root = fs_info->extent_root;
Josef Bacik96c3f432012-06-21 14:05:49 -04004833 struct btrfs_trans_handle *trans;
4834 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004835 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004836
4837 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004838 case FLUSH_DELAYED_ITEMS_NR:
4839 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004840 if (state == FLUSH_DELAYED_ITEMS_NR)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004841 nr = calc_reclaim_items_nr(fs_info, num_bytes) * 2;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004842 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004843 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004844
Josef Bacik96c3f432012-06-21 14:05:49 -04004845 trans = btrfs_join_transaction(root);
4846 if (IS_ERR(trans)) {
4847 ret = PTR_ERR(trans);
4848 break;
4849 }
Nikolay Borisove5c304e62018-02-07 17:55:43 +02004850 ret = btrfs_run_delayed_items_nr(trans, nr);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004851 btrfs_end_transaction(trans);
Josef Bacik96c3f432012-06-21 14:05:49 -04004852 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004853 case FLUSH_DELALLOC:
4854 case FLUSH_DELALLOC_WAIT:
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004855 shrink_delalloc(fs_info, num_bytes * 2, num_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004856 state == FLUSH_DELALLOC_WAIT);
4857 break;
Josef Bacik413df722018-12-03 10:20:35 -05004858 case FLUSH_DELAYED_REFS_NR:
4859 case FLUSH_DELAYED_REFS:
4860 trans = btrfs_join_transaction(root);
4861 if (IS_ERR(trans)) {
4862 ret = PTR_ERR(trans);
4863 break;
4864 }
4865 if (state == FLUSH_DELAYED_REFS_NR)
4866 nr = calc_reclaim_items_nr(fs_info, num_bytes);
4867 else
4868 nr = 0;
4869 btrfs_run_delayed_refs(trans, nr);
4870 btrfs_end_transaction(trans);
4871 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004872 case ALLOC_CHUNK:
Josef Bacik450114f2018-11-21 14:03:08 -05004873 case ALLOC_CHUNK_FORCE:
Josef Bacikea658ba2012-09-11 16:57:25 -04004874 trans = btrfs_join_transaction(root);
4875 if (IS_ERR(trans)) {
4876 ret = PTR_ERR(trans);
4877 break;
4878 }
Nikolay Borisov01458822018-06-20 15:49:05 +03004879 ret = do_chunk_alloc(trans,
Jeff Mahoney1b868262017-05-17 11:38:35 -04004880 btrfs_metadata_alloc_profile(fs_info),
Josef Bacik450114f2018-11-21 14:03:08 -05004881 (state == ALLOC_CHUNK) ?
4882 CHUNK_ALLOC_NO_FORCE : CHUNK_ALLOC_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004883 btrfs_end_transaction(trans);
Alex Lyakaseecba892015-12-06 12:32:31 +02004884 if (ret > 0 || ret == -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04004885 ret = 0;
4886 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004887 case COMMIT_TRANS:
Josef Bacik3ec9a4c2019-01-11 10:21:01 -05004888 /*
4889 * If we have pending delayed iputs then we could free up a
4890 * bunch of pinned space, so make sure we run the iputs before
4891 * we do our pinned bytes check below.
4892 */
Josef Bacik3ec9a4c2019-01-11 10:21:01 -05004893 btrfs_run_delayed_iputs(fs_info);
Josef Bacik034f7842018-12-03 11:06:52 -05004894 btrfs_wait_on_delayed_iputs(fs_info);
Josef Bacik3ec9a4c2019-01-11 10:21:01 -05004895
Josef Bacik996478c2017-08-22 16:00:39 -04004896 ret = may_commit_transaction(fs_info, space_info);
Josef Bacik96c3f432012-06-21 14:05:49 -04004897 break;
4898 default:
4899 ret = -ENOSPC;
4900 break;
4901 }
4902
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004903 trace_btrfs_flush_space(fs_info, space_info->flags, num_bytes, state,
4904 ret);
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03004905 return;
Josef Bacik96c3f432012-06-21 14:05:49 -04004906}
Miao Xie21c7e752014-05-13 17:29:04 -07004907
4908static inline u64
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004909btrfs_calc_reclaim_metadata_size(struct btrfs_fs_info *fs_info,
4910 struct btrfs_space_info *space_info,
4911 bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07004912{
Josef Bacik957780e2016-05-17 13:30:55 -04004913 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004914 u64 used;
4915 u64 expected;
Josef Bacik957780e2016-05-17 13:30:55 -04004916 u64 to_reclaim = 0;
Miao Xie21c7e752014-05-13 17:29:04 -07004917
Josef Bacik957780e2016-05-17 13:30:55 -04004918 list_for_each_entry(ticket, &space_info->tickets, list)
4919 to_reclaim += ticket->bytes;
4920 list_for_each_entry(ticket, &space_info->priority_tickets, list)
4921 to_reclaim += ticket->bytes;
4922 if (to_reclaim)
4923 return to_reclaim;
Miao Xie21c7e752014-05-13 17:29:04 -07004924
Wang Xiaoguange0af2482016-08-31 19:46:16 +08004925 to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004926 if (can_overcommit(fs_info, space_info, to_reclaim,
4927 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Wang Xiaoguange0af2482016-08-31 19:46:16 +08004928 return 0;
4929
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03004930 used = btrfs_space_info_used(space_info, true);
4931
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004932 if (can_overcommit(fs_info, space_info, SZ_1M,
4933 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Miao Xie21c7e752014-05-13 17:29:04 -07004934 expected = div_factor_fine(space_info->total_bytes, 95);
4935 else
4936 expected = div_factor_fine(space_info->total_bytes, 90);
4937
4938 if (used > expected)
4939 to_reclaim = used - expected;
4940 else
4941 to_reclaim = 0;
4942 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
4943 space_info->bytes_reserved);
Miao Xie21c7e752014-05-13 17:29:04 -07004944 return to_reclaim;
4945}
4946
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004947static inline int need_do_async_reclaim(struct btrfs_fs_info *fs_info,
4948 struct btrfs_space_info *space_info,
4949 u64 used, bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07004950{
Josef Bacik365c5312015-02-18 13:58:15 -08004951 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
4952
4953 /* If we're just plain full then async reclaim just slows us down. */
Josef Bacikbaee8792016-01-26 09:35:38 -05004954 if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh)
Josef Bacik365c5312015-02-18 13:58:15 -08004955 return 0;
4956
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004957 if (!btrfs_calc_reclaim_metadata_size(fs_info, space_info,
4958 system_chunk))
Liu Bo25ce4592014-09-10 12:58:50 +08004959 return 0;
Liu Bo25ce4592014-09-10 12:58:50 +08004960
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004961 return (used >= thresh && !btrfs_fs_closing(fs_info) &&
4962 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
Miao Xie21c7e752014-05-13 17:29:04 -07004963}
4964
Josef Bacikf91587e2018-11-21 14:03:10 -05004965static bool wake_all_tickets(struct list_head *head)
Miao Xie21c7e752014-05-13 17:29:04 -07004966{
Josef Bacik957780e2016-05-17 13:30:55 -04004967 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004968
Josef Bacik957780e2016-05-17 13:30:55 -04004969 while (!list_empty(head)) {
4970 ticket = list_first_entry(head, struct reserve_ticket, list);
4971 list_del_init(&ticket->list);
4972 ticket->error = -ENOSPC;
4973 wake_up(&ticket->wait);
Josef Bacikf91587e2018-11-21 14:03:10 -05004974 if (ticket->bytes != ticket->orig_bytes)
4975 return true;
Miao Xie21c7e752014-05-13 17:29:04 -07004976 }
Josef Bacikf91587e2018-11-21 14:03:10 -05004977 return false;
Miao Xie21c7e752014-05-13 17:29:04 -07004978}
4979
Josef Bacik957780e2016-05-17 13:30:55 -04004980/*
4981 * This is for normal flushers, we can wait all goddamned day if we want to. We
4982 * will loop and continuously try to flush as long as we are making progress.
4983 * We count progress as clearing off tickets each time we have to loop.
4984 */
Miao Xie21c7e752014-05-13 17:29:04 -07004985static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
4986{
4987 struct btrfs_fs_info *fs_info;
4988 struct btrfs_space_info *space_info;
4989 u64 to_reclaim;
4990 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04004991 int commit_cycles = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08004992 u64 last_tickets_id;
Miao Xie21c7e752014-05-13 17:29:04 -07004993
4994 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
4995 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4996
Josef Bacik957780e2016-05-17 13:30:55 -04004997 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004998 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
4999 false);
Josef Bacik957780e2016-05-17 13:30:55 -04005000 if (!to_reclaim) {
5001 space_info->flush = 0;
5002 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005003 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005004 }
Wang Xiaoguangce129652016-09-02 10:58:46 +08005005 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005006 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005007
5008 flush_state = FLUSH_DELAYED_ITEMS_NR;
5009 do {
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03005010 flush_space(fs_info, space_info, to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04005011 spin_lock(&space_info->lock);
5012 if (list_empty(&space_info->tickets)) {
5013 space_info->flush = 0;
5014 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005015 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005016 }
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005017 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info,
5018 space_info,
5019 false);
Wang Xiaoguangce129652016-09-02 10:58:46 +08005020 if (last_tickets_id == space_info->tickets_id) {
Josef Bacik957780e2016-05-17 13:30:55 -04005021 flush_state++;
5022 } else {
Wang Xiaoguangce129652016-09-02 10:58:46 +08005023 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005024 flush_state = FLUSH_DELAYED_ITEMS_NR;
5025 if (commit_cycles)
5026 commit_cycles--;
5027 }
5028
Josef Bacik450114f2018-11-21 14:03:08 -05005029 /*
5030 * We don't want to force a chunk allocation until we've tried
5031 * pretty hard to reclaim space. Think of the case where we
5032 * freed up a bunch of space and so have a lot of pinned space
5033 * to reclaim. We would rather use that than possibly create a
5034 * underutilized metadata chunk. So if this is our first run
5035 * through the flushing state machine skip ALLOC_CHUNK_FORCE and
5036 * commit the transaction. If nothing has changed the next go
5037 * around then we can force a chunk allocation.
5038 */
5039 if (flush_state == ALLOC_CHUNK_FORCE && !commit_cycles)
5040 flush_state++;
5041
Josef Bacik957780e2016-05-17 13:30:55 -04005042 if (flush_state > COMMIT_TRANS) {
5043 commit_cycles++;
5044 if (commit_cycles > 2) {
Josef Bacikf91587e2018-11-21 14:03:10 -05005045 if (wake_all_tickets(&space_info->tickets)) {
5046 flush_state = FLUSH_DELAYED_ITEMS_NR;
5047 commit_cycles--;
5048 } else {
5049 space_info->flush = 0;
5050 }
Josef Bacik957780e2016-05-17 13:30:55 -04005051 } else {
5052 flush_state = FLUSH_DELAYED_ITEMS_NR;
5053 }
5054 }
5055 spin_unlock(&space_info->lock);
5056 } while (flush_state <= COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07005057}
5058
5059void btrfs_init_async_reclaim_work(struct work_struct *work)
5060{
5061 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
5062}
5063
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005064static const enum btrfs_flush_state priority_flush_states[] = {
5065 FLUSH_DELAYED_ITEMS_NR,
5066 FLUSH_DELAYED_ITEMS,
5067 ALLOC_CHUNK,
5068};
5069
Josef Bacik957780e2016-05-17 13:30:55 -04005070static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info,
5071 struct btrfs_space_info *space_info,
5072 struct reserve_ticket *ticket)
5073{
5074 u64 to_reclaim;
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005075 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04005076
5077 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005078 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5079 false);
Josef Bacik957780e2016-05-17 13:30:55 -04005080 if (!to_reclaim) {
5081 spin_unlock(&space_info->lock);
5082 return;
5083 }
5084 spin_unlock(&space_info->lock);
5085
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005086 flush_state = 0;
Josef Bacik957780e2016-05-17 13:30:55 -04005087 do {
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005088 flush_space(fs_info, space_info, to_reclaim,
5089 priority_flush_states[flush_state]);
Josef Bacik957780e2016-05-17 13:30:55 -04005090 flush_state++;
5091 spin_lock(&space_info->lock);
5092 if (ticket->bytes == 0) {
5093 spin_unlock(&space_info->lock);
5094 return;
5095 }
5096 spin_unlock(&space_info->lock);
Josef Bacik8a1bbe12018-11-21 14:03:12 -05005097 } while (flush_state < ARRAY_SIZE(priority_flush_states));
Josef Bacik957780e2016-05-17 13:30:55 -04005098}
5099
5100static int wait_reserve_ticket(struct btrfs_fs_info *fs_info,
5101 struct btrfs_space_info *space_info,
Josef Bacikf91587e2018-11-21 14:03:10 -05005102 struct reserve_ticket *ticket)
Josef Bacik957780e2016-05-17 13:30:55 -04005103
5104{
5105 DEFINE_WAIT(wait);
Josef Bacikf91587e2018-11-21 14:03:10 -05005106 u64 reclaim_bytes = 0;
Josef Bacik957780e2016-05-17 13:30:55 -04005107 int ret = 0;
5108
5109 spin_lock(&space_info->lock);
5110 while (ticket->bytes > 0 && ticket->error == 0) {
5111 ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE);
5112 if (ret) {
5113 ret = -EINTR;
5114 break;
5115 }
5116 spin_unlock(&space_info->lock);
5117
5118 schedule();
5119
5120 finish_wait(&ticket->wait, &wait);
5121 spin_lock(&space_info->lock);
5122 }
5123 if (!ret)
5124 ret = ticket->error;
5125 if (!list_empty(&ticket->list))
5126 list_del_init(&ticket->list);
Josef Bacikf91587e2018-11-21 14:03:10 -05005127 if (ticket->bytes && ticket->bytes < ticket->orig_bytes)
5128 reclaim_bytes = ticket->orig_bytes - ticket->bytes;
Josef Bacik957780e2016-05-17 13:30:55 -04005129 spin_unlock(&space_info->lock);
5130
Josef Bacikf91587e2018-11-21 14:03:10 -05005131 if (reclaim_bytes)
5132 space_info_add_old_bytes(fs_info, space_info, reclaim_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005133 return ret;
5134}
5135
Josef Bacik663350a2011-11-03 22:54:25 -04005136/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005137 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5138 * @root - the root we're allocating for
Josef Bacik957780e2016-05-17 13:30:55 -04005139 * @space_info - the space info we want to allocate from
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005140 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04005141 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005142 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04005143 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005144 * with the block_rsv. If there is not enough space it will make an attempt to
5145 * flush out space to make room. It will do this by flushing delalloc if
5146 * possible or committing the transaction. If flush is 0 then no attempts to
5147 * regain reservations will be made and this will fail if there is not enough
5148 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005149 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005150static int __reserve_metadata_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik957780e2016-05-17 13:30:55 -04005151 struct btrfs_space_info *space_info,
5152 u64 orig_bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005153 enum btrfs_reserve_flush_enum flush,
5154 bool system_chunk)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005155{
Josef Bacik957780e2016-05-17 13:30:55 -04005156 struct reserve_ticket ticket;
Josef Bacik2bf64752011-09-26 17:12:22 -04005157 u64 used;
Josef Bacikf91587e2018-11-21 14:03:10 -05005158 u64 reclaim_bytes = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005159 int ret = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005160
Josef Bacik957780e2016-05-17 13:30:55 -04005161 ASSERT(orig_bytes);
Josef Bacik8ca17f02016-05-27 13:24:13 -04005162 ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL);
5163
Yan, Zhengf0486c62010-05-16 10:46:25 -04005164 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04005165 ret = -ENOSPC;
Liu Bo41361352017-02-13 15:42:21 -08005166 used = btrfs_space_info_used(space_info, true);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005167
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005168 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005169 * If we have enough space then hooray, make our reservation and carry
5170 * on. If not see if we can overcommit, and if we can, hooray carry on.
5171 * If not things get more complicated.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005172 */
Josef Bacik957780e2016-05-17 13:30:55 -04005173 if (used + orig_bytes <= space_info->total_bytes) {
Qu Wenruo480b9b42019-04-29 14:03:33 +08005174 update_bytes_may_use(fs_info, space_info, orig_bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005175 trace_btrfs_space_reservation(fs_info, "space_info",
5176 space_info->flags, orig_bytes, 1);
Josef Bacik957780e2016-05-17 13:30:55 -04005177 ret = 0;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005178 } else if (can_overcommit(fs_info, space_info, orig_bytes, flush,
5179 system_chunk)) {
Qu Wenruo480b9b42019-04-29 14:03:33 +08005180 update_bytes_may_use(fs_info, space_info, orig_bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005181 trace_btrfs_space_reservation(fs_info, "space_info",
5182 space_info->flags, orig_bytes, 1);
Josef Bacik44734ed2012-09-28 16:04:19 -04005183 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04005184 }
5185
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005186 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005187 * If we couldn't make a reservation then setup our reservation ticket
5188 * and kick the async worker if it's not already running.
Miao Xie08e007d2012-10-16 11:33:38 +00005189 *
Josef Bacik957780e2016-05-17 13:30:55 -04005190 * If we are a priority flusher then we just need to add our ticket to
5191 * the list and we will do our own flushing further down.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005192 */
Josef Bacik72bcd992012-12-18 15:16:34 -05005193 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacikf91587e2018-11-21 14:03:10 -05005194 ticket.orig_bytes = orig_bytes;
Josef Bacik957780e2016-05-17 13:30:55 -04005195 ticket.bytes = orig_bytes;
5196 ticket.error = 0;
5197 init_waitqueue_head(&ticket.wait);
5198 if (flush == BTRFS_RESERVE_FLUSH_ALL) {
5199 list_add_tail(&ticket.list, &space_info->tickets);
5200 if (!space_info->flush) {
5201 space_info->flush = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005202 trace_btrfs_trigger_flush(fs_info,
Josef Bacikf376df22016-03-25 13:25:56 -04005203 space_info->flags,
5204 orig_bytes, flush,
5205 "enospc");
Josef Bacik957780e2016-05-17 13:30:55 -04005206 queue_work(system_unbound_wq,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005207 &fs_info->async_reclaim_work);
Josef Bacik957780e2016-05-17 13:30:55 -04005208 }
5209 } else {
5210 list_add_tail(&ticket.list,
5211 &space_info->priority_tickets);
5212 }
Miao Xie21c7e752014-05-13 17:29:04 -07005213 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
5214 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04005215 /*
5216 * We will do the space reservation dance during log replay,
5217 * which means we won't have fs_info->fs_root set, so don't do
5218 * the async reclaim as we will panic.
5219 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005220 if (!test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags) &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005221 need_do_async_reclaim(fs_info, space_info,
5222 used, system_chunk) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005223 !work_busy(&fs_info->async_reclaim_work)) {
5224 trace_btrfs_trigger_flush(fs_info, space_info->flags,
5225 orig_bytes, flush, "preempt");
Miao Xie21c7e752014-05-13 17:29:04 -07005226 queue_work(system_unbound_wq,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005227 &fs_info->async_reclaim_work);
Josef Bacikf376df22016-03-25 13:25:56 -04005228 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005229 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005230 spin_unlock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00005231 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik957780e2016-05-17 13:30:55 -04005232 return ret;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005233
Josef Bacik957780e2016-05-17 13:30:55 -04005234 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacikf91587e2018-11-21 14:03:10 -05005235 return wait_reserve_ticket(fs_info, space_info, &ticket);
Miao Xie08e007d2012-10-16 11:33:38 +00005236
Josef Bacik957780e2016-05-17 13:30:55 -04005237 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005238 priority_reclaim_metadata_space(fs_info, space_info, &ticket);
Josef Bacik957780e2016-05-17 13:30:55 -04005239 spin_lock(&space_info->lock);
5240 if (ticket.bytes) {
Josef Bacikf91587e2018-11-21 14:03:10 -05005241 if (ticket.bytes < orig_bytes)
5242 reclaim_bytes = orig_bytes - ticket.bytes;
Josef Bacik957780e2016-05-17 13:30:55 -04005243 list_del_init(&ticket.list);
5244 ret = -ENOSPC;
5245 }
5246 spin_unlock(&space_info->lock);
Josef Bacikf91587e2018-11-21 14:03:10 -05005247
5248 if (reclaim_bytes)
5249 space_info_add_old_bytes(fs_info, space_info, reclaim_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005250 ASSERT(list_empty(&ticket.list));
5251 return ret;
5252}
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005253
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005254/**
5255 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5256 * @root - the root we're allocating for
5257 * @block_rsv - the block_rsv we're allocating for
5258 * @orig_bytes - the number of bytes we want
5259 * @flush - whether or not we can flush to make our reservation
5260 *
Andrea Gelmini52042d82018-11-28 12:05:13 +01005261 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005262 * with the block_rsv. If there is not enough space it will make an attempt to
5263 * flush out space to make room. It will do this by flushing delalloc if
5264 * possible or committing the transaction. If flush is 0 then no attempts to
5265 * regain reservations will be made and this will fail if there is not enough
5266 * space already.
5267 */
5268static int reserve_metadata_bytes(struct btrfs_root *root,
5269 struct btrfs_block_rsv *block_rsv,
5270 u64 orig_bytes,
5271 enum btrfs_reserve_flush_enum flush)
5272{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005273 struct btrfs_fs_info *fs_info = root->fs_info;
5274 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04005275 int ret;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005276 bool system_chunk = (root == fs_info->chunk_root);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005277
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005278 ret = __reserve_metadata_bytes(fs_info, block_rsv->space_info,
5279 orig_bytes, flush, system_chunk);
Josef Bacik5d803662013-02-07 16:06:02 -05005280 if (ret == -ENOSPC &&
5281 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
Josef Bacik5d803662013-02-07 16:06:02 -05005282 if (block_rsv != global_rsv &&
5283 !block_rsv_use_bytes(global_rsv, orig_bytes))
5284 ret = 0;
5285 }
Nikolay Borisov9a3daff2017-12-15 12:05:37 +02005286 if (ret == -ENOSPC) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005287 trace_btrfs_space_reservation(fs_info, "space_info:enospc",
Josef Bacik957780e2016-05-17 13:30:55 -04005288 block_rsv->space_info->flags,
5289 orig_bytes, 1);
Nikolay Borisov9a3daff2017-12-15 12:05:37 +02005290
5291 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG))
5292 dump_space_info(fs_info, block_rsv->space_info,
5293 orig_bytes, 0);
5294 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005295 return ret;
5296}
5297
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005298static struct btrfs_block_rsv *get_block_rsv(
5299 const struct btrfs_trans_handle *trans,
5300 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005301{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005302 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik4c13d752011-08-30 11:31:29 -04005303 struct btrfs_block_rsv *block_rsv = NULL;
5304
Alexandru Moisee9cf4392015-09-09 00:18:50 +00005305 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005306 (root == fs_info->csum_root && trans->adding_csums) ||
5307 (root == fs_info->uuid_root))
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02005308 block_rsv = trans->block_rsv;
5309
Josef Bacik4c13d752011-08-30 11:31:29 -04005310 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005311 block_rsv = root->block_rsv;
5312
5313 if (!block_rsv)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005314 block_rsv = &fs_info->empty_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005315
5316 return block_rsv;
5317}
5318
5319static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
5320 u64 num_bytes)
5321{
5322 int ret = -ENOSPC;
5323 spin_lock(&block_rsv->lock);
5324 if (block_rsv->reserved >= num_bytes) {
5325 block_rsv->reserved -= num_bytes;
5326 if (block_rsv->reserved < block_rsv->size)
5327 block_rsv->full = 0;
5328 ret = 0;
5329 }
5330 spin_unlock(&block_rsv->lock);
5331 return ret;
5332}
5333
5334static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08005335 u64 num_bytes, bool update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005336{
5337 spin_lock(&block_rsv->lock);
5338 block_rsv->reserved += num_bytes;
5339 if (update_size)
5340 block_rsv->size += num_bytes;
5341 else if (block_rsv->reserved >= block_rsv->size)
5342 block_rsv->full = 1;
5343 spin_unlock(&block_rsv->lock);
5344}
5345
Josef Bacikd52be812013-05-29 14:54:47 -04005346int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
5347 struct btrfs_block_rsv *dest, u64 num_bytes,
5348 int min_factor)
5349{
5350 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5351 u64 min_bytes;
5352
5353 if (global_rsv->space_info != dest->space_info)
5354 return -ENOSPC;
5355
5356 spin_lock(&global_rsv->lock);
5357 min_bytes = div_factor(global_rsv->size, min_factor);
5358 if (global_rsv->reserved < min_bytes + num_bytes) {
5359 spin_unlock(&global_rsv->lock);
5360 return -ENOSPC;
5361 }
5362 global_rsv->reserved -= num_bytes;
5363 if (global_rsv->reserved < global_rsv->size)
5364 global_rsv->full = 0;
5365 spin_unlock(&global_rsv->lock);
5366
Lu Fengqi3a584172018-08-04 21:10:55 +08005367 block_rsv_add_bytes(dest, num_bytes, true);
Josef Bacikd52be812013-05-29 14:54:47 -04005368 return 0;
5369}
5370
Josef Bacikba2c4d42018-12-03 10:20:33 -05005371/**
5372 * btrfs_migrate_to_delayed_refs_rsv - transfer bytes to our delayed refs rsv.
5373 * @fs_info - the fs info for our fs.
5374 * @src - the source block rsv to transfer from.
5375 * @num_bytes - the number of bytes to transfer.
5376 *
5377 * This transfers up to the num_bytes amount from the src rsv to the
5378 * delayed_refs_rsv. Any extra bytes are returned to the space info.
5379 */
5380void btrfs_migrate_to_delayed_refs_rsv(struct btrfs_fs_info *fs_info,
5381 struct btrfs_block_rsv *src,
5382 u64 num_bytes)
5383{
5384 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
5385 u64 to_free = 0;
5386
5387 spin_lock(&src->lock);
5388 src->reserved -= num_bytes;
5389 src->size -= num_bytes;
5390 spin_unlock(&src->lock);
5391
5392 spin_lock(&delayed_refs_rsv->lock);
5393 if (delayed_refs_rsv->size > delayed_refs_rsv->reserved) {
5394 u64 delta = delayed_refs_rsv->size -
5395 delayed_refs_rsv->reserved;
5396 if (num_bytes > delta) {
5397 to_free = num_bytes - delta;
5398 num_bytes = delta;
5399 }
5400 } else {
5401 to_free = num_bytes;
5402 num_bytes = 0;
5403 }
5404
5405 if (num_bytes)
5406 delayed_refs_rsv->reserved += num_bytes;
5407 if (delayed_refs_rsv->reserved >= delayed_refs_rsv->size)
5408 delayed_refs_rsv->full = 1;
5409 spin_unlock(&delayed_refs_rsv->lock);
5410
5411 if (num_bytes)
5412 trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
5413 0, num_bytes, 1);
5414 if (to_free)
5415 space_info_add_old_bytes(fs_info, delayed_refs_rsv->space_info,
5416 to_free);
5417}
5418
5419/**
5420 * btrfs_delayed_refs_rsv_refill - refill based on our delayed refs usage.
5421 * @fs_info - the fs_info for our fs.
5422 * @flush - control how we can flush for this reservation.
5423 *
5424 * This will refill the delayed block_rsv up to 1 items size worth of space and
5425 * will return -ENOSPC if we can't make the reservation.
5426 */
5427int btrfs_delayed_refs_rsv_refill(struct btrfs_fs_info *fs_info,
5428 enum btrfs_reserve_flush_enum flush)
5429{
5430 struct btrfs_block_rsv *block_rsv = &fs_info->delayed_refs_rsv;
5431 u64 limit = btrfs_calc_trans_metadata_size(fs_info, 1);
5432 u64 num_bytes = 0;
5433 int ret = -ENOSPC;
5434
5435 spin_lock(&block_rsv->lock);
5436 if (block_rsv->reserved < block_rsv->size) {
5437 num_bytes = block_rsv->size - block_rsv->reserved;
5438 num_bytes = min(num_bytes, limit);
5439 }
5440 spin_unlock(&block_rsv->lock);
5441
5442 if (!num_bytes)
5443 return 0;
5444
5445 ret = reserve_metadata_bytes(fs_info->extent_root, block_rsv,
5446 num_bytes, flush);
5447 if (ret)
5448 return ret;
5449 block_rsv_add_bytes(block_rsv, num_bytes, 0);
5450 trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
5451 0, num_bytes, 1);
5452 return 0;
5453}
5454
Josef Bacik957780e2016-05-17 13:30:55 -04005455/*
5456 * This is for space we already have accounted in space_info->bytes_may_use, so
5457 * basically when we're returning space from block_rsv's.
5458 */
5459static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
5460 struct btrfs_space_info *space_info,
5461 u64 num_bytes)
5462{
5463 struct reserve_ticket *ticket;
5464 struct list_head *head;
5465 u64 used;
5466 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH;
5467 bool check_overcommit = false;
5468
5469 spin_lock(&space_info->lock);
5470 head = &space_info->priority_tickets;
5471
5472 /*
5473 * If we are over our limit then we need to check and see if we can
5474 * overcommit, and if we can't then we just need to free up our space
5475 * and not satisfy any requests.
5476 */
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03005477 used = btrfs_space_info_used(space_info, true);
Josef Bacik957780e2016-05-17 13:30:55 -04005478 if (used - num_bytes >= space_info->total_bytes)
5479 check_overcommit = true;
5480again:
5481 while (!list_empty(head) && num_bytes) {
5482 ticket = list_first_entry(head, struct reserve_ticket,
5483 list);
5484 /*
5485 * We use 0 bytes because this space is already reserved, so
5486 * adding the ticket space would be a double count.
5487 */
5488 if (check_overcommit &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005489 !can_overcommit(fs_info, space_info, 0, flush, false))
Josef Bacik957780e2016-05-17 13:30:55 -04005490 break;
5491 if (num_bytes >= ticket->bytes) {
5492 list_del_init(&ticket->list);
5493 num_bytes -= ticket->bytes;
5494 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005495 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005496 wake_up(&ticket->wait);
5497 } else {
5498 ticket->bytes -= num_bytes;
5499 num_bytes = 0;
5500 }
5501 }
5502
5503 if (num_bytes && head == &space_info->priority_tickets) {
5504 head = &space_info->tickets;
5505 flush = BTRFS_RESERVE_FLUSH_ALL;
5506 goto again;
5507 }
Qu Wenruo480b9b42019-04-29 14:03:33 +08005508 update_bytes_may_use(fs_info, space_info, -num_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005509 trace_btrfs_space_reservation(fs_info, "space_info",
5510 space_info->flags, num_bytes, 0);
5511 spin_unlock(&space_info->lock);
5512}
5513
5514/*
5515 * This is for newly allocated space that isn't accounted in
5516 * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent
5517 * we use this helper.
5518 */
5519static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
5520 struct btrfs_space_info *space_info,
5521 u64 num_bytes)
5522{
5523 struct reserve_ticket *ticket;
5524 struct list_head *head = &space_info->priority_tickets;
5525
5526again:
5527 while (!list_empty(head) && num_bytes) {
5528 ticket = list_first_entry(head, struct reserve_ticket,
5529 list);
5530 if (num_bytes >= ticket->bytes) {
5531 trace_btrfs_space_reservation(fs_info, "space_info",
5532 space_info->flags,
5533 ticket->bytes, 1);
5534 list_del_init(&ticket->list);
5535 num_bytes -= ticket->bytes;
Qu Wenruo480b9b42019-04-29 14:03:33 +08005536 update_bytes_may_use(fs_info, space_info,
5537 ticket->bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005538 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005539 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005540 wake_up(&ticket->wait);
5541 } else {
5542 trace_btrfs_space_reservation(fs_info, "space_info",
5543 space_info->flags,
5544 num_bytes, 1);
Qu Wenruo480b9b42019-04-29 14:03:33 +08005545 update_bytes_may_use(fs_info, space_info, num_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005546 ticket->bytes -= num_bytes;
5547 num_bytes = 0;
5548 }
5549 }
5550
5551 if (num_bytes && head == &space_info->priority_tickets) {
5552 head = &space_info->tickets;
5553 goto again;
5554 }
5555}
5556
Josef Bacik69fe2d72017-10-19 14:15:57 -04005557static u64 block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005558 struct btrfs_block_rsv *block_rsv,
Qu Wenruoff6bc372017-12-21 13:42:04 +08005559 struct btrfs_block_rsv *dest, u64 num_bytes,
5560 u64 *qgroup_to_release_ret)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005561{
5562 struct btrfs_space_info *space_info = block_rsv->space_info;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005563 u64 qgroup_to_release = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005564 u64 ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005565
5566 spin_lock(&block_rsv->lock);
Qu Wenruoff6bc372017-12-21 13:42:04 +08005567 if (num_bytes == (u64)-1) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005568 num_bytes = block_rsv->size;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005569 qgroup_to_release = block_rsv->qgroup_rsv_size;
5570 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005571 block_rsv->size -= num_bytes;
5572 if (block_rsv->reserved >= block_rsv->size) {
5573 num_bytes = block_rsv->reserved - block_rsv->size;
5574 block_rsv->reserved = block_rsv->size;
5575 block_rsv->full = 1;
5576 } else {
5577 num_bytes = 0;
5578 }
Qu Wenruoff6bc372017-12-21 13:42:04 +08005579 if (block_rsv->qgroup_rsv_reserved >= block_rsv->qgroup_rsv_size) {
5580 qgroup_to_release = block_rsv->qgroup_rsv_reserved -
5581 block_rsv->qgroup_rsv_size;
5582 block_rsv->qgroup_rsv_reserved = block_rsv->qgroup_rsv_size;
5583 } else {
5584 qgroup_to_release = 0;
5585 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005586 spin_unlock(&block_rsv->lock);
5587
Josef Bacik69fe2d72017-10-19 14:15:57 -04005588 ret = num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005589 if (num_bytes > 0) {
5590 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00005591 spin_lock(&dest->lock);
5592 if (!dest->full) {
5593 u64 bytes_to_add;
5594
5595 bytes_to_add = dest->size - dest->reserved;
5596 bytes_to_add = min(num_bytes, bytes_to_add);
5597 dest->reserved += bytes_to_add;
5598 if (dest->reserved >= dest->size)
5599 dest->full = 1;
5600 num_bytes -= bytes_to_add;
5601 }
5602 spin_unlock(&dest->lock);
5603 }
Josef Bacik957780e2016-05-17 13:30:55 -04005604 if (num_bytes)
5605 space_info_add_old_bytes(fs_info, space_info,
5606 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005607 }
Qu Wenruoff6bc372017-12-21 13:42:04 +08005608 if (qgroup_to_release_ret)
5609 *qgroup_to_release_ret = qgroup_to_release;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005610 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005611}
5612
Josef Bacik25d609f2016-03-25 13:25:48 -04005613int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src,
5614 struct btrfs_block_rsv *dst, u64 num_bytes,
Lu Fengqi3a584172018-08-04 21:10:55 +08005615 bool update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005616{
5617 int ret;
5618
5619 ret = block_rsv_use_bytes(src, num_bytes);
5620 if (ret)
5621 return ret;
5622
Josef Bacik25d609f2016-03-25 13:25:48 -04005623 block_rsv_add_bytes(dst, num_bytes, update_size);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005624 return 0;
5625}
5626
Miao Xie66d8f3d2012-09-06 04:02:28 -06005627void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005628{
5629 memset(rsv, 0, sizeof(*rsv));
5630 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06005631 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005632}
5633
Josef Bacik69fe2d72017-10-19 14:15:57 -04005634void btrfs_init_metadata_block_rsv(struct btrfs_fs_info *fs_info,
5635 struct btrfs_block_rsv *rsv,
5636 unsigned short type)
5637{
5638 btrfs_init_block_rsv(rsv, type);
5639 rsv->space_info = __find_space_info(fs_info,
5640 BTRFS_BLOCK_GROUP_METADATA);
5641}
5642
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005643struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_fs_info *fs_info,
Miao Xie66d8f3d2012-09-06 04:02:28 -06005644 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005645{
5646 struct btrfs_block_rsv *block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005647
5648 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
5649 if (!block_rsv)
5650 return NULL;
5651
Josef Bacik69fe2d72017-10-19 14:15:57 -04005652 btrfs_init_metadata_block_rsv(fs_info, block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005653 return block_rsv;
5654}
5655
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005656void btrfs_free_block_rsv(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005657 struct btrfs_block_rsv *rsv)
5658{
Josef Bacik2aaa6652012-08-29 14:27:18 -04005659 if (!rsv)
5660 return;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005661 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Josef Bacikdabdb642011-08-08 12:50:18 -04005662 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005663}
5664
Miao Xie08e007d2012-10-16 11:33:38 +00005665int btrfs_block_rsv_add(struct btrfs_root *root,
5666 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
5667 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005668{
5669 int ret;
5670
5671 if (num_bytes == 0)
5672 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005673
Miao Xie61b520a2011-11-10 20:45:05 -05005674 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Lu Fengqi5a2cb252018-08-04 21:10:56 +08005675 if (!ret)
Lu Fengqi3a584172018-08-04 21:10:55 +08005676 block_rsv_add_bytes(block_rsv, num_bytes, true);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005677
Yan, Zhengf0486c62010-05-16 10:46:25 -04005678 return ret;
5679}
5680
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005681int btrfs_block_rsv_check(struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005682{
5683 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005684 int ret = -ENOSPC;
5685
5686 if (!block_rsv)
5687 return 0;
5688
5689 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04005690 num_bytes = div_factor(block_rsv->size, min_factor);
5691 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005692 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005693 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005694
Josef Bacik36ba0222011-10-18 12:15:48 -04005695 return ret;
5696}
5697
Miao Xie08e007d2012-10-16 11:33:38 +00005698int btrfs_block_rsv_refill(struct btrfs_root *root,
5699 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5700 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04005701{
5702 u64 num_bytes = 0;
5703 int ret = -ENOSPC;
5704
5705 if (!block_rsv)
5706 return 0;
5707
5708 spin_lock(&block_rsv->lock);
5709 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005710 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005711 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005712 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005713 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005714 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005715
Yan, Zhengf0486c62010-05-16 10:46:25 -04005716 if (!ret)
5717 return 0;
5718
Miao Xieaa38a712011-11-18 17:43:00 +08005719 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005720 if (!ret) {
Lu Fengqi3a584172018-08-04 21:10:55 +08005721 block_rsv_add_bytes(block_rsv, num_bytes, false);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005722 return 0;
5723 }
5724
Josef Bacik13553e52011-08-08 13:33:21 -04005725 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005726}
5727
Josef Bacikba2c4d42018-12-03 10:20:33 -05005728static u64 __btrfs_block_rsv_release(struct btrfs_fs_info *fs_info,
5729 struct btrfs_block_rsv *block_rsv,
5730 u64 num_bytes, u64 *qgroup_to_release)
5731{
5732 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5733 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_refs_rsv;
5734 struct btrfs_block_rsv *target = delayed_rsv;
5735
5736 if (target->full || target == block_rsv)
5737 target = global_rsv;
5738
5739 if (block_rsv->space_info != target->space_info)
5740 target = NULL;
5741
5742 return block_rsv_release_bytes(fs_info, block_rsv, target, num_bytes,
5743 qgroup_to_release);
5744}
5745
5746void btrfs_block_rsv_release(struct btrfs_fs_info *fs_info,
5747 struct btrfs_block_rsv *block_rsv,
5748 u64 num_bytes)
5749{
5750 __btrfs_block_rsv_release(fs_info, block_rsv, num_bytes, NULL);
5751}
5752
Josef Bacik69fe2d72017-10-19 14:15:57 -04005753/**
5754 * btrfs_inode_rsv_release - release any excessive reservation.
5755 * @inode - the inode we need to release from.
Qu Wenruo43b18592017-12-12 15:34:32 +08005756 * @qgroup_free - free or convert qgroup meta.
5757 * Unlike normal operation, qgroup meta reservation needs to know if we are
5758 * freeing qgroup reservation or just converting it into per-trans. Normally
5759 * @qgroup_free is true for error handling, and false for normal release.
Josef Bacik69fe2d72017-10-19 14:15:57 -04005760 *
5761 * This is the same as btrfs_block_rsv_release, except that it handles the
5762 * tracepoint for the reservation.
5763 */
Qu Wenruo43b18592017-12-12 15:34:32 +08005764static void btrfs_inode_rsv_release(struct btrfs_inode *inode, bool qgroup_free)
Josef Bacik69fe2d72017-10-19 14:15:57 -04005765{
5766 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005767 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
5768 u64 released = 0;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005769 u64 qgroup_to_release = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005770
5771 /*
5772 * Since we statically set the block_rsv->size we just want to say we
5773 * are releasing 0 bytes, and then we'll just get the reservation over
5774 * the size free'd.
5775 */
Josef Bacikba2c4d42018-12-03 10:20:33 -05005776 released = __btrfs_block_rsv_release(fs_info, block_rsv, 0,
5777 &qgroup_to_release);
Josef Bacik69fe2d72017-10-19 14:15:57 -04005778 if (released > 0)
5779 trace_btrfs_space_reservation(fs_info, "delalloc",
5780 btrfs_ino(inode), released, 0);
Qu Wenruo43b18592017-12-12 15:34:32 +08005781 if (qgroup_free)
Qu Wenruoff6bc372017-12-21 13:42:04 +08005782 btrfs_qgroup_free_meta_prealloc(inode->root, qgroup_to_release);
Qu Wenruo43b18592017-12-12 15:34:32 +08005783 else
Qu Wenruoff6bc372017-12-21 13:42:04 +08005784 btrfs_qgroup_convert_reserved_meta(inode->root,
5785 qgroup_to_release);
Josef Bacik69fe2d72017-10-19 14:15:57 -04005786}
5787
Josef Bacikba2c4d42018-12-03 10:20:33 -05005788/**
5789 * btrfs_delayed_refs_rsv_release - release a ref head's reservation.
5790 * @fs_info - the fs_info for our fs.
5791 * @nr - the number of items to drop.
5792 *
5793 * This drops the delayed ref head's count from the delayed refs rsv and frees
5794 * any excess reservation we had.
5795 */
5796void btrfs_delayed_refs_rsv_release(struct btrfs_fs_info *fs_info, int nr)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005797{
Josef Bacikba2c4d42018-12-03 10:20:33 -05005798 struct btrfs_block_rsv *block_rsv = &fs_info->delayed_refs_rsv;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005799 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikba2c4d42018-12-03 10:20:33 -05005800 u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, nr);
5801 u64 released = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005802
Josef Bacikba2c4d42018-12-03 10:20:33 -05005803 released = block_rsv_release_bytes(fs_info, block_rsv, global_rsv,
5804 num_bytes, NULL);
5805 if (released)
5806 trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
5807 0, released, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005808}
5809
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005810static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5811{
5812 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5813 struct btrfs_space_info *sinfo = block_rsv->space_info;
5814 u64 num_bytes;
5815
Josef Bacikae2e4722016-05-27 12:58:35 -04005816 /*
5817 * The global block rsv is based on the size of the extent tree, the
5818 * checksum tree and the root tree. If the fs is empty we want to set
5819 * it to a minimal amount for safety.
5820 */
5821 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) +
5822 btrfs_root_used(&fs_info->csum_root->root_item) +
5823 btrfs_root_used(&fs_info->tree_root->root_item);
5824 num_bytes = max_t(u64, num_bytes, SZ_16M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005825
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005826 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005827 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005828
Byongho Leeee221842015-12-15 01:42:10 +09005829 block_rsv->size = min_t(u64, num_bytes, SZ_512M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005830
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005831 if (block_rsv->reserved < block_rsv->size) {
Liu Bo41361352017-02-13 15:42:21 -08005832 num_bytes = btrfs_space_info_used(sinfo, true);
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005833 if (sinfo->total_bytes > num_bytes) {
5834 num_bytes = sinfo->total_bytes - num_bytes;
5835 num_bytes = min(num_bytes,
5836 block_rsv->size - block_rsv->reserved);
5837 block_rsv->reserved += num_bytes;
Qu Wenruo480b9b42019-04-29 14:03:33 +08005838 update_bytes_may_use(fs_info, sinfo, num_bytes);
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005839 trace_btrfs_space_reservation(fs_info, "space_info",
5840 sinfo->flags, num_bytes,
5841 1);
5842 }
5843 } else if (block_rsv->reserved > block_rsv->size) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005844 num_bytes = block_rsv->reserved - block_rsv->size;
Qu Wenruo480b9b42019-04-29 14:03:33 +08005845 update_bytes_may_use(fs_info, sinfo, -num_bytes);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005846 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005847 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005848 block_rsv->reserved = block_rsv->size;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005849 }
David Sterba182608c2011-05-05 13:13:16 +02005850
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005851 if (block_rsv->reserved == block_rsv->size)
5852 block_rsv->full = 1;
5853 else
5854 block_rsv->full = 0;
5855
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005856 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005857 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005858}
5859
Yan, Zhengf0486c62010-05-16 10:46:25 -04005860static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5861{
5862 struct btrfs_space_info *space_info;
5863
5864 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5865 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005866
5867 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005868 fs_info->global_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005869 fs_info->trans_block_rsv.space_info = space_info;
5870 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005871 fs_info->delayed_block_rsv.space_info = space_info;
Josef Bacikba2c4d42018-12-03 10:20:33 -05005872 fs_info->delayed_refs_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005873
Josef Bacikba2c4d42018-12-03 10:20:33 -05005874 fs_info->extent_root->block_rsv = &fs_info->delayed_refs_rsv;
5875 fs_info->csum_root->block_rsv = &fs_info->delayed_refs_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005876 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5877 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005878 if (fs_info->quota_root)
5879 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005880 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005881
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005882 update_global_block_rsv(fs_info);
5883}
5884
5885static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5886{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005887 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
Qu Wenruoff6bc372017-12-21 13:42:04 +08005888 (u64)-1, NULL);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005889 WARN_ON(fs_info->trans_block_rsv.size > 0);
5890 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5891 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5892 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04005893 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5894 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikba2c4d42018-12-03 10:20:33 -05005895 WARN_ON(fs_info->delayed_refs_rsv.reserved > 0);
5896 WARN_ON(fs_info->delayed_refs_rsv.size > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04005897}
5898
Josef Bacikba2c4d42018-12-03 10:20:33 -05005899/*
5900 * btrfs_update_delayed_refs_rsv - adjust the size of the delayed refs rsv
5901 * @trans - the trans that may have generated delayed refs
5902 *
5903 * This is to be called anytime we may have adjusted trans->delayed_ref_updates,
5904 * it'll calculate the additional size and add it to the delayed_refs_rsv.
5905 */
5906void btrfs_update_delayed_refs_rsv(struct btrfs_trans_handle *trans)
5907{
5908 struct btrfs_fs_info *fs_info = trans->fs_info;
5909 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_refs_rsv;
5910 u64 num_bytes;
5911
5912 if (!trans->delayed_ref_updates)
5913 return;
5914
5915 num_bytes = btrfs_calc_trans_metadata_size(fs_info,
5916 trans->delayed_ref_updates);
5917 spin_lock(&delayed_rsv->lock);
5918 delayed_rsv->size += num_bytes;
5919 delayed_rsv->full = 0;
5920 spin_unlock(&delayed_rsv->lock);
5921 trans->delayed_ref_updates = 0;
5922}
Yan, Zhenga22285a2010-05-16 10:48:46 -04005923
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005924/*
5925 * To be called after all the new block groups attached to the transaction
5926 * handle have been created (btrfs_create_pending_block_groups()).
5927 */
5928void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5929{
Jeff Mahoney64b63582016-06-20 17:23:41 -04005930 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005931
5932 if (!trans->chunk_bytes_reserved)
5933 return;
5934
5935 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5936
5937 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
Qu Wenruoff6bc372017-12-21 13:42:04 +08005938 trans->chunk_bytes_reserved, NULL);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005939 trans->chunk_bytes_reserved = 0;
5940}
5941
Miao Xied5c12072013-02-28 10:04:33 +00005942/*
5943 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
5944 * root: the root of the parent directory
5945 * rsv: block reservation
5946 * items: the number of items that we need do reservation
Lu Fengqia5b7f422018-08-09 09:46:04 +08005947 * use_global_rsv: allow fallback to the global block reservation
Miao Xied5c12072013-02-28 10:04:33 +00005948 *
5949 * This function is used to reserve the space for snapshot/subvolume
5950 * creation and deletion. Those operations are different with the
5951 * common file/directory operations, they change two fs/file trees
5952 * and root tree, the number of items that the qgroup reserves is
5953 * different with the free space reservation. So we can not use
Nicholas D Steeves01327612016-05-19 21:18:45 -04005954 * the space reservation mechanism in start_transaction().
Miao Xied5c12072013-02-28 10:04:33 +00005955 */
5956int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
Lu Fengqia5b7f422018-08-09 09:46:04 +08005957 struct btrfs_block_rsv *rsv, int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005958 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005959{
Lu Fengqia5b7f422018-08-09 09:46:04 +08005960 u64 qgroup_num_bytes = 0;
Miao Xied5c12072013-02-28 10:04:33 +00005961 u64 num_bytes;
5962 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005963 struct btrfs_fs_info *fs_info = root->fs_info;
5964 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005965
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005966 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
Miao Xied5c12072013-02-28 10:04:33 +00005967 /* One for parent inode, two for dir entries */
Lu Fengqia5b7f422018-08-09 09:46:04 +08005968 qgroup_num_bytes = 3 * fs_info->nodesize;
5969 ret = btrfs_qgroup_reserve_meta_prealloc(root,
5970 qgroup_num_bytes, true);
Miao Xied5c12072013-02-28 10:04:33 +00005971 if (ret)
5972 return ret;
Miao Xied5c12072013-02-28 10:04:33 +00005973 }
5974
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005975 num_bytes = btrfs_calc_trans_metadata_size(fs_info, items);
5976 rsv->space_info = __find_space_info(fs_info,
Miao Xied5c12072013-02-28 10:04:33 +00005977 BTRFS_BLOCK_GROUP_METADATA);
5978 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5979 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005980
5981 if (ret == -ENOSPC && use_global_rsv)
Lu Fengqi3a584172018-08-04 21:10:55 +08005982 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, true);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005983
Lu Fengqia5b7f422018-08-09 09:46:04 +08005984 if (ret && qgroup_num_bytes)
5985 btrfs_qgroup_free_meta_prealloc(root, qgroup_num_bytes);
Miao Xied5c12072013-02-28 10:04:33 +00005986
5987 return ret;
5988}
5989
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005990void btrfs_subvolume_release_metadata(struct btrfs_fs_info *fs_info,
David Sterba7775c812017-02-10 19:18:18 +01005991 struct btrfs_block_rsv *rsv)
Miao Xied5c12072013-02-28 10:04:33 +00005992{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005993 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005994}
5995
Josef Bacik69fe2d72017-10-19 14:15:57 -04005996static void btrfs_calculate_inode_block_rsv_size(struct btrfs_fs_info *fs_info,
5997 struct btrfs_inode *inode)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005998{
Josef Bacik69fe2d72017-10-19 14:15:57 -04005999 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
6000 u64 reserve_size = 0;
Qu Wenruoff6bc372017-12-21 13:42:04 +08006001 u64 qgroup_rsv_size = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04006002 u64 csum_leaves;
6003 unsigned outstanding_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006004
Josef Bacik69fe2d72017-10-19 14:15:57 -04006005 lockdep_assert_held(&inode->lock);
6006 outstanding_extents = inode->outstanding_extents;
6007 if (outstanding_extents)
6008 reserve_size = btrfs_calc_trans_metadata_size(fs_info,
6009 outstanding_extents + 1);
6010 csum_leaves = btrfs_csum_bytes_to_leaves(fs_info,
6011 inode->csum_bytes);
6012 reserve_size += btrfs_calc_trans_metadata_size(fs_info,
6013 csum_leaves);
Qu Wenruoff6bc372017-12-21 13:42:04 +08006014 /*
6015 * For qgroup rsv, the calculation is very simple:
6016 * account one nodesize for each outstanding extent
6017 *
6018 * This is overestimating in most cases.
6019 */
Nikolay Borisov139a5612019-03-18 17:45:20 +02006020 qgroup_rsv_size = (u64)outstanding_extents * fs_info->nodesize;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006021
Josef Bacik69fe2d72017-10-19 14:15:57 -04006022 spin_lock(&block_rsv->lock);
6023 block_rsv->size = reserve_size;
Qu Wenruoff6bc372017-12-21 13:42:04 +08006024 block_rsv->qgroup_rsv_size = qgroup_rsv_size;
Josef Bacik69fe2d72017-10-19 14:15:57 -04006025 spin_unlock(&block_rsv->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006026}
6027
Josef Bacikc8eaeac72019-04-10 15:56:10 -04006028static void calc_inode_reservations(struct btrfs_fs_info *fs_info,
6029 u64 num_bytes, u64 *meta_reserve,
6030 u64 *qgroup_reserve)
6031{
6032 u64 nr_extents = count_max_extents(num_bytes);
6033 u64 csum_leaves = btrfs_csum_bytes_to_leaves(fs_info, num_bytes);
6034
6035 /* We add one for the inode update at finish ordered time */
6036 *meta_reserve = btrfs_calc_trans_metadata_size(fs_info,
6037 nr_extents + csum_leaves + 1);
6038 *qgroup_reserve = nr_extents * fs_info->nodesize;
6039}
6040
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006041int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006042{
Josef Bacikc8eaeac72019-04-10 15:56:10 -04006043 struct btrfs_root *root = inode->root;
6044 struct btrfs_fs_info *fs_info = root->fs_info;
6045 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
6046 u64 meta_reserve, qgroup_reserve;
Josef Bacik69fe2d72017-10-19 14:15:57 -04006047 unsigned nr_extents;
Miao Xie08e007d2012-10-16 11:33:38 +00006048 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07006049 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006050 bool delalloc_lock = true;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006051
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006052 /* If we are a free space inode we need to not flush since we will be in
6053 * the middle of a transaction commit. We also don't need the delalloc
6054 * mutex since we won't race with anybody. We need this mostly to make
6055 * lockdep shut its filthy mouth.
Josef Bacikbac357dc2016-07-20 16:48:45 -07006056 *
6057 * If we have a transaction open (can happen if we call truncate_block
6058 * from truncate), then we need FLUSH_LIMIT so we don't deadlock.
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006059 */
6060 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00006061 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006062 delalloc_lock = false;
Nikolay Borisovda07d4a2018-01-12 16:21:05 +02006063 } else {
6064 if (current->journal_info)
6065 flush = BTRFS_RESERVE_FLUSH_LIMIT;
Josef Bacikc09544e2011-08-30 10:19:10 -04006066
Nikolay Borisovda07d4a2018-01-12 16:21:05 +02006067 if (btrfs_transaction_in_commit(fs_info))
6068 schedule_timeout(1);
6069 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006070
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006071 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006072 mutex_lock(&inode->delalloc_mutex);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006073
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006074 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006075
Josef Bacikc8eaeac72019-04-10 15:56:10 -04006076 /*
6077 * We always want to do it this way, every other way is wrong and ends
6078 * in tears. Pre-reserving the amount we are going to add will always
6079 * be the right way, because otherwise if we have enough parallelism we
6080 * could end up with thousands of inodes all holding little bits of
6081 * reservations they were able to make previously and the only way to
6082 * reclaim that space is to ENOSPC out the operations and clear
6083 * everything out and try again, which is bad. This way we just
6084 * over-reserve slightly, and clean up the mess when we are done.
6085 */
6086 calc_inode_reservations(fs_info, num_bytes, &meta_reserve,
6087 &qgroup_reserve);
6088 ret = btrfs_qgroup_reserve_meta_prealloc(root, qgroup_reserve, true);
6089 if (ret)
6090 goto out_fail;
6091 ret = reserve_metadata_bytes(root, block_rsv, meta_reserve, flush);
6092 if (ret)
6093 goto out_qgroup;
6094
6095 /*
6096 * Now we need to update our outstanding extents and csum bytes _first_
6097 * and then add the reservation to the block_rsv. This keeps us from
6098 * racing with an ordered completion or some such that would think it
6099 * needs to free the reservation we just made.
6100 */
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006101 spin_lock(&inode->lock);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006102 nr_extents = count_max_extents(num_bytes);
Josef Bacik8b62f872017-10-19 14:15:55 -04006103 btrfs_mod_outstanding_extents(inode, nr_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006104 inode->csum_bytes += num_bytes;
6105 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006106 spin_unlock(&inode->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05006107
Josef Bacikc8eaeac72019-04-10 15:56:10 -04006108 /* Now we can safely add our space to our block rsv */
6109 block_rsv_add_bytes(block_rsv, meta_reserve, false);
6110 trace_btrfs_space_reservation(root->fs_info, "delalloc",
6111 btrfs_ino(inode), meta_reserve, 1);
6112
6113 spin_lock(&block_rsv->lock);
6114 block_rsv->qgroup_rsv_reserved += qgroup_reserve;
6115 spin_unlock(&block_rsv->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006116
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006117 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006118 mutex_unlock(&inode->delalloc_mutex);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006119 return 0;
Josef Bacikc8eaeac72019-04-10 15:56:10 -04006120out_qgroup:
6121 btrfs_qgroup_free_meta_prealloc(root, qgroup_reserve);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006122out_fail:
Qu Wenruo43b18592017-12-12 15:34:32 +08006123 btrfs_inode_rsv_release(inode, true);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006124 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006125 mutex_unlock(&inode->delalloc_mutex);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006126 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006127}
6128
Josef Bacik7709cde2011-08-04 10:25:02 -04006129/**
6130 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
Josef Bacik8b62f872017-10-19 14:15:55 -04006131 * @inode: the inode to release the reservation for.
6132 * @num_bytes: the number of bytes we are releasing.
Qu Wenruo43b18592017-12-12 15:34:32 +08006133 * @qgroup_free: free qgroup reservation or convert it to per-trans reservation
Josef Bacik7709cde2011-08-04 10:25:02 -04006134 *
6135 * This will release the metadata reservation for an inode. This can be called
6136 * once we complete IO for a given set of bytes to release their metadata
Josef Bacik8b62f872017-10-19 14:15:55 -04006137 * reservations, or on error for the same reason.
Josef Bacik7709cde2011-08-04 10:25:02 -04006138 */
Qu Wenruo43b18592017-12-12 15:34:32 +08006139void btrfs_delalloc_release_metadata(struct btrfs_inode *inode, u64 num_bytes,
6140 bool qgroup_free)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006141{
David Sterba3ffbd682018-06-29 10:56:42 +02006142 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006143
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006144 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006145 spin_lock(&inode->lock);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006146 inode->csum_bytes -= num_bytes;
6147 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006148 spin_unlock(&inode->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006149
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006150 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04006151 return;
6152
Qu Wenruo43b18592017-12-12 15:34:32 +08006153 btrfs_inode_rsv_release(inode, qgroup_free);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006154}
6155
Josef Bacik7709cde2011-08-04 10:25:02 -04006156/**
Josef Bacik8b62f872017-10-19 14:15:55 -04006157 * btrfs_delalloc_release_extents - release our outstanding_extents
6158 * @inode: the inode to balance the reservation for.
6159 * @num_bytes: the number of bytes we originally reserved with
Qu Wenruo43b18592017-12-12 15:34:32 +08006160 * @qgroup_free: do we need to free qgroup meta reservation or convert them.
Josef Bacik8b62f872017-10-19 14:15:55 -04006161 *
6162 * When we reserve space we increase outstanding_extents for the extents we may
6163 * add. Once we've set the range as delalloc or created our ordered extents we
6164 * have outstanding_extents to track the real usage, so we use this to free our
6165 * temporarily tracked outstanding_extents. This _must_ be used in conjunction
6166 * with btrfs_delalloc_reserve_metadata.
6167 */
Qu Wenruo43b18592017-12-12 15:34:32 +08006168void btrfs_delalloc_release_extents(struct btrfs_inode *inode, u64 num_bytes,
6169 bool qgroup_free)
Josef Bacik8b62f872017-10-19 14:15:55 -04006170{
David Sterba3ffbd682018-06-29 10:56:42 +02006171 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Josef Bacik8b62f872017-10-19 14:15:55 -04006172 unsigned num_extents;
Josef Bacik8b62f872017-10-19 14:15:55 -04006173
6174 spin_lock(&inode->lock);
6175 num_extents = count_max_extents(num_bytes);
6176 btrfs_mod_outstanding_extents(inode, -num_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006177 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Josef Bacik8b62f872017-10-19 14:15:55 -04006178 spin_unlock(&inode->lock);
6179
Josef Bacik8b62f872017-10-19 14:15:55 -04006180 if (btrfs_is_testing(fs_info))
6181 return;
6182
Qu Wenruo43b18592017-12-12 15:34:32 +08006183 btrfs_inode_rsv_release(inode, qgroup_free);
Josef Bacik8b62f872017-10-19 14:15:55 -04006184}
6185
6186/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006187 * btrfs_delalloc_reserve_space - reserve data and metadata space for
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006188 * delalloc
6189 * @inode: inode we're writing to
6190 * @start: start range we are writing to
6191 * @len: how long the range we are writing to
Qu Wenruo364ecf32017-02-27 15:10:38 +08006192 * @reserved: mandatory parameter, record actually reserved qgroup ranges of
6193 * current reservation.
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006194 *
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006195 * This will do the following things
6196 *
6197 * o reserve space in data space info for num bytes
6198 * and reserve precious corresponding qgroup space
6199 * (Done in check_data_free_space)
6200 *
6201 * o reserve space for metadata space, based on the number of outstanding
6202 * extents and how much csums will be needed
6203 * also reserve metadata space in a per root over-reserve method.
6204 * o add to the inodes->delalloc_bytes
6205 * o add it to the fs_info's delalloc inodes list.
6206 * (Above 3 all done in delalloc_reserve_metadata)
6207 *
6208 * Return 0 for success
6209 * Return <0 for error(-ENOSPC or -EQUOT)
6210 */
Qu Wenruo364ecf32017-02-27 15:10:38 +08006211int btrfs_delalloc_reserve_space(struct inode *inode,
6212 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006213{
6214 int ret;
6215
Qu Wenruo364ecf32017-02-27 15:10:38 +08006216 ret = btrfs_check_data_free_space(inode, reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006217 if (ret < 0)
6218 return ret;
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006219 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode), len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006220 if (ret < 0)
Qu Wenruobc42bda2017-02-27 15:10:39 +08006221 btrfs_free_reserved_data_space(inode, *reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006222 return ret;
6223}
6224
6225/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006226 * btrfs_delalloc_release_space - release data and metadata space for delalloc
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006227 * @inode: inode we're releasing space for
6228 * @start: start position of the space already reserved
6229 * @len: the len of the space already reserved
Josef Bacik8b62f872017-10-19 14:15:55 -04006230 * @release_bytes: the len of the space we consumed or didn't use
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006231 *
6232 * This function will release the metadata space that was not used and will
6233 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
6234 * list if there are no delalloc bytes left.
6235 * Also it will handle the qgroup reserved space.
6236 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08006237void btrfs_delalloc_release_space(struct inode *inode,
Josef Bacik8b62f872017-10-19 14:15:55 -04006238 struct extent_changeset *reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08006239 u64 start, u64 len, bool qgroup_free)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006240{
Qu Wenruo43b18592017-12-12 15:34:32 +08006241 btrfs_delalloc_release_metadata(BTRFS_I(inode), len, qgroup_free);
Qu Wenruobc42bda2017-02-27 15:10:39 +08006242 btrfs_free_reserved_data_space(inode, reserved, start, len);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006243}
6244
Josef Bacikce93ec52014-11-17 15:45:48 -05006245static int update_block_group(struct btrfs_trans_handle *trans,
David Sterba6b279402019-03-20 12:10:15 +01006246 u64 bytenr, u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04006247{
David Sterba6b279402019-03-20 12:10:15 +01006248 struct btrfs_fs_info *info = trans->fs_info;
Josef Bacik0af3d002010-06-21 14:48:16 -04006249 struct btrfs_block_group_cache *cache = NULL;
Chris Masondb945352007-10-15 16:15:53 -04006250 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006251 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04006252 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04006253 int factor;
Josef Bacikba2c4d42018-12-03 10:20:33 -05006254 int ret = 0;
Chris Mason3e1ad542007-05-07 20:03:49 -04006255
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006256 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00006257 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02006258 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006259 if (alloc)
6260 old_val += num_bytes;
6261 else
6262 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02006263 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00006264 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006265
Chris Masond3977122009-01-05 21:25:51 -05006266 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04006267 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikba2c4d42018-12-03 10:20:33 -05006268 if (!cache) {
6269 ret = -ENOENT;
6270 break;
6271 }
David Sterba46df06b2018-07-13 20:46:30 +02006272 factor = btrfs_bg_type_to_factor(cache->flags);
6273
Josef Bacik9d66e232010-08-25 16:54:15 -04006274 /*
6275 * If this block group has free space cache written out, we
6276 * need to make sure to load it if we are removing space. This
6277 * is because we need the unpinning stage to actually add the
6278 * space back to the block group, otherwise we will leak space.
6279 */
6280 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00006281 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04006282
Chris Masondb945352007-10-15 16:15:53 -04006283 byte_in_group = bytenr - cache->key.objectid;
6284 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04006285
Josef Bacik25179202008-10-29 14:49:05 -04006286 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04006287 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04006288
Jeff Mahoney6202df62016-06-22 18:54:22 -04006289 if (btrfs_test_opt(info, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04006290 cache->disk_cache_state < BTRFS_DC_CLEAR)
6291 cache->disk_cache_state = BTRFS_DC_CLEAR;
6292
Chris Mason9078a3e2007-04-26 16:46:15 -04006293 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04006294 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04006295 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04006296 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006297 btrfs_set_block_group_used(&cache->item, old_val);
6298 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006299 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb822010-05-16 10:46:24 -04006300 cache->space_info->bytes_used += num_bytes;
6301 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04006302 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006303 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04006304 } else {
Chris Masondb945352007-10-15 16:15:53 -04006305 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00006306 btrfs_set_block_group_used(&cache->item, old_val);
6307 cache->pinned += num_bytes;
Qu Wenruo480b9b42019-04-29 14:03:33 +08006308 update_bytes_pinned(info, cache->space_info, num_bytes);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006309 cache->space_info->bytes_used -= num_bytes;
6310 cache->space_info->disk_used -= num_bytes * factor;
6311 spin_unlock(&cache->lock);
6312 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04006313
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006314 trace_btrfs_space_reservation(info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006315 cache->space_info->flags,
6316 num_bytes, 1);
Ethan Liendec59fa2018-07-13 16:50:42 +08006317 percpu_counter_add_batch(&cache->space_info->total_bytes_pinned,
6318 num_bytes,
6319 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006320 set_extent_dirty(info->pinned_extents,
6321 bytenr, bytenr + num_bytes - 1,
6322 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04006323 }
Chris Mason1bbc6212015-04-06 12:46:08 -07006324
6325 spin_lock(&trans->transaction->dirty_bgs_lock);
6326 if (list_empty(&cache->dirty_list)) {
6327 list_add_tail(&cache->dirty_list,
6328 &trans->transaction->dirty_bgs);
Josef Bacikba2c4d42018-12-03 10:20:33 -05006329 trans->delayed_ref_updates++;
Chris Mason1bbc6212015-04-06 12:46:08 -07006330 btrfs_get_block_group(cache);
6331 }
6332 spin_unlock(&trans->transaction->dirty_bgs_lock);
6333
Filipe Manana036a9342015-11-23 15:25:16 +00006334 /*
6335 * No longer have used bytes in this block group, queue it for
6336 * deletion. We do this after adding the block group to the
6337 * dirty list to avoid races between cleaner kthread and space
6338 * cache writeout.
6339 */
Qu Wenruo031f24d2018-05-22 16:43:47 +08006340 if (!alloc && old_val == 0)
6341 btrfs_mark_bg_unused(cache);
Filipe Manana036a9342015-11-23 15:25:16 +00006342
Chris Masonfa9c0d792009-04-03 09:47:43 -04006343 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04006344 total -= num_bytes;
6345 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006346 }
Josef Bacikba2c4d42018-12-03 10:20:33 -05006347
6348 /* Modified block groups are accounted for in the delayed_refs_rsv. */
6349 btrfs_update_delayed_refs_rsv(trans);
6350 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04006351}
Chris Mason6324fbf2008-03-24 15:01:59 -04006352
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006353static u64 first_logical_byte(struct btrfs_fs_info *fs_info, u64 search_start)
Chris Masona061fc82008-05-07 11:43:44 -04006354{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006355 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05006356 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006357
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006358 spin_lock(&fs_info->block_group_cache_lock);
6359 bytenr = fs_info->first_logical_byte;
6360 spin_unlock(&fs_info->block_group_cache_lock);
Liu Boa1897fd2012-12-27 09:01:23 +00006361
6362 if (bytenr < (u64)-1)
6363 return bytenr;
6364
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006365 cache = btrfs_lookup_first_block_group(fs_info, search_start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006366 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04006367 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006368
Yan Zhengd2fb3432008-12-11 16:30:39 -05006369 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006370 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05006371
6372 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04006373}
6374
David Sterbafdf08602019-03-20 12:12:32 +01006375static int pin_down_extent(struct btrfs_block_group_cache *cache,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006376 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05006377{
David Sterbafdf08602019-03-20 12:12:32 +01006378 struct btrfs_fs_info *fs_info = cache->fs_info;
6379
Yan Zheng11833d62009-09-11 16:11:19 -04006380 spin_lock(&cache->space_info->lock);
6381 spin_lock(&cache->lock);
6382 cache->pinned += num_bytes;
Qu Wenruo480b9b42019-04-29 14:03:33 +08006383 update_bytes_pinned(fs_info, cache->space_info, num_bytes);
Yan Zheng11833d62009-09-11 16:11:19 -04006384 if (reserved) {
6385 cache->reserved -= num_bytes;
6386 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05006387 }
Yan Zheng11833d62009-09-11 16:11:19 -04006388 spin_unlock(&cache->lock);
6389 spin_unlock(&cache->space_info->lock);
6390
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006391 trace_btrfs_space_reservation(fs_info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006392 cache->space_info->flags, num_bytes, 1);
Ethan Liendec59fa2018-07-13 16:50:42 +08006393 percpu_counter_add_batch(&cache->space_info->total_bytes_pinned,
6394 num_bytes, BTRFS_TOTAL_BYTES_PINNED_BATCH);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006395 set_extent_dirty(fs_info->pinned_extents, bytenr,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006396 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05006397 return 0;
6398}
Chris Mason9078a3e2007-04-26 16:46:15 -04006399
Yan, Zhengf0486c62010-05-16 10:46:25 -04006400/*
6401 * this function must be called within transaction
6402 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006403int btrfs_pin_extent(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006404 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04006405{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006406 struct btrfs_block_group_cache *cache;
6407
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006408 cache = btrfs_lookup_block_group(fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006409 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006410
David Sterbafdf08602019-03-20 12:12:32 +01006411 pin_down_extent(cache, bytenr, num_bytes, reserved);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006412
6413 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04006414 return 0;
6415}
Zheng Yane8569812008-09-26 10:05:48 -04006416
Yan, Zhengf0486c62010-05-16 10:46:25 -04006417/*
Chris Masone688b7252011-10-31 20:52:39 -04006418 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04006419 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006420int btrfs_pin_extent_for_log_replay(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04006421 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006422{
Chris Masone688b7252011-10-31 20:52:39 -04006423 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04006424 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04006425
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006426 cache = btrfs_lookup_block_group(fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006427 if (!cache)
6428 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04006429
6430 /*
6431 * pull in the free space cache (if any) so that our pin
6432 * removes the free space from the cache. We have load_only set
6433 * to one because the slow code to read in the free extents does check
6434 * the pinned extents.
6435 */
Liu Bof6373bf2012-12-27 09:01:18 +00006436 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04006437
David Sterbafdf08602019-03-20 12:12:32 +01006438 pin_down_extent(cache, bytenr, num_bytes, 0);
Chris Masone688b7252011-10-31 20:52:39 -04006439
6440 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04006441 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04006442 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006443 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04006444}
6445
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006446static int __exclude_logged_extent(struct btrfs_fs_info *fs_info,
6447 u64 start, u64 num_bytes)
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006448{
6449 int ret;
6450 struct btrfs_block_group_cache *block_group;
6451 struct btrfs_caching_control *caching_ctl;
6452
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006453 block_group = btrfs_lookup_block_group(fs_info, start);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006454 if (!block_group)
6455 return -EINVAL;
6456
6457 cache_block_group(block_group, 0);
6458 caching_ctl = get_caching_control(block_group);
6459
6460 if (!caching_ctl) {
6461 /* Logic error */
6462 BUG_ON(!block_group_cache_done(block_group));
6463 ret = btrfs_remove_free_space(block_group, start, num_bytes);
6464 } else {
6465 mutex_lock(&caching_ctl->mutex);
6466
6467 if (start >= caching_ctl->progress) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006468 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006469 } else if (start + num_bytes <= caching_ctl->progress) {
6470 ret = btrfs_remove_free_space(block_group,
6471 start, num_bytes);
6472 } else {
6473 num_bytes = caching_ctl->progress - start;
6474 ret = btrfs_remove_free_space(block_group,
6475 start, num_bytes);
6476 if (ret)
6477 goto out_lock;
6478
6479 num_bytes = (start + num_bytes) -
6480 caching_ctl->progress;
6481 start = caching_ctl->progress;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006482 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006483 }
6484out_lock:
6485 mutex_unlock(&caching_ctl->mutex);
6486 put_caching_control(caching_ctl);
6487 }
6488 btrfs_put_block_group(block_group);
6489 return ret;
6490}
6491
David Sterbabcdc4282019-03-20 12:14:33 +01006492int btrfs_exclude_logged_extents(struct extent_buffer *eb)
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006493{
David Sterbabcdc4282019-03-20 12:14:33 +01006494 struct btrfs_fs_info *fs_info = eb->fs_info;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006495 struct btrfs_file_extent_item *item;
6496 struct btrfs_key key;
6497 int found_type;
6498 int i;
Gu Jinxiangb89311e2018-05-22 17:46:51 +08006499 int ret = 0;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006500
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006501 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS))
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006502 return 0;
6503
6504 for (i = 0; i < btrfs_header_nritems(eb); i++) {
6505 btrfs_item_key_to_cpu(eb, &key, i);
6506 if (key.type != BTRFS_EXTENT_DATA_KEY)
6507 continue;
6508 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
6509 found_type = btrfs_file_extent_type(eb, item);
6510 if (found_type == BTRFS_FILE_EXTENT_INLINE)
6511 continue;
6512 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
6513 continue;
6514 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
6515 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
Gu Jinxiangb89311e2018-05-22 17:46:51 +08006516 ret = __exclude_logged_extent(fs_info, key.objectid, key.offset);
6517 if (ret)
6518 break;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006519 }
6520
Gu Jinxiangb89311e2018-05-22 17:46:51 +08006521 return ret;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006522}
6523
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006524static void
6525btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg)
6526{
6527 atomic_inc(&bg->reservations);
6528}
6529
6530void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
6531 const u64 start)
6532{
6533 struct btrfs_block_group_cache *bg;
6534
6535 bg = btrfs_lookup_block_group(fs_info, start);
6536 ASSERT(bg);
6537 if (atomic_dec_and_test(&bg->reservations))
Peter Zijlstra46259562018-03-15 11:43:08 +01006538 wake_up_var(&bg->reservations);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006539 btrfs_put_block_group(bg);
6540}
6541
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006542void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg)
6543{
6544 struct btrfs_space_info *space_info = bg->space_info;
6545
6546 ASSERT(bg->ro);
6547
6548 if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA))
6549 return;
6550
6551 /*
6552 * Our block group is read only but before we set it to read only,
6553 * some task might have had allocated an extent from it already, but it
6554 * has not yet created a respective ordered extent (and added it to a
6555 * root's list of ordered extents).
6556 * Therefore wait for any task currently allocating extents, since the
6557 * block group's reservations counter is incremented while a read lock
6558 * on the groups' semaphore is held and decremented after releasing
6559 * the read access on that semaphore and creating the ordered extent.
6560 */
6561 down_write(&space_info->groups_sem);
6562 up_write(&space_info->groups_sem);
6563
Peter Zijlstra46259562018-03-15 11:43:08 +01006564 wait_var_event(&bg->reservations, !atomic_read(&bg->reservations));
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006565}
6566
Josef Bacikfb25e912011-07-26 17:00:46 -04006567/**
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006568 * btrfs_add_reserved_bytes - update the block_group and space info counters
Josef Bacikfb25e912011-07-26 17:00:46 -04006569 * @cache: The cache we are manipulating
Wang Xiaoguang18513092016-07-25 15:51:40 +08006570 * @ram_bytes: The number of bytes of file content, and will be same to
6571 * @num_bytes except for the compress path.
Josef Bacikfb25e912011-07-26 17:00:46 -04006572 * @num_bytes: The number of bytes in question
Miao Xiee570fd22014-06-19 10:42:50 +08006573 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04006574 *
Xiaoguang Wang745699e2016-09-23 12:38:50 +08006575 * This is called by the allocator when it reserves space. If this is a
6576 * reservation and the block group has become read only we cannot make the
6577 * reservation and return -EAGAIN, otherwise this function always succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04006578 */
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006579static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
Wang Xiaoguang18513092016-07-25 15:51:40 +08006580 u64 ram_bytes, u64 num_bytes, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006581{
Josef Bacikfb25e912011-07-26 17:00:46 -04006582 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006583 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006584
Josef Bacikfb25e912011-07-26 17:00:46 -04006585 spin_lock(&space_info->lock);
6586 spin_lock(&cache->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006587 if (cache->ro) {
6588 ret = -EAGAIN;
Josef Bacikfb25e912011-07-26 17:00:46 -04006589 } else {
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006590 cache->reserved += num_bytes;
6591 space_info->bytes_reserved += num_bytes;
Qu Wenruo480b9b42019-04-29 14:03:33 +08006592 update_bytes_may_use(cache->fs_info, space_info, -ram_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08006593 if (delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006594 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006595 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006596 spin_unlock(&cache->lock);
6597 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006598 return ret;
6599}
6600
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006601/**
6602 * btrfs_free_reserved_bytes - update the block_group and space info counters
6603 * @cache: The cache we are manipulating
6604 * @num_bytes: The number of bytes in question
6605 * @delalloc: The blocks are allocated for the delalloc write
6606 *
6607 * This is called by somebody who is freeing space that was never actually used
6608 * on disk. For example if you reserve some space for a new leaf in transaction
6609 * A and before transaction A commits you free that leaf, you call this with
6610 * reserve set to 0 in order to clear the reservation.
6611 */
6612
zhong jiang556f3ca2018-08-17 00:37:14 +08006613static void btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
6614 u64 num_bytes, int delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006615{
6616 struct btrfs_space_info *space_info = cache->space_info;
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006617
6618 spin_lock(&space_info->lock);
6619 spin_lock(&cache->lock);
6620 if (cache->ro)
6621 space_info->bytes_readonly += num_bytes;
6622 cache->reserved -= num_bytes;
6623 space_info->bytes_reserved -= num_bytes;
Josef Bacik21a94f72018-10-11 15:54:03 -04006624 space_info->max_extent_size = 0;
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006625
6626 if (delalloc)
6627 cache->delalloc_bytes -= num_bytes;
6628 spin_unlock(&cache->lock);
6629 spin_unlock(&space_info->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006630}
David Sterba8b74c032017-02-10 19:20:56 +01006631void btrfs_prepare_extent_commit(struct btrfs_fs_info *fs_info)
Yan Zheng11833d62009-09-11 16:11:19 -04006632{
Yan Zheng11833d62009-09-11 16:11:19 -04006633 struct btrfs_caching_control *next;
6634 struct btrfs_caching_control *caching_ctl;
6635 struct btrfs_block_group_cache *cache;
6636
Josef Bacik9e351cc2014-03-13 15:42:13 -04006637 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04006638
6639 list_for_each_entry_safe(caching_ctl, next,
6640 &fs_info->caching_block_groups, list) {
6641 cache = caching_ctl->block_group;
6642 if (block_group_cache_done(cache)) {
6643 cache->last_byte_to_unpin = (u64)-1;
6644 list_del_init(&caching_ctl->list);
6645 put_caching_control(caching_ctl);
6646 } else {
6647 cache->last_byte_to_unpin = caching_ctl->progress;
6648 }
6649 }
6650
6651 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6652 fs_info->pinned_extents = &fs_info->freed_extents[1];
6653 else
6654 fs_info->pinned_extents = &fs_info->freed_extents[0];
6655
Josef Bacik9e351cc2014-03-13 15:42:13 -04006656 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006657
6658 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04006659}
6660
Josef Bacikc759c4e2015-10-02 15:25:10 -04006661/*
6662 * Returns the free cluster for the given space info and sets empty_cluster to
6663 * what it should be based on the mount options.
6664 */
6665static struct btrfs_free_cluster *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006666fetch_cluster_info(struct btrfs_fs_info *fs_info,
6667 struct btrfs_space_info *space_info, u64 *empty_cluster)
Josef Bacikc759c4e2015-10-02 15:25:10 -04006668{
6669 struct btrfs_free_cluster *ret = NULL;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006670
6671 *empty_cluster = 0;
6672 if (btrfs_mixed_space_info(space_info))
6673 return ret;
6674
Josef Bacikc759c4e2015-10-02 15:25:10 -04006675 if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006676 ret = &fs_info->meta_alloc_cluster;
Hans van Kranenburg583b7232017-07-28 08:31:28 +02006677 if (btrfs_test_opt(fs_info, SSD))
6678 *empty_cluster = SZ_2M;
6679 else
Byongho Leeee221842015-12-15 01:42:10 +09006680 *empty_cluster = SZ_64K;
Hans van Kranenburg583b7232017-07-28 08:31:28 +02006681 } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) &&
6682 btrfs_test_opt(fs_info, SSD_SPREAD)) {
6683 *empty_cluster = SZ_2M;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006684 ret = &fs_info->data_alloc_cluster;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006685 }
6686
6687 return ret;
6688}
6689
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006690static int unpin_extent_range(struct btrfs_fs_info *fs_info,
6691 u64 start, u64 end,
Filipe Manana678886b2014-12-07 21:31:47 +00006692 const bool return_free_space)
Yan Zheng11833d62009-09-11 16:11:19 -04006693{
Yan Zheng11833d62009-09-11 16:11:19 -04006694 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04006695 struct btrfs_space_info *space_info;
6696 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006697 struct btrfs_free_cluster *cluster = NULL;
Yan Zheng11833d62009-09-11 16:11:19 -04006698 u64 len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006699 u64 total_unpinned = 0;
6700 u64 empty_cluster = 0;
Josef Bacik7b398f82012-10-22 15:52:28 -04006701 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04006702
6703 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04006704 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04006705 if (!cache ||
6706 start >= cache->key.objectid + cache->key.offset) {
6707 if (cache)
6708 btrfs_put_block_group(cache);
Josef Bacikc759c4e2015-10-02 15:25:10 -04006709 total_unpinned = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006710 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006711 BUG_ON(!cache); /* Logic error */
Josef Bacikc759c4e2015-10-02 15:25:10 -04006712
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006713 cluster = fetch_cluster_info(fs_info,
Josef Bacikc759c4e2015-10-02 15:25:10 -04006714 cache->space_info,
6715 &empty_cluster);
6716 empty_cluster <<= 1;
Yan Zheng11833d62009-09-11 16:11:19 -04006717 }
6718
6719 len = cache->key.objectid + cache->key.offset - start;
6720 len = min(len, end + 1 - start);
6721
6722 if (start < cache->last_byte_to_unpin) {
6723 len = min(len, cache->last_byte_to_unpin - start);
Filipe Manana678886b2014-12-07 21:31:47 +00006724 if (return_free_space)
6725 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04006726 }
Josef Bacik25179202008-10-29 14:49:05 -04006727
Yan, Zhengf0486c62010-05-16 10:46:25 -04006728 start += len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006729 total_unpinned += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006730 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006731
Josef Bacikc759c4e2015-10-02 15:25:10 -04006732 /*
6733 * If this space cluster has been marked as fragmented and we've
6734 * unpinned enough in this block group to potentially allow a
6735 * cluster to be created inside of it go ahead and clear the
6736 * fragmented check.
6737 */
6738 if (cluster && cluster->fragmented &&
6739 total_unpinned > empty_cluster) {
6740 spin_lock(&cluster->lock);
6741 cluster->fragmented = 0;
6742 spin_unlock(&cluster->lock);
6743 }
6744
Josef Bacik7b398f82012-10-22 15:52:28 -04006745 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006746 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006747 cache->pinned -= len;
Qu Wenruo480b9b42019-04-29 14:03:33 +08006748 update_bytes_pinned(fs_info, space_info, -len);
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006749
6750 trace_btrfs_space_reservation(fs_info, "pinned",
6751 space_info->flags, len, 0);
Josef Bacik4f4db212015-09-29 11:40:47 -04006752 space_info->max_extent_size = 0;
Ethan Liendec59fa2018-07-13 16:50:42 +08006753 percpu_counter_add_batch(&space_info->total_bytes_pinned,
6754 -len, BTRFS_TOTAL_BYTES_PINNED_BATCH);
Josef Bacik7b398f82012-10-22 15:52:28 -04006755 if (cache->ro) {
6756 space_info->bytes_readonly += len;
6757 readonly = true;
6758 }
Josef Bacik25179202008-10-29 14:49:05 -04006759 spin_unlock(&cache->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006760 if (!readonly && return_free_space &&
6761 global_rsv->space_info == space_info) {
6762 u64 to_add = len;
Nikolay Borisov92ac58e2017-08-17 10:52:28 +03006763
Josef Bacik7b398f82012-10-22 15:52:28 -04006764 spin_lock(&global_rsv->lock);
6765 if (!global_rsv->full) {
Josef Bacik957780e2016-05-17 13:30:55 -04006766 to_add = min(len, global_rsv->size -
6767 global_rsv->reserved);
6768 global_rsv->reserved += to_add;
Qu Wenruo480b9b42019-04-29 14:03:33 +08006769 update_bytes_may_use(fs_info, space_info,
6770 to_add);
Josef Bacik7b398f82012-10-22 15:52:28 -04006771 if (global_rsv->reserved >= global_rsv->size)
6772 global_rsv->full = 1;
Josef Bacik957780e2016-05-17 13:30:55 -04006773 trace_btrfs_space_reservation(fs_info,
6774 "space_info",
6775 space_info->flags,
6776 to_add, 1);
6777 len -= to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006778 }
6779 spin_unlock(&global_rsv->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006780 /* Add to any tickets we may have */
6781 if (len)
6782 space_info_add_new_bytes(fs_info, space_info,
6783 len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006784 }
6785 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006786 }
6787
6788 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006789 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006790 return 0;
6791}
6792
Nikolay Borisov5ead2dd2018-03-15 16:00:26 +02006793int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans)
Chris Masona28ec192007-03-06 20:08:01 -05006794{
Nikolay Borisov5ead2dd2018-03-15 16:00:26 +02006795 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006796 struct btrfs_block_group_cache *block_group, *tmp;
6797 struct list_head *deleted_bgs;
Yan Zheng11833d62009-09-11 16:11:19 -04006798 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006799 u64 start;
6800 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006801 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006802
Yan Zheng11833d62009-09-11 16:11:19 -04006803 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6804 unpin = &fs_info->freed_extents[1];
6805 else
6806 unpin = &fs_info->freed_extents[0];
6807
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006808 while (!trans->aborted) {
Filipe Manana0e6ec382018-11-16 13:04:44 +00006809 struct extent_state *cached_state = NULL;
6810
Filipe Mananad4b450c2015-01-29 19:18:25 +00006811 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006812 ret = find_first_extent_bit(unpin, 0, &start, &end,
Filipe Manana0e6ec382018-11-16 13:04:44 +00006813 EXTENT_DIRTY, &cached_state);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006814 if (ret) {
6815 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006816 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006817 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006818
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006819 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006820 ret = btrfs_discard_extent(fs_info, start,
Li Dongyang5378e602011-03-24 10:24:27 +00006821 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006822
Filipe Manana0e6ec382018-11-16 13:04:44 +00006823 clear_extent_dirty(unpin, start, end, &cached_state);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006824 unpin_extent_range(fs_info, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006825 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana0e6ec382018-11-16 13:04:44 +00006826 free_extent_state(cached_state);
Chris Masonb9473432009-03-13 11:00:37 -04006827 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006828 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006829
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006830 /*
6831 * Transaction is finished. We don't need the lock anymore. We
6832 * do need to clean up the block groups in case of a transaction
6833 * abort.
6834 */
6835 deleted_bgs = &trans->transaction->deleted_bgs;
6836 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
6837 u64 trimmed = 0;
6838
6839 ret = -EROFS;
6840 if (!trans->aborted)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006841 ret = btrfs_discard_extent(fs_info,
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006842 block_group->key.objectid,
6843 block_group->key.offset,
6844 &trimmed);
6845
6846 list_del_init(&block_group->bg_list);
6847 btrfs_put_block_group_trimming(block_group);
6848 btrfs_put_block_group(block_group);
6849
6850 if (ret) {
6851 const char *errstr = btrfs_decode_error(ret);
6852 btrfs_warn(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02006853 "discard failed while removing blockgroup: errno=%d %s",
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006854 ret, errstr);
6855 }
6856 }
6857
Chris Masone20d96d2007-03-22 12:13:20 -04006858 return 0;
6859}
6860
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006861static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
Nikolay Borisove72cb922018-06-20 15:48:57 +03006862 struct btrfs_delayed_ref_node *node, u64 parent,
6863 u64 root_objectid, u64 owner_objectid,
6864 u64 owner_offset, int refs_to_drop,
6865 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006866{
Nikolay Borisove72cb922018-06-20 15:48:57 +03006867 struct btrfs_fs_info *info = trans->fs_info;
Chris Masone2fa7222007-03-12 16:22:34 -04006868 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006869 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006870 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006871 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006872 struct btrfs_extent_item *ei;
6873 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006874 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006875 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006876 int extent_slot = 0;
6877 int found_extent = 0;
6878 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006879 u32 item_size;
6880 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006881 u64 bytenr = node->bytenr;
6882 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006883 int last_ref = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006884 bool skinny_metadata = btrfs_fs_incompat(info, SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006885
Chris Mason5caf2a02007-04-02 11:20:42 -04006886 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006887 if (!path)
6888 return -ENOMEM;
6889
David Sterbae4058b52015-11-27 16:31:35 +01006890 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04006891 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006892
6893 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6894 BUG_ON(!is_data && refs_to_drop != 1);
6895
Josef Bacik3173a182013-03-07 14:22:04 -05006896 if (is_data)
Thomas Meyer897ca812017-10-07 16:02:21 +02006897 skinny_metadata = false;
Josef Bacik3173a182013-03-07 14:22:04 -05006898
Nikolay Borisovfbe48012018-06-20 15:48:52 +03006899 ret = lookup_extent_backref(trans, path, &iref, bytenr, num_bytes,
6900 parent, root_objectid, owner_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006901 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006902 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006903 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006904 while (extent_slot >= 0) {
6905 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006906 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006907 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006908 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006909 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6910 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006911 found_extent = 1;
6912 break;
6913 }
Josef Bacik3173a182013-03-07 14:22:04 -05006914 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6915 key.offset == owner_objectid) {
6916 found_extent = 1;
6917 break;
6918 }
Chris Mason952fcca2008-02-18 16:33:44 -05006919 if (path->slots[0] - extent_slot > 5)
6920 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006921 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006922 }
Nikolay Borisova79865c2018-06-21 09:45:00 +03006923
Zheng Yan31840ae2008-09-23 13:14:14 -04006924 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006925 BUG_ON(iref);
Nikolay Borisov87cc7a82018-06-20 15:49:12 +03006926 ret = remove_extent_backref(trans, path, NULL,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05006927 refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006928 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006929 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006930 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006931 goto out;
6932 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006933 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04006934 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006935
6936 key.objectid = bytenr;
6937 key.type = BTRFS_EXTENT_ITEM_KEY;
6938 key.offset = num_bytes;
6939
Josef Bacik3173a182013-03-07 14:22:04 -05006940 if (!is_data && skinny_metadata) {
6941 key.type = BTRFS_METADATA_ITEM_KEY;
6942 key.offset = owner_objectid;
6943 }
6944
Zheng Yan31840ae2008-09-23 13:14:14 -04006945 ret = btrfs_search_slot(trans, extent_root,
6946 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05006947 if (ret > 0 && skinny_metadata && path->slots[0]) {
6948 /*
6949 * Couldn't find our skinny metadata item,
6950 * see if we have ye olde extent item.
6951 */
6952 path->slots[0]--;
6953 btrfs_item_key_to_cpu(path->nodes[0], &key,
6954 path->slots[0]);
6955 if (key.objectid == bytenr &&
6956 key.type == BTRFS_EXTENT_ITEM_KEY &&
6957 key.offset == num_bytes)
6958 ret = 0;
6959 }
6960
6961 if (ret > 0 && skinny_metadata) {
6962 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01006963 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05006964 key.type = BTRFS_EXTENT_ITEM_KEY;
6965 key.offset = num_bytes;
6966 btrfs_release_path(path);
6967 ret = btrfs_search_slot(trans, extent_root,
6968 &key, path, -1, 1);
6969 }
6970
Josef Bacikf3465ca2008-11-12 14:19:50 -05006971 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006972 btrfs_err(info,
6973 "umm, got %d back from search, was looking for %llu",
6974 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00006975 if (ret > 0)
David Sterbaa4f78752017-06-29 18:37:49 +02006976 btrfs_print_leaf(path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006977 }
David Sterba005d6422012-09-18 07:52:32 -06006978 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006979 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006980 goto out;
6981 }
Zheng Yan31840ae2008-09-23 13:14:14 -04006982 extent_slot = path->slots[0];
6983 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05306984 } else if (WARN_ON(ret == -ENOENT)) {
David Sterbaa4f78752017-06-29 18:37:49 +02006985 btrfs_print_leaf(path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00006986 btrfs_err(info,
6987 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02006988 bytenr, parent, root_objectid, owner_objectid,
6989 owner_offset);
Jeff Mahoney66642832016-06-10 18:19:25 -04006990 btrfs_abort_transaction(trans, ret);
Josef Bacikc4a050b2014-03-14 16:36:53 -04006991 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006992 } else {
Jeff Mahoney66642832016-06-10 18:19:25 -04006993 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006994 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05006995 }
Chris Mason5f39d392007-10-15 16:14:19 -04006996
6997 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006998 item_size = btrfs_item_size_nr(leaf, extent_slot);
David Sterba6d8ff4e2018-06-26 16:20:59 +02006999 if (unlikely(item_size < sizeof(*ei))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03007000 ret = -EINVAL;
7001 btrfs_print_v0_err(info);
7002 btrfs_abort_transaction(trans, ret);
7003 goto out;
7004 }
Chris Mason952fcca2008-02-18 16:33:44 -05007005 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04007006 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05007007 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
7008 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007009 struct btrfs_tree_block_info *bi;
7010 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
7011 bi = (struct btrfs_tree_block_info *)(ei + 1);
7012 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05007013 }
7014
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007015 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04007016 if (refs < refs_to_drop) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007017 btrfs_err(info,
7018 "trying to drop %d refs but we only have %Lu for bytenr %Lu",
7019 refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04007020 ret = -EINVAL;
Jeff Mahoney66642832016-06-10 18:19:25 -04007021 btrfs_abort_transaction(trans, ret);
Josef Bacik32b02532013-04-24 16:38:50 -04007022 goto out;
7023 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007024 refs -= refs_to_drop;
7025
7026 if (refs > 0) {
7027 if (extent_op)
7028 __run_delayed_extent_op(extent_op, leaf, ei);
7029 /*
7030 * In the case of inline back ref, reference count will
7031 * be updated by remove_extent_backref
7032 */
7033 if (iref) {
7034 BUG_ON(!found_extent);
7035 } else {
7036 btrfs_set_extent_refs(leaf, ei, refs);
7037 btrfs_mark_buffer_dirty(leaf);
7038 }
7039 if (found_extent) {
Nikolay Borisov87cc7a82018-06-20 15:49:12 +03007040 ret = remove_extent_backref(trans, path, iref,
7041 refs_to_drop, is_data,
7042 &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06007043 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007044 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007045 goto out;
7046 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007047 }
7048 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007049 if (found_extent) {
7050 BUG_ON(is_data && refs_to_drop !=
Zhaolei9ed0dea2015-08-06 22:16:24 +08007051 extent_data_ref_count(path, iref));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007052 if (iref) {
7053 BUG_ON(path->slots[0] != extent_slot);
7054 } else {
7055 BUG_ON(path->slots[0] != extent_slot + 1);
7056 path->slots[0] = extent_slot;
7057 num_to_del = 2;
7058 }
Chris Mason78fae272007-03-25 11:35:08 -04007059 }
Chris Masonb9473432009-03-13 11:00:37 -04007060
Josef Bacikfcebe452014-05-13 17:30:47 -07007061 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05007062 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
7063 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06007064 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007065 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007066 goto out;
7067 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007068 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01007069
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007070 if (is_data) {
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04007071 ret = btrfs_del_csums(trans, info, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06007072 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007073 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007074 goto out;
7075 }
Chris Mason459931e2008-12-10 09:10:46 -05007076 }
7077
Nikolay Borisove7355e52018-05-10 15:44:55 +03007078 ret = add_to_free_space_tree(trans, bytenr, num_bytes);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007079 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007080 btrfs_abort_transaction(trans, ret);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007081 goto out;
7082 }
7083
David Sterba6b279402019-03-20 12:10:15 +01007084 ret = update_block_group(trans, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06007085 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007086 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007087 goto out;
7088 }
Chris Masona28ec192007-03-06 20:08:01 -05007089 }
Josef Bacikfcebe452014-05-13 17:30:47 -07007090 btrfs_release_path(path);
7091
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007092out:
Chris Mason5caf2a02007-04-02 11:20:42 -04007093 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05007094 return ret;
7095}
7096
7097/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007098 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04007099 * delayed ref for that extent as well. This searches the delayed ref tree for
7100 * a given extent, and if there are no other delayed refs to be processed, it
7101 * removes it from the tree.
7102 */
7103static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007104 u64 bytenr)
Chris Mason1887be62009-03-13 10:11:24 -04007105{
7106 struct btrfs_delayed_ref_head *head;
7107 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007108 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04007109
7110 delayed_refs = &trans->transaction->delayed_refs;
7111 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08007112 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Chris Mason1887be62009-03-13 10:11:24 -04007113 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08007114 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04007115
Josef Bacikd7df2c72014-01-23 09:21:38 -05007116 spin_lock(&head->lock);
Liu Boe3d03962018-08-23 03:51:50 +08007117 if (!RB_EMPTY_ROOT(&head->ref_tree.rb_root))
Chris Mason1887be62009-03-13 10:11:24 -04007118 goto out;
7119
Josef Bacikbedc66172018-12-03 10:20:31 -05007120 if (cleanup_extent_op(head) != NULL)
7121 goto out;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007122
Chris Mason1887be62009-03-13 10:11:24 -04007123 /*
7124 * waiting for the lock here would deadlock. If someone else has it
7125 * locked they are already in the process of dropping it anyway
7126 */
7127 if (!mutex_trylock(&head->mutex))
7128 goto out;
7129
Josef Bacikd7baffd2018-12-03 10:20:29 -05007130 btrfs_delete_ref_head(delayed_refs, head);
Josef Bacikd7df2c72014-01-23 09:21:38 -05007131 head->processing = 0;
Josef Bacikd7baffd2018-12-03 10:20:29 -05007132
Josef Bacikd7df2c72014-01-23 09:21:38 -05007133 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04007134 spin_unlock(&delayed_refs->lock);
7135
Yan, Zhengf0486c62010-05-16 10:46:25 -04007136 BUG_ON(head->extent_op);
7137 if (head->must_insert_reserved)
7138 ret = 1;
7139
Josef Bacik31890da2018-11-21 14:05:41 -05007140 btrfs_cleanup_ref_head_accounting(trans->fs_info, delayed_refs, head);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007141 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -04007142 btrfs_put_delayed_ref_head(head);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007143 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04007144out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05007145 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08007146
7147out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04007148 spin_unlock(&delayed_refs->lock);
7149 return 0;
7150}
7151
Yan, Zhengf0486c62010-05-16 10:46:25 -04007152void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
7153 struct btrfs_root *root,
7154 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02007155 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007156{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007157 struct btrfs_fs_info *fs_info = root->fs_info;
Qu Wenruoed4f2552019-04-04 14:45:31 +08007158 struct btrfs_ref generic_ref = { 0 };
Josef Bacikb150a4f2013-06-19 15:00:04 -04007159 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007160 int ret;
7161
Qu Wenruoed4f2552019-04-04 14:45:31 +08007162 btrfs_init_generic_ref(&generic_ref, BTRFS_DROP_DELAYED_REF,
7163 buf->start, buf->len, parent);
7164 btrfs_init_tree_ref(&generic_ref, btrfs_header_level(buf),
7165 root->root_key.objectid);
7166
Yan, Zhengf0486c62010-05-16 10:46:25 -04007167 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Omar Sandovald7eae342017-06-06 16:45:31 -07007168 int old_ref_mod, new_ref_mod;
7169
Qu Wenruo8a5040f2019-04-04 14:45:33 +08007170 btrfs_ref_tree_mod(fs_info, &generic_ref);
Qu Wenruoed4f2552019-04-04 14:45:31 +08007171 ret = btrfs_add_delayed_tree_ref(trans, &generic_ref, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007172 &old_ref_mod, &new_ref_mod);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007173 BUG_ON(ret); /* -ENOMEM */
Omar Sandovald7eae342017-06-06 16:45:31 -07007174 pin = old_ref_mod >= 0 && new_ref_mod < 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007175 }
7176
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007177 if (last_ref && btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00007178 struct btrfs_block_group_cache *cache;
7179
Yan, Zhengf0486c62010-05-16 10:46:25 -04007180 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007181 ret = check_ref_cleanup(trans, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007182 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04007183 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007184 }
7185
Omar Sandoval4da8b762017-06-06 16:45:28 -07007186 pin = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007187 cache = btrfs_lookup_block_group(fs_info, buf->start);
Filipe Manana62198722015-01-06 20:18:45 +00007188
Yan, Zhengf0486c62010-05-16 10:46:25 -04007189 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
David Sterbafdf08602019-03-20 12:12:32 +01007190 pin_down_extent(cache, buf->start, buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00007191 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04007192 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007193 }
7194
7195 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
7196
7197 btrfs_add_free_space(cache, buf->start, buf->len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08007198 btrfs_free_reserved_bytes(cache, buf->len, 0);
Filipe Manana62198722015-01-06 20:18:45 +00007199 btrfs_put_block_group(cache);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007200 trace_btrfs_reserved_extent_free(fs_info, buf->start, buf->len);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007201 }
7202out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04007203 if (pin)
Qu Wenruo78192442019-05-15 07:33:48 +08007204 add_pinned_bytes(fs_info, &generic_ref);
Josef Bacikb150a4f2013-06-19 15:00:04 -04007205
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007206 if (last_ref) {
7207 /*
7208 * Deleting the buffer, clear the corrupt flag since it doesn't
7209 * matter anymore.
7210 */
7211 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
7212 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007213}
7214
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007215/* Can return -ENOMEM */
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007216int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_ref *ref)
Chris Mason925baed2008-06-25 16:01:30 -04007217{
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007218 struct btrfs_fs_info *fs_info = trans->fs_info;
Omar Sandovald7eae342017-06-06 16:45:31 -07007219 int old_ref_mod, new_ref_mod;
Chris Mason925baed2008-06-25 16:01:30 -04007220 int ret;
7221
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04007222 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007223 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02007224
Chris Mason56bec292009-03-13 10:10:06 -04007225 /*
7226 * tree log blocks never actually go into the extent allocation
7227 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04007228 */
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007229 if ((ref->type == BTRFS_REF_METADATA &&
7230 ref->tree_ref.root == BTRFS_TREE_LOG_OBJECTID) ||
7231 (ref->type == BTRFS_REF_DATA &&
7232 ref->data_ref.ref_root == BTRFS_TREE_LOG_OBJECTID)) {
Chris Masonb9473432009-03-13 11:00:37 -04007233 /* unlocks the pinned mutex */
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007234 btrfs_pin_extent(fs_info, ref->bytenr, ref->len, 1);
Omar Sandovald7eae342017-06-06 16:45:31 -07007235 old_ref_mod = new_ref_mod = 0;
Chris Mason56bec292009-03-13 10:10:06 -04007236 ret = 0;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007237 } else if (ref->type == BTRFS_REF_METADATA) {
7238 ret = btrfs_add_delayed_tree_ref(trans, ref, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007239 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007240 } else {
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007241 ret = btrfs_add_delayed_data_ref(trans, ref, 0,
Omar Sandovald7eae342017-06-06 16:45:31 -07007242 &old_ref_mod, &new_ref_mod);
Chris Mason56bec292009-03-13 10:10:06 -04007243 }
Omar Sandovald7eae342017-06-06 16:45:31 -07007244
Qu Wenruoffd4bb22019-04-04 14:45:36 +08007245 if (!((ref->type == BTRFS_REF_METADATA &&
7246 ref->tree_ref.root == BTRFS_TREE_LOG_OBJECTID) ||
7247 (ref->type == BTRFS_REF_DATA &&
7248 ref->data_ref.ref_root == BTRFS_TREE_LOG_OBJECTID)))
7249 btrfs_ref_tree_mod(fs_info, ref);
Qu Wenruo8a5040f2019-04-04 14:45:33 +08007250
Qu Wenruoddf30cf2019-04-04 14:45:34 +08007251 if (ret == 0 && old_ref_mod >= 0 && new_ref_mod < 0)
Qu Wenruo78192442019-05-15 07:33:48 +08007252 add_pinned_bytes(fs_info, ref);
Omar Sandovald7eae342017-06-06 16:45:31 -07007253
Chris Mason925baed2008-06-25 16:01:30 -04007254 return ret;
7255}
7256
Chris Masonfec577f2007-02-26 10:40:21 -05007257/*
Josef Bacik817d52f2009-07-13 21:29:25 -04007258 * when we wait for progress in the block group caching, its because
7259 * our allocation attempt failed at least once. So, we must sleep
7260 * and let some progress happen before we try again.
7261 *
7262 * This function will sleep at least once waiting for new free space to
7263 * show up, and then it will check the block group free space numbers
7264 * for our min num_bytes. Another option is to have it go ahead
7265 * and look in the rbtree for a free extent of a given size, but this
7266 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04007267 *
7268 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
7269 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04007270 */
Josef Bacik36cce922013-08-05 11:15:21 -04007271static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04007272wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
7273 u64 num_bytes)
7274{
Yan Zheng11833d62009-09-11 16:11:19 -04007275 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04007276
Yan Zheng11833d62009-09-11 16:11:19 -04007277 caching_ctl = get_caching_control(cache);
7278 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007279 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04007280
Yan Zheng11833d62009-09-11 16:11:19 -04007281 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08007282 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04007283
7284 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04007285}
7286
7287static noinline int
7288wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
7289{
7290 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04007291 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007292
7293 caching_ctl = get_caching_control(cache);
7294 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007295 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007296
7297 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04007298 if (cache->cached == BTRFS_CACHE_ERROR)
7299 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04007300 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04007301 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04007302}
7303
7304enum btrfs_loop_type {
David Sterbaf262fa82019-06-18 20:00:08 +02007305 LOOP_CACHING_NOWAIT,
7306 LOOP_CACHING_WAIT,
7307 LOOP_ALLOC_CHUNK,
7308 LOOP_NO_EMPTY_SIZE,
Josef Bacik817d52f2009-07-13 21:29:25 -04007309};
7310
Miao Xiee570fd22014-06-19 10:42:50 +08007311static inline void
7312btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
7313 int delalloc)
7314{
7315 if (delalloc)
7316 down_read(&cache->data_rwsem);
7317}
7318
7319static inline void
7320btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
7321 int delalloc)
7322{
7323 btrfs_get_block_group(cache);
7324 if (delalloc)
7325 down_read(&cache->data_rwsem);
7326}
7327
7328static struct btrfs_block_group_cache *
7329btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
7330 struct btrfs_free_cluster *cluster,
7331 int delalloc)
7332{
Sudip Mukherjee89771cc2016-02-16 13:32:47 +05307333 struct btrfs_block_group_cache *used_bg = NULL;
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007334
Miao Xiee570fd22014-06-19 10:42:50 +08007335 spin_lock(&cluster->refill_lock);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007336 while (1) {
7337 used_bg = cluster->block_group;
7338 if (!used_bg)
7339 return NULL;
7340
7341 if (used_bg == block_group)
7342 return used_bg;
7343
7344 btrfs_get_block_group(used_bg);
7345
7346 if (!delalloc)
7347 return used_bg;
7348
7349 if (down_read_trylock(&used_bg->data_rwsem))
7350 return used_bg;
7351
7352 spin_unlock(&cluster->refill_lock);
7353
Liu Boe321f8a2016-11-30 16:11:04 -08007354 /* We should only have one-level nested. */
7355 down_read_nested(&used_bg->data_rwsem, SINGLE_DEPTH_NESTING);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007356
7357 spin_lock(&cluster->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007358 if (used_bg == cluster->block_group)
7359 return used_bg;
7360
7361 up_read(&used_bg->data_rwsem);
7362 btrfs_put_block_group(used_bg);
7363 }
Miao Xiee570fd22014-06-19 10:42:50 +08007364}
7365
7366static inline void
7367btrfs_release_block_group(struct btrfs_block_group_cache *cache,
7368 int delalloc)
7369{
7370 if (delalloc)
7371 up_read(&cache->data_rwsem);
7372 btrfs_put_block_group(cache);
7373}
7374
Josef Bacik817d52f2009-07-13 21:29:25 -04007375/*
Qu Wenruob4bd7452018-11-02 09:39:47 +08007376 * Structure used internally for find_free_extent() function. Wraps needed
7377 * parameters.
7378 */
7379struct find_free_extent_ctl {
7380 /* Basic allocation info */
7381 u64 ram_bytes;
7382 u64 num_bytes;
7383 u64 empty_size;
7384 u64 flags;
7385 int delalloc;
7386
7387 /* Where to start the search inside the bg */
7388 u64 search_start;
7389
7390 /* For clustered allocation */
7391 u64 empty_cluster;
7392
7393 bool have_caching_bg;
7394 bool orig_have_caching_bg;
7395
7396 /* RAID index, converted from flags */
7397 int index;
7398
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007399 /*
7400 * Current loop number, check find_free_extent_update_loop() for details
7401 */
Qu Wenruob4bd7452018-11-02 09:39:47 +08007402 int loop;
7403
7404 /*
7405 * Whether we're refilling a cluster, if true we need to re-search
7406 * current block group but don't try to refill the cluster again.
7407 */
7408 bool retry_clustered;
7409
7410 /*
7411 * Whether we're updating free space cache, if true we need to re-search
7412 * current block group but don't try updating free space cache again.
7413 */
7414 bool retry_unclustered;
7415
7416 /* If current block group is cached */
7417 int cached;
7418
7419 /* Max contiguous hole found */
7420 u64 max_extent_size;
7421
7422 /* Total free space from free space cache, not always contiguous */
7423 u64 total_free_space;
7424
7425 /* Found result */
7426 u64 found_offset;
7427};
7428
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007429
7430/*
7431 * Helper function for find_free_extent().
7432 *
7433 * Return -ENOENT to inform caller that we need fallback to unclustered mode.
7434 * Return -EAGAIN to inform caller that we need to re-search this block group
7435 * Return >0 to inform caller that we find nothing
7436 * Return 0 means we have found a location and set ffe_ctl->found_offset.
7437 */
7438static int find_free_extent_clustered(struct btrfs_block_group_cache *bg,
7439 struct btrfs_free_cluster *last_ptr,
7440 struct find_free_extent_ctl *ffe_ctl,
7441 struct btrfs_block_group_cache **cluster_bg_ret)
7442{
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007443 struct btrfs_block_group_cache *cluster_bg;
7444 u64 aligned_cluster;
7445 u64 offset;
7446 int ret;
7447
7448 cluster_bg = btrfs_lock_cluster(bg, last_ptr, ffe_ctl->delalloc);
7449 if (!cluster_bg)
7450 goto refill_cluster;
7451 if (cluster_bg != bg && (cluster_bg->ro ||
7452 !block_group_bits(cluster_bg, ffe_ctl->flags)))
7453 goto release_cluster;
7454
7455 offset = btrfs_alloc_from_cluster(cluster_bg, last_ptr,
7456 ffe_ctl->num_bytes, cluster_bg->key.objectid,
7457 &ffe_ctl->max_extent_size);
7458 if (offset) {
7459 /* We have a block, we're done */
7460 spin_unlock(&last_ptr->refill_lock);
7461 trace_btrfs_reserve_extent_cluster(cluster_bg,
7462 ffe_ctl->search_start, ffe_ctl->num_bytes);
7463 *cluster_bg_ret = cluster_bg;
7464 ffe_ctl->found_offset = offset;
7465 return 0;
7466 }
7467 WARN_ON(last_ptr->block_group != cluster_bg);
7468
7469release_cluster:
7470 /*
7471 * If we are on LOOP_NO_EMPTY_SIZE, we can't set up a new clusters, so
7472 * lets just skip it and let the allocator find whatever block it can
7473 * find. If we reach this point, we will have tried the cluster
7474 * allocator plenty of times and not have found anything, so we are
7475 * likely way too fragmented for the clustering stuff to find anything.
7476 *
7477 * However, if the cluster is taken from the current block group,
7478 * release the cluster first, so that we stand a better chance of
7479 * succeeding in the unclustered allocation.
7480 */
7481 if (ffe_ctl->loop >= LOOP_NO_EMPTY_SIZE && cluster_bg != bg) {
7482 spin_unlock(&last_ptr->refill_lock);
7483 btrfs_release_block_group(cluster_bg, ffe_ctl->delalloc);
7484 return -ENOENT;
7485 }
7486
7487 /* This cluster didn't work out, free it and start over */
7488 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7489
7490 if (cluster_bg != bg)
7491 btrfs_release_block_group(cluster_bg, ffe_ctl->delalloc);
7492
7493refill_cluster:
7494 if (ffe_ctl->loop >= LOOP_NO_EMPTY_SIZE) {
7495 spin_unlock(&last_ptr->refill_lock);
7496 return -ENOENT;
7497 }
7498
7499 aligned_cluster = max_t(u64,
7500 ffe_ctl->empty_cluster + ffe_ctl->empty_size,
7501 bg->full_stripe_len);
David Sterba2ceeae22019-03-20 13:53:49 +01007502 ret = btrfs_find_space_cluster(bg, last_ptr, ffe_ctl->search_start,
7503 ffe_ctl->num_bytes, aligned_cluster);
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007504 if (ret == 0) {
7505 /* Now pull our allocation out of this cluster */
7506 offset = btrfs_alloc_from_cluster(bg, last_ptr,
7507 ffe_ctl->num_bytes, ffe_ctl->search_start,
7508 &ffe_ctl->max_extent_size);
7509 if (offset) {
7510 /* We found one, proceed */
7511 spin_unlock(&last_ptr->refill_lock);
7512 trace_btrfs_reserve_extent_cluster(bg,
7513 ffe_ctl->search_start,
7514 ffe_ctl->num_bytes);
7515 ffe_ctl->found_offset = offset;
7516 return 0;
7517 }
7518 } else if (!ffe_ctl->cached && ffe_ctl->loop > LOOP_CACHING_NOWAIT &&
7519 !ffe_ctl->retry_clustered) {
7520 spin_unlock(&last_ptr->refill_lock);
7521
7522 ffe_ctl->retry_clustered = true;
7523 wait_block_group_cache_progress(bg, ffe_ctl->num_bytes +
7524 ffe_ctl->empty_cluster + ffe_ctl->empty_size);
7525 return -EAGAIN;
7526 }
7527 /*
7528 * At this point we either didn't find a cluster or we weren't able to
7529 * allocate a block from our cluster. Free the cluster we've been
7530 * trying to use, and go to the next block group.
7531 */
7532 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7533 spin_unlock(&last_ptr->refill_lock);
7534 return 1;
7535}
7536
Qu Wenruob4bd7452018-11-02 09:39:47 +08007537/*
Qu Wenruoe1a41842018-11-02 09:39:49 +08007538 * Return >0 to inform caller that we find nothing
7539 * Return 0 when we found an free extent and set ffe_ctrl->found_offset
7540 * Return -EAGAIN to inform caller that we need to re-search this block group
7541 */
7542static int find_free_extent_unclustered(struct btrfs_block_group_cache *bg,
7543 struct btrfs_free_cluster *last_ptr,
7544 struct find_free_extent_ctl *ffe_ctl)
7545{
7546 u64 offset;
7547
7548 /*
7549 * We are doing an unclustered allocation, set the fragmented flag so
7550 * we don't bother trying to setup a cluster again until we get more
7551 * space.
7552 */
7553 if (unlikely(last_ptr)) {
7554 spin_lock(&last_ptr->lock);
7555 last_ptr->fragmented = 1;
7556 spin_unlock(&last_ptr->lock);
7557 }
7558 if (ffe_ctl->cached) {
7559 struct btrfs_free_space_ctl *free_space_ctl;
7560
7561 free_space_ctl = bg->free_space_ctl;
7562 spin_lock(&free_space_ctl->tree_lock);
7563 if (free_space_ctl->free_space <
7564 ffe_ctl->num_bytes + ffe_ctl->empty_cluster +
7565 ffe_ctl->empty_size) {
7566 ffe_ctl->total_free_space = max_t(u64,
7567 ffe_ctl->total_free_space,
7568 free_space_ctl->free_space);
7569 spin_unlock(&free_space_ctl->tree_lock);
7570 return 1;
7571 }
7572 spin_unlock(&free_space_ctl->tree_lock);
7573 }
7574
7575 offset = btrfs_find_space_for_alloc(bg, ffe_ctl->search_start,
7576 ffe_ctl->num_bytes, ffe_ctl->empty_size,
7577 &ffe_ctl->max_extent_size);
7578
7579 /*
7580 * If we didn't find a chunk, and we haven't failed on this block group
7581 * before, and this block group is in the middle of caching and we are
7582 * ok with waiting, then go ahead and wait for progress to be made, and
7583 * set @retry_unclustered to true.
7584 *
7585 * If @retry_unclustered is true then we've already waited on this
7586 * block group once and should move on to the next block group.
7587 */
7588 if (!offset && !ffe_ctl->retry_unclustered && !ffe_ctl->cached &&
7589 ffe_ctl->loop > LOOP_CACHING_NOWAIT) {
7590 wait_block_group_cache_progress(bg, ffe_ctl->num_bytes +
7591 ffe_ctl->empty_size);
7592 ffe_ctl->retry_unclustered = true;
7593 return -EAGAIN;
7594 } else if (!offset) {
7595 return 1;
7596 }
7597 ffe_ctl->found_offset = offset;
7598 return 0;
7599}
7600
7601/*
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007602 * Return >0 means caller needs to re-search for free extent
7603 * Return 0 means we have the needed free extent.
7604 * Return <0 means we failed to locate any free extent.
7605 */
7606static int find_free_extent_update_loop(struct btrfs_fs_info *fs_info,
7607 struct btrfs_free_cluster *last_ptr,
7608 struct btrfs_key *ins,
7609 struct find_free_extent_ctl *ffe_ctl,
7610 int full_search, bool use_cluster)
7611{
7612 struct btrfs_root *root = fs_info->extent_root;
7613 int ret;
7614
7615 if ((ffe_ctl->loop == LOOP_CACHING_NOWAIT) &&
7616 ffe_ctl->have_caching_bg && !ffe_ctl->orig_have_caching_bg)
7617 ffe_ctl->orig_have_caching_bg = true;
7618
7619 if (!ins->objectid && ffe_ctl->loop >= LOOP_CACHING_WAIT &&
7620 ffe_ctl->have_caching_bg)
7621 return 1;
7622
7623 if (!ins->objectid && ++(ffe_ctl->index) < BTRFS_NR_RAID_TYPES)
7624 return 1;
7625
7626 if (ins->objectid) {
7627 if (!use_cluster && last_ptr) {
7628 spin_lock(&last_ptr->lock);
7629 last_ptr->window_start = ins->objectid;
7630 spin_unlock(&last_ptr->lock);
7631 }
7632 return 0;
7633 }
7634
7635 /*
7636 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7637 * caching kthreads as we move along
7638 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7639 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7640 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7641 * again
7642 */
7643 if (ffe_ctl->loop < LOOP_NO_EMPTY_SIZE) {
7644 ffe_ctl->index = 0;
7645 if (ffe_ctl->loop == LOOP_CACHING_NOWAIT) {
7646 /*
7647 * We want to skip the LOOP_CACHING_WAIT step if we
7648 * don't have any uncached bgs and we've already done a
7649 * full search through.
7650 */
7651 if (ffe_ctl->orig_have_caching_bg || !full_search)
7652 ffe_ctl->loop = LOOP_CACHING_WAIT;
7653 else
7654 ffe_ctl->loop = LOOP_ALLOC_CHUNK;
7655 } else {
7656 ffe_ctl->loop++;
7657 }
7658
7659 if (ffe_ctl->loop == LOOP_ALLOC_CHUNK) {
7660 struct btrfs_trans_handle *trans;
7661 int exist = 0;
7662
7663 trans = current->journal_info;
7664 if (trans)
7665 exist = 1;
7666 else
7667 trans = btrfs_join_transaction(root);
7668
7669 if (IS_ERR(trans)) {
7670 ret = PTR_ERR(trans);
7671 return ret;
7672 }
7673
7674 ret = do_chunk_alloc(trans, ffe_ctl->flags,
7675 CHUNK_ALLOC_FORCE);
7676
7677 /*
7678 * If we can't allocate a new chunk we've already looped
7679 * through at least once, move on to the NO_EMPTY_SIZE
7680 * case.
7681 */
7682 if (ret == -ENOSPC)
7683 ffe_ctl->loop = LOOP_NO_EMPTY_SIZE;
7684
7685 /* Do not bail out on ENOSPC since we can do more. */
7686 if (ret < 0 && ret != -ENOSPC)
7687 btrfs_abort_transaction(trans, ret);
7688 else
7689 ret = 0;
7690 if (!exist)
7691 btrfs_end_transaction(trans);
7692 if (ret)
7693 return ret;
7694 }
7695
7696 if (ffe_ctl->loop == LOOP_NO_EMPTY_SIZE) {
7697 /*
7698 * Don't loop again if we already have no empty_size and
7699 * no empty_cluster.
7700 */
7701 if (ffe_ctl->empty_size == 0 &&
7702 ffe_ctl->empty_cluster == 0)
7703 return -ENOSPC;
7704 ffe_ctl->empty_size = 0;
7705 ffe_ctl->empty_cluster = 0;
7706 }
7707 return 1;
7708 }
7709 return -ENOSPC;
7710}
7711
7712/*
Chris Masonfec577f2007-02-26 10:40:21 -05007713 * walks the btree of allocated extents and find a hole of a given size.
7714 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08007715 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04007716 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08007717 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05007718 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08007719 *
7720 * If there is no suitable free space, we will record the max size of
7721 * the free space extent currently.
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007722 *
7723 * The overall logic and call chain:
7724 *
7725 * find_free_extent()
7726 * |- Iterate through all block groups
7727 * | |- Get a valid block group
7728 * | |- Try to do clustered allocation in that block group
7729 * | |- Try to do unclustered allocation in that block group
7730 * | |- Check if the result is valid
7731 * | | |- If valid, then exit
7732 * | |- Jump to next block group
7733 * |
7734 * |- Push harder to find free extents
7735 * |- If not found, re-iterate all block groups
Chris Masonfec577f2007-02-26 10:40:21 -05007736 */
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05007737static noinline int find_free_extent(struct btrfs_fs_info *fs_info,
Wang Xiaoguang18513092016-07-25 15:51:40 +08007738 u64 ram_bytes, u64 num_bytes, u64 empty_size,
7739 u64 hint_byte, struct btrfs_key *ins,
7740 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007741{
Josef Bacik80eb2342008-10-29 14:49:05 -04007742 int ret = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007743 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04007744 struct btrfs_block_group_cache *block_group = NULL;
Qu Wenruob4bd7452018-11-02 09:39:47 +08007745 struct find_free_extent_ctl ffe_ctl = {0};
Josef Bacik80eb2342008-10-29 14:49:05 -04007746 struct btrfs_space_info *space_info;
Josef Bacik67377732010-09-16 16:19:09 -04007747 bool use_cluster = true;
Josef Bacika5e681d2015-10-01 14:54:10 -04007748 bool full_search = false;
Chris Masonfec577f2007-02-26 10:40:21 -05007749
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007750 WARN_ON(num_bytes < fs_info->sectorsize);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007751
7752 ffe_ctl.ram_bytes = ram_bytes;
7753 ffe_ctl.num_bytes = num_bytes;
7754 ffe_ctl.empty_size = empty_size;
7755 ffe_ctl.flags = flags;
7756 ffe_ctl.search_start = 0;
7757 ffe_ctl.retry_clustered = false;
7758 ffe_ctl.retry_unclustered = false;
7759 ffe_ctl.delalloc = delalloc;
7760 ffe_ctl.index = btrfs_bg_flags_to_raid_index(flags);
7761 ffe_ctl.have_caching_bg = false;
7762 ffe_ctl.orig_have_caching_bg = false;
7763 ffe_ctl.found_offset = 0;
7764
David Sterba962a2982014-06-04 18:41:45 +02007765 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04007766 ins->objectid = 0;
7767 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04007768
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007769 trace_find_free_extent(fs_info, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05007770
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007771 space_info = __find_space_info(fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007772 if (!space_info) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007773 btrfs_err(fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007774 return -ENOSPC;
7775 }
Josef Bacik2552d172009-04-03 10:14:19 -04007776
Josef Bacik67377732010-09-16 16:19:09 -04007777 /*
Josef Bacik4f4db212015-09-29 11:40:47 -04007778 * If our free space is heavily fragmented we may not be able to make
7779 * big contiguous allocations, so instead of doing the expensive search
7780 * for free space, simply return ENOSPC with our max_extent_size so we
7781 * can go ahead and search for a more manageable chunk.
7782 *
7783 * If our max_extent_size is large enough for our allocation simply
7784 * disable clustering since we will likely not be able to find enough
7785 * space to create a cluster and induce latency trying.
Josef Bacik67377732010-09-16 16:19:09 -04007786 */
Josef Bacik4f4db212015-09-29 11:40:47 -04007787 if (unlikely(space_info->max_extent_size)) {
7788 spin_lock(&space_info->lock);
7789 if (space_info->max_extent_size &&
7790 num_bytes > space_info->max_extent_size) {
7791 ins->offset = space_info->max_extent_size;
7792 spin_unlock(&space_info->lock);
7793 return -ENOSPC;
7794 } else if (space_info->max_extent_size) {
7795 use_cluster = false;
7796 }
7797 spin_unlock(&space_info->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007798 }
7799
Qu Wenruob4bd7452018-11-02 09:39:47 +08007800 last_ptr = fetch_cluster_info(fs_info, space_info,
7801 &ffe_ctl.empty_cluster);
Chris Mason239b14b2008-03-24 15:02:07 -04007802 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007803 spin_lock(&last_ptr->lock);
7804 if (last_ptr->block_group)
7805 hint_byte = last_ptr->window_start;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007806 if (last_ptr->fragmented) {
7807 /*
7808 * We still set window_start so we can keep track of the
7809 * last place we found an allocation to try and save
7810 * some time.
7811 */
7812 hint_byte = last_ptr->window_start;
7813 use_cluster = false;
7814 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007815 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007816 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007817
Qu Wenruob4bd7452018-11-02 09:39:47 +08007818 ffe_ctl.search_start = max(ffe_ctl.search_start,
7819 first_logical_byte(fs_info, 0));
7820 ffe_ctl.search_start = max(ffe_ctl.search_start, hint_byte);
7821 if (ffe_ctl.search_start == hint_byte) {
7822 block_group = btrfs_lookup_block_group(fs_info,
7823 ffe_ctl.search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04007824 /*
7825 * we don't want to use the block group if it doesn't match our
7826 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05007827 *
7828 * However if we are re-searching with an ideal block group
7829 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04007830 */
David Sterbab6919a52013-04-29 13:39:40 +00007831 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05007832 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04007833 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007834 if (list_empty(&block_group->list) ||
7835 block_group->ro) {
7836 /*
7837 * someone is removing this block group,
7838 * we can't jump into the have_block_group
7839 * target because our list pointers are not
7840 * valid
7841 */
7842 btrfs_put_block_group(block_group);
7843 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05007844 } else {
Qu Wenruob4bd7452018-11-02 09:39:47 +08007845 ffe_ctl.index = btrfs_bg_flags_to_raid_index(
Qu Wenruo3e72ee82018-01-30 18:20:45 +08007846 block_group->flags);
Miao Xiee570fd22014-06-19 10:42:50 +08007847 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04007848 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05007849 }
Josef Bacik2552d172009-04-03 10:14:19 -04007850 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007851 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04007852 }
Chris Mason42e70e72008-11-07 18:17:11 -05007853 }
Josef Bacik2552d172009-04-03 10:14:19 -04007854search:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007855 ffe_ctl.have_caching_bg = false;
7856 if (ffe_ctl.index == btrfs_bg_flags_to_raid_index(flags) ||
7857 ffe_ctl.index == 0)
Josef Bacika5e681d2015-10-01 14:54:10 -04007858 full_search = true;
Josef Bacik80eb2342008-10-29 14:49:05 -04007859 down_read(&space_info->groups_sem);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007860 list_for_each_entry(block_group,
7861 &space_info->block_groups[ffe_ctl.index], list) {
Jeff Mahoney14443932017-07-19 23:25:51 -04007862 /* If the block group is read-only, we can skip it entirely. */
7863 if (unlikely(block_group->ro))
7864 continue;
7865
Miao Xiee570fd22014-06-19 10:42:50 +08007866 btrfs_grab_block_group(block_group, delalloc);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007867 ffe_ctl.search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05007868
Chris Mason83a50de2010-12-13 15:06:46 -05007869 /*
7870 * this can happen if we end up cycling through all the
7871 * raid types, but we want to make sure we only allocate
7872 * for the proper type.
7873 */
David Sterbab6919a52013-04-29 13:39:40 +00007874 if (!block_group_bits(block_group, flags)) {
Bart Van Asschebece2e82018-06-20 10:03:31 -07007875 u64 extra = BTRFS_BLOCK_GROUP_DUP |
David Sterbac7369b32019-05-31 15:39:31 +02007876 BTRFS_BLOCK_GROUP_RAID1_MASK |
David Sterbaa07e8a42019-05-31 16:54:26 +02007877 BTRFS_BLOCK_GROUP_RAID56_MASK |
Chris Mason83a50de2010-12-13 15:06:46 -05007878 BTRFS_BLOCK_GROUP_RAID10;
7879
7880 /*
7881 * if they asked for extra copies and this block group
7882 * doesn't provide them, bail. This does allow us to
7883 * fill raid0 from raid1.
7884 */
David Sterbab6919a52013-04-29 13:39:40 +00007885 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05007886 goto loop;
7887 }
7888
Josef Bacik2552d172009-04-03 10:14:19 -04007889have_block_group:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007890 ffe_ctl.cached = block_group_cache_done(block_group);
7891 if (unlikely(!ffe_ctl.cached)) {
7892 ffe_ctl.have_caching_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00007893 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04007894 BUG_ON(ret < 0);
7895 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05007896 }
7897
Josef Bacik36cce922013-08-05 11:15:21 -04007898 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
7899 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007900
Josef Bacik0a243252009-09-11 16:11:20 -04007901 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007902 * Ok we want to try and use the cluster allocator, so
7903 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04007904 */
Josef Bacikc759c4e2015-10-02 15:25:10 -04007905 if (last_ptr && use_cluster) {
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007906 struct btrfs_block_group_cache *cluster_bg = NULL;
Chris Mason44fb5512009-06-04 15:34:51 -04007907
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007908 ret = find_free_extent_clustered(block_group, last_ptr,
7909 &ffe_ctl, &cluster_bg);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007910
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007911 if (ret == 0) {
7912 if (cluster_bg && cluster_bg != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08007913 btrfs_release_block_group(block_group,
7914 delalloc);
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007915 block_group = cluster_bg;
Miao Xie215a63d2014-01-15 20:00:56 +08007916 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007917 goto checks;
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007918 } else if (ret == -EAGAIN) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007919 goto have_block_group;
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007920 } else if (ret > 0) {
7921 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007922 }
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007923 /* ret == -ENOENT case falls through */
Chris Masonfa9c0d792009-04-03 09:47:43 -04007924 }
7925
Qu Wenruoe1a41842018-11-02 09:39:49 +08007926 ret = find_free_extent_unclustered(block_group, last_ptr,
7927 &ffe_ctl);
7928 if (ret == -EAGAIN)
Josef Bacik817d52f2009-07-13 21:29:25 -04007929 goto have_block_group;
Qu Wenruoe1a41842018-11-02 09:39:49 +08007930 else if (ret > 0)
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007931 goto loop;
Qu Wenruoe1a41842018-11-02 09:39:49 +08007932 /* ret == 0 case falls through */
Chris Masonfa9c0d792009-04-03 09:47:43 -04007933checks:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007934 ffe_ctl.search_start = round_up(ffe_ctl.found_offset,
7935 fs_info->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04007936
Josef Bacik2552d172009-04-03 10:14:19 -04007937 /* move on to the next group */
Qu Wenruob4bd7452018-11-02 09:39:47 +08007938 if (ffe_ctl.search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08007939 block_group->key.objectid + block_group->key.offset) {
Qu Wenruob4bd7452018-11-02 09:39:47 +08007940 btrfs_add_free_space(block_group, ffe_ctl.found_offset,
7941 num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04007942 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04007943 }
Josef Bacik80eb2342008-10-29 14:49:05 -04007944
Qu Wenruob4bd7452018-11-02 09:39:47 +08007945 if (ffe_ctl.found_offset < ffe_ctl.search_start)
7946 btrfs_add_free_space(block_group, ffe_ctl.found_offset,
7947 ffe_ctl.search_start - ffe_ctl.found_offset);
Josef Bacik6226cb02009-04-03 10:14:18 -04007948
Wang Xiaoguang18513092016-07-25 15:51:40 +08007949 ret = btrfs_add_reserved_bytes(block_group, ram_bytes,
7950 num_bytes, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007951 if (ret == -EAGAIN) {
Qu Wenruob4bd7452018-11-02 09:39:47 +08007952 btrfs_add_free_space(block_group, ffe_ctl.found_offset,
7953 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007954 goto loop;
7955 }
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007956 btrfs_inc_block_group_reservations(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -04007957
Josef Bacik2552d172009-04-03 10:14:19 -04007958 /* we are all good, lets return */
Qu Wenruob4bd7452018-11-02 09:39:47 +08007959 ins->objectid = ffe_ctl.search_start;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007960 ins->offset = num_bytes;
7961
Qu Wenruob4bd7452018-11-02 09:39:47 +08007962 trace_btrfs_reserve_extent(block_group, ffe_ctl.search_start,
7963 num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08007964 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007965 break;
7966loop:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007967 ffe_ctl.retry_clustered = false;
7968 ffe_ctl.retry_unclustered = false;
Qu Wenruo3e72ee82018-01-30 18:20:45 +08007969 BUG_ON(btrfs_bg_flags_to_raid_index(block_group->flags) !=
Qu Wenruob4bd7452018-11-02 09:39:47 +08007970 ffe_ctl.index);
Miao Xiee570fd22014-06-19 10:42:50 +08007971 btrfs_release_block_group(block_group, delalloc);
Jeff Mahoney14443932017-07-19 23:25:51 -04007972 cond_resched();
Josef Bacik2552d172009-04-03 10:14:19 -04007973 }
7974 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05007975
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007976 ret = find_free_extent_update_loop(fs_info, last_ptr, ins, &ffe_ctl,
7977 full_search, use_cluster);
7978 if (ret > 0)
Miao Xie60d2adb2011-09-09 17:34:35 +08007979 goto search;
7980
Josef Bacik4f4db212015-09-29 11:40:47 -04007981 if (ret == -ENOSPC) {
Qu Wenruob4bd7452018-11-02 09:39:47 +08007982 /*
7983 * Use ffe_ctl->total_free_space as fallback if we can't find
7984 * any contiguous hole.
7985 */
7986 if (!ffe_ctl.max_extent_size)
7987 ffe_ctl.max_extent_size = ffe_ctl.total_free_space;
Josef Bacik4f4db212015-09-29 11:40:47 -04007988 spin_lock(&space_info->lock);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007989 space_info->max_extent_size = ffe_ctl.max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04007990 spin_unlock(&space_info->lock);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007991 ins->offset = ffe_ctl.max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04007992 }
Chris Mason0f70abe2007-02-28 16:46:22 -05007993 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05007994}
Chris Masonec44a352008-04-28 15:29:52 -04007995
Josef Bacikb78e5612018-11-21 14:03:07 -05007996#define DUMP_BLOCK_RSV(fs_info, rsv_name) \
7997do { \
7998 struct btrfs_block_rsv *__rsv = &(fs_info)->rsv_name; \
7999 spin_lock(&__rsv->lock); \
8000 btrfs_info(fs_info, #rsv_name ": size %llu reserved %llu", \
8001 __rsv->size, __rsv->reserved); \
8002 spin_unlock(&__rsv->lock); \
8003} while (0)
8004
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008005static void dump_space_info(struct btrfs_fs_info *fs_info,
8006 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04008007 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04008008{
8009 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb822010-05-16 10:46:24 -04008010 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008011
Josef Bacik9ed74f22009-09-11 16:12:44 -04008012 spin_lock(&info->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008013 btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull",
8014 info->flags,
Liu Bo41361352017-02-13 15:42:21 -08008015 info->total_bytes - btrfs_space_info_used(info, true),
8016 info->full ? "" : "not ");
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008017 btrfs_info(fs_info,
8018 "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu",
8019 info->total_bytes, info->bytes_used, info->bytes_pinned,
8020 info->bytes_reserved, info->bytes_may_use,
8021 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008022 spin_unlock(&info->lock);
8023
Josef Bacikb78e5612018-11-21 14:03:07 -05008024 DUMP_BLOCK_RSV(fs_info, global_block_rsv);
8025 DUMP_BLOCK_RSV(fs_info, trans_block_rsv);
8026 DUMP_BLOCK_RSV(fs_info, chunk_block_rsv);
8027 DUMP_BLOCK_RSV(fs_info, delayed_block_rsv);
8028 DUMP_BLOCK_RSV(fs_info, delayed_refs_rsv);
8029
Josef Bacik9ed74f22009-09-11 16:12:44 -04008030 if (!dump_block_groups)
8031 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008032
Josef Bacik80eb2342008-10-29 14:49:05 -04008033 down_read(&info->groups_sem);
Yan, Zhengb742bb822010-05-16 10:46:24 -04008034again:
8035 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04008036 spin_lock(&cache->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008037 btrfs_info(fs_info,
8038 "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s",
8039 cache->key.objectid, cache->key.offset,
8040 btrfs_block_group_used(&cache->item), cache->pinned,
8041 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04008042 btrfs_dump_free_space(cache, bytes);
8043 spin_unlock(&cache->lock);
8044 }
Yan, Zhengb742bb822010-05-16 10:46:24 -04008045 if (++index < BTRFS_NR_RAID_TYPES)
8046 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04008047 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008048}
Zheng Yane8569812008-09-26 10:05:48 -04008049
Nikolay Borisov6f47c702018-03-13 12:22:32 +02008050/*
8051 * btrfs_reserve_extent - entry point to the extent allocator. Tries to find a
8052 * hole that is at least as big as @num_bytes.
8053 *
8054 * @root - The root that will contain this extent
8055 *
8056 * @ram_bytes - The amount of space in ram that @num_bytes take. This
8057 * is used for accounting purposes. This value differs
8058 * from @num_bytes only in the case of compressed extents.
8059 *
8060 * @num_bytes - Number of bytes to allocate on-disk.
8061 *
8062 * @min_alloc_size - Indicates the minimum amount of space that the
8063 * allocator should try to satisfy. In some cases
8064 * @num_bytes may be larger than what is required and if
8065 * the filesystem is fragmented then allocation fails.
8066 * However, the presence of @min_alloc_size gives a
8067 * chance to try and satisfy the smaller allocation.
8068 *
8069 * @empty_size - A hint that you plan on doing more COW. This is the
8070 * size in bytes the allocator should try to find free
8071 * next to the block it returns. This is just a hint and
8072 * may be ignored by the allocator.
8073 *
8074 * @hint_byte - Hint to the allocator to start searching above the byte
8075 * address passed. It might be ignored.
8076 *
8077 * @ins - This key is modified to record the found hole. It will
8078 * have the following values:
8079 * ins->objectid == start position
8080 * ins->flags = BTRFS_EXTENT_ITEM_KEY
8081 * ins->offset == the size of the hole.
8082 *
8083 * @is_data - Boolean flag indicating whether an extent is
8084 * allocated for data (true) or metadata (false)
8085 *
8086 * @delalloc - Boolean flag indicating whether this allocation is for
8087 * delalloc or not. If 'true' data_rwsem of block groups
8088 * is going to be acquired.
8089 *
8090 *
8091 * Returns 0 when an allocation succeeded or < 0 when an error occurred. In
8092 * case -ENOSPC is returned then @ins->offset will contain the size of the
8093 * largest available hole the allocator managed to find.
8094 */
Wang Xiaoguang18513092016-07-25 15:51:40 +08008095int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
Yan Zheng11833d62009-09-11 16:11:19 -04008096 u64 num_bytes, u64 min_alloc_size,
8097 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08008098 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05008099{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008100 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik36af4e02015-09-25 16:13:11 -04008101 bool final_tried = num_bytes == min_alloc_size;
David Sterbab6919a52013-04-29 13:39:40 +00008102 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05008103 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04008104
Jeff Mahoney1b868262017-05-17 11:38:35 -04008105 flags = get_alloc_profile_by_root(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04008106again:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008107 WARN_ON(num_bytes < fs_info->sectorsize);
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05008108 ret = find_free_extent(fs_info, ram_bytes, num_bytes, empty_size,
Wang Xiaoguang18513092016-07-25 15:51:40 +08008109 hint_byte, ins, flags, delalloc);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008110 if (!ret && !is_data) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008111 btrfs_dec_block_group_reservations(fs_info, ins->objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008112 } else if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08008113 if (!final_tried && ins->offset) {
8114 num_bytes = min(num_bytes >> 1, ins->offset);
Jeff Mahoneyda170662016-06-15 09:22:56 -04008115 num_bytes = round_down(num_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008116 fs_info->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05008117 num_bytes = max(num_bytes, min_alloc_size);
Wang Xiaoguang18513092016-07-25 15:51:40 +08008118 ram_bytes = num_bytes;
Miao Xie9e622d62012-01-26 15:01:12 -05008119 if (num_bytes == min_alloc_size)
8120 final_tried = true;
8121 goto again;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008122 } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xie9e622d62012-01-26 15:01:12 -05008123 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008124
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008125 sinfo = __find_space_info(fs_info, flags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008126 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008127 "allocation failed flags %llu, wanted %llu",
8128 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01008129 if (sinfo)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008130 dump_space_info(fs_info, sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05008131 }
Chris Mason925baed2008-06-25 16:01:30 -04008132 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008133
8134 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008135}
8136
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008137static int __btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008138 u64 start, u64 len,
8139 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04008140{
Josef Bacik0f9dd462008-09-23 13:14:11 -04008141 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05008142 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008143
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008144 cache = btrfs_lookup_block_group(fs_info, start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008145 if (!cache) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008146 btrfs_err(fs_info, "Unable to find block group for %llu",
8147 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008148 return -ENOSPC;
8149 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05008150
Chris Masone688b7252011-10-31 20:52:39 -04008151 if (pin)
David Sterbafdf08602019-03-20 12:12:32 +01008152 pin_down_extent(cache, start, len, 1);
Chris Masone688b7252011-10-31 20:52:39 -04008153 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008154 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008155 ret = btrfs_discard_extent(fs_info, start, len, NULL);
Chris Masone688b7252011-10-31 20:52:39 -04008156 btrfs_add_free_space(cache, start, len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08008157 btrfs_free_reserved_bytes(cache, len, delalloc);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008158 trace_btrfs_reserved_extent_free(fs_info, start, len);
Chris Masone688b7252011-10-31 20:52:39 -04008159 }
Dongsheng Yang31193212014-12-12 16:44:35 +08008160
Chris Masonfa9c0d792009-04-03 09:47:43 -04008161 btrfs_put_block_group(cache);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008162 return ret;
8163}
8164
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008165int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008166 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04008167{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008168 return __btrfs_free_reserved_extent(fs_info, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04008169}
8170
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008171int btrfs_free_and_pin_reserved_extent(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04008172 u64 start, u64 len)
8173{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008174 return __btrfs_free_reserved_extent(fs_info, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04008175}
8176
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008177static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008178 u64 parent, u64 root_objectid,
8179 u64 flags, u64 owner, u64 offset,
8180 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008181{
Nikolay Borisovef89b822018-06-20 15:48:58 +03008182 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008183 int ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008184 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008185 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008186 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008187 struct extent_buffer *leaf;
8188 int type;
8189 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04008190
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008191 if (parent > 0)
8192 type = BTRFS_SHARED_DATA_REF_KEY;
8193 else
8194 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04008195
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008196 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05008197
8198 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008199 if (!path)
8200 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05008201
Chris Masonb9473432009-03-13 11:00:37 -04008202 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008203 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8204 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008205 if (ret) {
8206 btrfs_free_path(path);
8207 return ret;
8208 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008209
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008210 leaf = path->nodes[0];
8211 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05008212 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008213 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
8214 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8215 btrfs_set_extent_flags(leaf, extent_item,
8216 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05008217
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008218 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8219 btrfs_set_extent_inline_ref_type(leaf, iref, type);
8220 if (parent > 0) {
8221 struct btrfs_shared_data_ref *ref;
8222 ref = (struct btrfs_shared_data_ref *)(iref + 1);
8223 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8224 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
8225 } else {
8226 struct btrfs_extent_data_ref *ref;
8227 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
8228 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
8229 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
8230 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
8231 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
8232 }
Chris Mason47e4bb92008-02-01 14:51:59 -05008233
8234 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05008235 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04008236
Nikolay Borisov25a356d2018-05-10 15:44:54 +03008237 ret = remove_from_free_space_tree(trans, ins->objectid, ins->offset);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008238 if (ret)
8239 return ret;
8240
David Sterba6b279402019-03-20 12:10:15 +01008241 ret = update_block_group(trans, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008242 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008243 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008244 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05008245 BUG();
8246 }
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008247 trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008248 return ret;
8249}
8250
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008251static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008252 struct btrfs_delayed_ref_node *node,
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03008253 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008254{
Nikolay Borisov9dcdbe02018-05-21 12:27:20 +03008255 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008256 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008257 struct btrfs_extent_item *extent_item;
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008258 struct btrfs_key extent_key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008259 struct btrfs_tree_block_info *block_info;
8260 struct btrfs_extent_inline_ref *iref;
8261 struct btrfs_path *path;
8262 struct extent_buffer *leaf;
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008263 struct btrfs_delayed_tree_ref *ref;
Josef Bacik3173a182013-03-07 14:22:04 -05008264 u32 size = sizeof(*extent_item) + sizeof(*iref);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008265 u64 num_bytes;
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03008266 u64 flags = extent_op->flags_to_set;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008267 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Josef Bacik3173a182013-03-07 14:22:04 -05008268
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008269 ref = btrfs_delayed_node_to_tree_ref(node);
8270
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008271 extent_key.objectid = node->bytenr;
8272 if (skinny_metadata) {
8273 extent_key.offset = ref->level;
8274 extent_key.type = BTRFS_METADATA_ITEM_KEY;
8275 num_bytes = fs_info->nodesize;
8276 } else {
8277 extent_key.offset = node->num_bytes;
8278 extent_key.type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik3173a182013-03-07 14:22:04 -05008279 size += sizeof(*block_info);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008280 num_bytes = node->num_bytes;
8281 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008282
8283 path = btrfs_alloc_path();
Josef Bacik80ee54b2018-10-11 15:54:22 -04008284 if (!path)
Mark Fashehd8926bb2011-07-13 10:38:47 -07008285 return -ENOMEM;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008286
8287 path->leave_spinning = 1;
8288 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008289 &extent_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008290 if (ret) {
Chris Masondd825252015-04-01 08:36:05 -07008291 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008292 return ret;
8293 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008294
8295 leaf = path->nodes[0];
8296 extent_item = btrfs_item_ptr(leaf, path->slots[0],
8297 struct btrfs_extent_item);
8298 btrfs_set_extent_refs(leaf, extent_item, 1);
8299 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8300 btrfs_set_extent_flags(leaf, extent_item,
8301 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008302
Josef Bacik3173a182013-03-07 14:22:04 -05008303 if (skinny_metadata) {
8304 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8305 } else {
8306 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03008307 btrfs_set_tree_block_key(leaf, block_info, &extent_op->key);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008308 btrfs_set_tree_block_level(leaf, block_info, ref->level);
Josef Bacik3173a182013-03-07 14:22:04 -05008309 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
8310 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008311
Nikolay Borisovd4b20732018-05-21 12:27:23 +03008312 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008313 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
8314 btrfs_set_extent_inline_ref_type(leaf, iref,
8315 BTRFS_SHARED_BLOCK_REF_KEY);
Nikolay Borisovd4b20732018-05-21 12:27:23 +03008316 btrfs_set_extent_inline_ref_offset(leaf, iref, ref->parent);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008317 } else {
8318 btrfs_set_extent_inline_ref_type(leaf, iref,
8319 BTRFS_TREE_BLOCK_REF_KEY);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008320 btrfs_set_extent_inline_ref_offset(leaf, iref, ref->root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008321 }
8322
8323 btrfs_mark_buffer_dirty(leaf);
8324 btrfs_free_path(path);
8325
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008326 ret = remove_from_free_space_tree(trans, extent_key.objectid,
8327 num_bytes);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008328 if (ret)
8329 return ret;
8330
David Sterba6b279402019-03-20 12:10:15 +01008331 ret = update_block_group(trans, extent_key.objectid,
Jeff Mahoney6202df62016-06-22 18:54:22 -04008332 fs_info->nodesize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008333 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008334 btrfs_err(fs_info, "update block group failed for %llu %llu",
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008335 extent_key.objectid, extent_key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008336 BUG();
8337 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04008338
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008339 trace_btrfs_reserved_extent_alloc(fs_info, extent_key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008340 fs_info->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008341 return ret;
8342}
8343
8344int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008345 struct btrfs_root *root, u64 owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08008346 u64 offset, u64 ram_bytes,
8347 struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008348{
Qu Wenruo76675592019-04-04 14:45:32 +08008349 struct btrfs_ref generic_ref = { 0 };
Chris Masone6dcd2d2008-07-17 12:53:50 -04008350 int ret;
Chris Mason1c2308f82008-09-23 13:14:13 -04008351
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008352 BUG_ON(root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04008353
Qu Wenruo76675592019-04-04 14:45:32 +08008354 btrfs_init_generic_ref(&generic_ref, BTRFS_ADD_DELAYED_EXTENT,
8355 ins->objectid, ins->offset, 0);
8356 btrfs_init_data_ref(&generic_ref, root->root_key.objectid, owner, offset);
Qu Wenruo8a5040f2019-04-04 14:45:33 +08008357 btrfs_ref_tree_mod(root->fs_info, &generic_ref);
Qu Wenruo76675592019-04-04 14:45:32 +08008358 ret = btrfs_add_delayed_data_ref(trans, &generic_ref,
8359 ram_bytes, NULL, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008360 return ret;
8361}
Chris Masone02119d2008-09-05 16:13:11 -04008362
8363/*
8364 * this is used by the tree logging recovery code. It records that
8365 * an extent has been allocated and makes sure to clear the free
8366 * space cache bits as well
8367 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008368int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008369 u64 root_objectid, u64 owner, u64 offset,
8370 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04008371{
Nikolay Borisov61da2ab2018-06-20 15:49:13 +03008372 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04008373 int ret;
8374 struct btrfs_block_group_cache *block_group;
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008375 struct btrfs_space_info *space_info;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008376
8377 /*
8378 * Mixed block groups will exclude before processing the log so we only
Nicholas D Steeves01327612016-05-19 21:18:45 -04008379 * need to do the exclude dance if this fs isn't mixed.
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008380 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008381 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008382 ret = __exclude_logged_extent(fs_info, ins->objectid,
8383 ins->offset);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008384 if (ret)
8385 return ret;
8386 }
Chris Masone02119d2008-09-05 16:13:11 -04008387
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008388 block_group = btrfs_lookup_block_group(fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008389 if (!block_group)
8390 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04008391
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008392 space_info = block_group->space_info;
8393 spin_lock(&space_info->lock);
8394 spin_lock(&block_group->lock);
8395 space_info->bytes_reserved += ins->offset;
8396 block_group->reserved += ins->offset;
8397 spin_unlock(&block_group->lock);
8398 spin_unlock(&space_info->lock);
8399
Nikolay Borisovef89b822018-06-20 15:48:58 +03008400 ret = alloc_reserved_file_extent(trans, 0, root_objectid, 0, owner,
8401 offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04008402 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04008403 return ret;
8404}
8405
Eric Sandeen48a3b632013-04-25 20:41:01 +00008406static struct extent_buffer *
8407btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008408 u64 bytenr, int level, u64 owner)
Chris Mason65b51a02008-08-01 15:11:20 -04008409{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008410 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason65b51a02008-08-01 15:11:20 -04008411 struct extent_buffer *buf;
8412
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008413 buf = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008414 if (IS_ERR(buf))
8415 return buf;
8416
Qu Wenruob72c3ab2018-08-21 09:53:47 +08008417 /*
8418 * Extra safety check in case the extent tree is corrupted and extent
8419 * allocator chooses to use a tree block which is already used and
8420 * locked.
8421 */
8422 if (buf->lock_owner == current->pid) {
8423 btrfs_err_rl(fs_info,
8424"tree block %llu owner %llu already locked by pid=%d, extent tree corruption detected",
8425 buf->start, btrfs_header_owner(buf), current->pid);
8426 free_extent_buffer(buf);
8427 return ERR_PTR(-EUCLEAN);
8428 }
8429
Chris Mason85d4e462011-07-26 16:11:19 -04008430 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04008431 btrfs_tree_lock(buf);
David Sterba6a884d7d2019-03-20 14:30:02 +01008432 btrfs_clean_tree_block(buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05008433 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008434
David Sterba8bead252018-04-04 02:03:48 +02008435 btrfs_set_lock_blocking_write(buf);
David Sterba4db8c522015-12-03 13:06:46 +01008436 set_extent_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008437
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008438 memzero_extent_buffer(buf, 0, sizeof(struct btrfs_header));
8439 btrfs_set_header_level(buf, level);
8440 btrfs_set_header_bytenr(buf, buf->start);
8441 btrfs_set_header_generation(buf, trans->transid);
8442 btrfs_set_header_backref_rev(buf, BTRFS_MIXED_BACKREF_REV);
8443 btrfs_set_header_owner(buf, owner);
Nikolay Borisovde37aa52018-10-30 16:43:24 +02008444 write_extent_buffer_fsid(buf, fs_info->fs_devices->metadata_uuid);
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008445 write_extent_buffer_chunk_tree_uuid(buf, fs_info->chunk_tree_uuid);
Chris Masond0c803c2008-09-11 16:17:57 -04008446 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01008447 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008448 /*
8449 * we allow two log transactions at a time, use different
Andrea Gelmini52042d82018-11-28 12:05:13 +01008450 * EXTENT bit to differentiate dirty pages.
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008451 */
Filipe Manana656f30d2014-09-26 12:25:56 +01008452 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008453 set_extent_dirty(&root->dirty_log_pages, buf->start,
8454 buf->start + buf->len - 1, GFP_NOFS);
8455 else
8456 set_extent_new(&root->dirty_log_pages, buf->start,
David Sterba3744dbe2016-04-26 23:54:39 +02008457 buf->start + buf->len - 1);
Chris Masond0c803c2008-09-11 16:17:57 -04008458 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01008459 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04008460 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
8461 buf->start + buf->len - 1, GFP_NOFS);
8462 }
Jeff Mahoney64c12922016-06-08 00:36:38 -04008463 trans->dirty = true;
Chris Masonb4ce94d2009-02-04 09:25:08 -05008464 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04008465 return buf;
8466}
8467
Yan, Zhengf0486c62010-05-16 10:46:25 -04008468static struct btrfs_block_rsv *
8469use_block_rsv(struct btrfs_trans_handle *trans,
8470 struct btrfs_root *root, u32 blocksize)
8471{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008472 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008473 struct btrfs_block_rsv *block_rsv;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008474 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008475 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00008476 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008477
8478 block_rsv = get_block_rsv(trans, root);
8479
Miao Xieb586b322013-05-13 13:55:10 +00008480 if (unlikely(block_rsv->size == 0))
8481 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00008482again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008483 ret = block_rsv_use_bytes(block_rsv, blocksize);
8484 if (!ret)
8485 return block_rsv;
8486
Miao Xieb586b322013-05-13 13:55:10 +00008487 if (block_rsv->failfast)
8488 return ERR_PTR(ret);
8489
Miao Xied88033d2013-05-13 13:55:12 +00008490 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
8491 global_updated = true;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008492 update_global_block_rsv(fs_info);
Miao Xied88033d2013-05-13 13:55:12 +00008493 goto again;
8494 }
8495
Josef Bacikba2c4d42018-12-03 10:20:33 -05008496 /*
8497 * The global reserve still exists to save us from ourselves, so don't
8498 * warn_on if we are short on our delayed refs reserve.
8499 */
8500 if (block_rsv->type != BTRFS_BLOCK_RSV_DELREFS &&
8501 btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xieb586b322013-05-13 13:55:10 +00008502 static DEFINE_RATELIMIT_STATE(_rs,
8503 DEFAULT_RATELIMIT_INTERVAL * 10,
8504 /*DEFAULT_RATELIMIT_BURST*/ 1);
8505 if (__ratelimit(&_rs))
8506 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05008507 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00008508 }
8509try_reserve:
8510 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
8511 BTRFS_RESERVE_NO_FLUSH);
8512 if (!ret)
8513 return block_rsv;
8514 /*
8515 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00008516 * the global reserve if its space type is the same as the global
8517 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00008518 */
Miao Xie5881cfc2013-05-13 13:55:11 +00008519 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
8520 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00008521 ret = block_rsv_use_bytes(global_rsv, blocksize);
8522 if (!ret)
8523 return global_rsv;
8524 }
8525 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008526}
8527
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008528static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
8529 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008530{
Lu Fengqi3a584172018-08-04 21:10:55 +08008531 block_rsv_add_bytes(block_rsv, blocksize, false);
Qu Wenruoff6bc372017-12-21 13:42:04 +08008532 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0, NULL);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008533}
8534
Chris Masonfec577f2007-02-26 10:40:21 -05008535/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04008536 * finds a free extent and does all the dirty work required for allocation
Omar Sandoval67b78592015-02-24 02:47:04 -08008537 * returns the tree buffer or an ERR_PTR on error.
Chris Masonfec577f2007-02-26 10:40:21 -05008538 */
David Sterba4d75f8a2014-06-15 01:54:12 +02008539struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
Omar Sandoval310712b2017-01-17 23:24:37 -08008540 struct btrfs_root *root,
8541 u64 parent, u64 root_objectid,
8542 const struct btrfs_disk_key *key,
8543 int level, u64 hint,
8544 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05008545{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008546 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone2fa7222007-03-12 16:22:34 -04008547 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008548 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04008549 struct extent_buffer *buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008550 struct btrfs_delayed_extent_op *extent_op;
Qu Wenruoed4f2552019-04-04 14:45:31 +08008551 struct btrfs_ref generic_ref = { 0 };
Yan, Zhengf0486c62010-05-16 10:46:25 -04008552 u64 flags = 0;
8553 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008554 u32 blocksize = fs_info->nodesize;
8555 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008556
David Sterba05653ef2016-07-15 15:23:37 +02008557#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008558 if (btrfs_is_testing(fs_info)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008559 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008560 level, root_objectid);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008561 if (!IS_ERR(buf))
8562 root->alloc_bytenr += blocksize;
8563 return buf;
8564 }
David Sterba05653ef2016-07-15 15:23:37 +02008565#endif
David Sterbafccb84c2014-09-29 23:53:21 +02008566
Yan, Zhengf0486c62010-05-16 10:46:25 -04008567 block_rsv = use_block_rsv(trans, root, blocksize);
8568 if (IS_ERR(block_rsv))
8569 return ERR_CAST(block_rsv);
8570
Wang Xiaoguang18513092016-07-25 15:51:40 +08008571 ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08008572 empty_size, hint, &ins, 0, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008573 if (ret)
8574 goto out_unuse;
Chris Mason55c69072008-01-09 15:55:33 -05008575
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008576 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level,
8577 root_objectid);
Omar Sandoval67b78592015-02-24 02:47:04 -08008578 if (IS_ERR(buf)) {
8579 ret = PTR_ERR(buf);
8580 goto out_free_reserved;
8581 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008582
8583 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
8584 if (parent == 0)
8585 parent = ins.objectid;
8586 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
8587 } else
8588 BUG_ON(parent > 0);
8589
8590 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Miao Xie78a61842012-11-21 02:21:28 +00008591 extent_op = btrfs_alloc_delayed_extent_op();
Omar Sandoval67b78592015-02-24 02:47:04 -08008592 if (!extent_op) {
8593 ret = -ENOMEM;
8594 goto out_free_buf;
8595 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008596 if (key)
8597 memcpy(&extent_op->key, key, sizeof(extent_op->key));
8598 else
8599 memset(&extent_op->key, 0, sizeof(extent_op->key));
8600 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01008601 extent_op->update_key = skinny_metadata ? false : true;
8602 extent_op->update_flags = true;
8603 extent_op->is_data = false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04008604 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008605
Qu Wenruoed4f2552019-04-04 14:45:31 +08008606 btrfs_init_generic_ref(&generic_ref, BTRFS_ADD_DELAYED_EXTENT,
8607 ins.objectid, ins.offset, parent);
8608 generic_ref.real_root = root->root_key.objectid;
8609 btrfs_init_tree_ref(&generic_ref, level, root_objectid);
Qu Wenruo8a5040f2019-04-04 14:45:33 +08008610 btrfs_ref_tree_mod(fs_info, &generic_ref);
Qu Wenruoed4f2552019-04-04 14:45:31 +08008611 ret = btrfs_add_delayed_tree_ref(trans, &generic_ref,
Omar Sandoval7be07912017-06-06 16:45:30 -07008612 extent_op, NULL, NULL);
Omar Sandoval67b78592015-02-24 02:47:04 -08008613 if (ret)
8614 goto out_free_delayed;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008615 }
Chris Masonfec577f2007-02-26 10:40:21 -05008616 return buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008617
8618out_free_delayed:
8619 btrfs_free_delayed_extent_op(extent_op);
8620out_free_buf:
8621 free_extent_buffer(buf);
8622out_free_reserved:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008623 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008624out_unuse:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008625 unuse_block_rsv(fs_info, block_rsv, blocksize);
Omar Sandoval67b78592015-02-24 02:47:04 -08008626 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05008627}
Chris Masona28ec192007-03-06 20:08:01 -05008628
Yan Zheng2c47e6052009-06-27 21:07:35 -04008629struct walk_control {
8630 u64 refs[BTRFS_MAX_LEVEL];
8631 u64 flags[BTRFS_MAX_LEVEL];
8632 struct btrfs_key update_progress;
Josef Bacikaea6f022019-02-06 15:46:15 -05008633 struct btrfs_key drop_progress;
8634 int drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008635 int stage;
8636 int level;
8637 int shared_level;
8638 int update_ref;
8639 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008640 int reada_slot;
8641 int reada_count;
Josef Bacik78c52d92019-02-06 15:46:14 -05008642 int restarted;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008643};
8644
8645#define DROP_REFERENCE 1
8646#define UPDATE_BACKREF 2
8647
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008648static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
8649 struct btrfs_root *root,
8650 struct walk_control *wc,
8651 struct btrfs_path *path)
8652{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008653 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008654 u64 bytenr;
8655 u64 generation;
8656 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008657 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008658 u32 nritems;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008659 struct btrfs_key key;
8660 struct extent_buffer *eb;
8661 int ret;
8662 int slot;
8663 int nread = 0;
8664
8665 if (path->slots[wc->level] < wc->reada_slot) {
8666 wc->reada_count = wc->reada_count * 2 / 3;
8667 wc->reada_count = max(wc->reada_count, 2);
8668 } else {
8669 wc->reada_count = wc->reada_count * 3 / 2;
8670 wc->reada_count = min_t(int, wc->reada_count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008671 BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008672 }
8673
8674 eb = path->nodes[wc->level];
8675 nritems = btrfs_header_nritems(eb);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008676
8677 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
8678 if (nread >= wc->reada_count)
8679 break;
8680
8681 cond_resched();
8682 bytenr = btrfs_node_blockptr(eb, slot);
8683 generation = btrfs_node_ptr_generation(eb, slot);
8684
8685 if (slot == path->slots[wc->level])
8686 goto reada;
8687
8688 if (wc->stage == UPDATE_BACKREF &&
8689 generation <= root->root_key.offset)
8690 continue;
8691
Yan, Zheng94fcca92009-10-09 09:25:16 -04008692 /* We don't lock the tree block, it's OK to be racy here */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008693 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -05008694 wc->level - 1, 1, &refs,
8695 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008696 /* We don't care about errors in readahead. */
8697 if (ret < 0)
8698 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008699 BUG_ON(refs == 0);
8700
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008701 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008702 if (refs == 1)
8703 goto reada;
8704
Yan, Zheng94fcca92009-10-09 09:25:16 -04008705 if (wc->level == 1 &&
8706 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8707 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008708 if (!wc->update_ref ||
8709 generation <= root->root_key.offset)
8710 continue;
8711 btrfs_node_key_to_cpu(eb, &key, slot);
8712 ret = btrfs_comp_cpu_keys(&key,
8713 &wc->update_progress);
8714 if (ret < 0)
8715 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008716 } else {
8717 if (wc->level == 1 &&
8718 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8719 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008720 }
8721reada:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008722 readahead_tree_block(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008723 nread++;
8724 }
8725 wc->reada_slot = slot;
8726}
8727
Chris Mason9aca1d52007-03-13 11:09:37 -04008728/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008729 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008730 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04008731 * when wc->stage == UPDATE_BACKREF, this function updates
8732 * back refs for pointers in the block.
8733 *
8734 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04008735 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008736static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
8737 struct btrfs_root *root,
8738 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008739 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04008740{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008741 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008742 int level = wc->level;
8743 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04008744 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8745 int ret;
8746
8747 if (wc->stage == UPDATE_BACKREF &&
8748 btrfs_header_owner(eb) != root->root_key.objectid)
8749 return 1;
8750
8751 /*
8752 * when reference count of tree block is 1, it won't increase
8753 * again. once full backref flag is set, we never clear it.
8754 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04008755 if (lookup_info &&
8756 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
8757 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008758 BUG_ON(!path->locks[level]);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008759 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05008760 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008761 &wc->refs[level],
8762 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008763 BUG_ON(ret == -ENOMEM);
8764 if (ret)
8765 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008766 BUG_ON(wc->refs[level] == 0);
8767 }
8768
Yan Zheng2c47e6052009-06-27 21:07:35 -04008769 if (wc->stage == DROP_REFERENCE) {
8770 if (wc->refs[level] > 1)
8771 return 1;
8772
8773 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04008774 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008775 path->locks[level] = 0;
8776 }
8777 return 0;
8778 }
8779
8780 /* wc->stage == UPDATE_BACKREF */
8781 if (!(wc->flags[level] & flag)) {
8782 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07008783 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008784 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07008785 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008786 BUG_ON(ret); /* -ENOMEM */
David Sterbaf5c8daa2019-03-20 11:43:36 +01008787 ret = btrfs_set_disk_extent_flags(trans, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04008788 eb->len, flag,
8789 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008790 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008791 wc->flags[level] |= flag;
8792 }
8793
8794 /*
8795 * the block is shared by multiple trees, so it's not good to
8796 * keep the tree lock
8797 */
8798 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008799 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008800 path->locks[level] = 0;
8801 }
8802 return 0;
8803}
8804
8805/*
Josef Bacik78c52d92019-02-06 15:46:14 -05008806 * This is used to verify a ref exists for this root to deal with a bug where we
8807 * would have a drop_progress key that hadn't been updated properly.
8808 */
8809static int check_ref_exists(struct btrfs_trans_handle *trans,
8810 struct btrfs_root *root, u64 bytenr, u64 parent,
8811 int level)
8812{
8813 struct btrfs_path *path;
8814 struct btrfs_extent_inline_ref *iref;
8815 int ret;
8816
8817 path = btrfs_alloc_path();
8818 if (!path)
8819 return -ENOMEM;
8820
8821 ret = lookup_extent_backref(trans, path, &iref, bytenr,
8822 root->fs_info->nodesize, parent,
8823 root->root_key.objectid, level, 0);
8824 btrfs_free_path(path);
8825 if (ret == -ENOENT)
8826 return 0;
8827 if (ret < 0)
8828 return ret;
8829 return 1;
8830}
8831
8832/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008833 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008834 *
8835 * when wc->stage == DROP_REFERENCE, this function checks
8836 * reference count of the block pointed to. if the block
8837 * is shared and we need update back refs for the subtree
8838 * rooted at the block, this function changes wc->stage to
8839 * UPDATE_BACKREF. if the block is shared and there is no
8840 * need to update back, this function drops the reference
8841 * to the block.
8842 *
8843 * NOTE: return value 1 means we should stop walking down.
8844 */
8845static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8846 struct btrfs_root *root,
8847 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008848 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008849{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008850 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008851 u64 bytenr;
8852 u64 generation;
8853 u64 parent;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008854 struct btrfs_key key;
Qu Wenruo581c1762018-03-29 09:08:11 +08008855 struct btrfs_key first_key;
Qu Wenruoffd4bb22019-04-04 14:45:36 +08008856 struct btrfs_ref ref = { 0 };
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008857 struct extent_buffer *next;
8858 int level = wc->level;
8859 int reada = 0;
8860 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008861 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008862
8863 generation = btrfs_node_ptr_generation(path->nodes[level],
8864 path->slots[level]);
8865 /*
8866 * if the lower level block was created before the snapshot
8867 * was created, we know there is no need to update back refs
8868 * for the subtree
8869 */
8870 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008871 generation <= root->root_key.offset) {
8872 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008873 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008874 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008875
8876 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
Qu Wenruo581c1762018-03-29 09:08:11 +08008877 btrfs_node_key_to_cpu(path->nodes[level], &first_key,
8878 path->slots[level]);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008879
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008880 next = find_extent_buffer(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008881 if (!next) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008882 next = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008883 if (IS_ERR(next))
8884 return PTR_ERR(next);
8885
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008886 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8887 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008888 reada = 1;
8889 }
8890 btrfs_tree_lock(next);
David Sterba8bead252018-04-04 02:03:48 +02008891 btrfs_set_lock_blocking_write(next);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008892
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008893 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008894 &wc->refs[level - 1],
8895 &wc->flags[level - 1]);
Josef Bacik48672682016-09-23 13:23:28 +02008896 if (ret < 0)
8897 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008898
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008899 if (unlikely(wc->refs[level - 1] == 0)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008900 btrfs_err(fs_info, "Missing references.");
Josef Bacik48672682016-09-23 13:23:28 +02008901 ret = -EIO;
8902 goto out_unlock;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008903 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008904 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008905
Yan, Zheng94fcca92009-10-09 09:25:16 -04008906 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008907 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008908 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008909 if (level == 1 &&
8910 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8911 goto skip;
8912
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008913 if (!wc->update_ref ||
8914 generation <= root->root_key.offset)
8915 goto skip;
8916
8917 btrfs_node_key_to_cpu(path->nodes[level], &key,
8918 path->slots[level]);
8919 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8920 if (ret < 0)
8921 goto skip;
8922
8923 wc->stage = UPDATE_BACKREF;
8924 wc->shared_level = level - 1;
8925 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008926 } else {
8927 if (level == 1 &&
8928 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8929 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008930 }
8931
Chris Masonb9fab912012-05-06 07:23:47 -04008932 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008933 btrfs_tree_unlock(next);
8934 free_extent_buffer(next);
8935 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008936 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008937 }
8938
8939 if (!next) {
8940 if (reada && level == 1)
8941 reada_walk_down(trans, root, wc, path);
Qu Wenruo581c1762018-03-29 09:08:11 +08008942 next = read_tree_block(fs_info, bytenr, generation, level - 1,
8943 &first_key);
Liu Bo64c043d2015-05-25 17:30:15 +08008944 if (IS_ERR(next)) {
8945 return PTR_ERR(next);
8946 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008947 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008948 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008949 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008950 btrfs_tree_lock(next);
David Sterba8bead252018-04-04 02:03:48 +02008951 btrfs_set_lock_blocking_write(next);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008952 }
8953
8954 level--;
Josef Bacik48672682016-09-23 13:23:28 +02008955 ASSERT(level == btrfs_header_level(next));
8956 if (level != btrfs_header_level(next)) {
8957 btrfs_err(root->fs_info, "mismatched level");
8958 ret = -EIO;
8959 goto out_unlock;
8960 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008961 path->nodes[level] = next;
8962 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008963 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008964 wc->level = level;
8965 if (wc->level == 1)
8966 wc->reada_slot = 0;
8967 return 0;
8968skip:
8969 wc->refs[level - 1] = 0;
8970 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008971 if (wc->stage == DROP_REFERENCE) {
8972 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
8973 parent = path->nodes[level]->start;
8974 } else {
Josef Bacik48672682016-09-23 13:23:28 +02008975 ASSERT(root->root_key.objectid ==
Yan, Zheng94fcca92009-10-09 09:25:16 -04008976 btrfs_header_owner(path->nodes[level]));
Josef Bacik48672682016-09-23 13:23:28 +02008977 if (root->root_key.objectid !=
8978 btrfs_header_owner(path->nodes[level])) {
8979 btrfs_err(root->fs_info,
8980 "mismatched block owner");
8981 ret = -EIO;
8982 goto out_unlock;
8983 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008984 parent = 0;
8985 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008986
Qu Wenruo2cd86d32018-09-27 14:42:33 +08008987 /*
Josef Bacik78c52d92019-02-06 15:46:14 -05008988 * If we had a drop_progress we need to verify the refs are set
8989 * as expected. If we find our ref then we know that from here
8990 * on out everything should be correct, and we can clear the
8991 * ->restarted flag.
8992 */
8993 if (wc->restarted) {
8994 ret = check_ref_exists(trans, root, bytenr, parent,
8995 level - 1);
8996 if (ret < 0)
8997 goto out_unlock;
8998 if (ret == 0)
8999 goto no_delete;
9000 ret = 0;
9001 wc->restarted = 0;
9002 }
9003
9004 /*
Qu Wenruo2cd86d32018-09-27 14:42:33 +08009005 * Reloc tree doesn't contribute to qgroup numbers, and we have
9006 * already accounted them at merge time (replace_path),
9007 * thus we could skip expensive subtree trace here.
9008 */
9009 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
9010 need_account) {
Lu Fengqideb40622018-07-18 14:45:38 +08009011 ret = btrfs_qgroup_trace_subtree(trans, next,
Qu Wenruo33d1f052016-10-18 09:31:28 +08009012 generation, level - 1);
Mark Fasheh11526512014-07-17 12:39:01 -07009013 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009014 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009015 "Error %d accounting shared subtree. Quota is out of sync, rescan required.",
9016 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07009017 }
9018 }
Josef Bacikaea6f022019-02-06 15:46:15 -05009019
9020 /*
9021 * We need to update the next key in our walk control so we can
9022 * update the drop_progress key accordingly. We don't care if
9023 * find_next_key doesn't find a key because that means we're at
9024 * the end and are going to clean up now.
9025 */
9026 wc->drop_level = level;
9027 find_next_key(path, level, &wc->drop_progress);
9028
Qu Wenruoffd4bb22019-04-04 14:45:36 +08009029 btrfs_init_generic_ref(&ref, BTRFS_DROP_DELAYED_REF, bytenr,
9030 fs_info->nodesize, parent);
9031 btrfs_init_tree_ref(&ref, level - 1, root->root_key.objectid);
9032 ret = btrfs_free_extent(trans, &ref);
Josef Bacik48672682016-09-23 13:23:28 +02009033 if (ret)
9034 goto out_unlock;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009035 }
Josef Bacik78c52d92019-02-06 15:46:14 -05009036no_delete:
Josef Bacik48672682016-09-23 13:23:28 +02009037 *lookup_info = 1;
9038 ret = 1;
9039
9040out_unlock:
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009041 btrfs_tree_unlock(next);
9042 free_extent_buffer(next);
Josef Bacik48672682016-09-23 13:23:28 +02009043
9044 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009045}
9046
9047/*
Liu Bo2c016dc2012-12-26 15:32:17 +08009048 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04009049 *
9050 * when wc->stage == DROP_REFERENCE, this function drops
9051 * reference count on the block.
9052 *
9053 * when wc->stage == UPDATE_BACKREF, this function changes
9054 * wc->stage back to DROP_REFERENCE if we changed wc->stage
9055 * to UPDATE_BACKREF previously while processing the block.
9056 *
9057 * NOTE: return value 1 means we should stop walking up.
9058 */
9059static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
9060 struct btrfs_root *root,
9061 struct btrfs_path *path,
9062 struct walk_control *wc)
9063{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009064 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009065 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009066 int level = wc->level;
9067 struct extent_buffer *eb = path->nodes[level];
9068 u64 parent = 0;
9069
9070 if (wc->stage == UPDATE_BACKREF) {
9071 BUG_ON(wc->shared_level < level);
9072 if (level < wc->shared_level)
9073 goto out;
9074
Yan Zheng2c47e6052009-06-27 21:07:35 -04009075 ret = find_next_key(path, level + 1, &wc->update_progress);
9076 if (ret > 0)
9077 wc->update_ref = 0;
9078
9079 wc->stage = DROP_REFERENCE;
9080 wc->shared_level = -1;
9081 path->slots[level] = 0;
9082
9083 /*
9084 * check reference count again if the block isn't locked.
9085 * we should start walking down the tree again if reference
9086 * count is one.
9087 */
9088 if (!path->locks[level]) {
9089 BUG_ON(level == 0);
9090 btrfs_tree_lock(eb);
David Sterba8bead252018-04-04 02:03:48 +02009091 btrfs_set_lock_blocking_write(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009092 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009093
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009094 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05009095 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009096 &wc->refs[level],
9097 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009098 if (ret < 0) {
9099 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009100 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009101 return ret;
9102 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009103 BUG_ON(wc->refs[level] == 0);
9104 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04009105 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009106 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009107 return 1;
9108 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009109 }
9110 }
9111
9112 /* wc->stage == DROP_REFERENCE */
9113 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
9114
9115 if (wc->refs[level] == 1) {
9116 if (level == 0) {
9117 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07009118 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009119 else
Josef Bacike339a6b2014-07-02 10:54:25 -07009120 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009121 BUG_ON(ret); /* -ENOMEM */
Qu Wenruoc4140cb2019-04-04 14:45:37 +08009122 if (is_fstree(root->root_key.objectid)) {
9123 ret = btrfs_qgroup_trace_leaf_items(trans, eb);
9124 if (ret) {
9125 btrfs_err_rl(fs_info,
9126 "error %d accounting leaf items, quota is out of sync, rescan required",
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009127 ret);
Qu Wenruoc4140cb2019-04-04 14:45:37 +08009128 }
Mark Fasheh11526512014-07-17 12:39:01 -07009129 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009130 }
David Sterba6a884d7d2019-03-20 14:30:02 +01009131 /* make block locked assertion in btrfs_clean_tree_block happy */
Yan Zheng2c47e6052009-06-27 21:07:35 -04009132 if (!path->locks[level] &&
9133 btrfs_header_generation(eb) == trans->transid) {
9134 btrfs_tree_lock(eb);
David Sterba8bead252018-04-04 02:03:48 +02009135 btrfs_set_lock_blocking_write(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009136 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009137 }
David Sterba6a884d7d2019-03-20 14:30:02 +01009138 btrfs_clean_tree_block(eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009139 }
9140
9141 if (eb == root->node) {
9142 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9143 parent = eb->start;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009144 else if (root->root_key.objectid != btrfs_header_owner(eb))
9145 goto owner_mismatch;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009146 } else {
9147 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9148 parent = path->nodes[level + 1]->start;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009149 else if (root->root_key.objectid !=
9150 btrfs_header_owner(path->nodes[level + 1]))
9151 goto owner_mismatch;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009152 }
9153
Jan Schmidt5581a512012-05-16 17:04:52 +02009154 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009155out:
9156 wc->refs[level] = 0;
9157 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009158 return 0;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009159
9160owner_mismatch:
9161 btrfs_err_rl(fs_info, "unexpected tree owner, have %llu expect %llu",
9162 btrfs_header_owner(eb), root->root_key.objectid);
9163 return -EUCLEAN;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009164}
9165
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009166static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
9167 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009168 struct btrfs_path *path,
9169 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009170{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009171 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04009172 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009173 int ret;
9174
Yan Zheng2c47e6052009-06-27 21:07:35 -04009175 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04009176 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009177 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009178 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009179
Yan Zheng2c47e6052009-06-27 21:07:35 -04009180 if (level == 0)
9181 break;
9182
Yan, Zheng7a7965f2010-02-01 02:41:17 +00009183 if (path->slots[level] >=
9184 btrfs_header_nritems(path->nodes[level]))
9185 break;
9186
Yan, Zheng94fcca92009-10-09 09:25:16 -04009187 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009188 if (ret > 0) {
9189 path->slots[level]++;
9190 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00009191 } else if (ret < 0)
9192 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009193 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009194 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009195 return 0;
9196}
9197
Chris Masond3977122009-01-05 21:25:51 -05009198static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05009199 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04009200 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009201 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05009202{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009203 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05009204 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04009205
Yan Zheng2c47e6052009-06-27 21:07:35 -04009206 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
9207 while (level < max_level && path->nodes[level]) {
9208 wc->level = level;
9209 if (path->slots[level] + 1 <
9210 btrfs_header_nritems(path->nodes[level])) {
9211 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05009212 return 0;
9213 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009214 ret = walk_up_proc(trans, root, path, wc);
9215 if (ret > 0)
9216 return 0;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009217 if (ret < 0)
9218 return ret;
Chris Masonbd56b302009-02-04 09:27:02 -05009219
Yan Zheng2c47e6052009-06-27 21:07:35 -04009220 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04009221 btrfs_tree_unlock_rw(path->nodes[level],
9222 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009223 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009224 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009225 free_extent_buffer(path->nodes[level]);
9226 path->nodes[level] = NULL;
9227 level++;
Chris Mason20524f02007-03-10 06:35:47 -05009228 }
9229 }
9230 return 1;
9231}
9232
Chris Mason9aca1d52007-03-13 11:09:37 -04009233/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04009234 * drop a subvolume tree.
9235 *
9236 * this function traverses the tree freeing any blocks that only
9237 * referenced by the tree.
9238 *
9239 * when a shared tree block is found. this function decreases its
9240 * reference count by one. if update_ref is true, this function
9241 * also make sure backrefs for the shared block and all lower level
9242 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00009243 *
9244 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04009245 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04009246int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009247 struct btrfs_block_rsv *block_rsv, int update_ref,
9248 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05009249{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009250 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04009251 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009252 struct btrfs_trans_handle *trans;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009253 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04009254 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009255 struct walk_control *wc;
9256 struct btrfs_key key;
9257 int err = 0;
9258 int ret;
9259 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04009260 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05009261
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09009262 btrfs_debug(fs_info, "Drop subvolume %llu", root->root_key.objectid);
Mark Fasheh11526512014-07-17 12:39:01 -07009263
Chris Mason5caf2a02007-04-02 11:20:42 -04009264 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009265 if (!path) {
9266 err = -ENOMEM;
9267 goto out;
9268 }
Chris Mason20524f02007-03-10 06:35:47 -05009269
Yan Zheng2c47e6052009-06-27 21:07:35 -04009270 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07009271 if (!wc) {
9272 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009273 err = -ENOMEM;
9274 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07009275 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009276
Yan, Zhenga22285a2010-05-16 10:48:46 -04009277 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009278 if (IS_ERR(trans)) {
9279 err = PTR_ERR(trans);
9280 goto out_free;
9281 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00009282
Josef Bacik0568e822018-11-30 11:52:14 -05009283 err = btrfs_run_delayed_items(trans);
9284 if (err)
9285 goto out_end_trans;
9286
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009287 if (block_rsv)
9288 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009289
Josef Bacik83354f02018-11-30 11:52:13 -05009290 /*
9291 * This will help us catch people modifying the fs tree while we're
9292 * dropping it. It is unsafe to mess with the fs tree while it's being
9293 * dropped as we unlock the root node and parent nodes as we walk down
9294 * the tree, assuming nothing will change. If something does change
9295 * then we'll have stale information and drop references to blocks we've
9296 * already dropped.
9297 */
9298 set_bit(BTRFS_ROOT_DELETING, &root->state);
Chris Mason9f3a7422007-08-07 15:52:19 -04009299 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009300 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009301 path->nodes[level] = btrfs_lock_root_node(root);
David Sterba8bead252018-04-04 02:03:48 +02009302 btrfs_set_lock_blocking_write(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04009303 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009304 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009305 memset(&wc->update_progress, 0,
9306 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04009307 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04009308 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009309 memcpy(&wc->update_progress, &key,
9310 sizeof(wc->update_progress));
9311
Chris Mason6702ed42007-08-07 16:15:09 -04009312 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009313 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04009314 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009315 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
9316 path->lowest_level = 0;
9317 if (ret < 0) {
9318 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009319 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04009320 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009321 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009322
Chris Mason7d9eb122008-07-08 14:19:17 -04009323 /*
9324 * unlock our path, this is safe because only this
9325 * function is allowed to delete this snapshot
9326 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009327 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04009328
Yan Zheng2c47e6052009-06-27 21:07:35 -04009329 level = btrfs_header_level(root->node);
9330 while (1) {
9331 btrfs_tree_lock(path->nodes[level]);
David Sterba8bead252018-04-04 02:03:48 +02009332 btrfs_set_lock_blocking_write(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009333 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009334
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009335 ret = btrfs_lookup_extent_info(trans, fs_info,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009336 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05009337 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04009338 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009339 if (ret < 0) {
9340 err = ret;
9341 goto out_end_trans;
9342 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009343 BUG_ON(wc->refs[level] == 0);
9344
9345 if (level == root_item->drop_level)
9346 break;
9347
9348 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009349 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009350 WARN_ON(wc->refs[level] != 1);
9351 level--;
9352 }
9353 }
9354
Josef Bacik78c52d92019-02-06 15:46:14 -05009355 wc->restarted = test_bit(BTRFS_ROOT_DEAD_TREE, &root->state);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009356 wc->level = level;
9357 wc->shared_level = -1;
9358 wc->stage = DROP_REFERENCE;
9359 wc->update_ref = update_ref;
9360 wc->keep_locks = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009361 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009362
9363 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00009364
Yan Zheng2c47e6052009-06-27 21:07:35 -04009365 ret = walk_down_tree(trans, root, path, wc);
9366 if (ret < 0) {
9367 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04009368 break;
9369 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009370
9371 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
9372 if (ret < 0) {
9373 err = ret;
9374 break;
9375 }
9376
9377 if (ret > 0) {
9378 BUG_ON(wc->stage != DROP_REFERENCE);
9379 break;
9380 }
9381
9382 if (wc->stage == DROP_REFERENCE) {
Josef Bacikaea6f022019-02-06 15:46:15 -05009383 wc->drop_level = wc->level;
9384 btrfs_node_key_to_cpu(path->nodes[wc->drop_level],
9385 &wc->drop_progress,
9386 path->slots[wc->drop_level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009387 }
Josef Bacikaea6f022019-02-06 15:46:15 -05009388 btrfs_cpu_key_to_disk(&root_item->drop_progress,
9389 &wc->drop_progress);
9390 root_item->drop_level = wc->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009391
9392 BUG_ON(wc->level == 0);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009393 if (btrfs_should_end_transaction(trans) ||
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009394 (!for_reloc && btrfs_need_cleaner_sleep(fs_info))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009395 ret = btrfs_update_root(trans, tree_root,
9396 &root->root_key,
9397 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009398 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009399 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009400 err = ret;
9401 goto out_end_trans;
9402 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009403
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009404 btrfs_end_transaction_throttle(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009405 if (!for_reloc && btrfs_need_cleaner_sleep(fs_info)) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009406 btrfs_debug(fs_info,
9407 "drop snapshot early exit");
Josef Bacik3c8f2422013-07-15 11:57:06 -04009408 err = -EAGAIN;
9409 goto out_free;
9410 }
9411
Yan, Zhenga22285a2010-05-16 10:48:46 -04009412 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009413 if (IS_ERR(trans)) {
9414 err = PTR_ERR(trans);
9415 goto out_free;
9416 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009417 if (block_rsv)
9418 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04009419 }
Chris Mason20524f02007-03-10 06:35:47 -05009420 }
David Sterbab3b4aa72011-04-21 01:20:15 +02009421 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009422 if (err)
9423 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009424
Lu Fengqiab9ce7d2018-08-01 11:32:27 +08009425 ret = btrfs_del_root(trans, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009426 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009427 btrfs_abort_transaction(trans, ret);
Jeff Mahoneye19182c2017-12-04 13:11:45 -05009428 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009429 goto out_end_trans;
9430 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009431
Yan, Zheng76dda932009-09-21 16:00:26 -04009432 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00009433 ret = btrfs_find_root(tree_root, &root->root_key, path,
9434 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009435 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009436 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009437 err = ret;
9438 goto out_end_trans;
9439 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05009440 /* if we fail to delete the orphan item this time
9441 * around, it'll get picked up the next time.
9442 *
9443 * The most common failure here is just -ENOENT.
9444 */
9445 btrfs_del_orphan_item(trans, tree_root,
9446 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04009447 }
9448 }
9449
Miao Xie27cdeb72014-04-02 19:51:05 +08009450 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Josef Bacik2b9dbef2015-09-15 10:07:04 -04009451 btrfs_add_dropped_root(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009452 } else {
9453 free_extent_buffer(root->node);
9454 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00009455 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009456 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04009457 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009458out_end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009459 btrfs_end_transaction_throttle(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009460out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04009461 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04009462 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009463out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04009464 /*
9465 * So if we need to stop dropping the snapshot for whatever reason we
9466 * need to make sure to add it back to the dead root list so that we
9467 * keep trying to do the work later. This also cleans up roots if we
9468 * don't have it in the radix (like when we recover after a power fail
9469 * or unmount) so we don't leak memory.
9470 */
Thomas Meyer897ca812017-10-07 16:02:21 +02009471 if (!for_reloc && !root_dropped)
Josef Bacikd29a9f62013-07-17 19:30:20 -04009472 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08009473 if (err && err != -EAGAIN)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009474 btrfs_handle_fs_error(fs_info, err, NULL);
Jeff Mahoney2c536792011-10-03 23:22:41 -04009475 return err;
Chris Mason20524f02007-03-10 06:35:47 -05009476}
Chris Mason9078a3e2007-04-26 16:46:15 -04009477
Yan Zheng2c47e6052009-06-27 21:07:35 -04009478/*
9479 * drop subtree rooted at tree block 'node'.
9480 *
9481 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009482 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04009483 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04009484int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
9485 struct btrfs_root *root,
9486 struct extent_buffer *node,
9487 struct extent_buffer *parent)
9488{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009489 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009490 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009491 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009492 int level;
9493 int parent_level;
9494 int ret = 0;
9495 int wret;
9496
Yan Zheng2c47e6052009-06-27 21:07:35 -04009497 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
9498
Yan Zhengf82d02d2008-10-29 14:49:05 -04009499 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009500 if (!path)
9501 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009502
Yan Zheng2c47e6052009-06-27 21:07:35 -04009503 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009504 if (!wc) {
9505 btrfs_free_path(path);
9506 return -ENOMEM;
9507 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009508
Chris Masonb9447ef82009-03-09 11:45:38 -04009509 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009510 parent_level = btrfs_header_level(parent);
9511 extent_buffer_get(parent);
9512 path->nodes[parent_level] = parent;
9513 path->slots[parent_level] = btrfs_header_nritems(parent);
9514
Chris Masonb9447ef82009-03-09 11:45:38 -04009515 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009516 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009517 path->nodes[level] = node;
9518 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009519 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009520
9521 wc->refs[parent_level] = 1;
9522 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
9523 wc->level = level;
9524 wc->shared_level = -1;
9525 wc->stage = DROP_REFERENCE;
9526 wc->update_ref = 0;
9527 wc->keep_locks = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009528 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009529
9530 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009531 wret = walk_down_tree(trans, root, path, wc);
9532 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04009533 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009534 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009535 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009536
Yan Zheng2c47e6052009-06-27 21:07:35 -04009537 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009538 if (wret < 0)
9539 ret = wret;
9540 if (wret != 0)
9541 break;
9542 }
9543
Yan Zheng2c47e6052009-06-27 21:07:35 -04009544 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009545 btrfs_free_path(path);
9546 return ret;
9547}
9548
Jeff Mahoney6202df62016-06-22 18:54:22 -04009549static u64 update_block_group_flags(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04009550{
9551 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009552 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04009553
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009554 /*
9555 * if restripe for this chunk_type is on pick target profile and
9556 * return, otherwise do the usual balance
9557 */
Jeff Mahoney6202df62016-06-22 18:54:22 -04009558 stripped = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009559 if (stripped)
9560 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02009561
Jeff Mahoney6202df62016-06-22 18:54:22 -04009562 num_devices = fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05009563
David Sterbaa07e8a42019-05-31 16:54:26 +02009564 stripped = BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID56_MASK |
David Sterbac7369b32019-05-31 15:39:31 +02009565 BTRFS_BLOCK_GROUP_RAID1_MASK | BTRFS_BLOCK_GROUP_RAID10;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009566
Chris Masonec44a352008-04-28 15:29:52 -04009567 if (num_devices == 1) {
9568 stripped |= BTRFS_BLOCK_GROUP_DUP;
9569 stripped = flags & ~stripped;
9570
9571 /* turn raid0 into single device chunks */
9572 if (flags & BTRFS_BLOCK_GROUP_RAID0)
9573 return stripped;
9574
9575 /* turn mirroring into duplication */
David Sterbac7369b32019-05-31 15:39:31 +02009576 if (flags & (BTRFS_BLOCK_GROUP_RAID1_MASK |
Chris Masonec44a352008-04-28 15:29:52 -04009577 BTRFS_BLOCK_GROUP_RAID10))
9578 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04009579 } else {
9580 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04009581 if (flags & stripped)
9582 return flags;
9583
9584 stripped |= BTRFS_BLOCK_GROUP_DUP;
9585 stripped = flags & ~stripped;
9586
9587 /* switch duplicated blocks with raid1 */
9588 if (flags & BTRFS_BLOCK_GROUP_DUP)
9589 return stripped | BTRFS_BLOCK_GROUP_RAID1;
9590
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009591 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04009592 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009593
Chris Masonec44a352008-04-28 15:29:52 -04009594 return flags;
9595}
9596
Zhaolei868f4012015-08-05 16:43:27 +08009597static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04009598{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009599 struct btrfs_space_info *sinfo = cache->space_info;
9600 u64 num_bytes;
Qu Wenruo3ece54e2019-01-30 13:07:51 +08009601 u64 sinfo_used;
Miao Xie199c36e2011-07-15 10:34:36 +00009602 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009603 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04009604
Miao Xie199c36e2011-07-15 10:34:36 +00009605 /*
9606 * We need some metadata space and system metadata space for
9607 * allocating chunks in some corner cases until we force to set
9608 * it to be readonly.
9609 */
9610 if ((sinfo->flags &
9611 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
9612 !force)
Byongho Leeee221842015-12-15 01:42:10 +09009613 min_allocable_bytes = SZ_1M;
Miao Xie199c36e2011-07-15 10:34:36 +00009614 else
9615 min_allocable_bytes = 0;
9616
Yan, Zhengf0486c62010-05-16 10:46:25 -04009617 spin_lock(&sinfo->lock);
9618 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00009619
9620 if (cache->ro) {
Zhaolei868f4012015-08-05 16:43:27 +08009621 cache->ro++;
WuBo61cfea92011-07-26 03:30:11 +00009622 ret = 0;
9623 goto out;
9624 }
9625
Yan, Zhengf0486c62010-05-16 10:46:25 -04009626 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
9627 cache->bytes_super - btrfs_block_group_used(&cache->item);
Qu Wenruo3ece54e2019-01-30 13:07:51 +08009628 sinfo_used = btrfs_space_info_used(sinfo, true);
Chris Mason7d9eb122008-07-08 14:19:17 -04009629
Qu Wenruo3ece54e2019-01-30 13:07:51 +08009630 if (sinfo_used + num_bytes + min_allocable_bytes <=
9631 sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04009632 sinfo->bytes_readonly += num_bytes;
Zhaolei868f4012015-08-05 16:43:27 +08009633 cache->ro++;
Josef Bacik633c0aa2014-10-31 09:49:34 -04009634 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009635 ret = 0;
9636 }
WuBo61cfea92011-07-26 03:30:11 +00009637out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04009638 spin_unlock(&cache->lock);
9639 spin_unlock(&sinfo->lock);
Qu Wenruo3ece54e2019-01-30 13:07:51 +08009640 if (ret == -ENOSPC && btrfs_test_opt(cache->fs_info, ENOSPC_DEBUG)) {
9641 btrfs_info(cache->fs_info,
9642 "unable to make block group %llu ro",
9643 cache->key.objectid);
9644 btrfs_info(cache->fs_info,
9645 "sinfo_used=%llu bg_num_bytes=%llu min_allocable=%llu",
9646 sinfo_used, num_bytes, min_allocable_bytes);
9647 dump_space_info(cache->fs_info, cache->space_info, 0, 0);
9648 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009649 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04009650}
9651
Nikolay Borisovc83488a2018-06-20 15:49:14 +03009652int btrfs_inc_block_group_ro(struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009653
9654{
Nikolay Borisovc83488a2018-06-20 15:49:14 +03009655 struct btrfs_fs_info *fs_info = cache->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009656 struct btrfs_trans_handle *trans;
9657 u64 alloc_flags;
9658 int ret;
9659
Chris Mason1bbc6212015-04-06 12:46:08 -07009660again:
Jeff Mahoney5e00f192017-02-15 16:28:29 -05009661 trans = btrfs_join_transaction(fs_info->extent_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009662 if (IS_ERR(trans))
9663 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009664
Chris Mason1bbc6212015-04-06 12:46:08 -07009665 /*
9666 * we're not allowed to set block groups readonly after the dirty
9667 * block groups cache has started writing. If it already started,
9668 * back off and let this transaction commit
9669 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009670 mutex_lock(&fs_info->ro_block_group_mutex);
Josef Bacik3204d332015-09-24 10:46:10 -04009671 if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009672 u64 transid = trans->transid;
9673
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009674 mutex_unlock(&fs_info->ro_block_group_mutex);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009675 btrfs_end_transaction(trans);
Chris Mason1bbc6212015-04-06 12:46:08 -07009676
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009677 ret = btrfs_wait_for_commit(fs_info, transid);
Chris Mason1bbc6212015-04-06 12:46:08 -07009678 if (ret)
9679 return ret;
9680 goto again;
9681 }
9682
Chris Mason153c35b2015-05-19 18:54:41 -07009683 /*
9684 * if we are changing raid levels, try to allocate a corresponding
9685 * block group with the new raid level.
9686 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009687 alloc_flags = update_block_group_flags(fs_info, cache->flags);
Chris Mason153c35b2015-05-19 18:54:41 -07009688 if (alloc_flags != cache->flags) {
Nikolay Borisov01458822018-06-20 15:49:05 +03009689 ret = do_chunk_alloc(trans, alloc_flags,
Chris Mason153c35b2015-05-19 18:54:41 -07009690 CHUNK_ALLOC_FORCE);
9691 /*
9692 * ENOSPC is allowed here, we may have enough space
9693 * already allocated at the new raid level to
9694 * carry on
9695 */
9696 if (ret == -ENOSPC)
9697 ret = 0;
9698 if (ret < 0)
9699 goto out;
9700 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009701
Zhaolei868f4012015-08-05 16:43:27 +08009702 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009703 if (!ret)
9704 goto out;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009705 alloc_flags = get_alloc_profile(fs_info, cache->space_info->flags);
Nikolay Borisov01458822018-06-20 15:49:05 +03009706 ret = do_chunk_alloc(trans, alloc_flags, CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009707 if (ret < 0)
9708 goto out;
Zhaolei868f4012015-08-05 16:43:27 +08009709 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009710out:
Shaohua Li2f081082015-01-09 10:40:15 -08009711 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009712 alloc_flags = update_block_group_flags(fs_info, cache->flags);
David Sterba34441362016-10-04 19:34:27 +02009713 mutex_lock(&fs_info->chunk_mutex);
Nikolay Borisov451a2c12018-06-20 15:49:07 +03009714 check_system_chunk(trans, alloc_flags);
David Sterba34441362016-10-04 19:34:27 +02009715 mutex_unlock(&fs_info->chunk_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009716 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009717 mutex_unlock(&fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009718
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009719 btrfs_end_transaction(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009720 return ret;
9721}
9722
Nikolay Borisov43a7e992018-06-20 15:49:15 +03009723int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, u64 type)
Chris Masonc87f08c2011-02-16 13:57:04 -05009724{
Nikolay Borisov43a7e992018-06-20 15:49:15 +03009725 u64 alloc_flags = get_alloc_profile(trans->fs_info, type);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009726
Nikolay Borisov01458822018-06-20 15:49:05 +03009727 return do_chunk_alloc(trans, alloc_flags, CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05009728}
9729
Miao Xie6d07bce2011-01-05 10:07:31 +00009730/*
9731 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04009732 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00009733 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009734u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00009735{
9736 struct btrfs_block_group_cache *block_group;
9737 u64 free_bytes = 0;
9738 int factor;
9739
Nicholas D Steeves01327612016-05-19 21:18:45 -04009740 /* It's df, we don't care if it's racy */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009741 if (list_empty(&sinfo->ro_bgs))
9742 return 0;
9743
9744 spin_lock(&sinfo->lock);
9745 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00009746 spin_lock(&block_group->lock);
9747
9748 if (!block_group->ro) {
9749 spin_unlock(&block_group->lock);
9750 continue;
9751 }
9752
David Sterba46df06b2018-07-13 20:46:30 +02009753 factor = btrfs_bg_type_to_factor(block_group->flags);
Miao Xie6d07bce2011-01-05 10:07:31 +00009754 free_bytes += (block_group->key.offset -
9755 btrfs_block_group_used(&block_group->item)) *
9756 factor;
9757
9758 spin_unlock(&block_group->lock);
9759 }
Miao Xie6d07bce2011-01-05 10:07:31 +00009760 spin_unlock(&sinfo->lock);
9761
9762 return free_bytes;
9763}
9764
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009765void btrfs_dec_block_group_ro(struct btrfs_block_group_cache *cache)
Yan, Zhengf0486c62010-05-16 10:46:25 -04009766{
9767 struct btrfs_space_info *sinfo = cache->space_info;
9768 u64 num_bytes;
9769
9770 BUG_ON(!cache->ro);
9771
9772 spin_lock(&sinfo->lock);
9773 spin_lock(&cache->lock);
Zhaolei868f4012015-08-05 16:43:27 +08009774 if (!--cache->ro) {
9775 num_bytes = cache->key.offset - cache->reserved -
9776 cache->pinned - cache->bytes_super -
9777 btrfs_block_group_used(&cache->item);
9778 sinfo->bytes_readonly -= num_bytes;
9779 list_del_init(&cache->ro_list);
9780 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009781 spin_unlock(&cache->lock);
9782 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009783}
9784
Josef Bacikba1bf482009-09-11 16:11:19 -04009785/*
Andrea Gelmini52042d82018-11-28 12:05:13 +01009786 * Checks to see if it's even possible to relocate this block group.
Josef Bacikba1bf482009-09-11 16:11:19 -04009787 *
9788 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
9789 * ok to go ahead and try.
9790 */
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009791int btrfs_can_relocate(struct btrfs_fs_info *fs_info, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04009792{
Zheng Yan1a40e232008-09-26 10:09:34 -04009793 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04009794 struct btrfs_space_info *space_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009795 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacikba1bf482009-09-11 16:11:19 -04009796 struct btrfs_device *device;
liubocdcb7252011-08-03 10:15:25 +00009797 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04009798 u64 dev_min = 1;
9799 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009800 u64 target;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009801 int debug;
liubocdcb7252011-08-03 10:15:25 +00009802 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04009803 int full = 0;
9804 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05009805
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009806 debug = btrfs_test_opt(fs_info, ENOSPC_DEBUG);
Qu Wenruo0305bc22016-03-23 11:38:17 +08009807
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009808 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04009809
Josef Bacikba1bf482009-09-11 16:11:19 -04009810 /* odd, couldn't find the block group, leave it alone */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009811 if (!block_group) {
9812 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009813 btrfs_warn(fs_info,
Qu Wenruo0305bc22016-03-23 11:38:17 +08009814 "can't find block group for bytenr %llu",
9815 bytenr);
Josef Bacikba1bf482009-09-11 16:11:19 -04009816 return -1;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009817 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009818
liubocdcb7252011-08-03 10:15:25 +00009819 min_free = btrfs_block_group_used(&block_group->item);
9820
Josef Bacikba1bf482009-09-11 16:11:19 -04009821 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00009822 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04009823 goto out;
Chris Mason323da792008-05-09 11:46:48 -04009824
Josef Bacikba1bf482009-09-11 16:11:19 -04009825 space_info = block_group->space_info;
9826 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04009827
Josef Bacikba1bf482009-09-11 16:11:19 -04009828 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04009829
Josef Bacikba1bf482009-09-11 16:11:19 -04009830 /*
9831 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04009832 * relocate it unless we're able to allocate a new chunk below.
9833 *
9834 * Otherwise, we need to make sure we have room in the space to handle
9835 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04009836 */
Chris Mason7ce618d2009-09-22 14:48:44 -04009837 if ((space_info->total_bytes != block_group->key.offset) &&
Liu Bo41361352017-02-13 15:42:21 -08009838 (btrfs_space_info_used(space_info, false) + min_free <
9839 space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04009840 spin_unlock(&space_info->lock);
9841 goto out;
9842 }
9843 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009844
Josef Bacikba1bf482009-09-11 16:11:19 -04009845 /*
9846 * ok we don't have enough space, but maybe we have free space on our
9847 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009848 * alloc devices and guess if we have enough space. if this block
9849 * group is going to be restriped, run checks against the target
9850 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04009851 */
9852 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05009853
liubocdcb7252011-08-03 10:15:25 +00009854 /*
9855 * index:
9856 * 0: raid10
9857 * 1: raid1
9858 * 2: dup
9859 * 3: raid0
9860 * 4: single
9861 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009862 target = get_restripe_target(fs_info, block_group->flags);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009863 if (target) {
Qu Wenruo3e72ee82018-01-30 18:20:45 +08009864 index = btrfs_bg_flags_to_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009865 } else {
9866 /*
9867 * this is just a balance, so if we were marked as full
9868 * we know there is no space for a new chunk
9869 */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009870 if (full) {
9871 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009872 btrfs_warn(fs_info,
9873 "no space to alloc new chunk for block group %llu",
9874 block_group->key.objectid);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009875 goto out;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009876 }
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009877
Qu Wenruo3e72ee82018-01-30 18:20:45 +08009878 index = btrfs_bg_flags_to_raid_index(block_group->flags);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009879 }
9880
Miao Xiee6ec7162013-01-17 05:38:51 +00009881 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00009882 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04009883 /* Divide by 2 */
9884 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009885 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00009886 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00009887 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04009888 /* Multiply by 2 */
9889 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009890 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00009891 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01009892 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00009893 }
9894
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009895 mutex_lock(&fs_info->chunk_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04009896 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00009897 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04009898
Josef Bacikba1bf482009-09-11 16:11:19 -04009899 /*
9900 * check to make sure we can actually find a chunk with enough
9901 * space to fit our block group in.
9902 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01009903 if (device->total_bytes > device->bytes_used + min_free &&
Anand Jain401e29c2017-12-04 12:54:55 +08009904 !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Nikolay Borisov60dfdf22019-03-27 14:24:14 +02009905 ret = find_free_dev_extent(device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00009906 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009907 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009908 dev_nr++;
9909
9910 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009911 break;
liubocdcb7252011-08-03 10:15:25 +00009912
Josef Bacikba1bf482009-09-11 16:11:19 -04009913 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009914 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009915 }
Qu Wenruo0305bc22016-03-23 11:38:17 +08009916 if (debug && ret == -1)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009917 btrfs_warn(fs_info,
9918 "no space to allocate a new chunk for block group %llu",
9919 block_group->key.objectid);
9920 mutex_unlock(&fs_info->chunk_mutex);
Chris Masonedbd8d42007-12-21 16:27:24 -05009921out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009922 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009923 return ret;
9924}
9925
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009926static int find_first_block_group(struct btrfs_fs_info *fs_info,
9927 struct btrfs_path *path,
9928 struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009929{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009930 struct btrfs_root *root = fs_info->extent_root;
Chris Mason925baed2008-06-25 16:01:30 -04009931 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009932 struct btrfs_key found_key;
9933 struct extent_buffer *leaf;
Qu Wenruo514c7dc2018-08-01 10:37:16 +08009934 struct btrfs_block_group_item bg;
9935 u64 flags;
Chris Mason0b86a832008-03-24 15:01:56 -04009936 int slot;
9937
9938 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9939 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009940 goto out;
9941
Chris Masond3977122009-01-05 21:25:51 -05009942 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009943 slot = path->slots[0];
9944 leaf = path->nodes[0];
9945 if (slot >= btrfs_header_nritems(leaf)) {
9946 ret = btrfs_next_leaf(root, path);
9947 if (ret == 0)
9948 continue;
9949 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009950 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009951 break;
9952 }
9953 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9954
9955 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009956 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
Liu Bo6fb37b72016-06-22 18:31:27 -07009957 struct extent_map_tree *em_tree;
9958 struct extent_map *em;
9959
David Sterbac8bf1b62019-05-17 11:43:17 +02009960 em_tree = &root->fs_info->mapping_tree;
Liu Bo6fb37b72016-06-22 18:31:27 -07009961 read_lock(&em_tree->lock);
9962 em = lookup_extent_mapping(em_tree, found_key.objectid,
9963 found_key.offset);
9964 read_unlock(&em_tree->lock);
9965 if (!em) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009966 btrfs_err(fs_info,
Liu Bo6fb37b72016-06-22 18:31:27 -07009967 "logical %llu len %llu found bg but no related chunk",
9968 found_key.objectid, found_key.offset);
9969 ret = -ENOENT;
Qu Wenruo514c7dc2018-08-01 10:37:16 +08009970 } else if (em->start != found_key.objectid ||
9971 em->len != found_key.offset) {
9972 btrfs_err(fs_info,
9973 "block group %llu len %llu mismatch with chunk %llu len %llu",
9974 found_key.objectid, found_key.offset,
9975 em->start, em->len);
9976 ret = -EUCLEAN;
Liu Bo6fb37b72016-06-22 18:31:27 -07009977 } else {
Qu Wenruo514c7dc2018-08-01 10:37:16 +08009978 read_extent_buffer(leaf, &bg,
9979 btrfs_item_ptr_offset(leaf, slot),
9980 sizeof(bg));
9981 flags = btrfs_block_group_flags(&bg) &
9982 BTRFS_BLOCK_GROUP_TYPE_MASK;
9983
9984 if (flags != (em->map_lookup->type &
9985 BTRFS_BLOCK_GROUP_TYPE_MASK)) {
9986 btrfs_err(fs_info,
9987"block group %llu len %llu type flags 0x%llx mismatch with chunk type flags 0x%llx",
9988 found_key.objectid,
9989 found_key.offset, flags,
9990 (BTRFS_BLOCK_GROUP_TYPE_MASK &
9991 em->map_lookup->type));
9992 ret = -EUCLEAN;
9993 } else {
9994 ret = 0;
9995 }
Liu Bo6fb37b72016-06-22 18:31:27 -07009996 }
Josef Bacik187ee582016-08-18 15:30:06 -04009997 free_extent_map(em);
Chris Mason925baed2008-06-25 16:01:30 -04009998 goto out;
9999 }
Chris Mason0b86a832008-03-24 15:01:56 -040010000 path->slots[0]++;
10001 }
Chris Mason925baed2008-06-25 16:01:30 -040010002out:
Chris Mason0b86a832008-03-24 15:01:56 -040010003 return ret;
10004}
10005
Josef Bacik0af3d002010-06-21 14:48:16 -040010006void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
10007{
10008 struct btrfs_block_group_cache *block_group;
10009 u64 last = 0;
10010
10011 while (1) {
10012 struct inode *inode;
10013
10014 block_group = btrfs_lookup_first_block_group(info, last);
10015 while (block_group) {
Josef Bacik3aa7c7a2018-09-12 10:45:45 -040010016 wait_block_group_cache_done(block_group);
Josef Bacik0af3d002010-06-21 14:48:16 -040010017 spin_lock(&block_group->lock);
10018 if (block_group->iref)
10019 break;
10020 spin_unlock(&block_group->lock);
David Sterbaf87b7eb2019-03-20 12:01:07 +010010021 block_group = next_block_group(block_group);
Josef Bacik0af3d002010-06-21 14:48:16 -040010022 }
10023 if (!block_group) {
10024 if (last == 0)
10025 break;
10026 last = 0;
10027 continue;
10028 }
10029
10030 inode = block_group->inode;
10031 block_group->iref = 0;
10032 block_group->inode = NULL;
10033 spin_unlock(&block_group->lock);
Liu Bof3bca802016-07-20 17:33:44 -070010034 ASSERT(block_group->io_ctl.inode == NULL);
Josef Bacik0af3d002010-06-21 14:48:16 -040010035 iput(inode);
10036 last = block_group->key.objectid + block_group->key.offset;
10037 btrfs_put_block_group(block_group);
10038 }
10039}
10040
Filipe Manana5cdd7db2017-02-01 22:39:50 +000010041/*
10042 * Must be called only after stopping all workers, since we could have block
10043 * group caching kthreads running, and therefore they could race with us if we
10044 * freed the block groups before stopping them.
10045 */
Zheng Yan1a40e232008-09-26 10:09:34 -040010046int btrfs_free_block_groups(struct btrfs_fs_info *info)
10047{
10048 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -040010049 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -040010050 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -040010051 struct rb_node *n;
10052
Josef Bacik9e351cc2014-03-13 15:42:13 -040010053 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -040010054 while (!list_empty(&info->caching_block_groups)) {
10055 caching_ctl = list_entry(info->caching_block_groups.next,
10056 struct btrfs_caching_control, list);
10057 list_del(&caching_ctl->list);
10058 put_caching_control(caching_ctl);
10059 }
Josef Bacik9e351cc2014-03-13 15:42:13 -040010060 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -040010061
Josef Bacik47ab2a62014-09-18 11:20:02 -040010062 spin_lock(&info->unused_bgs_lock);
10063 while (!list_empty(&info->unused_bgs)) {
10064 block_group = list_first_entry(&info->unused_bgs,
10065 struct btrfs_block_group_cache,
10066 bg_list);
10067 list_del_init(&block_group->bg_list);
10068 btrfs_put_block_group(block_group);
10069 }
10070 spin_unlock(&info->unused_bgs_lock);
10071
Zheng Yan1a40e232008-09-26 10:09:34 -040010072 spin_lock(&info->block_group_cache_lock);
10073 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
10074 block_group = rb_entry(n, struct btrfs_block_group_cache,
10075 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -040010076 rb_erase(&block_group->cache_node,
10077 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +000010078 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -040010079 spin_unlock(&info->block_group_cache_lock);
10080
Josef Bacik80eb2342008-10-29 14:49:05 -040010081 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -040010082 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -040010083 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -050010084
Josef Bacik3c148742011-02-02 15:53:47 +000010085 /*
10086 * We haven't cached this block group, which means we could
10087 * possibly have excluded extents on this block group.
10088 */
Josef Bacik36cce922013-08-05 11:15:21 -040010089 if (block_group->cached == BTRFS_CACHE_NO ||
10090 block_group->cached == BTRFS_CACHE_ERROR)
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010091 free_excluded_extents(block_group);
Josef Bacik3c148742011-02-02 15:53:47 +000010092
Josef Bacik817d52f2009-07-13 21:29:25 -040010093 btrfs_remove_free_space_cache(block_group);
Filipe Manana5cdd7db2017-02-01 22:39:50 +000010094 ASSERT(block_group->cached != BTRFS_CACHE_STARTED);
Liu Bof3bca802016-07-20 17:33:44 -070010095 ASSERT(list_empty(&block_group->dirty_list));
10096 ASSERT(list_empty(&block_group->io_list));
10097 ASSERT(list_empty(&block_group->bg_list));
10098 ASSERT(atomic_read(&block_group->count) == 1);
Josef Bacik11dfe352009-11-13 20:12:59 +000010099 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -040010100
10101 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010102 }
10103 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -040010104
10105 /* now that all the block groups are freed, go through and
10106 * free all the space_info structs. This is only called during
10107 * the final stages of unmount, and so we know nobody is
10108 * using them. We call synchronize_rcu() once before we start,
10109 * just to be on the safe side.
10110 */
10111 synchronize_rcu();
10112
Yan, Zheng8929ecfa2010-05-16 10:49:58 -040010113 release_global_block_rsv(info);
10114
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010115 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010116 int i;
10117
Chris Mason4184ea72009-03-10 12:39:20 -040010118 space_info = list_entry(info->space_info.next,
10119 struct btrfs_space_info,
10120 list);
Josef Bacikd555b6c32016-03-25 13:25:51 -040010121
10122 /*
10123 * Do not hide this behind enospc_debug, this is actually
10124 * important and indicates a real bug if this happens.
10125 */
10126 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +000010127 space_info->bytes_reserved > 0 ||
Josef Bacikd555b6c32016-03-25 13:25:51 -040010128 space_info->bytes_may_use > 0))
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -040010129 dump_space_info(info, space_info, 0, 0);
Chris Mason4184ea72009-03-10 12:39:20 -040010130 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010131 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
10132 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010133 kobj = space_info->block_group_kobjs[i];
10134 space_info->block_group_kobjs[i] = NULL;
10135 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010136 kobject_del(kobj);
10137 kobject_put(kobj);
10138 }
10139 }
10140 kobject_del(&space_info->kobj);
10141 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -040010142 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010143 return 0;
10144}
10145
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010146/* link_block_group will queue up kobjects to add when we're reclaim-safe */
10147void btrfs_add_raid_kobjects(struct btrfs_fs_info *fs_info)
10148{
10149 struct btrfs_space_info *space_info;
10150 struct raid_kobject *rkobj;
10151 LIST_HEAD(list);
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010152 int ret = 0;
10153
10154 spin_lock(&fs_info->pending_raid_kobjs_lock);
10155 list_splice_init(&fs_info->pending_raid_kobjs, &list);
10156 spin_unlock(&fs_info->pending_raid_kobjs_lock);
10157
10158 list_for_each_entry(rkobj, &list, list) {
10159 space_info = __find_space_info(fs_info, rkobj->flags);
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010160
10161 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
David Sterba158da512019-05-17 11:43:41 +020010162 "%s", btrfs_bg_type_to_raid_name(rkobj->flags));
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010163 if (ret) {
10164 kobject_put(&rkobj->kobj);
10165 break;
10166 }
10167 }
10168 if (ret)
10169 btrfs_warn(fs_info,
10170 "failed to add kobject for block cache, ignoring");
10171}
10172
Nikolay Borisovc434d212017-08-21 12:43:50 +030010173static void link_block_group(struct btrfs_block_group_cache *cache)
Yan, Zhengb742bb822010-05-16 10:46:24 -040010174{
Nikolay Borisovc434d212017-08-21 12:43:50 +030010175 struct btrfs_space_info *space_info = cache->space_info;
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010176 struct btrfs_fs_info *fs_info = cache->fs_info;
Qu Wenruo3e72ee82018-01-30 18:20:45 +080010177 int index = btrfs_bg_flags_to_raid_index(cache->flags);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010178 bool first = false;
Yan, Zhengb742bb822010-05-16 10:46:24 -040010179
10180 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010181 if (list_empty(&space_info->block_groups[index]))
10182 first = true;
10183 list_add_tail(&cache->list, &space_info->block_groups[index]);
10184 up_write(&space_info->groups_sem);
10185
10186 if (first) {
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010187 struct raid_kobject *rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
10188 if (!rkobj) {
10189 btrfs_warn(cache->fs_info,
10190 "couldn't alloc memory for raid level kobject");
10191 return;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010192 }
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010193 rkobj->flags = cache->flags;
10194 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
10195
10196 spin_lock(&fs_info->pending_raid_kobjs_lock);
10197 list_add_tail(&rkobj->list, &fs_info->pending_raid_kobjs);
10198 spin_unlock(&fs_info->pending_raid_kobjs_lock);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010199 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010200 }
Yan, Zhengb742bb822010-05-16 10:46:24 -040010201}
10202
Miao Xie920e4a52014-01-15 20:00:55 +080010203static struct btrfs_block_group_cache *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010204btrfs_create_block_group_cache(struct btrfs_fs_info *fs_info,
10205 u64 start, u64 size)
Miao Xie920e4a52014-01-15 20:00:55 +080010206{
10207 struct btrfs_block_group_cache *cache;
10208
10209 cache = kzalloc(sizeof(*cache), GFP_NOFS);
10210 if (!cache)
10211 return NULL;
10212
10213 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
10214 GFP_NOFS);
10215 if (!cache->free_space_ctl) {
10216 kfree(cache);
10217 return NULL;
10218 }
10219
10220 cache->key.objectid = start;
10221 cache->key.offset = size;
10222 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
10223
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010224 cache->fs_info = fs_info;
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +030010225 cache->full_stripe_len = btrfs_full_stripe_len(fs_info, start);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010226 set_free_space_tree_thresholds(cache);
10227
Miao Xie920e4a52014-01-15 20:00:55 +080010228 atomic_set(&cache->count, 1);
10229 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +080010230 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +080010231 INIT_LIST_HEAD(&cache->list);
10232 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010233 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -040010234 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -050010235 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -070010236 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +080010237 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +000010238 atomic_set(&cache->trimming, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -070010239 mutex_init(&cache->free_space_lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +080010240 btrfs_init_full_stripe_locks_tree(&cache->full_stripe_locks_root);
Miao Xie920e4a52014-01-15 20:00:55 +080010241
10242 return cache;
10243}
10244
Qu Wenruo7ef49512018-08-01 10:37:17 +080010245
10246/*
10247 * Iterate all chunks and verify that each of them has the corresponding block
10248 * group
10249 */
10250static int check_chunk_block_group_mappings(struct btrfs_fs_info *fs_info)
10251{
David Sterbac8bf1b62019-05-17 11:43:17 +020010252 struct extent_map_tree *map_tree = &fs_info->mapping_tree;
Qu Wenruo7ef49512018-08-01 10:37:17 +080010253 struct extent_map *em;
10254 struct btrfs_block_group_cache *bg;
10255 u64 start = 0;
10256 int ret = 0;
10257
10258 while (1) {
David Sterbac8bf1b62019-05-17 11:43:17 +020010259 read_lock(&map_tree->lock);
Qu Wenruo7ef49512018-08-01 10:37:17 +080010260 /*
10261 * lookup_extent_mapping will return the first extent map
10262 * intersecting the range, so setting @len to 1 is enough to
10263 * get the first chunk.
10264 */
David Sterbac8bf1b62019-05-17 11:43:17 +020010265 em = lookup_extent_mapping(map_tree, start, 1);
10266 read_unlock(&map_tree->lock);
Qu Wenruo7ef49512018-08-01 10:37:17 +080010267 if (!em)
10268 break;
10269
10270 bg = btrfs_lookup_block_group(fs_info, em->start);
10271 if (!bg) {
10272 btrfs_err(fs_info,
10273 "chunk start=%llu len=%llu doesn't have corresponding block group",
10274 em->start, em->len);
10275 ret = -EUCLEAN;
10276 free_extent_map(em);
10277 break;
10278 }
10279 if (bg->key.objectid != em->start ||
10280 bg->key.offset != em->len ||
10281 (bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK) !=
10282 (em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK)) {
10283 btrfs_err(fs_info,
10284"chunk start=%llu len=%llu flags=0x%llx doesn't match block group start=%llu len=%llu flags=0x%llx",
10285 em->start, em->len,
10286 em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK,
10287 bg->key.objectid, bg->key.offset,
10288 bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK);
10289 ret = -EUCLEAN;
10290 free_extent_map(em);
10291 btrfs_put_block_group(bg);
10292 break;
10293 }
10294 start = em->start + em->len;
10295 free_extent_map(em);
10296 btrfs_put_block_group(bg);
10297 }
10298 return ret;
10299}
10300
Jeff Mahoney5b4aace2016-06-21 10:40:19 -040010301int btrfs_read_block_groups(struct btrfs_fs_info *info)
Chris Mason9078a3e2007-04-26 16:46:15 -040010302{
10303 struct btrfs_path *path;
10304 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010305 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -040010306 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -040010307 struct btrfs_key key;
10308 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -040010309 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -040010310 int need_clear = 0;
10311 u64 cache_gen;
Liu Bo49303382016-08-25 18:08:27 -070010312 u64 feature;
10313 int mixed;
10314
10315 feature = btrfs_super_incompat_flags(info->super_copy);
10316 mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS);
Chris Mason96b51792007-10-15 16:15:19 -040010317
Chris Mason9078a3e2007-04-26 16:46:15 -040010318 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -040010319 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010320 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -040010321 path = btrfs_alloc_path();
10322 if (!path)
10323 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +010010324 path->reada = READA_FORWARD;
Chris Mason9078a3e2007-04-26 16:46:15 -040010325
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010326 cache_gen = btrfs_super_cache_generation(info->super_copy);
10327 if (btrfs_test_opt(info, SPACE_CACHE) &&
10328 btrfs_super_generation(info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -040010329 need_clear = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010330 if (btrfs_test_opt(info, CLEAR_CACHE))
Josef Bacik88c2ba32010-09-21 14:21:34 -040010331 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -040010332
Chris Masond3977122009-01-05 21:25:51 -050010333 while (1) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010334 ret = find_first_block_group(info, path, &key);
Yan, Zhengb742bb822010-05-16 10:46:24 -040010335 if (ret > 0)
10336 break;
Chris Mason0b86a832008-03-24 15:01:56 -040010337 if (ret != 0)
10338 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +080010339
Chris Mason5f39d392007-10-15 16:14:19 -040010340 leaf = path->nodes[0];
10341 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +080010342
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010343 cache = btrfs_create_block_group_cache(info, found_key.objectid,
Miao Xie920e4a52014-01-15 20:00:55 +080010344 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -040010345 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -040010346 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -040010347 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -040010348 }
Josef Bacik96303082009-07-13 21:29:25 -040010349
Liu Bocf7c1ef2012-07-06 03:31:34 -060010350 if (need_clear) {
10351 /*
10352 * When we mount with old space cache, we need to
10353 * set BTRFS_DC_CLEAR and set dirty flag.
10354 *
10355 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
10356 * truncate the old free space cache inode and
10357 * setup a new one.
10358 * b) Setting 'dirty flag' makes sure that we flush
10359 * the new space cache info onto disk.
10360 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010361 if (btrfs_test_opt(info, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -050010362 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -060010363 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010364
Chris Mason5f39d392007-10-15 16:14:19 -040010365 read_extent_buffer(leaf, &cache->item,
10366 btrfs_item_ptr_offset(leaf, path->slots[0]),
10367 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +080010368 cache->flags = btrfs_block_group_flags(&cache->item);
Liu Bo49303382016-08-25 18:08:27 -070010369 if (!mixed &&
10370 ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) &&
10371 (cache->flags & BTRFS_BLOCK_GROUP_DATA))) {
10372 btrfs_err(info,
10373"bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups",
10374 cache->key.objectid);
10375 ret = -EINVAL;
10376 goto error;
10377 }
Chris Mason0b86a832008-03-24 15:01:56 -040010378
Chris Mason9078a3e2007-04-26 16:46:15 -040010379 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +020010380 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +080010381
Josef Bacik817d52f2009-07-13 21:29:25 -040010382 /*
Josef Bacik3c148742011-02-02 15:53:47 +000010383 * We need to exclude the super stripes now so that the space
10384 * info has super bytes accounted for, otherwise we'll think
10385 * we have more space than we actually do.
10386 */
Nikolay Borisov3c4da652018-06-20 15:49:09 +030010387 ret = exclude_super_stripes(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010388 if (ret) {
10389 /*
10390 * We may have excluded something, so call this just in
10391 * case.
10392 */
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010393 free_excluded_extents(cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010394 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010395 goto error;
10396 }
Josef Bacik3c148742011-02-02 15:53:47 +000010397
10398 /*
Josef Bacik817d52f2009-07-13 21:29:25 -040010399 * check for two cases, either we are full, and therefore
10400 * don't need to bother with the caching work since we won't
10401 * find any space, or we are empty, and we can just add all
Andrea Gelmini52042d82018-11-28 12:05:13 +010010402 * the space in and be done with it. This saves us _a_lot_ of
Josef Bacik817d52f2009-07-13 21:29:25 -040010403 * time, particularly in the full case.
10404 */
10405 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -040010406 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010407 cache->cached = BTRFS_CACHE_FINISHED;
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010408 free_excluded_extents(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010409 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -040010410 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010411 cache->cached = BTRFS_CACHE_FINISHED;
Nikolay Borisov4457c1c2018-05-10 15:44:45 +030010412 add_new_free_space(cache, found_key.objectid,
Josef Bacik817d52f2009-07-13 21:29:25 -040010413 found_key.objectid +
10414 found_key.offset);
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010415 free_excluded_extents(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010416 }
Chris Mason96b51792007-10-15 16:15:19 -040010417
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010418 ret = btrfs_add_block_group_cache(info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010419 if (ret) {
10420 btrfs_remove_free_space_cache(cache);
10421 btrfs_put_block_group(cache);
10422 goto error;
10423 }
10424
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010425 trace_btrfs_add_block_group(info, cache, 0);
Nikolay Borisovd2006e62017-05-22 09:35:50 +030010426 update_space_info(info, cache->flags, found_key.offset,
10427 btrfs_block_group_used(&cache->item),
10428 cache->bytes_super, &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010429
Chris Mason6324fbf2008-03-24 15:01:59 -040010430 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -040010431
Nikolay Borisovc434d212017-08-21 12:43:50 +030010432 link_block_group(cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010433
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010434 set_avail_alloc_bits(info, cache->flags);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010435 if (btrfs_chunk_readonly(info, cache->key.objectid)) {
Zhaolei868f4012015-08-05 16:43:27 +080010436 inc_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010437 } else if (btrfs_block_group_used(&cache->item) == 0) {
Qu Wenruo031f24d2018-05-22 16:43:47 +080010438 ASSERT(list_empty(&cache->bg_list));
10439 btrfs_mark_bg_unused(cache);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010440 }
Chris Mason9078a3e2007-04-26 16:46:15 -040010441 }
Yan, Zhengb742bb822010-05-16 10:46:24 -040010442
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010443 list_for_each_entry_rcu(space_info, &info->space_info, list) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010444 if (!(get_alloc_profile(info, space_info->flags) &
Yan, Zhengb742bb822010-05-16 10:46:24 -040010445 (BTRFS_BLOCK_GROUP_RAID10 |
David Sterbac7369b32019-05-31 15:39:31 +020010446 BTRFS_BLOCK_GROUP_RAID1_MASK |
David Sterbaa07e8a42019-05-31 16:54:26 +020010447 BTRFS_BLOCK_GROUP_RAID56_MASK |
Yan, Zhengb742bb822010-05-16 10:46:24 -040010448 BTRFS_BLOCK_GROUP_DUP)))
10449 continue;
10450 /*
10451 * avoid allocating from un-mirrored block group if there are
10452 * mirrored block groups.
10453 */
chandan1095cc02013-07-16 12:28:56 +053010454 list_for_each_entry(cache,
10455 &space_info->block_groups[BTRFS_RAID_RAID0],
10456 list)
Zhaolei868f4012015-08-05 16:43:27 +080010457 inc_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +053010458 list_for_each_entry(cache,
10459 &space_info->block_groups[BTRFS_RAID_SINGLE],
10460 list)
Zhaolei868f4012015-08-05 16:43:27 +080010461 inc_block_group_ro(cache, 1);
Yan, Zhengb742bb822010-05-16 10:46:24 -040010462 }
Yan, Zhengf0486c62010-05-16 10:46:25 -040010463
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010464 btrfs_add_raid_kobjects(info);
Yan, Zhengf0486c62010-05-16 10:46:25 -040010465 init_global_block_rsv(info);
Qu Wenruo7ef49512018-08-01 10:37:17 +080010466 ret = check_chunk_block_group_mappings(info);
Chris Mason0b86a832008-03-24 15:01:56 -040010467error:
Chris Mason9078a3e2007-04-26 16:46:15 -040010468 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -040010469 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010470}
Chris Mason6324fbf2008-03-24 15:01:59 -040010471
Nikolay Borisov6c686b32018-02-07 17:55:40 +020010472void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans)
Josef Bacikea658ba2012-09-11 16:57:25 -040010473{
Nikolay Borisov6c686b32018-02-07 17:55:40 +020010474 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacik545e3362018-09-28 07:18:02 -040010475 struct btrfs_block_group_cache *block_group;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010476 struct btrfs_root *extent_root = fs_info->extent_root;
Josef Bacikea658ba2012-09-11 16:57:25 -040010477 struct btrfs_block_group_item item;
10478 struct btrfs_key key;
10479 int ret = 0;
10480
Filipe Manana5ce55552018-10-12 10:03:55 +010010481 if (!trans->can_flush_pending_bgs)
10482 return;
10483
Josef Bacik545e3362018-09-28 07:18:02 -040010484 while (!list_empty(&trans->new_bgs)) {
10485 block_group = list_first_entry(&trans->new_bgs,
10486 struct btrfs_block_group_cache,
10487 bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010488 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +000010489 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -040010490
10491 spin_lock(&block_group->lock);
10492 memcpy(&item, &block_group->item, sizeof(item));
10493 memcpy(&key, &block_group->key, sizeof(key));
10494 spin_unlock(&block_group->lock);
10495
10496 ret = btrfs_insert_item(trans, extent_root, &key, &item,
10497 sizeof(item));
10498 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010499 btrfs_abort_transaction(trans, ret);
Nikolay Borisov97aff912018-07-20 19:37:53 +030010500 ret = btrfs_finish_chunk_alloc(trans, key.objectid, key.offset);
Josef Bacik6df9a952013-06-27 13:22:46 -040010501 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010502 btrfs_abort_transaction(trans, ret);
Nikolay Borisove4e07112018-05-10 15:44:41 +030010503 add_block_group_free_space(trans, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010504 /* already aborted the transaction if it failed. */
Filipe Mananac92f6be2014-11-26 15:28:55 +000010505next:
Josef Bacikba2c4d42018-12-03 10:20:33 -050010506 btrfs_delayed_refs_rsv_release(fs_info, 1);
Filipe Mananac92f6be2014-11-26 15:28:55 +000010507 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010508 }
Filipe Manana5ce55552018-10-12 10:03:55 +010010509 btrfs_trans_release_chunk_metadata(trans);
Josef Bacikea658ba2012-09-11 16:57:25 -040010510}
10511
Nikolay Borisove7e02092018-06-20 15:48:55 +030010512int btrfs_make_block_group(struct btrfs_trans_handle *trans, u64 bytes_used,
Nikolay Borisov01744842017-07-27 14:22:11 +030010513 u64 type, u64 chunk_offset, u64 size)
Chris Mason6324fbf2008-03-24 15:01:59 -040010514{
Nikolay Borisove7e02092018-06-20 15:48:55 +030010515 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -040010516 struct btrfs_block_group_cache *cache;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010517 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -040010518
David Sterba90787762019-03-20 13:28:05 +010010519 btrfs_set_log_full_commit(trans);
Chris Masone02119d2008-09-05 16:13:11 -040010520
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010521 cache = btrfs_create_block_group_cache(fs_info, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -040010522 if (!cache)
10523 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +080010524
Chris Mason6324fbf2008-03-24 15:01:59 -040010525 btrfs_set_block_group_used(&cache->item, bytes_used);
Nikolay Borisov01744842017-07-27 14:22:11 +030010526 btrfs_set_block_group_chunk_objectid(&cache->item,
10527 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
Chris Mason6324fbf2008-03-24 15:01:59 -040010528 btrfs_set_block_group_flags(&cache->item, type);
10529
Miao Xie920e4a52014-01-15 20:00:55 +080010530 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -040010531 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010532 cache->cached = BTRFS_CACHE_FINISHED;
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010533 cache->needs_free_space = 1;
Nikolay Borisov3c4da652018-06-20 15:49:09 +030010534 ret = exclude_super_stripes(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010535 if (ret) {
10536 /*
10537 * We may have excluded something, so call this just in
10538 * case.
10539 */
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010540 free_excluded_extents(cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010541 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010542 return ret;
10543 }
Josef Bacik96303082009-07-13 21:29:25 -040010544
Nikolay Borisov4457c1c2018-05-10 15:44:45 +030010545 add_new_free_space(cache, chunk_offset, chunk_offset + size);
Josef Bacik817d52f2009-07-13 21:29:25 -040010546
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010547 free_excluded_extents(cache);
Yan Zheng11833d62009-09-11 16:11:19 -040010548
Josef Bacikd0bd4562015-09-23 14:54:14 -040010549#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010550 if (btrfs_should_fragment_free_space(cache)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -040010551 u64 new_bytes_used = size - bytes_used;
10552
10553 bytes_used += new_bytes_used >> 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010554 fragment_free_space(cache);
Josef Bacikd0bd4562015-09-23 14:54:14 -040010555 }
10556#endif
Filipe Manana2e6e5182015-05-12 00:28:11 +010010557 /*
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010558 * Ensure the corresponding space_info object is created and
10559 * assigned to our block group. We want our bg to be added to the rbtree
10560 * with its ->space_info set.
Filipe Manana2e6e5182015-05-12 00:28:11 +010010561 */
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010562 cache->space_info = __find_space_info(fs_info, cache->flags);
Jeff Mahoneydc2d3002018-03-20 15:25:25 -040010563 ASSERT(cache->space_info);
Filipe Manana2e6e5182015-05-12 00:28:11 +010010564
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010565 ret = btrfs_add_block_group_cache(fs_info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010566 if (ret) {
10567 btrfs_remove_free_space_cache(cache);
10568 btrfs_put_block_group(cache);
10569 return ret;
10570 }
10571
Filipe Manana2e6e5182015-05-12 00:28:11 +010010572 /*
10573 * Now that our block group has its ->space_info set and is inserted in
10574 * the rbtree, update the space info's counters.
10575 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010576 trace_btrfs_add_block_group(fs_info, cache, 1);
Nikolay Borisovd2006e62017-05-22 09:35:50 +030010577 update_space_info(fs_info, cache->flags, size, bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -040010578 cache->bytes_super, &cache->space_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010579 update_global_block_rsv(fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -040010580
Nikolay Borisovc434d212017-08-21 12:43:50 +030010581 link_block_group(cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010582
Josef Bacik47ab2a62014-09-18 11:20:02 -040010583 list_add_tail(&cache->bg_list, &trans->new_bgs);
Josef Bacikba2c4d42018-12-03 10:20:33 -050010584 trans->delayed_ref_updates++;
10585 btrfs_update_delayed_refs_rsv(trans);
Chris Mason6324fbf2008-03-24 15:01:59 -040010586
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010587 set_avail_alloc_bits(fs_info, type);
Chris Mason6324fbf2008-03-24 15:01:59 -040010588 return 0;
10589}
Zheng Yan1a40e232008-09-26 10:09:34 -040010590
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010591static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
10592{
Ilya Dryomov899c81e2012-03-27 17:09:16 +030010593 u64 extra_flags = chunk_to_extended(flags) &
10594 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010595
Miao Xiede98ced2013-01-29 10:13:12 +000010596 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010597 if (flags & BTRFS_BLOCK_GROUP_DATA)
10598 fs_info->avail_data_alloc_bits &= ~extra_flags;
10599 if (flags & BTRFS_BLOCK_GROUP_METADATA)
10600 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
10601 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
10602 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +000010603 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010604}
10605
David Sterba6d58a552019-06-11 14:31:01 +020010606/*
10607 * Clear incompat bits for the following feature(s):
10608 *
10609 * - RAID56 - in case there's neither RAID5 nor RAID6 profile block group
10610 * in the whole filesystem
10611 */
10612static void clear_incompat_bg_bits(struct btrfs_fs_info *fs_info, u64 flags)
10613{
10614 if (flags & BTRFS_BLOCK_GROUP_RAID56_MASK) {
10615 struct list_head *head = &fs_info->space_info;
10616 struct btrfs_space_info *sinfo;
10617
10618 list_for_each_entry_rcu(sinfo, head, list) {
10619 bool found = false;
10620
10621 down_read(&sinfo->groups_sem);
10622 if (!list_empty(&sinfo->block_groups[BTRFS_RAID_RAID5]))
10623 found = true;
10624 if (!list_empty(&sinfo->block_groups[BTRFS_RAID_RAID6]))
10625 found = true;
10626 up_read(&sinfo->groups_sem);
10627
10628 if (found)
10629 return;
10630 }
10631 btrfs_clear_fs_incompat(fs_info, RAID56);
10632 }
10633}
10634
Zheng Yan1a40e232008-09-26 10:09:34 -040010635int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Nikolay Borisov5a98ec02018-06-20 15:48:56 +030010636 u64 group_start, struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -040010637{
Nikolay Borisov5a98ec02018-06-20 15:48:56 +030010638 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010639 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010640 struct btrfs_path *path;
10641 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -040010642 struct btrfs_free_cluster *cluster;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010643 struct btrfs_root *tree_root = fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010644 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -040010645 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010646 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -040010647 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010648 int index;
Josef Bacik89a55892010-10-14 14:52:27 -040010649 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +000010650 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +000010651 bool remove_em;
Josef Bacikba2c4d42018-12-03 10:20:33 -050010652 bool remove_rsv = false;
Zheng Yan1a40e232008-09-26 10:09:34 -040010653
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010654 block_group = btrfs_lookup_block_group(fs_info, group_start);
Zheng Yan1a40e232008-09-26 10:09:34 -040010655 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -050010656 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -040010657
Qu Wenruo4ed0a7a2018-04-26 17:17:20 +080010658 trace_btrfs_remove_block_group(block_group);
liubo9f7c43c2011-03-07 02:13:33 +000010659 /*
10660 * Free the reserved super bytes from this block group before
10661 * remove it.
10662 */
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010663 free_excluded_extents(block_group);
Josef Bacikfd708b82017-09-29 15:43:50 -040010664 btrfs_free_ref_tree_range(fs_info, block_group->key.objectid,
10665 block_group->key.offset);
liubo9f7c43c2011-03-07 02:13:33 +000010666
Zheng Yan1a40e232008-09-26 10:09:34 -040010667 memcpy(&key, &block_group->key, sizeof(key));
Qu Wenruo3e72ee82018-01-30 18:20:45 +080010668 index = btrfs_bg_flags_to_raid_index(block_group->flags);
David Sterba46df06b2018-07-13 20:46:30 +020010669 factor = btrfs_bg_type_to_factor(block_group->flags);
Zheng Yan1a40e232008-09-26 10:09:34 -040010670
Chris Mason44fb5512009-06-04 15:34:51 -040010671 /* make sure this block group isn't part of an allocation cluster */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010672 cluster = &fs_info->data_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010673 spin_lock(&cluster->refill_lock);
10674 btrfs_return_cluster_to_free_space(block_group, cluster);
10675 spin_unlock(&cluster->refill_lock);
10676
10677 /*
10678 * make sure this block group isn't part of a metadata
10679 * allocation cluster
10680 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010681 cluster = &fs_info->meta_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010682 spin_lock(&cluster->refill_lock);
10683 btrfs_return_cluster_to_free_space(block_group, cluster);
10684 spin_unlock(&cluster->refill_lock);
10685
Zheng Yan1a40e232008-09-26 10:09:34 -040010686 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010687 if (!path) {
10688 ret = -ENOMEM;
10689 goto out;
10690 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010691
Chris Mason1bbc6212015-04-06 12:46:08 -070010692 /*
10693 * get the inode first so any iput calls done for the io_list
10694 * aren't the final iput (no unlinks allowed now)
10695 */
David Sterba7949f332019-03-20 13:40:19 +010010696 inode = lookup_free_space_inode(block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010697
10698 mutex_lock(&trans->transaction->cache_write_mutex);
10699 /*
Andrea Gelmini52042d82018-11-28 12:05:13 +010010700 * Make sure our free space cache IO is done before removing the
Chris Mason1bbc6212015-04-06 12:46:08 -070010701 * free space inode
10702 */
10703 spin_lock(&trans->transaction->dirty_bgs_lock);
10704 if (!list_empty(&block_group->io_list)) {
10705 list_del_init(&block_group->io_list);
10706
10707 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
10708
10709 spin_unlock(&trans->transaction->dirty_bgs_lock);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -040010710 btrfs_wait_cache_io(trans, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010711 btrfs_put_block_group(block_group);
10712 spin_lock(&trans->transaction->dirty_bgs_lock);
10713 }
10714
10715 if (!list_empty(&block_group->dirty_list)) {
10716 list_del_init(&block_group->dirty_list);
Josef Bacikba2c4d42018-12-03 10:20:33 -050010717 remove_rsv = true;
Chris Mason1bbc6212015-04-06 12:46:08 -070010718 btrfs_put_block_group(block_group);
10719 }
10720 spin_unlock(&trans->transaction->dirty_bgs_lock);
10721 mutex_unlock(&trans->transaction->cache_write_mutex);
10722
Josef Bacik0af3d002010-06-21 14:48:16 -040010723 if (!IS_ERR(inode)) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010724 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010725 if (ret) {
10726 btrfs_add_delayed_iput(inode);
10727 goto out;
10728 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010729 clear_nlink(inode);
10730 /* One for the block groups ref */
10731 spin_lock(&block_group->lock);
10732 if (block_group->iref) {
10733 block_group->iref = 0;
10734 block_group->inode = NULL;
10735 spin_unlock(&block_group->lock);
10736 iput(inode);
10737 } else {
10738 spin_unlock(&block_group->lock);
10739 }
10740 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -040010741 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -040010742 }
10743
10744 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
10745 key.offset = block_group->key.objectid;
10746 key.type = 0;
10747
10748 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
10749 if (ret < 0)
10750 goto out;
10751 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +020010752 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010753 if (ret == 0) {
10754 ret = btrfs_del_item(trans, tree_root, path);
10755 if (ret)
10756 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +020010757 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010758 }
10759
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010760 spin_lock(&fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010761 rb_erase(&block_group->cache_node,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010762 &fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +000010763 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +000010764
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010765 if (fs_info->first_logical_byte == block_group->key.objectid)
10766 fs_info->first_logical_byte = (u64)-1;
10767 spin_unlock(&fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010768
Josef Bacik80eb2342008-10-29 14:49:05 -040010769 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -040010770 /*
10771 * we must use list_del_init so people can check to see if they
10772 * are still on the list after taking the semaphore
10773 */
10774 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010775 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010776 kobj = block_group->space_info->block_group_kobjs[index];
10777 block_group->space_info->block_group_kobjs[index] = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010778 clear_avail_alloc_bits(fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010779 }
Josef Bacik80eb2342008-10-29 14:49:05 -040010780 up_write(&block_group->space_info->groups_sem);
David Sterba6d58a552019-06-11 14:31:01 +020010781 clear_incompat_bg_bits(fs_info, block_group->flags);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010782 if (kobj) {
10783 kobject_del(kobj);
10784 kobject_put(kobj);
10785 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010786
Filipe Manana4f69cb92014-11-26 15:28:51 +000010787 if (block_group->has_caching_ctl)
10788 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -040010789 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -040010790 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010791 if (block_group->has_caching_ctl) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010792 down_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010793 if (!caching_ctl) {
10794 struct btrfs_caching_control *ctl;
10795
10796 list_for_each_entry(ctl,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010797 &fs_info->caching_block_groups, list)
Filipe Manana4f69cb92014-11-26 15:28:51 +000010798 if (ctl->block_group == block_group) {
10799 caching_ctl = ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +020010800 refcount_inc(&caching_ctl->count);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010801 break;
10802 }
10803 }
10804 if (caching_ctl)
10805 list_del_init(&caching_ctl->list);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010806 up_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010807 if (caching_ctl) {
10808 /* Once for the caching bgs list and once for us. */
10809 put_caching_control(caching_ctl);
10810 put_caching_control(caching_ctl);
10811 }
10812 }
Josef Bacik817d52f2009-07-13 21:29:25 -040010813
Josef Bacikce93ec52014-11-17 15:45:48 -050010814 spin_lock(&trans->transaction->dirty_bgs_lock);
Nikolay Borisov9a0ec832019-01-30 16:50:49 +020010815 WARN_ON(!list_empty(&block_group->dirty_list));
10816 WARN_ON(!list_empty(&block_group->io_list));
Josef Bacikce93ec52014-11-17 15:45:48 -050010817 spin_unlock(&trans->transaction->dirty_bgs_lock);
Nikolay Borisov9a0ec832019-01-30 16:50:49 +020010818
Josef Bacik817d52f2009-07-13 21:29:25 -040010819 btrfs_remove_free_space_cache(block_group);
10820
Yan Zhengc146afa2008-11-12 14:34:12 -050010821 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +000010822 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +080010823
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010824 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Zhao Lei18d018a2015-02-24 20:07:44 +080010825 WARN_ON(block_group->space_info->total_bytes
10826 < block_group->key.offset);
10827 WARN_ON(block_group->space_info->bytes_readonly
10828 < block_group->key.offset);
10829 WARN_ON(block_group->space_info->disk_total
10830 < block_group->key.offset * factor);
10831 }
Yan Zhengc146afa2008-11-12 14:34:12 -050010832 block_group->space_info->total_bytes -= block_group->key.offset;
10833 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -040010834 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +080010835
Yan Zhengc146afa2008-11-12 14:34:12 -050010836 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -040010837
Josef Bacik0af3d002010-06-21 14:48:16 -040010838 memcpy(&key, &block_group->key, sizeof(key));
10839
David Sterba34441362016-10-04 19:34:27 +020010840 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana04216822014-11-27 21:14:15 +000010841 spin_lock(&block_group->lock);
10842 block_group->removed = 1;
10843 /*
10844 * At this point trimming can't start on this block group, because we
10845 * removed the block group from the tree fs_info->block_group_cache_tree
10846 * so no one can't find it anymore and even if someone already got this
10847 * block group before we removed it from the rbtree, they have already
10848 * incremented block_group->trimming - if they didn't, they won't find
10849 * any free space entries because we already removed them all when we
10850 * called btrfs_remove_free_space_cache().
10851 *
10852 * And we must not remove the extent map from the fs_info->mapping_tree
10853 * to prevent the same logical address range and physical device space
10854 * ranges from being reused for a new block group. This is because our
10855 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
10856 * completely transactionless, so while it is trimming a range the
10857 * currently running transaction might finish and a new one start,
10858 * allowing for new block groups to be created that can reuse the same
10859 * physical device locations unless we take this special care.
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010860 *
10861 * There may also be an implicit trim operation if the file system
10862 * is mounted with -odiscard. The same protections must remain
10863 * in place until the extents have been discarded completely when
10864 * the transaction commit has completed.
Filipe Manana04216822014-11-27 21:14:15 +000010865 */
10866 remove_em = (atomic_read(&block_group->trimming) == 0);
Filipe Manana04216822014-11-27 21:14:15 +000010867 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +000010868
David Sterba34441362016-10-04 19:34:27 +020010869 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010870
Nikolay Borisovf3f72772018-05-10 15:44:46 +030010871 ret = remove_block_group_free_space(trans, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010872 if (ret)
10873 goto out;
10874
Chris Masonfa9c0d792009-04-03 09:47:43 -040010875 btrfs_put_block_group(block_group);
10876 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -040010877
10878 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
10879 if (ret > 0)
10880 ret = -EIO;
10881 if (ret < 0)
10882 goto out;
10883
10884 ret = btrfs_del_item(trans, root, path);
Filipe Manana8eaf40c2019-06-12 11:05:42 +010010885 if (ret)
10886 goto out;
10887
10888 if (remove_em) {
10889 struct extent_map_tree *em_tree;
10890
David Sterbac8bf1b62019-05-17 11:43:17 +020010891 em_tree = &fs_info->mapping_tree;
Filipe Manana8eaf40c2019-06-12 11:05:42 +010010892 write_lock(&em_tree->lock);
10893 remove_extent_mapping(em_tree, em);
10894 write_unlock(&em_tree->lock);
10895 /* once for the tree */
10896 free_extent_map(em);
10897 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010898out:
Josef Bacikba2c4d42018-12-03 10:20:33 -050010899 if (remove_rsv)
10900 btrfs_delayed_refs_rsv_release(fs_info, 1);
Zheng Yan1a40e232008-09-26 10:09:34 -040010901 btrfs_free_path(path);
10902 return ret;
10903}
liuboacce9522011-01-06 19:30:25 +080010904
Filipe Manana8eab77f2015-11-13 23:57:16 +000010905struct btrfs_trans_handle *
Filipe Manana7fd01182015-11-13 23:57:17 +000010906btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info,
10907 const u64 chunk_offset)
Filipe Manana8eab77f2015-11-13 23:57:16 +000010908{
David Sterbac8bf1b62019-05-17 11:43:17 +020010909 struct extent_map_tree *em_tree = &fs_info->mapping_tree;
Filipe Manana7fd01182015-11-13 23:57:17 +000010910 struct extent_map *em;
10911 struct map_lookup *map;
10912 unsigned int num_items;
10913
10914 read_lock(&em_tree->lock);
10915 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
10916 read_unlock(&em_tree->lock);
10917 ASSERT(em && em->start == chunk_offset);
10918
Filipe Manana8eab77f2015-11-13 23:57:16 +000010919 /*
Filipe Manana7fd01182015-11-13 23:57:17 +000010920 * We need to reserve 3 + N units from the metadata space info in order
10921 * to remove a block group (done at btrfs_remove_chunk() and at
10922 * btrfs_remove_block_group()), which are used for:
10923 *
Filipe Manana8eab77f2015-11-13 23:57:16 +000010924 * 1 unit for adding the free space inode's orphan (located in the tree
10925 * of tree roots).
Filipe Manana7fd01182015-11-13 23:57:17 +000010926 * 1 unit for deleting the block group item (located in the extent
10927 * tree).
10928 * 1 unit for deleting the free space item (located in tree of tree
10929 * roots).
10930 * N units for deleting N device extent items corresponding to each
10931 * stripe (located in the device tree).
10932 *
10933 * In order to remove a block group we also need to reserve units in the
10934 * system space info in order to update the chunk tree (update one or
10935 * more device items and remove one chunk item), but this is done at
10936 * btrfs_remove_chunk() through a call to check_system_chunk().
Filipe Manana8eab77f2015-11-13 23:57:16 +000010937 */
Jeff Mahoney95617d62015-06-03 10:55:48 -040010938 map = em->map_lookup;
Filipe Manana7fd01182015-11-13 23:57:17 +000010939 num_items = 3 + map->num_stripes;
10940 free_extent_map(em);
10941
Filipe Manana8eab77f2015-11-13 23:57:16 +000010942 return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root,
Filipe Manana7fd01182015-11-13 23:57:17 +000010943 num_items, 1);
Filipe Manana8eab77f2015-11-13 23:57:16 +000010944}
10945
Josef Bacik47ab2a62014-09-18 11:20:02 -040010946/*
10947 * Process the unused_bgs list and remove any that don't have any allocated
10948 * space inside of them.
10949 */
10950void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
10951{
10952 struct btrfs_block_group_cache *block_group;
10953 struct btrfs_space_info *space_info;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010954 struct btrfs_trans_handle *trans;
10955 int ret = 0;
10956
Josef Bacikafcdd122016-09-02 15:40:02 -040010957 if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
Josef Bacik47ab2a62014-09-18 11:20:02 -040010958 return;
10959
10960 spin_lock(&fs_info->unused_bgs_lock);
10961 while (!list_empty(&fs_info->unused_bgs)) {
10962 u64 start, end;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010963 int trimming;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010964
10965 block_group = list_first_entry(&fs_info->unused_bgs,
10966 struct btrfs_block_group_cache,
10967 bg_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010968 list_del_init(&block_group->bg_list);
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010969
10970 space_info = block_group->space_info;
10971
Josef Bacik47ab2a62014-09-18 11:20:02 -040010972 if (ret || btrfs_mixed_space_info(space_info)) {
10973 btrfs_put_block_group(block_group);
10974 continue;
10975 }
10976 spin_unlock(&fs_info->unused_bgs_lock);
10977
Zhao Leid5f2e332015-10-08 18:46:44 +080010978 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010979
Josef Bacik47ab2a62014-09-18 11:20:02 -040010980 /* Don't want to race with allocators so take the groups_sem */
10981 down_write(&space_info->groups_sem);
10982 spin_lock(&block_group->lock);
Qu Wenruo43794442018-06-22 12:35:00 +080010983 if (block_group->reserved || block_group->pinned ||
Josef Bacik47ab2a62014-09-18 11:20:02 -040010984 btrfs_block_group_used(&block_group->item) ||
Chris Mason19c4d2f2016-10-10 13:43:31 -070010985 block_group->ro ||
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010986 list_is_singular(&block_group->list)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -040010987 /*
10988 * We want to bail if we made new allocations or have
10989 * outstanding allocations in this block group. We do
10990 * the ro check in case balance is currently acting on
10991 * this block group.
10992 */
Qu Wenruo4ed0a7a2018-04-26 17:17:20 +080010993 trace_btrfs_skip_unused_block_group(block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010994 spin_unlock(&block_group->lock);
10995 up_write(&space_info->groups_sem);
10996 goto next;
10997 }
10998 spin_unlock(&block_group->lock);
10999
11000 /* We don't want to force the issue, only flip if it's ok. */
Zhaolei868f4012015-08-05 16:43:27 +080011001 ret = inc_block_group_ro(block_group, 0);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011002 up_write(&space_info->groups_sem);
11003 if (ret < 0) {
11004 ret = 0;
11005 goto next;
11006 }
11007
11008 /*
11009 * Want to do this before we do anything else so we can recover
11010 * properly if we fail to join the transaction.
11011 */
Filipe Manana7fd01182015-11-13 23:57:17 +000011012 trans = btrfs_start_trans_remove_block_group(fs_info,
11013 block_group->key.objectid);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011014 if (IS_ERR(trans)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011015 btrfs_dec_block_group_ro(block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011016 ret = PTR_ERR(trans);
11017 goto next;
11018 }
11019
11020 /*
11021 * We could have pending pinned extents for this block group,
11022 * just delete them, we don't care about them anymore.
11023 */
11024 start = block_group->key.objectid;
11025 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +000011026 /*
11027 * Hold the unused_bg_unpin_mutex lock to avoid racing with
11028 * btrfs_finish_extent_commit(). If we are at transaction N,
11029 * another task might be running finish_extent_commit() for the
11030 * previous transaction N - 1, and have seen a range belonging
11031 * to the block group in freed_extents[] before we were able to
11032 * clear the whole block group range from freed_extents[]. This
11033 * means that task can lookup for the block group after we
11034 * unpinned it from freed_extents[] and removed it, leading to
11035 * a BUG_ON() at btrfs_unpin_extent_range().
11036 */
11037 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +000011038 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
David Sterba91166212016-04-26 23:54:39 +020011039 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000011040 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000011041 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011042 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000011043 goto end_trans;
11044 }
11045 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
David Sterba91166212016-04-26 23:54:39 +020011046 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000011047 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000011048 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011049 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000011050 goto end_trans;
11051 }
Filipe Mananad4b450c2015-01-29 19:18:25 +000011052 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011053
11054 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +080011055 spin_lock(&space_info->lock);
11056 spin_lock(&block_group->lock);
11057
Qu Wenruo480b9b42019-04-29 14:03:33 +080011058 update_bytes_pinned(fs_info, space_info, -block_group->pinned);
Zhao Leic30666d2015-02-25 14:17:20 +080011059 space_info->bytes_readonly += block_group->pinned;
Ethan Liendec59fa2018-07-13 16:50:42 +080011060 percpu_counter_add_batch(&space_info->total_bytes_pinned,
11061 -block_group->pinned,
11062 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011063 block_group->pinned = 0;
11064
Zhao Leic30666d2015-02-25 14:17:20 +080011065 spin_unlock(&block_group->lock);
11066 spin_unlock(&space_info->lock);
11067
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011068 /* DISCARD can flip during remount */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011069 trimming = btrfs_test_opt(fs_info, DISCARD);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011070
11071 /* Implicit trim during transaction commit. */
11072 if (trimming)
11073 btrfs_get_block_group_trimming(block_group);
11074
Josef Bacik47ab2a62014-09-18 11:20:02 -040011075 /*
11076 * Btrfs_remove_chunk will abort the transaction if things go
11077 * horribly wrong.
11078 */
Nikolay Borisov97aff912018-07-20 19:37:53 +030011079 ret = btrfs_remove_chunk(trans, block_group->key.objectid);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011080
11081 if (ret) {
11082 if (trimming)
11083 btrfs_put_block_group_trimming(block_group);
11084 goto end_trans;
11085 }
11086
11087 /*
11088 * If we're not mounted with -odiscard, we can just forget
11089 * about this block group. Otherwise we'll need to wait
11090 * until transaction commit to do the actual discard.
11091 */
11092 if (trimming) {
Filipe Manana348a0012015-11-27 12:16:16 +000011093 spin_lock(&fs_info->unused_bgs_lock);
11094 /*
11095 * A concurrent scrub might have added us to the list
11096 * fs_info->unused_bgs, so use a list_move operation
11097 * to add the block group to the deleted_bgs list.
11098 */
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011099 list_move(&block_group->bg_list,
11100 &trans->transaction->deleted_bgs);
Filipe Manana348a0012015-11-27 12:16:16 +000011101 spin_unlock(&fs_info->unused_bgs_lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011102 btrfs_get_block_group(block_group);
11103 }
Filipe Manana758eb512014-11-03 14:08:39 +000011104end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040011105 btrfs_end_transaction(trans);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011106next:
Zhao Leid5f2e332015-10-08 18:46:44 +080011107 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011108 btrfs_put_block_group(block_group);
11109 spin_lock(&fs_info->unused_bgs_lock);
11110 }
11111 spin_unlock(&fs_info->unused_bgs_lock);
11112}
11113
liuboc59021f2011-03-07 02:13:14 +000011114int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
11115{
liubo1aba86d2011-04-08 08:44:37 +000011116 struct btrfs_super_block *disk_super;
11117 u64 features;
11118 u64 flags;
11119 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000011120 int ret;
11121
David Sterba6c417612011-04-13 15:41:04 +020011122 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000011123 if (!btrfs_super_root(disk_super))
Dan Carpenter0dc924c52016-01-13 15:21:17 +030011124 return -EINVAL;
liuboc59021f2011-03-07 02:13:14 +000011125
liubo1aba86d2011-04-08 08:44:37 +000011126 features = btrfs_super_incompat_flags(disk_super);
11127 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
11128 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000011129
liubo1aba86d2011-04-08 08:44:37 +000011130 flags = BTRFS_BLOCK_GROUP_SYSTEM;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011131 ret = create_space_info(fs_info, flags);
liuboc59021f2011-03-07 02:13:14 +000011132 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000011133 goto out;
liuboc59021f2011-03-07 02:13:14 +000011134
liubo1aba86d2011-04-08 08:44:37 +000011135 if (mixed) {
11136 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011137 ret = create_space_info(fs_info, flags);
liubo1aba86d2011-04-08 08:44:37 +000011138 } else {
11139 flags = BTRFS_BLOCK_GROUP_METADATA;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011140 ret = create_space_info(fs_info, flags);
liubo1aba86d2011-04-08 08:44:37 +000011141 if (ret)
11142 goto out;
11143
11144 flags = BTRFS_BLOCK_GROUP_DATA;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011145 ret = create_space_info(fs_info, flags);
liubo1aba86d2011-04-08 08:44:37 +000011146 }
11147out:
liuboc59021f2011-03-07 02:13:14 +000011148 return ret;
11149}
11150
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011151int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info,
11152 u64 start, u64 end)
liuboacce9522011-01-06 19:30:25 +080011153{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011154 return unpin_extent_range(fs_info, start, end, false);
liuboacce9522011-01-06 19:30:25 +080011155}
11156
Jeff Mahoney499f3772015-06-15 09:41:17 -040011157/*
11158 * It used to be that old block groups would be left around forever.
11159 * Iterating over them would be enough to trim unused space. Since we
11160 * now automatically remove them, we also need to iterate over unallocated
11161 * space.
11162 *
11163 * We don't want a transaction for this since the discard may take a
11164 * substantial amount of time. We don't require that a transaction be
11165 * running, but we do need to take a running transaction into account
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011166 * to ensure that we're not discarding chunks that were released or
11167 * allocated in the current transaction.
Jeff Mahoney499f3772015-06-15 09:41:17 -040011168 *
11169 * Holding the chunks lock will prevent other threads from allocating
11170 * or releasing chunks, but it won't prevent a running transaction
11171 * from committing and releasing the memory that the pending chunks
11172 * list head uses. For that, we need to take a reference to the
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011173 * transaction and hold the commit root sem. We only need to hold
11174 * it while performing the free space search since we have already
11175 * held back allocations.
Jeff Mahoney499f3772015-06-15 09:41:17 -040011176 */
Nikolay Borisov8103d102019-06-03 13:06:00 +030011177static int btrfs_trim_free_extents(struct btrfs_device *device, u64 *trimmed)
Jeff Mahoney499f3772015-06-15 09:41:17 -040011178{
Nikolay Borisov8103d102019-06-03 13:06:00 +030011179 u64 start = SZ_1M, len = 0, end = 0;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011180 int ret;
11181
11182 *trimmed = 0;
11183
Jeff Mahoney0be88e32018-09-06 17:18:15 -040011184 /* Discard not supported = nothing to do. */
11185 if (!blk_queue_discard(bdev_get_queue(device->bdev)))
11186 return 0;
11187
Andrea Gelmini52042d82018-11-28 12:05:13 +010011188 /* Not writable = nothing to do. */
Anand Jainebbede42017-12-04 12:54:52 +080011189 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Jeff Mahoney499f3772015-06-15 09:41:17 -040011190 return 0;
11191
11192 /* No free space = nothing to do. */
11193 if (device->total_bytes <= device->bytes_used)
11194 return 0;
11195
11196 ret = 0;
11197
11198 while (1) {
Jeff Mahoneyfb456252016-06-22 18:54:56 -040011199 struct btrfs_fs_info *fs_info = device->fs_info;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011200 u64 bytes;
11201
11202 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
11203 if (ret)
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011204 break;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011205
Nikolay Borisov929be172019-03-27 14:24:18 +020011206 find_first_clear_extent_bit(&device->alloc_state, start,
11207 &start, &end,
11208 CHUNK_TRIMMED | CHUNK_ALLOCATED);
Nikolay Borisov53460a42019-06-03 13:06:01 +030011209
11210 /* Ensure we skip the reserved area in the first 1M */
11211 start = max_t(u64, start, SZ_1M);
11212
Nikolay Borisov929be172019-03-27 14:24:18 +020011213 /*
11214 * If find_first_clear_extent_bit find a range that spans the
11215 * end of the device it will set end to -1, in this case it's up
11216 * to the caller to trim the value to the size of the device.
11217 */
11218 end = min(end, device->total_bytes - 1);
Nikolay Borisov53460a42019-06-03 13:06:01 +030011219
Nikolay Borisov929be172019-03-27 14:24:18 +020011220 len = end - start + 1;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011221
Nikolay Borisov929be172019-03-27 14:24:18 +020011222 /* We didn't find any extents */
11223 if (!len) {
Jeff Mahoney499f3772015-06-15 09:41:17 -040011224 mutex_unlock(&fs_info->chunk_mutex);
Nikolay Borisov929be172019-03-27 14:24:18 +020011225 ret = 0;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011226 break;
11227 }
11228
Nikolay Borisov929be172019-03-27 14:24:18 +020011229 ret = btrfs_issue_discard(device->bdev, start, len,
11230 &bytes);
11231 if (!ret)
11232 set_extent_bits(&device->alloc_state, start,
11233 start + bytes - 1,
11234 CHUNK_TRIMMED);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011235 mutex_unlock(&fs_info->chunk_mutex);
11236
11237 if (ret)
11238 break;
11239
11240 start += len;
11241 *trimmed += bytes;
11242
11243 if (fatal_signal_pending(current)) {
11244 ret = -ERESTARTSYS;
11245 break;
11246 }
11247
11248 cond_resched();
11249 }
11250
11251 return ret;
11252}
11253
Qu Wenruo93bba242018-09-07 14:16:23 +080011254/*
11255 * Trim the whole filesystem by:
11256 * 1) trimming the free space in each block group
11257 * 2) trimming the unallocated space on each device
11258 *
11259 * This will also continue trimming even if a block group or device encounters
11260 * an error. The return value will be the last error, or 0 if nothing bad
11261 * happens.
11262 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011263int btrfs_trim_fs(struct btrfs_fs_info *fs_info, struct fstrim_range *range)
Li Dongyangf7039b12011-03-24 10:24:28 +000011264{
Li Dongyangf7039b12011-03-24 10:24:28 +000011265 struct btrfs_block_group_cache *cache = NULL;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011266 struct btrfs_device *device;
11267 struct list_head *devices;
Li Dongyangf7039b12011-03-24 10:24:28 +000011268 u64 group_trimmed;
11269 u64 start;
11270 u64 end;
11271 u64 trimmed = 0;
Qu Wenruo93bba242018-09-07 14:16:23 +080011272 u64 bg_failed = 0;
11273 u64 dev_failed = 0;
11274 int bg_ret = 0;
11275 int dev_ret = 0;
Li Dongyangf7039b12011-03-24 10:24:28 +000011276 int ret = 0;
11277
Qu Wenruo6ba9fc82018-09-07 14:16:24 +080011278 cache = btrfs_lookup_first_block_group(fs_info, range->start);
David Sterbaf87b7eb2019-03-20 12:01:07 +010011279 for (; cache; cache = next_block_group(cache)) {
Li Dongyangf7039b12011-03-24 10:24:28 +000011280 if (cache->key.objectid >= (range->start + range->len)) {
11281 btrfs_put_block_group(cache);
11282 break;
11283 }
11284
11285 start = max(range->start, cache->key.objectid);
11286 end = min(range->start + range->len,
11287 cache->key.objectid + cache->key.offset);
11288
11289 if (end - start >= range->minlen) {
11290 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000011291 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040011292 if (ret) {
Qu Wenruo93bba242018-09-07 14:16:23 +080011293 bg_failed++;
11294 bg_ret = ret;
11295 continue;
Josef Bacik1be41b72013-06-12 13:56:06 -040011296 }
11297 ret = wait_block_group_cache_done(cache);
11298 if (ret) {
Qu Wenruo93bba242018-09-07 14:16:23 +080011299 bg_failed++;
11300 bg_ret = ret;
11301 continue;
Josef Bacik1be41b72013-06-12 13:56:06 -040011302 }
Li Dongyangf7039b12011-03-24 10:24:28 +000011303 }
11304 ret = btrfs_trim_block_group(cache,
11305 &group_trimmed,
11306 start,
11307 end,
11308 range->minlen);
11309
11310 trimmed += group_trimmed;
11311 if (ret) {
Qu Wenruo93bba242018-09-07 14:16:23 +080011312 bg_failed++;
11313 bg_ret = ret;
11314 continue;
Li Dongyangf7039b12011-03-24 10:24:28 +000011315 }
11316 }
Li Dongyangf7039b12011-03-24 10:24:28 +000011317 }
11318
Qu Wenruo93bba242018-09-07 14:16:23 +080011319 if (bg_failed)
11320 btrfs_warn(fs_info,
11321 "failed to trim %llu block group(s), last error %d",
11322 bg_failed, bg_ret);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011323 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoneyd4e329d2018-09-06 17:18:14 -040011324 devices = &fs_info->fs_devices->devices;
11325 list_for_each_entry(device, devices, dev_list) {
Nikolay Borisov8103d102019-06-03 13:06:00 +030011326 ret = btrfs_trim_free_extents(device, &group_trimmed);
Qu Wenruo93bba242018-09-07 14:16:23 +080011327 if (ret) {
11328 dev_failed++;
11329 dev_ret = ret;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011330 break;
Qu Wenruo93bba242018-09-07 14:16:23 +080011331 }
Jeff Mahoney499f3772015-06-15 09:41:17 -040011332
11333 trimmed += group_trimmed;
11334 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011335 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011336
Qu Wenruo93bba242018-09-07 14:16:23 +080011337 if (dev_failed)
11338 btrfs_warn(fs_info,
11339 "failed to trim %llu device(s), last error %d",
11340 dev_failed, dev_ret);
Li Dongyangf7039b12011-03-24 10:24:28 +000011341 range->len = trimmed;
Qu Wenruo93bba242018-09-07 14:16:23 +080011342 if (bg_ret)
11343 return bg_ret;
11344 return dev_ret;
Li Dongyangf7039b12011-03-24 10:24:28 +000011345}
Miao Xie8257b2d2014-03-06 13:38:19 +080011346
11347/*
David Sterbaea14b57f2017-06-22 02:19:11 +020011348 * btrfs_{start,end}_write_no_snapshotting() are similar to
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011349 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
11350 * data into the page cache through nocow before the subvolume is snapshoted,
11351 * but flush the data into disk after the snapshot creation, or to prevent
David Sterbaea14b57f2017-06-22 02:19:11 +020011352 * operations while snapshotting is ongoing and that cause the snapshot to be
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011353 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080011354 */
David Sterbaea14b57f2017-06-22 02:19:11 +020011355void btrfs_end_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011356{
11357 percpu_counter_dec(&root->subv_writers->counter);
David Sterba093258e2018-02-26 16:15:17 +010011358 cond_wake_up(&root->subv_writers->wait);
Miao Xie8257b2d2014-03-06 13:38:19 +080011359}
11360
David Sterbaea14b57f2017-06-22 02:19:11 +020011361int btrfs_start_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011362{
David Sterbaea14b57f2017-06-22 02:19:11 +020011363 if (atomic_read(&root->will_be_snapshotted))
Miao Xie8257b2d2014-03-06 13:38:19 +080011364 return 0;
11365
11366 percpu_counter_inc(&root->subv_writers->counter);
11367 /*
11368 * Make sure counter is updated before we check for snapshot creation.
11369 */
11370 smp_mb();
David Sterbaea14b57f2017-06-22 02:19:11 +020011371 if (atomic_read(&root->will_be_snapshotted)) {
11372 btrfs_end_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080011373 return 0;
11374 }
11375 return 1;
11376}
Zhao Lei0bc19f902016-01-06 18:56:36 +080011377
Zhao Lei0bc19f902016-01-06 18:56:36 +080011378void btrfs_wait_for_snapshot_creation(struct btrfs_root *root)
11379{
11380 while (true) {
11381 int ret;
11382
David Sterbaea14b57f2017-06-22 02:19:11 +020011383 ret = btrfs_start_write_no_snapshotting(root);
Zhao Lei0bc19f902016-01-06 18:56:36 +080011384 if (ret)
11385 break;
Peter Zijlstra46259562018-03-15 11:43:08 +010011386 wait_var_event(&root->will_be_snapshotted,
11387 !atomic_read(&root->will_be_snapshotted));
Zhao Lei0bc19f902016-01-06 18:56:36 +080011388 }
11389}
Qu Wenruo031f24d2018-05-22 16:43:47 +080011390
11391void btrfs_mark_bg_unused(struct btrfs_block_group_cache *bg)
11392{
11393 struct btrfs_fs_info *fs_info = bg->fs_info;
11394
11395 spin_lock(&fs_info->unused_bgs_lock);
11396 if (list_empty(&bg->bg_list)) {
11397 btrfs_get_block_group(bg);
11398 trace_btrfs_add_unused_block_group(bg);
11399 list_add_tail(&bg->bg_list, &fs_info->unused_bgs);
11400 }
11401 spin_unlock(&fs_info->unused_bgs_lock);
11402}