blob: 2f683dad3c665c03d981e5078cdead582965931e [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason6cbd5572007-06-12 09:07:21 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04004 */
David Sterbac1d7c512018-04-03 19:23:33 +02005
Zach Brownec6b9102007-07-11 10:00:37 -04006#include <linux/sched.h>
Ingo Molnarf361bf42017-02-03 23:47:37 +01007#include <linux/sched/signal.h>
Chris Masonedbd8d42007-12-21 16:27:24 -05008#include <linux/pagemap.h>
Chris Masonec44a352008-04-28 15:29:52 -04009#include <linux/writeback.h>
David Woodhouse21af8042008-08-12 14:13:26 +010010#include <linux/blkdev.h>
Chris Masonb7a9f292009-02-04 09:23:45 -050011#include <linux/sort.h>
Chris Mason4184ea72009-03-10 12:39:20 -040012#include <linux/rcupdate.h>
Josef Bacik817d52f2009-07-13 21:29:25 -040013#include <linux/kthread.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
David Sterbadff51cd2011-06-14 12:52:17 +020015#include <linux/ratelimit.h>
Josef Bacikb150a4f2013-06-19 15:00:04 -040016#include <linux/percpu_counter.h>
Josef Bacik69fe2d72017-10-19 14:15:57 -040017#include <linux/lockdep.h>
Nikolay Borisov9678c542018-01-08 11:45:05 +020018#include <linux/crc32c.h>
Miao Xie995946d2014-04-02 19:51:06 +080019#include "tree-log.h"
Chris Masonfec577f2007-02-26 10:40:21 -050020#include "disk-io.h"
21#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040022#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050023#include "raid56.h"
Chris Mason925baed2008-06-25 16:01:30 -040024#include "locking.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040025#include "free-space-cache.h"
Omar Sandoval1e144fb2015-09-29 20:50:37 -070026#include "free-space-tree.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060027#include "math.h"
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040028#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070029#include "qgroup.h"
Josef Bacikfd708b82017-09-29 15:43:50 -040030#include "ref-verify.h"
Chris Masonfec577f2007-02-26 10:40:21 -050031
Arne Jansen709c0482011-09-12 12:22:57 +020032#undef SCRAMBLE_DELAYED_REFS
33
Miao Xie9e622d62012-01-26 15:01:12 -050034/*
35 * control flags for do_chunk_alloc's force field
Chris Mason0e4f8f82011-04-15 16:05:44 -040036 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
37 * if we really need one.
38 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040039 * CHUNK_ALLOC_LIMITED means to only try and allocate one
40 * if we have very few chunks already allocated. This is
41 * used as part of the clustering code to help make sure
42 * we have a good pool of storage to cluster in, without
43 * filling the FS with empty chunks
44 *
Miao Xie9e622d62012-01-26 15:01:12 -050045 * CHUNK_ALLOC_FORCE means it must try to allocate one
46 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040047 */
48enum {
49 CHUNK_ALLOC_NO_FORCE = 0,
Miao Xie9e622d62012-01-26 15:01:12 -050050 CHUNK_ALLOC_LIMITED = 1,
51 CHUNK_ALLOC_FORCE = 2,
Chris Mason0e4f8f82011-04-15 16:05:44 -040052};
53
Qu Wenruo9f9b8e82018-10-24 20:24:01 +080054/*
55 * Declare a helper function to detect underflow of various space info members
56 */
57#define DECLARE_SPACE_INFO_UPDATE(name) \
58static inline void update_##name(struct btrfs_space_info *sinfo, \
59 s64 bytes) \
60{ \
61 if (bytes < 0 && sinfo->name < -bytes) { \
62 WARN_ON(1); \
63 sinfo->name = 0; \
64 return; \
65 } \
66 sinfo->name += bytes; \
67}
68
69DECLARE_SPACE_INFO_UPDATE(bytes_may_use);
Lu Fengqie2907c12018-10-24 20:24:02 +080070DECLARE_SPACE_INFO_UPDATE(bytes_pinned);
Qu Wenruo9f9b8e82018-10-24 20:24:01 +080071
Yan Zheng5d4f98a2009-06-10 10:45:14 -040072static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
Nikolay Borisove72cb922018-06-20 15:48:57 +030073 struct btrfs_delayed_ref_node *node, u64 parent,
74 u64 root_objectid, u64 owner_objectid,
75 u64 owner_offset, int refs_to_drop,
76 struct btrfs_delayed_extent_op *extra_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040077static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
78 struct extent_buffer *leaf,
79 struct btrfs_extent_item *ei);
80static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -040081 u64 parent, u64 root_objectid,
82 u64 flags, u64 owner, u64 offset,
83 struct btrfs_key *ins, int ref_mod);
84static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +030085 struct btrfs_delayed_ref_node *node,
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +030086 struct btrfs_delayed_extent_op *extent_op);
Nikolay Borisov01458822018-06-20 15:49:05 +030087static int do_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags,
Josef Bacik698d0082012-09-12 14:08:47 -040088 int force);
Yan Zheng11833d62009-09-11 16:11:19 -040089static int find_next_key(struct btrfs_path *path, int level,
90 struct btrfs_key *key);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -040091static void dump_space_info(struct btrfs_fs_info *fs_info,
92 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -040093 int dump_block_groups);
Josef Bacik5d803662013-02-07 16:06:02 -050094static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
95 u64 num_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -040096static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
97 struct btrfs_space_info *space_info,
98 u64 num_bytes);
99static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
100 struct btrfs_space_info *space_info,
101 u64 num_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -0500102
Josef Bacik817d52f2009-07-13 21:29:25 -0400103static noinline int
104block_group_cache_done(struct btrfs_block_group_cache *cache)
105{
106 smp_mb();
Josef Bacik36cce922013-08-05 11:15:21 -0400107 return cache->cached == BTRFS_CACHE_FINISHED ||
108 cache->cached == BTRFS_CACHE_ERROR;
Josef Bacik817d52f2009-07-13 21:29:25 -0400109}
110
Josef Bacik0f9dd462008-09-23 13:14:11 -0400111static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
112{
113 return (cache->flags & bits) == bits;
114}
115
Filipe Manana758f2df2015-11-19 11:45:48 +0000116void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +0000117{
118 atomic_inc(&cache->count);
119}
120
121void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
122{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400123 if (atomic_dec_and_test(&cache->count)) {
124 WARN_ON(cache->pinned > 0);
125 WARN_ON(cache->reserved > 0);
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800126
127 /*
128 * If not empty, someone is still holding mutex of
129 * full_stripe_lock, which can only be released by caller.
130 * And it will definitely cause use-after-free when caller
131 * tries to release full stripe lock.
132 *
133 * No better way to resolve, but only to warn.
134 */
135 WARN_ON(!RB_EMPTY_ROOT(&cache->full_stripe_locks_root.root));
Li Zefan34d52cb2011-03-29 13:46:06 +0800136 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000137 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400138 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000139}
140
Josef Bacik0f9dd462008-09-23 13:14:11 -0400141/*
142 * this adds the block group to the fs_info rb tree for the block group
143 * cache
144 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500145static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400146 struct btrfs_block_group_cache *block_group)
147{
148 struct rb_node **p;
149 struct rb_node *parent = NULL;
150 struct btrfs_block_group_cache *cache;
151
152 spin_lock(&info->block_group_cache_lock);
153 p = &info->block_group_cache_tree.rb_node;
154
155 while (*p) {
156 parent = *p;
157 cache = rb_entry(parent, struct btrfs_block_group_cache,
158 cache_node);
159 if (block_group->key.objectid < cache->key.objectid) {
160 p = &(*p)->rb_left;
161 } else if (block_group->key.objectid > cache->key.objectid) {
162 p = &(*p)->rb_right;
163 } else {
164 spin_unlock(&info->block_group_cache_lock);
165 return -EEXIST;
166 }
167 }
168
169 rb_link_node(&block_group->cache_node, parent, p);
170 rb_insert_color(&block_group->cache_node,
171 &info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +0000172
173 if (info->first_logical_byte > block_group->key.objectid)
174 info->first_logical_byte = block_group->key.objectid;
175
Josef Bacik0f9dd462008-09-23 13:14:11 -0400176 spin_unlock(&info->block_group_cache_lock);
177
178 return 0;
179}
180
181/*
182 * This will return the block group at or after bytenr if contains is 0, else
183 * it will return the block group that contains the bytenr
184 */
185static struct btrfs_block_group_cache *
186block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
187 int contains)
188{
189 struct btrfs_block_group_cache *cache, *ret = NULL;
190 struct rb_node *n;
191 u64 end, start;
192
193 spin_lock(&info->block_group_cache_lock);
194 n = info->block_group_cache_tree.rb_node;
195
196 while (n) {
197 cache = rb_entry(n, struct btrfs_block_group_cache,
198 cache_node);
199 end = cache->key.objectid + cache->key.offset - 1;
200 start = cache->key.objectid;
201
202 if (bytenr < start) {
203 if (!contains && (!ret || start < ret->key.objectid))
204 ret = cache;
205 n = n->rb_left;
206 } else if (bytenr > start) {
207 if (contains && bytenr <= end) {
208 ret = cache;
209 break;
210 }
211 n = n->rb_right;
212 } else {
213 ret = cache;
214 break;
215 }
216 }
Liu Boa1897fd2012-12-27 09:01:23 +0000217 if (ret) {
Josef Bacik11dfe352009-11-13 20:12:59 +0000218 btrfs_get_block_group(ret);
Liu Boa1897fd2012-12-27 09:01:23 +0000219 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
220 info->first_logical_byte = ret->key.objectid;
221 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400222 spin_unlock(&info->block_group_cache_lock);
223
224 return ret;
225}
226
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400227static int add_excluded_extent(struct btrfs_fs_info *fs_info,
Yan Zheng11833d62009-09-11 16:11:19 -0400228 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400229{
Yan Zheng11833d62009-09-11 16:11:19 -0400230 u64 end = start + num_bytes - 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400231 set_extent_bits(&fs_info->freed_extents[0],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200232 start, end, EXTENT_UPTODATE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400233 set_extent_bits(&fs_info->freed_extents[1],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200234 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400235 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400236}
237
Nikolay Borisov9e715da2018-06-20 15:49:08 +0300238static void free_excluded_extents(struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400239{
Nikolay Borisov9e715da2018-06-20 15:49:08 +0300240 struct btrfs_fs_info *fs_info = cache->fs_info;
Yan Zheng11833d62009-09-11 16:11:19 -0400241 u64 start, end;
242
243 start = cache->key.objectid;
244 end = start + cache->key.offset - 1;
245
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400246 clear_extent_bits(&fs_info->freed_extents[0],
David Sterba91166212016-04-26 23:54:39 +0200247 start, end, EXTENT_UPTODATE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400248 clear_extent_bits(&fs_info->freed_extents[1],
David Sterba91166212016-04-26 23:54:39 +0200249 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400250}
251
Nikolay Borisov3c4da652018-06-20 15:49:09 +0300252static int exclude_super_stripes(struct btrfs_block_group_cache *cache)
Yan Zheng11833d62009-09-11 16:11:19 -0400253{
Nikolay Borisov3c4da652018-06-20 15:49:09 +0300254 struct btrfs_fs_info *fs_info = cache->fs_info;
Josef Bacik817d52f2009-07-13 21:29:25 -0400255 u64 bytenr;
256 u64 *logical;
257 int stripe_len;
258 int i, nr, ret;
259
Yan, Zheng06b23312009-11-26 09:31:11 +0000260 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
261 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
262 cache->bytes_super += stripe_len;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400263 ret = add_excluded_extent(fs_info, cache->key.objectid,
Yan, Zheng06b23312009-11-26 09:31:11 +0000264 stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400265 if (ret)
266 return ret;
Yan, Zheng06b23312009-11-26 09:31:11 +0000267 }
268
Josef Bacik817d52f2009-07-13 21:29:25 -0400269 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
270 bytenr = btrfs_sb_offset(i);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400271 ret = btrfs_rmap_block(fs_info, cache->key.objectid,
Nikolay Borisov63a9c7b2018-05-04 10:53:05 +0300272 bytenr, &logical, &nr, &stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400273 if (ret)
274 return ret;
Yan Zheng11833d62009-09-11 16:11:19 -0400275
Josef Bacik817d52f2009-07-13 21:29:25 -0400276 while (nr--) {
Josef Bacik51bf5f02013-04-23 12:55:21 -0400277 u64 start, len;
278
279 if (logical[nr] > cache->key.objectid +
280 cache->key.offset)
281 continue;
282
283 if (logical[nr] + stripe_len <= cache->key.objectid)
284 continue;
285
286 start = logical[nr];
287 if (start < cache->key.objectid) {
288 start = cache->key.objectid;
289 len = (logical[nr] + stripe_len) - start;
290 } else {
291 len = min_t(u64, stripe_len,
292 cache->key.objectid +
293 cache->key.offset - start);
294 }
295
296 cache->bytes_super += len;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400297 ret = add_excluded_extent(fs_info, start, len);
Josef Bacik835d9742013-03-19 12:13:25 -0400298 if (ret) {
299 kfree(logical);
300 return ret;
301 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400302 }
Yan Zheng11833d62009-09-11 16:11:19 -0400303
Josef Bacik817d52f2009-07-13 21:29:25 -0400304 kfree(logical);
305 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400306 return 0;
307}
308
Yan Zheng11833d62009-09-11 16:11:19 -0400309static struct btrfs_caching_control *
310get_caching_control(struct btrfs_block_group_cache *cache)
311{
312 struct btrfs_caching_control *ctl;
313
314 spin_lock(&cache->lock);
Josef Bacikdde5abe2010-09-16 16:17:03 -0400315 if (!cache->caching_ctl) {
316 spin_unlock(&cache->lock);
317 return NULL;
318 }
319
Yan Zheng11833d62009-09-11 16:11:19 -0400320 ctl = cache->caching_ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200321 refcount_inc(&ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400322 spin_unlock(&cache->lock);
323 return ctl;
324}
325
326static void put_caching_control(struct btrfs_caching_control *ctl)
327{
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200328 if (refcount_dec_and_test(&ctl->count))
Yan Zheng11833d62009-09-11 16:11:19 -0400329 kfree(ctl);
330}
331
Josef Bacikd0bd4562015-09-23 14:54:14 -0400332#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400333static void fragment_free_space(struct btrfs_block_group_cache *block_group)
Josef Bacikd0bd4562015-09-23 14:54:14 -0400334{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400335 struct btrfs_fs_info *fs_info = block_group->fs_info;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400336 u64 start = block_group->key.objectid;
337 u64 len = block_group->key.offset;
338 u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ?
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400339 fs_info->nodesize : fs_info->sectorsize;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400340 u64 step = chunk << 1;
341
342 while (len > chunk) {
343 btrfs_remove_free_space(block_group, start, chunk);
344 start += step;
345 if (len < step)
346 len = 0;
347 else
348 len -= step;
349 }
350}
351#endif
352
Josef Bacik0f9dd462008-09-23 13:14:11 -0400353/*
354 * this is only called by cache_block_group, since we could have freed extents
355 * we need to check the pinned_extents for any extents that can't be used yet
356 * since their free space will be released as soon as the transaction commits.
357 */
Omar Sandovala5ed9182015-09-29 20:50:35 -0700358u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
Nikolay Borisov4457c1c2018-05-10 15:44:45 +0300359 u64 start, u64 end)
Josef Bacik0f9dd462008-09-23 13:14:11 -0400360{
Nikolay Borisov4457c1c2018-05-10 15:44:45 +0300361 struct btrfs_fs_info *info = block_group->fs_info;
Josef Bacik817d52f2009-07-13 21:29:25 -0400362 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400363 int ret;
364
365 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400366 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400367 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400368 EXTENT_DIRTY | EXTENT_UPTODATE,
369 NULL);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400370 if (ret)
371 break;
372
Yan, Zheng06b23312009-11-26 09:31:11 +0000373 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400374 start = extent_end + 1;
375 } else if (extent_start > start && extent_start < end) {
376 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400377 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500378 ret = btrfs_add_free_space(block_group, start,
379 size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100380 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400381 start = extent_end + 1;
382 } else {
383 break;
384 }
385 }
386
387 if (start < end) {
388 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400389 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500390 ret = btrfs_add_free_space(block_group, start, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100391 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400392 }
393
Josef Bacik817d52f2009-07-13 21:29:25 -0400394 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400395}
396
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700397static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl)
Chris Masone37c9e62007-05-09 20:13:14 -0400398{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400399 struct btrfs_block_group_cache *block_group = caching_ctl->block_group;
400 struct btrfs_fs_info *fs_info = block_group->fs_info;
401 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400402 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400403 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400404 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400405 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400406 u64 last = 0;
407 u32 nritems;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700408 int ret;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400409 bool wakeup = true;
Chris Masonf510cfe2007-10-15 16:14:48 -0400410
Chris Masone37c9e62007-05-09 20:13:14 -0400411 path = btrfs_alloc_path();
412 if (!path)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700413 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -0400414
Josef Bacik817d52f2009-07-13 21:29:25 -0400415 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400416
Josef Bacikd0bd4562015-09-23 14:54:14 -0400417#ifdef CONFIG_BTRFS_DEBUG
418 /*
419 * If we're fragmenting we don't want to make anybody think we can
420 * allocate from this block group until we've had a chance to fragment
421 * the free space.
422 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400423 if (btrfs_should_fragment_free_space(block_group))
Josef Bacikd0bd4562015-09-23 14:54:14 -0400424 wakeup = false;
425#endif
Chris Mason5cd57b22008-06-25 16:01:30 -0400426 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400427 * We don't want to deadlock with somebody trying to allocate a new
428 * extent for the extent root while also trying to search the extent
429 * root to add free space. So we skip locking and search the commit
430 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400431 */
432 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400433 path->search_commit_root = 1;
David Sterbae4058b52015-11-27 16:31:35 +0100434 path->reada = READA_FORWARD;
Josef Bacik817d52f2009-07-13 21:29:25 -0400435
Yan Zhenge4404d62008-12-12 10:03:26 -0500436 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400437 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400438 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400439
Liu Bo52ee28d2013-07-11 17:51:15 +0800440next:
Yan Zheng11833d62009-09-11 16:11:19 -0400441 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400442 if (ret < 0)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700443 goto out;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500444
Yan Zheng11833d62009-09-11 16:11:19 -0400445 leaf = path->nodes[0];
446 nritems = btrfs_header_nritems(leaf);
447
Chris Masond3977122009-01-05 21:25:51 -0500448 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200449 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400450 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400451 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400452 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400453
Yan Zheng11833d62009-09-11 16:11:19 -0400454 if (path->slots[0] < nritems) {
455 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
456 } else {
457 ret = find_next_key(path, 0, &key);
458 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400459 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400460
Josef Bacikc9ea7b22013-09-19 10:02:11 -0400461 if (need_resched() ||
Josef Bacik9e351cc2014-03-13 15:42:13 -0400462 rwsem_is_contended(&fs_info->commit_root_sem)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400463 if (wakeup)
464 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400465 btrfs_release_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400466 up_read(&fs_info->commit_root_sem);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400467 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400468 cond_resched();
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700469 mutex_lock(&caching_ctl->mutex);
470 down_read(&fs_info->commit_root_sem);
471 goto next;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400472 }
Josef Bacik0a3896d2013-04-19 14:37:26 -0400473
474 ret = btrfs_next_leaf(extent_root, path);
475 if (ret < 0)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700476 goto out;
Josef Bacik0a3896d2013-04-19 14:37:26 -0400477 if (ret)
478 break;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400479 leaf = path->nodes[0];
480 nritems = btrfs_header_nritems(leaf);
481 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400482 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400483
Liu Bo52ee28d2013-07-11 17:51:15 +0800484 if (key.objectid < last) {
485 key.objectid = last;
486 key.offset = 0;
487 key.type = BTRFS_EXTENT_ITEM_KEY;
488
Josef Bacikd0bd4562015-09-23 14:54:14 -0400489 if (wakeup)
490 caching_ctl->progress = last;
Liu Bo52ee28d2013-07-11 17:51:15 +0800491 btrfs_release_path(path);
492 goto next;
493 }
494
Yan Zheng11833d62009-09-11 16:11:19 -0400495 if (key.objectid < block_group->key.objectid) {
496 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400497 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400498 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400499
Chris Masone37c9e62007-05-09 20:13:14 -0400500 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400501 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400502 break;
Yan7d7d6062007-09-14 16:15:28 -0400503
Josef Bacik3173a182013-03-07 14:22:04 -0500504 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
505 key.type == BTRFS_METADATA_ITEM_KEY) {
Nikolay Borisov4457c1c2018-05-10 15:44:45 +0300506 total_found += add_new_free_space(block_group, last,
Josef Bacik817d52f2009-07-13 21:29:25 -0400507 key.objectid);
Josef Bacik3173a182013-03-07 14:22:04 -0500508 if (key.type == BTRFS_METADATA_ITEM_KEY)
509 last = key.objectid +
Jeff Mahoneyda170662016-06-15 09:22:56 -0400510 fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500511 else
512 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400513
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700514 if (total_found > CACHING_CTL_WAKE_UP) {
Yan Zheng11833d62009-09-11 16:11:19 -0400515 total_found = 0;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400516 if (wakeup)
517 wake_up(&caching_ctl->wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400518 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400519 }
Chris Masone37c9e62007-05-09 20:13:14 -0400520 path->slots[0]++;
521 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400522 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400523
Nikolay Borisov4457c1c2018-05-10 15:44:45 +0300524 total_found += add_new_free_space(block_group, last,
Josef Bacik817d52f2009-07-13 21:29:25 -0400525 block_group->key.objectid +
526 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400527 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400528
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700529out:
530 btrfs_free_path(path);
531 return ret;
532}
533
534static noinline void caching_thread(struct btrfs_work *work)
535{
536 struct btrfs_block_group_cache *block_group;
537 struct btrfs_fs_info *fs_info;
538 struct btrfs_caching_control *caching_ctl;
539 int ret;
540
541 caching_ctl = container_of(work, struct btrfs_caching_control, work);
542 block_group = caching_ctl->block_group;
543 fs_info = block_group->fs_info;
544
545 mutex_lock(&caching_ctl->mutex);
546 down_read(&fs_info->commit_root_sem);
547
Omar Sandoval1e144fb2015-09-29 20:50:37 -0700548 if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE))
549 ret = load_free_space_tree(caching_ctl);
550 else
551 ret = load_extent_tree_free(caching_ctl);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700552
Josef Bacik817d52f2009-07-13 21:29:25 -0400553 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400554 block_group->caching_ctl = NULL;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700555 block_group->cached = ret ? BTRFS_CACHE_ERROR : BTRFS_CACHE_FINISHED;
Josef Bacik817d52f2009-07-13 21:29:25 -0400556 spin_unlock(&block_group->lock);
557
Josef Bacikd0bd4562015-09-23 14:54:14 -0400558#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400559 if (btrfs_should_fragment_free_space(block_group)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400560 u64 bytes_used;
561
562 spin_lock(&block_group->space_info->lock);
563 spin_lock(&block_group->lock);
564 bytes_used = block_group->key.offset -
565 btrfs_block_group_used(&block_group->item);
566 block_group->space_info->bytes_used += bytes_used >> 1;
567 spin_unlock(&block_group->lock);
568 spin_unlock(&block_group->space_info->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400569 fragment_free_space(block_group);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400570 }
571#endif
572
573 caching_ctl->progress = (u64)-1;
Chris Masonf7d3d2f2015-12-18 11:11:10 -0800574
Josef Bacik9e351cc2014-03-13 15:42:13 -0400575 up_read(&fs_info->commit_root_sem);
Nikolay Borisov9e715da2018-06-20 15:49:08 +0300576 free_excluded_extents(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -0400577 mutex_unlock(&caching_ctl->mutex);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700578
Yan Zheng11833d62009-09-11 16:11:19 -0400579 wake_up(&caching_ctl->wait);
580
581 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000582 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400583}
584
Josef Bacik9d66e232010-08-25 16:54:15 -0400585static int cache_block_group(struct btrfs_block_group_cache *cache,
Josef Bacik9d66e232010-08-25 16:54:15 -0400586 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400587{
Josef Bacik291c7d22011-11-14 13:52:14 -0500588 DEFINE_WAIT(wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400589 struct btrfs_fs_info *fs_info = cache->fs_info;
590 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400591 int ret = 0;
592
Josef Bacik291c7d22011-11-14 13:52:14 -0500593 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100594 if (!caching_ctl)
595 return -ENOMEM;
Josef Bacik291c7d22011-11-14 13:52:14 -0500596
597 INIT_LIST_HEAD(&caching_ctl->list);
598 mutex_init(&caching_ctl->mutex);
599 init_waitqueue_head(&caching_ctl->wait);
600 caching_ctl->block_group = cache;
601 caching_ctl->progress = cache->key.objectid;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200602 refcount_set(&caching_ctl->count, 1);
Liu Bo9e0af232014-08-15 23:36:53 +0800603 btrfs_init_work(&caching_ctl->work, btrfs_cache_helper,
604 caching_thread, NULL, NULL);
Josef Bacik291c7d22011-11-14 13:52:14 -0500605
606 spin_lock(&cache->lock);
607 /*
608 * This should be a rare occasion, but this could happen I think in the
609 * case where one thread starts to load the space cache info, and then
610 * some other thread starts a transaction commit which tries to do an
611 * allocation while the other thread is still loading the space cache
612 * info. The previous loop should have kept us from choosing this block
613 * group, but if we've moved to the state where we will wait on caching
614 * block groups we need to first check if we're doing a fast load here,
615 * so we can wait for it to finish, otherwise we could end up allocating
616 * from a block group who's cache gets evicted for one reason or
617 * another.
618 */
619 while (cache->cached == BTRFS_CACHE_FAST) {
620 struct btrfs_caching_control *ctl;
621
622 ctl = cache->caching_ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200623 refcount_inc(&ctl->count);
Josef Bacik291c7d22011-11-14 13:52:14 -0500624 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
625 spin_unlock(&cache->lock);
626
627 schedule();
628
629 finish_wait(&ctl->wait, &wait);
630 put_caching_control(ctl);
631 spin_lock(&cache->lock);
632 }
633
634 if (cache->cached != BTRFS_CACHE_NO) {
635 spin_unlock(&cache->lock);
636 kfree(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400637 return 0;
Josef Bacik291c7d22011-11-14 13:52:14 -0500638 }
639 WARN_ON(cache->caching_ctl);
640 cache->caching_ctl = caching_ctl;
641 cache->cached = BTRFS_CACHE_FAST;
642 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400643
Satoru Takeuchid8953d62017-09-12 20:08:08 +0900644 if (btrfs_test_opt(fs_info, SPACE_CACHE)) {
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500645 mutex_lock(&caching_ctl->mutex);
Josef Bacik9d66e232010-08-25 16:54:15 -0400646 ret = load_free_space_cache(fs_info, cache);
647
648 spin_lock(&cache->lock);
649 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500650 cache->caching_ctl = NULL;
Josef Bacik9d66e232010-08-25 16:54:15 -0400651 cache->cached = BTRFS_CACHE_FINISHED;
652 cache->last_byte_to_unpin = (u64)-1;
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500653 caching_ctl->progress = (u64)-1;
Josef Bacik9d66e232010-08-25 16:54:15 -0400654 } else {
Josef Bacik291c7d22011-11-14 13:52:14 -0500655 if (load_cache_only) {
656 cache->caching_ctl = NULL;
657 cache->cached = BTRFS_CACHE_NO;
658 } else {
659 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000660 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500661 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400662 }
663 spin_unlock(&cache->lock);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400664#ifdef CONFIG_BTRFS_DEBUG
665 if (ret == 1 &&
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400666 btrfs_should_fragment_free_space(cache)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400667 u64 bytes_used;
668
669 spin_lock(&cache->space_info->lock);
670 spin_lock(&cache->lock);
671 bytes_used = cache->key.offset -
672 btrfs_block_group_used(&cache->item);
673 cache->space_info->bytes_used += bytes_used >> 1;
674 spin_unlock(&cache->lock);
675 spin_unlock(&cache->space_info->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400676 fragment_free_space(cache);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400677 }
678#endif
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500679 mutex_unlock(&caching_ctl->mutex);
680
Josef Bacik291c7d22011-11-14 13:52:14 -0500681 wake_up(&caching_ctl->wait);
Josef Bacik3c148742011-02-02 15:53:47 +0000682 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500683 put_caching_control(caching_ctl);
Nikolay Borisov9e715da2018-06-20 15:49:08 +0300684 free_excluded_extents(cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400685 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000686 }
Josef Bacik291c7d22011-11-14 13:52:14 -0500687 } else {
688 /*
Omar Sandoval1e144fb2015-09-29 20:50:37 -0700689 * We're either using the free space tree or no caching at all.
690 * Set cached to the appropriate value and wakeup any waiters.
Josef Bacik291c7d22011-11-14 13:52:14 -0500691 */
692 spin_lock(&cache->lock);
693 if (load_cache_only) {
694 cache->caching_ctl = NULL;
695 cache->cached = BTRFS_CACHE_NO;
696 } else {
697 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000698 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500699 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400700 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500701 wake_up(&caching_ctl->wait);
702 }
703
704 if (load_cache_only) {
705 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400706 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400707 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400708
Josef Bacik9e351cc2014-03-13 15:42:13 -0400709 down_write(&fs_info->commit_root_sem);
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200710 refcount_inc(&caching_ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400711 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400712 up_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -0400713
Josef Bacik11dfe352009-11-13 20:12:59 +0000714 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400715
Qu Wenruoe66f0bb2014-02-28 10:46:12 +0800716 btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work);
Josef Bacik817d52f2009-07-13 21:29:25 -0400717
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400718 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400719}
720
Josef Bacik0f9dd462008-09-23 13:14:11 -0400721/*
722 * return the block group that starts at or after bytenr
723 */
Chris Masond3977122009-01-05 21:25:51 -0500724static struct btrfs_block_group_cache *
725btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400726{
Masahiro Yamadae2c89902016-09-13 04:35:52 +0900727 return block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400728}
729
Josef Bacik0f9dd462008-09-23 13:14:11 -0400730/*
Sankar P9f556842009-05-14 13:52:22 -0400731 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400732 */
Chris Masond3977122009-01-05 21:25:51 -0500733struct btrfs_block_group_cache *btrfs_lookup_block_group(
734 struct btrfs_fs_info *info,
735 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400736{
Masahiro Yamadae2c89902016-09-13 04:35:52 +0900737 return block_group_cache_tree_search(info, bytenr, 1);
Chris Masonbe744172007-05-06 10:15:01 -0400738}
Chris Mason0b86a832008-03-24 15:01:56 -0400739
Josef Bacik0f9dd462008-09-23 13:14:11 -0400740static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
741 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400742{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400743 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400744 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400745
Ilya Dryomov52ba6922012-01-16 22:04:47 +0200746 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
Yan, Zhengb742bb822010-05-16 10:46:24 -0400747
Chris Mason4184ea72009-03-10 12:39:20 -0400748 rcu_read_lock();
749 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400750 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400751 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400752 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400753 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400754 }
Chris Mason4184ea72009-03-10 12:39:20 -0400755 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400756 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400757}
758
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700759static void add_pinned_bytes(struct btrfs_fs_info *fs_info, s64 num_bytes,
Nikolay Borisov29d2b842018-03-30 12:58:47 +0300760 bool metadata, u64 root_objectid)
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700761{
762 struct btrfs_space_info *space_info;
763 u64 flags;
764
Nikolay Borisov29d2b842018-03-30 12:58:47 +0300765 if (metadata) {
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700766 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
767 flags = BTRFS_BLOCK_GROUP_SYSTEM;
768 else
769 flags = BTRFS_BLOCK_GROUP_METADATA;
770 } else {
771 flags = BTRFS_BLOCK_GROUP_DATA;
772 }
773
774 space_info = __find_space_info(fs_info, flags);
Omar Sandoval55e81962017-06-06 16:45:27 -0700775 ASSERT(space_info);
Ethan Liendec59fa2018-07-13 16:50:42 +0800776 percpu_counter_add_batch(&space_info->total_bytes_pinned, num_bytes,
777 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700778}
779
Chris Mason4184ea72009-03-10 12:39:20 -0400780/*
781 * after adding space to the filesystem, we need to clear the full flags
782 * on all the space infos.
783 */
784void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
785{
786 struct list_head *head = &info->space_info;
787 struct btrfs_space_info *found;
788
789 rcu_read_lock();
790 list_for_each_entry_rcu(found, head, list)
791 found->full = 0;
792 rcu_read_unlock();
793}
794
Filipe Manana1a4ed8f2014-10-27 10:44:24 +0000795/* simple helper to search for an existing data extent at a given offset */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400796int btrfs_lookup_data_extent(struct btrfs_fs_info *fs_info, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400797{
798 int ret;
799 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400800 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400801
Zheng Yan31840ae2008-09-23 13:14:14 -0400802 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700803 if (!path)
804 return -ENOMEM;
805
Chris Masone02119d2008-09-05 16:13:11 -0400806 key.objectid = start;
807 key.offset = len;
Josef Bacik3173a182013-03-07 14:22:04 -0500808 key.type = BTRFS_EXTENT_ITEM_KEY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400809 ret = btrfs_search_slot(NULL, fs_info->extent_root, &key, path, 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400810 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500811 return ret;
812}
813
Chris Masond8d5f3e2007-12-11 12:42:00 -0500814/*
Josef Bacik3173a182013-03-07 14:22:04 -0500815 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400816 *
817 * the head node for delayed ref is used to store the sum of all the
818 * reference count modifications queued up in the rbtree. the head
819 * node may also store the extent flags to set. This way you can check
820 * to see what the reference count and extent flags would be if all of
821 * the delayed refs are not processed.
822 */
823int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400824 struct btrfs_fs_info *fs_info, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500825 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400826{
827 struct btrfs_delayed_ref_head *head;
828 struct btrfs_delayed_ref_root *delayed_refs;
829 struct btrfs_path *path;
830 struct btrfs_extent_item *ei;
831 struct extent_buffer *leaf;
832 struct btrfs_key key;
833 u32 item_size;
834 u64 num_refs;
835 u64 extent_flags;
836 int ret;
837
Josef Bacik3173a182013-03-07 14:22:04 -0500838 /*
839 * If we don't have skinny metadata, don't bother doing anything
840 * different
841 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400842 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) {
843 offset = fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500844 metadata = 0;
845 }
846
Yan, Zhenga22285a2010-05-16 10:48:46 -0400847 path = btrfs_alloc_path();
848 if (!path)
849 return -ENOMEM;
850
Yan, Zhenga22285a2010-05-16 10:48:46 -0400851 if (!trans) {
852 path->skip_locking = 1;
853 path->search_commit_root = 1;
854 }
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000855
856search_again:
857 key.objectid = bytenr;
858 key.offset = offset;
859 if (metadata)
860 key.type = BTRFS_METADATA_ITEM_KEY;
861 else
862 key.type = BTRFS_EXTENT_ITEM_KEY;
863
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400864 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400865 if (ret < 0)
866 goto out_free;
867
Josef Bacik3173a182013-03-07 14:22:04 -0500868 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100869 if (path->slots[0]) {
870 path->slots[0]--;
871 btrfs_item_key_to_cpu(path->nodes[0], &key,
872 path->slots[0]);
873 if (key.objectid == bytenr &&
874 key.type == BTRFS_EXTENT_ITEM_KEY &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400875 key.offset == fs_info->nodesize)
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100876 ret = 0;
877 }
Josef Bacik3173a182013-03-07 14:22:04 -0500878 }
879
Yan, Zhenga22285a2010-05-16 10:48:46 -0400880 if (ret == 0) {
881 leaf = path->nodes[0];
882 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
883 if (item_size >= sizeof(*ei)) {
884 ei = btrfs_item_ptr(leaf, path->slots[0],
885 struct btrfs_extent_item);
886 num_refs = btrfs_extent_refs(leaf, ei);
887 extent_flags = btrfs_extent_flags(leaf, ei);
888 } else {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +0300889 ret = -EINVAL;
890 btrfs_print_v0_err(fs_info);
891 if (trans)
892 btrfs_abort_transaction(trans, ret);
893 else
894 btrfs_handle_fs_error(fs_info, ret, NULL);
895
896 goto out_free;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400897 }
Nikolay Borisovba3c2b12018-06-26 16:57:36 +0300898
Yan, Zhenga22285a2010-05-16 10:48:46 -0400899 BUG_ON(num_refs == 0);
900 } else {
901 num_refs = 0;
902 extent_flags = 0;
903 ret = 0;
904 }
905
906 if (!trans)
907 goto out;
908
909 delayed_refs = &trans->transaction->delayed_refs;
910 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -0800911 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400912 if (head) {
913 if (!mutex_trylock(&head->mutex)) {
Josef Bacikd2788502017-09-29 15:43:57 -0400914 refcount_inc(&head->refs);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400915 spin_unlock(&delayed_refs->lock);
916
David Sterbab3b4aa72011-04-21 01:20:15 +0200917 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400918
David Sterba8cc33e52011-05-02 15:29:25 +0200919 /*
920 * Mutex was contended, block until it's released and try
921 * again
922 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400923 mutex_lock(&head->mutex);
924 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -0400925 btrfs_put_delayed_ref_head(head);
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000926 goto search_again;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400927 }
Josef Bacikd7df2c72014-01-23 09:21:38 -0500928 spin_lock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400929 if (head->extent_op && head->extent_op->update_flags)
930 extent_flags |= head->extent_op->flags_to_set;
931 else
932 BUG_ON(num_refs == 0);
933
Josef Bacikd2788502017-09-29 15:43:57 -0400934 num_refs += head->ref_mod;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500935 spin_unlock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400936 mutex_unlock(&head->mutex);
937 }
938 spin_unlock(&delayed_refs->lock);
939out:
940 WARN_ON(num_refs == 0);
941 if (refs)
942 *refs = num_refs;
943 if (flags)
944 *flags = extent_flags;
945out_free:
946 btrfs_free_path(path);
947 return ret;
948}
949
950/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500951 * Back reference rules. Back refs have three main goals:
952 *
953 * 1) differentiate between all holders of references to an extent so that
954 * when a reference is dropped we can make sure it was a valid reference
955 * before freeing the extent.
956 *
957 * 2) Provide enough information to quickly find the holders of an extent
958 * if we notice a given block is corrupted or bad.
959 *
960 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
961 * maintenance. This is actually the same as #2, but with a slightly
962 * different use case.
963 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400964 * There are two kinds of back refs. The implicit back refs is optimized
965 * for pointers in non-shared tree blocks. For a given pointer in a block,
966 * back refs of this kind provide information about the block's owner tree
967 * and the pointer's key. These information allow us to find the block by
968 * b-tree searching. The full back refs is for pointers in tree blocks not
969 * referenced by their owner trees. The location of tree block is recorded
970 * in the back refs. Actually the full back refs is generic, and can be
971 * used in all cases the implicit back refs is used. The major shortcoming
972 * of the full back refs is its overhead. Every time a tree block gets
973 * COWed, we have to update back refs entry for all pointers in it.
974 *
975 * For a newly allocated tree block, we use implicit back refs for
976 * pointers in it. This means most tree related operations only involve
977 * implicit back refs. For a tree block created in old transaction, the
978 * only way to drop a reference to it is COW it. So we can detect the
979 * event that tree block loses its owner tree's reference and do the
980 * back refs conversion.
981 *
Nicholas D Steeves01327612016-05-19 21:18:45 -0400982 * When a tree block is COWed through a tree, there are four cases:
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400983 *
984 * The reference count of the block is one and the tree is the block's
985 * owner tree. Nothing to do in this case.
986 *
987 * The reference count of the block is one and the tree is not the
988 * block's owner tree. In this case, full back refs is used for pointers
989 * in the block. Remove these full back refs, add implicit back refs for
990 * every pointers in the new block.
991 *
992 * The reference count of the block is greater than one and the tree is
993 * the block's owner tree. In this case, implicit back refs is used for
994 * pointers in the block. Add full back refs for every pointers in the
995 * block, increase lower level extents' reference counts. The original
996 * implicit back refs are entailed to the new block.
997 *
998 * The reference count of the block is greater than one and the tree is
999 * not the block's owner tree. Add implicit back refs for every pointer in
1000 * the new block, increase lower level extents' reference count.
1001 *
1002 * Back Reference Key composing:
1003 *
1004 * The key objectid corresponds to the first byte in the extent,
1005 * The key type is used to differentiate between types of back refs.
1006 * There are different meanings of the key offset for different types
1007 * of back refs.
1008 *
Chris Masond8d5f3e2007-12-11 12:42:00 -05001009 * File extents can be referenced by:
1010 *
1011 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -04001012 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -05001013 * - different offsets inside a file (bookend extents in file.c)
1014 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001015 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001016 *
1017 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -05001018 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001019 * - original offset in the file
1020 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -04001021 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001022 * The key offset for the implicit back refs is hash of the first
1023 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001024 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001025 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001026 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001027 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001028 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001029 * The key offset for the implicit back refs is the first byte of
1030 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001031 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001032 * When a file extent is allocated, The implicit back refs is used.
1033 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001034 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001035 * (root_key.objectid, inode objectid, offset in file, 1)
1036 *
1037 * When a file extent is removed file truncation, we find the
1038 * corresponding implicit back refs and check the following fields:
1039 *
1040 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -05001041 *
1042 * Btree extents can be referenced by:
1043 *
1044 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -05001045 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001046 * Both the implicit back refs and the full back refs for tree blocks
1047 * only consist of key. The key offset for the implicit back refs is
1048 * objectid of block's owner tree. The key offset for the full back refs
1049 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001050 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001051 * When implicit back refs is used, information about the lowest key and
1052 * level of the tree block are required. These information are stored in
1053 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001054 */
Zheng Yan31840ae2008-09-23 13:14:14 -04001055
Liu Bo167ce952017-08-18 15:15:18 -06001056/*
1057 * is_data == BTRFS_REF_TYPE_BLOCK, tree block type is required,
Andrea Gelmini52042d82018-11-28 12:05:13 +01001058 * is_data == BTRFS_REF_TYPE_DATA, data type is requiried,
Liu Bo167ce952017-08-18 15:15:18 -06001059 * is_data == BTRFS_REF_TYPE_ANY, either type is OK.
1060 */
1061int btrfs_get_extent_inline_ref_type(const struct extent_buffer *eb,
1062 struct btrfs_extent_inline_ref *iref,
1063 enum btrfs_inline_ref_type is_data)
1064{
1065 int type = btrfs_extent_inline_ref_type(eb, iref);
Liu Bo64ecdb62017-08-18 15:15:24 -06001066 u64 offset = btrfs_extent_inline_ref_offset(eb, iref);
Liu Bo167ce952017-08-18 15:15:18 -06001067
1068 if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1069 type == BTRFS_SHARED_BLOCK_REF_KEY ||
1070 type == BTRFS_SHARED_DATA_REF_KEY ||
1071 type == BTRFS_EXTENT_DATA_REF_KEY) {
1072 if (is_data == BTRFS_REF_TYPE_BLOCK) {
Liu Bo64ecdb62017-08-18 15:15:24 -06001073 if (type == BTRFS_TREE_BLOCK_REF_KEY)
Liu Bo167ce952017-08-18 15:15:18 -06001074 return type;
Liu Bo64ecdb62017-08-18 15:15:24 -06001075 if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1076 ASSERT(eb->fs_info);
1077 /*
1078 * Every shared one has parent tree
1079 * block, which must be aligned to
1080 * nodesize.
1081 */
1082 if (offset &&
1083 IS_ALIGNED(offset, eb->fs_info->nodesize))
1084 return type;
1085 }
Liu Bo167ce952017-08-18 15:15:18 -06001086 } else if (is_data == BTRFS_REF_TYPE_DATA) {
Liu Bo64ecdb62017-08-18 15:15:24 -06001087 if (type == BTRFS_EXTENT_DATA_REF_KEY)
Liu Bo167ce952017-08-18 15:15:18 -06001088 return type;
Liu Bo64ecdb62017-08-18 15:15:24 -06001089 if (type == BTRFS_SHARED_DATA_REF_KEY) {
1090 ASSERT(eb->fs_info);
1091 /*
1092 * Every shared one has parent tree
1093 * block, which must be aligned to
1094 * nodesize.
1095 */
1096 if (offset &&
1097 IS_ALIGNED(offset, eb->fs_info->nodesize))
1098 return type;
1099 }
Liu Bo167ce952017-08-18 15:15:18 -06001100 } else {
1101 ASSERT(is_data == BTRFS_REF_TYPE_ANY);
1102 return type;
1103 }
1104 }
1105
1106 btrfs_print_leaf((struct extent_buffer *)eb);
1107 btrfs_err(eb->fs_info, "eb %llu invalid extent inline ref type %d",
1108 eb->start, type);
1109 WARN_ON(1);
1110
1111 return BTRFS_REF_TYPE_INVALID;
1112}
1113
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001114static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1115{
1116 u32 high_crc = ~(u32)0;
1117 u32 low_crc = ~(u32)0;
1118 __le64 lenum;
1119
1120 lenum = cpu_to_le64(root_objectid);
Nikolay Borisov9678c542018-01-08 11:45:05 +02001121 high_crc = crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001122 lenum = cpu_to_le64(owner);
Nikolay Borisov9678c542018-01-08 11:45:05 +02001123 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001124 lenum = cpu_to_le64(offset);
Nikolay Borisov9678c542018-01-08 11:45:05 +02001125 low_crc = crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001126
1127 return ((u64)high_crc << 31) ^ (u64)low_crc;
1128}
1129
1130static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1131 struct btrfs_extent_data_ref *ref)
1132{
1133 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1134 btrfs_extent_data_ref_objectid(leaf, ref),
1135 btrfs_extent_data_ref_offset(leaf, ref));
1136}
1137
1138static int match_extent_data_ref(struct extent_buffer *leaf,
1139 struct btrfs_extent_data_ref *ref,
1140 u64 root_objectid, u64 owner, u64 offset)
1141{
1142 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1143 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1144 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1145 return 0;
1146 return 1;
1147}
1148
1149static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001150 struct btrfs_path *path,
1151 u64 bytenr, u64 parent,
1152 u64 root_objectid,
1153 u64 owner, u64 offset)
1154{
Nikolay Borisovbd1d53e2018-06-20 15:48:51 +03001155 struct btrfs_root *root = trans->fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001156 struct btrfs_key key;
1157 struct btrfs_extent_data_ref *ref;
1158 struct extent_buffer *leaf;
1159 u32 nritems;
1160 int ret;
1161 int recow;
1162 int err = -ENOENT;
1163
1164 key.objectid = bytenr;
1165 if (parent) {
1166 key.type = BTRFS_SHARED_DATA_REF_KEY;
1167 key.offset = parent;
1168 } else {
1169 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1170 key.offset = hash_extent_data_ref(root_objectid,
1171 owner, offset);
1172 }
1173again:
1174 recow = 0;
1175 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1176 if (ret < 0) {
1177 err = ret;
1178 goto fail;
1179 }
1180
1181 if (parent) {
1182 if (!ret)
1183 return 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001184 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001185 }
1186
1187 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001188 nritems = btrfs_header_nritems(leaf);
1189 while (1) {
1190 if (path->slots[0] >= nritems) {
1191 ret = btrfs_next_leaf(root, path);
1192 if (ret < 0)
1193 err = ret;
1194 if (ret)
1195 goto fail;
1196
1197 leaf = path->nodes[0];
1198 nritems = btrfs_header_nritems(leaf);
1199 recow = 1;
1200 }
1201
1202 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1203 if (key.objectid != bytenr ||
1204 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1205 goto fail;
1206
1207 ref = btrfs_item_ptr(leaf, path->slots[0],
1208 struct btrfs_extent_data_ref);
1209
1210 if (match_extent_data_ref(leaf, ref, root_objectid,
1211 owner, offset)) {
1212 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001213 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001214 goto again;
1215 }
1216 err = 0;
1217 break;
1218 }
1219 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001220 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001221fail:
1222 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001223}
1224
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001225static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001226 struct btrfs_path *path,
1227 u64 bytenr, u64 parent,
1228 u64 root_objectid, u64 owner,
1229 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001230{
Nikolay Borisov62b895a2018-06-20 15:48:44 +03001231 struct btrfs_root *root = trans->fs_info->extent_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04001232 struct btrfs_key key;
1233 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001234 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001235 u32 num_refs;
1236 int ret;
1237
1238 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001239 if (parent) {
1240 key.type = BTRFS_SHARED_DATA_REF_KEY;
1241 key.offset = parent;
1242 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001243 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001244 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1245 key.offset = hash_extent_data_ref(root_objectid,
1246 owner, offset);
1247 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001248 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001249
1250 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1251 if (ret && ret != -EEXIST)
1252 goto fail;
1253
1254 leaf = path->nodes[0];
1255 if (parent) {
1256 struct btrfs_shared_data_ref *ref;
1257 ref = btrfs_item_ptr(leaf, path->slots[0],
1258 struct btrfs_shared_data_ref);
1259 if (ret == 0) {
1260 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1261 } else {
1262 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1263 num_refs += refs_to_add;
1264 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1265 }
1266 } else {
1267 struct btrfs_extent_data_ref *ref;
1268 while (ret == -EEXIST) {
1269 ref = btrfs_item_ptr(leaf, path->slots[0],
1270 struct btrfs_extent_data_ref);
1271 if (match_extent_data_ref(leaf, ref, root_objectid,
1272 owner, offset))
1273 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001274 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001275 key.offset++;
1276 ret = btrfs_insert_empty_item(trans, root, path, &key,
1277 size);
1278 if (ret && ret != -EEXIST)
1279 goto fail;
1280
1281 leaf = path->nodes[0];
1282 }
1283 ref = btrfs_item_ptr(leaf, path->slots[0],
1284 struct btrfs_extent_data_ref);
1285 if (ret == 0) {
1286 btrfs_set_extent_data_ref_root(leaf, ref,
1287 root_objectid);
1288 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1289 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1290 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1291 } else {
1292 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1293 num_refs += refs_to_add;
1294 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1295 }
1296 }
1297 btrfs_mark_buffer_dirty(leaf);
1298 ret = 0;
1299fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001300 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001301 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001302}
1303
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001304static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001305 struct btrfs_path *path,
Josef Bacikfcebe452014-05-13 17:30:47 -07001306 int refs_to_drop, int *last_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04001307{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001308 struct btrfs_key key;
1309 struct btrfs_extent_data_ref *ref1 = NULL;
1310 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001311 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001312 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001313 int ret = 0;
1314
1315 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001316 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1317
1318 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1319 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1320 struct btrfs_extent_data_ref);
1321 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1322 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1323 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1324 struct btrfs_shared_data_ref);
1325 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
David Sterba6d8ff4e2018-06-26 16:20:59 +02001326 } else if (unlikely(key.type == BTRFS_EXTENT_REF_V0_KEY)) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03001327 btrfs_print_v0_err(trans->fs_info);
1328 btrfs_abort_transaction(trans, -EINVAL);
1329 return -EINVAL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001330 } else {
1331 BUG();
1332 }
1333
Chris Mason56bec292009-03-13 10:10:06 -04001334 BUG_ON(num_refs < refs_to_drop);
1335 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001336
Zheng Yan31840ae2008-09-23 13:14:14 -04001337 if (num_refs == 0) {
Nikolay Borisove9f62902018-06-20 15:48:46 +03001338 ret = btrfs_del_item(trans, trans->fs_info->extent_root, path);
Josef Bacikfcebe452014-05-13 17:30:47 -07001339 *last_ref = 1;
Zheng Yan31840ae2008-09-23 13:14:14 -04001340 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001341 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1342 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1343 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1344 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
Zheng Yan31840ae2008-09-23 13:14:14 -04001345 btrfs_mark_buffer_dirty(leaf);
1346 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001347 return ret;
1348}
1349
Zhaolei9ed0dea2015-08-06 22:16:24 +08001350static noinline u32 extent_data_ref_count(struct btrfs_path *path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001351 struct btrfs_extent_inline_ref *iref)
1352{
1353 struct btrfs_key key;
1354 struct extent_buffer *leaf;
1355 struct btrfs_extent_data_ref *ref1;
1356 struct btrfs_shared_data_ref *ref2;
1357 u32 num_refs = 0;
Liu Bo3de28d52017-08-18 15:15:19 -06001358 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001359
1360 leaf = path->nodes[0];
1361 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03001362
1363 BUG_ON(key.type == BTRFS_EXTENT_REF_V0_KEY);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001364 if (iref) {
Liu Bo3de28d52017-08-18 15:15:19 -06001365 /*
1366 * If type is invalid, we should have bailed out earlier than
1367 * this call.
1368 */
1369 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
1370 ASSERT(type != BTRFS_REF_TYPE_INVALID);
1371 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001372 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1373 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1374 } else {
1375 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1376 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1377 }
1378 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1379 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1380 struct btrfs_extent_data_ref);
1381 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1382 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1383 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1384 struct btrfs_shared_data_ref);
1385 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001386 } else {
1387 WARN_ON(1);
1388 }
1389 return num_refs;
1390}
1391
1392static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001393 struct btrfs_path *path,
1394 u64 bytenr, u64 parent,
1395 u64 root_objectid)
1396{
Nikolay Borisovb8582ee2018-06-20 15:48:50 +03001397 struct btrfs_root *root = trans->fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001398 struct btrfs_key key;
1399 int ret;
1400
1401 key.objectid = bytenr;
1402 if (parent) {
1403 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1404 key.offset = parent;
1405 } else {
1406 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1407 key.offset = root_objectid;
1408 }
1409
1410 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1411 if (ret > 0)
1412 ret = -ENOENT;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001413 return ret;
1414}
1415
1416static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001417 struct btrfs_path *path,
1418 u64 bytenr, u64 parent,
1419 u64 root_objectid)
1420{
1421 struct btrfs_key key;
1422 int ret;
1423
1424 key.objectid = bytenr;
1425 if (parent) {
1426 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1427 key.offset = parent;
1428 } else {
1429 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1430 key.offset = root_objectid;
1431 }
1432
Nikolay Borisov10728402018-06-20 15:48:43 +03001433 ret = btrfs_insert_empty_item(trans, trans->fs_info->extent_root,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001434 path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001435 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001436 return ret;
1437}
1438
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001439static inline int extent_ref_type(u64 parent, u64 owner)
1440{
1441 int type;
1442 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1443 if (parent > 0)
1444 type = BTRFS_SHARED_BLOCK_REF_KEY;
1445 else
1446 type = BTRFS_TREE_BLOCK_REF_KEY;
1447 } else {
1448 if (parent > 0)
1449 type = BTRFS_SHARED_DATA_REF_KEY;
1450 else
1451 type = BTRFS_EXTENT_DATA_REF_KEY;
1452 }
1453 return type;
1454}
1455
Yan Zheng2c47e6052009-06-27 21:07:35 -04001456static int find_next_key(struct btrfs_path *path, int level,
1457 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001458
1459{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001460 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001461 if (!path->nodes[level])
1462 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001463 if (path->slots[level] + 1 >=
1464 btrfs_header_nritems(path->nodes[level]))
1465 continue;
1466 if (level == 0)
1467 btrfs_item_key_to_cpu(path->nodes[level], key,
1468 path->slots[level] + 1);
1469 else
1470 btrfs_node_key_to_cpu(path->nodes[level], key,
1471 path->slots[level] + 1);
1472 return 0;
1473 }
1474 return 1;
1475}
1476
1477/*
1478 * look for inline back ref. if back ref is found, *ref_ret is set
1479 * to the address of inline back ref, and 0 is returned.
1480 *
1481 * if back ref isn't found, *ref_ret is set to the address where it
1482 * should be inserted, and -ENOENT is returned.
1483 *
1484 * if insert is true and there are too many inline back refs, the path
1485 * points to the extent item, and -EAGAIN is returned.
1486 *
1487 * NOTE: inline back refs are ordered in the same way that back ref
1488 * items in the tree are ordered.
1489 */
1490static noinline_for_stack
1491int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001492 struct btrfs_path *path,
1493 struct btrfs_extent_inline_ref **ref_ret,
1494 u64 bytenr, u64 num_bytes,
1495 u64 parent, u64 root_objectid,
1496 u64 owner, u64 offset, int insert)
1497{
Nikolay Borisov867cc1f2018-06-20 15:48:48 +03001498 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001499 struct btrfs_root *root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001500 struct btrfs_key key;
1501 struct extent_buffer *leaf;
1502 struct btrfs_extent_item *ei;
1503 struct btrfs_extent_inline_ref *iref;
1504 u64 flags;
1505 u64 item_size;
1506 unsigned long ptr;
1507 unsigned long end;
1508 int extra_size;
1509 int type;
1510 int want;
1511 int ret;
1512 int err = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001513 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Liu Bo3de28d52017-08-18 15:15:19 -06001514 int needed;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001515
1516 key.objectid = bytenr;
1517 key.type = BTRFS_EXTENT_ITEM_KEY;
1518 key.offset = num_bytes;
1519
1520 want = extent_ref_type(parent, owner);
1521 if (insert) {
1522 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001523 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001524 } else
1525 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001526
1527 /*
Nikolay Borisov16d1c062018-06-18 14:59:26 +03001528 * Owner is our level, so we can just add one to get the level for the
1529 * block we are interested in.
Josef Bacik3173a182013-03-07 14:22:04 -05001530 */
1531 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1532 key.type = BTRFS_METADATA_ITEM_KEY;
1533 key.offset = owner;
1534 }
1535
1536again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001537 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1538 if (ret < 0) {
1539 err = ret;
1540 goto out;
1541 }
Josef Bacik3173a182013-03-07 14:22:04 -05001542
1543 /*
1544 * We may be a newly converted file system which still has the old fat
1545 * extent entries for metadata, so try and see if we have one of those.
1546 */
1547 if (ret > 0 && skinny_metadata) {
1548 skinny_metadata = false;
1549 if (path->slots[0]) {
1550 path->slots[0]--;
1551 btrfs_item_key_to_cpu(path->nodes[0], &key,
1552 path->slots[0]);
1553 if (key.objectid == bytenr &&
1554 key.type == BTRFS_EXTENT_ITEM_KEY &&
1555 key.offset == num_bytes)
1556 ret = 0;
1557 }
1558 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001559 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001560 key.type = BTRFS_EXTENT_ITEM_KEY;
1561 key.offset = num_bytes;
1562 btrfs_release_path(path);
1563 goto again;
1564 }
1565 }
1566
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001567 if (ret && !insert) {
1568 err = -ENOENT;
1569 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301570 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001571 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001572 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001573 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001574
1575 leaf = path->nodes[0];
1576 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
David Sterba6d8ff4e2018-06-26 16:20:59 +02001577 if (unlikely(item_size < sizeof(*ei))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03001578 err = -EINVAL;
1579 btrfs_print_v0_err(fs_info);
1580 btrfs_abort_transaction(trans, err);
1581 goto out;
1582 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001583
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001584 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1585 flags = btrfs_extent_flags(leaf, ei);
1586
1587 ptr = (unsigned long)(ei + 1);
1588 end = (unsigned long)ei + item_size;
1589
Josef Bacik3173a182013-03-07 14:22:04 -05001590 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001591 ptr += sizeof(struct btrfs_tree_block_info);
1592 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001593 }
1594
Liu Bo3de28d52017-08-18 15:15:19 -06001595 if (owner >= BTRFS_FIRST_FREE_OBJECTID)
1596 needed = BTRFS_REF_TYPE_DATA;
1597 else
1598 needed = BTRFS_REF_TYPE_BLOCK;
1599
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001600 err = -ENOENT;
1601 while (1) {
1602 if (ptr >= end) {
1603 WARN_ON(ptr > end);
1604 break;
1605 }
1606 iref = (struct btrfs_extent_inline_ref *)ptr;
Liu Bo3de28d52017-08-18 15:15:19 -06001607 type = btrfs_get_extent_inline_ref_type(leaf, iref, needed);
1608 if (type == BTRFS_REF_TYPE_INVALID) {
Su Yueaf431dc2018-06-22 16:18:01 +08001609 err = -EUCLEAN;
Liu Bo3de28d52017-08-18 15:15:19 -06001610 goto out;
1611 }
1612
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001613 if (want < type)
1614 break;
1615 if (want > type) {
1616 ptr += btrfs_extent_inline_ref_size(type);
1617 continue;
1618 }
1619
1620 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1621 struct btrfs_extent_data_ref *dref;
1622 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1623 if (match_extent_data_ref(leaf, dref, root_objectid,
1624 owner, offset)) {
1625 err = 0;
1626 break;
1627 }
1628 if (hash_extent_data_ref_item(leaf, dref) <
1629 hash_extent_data_ref(root_objectid, owner, offset))
1630 break;
1631 } else {
1632 u64 ref_offset;
1633 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1634 if (parent > 0) {
1635 if (parent == ref_offset) {
1636 err = 0;
1637 break;
1638 }
1639 if (ref_offset < parent)
1640 break;
1641 } else {
1642 if (root_objectid == ref_offset) {
1643 err = 0;
1644 break;
1645 }
1646 if (ref_offset < root_objectid)
1647 break;
1648 }
1649 }
1650 ptr += btrfs_extent_inline_ref_size(type);
1651 }
1652 if (err == -ENOENT && insert) {
1653 if (item_size + extra_size >=
1654 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1655 err = -EAGAIN;
1656 goto out;
1657 }
1658 /*
1659 * To add new inline back ref, we have to make sure
1660 * there is no corresponding back ref item.
1661 * For simplicity, we just do not add new inline back
1662 * ref if there is any kind of item for this block
1663 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001664 if (find_next_key(path, 0, &key) == 0 &&
1665 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001666 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001667 err = -EAGAIN;
1668 goto out;
1669 }
1670 }
1671 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1672out:
Yan Zheng85d41982009-06-11 08:51:10 -04001673 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001674 path->keep_locks = 0;
1675 btrfs_unlock_up_safe(path, 1);
1676 }
1677 return err;
1678}
1679
1680/*
1681 * helper to add new inline back ref
1682 */
1683static noinline_for_stack
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001684void setup_inline_extent_backref(struct btrfs_fs_info *fs_info,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001685 struct btrfs_path *path,
1686 struct btrfs_extent_inline_ref *iref,
1687 u64 parent, u64 root_objectid,
1688 u64 owner, u64 offset, int refs_to_add,
1689 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001690{
1691 struct extent_buffer *leaf;
1692 struct btrfs_extent_item *ei;
1693 unsigned long ptr;
1694 unsigned long end;
1695 unsigned long item_offset;
1696 u64 refs;
1697 int size;
1698 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001699
1700 leaf = path->nodes[0];
1701 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1702 item_offset = (unsigned long)iref - (unsigned long)ei;
1703
1704 type = extent_ref_type(parent, owner);
1705 size = btrfs_extent_inline_ref_size(type);
1706
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001707 btrfs_extend_item(fs_info, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001708
1709 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1710 refs = btrfs_extent_refs(leaf, ei);
1711 refs += refs_to_add;
1712 btrfs_set_extent_refs(leaf, ei, refs);
1713 if (extent_op)
1714 __run_delayed_extent_op(extent_op, leaf, ei);
1715
1716 ptr = (unsigned long)ei + item_offset;
1717 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1718 if (ptr < end - size)
1719 memmove_extent_buffer(leaf, ptr + size, ptr,
1720 end - size - ptr);
1721
1722 iref = (struct btrfs_extent_inline_ref *)ptr;
1723 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1724 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1725 struct btrfs_extent_data_ref *dref;
1726 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1727 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1728 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1729 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1730 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1731 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1732 struct btrfs_shared_data_ref *sref;
1733 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1734 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1735 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1736 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1737 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1738 } else {
1739 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1740 }
1741 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001742}
1743
1744static int lookup_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001745 struct btrfs_path *path,
1746 struct btrfs_extent_inline_ref **ref_ret,
1747 u64 bytenr, u64 num_bytes, u64 parent,
1748 u64 root_objectid, u64 owner, u64 offset)
1749{
1750 int ret;
1751
Nikolay Borisov867cc1f2018-06-20 15:48:48 +03001752 ret = lookup_inline_extent_backref(trans, path, ref_ret, bytenr,
1753 num_bytes, parent, root_objectid,
1754 owner, offset, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001755 if (ret != -ENOENT)
1756 return ret;
1757
David Sterbab3b4aa72011-04-21 01:20:15 +02001758 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001759 *ref_ret = NULL;
1760
1761 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Nikolay Borisovb8582ee2018-06-20 15:48:50 +03001762 ret = lookup_tree_block_ref(trans, path, bytenr, parent,
1763 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001764 } else {
Nikolay Borisovbd1d53e2018-06-20 15:48:51 +03001765 ret = lookup_extent_data_ref(trans, path, bytenr, parent,
1766 root_objectid, owner, offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001767 }
1768 return ret;
1769}
1770
1771/*
1772 * helper to update/remove inline back ref
1773 */
1774static noinline_for_stack
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001775void update_inline_extent_backref(struct btrfs_path *path,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001776 struct btrfs_extent_inline_ref *iref,
1777 int refs_to_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07001778 struct btrfs_delayed_extent_op *extent_op,
1779 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001780{
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001781 struct extent_buffer *leaf = path->nodes[0];
1782 struct btrfs_fs_info *fs_info = leaf->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001783 struct btrfs_extent_item *ei;
1784 struct btrfs_extent_data_ref *dref = NULL;
1785 struct btrfs_shared_data_ref *sref = NULL;
1786 unsigned long ptr;
1787 unsigned long end;
1788 u32 item_size;
1789 int size;
1790 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001791 u64 refs;
1792
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001793 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1794 refs = btrfs_extent_refs(leaf, ei);
1795 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1796 refs += refs_to_mod;
1797 btrfs_set_extent_refs(leaf, ei, refs);
1798 if (extent_op)
1799 __run_delayed_extent_op(extent_op, leaf, ei);
1800
Liu Bo3de28d52017-08-18 15:15:19 -06001801 /*
1802 * If type is invalid, we should have bailed out after
1803 * lookup_inline_extent_backref().
1804 */
1805 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_ANY);
1806 ASSERT(type != BTRFS_REF_TYPE_INVALID);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001807
1808 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1809 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1810 refs = btrfs_extent_data_ref_count(leaf, dref);
1811 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1812 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1813 refs = btrfs_shared_data_ref_count(leaf, sref);
1814 } else {
1815 refs = 1;
1816 BUG_ON(refs_to_mod != -1);
1817 }
1818
1819 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1820 refs += refs_to_mod;
1821
1822 if (refs > 0) {
1823 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1824 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1825 else
1826 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1827 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001828 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001829 size = btrfs_extent_inline_ref_size(type);
1830 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1831 ptr = (unsigned long)iref;
1832 end = (unsigned long)ei + item_size;
1833 if (ptr + size < end)
1834 memmove_extent_buffer(leaf, ptr, ptr + size,
1835 end - ptr - size);
1836 item_size -= size;
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001837 btrfs_truncate_item(fs_info, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001838 }
1839 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001840}
1841
1842static noinline_for_stack
1843int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001844 struct btrfs_path *path,
1845 u64 bytenr, u64 num_bytes, u64 parent,
1846 u64 root_objectid, u64 owner,
1847 u64 offset, int refs_to_add,
1848 struct btrfs_delayed_extent_op *extent_op)
1849{
1850 struct btrfs_extent_inline_ref *iref;
1851 int ret;
1852
Nikolay Borisov867cc1f2018-06-20 15:48:48 +03001853 ret = lookup_inline_extent_backref(trans, path, &iref, bytenr,
1854 num_bytes, parent, root_objectid,
1855 owner, offset, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001856 if (ret == 0) {
1857 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001858 update_inline_extent_backref(path, iref, refs_to_add,
1859 extent_op, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001860 } else if (ret == -ENOENT) {
Nikolay Borisova639cde2018-06-20 15:49:10 +03001861 setup_inline_extent_backref(trans->fs_info, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001862 root_objectid, owner, offset,
1863 refs_to_add, extent_op);
1864 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001865 }
1866 return ret;
1867}
1868
1869static int insert_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001870 struct btrfs_path *path,
1871 u64 bytenr, u64 parent, u64 root_objectid,
1872 u64 owner, u64 offset, int refs_to_add)
1873{
1874 int ret;
1875 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1876 BUG_ON(refs_to_add != 1);
Nikolay Borisov10728402018-06-20 15:48:43 +03001877 ret = insert_tree_block_ref(trans, path, bytenr, parent,
1878 root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001879 } else {
Nikolay Borisov62b895a2018-06-20 15:48:44 +03001880 ret = insert_extent_data_ref(trans, path, bytenr, parent,
1881 root_objectid, owner, offset,
1882 refs_to_add);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001883 }
1884 return ret;
1885}
1886
1887static int remove_extent_backref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001888 struct btrfs_path *path,
1889 struct btrfs_extent_inline_ref *iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001890 int refs_to_drop, int is_data, int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001891{
Jeff Mahoney143bede2012-03-01 14:56:26 +01001892 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001893
1894 BUG_ON(!is_data && refs_to_drop != 1);
1895 if (iref) {
Nikolay Borisov61a18f12018-06-20 15:48:49 +03001896 update_inline_extent_backref(path, iref, -refs_to_drop, NULL,
1897 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001898 } else if (is_data) {
Nikolay Borisove9f62902018-06-20 15:48:46 +03001899 ret = remove_extent_data_ref(trans, path, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07001900 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001901 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001902 *last_ref = 1;
Nikolay Borisov87cc7a82018-06-20 15:49:12 +03001903 ret = btrfs_del_item(trans, trans->fs_info->extent_root, path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001904 }
1905 return ret;
1906}
1907
Jeff Mahoney86557862015-06-15 09:41:16 -04001908#define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len))
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001909static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len,
1910 u64 *discarded_bytes)
Chris Mason15916de2008-11-19 21:17:22 -05001911{
Jeff Mahoney86557862015-06-15 09:41:16 -04001912 int j, ret = 0;
1913 u64 bytes_left, end;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001914 u64 aligned_start = ALIGN(start, 1 << 9);
1915
1916 if (WARN_ON(start != aligned_start)) {
1917 len -= aligned_start - start;
1918 len = round_down(len, 1 << 9);
1919 start = aligned_start;
1920 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001921
1922 *discarded_bytes = 0;
Jeff Mahoney86557862015-06-15 09:41:16 -04001923
1924 if (!len)
1925 return 0;
1926
1927 end = start + len;
1928 bytes_left = len;
1929
1930 /* Skip any superblocks on this device. */
1931 for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) {
1932 u64 sb_start = btrfs_sb_offset(j);
1933 u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE;
1934 u64 size = sb_start - start;
1935
1936 if (!in_range(sb_start, start, bytes_left) &&
1937 !in_range(sb_end, start, bytes_left) &&
1938 !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE))
1939 continue;
1940
1941 /*
1942 * Superblock spans beginning of range. Adjust start and
1943 * try again.
1944 */
1945 if (sb_start <= start) {
1946 start += sb_end - start;
1947 if (start > end) {
1948 bytes_left = 0;
1949 break;
1950 }
1951 bytes_left = end - start;
1952 continue;
1953 }
1954
1955 if (size) {
1956 ret = blkdev_issue_discard(bdev, start >> 9, size >> 9,
1957 GFP_NOFS, 0);
1958 if (!ret)
1959 *discarded_bytes += size;
1960 else if (ret != -EOPNOTSUPP)
1961 return ret;
1962 }
1963
1964 start = sb_end;
1965 if (start > end) {
1966 bytes_left = 0;
1967 break;
1968 }
1969 bytes_left = end - start;
1970 }
1971
1972 if (bytes_left) {
1973 ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9,
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001974 GFP_NOFS, 0);
1975 if (!ret)
Jeff Mahoney86557862015-06-15 09:41:16 -04001976 *discarded_bytes += bytes_left;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04001977 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04001978 return ret;
Chris Mason15916de2008-11-19 21:17:22 -05001979}
Chris Mason15916de2008-11-19 21:17:22 -05001980
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001981int btrfs_discard_extent(struct btrfs_fs_info *fs_info, u64 bytenr,
Filipe Manana1edb647b2014-12-08 14:01:12 +00001982 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05001983{
Liu Hui1f3c79a2009-01-05 15:57:51 -05001984 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00001985 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02001986 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05001987
Christoph Hellwige244a0a2009-10-14 09:24:59 -04001988
Filipe Manana29992412016-05-27 17:42:05 +01001989 /*
1990 * Avoid races with device replace and make sure our bbio has devices
1991 * associated to its stripes that don't go away while we are discarding.
1992 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001993 btrfs_bio_counter_inc_blocked(fs_info);
Liu Hui1f3c79a2009-01-05 15:57:51 -05001994 /* Tell the block device(s) that the sectors can be discarded */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001995 ret = btrfs_map_block(fs_info, BTRFS_MAP_DISCARD, bytenr, &num_bytes,
1996 &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001997 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05001998 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02001999 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002000 int i;
2001
Liu Hui1f3c79a2009-01-05 15:57:51 -05002002
Jan Schmidta1d3c472011-08-04 17:15:33 +02002003 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002004 u64 bytes;
Anand Jain38b5f682017-11-29 18:53:43 +08002005 struct request_queue *req_q;
2006
Filipe Manana627e0872018-01-30 18:40:22 +00002007 if (!stripe->dev->bdev) {
2008 ASSERT(btrfs_test_opt(fs_info, DEGRADED));
2009 continue;
2010 }
Anand Jain38b5f682017-11-29 18:53:43 +08002011 req_q = bdev_get_queue(stripe->dev->bdev);
2012 if (!blk_queue_discard(req_q))
Josef Bacikd5e20032011-08-04 14:52:27 +00002013 continue;
2014
Li Dongyang5378e602011-03-24 10:24:27 +00002015 ret = btrfs_issue_discard(stripe->dev->bdev,
2016 stripe->physical,
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002017 stripe->length,
2018 &bytes);
Li Dongyang5378e602011-03-24 10:24:27 +00002019 if (!ret)
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002020 discarded_bytes += bytes;
Li Dongyang5378e602011-03-24 10:24:27 +00002021 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002022 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00002023
2024 /*
2025 * Just in case we get back EOPNOTSUPP for some reason,
2026 * just ignore the return value so we don't screw up
2027 * people calling discard_extent.
2028 */
2029 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002030 }
Zhao Lei6e9606d2015-01-20 15:11:34 +08002031 btrfs_put_bbio(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002032 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002033 btrfs_bio_counter_dec(fs_info);
Li Dongyang5378e602011-03-24 10:24:27 +00002034
2035 if (actual_bytes)
2036 *actual_bytes = discarded_bytes;
2037
Liu Hui1f3c79a2009-01-05 15:57:51 -05002038
David Woodhouse53b381b2013-01-29 18:40:14 -05002039 if (ret == -EOPNOTSUPP)
2040 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002041 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002042}
2043
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002044/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002045int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002046 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002047 u64 bytenr, u64 num_bytes, u64 parent,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002048 u64 root_objectid, u64 owner, u64 offset)
Zheng Yan31840ae2008-09-23 13:14:14 -04002049{
Josef Bacik84f7d8e2017-09-29 15:43:49 -04002050 struct btrfs_fs_info *fs_info = root->fs_info;
Omar Sandovald7eae342017-06-06 16:45:31 -07002051 int old_ref_mod, new_ref_mod;
Zheng Yan31840ae2008-09-23 13:14:14 -04002052 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002053
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002054 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
2055 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04002056
Josef Bacikfd708b82017-09-29 15:43:50 -04002057 btrfs_ref_tree_mod(root, bytenr, num_bytes, parent, root_objectid,
2058 owner, offset, BTRFS_ADD_DELAYED_REF);
2059
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002060 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Nikolay Borisov44e1c472018-06-20 15:48:53 +03002061 ret = btrfs_add_delayed_tree_ref(trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07002062 num_bytes, parent,
2063 root_objectid, (int)owner,
2064 BTRFS_ADD_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07002065 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002066 } else {
Nikolay Borisov88a979c2018-06-20 15:48:54 +03002067 ret = btrfs_add_delayed_data_ref(trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07002068 num_bytes, parent,
2069 root_objectid, owner, offset,
Omar Sandovald7eae342017-06-06 16:45:31 -07002070 0, BTRFS_ADD_DELAYED_REF,
2071 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002072 }
Omar Sandovald7eae342017-06-06 16:45:31 -07002073
Nikolay Borisov29d2b842018-03-30 12:58:47 +03002074 if (ret == 0 && old_ref_mod < 0 && new_ref_mod >= 0) {
2075 bool metadata = owner < BTRFS_FIRST_FREE_OBJECTID;
2076
2077 add_pinned_bytes(fs_info, -num_bytes, metadata, root_objectid);
2078 }
Omar Sandovald7eae342017-06-06 16:45:31 -07002079
Zheng Yan31840ae2008-09-23 13:14:14 -04002080 return ret;
2081}
2082
Nikolay Borisovbd3c6852018-06-18 14:59:25 +03002083/*
2084 * __btrfs_inc_extent_ref - insert backreference for a given extent
2085 *
2086 * @trans: Handle of transaction
2087 *
2088 * @node: The delayed ref node used to get the bytenr/length for
2089 * extent whose references are incremented.
2090 *
2091 * @parent: If this is a shared extent (BTRFS_SHARED_DATA_REF_KEY/
2092 * BTRFS_SHARED_BLOCK_REF_KEY) then it holds the logical
2093 * bytenr of the parent block. Since new extents are always
2094 * created with indirect references, this will only be the case
2095 * when relocating a shared extent. In that case, root_objectid
2096 * will be BTRFS_TREE_RELOC_OBJECTID. Otheriwse, parent must
2097 * be 0
2098 *
2099 * @root_objectid: The id of the root where this modification has originated,
2100 * this can be either one of the well-known metadata trees or
2101 * the subvolume id which references this extent.
2102 *
2103 * @owner: For data extents it is the inode number of the owning file.
2104 * For metadata extents this parameter holds the level in the
2105 * tree of the extent.
2106 *
2107 * @offset: For metadata extents the offset is ignored and is currently
2108 * always passed as 0. For data extents it is the fileoffset
2109 * this extent belongs to.
2110 *
2111 * @refs_to_add Number of references to add
2112 *
2113 * @extent_op Pointer to a structure, holding information necessary when
2114 * updating a tree block's flags
2115 *
2116 */
Chris Mason925baed2008-06-25 16:01:30 -04002117static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002118 struct btrfs_delayed_ref_node *node,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002119 u64 parent, u64 root_objectid,
2120 u64 owner, u64 offset, int refs_to_add,
2121 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04002122{
Chris Mason5caf2a02007-04-02 11:20:42 -04002123 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002124 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04002125 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07002126 struct btrfs_key key;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002127 u64 bytenr = node->bytenr;
2128 u64 num_bytes = node->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002129 u64 refs;
2130 int ret;
Chris Mason037e6392007-03-07 11:50:24 -05002131
Chris Mason5caf2a02007-04-02 11:20:42 -04002132 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002133 if (!path)
2134 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04002135
David Sterbae4058b52015-11-27 16:31:35 +01002136 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002137 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002138 /* this will setup the path even if it fails to insert the back ref */
Nikolay Borisova639cde2018-06-20 15:49:10 +03002139 ret = insert_inline_extent_backref(trans, path, bytenr, num_bytes,
2140 parent, root_objectid, owner,
2141 offset, refs_to_add, extent_op);
Qu Wenruo0ed47922015-04-16 16:55:08 +08002142 if ((ret < 0 && ret != -EAGAIN) || !ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002143 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002144
2145 /*
2146 * Ok we had -EAGAIN which means we didn't have space to insert and
2147 * inline extent ref, so just update the reference count and add a
2148 * normal backref.
2149 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002150 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002151 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002152 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2153 refs = btrfs_extent_refs(leaf, item);
2154 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2155 if (extent_op)
2156 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002157
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002158 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002159 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002160
David Sterbae4058b52015-11-27 16:31:35 +01002161 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002162 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002163 /* now insert the actual backref */
Nikolay Borisov37593412018-06-20 15:48:45 +03002164 ret = insert_extent_backref(trans, path, bytenr, parent, root_objectid,
2165 owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002166 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04002167 btrfs_abort_transaction(trans, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002168out:
Chris Mason74493f72007-12-11 09:25:06 -05002169 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002170 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002171}
2172
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002173static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002174 struct btrfs_delayed_ref_node *node,
2175 struct btrfs_delayed_extent_op *extent_op,
2176 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002177{
Chris Mason56bec292009-03-13 10:10:06 -04002178 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002179 struct btrfs_delayed_data_ref *ref;
2180 struct btrfs_key ins;
2181 u64 parent = 0;
2182 u64 ref_root = 0;
2183 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002184
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002185 ins.objectid = node->bytenr;
2186 ins.offset = node->num_bytes;
2187 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002188
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002189 ref = btrfs_delayed_node_to_data_ref(node);
Nikolay Borisov2bf98ef2018-06-20 15:49:00 +03002190 trace_run_delayed_data_ref(trans->fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002191
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002192 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2193 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002194 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002195
2196 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002197 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002198 flags |= extent_op->flags_to_set;
Nikolay Borisovef89b822018-06-20 15:48:58 +03002199 ret = alloc_reserved_file_extent(trans, parent, ref_root,
2200 flags, ref->objectid,
2201 ref->offset, &ins,
2202 node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002203 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Nikolay Borisov2590d0f2018-06-20 15:48:59 +03002204 ret = __btrfs_inc_extent_ref(trans, node, parent, ref_root,
2205 ref->objectid, ref->offset,
2206 node->ref_mod, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002207 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Nikolay Borisove72cb922018-06-20 15:48:57 +03002208 ret = __btrfs_free_extent(trans, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002209 ref_root, ref->objectid,
2210 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002211 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002212 } else {
2213 BUG();
2214 }
Chris Mason56bec292009-03-13 10:10:06 -04002215 return ret;
2216}
2217
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002218static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2219 struct extent_buffer *leaf,
2220 struct btrfs_extent_item *ei)
2221{
2222 u64 flags = btrfs_extent_flags(leaf, ei);
2223 if (extent_op->update_flags) {
2224 flags |= extent_op->flags_to_set;
2225 btrfs_set_extent_flags(leaf, ei, flags);
2226 }
2227
2228 if (extent_op->update_key) {
2229 struct btrfs_tree_block_info *bi;
2230 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2231 bi = (struct btrfs_tree_block_info *)(ei + 1);
2232 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2233 }
2234}
2235
2236static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
Josef Bacikd2788502017-09-29 15:43:57 -04002237 struct btrfs_delayed_ref_head *head,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002238 struct btrfs_delayed_extent_op *extent_op)
2239{
Nikolay Borisov20b9a2d2018-06-20 15:49:01 +03002240 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002241 struct btrfs_key key;
2242 struct btrfs_path *path;
2243 struct btrfs_extent_item *ei;
2244 struct extent_buffer *leaf;
2245 u32 item_size;
2246 int ret;
2247 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002248 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002249
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002250 if (trans->aborted)
2251 return 0;
2252
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002253 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik3173a182013-03-07 14:22:04 -05002254 metadata = 0;
2255
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002256 path = btrfs_alloc_path();
2257 if (!path)
2258 return -ENOMEM;
2259
Josef Bacikd2788502017-09-29 15:43:57 -04002260 key.objectid = head->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002261
Josef Bacik3173a182013-03-07 14:22:04 -05002262 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002263 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002264 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002265 } else {
2266 key.type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacikd2788502017-09-29 15:43:57 -04002267 key.offset = head->num_bytes;
Josef Bacik3173a182013-03-07 14:22:04 -05002268 }
2269
2270again:
David Sterbae4058b52015-11-27 16:31:35 +01002271 path->reada = READA_FORWARD;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002272 path->leave_spinning = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002273 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002274 if (ret < 0) {
2275 err = ret;
2276 goto out;
2277 }
2278 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002279 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002280 if (path->slots[0] > 0) {
2281 path->slots[0]--;
2282 btrfs_item_key_to_cpu(path->nodes[0], &key,
2283 path->slots[0]);
Josef Bacikd2788502017-09-29 15:43:57 -04002284 if (key.objectid == head->bytenr &&
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002285 key.type == BTRFS_EXTENT_ITEM_KEY &&
Josef Bacikd2788502017-09-29 15:43:57 -04002286 key.offset == head->num_bytes)
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002287 ret = 0;
2288 }
2289 if (ret > 0) {
2290 btrfs_release_path(path);
2291 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002292
Josef Bacikd2788502017-09-29 15:43:57 -04002293 key.objectid = head->bytenr;
2294 key.offset = head->num_bytes;
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002295 key.type = BTRFS_EXTENT_ITEM_KEY;
2296 goto again;
2297 }
2298 } else {
2299 err = -EIO;
2300 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002301 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002302 }
2303
2304 leaf = path->nodes[0];
2305 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03002306
David Sterba6d8ff4e2018-06-26 16:20:59 +02002307 if (unlikely(item_size < sizeof(*ei))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03002308 err = -EINVAL;
2309 btrfs_print_v0_err(fs_info);
2310 btrfs_abort_transaction(trans, err);
2311 goto out;
2312 }
2313
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002314 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2315 __run_delayed_extent_op(extent_op, leaf, ei);
2316
2317 btrfs_mark_buffer_dirty(leaf);
2318out:
2319 btrfs_free_path(path);
2320 return err;
2321}
2322
2323static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002324 struct btrfs_delayed_ref_node *node,
2325 struct btrfs_delayed_extent_op *extent_op,
2326 int insert_reserved)
2327{
2328 int ret = 0;
2329 struct btrfs_delayed_tree_ref *ref;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002330 u64 parent = 0;
2331 u64 ref_root = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002332
2333 ref = btrfs_delayed_node_to_tree_ref(node);
Nikolay Borisovf97806f2018-06-20 15:49:04 +03002334 trace_run_delayed_tree_ref(trans->fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002335
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002336 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2337 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002338 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002339
Liu Bo02794222016-09-14 19:19:05 -07002340 if (node->ref_mod != 1) {
Nikolay Borisovf97806f2018-06-20 15:49:04 +03002341 btrfs_err(trans->fs_info,
Liu Bo02794222016-09-14 19:19:05 -07002342 "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu",
2343 node->bytenr, node->ref_mod, node->action, ref_root,
2344 parent);
2345 return -EIO;
2346 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002347 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002348 BUG_ON(!extent_op || !extent_op->update_flags);
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03002349 ret = alloc_reserved_tree_block(trans, node, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002350 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Nikolay Borisov2590d0f2018-06-20 15:48:59 +03002351 ret = __btrfs_inc_extent_ref(trans, node, parent, ref_root,
2352 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002353 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Nikolay Borisove72cb922018-06-20 15:48:57 +03002354 ret = __btrfs_free_extent(trans, node, parent, ref_root,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002355 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002356 } else {
2357 BUG();
2358 }
2359 return ret;
2360}
2361
Chris Mason56bec292009-03-13 10:10:06 -04002362/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002363static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002364 struct btrfs_delayed_ref_node *node,
2365 struct btrfs_delayed_extent_op *extent_op,
2366 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002367{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002368 int ret = 0;
2369
Josef Bacik857cc2f2013-10-07 15:21:08 -04002370 if (trans->aborted) {
2371 if (insert_reserved)
Nikolay Borisov5fac7f92018-06-20 15:49:11 +03002372 btrfs_pin_extent(trans->fs_info, node->bytenr,
Josef Bacik857cc2f2013-10-07 15:21:08 -04002373 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002374 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002375 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002376
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002377 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2378 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
Nikolay Borisovf97806f2018-06-20 15:49:04 +03002379 ret = run_delayed_tree_ref(trans, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002380 insert_reserved);
2381 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2382 node->type == BTRFS_SHARED_DATA_REF_KEY)
Nikolay Borisov2bf98ef2018-06-20 15:49:00 +03002383 ret = run_delayed_data_ref(trans, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002384 insert_reserved);
2385 else
2386 BUG();
Josef Bacik80ee54b2018-10-11 15:54:22 -04002387 if (ret && insert_reserved)
2388 btrfs_pin_extent(trans->fs_info, node->bytenr,
2389 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002390 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002391}
2392
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002393static inline struct btrfs_delayed_ref_node *
Chris Mason56bec292009-03-13 10:10:06 -04002394select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002395{
Filipe Mananacffc3372015-07-09 13:13:44 +01002396 struct btrfs_delayed_ref_node *ref;
2397
Liu Boe3d03962018-08-23 03:51:50 +08002398 if (RB_EMPTY_ROOT(&head->ref_tree.rb_root))
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002399 return NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002400
Filipe Mananacffc3372015-07-09 13:13:44 +01002401 /*
2402 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
2403 * This is to prevent a ref count from going down to zero, which deletes
2404 * the extent item from the extent tree, when there still are references
2405 * to add, which would fail because they would not find the extent item.
2406 */
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002407 if (!list_empty(&head->ref_add_list))
2408 return list_first_entry(&head->ref_add_list,
2409 struct btrfs_delayed_ref_node, add_list);
Filipe Mananacffc3372015-07-09 13:13:44 +01002410
Liu Boe3d03962018-08-23 03:51:50 +08002411 ref = rb_entry(rb_first_cached(&head->ref_tree),
Josef Bacik0e0adbc2017-10-19 14:16:00 -04002412 struct btrfs_delayed_ref_node, ref_node);
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002413 ASSERT(list_empty(&ref->add_list));
2414 return ref;
Chris Mason56bec292009-03-13 10:10:06 -04002415}
2416
Josef Bacik2eadaa22017-09-29 15:43:52 -04002417static void unselect_delayed_ref_head(struct btrfs_delayed_ref_root *delayed_refs,
2418 struct btrfs_delayed_ref_head *head)
2419{
2420 spin_lock(&delayed_refs->lock);
2421 head->processing = 0;
2422 delayed_refs->num_heads_ready++;
2423 spin_unlock(&delayed_refs->lock);
2424 btrfs_delayed_ref_unlock(head);
2425}
2426
Josef Bacikbedc66172018-12-03 10:20:31 -05002427static struct btrfs_delayed_extent_op *cleanup_extent_op(
2428 struct btrfs_delayed_ref_head *head)
Josef Bacikb00e6252017-09-29 15:43:53 -04002429{
2430 struct btrfs_delayed_extent_op *extent_op = head->extent_op;
Josef Bacikbedc66172018-12-03 10:20:31 -05002431
2432 if (!extent_op)
2433 return NULL;
2434
2435 if (head->must_insert_reserved) {
2436 head->extent_op = NULL;
2437 btrfs_free_delayed_extent_op(extent_op);
2438 return NULL;
2439 }
2440 return extent_op;
2441}
2442
2443static int run_and_cleanup_extent_op(struct btrfs_trans_handle *trans,
2444 struct btrfs_delayed_ref_head *head)
2445{
2446 struct btrfs_delayed_extent_op *extent_op;
Josef Bacikb00e6252017-09-29 15:43:53 -04002447 int ret;
2448
Josef Bacikbedc66172018-12-03 10:20:31 -05002449 extent_op = cleanup_extent_op(head);
Josef Bacikb00e6252017-09-29 15:43:53 -04002450 if (!extent_op)
2451 return 0;
2452 head->extent_op = NULL;
Josef Bacikb00e6252017-09-29 15:43:53 -04002453 spin_unlock(&head->lock);
Nikolay Borisov20b9a2d2018-06-20 15:49:01 +03002454 ret = run_delayed_extent_op(trans, head, extent_op);
Josef Bacikb00e6252017-09-29 15:43:53 -04002455 btrfs_free_delayed_extent_op(extent_op);
2456 return ret ? ret : 1;
2457}
2458
Josef Bacik31890da2018-11-21 14:05:41 -05002459void btrfs_cleanup_ref_head_accounting(struct btrfs_fs_info *fs_info,
2460 struct btrfs_delayed_ref_root *delayed_refs,
2461 struct btrfs_delayed_ref_head *head)
Josef Bacik07c47772018-12-03 10:20:30 -05002462{
Josef Bacikba2c4d42018-12-03 10:20:33 -05002463 int nr_items = 1; /* Dropping this ref head update. */
Josef Bacik07c47772018-12-03 10:20:30 -05002464
2465 if (head->total_ref_mod < 0) {
2466 struct btrfs_space_info *space_info;
2467 u64 flags;
2468
2469 if (head->is_data)
2470 flags = BTRFS_BLOCK_GROUP_DATA;
2471 else if (head->is_system)
2472 flags = BTRFS_BLOCK_GROUP_SYSTEM;
2473 else
2474 flags = BTRFS_BLOCK_GROUP_METADATA;
2475 space_info = __find_space_info(fs_info, flags);
2476 ASSERT(space_info);
2477 percpu_counter_add_batch(&space_info->total_bytes_pinned,
2478 -head->num_bytes,
2479 BTRFS_TOTAL_BYTES_PINNED_BATCH);
2480
Josef Bacikba2c4d42018-12-03 10:20:33 -05002481 /*
2482 * We had csum deletions accounted for in our delayed refs rsv,
2483 * we need to drop the csum leaves for this update from our
2484 * delayed_refs_rsv.
2485 */
Josef Bacik07c47772018-12-03 10:20:30 -05002486 if (head->is_data) {
2487 spin_lock(&delayed_refs->lock);
2488 delayed_refs->pending_csums -= head->num_bytes;
2489 spin_unlock(&delayed_refs->lock);
Josef Bacikba2c4d42018-12-03 10:20:33 -05002490 nr_items += btrfs_csum_bytes_to_leaves(fs_info,
2491 head->num_bytes);
Josef Bacik07c47772018-12-03 10:20:30 -05002492 }
2493 }
2494
2495 /* Also free its reserved qgroup space */
2496 btrfs_qgroup_free_delayed_ref(fs_info, head->qgroup_ref_root,
2497 head->qgroup_reserved);
Josef Bacikba2c4d42018-12-03 10:20:33 -05002498 btrfs_delayed_refs_rsv_release(fs_info, nr_items);
Josef Bacik07c47772018-12-03 10:20:30 -05002499}
2500
Josef Bacik194ab0b2017-09-29 15:43:54 -04002501static int cleanup_ref_head(struct btrfs_trans_handle *trans,
Josef Bacik194ab0b2017-09-29 15:43:54 -04002502 struct btrfs_delayed_ref_head *head)
2503{
Nikolay Borisovf9871ed2018-06-20 15:49:03 +03002504
2505 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacik194ab0b2017-09-29 15:43:54 -04002506 struct btrfs_delayed_ref_root *delayed_refs;
2507 int ret;
2508
2509 delayed_refs = &trans->transaction->delayed_refs;
2510
Josef Bacikbedc66172018-12-03 10:20:31 -05002511 ret = run_and_cleanup_extent_op(trans, head);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002512 if (ret < 0) {
2513 unselect_delayed_ref_head(delayed_refs, head);
2514 btrfs_debug(fs_info, "run_delayed_extent_op returned %d", ret);
2515 return ret;
2516 } else if (ret) {
2517 return ret;
2518 }
2519
2520 /*
2521 * Need to drop our head ref lock and re-acquire the delayed ref lock
2522 * and then re-check to make sure nobody got added.
2523 */
2524 spin_unlock(&head->lock);
2525 spin_lock(&delayed_refs->lock);
2526 spin_lock(&head->lock);
Liu Boe3d03962018-08-23 03:51:50 +08002527 if (!RB_EMPTY_ROOT(&head->ref_tree.rb_root) || head->extent_op) {
Josef Bacik194ab0b2017-09-29 15:43:54 -04002528 spin_unlock(&head->lock);
2529 spin_unlock(&delayed_refs->lock);
2530 return 1;
2531 }
Josef Bacikd7baffd2018-12-03 10:20:29 -05002532 btrfs_delete_ref_head(delayed_refs, head);
Josef Bacikc1103f72017-09-29 15:43:56 -04002533 spin_unlock(&head->lock);
Nikolay Borisov1e7a1422018-04-11 11:21:18 +03002534 spin_unlock(&delayed_refs->lock);
Josef Bacikc1103f72017-09-29 15:43:56 -04002535
Josef Bacikc1103f72017-09-29 15:43:56 -04002536 if (head->must_insert_reserved) {
Josef Bacikd2788502017-09-29 15:43:57 -04002537 btrfs_pin_extent(fs_info, head->bytenr,
2538 head->num_bytes, 1);
Josef Bacikc1103f72017-09-29 15:43:56 -04002539 if (head->is_data) {
Josef Bacikd2788502017-09-29 15:43:57 -04002540 ret = btrfs_del_csums(trans, fs_info, head->bytenr,
2541 head->num_bytes);
Josef Bacikc1103f72017-09-29 15:43:56 -04002542 }
2543 }
2544
Josef Bacik31890da2018-11-21 14:05:41 -05002545 btrfs_cleanup_ref_head_accounting(fs_info, delayed_refs, head);
Josef Bacik07c47772018-12-03 10:20:30 -05002546
2547 trace_run_delayed_ref_head(fs_info, head, 0);
Josef Bacikc1103f72017-09-29 15:43:56 -04002548 btrfs_delayed_ref_unlock(head);
Josef Bacikd2788502017-09-29 15:43:57 -04002549 btrfs_put_delayed_ref_head(head);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002550 return 0;
2551}
2552
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002553static struct btrfs_delayed_ref_head *btrfs_obtain_ref_head(
2554 struct btrfs_trans_handle *trans)
2555{
2556 struct btrfs_delayed_ref_root *delayed_refs =
2557 &trans->transaction->delayed_refs;
2558 struct btrfs_delayed_ref_head *head = NULL;
2559 int ret;
2560
2561 spin_lock(&delayed_refs->lock);
Lu Fengqi5637c742018-10-11 13:40:33 +08002562 head = btrfs_select_ref_head(delayed_refs);
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002563 if (!head) {
2564 spin_unlock(&delayed_refs->lock);
2565 return head;
2566 }
2567
2568 /*
2569 * Grab the lock that says we are going to process all the refs for
2570 * this head
2571 */
Lu Fengqi9e920a62018-10-11 13:40:34 +08002572 ret = btrfs_delayed_ref_lock(delayed_refs, head);
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002573 spin_unlock(&delayed_refs->lock);
2574
2575 /*
2576 * We may have dropped the spin lock to get the head mutex lock, and
2577 * that might have given someone else time to free the head. If that's
2578 * true, it has been removed from our list and we can move on.
2579 */
2580 if (ret == -EAGAIN)
2581 head = ERR_PTR(-EAGAIN);
2582
2583 return head;
2584}
2585
Nikolay Borisove7261382018-08-15 10:39:55 +03002586static int btrfs_run_delayed_refs_for_head(struct btrfs_trans_handle *trans,
2587 struct btrfs_delayed_ref_head *locked_ref,
2588 unsigned long *run_refs)
2589{
2590 struct btrfs_fs_info *fs_info = trans->fs_info;
2591 struct btrfs_delayed_ref_root *delayed_refs;
2592 struct btrfs_delayed_extent_op *extent_op;
2593 struct btrfs_delayed_ref_node *ref;
2594 int must_insert_reserved = 0;
2595 int ret;
2596
2597 delayed_refs = &trans->transaction->delayed_refs;
2598
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002599 lockdep_assert_held(&locked_ref->mutex);
2600 lockdep_assert_held(&locked_ref->lock);
2601
Nikolay Borisove7261382018-08-15 10:39:55 +03002602 while ((ref = select_delayed_ref(locked_ref))) {
2603 if (ref->seq &&
2604 btrfs_check_delayed_seq(fs_info, ref->seq)) {
2605 spin_unlock(&locked_ref->lock);
2606 unselect_delayed_ref_head(delayed_refs, locked_ref);
2607 return -EAGAIN;
2608 }
2609
2610 (*run_refs)++;
2611 ref->in_tree = 0;
2612 rb_erase_cached(&ref->ref_node, &locked_ref->ref_tree);
2613 RB_CLEAR_NODE(&ref->ref_node);
2614 if (!list_empty(&ref->add_list))
2615 list_del(&ref->add_list);
2616 /*
2617 * When we play the delayed ref, also correct the ref_mod on
2618 * head
2619 */
2620 switch (ref->action) {
2621 case BTRFS_ADD_DELAYED_REF:
2622 case BTRFS_ADD_DELAYED_EXTENT:
2623 locked_ref->ref_mod -= ref->ref_mod;
2624 break;
2625 case BTRFS_DROP_DELAYED_REF:
2626 locked_ref->ref_mod += ref->ref_mod;
2627 break;
2628 default:
2629 WARN_ON(1);
2630 }
2631 atomic_dec(&delayed_refs->num_entries);
2632
2633 /*
2634 * Record the must_insert_reserved flag before we drop the
2635 * spin lock.
2636 */
2637 must_insert_reserved = locked_ref->must_insert_reserved;
2638 locked_ref->must_insert_reserved = 0;
2639
2640 extent_op = locked_ref->extent_op;
2641 locked_ref->extent_op = NULL;
2642 spin_unlock(&locked_ref->lock);
2643
2644 ret = run_one_delayed_ref(trans, ref, extent_op,
2645 must_insert_reserved);
2646
2647 btrfs_free_delayed_extent_op(extent_op);
2648 if (ret) {
2649 unselect_delayed_ref_head(delayed_refs, locked_ref);
2650 btrfs_put_delayed_ref(ref);
2651 btrfs_debug(fs_info, "run_one_delayed_ref returned %d",
2652 ret);
2653 return ret;
2654 }
2655
2656 btrfs_put_delayed_ref(ref);
2657 cond_resched();
2658
2659 spin_lock(&locked_ref->lock);
2660 btrfs_merge_delayed_refs(trans, delayed_refs, locked_ref);
2661 }
2662
2663 return 0;
2664}
2665
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002666/*
2667 * Returns 0 on success or if called with an already aborted transaction.
2668 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2669 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002670static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Josef Bacikd7df2c72014-01-23 09:21:38 -05002671 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002672{
Nikolay Borisov0a1e4582018-03-15 16:00:27 +02002673 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason56bec292009-03-13 10:10:06 -04002674 struct btrfs_delayed_ref_root *delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002675 struct btrfs_delayed_ref_head *locked_ref = NULL;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002676 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002677 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002678 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002679 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002680
2681 delayed_refs = &trans->transaction->delayed_refs;
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002682 do {
Chris Mason56bec292009-03-13 10:10:06 -04002683 if (!locked_ref) {
Nikolay Borisovb1cdbcb2018-08-15 10:39:54 +03002684 locked_ref = btrfs_obtain_ref_head(trans);
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002685 if (IS_ERR_OR_NULL(locked_ref)) {
2686 if (PTR_ERR(locked_ref) == -EAGAIN) {
2687 continue;
2688 } else {
2689 break;
2690 }
Chris Mason56bec292009-03-13 10:10:06 -04002691 }
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002692 count++;
Chris Mason56bec292009-03-13 10:10:06 -04002693 }
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002694 /*
2695 * We need to try and merge add/drops of the same ref since we
2696 * can run into issues with relocate dropping the implicit ref
2697 * and then it being added back again before the drop can
2698 * finish. If we merged anything we need to re-loop so we can
2699 * get a good ref.
2700 * Or we can get node references of the same type that weren't
2701 * merged when created due to bumps in the tree mod seq, and
2702 * we need to merge them to prevent adding an inline extent
2703 * backref before dropping it (triggering a BUG_ON at
2704 * insert_inline_extent_backref()).
2705 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002706 spin_lock(&locked_ref->lock);
Nikolay Borisovbe97f132018-04-19 11:06:39 +03002707 btrfs_merge_delayed_refs(trans, delayed_refs, locked_ref);
Josef Bacikae1e2062012-08-07 16:00:32 -04002708
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002709 ret = btrfs_run_delayed_refs_for_head(trans, locked_ref,
2710 &actual_count);
2711 if (ret < 0 && ret != -EAGAIN) {
2712 /*
2713 * Error, btrfs_run_delayed_refs_for_head already
2714 * unlocked everything so just bail out
2715 */
2716 return ret;
2717 } else if (!ret) {
2718 /*
2719 * Success, perform the usual cleanup of a processed
2720 * head
2721 */
Nikolay Borisovf9871ed2018-06-20 15:49:03 +03002722 ret = cleanup_ref_head(trans, locked_ref);
Josef Bacik194ab0b2017-09-29 15:43:54 -04002723 if (ret > 0 ) {
Josef Bacikb00e6252017-09-29 15:43:53 -04002724 /* We dropped our lock, we need to loop. */
2725 ret = 0;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002726 continue;
Josef Bacik194ab0b2017-09-29 15:43:54 -04002727 } else if (ret) {
2728 return ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002729 }
Josef Bacikc1103f72017-09-29 15:43:56 -04002730 }
Chris Mason56bec292009-03-13 10:10:06 -04002731
Josef Bacikb00e6252017-09-29 15:43:53 -04002732 /*
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002733 * Either success case or btrfs_run_delayed_refs_for_head
2734 * returned -EAGAIN, meaning we need to select another head
Josef Bacikb00e6252017-09-29 15:43:53 -04002735 */
Josef Bacikb00e6252017-09-29 15:43:53 -04002736
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002737 locked_ref = NULL;
Chris Mason1887be62009-03-13 10:11:24 -04002738 cond_resched();
Nikolay Borisov0110a4c2018-08-15 10:39:56 +03002739 } while ((nr != -1 && count < nr) || locked_ref);
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002740
2741 /*
2742 * We don't want to include ref heads since we can have empty ref heads
2743 * and those will drastically skew our runtime down since we just do
2744 * accounting, no actual extent tree updates.
2745 */
2746 if (actual_count > 0) {
2747 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2748 u64 avg;
2749
2750 /*
2751 * We weigh the current average higher than our current runtime
2752 * to avoid large swings in the average.
2753 */
2754 spin_lock(&delayed_refs->lock);
2755 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002756 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002757 spin_unlock(&delayed_refs->lock);
2758 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002759 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002760}
2761
Arne Jansen709c0482011-09-12 12:22:57 +02002762#ifdef SCRAMBLE_DELAYED_REFS
2763/*
2764 * Normally delayed refs get processed in ascending bytenr order. This
2765 * correlates in most cases to the order added. To expose dependencies on this
2766 * order, we start to process the tree in the middle instead of the beginning
2767 */
2768static u64 find_middle(struct rb_root *root)
2769{
2770 struct rb_node *n = root->rb_node;
2771 struct btrfs_delayed_ref_node *entry;
2772 int alt = 1;
2773 u64 middle;
2774 u64 first = 0, last = 0;
2775
2776 n = rb_first(root);
2777 if (n) {
2778 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2779 first = entry->bytenr;
2780 }
2781 n = rb_last(root);
2782 if (n) {
2783 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2784 last = entry->bytenr;
2785 }
2786 n = root->rb_node;
2787
2788 while (n) {
2789 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2790 WARN_ON(!entry->in_tree);
2791
2792 middle = entry->bytenr;
2793
2794 if (alt)
2795 n = n->rb_left;
2796 else
2797 n = n->rb_right;
2798
2799 alt = 1 - alt;
2800 }
2801 return middle;
2802}
2803#endif
2804
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002805static inline u64 heads_to_leaves(struct btrfs_fs_info *fs_info, u64 heads)
Josef Bacik1be41b72013-06-12 13:56:06 -04002806{
2807 u64 num_bytes;
2808
2809 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2810 sizeof(struct btrfs_extent_inline_ref));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002811 if (!btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik1be41b72013-06-12 13:56:06 -04002812 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2813
2814 /*
2815 * 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 -04002816 * closer to what we're really going to want to use.
Josef Bacik1be41b72013-06-12 13:56:06 -04002817 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002818 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(fs_info));
Josef Bacik1be41b72013-06-12 13:56:06 -04002819}
2820
Josef Bacik12621332015-02-03 07:50:16 -08002821/*
2822 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2823 * would require to store the csums for that many bytes.
2824 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002825u64 btrfs_csum_bytes_to_leaves(struct btrfs_fs_info *fs_info, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002826{
2827 u64 csum_size;
2828 u64 num_csums_per_leaf;
2829 u64 num_csums;
2830
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002831 csum_size = BTRFS_MAX_ITEM_SIZE(fs_info);
Josef Bacik12621332015-02-03 07:50:16 -08002832 num_csums_per_leaf = div64_u64(csum_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002833 (u64)btrfs_super_csum_size(fs_info->super_copy));
2834 num_csums = div64_u64(csum_bytes, fs_info->sectorsize);
Josef Bacik12621332015-02-03 07:50:16 -08002835 num_csums += num_csums_per_leaf - 1;
2836 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2837 return num_csums;
2838}
2839
Josef Bacik64403612018-12-03 10:20:36 -05002840bool btrfs_check_space_for_delayed_refs(struct btrfs_fs_info *fs_info)
Josef Bacik1be41b72013-06-12 13:56:06 -04002841{
Josef Bacik64403612018-12-03 10:20:36 -05002842 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
2843 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
2844 bool ret = false;
2845 u64 reserved;
Josef Bacik1be41b72013-06-12 13:56:06 -04002846
2847 spin_lock(&global_rsv->lock);
Josef Bacik64403612018-12-03 10:20:36 -05002848 reserved = global_rsv->reserved;
Josef Bacik1be41b72013-06-12 13:56:06 -04002849 spin_unlock(&global_rsv->lock);
Josef Bacik64403612018-12-03 10:20:36 -05002850
2851 /*
2852 * Since the global reserve is just kind of magic we don't really want
2853 * to rely on it to save our bacon, so if our size is more than the
2854 * delayed_refs_rsv and the global rsv then it's time to think about
2855 * bailing.
2856 */
2857 spin_lock(&delayed_refs_rsv->lock);
2858 reserved += delayed_refs_rsv->reserved;
2859 if (delayed_refs_rsv->size >= reserved)
2860 ret = true;
2861 spin_unlock(&delayed_refs_rsv->lock);
Josef Bacik1be41b72013-06-12 13:56:06 -04002862 return ret;
2863}
2864
Lu Fengqi7c861622018-10-11 13:40:36 +08002865int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002866{
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002867 u64 num_entries =
2868 atomic_read(&trans->transaction->delayed_refs.num_entries);
2869 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002870 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002871
2872 smp_mb();
Lu Fengqi7c861622018-10-11 13:40:36 +08002873 avg_runtime = trans->fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002874 val = num_entries * avg_runtime;
Wang Xiaoguangdc1a90c2016-10-26 15:23:01 +08002875 if (val >= NSEC_PER_SEC)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002876 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002877 if (val >= NSEC_PER_SEC / 2)
2878 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002879
Josef Bacik64403612018-12-03 10:20:36 -05002880 return btrfs_check_space_for_delayed_refs(trans->fs_info);
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002881}
2882
Chris Masona79b7d42014-05-22 16:18:52 -07002883struct async_delayed_refs {
2884 struct btrfs_root *root;
Josef Bacik31b96552016-04-11 17:37:40 -04002885 u64 transid;
Chris Masona79b7d42014-05-22 16:18:52 -07002886 int count;
2887 int error;
2888 int sync;
2889 struct completion wait;
2890 struct btrfs_work work;
2891};
2892
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002893static inline struct async_delayed_refs *
2894to_async_delayed_refs(struct btrfs_work *work)
2895{
2896 return container_of(work, struct async_delayed_refs, work);
2897}
2898
Chris Masona79b7d42014-05-22 16:18:52 -07002899static void delayed_ref_async_start(struct btrfs_work *work)
2900{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002901 struct async_delayed_refs *async = to_async_delayed_refs(work);
Chris Masona79b7d42014-05-22 16:18:52 -07002902 struct btrfs_trans_handle *trans;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002903 struct btrfs_fs_info *fs_info = async->root->fs_info;
Chris Masona79b7d42014-05-22 16:18:52 -07002904 int ret;
2905
Chris Mason0f873ec2016-04-27 09:59:38 -04002906 /* if the commit is already started, we don't need to wait here */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002907 if (btrfs_transaction_blocked(fs_info))
Josef Bacik31b96552016-04-11 17:37:40 -04002908 goto done;
Josef Bacik31b96552016-04-11 17:37:40 -04002909
Chris Mason0f873ec2016-04-27 09:59:38 -04002910 trans = btrfs_join_transaction(async->root);
2911 if (IS_ERR(trans)) {
2912 async->error = PTR_ERR(trans);
Chris Masona79b7d42014-05-22 16:18:52 -07002913 goto done;
2914 }
2915
2916 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002917 * trans->sync means that when we call end_transaction, we won't
Chris Masona79b7d42014-05-22 16:18:52 -07002918 * wait on delayed refs
2919 */
2920 trans->sync = true;
Chris Mason0f873ec2016-04-27 09:59:38 -04002921
2922 /* Don't bother flushing if we got into a different transaction */
2923 if (trans->transid > async->transid)
2924 goto end;
2925
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02002926 ret = btrfs_run_delayed_refs(trans, async->count);
Chris Masona79b7d42014-05-22 16:18:52 -07002927 if (ret)
2928 async->error = ret;
Chris Mason0f873ec2016-04-27 09:59:38 -04002929end:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002930 ret = btrfs_end_transaction(trans);
Chris Masona79b7d42014-05-22 16:18:52 -07002931 if (ret && !async->error)
2932 async->error = ret;
2933done:
2934 if (async->sync)
2935 complete(&async->wait);
2936 else
2937 kfree(async);
2938}
2939
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002940int btrfs_async_run_delayed_refs(struct btrfs_fs_info *fs_info,
Josef Bacik31b96552016-04-11 17:37:40 -04002941 unsigned long count, u64 transid, int wait)
Chris Masona79b7d42014-05-22 16:18:52 -07002942{
2943 struct async_delayed_refs *async;
2944 int ret;
2945
2946 async = kmalloc(sizeof(*async), GFP_NOFS);
2947 if (!async)
2948 return -ENOMEM;
2949
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002950 async->root = fs_info->tree_root;
Chris Masona79b7d42014-05-22 16:18:52 -07002951 async->count = count;
2952 async->error = 0;
Josef Bacik31b96552016-04-11 17:37:40 -04002953 async->transid = transid;
Chris Masona79b7d42014-05-22 16:18:52 -07002954 if (wait)
2955 async->sync = 1;
2956 else
2957 async->sync = 0;
2958 init_completion(&async->wait);
2959
Liu Bo9e0af232014-08-15 23:36:53 +08002960 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
2961 delayed_ref_async_start, NULL, NULL);
Chris Masona79b7d42014-05-22 16:18:52 -07002962
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002963 btrfs_queue_work(fs_info->extent_workers, &async->work);
Chris Masona79b7d42014-05-22 16:18:52 -07002964
2965 if (wait) {
2966 wait_for_completion(&async->wait);
2967 ret = async->error;
2968 kfree(async);
2969 return ret;
2970 }
2971 return 0;
2972}
2973
Chris Masonc3e69d52009-03-13 10:17:05 -04002974/*
2975 * this starts processing the delayed reference count updates and
2976 * extent insertions we have queued up so far. count can be
2977 * 0, which means to process everything in the tree at the start
2978 * of the run (but not newly added entries), or it can be some target
2979 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002980 *
2981 * Returns 0 on success or if called with an aborted transaction
2982 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04002983 */
2984int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02002985 unsigned long count)
Chris Masonc3e69d52009-03-13 10:17:05 -04002986{
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02002987 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masonc3e69d52009-03-13 10:17:05 -04002988 struct rb_node *node;
2989 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08002990 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04002991 int ret;
2992 int run_all = count == (unsigned long)-1;
Chris Masonc3e69d52009-03-13 10:17:05 -04002993
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002994 /* We'll clean this up in btrfs_cleanup_transaction */
2995 if (trans->aborted)
2996 return 0;
2997
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002998 if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags))
Chris Mason511711a2015-12-30 07:52:35 -08002999 return 0;
3000
Chris Masonc3e69d52009-03-13 10:17:05 -04003001 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08003002 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05003003 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05003004
Chris Masonc3e69d52009-03-13 10:17:05 -04003005again:
Arne Jansen709c0482011-09-12 12:22:57 +02003006#ifdef SCRAMBLE_DELAYED_REFS
3007 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
3008#endif
Nikolay Borisov0a1e4582018-03-15 16:00:27 +02003009 ret = __btrfs_run_delayed_refs(trans, count);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003010 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003011 btrfs_abort_transaction(trans, ret);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003012 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04003013 }
3014
Chris Mason56bec292009-03-13 10:10:06 -04003015 if (run_all) {
Josef Bacik119e80d2018-11-21 14:05:42 -05003016 btrfs_create_pending_block_groups(trans);
Josef Bacikea658ba2012-09-11 16:57:25 -04003017
Josef Bacikd7df2c72014-01-23 09:21:38 -05003018 spin_lock(&delayed_refs->lock);
Liu Bo5c9d0282018-08-23 03:51:49 +08003019 node = rb_first_cached(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003020 if (!node) {
3021 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04003022 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05003023 }
Josef Bacikd2788502017-09-29 15:43:57 -04003024 head = rb_entry(node, struct btrfs_delayed_ref_head,
3025 href_node);
3026 refcount_inc(&head->refs);
Chris Mason56bec292009-03-13 10:10:06 -04003027 spin_unlock(&delayed_refs->lock);
Josef Bacikd2788502017-09-29 15:43:57 -04003028
3029 /* Mutex was contended, block until it's released and retry. */
3030 mutex_lock(&head->mutex);
3031 mutex_unlock(&head->mutex);
3032
3033 btrfs_put_delayed_ref_head(head);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003034 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04003035 goto again;
3036 }
Chris Mason54aa1f42007-06-22 14:16:25 -04003037out:
Chris Masona28ec192007-03-06 20:08:01 -05003038 return 0;
3039}
3040
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003041int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003042 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003043 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04003044 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003045{
3046 struct btrfs_delayed_extent_op *extent_op;
3047 int ret;
3048
Miao Xie78a61842012-11-21 02:21:28 +00003049 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003050 if (!extent_op)
3051 return -ENOMEM;
3052
3053 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01003054 extent_op->update_flags = true;
3055 extent_op->update_key = false;
3056 extent_op->is_data = is_data ? true : false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04003057 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003058
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003059 ret = btrfs_add_delayed_extent_op(fs_info, trans, bytenr,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003060 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003061 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00003062 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003063 return ret;
3064}
3065
Liu Boe4c3b2d2017-01-30 12:25:28 -08003066static noinline int check_delayed_ref(struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003067 struct btrfs_path *path,
3068 u64 objectid, u64 offset, u64 bytenr)
3069{
3070 struct btrfs_delayed_ref_head *head;
3071 struct btrfs_delayed_ref_node *ref;
3072 struct btrfs_delayed_data_ref *data_ref;
3073 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boe4c3b2d2017-01-30 12:25:28 -08003074 struct btrfs_transaction *cur_trans;
Josef Bacik0e0adbc2017-10-19 14:16:00 -04003075 struct rb_node *node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003076 int ret = 0;
3077
ethanwu998ac6d2018-04-29 15:59:42 +08003078 spin_lock(&root->fs_info->trans_lock);
Liu Boe4c3b2d2017-01-30 12:25:28 -08003079 cur_trans = root->fs_info->running_transaction;
ethanwu998ac6d2018-04-29 15:59:42 +08003080 if (cur_trans)
3081 refcount_inc(&cur_trans->use_count);
3082 spin_unlock(&root->fs_info->trans_lock);
Liu Boe4c3b2d2017-01-30 12:25:28 -08003083 if (!cur_trans)
3084 return 0;
3085
3086 delayed_refs = &cur_trans->delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003087 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08003088 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003089 if (!head) {
3090 spin_unlock(&delayed_refs->lock);
ethanwu998ac6d2018-04-29 15:59:42 +08003091 btrfs_put_transaction(cur_trans);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003092 return 0;
3093 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003094
3095 if (!mutex_trylock(&head->mutex)) {
Josef Bacikd2788502017-09-29 15:43:57 -04003096 refcount_inc(&head->refs);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003097 spin_unlock(&delayed_refs->lock);
3098
David Sterbab3b4aa72011-04-21 01:20:15 +02003099 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003100
David Sterba8cc33e52011-05-02 15:29:25 +02003101 /*
3102 * Mutex was contended, block until it's released and let
3103 * caller try again
3104 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003105 mutex_lock(&head->mutex);
3106 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -04003107 btrfs_put_delayed_ref_head(head);
ethanwu998ac6d2018-04-29 15:59:42 +08003108 btrfs_put_transaction(cur_trans);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003109 return -EAGAIN;
3110 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003111 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003112
3113 spin_lock(&head->lock);
Josef Bacik0e0adbc2017-10-19 14:16:00 -04003114 /*
3115 * XXX: We should replace this with a proper search function in the
3116 * future.
3117 */
Liu Boe3d03962018-08-23 03:51:50 +08003118 for (node = rb_first_cached(&head->ref_tree); node;
3119 node = rb_next(node)) {
Josef Bacik0e0adbc2017-10-19 14:16:00 -04003120 ref = rb_entry(node, struct btrfs_delayed_ref_node, ref_node);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003121 /* If it's a shared ref we know a cross reference exists */
3122 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
3123 ret = 1;
3124 break;
3125 }
3126
3127 data_ref = btrfs_delayed_node_to_data_ref(ref);
3128
3129 /*
3130 * If our ref doesn't match the one we're currently looking at
3131 * then we have a cross reference.
3132 */
3133 if (data_ref->root != root->root_key.objectid ||
3134 data_ref->objectid != objectid ||
3135 data_ref->offset != offset) {
3136 ret = 1;
3137 break;
3138 }
3139 }
3140 spin_unlock(&head->lock);
3141 mutex_unlock(&head->mutex);
ethanwu998ac6d2018-04-29 15:59:42 +08003142 btrfs_put_transaction(cur_trans);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003143 return ret;
3144}
3145
Liu Boe4c3b2d2017-01-30 12:25:28 -08003146static noinline int check_committed_ref(struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003147 struct btrfs_path *path,
3148 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05003149{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003150 struct btrfs_fs_info *fs_info = root->fs_info;
3151 struct btrfs_root *extent_root = fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04003152 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003153 struct btrfs_extent_data_ref *ref;
3154 struct btrfs_extent_inline_ref *iref;
3155 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05003156 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003157 u32 item_size;
Liu Bo3de28d52017-08-18 15:15:19 -06003158 int type;
Yan Zhengf321e492008-07-30 09:26:11 -04003159 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05003160
Chris Masonbe20aa92007-12-17 20:14:01 -05003161 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04003162 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04003163 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05003164
Chris Masonbe20aa92007-12-17 20:14:01 -05003165 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3166 if (ret < 0)
3167 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003168 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04003169
3170 ret = -ENOENT;
3171 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04003172 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003173
Zheng Yan31840ae2008-09-23 13:14:14 -04003174 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04003175 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003176 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05003177
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003178 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05003179 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003180
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003181 ret = 1;
3182 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003183 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
3184
3185 if (item_size != sizeof(*ei) +
3186 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
3187 goto out;
3188
3189 if (btrfs_extent_generation(leaf, ei) <=
3190 btrfs_root_last_snapshot(&root->root_item))
3191 goto out;
3192
3193 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
Liu Bo3de28d52017-08-18 15:15:19 -06003194
3195 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
3196 if (type != BTRFS_EXTENT_DATA_REF_KEY)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003197 goto out;
3198
3199 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
3200 if (btrfs_extent_refs(leaf, ei) !=
3201 btrfs_extent_data_ref_count(leaf, ref) ||
3202 btrfs_extent_data_ref_root(leaf, ref) !=
3203 root->root_key.objectid ||
3204 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3205 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3206 goto out;
3207
Yan Zhengf321e492008-07-30 09:26:11 -04003208 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003209out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003210 return ret;
3211}
3212
Liu Boe4c3b2d2017-01-30 12:25:28 -08003213int btrfs_cross_ref_exist(struct btrfs_root *root, u64 objectid, u64 offset,
3214 u64 bytenr)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003215{
3216 struct btrfs_path *path;
3217 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003218
3219 path = btrfs_alloc_path();
3220 if (!path)
Su Yue9132c4f2018-05-30 14:49:10 +08003221 return -ENOMEM;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003222
3223 do {
Liu Boe4c3b2d2017-01-30 12:25:28 -08003224 ret = check_committed_ref(root, path, objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003225 offset, bytenr);
3226 if (ret && ret != -ENOENT)
3227 goto out;
3228
Misono Tomohiro380fd062018-08-30 10:59:16 +09003229 ret = check_delayed_ref(root, path, objectid, offset, bytenr);
3230 } while (ret == -EAGAIN);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003231
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003232out:
Yan Zhengf321e492008-07-30 09:26:11 -04003233 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003234 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3235 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003236 return ret;
3237}
3238
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003239static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003240 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003241 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003242 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003243{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003244 struct btrfs_fs_info *fs_info = root->fs_info;
Zheng Yan31840ae2008-09-23 13:14:14 -04003245 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003246 u64 num_bytes;
3247 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003248 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003249 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003250 struct btrfs_key key;
3251 struct btrfs_file_extent_item *fi;
3252 int i;
3253 int level;
3254 int ret = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003255 int (*process_func)(struct btrfs_trans_handle *,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04003256 struct btrfs_root *,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003257 u64, u64, u64, u64, u64, u64);
Zheng Yan31840ae2008-09-23 13:14:14 -04003258
David Sterbafccb84c2014-09-29 23:53:21 +02003259
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003260 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003261 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003262
Zheng Yan31840ae2008-09-23 13:14:14 -04003263 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003264 nritems = btrfs_header_nritems(buf);
3265 level = btrfs_header_level(buf);
3266
Miao Xie27cdeb72014-04-02 19:51:05 +08003267 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003268 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003269
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003270 if (inc)
3271 process_func = btrfs_inc_extent_ref;
3272 else
3273 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003274
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003275 if (full_backref)
3276 parent = buf->start;
3277 else
3278 parent = 0;
3279
Zheng Yan31840ae2008-09-23 13:14:14 -04003280 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003281 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003282 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003283 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003284 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003285 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003286 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003287 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003288 BTRFS_FILE_EXTENT_INLINE)
3289 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003290 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3291 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003292 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003293
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003294 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3295 key.offset -= btrfs_file_extent_offset(buf, fi);
Josef Bacik84f7d8e2017-09-29 15:43:49 -04003296 ret = process_func(trans, root, bytenr, num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003297 parent, ref_root, key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003298 key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003299 if (ret)
3300 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003301 } else {
3302 bytenr = btrfs_node_blockptr(buf, i);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003303 num_bytes = fs_info->nodesize;
Josef Bacik84f7d8e2017-09-29 15:43:49 -04003304 ret = process_func(trans, root, bytenr, num_bytes,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003305 parent, ref_root, level - 1, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003306 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003307 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003308 }
3309 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003310 return 0;
3311fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003312 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003313}
3314
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003315int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003316 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003317{
Josef Bacike339a6b2014-07-02 10:54:25 -07003318 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003319}
Zheng Yan31840ae2008-09-23 13:14:14 -04003320
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003321int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003322 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003323{
Josef Bacike339a6b2014-07-02 10:54:25 -07003324 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003325}
3326
Chris Mason9078a3e2007-04-26 16:46:15 -04003327static int write_one_cache_group(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003328 struct btrfs_fs_info *fs_info,
Chris Mason9078a3e2007-04-26 16:46:15 -04003329 struct btrfs_path *path,
3330 struct btrfs_block_group_cache *cache)
3331{
3332 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003333 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003334 unsigned long bi;
3335 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003336
Chris Mason9078a3e2007-04-26 16:46:15 -04003337 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003338 if (ret) {
3339 if (ret > 0)
3340 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003341 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003342 }
Chris Mason5f39d392007-10-15 16:14:19 -04003343
3344 leaf = path->nodes[0];
3345 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3346 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3347 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003348fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003349 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003350 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003351
3352}
3353
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003354static struct btrfs_block_group_cache *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003355next_block_group(struct btrfs_fs_info *fs_info,
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003356 struct btrfs_block_group_cache *cache)
3357{
3358 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003359
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003360 spin_lock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003361
3362 /* If our block group was removed, we need a full search. */
3363 if (RB_EMPTY_NODE(&cache->cache_node)) {
3364 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3365
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003366 spin_unlock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003367 btrfs_put_block_group(cache);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003368 cache = btrfs_lookup_first_block_group(fs_info, next_bytenr); return cache;
Filipe Manana292cbd52014-11-26 15:28:50 +00003369 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003370 node = rb_next(&cache->cache_node);
3371 btrfs_put_block_group(cache);
3372 if (node) {
3373 cache = rb_entry(node, struct btrfs_block_group_cache,
3374 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003375 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003376 } else
3377 cache = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003378 spin_unlock(&fs_info->block_group_cache_lock);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003379 return cache;
3380}
3381
Josef Bacik0af3d002010-06-21 14:48:16 -04003382static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3383 struct btrfs_trans_handle *trans,
3384 struct btrfs_path *path)
3385{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003386 struct btrfs_fs_info *fs_info = block_group->fs_info;
3387 struct btrfs_root *root = fs_info->tree_root;
Josef Bacik0af3d002010-06-21 14:48:16 -04003388 struct inode *inode = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003389 struct extent_changeset *data_reserved = NULL;
Josef Bacik0af3d002010-06-21 14:48:16 -04003390 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003391 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003392 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003393 int retries = 0;
3394 int ret = 0;
3395
3396 /*
3397 * If this block group is smaller than 100 megs don't bother caching the
3398 * block group.
3399 */
Byongho Leeee221842015-12-15 01:42:10 +09003400 if (block_group->key.offset < (100 * SZ_1M)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003401 spin_lock(&block_group->lock);
3402 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3403 spin_unlock(&block_group->lock);
3404 return 0;
3405 }
3406
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003407 if (trans->aborted)
3408 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003409again:
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003410 inode = lookup_free_space_inode(fs_info, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003411 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3412 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003413 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003414 goto out;
3415 }
3416
3417 if (IS_ERR(inode)) {
3418 BUG_ON(retries);
3419 retries++;
3420
3421 if (block_group->ro)
3422 goto out_free;
3423
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003424 ret = create_free_space_inode(fs_info, trans, block_group,
3425 path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003426 if (ret)
3427 goto out_free;
3428 goto again;
3429 }
3430
3431 /*
3432 * We want to set the generation to 0, that way if anything goes wrong
3433 * from here on out we know not to trust this cache when we load up next
3434 * time.
3435 */
3436 BTRFS_I(inode)->generation = 0;
3437 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003438 if (ret) {
3439 /*
3440 * So theoretically we could recover from this, simply set the
3441 * super cache generation to 0 so we know to invalidate the
3442 * cache, but then we'd have to keep track of the block groups
3443 * that fail this way so we know we _have_ to reset this cache
3444 * before the next commit or risk reading stale cache. So to
3445 * limit our exposure to horrible edge cases lets just abort the
3446 * transaction, this only happens in really bad situations
3447 * anyway.
3448 */
Jeff Mahoney66642832016-06-10 18:19:25 -04003449 btrfs_abort_transaction(trans, ret);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003450 goto out_put;
3451 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003452 WARN_ON(ret);
3453
Josef Bacik8e138e02017-11-17 14:50:46 -05003454 /* We've already setup this transaction, go ahead and exit */
3455 if (block_group->cache_generation == trans->transid &&
3456 i_size_read(inode)) {
3457 dcs = BTRFS_DC_SETUP;
3458 goto out_put;
3459 }
3460
Josef Bacik0af3d002010-06-21 14:48:16 -04003461 if (i_size_read(inode) > 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003462 ret = btrfs_check_trunc_cache_free_space(fs_info,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003463 &fs_info->global_block_rsv);
Miao Xie7b61cd92013-05-13 13:55:09 +00003464 if (ret)
3465 goto out_put;
3466
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003467 ret = btrfs_truncate_free_space_cache(trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003468 if (ret)
3469 goto out_put;
3470 }
3471
3472 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003473 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003474 !btrfs_test_opt(fs_info, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003475 /*
3476 * don't bother trying to write stuff out _if_
3477 * a) we're not cached,
Liu Bo1a79c1f2017-03-06 13:49:02 -08003478 * b) we're with nospace_cache mount option,
3479 * c) we're with v2 space_cache (FREE_SPACE_TREE).
Liu Bocf7c1ef2012-07-06 03:31:34 -06003480 */
Josef Bacik2b209822010-12-03 13:17:53 -05003481 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003482 spin_unlock(&block_group->lock);
3483 goto out_put;
3484 }
3485 spin_unlock(&block_group->lock);
3486
Josef Bacik6fc823b2012-08-06 13:46:38 -06003487 /*
Josef Bacik2968b1f2015-10-01 12:55:18 -04003488 * We hit an ENOSPC when setting up the cache in this transaction, just
3489 * skip doing the setup, we've already cleared the cache so we're safe.
3490 */
3491 if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
3492 ret = -ENOSPC;
3493 goto out_put;
3494 }
3495
3496 /*
Josef Bacik6fc823b2012-08-06 13:46:38 -06003497 * Try to preallocate enough space based on how big the block group is.
3498 * Keep in mind this has to include any pinned space which could end up
3499 * taking up quite a bit since it's not folded into the other space
3500 * cache.
3501 */
Byongho Leeee221842015-12-15 01:42:10 +09003502 num_pages = div_u64(block_group->key.offset, SZ_256M);
Josef Bacik0af3d002010-06-21 14:48:16 -04003503 if (!num_pages)
3504 num_pages = 1;
3505
Josef Bacik0af3d002010-06-21 14:48:16 -04003506 num_pages *= 16;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003507 num_pages *= PAGE_SIZE;
Josef Bacik0af3d002010-06-21 14:48:16 -04003508
Qu Wenruo364ecf32017-02-27 15:10:38 +08003509 ret = btrfs_check_data_free_space(inode, &data_reserved, 0, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003510 if (ret)
3511 goto out_put;
3512
3513 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3514 num_pages, num_pages,
3515 &alloc_hint);
Josef Bacik2968b1f2015-10-01 12:55:18 -04003516 /*
3517 * Our cache requires contiguous chunks so that we don't modify a bunch
3518 * of metadata or split extents when writing the cache out, which means
3519 * we can enospc if we are heavily fragmented in addition to just normal
3520 * out of space conditions. So if we hit this just skip setting up any
3521 * other block groups for this transaction, maybe we'll unpin enough
3522 * space the next time around.
3523 */
Josef Bacik2b209822010-12-03 13:17:53 -05003524 if (!ret)
3525 dcs = BTRFS_DC_SETUP;
Josef Bacik2968b1f2015-10-01 12:55:18 -04003526 else if (ret == -ENOSPC)
3527 set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
Josef Bacikc09544e2011-08-30 10:19:10 -04003528
Josef Bacik0af3d002010-06-21 14:48:16 -04003529out_put:
3530 iput(inode);
3531out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003532 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003533out:
3534 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003535 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003536 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003537 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003538 spin_unlock(&block_group->lock);
3539
Qu Wenruo364ecf32017-02-27 15:10:38 +08003540 extent_changeset_free(data_reserved);
Josef Bacik0af3d002010-06-21 14:48:16 -04003541 return ret;
3542}
3543
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003544int btrfs_setup_space_cache(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003545 struct btrfs_fs_info *fs_info)
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003546{
3547 struct btrfs_block_group_cache *cache, *tmp;
3548 struct btrfs_transaction *cur_trans = trans->transaction;
3549 struct btrfs_path *path;
3550
3551 if (list_empty(&cur_trans->dirty_bgs) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003552 !btrfs_test_opt(fs_info, SPACE_CACHE))
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003553 return 0;
3554
3555 path = btrfs_alloc_path();
3556 if (!path)
3557 return -ENOMEM;
3558
3559 /* Could add new block groups, use _safe just in case */
3560 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3561 dirty_list) {
3562 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3563 cache_save_setup(cache, trans, path);
3564 }
3565
3566 btrfs_free_path(path);
3567 return 0;
3568}
3569
Chris Mason1bbc6212015-04-06 12:46:08 -07003570/*
3571 * transaction commit does final block group cache writeback during a
3572 * critical section where nothing is allowed to change the FS. This is
3573 * required in order for the cache to actually match the block group,
3574 * but can introduce a lot of latency into the commit.
3575 *
3576 * So, btrfs_start_dirty_block_groups is here to kick off block group
3577 * cache IO. There's a chance we'll have to redo some of it if the
3578 * block group changes again during the commit, but it greatly reduces
3579 * the commit latency by getting rid of the easy block groups while
3580 * we're still allowing others to join the commit.
3581 */
Nikolay Borisov21217052018-02-07 17:55:41 +02003582int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans)
Chris Mason1bbc6212015-04-06 12:46:08 -07003583{
Nikolay Borisov21217052018-02-07 17:55:41 +02003584 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason1bbc6212015-04-06 12:46:08 -07003585 struct btrfs_block_group_cache *cache;
3586 struct btrfs_transaction *cur_trans = trans->transaction;
3587 int ret = 0;
3588 int should_put;
3589 struct btrfs_path *path = NULL;
3590 LIST_HEAD(dirty);
3591 struct list_head *io = &cur_trans->io_bgs;
3592 int num_started = 0;
3593 int loops = 0;
3594
3595 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003596 if (list_empty(&cur_trans->dirty_bgs)) {
3597 spin_unlock(&cur_trans->dirty_bgs_lock);
3598 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003599 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003600 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003601 spin_unlock(&cur_trans->dirty_bgs_lock);
3602
3603again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003604 /*
3605 * make sure all the block groups on our dirty list actually
3606 * exist
3607 */
Nikolay Borisov6c686b32018-02-07 17:55:40 +02003608 btrfs_create_pending_block_groups(trans);
Chris Mason1bbc6212015-04-06 12:46:08 -07003609
3610 if (!path) {
3611 path = btrfs_alloc_path();
3612 if (!path)
3613 return -ENOMEM;
3614 }
3615
Filipe Mananab58d1a92015-04-25 18:29:16 +01003616 /*
3617 * cache_write_mutex is here only to save us from balance or automatic
3618 * removal of empty block groups deleting this block group while we are
3619 * writing out the cache
3620 */
3621 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003622 while (!list_empty(&dirty)) {
Josef Bacikba2c4d42018-12-03 10:20:33 -05003623 bool drop_reserve = true;
3624
Chris Mason1bbc6212015-04-06 12:46:08 -07003625 cache = list_first_entry(&dirty,
3626 struct btrfs_block_group_cache,
3627 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003628 /*
3629 * this can happen if something re-dirties a block
3630 * group that is already under IO. Just wait for it to
3631 * finish and then do it all again
3632 */
3633 if (!list_empty(&cache->io_list)) {
3634 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003635 btrfs_wait_cache_io(trans, cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003636 btrfs_put_block_group(cache);
3637 }
3638
3639
3640 /*
3641 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3642 * if it should update the cache_state. Don't delete
3643 * until after we wait.
3644 *
3645 * Since we're not running in the commit critical section
3646 * we need the dirty_bgs_lock to protect from update_block_group
3647 */
3648 spin_lock(&cur_trans->dirty_bgs_lock);
3649 list_del_init(&cache->dirty_list);
3650 spin_unlock(&cur_trans->dirty_bgs_lock);
3651
3652 should_put = 1;
3653
3654 cache_save_setup(cache, trans, path);
3655
3656 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3657 cache->io_ctl.inode = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003658 ret = btrfs_write_out_cache(fs_info, trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003659 cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003660 if (ret == 0 && cache->io_ctl.inode) {
3661 num_started++;
3662 should_put = 0;
3663
3664 /*
Nikolay Borisov45ae2c12018-02-08 18:25:18 +02003665 * The cache_write_mutex is protecting the
3666 * io_list, also refer to the definition of
3667 * btrfs_transaction::io_bgs for more details
Chris Mason1bbc6212015-04-06 12:46:08 -07003668 */
3669 list_add_tail(&cache->io_list, io);
3670 } else {
3671 /*
3672 * if we failed to write the cache, the
3673 * generation will be bad and life goes on
3674 */
3675 ret = 0;
3676 }
3677 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003678 if (!ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003679 ret = write_one_cache_group(trans, fs_info,
3680 path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003681 /*
3682 * Our block group might still be attached to the list
3683 * of new block groups in the transaction handle of some
3684 * other task (struct btrfs_trans_handle->new_bgs). This
3685 * means its block group item isn't yet in the extent
3686 * tree. If this happens ignore the error, as we will
3687 * try again later in the critical section of the
3688 * transaction commit.
3689 */
3690 if (ret == -ENOENT) {
3691 ret = 0;
3692 spin_lock(&cur_trans->dirty_bgs_lock);
3693 if (list_empty(&cache->dirty_list)) {
3694 list_add_tail(&cache->dirty_list,
3695 &cur_trans->dirty_bgs);
3696 btrfs_get_block_group(cache);
Josef Bacikba2c4d42018-12-03 10:20:33 -05003697 drop_reserve = false;
Filipe Mananaff1f8252015-05-06 16:15:09 +01003698 }
3699 spin_unlock(&cur_trans->dirty_bgs_lock);
3700 } else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003701 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003702 }
3703 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003704
Andrea Gelmini52042d82018-11-28 12:05:13 +01003705 /* if it's not on the io list, we need to put the block group */
Chris Mason1bbc6212015-04-06 12:46:08 -07003706 if (should_put)
3707 btrfs_put_block_group(cache);
Josef Bacikba2c4d42018-12-03 10:20:33 -05003708 if (drop_reserve)
3709 btrfs_delayed_refs_rsv_release(fs_info, 1);
Chris Mason1bbc6212015-04-06 12:46:08 -07003710
3711 if (ret)
3712 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003713
3714 /*
3715 * Avoid blocking other tasks for too long. It might even save
3716 * us from writing caches for block groups that are going to be
3717 * removed.
3718 */
3719 mutex_unlock(&trans->transaction->cache_write_mutex);
3720 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003721 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003722 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003723
3724 /*
3725 * go through delayed refs for all the stuff we've just kicked off
3726 * and then loop back (just once)
3727 */
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02003728 ret = btrfs_run_delayed_refs(trans, 0);
Chris Mason1bbc6212015-04-06 12:46:08 -07003729 if (!ret && loops == 0) {
3730 loops++;
3731 spin_lock(&cur_trans->dirty_bgs_lock);
3732 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003733 /*
3734 * dirty_bgs_lock protects us from concurrent block group
3735 * deletes too (not just cache_write_mutex).
3736 */
3737 if (!list_empty(&dirty)) {
3738 spin_unlock(&cur_trans->dirty_bgs_lock);
3739 goto again;
3740 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003741 spin_unlock(&cur_trans->dirty_bgs_lock);
Liu Boc79a1752016-07-20 17:44:12 -07003742 } else if (ret < 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003743 btrfs_cleanup_dirty_bgs(cur_trans, fs_info);
Chris Mason1bbc6212015-04-06 12:46:08 -07003744 }
3745
3746 btrfs_free_path(path);
3747 return ret;
3748}
3749
Chris Mason96b51792007-10-15 16:15:19 -04003750int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003751 struct btrfs_fs_info *fs_info)
Chris Mason9078a3e2007-04-26 16:46:15 -04003752{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003753 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003754 struct btrfs_transaction *cur_trans = trans->transaction;
3755 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003756 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003757 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003758 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003759 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003760
3761 path = btrfs_alloc_path();
3762 if (!path)
3763 return -ENOMEM;
3764
Josef Bacikce93ec52014-11-17 15:45:48 -05003765 /*
Filipe Mananae44081e2015-12-18 03:02:48 +00003766 * Even though we are in the critical section of the transaction commit,
3767 * we can still have concurrent tasks adding elements to this
3768 * transaction's list of dirty block groups. These tasks correspond to
3769 * endio free space workers started when writeback finishes for a
3770 * space cache, which run inode.c:btrfs_finish_ordered_io(), and can
3771 * allocate new block groups as a result of COWing nodes of the root
3772 * tree when updating the free space inode. The writeback for the space
3773 * caches is triggered by an earlier call to
3774 * btrfs_start_dirty_block_groups() and iterations of the following
3775 * loop.
3776 * Also we want to do the cache_save_setup first and then run the
Josef Bacikce93ec52014-11-17 15:45:48 -05003777 * delayed refs to make sure we have the best chance at doing this all
3778 * in one shot.
3779 */
Filipe Mananae44081e2015-12-18 03:02:48 +00003780 spin_lock(&cur_trans->dirty_bgs_lock);
Josef Bacikce93ec52014-11-17 15:45:48 -05003781 while (!list_empty(&cur_trans->dirty_bgs)) {
3782 cache = list_first_entry(&cur_trans->dirty_bgs,
3783 struct btrfs_block_group_cache,
3784 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003785
3786 /*
3787 * this can happen if cache_save_setup re-dirties a block
3788 * group that is already under IO. Just wait for it to
3789 * finish and then do it all again
3790 */
3791 if (!list_empty(&cache->io_list)) {
Filipe Mananae44081e2015-12-18 03:02:48 +00003792 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003793 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003794 btrfs_wait_cache_io(trans, cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003795 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003796 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003797 }
3798
Chris Mason1bbc6212015-04-06 12:46:08 -07003799 /*
3800 * don't remove from the dirty list until after we've waited
3801 * on any pending IO
3802 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003803 list_del_init(&cache->dirty_list);
Filipe Mananae44081e2015-12-18 03:02:48 +00003804 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003805 should_put = 1;
3806
Chris Mason1bbc6212015-04-06 12:46:08 -07003807 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003808
Josef Bacikce93ec52014-11-17 15:45:48 -05003809 if (!ret)
Nikolay Borisovc79a70b2018-03-15 17:27:37 +02003810 ret = btrfs_run_delayed_refs(trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003811 (unsigned long) -1);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003812
3813 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3814 cache->io_ctl.inode = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003815 ret = btrfs_write_out_cache(fs_info, trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003816 cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003817 if (ret == 0 && cache->io_ctl.inode) {
3818 num_started++;
3819 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003820 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003821 } else {
3822 /*
3823 * if we failed to write the cache, the
3824 * generation will be bad and life goes on
3825 */
3826 ret = 0;
3827 }
3828 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003829 if (!ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003830 ret = write_one_cache_group(trans, fs_info,
3831 path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003832 /*
3833 * One of the free space endio workers might have
3834 * created a new block group while updating a free space
3835 * cache's inode (at inode.c:btrfs_finish_ordered_io())
3836 * and hasn't released its transaction handle yet, in
3837 * which case the new block group is still attached to
3838 * its transaction handle and its creation has not
3839 * finished yet (no block group item in the extent tree
3840 * yet, etc). If this is the case, wait for all free
3841 * space endio workers to finish and retry. This is a
3842 * a very rare case so no need for a more efficient and
3843 * complex approach.
3844 */
3845 if (ret == -ENOENT) {
3846 wait_event(cur_trans->writer_wait,
3847 atomic_read(&cur_trans->num_writers) == 1);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003848 ret = write_one_cache_group(trans, fs_info,
3849 path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003850 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003851 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003852 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003853 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003854
3855 /* if its not on the io list, we need to put the block group */
3856 if (should_put)
3857 btrfs_put_block_group(cache);
Josef Bacikba2c4d42018-12-03 10:20:33 -05003858 btrfs_delayed_refs_rsv_release(fs_info, 1);
Filipe Mananae44081e2015-12-18 03:02:48 +00003859 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003860 }
Filipe Mananae44081e2015-12-18 03:02:48 +00003861 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003862
Nikolay Borisov45ae2c12018-02-08 18:25:18 +02003863 /*
3864 * Refer to the definition of io_bgs member for details why it's safe
3865 * to use it without any locking
3866 */
Chris Mason1bbc6212015-04-06 12:46:08 -07003867 while (!list_empty(io)) {
3868 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003869 io_list);
3870 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003871 btrfs_wait_cache_io(trans, cache, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003872 btrfs_put_block_group(cache);
3873 }
3874
Chris Mason9078a3e2007-04-26 16:46:15 -04003875 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003876 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003877}
3878
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003879int btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr)
Yan Zhengd2fb3432008-12-11 16:30:39 -05003880{
3881 struct btrfs_block_group_cache *block_group;
3882 int readonly = 0;
3883
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003884 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003885 if (!block_group || block_group->ro)
3886 readonly = 1;
3887 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003888 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003889 return readonly;
3890}
3891
Filipe Mananaf78c4362016-05-09 13:15:41 +01003892bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3893{
3894 struct btrfs_block_group_cache *bg;
3895 bool ret = true;
3896
3897 bg = btrfs_lookup_block_group(fs_info, bytenr);
3898 if (!bg)
3899 return false;
3900
3901 spin_lock(&bg->lock);
3902 if (bg->ro)
3903 ret = false;
3904 else
3905 atomic_inc(&bg->nocow_writers);
3906 spin_unlock(&bg->lock);
3907
3908 /* no put on block group, done by btrfs_dec_nocow_writers */
3909 if (!ret)
3910 btrfs_put_block_group(bg);
3911
3912 return ret;
3913
3914}
3915
3916void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3917{
3918 struct btrfs_block_group_cache *bg;
3919
3920 bg = btrfs_lookup_block_group(fs_info, bytenr);
3921 ASSERT(bg);
3922 if (atomic_dec_and_test(&bg->nocow_writers))
Peter Zijlstra46259562018-03-15 11:43:08 +01003923 wake_up_var(&bg->nocow_writers);
Filipe Mananaf78c4362016-05-09 13:15:41 +01003924 /*
3925 * Once for our lookup and once for the lookup done by a previous call
3926 * to btrfs_inc_nocow_writers()
3927 */
3928 btrfs_put_block_group(bg);
3929 btrfs_put_block_group(bg);
3930}
3931
Filipe Mananaf78c4362016-05-09 13:15:41 +01003932void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg)
3933{
Peter Zijlstra46259562018-03-15 11:43:08 +01003934 wait_var_event(&bg->nocow_writers, !atomic_read(&bg->nocow_writers));
Filipe Mananaf78c4362016-05-09 13:15:41 +01003935}
3936
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003937static const char *alloc_name(u64 flags)
3938{
3939 switch (flags) {
3940 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3941 return "mixed";
3942 case BTRFS_BLOCK_GROUP_METADATA:
3943 return "metadata";
3944 case BTRFS_BLOCK_GROUP_DATA:
3945 return "data";
3946 case BTRFS_BLOCK_GROUP_SYSTEM:
3947 return "system";
3948 default:
3949 WARN_ON(1);
3950 return "invalid-combination";
3951 };
3952}
3953
Lu Fengqi4ca61682018-05-28 14:30:27 +08003954static int create_space_info(struct btrfs_fs_info *info, u64 flags)
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03003955{
3956
3957 struct btrfs_space_info *space_info;
3958 int i;
3959 int ret;
3960
3961 space_info = kzalloc(sizeof(*space_info), GFP_NOFS);
3962 if (!space_info)
3963 return -ENOMEM;
3964
3965 ret = percpu_counter_init(&space_info->total_bytes_pinned, 0,
3966 GFP_KERNEL);
3967 if (ret) {
3968 kfree(space_info);
3969 return ret;
3970 }
3971
3972 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
3973 INIT_LIST_HEAD(&space_info->block_groups[i]);
3974 init_rwsem(&space_info->groups_sem);
3975 spin_lock_init(&space_info->lock);
3976 space_info->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
3977 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
3978 init_waitqueue_head(&space_info->wait);
3979 INIT_LIST_HEAD(&space_info->ro_bgs);
3980 INIT_LIST_HEAD(&space_info->tickets);
3981 INIT_LIST_HEAD(&space_info->priority_tickets);
3982
3983 ret = kobject_init_and_add(&space_info->kobj, &space_info_ktype,
3984 info->space_info_kobj, "%s",
3985 alloc_name(space_info->flags));
3986 if (ret) {
3987 percpu_counter_destroy(&space_info->total_bytes_pinned);
3988 kfree(space_info);
3989 return ret;
3990 }
3991
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03003992 list_add_rcu(&space_info->list, &info->space_info);
3993 if (flags & BTRFS_BLOCK_GROUP_DATA)
3994 info->data_sinfo = space_info;
3995
3996 return ret;
3997}
3998
Nikolay Borisovd2006e62017-05-22 09:35:50 +03003999static void update_space_info(struct btrfs_fs_info *info, u64 flags,
Chris Mason593060d2008-03-25 16:50:33 -04004000 u64 total_bytes, u64 bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -04004001 u64 bytes_readonly,
Chris Mason593060d2008-03-25 16:50:33 -04004002 struct btrfs_space_info **space_info)
4003{
4004 struct btrfs_space_info *found;
Yan, Zhengb742bb822010-05-16 10:46:24 -04004005 int factor;
4006
David Sterba46df06b2018-07-13 20:46:30 +02004007 factor = btrfs_bg_type_to_factor(flags);
Chris Mason593060d2008-03-25 16:50:33 -04004008
4009 found = __find_space_info(info, flags);
Nikolay Borisovd2006e62017-05-22 09:35:50 +03004010 ASSERT(found);
4011 spin_lock(&found->lock);
4012 found->total_bytes += total_bytes;
4013 found->disk_total += total_bytes * factor;
4014 found->bytes_used += bytes_used;
4015 found->disk_used += bytes_used * factor;
4016 found->bytes_readonly += bytes_readonly;
4017 if (total_bytes > 0)
4018 found->full = 0;
4019 space_info_add_new_bytes(info, found, total_bytes -
4020 bytes_used - bytes_readonly);
4021 spin_unlock(&found->lock);
4022 *space_info = found;
Chris Mason593060d2008-03-25 16:50:33 -04004023}
4024
Chris Mason8790d502008-04-03 16:29:03 -04004025static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
4026{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03004027 u64 extra_flags = chunk_to_extended(flags) &
4028 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004029
Miao Xiede98ced2013-01-29 10:13:12 +00004030 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004031 if (flags & BTRFS_BLOCK_GROUP_DATA)
4032 fs_info->avail_data_alloc_bits |= extra_flags;
4033 if (flags & BTRFS_BLOCK_GROUP_METADATA)
4034 fs_info->avail_metadata_alloc_bits |= extra_flags;
4035 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
4036 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004037 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04004038}
Chris Mason593060d2008-03-25 16:50:33 -04004039
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004040/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004041 * returns target flags in extended format or 0 if restripe for this
4042 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04004043 *
David Sterbadccdb072018-03-21 00:20:05 +01004044 * should be called with balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004045 */
4046static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
4047{
4048 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4049 u64 target = 0;
4050
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004051 if (!bctl)
4052 return 0;
4053
4054 if (flags & BTRFS_BLOCK_GROUP_DATA &&
4055 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4056 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
4057 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
4058 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4059 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
4060 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
4061 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4062 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
4063 }
4064
4065 return target;
4066}
4067
4068/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004069 * @flags: available profiles in extended format (see ctree.h)
4070 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004071 * Returns reduced profile in chunk format. If profile changing is in
4072 * progress (either running or paused) picks the target profile (if it's
4073 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004074 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004075static u64 btrfs_reduce_alloc_profile(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04004076{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004077 u64 num_devices = fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004078 u64 target;
Zhao Lei9c170b22015-09-15 21:08:08 +08004079 u64 raid_type;
4080 u64 allowed = 0;
Chris Masona061fc82008-05-07 11:43:44 -04004081
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004082 /*
4083 * see if restripe for this chunk_type is in progress, if so
4084 * try to reduce to the target profile
4085 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004086 spin_lock(&fs_info->balance_lock);
4087 target = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004088 if (target) {
4089 /* pick target profile only if it's already available */
4090 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004091 spin_unlock(&fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004092 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004093 }
4094 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004095 spin_unlock(&fs_info->balance_lock);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004096
David Woodhouse53b381b2013-01-29 18:40:14 -05004097 /* First, mask out the RAID levels which aren't possible */
Zhao Lei9c170b22015-09-15 21:08:08 +08004098 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
4099 if (num_devices >= btrfs_raid_array[raid_type].devs_min)
Anand Jain41a6e892018-04-25 19:01:43 +08004100 allowed |= btrfs_raid_array[raid_type].bg_flag;
Zhao Lei9c170b22015-09-15 21:08:08 +08004101 }
4102 allowed &= flags;
Chris Masona061fc82008-05-07 11:43:44 -04004103
Zhao Lei9c170b22015-09-15 21:08:08 +08004104 if (allowed & BTRFS_BLOCK_GROUP_RAID6)
4105 allowed = BTRFS_BLOCK_GROUP_RAID6;
4106 else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
4107 allowed = BTRFS_BLOCK_GROUP_RAID5;
4108 else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
4109 allowed = BTRFS_BLOCK_GROUP_RAID10;
4110 else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
4111 allowed = BTRFS_BLOCK_GROUP_RAID1;
4112 else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
4113 allowed = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04004114
Zhao Lei9c170b22015-09-15 21:08:08 +08004115 flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
Chris Masonec44a352008-04-28 15:29:52 -04004116
Zhao Lei9c170b22015-09-15 21:08:08 +08004117 return extended_to_chunk(flags | allowed);
Chris Masonec44a352008-04-28 15:29:52 -04004118}
4119
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004120static u64 get_alloc_profile(struct btrfs_fs_info *fs_info, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05004121{
Miao Xiede98ced2013-01-29 10:13:12 +00004122 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004123 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004124
4125 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004126 flags = orig_flags;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004127 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00004128
4129 if (flags & BTRFS_BLOCK_GROUP_DATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004130 flags |= fs_info->avail_data_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004131 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004132 flags |= fs_info->avail_system_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004133 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004134 flags |= fs_info->avail_metadata_alloc_bits;
4135 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02004136
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004137 return btrfs_reduce_alloc_profile(fs_info, flags);
Yan, Zhengb742bb822010-05-16 10:46:24 -04004138}
Josef Bacik6a632092009-02-20 11:00:09 -05004139
Jeff Mahoney1b868262017-05-17 11:38:35 -04004140static u64 get_alloc_profile_by_root(struct btrfs_root *root, int data)
Yan, Zhengb742bb822010-05-16 10:46:24 -04004141{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004142 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengb742bb822010-05-16 10:46:24 -04004143 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05004144 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004145
Yan, Zhengb742bb822010-05-16 10:46:24 -04004146 if (data)
4147 flags = BTRFS_BLOCK_GROUP_DATA;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004148 else if (root == fs_info->chunk_root)
Yan, Zhengb742bb822010-05-16 10:46:24 -04004149 flags = BTRFS_BLOCK_GROUP_SYSTEM;
4150 else
4151 flags = BTRFS_BLOCK_GROUP_METADATA;
4152
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004153 ret = get_alloc_profile(fs_info, flags);
David Woodhouse53b381b2013-01-29 18:40:14 -05004154 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004155}
4156
Jeff Mahoney1b868262017-05-17 11:38:35 -04004157u64 btrfs_data_alloc_profile(struct btrfs_fs_info *fs_info)
4158{
4159 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_DATA);
4160}
4161
4162u64 btrfs_metadata_alloc_profile(struct btrfs_fs_info *fs_info)
4163{
4164 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4165}
4166
4167u64 btrfs_system_alloc_profile(struct btrfs_fs_info *fs_info)
4168{
4169 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4170}
4171
Liu Bo41361352017-02-13 15:42:21 -08004172static u64 btrfs_space_info_used(struct btrfs_space_info *s_info,
4173 bool may_use_included)
4174{
4175 ASSERT(s_info);
4176 return s_info->bytes_used + s_info->bytes_reserved +
4177 s_info->bytes_pinned + s_info->bytes_readonly +
4178 (may_use_included ? s_info->bytes_may_use : 0);
4179}
4180
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004181int btrfs_alloc_data_chunk_ondemand(struct btrfs_inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05004182{
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004183 struct btrfs_root *root = inode->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004184 struct btrfs_fs_info *fs_info = root->fs_info;
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004185 struct btrfs_space_info *data_sinfo = fs_info->data_sinfo;
Josef Bacikab6e24102010-03-19 14:38:13 +00004186 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08004187 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08004188 int need_commit = 2;
4189 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05004190
4191 /* make sure bytes are sectorsize aligned */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004192 bytes = ALIGN(bytes, fs_info->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05004193
Miao Xie9dced182013-10-25 17:33:36 +08004194 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004195 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08004196 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04004197 }
4198
Josef Bacik6a632092009-02-20 11:00:09 -05004199again:
4200 /* make sure we have enough space to handle the data first */
4201 spin_lock(&data_sinfo->lock);
Liu Bo41361352017-02-13 15:42:21 -08004202 used = btrfs_space_info_used(data_sinfo, true);
Josef Bacikab6e24102010-03-19 14:38:13 +00004203
4204 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004205 struct btrfs_trans_handle *trans;
4206
Josef Bacik6a632092009-02-20 11:00:09 -05004207 /*
4208 * if we don't have enough free bytes in this space then we need
4209 * to alloc a new chunk.
4210 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08004211 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05004212 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05004213
Chris Mason0e4f8f82011-04-15 16:05:44 -04004214 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05004215 spin_unlock(&data_sinfo->lock);
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004216
Jeff Mahoney1b868262017-05-17 11:38:35 -04004217 alloc_target = btrfs_data_alloc_profile(fs_info);
Miao Xie9dced182013-10-25 17:33:36 +08004218 /*
4219 * It is ugly that we don't call nolock join
4220 * transaction for the free space inode case here.
4221 * But it is safe because we only do the data space
4222 * reservation for the free space cache in the
4223 * transaction context, the common join transaction
4224 * just increase the counter of the current transaction
4225 * handler, doesn't try to acquire the trans_lock of
4226 * the fs.
4227 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004228 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004229 if (IS_ERR(trans))
4230 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05004231
Nikolay Borisov01458822018-06-20 15:49:05 +03004232 ret = do_chunk_alloc(trans, alloc_target,
Chris Mason0e4f8f82011-04-15 16:05:44 -04004233 CHUNK_ALLOC_NO_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004234 btrfs_end_transaction(trans);
Miao Xied52a5b52011-01-05 10:07:18 +00004235 if (ret < 0) {
4236 if (ret != -ENOSPC)
4237 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08004238 else {
4239 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00004240 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08004241 }
Miao Xied52a5b52011-01-05 10:07:18 +00004242 }
Chris Mason33b4d472009-09-22 14:45:50 -04004243
Josef Bacik6a632092009-02-20 11:00:09 -05004244 goto again;
4245 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004246
4247 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04004248 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08004249 * allocation, and no removed chunk in current transaction,
4250 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004251 */
Ethan Liendec59fa2018-07-13 16:50:42 +08004252 have_pinned_space = __percpu_counter_compare(
Zhao Leic99f1b02015-03-02 19:32:20 +08004253 &data_sinfo->total_bytes_pinned,
Ethan Liendec59fa2018-07-13 16:50:42 +08004254 used + bytes - data_sinfo->total_bytes,
4255 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Josef Bacik6a632092009-02-20 11:00:09 -05004256 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004257
4258 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00004259commit_trans:
Nikolay Borisov92e2f7e2018-02-05 10:41:16 +02004260 if (need_commit) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004261 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04004262
Zhao Leie1746e82015-12-01 18:39:40 +08004263 if (need_commit > 0) {
Nikolay Borisov82b3e532018-04-23 10:54:13 +03004264 btrfs_start_delalloc_roots(fs_info, -1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004265 btrfs_wait_ordered_roots(fs_info, U64_MAX, 0,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004266 (u64)-1);
Zhao Leie1746e82015-12-01 18:39:40 +08004267 }
Zhao Lei9a4e7272015-04-09 12:34:43 +08004268
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004269 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004270 if (IS_ERR(trans))
4271 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08004272 if (have_pinned_space >= 0 ||
Josef Bacik3204d332015-09-24 10:46:10 -04004273 test_bit(BTRFS_TRANS_HAVE_FREE_BGS,
4274 &trans->transaction->flags) ||
Zhao Leic99f1b02015-03-02 19:32:20 +08004275 need_commit > 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004276 ret = btrfs_commit_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004277 if (ret)
4278 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08004279 /*
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004280 * The cleaner kthread might still be doing iput
4281 * operations. Wait for it to finish so that
4282 * more space is released.
Zhao Leid7c15172015-02-26 10:49:20 +08004283 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004284 mutex_lock(&fs_info->cleaner_delayed_iput_mutex);
4285 mutex_unlock(&fs_info->cleaner_delayed_iput_mutex);
Zhao Lei94b947b2015-02-14 13:23:45 +08004286 goto again;
4287 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004288 btrfs_end_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004289 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004290 }
4291
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004292 trace_btrfs_space_reservation(fs_info,
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004293 "space_info:enospc",
4294 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004295 return -ENOSPC;
4296 }
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08004297 update_bytes_may_use(data_sinfo, bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004298 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004299 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004300 spin_unlock(&data_sinfo->lock);
4301
Josef Bacik4559b0a2018-07-19 10:49:51 -04004302 return 0;
Josef Bacik6a632092009-02-20 11:00:09 -05004303}
4304
Qu Wenruo364ecf32017-02-27 15:10:38 +08004305int btrfs_check_data_free_space(struct inode *inode,
4306 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004307{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004308 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004309 int ret;
4310
4311 /* align the range */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004312 len = round_up(start + len, fs_info->sectorsize) -
4313 round_down(start, fs_info->sectorsize);
4314 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004315
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004316 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode), len);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004317 if (ret < 0)
4318 return ret;
4319
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004320 /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */
Qu Wenruo364ecf32017-02-27 15:10:38 +08004321 ret = btrfs_qgroup_reserve_data(inode, reserved, start, len);
Qu Wenruo7bc329c2017-02-27 15:10:36 +08004322 if (ret < 0)
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004323 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruo364ecf32017-02-27 15:10:38 +08004324 else
4325 ret = 0;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004326 return ret;
4327}
4328
4329/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004330 * Called if we need to clear a data reservation for this inode
4331 * Normally in a error case.
4332 *
Qu Wenruo51773be2015-10-08 18:19:37 +08004333 * This one will *NOT* use accurate qgroup reserved space API, just for case
4334 * which we can't sleep and is sure it won't affect qgroup reserved space.
4335 * Like clear_bit_hook().
Qu Wenruo4ceff072015-09-08 17:22:42 +08004336 */
Qu Wenruo51773be2015-10-08 18:19:37 +08004337void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start,
4338 u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004339{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004340 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004341 struct btrfs_space_info *data_sinfo;
4342
4343 /* Make sure the range is aligned to sectorsize */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004344 len = round_up(start + len, fs_info->sectorsize) -
4345 round_down(start, fs_info->sectorsize);
4346 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004347
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004348 data_sinfo = fs_info->data_sinfo;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004349 spin_lock(&data_sinfo->lock);
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08004350 update_bytes_may_use(data_sinfo, -len);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004351 trace_btrfs_space_reservation(fs_info, "space_info",
Qu Wenruo4ceff072015-09-08 17:22:42 +08004352 data_sinfo->flags, len, 0);
4353 spin_unlock(&data_sinfo->lock);
4354}
4355
Qu Wenruo51773be2015-10-08 18:19:37 +08004356/*
4357 * Called if we need to clear a data reservation for this inode
4358 * Normally in a error case.
4359 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04004360 * This one will handle the per-inode data rsv map for accurate reserved
Qu Wenruo51773be2015-10-08 18:19:37 +08004361 * space framework.
4362 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08004363void btrfs_free_reserved_data_space(struct inode *inode,
4364 struct extent_changeset *reserved, u64 start, u64 len)
Qu Wenruo51773be2015-10-08 18:19:37 +08004365{
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004366 struct btrfs_root *root = BTRFS_I(inode)->root;
4367
4368 /* Make sure the range is aligned to sectorsize */
Jeff Mahoneyda170662016-06-15 09:22:56 -04004369 len = round_up(start + len, root->fs_info->sectorsize) -
4370 round_down(start, root->fs_info->sectorsize);
4371 start = round_down(start, root->fs_info->sectorsize);
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004372
Qu Wenruo51773be2015-10-08 18:19:37 +08004373 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruobc42bda2017-02-27 15:10:39 +08004374 btrfs_qgroup_free_data(inode, reserved, start, len);
Qu Wenruo51773be2015-10-08 18:19:37 +08004375}
4376
Josef Bacik97e728d2009-04-21 17:40:57 -04004377static void force_metadata_allocation(struct btrfs_fs_info *info)
4378{
4379 struct list_head *head = &info->space_info;
4380 struct btrfs_space_info *found;
4381
4382 rcu_read_lock();
4383 list_for_each_entry_rcu(found, head, list) {
4384 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004385 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04004386 }
4387 rcu_read_unlock();
4388}
4389
Miao Xie3c76cd82013-04-25 10:12:38 +00004390static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4391{
4392 return (global->size << 1);
4393}
4394
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004395static int should_alloc_chunk(struct btrfs_fs_info *fs_info,
Josef Bacik698d0082012-09-12 14:08:47 -04004396 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004397{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004398 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004399 u64 bytes_used = btrfs_space_info_used(sinfo, false);
Chris Masone5bc2452010-10-26 13:37:56 -04004400 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004401
Chris Mason0e4f8f82011-04-15 16:05:44 -04004402 if (force == CHUNK_ALLOC_FORCE)
4403 return 1;
4404
4405 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04004406 * We need to take into account the global rsv because for all intents
4407 * and purposes it's used space. Don't worry about locking the
4408 * global_rsv, it doesn't change except when the transaction commits.
4409 */
Josef Bacik54338b52012-08-14 16:20:52 -04004410 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004411 bytes_used += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04004412
4413 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04004414 * in limited mode, we want to have some free space up to
4415 * about 1% of the FS size.
4416 */
4417 if (force == CHUNK_ALLOC_LIMITED) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004418 thresh = btrfs_super_total_bytes(fs_info->super_copy);
Byongho Leeee221842015-12-15 01:42:10 +09004419 thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
Chris Mason0e4f8f82011-04-15 16:05:44 -04004420
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004421 if (sinfo->total_bytes - bytes_used < thresh)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004422 return 1;
4423 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004424
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004425 if (bytes_used + SZ_2M < div_factor(sinfo->total_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004426 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004427 return 1;
4428}
4429
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004430static u64 get_profile_num_devs(struct btrfs_fs_info *fs_info, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004431{
4432 u64 num_dev;
4433
David Woodhouse53b381b2013-01-29 18:40:14 -05004434 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
4435 BTRFS_BLOCK_GROUP_RAID0 |
4436 BTRFS_BLOCK_GROUP_RAID5 |
4437 BTRFS_BLOCK_GROUP_RAID6))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004438 num_dev = fs_info->fs_devices->rw_devices;
Liu Bo15d1ff82012-03-29 09:57:44 -04004439 else if (type & BTRFS_BLOCK_GROUP_RAID1)
4440 num_dev = 2;
4441 else
4442 num_dev = 1; /* DUP or single */
4443
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004444 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004445}
4446
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004447/*
4448 * If @is_allocation is true, reserve space in the system space info necessary
4449 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4450 * removing a chunk.
4451 */
Nikolay Borisov451a2c12018-06-20 15:49:07 +03004452void check_system_chunk(struct btrfs_trans_handle *trans, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004453{
Nikolay Borisov451a2c12018-06-20 15:49:07 +03004454 struct btrfs_fs_info *fs_info = trans->fs_info;
Liu Bo15d1ff82012-03-29 09:57:44 -04004455 struct btrfs_space_info *info;
4456 u64 left;
4457 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004458 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004459 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004460
4461 /*
4462 * Needed because we can end up allocating a system chunk and for an
4463 * atomic and race free space reservation in the chunk block reserve.
4464 */
David Sterbaa32bf9a2018-03-16 02:21:22 +01004465 lockdep_assert_held(&fs_info->chunk_mutex);
Liu Bo15d1ff82012-03-29 09:57:44 -04004466
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004467 info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
Liu Bo15d1ff82012-03-29 09:57:44 -04004468 spin_lock(&info->lock);
Liu Bo41361352017-02-13 15:42:21 -08004469 left = info->total_bytes - btrfs_space_info_used(info, true);
Liu Bo15d1ff82012-03-29 09:57:44 -04004470 spin_unlock(&info->lock);
4471
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004472 num_devs = get_profile_num_devs(fs_info, type);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004473
4474 /* num_devs device items to update and 1 chunk item to add or remove */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004475 thresh = btrfs_calc_trunc_metadata_size(fs_info, num_devs) +
4476 btrfs_calc_trans_metadata_size(fs_info, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004477
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004478 if (left < thresh && btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
4479 btrfs_info(fs_info, "left=%llu, need=%llu, flags=%llu",
4480 left, thresh, type);
4481 dump_space_info(fs_info, info, 0, 0);
Liu Bo15d1ff82012-03-29 09:57:44 -04004482 }
4483
4484 if (left < thresh) {
Jeff Mahoney1b868262017-05-17 11:38:35 -04004485 u64 flags = btrfs_system_alloc_profile(fs_info);
Liu Bo15d1ff82012-03-29 09:57:44 -04004486
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004487 /*
4488 * Ignore failure to create system chunk. We might end up not
4489 * needing it, as we might not need to COW all nodes/leafs from
4490 * the paths we visit in the chunk tree (they were already COWed
4491 * or created in the current transaction for example).
4492 */
Nikolay Borisovc216b202018-06-20 15:49:06 +03004493 ret = btrfs_alloc_chunk(trans, flags);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004494 }
4495
4496 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004497 ret = btrfs_block_rsv_add(fs_info->chunk_root,
4498 &fs_info->chunk_block_rsv,
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004499 thresh, BTRFS_RESERVE_NO_FLUSH);
4500 if (!ret)
4501 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004502 }
4503}
4504
Liu Bo28b737f2016-07-29 11:09:50 -07004505/*
4506 * If force is CHUNK_ALLOC_FORCE:
4507 * - return 1 if it successfully allocates a chunk,
4508 * - return errors including -ENOSPC otherwise.
4509 * If force is NOT CHUNK_ALLOC_FORCE:
4510 * - return 0 if it doesn't need to allocate a new chunk,
4511 * - return 1 if it successfully allocates a chunk,
4512 * - return errors including -ENOSPC otherwise.
4513 */
Nikolay Borisov01458822018-06-20 15:49:05 +03004514static int do_chunk_alloc(struct btrfs_trans_handle *trans, u64 flags,
4515 int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004516{
Nikolay Borisov01458822018-06-20 15:49:05 +03004517 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -04004518 struct btrfs_space_info *space_info;
Nikolay Borisov2556fbb2018-04-18 10:27:57 +03004519 bool wait_for_alloc = false;
4520 bool should_alloc = false;
Yan Zhengc146afa2008-11-12 14:34:12 -05004521 int ret = 0;
4522
Josef Bacikc6b305a2012-12-18 09:16:16 -05004523 /* Don't re-enter if we're already allocating a chunk */
4524 if (trans->allocating_chunk)
4525 return -ENOSPC;
4526
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004527 space_info = __find_space_info(fs_info, flags);
Jeff Mahoneydc2d3002018-03-20 15:25:25 -04004528 ASSERT(space_info);
Chris Mason6324fbf2008-03-24 15:01:59 -04004529
Nikolay Borisov2556fbb2018-04-18 10:27:57 +03004530 do {
4531 spin_lock(&space_info->lock);
4532 if (force < space_info->force_alloc)
4533 force = space_info->force_alloc;
4534 should_alloc = should_alloc_chunk(fs_info, space_info, force);
4535 if (space_info->full) {
4536 /* No more free physical space */
4537 if (should_alloc)
4538 ret = -ENOSPC;
4539 else
4540 ret = 0;
4541 spin_unlock(&space_info->lock);
4542 return ret;
4543 } else if (!should_alloc) {
4544 spin_unlock(&space_info->lock);
4545 return 0;
4546 } else if (space_info->chunk_alloc) {
4547 /*
4548 * Someone is already allocating, so we need to block
4549 * until this someone is finished and then loop to
4550 * recheck if we should continue with our allocation
4551 * attempt.
4552 */
4553 wait_for_alloc = true;
4554 spin_unlock(&space_info->lock);
4555 mutex_lock(&fs_info->chunk_mutex);
4556 mutex_unlock(&fs_info->chunk_mutex);
4557 } else {
4558 /* Proceed with allocation */
4559 space_info->chunk_alloc = 1;
4560 wait_for_alloc = false;
4561 spin_unlock(&space_info->lock);
4562 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004563
Nikolay Borisov2556fbb2018-04-18 10:27:57 +03004564 cond_resched();
4565 } while (wait_for_alloc);
Josef Bacik25179202008-10-29 14:49:05 -04004566
Josef Bacik6d741192011-04-11 20:20:11 -04004567 mutex_lock(&fs_info->chunk_mutex);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004568 trans->allocating_chunk = true;
4569
Josef Bacik97e728d2009-04-21 17:40:57 -04004570 /*
Josef Bacik67377732010-09-16 16:19:09 -04004571 * If we have mixed data/metadata chunks we want to make sure we keep
4572 * allocating mixed chunks instead of individual chunks.
4573 */
4574 if (btrfs_mixed_space_info(space_info))
4575 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4576
4577 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004578 * if we're doing a data chunk, go ahead and make sure that
4579 * we keep a reasonable number of metadata chunks allocated in the
4580 * FS as well.
4581 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004582 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004583 fs_info->data_chunk_allocations++;
4584 if (!(fs_info->data_chunk_allocations %
4585 fs_info->metadata_ratio))
4586 force_metadata_allocation(fs_info);
4587 }
4588
Liu Bo15d1ff82012-03-29 09:57:44 -04004589 /*
4590 * Check if we have enough space in SYSTEM chunk because we may need
4591 * to update devices.
4592 */
Nikolay Borisov451a2c12018-06-20 15:49:07 +03004593 check_system_chunk(trans, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004594
Nikolay Borisovc216b202018-06-20 15:49:06 +03004595 ret = btrfs_alloc_chunk(trans, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004596 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004597
Josef Bacik9ed74f22009-09-11 16:12:44 -04004598 spin_lock(&space_info->lock);
Nikolay Borisov57f16422018-04-11 11:21:19 +03004599 if (ret < 0) {
4600 if (ret == -ENOSPC)
4601 space_info->full = 1;
4602 else
4603 goto out;
4604 } else {
Yan, Zheng424499d2010-05-16 10:46:25 -04004605 ret = 1;
Josef Bacik21a94f72018-10-11 15:54:03 -04004606 space_info->max_extent_size = 0;
Nikolay Borisov57f16422018-04-11 11:21:19 +03004607 }
Josef Bacik6d741192011-04-11 20:20:11 -04004608
Chris Mason0e4f8f82011-04-15 16:05:44 -04004609 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004610out:
Josef Bacik6d741192011-04-11 20:20:11 -04004611 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004612 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004613 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana00d80e32015-07-20 14:56:20 +01004614 /*
4615 * When we allocate a new chunk we reserve space in the chunk block
4616 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4617 * add new nodes/leafs to it if we end up needing to do it when
4618 * inserting the chunk item and updating device items as part of the
4619 * second phase of chunk allocation, performed by
4620 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4621 * large number of new block groups to create in our transaction
4622 * handle's new_bgs list to avoid exhausting the chunk block reserve
4623 * in extreme cases - like having a single transaction create many new
4624 * block groups when starting to write out the free space caches of all
4625 * the block groups that were made dirty during the lifetime of the
4626 * transaction.
4627 */
Filipe Manana5ce55552018-10-12 10:03:55 +01004628 if (trans->chunk_bytes_reserved >= (u64)SZ_2M)
Nikolay Borisov6c686b32018-02-07 17:55:40 +02004629 btrfs_create_pending_block_groups(trans);
Filipe Manana5ce55552018-10-12 10:03:55 +01004630
Josef Bacik0f9dd462008-09-23 13:14:11 -04004631 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004632}
4633
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004634static int can_overcommit(struct btrfs_fs_info *fs_info,
Josef Bacika80c8dc2012-09-06 16:59:33 -04004635 struct btrfs_space_info *space_info, u64 bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004636 enum btrfs_reserve_flush_enum flush,
4637 bool system_chunk)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004638{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004639 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04004640 u64 profile;
Miao Xie3c76cd82013-04-25 10:12:38 +00004641 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004642 u64 avail;
4643 u64 used;
David Sterba46df06b2018-07-13 20:46:30 +02004644 int factor;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004645
Josef Bacik957780e2016-05-17 13:30:55 -04004646 /* Don't overcommit when in mixed mode. */
4647 if (space_info->flags & BTRFS_BLOCK_GROUP_DATA)
4648 return 0;
4649
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004650 if (system_chunk)
4651 profile = btrfs_system_alloc_profile(fs_info);
4652 else
4653 profile = btrfs_metadata_alloc_profile(fs_info);
4654
Liu Bo41361352017-02-13 15:42:21 -08004655 used = btrfs_space_info_used(space_info, false);
Josef Bacik96f1bb52013-01-30 17:02:51 -05004656
Josef Bacik96f1bb52013-01-30 17:02:51 -05004657 /*
4658 * We only want to allow over committing if we have lots of actual space
4659 * free, but if we don't have enough space to handle the global reserve
4660 * space then we could end up having a real enospc problem when trying
4661 * to allocate a chunk or some other such important allocation.
4662 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004663 spin_lock(&global_rsv->lock);
4664 space_size = calc_global_rsv_need_space(global_rsv);
4665 spin_unlock(&global_rsv->lock);
4666 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004667 return 0;
4668
4669 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004670
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004671 avail = atomic64_read(&fs_info->free_chunk_space);
Josef Bacika80c8dc2012-09-06 16:59:33 -04004672
4673 /*
4674 * If we have dup, raid1 or raid10 then only half of the free
Andrea Gelmini52042d82018-11-28 12:05:13 +01004675 * space is actually usable. For raid56, the space info used
David Woodhouse53b381b2013-01-29 18:40:14 -05004676 * doesn't include the parity drive, so we don't have to
4677 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04004678 */
David Sterba46df06b2018-07-13 20:46:30 +02004679 factor = btrfs_bg_type_to_factor(profile);
4680 avail = div_u64(avail, factor);
Josef Bacika80c8dc2012-09-06 16:59:33 -04004681
4682 /*
Miao Xie561c2942012-10-16 11:32:18 +00004683 * If we aren't flushing all things, let us overcommit up to
4684 * 1/2th of the space. If we can flush, don't let us overcommit
4685 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04004686 */
Miao Xie08e007d2012-10-16 11:33:38 +00004687 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004688 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004689 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004690 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004691
Josef Bacik14575ae2013-09-17 10:48:00 -04004692 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004693 return 1;
4694 return 0;
4695}
4696
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004697static void btrfs_writeback_inodes_sb_nr(struct btrfs_fs_info *fs_info,
Miao Xie6c255e62014-03-06 13:55:01 +08004698 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004699{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004700 struct super_block *sb = fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004701
Josef Bacik925a6ef2013-06-20 12:31:27 -04004702 if (down_read_trylock(&sb->s_umount)) {
4703 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4704 up_read(&sb->s_umount);
4705 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004706 /*
4707 * We needn't worry the filesystem going from r/w to r/o though
4708 * we don't acquire ->s_umount mutex, because the filesystem
4709 * should guarantee the delalloc inodes list be empty after
4710 * the filesystem is readonly(all dirty pages are written to
4711 * the disk).
4712 */
Nikolay Borisov82b3e532018-04-23 10:54:13 +03004713 btrfs_start_delalloc_roots(fs_info, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004714 if (!current->journal_info)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004715 btrfs_wait_ordered_roots(fs_info, nr_items, 0, (u64)-1);
Miao Xieda633a42012-12-20 11:19:09 +00004716 }
4717}
4718
Chris Mason6374e57a2017-06-23 09:48:21 -07004719static inline u64 calc_reclaim_items_nr(struct btrfs_fs_info *fs_info,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004720 u64 to_reclaim)
Miao Xie18cd8ea2013-11-04 23:13:22 +08004721{
4722 u64 bytes;
Chris Mason6374e57a2017-06-23 09:48:21 -07004723 u64 nr;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004724
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004725 bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004726 nr = div64_u64(to_reclaim, bytes);
Miao Xie18cd8ea2013-11-04 23:13:22 +08004727 if (!nr)
4728 nr = 1;
4729 return nr;
4730}
4731
Byongho Leeee221842015-12-15 01:42:10 +09004732#define EXTENT_SIZE_PER_ITEM SZ_256K
Miao Xiec61a16a2013-11-04 23:13:23 +08004733
Yan, Zheng5da9d012010-05-16 10:46:25 -04004734/*
4735 * shrink metadata reservation for delalloc
4736 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004737static void shrink_delalloc(struct btrfs_fs_info *fs_info, u64 to_reclaim,
4738 u64 orig, bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004739{
Josef Bacik0019f102010-10-15 15:18:40 -04004740 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004741 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004742 u64 delalloc_bytes;
Nikolay Borisov420829d2019-01-03 10:50:05 +02004743 u64 async_pages;
Chris Mason6374e57a2017-06-23 09:48:21 -07004744 u64 items;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004745 long time_left;
Miao Xied3ee29e32013-11-04 23:13:20 +08004746 unsigned long nr_pages;
4747 int loops;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004748
Miao Xiec61a16a2013-11-04 23:13:23 +08004749 /* Calc the number of the pages we need flush for space reservation */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004750 items = calc_reclaim_items_nr(fs_info, to_reclaim);
Chris Mason6374e57a2017-06-23 09:48:21 -07004751 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004752
Josef Bacik663350a2011-11-03 22:54:25 -04004753 trans = (struct btrfs_trans_handle *)current->journal_info;
Josef Bacik69fe2d72017-10-19 14:15:57 -04004754 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Chris Masonbf9022e2010-10-26 13:40:45 -04004755
Miao Xie963d6782013-01-29 10:10:51 +00004756 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004757 &fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004758 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004759 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004760 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004761 if (wait_ordered)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004762 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004763 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004764 }
4765
Miao Xied3ee29e32013-11-04 23:13:20 +08004766 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004767 while (delalloc_bytes && loops < 3) {
Nikolay Borisov420829d2019-01-03 10:50:05 +02004768 nr_pages = min(delalloc_bytes, to_reclaim) >> PAGE_SHIFT;
4769
Josef Bacikdea31f52012-09-06 16:47:00 -04004770 /*
Nikolay Borisov420829d2019-01-03 10:50:05 +02004771 * Triggers inode writeback for up to nr_pages. This will invoke
4772 * ->writepages callback and trigger delalloc filling
4773 * (btrfs_run_delalloc_range()).
Josef Bacikdea31f52012-09-06 16:47:00 -04004774 */
Nikolay Borisov420829d2019-01-03 10:50:05 +02004775 btrfs_writeback_inodes_sb_nr(fs_info, nr_pages, items);
4776
4777 /*
4778 * We need to wait for the compressed pages to start before
4779 * we continue.
4780 */
4781 async_pages = atomic_read(&fs_info->async_delalloc_pages);
4782 if (!async_pages)
Miao Xie9f3a0742013-11-04 23:13:24 +08004783 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004784
Nikolay Borisov420829d2019-01-03 10:50:05 +02004785 /*
4786 * Calculate how many compressed pages we want to be written
4787 * before we continue. I.e if there are more async pages than we
4788 * require wait_event will wait until nr_pages are written.
4789 */
4790 if (async_pages <= nr_pages)
4791 async_pages = 0;
Miao Xie9f3a0742013-11-04 23:13:24 +08004792 else
Nikolay Borisov420829d2019-01-03 10:50:05 +02004793 async_pages -= nr_pages;
Miao Xie9f3a0742013-11-04 23:13:24 +08004794
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004795 wait_event(fs_info->async_submit_wait,
4796 atomic_read(&fs_info->async_delalloc_pages) <=
Nikolay Borisov420829d2019-01-03 10:50:05 +02004797 (int)async_pages);
Miao Xie9f3a0742013-11-04 23:13:24 +08004798skip_async:
Josef Bacik0019f102010-10-15 15:18:40 -04004799 spin_lock(&space_info->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04004800 if (list_empty(&space_info->tickets) &&
4801 list_empty(&space_info->priority_tickets)) {
4802 spin_unlock(&space_info->lock);
4803 break;
4804 }
Josef Bacik0019f102010-10-15 15:18:40 -04004805 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004806
Chris Mason36e39c42011-03-12 07:08:42 -05004807 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004808 if (wait_ordered && !trans) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004809 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf104d042011-10-14 13:56:58 -04004810 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004811 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004812 if (time_left)
4813 break;
4814 }
Miao Xie963d6782013-01-29 10:10:51 +00004815 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004816 &fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004817 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004818}
4819
Josef Bacik996478c2017-08-22 16:00:39 -04004820struct reserve_ticket {
4821 u64 bytes;
4822 int error;
4823 struct list_head list;
4824 wait_queue_head_t wait;
4825};
4826
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004827/**
Josef Bacik663350a2011-11-03 22:54:25 -04004828 * maybe_commit_transaction - possibly commit the transaction if its ok to
4829 * @root - the root we're allocating for
4830 * @bytes - the number of bytes we want to reserve
4831 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004832 *
Josef Bacik663350a2011-11-03 22:54:25 -04004833 * This will check to make sure that committing the transaction will actually
4834 * get us somewhere and then commit the transaction if it does. Otherwise it
4835 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004836 */
Jeff Mahoney0c9ab342017-02-15 16:28:28 -05004837static int may_commit_transaction(struct btrfs_fs_info *fs_info,
Josef Bacik996478c2017-08-22 16:00:39 -04004838 struct btrfs_space_info *space_info)
Josef Bacik663350a2011-11-03 22:54:25 -04004839{
Josef Bacik996478c2017-08-22 16:00:39 -04004840 struct reserve_ticket *ticket = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004841 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_block_rsv;
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004842 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
Josef Bacik663350a2011-11-03 22:54:25 -04004843 struct btrfs_trans_handle *trans;
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004844 u64 bytes_needed;
4845 u64 reclaim_bytes = 0;
Josef Bacik663350a2011-11-03 22:54:25 -04004846
4847 trans = (struct btrfs_trans_handle *)current->journal_info;
4848 if (trans)
4849 return -EAGAIN;
4850
Josef Bacik996478c2017-08-22 16:00:39 -04004851 spin_lock(&space_info->lock);
4852 if (!list_empty(&space_info->priority_tickets))
4853 ticket = list_first_entry(&space_info->priority_tickets,
4854 struct reserve_ticket, list);
4855 else if (!list_empty(&space_info->tickets))
4856 ticket = list_first_entry(&space_info->tickets,
4857 struct reserve_ticket, list);
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004858 bytes_needed = (ticket) ? ticket->bytes : 0;
Josef Bacik996478c2017-08-22 16:00:39 -04004859 spin_unlock(&space_info->lock);
4860
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004861 if (!bytes_needed)
Josef Bacik996478c2017-08-22 16:00:39 -04004862 return 0;
Josef Bacik663350a2011-11-03 22:54:25 -04004863
4864 /* See if there is enough pinned space to make this reservation */
Ethan Liendec59fa2018-07-13 16:50:42 +08004865 if (__percpu_counter_compare(&space_info->total_bytes_pinned,
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004866 bytes_needed,
Ethan Liendec59fa2018-07-13 16:50:42 +08004867 BTRFS_TOTAL_BYTES_PINNED_BATCH) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004868 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004869
4870 /*
4871 * See if there is some space in the delayed insertion reservation for
4872 * this reservation.
4873 */
4874 if (space_info != delayed_rsv->space_info)
4875 return -ENOSPC;
4876
4877 spin_lock(&delayed_rsv->lock);
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004878 reclaim_bytes += delayed_rsv->reserved;
Nikolay Borisov057aac32017-11-07 11:22:54 +02004879 spin_unlock(&delayed_rsv->lock);
4880
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004881 spin_lock(&delayed_refs_rsv->lock);
4882 reclaim_bytes += delayed_refs_rsv->reserved;
4883 spin_unlock(&delayed_refs_rsv->lock);
4884 if (reclaim_bytes >= bytes_needed)
4885 goto commit;
4886 bytes_needed -= reclaim_bytes;
4887
Ethan Liendec59fa2018-07-13 16:50:42 +08004888 if (__percpu_counter_compare(&space_info->total_bytes_pinned,
Josef Bacik4c8edbc2018-12-03 10:20:34 -05004889 bytes_needed,
Ethan Liendec59fa2018-07-13 16:50:42 +08004890 BTRFS_TOTAL_BYTES_PINNED_BATCH) < 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004891 return -ENOSPC;
4892 }
Josef Bacik663350a2011-11-03 22:54:25 -04004893
4894commit:
Jeff Mahoneya9b33112017-05-17 11:38:34 -04004895 trans = btrfs_join_transaction(fs_info->extent_root);
Josef Bacik663350a2011-11-03 22:54:25 -04004896 if (IS_ERR(trans))
4897 return -ENOSPC;
4898
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004899 return btrfs_commit_transaction(trans);
Josef Bacik663350a2011-11-03 22:54:25 -04004900}
4901
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03004902/*
4903 * Try to flush some data based on policy set by @state. This is only advisory
4904 * and may fail for various reasons. The caller is supposed to examine the
4905 * state of @space_info to detect the outcome.
4906 */
4907static void flush_space(struct btrfs_fs_info *fs_info,
Josef Bacik96c3f432012-06-21 14:05:49 -04004908 struct btrfs_space_info *space_info, u64 num_bytes,
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004909 int state)
Josef Bacik96c3f432012-06-21 14:05:49 -04004910{
Jeff Mahoneya9b33112017-05-17 11:38:34 -04004911 struct btrfs_root *root = fs_info->extent_root;
Josef Bacik96c3f432012-06-21 14:05:49 -04004912 struct btrfs_trans_handle *trans;
4913 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004914 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004915
4916 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004917 case FLUSH_DELAYED_ITEMS_NR:
4918 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004919 if (state == FLUSH_DELAYED_ITEMS_NR)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004920 nr = calc_reclaim_items_nr(fs_info, num_bytes) * 2;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004921 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004922 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004923
Josef Bacik96c3f432012-06-21 14:05:49 -04004924 trans = btrfs_join_transaction(root);
4925 if (IS_ERR(trans)) {
4926 ret = PTR_ERR(trans);
4927 break;
4928 }
Nikolay Borisove5c304e62018-02-07 17:55:43 +02004929 ret = btrfs_run_delayed_items_nr(trans, nr);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004930 btrfs_end_transaction(trans);
Josef Bacik96c3f432012-06-21 14:05:49 -04004931 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004932 case FLUSH_DELALLOC:
4933 case FLUSH_DELALLOC_WAIT:
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004934 shrink_delalloc(fs_info, num_bytes * 2, num_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004935 state == FLUSH_DELALLOC_WAIT);
4936 break;
Josef Bacik413df722018-12-03 10:20:35 -05004937 case FLUSH_DELAYED_REFS_NR:
4938 case FLUSH_DELAYED_REFS:
4939 trans = btrfs_join_transaction(root);
4940 if (IS_ERR(trans)) {
4941 ret = PTR_ERR(trans);
4942 break;
4943 }
4944 if (state == FLUSH_DELAYED_REFS_NR)
4945 nr = calc_reclaim_items_nr(fs_info, num_bytes);
4946 else
4947 nr = 0;
4948 btrfs_run_delayed_refs(trans, nr);
4949 btrfs_end_transaction(trans);
4950 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004951 case ALLOC_CHUNK:
4952 trans = btrfs_join_transaction(root);
4953 if (IS_ERR(trans)) {
4954 ret = PTR_ERR(trans);
4955 break;
4956 }
Nikolay Borisov01458822018-06-20 15:49:05 +03004957 ret = do_chunk_alloc(trans,
Jeff Mahoney1b868262017-05-17 11:38:35 -04004958 btrfs_metadata_alloc_profile(fs_info),
Josef Bacikea658ba2012-09-11 16:57:25 -04004959 CHUNK_ALLOC_NO_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004960 btrfs_end_transaction(trans);
Alex Lyakaseecba892015-12-06 12:32:31 +02004961 if (ret > 0 || ret == -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04004962 ret = 0;
4963 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004964 case COMMIT_TRANS:
Josef Bacik3ec9a4c2019-01-11 10:21:01 -05004965 /*
4966 * If we have pending delayed iputs then we could free up a
4967 * bunch of pinned space, so make sure we run the iputs before
4968 * we do our pinned bytes check below.
4969 */
4970 mutex_lock(&fs_info->cleaner_delayed_iput_mutex);
4971 btrfs_run_delayed_iputs(fs_info);
4972 mutex_unlock(&fs_info->cleaner_delayed_iput_mutex);
4973
Josef Bacik996478c2017-08-22 16:00:39 -04004974 ret = may_commit_transaction(fs_info, space_info);
Josef Bacik96c3f432012-06-21 14:05:49 -04004975 break;
4976 default:
4977 ret = -ENOSPC;
4978 break;
4979 }
4980
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004981 trace_btrfs_flush_space(fs_info, space_info->flags, num_bytes, state,
4982 ret);
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03004983 return;
Josef Bacik96c3f432012-06-21 14:05:49 -04004984}
Miao Xie21c7e752014-05-13 17:29:04 -07004985
4986static inline u64
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004987btrfs_calc_reclaim_metadata_size(struct btrfs_fs_info *fs_info,
4988 struct btrfs_space_info *space_info,
4989 bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07004990{
Josef Bacik957780e2016-05-17 13:30:55 -04004991 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07004992 u64 used;
4993 u64 expected;
Josef Bacik957780e2016-05-17 13:30:55 -04004994 u64 to_reclaim = 0;
Miao Xie21c7e752014-05-13 17:29:04 -07004995
Josef Bacik957780e2016-05-17 13:30:55 -04004996 list_for_each_entry(ticket, &space_info->tickets, list)
4997 to_reclaim += ticket->bytes;
4998 list_for_each_entry(ticket, &space_info->priority_tickets, list)
4999 to_reclaim += ticket->bytes;
5000 if (to_reclaim)
5001 return to_reclaim;
Miao Xie21c7e752014-05-13 17:29:04 -07005002
Wang Xiaoguange0af2482016-08-31 19:46:16 +08005003 to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005004 if (can_overcommit(fs_info, space_info, to_reclaim,
5005 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Wang Xiaoguange0af2482016-08-31 19:46:16 +08005006 return 0;
5007
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03005008 used = btrfs_space_info_used(space_info, true);
5009
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005010 if (can_overcommit(fs_info, space_info, SZ_1M,
5011 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Miao Xie21c7e752014-05-13 17:29:04 -07005012 expected = div_factor_fine(space_info->total_bytes, 95);
5013 else
5014 expected = div_factor_fine(space_info->total_bytes, 90);
5015
5016 if (used > expected)
5017 to_reclaim = used - expected;
5018 else
5019 to_reclaim = 0;
5020 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
5021 space_info->bytes_reserved);
Miao Xie21c7e752014-05-13 17:29:04 -07005022 return to_reclaim;
5023}
5024
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005025static inline int need_do_async_reclaim(struct btrfs_fs_info *fs_info,
5026 struct btrfs_space_info *space_info,
5027 u64 used, bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07005028{
Josef Bacik365c5312015-02-18 13:58:15 -08005029 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
5030
5031 /* If we're just plain full then async reclaim just slows us down. */
Josef Bacikbaee8792016-01-26 09:35:38 -05005032 if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh)
Josef Bacik365c5312015-02-18 13:58:15 -08005033 return 0;
5034
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005035 if (!btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5036 system_chunk))
Liu Bo25ce4592014-09-10 12:58:50 +08005037 return 0;
Liu Bo25ce4592014-09-10 12:58:50 +08005038
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005039 return (used >= thresh && !btrfs_fs_closing(fs_info) &&
5040 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
Miao Xie21c7e752014-05-13 17:29:04 -07005041}
5042
Josef Bacik957780e2016-05-17 13:30:55 -04005043static void wake_all_tickets(struct list_head *head)
Miao Xie21c7e752014-05-13 17:29:04 -07005044{
Josef Bacik957780e2016-05-17 13:30:55 -04005045 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07005046
Josef Bacik957780e2016-05-17 13:30:55 -04005047 while (!list_empty(head)) {
5048 ticket = list_first_entry(head, struct reserve_ticket, list);
5049 list_del_init(&ticket->list);
5050 ticket->error = -ENOSPC;
5051 wake_up(&ticket->wait);
Miao Xie21c7e752014-05-13 17:29:04 -07005052 }
Miao Xie21c7e752014-05-13 17:29:04 -07005053}
5054
Josef Bacik957780e2016-05-17 13:30:55 -04005055/*
5056 * This is for normal flushers, we can wait all goddamned day if we want to. We
5057 * will loop and continuously try to flush as long as we are making progress.
5058 * We count progress as clearing off tickets each time we have to loop.
5059 */
Miao Xie21c7e752014-05-13 17:29:04 -07005060static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
5061{
5062 struct btrfs_fs_info *fs_info;
5063 struct btrfs_space_info *space_info;
5064 u64 to_reclaim;
5065 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04005066 int commit_cycles = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005067 u64 last_tickets_id;
Miao Xie21c7e752014-05-13 17:29:04 -07005068
5069 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
5070 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
5071
Josef Bacik957780e2016-05-17 13:30:55 -04005072 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005073 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5074 false);
Josef Bacik957780e2016-05-17 13:30:55 -04005075 if (!to_reclaim) {
5076 space_info->flush = 0;
5077 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005078 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005079 }
Wang Xiaoguangce129652016-09-02 10:58:46 +08005080 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005081 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005082
5083 flush_state = FLUSH_DELAYED_ITEMS_NR;
5084 do {
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03005085 flush_space(fs_info, space_info, to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04005086 spin_lock(&space_info->lock);
5087 if (list_empty(&space_info->tickets)) {
5088 space_info->flush = 0;
5089 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005090 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005091 }
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005092 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info,
5093 space_info,
5094 false);
Wang Xiaoguangce129652016-09-02 10:58:46 +08005095 if (last_tickets_id == space_info->tickets_id) {
Josef Bacik957780e2016-05-17 13:30:55 -04005096 flush_state++;
5097 } else {
Wang Xiaoguangce129652016-09-02 10:58:46 +08005098 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005099 flush_state = FLUSH_DELAYED_ITEMS_NR;
5100 if (commit_cycles)
5101 commit_cycles--;
5102 }
5103
5104 if (flush_state > COMMIT_TRANS) {
5105 commit_cycles++;
5106 if (commit_cycles > 2) {
5107 wake_all_tickets(&space_info->tickets);
5108 space_info->flush = 0;
5109 } else {
5110 flush_state = FLUSH_DELAYED_ITEMS_NR;
5111 }
5112 }
5113 spin_unlock(&space_info->lock);
5114 } while (flush_state <= COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07005115}
5116
5117void btrfs_init_async_reclaim_work(struct work_struct *work)
5118{
5119 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
5120}
5121
Josef Bacik957780e2016-05-17 13:30:55 -04005122static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info,
5123 struct btrfs_space_info *space_info,
5124 struct reserve_ticket *ticket)
5125{
5126 u64 to_reclaim;
5127 int flush_state = FLUSH_DELAYED_ITEMS_NR;
5128
5129 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005130 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5131 false);
Josef Bacik957780e2016-05-17 13:30:55 -04005132 if (!to_reclaim) {
5133 spin_unlock(&space_info->lock);
5134 return;
5135 }
5136 spin_unlock(&space_info->lock);
5137
5138 do {
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03005139 flush_space(fs_info, space_info, to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04005140 flush_state++;
5141 spin_lock(&space_info->lock);
5142 if (ticket->bytes == 0) {
5143 spin_unlock(&space_info->lock);
5144 return;
5145 }
5146 spin_unlock(&space_info->lock);
5147
5148 /*
5149 * Priority flushers can't wait on delalloc without
5150 * deadlocking.
5151 */
5152 if (flush_state == FLUSH_DELALLOC ||
5153 flush_state == FLUSH_DELALLOC_WAIT)
5154 flush_state = ALLOC_CHUNK;
5155 } while (flush_state < COMMIT_TRANS);
5156}
5157
5158static int wait_reserve_ticket(struct btrfs_fs_info *fs_info,
5159 struct btrfs_space_info *space_info,
5160 struct reserve_ticket *ticket, u64 orig_bytes)
5161
5162{
5163 DEFINE_WAIT(wait);
5164 int ret = 0;
5165
5166 spin_lock(&space_info->lock);
5167 while (ticket->bytes > 0 && ticket->error == 0) {
5168 ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE);
5169 if (ret) {
5170 ret = -EINTR;
5171 break;
5172 }
5173 spin_unlock(&space_info->lock);
5174
5175 schedule();
5176
5177 finish_wait(&ticket->wait, &wait);
5178 spin_lock(&space_info->lock);
5179 }
5180 if (!ret)
5181 ret = ticket->error;
5182 if (!list_empty(&ticket->list))
5183 list_del_init(&ticket->list);
5184 if (ticket->bytes && ticket->bytes < orig_bytes) {
5185 u64 num_bytes = orig_bytes - ticket->bytes;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005186 update_bytes_may_use(space_info, -num_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005187 trace_btrfs_space_reservation(fs_info, "space_info",
5188 space_info->flags, num_bytes, 0);
5189 }
5190 spin_unlock(&space_info->lock);
5191
5192 return ret;
5193}
5194
Josef Bacik663350a2011-11-03 22:54:25 -04005195/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005196 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5197 * @root - the root we're allocating for
Josef Bacik957780e2016-05-17 13:30:55 -04005198 * @space_info - the space info we want to allocate from
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005199 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04005200 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005201 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04005202 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005203 * with the block_rsv. If there is not enough space it will make an attempt to
5204 * flush out space to make room. It will do this by flushing delalloc if
5205 * possible or committing the transaction. If flush is 0 then no attempts to
5206 * regain reservations will be made and this will fail if there is not enough
5207 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005208 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005209static int __reserve_metadata_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik957780e2016-05-17 13:30:55 -04005210 struct btrfs_space_info *space_info,
5211 u64 orig_bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005212 enum btrfs_reserve_flush_enum flush,
5213 bool system_chunk)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005214{
Josef Bacik957780e2016-05-17 13:30:55 -04005215 struct reserve_ticket ticket;
Josef Bacik2bf64752011-09-26 17:12:22 -04005216 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005217 int ret = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005218
Josef Bacik957780e2016-05-17 13:30:55 -04005219 ASSERT(orig_bytes);
Josef Bacik8ca17f02016-05-27 13:24:13 -04005220 ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL);
5221
Yan, Zhengf0486c62010-05-16 10:46:25 -04005222 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04005223 ret = -ENOSPC;
Liu Bo41361352017-02-13 15:42:21 -08005224 used = btrfs_space_info_used(space_info, true);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005225
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005226 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005227 * If we have enough space then hooray, make our reservation and carry
5228 * on. If not see if we can overcommit, and if we can, hooray carry on.
5229 * If not things get more complicated.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005230 */
Josef Bacik957780e2016-05-17 13:30:55 -04005231 if (used + orig_bytes <= space_info->total_bytes) {
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005232 update_bytes_may_use(space_info, orig_bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005233 trace_btrfs_space_reservation(fs_info, "space_info",
5234 space_info->flags, orig_bytes, 1);
Josef Bacik957780e2016-05-17 13:30:55 -04005235 ret = 0;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005236 } else if (can_overcommit(fs_info, space_info, orig_bytes, flush,
5237 system_chunk)) {
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005238 update_bytes_may_use(space_info, orig_bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005239 trace_btrfs_space_reservation(fs_info, "space_info",
5240 space_info->flags, orig_bytes, 1);
Josef Bacik44734ed2012-09-28 16:04:19 -04005241 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04005242 }
5243
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005244 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005245 * If we couldn't make a reservation then setup our reservation ticket
5246 * and kick the async worker if it's not already running.
Miao Xie08e007d2012-10-16 11:33:38 +00005247 *
Josef Bacik957780e2016-05-17 13:30:55 -04005248 * If we are a priority flusher then we just need to add our ticket to
5249 * the list and we will do our own flushing further down.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005250 */
Josef Bacik72bcd992012-12-18 15:16:34 -05005251 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacik957780e2016-05-17 13:30:55 -04005252 ticket.bytes = orig_bytes;
5253 ticket.error = 0;
5254 init_waitqueue_head(&ticket.wait);
5255 if (flush == BTRFS_RESERVE_FLUSH_ALL) {
5256 list_add_tail(&ticket.list, &space_info->tickets);
5257 if (!space_info->flush) {
5258 space_info->flush = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005259 trace_btrfs_trigger_flush(fs_info,
Josef Bacikf376df22016-03-25 13:25:56 -04005260 space_info->flags,
5261 orig_bytes, flush,
5262 "enospc");
Josef Bacik957780e2016-05-17 13:30:55 -04005263 queue_work(system_unbound_wq,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005264 &fs_info->async_reclaim_work);
Josef Bacik957780e2016-05-17 13:30:55 -04005265 }
5266 } else {
5267 list_add_tail(&ticket.list,
5268 &space_info->priority_tickets);
5269 }
Miao Xie21c7e752014-05-13 17:29:04 -07005270 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
5271 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04005272 /*
5273 * We will do the space reservation dance during log replay,
5274 * which means we won't have fs_info->fs_root set, so don't do
5275 * the async reclaim as we will panic.
5276 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005277 if (!test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags) &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005278 need_do_async_reclaim(fs_info, space_info,
5279 used, system_chunk) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005280 !work_busy(&fs_info->async_reclaim_work)) {
5281 trace_btrfs_trigger_flush(fs_info, space_info->flags,
5282 orig_bytes, flush, "preempt");
Miao Xie21c7e752014-05-13 17:29:04 -07005283 queue_work(system_unbound_wq,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005284 &fs_info->async_reclaim_work);
Josef Bacikf376df22016-03-25 13:25:56 -04005285 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005286 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005287 spin_unlock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00005288 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik957780e2016-05-17 13:30:55 -04005289 return ret;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005290
Josef Bacik957780e2016-05-17 13:30:55 -04005291 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005292 return wait_reserve_ticket(fs_info, space_info, &ticket,
Josef Bacik957780e2016-05-17 13:30:55 -04005293 orig_bytes);
Miao Xie08e007d2012-10-16 11:33:38 +00005294
Josef Bacik957780e2016-05-17 13:30:55 -04005295 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005296 priority_reclaim_metadata_space(fs_info, space_info, &ticket);
Josef Bacik957780e2016-05-17 13:30:55 -04005297 spin_lock(&space_info->lock);
5298 if (ticket.bytes) {
5299 if (ticket.bytes < orig_bytes) {
5300 u64 num_bytes = orig_bytes - ticket.bytes;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005301 update_bytes_may_use(space_info, -num_bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005302 trace_btrfs_space_reservation(fs_info, "space_info",
5303 space_info->flags,
5304 num_bytes, 0);
Miao Xie08e007d2012-10-16 11:33:38 +00005305
Josef Bacik957780e2016-05-17 13:30:55 -04005306 }
5307 list_del_init(&ticket.list);
5308 ret = -ENOSPC;
5309 }
5310 spin_unlock(&space_info->lock);
5311 ASSERT(list_empty(&ticket.list));
5312 return ret;
5313}
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005314
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005315/**
5316 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5317 * @root - the root we're allocating for
5318 * @block_rsv - the block_rsv we're allocating for
5319 * @orig_bytes - the number of bytes we want
5320 * @flush - whether or not we can flush to make our reservation
5321 *
Andrea Gelmini52042d82018-11-28 12:05:13 +01005322 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005323 * with the block_rsv. If there is not enough space it will make an attempt to
5324 * flush out space to make room. It will do this by flushing delalloc if
5325 * possible or committing the transaction. If flush is 0 then no attempts to
5326 * regain reservations will be made and this will fail if there is not enough
5327 * space already.
5328 */
5329static int reserve_metadata_bytes(struct btrfs_root *root,
5330 struct btrfs_block_rsv *block_rsv,
5331 u64 orig_bytes,
5332 enum btrfs_reserve_flush_enum flush)
5333{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005334 struct btrfs_fs_info *fs_info = root->fs_info;
5335 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04005336 int ret;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005337 bool system_chunk = (root == fs_info->chunk_root);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005338
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005339 ret = __reserve_metadata_bytes(fs_info, block_rsv->space_info,
5340 orig_bytes, flush, system_chunk);
Josef Bacik5d803662013-02-07 16:06:02 -05005341 if (ret == -ENOSPC &&
5342 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
Josef Bacik5d803662013-02-07 16:06:02 -05005343 if (block_rsv != global_rsv &&
5344 !block_rsv_use_bytes(global_rsv, orig_bytes))
5345 ret = 0;
5346 }
Nikolay Borisov9a3daff2017-12-15 12:05:37 +02005347 if (ret == -ENOSPC) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005348 trace_btrfs_space_reservation(fs_info, "space_info:enospc",
Josef Bacik957780e2016-05-17 13:30:55 -04005349 block_rsv->space_info->flags,
5350 orig_bytes, 1);
Nikolay Borisov9a3daff2017-12-15 12:05:37 +02005351
5352 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG))
5353 dump_space_info(fs_info, block_rsv->space_info,
5354 orig_bytes, 0);
5355 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005356 return ret;
5357}
5358
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005359static struct btrfs_block_rsv *get_block_rsv(
5360 const struct btrfs_trans_handle *trans,
5361 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005362{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005363 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik4c13d752011-08-30 11:31:29 -04005364 struct btrfs_block_rsv *block_rsv = NULL;
5365
Alexandru Moisee9cf4392015-09-09 00:18:50 +00005366 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005367 (root == fs_info->csum_root && trans->adding_csums) ||
5368 (root == fs_info->uuid_root))
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02005369 block_rsv = trans->block_rsv;
5370
Josef Bacik4c13d752011-08-30 11:31:29 -04005371 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005372 block_rsv = root->block_rsv;
5373
5374 if (!block_rsv)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005375 block_rsv = &fs_info->empty_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005376
5377 return block_rsv;
5378}
5379
5380static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
5381 u64 num_bytes)
5382{
5383 int ret = -ENOSPC;
5384 spin_lock(&block_rsv->lock);
5385 if (block_rsv->reserved >= num_bytes) {
5386 block_rsv->reserved -= num_bytes;
5387 if (block_rsv->reserved < block_rsv->size)
5388 block_rsv->full = 0;
5389 ret = 0;
5390 }
5391 spin_unlock(&block_rsv->lock);
5392 return ret;
5393}
5394
5395static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
Lu Fengqi3a584172018-08-04 21:10:55 +08005396 u64 num_bytes, bool update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005397{
5398 spin_lock(&block_rsv->lock);
5399 block_rsv->reserved += num_bytes;
5400 if (update_size)
5401 block_rsv->size += num_bytes;
5402 else if (block_rsv->reserved >= block_rsv->size)
5403 block_rsv->full = 1;
5404 spin_unlock(&block_rsv->lock);
5405}
5406
Josef Bacikd52be812013-05-29 14:54:47 -04005407int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
5408 struct btrfs_block_rsv *dest, u64 num_bytes,
5409 int min_factor)
5410{
5411 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5412 u64 min_bytes;
5413
5414 if (global_rsv->space_info != dest->space_info)
5415 return -ENOSPC;
5416
5417 spin_lock(&global_rsv->lock);
5418 min_bytes = div_factor(global_rsv->size, min_factor);
5419 if (global_rsv->reserved < min_bytes + num_bytes) {
5420 spin_unlock(&global_rsv->lock);
5421 return -ENOSPC;
5422 }
5423 global_rsv->reserved -= num_bytes;
5424 if (global_rsv->reserved < global_rsv->size)
5425 global_rsv->full = 0;
5426 spin_unlock(&global_rsv->lock);
5427
Lu Fengqi3a584172018-08-04 21:10:55 +08005428 block_rsv_add_bytes(dest, num_bytes, true);
Josef Bacikd52be812013-05-29 14:54:47 -04005429 return 0;
5430}
5431
Josef Bacikba2c4d42018-12-03 10:20:33 -05005432/**
5433 * btrfs_migrate_to_delayed_refs_rsv - transfer bytes to our delayed refs rsv.
5434 * @fs_info - the fs info for our fs.
5435 * @src - the source block rsv to transfer from.
5436 * @num_bytes - the number of bytes to transfer.
5437 *
5438 * This transfers up to the num_bytes amount from the src rsv to the
5439 * delayed_refs_rsv. Any extra bytes are returned to the space info.
5440 */
5441void btrfs_migrate_to_delayed_refs_rsv(struct btrfs_fs_info *fs_info,
5442 struct btrfs_block_rsv *src,
5443 u64 num_bytes)
5444{
5445 struct btrfs_block_rsv *delayed_refs_rsv = &fs_info->delayed_refs_rsv;
5446 u64 to_free = 0;
5447
5448 spin_lock(&src->lock);
5449 src->reserved -= num_bytes;
5450 src->size -= num_bytes;
5451 spin_unlock(&src->lock);
5452
5453 spin_lock(&delayed_refs_rsv->lock);
5454 if (delayed_refs_rsv->size > delayed_refs_rsv->reserved) {
5455 u64 delta = delayed_refs_rsv->size -
5456 delayed_refs_rsv->reserved;
5457 if (num_bytes > delta) {
5458 to_free = num_bytes - delta;
5459 num_bytes = delta;
5460 }
5461 } else {
5462 to_free = num_bytes;
5463 num_bytes = 0;
5464 }
5465
5466 if (num_bytes)
5467 delayed_refs_rsv->reserved += num_bytes;
5468 if (delayed_refs_rsv->reserved >= delayed_refs_rsv->size)
5469 delayed_refs_rsv->full = 1;
5470 spin_unlock(&delayed_refs_rsv->lock);
5471
5472 if (num_bytes)
5473 trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
5474 0, num_bytes, 1);
5475 if (to_free)
5476 space_info_add_old_bytes(fs_info, delayed_refs_rsv->space_info,
5477 to_free);
5478}
5479
5480/**
5481 * btrfs_delayed_refs_rsv_refill - refill based on our delayed refs usage.
5482 * @fs_info - the fs_info for our fs.
5483 * @flush - control how we can flush for this reservation.
5484 *
5485 * This will refill the delayed block_rsv up to 1 items size worth of space and
5486 * will return -ENOSPC if we can't make the reservation.
5487 */
5488int btrfs_delayed_refs_rsv_refill(struct btrfs_fs_info *fs_info,
5489 enum btrfs_reserve_flush_enum flush)
5490{
5491 struct btrfs_block_rsv *block_rsv = &fs_info->delayed_refs_rsv;
5492 u64 limit = btrfs_calc_trans_metadata_size(fs_info, 1);
5493 u64 num_bytes = 0;
5494 int ret = -ENOSPC;
5495
5496 spin_lock(&block_rsv->lock);
5497 if (block_rsv->reserved < block_rsv->size) {
5498 num_bytes = block_rsv->size - block_rsv->reserved;
5499 num_bytes = min(num_bytes, limit);
5500 }
5501 spin_unlock(&block_rsv->lock);
5502
5503 if (!num_bytes)
5504 return 0;
5505
5506 ret = reserve_metadata_bytes(fs_info->extent_root, block_rsv,
5507 num_bytes, flush);
5508 if (ret)
5509 return ret;
5510 block_rsv_add_bytes(block_rsv, num_bytes, 0);
5511 trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
5512 0, num_bytes, 1);
5513 return 0;
5514}
5515
Josef Bacik957780e2016-05-17 13:30:55 -04005516/*
5517 * This is for space we already have accounted in space_info->bytes_may_use, so
5518 * basically when we're returning space from block_rsv's.
5519 */
5520static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
5521 struct btrfs_space_info *space_info,
5522 u64 num_bytes)
5523{
5524 struct reserve_ticket *ticket;
5525 struct list_head *head;
5526 u64 used;
5527 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH;
5528 bool check_overcommit = false;
5529
5530 spin_lock(&space_info->lock);
5531 head = &space_info->priority_tickets;
5532
5533 /*
5534 * If we are over our limit then we need to check and see if we can
5535 * overcommit, and if we can't then we just need to free up our space
5536 * and not satisfy any requests.
5537 */
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03005538 used = btrfs_space_info_used(space_info, true);
Josef Bacik957780e2016-05-17 13:30:55 -04005539 if (used - num_bytes >= space_info->total_bytes)
5540 check_overcommit = true;
5541again:
5542 while (!list_empty(head) && num_bytes) {
5543 ticket = list_first_entry(head, struct reserve_ticket,
5544 list);
5545 /*
5546 * We use 0 bytes because this space is already reserved, so
5547 * adding the ticket space would be a double count.
5548 */
5549 if (check_overcommit &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005550 !can_overcommit(fs_info, space_info, 0, flush, false))
Josef Bacik957780e2016-05-17 13:30:55 -04005551 break;
5552 if (num_bytes >= ticket->bytes) {
5553 list_del_init(&ticket->list);
5554 num_bytes -= ticket->bytes;
5555 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005556 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005557 wake_up(&ticket->wait);
5558 } else {
5559 ticket->bytes -= num_bytes;
5560 num_bytes = 0;
5561 }
5562 }
5563
5564 if (num_bytes && head == &space_info->priority_tickets) {
5565 head = &space_info->tickets;
5566 flush = BTRFS_RESERVE_FLUSH_ALL;
5567 goto again;
5568 }
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005569 update_bytes_may_use(space_info, -num_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005570 trace_btrfs_space_reservation(fs_info, "space_info",
5571 space_info->flags, num_bytes, 0);
5572 spin_unlock(&space_info->lock);
5573}
5574
5575/*
5576 * This is for newly allocated space that isn't accounted in
5577 * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent
5578 * we use this helper.
5579 */
5580static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
5581 struct btrfs_space_info *space_info,
5582 u64 num_bytes)
5583{
5584 struct reserve_ticket *ticket;
5585 struct list_head *head = &space_info->priority_tickets;
5586
5587again:
5588 while (!list_empty(head) && num_bytes) {
5589 ticket = list_first_entry(head, struct reserve_ticket,
5590 list);
5591 if (num_bytes >= ticket->bytes) {
5592 trace_btrfs_space_reservation(fs_info, "space_info",
5593 space_info->flags,
5594 ticket->bytes, 1);
5595 list_del_init(&ticket->list);
5596 num_bytes -= ticket->bytes;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005597 update_bytes_may_use(space_info, ticket->bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005598 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005599 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005600 wake_up(&ticket->wait);
5601 } else {
5602 trace_btrfs_space_reservation(fs_info, "space_info",
5603 space_info->flags,
5604 num_bytes, 1);
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005605 update_bytes_may_use(space_info, num_bytes);
Josef Bacik957780e2016-05-17 13:30:55 -04005606 ticket->bytes -= num_bytes;
5607 num_bytes = 0;
5608 }
5609 }
5610
5611 if (num_bytes && head == &space_info->priority_tickets) {
5612 head = &space_info->tickets;
5613 goto again;
5614 }
5615}
5616
Josef Bacik69fe2d72017-10-19 14:15:57 -04005617static u64 block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005618 struct btrfs_block_rsv *block_rsv,
Qu Wenruoff6bc372017-12-21 13:42:04 +08005619 struct btrfs_block_rsv *dest, u64 num_bytes,
5620 u64 *qgroup_to_release_ret)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005621{
5622 struct btrfs_space_info *space_info = block_rsv->space_info;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005623 u64 qgroup_to_release = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005624 u64 ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005625
5626 spin_lock(&block_rsv->lock);
Qu Wenruoff6bc372017-12-21 13:42:04 +08005627 if (num_bytes == (u64)-1) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04005628 num_bytes = block_rsv->size;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005629 qgroup_to_release = block_rsv->qgroup_rsv_size;
5630 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005631 block_rsv->size -= num_bytes;
5632 if (block_rsv->reserved >= block_rsv->size) {
5633 num_bytes = block_rsv->reserved - block_rsv->size;
5634 block_rsv->reserved = block_rsv->size;
5635 block_rsv->full = 1;
5636 } else {
5637 num_bytes = 0;
5638 }
Qu Wenruoff6bc372017-12-21 13:42:04 +08005639 if (block_rsv->qgroup_rsv_reserved >= block_rsv->qgroup_rsv_size) {
5640 qgroup_to_release = block_rsv->qgroup_rsv_reserved -
5641 block_rsv->qgroup_rsv_size;
5642 block_rsv->qgroup_rsv_reserved = block_rsv->qgroup_rsv_size;
5643 } else {
5644 qgroup_to_release = 0;
5645 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005646 spin_unlock(&block_rsv->lock);
5647
Josef Bacik69fe2d72017-10-19 14:15:57 -04005648 ret = num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005649 if (num_bytes > 0) {
5650 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00005651 spin_lock(&dest->lock);
5652 if (!dest->full) {
5653 u64 bytes_to_add;
5654
5655 bytes_to_add = dest->size - dest->reserved;
5656 bytes_to_add = min(num_bytes, bytes_to_add);
5657 dest->reserved += bytes_to_add;
5658 if (dest->reserved >= dest->size)
5659 dest->full = 1;
5660 num_bytes -= bytes_to_add;
5661 }
5662 spin_unlock(&dest->lock);
5663 }
Josef Bacik957780e2016-05-17 13:30:55 -04005664 if (num_bytes)
5665 space_info_add_old_bytes(fs_info, space_info,
5666 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005667 }
Qu Wenruoff6bc372017-12-21 13:42:04 +08005668 if (qgroup_to_release_ret)
5669 *qgroup_to_release_ret = qgroup_to_release;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005670 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005671}
5672
Josef Bacik25d609f2016-03-25 13:25:48 -04005673int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src,
5674 struct btrfs_block_rsv *dst, u64 num_bytes,
Lu Fengqi3a584172018-08-04 21:10:55 +08005675 bool update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005676{
5677 int ret;
5678
5679 ret = block_rsv_use_bytes(src, num_bytes);
5680 if (ret)
5681 return ret;
5682
Josef Bacik25d609f2016-03-25 13:25:48 -04005683 block_rsv_add_bytes(dst, num_bytes, update_size);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005684 return 0;
5685}
5686
Miao Xie66d8f3d2012-09-06 04:02:28 -06005687void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005688{
5689 memset(rsv, 0, sizeof(*rsv));
5690 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06005691 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005692}
5693
Josef Bacik69fe2d72017-10-19 14:15:57 -04005694void btrfs_init_metadata_block_rsv(struct btrfs_fs_info *fs_info,
5695 struct btrfs_block_rsv *rsv,
5696 unsigned short type)
5697{
5698 btrfs_init_block_rsv(rsv, type);
5699 rsv->space_info = __find_space_info(fs_info,
5700 BTRFS_BLOCK_GROUP_METADATA);
5701}
5702
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005703struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_fs_info *fs_info,
Miao Xie66d8f3d2012-09-06 04:02:28 -06005704 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005705{
5706 struct btrfs_block_rsv *block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005707
5708 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
5709 if (!block_rsv)
5710 return NULL;
5711
Josef Bacik69fe2d72017-10-19 14:15:57 -04005712 btrfs_init_metadata_block_rsv(fs_info, block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005713 return block_rsv;
5714}
5715
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005716void btrfs_free_block_rsv(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005717 struct btrfs_block_rsv *rsv)
5718{
Josef Bacik2aaa6652012-08-29 14:27:18 -04005719 if (!rsv)
5720 return;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005721 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Josef Bacikdabdb642011-08-08 12:50:18 -04005722 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005723}
5724
Miao Xie08e007d2012-10-16 11:33:38 +00005725int btrfs_block_rsv_add(struct btrfs_root *root,
5726 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
5727 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005728{
5729 int ret;
5730
5731 if (num_bytes == 0)
5732 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005733
Miao Xie61b520a2011-11-10 20:45:05 -05005734 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Lu Fengqi5a2cb252018-08-04 21:10:56 +08005735 if (!ret)
Lu Fengqi3a584172018-08-04 21:10:55 +08005736 block_rsv_add_bytes(block_rsv, num_bytes, true);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005737
Yan, Zhengf0486c62010-05-16 10:46:25 -04005738 return ret;
5739}
5740
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005741int btrfs_block_rsv_check(struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005742{
5743 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005744 int ret = -ENOSPC;
5745
5746 if (!block_rsv)
5747 return 0;
5748
5749 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04005750 num_bytes = div_factor(block_rsv->size, min_factor);
5751 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005752 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005753 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005754
Josef Bacik36ba0222011-10-18 12:15:48 -04005755 return ret;
5756}
5757
Miao Xie08e007d2012-10-16 11:33:38 +00005758int btrfs_block_rsv_refill(struct btrfs_root *root,
5759 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5760 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04005761{
5762 u64 num_bytes = 0;
5763 int ret = -ENOSPC;
5764
5765 if (!block_rsv)
5766 return 0;
5767
5768 spin_lock(&block_rsv->lock);
5769 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005770 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005771 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005772 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005773 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005774 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005775
Yan, Zhengf0486c62010-05-16 10:46:25 -04005776 if (!ret)
5777 return 0;
5778
Miao Xieaa38a712011-11-18 17:43:00 +08005779 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005780 if (!ret) {
Lu Fengqi3a584172018-08-04 21:10:55 +08005781 block_rsv_add_bytes(block_rsv, num_bytes, false);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005782 return 0;
5783 }
5784
Josef Bacik13553e52011-08-08 13:33:21 -04005785 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005786}
5787
Josef Bacik69fe2d72017-10-19 14:15:57 -04005788/**
5789 * btrfs_inode_rsv_refill - refill the inode block rsv.
5790 * @inode - the inode we are refilling.
Andrea Gelmini52042d82018-11-28 12:05:13 +01005791 * @flush - the flushing restriction.
Josef Bacik69fe2d72017-10-19 14:15:57 -04005792 *
5793 * Essentially the same as btrfs_block_rsv_refill, except it uses the
5794 * block_rsv->size as the minimum size. We'll either refill the missing amount
Andrea Gelmini52042d82018-11-28 12:05:13 +01005795 * or return if we already have enough space. This will also handle the reserve
Josef Bacik69fe2d72017-10-19 14:15:57 -04005796 * tracepoint for the reserved amount.
5797 */
Qu Wenruo3f2dd7a2017-11-17 15:14:19 +08005798static int btrfs_inode_rsv_refill(struct btrfs_inode *inode,
5799 enum btrfs_reserve_flush_enum flush)
Josef Bacik69fe2d72017-10-19 14:15:57 -04005800{
5801 struct btrfs_root *root = inode->root;
5802 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
5803 u64 num_bytes = 0;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005804 u64 qgroup_num_bytes = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005805 int ret = -ENOSPC;
5806
5807 spin_lock(&block_rsv->lock);
5808 if (block_rsv->reserved < block_rsv->size)
5809 num_bytes = block_rsv->size - block_rsv->reserved;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005810 if (block_rsv->qgroup_rsv_reserved < block_rsv->qgroup_rsv_size)
5811 qgroup_num_bytes = block_rsv->qgroup_rsv_size -
5812 block_rsv->qgroup_rsv_reserved;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005813 spin_unlock(&block_rsv->lock);
5814
5815 if (num_bytes == 0)
5816 return 0;
5817
Qu Wenruoff6bc372017-12-21 13:42:04 +08005818 ret = btrfs_qgroup_reserve_meta_prealloc(root, qgroup_num_bytes, true);
Qu Wenruo43b18592017-12-12 15:34:32 +08005819 if (ret)
5820 return ret;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005821 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
5822 if (!ret) {
Lu Fengqi3a584172018-08-04 21:10:55 +08005823 block_rsv_add_bytes(block_rsv, num_bytes, false);
Josef Bacik69fe2d72017-10-19 14:15:57 -04005824 trace_btrfs_space_reservation(root->fs_info, "delalloc",
5825 btrfs_ino(inode), num_bytes, 1);
Qu Wenruoff6bc372017-12-21 13:42:04 +08005826
5827 /* Don't forget to increase qgroup_rsv_reserved */
5828 spin_lock(&block_rsv->lock);
5829 block_rsv->qgroup_rsv_reserved += qgroup_num_bytes;
5830 spin_unlock(&block_rsv->lock);
5831 } else
5832 btrfs_qgroup_free_meta_prealloc(root, qgroup_num_bytes);
Josef Bacik69fe2d72017-10-19 14:15:57 -04005833 return ret;
5834}
5835
Josef Bacikba2c4d42018-12-03 10:20:33 -05005836static u64 __btrfs_block_rsv_release(struct btrfs_fs_info *fs_info,
5837 struct btrfs_block_rsv *block_rsv,
5838 u64 num_bytes, u64 *qgroup_to_release)
5839{
5840 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5841 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_refs_rsv;
5842 struct btrfs_block_rsv *target = delayed_rsv;
5843
5844 if (target->full || target == block_rsv)
5845 target = global_rsv;
5846
5847 if (block_rsv->space_info != target->space_info)
5848 target = NULL;
5849
5850 return block_rsv_release_bytes(fs_info, block_rsv, target, num_bytes,
5851 qgroup_to_release);
5852}
5853
5854void btrfs_block_rsv_release(struct btrfs_fs_info *fs_info,
5855 struct btrfs_block_rsv *block_rsv,
5856 u64 num_bytes)
5857{
5858 __btrfs_block_rsv_release(fs_info, block_rsv, num_bytes, NULL);
5859}
5860
Josef Bacik69fe2d72017-10-19 14:15:57 -04005861/**
5862 * btrfs_inode_rsv_release - release any excessive reservation.
5863 * @inode - the inode we need to release from.
Qu Wenruo43b18592017-12-12 15:34:32 +08005864 * @qgroup_free - free or convert qgroup meta.
5865 * Unlike normal operation, qgroup meta reservation needs to know if we are
5866 * freeing qgroup reservation or just converting it into per-trans. Normally
5867 * @qgroup_free is true for error handling, and false for normal release.
Josef Bacik69fe2d72017-10-19 14:15:57 -04005868 *
5869 * This is the same as btrfs_block_rsv_release, except that it handles the
5870 * tracepoint for the reservation.
5871 */
Qu Wenruo43b18592017-12-12 15:34:32 +08005872static void btrfs_inode_rsv_release(struct btrfs_inode *inode, bool qgroup_free)
Josef Bacik69fe2d72017-10-19 14:15:57 -04005873{
5874 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005875 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
5876 u64 released = 0;
Qu Wenruoff6bc372017-12-21 13:42:04 +08005877 u64 qgroup_to_release = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04005878
5879 /*
5880 * Since we statically set the block_rsv->size we just want to say we
5881 * are releasing 0 bytes, and then we'll just get the reservation over
5882 * the size free'd.
5883 */
Josef Bacikba2c4d42018-12-03 10:20:33 -05005884 released = __btrfs_block_rsv_release(fs_info, block_rsv, 0,
5885 &qgroup_to_release);
Josef Bacik69fe2d72017-10-19 14:15:57 -04005886 if (released > 0)
5887 trace_btrfs_space_reservation(fs_info, "delalloc",
5888 btrfs_ino(inode), released, 0);
Qu Wenruo43b18592017-12-12 15:34:32 +08005889 if (qgroup_free)
Qu Wenruoff6bc372017-12-21 13:42:04 +08005890 btrfs_qgroup_free_meta_prealloc(inode->root, qgroup_to_release);
Qu Wenruo43b18592017-12-12 15:34:32 +08005891 else
Qu Wenruoff6bc372017-12-21 13:42:04 +08005892 btrfs_qgroup_convert_reserved_meta(inode->root,
5893 qgroup_to_release);
Josef Bacik69fe2d72017-10-19 14:15:57 -04005894}
5895
Josef Bacikba2c4d42018-12-03 10:20:33 -05005896/**
5897 * btrfs_delayed_refs_rsv_release - release a ref head's reservation.
5898 * @fs_info - the fs_info for our fs.
5899 * @nr - the number of items to drop.
5900 *
5901 * This drops the delayed ref head's count from the delayed refs rsv and frees
5902 * any excess reservation we had.
5903 */
5904void btrfs_delayed_refs_rsv_release(struct btrfs_fs_info *fs_info, int nr)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005905{
Josef Bacikba2c4d42018-12-03 10:20:33 -05005906 struct btrfs_block_rsv *block_rsv = &fs_info->delayed_refs_rsv;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005907 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikba2c4d42018-12-03 10:20:33 -05005908 u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, nr);
5909 u64 released = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005910
Josef Bacikba2c4d42018-12-03 10:20:33 -05005911 released = block_rsv_release_bytes(fs_info, block_rsv, global_rsv,
5912 num_bytes, NULL);
5913 if (released)
5914 trace_btrfs_space_reservation(fs_info, "delayed_refs_rsv",
5915 0, released, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005916}
5917
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005918static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5919{
5920 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5921 struct btrfs_space_info *sinfo = block_rsv->space_info;
5922 u64 num_bytes;
5923
Josef Bacikae2e4722016-05-27 12:58:35 -04005924 /*
5925 * The global block rsv is based on the size of the extent tree, the
5926 * checksum tree and the root tree. If the fs is empty we want to set
5927 * it to a minimal amount for safety.
5928 */
5929 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) +
5930 btrfs_root_used(&fs_info->csum_root->root_item) +
5931 btrfs_root_used(&fs_info->tree_root->root_item);
5932 num_bytes = max_t(u64, num_bytes, SZ_16M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005933
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005934 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005935 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005936
Byongho Leeee221842015-12-15 01:42:10 +09005937 block_rsv->size = min_t(u64, num_bytes, SZ_512M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005938
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005939 if (block_rsv->reserved < block_rsv->size) {
Liu Bo41361352017-02-13 15:42:21 -08005940 num_bytes = btrfs_space_info_used(sinfo, true);
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005941 if (sinfo->total_bytes > num_bytes) {
5942 num_bytes = sinfo->total_bytes - num_bytes;
5943 num_bytes = min(num_bytes,
5944 block_rsv->size - block_rsv->reserved);
5945 block_rsv->reserved += num_bytes;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005946 update_bytes_may_use(sinfo, num_bytes);
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005947 trace_btrfs_space_reservation(fs_info, "space_info",
5948 sinfo->flags, num_bytes,
5949 1);
5950 }
5951 } else if (block_rsv->reserved > block_rsv->size) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005952 num_bytes = block_rsv->reserved - block_rsv->size;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08005953 update_bytes_may_use(sinfo, -num_bytes);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005954 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005955 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005956 block_rsv->reserved = block_rsv->size;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005957 }
David Sterba182608c2011-05-05 13:13:16 +02005958
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005959 if (block_rsv->reserved == block_rsv->size)
5960 block_rsv->full = 1;
5961 else
5962 block_rsv->full = 0;
5963
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005964 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005965 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005966}
5967
Yan, Zhengf0486c62010-05-16 10:46:25 -04005968static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5969{
5970 struct btrfs_space_info *space_info;
5971
5972 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5973 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005974
5975 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005976 fs_info->global_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005977 fs_info->trans_block_rsv.space_info = space_info;
5978 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005979 fs_info->delayed_block_rsv.space_info = space_info;
Josef Bacikba2c4d42018-12-03 10:20:33 -05005980 fs_info->delayed_refs_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005981
Josef Bacikba2c4d42018-12-03 10:20:33 -05005982 fs_info->extent_root->block_rsv = &fs_info->delayed_refs_rsv;
5983 fs_info->csum_root->block_rsv = &fs_info->delayed_refs_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005984 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5985 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005986 if (fs_info->quota_root)
5987 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005988 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005989
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005990 update_global_block_rsv(fs_info);
5991}
5992
5993static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5994{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005995 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
Qu Wenruoff6bc372017-12-21 13:42:04 +08005996 (u64)-1, NULL);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005997 WARN_ON(fs_info->trans_block_rsv.size > 0);
5998 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5999 WARN_ON(fs_info->chunk_block_rsv.size > 0);
6000 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04006001 WARN_ON(fs_info->delayed_block_rsv.size > 0);
6002 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikba2c4d42018-12-03 10:20:33 -05006003 WARN_ON(fs_info->delayed_refs_rsv.reserved > 0);
6004 WARN_ON(fs_info->delayed_refs_rsv.size > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04006005}
6006
Josef Bacikba2c4d42018-12-03 10:20:33 -05006007/*
6008 * btrfs_update_delayed_refs_rsv - adjust the size of the delayed refs rsv
6009 * @trans - the trans that may have generated delayed refs
6010 *
6011 * This is to be called anytime we may have adjusted trans->delayed_ref_updates,
6012 * it'll calculate the additional size and add it to the delayed_refs_rsv.
6013 */
6014void btrfs_update_delayed_refs_rsv(struct btrfs_trans_handle *trans)
6015{
6016 struct btrfs_fs_info *fs_info = trans->fs_info;
6017 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_refs_rsv;
6018 u64 num_bytes;
6019
6020 if (!trans->delayed_ref_updates)
6021 return;
6022
6023 num_bytes = btrfs_calc_trans_metadata_size(fs_info,
6024 trans->delayed_ref_updates);
6025 spin_lock(&delayed_rsv->lock);
6026 delayed_rsv->size += num_bytes;
6027 delayed_rsv->full = 0;
6028 spin_unlock(&delayed_rsv->lock);
6029 trans->delayed_ref_updates = 0;
6030}
Yan, Zhenga22285a2010-05-16 10:48:46 -04006031
Filipe Manana4fbcdf62015-05-20 14:01:54 +01006032/*
6033 * To be called after all the new block groups attached to the transaction
6034 * handle have been created (btrfs_create_pending_block_groups()).
6035 */
6036void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
6037{
Jeff Mahoney64b63582016-06-20 17:23:41 -04006038 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01006039
6040 if (!trans->chunk_bytes_reserved)
6041 return;
6042
6043 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
6044
6045 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
Qu Wenruoff6bc372017-12-21 13:42:04 +08006046 trans->chunk_bytes_reserved, NULL);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01006047 trans->chunk_bytes_reserved = 0;
6048}
6049
Miao Xied5c12072013-02-28 10:04:33 +00006050/*
6051 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
6052 * root: the root of the parent directory
6053 * rsv: block reservation
6054 * items: the number of items that we need do reservation
Lu Fengqia5b7f422018-08-09 09:46:04 +08006055 * use_global_rsv: allow fallback to the global block reservation
Miao Xied5c12072013-02-28 10:04:33 +00006056 *
6057 * This function is used to reserve the space for snapshot/subvolume
6058 * creation and deletion. Those operations are different with the
6059 * common file/directory operations, they change two fs/file trees
6060 * and root tree, the number of items that the qgroup reserves is
6061 * different with the free space reservation. So we can not use
Nicholas D Steeves01327612016-05-19 21:18:45 -04006062 * the space reservation mechanism in start_transaction().
Miao Xied5c12072013-02-28 10:04:33 +00006063 */
6064int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
Lu Fengqia5b7f422018-08-09 09:46:04 +08006065 struct btrfs_block_rsv *rsv, int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04006066 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04006067{
Lu Fengqia5b7f422018-08-09 09:46:04 +08006068 u64 qgroup_num_bytes = 0;
Miao Xied5c12072013-02-28 10:04:33 +00006069 u64 num_bytes;
6070 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006071 struct btrfs_fs_info *fs_info = root->fs_info;
6072 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00006073
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006074 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
Miao Xied5c12072013-02-28 10:04:33 +00006075 /* One for parent inode, two for dir entries */
Lu Fengqia5b7f422018-08-09 09:46:04 +08006076 qgroup_num_bytes = 3 * fs_info->nodesize;
6077 ret = btrfs_qgroup_reserve_meta_prealloc(root,
6078 qgroup_num_bytes, true);
Miao Xied5c12072013-02-28 10:04:33 +00006079 if (ret)
6080 return ret;
Miao Xied5c12072013-02-28 10:04:33 +00006081 }
6082
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006083 num_bytes = btrfs_calc_trans_metadata_size(fs_info, items);
6084 rsv->space_info = __find_space_info(fs_info,
Miao Xied5c12072013-02-28 10:04:33 +00006085 BTRFS_BLOCK_GROUP_METADATA);
6086 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
6087 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04006088
6089 if (ret == -ENOSPC && use_global_rsv)
Lu Fengqi3a584172018-08-04 21:10:55 +08006090 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, true);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04006091
Lu Fengqia5b7f422018-08-09 09:46:04 +08006092 if (ret && qgroup_num_bytes)
6093 btrfs_qgroup_free_meta_prealloc(root, qgroup_num_bytes);
Miao Xied5c12072013-02-28 10:04:33 +00006094
6095 return ret;
6096}
6097
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006098void btrfs_subvolume_release_metadata(struct btrfs_fs_info *fs_info,
David Sterba7775c812017-02-10 19:18:18 +01006099 struct btrfs_block_rsv *rsv)
Miao Xied5c12072013-02-28 10:04:33 +00006100{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006101 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04006102}
6103
Josef Bacik69fe2d72017-10-19 14:15:57 -04006104static void btrfs_calculate_inode_block_rsv_size(struct btrfs_fs_info *fs_info,
6105 struct btrfs_inode *inode)
Josef Bacik9e0baf62011-07-15 15:16:44 +00006106{
Josef Bacik69fe2d72017-10-19 14:15:57 -04006107 struct btrfs_block_rsv *block_rsv = &inode->block_rsv;
6108 u64 reserve_size = 0;
Qu Wenruoff6bc372017-12-21 13:42:04 +08006109 u64 qgroup_rsv_size = 0;
Josef Bacik69fe2d72017-10-19 14:15:57 -04006110 u64 csum_leaves;
6111 unsigned outstanding_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006112
Josef Bacik69fe2d72017-10-19 14:15:57 -04006113 lockdep_assert_held(&inode->lock);
6114 outstanding_extents = inode->outstanding_extents;
6115 if (outstanding_extents)
6116 reserve_size = btrfs_calc_trans_metadata_size(fs_info,
6117 outstanding_extents + 1);
6118 csum_leaves = btrfs_csum_bytes_to_leaves(fs_info,
6119 inode->csum_bytes);
6120 reserve_size += btrfs_calc_trans_metadata_size(fs_info,
6121 csum_leaves);
Qu Wenruoff6bc372017-12-21 13:42:04 +08006122 /*
6123 * For qgroup rsv, the calculation is very simple:
6124 * account one nodesize for each outstanding extent
6125 *
6126 * This is overestimating in most cases.
6127 */
6128 qgroup_rsv_size = outstanding_extents * fs_info->nodesize;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006129
Josef Bacik69fe2d72017-10-19 14:15:57 -04006130 spin_lock(&block_rsv->lock);
6131 block_rsv->size = reserve_size;
Qu Wenruoff6bc372017-12-21 13:42:04 +08006132 block_rsv->qgroup_rsv_size = qgroup_rsv_size;
Josef Bacik69fe2d72017-10-19 14:15:57 -04006133 spin_unlock(&block_rsv->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006134}
6135
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006136int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006137{
David Sterba3ffbd682018-06-29 10:56:42 +02006138 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Josef Bacik69fe2d72017-10-19 14:15:57 -04006139 unsigned nr_extents;
Miao Xie08e007d2012-10-16 11:33:38 +00006140 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07006141 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006142 bool delalloc_lock = true;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006143
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006144 /* If we are a free space inode we need to not flush since we will be in
6145 * the middle of a transaction commit. We also don't need the delalloc
6146 * mutex since we won't race with anybody. We need this mostly to make
6147 * lockdep shut its filthy mouth.
Josef Bacikbac357dc2016-07-20 16:48:45 -07006148 *
6149 * If we have a transaction open (can happen if we call truncate_block
6150 * from truncate), then we need FLUSH_LIMIT so we don't deadlock.
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006151 */
6152 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00006153 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006154 delalloc_lock = false;
Nikolay Borisovda07d4a2018-01-12 16:21:05 +02006155 } else {
6156 if (current->journal_info)
6157 flush = BTRFS_RESERVE_FLUSH_LIMIT;
Josef Bacikc09544e2011-08-30 10:19:10 -04006158
Nikolay Borisovda07d4a2018-01-12 16:21:05 +02006159 if (btrfs_transaction_in_commit(fs_info))
6160 schedule_timeout(1);
6161 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006162
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006163 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006164 mutex_lock(&inode->delalloc_mutex);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006165
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006166 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006167
6168 /* Add our new extents and calculate the new rsv size. */
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006169 spin_lock(&inode->lock);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006170 nr_extents = count_max_extents(num_bytes);
Josef Bacik8b62f872017-10-19 14:15:55 -04006171 btrfs_mod_outstanding_extents(inode, nr_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006172 inode->csum_bytes += num_bytes;
6173 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006174 spin_unlock(&inode->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05006175
Josef Bacik69fe2d72017-10-19 14:15:57 -04006176 ret = btrfs_inode_rsv_refill(inode, flush);
Qu Wenruo43b18592017-12-12 15:34:32 +08006177 if (unlikely(ret))
Wang Shilong88e081bf2013-03-01 11:36:01 +00006178 goto out_fail;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006179
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006180 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006181 mutex_unlock(&inode->delalloc_mutex);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006182 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00006183
6184out_fail:
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006185 spin_lock(&inode->lock);
Josef Bacik8b62f872017-10-19 14:15:55 -04006186 nr_extents = count_max_extents(num_bytes);
6187 btrfs_mod_outstanding_extents(inode, -nr_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006188 inode->csum_bytes -= num_bytes;
6189 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006190 spin_unlock(&inode->lock);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006191
Qu Wenruo43b18592017-12-12 15:34:32 +08006192 btrfs_inode_rsv_release(inode, true);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006193 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006194 mutex_unlock(&inode->delalloc_mutex);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006195 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006196}
6197
Josef Bacik7709cde2011-08-04 10:25:02 -04006198/**
6199 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
Josef Bacik8b62f872017-10-19 14:15:55 -04006200 * @inode: the inode to release the reservation for.
6201 * @num_bytes: the number of bytes we are releasing.
Qu Wenruo43b18592017-12-12 15:34:32 +08006202 * @qgroup_free: free qgroup reservation or convert it to per-trans reservation
Josef Bacik7709cde2011-08-04 10:25:02 -04006203 *
6204 * This will release the metadata reservation for an inode. This can be called
6205 * once we complete IO for a given set of bytes to release their metadata
Josef Bacik8b62f872017-10-19 14:15:55 -04006206 * reservations, or on error for the same reason.
Josef Bacik7709cde2011-08-04 10:25:02 -04006207 */
Qu Wenruo43b18592017-12-12 15:34:32 +08006208void btrfs_delalloc_release_metadata(struct btrfs_inode *inode, u64 num_bytes,
6209 bool qgroup_free)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006210{
David Sterba3ffbd682018-06-29 10:56:42 +02006211 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006212
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006213 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006214 spin_lock(&inode->lock);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006215 inode->csum_bytes -= num_bytes;
6216 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006217 spin_unlock(&inode->lock);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006218
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006219 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04006220 return;
6221
Qu Wenruo43b18592017-12-12 15:34:32 +08006222 btrfs_inode_rsv_release(inode, qgroup_free);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006223}
6224
Josef Bacik7709cde2011-08-04 10:25:02 -04006225/**
Josef Bacik8b62f872017-10-19 14:15:55 -04006226 * btrfs_delalloc_release_extents - release our outstanding_extents
6227 * @inode: the inode to balance the reservation for.
6228 * @num_bytes: the number of bytes we originally reserved with
Qu Wenruo43b18592017-12-12 15:34:32 +08006229 * @qgroup_free: do we need to free qgroup meta reservation or convert them.
Josef Bacik8b62f872017-10-19 14:15:55 -04006230 *
6231 * When we reserve space we increase outstanding_extents for the extents we may
6232 * add. Once we've set the range as delalloc or created our ordered extents we
6233 * have outstanding_extents to track the real usage, so we use this to free our
6234 * temporarily tracked outstanding_extents. This _must_ be used in conjunction
6235 * with btrfs_delalloc_reserve_metadata.
6236 */
Qu Wenruo43b18592017-12-12 15:34:32 +08006237void btrfs_delalloc_release_extents(struct btrfs_inode *inode, u64 num_bytes,
6238 bool qgroup_free)
Josef Bacik8b62f872017-10-19 14:15:55 -04006239{
David Sterba3ffbd682018-06-29 10:56:42 +02006240 struct btrfs_fs_info *fs_info = inode->root->fs_info;
Josef Bacik8b62f872017-10-19 14:15:55 -04006241 unsigned num_extents;
Josef Bacik8b62f872017-10-19 14:15:55 -04006242
6243 spin_lock(&inode->lock);
6244 num_extents = count_max_extents(num_bytes);
6245 btrfs_mod_outstanding_extents(inode, -num_extents);
Josef Bacik69fe2d72017-10-19 14:15:57 -04006246 btrfs_calculate_inode_block_rsv_size(fs_info, inode);
Josef Bacik8b62f872017-10-19 14:15:55 -04006247 spin_unlock(&inode->lock);
6248
Josef Bacik8b62f872017-10-19 14:15:55 -04006249 if (btrfs_is_testing(fs_info))
6250 return;
6251
Qu Wenruo43b18592017-12-12 15:34:32 +08006252 btrfs_inode_rsv_release(inode, qgroup_free);
Josef Bacik8b62f872017-10-19 14:15:55 -04006253}
6254
6255/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006256 * btrfs_delalloc_reserve_space - reserve data and metadata space for
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006257 * delalloc
6258 * @inode: inode we're writing to
6259 * @start: start range we are writing to
6260 * @len: how long the range we are writing to
Qu Wenruo364ecf32017-02-27 15:10:38 +08006261 * @reserved: mandatory parameter, record actually reserved qgroup ranges of
6262 * current reservation.
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006263 *
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006264 * This will do the following things
6265 *
6266 * o reserve space in data space info for num bytes
6267 * and reserve precious corresponding qgroup space
6268 * (Done in check_data_free_space)
6269 *
6270 * o reserve space for metadata space, based on the number of outstanding
6271 * extents and how much csums will be needed
6272 * also reserve metadata space in a per root over-reserve method.
6273 * o add to the inodes->delalloc_bytes
6274 * o add it to the fs_info's delalloc inodes list.
6275 * (Above 3 all done in delalloc_reserve_metadata)
6276 *
6277 * Return 0 for success
6278 * Return <0 for error(-ENOSPC or -EQUOT)
6279 */
Qu Wenruo364ecf32017-02-27 15:10:38 +08006280int btrfs_delalloc_reserve_space(struct inode *inode,
6281 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006282{
6283 int ret;
6284
Qu Wenruo364ecf32017-02-27 15:10:38 +08006285 ret = btrfs_check_data_free_space(inode, reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006286 if (ret < 0)
6287 return ret;
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006288 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode), len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006289 if (ret < 0)
Qu Wenruobc42bda2017-02-27 15:10:39 +08006290 btrfs_free_reserved_data_space(inode, *reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006291 return ret;
6292}
6293
6294/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006295 * btrfs_delalloc_release_space - release data and metadata space for delalloc
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006296 * @inode: inode we're releasing space for
6297 * @start: start position of the space already reserved
6298 * @len: the len of the space already reserved
Josef Bacik8b62f872017-10-19 14:15:55 -04006299 * @release_bytes: the len of the space we consumed or didn't use
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006300 *
6301 * This function will release the metadata space that was not used and will
6302 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
6303 * list if there are no delalloc bytes left.
6304 * Also it will handle the qgroup reserved space.
6305 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08006306void btrfs_delalloc_release_space(struct inode *inode,
Josef Bacik8b62f872017-10-19 14:15:55 -04006307 struct extent_changeset *reserved,
Qu Wenruo43b18592017-12-12 15:34:32 +08006308 u64 start, u64 len, bool qgroup_free)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006309{
Qu Wenruo43b18592017-12-12 15:34:32 +08006310 btrfs_delalloc_release_metadata(BTRFS_I(inode), len, qgroup_free);
Qu Wenruobc42bda2017-02-27 15:10:39 +08006311 btrfs_free_reserved_data_space(inode, reserved, start, len);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006312}
6313
Josef Bacikce93ec52014-11-17 15:45:48 -05006314static int update_block_group(struct btrfs_trans_handle *trans,
Jeff Mahoney6202df62016-06-22 18:54:22 -04006315 struct btrfs_fs_info *info, u64 bytenr,
Josef Bacikce93ec52014-11-17 15:45:48 -05006316 u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04006317{
Josef Bacik0af3d002010-06-21 14:48:16 -04006318 struct btrfs_block_group_cache *cache = NULL;
Chris Masondb945352007-10-15 16:15:53 -04006319 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006320 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04006321 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04006322 int factor;
Josef Bacikba2c4d42018-12-03 10:20:33 -05006323 int ret = 0;
Chris Mason3e1ad542007-05-07 20:03:49 -04006324
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006325 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00006326 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02006327 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006328 if (alloc)
6329 old_val += num_bytes;
6330 else
6331 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02006332 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00006333 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006334
Chris Masond3977122009-01-05 21:25:51 -05006335 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04006336 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikba2c4d42018-12-03 10:20:33 -05006337 if (!cache) {
6338 ret = -ENOENT;
6339 break;
6340 }
David Sterba46df06b2018-07-13 20:46:30 +02006341 factor = btrfs_bg_type_to_factor(cache->flags);
6342
Josef Bacik9d66e232010-08-25 16:54:15 -04006343 /*
6344 * If this block group has free space cache written out, we
6345 * need to make sure to load it if we are removing space. This
6346 * is because we need the unpinning stage to actually add the
6347 * space back to the block group, otherwise we will leak space.
6348 */
6349 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00006350 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04006351
Chris Masondb945352007-10-15 16:15:53 -04006352 byte_in_group = bytenr - cache->key.objectid;
6353 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04006354
Josef Bacik25179202008-10-29 14:49:05 -04006355 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04006356 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04006357
Jeff Mahoney6202df62016-06-22 18:54:22 -04006358 if (btrfs_test_opt(info, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04006359 cache->disk_cache_state < BTRFS_DC_CLEAR)
6360 cache->disk_cache_state = BTRFS_DC_CLEAR;
6361
Chris Mason9078a3e2007-04-26 16:46:15 -04006362 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04006363 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04006364 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04006365 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006366 btrfs_set_block_group_used(&cache->item, old_val);
6367 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006368 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb822010-05-16 10:46:24 -04006369 cache->space_info->bytes_used += num_bytes;
6370 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04006371 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006372 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04006373 } else {
Chris Masondb945352007-10-15 16:15:53 -04006374 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00006375 btrfs_set_block_group_used(&cache->item, old_val);
6376 cache->pinned += num_bytes;
Lu Fengqie2907c12018-10-24 20:24:02 +08006377 update_bytes_pinned(cache->space_info, num_bytes);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006378 cache->space_info->bytes_used -= num_bytes;
6379 cache->space_info->disk_used -= num_bytes * factor;
6380 spin_unlock(&cache->lock);
6381 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04006382
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006383 trace_btrfs_space_reservation(info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006384 cache->space_info->flags,
6385 num_bytes, 1);
Ethan Liendec59fa2018-07-13 16:50:42 +08006386 percpu_counter_add_batch(&cache->space_info->total_bytes_pinned,
6387 num_bytes,
6388 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006389 set_extent_dirty(info->pinned_extents,
6390 bytenr, bytenr + num_bytes - 1,
6391 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04006392 }
Chris Mason1bbc6212015-04-06 12:46:08 -07006393
6394 spin_lock(&trans->transaction->dirty_bgs_lock);
6395 if (list_empty(&cache->dirty_list)) {
6396 list_add_tail(&cache->dirty_list,
6397 &trans->transaction->dirty_bgs);
Bart Van Asschebece2e82018-06-20 10:03:31 -07006398 trans->transaction->num_dirty_bgs++;
Josef Bacikba2c4d42018-12-03 10:20:33 -05006399 trans->delayed_ref_updates++;
Chris Mason1bbc6212015-04-06 12:46:08 -07006400 btrfs_get_block_group(cache);
6401 }
6402 spin_unlock(&trans->transaction->dirty_bgs_lock);
6403
Filipe Manana036a9342015-11-23 15:25:16 +00006404 /*
6405 * No longer have used bytes in this block group, queue it for
6406 * deletion. We do this after adding the block group to the
6407 * dirty list to avoid races between cleaner kthread and space
6408 * cache writeout.
6409 */
Qu Wenruo031f24d2018-05-22 16:43:47 +08006410 if (!alloc && old_val == 0)
6411 btrfs_mark_bg_unused(cache);
Filipe Manana036a9342015-11-23 15:25:16 +00006412
Chris Masonfa9c0d792009-04-03 09:47:43 -04006413 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04006414 total -= num_bytes;
6415 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006416 }
Josef Bacikba2c4d42018-12-03 10:20:33 -05006417
6418 /* Modified block groups are accounted for in the delayed_refs_rsv. */
6419 btrfs_update_delayed_refs_rsv(trans);
6420 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04006421}
Chris Mason6324fbf2008-03-24 15:01:59 -04006422
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006423static u64 first_logical_byte(struct btrfs_fs_info *fs_info, u64 search_start)
Chris Masona061fc82008-05-07 11:43:44 -04006424{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006425 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05006426 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006427
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006428 spin_lock(&fs_info->block_group_cache_lock);
6429 bytenr = fs_info->first_logical_byte;
6430 spin_unlock(&fs_info->block_group_cache_lock);
Liu Boa1897fd2012-12-27 09:01:23 +00006431
6432 if (bytenr < (u64)-1)
6433 return bytenr;
6434
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006435 cache = btrfs_lookup_first_block_group(fs_info, search_start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006436 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04006437 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006438
Yan Zhengd2fb3432008-12-11 16:30:39 -05006439 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006440 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05006441
6442 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04006443}
6444
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006445static int pin_down_extent(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006446 struct btrfs_block_group_cache *cache,
6447 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05006448{
Yan Zheng11833d62009-09-11 16:11:19 -04006449 spin_lock(&cache->space_info->lock);
6450 spin_lock(&cache->lock);
6451 cache->pinned += num_bytes;
Lu Fengqie2907c12018-10-24 20:24:02 +08006452 update_bytes_pinned(cache->space_info, num_bytes);
Yan Zheng11833d62009-09-11 16:11:19 -04006453 if (reserved) {
6454 cache->reserved -= num_bytes;
6455 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05006456 }
Yan Zheng11833d62009-09-11 16:11:19 -04006457 spin_unlock(&cache->lock);
6458 spin_unlock(&cache->space_info->lock);
6459
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006460 trace_btrfs_space_reservation(fs_info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006461 cache->space_info->flags, num_bytes, 1);
Ethan Liendec59fa2018-07-13 16:50:42 +08006462 percpu_counter_add_batch(&cache->space_info->total_bytes_pinned,
6463 num_bytes, BTRFS_TOTAL_BYTES_PINNED_BATCH);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006464 set_extent_dirty(fs_info->pinned_extents, bytenr,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006465 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05006466 return 0;
6467}
Chris Mason9078a3e2007-04-26 16:46:15 -04006468
Yan, Zhengf0486c62010-05-16 10:46:25 -04006469/*
6470 * this function must be called within transaction
6471 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006472int btrfs_pin_extent(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006473 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04006474{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006475 struct btrfs_block_group_cache *cache;
6476
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006477 cache = btrfs_lookup_block_group(fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006478 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006479
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006480 pin_down_extent(fs_info, cache, bytenr, num_bytes, reserved);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006481
6482 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04006483 return 0;
6484}
Zheng Yane8569812008-09-26 10:05:48 -04006485
Yan, Zhengf0486c62010-05-16 10:46:25 -04006486/*
Chris Masone688b7252011-10-31 20:52:39 -04006487 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04006488 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006489int btrfs_pin_extent_for_log_replay(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04006490 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006491{
Chris Masone688b7252011-10-31 20:52:39 -04006492 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04006493 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04006494
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006495 cache = btrfs_lookup_block_group(fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006496 if (!cache)
6497 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04006498
6499 /*
6500 * pull in the free space cache (if any) so that our pin
6501 * removes the free space from the cache. We have load_only set
6502 * to one because the slow code to read in the free extents does check
6503 * the pinned extents.
6504 */
Liu Bof6373bf2012-12-27 09:01:18 +00006505 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04006506
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006507 pin_down_extent(fs_info, cache, bytenr, num_bytes, 0);
Chris Masone688b7252011-10-31 20:52:39 -04006508
6509 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04006510 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04006511 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006512 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04006513}
6514
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006515static int __exclude_logged_extent(struct btrfs_fs_info *fs_info,
6516 u64 start, u64 num_bytes)
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006517{
6518 int ret;
6519 struct btrfs_block_group_cache *block_group;
6520 struct btrfs_caching_control *caching_ctl;
6521
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006522 block_group = btrfs_lookup_block_group(fs_info, start);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006523 if (!block_group)
6524 return -EINVAL;
6525
6526 cache_block_group(block_group, 0);
6527 caching_ctl = get_caching_control(block_group);
6528
6529 if (!caching_ctl) {
6530 /* Logic error */
6531 BUG_ON(!block_group_cache_done(block_group));
6532 ret = btrfs_remove_free_space(block_group, start, num_bytes);
6533 } else {
6534 mutex_lock(&caching_ctl->mutex);
6535
6536 if (start >= caching_ctl->progress) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006537 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006538 } else if (start + num_bytes <= caching_ctl->progress) {
6539 ret = btrfs_remove_free_space(block_group,
6540 start, num_bytes);
6541 } else {
6542 num_bytes = caching_ctl->progress - start;
6543 ret = btrfs_remove_free_space(block_group,
6544 start, num_bytes);
6545 if (ret)
6546 goto out_lock;
6547
6548 num_bytes = (start + num_bytes) -
6549 caching_ctl->progress;
6550 start = caching_ctl->progress;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006551 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006552 }
6553out_lock:
6554 mutex_unlock(&caching_ctl->mutex);
6555 put_caching_control(caching_ctl);
6556 }
6557 btrfs_put_block_group(block_group);
6558 return ret;
6559}
6560
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006561int btrfs_exclude_logged_extents(struct btrfs_fs_info *fs_info,
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006562 struct extent_buffer *eb)
6563{
6564 struct btrfs_file_extent_item *item;
6565 struct btrfs_key key;
6566 int found_type;
6567 int i;
Gu Jinxiangb89311e2018-05-22 17:46:51 +08006568 int ret = 0;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006569
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006570 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS))
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006571 return 0;
6572
6573 for (i = 0; i < btrfs_header_nritems(eb); i++) {
6574 btrfs_item_key_to_cpu(eb, &key, i);
6575 if (key.type != BTRFS_EXTENT_DATA_KEY)
6576 continue;
6577 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
6578 found_type = btrfs_file_extent_type(eb, item);
6579 if (found_type == BTRFS_FILE_EXTENT_INLINE)
6580 continue;
6581 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
6582 continue;
6583 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
6584 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
Gu Jinxiangb89311e2018-05-22 17:46:51 +08006585 ret = __exclude_logged_extent(fs_info, key.objectid, key.offset);
6586 if (ret)
6587 break;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006588 }
6589
Gu Jinxiangb89311e2018-05-22 17:46:51 +08006590 return ret;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006591}
6592
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006593static void
6594btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg)
6595{
6596 atomic_inc(&bg->reservations);
6597}
6598
6599void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
6600 const u64 start)
6601{
6602 struct btrfs_block_group_cache *bg;
6603
6604 bg = btrfs_lookup_block_group(fs_info, start);
6605 ASSERT(bg);
6606 if (atomic_dec_and_test(&bg->reservations))
Peter Zijlstra46259562018-03-15 11:43:08 +01006607 wake_up_var(&bg->reservations);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006608 btrfs_put_block_group(bg);
6609}
6610
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006611void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg)
6612{
6613 struct btrfs_space_info *space_info = bg->space_info;
6614
6615 ASSERT(bg->ro);
6616
6617 if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA))
6618 return;
6619
6620 /*
6621 * Our block group is read only but before we set it to read only,
6622 * some task might have had allocated an extent from it already, but it
6623 * has not yet created a respective ordered extent (and added it to a
6624 * root's list of ordered extents).
6625 * Therefore wait for any task currently allocating extents, since the
6626 * block group's reservations counter is incremented while a read lock
6627 * on the groups' semaphore is held and decremented after releasing
6628 * the read access on that semaphore and creating the ordered extent.
6629 */
6630 down_write(&space_info->groups_sem);
6631 up_write(&space_info->groups_sem);
6632
Peter Zijlstra46259562018-03-15 11:43:08 +01006633 wait_var_event(&bg->reservations, !atomic_read(&bg->reservations));
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006634}
6635
Josef Bacikfb25e912011-07-26 17:00:46 -04006636/**
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006637 * btrfs_add_reserved_bytes - update the block_group and space info counters
Josef Bacikfb25e912011-07-26 17:00:46 -04006638 * @cache: The cache we are manipulating
Wang Xiaoguang18513092016-07-25 15:51:40 +08006639 * @ram_bytes: The number of bytes of file content, and will be same to
6640 * @num_bytes except for the compress path.
Josef Bacikfb25e912011-07-26 17:00:46 -04006641 * @num_bytes: The number of bytes in question
Miao Xiee570fd22014-06-19 10:42:50 +08006642 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04006643 *
Xiaoguang Wang745699e2016-09-23 12:38:50 +08006644 * This is called by the allocator when it reserves space. If this is a
6645 * reservation and the block group has become read only we cannot make the
6646 * reservation and return -EAGAIN, otherwise this function always succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04006647 */
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006648static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
Wang Xiaoguang18513092016-07-25 15:51:40 +08006649 u64 ram_bytes, u64 num_bytes, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006650{
Josef Bacikfb25e912011-07-26 17:00:46 -04006651 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006652 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006653
Josef Bacikfb25e912011-07-26 17:00:46 -04006654 spin_lock(&space_info->lock);
6655 spin_lock(&cache->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006656 if (cache->ro) {
6657 ret = -EAGAIN;
Josef Bacikfb25e912011-07-26 17:00:46 -04006658 } else {
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006659 cache->reserved += num_bytes;
6660 space_info->bytes_reserved += num_bytes;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08006661 update_bytes_may_use(space_info, -ram_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08006662 if (delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006663 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006664 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006665 spin_unlock(&cache->lock);
6666 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006667 return ret;
6668}
6669
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006670/**
6671 * btrfs_free_reserved_bytes - update the block_group and space info counters
6672 * @cache: The cache we are manipulating
6673 * @num_bytes: The number of bytes in question
6674 * @delalloc: The blocks are allocated for the delalloc write
6675 *
6676 * This is called by somebody who is freeing space that was never actually used
6677 * on disk. For example if you reserve some space for a new leaf in transaction
6678 * A and before transaction A commits you free that leaf, you call this with
6679 * reserve set to 0 in order to clear the reservation.
6680 */
6681
zhong jiang556f3ca2018-08-17 00:37:14 +08006682static void btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
6683 u64 num_bytes, int delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006684{
6685 struct btrfs_space_info *space_info = cache->space_info;
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006686
6687 spin_lock(&space_info->lock);
6688 spin_lock(&cache->lock);
6689 if (cache->ro)
6690 space_info->bytes_readonly += num_bytes;
6691 cache->reserved -= num_bytes;
6692 space_info->bytes_reserved -= num_bytes;
Josef Bacik21a94f72018-10-11 15:54:03 -04006693 space_info->max_extent_size = 0;
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006694
6695 if (delalloc)
6696 cache->delalloc_bytes -= num_bytes;
6697 spin_unlock(&cache->lock);
6698 spin_unlock(&space_info->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006699}
David Sterba8b74c032017-02-10 19:20:56 +01006700void btrfs_prepare_extent_commit(struct btrfs_fs_info *fs_info)
Yan Zheng11833d62009-09-11 16:11:19 -04006701{
Yan Zheng11833d62009-09-11 16:11:19 -04006702 struct btrfs_caching_control *next;
6703 struct btrfs_caching_control *caching_ctl;
6704 struct btrfs_block_group_cache *cache;
6705
Josef Bacik9e351cc2014-03-13 15:42:13 -04006706 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04006707
6708 list_for_each_entry_safe(caching_ctl, next,
6709 &fs_info->caching_block_groups, list) {
6710 cache = caching_ctl->block_group;
6711 if (block_group_cache_done(cache)) {
6712 cache->last_byte_to_unpin = (u64)-1;
6713 list_del_init(&caching_ctl->list);
6714 put_caching_control(caching_ctl);
6715 } else {
6716 cache->last_byte_to_unpin = caching_ctl->progress;
6717 }
6718 }
6719
6720 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6721 fs_info->pinned_extents = &fs_info->freed_extents[1];
6722 else
6723 fs_info->pinned_extents = &fs_info->freed_extents[0];
6724
Josef Bacik9e351cc2014-03-13 15:42:13 -04006725 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006726
6727 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04006728}
6729
Josef Bacikc759c4e2015-10-02 15:25:10 -04006730/*
6731 * Returns the free cluster for the given space info and sets empty_cluster to
6732 * what it should be based on the mount options.
6733 */
6734static struct btrfs_free_cluster *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006735fetch_cluster_info(struct btrfs_fs_info *fs_info,
6736 struct btrfs_space_info *space_info, u64 *empty_cluster)
Josef Bacikc759c4e2015-10-02 15:25:10 -04006737{
6738 struct btrfs_free_cluster *ret = NULL;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006739
6740 *empty_cluster = 0;
6741 if (btrfs_mixed_space_info(space_info))
6742 return ret;
6743
Josef Bacikc759c4e2015-10-02 15:25:10 -04006744 if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006745 ret = &fs_info->meta_alloc_cluster;
Hans van Kranenburg583b7232017-07-28 08:31:28 +02006746 if (btrfs_test_opt(fs_info, SSD))
6747 *empty_cluster = SZ_2M;
6748 else
Byongho Leeee221842015-12-15 01:42:10 +09006749 *empty_cluster = SZ_64K;
Hans van Kranenburg583b7232017-07-28 08:31:28 +02006750 } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) &&
6751 btrfs_test_opt(fs_info, SSD_SPREAD)) {
6752 *empty_cluster = SZ_2M;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006753 ret = &fs_info->data_alloc_cluster;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006754 }
6755
6756 return ret;
6757}
6758
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006759static int unpin_extent_range(struct btrfs_fs_info *fs_info,
6760 u64 start, u64 end,
Filipe Manana678886b2014-12-07 21:31:47 +00006761 const bool return_free_space)
Yan Zheng11833d62009-09-11 16:11:19 -04006762{
Yan Zheng11833d62009-09-11 16:11:19 -04006763 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04006764 struct btrfs_space_info *space_info;
6765 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006766 struct btrfs_free_cluster *cluster = NULL;
Yan Zheng11833d62009-09-11 16:11:19 -04006767 u64 len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006768 u64 total_unpinned = 0;
6769 u64 empty_cluster = 0;
Josef Bacik7b398f82012-10-22 15:52:28 -04006770 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04006771
6772 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04006773 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04006774 if (!cache ||
6775 start >= cache->key.objectid + cache->key.offset) {
6776 if (cache)
6777 btrfs_put_block_group(cache);
Josef Bacikc759c4e2015-10-02 15:25:10 -04006778 total_unpinned = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006779 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006780 BUG_ON(!cache); /* Logic error */
Josef Bacikc759c4e2015-10-02 15:25:10 -04006781
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006782 cluster = fetch_cluster_info(fs_info,
Josef Bacikc759c4e2015-10-02 15:25:10 -04006783 cache->space_info,
6784 &empty_cluster);
6785 empty_cluster <<= 1;
Yan Zheng11833d62009-09-11 16:11:19 -04006786 }
6787
6788 len = cache->key.objectid + cache->key.offset - start;
6789 len = min(len, end + 1 - start);
6790
6791 if (start < cache->last_byte_to_unpin) {
6792 len = min(len, cache->last_byte_to_unpin - start);
Filipe Manana678886b2014-12-07 21:31:47 +00006793 if (return_free_space)
6794 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04006795 }
Josef Bacik25179202008-10-29 14:49:05 -04006796
Yan, Zhengf0486c62010-05-16 10:46:25 -04006797 start += len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006798 total_unpinned += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006799 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006800
Josef Bacikc759c4e2015-10-02 15:25:10 -04006801 /*
6802 * If this space cluster has been marked as fragmented and we've
6803 * unpinned enough in this block group to potentially allow a
6804 * cluster to be created inside of it go ahead and clear the
6805 * fragmented check.
6806 */
6807 if (cluster && cluster->fragmented &&
6808 total_unpinned > empty_cluster) {
6809 spin_lock(&cluster->lock);
6810 cluster->fragmented = 0;
6811 spin_unlock(&cluster->lock);
6812 }
6813
Josef Bacik7b398f82012-10-22 15:52:28 -04006814 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006815 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006816 cache->pinned -= len;
Lu Fengqie2907c12018-10-24 20:24:02 +08006817 update_bytes_pinned(space_info, -len);
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006818
6819 trace_btrfs_space_reservation(fs_info, "pinned",
6820 space_info->flags, len, 0);
Josef Bacik4f4db212015-09-29 11:40:47 -04006821 space_info->max_extent_size = 0;
Ethan Liendec59fa2018-07-13 16:50:42 +08006822 percpu_counter_add_batch(&space_info->total_bytes_pinned,
6823 -len, BTRFS_TOTAL_BYTES_PINNED_BATCH);
Josef Bacik7b398f82012-10-22 15:52:28 -04006824 if (cache->ro) {
6825 space_info->bytes_readonly += len;
6826 readonly = true;
6827 }
Josef Bacik25179202008-10-29 14:49:05 -04006828 spin_unlock(&cache->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006829 if (!readonly && return_free_space &&
6830 global_rsv->space_info == space_info) {
6831 u64 to_add = len;
Nikolay Borisov92ac58e2017-08-17 10:52:28 +03006832
Josef Bacik7b398f82012-10-22 15:52:28 -04006833 spin_lock(&global_rsv->lock);
6834 if (!global_rsv->full) {
Josef Bacik957780e2016-05-17 13:30:55 -04006835 to_add = min(len, global_rsv->size -
6836 global_rsv->reserved);
6837 global_rsv->reserved += to_add;
Qu Wenruo9f9b8e82018-10-24 20:24:01 +08006838 update_bytes_may_use(space_info, to_add);
Josef Bacik7b398f82012-10-22 15:52:28 -04006839 if (global_rsv->reserved >= global_rsv->size)
6840 global_rsv->full = 1;
Josef Bacik957780e2016-05-17 13:30:55 -04006841 trace_btrfs_space_reservation(fs_info,
6842 "space_info",
6843 space_info->flags,
6844 to_add, 1);
6845 len -= to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006846 }
6847 spin_unlock(&global_rsv->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006848 /* Add to any tickets we may have */
6849 if (len)
6850 space_info_add_new_bytes(fs_info, space_info,
6851 len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006852 }
6853 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006854 }
6855
6856 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006857 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006858 return 0;
6859}
6860
Nikolay Borisov5ead2dd2018-03-15 16:00:26 +02006861int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans)
Chris Masona28ec192007-03-06 20:08:01 -05006862{
Nikolay Borisov5ead2dd2018-03-15 16:00:26 +02006863 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006864 struct btrfs_block_group_cache *block_group, *tmp;
6865 struct list_head *deleted_bgs;
Yan Zheng11833d62009-09-11 16:11:19 -04006866 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006867 u64 start;
6868 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006869 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006870
Yan Zheng11833d62009-09-11 16:11:19 -04006871 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6872 unpin = &fs_info->freed_extents[1];
6873 else
6874 unpin = &fs_info->freed_extents[0];
6875
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006876 while (!trans->aborted) {
Filipe Manana0e6ec382018-11-16 13:04:44 +00006877 struct extent_state *cached_state = NULL;
6878
Filipe Mananad4b450c2015-01-29 19:18:25 +00006879 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006880 ret = find_first_extent_bit(unpin, 0, &start, &end,
Filipe Manana0e6ec382018-11-16 13:04:44 +00006881 EXTENT_DIRTY, &cached_state);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006882 if (ret) {
6883 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006884 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006885 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006886
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006887 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006888 ret = btrfs_discard_extent(fs_info, start,
Li Dongyang5378e602011-03-24 10:24:27 +00006889 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006890
Filipe Manana0e6ec382018-11-16 13:04:44 +00006891 clear_extent_dirty(unpin, start, end, &cached_state);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006892 unpin_extent_range(fs_info, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006893 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana0e6ec382018-11-16 13:04:44 +00006894 free_extent_state(cached_state);
Chris Masonb9473432009-03-13 11:00:37 -04006895 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006896 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006897
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006898 /*
6899 * Transaction is finished. We don't need the lock anymore. We
6900 * do need to clean up the block groups in case of a transaction
6901 * abort.
6902 */
6903 deleted_bgs = &trans->transaction->deleted_bgs;
6904 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
6905 u64 trimmed = 0;
6906
6907 ret = -EROFS;
6908 if (!trans->aborted)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006909 ret = btrfs_discard_extent(fs_info,
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006910 block_group->key.objectid,
6911 block_group->key.offset,
6912 &trimmed);
6913
6914 list_del_init(&block_group->bg_list);
6915 btrfs_put_block_group_trimming(block_group);
6916 btrfs_put_block_group(block_group);
6917
6918 if (ret) {
6919 const char *errstr = btrfs_decode_error(ret);
6920 btrfs_warn(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02006921 "discard failed while removing blockgroup: errno=%d %s",
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006922 ret, errstr);
6923 }
6924 }
6925
Chris Masone20d96d2007-03-22 12:13:20 -04006926 return 0;
6927}
6928
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006929static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
Nikolay Borisove72cb922018-06-20 15:48:57 +03006930 struct btrfs_delayed_ref_node *node, u64 parent,
6931 u64 root_objectid, u64 owner_objectid,
6932 u64 owner_offset, int refs_to_drop,
6933 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006934{
Nikolay Borisove72cb922018-06-20 15:48:57 +03006935 struct btrfs_fs_info *info = trans->fs_info;
Chris Masone2fa7222007-03-12 16:22:34 -04006936 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006937 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006938 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006939 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006940 struct btrfs_extent_item *ei;
6941 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006942 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006943 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006944 int extent_slot = 0;
6945 int found_extent = 0;
6946 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006947 u32 item_size;
6948 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006949 u64 bytenr = node->bytenr;
6950 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006951 int last_ref = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006952 bool skinny_metadata = btrfs_fs_incompat(info, SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006953
Chris Mason5caf2a02007-04-02 11:20:42 -04006954 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006955 if (!path)
6956 return -ENOMEM;
6957
David Sterbae4058b52015-11-27 16:31:35 +01006958 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04006959 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006960
6961 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6962 BUG_ON(!is_data && refs_to_drop != 1);
6963
Josef Bacik3173a182013-03-07 14:22:04 -05006964 if (is_data)
Thomas Meyer897ca812017-10-07 16:02:21 +02006965 skinny_metadata = false;
Josef Bacik3173a182013-03-07 14:22:04 -05006966
Nikolay Borisovfbe48012018-06-20 15:48:52 +03006967 ret = lookup_extent_backref(trans, path, &iref, bytenr, num_bytes,
6968 parent, root_objectid, owner_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006969 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006970 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006971 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006972 while (extent_slot >= 0) {
6973 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006974 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006975 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006976 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006977 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6978 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006979 found_extent = 1;
6980 break;
6981 }
Josef Bacik3173a182013-03-07 14:22:04 -05006982 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6983 key.offset == owner_objectid) {
6984 found_extent = 1;
6985 break;
6986 }
Chris Mason952fcca2008-02-18 16:33:44 -05006987 if (path->slots[0] - extent_slot > 5)
6988 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006989 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006990 }
Nikolay Borisova79865c2018-06-21 09:45:00 +03006991
Zheng Yan31840ae2008-09-23 13:14:14 -04006992 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006993 BUG_ON(iref);
Nikolay Borisov87cc7a82018-06-20 15:49:12 +03006994 ret = remove_extent_backref(trans, path, NULL,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05006995 refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006996 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006997 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006998 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006999 goto out;
7000 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007001 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04007002 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007003
7004 key.objectid = bytenr;
7005 key.type = BTRFS_EXTENT_ITEM_KEY;
7006 key.offset = num_bytes;
7007
Josef Bacik3173a182013-03-07 14:22:04 -05007008 if (!is_data && skinny_metadata) {
7009 key.type = BTRFS_METADATA_ITEM_KEY;
7010 key.offset = owner_objectid;
7011 }
7012
Zheng Yan31840ae2008-09-23 13:14:14 -04007013 ret = btrfs_search_slot(trans, extent_root,
7014 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05007015 if (ret > 0 && skinny_metadata && path->slots[0]) {
7016 /*
7017 * Couldn't find our skinny metadata item,
7018 * see if we have ye olde extent item.
7019 */
7020 path->slots[0]--;
7021 btrfs_item_key_to_cpu(path->nodes[0], &key,
7022 path->slots[0]);
7023 if (key.objectid == bytenr &&
7024 key.type == BTRFS_EXTENT_ITEM_KEY &&
7025 key.offset == num_bytes)
7026 ret = 0;
7027 }
7028
7029 if (ret > 0 && skinny_metadata) {
7030 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01007031 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05007032 key.type = BTRFS_EXTENT_ITEM_KEY;
7033 key.offset = num_bytes;
7034 btrfs_release_path(path);
7035 ret = btrfs_search_slot(trans, extent_root,
7036 &key, path, -1, 1);
7037 }
7038
Josef Bacikf3465ca2008-11-12 14:19:50 -05007039 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007040 btrfs_err(info,
7041 "umm, got %d back from search, was looking for %llu",
7042 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00007043 if (ret > 0)
David Sterbaa4f78752017-06-29 18:37:49 +02007044 btrfs_print_leaf(path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05007045 }
David Sterba005d6422012-09-18 07:52:32 -06007046 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007047 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007048 goto out;
7049 }
Zheng Yan31840ae2008-09-23 13:14:14 -04007050 extent_slot = path->slots[0];
7051 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05307052 } else if (WARN_ON(ret == -ENOENT)) {
David Sterbaa4f78752017-06-29 18:37:49 +02007053 btrfs_print_leaf(path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007054 btrfs_err(info,
7055 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007056 bytenr, parent, root_objectid, owner_objectid,
7057 owner_offset);
Jeff Mahoney66642832016-06-10 18:19:25 -04007058 btrfs_abort_transaction(trans, ret);
Josef Bacikc4a050b2014-03-14 16:36:53 -04007059 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007060 } else {
Jeff Mahoney66642832016-06-10 18:19:25 -04007061 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007062 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05007063 }
Chris Mason5f39d392007-10-15 16:14:19 -04007064
7065 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007066 item_size = btrfs_item_size_nr(leaf, extent_slot);
David Sterba6d8ff4e2018-06-26 16:20:59 +02007067 if (unlikely(item_size < sizeof(*ei))) {
Nikolay Borisovba3c2b12018-06-26 16:57:36 +03007068 ret = -EINVAL;
7069 btrfs_print_v0_err(info);
7070 btrfs_abort_transaction(trans, ret);
7071 goto out;
7072 }
Chris Mason952fcca2008-02-18 16:33:44 -05007073 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04007074 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05007075 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
7076 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007077 struct btrfs_tree_block_info *bi;
7078 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
7079 bi = (struct btrfs_tree_block_info *)(ei + 1);
7080 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05007081 }
7082
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007083 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04007084 if (refs < refs_to_drop) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007085 btrfs_err(info,
7086 "trying to drop %d refs but we only have %Lu for bytenr %Lu",
7087 refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04007088 ret = -EINVAL;
Jeff Mahoney66642832016-06-10 18:19:25 -04007089 btrfs_abort_transaction(trans, ret);
Josef Bacik32b02532013-04-24 16:38:50 -04007090 goto out;
7091 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007092 refs -= refs_to_drop;
7093
7094 if (refs > 0) {
7095 if (extent_op)
7096 __run_delayed_extent_op(extent_op, leaf, ei);
7097 /*
7098 * In the case of inline back ref, reference count will
7099 * be updated by remove_extent_backref
7100 */
7101 if (iref) {
7102 BUG_ON(!found_extent);
7103 } else {
7104 btrfs_set_extent_refs(leaf, ei, refs);
7105 btrfs_mark_buffer_dirty(leaf);
7106 }
7107 if (found_extent) {
Nikolay Borisov87cc7a82018-06-20 15:49:12 +03007108 ret = remove_extent_backref(trans, path, iref,
7109 refs_to_drop, is_data,
7110 &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06007111 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007112 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007113 goto out;
7114 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007115 }
7116 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007117 if (found_extent) {
7118 BUG_ON(is_data && refs_to_drop !=
Zhaolei9ed0dea2015-08-06 22:16:24 +08007119 extent_data_ref_count(path, iref));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007120 if (iref) {
7121 BUG_ON(path->slots[0] != extent_slot);
7122 } else {
7123 BUG_ON(path->slots[0] != extent_slot + 1);
7124 path->slots[0] = extent_slot;
7125 num_to_del = 2;
7126 }
Chris Mason78fae272007-03-25 11:35:08 -04007127 }
Chris Masonb9473432009-03-13 11:00:37 -04007128
Josef Bacikfcebe452014-05-13 17:30:47 -07007129 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05007130 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
7131 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06007132 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007133 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007134 goto out;
7135 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007136 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01007137
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007138 if (is_data) {
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04007139 ret = btrfs_del_csums(trans, info, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06007140 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007141 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007142 goto out;
7143 }
Chris Mason459931e2008-12-10 09:10:46 -05007144 }
7145
Nikolay Borisove7355e52018-05-10 15:44:55 +03007146 ret = add_to_free_space_tree(trans, bytenr, num_bytes);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007147 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007148 btrfs_abort_transaction(trans, ret);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007149 goto out;
7150 }
7151
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007152 ret = update_block_group(trans, info, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06007153 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007154 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007155 goto out;
7156 }
Chris Masona28ec192007-03-06 20:08:01 -05007157 }
Josef Bacikfcebe452014-05-13 17:30:47 -07007158 btrfs_release_path(path);
7159
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007160out:
Chris Mason5caf2a02007-04-02 11:20:42 -04007161 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05007162 return ret;
7163}
7164
7165/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007166 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04007167 * delayed ref for that extent as well. This searches the delayed ref tree for
7168 * a given extent, and if there are no other delayed refs to be processed, it
7169 * removes it from the tree.
7170 */
7171static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007172 u64 bytenr)
Chris Mason1887be62009-03-13 10:11:24 -04007173{
7174 struct btrfs_delayed_ref_head *head;
7175 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007176 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04007177
7178 delayed_refs = &trans->transaction->delayed_refs;
7179 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08007180 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Chris Mason1887be62009-03-13 10:11:24 -04007181 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08007182 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04007183
Josef Bacikd7df2c72014-01-23 09:21:38 -05007184 spin_lock(&head->lock);
Liu Boe3d03962018-08-23 03:51:50 +08007185 if (!RB_EMPTY_ROOT(&head->ref_tree.rb_root))
Chris Mason1887be62009-03-13 10:11:24 -04007186 goto out;
7187
Josef Bacikbedc66172018-12-03 10:20:31 -05007188 if (cleanup_extent_op(head) != NULL)
7189 goto out;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007190
Chris Mason1887be62009-03-13 10:11:24 -04007191 /*
7192 * waiting for the lock here would deadlock. If someone else has it
7193 * locked they are already in the process of dropping it anyway
7194 */
7195 if (!mutex_trylock(&head->mutex))
7196 goto out;
7197
Josef Bacikd7baffd2018-12-03 10:20:29 -05007198 btrfs_delete_ref_head(delayed_refs, head);
Josef Bacikd7df2c72014-01-23 09:21:38 -05007199 head->processing = 0;
Josef Bacikd7baffd2018-12-03 10:20:29 -05007200
Josef Bacikd7df2c72014-01-23 09:21:38 -05007201 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04007202 spin_unlock(&delayed_refs->lock);
7203
Yan, Zhengf0486c62010-05-16 10:46:25 -04007204 BUG_ON(head->extent_op);
7205 if (head->must_insert_reserved)
7206 ret = 1;
7207
Josef Bacik31890da2018-11-21 14:05:41 -05007208 btrfs_cleanup_ref_head_accounting(trans->fs_info, delayed_refs, head);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007209 mutex_unlock(&head->mutex);
Josef Bacikd2788502017-09-29 15:43:57 -04007210 btrfs_put_delayed_ref_head(head);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007211 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04007212out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05007213 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08007214
7215out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04007216 spin_unlock(&delayed_refs->lock);
7217 return 0;
7218}
7219
Yan, Zhengf0486c62010-05-16 10:46:25 -04007220void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
7221 struct btrfs_root *root,
7222 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02007223 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007224{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007225 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikb150a4f2013-06-19 15:00:04 -04007226 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007227 int ret;
7228
7229 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Omar Sandovald7eae342017-06-06 16:45:31 -07007230 int old_ref_mod, new_ref_mod;
7231
Josef Bacikfd708b82017-09-29 15:43:50 -04007232 btrfs_ref_tree_mod(root, buf->start, buf->len, parent,
7233 root->root_key.objectid,
7234 btrfs_header_level(buf), 0,
7235 BTRFS_DROP_DELAYED_REF);
Nikolay Borisov44e1c472018-06-20 15:48:53 +03007236 ret = btrfs_add_delayed_tree_ref(trans, buf->start,
Omar Sandoval7be07912017-06-06 16:45:30 -07007237 buf->len, parent,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007238 root->root_key.objectid,
7239 btrfs_header_level(buf),
Omar Sandoval7be07912017-06-06 16:45:30 -07007240 BTRFS_DROP_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007241 &old_ref_mod, &new_ref_mod);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007242 BUG_ON(ret); /* -ENOMEM */
Omar Sandovald7eae342017-06-06 16:45:31 -07007243 pin = old_ref_mod >= 0 && new_ref_mod < 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007244 }
7245
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007246 if (last_ref && btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00007247 struct btrfs_block_group_cache *cache;
7248
Yan, Zhengf0486c62010-05-16 10:46:25 -04007249 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007250 ret = check_ref_cleanup(trans, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007251 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04007252 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007253 }
7254
Omar Sandoval4da8b762017-06-06 16:45:28 -07007255 pin = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007256 cache = btrfs_lookup_block_group(fs_info, buf->start);
Filipe Manana62198722015-01-06 20:18:45 +00007257
Yan, Zhengf0486c62010-05-16 10:46:25 -04007258 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007259 pin_down_extent(fs_info, cache, buf->start,
7260 buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00007261 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04007262 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007263 }
7264
7265 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
7266
7267 btrfs_add_free_space(cache, buf->start, buf->len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08007268 btrfs_free_reserved_bytes(cache, buf->len, 0);
Filipe Manana62198722015-01-06 20:18:45 +00007269 btrfs_put_block_group(cache);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007270 trace_btrfs_reserved_extent_free(fs_info, buf->start, buf->len);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007271 }
7272out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04007273 if (pin)
Nikolay Borisov29d2b842018-03-30 12:58:47 +03007274 add_pinned_bytes(fs_info, buf->len, true,
Josef Bacikb150a4f2013-06-19 15:00:04 -04007275 root->root_key.objectid);
7276
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007277 if (last_ref) {
7278 /*
7279 * Deleting the buffer, clear the corrupt flag since it doesn't
7280 * matter anymore.
7281 */
7282 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
7283 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007284}
7285
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007286/* Can return -ENOMEM */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007287int btrfs_free_extent(struct btrfs_trans_handle *trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04007288 struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007289 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007290 u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04007291{
Josef Bacik84f7d8e2017-09-29 15:43:49 -04007292 struct btrfs_fs_info *fs_info = root->fs_info;
Omar Sandovald7eae342017-06-06 16:45:31 -07007293 int old_ref_mod, new_ref_mod;
Chris Mason925baed2008-06-25 16:01:30 -04007294 int ret;
7295
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04007296 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007297 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02007298
Josef Bacikfd708b82017-09-29 15:43:50 -04007299 if (root_objectid != BTRFS_TREE_LOG_OBJECTID)
7300 btrfs_ref_tree_mod(root, bytenr, num_bytes, parent,
7301 root_objectid, owner, offset,
7302 BTRFS_DROP_DELAYED_REF);
7303
Chris Mason56bec292009-03-13 10:10:06 -04007304 /*
7305 * tree log blocks never actually go into the extent allocation
7306 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04007307 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007308 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
7309 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04007310 /* unlocks the pinned mutex */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007311 btrfs_pin_extent(fs_info, bytenr, num_bytes, 1);
Omar Sandovald7eae342017-06-06 16:45:31 -07007312 old_ref_mod = new_ref_mod = 0;
Chris Mason56bec292009-03-13 10:10:06 -04007313 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007314 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Nikolay Borisov44e1c472018-06-20 15:48:53 +03007315 ret = btrfs_add_delayed_tree_ref(trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07007316 num_bytes, parent,
7317 root_objectid, (int)owner,
7318 BTRFS_DROP_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007319 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007320 } else {
Nikolay Borisov88a979c2018-06-20 15:48:54 +03007321 ret = btrfs_add_delayed_data_ref(trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07007322 num_bytes, parent,
7323 root_objectid, owner, offset,
7324 0, BTRFS_DROP_DELAYED_REF,
Omar Sandovald7eae342017-06-06 16:45:31 -07007325 &old_ref_mod, &new_ref_mod);
Chris Mason56bec292009-03-13 10:10:06 -04007326 }
Omar Sandovald7eae342017-06-06 16:45:31 -07007327
Nikolay Borisov29d2b842018-03-30 12:58:47 +03007328 if (ret == 0 && old_ref_mod >= 0 && new_ref_mod < 0) {
7329 bool metadata = owner < BTRFS_FIRST_FREE_OBJECTID;
7330
7331 add_pinned_bytes(fs_info, num_bytes, metadata, root_objectid);
7332 }
Omar Sandovald7eae342017-06-06 16:45:31 -07007333
Chris Mason925baed2008-06-25 16:01:30 -04007334 return ret;
7335}
7336
Chris Masonfec577f2007-02-26 10:40:21 -05007337/*
Josef Bacik817d52f2009-07-13 21:29:25 -04007338 * when we wait for progress in the block group caching, its because
7339 * our allocation attempt failed at least once. So, we must sleep
7340 * and let some progress happen before we try again.
7341 *
7342 * This function will sleep at least once waiting for new free space to
7343 * show up, and then it will check the block group free space numbers
7344 * for our min num_bytes. Another option is to have it go ahead
7345 * and look in the rbtree for a free extent of a given size, but this
7346 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04007347 *
7348 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
7349 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04007350 */
Josef Bacik36cce922013-08-05 11:15:21 -04007351static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04007352wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
7353 u64 num_bytes)
7354{
Yan Zheng11833d62009-09-11 16:11:19 -04007355 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04007356
Yan Zheng11833d62009-09-11 16:11:19 -04007357 caching_ctl = get_caching_control(cache);
7358 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007359 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04007360
Yan Zheng11833d62009-09-11 16:11:19 -04007361 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08007362 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04007363
7364 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04007365}
7366
7367static noinline int
7368wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
7369{
7370 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04007371 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007372
7373 caching_ctl = get_caching_control(cache);
7374 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007375 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007376
7377 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04007378 if (cache->cached == BTRFS_CACHE_ERROR)
7379 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04007380 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04007381 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04007382}
7383
7384enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05007385 LOOP_CACHING_NOWAIT = 0,
7386 LOOP_CACHING_WAIT = 1,
7387 LOOP_ALLOC_CHUNK = 2,
7388 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04007389};
7390
Miao Xiee570fd22014-06-19 10:42:50 +08007391static inline void
7392btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
7393 int delalloc)
7394{
7395 if (delalloc)
7396 down_read(&cache->data_rwsem);
7397}
7398
7399static inline void
7400btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
7401 int delalloc)
7402{
7403 btrfs_get_block_group(cache);
7404 if (delalloc)
7405 down_read(&cache->data_rwsem);
7406}
7407
7408static struct btrfs_block_group_cache *
7409btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
7410 struct btrfs_free_cluster *cluster,
7411 int delalloc)
7412{
Sudip Mukherjee89771cc2016-02-16 13:32:47 +05307413 struct btrfs_block_group_cache *used_bg = NULL;
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007414
Miao Xiee570fd22014-06-19 10:42:50 +08007415 spin_lock(&cluster->refill_lock);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007416 while (1) {
7417 used_bg = cluster->block_group;
7418 if (!used_bg)
7419 return NULL;
7420
7421 if (used_bg == block_group)
7422 return used_bg;
7423
7424 btrfs_get_block_group(used_bg);
7425
7426 if (!delalloc)
7427 return used_bg;
7428
7429 if (down_read_trylock(&used_bg->data_rwsem))
7430 return used_bg;
7431
7432 spin_unlock(&cluster->refill_lock);
7433
Liu Boe321f8a2016-11-30 16:11:04 -08007434 /* We should only have one-level nested. */
7435 down_read_nested(&used_bg->data_rwsem, SINGLE_DEPTH_NESTING);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007436
7437 spin_lock(&cluster->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007438 if (used_bg == cluster->block_group)
7439 return used_bg;
7440
7441 up_read(&used_bg->data_rwsem);
7442 btrfs_put_block_group(used_bg);
7443 }
Miao Xiee570fd22014-06-19 10:42:50 +08007444}
7445
7446static inline void
7447btrfs_release_block_group(struct btrfs_block_group_cache *cache,
7448 int delalloc)
7449{
7450 if (delalloc)
7451 up_read(&cache->data_rwsem);
7452 btrfs_put_block_group(cache);
7453}
7454
Josef Bacik817d52f2009-07-13 21:29:25 -04007455/*
Qu Wenruob4bd7452018-11-02 09:39:47 +08007456 * Structure used internally for find_free_extent() function. Wraps needed
7457 * parameters.
7458 */
7459struct find_free_extent_ctl {
7460 /* Basic allocation info */
7461 u64 ram_bytes;
7462 u64 num_bytes;
7463 u64 empty_size;
7464 u64 flags;
7465 int delalloc;
7466
7467 /* Where to start the search inside the bg */
7468 u64 search_start;
7469
7470 /* For clustered allocation */
7471 u64 empty_cluster;
7472
7473 bool have_caching_bg;
7474 bool orig_have_caching_bg;
7475
7476 /* RAID index, converted from flags */
7477 int index;
7478
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007479 /*
7480 * Current loop number, check find_free_extent_update_loop() for details
7481 */
Qu Wenruob4bd7452018-11-02 09:39:47 +08007482 int loop;
7483
7484 /*
7485 * Whether we're refilling a cluster, if true we need to re-search
7486 * current block group but don't try to refill the cluster again.
7487 */
7488 bool retry_clustered;
7489
7490 /*
7491 * Whether we're updating free space cache, if true we need to re-search
7492 * current block group but don't try updating free space cache again.
7493 */
7494 bool retry_unclustered;
7495
7496 /* If current block group is cached */
7497 int cached;
7498
7499 /* Max contiguous hole found */
7500 u64 max_extent_size;
7501
7502 /* Total free space from free space cache, not always contiguous */
7503 u64 total_free_space;
7504
7505 /* Found result */
7506 u64 found_offset;
7507};
7508
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007509
7510/*
7511 * Helper function for find_free_extent().
7512 *
7513 * Return -ENOENT to inform caller that we need fallback to unclustered mode.
7514 * Return -EAGAIN to inform caller that we need to re-search this block group
7515 * Return >0 to inform caller that we find nothing
7516 * Return 0 means we have found a location and set ffe_ctl->found_offset.
7517 */
7518static int find_free_extent_clustered(struct btrfs_block_group_cache *bg,
7519 struct btrfs_free_cluster *last_ptr,
7520 struct find_free_extent_ctl *ffe_ctl,
7521 struct btrfs_block_group_cache **cluster_bg_ret)
7522{
7523 struct btrfs_fs_info *fs_info = bg->fs_info;
7524 struct btrfs_block_group_cache *cluster_bg;
7525 u64 aligned_cluster;
7526 u64 offset;
7527 int ret;
7528
7529 cluster_bg = btrfs_lock_cluster(bg, last_ptr, ffe_ctl->delalloc);
7530 if (!cluster_bg)
7531 goto refill_cluster;
7532 if (cluster_bg != bg && (cluster_bg->ro ||
7533 !block_group_bits(cluster_bg, ffe_ctl->flags)))
7534 goto release_cluster;
7535
7536 offset = btrfs_alloc_from_cluster(cluster_bg, last_ptr,
7537 ffe_ctl->num_bytes, cluster_bg->key.objectid,
7538 &ffe_ctl->max_extent_size);
7539 if (offset) {
7540 /* We have a block, we're done */
7541 spin_unlock(&last_ptr->refill_lock);
7542 trace_btrfs_reserve_extent_cluster(cluster_bg,
7543 ffe_ctl->search_start, ffe_ctl->num_bytes);
7544 *cluster_bg_ret = cluster_bg;
7545 ffe_ctl->found_offset = offset;
7546 return 0;
7547 }
7548 WARN_ON(last_ptr->block_group != cluster_bg);
7549
7550release_cluster:
7551 /*
7552 * If we are on LOOP_NO_EMPTY_SIZE, we can't set up a new clusters, so
7553 * lets just skip it and let the allocator find whatever block it can
7554 * find. If we reach this point, we will have tried the cluster
7555 * allocator plenty of times and not have found anything, so we are
7556 * likely way too fragmented for the clustering stuff to find anything.
7557 *
7558 * However, if the cluster is taken from the current block group,
7559 * release the cluster first, so that we stand a better chance of
7560 * succeeding in the unclustered allocation.
7561 */
7562 if (ffe_ctl->loop >= LOOP_NO_EMPTY_SIZE && cluster_bg != bg) {
7563 spin_unlock(&last_ptr->refill_lock);
7564 btrfs_release_block_group(cluster_bg, ffe_ctl->delalloc);
7565 return -ENOENT;
7566 }
7567
7568 /* This cluster didn't work out, free it and start over */
7569 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7570
7571 if (cluster_bg != bg)
7572 btrfs_release_block_group(cluster_bg, ffe_ctl->delalloc);
7573
7574refill_cluster:
7575 if (ffe_ctl->loop >= LOOP_NO_EMPTY_SIZE) {
7576 spin_unlock(&last_ptr->refill_lock);
7577 return -ENOENT;
7578 }
7579
7580 aligned_cluster = max_t(u64,
7581 ffe_ctl->empty_cluster + ffe_ctl->empty_size,
7582 bg->full_stripe_len);
7583 ret = btrfs_find_space_cluster(fs_info, bg, last_ptr,
7584 ffe_ctl->search_start, ffe_ctl->num_bytes,
7585 aligned_cluster);
7586 if (ret == 0) {
7587 /* Now pull our allocation out of this cluster */
7588 offset = btrfs_alloc_from_cluster(bg, last_ptr,
7589 ffe_ctl->num_bytes, ffe_ctl->search_start,
7590 &ffe_ctl->max_extent_size);
7591 if (offset) {
7592 /* We found one, proceed */
7593 spin_unlock(&last_ptr->refill_lock);
7594 trace_btrfs_reserve_extent_cluster(bg,
7595 ffe_ctl->search_start,
7596 ffe_ctl->num_bytes);
7597 ffe_ctl->found_offset = offset;
7598 return 0;
7599 }
7600 } else if (!ffe_ctl->cached && ffe_ctl->loop > LOOP_CACHING_NOWAIT &&
7601 !ffe_ctl->retry_clustered) {
7602 spin_unlock(&last_ptr->refill_lock);
7603
7604 ffe_ctl->retry_clustered = true;
7605 wait_block_group_cache_progress(bg, ffe_ctl->num_bytes +
7606 ffe_ctl->empty_cluster + ffe_ctl->empty_size);
7607 return -EAGAIN;
7608 }
7609 /*
7610 * At this point we either didn't find a cluster or we weren't able to
7611 * allocate a block from our cluster. Free the cluster we've been
7612 * trying to use, and go to the next block group.
7613 */
7614 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7615 spin_unlock(&last_ptr->refill_lock);
7616 return 1;
7617}
7618
Qu Wenruob4bd7452018-11-02 09:39:47 +08007619/*
Qu Wenruoe1a41842018-11-02 09:39:49 +08007620 * Return >0 to inform caller that we find nothing
7621 * Return 0 when we found an free extent and set ffe_ctrl->found_offset
7622 * Return -EAGAIN to inform caller that we need to re-search this block group
7623 */
7624static int find_free_extent_unclustered(struct btrfs_block_group_cache *bg,
7625 struct btrfs_free_cluster *last_ptr,
7626 struct find_free_extent_ctl *ffe_ctl)
7627{
7628 u64 offset;
7629
7630 /*
7631 * We are doing an unclustered allocation, set the fragmented flag so
7632 * we don't bother trying to setup a cluster again until we get more
7633 * space.
7634 */
7635 if (unlikely(last_ptr)) {
7636 spin_lock(&last_ptr->lock);
7637 last_ptr->fragmented = 1;
7638 spin_unlock(&last_ptr->lock);
7639 }
7640 if (ffe_ctl->cached) {
7641 struct btrfs_free_space_ctl *free_space_ctl;
7642
7643 free_space_ctl = bg->free_space_ctl;
7644 spin_lock(&free_space_ctl->tree_lock);
7645 if (free_space_ctl->free_space <
7646 ffe_ctl->num_bytes + ffe_ctl->empty_cluster +
7647 ffe_ctl->empty_size) {
7648 ffe_ctl->total_free_space = max_t(u64,
7649 ffe_ctl->total_free_space,
7650 free_space_ctl->free_space);
7651 spin_unlock(&free_space_ctl->tree_lock);
7652 return 1;
7653 }
7654 spin_unlock(&free_space_ctl->tree_lock);
7655 }
7656
7657 offset = btrfs_find_space_for_alloc(bg, ffe_ctl->search_start,
7658 ffe_ctl->num_bytes, ffe_ctl->empty_size,
7659 &ffe_ctl->max_extent_size);
7660
7661 /*
7662 * If we didn't find a chunk, and we haven't failed on this block group
7663 * before, and this block group is in the middle of caching and we are
7664 * ok with waiting, then go ahead and wait for progress to be made, and
7665 * set @retry_unclustered to true.
7666 *
7667 * If @retry_unclustered is true then we've already waited on this
7668 * block group once and should move on to the next block group.
7669 */
7670 if (!offset && !ffe_ctl->retry_unclustered && !ffe_ctl->cached &&
7671 ffe_ctl->loop > LOOP_CACHING_NOWAIT) {
7672 wait_block_group_cache_progress(bg, ffe_ctl->num_bytes +
7673 ffe_ctl->empty_size);
7674 ffe_ctl->retry_unclustered = true;
7675 return -EAGAIN;
7676 } else if (!offset) {
7677 return 1;
7678 }
7679 ffe_ctl->found_offset = offset;
7680 return 0;
7681}
7682
7683/*
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007684 * Return >0 means caller needs to re-search for free extent
7685 * Return 0 means we have the needed free extent.
7686 * Return <0 means we failed to locate any free extent.
7687 */
7688static int find_free_extent_update_loop(struct btrfs_fs_info *fs_info,
7689 struct btrfs_free_cluster *last_ptr,
7690 struct btrfs_key *ins,
7691 struct find_free_extent_ctl *ffe_ctl,
7692 int full_search, bool use_cluster)
7693{
7694 struct btrfs_root *root = fs_info->extent_root;
7695 int ret;
7696
7697 if ((ffe_ctl->loop == LOOP_CACHING_NOWAIT) &&
7698 ffe_ctl->have_caching_bg && !ffe_ctl->orig_have_caching_bg)
7699 ffe_ctl->orig_have_caching_bg = true;
7700
7701 if (!ins->objectid && ffe_ctl->loop >= LOOP_CACHING_WAIT &&
7702 ffe_ctl->have_caching_bg)
7703 return 1;
7704
7705 if (!ins->objectid && ++(ffe_ctl->index) < BTRFS_NR_RAID_TYPES)
7706 return 1;
7707
7708 if (ins->objectid) {
7709 if (!use_cluster && last_ptr) {
7710 spin_lock(&last_ptr->lock);
7711 last_ptr->window_start = ins->objectid;
7712 spin_unlock(&last_ptr->lock);
7713 }
7714 return 0;
7715 }
7716
7717 /*
7718 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7719 * caching kthreads as we move along
7720 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7721 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7722 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7723 * again
7724 */
7725 if (ffe_ctl->loop < LOOP_NO_EMPTY_SIZE) {
7726 ffe_ctl->index = 0;
7727 if (ffe_ctl->loop == LOOP_CACHING_NOWAIT) {
7728 /*
7729 * We want to skip the LOOP_CACHING_WAIT step if we
7730 * don't have any uncached bgs and we've already done a
7731 * full search through.
7732 */
7733 if (ffe_ctl->orig_have_caching_bg || !full_search)
7734 ffe_ctl->loop = LOOP_CACHING_WAIT;
7735 else
7736 ffe_ctl->loop = LOOP_ALLOC_CHUNK;
7737 } else {
7738 ffe_ctl->loop++;
7739 }
7740
7741 if (ffe_ctl->loop == LOOP_ALLOC_CHUNK) {
7742 struct btrfs_trans_handle *trans;
7743 int exist = 0;
7744
7745 trans = current->journal_info;
7746 if (trans)
7747 exist = 1;
7748 else
7749 trans = btrfs_join_transaction(root);
7750
7751 if (IS_ERR(trans)) {
7752 ret = PTR_ERR(trans);
7753 return ret;
7754 }
7755
7756 ret = do_chunk_alloc(trans, ffe_ctl->flags,
7757 CHUNK_ALLOC_FORCE);
7758
7759 /*
7760 * If we can't allocate a new chunk we've already looped
7761 * through at least once, move on to the NO_EMPTY_SIZE
7762 * case.
7763 */
7764 if (ret == -ENOSPC)
7765 ffe_ctl->loop = LOOP_NO_EMPTY_SIZE;
7766
7767 /* Do not bail out on ENOSPC since we can do more. */
7768 if (ret < 0 && ret != -ENOSPC)
7769 btrfs_abort_transaction(trans, ret);
7770 else
7771 ret = 0;
7772 if (!exist)
7773 btrfs_end_transaction(trans);
7774 if (ret)
7775 return ret;
7776 }
7777
7778 if (ffe_ctl->loop == LOOP_NO_EMPTY_SIZE) {
7779 /*
7780 * Don't loop again if we already have no empty_size and
7781 * no empty_cluster.
7782 */
7783 if (ffe_ctl->empty_size == 0 &&
7784 ffe_ctl->empty_cluster == 0)
7785 return -ENOSPC;
7786 ffe_ctl->empty_size = 0;
7787 ffe_ctl->empty_cluster = 0;
7788 }
7789 return 1;
7790 }
7791 return -ENOSPC;
7792}
7793
7794/*
Chris Masonfec577f2007-02-26 10:40:21 -05007795 * walks the btree of allocated extents and find a hole of a given size.
7796 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08007797 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04007798 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08007799 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05007800 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08007801 *
7802 * If there is no suitable free space, we will record the max size of
7803 * the free space extent currently.
Qu Wenruoe72d79d2018-11-02 09:39:50 +08007804 *
7805 * The overall logic and call chain:
7806 *
7807 * find_free_extent()
7808 * |- Iterate through all block groups
7809 * | |- Get a valid block group
7810 * | |- Try to do clustered allocation in that block group
7811 * | |- Try to do unclustered allocation in that block group
7812 * | |- Check if the result is valid
7813 * | | |- If valid, then exit
7814 * | |- Jump to next block group
7815 * |
7816 * |- Push harder to find free extents
7817 * |- If not found, re-iterate all block groups
Chris Masonfec577f2007-02-26 10:40:21 -05007818 */
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05007819static noinline int find_free_extent(struct btrfs_fs_info *fs_info,
Wang Xiaoguang18513092016-07-25 15:51:40 +08007820 u64 ram_bytes, u64 num_bytes, u64 empty_size,
7821 u64 hint_byte, struct btrfs_key *ins,
7822 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007823{
Josef Bacik80eb2342008-10-29 14:49:05 -04007824 int ret = 0;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007825 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04007826 struct btrfs_block_group_cache *block_group = NULL;
Qu Wenruob4bd7452018-11-02 09:39:47 +08007827 struct find_free_extent_ctl ffe_ctl = {0};
Josef Bacik80eb2342008-10-29 14:49:05 -04007828 struct btrfs_space_info *space_info;
Josef Bacik67377732010-09-16 16:19:09 -04007829 bool use_cluster = true;
Josef Bacika5e681d2015-10-01 14:54:10 -04007830 bool full_search = false;
Chris Masonfec577f2007-02-26 10:40:21 -05007831
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007832 WARN_ON(num_bytes < fs_info->sectorsize);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007833
7834 ffe_ctl.ram_bytes = ram_bytes;
7835 ffe_ctl.num_bytes = num_bytes;
7836 ffe_ctl.empty_size = empty_size;
7837 ffe_ctl.flags = flags;
7838 ffe_ctl.search_start = 0;
7839 ffe_ctl.retry_clustered = false;
7840 ffe_ctl.retry_unclustered = false;
7841 ffe_ctl.delalloc = delalloc;
7842 ffe_ctl.index = btrfs_bg_flags_to_raid_index(flags);
7843 ffe_ctl.have_caching_bg = false;
7844 ffe_ctl.orig_have_caching_bg = false;
7845 ffe_ctl.found_offset = 0;
7846
David Sterba962a2982014-06-04 18:41:45 +02007847 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04007848 ins->objectid = 0;
7849 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04007850
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007851 trace_find_free_extent(fs_info, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05007852
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007853 space_info = __find_space_info(fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007854 if (!space_info) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007855 btrfs_err(fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007856 return -ENOSPC;
7857 }
Josef Bacik2552d172009-04-03 10:14:19 -04007858
Josef Bacik67377732010-09-16 16:19:09 -04007859 /*
Josef Bacik4f4db212015-09-29 11:40:47 -04007860 * If our free space is heavily fragmented we may not be able to make
7861 * big contiguous allocations, so instead of doing the expensive search
7862 * for free space, simply return ENOSPC with our max_extent_size so we
7863 * can go ahead and search for a more manageable chunk.
7864 *
7865 * If our max_extent_size is large enough for our allocation simply
7866 * disable clustering since we will likely not be able to find enough
7867 * space to create a cluster and induce latency trying.
Josef Bacik67377732010-09-16 16:19:09 -04007868 */
Josef Bacik4f4db212015-09-29 11:40:47 -04007869 if (unlikely(space_info->max_extent_size)) {
7870 spin_lock(&space_info->lock);
7871 if (space_info->max_extent_size &&
7872 num_bytes > space_info->max_extent_size) {
7873 ins->offset = space_info->max_extent_size;
7874 spin_unlock(&space_info->lock);
7875 return -ENOSPC;
7876 } else if (space_info->max_extent_size) {
7877 use_cluster = false;
7878 }
7879 spin_unlock(&space_info->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007880 }
7881
Qu Wenruob4bd7452018-11-02 09:39:47 +08007882 last_ptr = fetch_cluster_info(fs_info, space_info,
7883 &ffe_ctl.empty_cluster);
Chris Mason239b14b2008-03-24 15:02:07 -04007884 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007885 spin_lock(&last_ptr->lock);
7886 if (last_ptr->block_group)
7887 hint_byte = last_ptr->window_start;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007888 if (last_ptr->fragmented) {
7889 /*
7890 * We still set window_start so we can keep track of the
7891 * last place we found an allocation to try and save
7892 * some time.
7893 */
7894 hint_byte = last_ptr->window_start;
7895 use_cluster = false;
7896 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007897 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007898 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007899
Qu Wenruob4bd7452018-11-02 09:39:47 +08007900 ffe_ctl.search_start = max(ffe_ctl.search_start,
7901 first_logical_byte(fs_info, 0));
7902 ffe_ctl.search_start = max(ffe_ctl.search_start, hint_byte);
7903 if (ffe_ctl.search_start == hint_byte) {
7904 block_group = btrfs_lookup_block_group(fs_info,
7905 ffe_ctl.search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04007906 /*
7907 * we don't want to use the block group if it doesn't match our
7908 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05007909 *
7910 * However if we are re-searching with an ideal block group
7911 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04007912 */
David Sterbab6919a52013-04-29 13:39:40 +00007913 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05007914 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04007915 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007916 if (list_empty(&block_group->list) ||
7917 block_group->ro) {
7918 /*
7919 * someone is removing this block group,
7920 * we can't jump into the have_block_group
7921 * target because our list pointers are not
7922 * valid
7923 */
7924 btrfs_put_block_group(block_group);
7925 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05007926 } else {
Qu Wenruob4bd7452018-11-02 09:39:47 +08007927 ffe_ctl.index = btrfs_bg_flags_to_raid_index(
Qu Wenruo3e72ee82018-01-30 18:20:45 +08007928 block_group->flags);
Miao Xiee570fd22014-06-19 10:42:50 +08007929 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04007930 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05007931 }
Josef Bacik2552d172009-04-03 10:14:19 -04007932 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007933 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04007934 }
Chris Mason42e70e72008-11-07 18:17:11 -05007935 }
Josef Bacik2552d172009-04-03 10:14:19 -04007936search:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007937 ffe_ctl.have_caching_bg = false;
7938 if (ffe_ctl.index == btrfs_bg_flags_to_raid_index(flags) ||
7939 ffe_ctl.index == 0)
Josef Bacika5e681d2015-10-01 14:54:10 -04007940 full_search = true;
Josef Bacik80eb2342008-10-29 14:49:05 -04007941 down_read(&space_info->groups_sem);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007942 list_for_each_entry(block_group,
7943 &space_info->block_groups[ffe_ctl.index], list) {
Jeff Mahoney14443932017-07-19 23:25:51 -04007944 /* If the block group is read-only, we can skip it entirely. */
7945 if (unlikely(block_group->ro))
7946 continue;
7947
Miao Xiee570fd22014-06-19 10:42:50 +08007948 btrfs_grab_block_group(block_group, delalloc);
Qu Wenruob4bd7452018-11-02 09:39:47 +08007949 ffe_ctl.search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05007950
Chris Mason83a50de2010-12-13 15:06:46 -05007951 /*
7952 * this can happen if we end up cycling through all the
7953 * raid types, but we want to make sure we only allocate
7954 * for the proper type.
7955 */
David Sterbab6919a52013-04-29 13:39:40 +00007956 if (!block_group_bits(block_group, flags)) {
Bart Van Asschebece2e82018-06-20 10:03:31 -07007957 u64 extra = BTRFS_BLOCK_GROUP_DUP |
Chris Mason83a50de2010-12-13 15:06:46 -05007958 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007959 BTRFS_BLOCK_GROUP_RAID5 |
7960 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05007961 BTRFS_BLOCK_GROUP_RAID10;
7962
7963 /*
7964 * if they asked for extra copies and this block group
7965 * doesn't provide them, bail. This does allow us to
7966 * fill raid0 from raid1.
7967 */
David Sterbab6919a52013-04-29 13:39:40 +00007968 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05007969 goto loop;
7970 }
7971
Josef Bacik2552d172009-04-03 10:14:19 -04007972have_block_group:
Qu Wenruob4bd7452018-11-02 09:39:47 +08007973 ffe_ctl.cached = block_group_cache_done(block_group);
7974 if (unlikely(!ffe_ctl.cached)) {
7975 ffe_ctl.have_caching_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00007976 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04007977 BUG_ON(ret < 0);
7978 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05007979 }
7980
Josef Bacik36cce922013-08-05 11:15:21 -04007981 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
7982 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007983
Josef Bacik0a243252009-09-11 16:11:20 -04007984 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007985 * Ok we want to try and use the cluster allocator, so
7986 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04007987 */
Josef Bacikc759c4e2015-10-02 15:25:10 -04007988 if (last_ptr && use_cluster) {
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007989 struct btrfs_block_group_cache *cluster_bg = NULL;
Chris Mason44fb5512009-06-04 15:34:51 -04007990
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007991 ret = find_free_extent_clustered(block_group, last_ptr,
7992 &ffe_ctl, &cluster_bg);
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007993
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007994 if (ret == 0) {
7995 if (cluster_bg && cluster_bg != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08007996 btrfs_release_block_group(block_group,
7997 delalloc);
Qu Wenruod06e3bb2018-11-02 09:39:48 +08007998 block_group = cluster_bg;
Miao Xie215a63d2014-01-15 20:00:56 +08007999 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04008000 goto checks;
Qu Wenruod06e3bb2018-11-02 09:39:48 +08008001 } else if (ret == -EAGAIN) {
Josef Bacik817d52f2009-07-13 21:29:25 -04008002 goto have_block_group;
Qu Wenruod06e3bb2018-11-02 09:39:48 +08008003 } else if (ret > 0) {
8004 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04008005 }
Qu Wenruod06e3bb2018-11-02 09:39:48 +08008006 /* ret == -ENOENT case falls through */
Chris Masonfa9c0d792009-04-03 09:47:43 -04008007 }
8008
Qu Wenruoe1a41842018-11-02 09:39:49 +08008009 ret = find_free_extent_unclustered(block_group, last_ptr,
8010 &ffe_ctl);
8011 if (ret == -EAGAIN)
Josef Bacik817d52f2009-07-13 21:29:25 -04008012 goto have_block_group;
Qu Wenruoe1a41842018-11-02 09:39:49 +08008013 else if (ret > 0)
Josef Bacik1cdda9b2009-10-06 10:04:28 -04008014 goto loop;
Qu Wenruoe1a41842018-11-02 09:39:49 +08008015 /* ret == 0 case falls through */
Chris Masonfa9c0d792009-04-03 09:47:43 -04008016checks:
Qu Wenruob4bd7452018-11-02 09:39:47 +08008017 ffe_ctl.search_start = round_up(ffe_ctl.found_offset,
8018 fs_info->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04008019
Josef Bacik2552d172009-04-03 10:14:19 -04008020 /* move on to the next group */
Qu Wenruob4bd7452018-11-02 09:39:47 +08008021 if (ffe_ctl.search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08008022 block_group->key.objectid + block_group->key.offset) {
Qu Wenruob4bd7452018-11-02 09:39:47 +08008023 btrfs_add_free_space(block_group, ffe_ctl.found_offset,
8024 num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04008025 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04008026 }
Josef Bacik80eb2342008-10-29 14:49:05 -04008027
Qu Wenruob4bd7452018-11-02 09:39:47 +08008028 if (ffe_ctl.found_offset < ffe_ctl.search_start)
8029 btrfs_add_free_space(block_group, ffe_ctl.found_offset,
8030 ffe_ctl.search_start - ffe_ctl.found_offset);
Josef Bacik6226cb02009-04-03 10:14:18 -04008031
Wang Xiaoguang18513092016-07-25 15:51:40 +08008032 ret = btrfs_add_reserved_bytes(block_group, ram_bytes,
8033 num_bytes, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008034 if (ret == -EAGAIN) {
Qu Wenruob4bd7452018-11-02 09:39:47 +08008035 btrfs_add_free_space(block_group, ffe_ctl.found_offset,
8036 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008037 goto loop;
8038 }
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008039 btrfs_inc_block_group_reservations(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -04008040
Josef Bacik2552d172009-04-03 10:14:19 -04008041 /* we are all good, lets return */
Qu Wenruob4bd7452018-11-02 09:39:47 +08008042 ins->objectid = ffe_ctl.search_start;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008043 ins->offset = num_bytes;
8044
Qu Wenruob4bd7452018-11-02 09:39:47 +08008045 trace_btrfs_reserve_extent(block_group, ffe_ctl.search_start,
8046 num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08008047 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04008048 break;
8049loop:
Qu Wenruob4bd7452018-11-02 09:39:47 +08008050 ffe_ctl.retry_clustered = false;
8051 ffe_ctl.retry_unclustered = false;
Qu Wenruo3e72ee82018-01-30 18:20:45 +08008052 BUG_ON(btrfs_bg_flags_to_raid_index(block_group->flags) !=
Qu Wenruob4bd7452018-11-02 09:39:47 +08008053 ffe_ctl.index);
Miao Xiee570fd22014-06-19 10:42:50 +08008054 btrfs_release_block_group(block_group, delalloc);
Jeff Mahoney14443932017-07-19 23:25:51 -04008055 cond_resched();
Josef Bacik2552d172009-04-03 10:14:19 -04008056 }
8057 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05008058
Qu Wenruoe72d79d2018-11-02 09:39:50 +08008059 ret = find_free_extent_update_loop(fs_info, last_ptr, ins, &ffe_ctl,
8060 full_search, use_cluster);
8061 if (ret > 0)
Miao Xie60d2adb2011-09-09 17:34:35 +08008062 goto search;
8063
Josef Bacik4f4db212015-09-29 11:40:47 -04008064 if (ret == -ENOSPC) {
Qu Wenruob4bd7452018-11-02 09:39:47 +08008065 /*
8066 * Use ffe_ctl->total_free_space as fallback if we can't find
8067 * any contiguous hole.
8068 */
8069 if (!ffe_ctl.max_extent_size)
8070 ffe_ctl.max_extent_size = ffe_ctl.total_free_space;
Josef Bacik4f4db212015-09-29 11:40:47 -04008071 spin_lock(&space_info->lock);
Qu Wenruob4bd7452018-11-02 09:39:47 +08008072 space_info->max_extent_size = ffe_ctl.max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04008073 spin_unlock(&space_info->lock);
Qu Wenruob4bd7452018-11-02 09:39:47 +08008074 ins->offset = ffe_ctl.max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04008075 }
Chris Mason0f70abe2007-02-28 16:46:22 -05008076 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05008077}
Chris Masonec44a352008-04-28 15:29:52 -04008078
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008079static void dump_space_info(struct btrfs_fs_info *fs_info,
8080 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04008081 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04008082{
8083 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb822010-05-16 10:46:24 -04008084 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008085
Josef Bacik9ed74f22009-09-11 16:12:44 -04008086 spin_lock(&info->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008087 btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull",
8088 info->flags,
Liu Bo41361352017-02-13 15:42:21 -08008089 info->total_bytes - btrfs_space_info_used(info, true),
8090 info->full ? "" : "not ");
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008091 btrfs_info(fs_info,
8092 "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu",
8093 info->total_bytes, info->bytes_used, info->bytes_pinned,
8094 info->bytes_reserved, info->bytes_may_use,
8095 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008096 spin_unlock(&info->lock);
8097
8098 if (!dump_block_groups)
8099 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008100
Josef Bacik80eb2342008-10-29 14:49:05 -04008101 down_read(&info->groups_sem);
Yan, Zhengb742bb822010-05-16 10:46:24 -04008102again:
8103 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04008104 spin_lock(&cache->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008105 btrfs_info(fs_info,
8106 "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s",
8107 cache->key.objectid, cache->key.offset,
8108 btrfs_block_group_used(&cache->item), cache->pinned,
8109 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04008110 btrfs_dump_free_space(cache, bytes);
8111 spin_unlock(&cache->lock);
8112 }
Yan, Zhengb742bb822010-05-16 10:46:24 -04008113 if (++index < BTRFS_NR_RAID_TYPES)
8114 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04008115 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008116}
Zheng Yane8569812008-09-26 10:05:48 -04008117
Nikolay Borisov6f47c702018-03-13 12:22:32 +02008118/*
8119 * btrfs_reserve_extent - entry point to the extent allocator. Tries to find a
8120 * hole that is at least as big as @num_bytes.
8121 *
8122 * @root - The root that will contain this extent
8123 *
8124 * @ram_bytes - The amount of space in ram that @num_bytes take. This
8125 * is used for accounting purposes. This value differs
8126 * from @num_bytes only in the case of compressed extents.
8127 *
8128 * @num_bytes - Number of bytes to allocate on-disk.
8129 *
8130 * @min_alloc_size - Indicates the minimum amount of space that the
8131 * allocator should try to satisfy. In some cases
8132 * @num_bytes may be larger than what is required and if
8133 * the filesystem is fragmented then allocation fails.
8134 * However, the presence of @min_alloc_size gives a
8135 * chance to try and satisfy the smaller allocation.
8136 *
8137 * @empty_size - A hint that you plan on doing more COW. This is the
8138 * size in bytes the allocator should try to find free
8139 * next to the block it returns. This is just a hint and
8140 * may be ignored by the allocator.
8141 *
8142 * @hint_byte - Hint to the allocator to start searching above the byte
8143 * address passed. It might be ignored.
8144 *
8145 * @ins - This key is modified to record the found hole. It will
8146 * have the following values:
8147 * ins->objectid == start position
8148 * ins->flags = BTRFS_EXTENT_ITEM_KEY
8149 * ins->offset == the size of the hole.
8150 *
8151 * @is_data - Boolean flag indicating whether an extent is
8152 * allocated for data (true) or metadata (false)
8153 *
8154 * @delalloc - Boolean flag indicating whether this allocation is for
8155 * delalloc or not. If 'true' data_rwsem of block groups
8156 * is going to be acquired.
8157 *
8158 *
8159 * Returns 0 when an allocation succeeded or < 0 when an error occurred. In
8160 * case -ENOSPC is returned then @ins->offset will contain the size of the
8161 * largest available hole the allocator managed to find.
8162 */
Wang Xiaoguang18513092016-07-25 15:51:40 +08008163int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
Yan Zheng11833d62009-09-11 16:11:19 -04008164 u64 num_bytes, u64 min_alloc_size,
8165 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08008166 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05008167{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008168 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik36af4e02015-09-25 16:13:11 -04008169 bool final_tried = num_bytes == min_alloc_size;
David Sterbab6919a52013-04-29 13:39:40 +00008170 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05008171 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04008172
Jeff Mahoney1b868262017-05-17 11:38:35 -04008173 flags = get_alloc_profile_by_root(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04008174again:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008175 WARN_ON(num_bytes < fs_info->sectorsize);
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05008176 ret = find_free_extent(fs_info, ram_bytes, num_bytes, empty_size,
Wang Xiaoguang18513092016-07-25 15:51:40 +08008177 hint_byte, ins, flags, delalloc);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008178 if (!ret && !is_data) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008179 btrfs_dec_block_group_reservations(fs_info, ins->objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008180 } else if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08008181 if (!final_tried && ins->offset) {
8182 num_bytes = min(num_bytes >> 1, ins->offset);
Jeff Mahoneyda170662016-06-15 09:22:56 -04008183 num_bytes = round_down(num_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008184 fs_info->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05008185 num_bytes = max(num_bytes, min_alloc_size);
Wang Xiaoguang18513092016-07-25 15:51:40 +08008186 ram_bytes = num_bytes;
Miao Xie9e622d62012-01-26 15:01:12 -05008187 if (num_bytes == min_alloc_size)
8188 final_tried = true;
8189 goto again;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008190 } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xie9e622d62012-01-26 15:01:12 -05008191 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008192
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008193 sinfo = __find_space_info(fs_info, flags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008194 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008195 "allocation failed flags %llu, wanted %llu",
8196 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01008197 if (sinfo)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008198 dump_space_info(fs_info, sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05008199 }
Chris Mason925baed2008-06-25 16:01:30 -04008200 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008201
8202 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008203}
8204
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008205static int __btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008206 u64 start, u64 len,
8207 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04008208{
Josef Bacik0f9dd462008-09-23 13:14:11 -04008209 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05008210 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008211
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008212 cache = btrfs_lookup_block_group(fs_info, start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008213 if (!cache) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008214 btrfs_err(fs_info, "Unable to find block group for %llu",
8215 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008216 return -ENOSPC;
8217 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05008218
Chris Masone688b7252011-10-31 20:52:39 -04008219 if (pin)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008220 pin_down_extent(fs_info, cache, start, len, 1);
Chris Masone688b7252011-10-31 20:52:39 -04008221 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008222 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008223 ret = btrfs_discard_extent(fs_info, start, len, NULL);
Chris Masone688b7252011-10-31 20:52:39 -04008224 btrfs_add_free_space(cache, start, len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08008225 btrfs_free_reserved_bytes(cache, len, delalloc);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008226 trace_btrfs_reserved_extent_free(fs_info, start, len);
Chris Masone688b7252011-10-31 20:52:39 -04008227 }
Dongsheng Yang31193212014-12-12 16:44:35 +08008228
Chris Masonfa9c0d792009-04-03 09:47:43 -04008229 btrfs_put_block_group(cache);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008230 return ret;
8231}
8232
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008233int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008234 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04008235{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008236 return __btrfs_free_reserved_extent(fs_info, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04008237}
8238
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008239int btrfs_free_and_pin_reserved_extent(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04008240 u64 start, u64 len)
8241{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008242 return __btrfs_free_reserved_extent(fs_info, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04008243}
8244
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008245static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008246 u64 parent, u64 root_objectid,
8247 u64 flags, u64 owner, u64 offset,
8248 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008249{
Nikolay Borisovef89b822018-06-20 15:48:58 +03008250 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008251 int ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008252 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008253 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008254 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008255 struct extent_buffer *leaf;
8256 int type;
8257 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04008258
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008259 if (parent > 0)
8260 type = BTRFS_SHARED_DATA_REF_KEY;
8261 else
8262 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04008263
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008264 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05008265
8266 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008267 if (!path)
8268 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05008269
Chris Masonb9473432009-03-13 11:00:37 -04008270 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008271 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8272 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008273 if (ret) {
8274 btrfs_free_path(path);
8275 return ret;
8276 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008277
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008278 leaf = path->nodes[0];
8279 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05008280 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008281 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
8282 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8283 btrfs_set_extent_flags(leaf, extent_item,
8284 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05008285
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008286 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8287 btrfs_set_extent_inline_ref_type(leaf, iref, type);
8288 if (parent > 0) {
8289 struct btrfs_shared_data_ref *ref;
8290 ref = (struct btrfs_shared_data_ref *)(iref + 1);
8291 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8292 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
8293 } else {
8294 struct btrfs_extent_data_ref *ref;
8295 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
8296 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
8297 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
8298 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
8299 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
8300 }
Chris Mason47e4bb92008-02-01 14:51:59 -05008301
8302 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05008303 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04008304
Nikolay Borisov25a356d2018-05-10 15:44:54 +03008305 ret = remove_from_free_space_tree(trans, ins->objectid, ins->offset);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008306 if (ret)
8307 return ret;
8308
Jeff Mahoney6202df62016-06-22 18:54:22 -04008309 ret = update_block_group(trans, fs_info, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008310 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008311 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008312 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05008313 BUG();
8314 }
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008315 trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008316 return ret;
8317}
8318
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008319static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008320 struct btrfs_delayed_ref_node *node,
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03008321 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008322{
Nikolay Borisov9dcdbe02018-05-21 12:27:20 +03008323 struct btrfs_fs_info *fs_info = trans->fs_info;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008324 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008325 struct btrfs_extent_item *extent_item;
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008326 struct btrfs_key extent_key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008327 struct btrfs_tree_block_info *block_info;
8328 struct btrfs_extent_inline_ref *iref;
8329 struct btrfs_path *path;
8330 struct extent_buffer *leaf;
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008331 struct btrfs_delayed_tree_ref *ref;
Josef Bacik3173a182013-03-07 14:22:04 -05008332 u32 size = sizeof(*extent_item) + sizeof(*iref);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008333 u64 num_bytes;
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03008334 u64 flags = extent_op->flags_to_set;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008335 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Josef Bacik3173a182013-03-07 14:22:04 -05008336
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008337 ref = btrfs_delayed_node_to_tree_ref(node);
8338
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008339 extent_key.objectid = node->bytenr;
8340 if (skinny_metadata) {
8341 extent_key.offset = ref->level;
8342 extent_key.type = BTRFS_METADATA_ITEM_KEY;
8343 num_bytes = fs_info->nodesize;
8344 } else {
8345 extent_key.offset = node->num_bytes;
8346 extent_key.type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik3173a182013-03-07 14:22:04 -05008347 size += sizeof(*block_info);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008348 num_bytes = node->num_bytes;
8349 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008350
8351 path = btrfs_alloc_path();
Josef Bacik80ee54b2018-10-11 15:54:22 -04008352 if (!path)
Mark Fashehd8926bb2011-07-13 10:38:47 -07008353 return -ENOMEM;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008354
8355 path->leave_spinning = 1;
8356 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008357 &extent_key, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008358 if (ret) {
Chris Masondd825252015-04-01 08:36:05 -07008359 btrfs_free_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008360 return ret;
8361 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008362
8363 leaf = path->nodes[0];
8364 extent_item = btrfs_item_ptr(leaf, path->slots[0],
8365 struct btrfs_extent_item);
8366 btrfs_set_extent_refs(leaf, extent_item, 1);
8367 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8368 btrfs_set_extent_flags(leaf, extent_item,
8369 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008370
Josef Bacik3173a182013-03-07 14:22:04 -05008371 if (skinny_metadata) {
8372 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8373 } else {
8374 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
Nikolay Borisov21ebfbe2018-05-21 12:27:22 +03008375 btrfs_set_tree_block_key(leaf, block_info, &extent_op->key);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008376 btrfs_set_tree_block_level(leaf, block_info, ref->level);
Josef Bacik3173a182013-03-07 14:22:04 -05008377 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
8378 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008379
Nikolay Borisovd4b20732018-05-21 12:27:23 +03008380 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008381 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
8382 btrfs_set_extent_inline_ref_type(leaf, iref,
8383 BTRFS_SHARED_BLOCK_REF_KEY);
Nikolay Borisovd4b20732018-05-21 12:27:23 +03008384 btrfs_set_extent_inline_ref_offset(leaf, iref, ref->parent);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008385 } else {
8386 btrfs_set_extent_inline_ref_type(leaf, iref,
8387 BTRFS_TREE_BLOCK_REF_KEY);
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008388 btrfs_set_extent_inline_ref_offset(leaf, iref, ref->root);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008389 }
8390
8391 btrfs_mark_buffer_dirty(leaf);
8392 btrfs_free_path(path);
8393
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008394 ret = remove_from_free_space_tree(trans, extent_key.objectid,
8395 num_bytes);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008396 if (ret)
8397 return ret;
8398
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008399 ret = update_block_group(trans, fs_info, extent_key.objectid,
Jeff Mahoney6202df62016-06-22 18:54:22 -04008400 fs_info->nodesize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008401 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008402 btrfs_err(fs_info, "update block group failed for %llu %llu",
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008403 extent_key.objectid, extent_key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008404 BUG();
8405 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04008406
Nikolay Borisov4e6bd4e2018-05-21 12:27:21 +03008407 trace_btrfs_reserved_extent_alloc(fs_info, extent_key.objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008408 fs_info->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008409 return ret;
8410}
8411
8412int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008413 struct btrfs_root *root, u64 owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08008414 u64 offset, u64 ram_bytes,
8415 struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008416{
8417 int ret;
Chris Mason1c2308f82008-09-23 13:14:13 -04008418
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008419 BUG_ON(root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04008420
Josef Bacikfd708b82017-09-29 15:43:50 -04008421 btrfs_ref_tree_mod(root, ins->objectid, ins->offset, 0,
8422 root->root_key.objectid, owner, offset,
8423 BTRFS_ADD_DELAYED_EXTENT);
8424
Nikolay Borisov88a979c2018-06-20 15:48:54 +03008425 ret = btrfs_add_delayed_data_ref(trans, ins->objectid,
Josef Bacik84f7d8e2017-09-29 15:43:49 -04008426 ins->offset, 0,
8427 root->root_key.objectid, owner,
Omar Sandoval7be07912017-06-06 16:45:30 -07008428 offset, ram_bytes,
8429 BTRFS_ADD_DELAYED_EXTENT, NULL, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008430 return ret;
8431}
Chris Masone02119d2008-09-05 16:13:11 -04008432
8433/*
8434 * this is used by the tree logging recovery code. It records that
8435 * an extent has been allocated and makes sure to clear the free
8436 * space cache bits as well
8437 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008438int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008439 u64 root_objectid, u64 owner, u64 offset,
8440 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04008441{
Nikolay Borisov61da2ab2018-06-20 15:49:13 +03008442 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masone02119d2008-09-05 16:13:11 -04008443 int ret;
8444 struct btrfs_block_group_cache *block_group;
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008445 struct btrfs_space_info *space_info;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008446
8447 /*
8448 * Mixed block groups will exclude before processing the log so we only
Nicholas D Steeves01327612016-05-19 21:18:45 -04008449 * need to do the exclude dance if this fs isn't mixed.
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008450 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008451 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008452 ret = __exclude_logged_extent(fs_info, ins->objectid,
8453 ins->offset);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008454 if (ret)
8455 return ret;
8456 }
Chris Masone02119d2008-09-05 16:13:11 -04008457
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008458 block_group = btrfs_lookup_block_group(fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008459 if (!block_group)
8460 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04008461
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008462 space_info = block_group->space_info;
8463 spin_lock(&space_info->lock);
8464 spin_lock(&block_group->lock);
8465 space_info->bytes_reserved += ins->offset;
8466 block_group->reserved += ins->offset;
8467 spin_unlock(&block_group->lock);
8468 spin_unlock(&space_info->lock);
8469
Nikolay Borisovef89b822018-06-20 15:48:58 +03008470 ret = alloc_reserved_file_extent(trans, 0, root_objectid, 0, owner,
8471 offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04008472 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04008473 return ret;
8474}
8475
Eric Sandeen48a3b632013-04-25 20:41:01 +00008476static struct extent_buffer *
8477btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008478 u64 bytenr, int level, u64 owner)
Chris Mason65b51a02008-08-01 15:11:20 -04008479{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008480 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason65b51a02008-08-01 15:11:20 -04008481 struct extent_buffer *buf;
8482
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008483 buf = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008484 if (IS_ERR(buf))
8485 return buf;
8486
Qu Wenruob72c3ab2018-08-21 09:53:47 +08008487 /*
8488 * Extra safety check in case the extent tree is corrupted and extent
8489 * allocator chooses to use a tree block which is already used and
8490 * locked.
8491 */
8492 if (buf->lock_owner == current->pid) {
8493 btrfs_err_rl(fs_info,
8494"tree block %llu owner %llu already locked by pid=%d, extent tree corruption detected",
8495 buf->start, btrfs_header_owner(buf), current->pid);
8496 free_extent_buffer(buf);
8497 return ERR_PTR(-EUCLEAN);
8498 }
8499
Chris Mason85d4e462011-07-26 16:11:19 -04008500 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04008501 btrfs_tree_lock(buf);
David Sterba7c302b42017-02-10 18:47:57 +01008502 clean_tree_block(fs_info, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05008503 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008504
David Sterba8bead252018-04-04 02:03:48 +02008505 btrfs_set_lock_blocking_write(buf);
David Sterba4db8c522015-12-03 13:06:46 +01008506 set_extent_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008507
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008508 memzero_extent_buffer(buf, 0, sizeof(struct btrfs_header));
8509 btrfs_set_header_level(buf, level);
8510 btrfs_set_header_bytenr(buf, buf->start);
8511 btrfs_set_header_generation(buf, trans->transid);
8512 btrfs_set_header_backref_rev(buf, BTRFS_MIXED_BACKREF_REV);
8513 btrfs_set_header_owner(buf, owner);
Nikolay Borisovde37aa52018-10-30 16:43:24 +02008514 write_extent_buffer_fsid(buf, fs_info->fs_devices->metadata_uuid);
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008515 write_extent_buffer_chunk_tree_uuid(buf, fs_info->chunk_tree_uuid);
Chris Masond0c803c2008-09-11 16:17:57 -04008516 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01008517 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008518 /*
8519 * we allow two log transactions at a time, use different
Andrea Gelmini52042d82018-11-28 12:05:13 +01008520 * EXTENT bit to differentiate dirty pages.
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008521 */
Filipe Manana656f30d2014-09-26 12:25:56 +01008522 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008523 set_extent_dirty(&root->dirty_log_pages, buf->start,
8524 buf->start + buf->len - 1, GFP_NOFS);
8525 else
8526 set_extent_new(&root->dirty_log_pages, buf->start,
David Sterba3744dbe2016-04-26 23:54:39 +02008527 buf->start + buf->len - 1);
Chris Masond0c803c2008-09-11 16:17:57 -04008528 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01008529 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04008530 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
8531 buf->start + buf->len - 1, GFP_NOFS);
8532 }
Jeff Mahoney64c12922016-06-08 00:36:38 -04008533 trans->dirty = true;
Chris Masonb4ce94d2009-02-04 09:25:08 -05008534 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04008535 return buf;
8536}
8537
Yan, Zhengf0486c62010-05-16 10:46:25 -04008538static struct btrfs_block_rsv *
8539use_block_rsv(struct btrfs_trans_handle *trans,
8540 struct btrfs_root *root, u32 blocksize)
8541{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008542 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008543 struct btrfs_block_rsv *block_rsv;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008544 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008545 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00008546 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008547
8548 block_rsv = get_block_rsv(trans, root);
8549
Miao Xieb586b322013-05-13 13:55:10 +00008550 if (unlikely(block_rsv->size == 0))
8551 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00008552again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008553 ret = block_rsv_use_bytes(block_rsv, blocksize);
8554 if (!ret)
8555 return block_rsv;
8556
Miao Xieb586b322013-05-13 13:55:10 +00008557 if (block_rsv->failfast)
8558 return ERR_PTR(ret);
8559
Miao Xied88033d2013-05-13 13:55:12 +00008560 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
8561 global_updated = true;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008562 update_global_block_rsv(fs_info);
Miao Xied88033d2013-05-13 13:55:12 +00008563 goto again;
8564 }
8565
Josef Bacikba2c4d42018-12-03 10:20:33 -05008566 /*
8567 * The global reserve still exists to save us from ourselves, so don't
8568 * warn_on if we are short on our delayed refs reserve.
8569 */
8570 if (block_rsv->type != BTRFS_BLOCK_RSV_DELREFS &&
8571 btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xieb586b322013-05-13 13:55:10 +00008572 static DEFINE_RATELIMIT_STATE(_rs,
8573 DEFAULT_RATELIMIT_INTERVAL * 10,
8574 /*DEFAULT_RATELIMIT_BURST*/ 1);
8575 if (__ratelimit(&_rs))
8576 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05008577 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00008578 }
8579try_reserve:
8580 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
8581 BTRFS_RESERVE_NO_FLUSH);
8582 if (!ret)
8583 return block_rsv;
8584 /*
8585 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00008586 * the global reserve if its space type is the same as the global
8587 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00008588 */
Miao Xie5881cfc2013-05-13 13:55:11 +00008589 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
8590 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00008591 ret = block_rsv_use_bytes(global_rsv, blocksize);
8592 if (!ret)
8593 return global_rsv;
8594 }
8595 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008596}
8597
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008598static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
8599 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008600{
Lu Fengqi3a584172018-08-04 21:10:55 +08008601 block_rsv_add_bytes(block_rsv, blocksize, false);
Qu Wenruoff6bc372017-12-21 13:42:04 +08008602 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0, NULL);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008603}
8604
Chris Masonfec577f2007-02-26 10:40:21 -05008605/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04008606 * finds a free extent and does all the dirty work required for allocation
Omar Sandoval67b78592015-02-24 02:47:04 -08008607 * returns the tree buffer or an ERR_PTR on error.
Chris Masonfec577f2007-02-26 10:40:21 -05008608 */
David Sterba4d75f8a2014-06-15 01:54:12 +02008609struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
Omar Sandoval310712b2017-01-17 23:24:37 -08008610 struct btrfs_root *root,
8611 u64 parent, u64 root_objectid,
8612 const struct btrfs_disk_key *key,
8613 int level, u64 hint,
8614 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05008615{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008616 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone2fa7222007-03-12 16:22:34 -04008617 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008618 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04008619 struct extent_buffer *buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008620 struct btrfs_delayed_extent_op *extent_op;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008621 u64 flags = 0;
8622 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008623 u32 blocksize = fs_info->nodesize;
8624 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008625
David Sterba05653ef2016-07-15 15:23:37 +02008626#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008627 if (btrfs_is_testing(fs_info)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008628 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008629 level, root_objectid);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008630 if (!IS_ERR(buf))
8631 root->alloc_bytenr += blocksize;
8632 return buf;
8633 }
David Sterba05653ef2016-07-15 15:23:37 +02008634#endif
David Sterbafccb84c2014-09-29 23:53:21 +02008635
Yan, Zhengf0486c62010-05-16 10:46:25 -04008636 block_rsv = use_block_rsv(trans, root, blocksize);
8637 if (IS_ERR(block_rsv))
8638 return ERR_CAST(block_rsv);
8639
Wang Xiaoguang18513092016-07-25 15:51:40 +08008640 ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08008641 empty_size, hint, &ins, 0, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008642 if (ret)
8643 goto out_unuse;
Chris Mason55c69072008-01-09 15:55:33 -05008644
Nikolay Borisovbc877d22018-06-18 14:13:19 +03008645 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level,
8646 root_objectid);
Omar Sandoval67b78592015-02-24 02:47:04 -08008647 if (IS_ERR(buf)) {
8648 ret = PTR_ERR(buf);
8649 goto out_free_reserved;
8650 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008651
8652 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
8653 if (parent == 0)
8654 parent = ins.objectid;
8655 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
8656 } else
8657 BUG_ON(parent > 0);
8658
8659 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Miao Xie78a61842012-11-21 02:21:28 +00008660 extent_op = btrfs_alloc_delayed_extent_op();
Omar Sandoval67b78592015-02-24 02:47:04 -08008661 if (!extent_op) {
8662 ret = -ENOMEM;
8663 goto out_free_buf;
8664 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008665 if (key)
8666 memcpy(&extent_op->key, key, sizeof(extent_op->key));
8667 else
8668 memset(&extent_op->key, 0, sizeof(extent_op->key));
8669 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01008670 extent_op->update_key = skinny_metadata ? false : true;
8671 extent_op->update_flags = true;
8672 extent_op->is_data = false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04008673 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008674
Josef Bacikfd708b82017-09-29 15:43:50 -04008675 btrfs_ref_tree_mod(root, ins.objectid, ins.offset, parent,
8676 root_objectid, level, 0,
8677 BTRFS_ADD_DELAYED_EXTENT);
Nikolay Borisov44e1c472018-06-20 15:48:53 +03008678 ret = btrfs_add_delayed_tree_ref(trans, ins.objectid,
Omar Sandoval7be07912017-06-06 16:45:30 -07008679 ins.offset, parent,
8680 root_objectid, level,
Omar Sandoval67b78592015-02-24 02:47:04 -08008681 BTRFS_ADD_DELAYED_EXTENT,
Omar Sandoval7be07912017-06-06 16:45:30 -07008682 extent_op, NULL, NULL);
Omar Sandoval67b78592015-02-24 02:47:04 -08008683 if (ret)
8684 goto out_free_delayed;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008685 }
Chris Masonfec577f2007-02-26 10:40:21 -05008686 return buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008687
8688out_free_delayed:
8689 btrfs_free_delayed_extent_op(extent_op);
8690out_free_buf:
8691 free_extent_buffer(buf);
8692out_free_reserved:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008693 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008694out_unuse:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008695 unuse_block_rsv(fs_info, block_rsv, blocksize);
Omar Sandoval67b78592015-02-24 02:47:04 -08008696 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05008697}
Chris Masona28ec192007-03-06 20:08:01 -05008698
Yan Zheng2c47e6052009-06-27 21:07:35 -04008699struct walk_control {
8700 u64 refs[BTRFS_MAX_LEVEL];
8701 u64 flags[BTRFS_MAX_LEVEL];
8702 struct btrfs_key update_progress;
8703 int stage;
8704 int level;
8705 int shared_level;
8706 int update_ref;
8707 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008708 int reada_slot;
8709 int reada_count;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008710};
8711
8712#define DROP_REFERENCE 1
8713#define UPDATE_BACKREF 2
8714
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008715static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
8716 struct btrfs_root *root,
8717 struct walk_control *wc,
8718 struct btrfs_path *path)
8719{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008720 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008721 u64 bytenr;
8722 u64 generation;
8723 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008724 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008725 u32 nritems;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008726 struct btrfs_key key;
8727 struct extent_buffer *eb;
8728 int ret;
8729 int slot;
8730 int nread = 0;
8731
8732 if (path->slots[wc->level] < wc->reada_slot) {
8733 wc->reada_count = wc->reada_count * 2 / 3;
8734 wc->reada_count = max(wc->reada_count, 2);
8735 } else {
8736 wc->reada_count = wc->reada_count * 3 / 2;
8737 wc->reada_count = min_t(int, wc->reada_count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008738 BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008739 }
8740
8741 eb = path->nodes[wc->level];
8742 nritems = btrfs_header_nritems(eb);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008743
8744 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
8745 if (nread >= wc->reada_count)
8746 break;
8747
8748 cond_resched();
8749 bytenr = btrfs_node_blockptr(eb, slot);
8750 generation = btrfs_node_ptr_generation(eb, slot);
8751
8752 if (slot == path->slots[wc->level])
8753 goto reada;
8754
8755 if (wc->stage == UPDATE_BACKREF &&
8756 generation <= root->root_key.offset)
8757 continue;
8758
Yan, Zheng94fcca92009-10-09 09:25:16 -04008759 /* We don't lock the tree block, it's OK to be racy here */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008760 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -05008761 wc->level - 1, 1, &refs,
8762 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008763 /* We don't care about errors in readahead. */
8764 if (ret < 0)
8765 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008766 BUG_ON(refs == 0);
8767
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008768 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008769 if (refs == 1)
8770 goto reada;
8771
Yan, Zheng94fcca92009-10-09 09:25:16 -04008772 if (wc->level == 1 &&
8773 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8774 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008775 if (!wc->update_ref ||
8776 generation <= root->root_key.offset)
8777 continue;
8778 btrfs_node_key_to_cpu(eb, &key, slot);
8779 ret = btrfs_comp_cpu_keys(&key,
8780 &wc->update_progress);
8781 if (ret < 0)
8782 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008783 } else {
8784 if (wc->level == 1 &&
8785 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8786 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008787 }
8788reada:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008789 readahead_tree_block(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008790 nread++;
8791 }
8792 wc->reada_slot = slot;
8793}
8794
Chris Mason9aca1d52007-03-13 11:09:37 -04008795/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008796 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008797 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04008798 * when wc->stage == UPDATE_BACKREF, this function updates
8799 * back refs for pointers in the block.
8800 *
8801 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04008802 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008803static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
8804 struct btrfs_root *root,
8805 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008806 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04008807{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008808 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008809 int level = wc->level;
8810 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04008811 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8812 int ret;
8813
8814 if (wc->stage == UPDATE_BACKREF &&
8815 btrfs_header_owner(eb) != root->root_key.objectid)
8816 return 1;
8817
8818 /*
8819 * when reference count of tree block is 1, it won't increase
8820 * again. once full backref flag is set, we never clear it.
8821 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04008822 if (lookup_info &&
8823 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
8824 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008825 BUG_ON(!path->locks[level]);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008826 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05008827 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008828 &wc->refs[level],
8829 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008830 BUG_ON(ret == -ENOMEM);
8831 if (ret)
8832 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008833 BUG_ON(wc->refs[level] == 0);
8834 }
8835
Yan Zheng2c47e6052009-06-27 21:07:35 -04008836 if (wc->stage == DROP_REFERENCE) {
8837 if (wc->refs[level] > 1)
8838 return 1;
8839
8840 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04008841 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008842 path->locks[level] = 0;
8843 }
8844 return 0;
8845 }
8846
8847 /* wc->stage == UPDATE_BACKREF */
8848 if (!(wc->flags[level] & flag)) {
8849 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07008850 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008851 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07008852 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008853 BUG_ON(ret); /* -ENOMEM */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008854 ret = btrfs_set_disk_extent_flags(trans, fs_info, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04008855 eb->len, flag,
8856 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008857 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008858 wc->flags[level] |= flag;
8859 }
8860
8861 /*
8862 * the block is shared by multiple trees, so it's not good to
8863 * keep the tree lock
8864 */
8865 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008866 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008867 path->locks[level] = 0;
8868 }
8869 return 0;
8870}
8871
8872/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008873 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008874 *
8875 * when wc->stage == DROP_REFERENCE, this function checks
8876 * reference count of the block pointed to. if the block
8877 * is shared and we need update back refs for the subtree
8878 * rooted at the block, this function changes wc->stage to
8879 * UPDATE_BACKREF. if the block is shared and there is no
8880 * need to update back, this function drops the reference
8881 * to the block.
8882 *
8883 * NOTE: return value 1 means we should stop walking down.
8884 */
8885static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8886 struct btrfs_root *root,
8887 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008888 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008889{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008890 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008891 u64 bytenr;
8892 u64 generation;
8893 u64 parent;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008894 struct btrfs_key key;
Qu Wenruo581c1762018-03-29 09:08:11 +08008895 struct btrfs_key first_key;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008896 struct extent_buffer *next;
8897 int level = wc->level;
8898 int reada = 0;
8899 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008900 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008901
8902 generation = btrfs_node_ptr_generation(path->nodes[level],
8903 path->slots[level]);
8904 /*
8905 * if the lower level block was created before the snapshot
8906 * was created, we know there is no need to update back refs
8907 * for the subtree
8908 */
8909 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008910 generation <= root->root_key.offset) {
8911 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008912 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008913 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008914
8915 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
Qu Wenruo581c1762018-03-29 09:08:11 +08008916 btrfs_node_key_to_cpu(path->nodes[level], &first_key,
8917 path->slots[level]);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008918
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008919 next = find_extent_buffer(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008920 if (!next) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008921 next = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008922 if (IS_ERR(next))
8923 return PTR_ERR(next);
8924
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008925 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8926 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008927 reada = 1;
8928 }
8929 btrfs_tree_lock(next);
David Sterba8bead252018-04-04 02:03:48 +02008930 btrfs_set_lock_blocking_write(next);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008931
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008932 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008933 &wc->refs[level - 1],
8934 &wc->flags[level - 1]);
Josef Bacik48672682016-09-23 13:23:28 +02008935 if (ret < 0)
8936 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008937
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008938 if (unlikely(wc->refs[level - 1] == 0)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008939 btrfs_err(fs_info, "Missing references.");
Josef Bacik48672682016-09-23 13:23:28 +02008940 ret = -EIO;
8941 goto out_unlock;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008942 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008943 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008944
Yan, Zheng94fcca92009-10-09 09:25:16 -04008945 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008946 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008947 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008948 if (level == 1 &&
8949 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8950 goto skip;
8951
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008952 if (!wc->update_ref ||
8953 generation <= root->root_key.offset)
8954 goto skip;
8955
8956 btrfs_node_key_to_cpu(path->nodes[level], &key,
8957 path->slots[level]);
8958 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8959 if (ret < 0)
8960 goto skip;
8961
8962 wc->stage = UPDATE_BACKREF;
8963 wc->shared_level = level - 1;
8964 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008965 } else {
8966 if (level == 1 &&
8967 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8968 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008969 }
8970
Chris Masonb9fab912012-05-06 07:23:47 -04008971 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008972 btrfs_tree_unlock(next);
8973 free_extent_buffer(next);
8974 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008975 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008976 }
8977
8978 if (!next) {
8979 if (reada && level == 1)
8980 reada_walk_down(trans, root, wc, path);
Qu Wenruo581c1762018-03-29 09:08:11 +08008981 next = read_tree_block(fs_info, bytenr, generation, level - 1,
8982 &first_key);
Liu Bo64c043d2015-05-25 17:30:15 +08008983 if (IS_ERR(next)) {
8984 return PTR_ERR(next);
8985 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008986 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008987 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008988 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008989 btrfs_tree_lock(next);
David Sterba8bead252018-04-04 02:03:48 +02008990 btrfs_set_lock_blocking_write(next);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008991 }
8992
8993 level--;
Josef Bacik48672682016-09-23 13:23:28 +02008994 ASSERT(level == btrfs_header_level(next));
8995 if (level != btrfs_header_level(next)) {
8996 btrfs_err(root->fs_info, "mismatched level");
8997 ret = -EIO;
8998 goto out_unlock;
8999 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009000 path->nodes[level] = next;
9001 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009002 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009003 wc->level = level;
9004 if (wc->level == 1)
9005 wc->reada_slot = 0;
9006 return 0;
9007skip:
9008 wc->refs[level - 1] = 0;
9009 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04009010 if (wc->stage == DROP_REFERENCE) {
9011 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
9012 parent = path->nodes[level]->start;
9013 } else {
Josef Bacik48672682016-09-23 13:23:28 +02009014 ASSERT(root->root_key.objectid ==
Yan, Zheng94fcca92009-10-09 09:25:16 -04009015 btrfs_header_owner(path->nodes[level]));
Josef Bacik48672682016-09-23 13:23:28 +02009016 if (root->root_key.objectid !=
9017 btrfs_header_owner(path->nodes[level])) {
9018 btrfs_err(root->fs_info,
9019 "mismatched block owner");
9020 ret = -EIO;
9021 goto out_unlock;
9022 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04009023 parent = 0;
9024 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009025
Qu Wenruo2cd86d32018-09-27 14:42:33 +08009026 /*
9027 * Reloc tree doesn't contribute to qgroup numbers, and we have
9028 * already accounted them at merge time (replace_path),
9029 * thus we could skip expensive subtree trace here.
9030 */
9031 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
9032 need_account) {
Lu Fengqideb40622018-07-18 14:45:38 +08009033 ret = btrfs_qgroup_trace_subtree(trans, next,
Qu Wenruo33d1f052016-10-18 09:31:28 +08009034 generation, level - 1);
Mark Fasheh11526512014-07-17 12:39:01 -07009035 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009036 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009037 "Error %d accounting shared subtree. Quota is out of sync, rescan required.",
9038 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07009039 }
9040 }
Qu Wenruo01e0da42018-12-10 15:01:03 +08009041 ret = btrfs_free_extent(trans, root, bytenr, fs_info->nodesize,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009042 parent, root->root_key.objectid,
9043 level - 1, 0);
Josef Bacik48672682016-09-23 13:23:28 +02009044 if (ret)
9045 goto out_unlock;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009046 }
Josef Bacik48672682016-09-23 13:23:28 +02009047
9048 *lookup_info = 1;
9049 ret = 1;
9050
9051out_unlock:
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009052 btrfs_tree_unlock(next);
9053 free_extent_buffer(next);
Josef Bacik48672682016-09-23 13:23:28 +02009054
9055 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009056}
9057
9058/*
Liu Bo2c016dc2012-12-26 15:32:17 +08009059 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04009060 *
9061 * when wc->stage == DROP_REFERENCE, this function drops
9062 * reference count on the block.
9063 *
9064 * when wc->stage == UPDATE_BACKREF, this function changes
9065 * wc->stage back to DROP_REFERENCE if we changed wc->stage
9066 * to UPDATE_BACKREF previously while processing the block.
9067 *
9068 * NOTE: return value 1 means we should stop walking up.
9069 */
9070static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
9071 struct btrfs_root *root,
9072 struct btrfs_path *path,
9073 struct walk_control *wc)
9074{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009075 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009076 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009077 int level = wc->level;
9078 struct extent_buffer *eb = path->nodes[level];
9079 u64 parent = 0;
9080
9081 if (wc->stage == UPDATE_BACKREF) {
9082 BUG_ON(wc->shared_level < level);
9083 if (level < wc->shared_level)
9084 goto out;
9085
Yan Zheng2c47e6052009-06-27 21:07:35 -04009086 ret = find_next_key(path, level + 1, &wc->update_progress);
9087 if (ret > 0)
9088 wc->update_ref = 0;
9089
9090 wc->stage = DROP_REFERENCE;
9091 wc->shared_level = -1;
9092 path->slots[level] = 0;
9093
9094 /*
9095 * check reference count again if the block isn't locked.
9096 * we should start walking down the tree again if reference
9097 * count is one.
9098 */
9099 if (!path->locks[level]) {
9100 BUG_ON(level == 0);
9101 btrfs_tree_lock(eb);
David Sterba8bead252018-04-04 02:03:48 +02009102 btrfs_set_lock_blocking_write(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009103 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009104
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009105 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05009106 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009107 &wc->refs[level],
9108 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009109 if (ret < 0) {
9110 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009111 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009112 return ret;
9113 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009114 BUG_ON(wc->refs[level] == 0);
9115 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04009116 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00009117 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009118 return 1;
9119 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009120 }
9121 }
9122
9123 /* wc->stage == DROP_REFERENCE */
9124 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
9125
9126 if (wc->refs[level] == 1) {
9127 if (level == 0) {
9128 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07009129 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009130 else
Josef Bacike339a6b2014-07-02 10:54:25 -07009131 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009132 BUG_ON(ret); /* -ENOMEM */
Lu Fengqi8d38d7e2018-07-18 14:45:37 +08009133 ret = btrfs_qgroup_trace_leaf_items(trans, eb);
Mark Fasheh11526512014-07-17 12:39:01 -07009134 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009135 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04009136 "error %d accounting leaf items. Quota is out of sync, rescan required.",
9137 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07009138 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009139 }
9140 /* make block locked assertion in clean_tree_block happy */
9141 if (!path->locks[level] &&
9142 btrfs_header_generation(eb) == trans->transid) {
9143 btrfs_tree_lock(eb);
David Sterba8bead252018-04-04 02:03:48 +02009144 btrfs_set_lock_blocking_write(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009145 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009146 }
David Sterba7c302b42017-02-10 18:47:57 +01009147 clean_tree_block(fs_info, eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009148 }
9149
9150 if (eb == root->node) {
9151 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9152 parent = eb->start;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009153 else if (root->root_key.objectid != btrfs_header_owner(eb))
9154 goto owner_mismatch;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009155 } else {
9156 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9157 parent = path->nodes[level + 1]->start;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009158 else if (root->root_key.objectid !=
9159 btrfs_header_owner(path->nodes[level + 1]))
9160 goto owner_mismatch;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009161 }
9162
Jan Schmidt5581a512012-05-16 17:04:52 +02009163 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009164out:
9165 wc->refs[level] = 0;
9166 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009167 return 0;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009168
9169owner_mismatch:
9170 btrfs_err_rl(fs_info, "unexpected tree owner, have %llu expect %llu",
9171 btrfs_header_owner(eb), root->root_key.objectid);
9172 return -EUCLEAN;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009173}
9174
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009175static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
9176 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009177 struct btrfs_path *path,
9178 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009179{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009180 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04009181 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009182 int ret;
9183
Yan Zheng2c47e6052009-06-27 21:07:35 -04009184 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04009185 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009186 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009187 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009188
Yan Zheng2c47e6052009-06-27 21:07:35 -04009189 if (level == 0)
9190 break;
9191
Yan, Zheng7a7965f2010-02-01 02:41:17 +00009192 if (path->slots[level] >=
9193 btrfs_header_nritems(path->nodes[level]))
9194 break;
9195
Yan, Zheng94fcca92009-10-09 09:25:16 -04009196 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009197 if (ret > 0) {
9198 path->slots[level]++;
9199 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00009200 } else if (ret < 0)
9201 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009202 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009203 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009204 return 0;
9205}
9206
Chris Masond3977122009-01-05 21:25:51 -05009207static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05009208 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04009209 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009210 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05009211{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009212 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05009213 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04009214
Yan Zheng2c47e6052009-06-27 21:07:35 -04009215 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
9216 while (level < max_level && path->nodes[level]) {
9217 wc->level = level;
9218 if (path->slots[level] + 1 <
9219 btrfs_header_nritems(path->nodes[level])) {
9220 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05009221 return 0;
9222 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009223 ret = walk_up_proc(trans, root, path, wc);
9224 if (ret > 0)
9225 return 0;
Qu Wenruo65c6e822018-08-21 09:42:03 +08009226 if (ret < 0)
9227 return ret;
Chris Masonbd56b302009-02-04 09:27:02 -05009228
Yan Zheng2c47e6052009-06-27 21:07:35 -04009229 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04009230 btrfs_tree_unlock_rw(path->nodes[level],
9231 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009232 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009233 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009234 free_extent_buffer(path->nodes[level]);
9235 path->nodes[level] = NULL;
9236 level++;
Chris Mason20524f02007-03-10 06:35:47 -05009237 }
9238 }
9239 return 1;
9240}
9241
Chris Mason9aca1d52007-03-13 11:09:37 -04009242/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04009243 * drop a subvolume tree.
9244 *
9245 * this function traverses the tree freeing any blocks that only
9246 * referenced by the tree.
9247 *
9248 * when a shared tree block is found. this function decreases its
9249 * reference count by one. if update_ref is true, this function
9250 * also make sure backrefs for the shared block and all lower level
9251 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00009252 *
9253 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04009254 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04009255int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009256 struct btrfs_block_rsv *block_rsv, int update_ref,
9257 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05009258{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009259 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04009260 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009261 struct btrfs_trans_handle *trans;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009262 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04009263 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009264 struct walk_control *wc;
9265 struct btrfs_key key;
9266 int err = 0;
9267 int ret;
9268 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04009269 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05009270
Misono Tomohiro4fd786e2018-08-06 14:25:24 +09009271 btrfs_debug(fs_info, "Drop subvolume %llu", root->root_key.objectid);
Mark Fasheh11526512014-07-17 12:39:01 -07009272
Chris Mason5caf2a02007-04-02 11:20:42 -04009273 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009274 if (!path) {
9275 err = -ENOMEM;
9276 goto out;
9277 }
Chris Mason20524f02007-03-10 06:35:47 -05009278
Yan Zheng2c47e6052009-06-27 21:07:35 -04009279 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07009280 if (!wc) {
9281 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009282 err = -ENOMEM;
9283 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07009284 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009285
Yan, Zhenga22285a2010-05-16 10:48:46 -04009286 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009287 if (IS_ERR(trans)) {
9288 err = PTR_ERR(trans);
9289 goto out_free;
9290 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00009291
Josef Bacik0568e822018-11-30 11:52:14 -05009292 err = btrfs_run_delayed_items(trans);
9293 if (err)
9294 goto out_end_trans;
9295
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009296 if (block_rsv)
9297 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009298
Josef Bacik83354f02018-11-30 11:52:13 -05009299 /*
9300 * This will help us catch people modifying the fs tree while we're
9301 * dropping it. It is unsafe to mess with the fs tree while it's being
9302 * dropped as we unlock the root node and parent nodes as we walk down
9303 * the tree, assuming nothing will change. If something does change
9304 * then we'll have stale information and drop references to blocks we've
9305 * already dropped.
9306 */
9307 set_bit(BTRFS_ROOT_DELETING, &root->state);
Chris Mason9f3a7422007-08-07 15:52:19 -04009308 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009309 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009310 path->nodes[level] = btrfs_lock_root_node(root);
David Sterba8bead252018-04-04 02:03:48 +02009311 btrfs_set_lock_blocking_write(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04009312 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009313 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009314 memset(&wc->update_progress, 0,
9315 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04009316 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04009317 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009318 memcpy(&wc->update_progress, &key,
9319 sizeof(wc->update_progress));
9320
Chris Mason6702ed42007-08-07 16:15:09 -04009321 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009322 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04009323 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009324 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
9325 path->lowest_level = 0;
9326 if (ret < 0) {
9327 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009328 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04009329 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009330 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009331
Chris Mason7d9eb122008-07-08 14:19:17 -04009332 /*
9333 * unlock our path, this is safe because only this
9334 * function is allowed to delete this snapshot
9335 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009336 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04009337
Yan Zheng2c47e6052009-06-27 21:07:35 -04009338 level = btrfs_header_level(root->node);
9339 while (1) {
9340 btrfs_tree_lock(path->nodes[level]);
David Sterba8bead252018-04-04 02:03:48 +02009341 btrfs_set_lock_blocking_write(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009342 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009343
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009344 ret = btrfs_lookup_extent_info(trans, fs_info,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009345 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05009346 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04009347 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009348 if (ret < 0) {
9349 err = ret;
9350 goto out_end_trans;
9351 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009352 BUG_ON(wc->refs[level] == 0);
9353
9354 if (level == root_item->drop_level)
9355 break;
9356
9357 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009358 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009359 WARN_ON(wc->refs[level] != 1);
9360 level--;
9361 }
9362 }
9363
9364 wc->level = level;
9365 wc->shared_level = -1;
9366 wc->stage = DROP_REFERENCE;
9367 wc->update_ref = update_ref;
9368 wc->keep_locks = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009369 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009370
9371 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00009372
Yan Zheng2c47e6052009-06-27 21:07:35 -04009373 ret = walk_down_tree(trans, root, path, wc);
9374 if (ret < 0) {
9375 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04009376 break;
9377 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009378
9379 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
9380 if (ret < 0) {
9381 err = ret;
9382 break;
9383 }
9384
9385 if (ret > 0) {
9386 BUG_ON(wc->stage != DROP_REFERENCE);
9387 break;
9388 }
9389
9390 if (wc->stage == DROP_REFERENCE) {
9391 level = wc->level;
9392 btrfs_node_key(path->nodes[level],
9393 &root_item->drop_progress,
9394 path->slots[level]);
9395 root_item->drop_level = level;
9396 }
9397
9398 BUG_ON(wc->level == 0);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009399 if (btrfs_should_end_transaction(trans) ||
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009400 (!for_reloc && btrfs_need_cleaner_sleep(fs_info))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009401 ret = btrfs_update_root(trans, tree_root,
9402 &root->root_key,
9403 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009404 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009405 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009406 err = ret;
9407 goto out_end_trans;
9408 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009409
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009410 btrfs_end_transaction_throttle(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009411 if (!for_reloc && btrfs_need_cleaner_sleep(fs_info)) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009412 btrfs_debug(fs_info,
9413 "drop snapshot early exit");
Josef Bacik3c8f2422013-07-15 11:57:06 -04009414 err = -EAGAIN;
9415 goto out_free;
9416 }
9417
Yan, Zhenga22285a2010-05-16 10:48:46 -04009418 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009419 if (IS_ERR(trans)) {
9420 err = PTR_ERR(trans);
9421 goto out_free;
9422 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009423 if (block_rsv)
9424 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04009425 }
Chris Mason20524f02007-03-10 06:35:47 -05009426 }
David Sterbab3b4aa72011-04-21 01:20:15 +02009427 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009428 if (err)
9429 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009430
Lu Fengqiab9ce7d2018-08-01 11:32:27 +08009431 ret = btrfs_del_root(trans, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009432 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009433 btrfs_abort_transaction(trans, ret);
Jeff Mahoneye19182c2017-12-04 13:11:45 -05009434 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009435 goto out_end_trans;
9436 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009437
Yan, Zheng76dda932009-09-21 16:00:26 -04009438 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00009439 ret = btrfs_find_root(tree_root, &root->root_key, path,
9440 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009441 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009442 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009443 err = ret;
9444 goto out_end_trans;
9445 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05009446 /* if we fail to delete the orphan item this time
9447 * around, it'll get picked up the next time.
9448 *
9449 * The most common failure here is just -ENOENT.
9450 */
9451 btrfs_del_orphan_item(trans, tree_root,
9452 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04009453 }
9454 }
9455
Miao Xie27cdeb72014-04-02 19:51:05 +08009456 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Josef Bacik2b9dbef2015-09-15 10:07:04 -04009457 btrfs_add_dropped_root(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009458 } else {
9459 free_extent_buffer(root->node);
9460 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00009461 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009462 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04009463 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009464out_end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009465 btrfs_end_transaction_throttle(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009466out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04009467 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04009468 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009469out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04009470 /*
9471 * So if we need to stop dropping the snapshot for whatever reason we
9472 * need to make sure to add it back to the dead root list so that we
9473 * keep trying to do the work later. This also cleans up roots if we
9474 * don't have it in the radix (like when we recover after a power fail
9475 * or unmount) so we don't leak memory.
9476 */
Thomas Meyer897ca812017-10-07 16:02:21 +02009477 if (!for_reloc && !root_dropped)
Josef Bacikd29a9f62013-07-17 19:30:20 -04009478 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08009479 if (err && err != -EAGAIN)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009480 btrfs_handle_fs_error(fs_info, err, NULL);
Jeff Mahoney2c536792011-10-03 23:22:41 -04009481 return err;
Chris Mason20524f02007-03-10 06:35:47 -05009482}
Chris Mason9078a3e2007-04-26 16:46:15 -04009483
Yan Zheng2c47e6052009-06-27 21:07:35 -04009484/*
9485 * drop subtree rooted at tree block 'node'.
9486 *
9487 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009488 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04009489 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04009490int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
9491 struct btrfs_root *root,
9492 struct extent_buffer *node,
9493 struct extent_buffer *parent)
9494{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009495 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009496 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009497 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009498 int level;
9499 int parent_level;
9500 int ret = 0;
9501 int wret;
9502
Yan Zheng2c47e6052009-06-27 21:07:35 -04009503 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
9504
Yan Zhengf82d02d2008-10-29 14:49:05 -04009505 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009506 if (!path)
9507 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009508
Yan Zheng2c47e6052009-06-27 21:07:35 -04009509 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009510 if (!wc) {
9511 btrfs_free_path(path);
9512 return -ENOMEM;
9513 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009514
Chris Masonb9447ef82009-03-09 11:45:38 -04009515 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009516 parent_level = btrfs_header_level(parent);
9517 extent_buffer_get(parent);
9518 path->nodes[parent_level] = parent;
9519 path->slots[parent_level] = btrfs_header_nritems(parent);
9520
Chris Masonb9447ef82009-03-09 11:45:38 -04009521 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009522 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009523 path->nodes[level] = node;
9524 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009525 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009526
9527 wc->refs[parent_level] = 1;
9528 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
9529 wc->level = level;
9530 wc->shared_level = -1;
9531 wc->stage = DROP_REFERENCE;
9532 wc->update_ref = 0;
9533 wc->keep_locks = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009534 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009535
9536 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009537 wret = walk_down_tree(trans, root, path, wc);
9538 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04009539 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009540 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009541 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009542
Yan Zheng2c47e6052009-06-27 21:07:35 -04009543 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009544 if (wret < 0)
9545 ret = wret;
9546 if (wret != 0)
9547 break;
9548 }
9549
Yan Zheng2c47e6052009-06-27 21:07:35 -04009550 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009551 btrfs_free_path(path);
9552 return ret;
9553}
9554
Jeff Mahoney6202df62016-06-22 18:54:22 -04009555static u64 update_block_group_flags(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04009556{
9557 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009558 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04009559
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009560 /*
9561 * if restripe for this chunk_type is on pick target profile and
9562 * return, otherwise do the usual balance
9563 */
Jeff Mahoney6202df62016-06-22 18:54:22 -04009564 stripped = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009565 if (stripped)
9566 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02009567
Jeff Mahoney6202df62016-06-22 18:54:22 -04009568 num_devices = fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05009569
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009570 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009571 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009572 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
9573
Chris Masonec44a352008-04-28 15:29:52 -04009574 if (num_devices == 1) {
9575 stripped |= BTRFS_BLOCK_GROUP_DUP;
9576 stripped = flags & ~stripped;
9577
9578 /* turn raid0 into single device chunks */
9579 if (flags & BTRFS_BLOCK_GROUP_RAID0)
9580 return stripped;
9581
9582 /* turn mirroring into duplication */
9583 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
9584 BTRFS_BLOCK_GROUP_RAID10))
9585 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04009586 } else {
9587 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04009588 if (flags & stripped)
9589 return flags;
9590
9591 stripped |= BTRFS_BLOCK_GROUP_DUP;
9592 stripped = flags & ~stripped;
9593
9594 /* switch duplicated blocks with raid1 */
9595 if (flags & BTRFS_BLOCK_GROUP_DUP)
9596 return stripped | BTRFS_BLOCK_GROUP_RAID1;
9597
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009598 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04009599 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009600
Chris Masonec44a352008-04-28 15:29:52 -04009601 return flags;
9602}
9603
Zhaolei868f4012015-08-05 16:43:27 +08009604static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04009605{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009606 struct btrfs_space_info *sinfo = cache->space_info;
9607 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00009608 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009609 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04009610
Miao Xie199c36e2011-07-15 10:34:36 +00009611 /*
9612 * We need some metadata space and system metadata space for
9613 * allocating chunks in some corner cases until we force to set
9614 * it to be readonly.
9615 */
9616 if ((sinfo->flags &
9617 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
9618 !force)
Byongho Leeee221842015-12-15 01:42:10 +09009619 min_allocable_bytes = SZ_1M;
Miao Xie199c36e2011-07-15 10:34:36 +00009620 else
9621 min_allocable_bytes = 0;
9622
Yan, Zhengf0486c62010-05-16 10:46:25 -04009623 spin_lock(&sinfo->lock);
9624 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00009625
9626 if (cache->ro) {
Zhaolei868f4012015-08-05 16:43:27 +08009627 cache->ro++;
WuBo61cfea92011-07-26 03:30:11 +00009628 ret = 0;
9629 goto out;
9630 }
9631
Yan, Zhengf0486c62010-05-16 10:46:25 -04009632 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
9633 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04009634
Liu Bo41361352017-02-13 15:42:21 -08009635 if (btrfs_space_info_used(sinfo, true) + num_bytes +
Josef Bacik37be25b2011-08-05 10:25:38 -04009636 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04009637 sinfo->bytes_readonly += num_bytes;
Zhaolei868f4012015-08-05 16:43:27 +08009638 cache->ro++;
Josef Bacik633c0aa2014-10-31 09:49:34 -04009639 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009640 ret = 0;
9641 }
WuBo61cfea92011-07-26 03:30:11 +00009642out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04009643 spin_unlock(&cache->lock);
9644 spin_unlock(&sinfo->lock);
9645 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04009646}
9647
Nikolay Borisovc83488a2018-06-20 15:49:14 +03009648int btrfs_inc_block_group_ro(struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009649
9650{
Nikolay Borisovc83488a2018-06-20 15:49:14 +03009651 struct btrfs_fs_info *fs_info = cache->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009652 struct btrfs_trans_handle *trans;
9653 u64 alloc_flags;
9654 int ret;
9655
Chris Mason1bbc6212015-04-06 12:46:08 -07009656again:
Jeff Mahoney5e00f192017-02-15 16:28:29 -05009657 trans = btrfs_join_transaction(fs_info->extent_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009658 if (IS_ERR(trans))
9659 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009660
Chris Mason1bbc6212015-04-06 12:46:08 -07009661 /*
9662 * we're not allowed to set block groups readonly after the dirty
9663 * block groups cache has started writing. If it already started,
9664 * back off and let this transaction commit
9665 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009666 mutex_lock(&fs_info->ro_block_group_mutex);
Josef Bacik3204d332015-09-24 10:46:10 -04009667 if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009668 u64 transid = trans->transid;
9669
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009670 mutex_unlock(&fs_info->ro_block_group_mutex);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009671 btrfs_end_transaction(trans);
Chris Mason1bbc6212015-04-06 12:46:08 -07009672
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009673 ret = btrfs_wait_for_commit(fs_info, transid);
Chris Mason1bbc6212015-04-06 12:46:08 -07009674 if (ret)
9675 return ret;
9676 goto again;
9677 }
9678
Chris Mason153c35b2015-05-19 18:54:41 -07009679 /*
9680 * if we are changing raid levels, try to allocate a corresponding
9681 * block group with the new raid level.
9682 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009683 alloc_flags = update_block_group_flags(fs_info, cache->flags);
Chris Mason153c35b2015-05-19 18:54:41 -07009684 if (alloc_flags != cache->flags) {
Nikolay Borisov01458822018-06-20 15:49:05 +03009685 ret = do_chunk_alloc(trans, alloc_flags,
Chris Mason153c35b2015-05-19 18:54:41 -07009686 CHUNK_ALLOC_FORCE);
9687 /*
9688 * ENOSPC is allowed here, we may have enough space
9689 * already allocated at the new raid level to
9690 * carry on
9691 */
9692 if (ret == -ENOSPC)
9693 ret = 0;
9694 if (ret < 0)
9695 goto out;
9696 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009697
Zhaolei868f4012015-08-05 16:43:27 +08009698 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009699 if (!ret)
9700 goto out;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009701 alloc_flags = get_alloc_profile(fs_info, cache->space_info->flags);
Nikolay Borisov01458822018-06-20 15:49:05 +03009702 ret = do_chunk_alloc(trans, alloc_flags, CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009703 if (ret < 0)
9704 goto out;
Zhaolei868f4012015-08-05 16:43:27 +08009705 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009706out:
Shaohua Li2f081082015-01-09 10:40:15 -08009707 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009708 alloc_flags = update_block_group_flags(fs_info, cache->flags);
David Sterba34441362016-10-04 19:34:27 +02009709 mutex_lock(&fs_info->chunk_mutex);
Nikolay Borisov451a2c12018-06-20 15:49:07 +03009710 check_system_chunk(trans, alloc_flags);
David Sterba34441362016-10-04 19:34:27 +02009711 mutex_unlock(&fs_info->chunk_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009712 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009713 mutex_unlock(&fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009714
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009715 btrfs_end_transaction(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009716 return ret;
9717}
9718
Nikolay Borisov43a7e992018-06-20 15:49:15 +03009719int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans, u64 type)
Chris Masonc87f08c2011-02-16 13:57:04 -05009720{
Nikolay Borisov43a7e992018-06-20 15:49:15 +03009721 u64 alloc_flags = get_alloc_profile(trans->fs_info, type);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009722
Nikolay Borisov01458822018-06-20 15:49:05 +03009723 return do_chunk_alloc(trans, alloc_flags, CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05009724}
9725
Miao Xie6d07bce2011-01-05 10:07:31 +00009726/*
9727 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04009728 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00009729 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009730u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00009731{
9732 struct btrfs_block_group_cache *block_group;
9733 u64 free_bytes = 0;
9734 int factor;
9735
Nicholas D Steeves01327612016-05-19 21:18:45 -04009736 /* It's df, we don't care if it's racy */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009737 if (list_empty(&sinfo->ro_bgs))
9738 return 0;
9739
9740 spin_lock(&sinfo->lock);
9741 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00009742 spin_lock(&block_group->lock);
9743
9744 if (!block_group->ro) {
9745 spin_unlock(&block_group->lock);
9746 continue;
9747 }
9748
David Sterba46df06b2018-07-13 20:46:30 +02009749 factor = btrfs_bg_type_to_factor(block_group->flags);
Miao Xie6d07bce2011-01-05 10:07:31 +00009750 free_bytes += (block_group->key.offset -
9751 btrfs_block_group_used(&block_group->item)) *
9752 factor;
9753
9754 spin_unlock(&block_group->lock);
9755 }
Miao Xie6d07bce2011-01-05 10:07:31 +00009756 spin_unlock(&sinfo->lock);
9757
9758 return free_bytes;
9759}
9760
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009761void btrfs_dec_block_group_ro(struct btrfs_block_group_cache *cache)
Yan, Zhengf0486c62010-05-16 10:46:25 -04009762{
9763 struct btrfs_space_info *sinfo = cache->space_info;
9764 u64 num_bytes;
9765
9766 BUG_ON(!cache->ro);
9767
9768 spin_lock(&sinfo->lock);
9769 spin_lock(&cache->lock);
Zhaolei868f4012015-08-05 16:43:27 +08009770 if (!--cache->ro) {
9771 num_bytes = cache->key.offset - cache->reserved -
9772 cache->pinned - cache->bytes_super -
9773 btrfs_block_group_used(&cache->item);
9774 sinfo->bytes_readonly -= num_bytes;
9775 list_del_init(&cache->ro_list);
9776 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009777 spin_unlock(&cache->lock);
9778 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009779}
9780
Josef Bacikba1bf482009-09-11 16:11:19 -04009781/*
Andrea Gelmini52042d82018-11-28 12:05:13 +01009782 * Checks to see if it's even possible to relocate this block group.
Josef Bacikba1bf482009-09-11 16:11:19 -04009783 *
9784 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
9785 * ok to go ahead and try.
9786 */
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009787int btrfs_can_relocate(struct btrfs_fs_info *fs_info, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04009788{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009789 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04009790 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04009791 struct btrfs_space_info *space_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009792 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacikba1bf482009-09-11 16:11:19 -04009793 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04009794 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00009795 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04009796 u64 dev_min = 1;
9797 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009798 u64 target;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009799 int debug;
liubocdcb7252011-08-03 10:15:25 +00009800 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04009801 int full = 0;
9802 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05009803
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009804 debug = btrfs_test_opt(fs_info, ENOSPC_DEBUG);
Qu Wenruo0305bc22016-03-23 11:38:17 +08009805
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009806 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04009807
Josef Bacikba1bf482009-09-11 16:11:19 -04009808 /* odd, couldn't find the block group, leave it alone */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009809 if (!block_group) {
9810 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009811 btrfs_warn(fs_info,
Qu Wenruo0305bc22016-03-23 11:38:17 +08009812 "can't find block group for bytenr %llu",
9813 bytenr);
Josef Bacikba1bf482009-09-11 16:11:19 -04009814 return -1;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009815 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009816
liubocdcb7252011-08-03 10:15:25 +00009817 min_free = btrfs_block_group_used(&block_group->item);
9818
Josef Bacikba1bf482009-09-11 16:11:19 -04009819 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00009820 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04009821 goto out;
Chris Mason323da792008-05-09 11:46:48 -04009822
Josef Bacikba1bf482009-09-11 16:11:19 -04009823 space_info = block_group->space_info;
9824 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04009825
Josef Bacikba1bf482009-09-11 16:11:19 -04009826 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04009827
Josef Bacikba1bf482009-09-11 16:11:19 -04009828 /*
9829 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04009830 * relocate it unless we're able to allocate a new chunk below.
9831 *
9832 * Otherwise, we need to make sure we have room in the space to handle
9833 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04009834 */
Chris Mason7ce618d2009-09-22 14:48:44 -04009835 if ((space_info->total_bytes != block_group->key.offset) &&
Liu Bo41361352017-02-13 15:42:21 -08009836 (btrfs_space_info_used(space_info, false) + min_free <
9837 space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04009838 spin_unlock(&space_info->lock);
9839 goto out;
9840 }
9841 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009842
Josef Bacikba1bf482009-09-11 16:11:19 -04009843 /*
9844 * ok we don't have enough space, but maybe we have free space on our
9845 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009846 * alloc devices and guess if we have enough space. if this block
9847 * group is going to be restriped, run checks against the target
9848 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04009849 */
9850 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05009851
liubocdcb7252011-08-03 10:15:25 +00009852 /*
9853 * index:
9854 * 0: raid10
9855 * 1: raid1
9856 * 2: dup
9857 * 3: raid0
9858 * 4: single
9859 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009860 target = get_restripe_target(fs_info, block_group->flags);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009861 if (target) {
Qu Wenruo3e72ee82018-01-30 18:20:45 +08009862 index = btrfs_bg_flags_to_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009863 } else {
9864 /*
9865 * this is just a balance, so if we were marked as full
9866 * we know there is no space for a new chunk
9867 */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009868 if (full) {
9869 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009870 btrfs_warn(fs_info,
9871 "no space to alloc new chunk for block group %llu",
9872 block_group->key.objectid);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009873 goto out;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009874 }
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009875
Qu Wenruo3e72ee82018-01-30 18:20:45 +08009876 index = btrfs_bg_flags_to_raid_index(block_group->flags);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009877 }
9878
Miao Xiee6ec7162013-01-17 05:38:51 +00009879 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00009880 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04009881 /* Divide by 2 */
9882 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009883 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00009884 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00009885 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04009886 /* Multiply by 2 */
9887 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009888 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00009889 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01009890 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00009891 }
9892
Josef Bacik6df9a952013-06-27 13:22:46 -04009893 /* We need to do this so that we can look at pending chunks */
9894 trans = btrfs_join_transaction(root);
9895 if (IS_ERR(trans)) {
9896 ret = PTR_ERR(trans);
9897 goto out;
9898 }
9899
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009900 mutex_lock(&fs_info->chunk_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04009901 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00009902 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04009903
Josef Bacikba1bf482009-09-11 16:11:19 -04009904 /*
9905 * check to make sure we can actually find a chunk with enough
9906 * space to fit our block group in.
9907 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01009908 if (device->total_bytes > device->bytes_used + min_free &&
Anand Jain401e29c2017-12-04 12:54:55 +08009909 !test_bit(BTRFS_DEV_STATE_REPLACE_TGT, &device->dev_state)) {
Josef Bacik6df9a952013-06-27 13:22:46 -04009910 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00009911 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009912 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009913 dev_nr++;
9914
9915 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009916 break;
liubocdcb7252011-08-03 10:15:25 +00009917
Josef Bacikba1bf482009-09-11 16:11:19 -04009918 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009919 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009920 }
Qu Wenruo0305bc22016-03-23 11:38:17 +08009921 if (debug && ret == -1)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009922 btrfs_warn(fs_info,
9923 "no space to allocate a new chunk for block group %llu",
9924 block_group->key.objectid);
9925 mutex_unlock(&fs_info->chunk_mutex);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009926 btrfs_end_transaction(trans);
Chris Masonedbd8d42007-12-21 16:27:24 -05009927out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009928 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009929 return ret;
9930}
9931
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009932static int find_first_block_group(struct btrfs_fs_info *fs_info,
9933 struct btrfs_path *path,
9934 struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009935{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009936 struct btrfs_root *root = fs_info->extent_root;
Chris Mason925baed2008-06-25 16:01:30 -04009937 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009938 struct btrfs_key found_key;
9939 struct extent_buffer *leaf;
Qu Wenruo514c7dc2018-08-01 10:37:16 +08009940 struct btrfs_block_group_item bg;
9941 u64 flags;
Chris Mason0b86a832008-03-24 15:01:56 -04009942 int slot;
9943
9944 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9945 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009946 goto out;
9947
Chris Masond3977122009-01-05 21:25:51 -05009948 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009949 slot = path->slots[0];
9950 leaf = path->nodes[0];
9951 if (slot >= btrfs_header_nritems(leaf)) {
9952 ret = btrfs_next_leaf(root, path);
9953 if (ret == 0)
9954 continue;
9955 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009956 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009957 break;
9958 }
9959 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9960
9961 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009962 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
Liu Bo6fb37b72016-06-22 18:31:27 -07009963 struct extent_map_tree *em_tree;
9964 struct extent_map *em;
9965
9966 em_tree = &root->fs_info->mapping_tree.map_tree;
9967 read_lock(&em_tree->lock);
9968 em = lookup_extent_mapping(em_tree, found_key.objectid,
9969 found_key.offset);
9970 read_unlock(&em_tree->lock);
9971 if (!em) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009972 btrfs_err(fs_info,
Liu Bo6fb37b72016-06-22 18:31:27 -07009973 "logical %llu len %llu found bg but no related chunk",
9974 found_key.objectid, found_key.offset);
9975 ret = -ENOENT;
Qu Wenruo514c7dc2018-08-01 10:37:16 +08009976 } else if (em->start != found_key.objectid ||
9977 em->len != found_key.offset) {
9978 btrfs_err(fs_info,
9979 "block group %llu len %llu mismatch with chunk %llu len %llu",
9980 found_key.objectid, found_key.offset,
9981 em->start, em->len);
9982 ret = -EUCLEAN;
Liu Bo6fb37b72016-06-22 18:31:27 -07009983 } else {
Qu Wenruo514c7dc2018-08-01 10:37:16 +08009984 read_extent_buffer(leaf, &bg,
9985 btrfs_item_ptr_offset(leaf, slot),
9986 sizeof(bg));
9987 flags = btrfs_block_group_flags(&bg) &
9988 BTRFS_BLOCK_GROUP_TYPE_MASK;
9989
9990 if (flags != (em->map_lookup->type &
9991 BTRFS_BLOCK_GROUP_TYPE_MASK)) {
9992 btrfs_err(fs_info,
9993"block group %llu len %llu type flags 0x%llx mismatch with chunk type flags 0x%llx",
9994 found_key.objectid,
9995 found_key.offset, flags,
9996 (BTRFS_BLOCK_GROUP_TYPE_MASK &
9997 em->map_lookup->type));
9998 ret = -EUCLEAN;
9999 } else {
10000 ret = 0;
10001 }
Liu Bo6fb37b72016-06-22 18:31:27 -070010002 }
Josef Bacik187ee582016-08-18 15:30:06 -040010003 free_extent_map(em);
Chris Mason925baed2008-06-25 16:01:30 -040010004 goto out;
10005 }
Chris Mason0b86a832008-03-24 15:01:56 -040010006 path->slots[0]++;
10007 }
Chris Mason925baed2008-06-25 16:01:30 -040010008out:
Chris Mason0b86a832008-03-24 15:01:56 -040010009 return ret;
10010}
10011
Josef Bacik0af3d002010-06-21 14:48:16 -040010012void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
10013{
10014 struct btrfs_block_group_cache *block_group;
10015 u64 last = 0;
10016
10017 while (1) {
10018 struct inode *inode;
10019
10020 block_group = btrfs_lookup_first_block_group(info, last);
10021 while (block_group) {
Josef Bacik3aa7c7a2018-09-12 10:45:45 -040010022 wait_block_group_cache_done(block_group);
Josef Bacik0af3d002010-06-21 14:48:16 -040010023 spin_lock(&block_group->lock);
10024 if (block_group->iref)
10025 break;
10026 spin_unlock(&block_group->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010027 block_group = next_block_group(info, block_group);
Josef Bacik0af3d002010-06-21 14:48:16 -040010028 }
10029 if (!block_group) {
10030 if (last == 0)
10031 break;
10032 last = 0;
10033 continue;
10034 }
10035
10036 inode = block_group->inode;
10037 block_group->iref = 0;
10038 block_group->inode = NULL;
10039 spin_unlock(&block_group->lock);
Liu Bof3bca802016-07-20 17:33:44 -070010040 ASSERT(block_group->io_ctl.inode == NULL);
Josef Bacik0af3d002010-06-21 14:48:16 -040010041 iput(inode);
10042 last = block_group->key.objectid + block_group->key.offset;
10043 btrfs_put_block_group(block_group);
10044 }
10045}
10046
Filipe Manana5cdd7db2017-02-01 22:39:50 +000010047/*
10048 * Must be called only after stopping all workers, since we could have block
10049 * group caching kthreads running, and therefore they could race with us if we
10050 * freed the block groups before stopping them.
10051 */
Zheng Yan1a40e232008-09-26 10:09:34 -040010052int btrfs_free_block_groups(struct btrfs_fs_info *info)
10053{
10054 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -040010055 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -040010056 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -040010057 struct rb_node *n;
10058
Josef Bacik9e351cc2014-03-13 15:42:13 -040010059 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -040010060 while (!list_empty(&info->caching_block_groups)) {
10061 caching_ctl = list_entry(info->caching_block_groups.next,
10062 struct btrfs_caching_control, list);
10063 list_del(&caching_ctl->list);
10064 put_caching_control(caching_ctl);
10065 }
Josef Bacik9e351cc2014-03-13 15:42:13 -040010066 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -040010067
Josef Bacik47ab2a62014-09-18 11:20:02 -040010068 spin_lock(&info->unused_bgs_lock);
10069 while (!list_empty(&info->unused_bgs)) {
10070 block_group = list_first_entry(&info->unused_bgs,
10071 struct btrfs_block_group_cache,
10072 bg_list);
10073 list_del_init(&block_group->bg_list);
10074 btrfs_put_block_group(block_group);
10075 }
10076 spin_unlock(&info->unused_bgs_lock);
10077
Zheng Yan1a40e232008-09-26 10:09:34 -040010078 spin_lock(&info->block_group_cache_lock);
10079 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
10080 block_group = rb_entry(n, struct btrfs_block_group_cache,
10081 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -040010082 rb_erase(&block_group->cache_node,
10083 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +000010084 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -040010085 spin_unlock(&info->block_group_cache_lock);
10086
Josef Bacik80eb2342008-10-29 14:49:05 -040010087 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -040010088 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -040010089 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -050010090
Josef Bacik3c148742011-02-02 15:53:47 +000010091 /*
10092 * We haven't cached this block group, which means we could
10093 * possibly have excluded extents on this block group.
10094 */
Josef Bacik36cce922013-08-05 11:15:21 -040010095 if (block_group->cached == BTRFS_CACHE_NO ||
10096 block_group->cached == BTRFS_CACHE_ERROR)
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010097 free_excluded_extents(block_group);
Josef Bacik3c148742011-02-02 15:53:47 +000010098
Josef Bacik817d52f2009-07-13 21:29:25 -040010099 btrfs_remove_free_space_cache(block_group);
Filipe Manana5cdd7db2017-02-01 22:39:50 +000010100 ASSERT(block_group->cached != BTRFS_CACHE_STARTED);
Liu Bof3bca802016-07-20 17:33:44 -070010101 ASSERT(list_empty(&block_group->dirty_list));
10102 ASSERT(list_empty(&block_group->io_list));
10103 ASSERT(list_empty(&block_group->bg_list));
10104 ASSERT(atomic_read(&block_group->count) == 1);
Josef Bacik11dfe352009-11-13 20:12:59 +000010105 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -040010106
10107 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010108 }
10109 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -040010110
10111 /* now that all the block groups are freed, go through and
10112 * free all the space_info structs. This is only called during
10113 * the final stages of unmount, and so we know nobody is
10114 * using them. We call synchronize_rcu() once before we start,
10115 * just to be on the safe side.
10116 */
10117 synchronize_rcu();
10118
Yan, Zheng8929ecfa2010-05-16 10:49:58 -040010119 release_global_block_rsv(info);
10120
Dulshani Gunawardhana67871252013-10-31 10:33:04 +053010121 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010122 int i;
10123
Chris Mason4184ea72009-03-10 12:39:20 -040010124 space_info = list_entry(info->space_info.next,
10125 struct btrfs_space_info,
10126 list);
Josef Bacikd555b6c2016-03-25 13:25:51 -040010127
10128 /*
10129 * Do not hide this behind enospc_debug, this is actually
10130 * important and indicates a real bug if this happens.
10131 */
10132 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +000010133 space_info->bytes_reserved > 0 ||
Josef Bacikd555b6c2016-03-25 13:25:51 -040010134 space_info->bytes_may_use > 0))
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -040010135 dump_space_info(info, space_info, 0, 0);
Chris Mason4184ea72009-03-10 12:39:20 -040010136 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010137 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
10138 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010139 kobj = space_info->block_group_kobjs[i];
10140 space_info->block_group_kobjs[i] = NULL;
10141 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010142 kobject_del(kobj);
10143 kobject_put(kobj);
10144 }
10145 }
10146 kobject_del(&space_info->kobj);
10147 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -040010148 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010149 return 0;
10150}
10151
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010152/* link_block_group will queue up kobjects to add when we're reclaim-safe */
10153void btrfs_add_raid_kobjects(struct btrfs_fs_info *fs_info)
10154{
10155 struct btrfs_space_info *space_info;
10156 struct raid_kobject *rkobj;
10157 LIST_HEAD(list);
10158 int index;
10159 int ret = 0;
10160
10161 spin_lock(&fs_info->pending_raid_kobjs_lock);
10162 list_splice_init(&fs_info->pending_raid_kobjs, &list);
10163 spin_unlock(&fs_info->pending_raid_kobjs_lock);
10164
10165 list_for_each_entry(rkobj, &list, list) {
10166 space_info = __find_space_info(fs_info, rkobj->flags);
10167 index = btrfs_bg_flags_to_raid_index(rkobj->flags);
10168
10169 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
10170 "%s", get_raid_name(index));
10171 if (ret) {
10172 kobject_put(&rkobj->kobj);
10173 break;
10174 }
10175 }
10176 if (ret)
10177 btrfs_warn(fs_info,
10178 "failed to add kobject for block cache, ignoring");
10179}
10180
Nikolay Borisovc434d212017-08-21 12:43:50 +030010181static void link_block_group(struct btrfs_block_group_cache *cache)
Yan, Zhengb742bb822010-05-16 10:46:24 -040010182{
Nikolay Borisovc434d212017-08-21 12:43:50 +030010183 struct btrfs_space_info *space_info = cache->space_info;
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010184 struct btrfs_fs_info *fs_info = cache->fs_info;
Qu Wenruo3e72ee82018-01-30 18:20:45 +080010185 int index = btrfs_bg_flags_to_raid_index(cache->flags);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010186 bool first = false;
Yan, Zhengb742bb822010-05-16 10:46:24 -040010187
10188 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -040010189 if (list_empty(&space_info->block_groups[index]))
10190 first = true;
10191 list_add_tail(&cache->list, &space_info->block_groups[index]);
10192 up_write(&space_info->groups_sem);
10193
10194 if (first) {
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010195 struct raid_kobject *rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
10196 if (!rkobj) {
10197 btrfs_warn(cache->fs_info,
10198 "couldn't alloc memory for raid level kobject");
10199 return;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010200 }
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010201 rkobj->flags = cache->flags;
10202 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
10203
10204 spin_lock(&fs_info->pending_raid_kobjs_lock);
10205 list_add_tail(&rkobj->list, &fs_info->pending_raid_kobjs);
10206 spin_unlock(&fs_info->pending_raid_kobjs_lock);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010207 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010208 }
Yan, Zhengb742bb822010-05-16 10:46:24 -040010209}
10210
Miao Xie920e4a52014-01-15 20:00:55 +080010211static struct btrfs_block_group_cache *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010212btrfs_create_block_group_cache(struct btrfs_fs_info *fs_info,
10213 u64 start, u64 size)
Miao Xie920e4a52014-01-15 20:00:55 +080010214{
10215 struct btrfs_block_group_cache *cache;
10216
10217 cache = kzalloc(sizeof(*cache), GFP_NOFS);
10218 if (!cache)
10219 return NULL;
10220
10221 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
10222 GFP_NOFS);
10223 if (!cache->free_space_ctl) {
10224 kfree(cache);
10225 return NULL;
10226 }
10227
10228 cache->key.objectid = start;
10229 cache->key.offset = size;
10230 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
10231
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010232 cache->fs_info = fs_info;
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +030010233 cache->full_stripe_len = btrfs_full_stripe_len(fs_info, start);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010234 set_free_space_tree_thresholds(cache);
10235
Miao Xie920e4a52014-01-15 20:00:55 +080010236 atomic_set(&cache->count, 1);
10237 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +080010238 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +080010239 INIT_LIST_HEAD(&cache->list);
10240 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010241 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -040010242 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -050010243 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -070010244 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +080010245 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +000010246 atomic_set(&cache->trimming, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -070010247 mutex_init(&cache->free_space_lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +080010248 btrfs_init_full_stripe_locks_tree(&cache->full_stripe_locks_root);
Miao Xie920e4a52014-01-15 20:00:55 +080010249
10250 return cache;
10251}
10252
Qu Wenruo7ef49512018-08-01 10:37:17 +080010253
10254/*
10255 * Iterate all chunks and verify that each of them has the corresponding block
10256 * group
10257 */
10258static int check_chunk_block_group_mappings(struct btrfs_fs_info *fs_info)
10259{
10260 struct btrfs_mapping_tree *map_tree = &fs_info->mapping_tree;
10261 struct extent_map *em;
10262 struct btrfs_block_group_cache *bg;
10263 u64 start = 0;
10264 int ret = 0;
10265
10266 while (1) {
10267 read_lock(&map_tree->map_tree.lock);
10268 /*
10269 * lookup_extent_mapping will return the first extent map
10270 * intersecting the range, so setting @len to 1 is enough to
10271 * get the first chunk.
10272 */
10273 em = lookup_extent_mapping(&map_tree->map_tree, start, 1);
10274 read_unlock(&map_tree->map_tree.lock);
10275 if (!em)
10276 break;
10277
10278 bg = btrfs_lookup_block_group(fs_info, em->start);
10279 if (!bg) {
10280 btrfs_err(fs_info,
10281 "chunk start=%llu len=%llu doesn't have corresponding block group",
10282 em->start, em->len);
10283 ret = -EUCLEAN;
10284 free_extent_map(em);
10285 break;
10286 }
10287 if (bg->key.objectid != em->start ||
10288 bg->key.offset != em->len ||
10289 (bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK) !=
10290 (em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK)) {
10291 btrfs_err(fs_info,
10292"chunk start=%llu len=%llu flags=0x%llx doesn't match block group start=%llu len=%llu flags=0x%llx",
10293 em->start, em->len,
10294 em->map_lookup->type & BTRFS_BLOCK_GROUP_TYPE_MASK,
10295 bg->key.objectid, bg->key.offset,
10296 bg->flags & BTRFS_BLOCK_GROUP_TYPE_MASK);
10297 ret = -EUCLEAN;
10298 free_extent_map(em);
10299 btrfs_put_block_group(bg);
10300 break;
10301 }
10302 start = em->start + em->len;
10303 free_extent_map(em);
10304 btrfs_put_block_group(bg);
10305 }
10306 return ret;
10307}
10308
Jeff Mahoney5b4aace2016-06-21 10:40:19 -040010309int btrfs_read_block_groups(struct btrfs_fs_info *info)
Chris Mason9078a3e2007-04-26 16:46:15 -040010310{
10311 struct btrfs_path *path;
10312 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010313 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -040010314 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -040010315 struct btrfs_key key;
10316 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -040010317 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -040010318 int need_clear = 0;
10319 u64 cache_gen;
Liu Bo49303382016-08-25 18:08:27 -070010320 u64 feature;
10321 int mixed;
10322
10323 feature = btrfs_super_incompat_flags(info->super_copy);
10324 mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS);
Chris Mason96b51792007-10-15 16:15:19 -040010325
Chris Mason9078a3e2007-04-26 16:46:15 -040010326 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -040010327 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010328 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -040010329 path = btrfs_alloc_path();
10330 if (!path)
10331 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +010010332 path->reada = READA_FORWARD;
Chris Mason9078a3e2007-04-26 16:46:15 -040010333
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010334 cache_gen = btrfs_super_cache_generation(info->super_copy);
10335 if (btrfs_test_opt(info, SPACE_CACHE) &&
10336 btrfs_super_generation(info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -040010337 need_clear = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010338 if (btrfs_test_opt(info, CLEAR_CACHE))
Josef Bacik88c2ba32010-09-21 14:21:34 -040010339 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -040010340
Chris Masond3977122009-01-05 21:25:51 -050010341 while (1) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010342 ret = find_first_block_group(info, path, &key);
Yan, Zhengb742bb822010-05-16 10:46:24 -040010343 if (ret > 0)
10344 break;
Chris Mason0b86a832008-03-24 15:01:56 -040010345 if (ret != 0)
10346 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +080010347
Chris Mason5f39d392007-10-15 16:14:19 -040010348 leaf = path->nodes[0];
10349 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +080010350
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010351 cache = btrfs_create_block_group_cache(info, found_key.objectid,
Miao Xie920e4a52014-01-15 20:00:55 +080010352 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -040010353 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -040010354 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -040010355 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -040010356 }
Josef Bacik96303082009-07-13 21:29:25 -040010357
Liu Bocf7c1ef2012-07-06 03:31:34 -060010358 if (need_clear) {
10359 /*
10360 * When we mount with old space cache, we need to
10361 * set BTRFS_DC_CLEAR and set dirty flag.
10362 *
10363 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
10364 * truncate the old free space cache inode and
10365 * setup a new one.
10366 * b) Setting 'dirty flag' makes sure that we flush
10367 * the new space cache info onto disk.
10368 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010369 if (btrfs_test_opt(info, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -050010370 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -060010371 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010372
Chris Mason5f39d392007-10-15 16:14:19 -040010373 read_extent_buffer(leaf, &cache->item,
10374 btrfs_item_ptr_offset(leaf, path->slots[0]),
10375 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +080010376 cache->flags = btrfs_block_group_flags(&cache->item);
Liu Bo49303382016-08-25 18:08:27 -070010377 if (!mixed &&
10378 ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) &&
10379 (cache->flags & BTRFS_BLOCK_GROUP_DATA))) {
10380 btrfs_err(info,
10381"bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups",
10382 cache->key.objectid);
10383 ret = -EINVAL;
10384 goto error;
10385 }
Chris Mason0b86a832008-03-24 15:01:56 -040010386
Chris Mason9078a3e2007-04-26 16:46:15 -040010387 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +020010388 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +080010389
Josef Bacik817d52f2009-07-13 21:29:25 -040010390 /*
Josef Bacik3c148742011-02-02 15:53:47 +000010391 * We need to exclude the super stripes now so that the space
10392 * info has super bytes accounted for, otherwise we'll think
10393 * we have more space than we actually do.
10394 */
Nikolay Borisov3c4da652018-06-20 15:49:09 +030010395 ret = exclude_super_stripes(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010396 if (ret) {
10397 /*
10398 * We may have excluded something, so call this just in
10399 * case.
10400 */
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010401 free_excluded_extents(cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010402 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010403 goto error;
10404 }
Josef Bacik3c148742011-02-02 15:53:47 +000010405
10406 /*
Josef Bacik817d52f2009-07-13 21:29:25 -040010407 * check for two cases, either we are full, and therefore
10408 * don't need to bother with the caching work since we won't
10409 * find any space, or we are empty, and we can just add all
Andrea Gelmini52042d82018-11-28 12:05:13 +010010410 * the space in and be done with it. This saves us _a_lot_ of
Josef Bacik817d52f2009-07-13 21:29:25 -040010411 * time, particularly in the full case.
10412 */
10413 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -040010414 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010415 cache->cached = BTRFS_CACHE_FINISHED;
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010416 free_excluded_extents(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010417 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -040010418 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010419 cache->cached = BTRFS_CACHE_FINISHED;
Nikolay Borisov4457c1c2018-05-10 15:44:45 +030010420 add_new_free_space(cache, found_key.objectid,
Josef Bacik817d52f2009-07-13 21:29:25 -040010421 found_key.objectid +
10422 found_key.offset);
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010423 free_excluded_extents(cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010424 }
Chris Mason96b51792007-10-15 16:15:19 -040010425
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010426 ret = btrfs_add_block_group_cache(info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010427 if (ret) {
10428 btrfs_remove_free_space_cache(cache);
10429 btrfs_put_block_group(cache);
10430 goto error;
10431 }
10432
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010433 trace_btrfs_add_block_group(info, cache, 0);
Nikolay Borisovd2006e62017-05-22 09:35:50 +030010434 update_space_info(info, cache->flags, found_key.offset,
10435 btrfs_block_group_used(&cache->item),
10436 cache->bytes_super, &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010437
Chris Mason6324fbf2008-03-24 15:01:59 -040010438 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -040010439
Nikolay Borisovc434d212017-08-21 12:43:50 +030010440 link_block_group(cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010441
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010442 set_avail_alloc_bits(info, cache->flags);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010443 if (btrfs_chunk_readonly(info, cache->key.objectid)) {
Zhaolei868f4012015-08-05 16:43:27 +080010444 inc_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010445 } else if (btrfs_block_group_used(&cache->item) == 0) {
Qu Wenruo031f24d2018-05-22 16:43:47 +080010446 ASSERT(list_empty(&cache->bg_list));
10447 btrfs_mark_bg_unused(cache);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010448 }
Chris Mason9078a3e2007-04-26 16:46:15 -040010449 }
Yan, Zhengb742bb822010-05-16 10:46:24 -040010450
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010451 list_for_each_entry_rcu(space_info, &info->space_info, list) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010452 if (!(get_alloc_profile(info, space_info->flags) &
Yan, Zhengb742bb822010-05-16 10:46:24 -040010453 (BTRFS_BLOCK_GROUP_RAID10 |
10454 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -050010455 BTRFS_BLOCK_GROUP_RAID5 |
10456 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb822010-05-16 10:46:24 -040010457 BTRFS_BLOCK_GROUP_DUP)))
10458 continue;
10459 /*
10460 * avoid allocating from un-mirrored block group if there are
10461 * mirrored block groups.
10462 */
chandan1095cc02013-07-16 12:28:56 +053010463 list_for_each_entry(cache,
10464 &space_info->block_groups[BTRFS_RAID_RAID0],
10465 list)
Zhaolei868f4012015-08-05 16:43:27 +080010466 inc_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +053010467 list_for_each_entry(cache,
10468 &space_info->block_groups[BTRFS_RAID_SINGLE],
10469 list)
Zhaolei868f4012015-08-05 16:43:27 +080010470 inc_block_group_ro(cache, 1);
Yan, Zhengb742bb822010-05-16 10:46:24 -040010471 }
Yan, Zhengf0486c62010-05-16 10:46:25 -040010472
Jeff Mahoney75cb3792018-03-20 15:25:26 -040010473 btrfs_add_raid_kobjects(info);
Yan, Zhengf0486c62010-05-16 10:46:25 -040010474 init_global_block_rsv(info);
Qu Wenruo7ef49512018-08-01 10:37:17 +080010475 ret = check_chunk_block_group_mappings(info);
Chris Mason0b86a832008-03-24 15:01:56 -040010476error:
Chris Mason9078a3e2007-04-26 16:46:15 -040010477 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -040010478 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010479}
Chris Mason6324fbf2008-03-24 15:01:59 -040010480
Nikolay Borisov6c686b32018-02-07 17:55:40 +020010481void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans)
Josef Bacikea658ba2012-09-11 16:57:25 -040010482{
Nikolay Borisov6c686b32018-02-07 17:55:40 +020010483 struct btrfs_fs_info *fs_info = trans->fs_info;
Josef Bacik545e3362018-09-28 07:18:02 -040010484 struct btrfs_block_group_cache *block_group;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010485 struct btrfs_root *extent_root = fs_info->extent_root;
Josef Bacikea658ba2012-09-11 16:57:25 -040010486 struct btrfs_block_group_item item;
10487 struct btrfs_key key;
10488 int ret = 0;
10489
Filipe Manana5ce55552018-10-12 10:03:55 +010010490 if (!trans->can_flush_pending_bgs)
10491 return;
10492
Josef Bacik545e3362018-09-28 07:18:02 -040010493 while (!list_empty(&trans->new_bgs)) {
10494 block_group = list_first_entry(&trans->new_bgs,
10495 struct btrfs_block_group_cache,
10496 bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010497 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +000010498 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -040010499
10500 spin_lock(&block_group->lock);
10501 memcpy(&item, &block_group->item, sizeof(item));
10502 memcpy(&key, &block_group->key, sizeof(key));
10503 spin_unlock(&block_group->lock);
10504
10505 ret = btrfs_insert_item(trans, extent_root, &key, &item,
10506 sizeof(item));
10507 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010508 btrfs_abort_transaction(trans, ret);
Nikolay Borisov97aff912018-07-20 19:37:53 +030010509 ret = btrfs_finish_chunk_alloc(trans, key.objectid, key.offset);
Josef Bacik6df9a952013-06-27 13:22:46 -040010510 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010511 btrfs_abort_transaction(trans, ret);
Nikolay Borisove4e07112018-05-10 15:44:41 +030010512 add_block_group_free_space(trans, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010513 /* already aborted the transaction if it failed. */
Filipe Mananac92f6be2014-11-26 15:28:55 +000010514next:
Josef Bacikba2c4d42018-12-03 10:20:33 -050010515 btrfs_delayed_refs_rsv_release(fs_info, 1);
Filipe Mananac92f6be2014-11-26 15:28:55 +000010516 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010517 }
Filipe Manana5ce55552018-10-12 10:03:55 +010010518 btrfs_trans_release_chunk_metadata(trans);
Josef Bacikea658ba2012-09-11 16:57:25 -040010519}
10520
Nikolay Borisove7e02092018-06-20 15:48:55 +030010521int btrfs_make_block_group(struct btrfs_trans_handle *trans, u64 bytes_used,
Nikolay Borisov01744842017-07-27 14:22:11 +030010522 u64 type, u64 chunk_offset, u64 size)
Chris Mason6324fbf2008-03-24 15:01:59 -040010523{
Nikolay Borisove7e02092018-06-20 15:48:55 +030010524 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Mason6324fbf2008-03-24 15:01:59 -040010525 struct btrfs_block_group_cache *cache;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010526 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -040010527
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010528 btrfs_set_log_full_commit(fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -040010529
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010530 cache = btrfs_create_block_group_cache(fs_info, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -040010531 if (!cache)
10532 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +080010533
Chris Mason6324fbf2008-03-24 15:01:59 -040010534 btrfs_set_block_group_used(&cache->item, bytes_used);
Nikolay Borisov01744842017-07-27 14:22:11 +030010535 btrfs_set_block_group_chunk_objectid(&cache->item,
10536 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
Chris Mason6324fbf2008-03-24 15:01:59 -040010537 btrfs_set_block_group_flags(&cache->item, type);
10538
Miao Xie920e4a52014-01-15 20:00:55 +080010539 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -040010540 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010541 cache->cached = BTRFS_CACHE_FINISHED;
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010542 cache->needs_free_space = 1;
Nikolay Borisov3c4da652018-06-20 15:49:09 +030010543 ret = exclude_super_stripes(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010544 if (ret) {
10545 /*
10546 * We may have excluded something, so call this just in
10547 * case.
10548 */
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010549 free_excluded_extents(cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010550 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010551 return ret;
10552 }
Josef Bacik96303082009-07-13 21:29:25 -040010553
Nikolay Borisov4457c1c2018-05-10 15:44:45 +030010554 add_new_free_space(cache, chunk_offset, chunk_offset + size);
Josef Bacik817d52f2009-07-13 21:29:25 -040010555
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010556 free_excluded_extents(cache);
Yan Zheng11833d62009-09-11 16:11:19 -040010557
Josef Bacikd0bd4562015-09-23 14:54:14 -040010558#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010559 if (btrfs_should_fragment_free_space(cache)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -040010560 u64 new_bytes_used = size - bytes_used;
10561
10562 bytes_used += new_bytes_used >> 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010563 fragment_free_space(cache);
Josef Bacikd0bd4562015-09-23 14:54:14 -040010564 }
10565#endif
Filipe Manana2e6e5182015-05-12 00:28:11 +010010566 /*
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010567 * Ensure the corresponding space_info object is created and
10568 * assigned to our block group. We want our bg to be added to the rbtree
10569 * with its ->space_info set.
Filipe Manana2e6e5182015-05-12 00:28:11 +010010570 */
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010571 cache->space_info = __find_space_info(fs_info, cache->flags);
Jeff Mahoneydc2d3002018-03-20 15:25:25 -040010572 ASSERT(cache->space_info);
Filipe Manana2e6e5182015-05-12 00:28:11 +010010573
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010574 ret = btrfs_add_block_group_cache(fs_info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010575 if (ret) {
10576 btrfs_remove_free_space_cache(cache);
10577 btrfs_put_block_group(cache);
10578 return ret;
10579 }
10580
Filipe Manana2e6e5182015-05-12 00:28:11 +010010581 /*
10582 * Now that our block group has its ->space_info set and is inserted in
10583 * the rbtree, update the space info's counters.
10584 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010585 trace_btrfs_add_block_group(fs_info, cache, 1);
Nikolay Borisovd2006e62017-05-22 09:35:50 +030010586 update_space_info(fs_info, cache->flags, size, bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -040010587 cache->bytes_super, &cache->space_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010588 update_global_block_rsv(fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -040010589
Nikolay Borisovc434d212017-08-21 12:43:50 +030010590 link_block_group(cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010591
Josef Bacik47ab2a62014-09-18 11:20:02 -040010592 list_add_tail(&cache->bg_list, &trans->new_bgs);
Josef Bacikba2c4d42018-12-03 10:20:33 -050010593 trans->delayed_ref_updates++;
10594 btrfs_update_delayed_refs_rsv(trans);
Chris Mason6324fbf2008-03-24 15:01:59 -040010595
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010596 set_avail_alloc_bits(fs_info, type);
Chris Mason6324fbf2008-03-24 15:01:59 -040010597 return 0;
10598}
Zheng Yan1a40e232008-09-26 10:09:34 -040010599
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010600static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
10601{
Ilya Dryomov899c81e2012-03-27 17:09:16 +030010602 u64 extra_flags = chunk_to_extended(flags) &
10603 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010604
Miao Xiede98ced2013-01-29 10:13:12 +000010605 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010606 if (flags & BTRFS_BLOCK_GROUP_DATA)
10607 fs_info->avail_data_alloc_bits &= ~extra_flags;
10608 if (flags & BTRFS_BLOCK_GROUP_METADATA)
10609 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
10610 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
10611 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +000010612 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010613}
10614
Zheng Yan1a40e232008-09-26 10:09:34 -040010615int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Nikolay Borisov5a98ec02018-06-20 15:48:56 +030010616 u64 group_start, struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -040010617{
Nikolay Borisov5a98ec02018-06-20 15:48:56 +030010618 struct btrfs_fs_info *fs_info = trans->fs_info;
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010619 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010620 struct btrfs_path *path;
10621 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -040010622 struct btrfs_free_cluster *cluster;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010623 struct btrfs_root *tree_root = fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010624 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -040010625 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010626 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -040010627 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010628 int index;
Josef Bacik89a55892010-10-14 14:52:27 -040010629 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +000010630 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +000010631 bool remove_em;
Josef Bacikba2c4d42018-12-03 10:20:33 -050010632 bool remove_rsv = false;
Zheng Yan1a40e232008-09-26 10:09:34 -040010633
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010634 block_group = btrfs_lookup_block_group(fs_info, group_start);
Zheng Yan1a40e232008-09-26 10:09:34 -040010635 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -050010636 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -040010637
Qu Wenruo4ed0a7a2018-04-26 17:17:20 +080010638 trace_btrfs_remove_block_group(block_group);
liubo9f7c43c2011-03-07 02:13:33 +000010639 /*
10640 * Free the reserved super bytes from this block group before
10641 * remove it.
10642 */
Nikolay Borisov9e715da2018-06-20 15:49:08 +030010643 free_excluded_extents(block_group);
Josef Bacikfd708b82017-09-29 15:43:50 -040010644 btrfs_free_ref_tree_range(fs_info, block_group->key.objectid,
10645 block_group->key.offset);
liubo9f7c43c2011-03-07 02:13:33 +000010646
Zheng Yan1a40e232008-09-26 10:09:34 -040010647 memcpy(&key, &block_group->key, sizeof(key));
Qu Wenruo3e72ee82018-01-30 18:20:45 +080010648 index = btrfs_bg_flags_to_raid_index(block_group->flags);
David Sterba46df06b2018-07-13 20:46:30 +020010649 factor = btrfs_bg_type_to_factor(block_group->flags);
Zheng Yan1a40e232008-09-26 10:09:34 -040010650
Chris Mason44fb5512009-06-04 15:34:51 -040010651 /* make sure this block group isn't part of an allocation cluster */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010652 cluster = &fs_info->data_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010653 spin_lock(&cluster->refill_lock);
10654 btrfs_return_cluster_to_free_space(block_group, cluster);
10655 spin_unlock(&cluster->refill_lock);
10656
10657 /*
10658 * make sure this block group isn't part of a metadata
10659 * allocation cluster
10660 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010661 cluster = &fs_info->meta_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010662 spin_lock(&cluster->refill_lock);
10663 btrfs_return_cluster_to_free_space(block_group, cluster);
10664 spin_unlock(&cluster->refill_lock);
10665
Zheng Yan1a40e232008-09-26 10:09:34 -040010666 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010667 if (!path) {
10668 ret = -ENOMEM;
10669 goto out;
10670 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010671
Chris Mason1bbc6212015-04-06 12:46:08 -070010672 /*
10673 * get the inode first so any iput calls done for the io_list
10674 * aren't the final iput (no unlinks allowed now)
10675 */
Jeff Mahoney77ab86b2017-02-15 16:28:30 -050010676 inode = lookup_free_space_inode(fs_info, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010677
10678 mutex_lock(&trans->transaction->cache_write_mutex);
10679 /*
Andrea Gelmini52042d82018-11-28 12:05:13 +010010680 * Make sure our free space cache IO is done before removing the
Chris Mason1bbc6212015-04-06 12:46:08 -070010681 * free space inode
10682 */
10683 spin_lock(&trans->transaction->dirty_bgs_lock);
10684 if (!list_empty(&block_group->io_list)) {
10685 list_del_init(&block_group->io_list);
10686
10687 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
10688
10689 spin_unlock(&trans->transaction->dirty_bgs_lock);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -040010690 btrfs_wait_cache_io(trans, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010691 btrfs_put_block_group(block_group);
10692 spin_lock(&trans->transaction->dirty_bgs_lock);
10693 }
10694
10695 if (!list_empty(&block_group->dirty_list)) {
10696 list_del_init(&block_group->dirty_list);
Josef Bacikba2c4d42018-12-03 10:20:33 -050010697 remove_rsv = true;
Chris Mason1bbc6212015-04-06 12:46:08 -070010698 btrfs_put_block_group(block_group);
10699 }
10700 spin_unlock(&trans->transaction->dirty_bgs_lock);
10701 mutex_unlock(&trans->transaction->cache_write_mutex);
10702
Josef Bacik0af3d002010-06-21 14:48:16 -040010703 if (!IS_ERR(inode)) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010704 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010705 if (ret) {
10706 btrfs_add_delayed_iput(inode);
10707 goto out;
10708 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010709 clear_nlink(inode);
10710 /* One for the block groups ref */
10711 spin_lock(&block_group->lock);
10712 if (block_group->iref) {
10713 block_group->iref = 0;
10714 block_group->inode = NULL;
10715 spin_unlock(&block_group->lock);
10716 iput(inode);
10717 } else {
10718 spin_unlock(&block_group->lock);
10719 }
10720 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -040010721 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -040010722 }
10723
10724 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
10725 key.offset = block_group->key.objectid;
10726 key.type = 0;
10727
10728 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
10729 if (ret < 0)
10730 goto out;
10731 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +020010732 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010733 if (ret == 0) {
10734 ret = btrfs_del_item(trans, tree_root, path);
10735 if (ret)
10736 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +020010737 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010738 }
10739
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010740 spin_lock(&fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010741 rb_erase(&block_group->cache_node,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010742 &fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +000010743 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +000010744
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010745 if (fs_info->first_logical_byte == block_group->key.objectid)
10746 fs_info->first_logical_byte = (u64)-1;
10747 spin_unlock(&fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010748
Josef Bacik80eb2342008-10-29 14:49:05 -040010749 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -040010750 /*
10751 * we must use list_del_init so people can check to see if they
10752 * are still on the list after taking the semaphore
10753 */
10754 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010755 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010756 kobj = block_group->space_info->block_group_kobjs[index];
10757 block_group->space_info->block_group_kobjs[index] = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010758 clear_avail_alloc_bits(fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010759 }
Josef Bacik80eb2342008-10-29 14:49:05 -040010760 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010761 if (kobj) {
10762 kobject_del(kobj);
10763 kobject_put(kobj);
10764 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010765
Filipe Manana4f69cb92014-11-26 15:28:51 +000010766 if (block_group->has_caching_ctl)
10767 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -040010768 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -040010769 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010770 if (block_group->has_caching_ctl) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010771 down_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010772 if (!caching_ctl) {
10773 struct btrfs_caching_control *ctl;
10774
10775 list_for_each_entry(ctl,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010776 &fs_info->caching_block_groups, list)
Filipe Manana4f69cb92014-11-26 15:28:51 +000010777 if (ctl->block_group == block_group) {
10778 caching_ctl = ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +020010779 refcount_inc(&caching_ctl->count);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010780 break;
10781 }
10782 }
10783 if (caching_ctl)
10784 list_del_init(&caching_ctl->list);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010785 up_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010786 if (caching_ctl) {
10787 /* Once for the caching bgs list and once for us. */
10788 put_caching_control(caching_ctl);
10789 put_caching_control(caching_ctl);
10790 }
10791 }
Josef Bacik817d52f2009-07-13 21:29:25 -040010792
Josef Bacikce93ec52014-11-17 15:45:48 -050010793 spin_lock(&trans->transaction->dirty_bgs_lock);
10794 if (!list_empty(&block_group->dirty_list)) {
Chris Mason1bbc6212015-04-06 12:46:08 -070010795 WARN_ON(1);
10796 }
10797 if (!list_empty(&block_group->io_list)) {
10798 WARN_ON(1);
Josef Bacikce93ec52014-11-17 15:45:48 -050010799 }
10800 spin_unlock(&trans->transaction->dirty_bgs_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010801 btrfs_remove_free_space_cache(block_group);
10802
Yan Zhengc146afa2008-11-12 14:34:12 -050010803 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +000010804 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +080010805
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010806 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Zhao Lei18d018a2015-02-24 20:07:44 +080010807 WARN_ON(block_group->space_info->total_bytes
10808 < block_group->key.offset);
10809 WARN_ON(block_group->space_info->bytes_readonly
10810 < block_group->key.offset);
10811 WARN_ON(block_group->space_info->disk_total
10812 < block_group->key.offset * factor);
10813 }
Yan Zhengc146afa2008-11-12 14:34:12 -050010814 block_group->space_info->total_bytes -= block_group->key.offset;
10815 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -040010816 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +080010817
Yan Zhengc146afa2008-11-12 14:34:12 -050010818 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -040010819
Josef Bacik0af3d002010-06-21 14:48:16 -040010820 memcpy(&key, &block_group->key, sizeof(key));
10821
David Sterba34441362016-10-04 19:34:27 +020010822 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana495e64f2014-12-02 18:07:30 +000010823 if (!list_empty(&em->list)) {
10824 /* We're in the transaction->pending_chunks list. */
10825 free_extent_map(em);
10826 }
Filipe Manana04216822014-11-27 21:14:15 +000010827 spin_lock(&block_group->lock);
10828 block_group->removed = 1;
10829 /*
10830 * At this point trimming can't start on this block group, because we
10831 * removed the block group from the tree fs_info->block_group_cache_tree
10832 * so no one can't find it anymore and even if someone already got this
10833 * block group before we removed it from the rbtree, they have already
10834 * incremented block_group->trimming - if they didn't, they won't find
10835 * any free space entries because we already removed them all when we
10836 * called btrfs_remove_free_space_cache().
10837 *
10838 * And we must not remove the extent map from the fs_info->mapping_tree
10839 * to prevent the same logical address range and physical device space
10840 * ranges from being reused for a new block group. This is because our
10841 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
10842 * completely transactionless, so while it is trimming a range the
10843 * currently running transaction might finish and a new one start,
10844 * allowing for new block groups to be created that can reuse the same
10845 * physical device locations unless we take this special care.
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010846 *
10847 * There may also be an implicit trim operation if the file system
10848 * is mounted with -odiscard. The same protections must remain
10849 * in place until the extents have been discarded completely when
10850 * the transaction commit has completed.
Filipe Manana04216822014-11-27 21:14:15 +000010851 */
10852 remove_em = (atomic_read(&block_group->trimming) == 0);
10853 /*
10854 * Make sure a trimmer task always sees the em in the pinned_chunks list
10855 * if it sees block_group->removed == 1 (needs to lock block_group->lock
10856 * before checking block_group->removed).
10857 */
10858 if (!remove_em) {
10859 /*
10860 * Our em might be in trans->transaction->pending_chunks which
10861 * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks),
10862 * and so is the fs_info->pinned_chunks list.
10863 *
10864 * So at this point we must be holding the chunk_mutex to avoid
10865 * any races with chunk allocation (more specifically at
10866 * volumes.c:contains_pending_extent()), to ensure it always
10867 * sees the em, either in the pending_chunks list or in the
10868 * pinned_chunks list.
10869 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010870 list_move_tail(&em->list, &fs_info->pinned_chunks);
Filipe Manana04216822014-11-27 21:14:15 +000010871 }
10872 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +000010873
10874 if (remove_em) {
10875 struct extent_map_tree *em_tree;
10876
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010877 em_tree = &fs_info->mapping_tree.map_tree;
Filipe Manana04216822014-11-27 21:14:15 +000010878 write_lock(&em_tree->lock);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010879 /*
10880 * The em might be in the pending_chunks list, so make sure the
10881 * chunk mutex is locked, since remove_extent_mapping() will
10882 * delete us from that list.
10883 */
Filipe Manana04216822014-11-27 21:14:15 +000010884 remove_extent_mapping(em_tree, em);
10885 write_unlock(&em_tree->lock);
10886 /* once for the tree */
10887 free_extent_map(em);
10888 }
10889
David Sterba34441362016-10-04 19:34:27 +020010890 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010891
Nikolay Borisovf3f72772018-05-10 15:44:46 +030010892 ret = remove_block_group_free_space(trans, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010893 if (ret)
10894 goto out;
10895
Chris Masonfa9c0d792009-04-03 09:47:43 -040010896 btrfs_put_block_group(block_group);
10897 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -040010898
10899 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
10900 if (ret > 0)
10901 ret = -EIO;
10902 if (ret < 0)
10903 goto out;
10904
10905 ret = btrfs_del_item(trans, root, path);
10906out:
Josef Bacikba2c4d42018-12-03 10:20:33 -050010907 if (remove_rsv)
10908 btrfs_delayed_refs_rsv_release(fs_info, 1);
Zheng Yan1a40e232008-09-26 10:09:34 -040010909 btrfs_free_path(path);
10910 return ret;
10911}
liuboacce9522011-01-06 19:30:25 +080010912
Filipe Manana8eab77f2015-11-13 23:57:16 +000010913struct btrfs_trans_handle *
Filipe Manana7fd01182015-11-13 23:57:17 +000010914btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info,
10915 const u64 chunk_offset)
Filipe Manana8eab77f2015-11-13 23:57:16 +000010916{
Filipe Manana7fd01182015-11-13 23:57:17 +000010917 struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree;
10918 struct extent_map *em;
10919 struct map_lookup *map;
10920 unsigned int num_items;
10921
10922 read_lock(&em_tree->lock);
10923 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
10924 read_unlock(&em_tree->lock);
10925 ASSERT(em && em->start == chunk_offset);
10926
Filipe Manana8eab77f2015-11-13 23:57:16 +000010927 /*
Filipe Manana7fd01182015-11-13 23:57:17 +000010928 * We need to reserve 3 + N units from the metadata space info in order
10929 * to remove a block group (done at btrfs_remove_chunk() and at
10930 * btrfs_remove_block_group()), which are used for:
10931 *
Filipe Manana8eab77f2015-11-13 23:57:16 +000010932 * 1 unit for adding the free space inode's orphan (located in the tree
10933 * of tree roots).
Filipe Manana7fd01182015-11-13 23:57:17 +000010934 * 1 unit for deleting the block group item (located in the extent
10935 * tree).
10936 * 1 unit for deleting the free space item (located in tree of tree
10937 * roots).
10938 * N units for deleting N device extent items corresponding to each
10939 * stripe (located in the device tree).
10940 *
10941 * In order to remove a block group we also need to reserve units in the
10942 * system space info in order to update the chunk tree (update one or
10943 * more device items and remove one chunk item), but this is done at
10944 * btrfs_remove_chunk() through a call to check_system_chunk().
Filipe Manana8eab77f2015-11-13 23:57:16 +000010945 */
Jeff Mahoney95617d62015-06-03 10:55:48 -040010946 map = em->map_lookup;
Filipe Manana7fd01182015-11-13 23:57:17 +000010947 num_items = 3 + map->num_stripes;
10948 free_extent_map(em);
10949
Filipe Manana8eab77f2015-11-13 23:57:16 +000010950 return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root,
Filipe Manana7fd01182015-11-13 23:57:17 +000010951 num_items, 1);
Filipe Manana8eab77f2015-11-13 23:57:16 +000010952}
10953
Josef Bacik47ab2a62014-09-18 11:20:02 -040010954/*
10955 * Process the unused_bgs list and remove any that don't have any allocated
10956 * space inside of them.
10957 */
10958void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
10959{
10960 struct btrfs_block_group_cache *block_group;
10961 struct btrfs_space_info *space_info;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010962 struct btrfs_trans_handle *trans;
10963 int ret = 0;
10964
Josef Bacikafcdd122016-09-02 15:40:02 -040010965 if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
Josef Bacik47ab2a62014-09-18 11:20:02 -040010966 return;
10967
10968 spin_lock(&fs_info->unused_bgs_lock);
10969 while (!list_empty(&fs_info->unused_bgs)) {
10970 u64 start, end;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010971 int trimming;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010972
10973 block_group = list_first_entry(&fs_info->unused_bgs,
10974 struct btrfs_block_group_cache,
10975 bg_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010976 list_del_init(&block_group->bg_list);
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010977
10978 space_info = block_group->space_info;
10979
Josef Bacik47ab2a62014-09-18 11:20:02 -040010980 if (ret || btrfs_mixed_space_info(space_info)) {
10981 btrfs_put_block_group(block_group);
10982 continue;
10983 }
10984 spin_unlock(&fs_info->unused_bgs_lock);
10985
Zhao Leid5f2e332015-10-08 18:46:44 +080010986 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010987
Josef Bacik47ab2a62014-09-18 11:20:02 -040010988 /* Don't want to race with allocators so take the groups_sem */
10989 down_write(&space_info->groups_sem);
10990 spin_lock(&block_group->lock);
Qu Wenruo43794442018-06-22 12:35:00 +080010991 if (block_group->reserved || block_group->pinned ||
Josef Bacik47ab2a62014-09-18 11:20:02 -040010992 btrfs_block_group_used(&block_group->item) ||
Chris Mason19c4d2f2016-10-10 13:43:31 -070010993 block_group->ro ||
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010994 list_is_singular(&block_group->list)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -040010995 /*
10996 * We want to bail if we made new allocations or have
10997 * outstanding allocations in this block group. We do
10998 * the ro check in case balance is currently acting on
10999 * this block group.
11000 */
Qu Wenruo4ed0a7a2018-04-26 17:17:20 +080011001 trace_btrfs_skip_unused_block_group(block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011002 spin_unlock(&block_group->lock);
11003 up_write(&space_info->groups_sem);
11004 goto next;
11005 }
11006 spin_unlock(&block_group->lock);
11007
11008 /* We don't want to force the issue, only flip if it's ok. */
Zhaolei868f4012015-08-05 16:43:27 +080011009 ret = inc_block_group_ro(block_group, 0);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011010 up_write(&space_info->groups_sem);
11011 if (ret < 0) {
11012 ret = 0;
11013 goto next;
11014 }
11015
11016 /*
11017 * Want to do this before we do anything else so we can recover
11018 * properly if we fail to join the transaction.
11019 */
Filipe Manana7fd01182015-11-13 23:57:17 +000011020 trans = btrfs_start_trans_remove_block_group(fs_info,
11021 block_group->key.objectid);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011022 if (IS_ERR(trans)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011023 btrfs_dec_block_group_ro(block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011024 ret = PTR_ERR(trans);
11025 goto next;
11026 }
11027
11028 /*
11029 * We could have pending pinned extents for this block group,
11030 * just delete them, we don't care about them anymore.
11031 */
11032 start = block_group->key.objectid;
11033 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +000011034 /*
11035 * Hold the unused_bg_unpin_mutex lock to avoid racing with
11036 * btrfs_finish_extent_commit(). If we are at transaction N,
11037 * another task might be running finish_extent_commit() for the
11038 * previous transaction N - 1, and have seen a range belonging
11039 * to the block group in freed_extents[] before we were able to
11040 * clear the whole block group range from freed_extents[]. This
11041 * means that task can lookup for the block group after we
11042 * unpinned it from freed_extents[] and removed it, leading to
11043 * a BUG_ON() at btrfs_unpin_extent_range().
11044 */
11045 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +000011046 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
David Sterba91166212016-04-26 23:54:39 +020011047 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000011048 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000011049 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011050 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000011051 goto end_trans;
11052 }
11053 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
David Sterba91166212016-04-26 23:54:39 +020011054 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000011055 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000011056 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011057 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000011058 goto end_trans;
11059 }
Filipe Mananad4b450c2015-01-29 19:18:25 +000011060 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011061
11062 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +080011063 spin_lock(&space_info->lock);
11064 spin_lock(&block_group->lock);
11065
Lu Fengqie2907c12018-10-24 20:24:02 +080011066 update_bytes_pinned(space_info, -block_group->pinned);
Zhao Leic30666d2015-02-25 14:17:20 +080011067 space_info->bytes_readonly += block_group->pinned;
Ethan Liendec59fa2018-07-13 16:50:42 +080011068 percpu_counter_add_batch(&space_info->total_bytes_pinned,
11069 -block_group->pinned,
11070 BTRFS_TOTAL_BYTES_PINNED_BATCH);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011071 block_group->pinned = 0;
11072
Zhao Leic30666d2015-02-25 14:17:20 +080011073 spin_unlock(&block_group->lock);
11074 spin_unlock(&space_info->lock);
11075
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011076 /* DISCARD can flip during remount */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011077 trimming = btrfs_test_opt(fs_info, DISCARD);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011078
11079 /* Implicit trim during transaction commit. */
11080 if (trimming)
11081 btrfs_get_block_group_trimming(block_group);
11082
Josef Bacik47ab2a62014-09-18 11:20:02 -040011083 /*
11084 * Btrfs_remove_chunk will abort the transaction if things go
11085 * horribly wrong.
11086 */
Nikolay Borisov97aff912018-07-20 19:37:53 +030011087 ret = btrfs_remove_chunk(trans, block_group->key.objectid);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011088
11089 if (ret) {
11090 if (trimming)
11091 btrfs_put_block_group_trimming(block_group);
11092 goto end_trans;
11093 }
11094
11095 /*
11096 * If we're not mounted with -odiscard, we can just forget
11097 * about this block group. Otherwise we'll need to wait
11098 * until transaction commit to do the actual discard.
11099 */
11100 if (trimming) {
Filipe Manana348a0012015-11-27 12:16:16 +000011101 spin_lock(&fs_info->unused_bgs_lock);
11102 /*
11103 * A concurrent scrub might have added us to the list
11104 * fs_info->unused_bgs, so use a list_move operation
11105 * to add the block group to the deleted_bgs list.
11106 */
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011107 list_move(&block_group->bg_list,
11108 &trans->transaction->deleted_bgs);
Filipe Manana348a0012015-11-27 12:16:16 +000011109 spin_unlock(&fs_info->unused_bgs_lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040011110 btrfs_get_block_group(block_group);
11111 }
Filipe Manana758eb512014-11-03 14:08:39 +000011112end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040011113 btrfs_end_transaction(trans);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011114next:
Zhao Leid5f2e332015-10-08 18:46:44 +080011115 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040011116 btrfs_put_block_group(block_group);
11117 spin_lock(&fs_info->unused_bgs_lock);
11118 }
11119 spin_unlock(&fs_info->unused_bgs_lock);
11120}
11121
liuboc59021f2011-03-07 02:13:14 +000011122int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
11123{
liubo1aba86d2011-04-08 08:44:37 +000011124 struct btrfs_super_block *disk_super;
11125 u64 features;
11126 u64 flags;
11127 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000011128 int ret;
11129
David Sterba6c417612011-04-13 15:41:04 +020011130 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000011131 if (!btrfs_super_root(disk_super))
Dan Carpenter0dc924c52016-01-13 15:21:17 +030011132 return -EINVAL;
liuboc59021f2011-03-07 02:13:14 +000011133
liubo1aba86d2011-04-08 08:44:37 +000011134 features = btrfs_super_incompat_flags(disk_super);
11135 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
11136 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000011137
liubo1aba86d2011-04-08 08:44:37 +000011138 flags = BTRFS_BLOCK_GROUP_SYSTEM;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011139 ret = create_space_info(fs_info, flags);
liuboc59021f2011-03-07 02:13:14 +000011140 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000011141 goto out;
liuboc59021f2011-03-07 02:13:14 +000011142
liubo1aba86d2011-04-08 08:44:37 +000011143 if (mixed) {
11144 flags = BTRFS_BLOCK_GROUP_METADATA | 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 } else {
11147 flags = BTRFS_BLOCK_GROUP_METADATA;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011148 ret = create_space_info(fs_info, flags);
liubo1aba86d2011-04-08 08:44:37 +000011149 if (ret)
11150 goto out;
11151
11152 flags = BTRFS_BLOCK_GROUP_DATA;
Lu Fengqi4ca61682018-05-28 14:30:27 +080011153 ret = create_space_info(fs_info, flags);
liubo1aba86d2011-04-08 08:44:37 +000011154 }
11155out:
liuboc59021f2011-03-07 02:13:14 +000011156 return ret;
11157}
11158
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011159int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info,
11160 u64 start, u64 end)
liuboacce9522011-01-06 19:30:25 +080011161{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011162 return unpin_extent_range(fs_info, start, end, false);
liuboacce9522011-01-06 19:30:25 +080011163}
11164
Jeff Mahoney499f3772015-06-15 09:41:17 -040011165/*
11166 * It used to be that old block groups would be left around forever.
11167 * Iterating over them would be enough to trim unused space. Since we
11168 * now automatically remove them, we also need to iterate over unallocated
11169 * space.
11170 *
11171 * We don't want a transaction for this since the discard may take a
11172 * substantial amount of time. We don't require that a transaction be
11173 * running, but we do need to take a running transaction into account
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011174 * to ensure that we're not discarding chunks that were released or
11175 * allocated in the current transaction.
Jeff Mahoney499f3772015-06-15 09:41:17 -040011176 *
11177 * Holding the chunks lock will prevent other threads from allocating
11178 * or releasing chunks, but it won't prevent a running transaction
11179 * from committing and releasing the memory that the pending chunks
11180 * list head uses. For that, we need to take a reference to the
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011181 * transaction and hold the commit root sem. We only need to hold
11182 * it while performing the free space search since we have already
11183 * held back allocations.
Jeff Mahoney499f3772015-06-15 09:41:17 -040011184 */
11185static int btrfs_trim_free_extents(struct btrfs_device *device,
11186 u64 minlen, u64 *trimmed)
11187{
11188 u64 start = 0, len = 0;
11189 int ret;
11190
11191 *trimmed = 0;
11192
Jeff Mahoney0be88e32018-09-06 17:18:15 -040011193 /* Discard not supported = nothing to do. */
11194 if (!blk_queue_discard(bdev_get_queue(device->bdev)))
11195 return 0;
11196
Andrea Gelmini52042d82018-11-28 12:05:13 +010011197 /* Not writable = nothing to do. */
Anand Jainebbede42017-12-04 12:54:52 +080011198 if (!test_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state))
Jeff Mahoney499f3772015-06-15 09:41:17 -040011199 return 0;
11200
11201 /* No free space = nothing to do. */
11202 if (device->total_bytes <= device->bytes_used)
11203 return 0;
11204
11205 ret = 0;
11206
11207 while (1) {
Jeff Mahoneyfb456252016-06-22 18:54:56 -040011208 struct btrfs_fs_info *fs_info = device->fs_info;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011209 struct btrfs_transaction *trans;
11210 u64 bytes;
11211
11212 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
11213 if (ret)
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011214 break;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011215
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011216 ret = down_read_killable(&fs_info->commit_root_sem);
11217 if (ret) {
11218 mutex_unlock(&fs_info->chunk_mutex);
11219 break;
11220 }
Jeff Mahoney499f3772015-06-15 09:41:17 -040011221
11222 spin_lock(&fs_info->trans_lock);
11223 trans = fs_info->running_transaction;
11224 if (trans)
Elena Reshetova9b64f572017-03-03 10:55:11 +020011225 refcount_inc(&trans->use_count);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011226 spin_unlock(&fs_info->trans_lock);
11227
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011228 if (!trans)
11229 up_read(&fs_info->commit_root_sem);
11230
Jeff Mahoney499f3772015-06-15 09:41:17 -040011231 ret = find_free_dev_extent_start(trans, device, minlen, start,
11232 &start, &len);
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011233 if (trans) {
11234 up_read(&fs_info->commit_root_sem);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011235 btrfs_put_transaction(trans);
Jeff Mahoneyfee7acc2018-09-06 17:18:16 -040011236 }
Jeff Mahoney499f3772015-06-15 09:41:17 -040011237
11238 if (ret) {
Jeff Mahoney499f3772015-06-15 09:41:17 -040011239 mutex_unlock(&fs_info->chunk_mutex);
11240 if (ret == -ENOSPC)
11241 ret = 0;
11242 break;
11243 }
11244
11245 ret = btrfs_issue_discard(device->bdev, start, len, &bytes);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011246 mutex_unlock(&fs_info->chunk_mutex);
11247
11248 if (ret)
11249 break;
11250
11251 start += len;
11252 *trimmed += bytes;
11253
11254 if (fatal_signal_pending(current)) {
11255 ret = -ERESTARTSYS;
11256 break;
11257 }
11258
11259 cond_resched();
11260 }
11261
11262 return ret;
11263}
11264
Qu Wenruo93bba242018-09-07 14:16:23 +080011265/*
11266 * Trim the whole filesystem by:
11267 * 1) trimming the free space in each block group
11268 * 2) trimming the unallocated space on each device
11269 *
11270 * This will also continue trimming even if a block group or device encounters
11271 * an error. The return value will be the last error, or 0 if nothing bad
11272 * happens.
11273 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011274int btrfs_trim_fs(struct btrfs_fs_info *fs_info, struct fstrim_range *range)
Li Dongyangf7039b12011-03-24 10:24:28 +000011275{
Li Dongyangf7039b12011-03-24 10:24:28 +000011276 struct btrfs_block_group_cache *cache = NULL;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011277 struct btrfs_device *device;
11278 struct list_head *devices;
Li Dongyangf7039b12011-03-24 10:24:28 +000011279 u64 group_trimmed;
11280 u64 start;
11281 u64 end;
11282 u64 trimmed = 0;
Qu Wenruo93bba242018-09-07 14:16:23 +080011283 u64 bg_failed = 0;
11284 u64 dev_failed = 0;
11285 int bg_ret = 0;
11286 int dev_ret = 0;
Li Dongyangf7039b12011-03-24 10:24:28 +000011287 int ret = 0;
11288
Qu Wenruo6ba9fc82018-09-07 14:16:24 +080011289 cache = btrfs_lookup_first_block_group(fs_info, range->start);
Qu Wenruo93bba242018-09-07 14:16:23 +080011290 for (; cache; cache = next_block_group(fs_info, cache)) {
Li Dongyangf7039b12011-03-24 10:24:28 +000011291 if (cache->key.objectid >= (range->start + range->len)) {
11292 btrfs_put_block_group(cache);
11293 break;
11294 }
11295
11296 start = max(range->start, cache->key.objectid);
11297 end = min(range->start + range->len,
11298 cache->key.objectid + cache->key.offset);
11299
11300 if (end - start >= range->minlen) {
11301 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000011302 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040011303 if (ret) {
Qu Wenruo93bba242018-09-07 14:16:23 +080011304 bg_failed++;
11305 bg_ret = ret;
11306 continue;
Josef Bacik1be41b72013-06-12 13:56:06 -040011307 }
11308 ret = wait_block_group_cache_done(cache);
11309 if (ret) {
Qu Wenruo93bba242018-09-07 14:16:23 +080011310 bg_failed++;
11311 bg_ret = ret;
11312 continue;
Josef Bacik1be41b72013-06-12 13:56:06 -040011313 }
Li Dongyangf7039b12011-03-24 10:24:28 +000011314 }
11315 ret = btrfs_trim_block_group(cache,
11316 &group_trimmed,
11317 start,
11318 end,
11319 range->minlen);
11320
11321 trimmed += group_trimmed;
11322 if (ret) {
Qu Wenruo93bba242018-09-07 14:16:23 +080011323 bg_failed++;
11324 bg_ret = ret;
11325 continue;
Li Dongyangf7039b12011-03-24 10:24:28 +000011326 }
11327 }
Li Dongyangf7039b12011-03-24 10:24:28 +000011328 }
11329
Qu Wenruo93bba242018-09-07 14:16:23 +080011330 if (bg_failed)
11331 btrfs_warn(fs_info,
11332 "failed to trim %llu block group(s), last error %d",
11333 bg_failed, bg_ret);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011334 mutex_lock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoneyd4e329d2018-09-06 17:18:14 -040011335 devices = &fs_info->fs_devices->devices;
11336 list_for_each_entry(device, devices, dev_list) {
Jeff Mahoney499f3772015-06-15 09:41:17 -040011337 ret = btrfs_trim_free_extents(device, range->minlen,
11338 &group_trimmed);
Qu Wenruo93bba242018-09-07 14:16:23 +080011339 if (ret) {
11340 dev_failed++;
11341 dev_ret = ret;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011342 break;
Qu Wenruo93bba242018-09-07 14:16:23 +080011343 }
Jeff Mahoney499f3772015-06-15 09:41:17 -040011344
11345 trimmed += group_trimmed;
11346 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011347 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011348
Qu Wenruo93bba242018-09-07 14:16:23 +080011349 if (dev_failed)
11350 btrfs_warn(fs_info,
11351 "failed to trim %llu device(s), last error %d",
11352 dev_failed, dev_ret);
Li Dongyangf7039b12011-03-24 10:24:28 +000011353 range->len = trimmed;
Qu Wenruo93bba242018-09-07 14:16:23 +080011354 if (bg_ret)
11355 return bg_ret;
11356 return dev_ret;
Li Dongyangf7039b12011-03-24 10:24:28 +000011357}
Miao Xie8257b2d2014-03-06 13:38:19 +080011358
11359/*
David Sterbaea14b57f2017-06-22 02:19:11 +020011360 * btrfs_{start,end}_write_no_snapshotting() are similar to
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011361 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
11362 * data into the page cache through nocow before the subvolume is snapshoted,
11363 * but flush the data into disk after the snapshot creation, or to prevent
David Sterbaea14b57f2017-06-22 02:19:11 +020011364 * operations while snapshotting is ongoing and that cause the snapshot to be
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011365 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080011366 */
David Sterbaea14b57f2017-06-22 02:19:11 +020011367void btrfs_end_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011368{
11369 percpu_counter_dec(&root->subv_writers->counter);
David Sterba093258e2018-02-26 16:15:17 +010011370 cond_wake_up(&root->subv_writers->wait);
Miao Xie8257b2d2014-03-06 13:38:19 +080011371}
11372
David Sterbaea14b57f2017-06-22 02:19:11 +020011373int btrfs_start_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011374{
David Sterbaea14b57f2017-06-22 02:19:11 +020011375 if (atomic_read(&root->will_be_snapshotted))
Miao Xie8257b2d2014-03-06 13:38:19 +080011376 return 0;
11377
11378 percpu_counter_inc(&root->subv_writers->counter);
11379 /*
11380 * Make sure counter is updated before we check for snapshot creation.
11381 */
11382 smp_mb();
David Sterbaea14b57f2017-06-22 02:19:11 +020011383 if (atomic_read(&root->will_be_snapshotted)) {
11384 btrfs_end_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080011385 return 0;
11386 }
11387 return 1;
11388}
Zhao Lei0bc19f902016-01-06 18:56:36 +080011389
Zhao Lei0bc19f902016-01-06 18:56:36 +080011390void btrfs_wait_for_snapshot_creation(struct btrfs_root *root)
11391{
11392 while (true) {
11393 int ret;
11394
David Sterbaea14b57f2017-06-22 02:19:11 +020011395 ret = btrfs_start_write_no_snapshotting(root);
Zhao Lei0bc19f902016-01-06 18:56:36 +080011396 if (ret)
11397 break;
Peter Zijlstra46259562018-03-15 11:43:08 +010011398 wait_var_event(&root->will_be_snapshotted,
11399 !atomic_read(&root->will_be_snapshotted));
Zhao Lei0bc19f902016-01-06 18:56:36 +080011400 }
11401}
Qu Wenruo031f24d2018-05-22 16:43:47 +080011402
11403void btrfs_mark_bg_unused(struct btrfs_block_group_cache *bg)
11404{
11405 struct btrfs_fs_info *fs_info = bg->fs_info;
11406
11407 spin_lock(&fs_info->unused_bgs_lock);
11408 if (list_empty(&bg->bg_list)) {
11409 btrfs_get_block_group(bg);
11410 trace_btrfs_add_unused_block_group(bg);
11411 list_add_tail(&bg->bg_list, &fs_info->unused_bgs);
11412 }
11413 spin_unlock(&fs_info->unused_bgs_lock);
11414}