blob: e2d7e86b51d1b24059dda46fda085174ac993a3f [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
Zach Brownec6b9102007-07-11 10:00:37 -040018#include <linux/sched.h>
Ingo Molnarf361bf42017-02-03 23:47:37 +010019#include <linux/sched/signal.h>
Chris Masonedbd8d42007-12-21 16:27:24 -050020#include <linux/pagemap.h>
Chris Masonec44a352008-04-28 15:29:52 -040021#include <linux/writeback.h>
David Woodhouse21af8042008-08-12 14:13:26 +010022#include <linux/blkdev.h>
Chris Masonb7a9f292009-02-04 09:23:45 -050023#include <linux/sort.h>
Chris Mason4184ea72009-03-10 12:39:20 -040024#include <linux/rcupdate.h>
Josef Bacik817d52f2009-07-13 21:29:25 -040025#include <linux/kthread.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
David Sterbadff51cd2011-06-14 12:52:17 +020027#include <linux/ratelimit.h>
Josef Bacikb150a4f2013-06-19 15:00:04 -040028#include <linux/percpu_counter.h>
Chris Mason74493f72007-12-11 09:25:06 -050029#include "hash.h"
Miao Xie995946d2014-04-02 19:51:06 +080030#include "tree-log.h"
Chris Masonfec577f2007-02-26 10:40:21 -050031#include "disk-io.h"
32#include "print-tree.h"
Chris Mason0b86a832008-03-24 15:01:56 -040033#include "volumes.h"
David Woodhouse53b381b2013-01-29 18:40:14 -050034#include "raid56.h"
Chris Mason925baed2008-06-25 16:01:30 -040035#include "locking.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040036#include "free-space-cache.h"
Omar Sandoval1e144fb2015-09-29 20:50:37 -070037#include "free-space-tree.h"
Miao Xie3fed40c2012-09-13 04:51:36 -060038#include "math.h"
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040039#include "sysfs.h"
Josef Bacikfcebe452014-05-13 17:30:47 -070040#include "qgroup.h"
Chris Masonfec577f2007-02-26 10:40:21 -050041
Arne Jansen709c0482011-09-12 12:22:57 +020042#undef SCRAMBLE_DELAYED_REFS
43
Miao Xie9e622d62012-01-26 15:01:12 -050044/*
45 * control flags for do_chunk_alloc's force field
Chris Mason0e4f8f82011-04-15 16:05:44 -040046 * CHUNK_ALLOC_NO_FORCE means to only allocate a chunk
47 * if we really need one.
48 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040049 * CHUNK_ALLOC_LIMITED means to only try and allocate one
50 * if we have very few chunks already allocated. This is
51 * used as part of the clustering code to help make sure
52 * we have a good pool of storage to cluster in, without
53 * filling the FS with empty chunks
54 *
Miao Xie9e622d62012-01-26 15:01:12 -050055 * CHUNK_ALLOC_FORCE means it must try to allocate one
56 *
Chris Mason0e4f8f82011-04-15 16:05:44 -040057 */
58enum {
59 CHUNK_ALLOC_NO_FORCE = 0,
Miao Xie9e622d62012-01-26 15:01:12 -050060 CHUNK_ALLOC_LIMITED = 1,
61 CHUNK_ALLOC_FORCE = 2,
Chris Mason0e4f8f82011-04-15 16:05:44 -040062};
63
Josef Bacikce93ec52014-11-17 15:45:48 -050064static int update_block_group(struct btrfs_trans_handle *trans,
Jeff Mahoney6202df62016-06-22 18:54:22 -040065 struct btrfs_fs_info *fs_info, u64 bytenr,
Josef Bacikce93ec52014-11-17 15:45:48 -050066 u64 num_bytes, int alloc);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040067static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040068 struct btrfs_fs_info *fs_info,
Qu Wenruoc682f9b2015-03-17 16:59:47 +080069 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -040070 u64 root_objectid, u64 owner_objectid,
71 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +080072 struct btrfs_delayed_extent_op *extra_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -040073static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
74 struct extent_buffer *leaf,
75 struct btrfs_extent_item *ei);
76static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040077 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -040078 u64 parent, u64 root_objectid,
79 u64 flags, u64 owner, u64 offset,
80 struct btrfs_key *ins, int ref_mod);
81static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040082 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -040083 u64 parent, u64 root_objectid,
84 u64 flags, struct btrfs_disk_key *key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +010085 int level, struct btrfs_key *ins);
Josef Bacik6a632092009-02-20 11:00:09 -050086static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040087 struct btrfs_fs_info *fs_info, 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);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +080094static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
Wang Xiaoguang18513092016-07-25 15:51:40 +080095 u64 ram_bytes, u64 num_bytes, int delalloc);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +080096static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
97 u64 num_bytes, int delalloc);
Josef Bacik5d803662013-02-07 16:06:02 -050098static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
99 u64 num_bytes);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -0400100static int __reserve_metadata_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik957780e2016-05-17 13:30:55 -0400101 struct btrfs_space_info *space_info,
102 u64 orig_bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -0400103 enum btrfs_reserve_flush_enum flush,
104 bool system_chunk);
Josef Bacik957780e2016-05-17 13:30:55 -0400105static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
106 struct btrfs_space_info *space_info,
107 u64 num_bytes);
108static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
109 struct btrfs_space_info *space_info,
110 u64 num_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -0500111
Josef Bacik817d52f2009-07-13 21:29:25 -0400112static noinline int
113block_group_cache_done(struct btrfs_block_group_cache *cache)
114{
115 smp_mb();
Josef Bacik36cce922013-08-05 11:15:21 -0400116 return cache->cached == BTRFS_CACHE_FINISHED ||
117 cache->cached == BTRFS_CACHE_ERROR;
Josef Bacik817d52f2009-07-13 21:29:25 -0400118}
119
Josef Bacik0f9dd462008-09-23 13:14:11 -0400120static int block_group_bits(struct btrfs_block_group_cache *cache, u64 bits)
121{
122 return (cache->flags & bits) == bits;
123}
124
Filipe Manana758f2df2015-11-19 11:45:48 +0000125void btrfs_get_block_group(struct btrfs_block_group_cache *cache)
Josef Bacik11dfe352009-11-13 20:12:59 +0000126{
127 atomic_inc(&cache->count);
128}
129
130void btrfs_put_block_group(struct btrfs_block_group_cache *cache)
131{
Yan, Zhengf0486c62010-05-16 10:46:25 -0400132 if (atomic_dec_and_test(&cache->count)) {
133 WARN_ON(cache->pinned > 0);
134 WARN_ON(cache->reserved > 0);
Qu Wenruo0966a7b2017-04-14 08:35:54 +0800135
136 /*
137 * If not empty, someone is still holding mutex of
138 * full_stripe_lock, which can only be released by caller.
139 * And it will definitely cause use-after-free when caller
140 * tries to release full stripe lock.
141 *
142 * No better way to resolve, but only to warn.
143 */
144 WARN_ON(!RB_EMPTY_ROOT(&cache->full_stripe_locks_root.root));
Li Zefan34d52cb2011-03-29 13:46:06 +0800145 kfree(cache->free_space_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000146 kfree(cache);
Yan, Zhengf0486c62010-05-16 10:46:25 -0400147 }
Josef Bacik11dfe352009-11-13 20:12:59 +0000148}
149
Josef Bacik0f9dd462008-09-23 13:14:11 -0400150/*
151 * this adds the block group to the fs_info rb tree for the block group
152 * cache
153 */
Christoph Hellwigb2950862008-12-02 09:54:17 -0500154static int btrfs_add_block_group_cache(struct btrfs_fs_info *info,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400155 struct btrfs_block_group_cache *block_group)
156{
157 struct rb_node **p;
158 struct rb_node *parent = NULL;
159 struct btrfs_block_group_cache *cache;
160
161 spin_lock(&info->block_group_cache_lock);
162 p = &info->block_group_cache_tree.rb_node;
163
164 while (*p) {
165 parent = *p;
166 cache = rb_entry(parent, struct btrfs_block_group_cache,
167 cache_node);
168 if (block_group->key.objectid < cache->key.objectid) {
169 p = &(*p)->rb_left;
170 } else if (block_group->key.objectid > cache->key.objectid) {
171 p = &(*p)->rb_right;
172 } else {
173 spin_unlock(&info->block_group_cache_lock);
174 return -EEXIST;
175 }
176 }
177
178 rb_link_node(&block_group->cache_node, parent, p);
179 rb_insert_color(&block_group->cache_node,
180 &info->block_group_cache_tree);
Liu Boa1897fd2012-12-27 09:01:23 +0000181
182 if (info->first_logical_byte > block_group->key.objectid)
183 info->first_logical_byte = block_group->key.objectid;
184
Josef Bacik0f9dd462008-09-23 13:14:11 -0400185 spin_unlock(&info->block_group_cache_lock);
186
187 return 0;
188}
189
190/*
191 * This will return the block group at or after bytenr if contains is 0, else
192 * it will return the block group that contains the bytenr
193 */
194static struct btrfs_block_group_cache *
195block_group_cache_tree_search(struct btrfs_fs_info *info, u64 bytenr,
196 int contains)
197{
198 struct btrfs_block_group_cache *cache, *ret = NULL;
199 struct rb_node *n;
200 u64 end, start;
201
202 spin_lock(&info->block_group_cache_lock);
203 n = info->block_group_cache_tree.rb_node;
204
205 while (n) {
206 cache = rb_entry(n, struct btrfs_block_group_cache,
207 cache_node);
208 end = cache->key.objectid + cache->key.offset - 1;
209 start = cache->key.objectid;
210
211 if (bytenr < start) {
212 if (!contains && (!ret || start < ret->key.objectid))
213 ret = cache;
214 n = n->rb_left;
215 } else if (bytenr > start) {
216 if (contains && bytenr <= end) {
217 ret = cache;
218 break;
219 }
220 n = n->rb_right;
221 } else {
222 ret = cache;
223 break;
224 }
225 }
Liu Boa1897fd2012-12-27 09:01:23 +0000226 if (ret) {
Josef Bacik11dfe352009-11-13 20:12:59 +0000227 btrfs_get_block_group(ret);
Liu Boa1897fd2012-12-27 09:01:23 +0000228 if (bytenr == 0 && info->first_logical_byte > ret->key.objectid)
229 info->first_logical_byte = ret->key.objectid;
230 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400231 spin_unlock(&info->block_group_cache_lock);
232
233 return ret;
234}
235
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400236static int add_excluded_extent(struct btrfs_fs_info *fs_info,
Yan Zheng11833d62009-09-11 16:11:19 -0400237 u64 start, u64 num_bytes)
Josef Bacik817d52f2009-07-13 21:29:25 -0400238{
Yan Zheng11833d62009-09-11 16:11:19 -0400239 u64 end = start + num_bytes - 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400240 set_extent_bits(&fs_info->freed_extents[0],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200241 start, end, EXTENT_UPTODATE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400242 set_extent_bits(&fs_info->freed_extents[1],
David Sterbaceeb0ae2016-04-26 23:54:39 +0200243 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400244 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400245}
246
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400247static void free_excluded_extents(struct btrfs_fs_info *fs_info,
Yan Zheng11833d62009-09-11 16:11:19 -0400248 struct btrfs_block_group_cache *cache)
Josef Bacik817d52f2009-07-13 21:29:25 -0400249{
Yan Zheng11833d62009-09-11 16:11:19 -0400250 u64 start, end;
251
252 start = cache->key.objectid;
253 end = start + cache->key.offset - 1;
254
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400255 clear_extent_bits(&fs_info->freed_extents[0],
David Sterba91166212016-04-26 23:54:39 +0200256 start, end, EXTENT_UPTODATE);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400257 clear_extent_bits(&fs_info->freed_extents[1],
David Sterba91166212016-04-26 23:54:39 +0200258 start, end, EXTENT_UPTODATE);
Yan Zheng11833d62009-09-11 16:11:19 -0400259}
260
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400261static int exclude_super_stripes(struct btrfs_fs_info *fs_info,
Yan Zheng11833d62009-09-11 16:11:19 -0400262 struct btrfs_block_group_cache *cache)
263{
Josef Bacik817d52f2009-07-13 21:29:25 -0400264 u64 bytenr;
265 u64 *logical;
266 int stripe_len;
267 int i, nr, ret;
268
Yan, Zheng06b23312009-11-26 09:31:11 +0000269 if (cache->key.objectid < BTRFS_SUPER_INFO_OFFSET) {
270 stripe_len = BTRFS_SUPER_INFO_OFFSET - cache->key.objectid;
271 cache->bytes_super += stripe_len;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400272 ret = add_excluded_extent(fs_info, cache->key.objectid,
Yan, Zheng06b23312009-11-26 09:31:11 +0000273 stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400274 if (ret)
275 return ret;
Yan, Zheng06b23312009-11-26 09:31:11 +0000276 }
277
Josef Bacik817d52f2009-07-13 21:29:25 -0400278 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
279 bytenr = btrfs_sb_offset(i);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400280 ret = btrfs_rmap_block(fs_info, cache->key.objectid,
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400281 bytenr, 0, &logical, &nr, &stripe_len);
Josef Bacik835d9742013-03-19 12:13:25 -0400282 if (ret)
283 return ret;
Yan Zheng11833d62009-09-11 16:11:19 -0400284
Josef Bacik817d52f2009-07-13 21:29:25 -0400285 while (nr--) {
Josef Bacik51bf5f02013-04-23 12:55:21 -0400286 u64 start, len;
287
288 if (logical[nr] > cache->key.objectid +
289 cache->key.offset)
290 continue;
291
292 if (logical[nr] + stripe_len <= cache->key.objectid)
293 continue;
294
295 start = logical[nr];
296 if (start < cache->key.objectid) {
297 start = cache->key.objectid;
298 len = (logical[nr] + stripe_len) - start;
299 } else {
300 len = min_t(u64, stripe_len,
301 cache->key.objectid +
302 cache->key.offset - start);
303 }
304
305 cache->bytes_super += len;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400306 ret = add_excluded_extent(fs_info, start, len);
Josef Bacik835d9742013-03-19 12:13:25 -0400307 if (ret) {
308 kfree(logical);
309 return ret;
310 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400311 }
Yan Zheng11833d62009-09-11 16:11:19 -0400312
Josef Bacik817d52f2009-07-13 21:29:25 -0400313 kfree(logical);
314 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400315 return 0;
316}
317
Yan Zheng11833d62009-09-11 16:11:19 -0400318static struct btrfs_caching_control *
319get_caching_control(struct btrfs_block_group_cache *cache)
320{
321 struct btrfs_caching_control *ctl;
322
323 spin_lock(&cache->lock);
Josef Bacikdde5abe2010-09-16 16:17:03 -0400324 if (!cache->caching_ctl) {
325 spin_unlock(&cache->lock);
326 return NULL;
327 }
328
Yan Zheng11833d62009-09-11 16:11:19 -0400329 ctl = cache->caching_ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200330 refcount_inc(&ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400331 spin_unlock(&cache->lock);
332 return ctl;
333}
334
335static void put_caching_control(struct btrfs_caching_control *ctl)
336{
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200337 if (refcount_dec_and_test(&ctl->count))
Yan Zheng11833d62009-09-11 16:11:19 -0400338 kfree(ctl);
339}
340
Josef Bacikd0bd4562015-09-23 14:54:14 -0400341#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400342static void fragment_free_space(struct btrfs_block_group_cache *block_group)
Josef Bacikd0bd4562015-09-23 14:54:14 -0400343{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400344 struct btrfs_fs_info *fs_info = block_group->fs_info;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400345 u64 start = block_group->key.objectid;
346 u64 len = block_group->key.offset;
347 u64 chunk = block_group->flags & BTRFS_BLOCK_GROUP_METADATA ?
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400348 fs_info->nodesize : fs_info->sectorsize;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400349 u64 step = chunk << 1;
350
351 while (len > chunk) {
352 btrfs_remove_free_space(block_group, start, chunk);
353 start += step;
354 if (len < step)
355 len = 0;
356 else
357 len -= step;
358 }
359}
360#endif
361
Josef Bacik0f9dd462008-09-23 13:14:11 -0400362/*
363 * this is only called by cache_block_group, since we could have freed extents
364 * we need to check the pinned_extents for any extents that can't be used yet
365 * since their free space will be released as soon as the transaction commits.
366 */
Omar Sandovala5ed9182015-09-29 20:50:35 -0700367u64 add_new_free_space(struct btrfs_block_group_cache *block_group,
368 struct btrfs_fs_info *info, u64 start, u64 end)
Josef Bacik0f9dd462008-09-23 13:14:11 -0400369{
Josef Bacik817d52f2009-07-13 21:29:25 -0400370 u64 extent_start, extent_end, size, total_added = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400371 int ret;
372
373 while (start < end) {
Yan Zheng11833d62009-09-11 16:11:19 -0400374 ret = find_first_extent_bit(info->pinned_extents, start,
Josef Bacik0f9dd462008-09-23 13:14:11 -0400375 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -0400376 EXTENT_DIRTY | EXTENT_UPTODATE,
377 NULL);
Josef Bacik0f9dd462008-09-23 13:14:11 -0400378 if (ret)
379 break;
380
Yan, Zheng06b23312009-11-26 09:31:11 +0000381 if (extent_start <= start) {
Josef Bacik0f9dd462008-09-23 13:14:11 -0400382 start = extent_end + 1;
383 } else if (extent_start > start && extent_start < end) {
384 size = extent_start - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400385 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500386 ret = btrfs_add_free_space(block_group, start,
387 size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100388 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400389 start = extent_end + 1;
390 } else {
391 break;
392 }
393 }
394
395 if (start < end) {
396 size = end - start;
Josef Bacik817d52f2009-07-13 21:29:25 -0400397 total_added += size;
Josef Bacikea6a4782008-11-20 12:16:16 -0500398 ret = btrfs_add_free_space(block_group, start, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100399 BUG_ON(ret); /* -ENOMEM or logic error */
Josef Bacik0f9dd462008-09-23 13:14:11 -0400400 }
401
Josef Bacik817d52f2009-07-13 21:29:25 -0400402 return total_added;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400403}
404
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700405static int load_extent_tree_free(struct btrfs_caching_control *caching_ctl)
Chris Masone37c9e62007-05-09 20:13:14 -0400406{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400407 struct btrfs_block_group_cache *block_group = caching_ctl->block_group;
408 struct btrfs_fs_info *fs_info = block_group->fs_info;
409 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Masone37c9e62007-05-09 20:13:14 -0400410 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400411 struct extent_buffer *leaf;
Yan Zheng11833d62009-09-11 16:11:19 -0400412 struct btrfs_key key;
Josef Bacik817d52f2009-07-13 21:29:25 -0400413 u64 total_found = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400414 u64 last = 0;
415 u32 nritems;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700416 int ret;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400417 bool wakeup = true;
Chris Masonf510cfe2007-10-15 16:14:48 -0400418
Chris Masone37c9e62007-05-09 20:13:14 -0400419 path = btrfs_alloc_path();
420 if (!path)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700421 return -ENOMEM;
Yan7d7d6062007-09-14 16:15:28 -0400422
Josef Bacik817d52f2009-07-13 21:29:25 -0400423 last = max_t(u64, block_group->key.objectid, BTRFS_SUPER_INFO_OFFSET);
Yan Zheng11833d62009-09-11 16:11:19 -0400424
Josef Bacikd0bd4562015-09-23 14:54:14 -0400425#ifdef CONFIG_BTRFS_DEBUG
426 /*
427 * If we're fragmenting we don't want to make anybody think we can
428 * allocate from this block group until we've had a chance to fragment
429 * the free space.
430 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400431 if (btrfs_should_fragment_free_space(block_group))
Josef Bacikd0bd4562015-09-23 14:54:14 -0400432 wakeup = false;
433#endif
Chris Mason5cd57b22008-06-25 16:01:30 -0400434 /*
Josef Bacik817d52f2009-07-13 21:29:25 -0400435 * We don't want to deadlock with somebody trying to allocate a new
436 * extent for the extent root while also trying to search the extent
437 * root to add free space. So we skip locking and search the commit
438 * root, since its read-only
Chris Mason5cd57b22008-06-25 16:01:30 -0400439 */
440 path->skip_locking = 1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400441 path->search_commit_root = 1;
David Sterbae4058b52015-11-27 16:31:35 +0100442 path->reada = READA_FORWARD;
Josef Bacik817d52f2009-07-13 21:29:25 -0400443
Yan Zhenge4404d62008-12-12 10:03:26 -0500444 key.objectid = last;
Chris Masone37c9e62007-05-09 20:13:14 -0400445 key.offset = 0;
Yan Zheng11833d62009-09-11 16:11:19 -0400446 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason013f1b12009-07-31 14:57:55 -0400447
Liu Bo52ee28d2013-07-11 17:51:15 +0800448next:
Yan Zheng11833d62009-09-11 16:11:19 -0400449 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
Chris Masone37c9e62007-05-09 20:13:14 -0400450 if (ret < 0)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700451 goto out;
Yan Zhenga512bbf2008-12-08 16:46:26 -0500452
Yan Zheng11833d62009-09-11 16:11:19 -0400453 leaf = path->nodes[0];
454 nritems = btrfs_header_nritems(leaf);
455
Chris Masond3977122009-01-05 21:25:51 -0500456 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +0200457 if (btrfs_fs_closing(fs_info) > 1) {
Yan Zhengf25784b2009-07-28 08:41:57 -0400458 last = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400459 break;
Yan Zhengf25784b2009-07-28 08:41:57 -0400460 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400461
Yan Zheng11833d62009-09-11 16:11:19 -0400462 if (path->slots[0] < nritems) {
463 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
464 } else {
465 ret = find_next_key(path, 0, &key);
466 if (ret)
Chris Masone37c9e62007-05-09 20:13:14 -0400467 break;
Josef Bacik817d52f2009-07-13 21:29:25 -0400468
Josef Bacikc9ea7b22013-09-19 10:02:11 -0400469 if (need_resched() ||
Josef Bacik9e351cc2014-03-13 15:42:13 -0400470 rwsem_is_contended(&fs_info->commit_root_sem)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400471 if (wakeup)
472 caching_ctl->progress = last;
Chris Masonff5714c2011-05-28 07:00:39 -0400473 btrfs_release_path(path);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400474 up_read(&fs_info->commit_root_sem);
Josef Bacik589d8ad2011-05-11 17:30:53 -0400475 mutex_unlock(&caching_ctl->mutex);
Yan Zheng11833d62009-09-11 16:11:19 -0400476 cond_resched();
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700477 mutex_lock(&caching_ctl->mutex);
478 down_read(&fs_info->commit_root_sem);
479 goto next;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400480 }
Josef Bacik0a3896d2013-04-19 14:37:26 -0400481
482 ret = btrfs_next_leaf(extent_root, path);
483 if (ret < 0)
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700484 goto out;
Josef Bacik0a3896d2013-04-19 14:37:26 -0400485 if (ret)
486 break;
Josef Bacik589d8ad2011-05-11 17:30:53 -0400487 leaf = path->nodes[0];
488 nritems = btrfs_header_nritems(leaf);
489 continue;
Yan Zheng11833d62009-09-11 16:11:19 -0400490 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400491
Liu Bo52ee28d2013-07-11 17:51:15 +0800492 if (key.objectid < last) {
493 key.objectid = last;
494 key.offset = 0;
495 key.type = BTRFS_EXTENT_ITEM_KEY;
496
Josef Bacikd0bd4562015-09-23 14:54:14 -0400497 if (wakeup)
498 caching_ctl->progress = last;
Liu Bo52ee28d2013-07-11 17:51:15 +0800499 btrfs_release_path(path);
500 goto next;
501 }
502
Yan Zheng11833d62009-09-11 16:11:19 -0400503 if (key.objectid < block_group->key.objectid) {
504 path->slots[0]++;
Josef Bacik817d52f2009-07-13 21:29:25 -0400505 continue;
Chris Masone37c9e62007-05-09 20:13:14 -0400506 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400507
Chris Masone37c9e62007-05-09 20:13:14 -0400508 if (key.objectid >= block_group->key.objectid +
Josef Bacik0f9dd462008-09-23 13:14:11 -0400509 block_group->key.offset)
Yan7d7d6062007-09-14 16:15:28 -0400510 break;
Yan7d7d6062007-09-14 16:15:28 -0400511
Josef Bacik3173a182013-03-07 14:22:04 -0500512 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
513 key.type == BTRFS_METADATA_ITEM_KEY) {
Josef Bacik817d52f2009-07-13 21:29:25 -0400514 total_found += add_new_free_space(block_group,
515 fs_info, last,
516 key.objectid);
Josef Bacik3173a182013-03-07 14:22:04 -0500517 if (key.type == BTRFS_METADATA_ITEM_KEY)
518 last = key.objectid +
Jeff Mahoneyda170662016-06-15 09:22:56 -0400519 fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500520 else
521 last = key.objectid + key.offset;
Josef Bacik817d52f2009-07-13 21:29:25 -0400522
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700523 if (total_found > CACHING_CTL_WAKE_UP) {
Yan Zheng11833d62009-09-11 16:11:19 -0400524 total_found = 0;
Josef Bacikd0bd4562015-09-23 14:54:14 -0400525 if (wakeup)
526 wake_up(&caching_ctl->wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400527 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400528 }
Chris Masone37c9e62007-05-09 20:13:14 -0400529 path->slots[0]++;
530 }
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400531 ret = 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400532
533 total_found += add_new_free_space(block_group, fs_info, last,
534 block_group->key.objectid +
535 block_group->key.offset);
Yan Zheng11833d62009-09-11 16:11:19 -0400536 caching_ctl->progress = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -0400537
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700538out:
539 btrfs_free_path(path);
540 return ret;
541}
542
543static noinline void caching_thread(struct btrfs_work *work)
544{
545 struct btrfs_block_group_cache *block_group;
546 struct btrfs_fs_info *fs_info;
547 struct btrfs_caching_control *caching_ctl;
Chris Masonb4570aa2015-12-30 07:37:26 -0800548 struct btrfs_root *extent_root;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700549 int ret;
550
551 caching_ctl = container_of(work, struct btrfs_caching_control, work);
552 block_group = caching_ctl->block_group;
553 fs_info = block_group->fs_info;
Chris Masonb4570aa2015-12-30 07:37:26 -0800554 extent_root = fs_info->extent_root;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700555
556 mutex_lock(&caching_ctl->mutex);
557 down_read(&fs_info->commit_root_sem);
558
Omar Sandoval1e144fb2015-09-29 20:50:37 -0700559 if (btrfs_fs_compat_ro(fs_info, FREE_SPACE_TREE))
560 ret = load_free_space_tree(caching_ctl);
561 else
562 ret = load_extent_tree_free(caching_ctl);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700563
Josef Bacik817d52f2009-07-13 21:29:25 -0400564 spin_lock(&block_group->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400565 block_group->caching_ctl = NULL;
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700566 block_group->cached = ret ? BTRFS_CACHE_ERROR : BTRFS_CACHE_FINISHED;
Josef Bacik817d52f2009-07-13 21:29:25 -0400567 spin_unlock(&block_group->lock);
568
Josef Bacikd0bd4562015-09-23 14:54:14 -0400569#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400570 if (btrfs_should_fragment_free_space(block_group)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400571 u64 bytes_used;
572
573 spin_lock(&block_group->space_info->lock);
574 spin_lock(&block_group->lock);
575 bytes_used = block_group->key.offset -
576 btrfs_block_group_used(&block_group->item);
577 block_group->space_info->bytes_used += bytes_used >> 1;
578 spin_unlock(&block_group->lock);
579 spin_unlock(&block_group->space_info->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400580 fragment_free_space(block_group);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400581 }
582#endif
583
584 caching_ctl->progress = (u64)-1;
Chris Masonf7d3d2f2015-12-18 11:11:10 -0800585
Josef Bacik9e351cc2014-03-13 15:42:13 -0400586 up_read(&fs_info->commit_root_sem);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400587 free_excluded_extents(fs_info, block_group);
Yan Zheng11833d62009-09-11 16:11:19 -0400588 mutex_unlock(&caching_ctl->mutex);
Omar Sandoval73fa48b2015-09-29 20:50:33 -0700589
Yan Zheng11833d62009-09-11 16:11:19 -0400590 wake_up(&caching_ctl->wait);
591
592 put_caching_control(caching_ctl);
Josef Bacik11dfe352009-11-13 20:12:59 +0000593 btrfs_put_block_group(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -0400594}
595
Josef Bacik9d66e232010-08-25 16:54:15 -0400596static int cache_block_group(struct btrfs_block_group_cache *cache,
Josef Bacik9d66e232010-08-25 16:54:15 -0400597 int load_cache_only)
Josef Bacik817d52f2009-07-13 21:29:25 -0400598{
Josef Bacik291c7d22011-11-14 13:52:14 -0500599 DEFINE_WAIT(wait);
Yan Zheng11833d62009-09-11 16:11:19 -0400600 struct btrfs_fs_info *fs_info = cache->fs_info;
601 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -0400602 int ret = 0;
603
Josef Bacik291c7d22011-11-14 13:52:14 -0500604 caching_ctl = kzalloc(sizeof(*caching_ctl), GFP_NOFS);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100605 if (!caching_ctl)
606 return -ENOMEM;
Josef Bacik291c7d22011-11-14 13:52:14 -0500607
608 INIT_LIST_HEAD(&caching_ctl->list);
609 mutex_init(&caching_ctl->mutex);
610 init_waitqueue_head(&caching_ctl->wait);
611 caching_ctl->block_group = cache;
612 caching_ctl->progress = cache->key.objectid;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200613 refcount_set(&caching_ctl->count, 1);
Liu Bo9e0af232014-08-15 23:36:53 +0800614 btrfs_init_work(&caching_ctl->work, btrfs_cache_helper,
615 caching_thread, NULL, NULL);
Josef Bacik291c7d22011-11-14 13:52:14 -0500616
617 spin_lock(&cache->lock);
618 /*
619 * This should be a rare occasion, but this could happen I think in the
620 * case where one thread starts to load the space cache info, and then
621 * some other thread starts a transaction commit which tries to do an
622 * allocation while the other thread is still loading the space cache
623 * info. The previous loop should have kept us from choosing this block
624 * group, but if we've moved to the state where we will wait on caching
625 * block groups we need to first check if we're doing a fast load here,
626 * so we can wait for it to finish, otherwise we could end up allocating
627 * from a block group who's cache gets evicted for one reason or
628 * another.
629 */
630 while (cache->cached == BTRFS_CACHE_FAST) {
631 struct btrfs_caching_control *ctl;
632
633 ctl = cache->caching_ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200634 refcount_inc(&ctl->count);
Josef Bacik291c7d22011-11-14 13:52:14 -0500635 prepare_to_wait(&ctl->wait, &wait, TASK_UNINTERRUPTIBLE);
636 spin_unlock(&cache->lock);
637
638 schedule();
639
640 finish_wait(&ctl->wait, &wait);
641 put_caching_control(ctl);
642 spin_lock(&cache->lock);
643 }
644
645 if (cache->cached != BTRFS_CACHE_NO) {
646 spin_unlock(&cache->lock);
647 kfree(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400648 return 0;
Josef Bacik291c7d22011-11-14 13:52:14 -0500649 }
650 WARN_ON(cache->caching_ctl);
651 cache->caching_ctl = caching_ctl;
652 cache->cached = BTRFS_CACHE_FAST;
653 spin_unlock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -0400654
Josef Bacikd53ba472012-04-12 16:03:57 -0400655 if (fs_info->mount_opt & BTRFS_MOUNT_SPACE_CACHE) {
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500656 mutex_lock(&caching_ctl->mutex);
Josef Bacik9d66e232010-08-25 16:54:15 -0400657 ret = load_free_space_cache(fs_info, cache);
658
659 spin_lock(&cache->lock);
660 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500661 cache->caching_ctl = NULL;
Josef Bacik9d66e232010-08-25 16:54:15 -0400662 cache->cached = BTRFS_CACHE_FINISHED;
663 cache->last_byte_to_unpin = (u64)-1;
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500664 caching_ctl->progress = (u64)-1;
Josef Bacik9d66e232010-08-25 16:54:15 -0400665 } else {
Josef Bacik291c7d22011-11-14 13:52:14 -0500666 if (load_cache_only) {
667 cache->caching_ctl = NULL;
668 cache->cached = BTRFS_CACHE_NO;
669 } else {
670 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000671 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500672 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400673 }
674 spin_unlock(&cache->lock);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400675#ifdef CONFIG_BTRFS_DEBUG
676 if (ret == 1 &&
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400677 btrfs_should_fragment_free_space(cache)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -0400678 u64 bytes_used;
679
680 spin_lock(&cache->space_info->lock);
681 spin_lock(&cache->lock);
682 bytes_used = cache->key.offset -
683 btrfs_block_group_used(&cache->item);
684 cache->space_info->bytes_used += bytes_used >> 1;
685 spin_unlock(&cache->lock);
686 spin_unlock(&cache->space_info->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400687 fragment_free_space(cache);
Josef Bacikd0bd4562015-09-23 14:54:14 -0400688 }
689#endif
Josef Bacikcb83b7b2014-11-26 11:52:54 -0500690 mutex_unlock(&caching_ctl->mutex);
691
Josef Bacik291c7d22011-11-14 13:52:14 -0500692 wake_up(&caching_ctl->wait);
Josef Bacik3c148742011-02-02 15:53:47 +0000693 if (ret == 1) {
Josef Bacik291c7d22011-11-14 13:52:14 -0500694 put_caching_control(caching_ctl);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400695 free_excluded_extents(fs_info, cache);
Josef Bacik9d66e232010-08-25 16:54:15 -0400696 return 0;
Josef Bacik3c148742011-02-02 15:53:47 +0000697 }
Josef Bacik291c7d22011-11-14 13:52:14 -0500698 } else {
699 /*
Omar Sandoval1e144fb2015-09-29 20:50:37 -0700700 * We're either using the free space tree or no caching at all.
701 * Set cached to the appropriate value and wakeup any waiters.
Josef Bacik291c7d22011-11-14 13:52:14 -0500702 */
703 spin_lock(&cache->lock);
704 if (load_cache_only) {
705 cache->caching_ctl = NULL;
706 cache->cached = BTRFS_CACHE_NO;
707 } else {
708 cache->cached = BTRFS_CACHE_STARTED;
Filipe Manana4f69cb92014-11-26 15:28:51 +0000709 cache->has_caching_ctl = 1;
Josef Bacik291c7d22011-11-14 13:52:14 -0500710 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400711 spin_unlock(&cache->lock);
Josef Bacik291c7d22011-11-14 13:52:14 -0500712 wake_up(&caching_ctl->wait);
713 }
714
715 if (load_cache_only) {
716 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -0400717 return 0;
Josef Bacik817d52f2009-07-13 21:29:25 -0400718 }
Josef Bacik817d52f2009-07-13 21:29:25 -0400719
Josef Bacik9e351cc2014-03-13 15:42:13 -0400720 down_write(&fs_info->commit_root_sem);
Elena Reshetova1e4f4712017-03-03 10:55:14 +0200721 refcount_inc(&caching_ctl->count);
Yan Zheng11833d62009-09-11 16:11:19 -0400722 list_add_tail(&caching_ctl->list, &fs_info->caching_block_groups);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400723 up_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -0400724
Josef Bacik11dfe352009-11-13 20:12:59 +0000725 btrfs_get_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -0400726
Qu Wenruoe66f0bb2014-02-28 10:46:12 +0800727 btrfs_queue_work(fs_info->caching_workers, &caching_ctl->work);
Josef Bacik817d52f2009-07-13 21:29:25 -0400728
Josef Bacikef8bbdf2008-09-23 13:14:11 -0400729 return ret;
Chris Masone37c9e62007-05-09 20:13:14 -0400730}
731
Josef Bacik0f9dd462008-09-23 13:14:11 -0400732/*
733 * return the block group that starts at or after bytenr
734 */
Chris Masond3977122009-01-05 21:25:51 -0500735static struct btrfs_block_group_cache *
736btrfs_lookup_first_block_group(struct btrfs_fs_info *info, u64 bytenr)
Chris Mason0ef3e662008-05-24 14:04:53 -0400737{
Masahiro Yamadae2c89902016-09-13 04:35:52 +0900738 return block_group_cache_tree_search(info, bytenr, 0);
Chris Mason0ef3e662008-05-24 14:04:53 -0400739}
740
Josef Bacik0f9dd462008-09-23 13:14:11 -0400741/*
Sankar P9f556842009-05-14 13:52:22 -0400742 * return the block group that contains the given bytenr
Josef Bacik0f9dd462008-09-23 13:14:11 -0400743 */
Chris Masond3977122009-01-05 21:25:51 -0500744struct btrfs_block_group_cache *btrfs_lookup_block_group(
745 struct btrfs_fs_info *info,
746 u64 bytenr)
Chris Masonbe744172007-05-06 10:15:01 -0400747{
Masahiro Yamadae2c89902016-09-13 04:35:52 +0900748 return block_group_cache_tree_search(info, bytenr, 1);
Chris Masonbe744172007-05-06 10:15:01 -0400749}
Chris Mason0b86a832008-03-24 15:01:56 -0400750
Josef Bacik0f9dd462008-09-23 13:14:11 -0400751static struct btrfs_space_info *__find_space_info(struct btrfs_fs_info *info,
752 u64 flags)
Chris Mason6324fbf2008-03-24 15:01:59 -0400753{
Josef Bacik0f9dd462008-09-23 13:14:11 -0400754 struct list_head *head = &info->space_info;
Josef Bacik0f9dd462008-09-23 13:14:11 -0400755 struct btrfs_space_info *found;
Chris Mason4184ea72009-03-10 12:39:20 -0400756
Ilya Dryomov52ba6922012-01-16 22:04:47 +0200757 flags &= BTRFS_BLOCK_GROUP_TYPE_MASK;
Yan, Zhengb742bb82010-05-16 10:46:24 -0400758
Chris Mason4184ea72009-03-10 12:39:20 -0400759 rcu_read_lock();
760 list_for_each_entry_rcu(found, head, list) {
Josef Bacik67377732010-09-16 16:19:09 -0400761 if (found->flags & flags) {
Chris Mason4184ea72009-03-10 12:39:20 -0400762 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400763 return found;
Chris Mason4184ea72009-03-10 12:39:20 -0400764 }
Josef Bacik0f9dd462008-09-23 13:14:11 -0400765 }
Chris Mason4184ea72009-03-10 12:39:20 -0400766 rcu_read_unlock();
Josef Bacik0f9dd462008-09-23 13:14:11 -0400767 return NULL;
Chris Mason6324fbf2008-03-24 15:01:59 -0400768}
769
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700770static void add_pinned_bytes(struct btrfs_fs_info *fs_info, s64 num_bytes,
771 u64 owner, u64 root_objectid)
772{
773 struct btrfs_space_info *space_info;
774 u64 flags;
775
776 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
777 if (root_objectid == BTRFS_CHUNK_TREE_OBJECTID)
778 flags = BTRFS_BLOCK_GROUP_SYSTEM;
779 else
780 flags = BTRFS_BLOCK_GROUP_METADATA;
781 } else {
782 flags = BTRFS_BLOCK_GROUP_DATA;
783 }
784
785 space_info = __find_space_info(fs_info, flags);
Omar Sandoval55e81962017-06-06 16:45:27 -0700786 ASSERT(space_info);
Omar Sandoval0d9f8242017-06-06 16:45:26 -0700787 percpu_counter_add(&space_info->total_bytes_pinned, num_bytes);
788}
789
Chris Mason4184ea72009-03-10 12:39:20 -0400790/*
791 * after adding space to the filesystem, we need to clear the full flags
792 * on all the space infos.
793 */
794void btrfs_clear_space_info_full(struct btrfs_fs_info *info)
795{
796 struct list_head *head = &info->space_info;
797 struct btrfs_space_info *found;
798
799 rcu_read_lock();
800 list_for_each_entry_rcu(found, head, list)
801 found->full = 0;
802 rcu_read_unlock();
803}
804
Filipe Manana1a4ed8f2014-10-27 10:44:24 +0000805/* simple helper to search for an existing data extent at a given offset */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400806int btrfs_lookup_data_extent(struct btrfs_fs_info *fs_info, u64 start, u64 len)
Chris Masone02119d2008-09-05 16:13:11 -0400807{
808 int ret;
809 struct btrfs_key key;
Zheng Yan31840ae2008-09-23 13:14:14 -0400810 struct btrfs_path *path;
Chris Masone02119d2008-09-05 16:13:11 -0400811
Zheng Yan31840ae2008-09-23 13:14:14 -0400812 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -0700813 if (!path)
814 return -ENOMEM;
815
Chris Masone02119d2008-09-05 16:13:11 -0400816 key.objectid = start;
817 key.offset = len;
Josef Bacik3173a182013-03-07 14:22:04 -0500818 key.type = BTRFS_EXTENT_ITEM_KEY;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400819 ret = btrfs_search_slot(NULL, fs_info->extent_root, &key, path, 0, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -0400820 btrfs_free_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -0500821 return ret;
822}
823
Chris Masond8d5f3e2007-12-11 12:42:00 -0500824/*
Josef Bacik3173a182013-03-07 14:22:04 -0500825 * helper function to lookup reference count and flags of a tree block.
Yan, Zhenga22285a2010-05-16 10:48:46 -0400826 *
827 * the head node for delayed ref is used to store the sum of all the
828 * reference count modifications queued up in the rbtree. the head
829 * node may also store the extent flags to set. This way you can check
830 * to see what the reference count and extent flags would be if all of
831 * the delayed refs are not processed.
832 */
833int btrfs_lookup_extent_info(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400834 struct btrfs_fs_info *fs_info, u64 bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -0500835 u64 offset, int metadata, u64 *refs, u64 *flags)
Yan, Zhenga22285a2010-05-16 10:48:46 -0400836{
837 struct btrfs_delayed_ref_head *head;
838 struct btrfs_delayed_ref_root *delayed_refs;
839 struct btrfs_path *path;
840 struct btrfs_extent_item *ei;
841 struct extent_buffer *leaf;
842 struct btrfs_key key;
843 u32 item_size;
844 u64 num_refs;
845 u64 extent_flags;
846 int ret;
847
Josef Bacik3173a182013-03-07 14:22:04 -0500848 /*
849 * If we don't have skinny metadata, don't bother doing anything
850 * different
851 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400852 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA)) {
853 offset = fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -0500854 metadata = 0;
855 }
856
Yan, Zhenga22285a2010-05-16 10:48:46 -0400857 path = btrfs_alloc_path();
858 if (!path)
859 return -ENOMEM;
860
Yan, Zhenga22285a2010-05-16 10:48:46 -0400861 if (!trans) {
862 path->skip_locking = 1;
863 path->search_commit_root = 1;
864 }
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000865
866search_again:
867 key.objectid = bytenr;
868 key.offset = offset;
869 if (metadata)
870 key.type = BTRFS_METADATA_ITEM_KEY;
871 else
872 key.type = BTRFS_EXTENT_ITEM_KEY;
873
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400874 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 0);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400875 if (ret < 0)
876 goto out_free;
877
Josef Bacik3173a182013-03-07 14:22:04 -0500878 if (ret > 0 && metadata && key.type == BTRFS_METADATA_ITEM_KEY) {
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100879 if (path->slots[0]) {
880 path->slots[0]--;
881 btrfs_item_key_to_cpu(path->nodes[0], &key,
882 path->slots[0]);
883 if (key.objectid == bytenr &&
884 key.type == BTRFS_EXTENT_ITEM_KEY &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400885 key.offset == fs_info->nodesize)
Filipe David Borba Manana74be9512013-07-05 23:12:06 +0100886 ret = 0;
887 }
Josef Bacik3173a182013-03-07 14:22:04 -0500888 }
889
Yan, Zhenga22285a2010-05-16 10:48:46 -0400890 if (ret == 0) {
891 leaf = path->nodes[0];
892 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
893 if (item_size >= sizeof(*ei)) {
894 ei = btrfs_item_ptr(leaf, path->slots[0],
895 struct btrfs_extent_item);
896 num_refs = btrfs_extent_refs(leaf, ei);
897 extent_flags = btrfs_extent_flags(leaf, ei);
898 } else {
899#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
900 struct btrfs_extent_item_v0 *ei0;
901 BUG_ON(item_size != sizeof(*ei0));
902 ei0 = btrfs_item_ptr(leaf, path->slots[0],
903 struct btrfs_extent_item_v0);
904 num_refs = btrfs_extent_refs_v0(leaf, ei0);
905 /* FIXME: this isn't correct for data */
906 extent_flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
907#else
908 BUG();
909#endif
910 }
911 BUG_ON(num_refs == 0);
912 } else {
913 num_refs = 0;
914 extent_flags = 0;
915 ret = 0;
916 }
917
918 if (!trans)
919 goto out;
920
921 delayed_refs = &trans->transaction->delayed_refs;
922 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -0800923 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400924 if (head) {
925 if (!mutex_trylock(&head->mutex)) {
Elena Reshetova6df8cdf2017-03-03 10:55:15 +0200926 refcount_inc(&head->node.refs);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400927 spin_unlock(&delayed_refs->lock);
928
David Sterbab3b4aa72011-04-21 01:20:15 +0200929 btrfs_release_path(path);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400930
David Sterba8cc33e52011-05-02 15:29:25 +0200931 /*
932 * Mutex was contended, block until it's released and try
933 * again
934 */
Yan, Zhenga22285a2010-05-16 10:48:46 -0400935 mutex_lock(&head->mutex);
936 mutex_unlock(&head->mutex);
937 btrfs_put_delayed_ref(&head->node);
Filipe David Borba Manana639eefc2013-12-08 00:26:29 +0000938 goto search_again;
Yan, Zhenga22285a2010-05-16 10:48:46 -0400939 }
Josef Bacikd7df2c72014-01-23 09:21:38 -0500940 spin_lock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400941 if (head->extent_op && head->extent_op->update_flags)
942 extent_flags |= head->extent_op->flags_to_set;
943 else
944 BUG_ON(num_refs == 0);
945
946 num_refs += head->node.ref_mod;
Josef Bacikd7df2c72014-01-23 09:21:38 -0500947 spin_unlock(&head->lock);
Yan, Zhenga22285a2010-05-16 10:48:46 -0400948 mutex_unlock(&head->mutex);
949 }
950 spin_unlock(&delayed_refs->lock);
951out:
952 WARN_ON(num_refs == 0);
953 if (refs)
954 *refs = num_refs;
955 if (flags)
956 *flags = extent_flags;
957out_free:
958 btrfs_free_path(path);
959 return ret;
960}
961
962/*
Chris Masond8d5f3e2007-12-11 12:42:00 -0500963 * Back reference rules. Back refs have three main goals:
964 *
965 * 1) differentiate between all holders of references to an extent so that
966 * when a reference is dropped we can make sure it was a valid reference
967 * before freeing the extent.
968 *
969 * 2) Provide enough information to quickly find the holders of an extent
970 * if we notice a given block is corrupted or bad.
971 *
972 * 3) Make it easy to migrate blocks for FS shrinking or storage pool
973 * maintenance. This is actually the same as #2, but with a slightly
974 * different use case.
975 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400976 * There are two kinds of back refs. The implicit back refs is optimized
977 * for pointers in non-shared tree blocks. For a given pointer in a block,
978 * back refs of this kind provide information about the block's owner tree
979 * and the pointer's key. These information allow us to find the block by
980 * b-tree searching. The full back refs is for pointers in tree blocks not
981 * referenced by their owner trees. The location of tree block is recorded
982 * in the back refs. Actually the full back refs is generic, and can be
983 * used in all cases the implicit back refs is used. The major shortcoming
984 * of the full back refs is its overhead. Every time a tree block gets
985 * COWed, we have to update back refs entry for all pointers in it.
986 *
987 * For a newly allocated tree block, we use implicit back refs for
988 * pointers in it. This means most tree related operations only involve
989 * implicit back refs. For a tree block created in old transaction, the
990 * only way to drop a reference to it is COW it. So we can detect the
991 * event that tree block loses its owner tree's reference and do the
992 * back refs conversion.
993 *
Nicholas D Steeves01327612016-05-19 21:18:45 -0400994 * When a tree block is COWed through a tree, there are four cases:
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400995 *
996 * The reference count of the block is one and the tree is the block's
997 * owner tree. Nothing to do in this case.
998 *
999 * The reference count of the block is one and the tree is not the
1000 * block's owner tree. In this case, full back refs is used for pointers
1001 * in the block. Remove these full back refs, add implicit back refs for
1002 * every pointers in the new block.
1003 *
1004 * The reference count of the block is greater than one and the tree is
1005 * the block's owner tree. In this case, implicit back refs is used for
1006 * pointers in the block. Add full back refs for every pointers in the
1007 * block, increase lower level extents' reference counts. The original
1008 * implicit back refs are entailed to the new block.
1009 *
1010 * The reference count of the block is greater than one and the tree is
1011 * not the block's owner tree. Add implicit back refs for every pointer in
1012 * the new block, increase lower level extents' reference count.
1013 *
1014 * Back Reference Key composing:
1015 *
1016 * The key objectid corresponds to the first byte in the extent,
1017 * The key type is used to differentiate between types of back refs.
1018 * There are different meanings of the key offset for different types
1019 * of back refs.
1020 *
Chris Masond8d5f3e2007-12-11 12:42:00 -05001021 * File extents can be referenced by:
1022 *
1023 * - multiple snapshots, subvolumes, or different generations in one subvol
Zheng Yan31840ae2008-09-23 13:14:14 -04001024 * - different files inside a single subvolume
Chris Masond8d5f3e2007-12-11 12:42:00 -05001025 * - different offsets inside a file (bookend extents in file.c)
1026 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001027 * The extent ref structure for the implicit back refs has fields for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001028 *
1029 * - Objectid of the subvolume root
Chris Masond8d5f3e2007-12-11 12:42:00 -05001030 * - objectid of the file holding the reference
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001031 * - original offset in the file
1032 * - how many bookend extents
Zheng Yan31840ae2008-09-23 13:14:14 -04001033 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001034 * The key offset for the implicit back refs is hash of the first
1035 * three fields.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001036 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001037 * The extent ref structure for the full back refs has field for:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001038 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001039 * - number of pointers in the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001040 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001041 * The key offset for the implicit back refs is the first byte of
1042 * the tree leaf
Chris Masond8d5f3e2007-12-11 12:42:00 -05001043 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001044 * When a file extent is allocated, The implicit back refs is used.
1045 * the fields are filled in:
Chris Masond8d5f3e2007-12-11 12:42:00 -05001046 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001047 * (root_key.objectid, inode objectid, offset in file, 1)
1048 *
1049 * When a file extent is removed file truncation, we find the
1050 * corresponding implicit back refs and check the following fields:
1051 *
1052 * (btrfs_header_owner(leaf), inode objectid, offset in file)
Chris Masond8d5f3e2007-12-11 12:42:00 -05001053 *
1054 * Btree extents can be referenced by:
1055 *
1056 * - Different subvolumes
Chris Masond8d5f3e2007-12-11 12:42:00 -05001057 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001058 * Both the implicit back refs and the full back refs for tree blocks
1059 * only consist of key. The key offset for the implicit back refs is
1060 * objectid of block's owner tree. The key offset for the full back refs
1061 * is the first byte of parent block.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001062 *
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001063 * When implicit back refs is used, information about the lowest key and
1064 * level of the tree block are required. These information are stored in
1065 * tree block info structure.
Chris Masond8d5f3e2007-12-11 12:42:00 -05001066 */
Zheng Yan31840ae2008-09-23 13:14:14 -04001067
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001068#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1069static int convert_extent_item_v0(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001070 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001071 struct btrfs_path *path,
1072 u64 owner, u32 extra_size)
Chris Mason74493f72007-12-11 09:25:06 -05001073{
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001074 struct btrfs_root *root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001075 struct btrfs_extent_item *item;
1076 struct btrfs_extent_item_v0 *ei0;
1077 struct btrfs_extent_ref_v0 *ref0;
1078 struct btrfs_tree_block_info *bi;
Zheng Yan31840ae2008-09-23 13:14:14 -04001079 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001080 struct btrfs_key key;
1081 struct btrfs_key found_key;
1082 u32 new_size = sizeof(*item);
1083 u64 refs;
Chris Mason74493f72007-12-11 09:25:06 -05001084 int ret;
1085
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001086 leaf = path->nodes[0];
1087 BUG_ON(btrfs_item_size_nr(leaf, path->slots[0]) != sizeof(*ei0));
Chris Mason74493f72007-12-11 09:25:06 -05001088
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001089 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1090 ei0 = btrfs_item_ptr(leaf, path->slots[0],
1091 struct btrfs_extent_item_v0);
1092 refs = btrfs_extent_refs_v0(leaf, ei0);
1093
1094 if (owner == (u64)-1) {
1095 while (1) {
1096 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1097 ret = btrfs_next_leaf(root, path);
1098 if (ret < 0)
1099 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001100 BUG_ON(ret > 0); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001101 leaf = path->nodes[0];
1102 }
1103 btrfs_item_key_to_cpu(leaf, &found_key,
1104 path->slots[0]);
1105 BUG_ON(key.objectid != found_key.objectid);
1106 if (found_key.type != BTRFS_EXTENT_REF_V0_KEY) {
1107 path->slots[0]++;
1108 continue;
1109 }
1110 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1111 struct btrfs_extent_ref_v0);
1112 owner = btrfs_ref_objectid_v0(leaf, ref0);
1113 break;
1114 }
1115 }
David Sterbab3b4aa72011-04-21 01:20:15 +02001116 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001117
1118 if (owner < BTRFS_FIRST_FREE_OBJECTID)
1119 new_size += sizeof(*bi);
1120
1121 new_size -= sizeof(*ei0);
1122 ret = btrfs_search_slot(trans, root, &key, path,
1123 new_size + extra_size, 1);
Zheng Yan31840ae2008-09-23 13:14:14 -04001124 if (ret < 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001125 return ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001126 BUG_ON(ret); /* Corruption */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001127
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001128 btrfs_extend_item(fs_info, path, new_size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001129
1130 leaf = path->nodes[0];
1131 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1132 btrfs_set_extent_refs(leaf, item, refs);
1133 /* FIXME: get real generation */
1134 btrfs_set_extent_generation(leaf, item, 0);
1135 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1136 btrfs_set_extent_flags(leaf, item,
1137 BTRFS_EXTENT_FLAG_TREE_BLOCK |
1138 BTRFS_BLOCK_FLAG_FULL_BACKREF);
1139 bi = (struct btrfs_tree_block_info *)(item + 1);
1140 /* FIXME: get first key of the block */
David Sterbab159fa22016-11-08 18:09:03 +01001141 memzero_extent_buffer(leaf, (unsigned long)bi, sizeof(*bi));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001142 btrfs_set_tree_block_level(leaf, bi, (int)owner);
1143 } else {
1144 btrfs_set_extent_flags(leaf, item, BTRFS_EXTENT_FLAG_DATA);
1145 }
1146 btrfs_mark_buffer_dirty(leaf);
1147 return 0;
1148}
1149#endif
1150
Liu Bo167ce952017-08-18 15:15:18 -06001151/*
1152 * is_data == BTRFS_REF_TYPE_BLOCK, tree block type is required,
1153 * is_data == BTRFS_REF_TYPE_DATA, data type is requried,
1154 * is_data == BTRFS_REF_TYPE_ANY, either type is OK.
1155 */
1156int btrfs_get_extent_inline_ref_type(const struct extent_buffer *eb,
1157 struct btrfs_extent_inline_ref *iref,
1158 enum btrfs_inline_ref_type is_data)
1159{
1160 int type = btrfs_extent_inline_ref_type(eb, iref);
Liu Bo64ecdb62017-08-18 15:15:24 -06001161 u64 offset = btrfs_extent_inline_ref_offset(eb, iref);
Liu Bo167ce952017-08-18 15:15:18 -06001162
1163 if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1164 type == BTRFS_SHARED_BLOCK_REF_KEY ||
1165 type == BTRFS_SHARED_DATA_REF_KEY ||
1166 type == BTRFS_EXTENT_DATA_REF_KEY) {
1167 if (is_data == BTRFS_REF_TYPE_BLOCK) {
Liu Bo64ecdb62017-08-18 15:15:24 -06001168 if (type == BTRFS_TREE_BLOCK_REF_KEY)
Liu Bo167ce952017-08-18 15:15:18 -06001169 return type;
Liu Bo64ecdb62017-08-18 15:15:24 -06001170 if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1171 ASSERT(eb->fs_info);
1172 /*
1173 * Every shared one has parent tree
1174 * block, which must be aligned to
1175 * nodesize.
1176 */
1177 if (offset &&
1178 IS_ALIGNED(offset, eb->fs_info->nodesize))
1179 return type;
1180 }
Liu Bo167ce952017-08-18 15:15:18 -06001181 } else if (is_data == BTRFS_REF_TYPE_DATA) {
Liu Bo64ecdb62017-08-18 15:15:24 -06001182 if (type == BTRFS_EXTENT_DATA_REF_KEY)
Liu Bo167ce952017-08-18 15:15:18 -06001183 return type;
Liu Bo64ecdb62017-08-18 15:15:24 -06001184 if (type == BTRFS_SHARED_DATA_REF_KEY) {
1185 ASSERT(eb->fs_info);
1186 /*
1187 * Every shared one has parent tree
1188 * block, which must be aligned to
1189 * nodesize.
1190 */
1191 if (offset &&
1192 IS_ALIGNED(offset, eb->fs_info->nodesize))
1193 return type;
1194 }
Liu Bo167ce952017-08-18 15:15:18 -06001195 } else {
1196 ASSERT(is_data == BTRFS_REF_TYPE_ANY);
1197 return type;
1198 }
1199 }
1200
1201 btrfs_print_leaf((struct extent_buffer *)eb);
1202 btrfs_err(eb->fs_info, "eb %llu invalid extent inline ref type %d",
1203 eb->start, type);
1204 WARN_ON(1);
1205
1206 return BTRFS_REF_TYPE_INVALID;
1207}
1208
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001209static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1210{
1211 u32 high_crc = ~(u32)0;
1212 u32 low_crc = ~(u32)0;
1213 __le64 lenum;
1214
1215 lenum = cpu_to_le64(root_objectid);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001216 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001217 lenum = cpu_to_le64(owner);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001218 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001219 lenum = cpu_to_le64(offset);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001220 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001221
1222 return ((u64)high_crc << 31) ^ (u64)low_crc;
1223}
1224
1225static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1226 struct btrfs_extent_data_ref *ref)
1227{
1228 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1229 btrfs_extent_data_ref_objectid(leaf, ref),
1230 btrfs_extent_data_ref_offset(leaf, ref));
1231}
1232
1233static int match_extent_data_ref(struct extent_buffer *leaf,
1234 struct btrfs_extent_data_ref *ref,
1235 u64 root_objectid, u64 owner, u64 offset)
1236{
1237 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1238 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1239 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1240 return 0;
1241 return 1;
1242}
1243
1244static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001245 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001246 struct btrfs_path *path,
1247 u64 bytenr, u64 parent,
1248 u64 root_objectid,
1249 u64 owner, u64 offset)
1250{
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001251 struct btrfs_root *root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001252 struct btrfs_key key;
1253 struct btrfs_extent_data_ref *ref;
1254 struct extent_buffer *leaf;
1255 u32 nritems;
1256 int ret;
1257 int recow;
1258 int err = -ENOENT;
1259
1260 key.objectid = bytenr;
1261 if (parent) {
1262 key.type = BTRFS_SHARED_DATA_REF_KEY;
1263 key.offset = parent;
1264 } else {
1265 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1266 key.offset = hash_extent_data_ref(root_objectid,
1267 owner, offset);
1268 }
1269again:
1270 recow = 0;
1271 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1272 if (ret < 0) {
1273 err = ret;
1274 goto fail;
1275 }
1276
1277 if (parent) {
1278 if (!ret)
1279 return 0;
1280#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1281 key.type = BTRFS_EXTENT_REF_V0_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001282 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001283 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1284 if (ret < 0) {
1285 err = ret;
1286 goto fail;
1287 }
1288 if (!ret)
1289 return 0;
1290#endif
1291 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001292 }
1293
1294 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001295 nritems = btrfs_header_nritems(leaf);
1296 while (1) {
1297 if (path->slots[0] >= nritems) {
1298 ret = btrfs_next_leaf(root, path);
1299 if (ret < 0)
1300 err = ret;
1301 if (ret)
1302 goto fail;
1303
1304 leaf = path->nodes[0];
1305 nritems = btrfs_header_nritems(leaf);
1306 recow = 1;
1307 }
1308
1309 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1310 if (key.objectid != bytenr ||
1311 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1312 goto fail;
1313
1314 ref = btrfs_item_ptr(leaf, path->slots[0],
1315 struct btrfs_extent_data_ref);
1316
1317 if (match_extent_data_ref(leaf, ref, root_objectid,
1318 owner, offset)) {
1319 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001320 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001321 goto again;
1322 }
1323 err = 0;
1324 break;
1325 }
1326 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001327 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001328fail:
1329 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001330}
1331
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001332static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001333 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001334 struct btrfs_path *path,
1335 u64 bytenr, u64 parent,
1336 u64 root_objectid, u64 owner,
1337 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001338{
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001339 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04001340 struct btrfs_key key;
1341 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001342 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001343 u32 num_refs;
1344 int ret;
1345
1346 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001347 if (parent) {
1348 key.type = BTRFS_SHARED_DATA_REF_KEY;
1349 key.offset = parent;
1350 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001351 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001352 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1353 key.offset = hash_extent_data_ref(root_objectid,
1354 owner, offset);
1355 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001356 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001357
1358 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1359 if (ret && ret != -EEXIST)
1360 goto fail;
1361
1362 leaf = path->nodes[0];
1363 if (parent) {
1364 struct btrfs_shared_data_ref *ref;
1365 ref = btrfs_item_ptr(leaf, path->slots[0],
1366 struct btrfs_shared_data_ref);
1367 if (ret == 0) {
1368 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1369 } else {
1370 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1371 num_refs += refs_to_add;
1372 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1373 }
1374 } else {
1375 struct btrfs_extent_data_ref *ref;
1376 while (ret == -EEXIST) {
1377 ref = btrfs_item_ptr(leaf, path->slots[0],
1378 struct btrfs_extent_data_ref);
1379 if (match_extent_data_ref(leaf, ref, root_objectid,
1380 owner, offset))
1381 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001382 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001383 key.offset++;
1384 ret = btrfs_insert_empty_item(trans, root, path, &key,
1385 size);
1386 if (ret && ret != -EEXIST)
1387 goto fail;
1388
1389 leaf = path->nodes[0];
1390 }
1391 ref = btrfs_item_ptr(leaf, path->slots[0],
1392 struct btrfs_extent_data_ref);
1393 if (ret == 0) {
1394 btrfs_set_extent_data_ref_root(leaf, ref,
1395 root_objectid);
1396 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1397 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1398 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1399 } else {
1400 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1401 num_refs += refs_to_add;
1402 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1403 }
1404 }
1405 btrfs_mark_buffer_dirty(leaf);
1406 ret = 0;
1407fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001408 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001409 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001410}
1411
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001412static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001413 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001414 struct btrfs_path *path,
Josef Bacikfcebe452014-05-13 17:30:47 -07001415 int refs_to_drop, int *last_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04001416{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001417 struct btrfs_key key;
1418 struct btrfs_extent_data_ref *ref1 = NULL;
1419 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001420 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001421 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001422 int ret = 0;
1423
1424 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001425 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1426
1427 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1428 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1429 struct btrfs_extent_data_ref);
1430 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1431 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1432 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1433 struct btrfs_shared_data_ref);
1434 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1435#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1436 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1437 struct btrfs_extent_ref_v0 *ref0;
1438 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1439 struct btrfs_extent_ref_v0);
1440 num_refs = btrfs_ref_count_v0(leaf, ref0);
1441#endif
1442 } else {
1443 BUG();
1444 }
1445
Chris Mason56bec292009-03-13 10:10:06 -04001446 BUG_ON(num_refs < refs_to_drop);
1447 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001448
Zheng Yan31840ae2008-09-23 13:14:14 -04001449 if (num_refs == 0) {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001450 ret = btrfs_del_item(trans, fs_info->extent_root, path);
Josef Bacikfcebe452014-05-13 17:30:47 -07001451 *last_ref = 1;
Zheng Yan31840ae2008-09-23 13:14:14 -04001452 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001453 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1454 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1455 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1456 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1457#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1458 else {
1459 struct btrfs_extent_ref_v0 *ref0;
1460 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1461 struct btrfs_extent_ref_v0);
1462 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1463 }
1464#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001465 btrfs_mark_buffer_dirty(leaf);
1466 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001467 return ret;
1468}
1469
Zhaolei9ed0dea2015-08-06 22:16:24 +08001470static noinline u32 extent_data_ref_count(struct btrfs_path *path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001471 struct btrfs_extent_inline_ref *iref)
1472{
1473 struct btrfs_key key;
1474 struct extent_buffer *leaf;
1475 struct btrfs_extent_data_ref *ref1;
1476 struct btrfs_shared_data_ref *ref2;
1477 u32 num_refs = 0;
Liu Bo3de28d52017-08-18 15:15:19 -06001478 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001479
1480 leaf = path->nodes[0];
1481 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1482 if (iref) {
Liu Bo3de28d52017-08-18 15:15:19 -06001483 /*
1484 * If type is invalid, we should have bailed out earlier than
1485 * this call.
1486 */
1487 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
1488 ASSERT(type != BTRFS_REF_TYPE_INVALID);
1489 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001490 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1491 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1492 } else {
1493 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1494 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1495 }
1496 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1497 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1498 struct btrfs_extent_data_ref);
1499 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1500 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1501 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1502 struct btrfs_shared_data_ref);
1503 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1504#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1505 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1506 struct btrfs_extent_ref_v0 *ref0;
1507 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1508 struct btrfs_extent_ref_v0);
1509 num_refs = btrfs_ref_count_v0(leaf, ref0);
1510#endif
1511 } else {
1512 WARN_ON(1);
1513 }
1514 return num_refs;
1515}
1516
1517static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001518 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001519 struct btrfs_path *path,
1520 u64 bytenr, u64 parent,
1521 u64 root_objectid)
1522{
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001523 struct btrfs_root *root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001524 struct btrfs_key key;
1525 int ret;
1526
1527 key.objectid = bytenr;
1528 if (parent) {
1529 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1530 key.offset = parent;
1531 } else {
1532 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1533 key.offset = root_objectid;
1534 }
1535
1536 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1537 if (ret > 0)
1538 ret = -ENOENT;
1539#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1540 if (ret == -ENOENT && parent) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001541 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001542 key.type = BTRFS_EXTENT_REF_V0_KEY;
1543 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1544 if (ret > 0)
1545 ret = -ENOENT;
1546 }
1547#endif
1548 return ret;
1549}
1550
1551static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001552 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001553 struct btrfs_path *path,
1554 u64 bytenr, u64 parent,
1555 u64 root_objectid)
1556{
1557 struct btrfs_key key;
1558 int ret;
1559
1560 key.objectid = bytenr;
1561 if (parent) {
1562 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1563 key.offset = parent;
1564 } else {
1565 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1566 key.offset = root_objectid;
1567 }
1568
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001569 ret = btrfs_insert_empty_item(trans, fs_info->extent_root,
1570 path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001571 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001572 return ret;
1573}
1574
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001575static inline int extent_ref_type(u64 parent, u64 owner)
1576{
1577 int type;
1578 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1579 if (parent > 0)
1580 type = BTRFS_SHARED_BLOCK_REF_KEY;
1581 else
1582 type = BTRFS_TREE_BLOCK_REF_KEY;
1583 } else {
1584 if (parent > 0)
1585 type = BTRFS_SHARED_DATA_REF_KEY;
1586 else
1587 type = BTRFS_EXTENT_DATA_REF_KEY;
1588 }
1589 return type;
1590}
1591
Yan Zheng2c47e6052009-06-27 21:07:35 -04001592static int find_next_key(struct btrfs_path *path, int level,
1593 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001594
1595{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001596 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001597 if (!path->nodes[level])
1598 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001599 if (path->slots[level] + 1 >=
1600 btrfs_header_nritems(path->nodes[level]))
1601 continue;
1602 if (level == 0)
1603 btrfs_item_key_to_cpu(path->nodes[level], key,
1604 path->slots[level] + 1);
1605 else
1606 btrfs_node_key_to_cpu(path->nodes[level], key,
1607 path->slots[level] + 1);
1608 return 0;
1609 }
1610 return 1;
1611}
1612
1613/*
1614 * look for inline back ref. if back ref is found, *ref_ret is set
1615 * to the address of inline back ref, and 0 is returned.
1616 *
1617 * if back ref isn't found, *ref_ret is set to the address where it
1618 * should be inserted, and -ENOENT is returned.
1619 *
1620 * if insert is true and there are too many inline back refs, the path
1621 * points to the extent item, and -EAGAIN is returned.
1622 *
1623 * NOTE: inline back refs are ordered in the same way that back ref
1624 * items in the tree are ordered.
1625 */
1626static noinline_for_stack
1627int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001628 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001629 struct btrfs_path *path,
1630 struct btrfs_extent_inline_ref **ref_ret,
1631 u64 bytenr, u64 num_bytes,
1632 u64 parent, u64 root_objectid,
1633 u64 owner, u64 offset, int insert)
1634{
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001635 struct btrfs_root *root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001636 struct btrfs_key key;
1637 struct extent_buffer *leaf;
1638 struct btrfs_extent_item *ei;
1639 struct btrfs_extent_inline_ref *iref;
1640 u64 flags;
1641 u64 item_size;
1642 unsigned long ptr;
1643 unsigned long end;
1644 int extra_size;
1645 int type;
1646 int want;
1647 int ret;
1648 int err = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001649 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Liu Bo3de28d52017-08-18 15:15:19 -06001650 int needed;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001651
1652 key.objectid = bytenr;
1653 key.type = BTRFS_EXTENT_ITEM_KEY;
1654 key.offset = num_bytes;
1655
1656 want = extent_ref_type(parent, owner);
1657 if (insert) {
1658 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001659 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001660 } else
1661 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001662
1663 /*
1664 * Owner is our parent level, so we can just add one to get the level
1665 * for the block we are interested in.
1666 */
1667 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1668 key.type = BTRFS_METADATA_ITEM_KEY;
1669 key.offset = owner;
1670 }
1671
1672again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001673 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1674 if (ret < 0) {
1675 err = ret;
1676 goto out;
1677 }
Josef Bacik3173a182013-03-07 14:22:04 -05001678
1679 /*
1680 * We may be a newly converted file system which still has the old fat
1681 * extent entries for metadata, so try and see if we have one of those.
1682 */
1683 if (ret > 0 && skinny_metadata) {
1684 skinny_metadata = false;
1685 if (path->slots[0]) {
1686 path->slots[0]--;
1687 btrfs_item_key_to_cpu(path->nodes[0], &key,
1688 path->slots[0]);
1689 if (key.objectid == bytenr &&
1690 key.type == BTRFS_EXTENT_ITEM_KEY &&
1691 key.offset == num_bytes)
1692 ret = 0;
1693 }
1694 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001695 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001696 key.type = BTRFS_EXTENT_ITEM_KEY;
1697 key.offset = num_bytes;
1698 btrfs_release_path(path);
1699 goto again;
1700 }
1701 }
1702
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001703 if (ret && !insert) {
1704 err = -ENOENT;
1705 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301706 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001707 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001708 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001709 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001710
1711 leaf = path->nodes[0];
1712 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1713#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1714 if (item_size < sizeof(*ei)) {
1715 if (!insert) {
1716 err = -ENOENT;
1717 goto out;
1718 }
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001719 ret = convert_extent_item_v0(trans, fs_info, path, owner,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001720 extra_size);
1721 if (ret < 0) {
1722 err = ret;
1723 goto out;
1724 }
1725 leaf = path->nodes[0];
1726 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1727 }
1728#endif
1729 BUG_ON(item_size < sizeof(*ei));
1730
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001731 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1732 flags = btrfs_extent_flags(leaf, ei);
1733
1734 ptr = (unsigned long)(ei + 1);
1735 end = (unsigned long)ei + item_size;
1736
Josef Bacik3173a182013-03-07 14:22:04 -05001737 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001738 ptr += sizeof(struct btrfs_tree_block_info);
1739 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001740 }
1741
Liu Bo3de28d52017-08-18 15:15:19 -06001742 if (owner >= BTRFS_FIRST_FREE_OBJECTID)
1743 needed = BTRFS_REF_TYPE_DATA;
1744 else
1745 needed = BTRFS_REF_TYPE_BLOCK;
1746
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001747 err = -ENOENT;
1748 while (1) {
1749 if (ptr >= end) {
1750 WARN_ON(ptr > end);
1751 break;
1752 }
1753 iref = (struct btrfs_extent_inline_ref *)ptr;
Liu Bo3de28d52017-08-18 15:15:19 -06001754 type = btrfs_get_extent_inline_ref_type(leaf, iref, needed);
1755 if (type == BTRFS_REF_TYPE_INVALID) {
1756 err = -EINVAL;
1757 goto out;
1758 }
1759
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001760 if (want < type)
1761 break;
1762 if (want > type) {
1763 ptr += btrfs_extent_inline_ref_size(type);
1764 continue;
1765 }
1766
1767 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1768 struct btrfs_extent_data_ref *dref;
1769 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1770 if (match_extent_data_ref(leaf, dref, root_objectid,
1771 owner, offset)) {
1772 err = 0;
1773 break;
1774 }
1775 if (hash_extent_data_ref_item(leaf, dref) <
1776 hash_extent_data_ref(root_objectid, owner, offset))
1777 break;
1778 } else {
1779 u64 ref_offset;
1780 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1781 if (parent > 0) {
1782 if (parent == ref_offset) {
1783 err = 0;
1784 break;
1785 }
1786 if (ref_offset < parent)
1787 break;
1788 } else {
1789 if (root_objectid == ref_offset) {
1790 err = 0;
1791 break;
1792 }
1793 if (ref_offset < root_objectid)
1794 break;
1795 }
1796 }
1797 ptr += btrfs_extent_inline_ref_size(type);
1798 }
1799 if (err == -ENOENT && insert) {
1800 if (item_size + extra_size >=
1801 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1802 err = -EAGAIN;
1803 goto out;
1804 }
1805 /*
1806 * To add new inline back ref, we have to make sure
1807 * there is no corresponding back ref item.
1808 * For simplicity, we just do not add new inline back
1809 * ref if there is any kind of item for this block
1810 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001811 if (find_next_key(path, 0, &key) == 0 &&
1812 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001813 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001814 err = -EAGAIN;
1815 goto out;
1816 }
1817 }
1818 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1819out:
Yan Zheng85d41982009-06-11 08:51:10 -04001820 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001821 path->keep_locks = 0;
1822 btrfs_unlock_up_safe(path, 1);
1823 }
1824 return err;
1825}
1826
1827/*
1828 * helper to add new inline back ref
1829 */
1830static noinline_for_stack
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001831void setup_inline_extent_backref(struct btrfs_fs_info *fs_info,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001832 struct btrfs_path *path,
1833 struct btrfs_extent_inline_ref *iref,
1834 u64 parent, u64 root_objectid,
1835 u64 owner, u64 offset, int refs_to_add,
1836 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001837{
1838 struct extent_buffer *leaf;
1839 struct btrfs_extent_item *ei;
1840 unsigned long ptr;
1841 unsigned long end;
1842 unsigned long item_offset;
1843 u64 refs;
1844 int size;
1845 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001846
1847 leaf = path->nodes[0];
1848 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1849 item_offset = (unsigned long)iref - (unsigned long)ei;
1850
1851 type = extent_ref_type(parent, owner);
1852 size = btrfs_extent_inline_ref_size(type);
1853
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001854 btrfs_extend_item(fs_info, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001855
1856 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1857 refs = btrfs_extent_refs(leaf, ei);
1858 refs += refs_to_add;
1859 btrfs_set_extent_refs(leaf, ei, refs);
1860 if (extent_op)
1861 __run_delayed_extent_op(extent_op, leaf, ei);
1862
1863 ptr = (unsigned long)ei + item_offset;
1864 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1865 if (ptr < end - size)
1866 memmove_extent_buffer(leaf, ptr + size, ptr,
1867 end - size - ptr);
1868
1869 iref = (struct btrfs_extent_inline_ref *)ptr;
1870 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1871 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1872 struct btrfs_extent_data_ref *dref;
1873 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1874 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1875 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1876 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1877 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1878 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1879 struct btrfs_shared_data_ref *sref;
1880 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1881 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1882 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1883 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1884 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1885 } else {
1886 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1887 }
1888 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001889}
1890
1891static int lookup_extent_backref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001892 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001893 struct btrfs_path *path,
1894 struct btrfs_extent_inline_ref **ref_ret,
1895 u64 bytenr, u64 num_bytes, u64 parent,
1896 u64 root_objectid, u64 owner, u64 offset)
1897{
1898 int ret;
1899
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001900 ret = lookup_inline_extent_backref(trans, fs_info, path, ref_ret,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001901 bytenr, num_bytes, parent,
1902 root_objectid, owner, offset, 0);
1903 if (ret != -ENOENT)
1904 return ret;
1905
David Sterbab3b4aa72011-04-21 01:20:15 +02001906 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001907 *ref_ret = NULL;
1908
1909 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001910 ret = lookup_tree_block_ref(trans, fs_info, path, bytenr,
1911 parent, root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001912 } else {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001913 ret = lookup_extent_data_ref(trans, fs_info, path, bytenr,
1914 parent, root_objectid, owner,
1915 offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001916 }
1917 return ret;
1918}
1919
1920/*
1921 * helper to update/remove inline back ref
1922 */
1923static noinline_for_stack
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001924void update_inline_extent_backref(struct btrfs_fs_info *fs_info,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001925 struct btrfs_path *path,
1926 struct btrfs_extent_inline_ref *iref,
1927 int refs_to_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07001928 struct btrfs_delayed_extent_op *extent_op,
1929 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001930{
1931 struct extent_buffer *leaf;
1932 struct btrfs_extent_item *ei;
1933 struct btrfs_extent_data_ref *dref = NULL;
1934 struct btrfs_shared_data_ref *sref = NULL;
1935 unsigned long ptr;
1936 unsigned long end;
1937 u32 item_size;
1938 int size;
1939 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001940 u64 refs;
1941
1942 leaf = path->nodes[0];
1943 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1944 refs = btrfs_extent_refs(leaf, ei);
1945 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1946 refs += refs_to_mod;
1947 btrfs_set_extent_refs(leaf, ei, refs);
1948 if (extent_op)
1949 __run_delayed_extent_op(extent_op, leaf, ei);
1950
Liu Bo3de28d52017-08-18 15:15:19 -06001951 /*
1952 * If type is invalid, we should have bailed out after
1953 * lookup_inline_extent_backref().
1954 */
1955 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_ANY);
1956 ASSERT(type != BTRFS_REF_TYPE_INVALID);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001957
1958 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1959 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1960 refs = btrfs_extent_data_ref_count(leaf, dref);
1961 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1962 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1963 refs = btrfs_shared_data_ref_count(leaf, sref);
1964 } else {
1965 refs = 1;
1966 BUG_ON(refs_to_mod != -1);
1967 }
1968
1969 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1970 refs += refs_to_mod;
1971
1972 if (refs > 0) {
1973 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1974 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1975 else
1976 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1977 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001978 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001979 size = btrfs_extent_inline_ref_size(type);
1980 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1981 ptr = (unsigned long)iref;
1982 end = (unsigned long)ei + item_size;
1983 if (ptr + size < end)
1984 memmove_extent_buffer(leaf, ptr, ptr + size,
1985 end - ptr - size);
1986 item_size -= size;
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001987 btrfs_truncate_item(fs_info, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001988 }
1989 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001990}
1991
1992static noinline_for_stack
1993int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05001994 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001995 struct btrfs_path *path,
1996 u64 bytenr, u64 num_bytes, u64 parent,
1997 u64 root_objectid, u64 owner,
1998 u64 offset, int refs_to_add,
1999 struct btrfs_delayed_extent_op *extent_op)
2000{
2001 struct btrfs_extent_inline_ref *iref;
2002 int ret;
2003
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002004 ret = lookup_inline_extent_backref(trans, fs_info, path, &iref,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002005 bytenr, num_bytes, parent,
2006 root_objectid, owner, offset, 1);
2007 if (ret == 0) {
2008 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002009 update_inline_extent_backref(fs_info, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07002010 refs_to_add, extent_op, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002011 } else if (ret == -ENOENT) {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002012 setup_inline_extent_backref(fs_info, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01002013 root_objectid, owner, offset,
2014 refs_to_add, extent_op);
2015 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002016 }
2017 return ret;
2018}
2019
2020static int insert_extent_backref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002021 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002022 struct btrfs_path *path,
2023 u64 bytenr, u64 parent, u64 root_objectid,
2024 u64 owner, u64 offset, int refs_to_add)
2025{
2026 int ret;
2027 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
2028 BUG_ON(refs_to_add != 1);
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002029 ret = insert_tree_block_ref(trans, fs_info, path, bytenr,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002030 parent, root_objectid);
2031 } else {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002032 ret = insert_extent_data_ref(trans, fs_info, path, bytenr,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002033 parent, root_objectid,
2034 owner, offset, refs_to_add);
2035 }
2036 return ret;
2037}
2038
2039static int remove_extent_backref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002040 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002041 struct btrfs_path *path,
2042 struct btrfs_extent_inline_ref *iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07002043 int refs_to_drop, int is_data, int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002044{
Jeff Mahoney143bede2012-03-01 14:56:26 +01002045 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002046
2047 BUG_ON(!is_data && refs_to_drop != 1);
2048 if (iref) {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002049 update_inline_extent_backref(fs_info, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07002050 -refs_to_drop, NULL, last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002051 } else if (is_data) {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002052 ret = remove_extent_data_ref(trans, fs_info, path, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07002053 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002054 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07002055 *last_ref = 1;
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002056 ret = btrfs_del_item(trans, fs_info->extent_root, path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002057 }
2058 return ret;
2059}
2060
Jeff Mahoney86557862015-06-15 09:41:16 -04002061#define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len))
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002062static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len,
2063 u64 *discarded_bytes)
Chris Mason15916de2008-11-19 21:17:22 -05002064{
Jeff Mahoney86557862015-06-15 09:41:16 -04002065 int j, ret = 0;
2066 u64 bytes_left, end;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002067 u64 aligned_start = ALIGN(start, 1 << 9);
2068
2069 if (WARN_ON(start != aligned_start)) {
2070 len -= aligned_start - start;
2071 len = round_down(len, 1 << 9);
2072 start = aligned_start;
2073 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002074
2075 *discarded_bytes = 0;
Jeff Mahoney86557862015-06-15 09:41:16 -04002076
2077 if (!len)
2078 return 0;
2079
2080 end = start + len;
2081 bytes_left = len;
2082
2083 /* Skip any superblocks on this device. */
2084 for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) {
2085 u64 sb_start = btrfs_sb_offset(j);
2086 u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE;
2087 u64 size = sb_start - start;
2088
2089 if (!in_range(sb_start, start, bytes_left) &&
2090 !in_range(sb_end, start, bytes_left) &&
2091 !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE))
2092 continue;
2093
2094 /*
2095 * Superblock spans beginning of range. Adjust start and
2096 * try again.
2097 */
2098 if (sb_start <= start) {
2099 start += sb_end - start;
2100 if (start > end) {
2101 bytes_left = 0;
2102 break;
2103 }
2104 bytes_left = end - start;
2105 continue;
2106 }
2107
2108 if (size) {
2109 ret = blkdev_issue_discard(bdev, start >> 9, size >> 9,
2110 GFP_NOFS, 0);
2111 if (!ret)
2112 *discarded_bytes += size;
2113 else if (ret != -EOPNOTSUPP)
2114 return ret;
2115 }
2116
2117 start = sb_end;
2118 if (start > end) {
2119 bytes_left = 0;
2120 break;
2121 }
2122 bytes_left = end - start;
2123 }
2124
2125 if (bytes_left) {
2126 ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9,
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002127 GFP_NOFS, 0);
2128 if (!ret)
Jeff Mahoney86557862015-06-15 09:41:16 -04002129 *discarded_bytes += bytes_left;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002130 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002131 return ret;
Chris Mason15916de2008-11-19 21:17:22 -05002132}
Chris Mason15916de2008-11-19 21:17:22 -05002133
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002134int btrfs_discard_extent(struct btrfs_fs_info *fs_info, u64 bytenr,
Filipe Manana1edb647b2014-12-08 14:01:12 +00002135 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05002136{
Liu Hui1f3c79a2009-01-05 15:57:51 -05002137 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00002138 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02002139 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002140
Christoph Hellwige244a0a2009-10-14 09:24:59 -04002141
Filipe Manana29992412016-05-27 17:42:05 +01002142 /*
2143 * Avoid races with device replace and make sure our bbio has devices
2144 * associated to its stripes that don't go away while we are discarding.
2145 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002146 btrfs_bio_counter_inc_blocked(fs_info);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002147 /* Tell the block device(s) that the sectors can be discarded */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002148 ret = btrfs_map_block(fs_info, BTRFS_MAP_DISCARD, bytenr, &num_bytes,
2149 &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002150 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05002151 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02002152 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002153 int i;
2154
Liu Hui1f3c79a2009-01-05 15:57:51 -05002155
Jan Schmidta1d3c472011-08-04 17:15:33 +02002156 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002157 u64 bytes;
Josef Bacikd5e20032011-08-04 14:52:27 +00002158 if (!stripe->dev->can_discard)
2159 continue;
2160
Li Dongyang5378e602011-03-24 10:24:27 +00002161 ret = btrfs_issue_discard(stripe->dev->bdev,
2162 stripe->physical,
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002163 stripe->length,
2164 &bytes);
Li Dongyang5378e602011-03-24 10:24:27 +00002165 if (!ret)
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002166 discarded_bytes += bytes;
Li Dongyang5378e602011-03-24 10:24:27 +00002167 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002168 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00002169
2170 /*
2171 * Just in case we get back EOPNOTSUPP for some reason,
2172 * just ignore the return value so we don't screw up
2173 * people calling discard_extent.
2174 */
2175 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002176 }
Zhao Lei6e9606d2015-01-20 15:11:34 +08002177 btrfs_put_bbio(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002178 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002179 btrfs_bio_counter_dec(fs_info);
Li Dongyang5378e602011-03-24 10:24:27 +00002180
2181 if (actual_bytes)
2182 *actual_bytes = discarded_bytes;
2183
Liu Hui1f3c79a2009-01-05 15:57:51 -05002184
David Woodhouse53b381b2013-01-29 18:40:14 -05002185 if (ret == -EOPNOTSUPP)
2186 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002187 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002188}
2189
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002190/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002191int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002192 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002193 u64 bytenr, u64 num_bytes, u64 parent,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002194 u64 root_objectid, u64 owner, u64 offset)
Zheng Yan31840ae2008-09-23 13:14:14 -04002195{
Omar Sandovald7eae342017-06-06 16:45:31 -07002196 int old_ref_mod, new_ref_mod;
Zheng Yan31840ae2008-09-23 13:14:14 -04002197 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002198
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002199 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
2200 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04002201
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002202 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002203 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07002204 num_bytes, parent,
2205 root_objectid, (int)owner,
2206 BTRFS_ADD_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07002207 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002208 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002209 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07002210 num_bytes, parent,
2211 root_objectid, owner, offset,
Omar Sandovald7eae342017-06-06 16:45:31 -07002212 0, BTRFS_ADD_DELAYED_REF,
2213 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002214 }
Omar Sandovald7eae342017-06-06 16:45:31 -07002215
2216 if (ret == 0 && old_ref_mod < 0 && new_ref_mod >= 0)
2217 add_pinned_bytes(fs_info, -num_bytes, owner, root_objectid);
2218
Zheng Yan31840ae2008-09-23 13:14:14 -04002219 return ret;
2220}
2221
Chris Mason925baed2008-06-25 16:01:30 -04002222static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002223 struct btrfs_fs_info *fs_info,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002224 struct btrfs_delayed_ref_node *node,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002225 u64 parent, u64 root_objectid,
2226 u64 owner, u64 offset, int refs_to_add,
2227 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04002228{
Chris Mason5caf2a02007-04-02 11:20:42 -04002229 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002230 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04002231 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07002232 struct btrfs_key key;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002233 u64 bytenr = node->bytenr;
2234 u64 num_bytes = node->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002235 u64 refs;
2236 int ret;
Chris Mason037e6392007-03-07 11:50:24 -05002237
Chris Mason5caf2a02007-04-02 11:20:42 -04002238 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002239 if (!path)
2240 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04002241
David Sterbae4058b52015-11-27 16:31:35 +01002242 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002243 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002244 /* this will setup the path even if it fails to insert the back ref */
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002245 ret = insert_inline_extent_backref(trans, fs_info, path, bytenr,
2246 num_bytes, parent, root_objectid,
2247 owner, offset,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002248 refs_to_add, extent_op);
Qu Wenruo0ed47922015-04-16 16:55:08 +08002249 if ((ret < 0 && ret != -EAGAIN) || !ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002250 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002251
2252 /*
2253 * Ok we had -EAGAIN which means we didn't have space to insert and
2254 * inline extent ref, so just update the reference count and add a
2255 * normal backref.
2256 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002257 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002258 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002259 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2260 refs = btrfs_extent_refs(leaf, item);
2261 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2262 if (extent_op)
2263 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002264
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002265 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002266 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002267
David Sterbae4058b52015-11-27 16:31:35 +01002268 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002269 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002270 /* now insert the actual backref */
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002271 ret = insert_extent_backref(trans, fs_info, path, bytenr, parent,
2272 root_objectid, owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002273 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04002274 btrfs_abort_transaction(trans, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002275out:
Chris Mason74493f72007-12-11 09:25:06 -05002276 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002277 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002278}
2279
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002280static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002281 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002282 struct btrfs_delayed_ref_node *node,
2283 struct btrfs_delayed_extent_op *extent_op,
2284 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002285{
Chris Mason56bec292009-03-13 10:10:06 -04002286 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002287 struct btrfs_delayed_data_ref *ref;
2288 struct btrfs_key ins;
2289 u64 parent = 0;
2290 u64 ref_root = 0;
2291 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002292
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002293 ins.objectid = node->bytenr;
2294 ins.offset = node->num_bytes;
2295 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002296
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002297 ref = btrfs_delayed_node_to_data_ref(node);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002298 trace_run_delayed_data_ref(fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002299
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002300 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2301 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002302 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002303
2304 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002305 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002306 flags |= extent_op->flags_to_set;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002307 ret = alloc_reserved_file_extent(trans, fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002308 parent, ref_root, flags,
2309 ref->objectid, ref->offset,
2310 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002311 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002312 ret = __btrfs_inc_extent_ref(trans, fs_info, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002313 ref_root, ref->objectid,
2314 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002315 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002316 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002317 ret = __btrfs_free_extent(trans, fs_info, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002318 ref_root, ref->objectid,
2319 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002320 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002321 } else {
2322 BUG();
2323 }
Chris Mason56bec292009-03-13 10:10:06 -04002324 return ret;
2325}
2326
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002327static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2328 struct extent_buffer *leaf,
2329 struct btrfs_extent_item *ei)
2330{
2331 u64 flags = btrfs_extent_flags(leaf, ei);
2332 if (extent_op->update_flags) {
2333 flags |= extent_op->flags_to_set;
2334 btrfs_set_extent_flags(leaf, ei, flags);
2335 }
2336
2337 if (extent_op->update_key) {
2338 struct btrfs_tree_block_info *bi;
2339 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2340 bi = (struct btrfs_tree_block_info *)(ei + 1);
2341 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2342 }
2343}
2344
2345static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002346 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002347 struct btrfs_delayed_ref_node *node,
2348 struct btrfs_delayed_extent_op *extent_op)
2349{
2350 struct btrfs_key key;
2351 struct btrfs_path *path;
2352 struct btrfs_extent_item *ei;
2353 struct extent_buffer *leaf;
2354 u32 item_size;
2355 int ret;
2356 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002357 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002358
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002359 if (trans->aborted)
2360 return 0;
2361
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002362 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik3173a182013-03-07 14:22:04 -05002363 metadata = 0;
2364
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002365 path = btrfs_alloc_path();
2366 if (!path)
2367 return -ENOMEM;
2368
2369 key.objectid = node->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002370
Josef Bacik3173a182013-03-07 14:22:04 -05002371 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002372 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002373 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002374 } else {
2375 key.type = BTRFS_EXTENT_ITEM_KEY;
2376 key.offset = node->num_bytes;
2377 }
2378
2379again:
David Sterbae4058b52015-11-27 16:31:35 +01002380 path->reada = READA_FORWARD;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002381 path->leave_spinning = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002382 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002383 if (ret < 0) {
2384 err = ret;
2385 goto out;
2386 }
2387 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002388 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002389 if (path->slots[0] > 0) {
2390 path->slots[0]--;
2391 btrfs_item_key_to_cpu(path->nodes[0], &key,
2392 path->slots[0]);
2393 if (key.objectid == node->bytenr &&
2394 key.type == BTRFS_EXTENT_ITEM_KEY &&
2395 key.offset == node->num_bytes)
2396 ret = 0;
2397 }
2398 if (ret > 0) {
2399 btrfs_release_path(path);
2400 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002401
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002402 key.objectid = node->bytenr;
2403 key.offset = node->num_bytes;
2404 key.type = BTRFS_EXTENT_ITEM_KEY;
2405 goto again;
2406 }
2407 } else {
2408 err = -EIO;
2409 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002410 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002411 }
2412
2413 leaf = path->nodes[0];
2414 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2415#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2416 if (item_size < sizeof(*ei)) {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05002417 ret = convert_extent_item_v0(trans, fs_info, path, (u64)-1, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002418 if (ret < 0) {
2419 err = ret;
2420 goto out;
2421 }
2422 leaf = path->nodes[0];
2423 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2424 }
2425#endif
2426 BUG_ON(item_size < sizeof(*ei));
2427 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2428 __run_delayed_extent_op(extent_op, leaf, ei);
2429
2430 btrfs_mark_buffer_dirty(leaf);
2431out:
2432 btrfs_free_path(path);
2433 return err;
2434}
2435
2436static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002437 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002438 struct btrfs_delayed_ref_node *node,
2439 struct btrfs_delayed_extent_op *extent_op,
2440 int insert_reserved)
2441{
2442 int ret = 0;
2443 struct btrfs_delayed_tree_ref *ref;
2444 struct btrfs_key ins;
2445 u64 parent = 0;
2446 u64 ref_root = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002447 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002448
2449 ref = btrfs_delayed_node_to_tree_ref(node);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002450 trace_run_delayed_tree_ref(fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002451
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002452 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2453 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002454 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002455
Josef Bacik3173a182013-03-07 14:22:04 -05002456 ins.objectid = node->bytenr;
2457 if (skinny_metadata) {
2458 ins.offset = ref->level;
2459 ins.type = BTRFS_METADATA_ITEM_KEY;
2460 } else {
2461 ins.offset = node->num_bytes;
2462 ins.type = BTRFS_EXTENT_ITEM_KEY;
2463 }
2464
Liu Bo02794222016-09-14 19:19:05 -07002465 if (node->ref_mod != 1) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002466 btrfs_err(fs_info,
Liu Bo02794222016-09-14 19:19:05 -07002467 "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu",
2468 node->bytenr, node->ref_mod, node->action, ref_root,
2469 parent);
2470 return -EIO;
2471 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002472 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002473 BUG_ON(!extent_op || !extent_op->update_flags);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002474 ret = alloc_reserved_tree_block(trans, fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002475 parent, ref_root,
2476 extent_op->flags_to_set,
2477 &extent_op->key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002478 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002479 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002480 ret = __btrfs_inc_extent_ref(trans, fs_info, node,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002481 parent, ref_root,
2482 ref->level, 0, 1,
Josef Bacikfcebe452014-05-13 17:30:47 -07002483 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002484 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002485 ret = __btrfs_free_extent(trans, fs_info, node,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002486 parent, ref_root,
2487 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002488 } else {
2489 BUG();
2490 }
2491 return ret;
2492}
2493
Chris Mason56bec292009-03-13 10:10:06 -04002494/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002495static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002496 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002497 struct btrfs_delayed_ref_node *node,
2498 struct btrfs_delayed_extent_op *extent_op,
2499 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002500{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002501 int ret = 0;
2502
Josef Bacik857cc2f2013-10-07 15:21:08 -04002503 if (trans->aborted) {
2504 if (insert_reserved)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002505 btrfs_pin_extent(fs_info, node->bytenr,
Josef Bacik857cc2f2013-10-07 15:21:08 -04002506 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002507 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002508 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002509
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002510 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002511 struct btrfs_delayed_ref_head *head;
2512 /*
2513 * we've hit the end of the chain and we were supposed
2514 * to insert this extent into the tree. But, it got
2515 * deleted before we ever needed to insert it, so all
2516 * we have to do is clean up the accounting
2517 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002518 BUG_ON(extent_op);
2519 head = btrfs_delayed_node_to_head(node);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002520 trace_run_delayed_ref_head(fs_info, node, head, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002521
Omar Sandovald7eae342017-06-06 16:45:31 -07002522 if (head->total_ref_mod < 0) {
2523 struct btrfs_block_group_cache *cache;
2524
2525 cache = btrfs_lookup_block_group(fs_info, node->bytenr);
2526 ASSERT(cache);
2527 percpu_counter_add(&cache->space_info->total_bytes_pinned,
2528 -node->num_bytes);
2529 btrfs_put_block_group(cache);
2530 }
2531
Chris Mason56bec292009-03-13 10:10:06 -04002532 if (insert_reserved) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002533 btrfs_pin_extent(fs_info, node->bytenr,
Yan, Zhengf0486c62010-05-16 10:46:25 -04002534 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002535 if (head->is_data) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002536 ret = btrfs_del_csums(trans, fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002537 node->bytenr,
2538 node->num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002539 }
Chris Mason56bec292009-03-13 10:10:06 -04002540 }
Qu Wenruo297d7502015-09-08 17:08:37 +08002541
2542 /* Also free its reserved qgroup space */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002543 btrfs_qgroup_free_delayed_ref(fs_info, head->qgroup_ref_root,
Qu Wenruo297d7502015-09-08 17:08:37 +08002544 head->qgroup_reserved);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002545 return ret;
Chris Mason56bec292009-03-13 10:10:06 -04002546 }
Josef Bacikeb099672009-02-12 09:27:38 -05002547
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002548 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2549 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002550 ret = run_delayed_tree_ref(trans, fs_info, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002551 insert_reserved);
2552 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2553 node->type == BTRFS_SHARED_DATA_REF_KEY)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002554 ret = run_delayed_data_ref(trans, fs_info, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002555 insert_reserved);
2556 else
2557 BUG();
2558 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002559}
2560
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002561static inline struct btrfs_delayed_ref_node *
Chris Mason56bec292009-03-13 10:10:06 -04002562select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002563{
Filipe Mananacffc3372015-07-09 13:13:44 +01002564 struct btrfs_delayed_ref_node *ref;
2565
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002566 if (list_empty(&head->ref_list))
2567 return NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002568
Filipe Mananacffc3372015-07-09 13:13:44 +01002569 /*
2570 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
2571 * This is to prevent a ref count from going down to zero, which deletes
2572 * the extent item from the extent tree, when there still are references
2573 * to add, which would fail because they would not find the extent item.
2574 */
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002575 if (!list_empty(&head->ref_add_list))
2576 return list_first_entry(&head->ref_add_list,
2577 struct btrfs_delayed_ref_node, add_list);
Filipe Mananacffc3372015-07-09 13:13:44 +01002578
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002579 ref = list_first_entry(&head->ref_list, struct btrfs_delayed_ref_node,
2580 list);
2581 ASSERT(list_empty(&ref->add_list));
2582 return ref;
Chris Mason56bec292009-03-13 10:10:06 -04002583}
2584
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002585/*
2586 * Returns 0 on success or if called with an already aborted transaction.
2587 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2588 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002589static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002590 struct btrfs_fs_info *fs_info,
Josef Bacikd7df2c72014-01-23 09:21:38 -05002591 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002592{
Chris Mason56bec292009-03-13 10:10:06 -04002593 struct btrfs_delayed_ref_root *delayed_refs;
2594 struct btrfs_delayed_ref_node *ref;
2595 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002596 struct btrfs_delayed_extent_op *extent_op;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002597 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002598 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002599 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002600 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002601 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002602
2603 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002604 while (1) {
2605 if (!locked_ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002606 if (count >= nr)
Chris Mason56bec292009-03-13 10:10:06 -04002607 break;
Chris Mason56bec292009-03-13 10:10:06 -04002608
Josef Bacikd7df2c72014-01-23 09:21:38 -05002609 spin_lock(&delayed_refs->lock);
2610 locked_ref = btrfs_select_ref_head(trans);
2611 if (!locked_ref) {
2612 spin_unlock(&delayed_refs->lock);
2613 break;
2614 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002615
2616 /* grab the lock that says we are going to process
2617 * all the refs for this head */
2618 ret = btrfs_delayed_ref_lock(trans, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002619 spin_unlock(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -04002620 /*
2621 * we may have dropped the spin lock to get the head
2622 * mutex lock, and that might have given someone else
2623 * time to free the head. If that's true, it has been
2624 * removed from our list and we can move on.
2625 */
2626 if (ret == -EAGAIN) {
2627 locked_ref = NULL;
2628 count++;
2629 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002630 }
2631 }
2632
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002633 /*
2634 * We need to try and merge add/drops of the same ref since we
2635 * can run into issues with relocate dropping the implicit ref
2636 * and then it being added back again before the drop can
2637 * finish. If we merged anything we need to re-loop so we can
2638 * get a good ref.
2639 * Or we can get node references of the same type that weren't
2640 * merged when created due to bumps in the tree mod seq, and
2641 * we need to merge them to prevent adding an inline extent
2642 * backref before dropping it (triggering a BUG_ON at
2643 * insert_inline_extent_backref()).
2644 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002645 spin_lock(&locked_ref->lock);
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002646 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2647 locked_ref);
Josef Bacikae1e2062012-08-07 16:00:32 -04002648
2649 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002650 * locked_ref is the head node, so we have to go one
2651 * node back for any delayed ref updates
2652 */
2653 ref = select_delayed_ref(locked_ref);
2654
2655 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002656 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002657 spin_unlock(&locked_ref->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002658 spin_lock(&delayed_refs->lock);
2659 locked_ref->processing = 0;
Arne Jansend1270cd2011-09-13 15:16:43 +02002660 delayed_refs->num_heads_ready++;
2661 spin_unlock(&delayed_refs->lock);
Jeff Mahoneyd0280992016-12-20 13:28:28 -05002662 btrfs_delayed_ref_unlock(locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002663 locked_ref = NULL;
Arne Jansend1270cd2011-09-13 15:16:43 +02002664 cond_resched();
Josef Bacik27a377d2014-02-07 13:57:59 -05002665 count++;
Arne Jansend1270cd2011-09-13 15:16:43 +02002666 continue;
2667 }
2668
2669 /*
Chris Mason56bec292009-03-13 10:10:06 -04002670 * record the must insert reserved flag before we
2671 * drop the spin lock.
2672 */
2673 must_insert_reserved = locked_ref->must_insert_reserved;
2674 locked_ref->must_insert_reserved = 0;
2675
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002676 extent_op = locked_ref->extent_op;
2677 locked_ref->extent_op = NULL;
2678
Chris Mason56bec292009-03-13 10:10:06 -04002679 if (!ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002680
2681
Chris Mason56bec292009-03-13 10:10:06 -04002682 /* All delayed refs have been processed, Go ahead
2683 * and send the head node to run_one_delayed_ref,
2684 * so that any accounting fixes can happen
2685 */
2686 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002687
2688 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002689 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002690 extent_op = NULL;
2691 }
2692
2693 if (extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002694 spin_unlock(&locked_ref->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002695 ret = run_delayed_extent_op(trans, fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002696 ref, extent_op);
Miao Xie78a61842012-11-21 02:21:28 +00002697 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002698
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002699 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04002700 /*
2701 * Need to reset must_insert_reserved if
2702 * there was an error so the abort stuff
2703 * can cleanup the reserved space
2704 * properly.
2705 */
2706 if (must_insert_reserved)
2707 locked_ref->must_insert_reserved = 1;
Jeff Mahoneyaa7c8da2016-12-20 13:28:27 -05002708 spin_lock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002709 locked_ref->processing = 0;
Jeff Mahoneyaa7c8da2016-12-20 13:28:27 -05002710 delayed_refs->num_heads_ready++;
2711 spin_unlock(&delayed_refs->lock);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002712 btrfs_debug(fs_info,
2713 "run_delayed_extent_op returned %d",
2714 ret);
Miao Xie093486c2012-12-19 08:10:10 +00002715 btrfs_delayed_ref_unlock(locked_ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002716 return ret;
2717 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002718 continue;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002719 }
Chris Mason56bec292009-03-13 10:10:06 -04002720
Josef Bacikd7df2c72014-01-23 09:21:38 -05002721 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002722 * Need to drop our head ref lock and re-acquire the
Josef Bacikd7df2c72014-01-23 09:21:38 -05002723 * delayed ref lock and then re-check to make sure
2724 * nobody got added.
2725 */
2726 spin_unlock(&locked_ref->lock);
2727 spin_lock(&delayed_refs->lock);
2728 spin_lock(&locked_ref->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002729 if (!list_empty(&locked_ref->ref_list) ||
Josef Bacik573a0752014-03-27 19:41:34 -04002730 locked_ref->extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002731 spin_unlock(&locked_ref->lock);
2732 spin_unlock(&delayed_refs->lock);
2733 continue;
2734 }
2735 ref->in_tree = 0;
2736 delayed_refs->num_heads--;
Liu Boc46effa2013-10-14 12:59:45 +08002737 rb_erase(&locked_ref->href_node,
2738 &delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002739 spin_unlock(&delayed_refs->lock);
2740 } else {
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002741 actual_count++;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002742 ref->in_tree = 0;
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002743 list_del(&ref->list);
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002744 if (!list_empty(&ref->add_list))
2745 list_del(&ref->add_list);
Liu Boc46effa2013-10-14 12:59:45 +08002746 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002747 atomic_dec(&delayed_refs->num_entries);
2748
Miao Xie093486c2012-12-19 08:10:10 +00002749 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002750 /*
2751 * when we play the delayed ref, also correct the
2752 * ref_mod on head
2753 */
2754 switch (ref->action) {
2755 case BTRFS_ADD_DELAYED_REF:
2756 case BTRFS_ADD_DELAYED_EXTENT:
2757 locked_ref->node.ref_mod -= ref->ref_mod;
2758 break;
2759 case BTRFS_DROP_DELAYED_REF:
2760 locked_ref->node.ref_mod += ref->ref_mod;
2761 break;
2762 default:
2763 WARN_ON(1);
2764 }
2765 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002766 spin_unlock(&locked_ref->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002767
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002768 ret = run_one_delayed_ref(trans, fs_info, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002769 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002770
Miao Xie78a61842012-11-21 02:21:28 +00002771 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002772 if (ret) {
Wang Xiaoguang9d1032c2016-06-20 09:18:52 +08002773 spin_lock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002774 locked_ref->processing = 0;
Wang Xiaoguang9d1032c2016-06-20 09:18:52 +08002775 delayed_refs->num_heads_ready++;
2776 spin_unlock(&delayed_refs->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002777 btrfs_delayed_ref_unlock(locked_ref);
2778 btrfs_put_delayed_ref(ref);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002779 btrfs_debug(fs_info, "run_one_delayed_ref returned %d",
2780 ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002781 return ret;
2782 }
2783
Miao Xie093486c2012-12-19 08:10:10 +00002784 /*
2785 * If this node is a head, that means all the refs in this head
2786 * have been dealt with, and we will pick the next head to deal
2787 * with, so we must unlock the head and drop it from the cluster
2788 * list before we release it.
2789 */
2790 if (btrfs_delayed_ref_is_head(ref)) {
Josef Bacik12621332015-02-03 07:50:16 -08002791 if (locked_ref->is_data &&
2792 locked_ref->total_ref_mod < 0) {
2793 spin_lock(&delayed_refs->lock);
2794 delayed_refs->pending_csums -= ref->num_bytes;
2795 spin_unlock(&delayed_refs->lock);
2796 }
Miao Xie093486c2012-12-19 08:10:10 +00002797 btrfs_delayed_ref_unlock(locked_ref);
2798 locked_ref = NULL;
2799 }
2800 btrfs_put_delayed_ref(ref);
2801 count++;
Chris Mason1887be62009-03-13 10:11:24 -04002802 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002803 }
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002804
2805 /*
2806 * We don't want to include ref heads since we can have empty ref heads
2807 * and those will drastically skew our runtime down since we just do
2808 * accounting, no actual extent tree updates.
2809 */
2810 if (actual_count > 0) {
2811 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2812 u64 avg;
2813
2814 /*
2815 * We weigh the current average higher than our current runtime
2816 * to avoid large swings in the average.
2817 */
2818 spin_lock(&delayed_refs->lock);
2819 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002820 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002821 spin_unlock(&delayed_refs->lock);
2822 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002823 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002824}
2825
Arne Jansen709c0482011-09-12 12:22:57 +02002826#ifdef SCRAMBLE_DELAYED_REFS
2827/*
2828 * Normally delayed refs get processed in ascending bytenr order. This
2829 * correlates in most cases to the order added. To expose dependencies on this
2830 * order, we start to process the tree in the middle instead of the beginning
2831 */
2832static u64 find_middle(struct rb_root *root)
2833{
2834 struct rb_node *n = root->rb_node;
2835 struct btrfs_delayed_ref_node *entry;
2836 int alt = 1;
2837 u64 middle;
2838 u64 first = 0, last = 0;
2839
2840 n = rb_first(root);
2841 if (n) {
2842 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2843 first = entry->bytenr;
2844 }
2845 n = rb_last(root);
2846 if (n) {
2847 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2848 last = entry->bytenr;
2849 }
2850 n = root->rb_node;
2851
2852 while (n) {
2853 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2854 WARN_ON(!entry->in_tree);
2855
2856 middle = entry->bytenr;
2857
2858 if (alt)
2859 n = n->rb_left;
2860 else
2861 n = n->rb_right;
2862
2863 alt = 1 - alt;
2864 }
2865 return middle;
2866}
2867#endif
2868
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002869static inline u64 heads_to_leaves(struct btrfs_fs_info *fs_info, u64 heads)
Josef Bacik1be41b72013-06-12 13:56:06 -04002870{
2871 u64 num_bytes;
2872
2873 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2874 sizeof(struct btrfs_extent_inline_ref));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002875 if (!btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik1be41b72013-06-12 13:56:06 -04002876 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2877
2878 /*
2879 * 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 -04002880 * closer to what we're really going to want to use.
Josef Bacik1be41b72013-06-12 13:56:06 -04002881 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002882 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(fs_info));
Josef Bacik1be41b72013-06-12 13:56:06 -04002883}
2884
Josef Bacik12621332015-02-03 07:50:16 -08002885/*
2886 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2887 * would require to store the csums for that many bytes.
2888 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002889u64 btrfs_csum_bytes_to_leaves(struct btrfs_fs_info *fs_info, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002890{
2891 u64 csum_size;
2892 u64 num_csums_per_leaf;
2893 u64 num_csums;
2894
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002895 csum_size = BTRFS_MAX_ITEM_SIZE(fs_info);
Josef Bacik12621332015-02-03 07:50:16 -08002896 num_csums_per_leaf = div64_u64(csum_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002897 (u64)btrfs_super_csum_size(fs_info->super_copy));
2898 num_csums = div64_u64(csum_bytes, fs_info->sectorsize);
Josef Bacik12621332015-02-03 07:50:16 -08002899 num_csums += num_csums_per_leaf - 1;
2900 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2901 return num_csums;
2902}
2903
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002904int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002905 struct btrfs_fs_info *fs_info)
Josef Bacik1be41b72013-06-12 13:56:06 -04002906{
2907 struct btrfs_block_rsv *global_rsv;
2908 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
Josef Bacik12621332015-02-03 07:50:16 -08002909 u64 csum_bytes = trans->transaction->delayed_refs.pending_csums;
Josef Bacikcb723e42015-02-18 08:06:57 -08002910 u64 num_dirty_bgs = trans->transaction->num_dirty_bgs;
2911 u64 num_bytes, num_dirty_bgs_bytes;
Josef Bacik1be41b72013-06-12 13:56:06 -04002912 int ret = 0;
2913
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002914 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002915 num_heads = heads_to_leaves(fs_info, num_heads);
Josef Bacik1be41b72013-06-12 13:56:06 -04002916 if (num_heads > 1)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002917 num_bytes += (num_heads - 1) * fs_info->nodesize;
Josef Bacik1be41b72013-06-12 13:56:06 -04002918 num_bytes <<= 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002919 num_bytes += btrfs_csum_bytes_to_leaves(fs_info, csum_bytes) *
2920 fs_info->nodesize;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002921 num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(fs_info,
Josef Bacikcb723e42015-02-18 08:06:57 -08002922 num_dirty_bgs);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002923 global_rsv = &fs_info->global_block_rsv;
Josef Bacik1be41b72013-06-12 13:56:06 -04002924
2925 /*
2926 * If we can't allocate any more chunks lets make sure we have _lots_ of
2927 * wiggle room since running delayed refs can create more delayed refs.
2928 */
Josef Bacikcb723e42015-02-18 08:06:57 -08002929 if (global_rsv->space_info->full) {
2930 num_dirty_bgs_bytes <<= 1;
Josef Bacik1be41b72013-06-12 13:56:06 -04002931 num_bytes <<= 1;
Josef Bacikcb723e42015-02-18 08:06:57 -08002932 }
Josef Bacik1be41b72013-06-12 13:56:06 -04002933
2934 spin_lock(&global_rsv->lock);
Josef Bacikcb723e42015-02-18 08:06:57 -08002935 if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes)
Josef Bacik1be41b72013-06-12 13:56:06 -04002936 ret = 1;
2937 spin_unlock(&global_rsv->lock);
2938 return ret;
2939}
2940
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002941int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002942 struct btrfs_fs_info *fs_info)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002943{
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002944 u64 num_entries =
2945 atomic_read(&trans->transaction->delayed_refs.num_entries);
2946 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002947 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002948
2949 smp_mb();
2950 avg_runtime = fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002951 val = num_entries * avg_runtime;
Wang Xiaoguangdc1a90c2016-10-26 15:23:01 +08002952 if (val >= NSEC_PER_SEC)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002953 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002954 if (val >= NSEC_PER_SEC / 2)
2955 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002956
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002957 return btrfs_check_space_for_delayed_refs(trans, fs_info);
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002958}
2959
Chris Masona79b7d42014-05-22 16:18:52 -07002960struct async_delayed_refs {
2961 struct btrfs_root *root;
Josef Bacik31b96552016-04-11 17:37:40 -04002962 u64 transid;
Chris Masona79b7d42014-05-22 16:18:52 -07002963 int count;
2964 int error;
2965 int sync;
2966 struct completion wait;
2967 struct btrfs_work work;
2968};
2969
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002970static inline struct async_delayed_refs *
2971to_async_delayed_refs(struct btrfs_work *work)
2972{
2973 return container_of(work, struct async_delayed_refs, work);
2974}
2975
Chris Masona79b7d42014-05-22 16:18:52 -07002976static void delayed_ref_async_start(struct btrfs_work *work)
2977{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002978 struct async_delayed_refs *async = to_async_delayed_refs(work);
Chris Masona79b7d42014-05-22 16:18:52 -07002979 struct btrfs_trans_handle *trans;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002980 struct btrfs_fs_info *fs_info = async->root->fs_info;
Chris Masona79b7d42014-05-22 16:18:52 -07002981 int ret;
2982
Chris Mason0f873ec2016-04-27 09:59:38 -04002983 /* if the commit is already started, we don't need to wait here */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002984 if (btrfs_transaction_blocked(fs_info))
Josef Bacik31b96552016-04-11 17:37:40 -04002985 goto done;
Josef Bacik31b96552016-04-11 17:37:40 -04002986
Chris Mason0f873ec2016-04-27 09:59:38 -04002987 trans = btrfs_join_transaction(async->root);
2988 if (IS_ERR(trans)) {
2989 async->error = PTR_ERR(trans);
Chris Masona79b7d42014-05-22 16:18:52 -07002990 goto done;
2991 }
2992
2993 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002994 * trans->sync means that when we call end_transaction, we won't
Chris Masona79b7d42014-05-22 16:18:52 -07002995 * wait on delayed refs
2996 */
2997 trans->sync = true;
Chris Mason0f873ec2016-04-27 09:59:38 -04002998
2999 /* Don't bother flushing if we got into a different transaction */
3000 if (trans->transid > async->transid)
3001 goto end;
3002
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003003 ret = btrfs_run_delayed_refs(trans, fs_info, async->count);
Chris Masona79b7d42014-05-22 16:18:52 -07003004 if (ret)
3005 async->error = ret;
Chris Mason0f873ec2016-04-27 09:59:38 -04003006end:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04003007 ret = btrfs_end_transaction(trans);
Chris Masona79b7d42014-05-22 16:18:52 -07003008 if (ret && !async->error)
3009 async->error = ret;
3010done:
3011 if (async->sync)
3012 complete(&async->wait);
3013 else
3014 kfree(async);
3015}
3016
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003017int btrfs_async_run_delayed_refs(struct btrfs_fs_info *fs_info,
Josef Bacik31b96552016-04-11 17:37:40 -04003018 unsigned long count, u64 transid, int wait)
Chris Masona79b7d42014-05-22 16:18:52 -07003019{
3020 struct async_delayed_refs *async;
3021 int ret;
3022
3023 async = kmalloc(sizeof(*async), GFP_NOFS);
3024 if (!async)
3025 return -ENOMEM;
3026
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003027 async->root = fs_info->tree_root;
Chris Masona79b7d42014-05-22 16:18:52 -07003028 async->count = count;
3029 async->error = 0;
Josef Bacik31b96552016-04-11 17:37:40 -04003030 async->transid = transid;
Chris Masona79b7d42014-05-22 16:18:52 -07003031 if (wait)
3032 async->sync = 1;
3033 else
3034 async->sync = 0;
3035 init_completion(&async->wait);
3036
Liu Bo9e0af232014-08-15 23:36:53 +08003037 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
3038 delayed_ref_async_start, NULL, NULL);
Chris Masona79b7d42014-05-22 16:18:52 -07003039
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003040 btrfs_queue_work(fs_info->extent_workers, &async->work);
Chris Masona79b7d42014-05-22 16:18:52 -07003041
3042 if (wait) {
3043 wait_for_completion(&async->wait);
3044 ret = async->error;
3045 kfree(async);
3046 return ret;
3047 }
3048 return 0;
3049}
3050
Chris Masonc3e69d52009-03-13 10:17:05 -04003051/*
3052 * this starts processing the delayed reference count updates and
3053 * extent insertions we have queued up so far. count can be
3054 * 0, which means to process everything in the tree at the start
3055 * of the run (but not newly added entries), or it can be some target
3056 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003057 *
3058 * Returns 0 on success or if called with an aborted transaction
3059 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04003060 */
3061int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003062 struct btrfs_fs_info *fs_info, unsigned long count)
Chris Masonc3e69d52009-03-13 10:17:05 -04003063{
3064 struct rb_node *node;
3065 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08003066 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04003067 int ret;
3068 int run_all = count == (unsigned long)-1;
Filipe Mananad9a05402015-10-03 13:13:13 +01003069 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Chris Masonc3e69d52009-03-13 10:17:05 -04003070
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003071 /* We'll clean this up in btrfs_cleanup_transaction */
3072 if (trans->aborted)
3073 return 0;
3074
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003075 if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags))
Chris Mason511711a2015-12-30 07:52:35 -08003076 return 0;
3077
Chris Masonc3e69d52009-03-13 10:17:05 -04003078 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08003079 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05003080 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05003081
Chris Masonc3e69d52009-03-13 10:17:05 -04003082again:
Arne Jansen709c0482011-09-12 12:22:57 +02003083#ifdef SCRAMBLE_DELAYED_REFS
3084 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
3085#endif
Filipe Mananad9a05402015-10-03 13:13:13 +01003086 trans->can_flush_pending_bgs = false;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003087 ret = __btrfs_run_delayed_refs(trans, fs_info, count);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003088 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003089 btrfs_abort_transaction(trans, ret);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003090 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04003091 }
3092
Chris Mason56bec292009-03-13 10:10:06 -04003093 if (run_all) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05003094 if (!list_empty(&trans->new_bgs))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003095 btrfs_create_pending_block_groups(trans, fs_info);
Josef Bacikea658ba2012-09-11 16:57:25 -04003096
Josef Bacikd7df2c72014-01-23 09:21:38 -05003097 spin_lock(&delayed_refs->lock);
Liu Boc46effa2013-10-14 12:59:45 +08003098 node = rb_first(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003099 if (!node) {
3100 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04003101 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05003102 }
Chris Mason56bec292009-03-13 10:10:06 -04003103
3104 while (node) {
Liu Boc46effa2013-10-14 12:59:45 +08003105 head = rb_entry(node, struct btrfs_delayed_ref_head,
3106 href_node);
3107 if (btrfs_delayed_ref_is_head(&head->node)) {
3108 struct btrfs_delayed_ref_node *ref;
Chris Mason56bec292009-03-13 10:10:06 -04003109
Liu Boc46effa2013-10-14 12:59:45 +08003110 ref = &head->node;
Elena Reshetova6df8cdf2017-03-03 10:55:15 +02003111 refcount_inc(&ref->refs);
Chris Mason56bec292009-03-13 10:10:06 -04003112
3113 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02003114 /*
3115 * Mutex was contended, block until it's
3116 * released and try again
3117 */
Chris Mason56bec292009-03-13 10:10:06 -04003118 mutex_lock(&head->mutex);
3119 mutex_unlock(&head->mutex);
3120
3121 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04003122 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04003123 goto again;
Liu Boc46effa2013-10-14 12:59:45 +08003124 } else {
3125 WARN_ON(1);
Chris Mason56bec292009-03-13 10:10:06 -04003126 }
3127 node = rb_next(node);
3128 }
3129 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003130 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04003131 goto again;
3132 }
Chris Mason54aa1f42007-06-22 14:16:25 -04003133out:
Filipe Mananad9a05402015-10-03 13:13:13 +01003134 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Chris Masona28ec192007-03-06 20:08:01 -05003135 return 0;
3136}
3137
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003138int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003139 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003140 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04003141 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003142{
3143 struct btrfs_delayed_extent_op *extent_op;
3144 int ret;
3145
Miao Xie78a61842012-11-21 02:21:28 +00003146 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003147 if (!extent_op)
3148 return -ENOMEM;
3149
3150 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01003151 extent_op->update_flags = true;
3152 extent_op->update_key = false;
3153 extent_op->is_data = is_data ? true : false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04003154 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003155
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003156 ret = btrfs_add_delayed_extent_op(fs_info, trans, bytenr,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003157 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003158 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00003159 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003160 return ret;
3161}
3162
Liu Boe4c3b2d2017-01-30 12:25:28 -08003163static noinline int check_delayed_ref(struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003164 struct btrfs_path *path,
3165 u64 objectid, u64 offset, u64 bytenr)
3166{
3167 struct btrfs_delayed_ref_head *head;
3168 struct btrfs_delayed_ref_node *ref;
3169 struct btrfs_delayed_data_ref *data_ref;
3170 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boe4c3b2d2017-01-30 12:25:28 -08003171 struct btrfs_transaction *cur_trans;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003172 int ret = 0;
3173
Liu Boe4c3b2d2017-01-30 12:25:28 -08003174 cur_trans = root->fs_info->running_transaction;
3175 if (!cur_trans)
3176 return 0;
3177
3178 delayed_refs = &cur_trans->delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003179 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08003180 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003181 if (!head) {
3182 spin_unlock(&delayed_refs->lock);
3183 return 0;
3184 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003185
3186 if (!mutex_trylock(&head->mutex)) {
Elena Reshetova6df8cdf2017-03-03 10:55:15 +02003187 refcount_inc(&head->node.refs);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003188 spin_unlock(&delayed_refs->lock);
3189
David Sterbab3b4aa72011-04-21 01:20:15 +02003190 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003191
David Sterba8cc33e52011-05-02 15:29:25 +02003192 /*
3193 * Mutex was contended, block until it's released and let
3194 * caller try again
3195 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003196 mutex_lock(&head->mutex);
3197 mutex_unlock(&head->mutex);
3198 btrfs_put_delayed_ref(&head->node);
3199 return -EAGAIN;
3200 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003201 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003202
3203 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08003204 list_for_each_entry(ref, &head->ref_list, list) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05003205 /* If it's a shared ref we know a cross reference exists */
3206 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
3207 ret = 1;
3208 break;
3209 }
3210
3211 data_ref = btrfs_delayed_node_to_data_ref(ref);
3212
3213 /*
3214 * If our ref doesn't match the one we're currently looking at
3215 * then we have a cross reference.
3216 */
3217 if (data_ref->root != root->root_key.objectid ||
3218 data_ref->objectid != objectid ||
3219 data_ref->offset != offset) {
3220 ret = 1;
3221 break;
3222 }
3223 }
3224 spin_unlock(&head->lock);
3225 mutex_unlock(&head->mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003226 return ret;
3227}
3228
Liu Boe4c3b2d2017-01-30 12:25:28 -08003229static noinline int check_committed_ref(struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003230 struct btrfs_path *path,
3231 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05003232{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003233 struct btrfs_fs_info *fs_info = root->fs_info;
3234 struct btrfs_root *extent_root = fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04003235 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003236 struct btrfs_extent_data_ref *ref;
3237 struct btrfs_extent_inline_ref *iref;
3238 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05003239 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003240 u32 item_size;
Liu Bo3de28d52017-08-18 15:15:19 -06003241 int type;
Yan Zhengf321e492008-07-30 09:26:11 -04003242 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05003243
Chris Masonbe20aa92007-12-17 20:14:01 -05003244 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04003245 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04003246 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05003247
Chris Masonbe20aa92007-12-17 20:14:01 -05003248 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3249 if (ret < 0)
3250 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003251 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04003252
3253 ret = -ENOENT;
3254 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04003255 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003256
Zheng Yan31840ae2008-09-23 13:14:14 -04003257 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04003258 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003259 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05003260
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003261 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05003262 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003263
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003264 ret = 1;
3265 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3266#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3267 if (item_size < sizeof(*ei)) {
3268 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
3269 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003270 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003271#endif
3272 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
3273
3274 if (item_size != sizeof(*ei) +
3275 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
3276 goto out;
3277
3278 if (btrfs_extent_generation(leaf, ei) <=
3279 btrfs_root_last_snapshot(&root->root_item))
3280 goto out;
3281
3282 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
Liu Bo3de28d52017-08-18 15:15:19 -06003283
3284 type = btrfs_get_extent_inline_ref_type(leaf, iref, BTRFS_REF_TYPE_DATA);
3285 if (type != BTRFS_EXTENT_DATA_REF_KEY)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003286 goto out;
3287
3288 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
3289 if (btrfs_extent_refs(leaf, ei) !=
3290 btrfs_extent_data_ref_count(leaf, ref) ||
3291 btrfs_extent_data_ref_root(leaf, ref) !=
3292 root->root_key.objectid ||
3293 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3294 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3295 goto out;
3296
Yan Zhengf321e492008-07-30 09:26:11 -04003297 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003298out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003299 return ret;
3300}
3301
Liu Boe4c3b2d2017-01-30 12:25:28 -08003302int btrfs_cross_ref_exist(struct btrfs_root *root, u64 objectid, u64 offset,
3303 u64 bytenr)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003304{
3305 struct btrfs_path *path;
3306 int ret;
3307 int ret2;
3308
3309 path = btrfs_alloc_path();
3310 if (!path)
3311 return -ENOENT;
3312
3313 do {
Liu Boe4c3b2d2017-01-30 12:25:28 -08003314 ret = check_committed_ref(root, path, objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003315 offset, bytenr);
3316 if (ret && ret != -ENOENT)
3317 goto out;
3318
Liu Boe4c3b2d2017-01-30 12:25:28 -08003319 ret2 = check_delayed_ref(root, path, objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003320 offset, bytenr);
3321 } while (ret2 == -EAGAIN);
3322
3323 if (ret2 && ret2 != -ENOENT) {
3324 ret = ret2;
3325 goto out;
3326 }
3327
3328 if (ret != -ENOENT || ret2 != -ENOENT)
3329 ret = 0;
3330out:
Yan Zhengf321e492008-07-30 09:26:11 -04003331 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003332 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3333 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003334 return ret;
3335}
3336
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003337static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003338 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003339 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003340 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003341{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003342 struct btrfs_fs_info *fs_info = root->fs_info;
Zheng Yan31840ae2008-09-23 13:14:14 -04003343 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003344 u64 num_bytes;
3345 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003346 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003347 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003348 struct btrfs_key key;
3349 struct btrfs_file_extent_item *fi;
3350 int i;
3351 int level;
3352 int ret = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003353 int (*process_func)(struct btrfs_trans_handle *,
3354 struct btrfs_fs_info *,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003355 u64, u64, u64, u64, u64, u64);
Zheng Yan31840ae2008-09-23 13:14:14 -04003356
David Sterbafccb84c2014-09-29 23:53:21 +02003357
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003358 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003359 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003360
Zheng Yan31840ae2008-09-23 13:14:14 -04003361 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003362 nritems = btrfs_header_nritems(buf);
3363 level = btrfs_header_level(buf);
3364
Miao Xie27cdeb72014-04-02 19:51:05 +08003365 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003366 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003367
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003368 if (inc)
3369 process_func = btrfs_inc_extent_ref;
3370 else
3371 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003372
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003373 if (full_backref)
3374 parent = buf->start;
3375 else
3376 parent = 0;
3377
Zheng Yan31840ae2008-09-23 13:14:14 -04003378 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003379 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003380 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003381 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003382 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003383 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003384 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003385 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003386 BTRFS_FILE_EXTENT_INLINE)
3387 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003388 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3389 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003390 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003391
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003392 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3393 key.offset -= btrfs_file_extent_offset(buf, fi);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003394 ret = process_func(trans, fs_info, bytenr, num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003395 parent, ref_root, key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003396 key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003397 if (ret)
3398 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003399 } else {
3400 bytenr = btrfs_node_blockptr(buf, i);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003401 num_bytes = fs_info->nodesize;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003402 ret = process_func(trans, fs_info, bytenr, num_bytes,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003403 parent, ref_root, level - 1, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003404 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003405 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003406 }
3407 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003408 return 0;
3409fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003410 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003411}
3412
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003413int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003414 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003415{
Josef Bacike339a6b2014-07-02 10:54:25 -07003416 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003417}
Zheng Yan31840ae2008-09-23 13:14:14 -04003418
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003419int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003420 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003421{
Josef Bacike339a6b2014-07-02 10:54:25 -07003422 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003423}
3424
Chris Mason9078a3e2007-04-26 16:46:15 -04003425static int write_one_cache_group(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003426 struct btrfs_fs_info *fs_info,
Chris Mason9078a3e2007-04-26 16:46:15 -04003427 struct btrfs_path *path,
3428 struct btrfs_block_group_cache *cache)
3429{
3430 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003431 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003432 unsigned long bi;
3433 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003434
Chris Mason9078a3e2007-04-26 16:46:15 -04003435 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003436 if (ret) {
3437 if (ret > 0)
3438 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003439 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003440 }
Chris Mason5f39d392007-10-15 16:14:19 -04003441
3442 leaf = path->nodes[0];
3443 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3444 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3445 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003446fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003447 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003448 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003449
3450}
3451
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003452static struct btrfs_block_group_cache *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003453next_block_group(struct btrfs_fs_info *fs_info,
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003454 struct btrfs_block_group_cache *cache)
3455{
3456 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003457
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003458 spin_lock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003459
3460 /* If our block group was removed, we need a full search. */
3461 if (RB_EMPTY_NODE(&cache->cache_node)) {
3462 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3463
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003464 spin_unlock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003465 btrfs_put_block_group(cache);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003466 cache = btrfs_lookup_first_block_group(fs_info, next_bytenr); return cache;
Filipe Manana292cbd52014-11-26 15:28:50 +00003467 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003468 node = rb_next(&cache->cache_node);
3469 btrfs_put_block_group(cache);
3470 if (node) {
3471 cache = rb_entry(node, struct btrfs_block_group_cache,
3472 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003473 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003474 } else
3475 cache = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003476 spin_unlock(&fs_info->block_group_cache_lock);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003477 return cache;
3478}
3479
Josef Bacik0af3d002010-06-21 14:48:16 -04003480static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3481 struct btrfs_trans_handle *trans,
3482 struct btrfs_path *path)
3483{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003484 struct btrfs_fs_info *fs_info = block_group->fs_info;
3485 struct btrfs_root *root = fs_info->tree_root;
Josef Bacik0af3d002010-06-21 14:48:16 -04003486 struct inode *inode = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003487 struct extent_changeset *data_reserved = NULL;
Josef Bacik0af3d002010-06-21 14:48:16 -04003488 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003489 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003490 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003491 int retries = 0;
3492 int ret = 0;
3493
3494 /*
3495 * If this block group is smaller than 100 megs don't bother caching the
3496 * block group.
3497 */
Byongho Leeee221842015-12-15 01:42:10 +09003498 if (block_group->key.offset < (100 * SZ_1M)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003499 spin_lock(&block_group->lock);
3500 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3501 spin_unlock(&block_group->lock);
3502 return 0;
3503 }
3504
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003505 if (trans->aborted)
3506 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003507again:
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003508 inode = lookup_free_space_inode(fs_info, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003509 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3510 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003511 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003512 goto out;
3513 }
3514
3515 if (IS_ERR(inode)) {
3516 BUG_ON(retries);
3517 retries++;
3518
3519 if (block_group->ro)
3520 goto out_free;
3521
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003522 ret = create_free_space_inode(fs_info, trans, block_group,
3523 path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003524 if (ret)
3525 goto out_free;
3526 goto again;
3527 }
3528
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003529 /* We've already setup this transaction, go ahead and exit */
3530 if (block_group->cache_generation == trans->transid &&
3531 i_size_read(inode)) {
3532 dcs = BTRFS_DC_SETUP;
3533 goto out_put;
3534 }
3535
Josef Bacik0af3d002010-06-21 14:48:16 -04003536 /*
3537 * We want to set the generation to 0, that way if anything goes wrong
3538 * from here on out we know not to trust this cache when we load up next
3539 * time.
3540 */
3541 BTRFS_I(inode)->generation = 0;
3542 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003543 if (ret) {
3544 /*
3545 * So theoretically we could recover from this, simply set the
3546 * super cache generation to 0 so we know to invalidate the
3547 * cache, but then we'd have to keep track of the block groups
3548 * that fail this way so we know we _have_ to reset this cache
3549 * before the next commit or risk reading stale cache. So to
3550 * limit our exposure to horrible edge cases lets just abort the
3551 * transaction, this only happens in really bad situations
3552 * anyway.
3553 */
Jeff Mahoney66642832016-06-10 18:19:25 -04003554 btrfs_abort_transaction(trans, ret);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003555 goto out_put;
3556 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003557 WARN_ON(ret);
3558
3559 if (i_size_read(inode) > 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003560 ret = btrfs_check_trunc_cache_free_space(fs_info,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003561 &fs_info->global_block_rsv);
Miao Xie7b61cd92013-05-13 13:55:09 +00003562 if (ret)
3563 goto out_put;
3564
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003565 ret = btrfs_truncate_free_space_cache(trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003566 if (ret)
3567 goto out_put;
3568 }
3569
3570 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003571 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003572 !btrfs_test_opt(fs_info, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003573 /*
3574 * don't bother trying to write stuff out _if_
3575 * a) we're not cached,
Liu Bo1a79c1f2017-03-06 13:49:02 -08003576 * b) we're with nospace_cache mount option,
3577 * c) we're with v2 space_cache (FREE_SPACE_TREE).
Liu Bocf7c1ef2012-07-06 03:31:34 -06003578 */
Josef Bacik2b209822010-12-03 13:17:53 -05003579 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003580 spin_unlock(&block_group->lock);
3581 goto out_put;
3582 }
3583 spin_unlock(&block_group->lock);
3584
Josef Bacik6fc823b2012-08-06 13:46:38 -06003585 /*
Josef Bacik2968b1f2015-10-01 12:55:18 -04003586 * We hit an ENOSPC when setting up the cache in this transaction, just
3587 * skip doing the setup, we've already cleared the cache so we're safe.
3588 */
3589 if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
3590 ret = -ENOSPC;
3591 goto out_put;
3592 }
3593
3594 /*
Josef Bacik6fc823b2012-08-06 13:46:38 -06003595 * Try to preallocate enough space based on how big the block group is.
3596 * Keep in mind this has to include any pinned space which could end up
3597 * taking up quite a bit since it's not folded into the other space
3598 * cache.
3599 */
Byongho Leeee221842015-12-15 01:42:10 +09003600 num_pages = div_u64(block_group->key.offset, SZ_256M);
Josef Bacik0af3d002010-06-21 14:48:16 -04003601 if (!num_pages)
3602 num_pages = 1;
3603
Josef Bacik0af3d002010-06-21 14:48:16 -04003604 num_pages *= 16;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003605 num_pages *= PAGE_SIZE;
Josef Bacik0af3d002010-06-21 14:48:16 -04003606
Qu Wenruo364ecf32017-02-27 15:10:38 +08003607 ret = btrfs_check_data_free_space(inode, &data_reserved, 0, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003608 if (ret)
3609 goto out_put;
3610
3611 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3612 num_pages, num_pages,
3613 &alloc_hint);
Josef Bacik2968b1f2015-10-01 12:55:18 -04003614 /*
3615 * Our cache requires contiguous chunks so that we don't modify a bunch
3616 * of metadata or split extents when writing the cache out, which means
3617 * we can enospc if we are heavily fragmented in addition to just normal
3618 * out of space conditions. So if we hit this just skip setting up any
3619 * other block groups for this transaction, maybe we'll unpin enough
3620 * space the next time around.
3621 */
Josef Bacik2b209822010-12-03 13:17:53 -05003622 if (!ret)
3623 dcs = BTRFS_DC_SETUP;
Josef Bacik2968b1f2015-10-01 12:55:18 -04003624 else if (ret == -ENOSPC)
3625 set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
Josef Bacikc09544e2011-08-30 10:19:10 -04003626
Josef Bacik0af3d002010-06-21 14:48:16 -04003627out_put:
3628 iput(inode);
3629out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003630 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003631out:
3632 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003633 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003634 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003635 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003636 spin_unlock(&block_group->lock);
3637
Qu Wenruo364ecf32017-02-27 15:10:38 +08003638 extent_changeset_free(data_reserved);
Josef Bacik0af3d002010-06-21 14:48:16 -04003639 return ret;
3640}
3641
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003642int btrfs_setup_space_cache(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003643 struct btrfs_fs_info *fs_info)
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003644{
3645 struct btrfs_block_group_cache *cache, *tmp;
3646 struct btrfs_transaction *cur_trans = trans->transaction;
3647 struct btrfs_path *path;
3648
3649 if (list_empty(&cur_trans->dirty_bgs) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003650 !btrfs_test_opt(fs_info, SPACE_CACHE))
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003651 return 0;
3652
3653 path = btrfs_alloc_path();
3654 if (!path)
3655 return -ENOMEM;
3656
3657 /* Could add new block groups, use _safe just in case */
3658 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3659 dirty_list) {
3660 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3661 cache_save_setup(cache, trans, path);
3662 }
3663
3664 btrfs_free_path(path);
3665 return 0;
3666}
3667
Chris Mason1bbc6212015-04-06 12:46:08 -07003668/*
3669 * transaction commit does final block group cache writeback during a
3670 * critical section where nothing is allowed to change the FS. This is
3671 * required in order for the cache to actually match the block group,
3672 * but can introduce a lot of latency into the commit.
3673 *
3674 * So, btrfs_start_dirty_block_groups is here to kick off block group
3675 * cache IO. There's a chance we'll have to redo some of it if the
3676 * block group changes again during the commit, but it greatly reduces
3677 * the commit latency by getting rid of the easy block groups while
3678 * we're still allowing others to join the commit.
3679 */
3680int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003681 struct btrfs_fs_info *fs_info)
Chris Mason1bbc6212015-04-06 12:46:08 -07003682{
3683 struct btrfs_block_group_cache *cache;
3684 struct btrfs_transaction *cur_trans = trans->transaction;
3685 int ret = 0;
3686 int should_put;
3687 struct btrfs_path *path = NULL;
3688 LIST_HEAD(dirty);
3689 struct list_head *io = &cur_trans->io_bgs;
3690 int num_started = 0;
3691 int loops = 0;
3692
3693 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003694 if (list_empty(&cur_trans->dirty_bgs)) {
3695 spin_unlock(&cur_trans->dirty_bgs_lock);
3696 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003697 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003698 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003699 spin_unlock(&cur_trans->dirty_bgs_lock);
3700
3701again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003702 /*
3703 * make sure all the block groups on our dirty list actually
3704 * exist
3705 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003706 btrfs_create_pending_block_groups(trans, fs_info);
Chris Mason1bbc6212015-04-06 12:46:08 -07003707
3708 if (!path) {
3709 path = btrfs_alloc_path();
3710 if (!path)
3711 return -ENOMEM;
3712 }
3713
Filipe Mananab58d1a92015-04-25 18:29:16 +01003714 /*
3715 * cache_write_mutex is here only to save us from balance or automatic
3716 * removal of empty block groups deleting this block group while we are
3717 * writing out the cache
3718 */
3719 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003720 while (!list_empty(&dirty)) {
3721 cache = list_first_entry(&dirty,
3722 struct btrfs_block_group_cache,
3723 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003724 /*
3725 * this can happen if something re-dirties a block
3726 * group that is already under IO. Just wait for it to
3727 * finish and then do it all again
3728 */
3729 if (!list_empty(&cache->io_list)) {
3730 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003731 btrfs_wait_cache_io(trans, cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003732 btrfs_put_block_group(cache);
3733 }
3734
3735
3736 /*
3737 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3738 * if it should update the cache_state. Don't delete
3739 * until after we wait.
3740 *
3741 * Since we're not running in the commit critical section
3742 * we need the dirty_bgs_lock to protect from update_block_group
3743 */
3744 spin_lock(&cur_trans->dirty_bgs_lock);
3745 list_del_init(&cache->dirty_list);
3746 spin_unlock(&cur_trans->dirty_bgs_lock);
3747
3748 should_put = 1;
3749
3750 cache_save_setup(cache, trans, path);
3751
3752 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3753 cache->io_ctl.inode = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003754 ret = btrfs_write_out_cache(fs_info, trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003755 cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003756 if (ret == 0 && cache->io_ctl.inode) {
3757 num_started++;
3758 should_put = 0;
3759
3760 /*
3761 * the cache_write_mutex is protecting
3762 * the io_list
3763 */
3764 list_add_tail(&cache->io_list, io);
3765 } else {
3766 /*
3767 * if we failed to write the cache, the
3768 * generation will be bad and life goes on
3769 */
3770 ret = 0;
3771 }
3772 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003773 if (!ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003774 ret = write_one_cache_group(trans, fs_info,
3775 path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003776 /*
3777 * Our block group might still be attached to the list
3778 * of new block groups in the transaction handle of some
3779 * other task (struct btrfs_trans_handle->new_bgs). This
3780 * means its block group item isn't yet in the extent
3781 * tree. If this happens ignore the error, as we will
3782 * try again later in the critical section of the
3783 * transaction commit.
3784 */
3785 if (ret == -ENOENT) {
3786 ret = 0;
3787 spin_lock(&cur_trans->dirty_bgs_lock);
3788 if (list_empty(&cache->dirty_list)) {
3789 list_add_tail(&cache->dirty_list,
3790 &cur_trans->dirty_bgs);
3791 btrfs_get_block_group(cache);
3792 }
3793 spin_unlock(&cur_trans->dirty_bgs_lock);
3794 } else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003795 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003796 }
3797 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003798
3799 /* if its not on the io list, we need to put the block group */
3800 if (should_put)
3801 btrfs_put_block_group(cache);
3802
3803 if (ret)
3804 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003805
3806 /*
3807 * Avoid blocking other tasks for too long. It might even save
3808 * us from writing caches for block groups that are going to be
3809 * removed.
3810 */
3811 mutex_unlock(&trans->transaction->cache_write_mutex);
3812 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003813 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003814 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003815
3816 /*
3817 * go through delayed refs for all the stuff we've just kicked off
3818 * and then loop back (just once)
3819 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003820 ret = btrfs_run_delayed_refs(trans, fs_info, 0);
Chris Mason1bbc6212015-04-06 12:46:08 -07003821 if (!ret && loops == 0) {
3822 loops++;
3823 spin_lock(&cur_trans->dirty_bgs_lock);
3824 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003825 /*
3826 * dirty_bgs_lock protects us from concurrent block group
3827 * deletes too (not just cache_write_mutex).
3828 */
3829 if (!list_empty(&dirty)) {
3830 spin_unlock(&cur_trans->dirty_bgs_lock);
3831 goto again;
3832 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003833 spin_unlock(&cur_trans->dirty_bgs_lock);
Liu Boc79a1752016-07-20 17:44:12 -07003834 } else if (ret < 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003835 btrfs_cleanup_dirty_bgs(cur_trans, fs_info);
Chris Mason1bbc6212015-04-06 12:46:08 -07003836 }
3837
3838 btrfs_free_path(path);
3839 return ret;
3840}
3841
Chris Mason96b51792007-10-15 16:15:19 -04003842int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003843 struct btrfs_fs_info *fs_info)
Chris Mason9078a3e2007-04-26 16:46:15 -04003844{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003845 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003846 struct btrfs_transaction *cur_trans = trans->transaction;
3847 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003848 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003849 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003850 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003851 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003852
3853 path = btrfs_alloc_path();
3854 if (!path)
3855 return -ENOMEM;
3856
Josef Bacikce93ec52014-11-17 15:45:48 -05003857 /*
Filipe Mananae44081e2015-12-18 03:02:48 +00003858 * Even though we are in the critical section of the transaction commit,
3859 * we can still have concurrent tasks adding elements to this
3860 * transaction's list of dirty block groups. These tasks correspond to
3861 * endio free space workers started when writeback finishes for a
3862 * space cache, which run inode.c:btrfs_finish_ordered_io(), and can
3863 * allocate new block groups as a result of COWing nodes of the root
3864 * tree when updating the free space inode. The writeback for the space
3865 * caches is triggered by an earlier call to
3866 * btrfs_start_dirty_block_groups() and iterations of the following
3867 * loop.
3868 * Also we want to do the cache_save_setup first and then run the
Josef Bacikce93ec52014-11-17 15:45:48 -05003869 * delayed refs to make sure we have the best chance at doing this all
3870 * in one shot.
3871 */
Filipe Mananae44081e2015-12-18 03:02:48 +00003872 spin_lock(&cur_trans->dirty_bgs_lock);
Josef Bacikce93ec52014-11-17 15:45:48 -05003873 while (!list_empty(&cur_trans->dirty_bgs)) {
3874 cache = list_first_entry(&cur_trans->dirty_bgs,
3875 struct btrfs_block_group_cache,
3876 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003877
3878 /*
3879 * this can happen if cache_save_setup re-dirties a block
3880 * group that is already under IO. Just wait for it to
3881 * finish and then do it all again
3882 */
3883 if (!list_empty(&cache->io_list)) {
Filipe Mananae44081e2015-12-18 03:02:48 +00003884 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003885 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003886 btrfs_wait_cache_io(trans, cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003887 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003888 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003889 }
3890
Chris Mason1bbc6212015-04-06 12:46:08 -07003891 /*
3892 * don't remove from the dirty list until after we've waited
3893 * on any pending IO
3894 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003895 list_del_init(&cache->dirty_list);
Filipe Mananae44081e2015-12-18 03:02:48 +00003896 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003897 should_put = 1;
3898
Chris Mason1bbc6212015-04-06 12:46:08 -07003899 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003900
Josef Bacikce93ec52014-11-17 15:45:48 -05003901 if (!ret)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003902 ret = btrfs_run_delayed_refs(trans, fs_info,
3903 (unsigned long) -1);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003904
3905 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3906 cache->io_ctl.inode = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003907 ret = btrfs_write_out_cache(fs_info, trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003908 cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003909 if (ret == 0 && cache->io_ctl.inode) {
3910 num_started++;
3911 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003912 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003913 } else {
3914 /*
3915 * if we failed to write the cache, the
3916 * generation will be bad and life goes on
3917 */
3918 ret = 0;
3919 }
3920 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003921 if (!ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003922 ret = write_one_cache_group(trans, fs_info,
3923 path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003924 /*
3925 * One of the free space endio workers might have
3926 * created a new block group while updating a free space
3927 * cache's inode (at inode.c:btrfs_finish_ordered_io())
3928 * and hasn't released its transaction handle yet, in
3929 * which case the new block group is still attached to
3930 * its transaction handle and its creation has not
3931 * finished yet (no block group item in the extent tree
3932 * yet, etc). If this is the case, wait for all free
3933 * space endio workers to finish and retry. This is a
3934 * a very rare case so no need for a more efficient and
3935 * complex approach.
3936 */
3937 if (ret == -ENOENT) {
3938 wait_event(cur_trans->writer_wait,
3939 atomic_read(&cur_trans->num_writers) == 1);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003940 ret = write_one_cache_group(trans, fs_info,
3941 path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003942 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003943 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003944 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003945 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003946
3947 /* if its not on the io list, we need to put the block group */
3948 if (should_put)
3949 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003950 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003951 }
Filipe Mananae44081e2015-12-18 03:02:48 +00003952 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003953
Chris Mason1bbc6212015-04-06 12:46:08 -07003954 while (!list_empty(io)) {
3955 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003956 io_list);
3957 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003958 btrfs_wait_cache_io(trans, cache, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003959 btrfs_put_block_group(cache);
3960 }
3961
Chris Mason9078a3e2007-04-26 16:46:15 -04003962 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003963 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003964}
3965
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003966int btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr)
Yan Zhengd2fb3432008-12-11 16:30:39 -05003967{
3968 struct btrfs_block_group_cache *block_group;
3969 int readonly = 0;
3970
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003971 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003972 if (!block_group || block_group->ro)
3973 readonly = 1;
3974 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003975 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003976 return readonly;
3977}
3978
Filipe Mananaf78c4362016-05-09 13:15:41 +01003979bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3980{
3981 struct btrfs_block_group_cache *bg;
3982 bool ret = true;
3983
3984 bg = btrfs_lookup_block_group(fs_info, bytenr);
3985 if (!bg)
3986 return false;
3987
3988 spin_lock(&bg->lock);
3989 if (bg->ro)
3990 ret = false;
3991 else
3992 atomic_inc(&bg->nocow_writers);
3993 spin_unlock(&bg->lock);
3994
3995 /* no put on block group, done by btrfs_dec_nocow_writers */
3996 if (!ret)
3997 btrfs_put_block_group(bg);
3998
3999 return ret;
4000
4001}
4002
4003void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
4004{
4005 struct btrfs_block_group_cache *bg;
4006
4007 bg = btrfs_lookup_block_group(fs_info, bytenr);
4008 ASSERT(bg);
4009 if (atomic_dec_and_test(&bg->nocow_writers))
4010 wake_up_atomic_t(&bg->nocow_writers);
4011 /*
4012 * Once for our lookup and once for the lookup done by a previous call
4013 * to btrfs_inc_nocow_writers()
4014 */
4015 btrfs_put_block_group(bg);
4016 btrfs_put_block_group(bg);
4017}
4018
4019static int btrfs_wait_nocow_writers_atomic_t(atomic_t *a)
4020{
4021 schedule();
4022 return 0;
4023}
4024
4025void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg)
4026{
4027 wait_on_atomic_t(&bg->nocow_writers,
4028 btrfs_wait_nocow_writers_atomic_t,
4029 TASK_UNINTERRUPTIBLE);
4030}
4031
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04004032static const char *alloc_name(u64 flags)
4033{
4034 switch (flags) {
4035 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
4036 return "mixed";
4037 case BTRFS_BLOCK_GROUP_METADATA:
4038 return "metadata";
4039 case BTRFS_BLOCK_GROUP_DATA:
4040 return "data";
4041 case BTRFS_BLOCK_GROUP_SYSTEM:
4042 return "system";
4043 default:
4044 WARN_ON(1);
4045 return "invalid-combination";
4046 };
4047}
4048
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03004049static int create_space_info(struct btrfs_fs_info *info, u64 flags,
4050 struct btrfs_space_info **new)
4051{
4052
4053 struct btrfs_space_info *space_info;
4054 int i;
4055 int ret;
4056
4057 space_info = kzalloc(sizeof(*space_info), GFP_NOFS);
4058 if (!space_info)
4059 return -ENOMEM;
4060
4061 ret = percpu_counter_init(&space_info->total_bytes_pinned, 0,
4062 GFP_KERNEL);
4063 if (ret) {
4064 kfree(space_info);
4065 return ret;
4066 }
4067
4068 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
4069 INIT_LIST_HEAD(&space_info->block_groups[i]);
4070 init_rwsem(&space_info->groups_sem);
4071 spin_lock_init(&space_info->lock);
4072 space_info->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
4073 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
4074 init_waitqueue_head(&space_info->wait);
4075 INIT_LIST_HEAD(&space_info->ro_bgs);
4076 INIT_LIST_HEAD(&space_info->tickets);
4077 INIT_LIST_HEAD(&space_info->priority_tickets);
4078
4079 ret = kobject_init_and_add(&space_info->kobj, &space_info_ktype,
4080 info->space_info_kobj, "%s",
4081 alloc_name(space_info->flags));
4082 if (ret) {
4083 percpu_counter_destroy(&space_info->total_bytes_pinned);
4084 kfree(space_info);
4085 return ret;
4086 }
4087
4088 *new = space_info;
4089 list_add_rcu(&space_info->list, &info->space_info);
4090 if (flags & BTRFS_BLOCK_GROUP_DATA)
4091 info->data_sinfo = space_info;
4092
4093 return ret;
4094}
4095
Nikolay Borisovd2006e6d2017-05-22 09:35:50 +03004096static void update_space_info(struct btrfs_fs_info *info, u64 flags,
Chris Mason593060d2008-03-25 16:50:33 -04004097 u64 total_bytes, u64 bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -04004098 u64 bytes_readonly,
Chris Mason593060d2008-03-25 16:50:33 -04004099 struct btrfs_space_info **space_info)
4100{
4101 struct btrfs_space_info *found;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004102 int factor;
4103
4104 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
4105 BTRFS_BLOCK_GROUP_RAID10))
4106 factor = 2;
4107 else
4108 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04004109
4110 found = __find_space_info(info, flags);
Nikolay Borisovd2006e6d2017-05-22 09:35:50 +03004111 ASSERT(found);
4112 spin_lock(&found->lock);
4113 found->total_bytes += total_bytes;
4114 found->disk_total += total_bytes * factor;
4115 found->bytes_used += bytes_used;
4116 found->disk_used += bytes_used * factor;
4117 found->bytes_readonly += bytes_readonly;
4118 if (total_bytes > 0)
4119 found->full = 0;
4120 space_info_add_new_bytes(info, found, total_bytes -
4121 bytes_used - bytes_readonly);
4122 spin_unlock(&found->lock);
4123 *space_info = found;
Chris Mason593060d2008-03-25 16:50:33 -04004124}
4125
Chris Mason8790d502008-04-03 16:29:03 -04004126static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
4127{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03004128 u64 extra_flags = chunk_to_extended(flags) &
4129 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004130
Miao Xiede98ced2013-01-29 10:13:12 +00004131 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004132 if (flags & BTRFS_BLOCK_GROUP_DATA)
4133 fs_info->avail_data_alloc_bits |= extra_flags;
4134 if (flags & BTRFS_BLOCK_GROUP_METADATA)
4135 fs_info->avail_metadata_alloc_bits |= extra_flags;
4136 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
4137 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004138 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04004139}
Chris Mason593060d2008-03-25 16:50:33 -04004140
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004141/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004142 * returns target flags in extended format or 0 if restripe for this
4143 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04004144 *
4145 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004146 */
4147static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
4148{
4149 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4150 u64 target = 0;
4151
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004152 if (!bctl)
4153 return 0;
4154
4155 if (flags & BTRFS_BLOCK_GROUP_DATA &&
4156 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4157 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
4158 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
4159 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4160 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
4161 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
4162 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4163 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
4164 }
4165
4166 return target;
4167}
4168
4169/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004170 * @flags: available profiles in extended format (see ctree.h)
4171 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004172 * Returns reduced profile in chunk format. If profile changing is in
4173 * progress (either running or paused) picks the target profile (if it's
4174 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004175 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004176static u64 btrfs_reduce_alloc_profile(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04004177{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004178 u64 num_devices = fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004179 u64 target;
Zhao Lei9c170b22015-09-15 21:08:08 +08004180 u64 raid_type;
4181 u64 allowed = 0;
Chris Masona061fc82008-05-07 11:43:44 -04004182
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004183 /*
4184 * see if restripe for this chunk_type is in progress, if so
4185 * try to reduce to the target profile
4186 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004187 spin_lock(&fs_info->balance_lock);
4188 target = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004189 if (target) {
4190 /* pick target profile only if it's already available */
4191 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004192 spin_unlock(&fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004193 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004194 }
4195 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004196 spin_unlock(&fs_info->balance_lock);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004197
David Woodhouse53b381b2013-01-29 18:40:14 -05004198 /* First, mask out the RAID levels which aren't possible */
Zhao Lei9c170b22015-09-15 21:08:08 +08004199 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
4200 if (num_devices >= btrfs_raid_array[raid_type].devs_min)
4201 allowed |= btrfs_raid_group[raid_type];
4202 }
4203 allowed &= flags;
Chris Masona061fc82008-05-07 11:43:44 -04004204
Zhao Lei9c170b22015-09-15 21:08:08 +08004205 if (allowed & BTRFS_BLOCK_GROUP_RAID6)
4206 allowed = BTRFS_BLOCK_GROUP_RAID6;
4207 else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
4208 allowed = BTRFS_BLOCK_GROUP_RAID5;
4209 else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
4210 allowed = BTRFS_BLOCK_GROUP_RAID10;
4211 else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
4212 allowed = BTRFS_BLOCK_GROUP_RAID1;
4213 else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
4214 allowed = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04004215
Zhao Lei9c170b22015-09-15 21:08:08 +08004216 flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
Chris Masonec44a352008-04-28 15:29:52 -04004217
Zhao Lei9c170b22015-09-15 21:08:08 +08004218 return extended_to_chunk(flags | allowed);
Chris Masonec44a352008-04-28 15:29:52 -04004219}
4220
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004221static u64 get_alloc_profile(struct btrfs_fs_info *fs_info, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05004222{
Miao Xiede98ced2013-01-29 10:13:12 +00004223 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004224 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004225
4226 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004227 flags = orig_flags;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004228 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00004229
4230 if (flags & BTRFS_BLOCK_GROUP_DATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004231 flags |= fs_info->avail_data_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004232 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004233 flags |= fs_info->avail_system_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004234 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004235 flags |= fs_info->avail_metadata_alloc_bits;
4236 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02004237
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004238 return btrfs_reduce_alloc_profile(fs_info, flags);
Yan, Zhengb742bb82010-05-16 10:46:24 -04004239}
Josef Bacik6a632092009-02-20 11:00:09 -05004240
Jeff Mahoney1b868262017-05-17 11:38:35 -04004241static u64 get_alloc_profile_by_root(struct btrfs_root *root, int data)
Yan, Zhengb742bb82010-05-16 10:46:24 -04004242{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004243 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengb742bb82010-05-16 10:46:24 -04004244 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05004245 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004246
Yan, Zhengb742bb82010-05-16 10:46:24 -04004247 if (data)
4248 flags = BTRFS_BLOCK_GROUP_DATA;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004249 else if (root == fs_info->chunk_root)
Yan, Zhengb742bb82010-05-16 10:46:24 -04004250 flags = BTRFS_BLOCK_GROUP_SYSTEM;
4251 else
4252 flags = BTRFS_BLOCK_GROUP_METADATA;
4253
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004254 ret = get_alloc_profile(fs_info, flags);
David Woodhouse53b381b2013-01-29 18:40:14 -05004255 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004256}
4257
Jeff Mahoney1b868262017-05-17 11:38:35 -04004258u64 btrfs_data_alloc_profile(struct btrfs_fs_info *fs_info)
4259{
4260 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_DATA);
4261}
4262
4263u64 btrfs_metadata_alloc_profile(struct btrfs_fs_info *fs_info)
4264{
4265 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4266}
4267
4268u64 btrfs_system_alloc_profile(struct btrfs_fs_info *fs_info)
4269{
4270 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4271}
4272
Liu Bo41361352017-02-13 15:42:21 -08004273static u64 btrfs_space_info_used(struct btrfs_space_info *s_info,
4274 bool may_use_included)
4275{
4276 ASSERT(s_info);
4277 return s_info->bytes_used + s_info->bytes_reserved +
4278 s_info->bytes_pinned + s_info->bytes_readonly +
4279 (may_use_included ? s_info->bytes_may_use : 0);
4280}
4281
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004282int btrfs_alloc_data_chunk_ondemand(struct btrfs_inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05004283{
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004284 struct btrfs_root *root = inode->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004285 struct btrfs_fs_info *fs_info = root->fs_info;
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004286 struct btrfs_space_info *data_sinfo = fs_info->data_sinfo;
Josef Bacikab6e24102010-03-19 14:38:13 +00004287 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08004288 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08004289 int need_commit = 2;
4290 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05004291
4292 /* make sure bytes are sectorsize aligned */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004293 bytes = ALIGN(bytes, fs_info->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05004294
Miao Xie9dced182013-10-25 17:33:36 +08004295 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004296 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08004297 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04004298 }
4299
Josef Bacik6a632092009-02-20 11:00:09 -05004300again:
4301 /* make sure we have enough space to handle the data first */
4302 spin_lock(&data_sinfo->lock);
Liu Bo41361352017-02-13 15:42:21 -08004303 used = btrfs_space_info_used(data_sinfo, true);
Josef Bacikab6e24102010-03-19 14:38:13 +00004304
4305 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004306 struct btrfs_trans_handle *trans;
4307
Josef Bacik6a632092009-02-20 11:00:09 -05004308 /*
4309 * if we don't have enough free bytes in this space then we need
4310 * to alloc a new chunk.
4311 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08004312 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05004313 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05004314
Chris Mason0e4f8f82011-04-15 16:05:44 -04004315 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05004316 spin_unlock(&data_sinfo->lock);
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004317
Jeff Mahoney1b868262017-05-17 11:38:35 -04004318 alloc_target = btrfs_data_alloc_profile(fs_info);
Miao Xie9dced182013-10-25 17:33:36 +08004319 /*
4320 * It is ugly that we don't call nolock join
4321 * transaction for the free space inode case here.
4322 * But it is safe because we only do the data space
4323 * reservation for the free space cache in the
4324 * transaction context, the common join transaction
4325 * just increase the counter of the current transaction
4326 * handler, doesn't try to acquire the trans_lock of
4327 * the fs.
4328 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004329 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004330 if (IS_ERR(trans))
4331 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05004332
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004333 ret = do_chunk_alloc(trans, fs_info, alloc_target,
Chris Mason0e4f8f82011-04-15 16:05:44 -04004334 CHUNK_ALLOC_NO_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004335 btrfs_end_transaction(trans);
Miao Xied52a5b52011-01-05 10:07:18 +00004336 if (ret < 0) {
4337 if (ret != -ENOSPC)
4338 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08004339 else {
4340 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00004341 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08004342 }
Miao Xied52a5b52011-01-05 10:07:18 +00004343 }
Chris Mason33b4d472009-09-22 14:45:50 -04004344
Josef Bacik6a632092009-02-20 11:00:09 -05004345 goto again;
4346 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004347
4348 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04004349 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08004350 * allocation, and no removed chunk in current transaction,
4351 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004352 */
Zhao Leic99f1b02015-03-02 19:32:20 +08004353 have_pinned_space = percpu_counter_compare(
4354 &data_sinfo->total_bytes_pinned,
4355 used + bytes - data_sinfo->total_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05004356 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004357
4358 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00004359commit_trans:
Zhao Leic99f1b02015-03-02 19:32:20 +08004360 if (need_commit &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004361 !atomic_read(&fs_info->open_ioctl_trans)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004362 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04004363
Zhao Leie1746e82015-12-01 18:39:40 +08004364 if (need_commit > 0) {
4365 btrfs_start_delalloc_roots(fs_info, 0, -1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004366 btrfs_wait_ordered_roots(fs_info, U64_MAX, 0,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004367 (u64)-1);
Zhao Leie1746e82015-12-01 18:39:40 +08004368 }
Zhao Lei9a4e7272015-04-09 12:34:43 +08004369
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004370 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004371 if (IS_ERR(trans))
4372 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08004373 if (have_pinned_space >= 0 ||
Josef Bacik3204d332015-09-24 10:46:10 -04004374 test_bit(BTRFS_TRANS_HAVE_FREE_BGS,
4375 &trans->transaction->flags) ||
Zhao Leic99f1b02015-03-02 19:32:20 +08004376 need_commit > 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004377 ret = btrfs_commit_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004378 if (ret)
4379 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08004380 /*
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004381 * The cleaner kthread might still be doing iput
4382 * operations. Wait for it to finish so that
4383 * more space is released.
Zhao Leid7c15172015-02-26 10:49:20 +08004384 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004385 mutex_lock(&fs_info->cleaner_delayed_iput_mutex);
4386 mutex_unlock(&fs_info->cleaner_delayed_iput_mutex);
Zhao Lei94b947b2015-02-14 13:23:45 +08004387 goto again;
4388 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004389 btrfs_end_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004390 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004391 }
4392
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004393 trace_btrfs_space_reservation(fs_info,
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004394 "space_info:enospc",
4395 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004396 return -ENOSPC;
4397 }
4398 data_sinfo->bytes_may_use += bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004399 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004400 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004401 spin_unlock(&data_sinfo->lock);
4402
Dongsheng Yang237c0e92014-12-29 06:23:05 -05004403 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004404}
4405
Qu Wenruo364ecf32017-02-27 15:10:38 +08004406int btrfs_check_data_free_space(struct inode *inode,
4407 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004408{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004409 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004410 int ret;
4411
4412 /* align the range */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004413 len = round_up(start + len, fs_info->sectorsize) -
4414 round_down(start, fs_info->sectorsize);
4415 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004416
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004417 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode), len);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004418 if (ret < 0)
4419 return ret;
4420
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004421 /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */
Qu Wenruo364ecf32017-02-27 15:10:38 +08004422 ret = btrfs_qgroup_reserve_data(inode, reserved, start, len);
Qu Wenruo7bc329c2017-02-27 15:10:36 +08004423 if (ret < 0)
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004424 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruo364ecf32017-02-27 15:10:38 +08004425 else
4426 ret = 0;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004427 return ret;
4428}
4429
4430/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004431 * Called if we need to clear a data reservation for this inode
4432 * Normally in a error case.
4433 *
Qu Wenruo51773be2015-10-08 18:19:37 +08004434 * This one will *NOT* use accurate qgroup reserved space API, just for case
4435 * which we can't sleep and is sure it won't affect qgroup reserved space.
4436 * Like clear_bit_hook().
Qu Wenruo4ceff072015-09-08 17:22:42 +08004437 */
Qu Wenruo51773be2015-10-08 18:19:37 +08004438void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start,
4439 u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004440{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004441 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004442 struct btrfs_space_info *data_sinfo;
4443
4444 /* Make sure the range is aligned to sectorsize */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004445 len = round_up(start + len, fs_info->sectorsize) -
4446 round_down(start, fs_info->sectorsize);
4447 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004448
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004449 data_sinfo = fs_info->data_sinfo;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004450 spin_lock(&data_sinfo->lock);
4451 if (WARN_ON(data_sinfo->bytes_may_use < len))
4452 data_sinfo->bytes_may_use = 0;
4453 else
4454 data_sinfo->bytes_may_use -= len;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004455 trace_btrfs_space_reservation(fs_info, "space_info",
Qu Wenruo4ceff072015-09-08 17:22:42 +08004456 data_sinfo->flags, len, 0);
4457 spin_unlock(&data_sinfo->lock);
4458}
4459
Qu Wenruo51773be2015-10-08 18:19:37 +08004460/*
4461 * Called if we need to clear a data reservation for this inode
4462 * Normally in a error case.
4463 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04004464 * This one will handle the per-inode data rsv map for accurate reserved
Qu Wenruo51773be2015-10-08 18:19:37 +08004465 * space framework.
4466 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08004467void btrfs_free_reserved_data_space(struct inode *inode,
4468 struct extent_changeset *reserved, u64 start, u64 len)
Qu Wenruo51773be2015-10-08 18:19:37 +08004469{
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004470 struct btrfs_root *root = BTRFS_I(inode)->root;
4471
4472 /* Make sure the range is aligned to sectorsize */
Jeff Mahoneyda170662016-06-15 09:22:56 -04004473 len = round_up(start + len, root->fs_info->sectorsize) -
4474 round_down(start, root->fs_info->sectorsize);
4475 start = round_down(start, root->fs_info->sectorsize);
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004476
Qu Wenruo51773be2015-10-08 18:19:37 +08004477 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruobc42bda2017-02-27 15:10:39 +08004478 btrfs_qgroup_free_data(inode, reserved, start, len);
Qu Wenruo51773be2015-10-08 18:19:37 +08004479}
4480
Josef Bacik97e728d2009-04-21 17:40:57 -04004481static void force_metadata_allocation(struct btrfs_fs_info *info)
4482{
4483 struct list_head *head = &info->space_info;
4484 struct btrfs_space_info *found;
4485
4486 rcu_read_lock();
4487 list_for_each_entry_rcu(found, head, list) {
4488 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004489 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04004490 }
4491 rcu_read_unlock();
4492}
4493
Miao Xie3c76cd82013-04-25 10:12:38 +00004494static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4495{
4496 return (global->size << 1);
4497}
4498
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004499static int should_alloc_chunk(struct btrfs_fs_info *fs_info,
Josef Bacik698d0082012-09-12 14:08:47 -04004500 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004501{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004502 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004503 u64 bytes_used = btrfs_space_info_used(sinfo, false);
Chris Masone5bc2452010-10-26 13:37:56 -04004504 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004505
Chris Mason0e4f8f82011-04-15 16:05:44 -04004506 if (force == CHUNK_ALLOC_FORCE)
4507 return 1;
4508
4509 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04004510 * We need to take into account the global rsv because for all intents
4511 * and purposes it's used space. Don't worry about locking the
4512 * global_rsv, it doesn't change except when the transaction commits.
4513 */
Josef Bacik54338b52012-08-14 16:20:52 -04004514 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004515 bytes_used += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04004516
4517 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04004518 * in limited mode, we want to have some free space up to
4519 * about 1% of the FS size.
4520 */
4521 if (force == CHUNK_ALLOC_LIMITED) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004522 thresh = btrfs_super_total_bytes(fs_info->super_copy);
Byongho Leeee221842015-12-15 01:42:10 +09004523 thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
Chris Mason0e4f8f82011-04-15 16:05:44 -04004524
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004525 if (sinfo->total_bytes - bytes_used < thresh)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004526 return 1;
4527 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004528
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004529 if (bytes_used + SZ_2M < div_factor(sinfo->total_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004530 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004531 return 1;
4532}
4533
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004534static u64 get_profile_num_devs(struct btrfs_fs_info *fs_info, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004535{
4536 u64 num_dev;
4537
David Woodhouse53b381b2013-01-29 18:40:14 -05004538 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
4539 BTRFS_BLOCK_GROUP_RAID0 |
4540 BTRFS_BLOCK_GROUP_RAID5 |
4541 BTRFS_BLOCK_GROUP_RAID6))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004542 num_dev = fs_info->fs_devices->rw_devices;
Liu Bo15d1ff82012-03-29 09:57:44 -04004543 else if (type & BTRFS_BLOCK_GROUP_RAID1)
4544 num_dev = 2;
4545 else
4546 num_dev = 1; /* DUP or single */
4547
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004548 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004549}
4550
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004551/*
4552 * If @is_allocation is true, reserve space in the system space info necessary
4553 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4554 * removing a chunk.
4555 */
4556void check_system_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004557 struct btrfs_fs_info *fs_info, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004558{
4559 struct btrfs_space_info *info;
4560 u64 left;
4561 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004562 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004563 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004564
4565 /*
4566 * Needed because we can end up allocating a system chunk and for an
4567 * atomic and race free space reservation in the chunk block reserve.
4568 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004569 ASSERT(mutex_is_locked(&fs_info->chunk_mutex));
Liu Bo15d1ff82012-03-29 09:57:44 -04004570
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004571 info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
Liu Bo15d1ff82012-03-29 09:57:44 -04004572 spin_lock(&info->lock);
Liu Bo41361352017-02-13 15:42:21 -08004573 left = info->total_bytes - btrfs_space_info_used(info, true);
Liu Bo15d1ff82012-03-29 09:57:44 -04004574 spin_unlock(&info->lock);
4575
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004576 num_devs = get_profile_num_devs(fs_info, type);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004577
4578 /* num_devs device items to update and 1 chunk item to add or remove */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004579 thresh = btrfs_calc_trunc_metadata_size(fs_info, num_devs) +
4580 btrfs_calc_trans_metadata_size(fs_info, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004581
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004582 if (left < thresh && btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
4583 btrfs_info(fs_info, "left=%llu, need=%llu, flags=%llu",
4584 left, thresh, type);
4585 dump_space_info(fs_info, info, 0, 0);
Liu Bo15d1ff82012-03-29 09:57:44 -04004586 }
4587
4588 if (left < thresh) {
Jeff Mahoney1b868262017-05-17 11:38:35 -04004589 u64 flags = btrfs_system_alloc_profile(fs_info);
Liu Bo15d1ff82012-03-29 09:57:44 -04004590
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004591 /*
4592 * Ignore failure to create system chunk. We might end up not
4593 * needing it, as we might not need to COW all nodes/leafs from
4594 * the paths we visit in the chunk tree (they were already COWed
4595 * or created in the current transaction for example).
4596 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004597 ret = btrfs_alloc_chunk(trans, fs_info, flags);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004598 }
4599
4600 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004601 ret = btrfs_block_rsv_add(fs_info->chunk_root,
4602 &fs_info->chunk_block_rsv,
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004603 thresh, BTRFS_RESERVE_NO_FLUSH);
4604 if (!ret)
4605 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004606 }
4607}
4608
Liu Bo28b737f2016-07-29 11:09:50 -07004609/*
4610 * If force is CHUNK_ALLOC_FORCE:
4611 * - return 1 if it successfully allocates a chunk,
4612 * - return errors including -ENOSPC otherwise.
4613 * If force is NOT CHUNK_ALLOC_FORCE:
4614 * - return 0 if it doesn't need to allocate a new chunk,
4615 * - return 1 if it successfully allocates a chunk,
4616 * - return errors including -ENOSPC otherwise.
4617 */
Chris Mason6324fbf2008-03-24 15:01:59 -04004618static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004619 struct btrfs_fs_info *fs_info, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004620{
4621 struct btrfs_space_info *space_info;
Josef Bacik6d741192011-04-11 20:20:11 -04004622 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05004623 int ret = 0;
4624
Josef Bacikc6b305a2012-12-18 09:16:16 -05004625 /* Don't re-enter if we're already allocating a chunk */
4626 if (trans->allocating_chunk)
4627 return -ENOSPC;
4628
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004629 space_info = __find_space_info(fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04004630 if (!space_info) {
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03004631 ret = create_space_info(fs_info, flags, &space_info);
4632 if (ret)
4633 return ret;
Chris Mason593060d2008-03-25 16:50:33 -04004634 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004635
Josef Bacik6d741192011-04-11 20:20:11 -04004636again:
Josef Bacik25179202008-10-29 14:49:05 -04004637 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05004638 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004639 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04004640 if (space_info->full) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004641 if (should_alloc_chunk(fs_info, space_info, force))
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004642 ret = -ENOSPC;
4643 else
4644 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04004645 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004646 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04004647 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004648
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004649 if (!should_alloc_chunk(fs_info, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04004650 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04004651 return 0;
4652 } else if (space_info->chunk_alloc) {
4653 wait_for_alloc = 1;
4654 } else {
4655 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04004656 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004657
Josef Bacik25179202008-10-29 14:49:05 -04004658 spin_unlock(&space_info->lock);
4659
Josef Bacik6d741192011-04-11 20:20:11 -04004660 mutex_lock(&fs_info->chunk_mutex);
4661
4662 /*
4663 * The chunk_mutex is held throughout the entirety of a chunk
4664 * allocation, so once we've acquired the chunk_mutex we know that the
4665 * other guy is done and we need to recheck and see if we should
4666 * allocate.
4667 */
4668 if (wait_for_alloc) {
4669 mutex_unlock(&fs_info->chunk_mutex);
4670 wait_for_alloc = 0;
4671 goto again;
4672 }
4673
Josef Bacikc6b305a2012-12-18 09:16:16 -05004674 trans->allocating_chunk = true;
4675
Josef Bacik97e728d2009-04-21 17:40:57 -04004676 /*
Josef Bacik67377732010-09-16 16:19:09 -04004677 * If we have mixed data/metadata chunks we want to make sure we keep
4678 * allocating mixed chunks instead of individual chunks.
4679 */
4680 if (btrfs_mixed_space_info(space_info))
4681 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4682
4683 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004684 * if we're doing a data chunk, go ahead and make sure that
4685 * we keep a reasonable number of metadata chunks allocated in the
4686 * FS as well.
4687 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004688 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004689 fs_info->data_chunk_allocations++;
4690 if (!(fs_info->data_chunk_allocations %
4691 fs_info->metadata_ratio))
4692 force_metadata_allocation(fs_info);
4693 }
4694
Liu Bo15d1ff82012-03-29 09:57:44 -04004695 /*
4696 * Check if we have enough space in SYSTEM chunk because we may need
4697 * to update devices.
4698 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004699 check_system_chunk(trans, fs_info, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004700
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004701 ret = btrfs_alloc_chunk(trans, fs_info, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004702 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004703
Josef Bacik9ed74f22009-09-11 16:12:44 -04004704 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004705 if (ret < 0 && ret != -ENOSPC)
4706 goto out;
Chris Masond3977122009-01-05 21:25:51 -05004707 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04004708 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04004709 else
4710 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04004711
Chris Mason0e4f8f82011-04-15 16:05:44 -04004712 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004713out:
Josef Bacik6d741192011-04-11 20:20:11 -04004714 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004715 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004716 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana00d80e32015-07-20 14:56:20 +01004717 /*
4718 * When we allocate a new chunk we reserve space in the chunk block
4719 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4720 * add new nodes/leafs to it if we end up needing to do it when
4721 * inserting the chunk item and updating device items as part of the
4722 * second phase of chunk allocation, performed by
4723 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4724 * large number of new block groups to create in our transaction
4725 * handle's new_bgs list to avoid exhausting the chunk block reserve
4726 * in extreme cases - like having a single transaction create many new
4727 * block groups when starting to write out the free space caches of all
4728 * the block groups that were made dirty during the lifetime of the
4729 * transaction.
4730 */
Filipe Mananad9a05402015-10-03 13:13:13 +01004731 if (trans->can_flush_pending_bgs &&
Byongho Leeee221842015-12-15 01:42:10 +09004732 trans->chunk_bytes_reserved >= (u64)SZ_2M) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004733 btrfs_create_pending_block_groups(trans, fs_info);
Filipe Manana00d80e32015-07-20 14:56:20 +01004734 btrfs_trans_release_chunk_metadata(trans);
4735 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004736 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004737}
4738
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004739static int can_overcommit(struct btrfs_fs_info *fs_info,
Josef Bacika80c8dc2012-09-06 16:59:33 -04004740 struct btrfs_space_info *space_info, u64 bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004741 enum btrfs_reserve_flush_enum flush,
4742 bool system_chunk)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004743{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004744 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04004745 u64 profile;
Miao Xie3c76cd82013-04-25 10:12:38 +00004746 u64 space_size;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004747 u64 avail;
4748 u64 used;
4749
Josef Bacik957780e2016-05-17 13:30:55 -04004750 /* Don't overcommit when in mixed mode. */
4751 if (space_info->flags & BTRFS_BLOCK_GROUP_DATA)
4752 return 0;
4753
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004754 if (system_chunk)
4755 profile = btrfs_system_alloc_profile(fs_info);
4756 else
4757 profile = btrfs_metadata_alloc_profile(fs_info);
4758
Liu Bo41361352017-02-13 15:42:21 -08004759 used = btrfs_space_info_used(space_info, false);
Josef Bacik96f1bb52013-01-30 17:02:51 -05004760
Josef Bacik96f1bb52013-01-30 17:02:51 -05004761 /*
4762 * We only want to allow over committing if we have lots of actual space
4763 * free, but if we don't have enough space to handle the global reserve
4764 * space then we could end up having a real enospc problem when trying
4765 * to allocate a chunk or some other such important allocation.
4766 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004767 spin_lock(&global_rsv->lock);
4768 space_size = calc_global_rsv_need_space(global_rsv);
4769 spin_unlock(&global_rsv->lock);
4770 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004771 return 0;
4772
4773 used += space_info->bytes_may_use;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004774
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004775 avail = atomic64_read(&fs_info->free_chunk_space);
Josef Bacika80c8dc2012-09-06 16:59:33 -04004776
4777 /*
4778 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05004779 * space is actually useable. For raid56, the space info used
4780 * doesn't include the parity drive, so we don't have to
4781 * change the math
Josef Bacika80c8dc2012-09-06 16:59:33 -04004782 */
4783 if (profile & (BTRFS_BLOCK_GROUP_DUP |
4784 BTRFS_BLOCK_GROUP_RAID1 |
4785 BTRFS_BLOCK_GROUP_RAID10))
4786 avail >>= 1;
4787
4788 /*
Miao Xie561c2942012-10-16 11:32:18 +00004789 * If we aren't flushing all things, let us overcommit up to
4790 * 1/2th of the space. If we can flush, don't let us overcommit
4791 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dc2012-09-06 16:59:33 -04004792 */
Miao Xie08e007d2012-10-16 11:33:38 +00004793 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004794 avail >>= 3;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004795 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004796 avail >>= 1;
Josef Bacika80c8dc2012-09-06 16:59:33 -04004797
Josef Bacik14575ae2013-09-17 10:48:00 -04004798 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dc2012-09-06 16:59:33 -04004799 return 1;
4800 return 0;
4801}
4802
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004803static void btrfs_writeback_inodes_sb_nr(struct btrfs_fs_info *fs_info,
Miao Xie6c255e62014-03-06 13:55:01 +08004804 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004805{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004806 struct super_block *sb = fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004807
Josef Bacik925a6ef2013-06-20 12:31:27 -04004808 if (down_read_trylock(&sb->s_umount)) {
4809 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4810 up_read(&sb->s_umount);
4811 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004812 /*
4813 * We needn't worry the filesystem going from r/w to r/o though
4814 * we don't acquire ->s_umount mutex, because the filesystem
4815 * should guarantee the delalloc inodes list be empty after
4816 * the filesystem is readonly(all dirty pages are written to
4817 * the disk).
4818 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004819 btrfs_start_delalloc_roots(fs_info, 0, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004820 if (!current->journal_info)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004821 btrfs_wait_ordered_roots(fs_info, nr_items, 0, (u64)-1);
Miao Xieda633a42012-12-20 11:19:09 +00004822 }
4823}
4824
Chris Mason6374e57a2017-06-23 09:48:21 -07004825static inline u64 calc_reclaim_items_nr(struct btrfs_fs_info *fs_info,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004826 u64 to_reclaim)
Miao Xie18cd8ea2013-11-04 23:13:22 +08004827{
4828 u64 bytes;
Chris Mason6374e57a2017-06-23 09:48:21 -07004829 u64 nr;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004830
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004831 bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004832 nr = div64_u64(to_reclaim, bytes);
Miao Xie18cd8ea2013-11-04 23:13:22 +08004833 if (!nr)
4834 nr = 1;
4835 return nr;
4836}
4837
Byongho Leeee221842015-12-15 01:42:10 +09004838#define EXTENT_SIZE_PER_ITEM SZ_256K
Miao Xiec61a16a2013-11-04 23:13:23 +08004839
Yan, Zheng5da9d012010-05-16 10:46:25 -04004840/*
4841 * shrink metadata reservation for delalloc
4842 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004843static void shrink_delalloc(struct btrfs_fs_info *fs_info, u64 to_reclaim,
4844 u64 orig, bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004845{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004846 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004847 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004848 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004849 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004850 u64 max_reclaim;
Chris Mason6374e57a2017-06-23 09:48:21 -07004851 u64 items;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004852 long time_left;
Miao Xied3ee29e32013-11-04 23:13:20 +08004853 unsigned long nr_pages;
4854 int loops;
Miao Xie08e007d2012-10-16 11:33:38 +00004855 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004856
Miao Xiec61a16a2013-11-04 23:13:23 +08004857 /* Calc the number of the pages we need flush for space reservation */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004858 items = calc_reclaim_items_nr(fs_info, to_reclaim);
Chris Mason6374e57a2017-06-23 09:48:21 -07004859 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004860
Josef Bacik663350a2011-11-03 22:54:25 -04004861 trans = (struct btrfs_trans_handle *)current->journal_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004862 block_rsv = &fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004863 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004864
Miao Xie963d6782013-01-29 10:10:51 +00004865 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004866 &fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004867 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004868 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004869 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004870 if (wait_ordered)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004871 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004872 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004873 }
4874
Miao Xied3ee29e32013-11-04 23:13:20 +08004875 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004876 while (delalloc_bytes && loops < 3) {
4877 max_reclaim = min(delalloc_bytes, to_reclaim);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004878 nr_pages = max_reclaim >> PAGE_SHIFT;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004879 btrfs_writeback_inodes_sb_nr(fs_info, nr_pages, items);
Josef Bacikdea31f52012-09-06 16:47:00 -04004880 /*
4881 * We need to wait for the async pages to actually start before
4882 * we do anything.
4883 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004884 max_reclaim = atomic_read(&fs_info->async_delalloc_pages);
Miao Xie9f3a0742013-11-04 23:13:24 +08004885 if (!max_reclaim)
4886 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004887
Miao Xie9f3a0742013-11-04 23:13:24 +08004888 if (max_reclaim <= nr_pages)
4889 max_reclaim = 0;
4890 else
4891 max_reclaim -= nr_pages;
4892
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004893 wait_event(fs_info->async_submit_wait,
4894 atomic_read(&fs_info->async_delalloc_pages) <=
Miao Xie9f3a0742013-11-04 23:13:24 +08004895 (int)max_reclaim);
4896skip_async:
Miao Xie08e007d2012-10-16 11:33:38 +00004897 if (!trans)
4898 flush = BTRFS_RESERVE_FLUSH_ALL;
4899 else
4900 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004901 spin_lock(&space_info->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04004902 if (list_empty(&space_info->tickets) &&
4903 list_empty(&space_info->priority_tickets)) {
4904 spin_unlock(&space_info->lock);
4905 break;
4906 }
Josef Bacik0019f102010-10-15 15:18:40 -04004907 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004908
Chris Mason36e39c42011-03-12 07:08:42 -05004909 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004910 if (wait_ordered && !trans) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004911 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf104d042011-10-14 13:56:58 -04004912 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004913 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004914 if (time_left)
4915 break;
4916 }
Miao Xie963d6782013-01-29 10:10:51 +00004917 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004918 &fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004919 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004920}
4921
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004922/**
Josef Bacik663350a2011-11-03 22:54:25 -04004923 * maybe_commit_transaction - possibly commit the transaction if its ok to
4924 * @root - the root we're allocating for
4925 * @bytes - the number of bytes we want to reserve
4926 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004927 *
Josef Bacik663350a2011-11-03 22:54:25 -04004928 * This will check to make sure that committing the transaction will actually
4929 * get us somewhere and then commit the transaction if it does. Otherwise it
4930 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004931 */
Jeff Mahoney0c9ab342017-02-15 16:28:28 -05004932static int may_commit_transaction(struct btrfs_fs_info *fs_info,
Josef Bacik663350a2011-11-03 22:54:25 -04004933 struct btrfs_space_info *space_info,
4934 u64 bytes, int force)
4935{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004936 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_block_rsv;
Josef Bacik663350a2011-11-03 22:54:25 -04004937 struct btrfs_trans_handle *trans;
4938
4939 trans = (struct btrfs_trans_handle *)current->journal_info;
4940 if (trans)
4941 return -EAGAIN;
4942
4943 if (force)
4944 goto commit;
4945
4946 /* See if there is enough pinned space to make this reservation */
Josef Bacikb150a4f2013-06-19 15:00:04 -04004947 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Miao Xie0424c542014-03-06 13:54:59 +08004948 bytes) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004949 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004950
4951 /*
4952 * See if there is some space in the delayed insertion reservation for
4953 * this reservation.
4954 */
4955 if (space_info != delayed_rsv->space_info)
4956 return -ENOSPC;
4957
4958 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004959 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Liu Bo28785f72017-05-19 11:39:15 -06004960 bytes - delayed_rsv->size) < 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004961 spin_unlock(&delayed_rsv->lock);
4962 return -ENOSPC;
4963 }
4964 spin_unlock(&delayed_rsv->lock);
4965
4966commit:
Jeff Mahoneya9b33112017-05-17 11:38:34 -04004967 trans = btrfs_join_transaction(fs_info->extent_root);
Josef Bacik663350a2011-11-03 22:54:25 -04004968 if (IS_ERR(trans))
4969 return -ENOSPC;
4970
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004971 return btrfs_commit_transaction(trans);
Josef Bacik663350a2011-11-03 22:54:25 -04004972}
4973
Josef Bacik957780e2016-05-17 13:30:55 -04004974struct reserve_ticket {
4975 u64 bytes;
4976 int error;
4977 struct list_head list;
4978 wait_queue_head_t wait;
Josef Bacik96c3f432012-06-21 14:05:49 -04004979};
4980
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03004981/*
4982 * Try to flush some data based on policy set by @state. This is only advisory
4983 * and may fail for various reasons. The caller is supposed to examine the
4984 * state of @space_info to detect the outcome.
4985 */
4986static void flush_space(struct btrfs_fs_info *fs_info,
Josef Bacik96c3f432012-06-21 14:05:49 -04004987 struct btrfs_space_info *space_info, u64 num_bytes,
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004988 int state)
Josef Bacik96c3f432012-06-21 14:05:49 -04004989{
Jeff Mahoneya9b33112017-05-17 11:38:34 -04004990 struct btrfs_root *root = fs_info->extent_root;
Josef Bacik96c3f432012-06-21 14:05:49 -04004991 struct btrfs_trans_handle *trans;
4992 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004993 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004994
4995 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004996 case FLUSH_DELAYED_ITEMS_NR:
4997 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004998 if (state == FLUSH_DELAYED_ITEMS_NR)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004999 nr = calc_reclaim_items_nr(fs_info, num_bytes) * 2;
Miao Xie18cd8ea2013-11-04 23:13:22 +08005000 else
Josef Bacik96c3f432012-06-21 14:05:49 -04005001 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08005002
Josef Bacik96c3f432012-06-21 14:05:49 -04005003 trans = btrfs_join_transaction(root);
5004 if (IS_ERR(trans)) {
5005 ret = PTR_ERR(trans);
5006 break;
5007 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005008 ret = btrfs_run_delayed_items_nr(trans, fs_info, nr);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005009 btrfs_end_transaction(trans);
Josef Bacik96c3f432012-06-21 14:05:49 -04005010 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04005011 case FLUSH_DELALLOC:
5012 case FLUSH_DELALLOC_WAIT:
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03005013 shrink_delalloc(fs_info, num_bytes * 2, num_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04005014 state == FLUSH_DELALLOC_WAIT);
5015 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04005016 case ALLOC_CHUNK:
5017 trans = btrfs_join_transaction(root);
5018 if (IS_ERR(trans)) {
5019 ret = PTR_ERR(trans);
5020 break;
5021 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005022 ret = do_chunk_alloc(trans, fs_info,
Jeff Mahoney1b868262017-05-17 11:38:35 -04005023 btrfs_metadata_alloc_profile(fs_info),
Josef Bacikea658ba2012-09-11 16:57:25 -04005024 CHUNK_ALLOC_NO_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04005025 btrfs_end_transaction(trans);
Alex Lyakaseecba892015-12-06 12:32:31 +02005026 if (ret > 0 || ret == -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04005027 ret = 0;
5028 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04005029 case COMMIT_TRANS:
Jeff Mahoney0c9ab342017-02-15 16:28:28 -05005030 ret = may_commit_transaction(fs_info, space_info,
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03005031 num_bytes, 0);
Josef Bacik96c3f432012-06-21 14:05:49 -04005032 break;
5033 default:
5034 ret = -ENOSPC;
5035 break;
5036 }
5037
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03005038 trace_btrfs_flush_space(fs_info, space_info->flags, num_bytes, state,
5039 ret);
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03005040 return;
Josef Bacik96c3f432012-06-21 14:05:49 -04005041}
Miao Xie21c7e752014-05-13 17:29:04 -07005042
5043static inline u64
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005044btrfs_calc_reclaim_metadata_size(struct btrfs_fs_info *fs_info,
5045 struct btrfs_space_info *space_info,
5046 bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07005047{
Josef Bacik957780e2016-05-17 13:30:55 -04005048 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07005049 u64 used;
5050 u64 expected;
Josef Bacik957780e2016-05-17 13:30:55 -04005051 u64 to_reclaim = 0;
Miao Xie21c7e752014-05-13 17:29:04 -07005052
Josef Bacik957780e2016-05-17 13:30:55 -04005053 list_for_each_entry(ticket, &space_info->tickets, list)
5054 to_reclaim += ticket->bytes;
5055 list_for_each_entry(ticket, &space_info->priority_tickets, list)
5056 to_reclaim += ticket->bytes;
5057 if (to_reclaim)
5058 return to_reclaim;
Miao Xie21c7e752014-05-13 17:29:04 -07005059
Wang Xiaoguange0af2482016-08-31 19:46:16 +08005060 to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005061 if (can_overcommit(fs_info, space_info, to_reclaim,
5062 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Wang Xiaoguange0af2482016-08-31 19:46:16 +08005063 return 0;
5064
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03005065 used = btrfs_space_info_used(space_info, true);
5066
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005067 if (can_overcommit(fs_info, space_info, SZ_1M,
5068 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Miao Xie21c7e752014-05-13 17:29:04 -07005069 expected = div_factor_fine(space_info->total_bytes, 95);
5070 else
5071 expected = div_factor_fine(space_info->total_bytes, 90);
5072
5073 if (used > expected)
5074 to_reclaim = used - expected;
5075 else
5076 to_reclaim = 0;
5077 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
5078 space_info->bytes_reserved);
Miao Xie21c7e752014-05-13 17:29:04 -07005079 return to_reclaim;
5080}
5081
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005082static inline int need_do_async_reclaim(struct btrfs_fs_info *fs_info,
5083 struct btrfs_space_info *space_info,
5084 u64 used, bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07005085{
Josef Bacik365c5312015-02-18 13:58:15 -08005086 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
5087
5088 /* If we're just plain full then async reclaim just slows us down. */
Josef Bacikbaee8792016-01-26 09:35:38 -05005089 if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh)
Josef Bacik365c5312015-02-18 13:58:15 -08005090 return 0;
5091
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005092 if (!btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5093 system_chunk))
Liu Bo25ce4592014-09-10 12:58:50 +08005094 return 0;
Liu Bo25ce4592014-09-10 12:58:50 +08005095
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005096 return (used >= thresh && !btrfs_fs_closing(fs_info) &&
5097 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
Miao Xie21c7e752014-05-13 17:29:04 -07005098}
5099
Josef Bacik957780e2016-05-17 13:30:55 -04005100static void wake_all_tickets(struct list_head *head)
Miao Xie21c7e752014-05-13 17:29:04 -07005101{
Josef Bacik957780e2016-05-17 13:30:55 -04005102 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07005103
Josef Bacik957780e2016-05-17 13:30:55 -04005104 while (!list_empty(head)) {
5105 ticket = list_first_entry(head, struct reserve_ticket, list);
5106 list_del_init(&ticket->list);
5107 ticket->error = -ENOSPC;
5108 wake_up(&ticket->wait);
Miao Xie21c7e752014-05-13 17:29:04 -07005109 }
Miao Xie21c7e752014-05-13 17:29:04 -07005110}
5111
Josef Bacik957780e2016-05-17 13:30:55 -04005112/*
5113 * This is for normal flushers, we can wait all goddamned day if we want to. We
5114 * will loop and continuously try to flush as long as we are making progress.
5115 * We count progress as clearing off tickets each time we have to loop.
5116 */
Miao Xie21c7e752014-05-13 17:29:04 -07005117static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
5118{
5119 struct btrfs_fs_info *fs_info;
5120 struct btrfs_space_info *space_info;
5121 u64 to_reclaim;
5122 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04005123 int commit_cycles = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005124 u64 last_tickets_id;
Miao Xie21c7e752014-05-13 17:29:04 -07005125
5126 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
5127 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
5128
Josef Bacik957780e2016-05-17 13:30:55 -04005129 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 space_info->flush = 0;
5134 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005135 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005136 }
Wang Xiaoguangce129652016-09-02 10:58:46 +08005137 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005138 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005139
5140 flush_state = FLUSH_DELAYED_ITEMS_NR;
5141 do {
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03005142 flush_space(fs_info, space_info, to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04005143 spin_lock(&space_info->lock);
5144 if (list_empty(&space_info->tickets)) {
5145 space_info->flush = 0;
5146 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005147 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005148 }
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005149 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info,
5150 space_info,
5151 false);
Wang Xiaoguangce129652016-09-02 10:58:46 +08005152 if (last_tickets_id == space_info->tickets_id) {
Josef Bacik957780e2016-05-17 13:30:55 -04005153 flush_state++;
5154 } else {
Wang Xiaoguangce129652016-09-02 10:58:46 +08005155 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005156 flush_state = FLUSH_DELAYED_ITEMS_NR;
5157 if (commit_cycles)
5158 commit_cycles--;
5159 }
5160
5161 if (flush_state > COMMIT_TRANS) {
5162 commit_cycles++;
5163 if (commit_cycles > 2) {
5164 wake_all_tickets(&space_info->tickets);
5165 space_info->flush = 0;
5166 } else {
5167 flush_state = FLUSH_DELAYED_ITEMS_NR;
5168 }
5169 }
5170 spin_unlock(&space_info->lock);
5171 } while (flush_state <= COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07005172}
5173
5174void btrfs_init_async_reclaim_work(struct work_struct *work)
5175{
5176 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
5177}
5178
Josef Bacik957780e2016-05-17 13:30:55 -04005179static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info,
5180 struct btrfs_space_info *space_info,
5181 struct reserve_ticket *ticket)
5182{
5183 u64 to_reclaim;
5184 int flush_state = FLUSH_DELAYED_ITEMS_NR;
5185
5186 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005187 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5188 false);
Josef Bacik957780e2016-05-17 13:30:55 -04005189 if (!to_reclaim) {
5190 spin_unlock(&space_info->lock);
5191 return;
5192 }
5193 spin_unlock(&space_info->lock);
5194
5195 do {
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03005196 flush_space(fs_info, space_info, to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04005197 flush_state++;
5198 spin_lock(&space_info->lock);
5199 if (ticket->bytes == 0) {
5200 spin_unlock(&space_info->lock);
5201 return;
5202 }
5203 spin_unlock(&space_info->lock);
5204
5205 /*
5206 * Priority flushers can't wait on delalloc without
5207 * deadlocking.
5208 */
5209 if (flush_state == FLUSH_DELALLOC ||
5210 flush_state == FLUSH_DELALLOC_WAIT)
5211 flush_state = ALLOC_CHUNK;
5212 } while (flush_state < COMMIT_TRANS);
5213}
5214
5215static int wait_reserve_ticket(struct btrfs_fs_info *fs_info,
5216 struct btrfs_space_info *space_info,
5217 struct reserve_ticket *ticket, u64 orig_bytes)
5218
5219{
5220 DEFINE_WAIT(wait);
5221 int ret = 0;
5222
5223 spin_lock(&space_info->lock);
5224 while (ticket->bytes > 0 && ticket->error == 0) {
5225 ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE);
5226 if (ret) {
5227 ret = -EINTR;
5228 break;
5229 }
5230 spin_unlock(&space_info->lock);
5231
5232 schedule();
5233
5234 finish_wait(&ticket->wait, &wait);
5235 spin_lock(&space_info->lock);
5236 }
5237 if (!ret)
5238 ret = ticket->error;
5239 if (!list_empty(&ticket->list))
5240 list_del_init(&ticket->list);
5241 if (ticket->bytes && ticket->bytes < orig_bytes) {
5242 u64 num_bytes = orig_bytes - ticket->bytes;
5243 space_info->bytes_may_use -= num_bytes;
5244 trace_btrfs_space_reservation(fs_info, "space_info",
5245 space_info->flags, num_bytes, 0);
5246 }
5247 spin_unlock(&space_info->lock);
5248
5249 return ret;
5250}
5251
Josef Bacik663350a2011-11-03 22:54:25 -04005252/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005253 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5254 * @root - the root we're allocating for
Josef Bacik957780e2016-05-17 13:30:55 -04005255 * @space_info - the space info we want to allocate from
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005256 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04005257 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005258 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04005259 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005260 * with the block_rsv. If there is not enough space it will make an attempt to
5261 * flush out space to make room. It will do this by flushing delalloc if
5262 * possible or committing the transaction. If flush is 0 then no attempts to
5263 * regain reservations will be made and this will fail if there is not enough
5264 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005265 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005266static int __reserve_metadata_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik957780e2016-05-17 13:30:55 -04005267 struct btrfs_space_info *space_info,
5268 u64 orig_bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005269 enum btrfs_reserve_flush_enum flush,
5270 bool system_chunk)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005271{
Josef Bacik957780e2016-05-17 13:30:55 -04005272 struct reserve_ticket ticket;
Josef Bacik2bf64752011-09-26 17:12:22 -04005273 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005274 int ret = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005275
Josef Bacik957780e2016-05-17 13:30:55 -04005276 ASSERT(orig_bytes);
Josef Bacik8ca17f02016-05-27 13:24:13 -04005277 ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL);
5278
Yan, Zhengf0486c62010-05-16 10:46:25 -04005279 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04005280 ret = -ENOSPC;
Liu Bo41361352017-02-13 15:42:21 -08005281 used = btrfs_space_info_used(space_info, true);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005282
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005283 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005284 * If we have enough space then hooray, make our reservation and carry
5285 * on. If not see if we can overcommit, and if we can, hooray carry on.
5286 * If not things get more complicated.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005287 */
Josef Bacik957780e2016-05-17 13:30:55 -04005288 if (used + orig_bytes <= space_info->total_bytes) {
5289 space_info->bytes_may_use += orig_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005290 trace_btrfs_space_reservation(fs_info, "space_info",
5291 space_info->flags, orig_bytes, 1);
Josef Bacik957780e2016-05-17 13:30:55 -04005292 ret = 0;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005293 } else if (can_overcommit(fs_info, space_info, orig_bytes, flush,
5294 system_chunk)) {
Josef Bacik44734ed2012-09-28 16:04:19 -04005295 space_info->bytes_may_use += orig_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005296 trace_btrfs_space_reservation(fs_info, "space_info",
5297 space_info->flags, orig_bytes, 1);
Josef Bacik44734ed2012-09-28 16:04:19 -04005298 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04005299 }
5300
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005301 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005302 * If we couldn't make a reservation then setup our reservation ticket
5303 * and kick the async worker if it's not already running.
Miao Xie08e007d2012-10-16 11:33:38 +00005304 *
Josef Bacik957780e2016-05-17 13:30:55 -04005305 * If we are a priority flusher then we just need to add our ticket to
5306 * the list and we will do our own flushing further down.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005307 */
Josef Bacik72bcd992012-12-18 15:16:34 -05005308 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacik957780e2016-05-17 13:30:55 -04005309 ticket.bytes = orig_bytes;
5310 ticket.error = 0;
5311 init_waitqueue_head(&ticket.wait);
5312 if (flush == BTRFS_RESERVE_FLUSH_ALL) {
5313 list_add_tail(&ticket.list, &space_info->tickets);
5314 if (!space_info->flush) {
5315 space_info->flush = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005316 trace_btrfs_trigger_flush(fs_info,
Josef Bacikf376df22016-03-25 13:25:56 -04005317 space_info->flags,
5318 orig_bytes, flush,
5319 "enospc");
Josef Bacik957780e2016-05-17 13:30:55 -04005320 queue_work(system_unbound_wq,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005321 &fs_info->async_reclaim_work);
Josef Bacik957780e2016-05-17 13:30:55 -04005322 }
5323 } else {
5324 list_add_tail(&ticket.list,
5325 &space_info->priority_tickets);
5326 }
Miao Xie21c7e752014-05-13 17:29:04 -07005327 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
5328 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04005329 /*
5330 * We will do the space reservation dance during log replay,
5331 * which means we won't have fs_info->fs_root set, so don't do
5332 * the async reclaim as we will panic.
5333 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005334 if (!test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags) &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005335 need_do_async_reclaim(fs_info, space_info,
5336 used, system_chunk) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005337 !work_busy(&fs_info->async_reclaim_work)) {
5338 trace_btrfs_trigger_flush(fs_info, space_info->flags,
5339 orig_bytes, flush, "preempt");
Miao Xie21c7e752014-05-13 17:29:04 -07005340 queue_work(system_unbound_wq,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005341 &fs_info->async_reclaim_work);
Josef Bacikf376df22016-03-25 13:25:56 -04005342 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005343 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005344 spin_unlock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00005345 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik957780e2016-05-17 13:30:55 -04005346 return ret;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005347
Josef Bacik957780e2016-05-17 13:30:55 -04005348 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005349 return wait_reserve_ticket(fs_info, space_info, &ticket,
Josef Bacik957780e2016-05-17 13:30:55 -04005350 orig_bytes);
Miao Xie08e007d2012-10-16 11:33:38 +00005351
Josef Bacik957780e2016-05-17 13:30:55 -04005352 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005353 priority_reclaim_metadata_space(fs_info, space_info, &ticket);
Josef Bacik957780e2016-05-17 13:30:55 -04005354 spin_lock(&space_info->lock);
5355 if (ticket.bytes) {
5356 if (ticket.bytes < orig_bytes) {
5357 u64 num_bytes = orig_bytes - ticket.bytes;
5358 space_info->bytes_may_use -= num_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005359 trace_btrfs_space_reservation(fs_info, "space_info",
5360 space_info->flags,
5361 num_bytes, 0);
Miao Xie08e007d2012-10-16 11:33:38 +00005362
Josef Bacik957780e2016-05-17 13:30:55 -04005363 }
5364 list_del_init(&ticket.list);
5365 ret = -ENOSPC;
5366 }
5367 spin_unlock(&space_info->lock);
5368 ASSERT(list_empty(&ticket.list));
5369 return ret;
5370}
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005371
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005372/**
5373 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5374 * @root - the root we're allocating for
5375 * @block_rsv - the block_rsv we're allocating for
5376 * @orig_bytes - the number of bytes we want
5377 * @flush - whether or not we can flush to make our reservation
5378 *
Josef Bacik957780e2016-05-17 13:30:55 -04005379 * This will reserve orgi_bytes number of bytes from the space info associated
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005380 * with the block_rsv. If there is not enough space it will make an attempt to
5381 * flush out space to make room. It will do this by flushing delalloc if
5382 * possible or committing the transaction. If flush is 0 then no attempts to
5383 * regain reservations will be made and this will fail if there is not enough
5384 * space already.
5385 */
5386static int reserve_metadata_bytes(struct btrfs_root *root,
5387 struct btrfs_block_rsv *block_rsv,
5388 u64 orig_bytes,
5389 enum btrfs_reserve_flush_enum flush)
5390{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005391 struct btrfs_fs_info *fs_info = root->fs_info;
5392 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04005393 int ret;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005394 bool system_chunk = (root == fs_info->chunk_root);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005395
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005396 ret = __reserve_metadata_bytes(fs_info, block_rsv->space_info,
5397 orig_bytes, flush, system_chunk);
Josef Bacik5d803662013-02-07 16:06:02 -05005398 if (ret == -ENOSPC &&
5399 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
Josef Bacik5d803662013-02-07 16:06:02 -05005400 if (block_rsv != global_rsv &&
5401 !block_rsv_use_bytes(global_rsv, orig_bytes))
5402 ret = 0;
5403 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04005404 if (ret == -ENOSPC)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005405 trace_btrfs_space_reservation(fs_info, "space_info:enospc",
Josef Bacik957780e2016-05-17 13:30:55 -04005406 block_rsv->space_info->flags,
5407 orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005408 return ret;
5409}
5410
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005411static struct btrfs_block_rsv *get_block_rsv(
5412 const struct btrfs_trans_handle *trans,
5413 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005414{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005415 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik4c13d752011-08-30 11:31:29 -04005416 struct btrfs_block_rsv *block_rsv = NULL;
5417
Alexandru Moisee9cf4392015-09-09 00:18:50 +00005418 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005419 (root == fs_info->csum_root && trans->adding_csums) ||
5420 (root == fs_info->uuid_root))
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02005421 block_rsv = trans->block_rsv;
5422
Josef Bacik4c13d752011-08-30 11:31:29 -04005423 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005424 block_rsv = root->block_rsv;
5425
5426 if (!block_rsv)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005427 block_rsv = &fs_info->empty_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005428
5429 return block_rsv;
5430}
5431
5432static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
5433 u64 num_bytes)
5434{
5435 int ret = -ENOSPC;
5436 spin_lock(&block_rsv->lock);
5437 if (block_rsv->reserved >= num_bytes) {
5438 block_rsv->reserved -= num_bytes;
5439 if (block_rsv->reserved < block_rsv->size)
5440 block_rsv->full = 0;
5441 ret = 0;
5442 }
5443 spin_unlock(&block_rsv->lock);
5444 return ret;
5445}
5446
5447static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
5448 u64 num_bytes, int update_size)
5449{
5450 spin_lock(&block_rsv->lock);
5451 block_rsv->reserved += num_bytes;
5452 if (update_size)
5453 block_rsv->size += num_bytes;
5454 else if (block_rsv->reserved >= block_rsv->size)
5455 block_rsv->full = 1;
5456 spin_unlock(&block_rsv->lock);
5457}
5458
Josef Bacikd52be812013-05-29 14:54:47 -04005459int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
5460 struct btrfs_block_rsv *dest, u64 num_bytes,
5461 int min_factor)
5462{
5463 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5464 u64 min_bytes;
5465
5466 if (global_rsv->space_info != dest->space_info)
5467 return -ENOSPC;
5468
5469 spin_lock(&global_rsv->lock);
5470 min_bytes = div_factor(global_rsv->size, min_factor);
5471 if (global_rsv->reserved < min_bytes + num_bytes) {
5472 spin_unlock(&global_rsv->lock);
5473 return -ENOSPC;
5474 }
5475 global_rsv->reserved -= num_bytes;
5476 if (global_rsv->reserved < global_rsv->size)
5477 global_rsv->full = 0;
5478 spin_unlock(&global_rsv->lock);
5479
5480 block_rsv_add_bytes(dest, num_bytes, 1);
5481 return 0;
5482}
5483
Josef Bacik957780e2016-05-17 13:30:55 -04005484/*
5485 * This is for space we already have accounted in space_info->bytes_may_use, so
5486 * basically when we're returning space from block_rsv's.
5487 */
5488static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
5489 struct btrfs_space_info *space_info,
5490 u64 num_bytes)
5491{
5492 struct reserve_ticket *ticket;
5493 struct list_head *head;
5494 u64 used;
5495 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH;
5496 bool check_overcommit = false;
5497
5498 spin_lock(&space_info->lock);
5499 head = &space_info->priority_tickets;
5500
5501 /*
5502 * If we are over our limit then we need to check and see if we can
5503 * overcommit, and if we can't then we just need to free up our space
5504 * and not satisfy any requests.
5505 */
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03005506 used = btrfs_space_info_used(space_info, true);
Josef Bacik957780e2016-05-17 13:30:55 -04005507 if (used - num_bytes >= space_info->total_bytes)
5508 check_overcommit = true;
5509again:
5510 while (!list_empty(head) && num_bytes) {
5511 ticket = list_first_entry(head, struct reserve_ticket,
5512 list);
5513 /*
5514 * We use 0 bytes because this space is already reserved, so
5515 * adding the ticket space would be a double count.
5516 */
5517 if (check_overcommit &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005518 !can_overcommit(fs_info, space_info, 0, flush, false))
Josef Bacik957780e2016-05-17 13:30:55 -04005519 break;
5520 if (num_bytes >= ticket->bytes) {
5521 list_del_init(&ticket->list);
5522 num_bytes -= ticket->bytes;
5523 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005524 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005525 wake_up(&ticket->wait);
5526 } else {
5527 ticket->bytes -= num_bytes;
5528 num_bytes = 0;
5529 }
5530 }
5531
5532 if (num_bytes && head == &space_info->priority_tickets) {
5533 head = &space_info->tickets;
5534 flush = BTRFS_RESERVE_FLUSH_ALL;
5535 goto again;
5536 }
5537 space_info->bytes_may_use -= num_bytes;
5538 trace_btrfs_space_reservation(fs_info, "space_info",
5539 space_info->flags, num_bytes, 0);
5540 spin_unlock(&space_info->lock);
5541}
5542
5543/*
5544 * This is for newly allocated space that isn't accounted in
5545 * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent
5546 * we use this helper.
5547 */
5548static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
5549 struct btrfs_space_info *space_info,
5550 u64 num_bytes)
5551{
5552 struct reserve_ticket *ticket;
5553 struct list_head *head = &space_info->priority_tickets;
5554
5555again:
5556 while (!list_empty(head) && num_bytes) {
5557 ticket = list_first_entry(head, struct reserve_ticket,
5558 list);
5559 if (num_bytes >= ticket->bytes) {
5560 trace_btrfs_space_reservation(fs_info, "space_info",
5561 space_info->flags,
5562 ticket->bytes, 1);
5563 list_del_init(&ticket->list);
5564 num_bytes -= ticket->bytes;
5565 space_info->bytes_may_use += ticket->bytes;
5566 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005567 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005568 wake_up(&ticket->wait);
5569 } else {
5570 trace_btrfs_space_reservation(fs_info, "space_info",
5571 space_info->flags,
5572 num_bytes, 1);
5573 space_info->bytes_may_use += num_bytes;
5574 ticket->bytes -= num_bytes;
5575 num_bytes = 0;
5576 }
5577 }
5578
5579 if (num_bytes && head == &space_info->priority_tickets) {
5580 head = &space_info->tickets;
5581 goto again;
5582 }
5583}
5584
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005585static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
5586 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02005587 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005588{
5589 struct btrfs_space_info *space_info = block_rsv->space_info;
5590
5591 spin_lock(&block_rsv->lock);
5592 if (num_bytes == (u64)-1)
5593 num_bytes = block_rsv->size;
5594 block_rsv->size -= num_bytes;
5595 if (block_rsv->reserved >= block_rsv->size) {
5596 num_bytes = block_rsv->reserved - block_rsv->size;
5597 block_rsv->reserved = block_rsv->size;
5598 block_rsv->full = 1;
5599 } else {
5600 num_bytes = 0;
5601 }
5602 spin_unlock(&block_rsv->lock);
5603
5604 if (num_bytes > 0) {
5605 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00005606 spin_lock(&dest->lock);
5607 if (!dest->full) {
5608 u64 bytes_to_add;
5609
5610 bytes_to_add = dest->size - dest->reserved;
5611 bytes_to_add = min(num_bytes, bytes_to_add);
5612 dest->reserved += bytes_to_add;
5613 if (dest->reserved >= dest->size)
5614 dest->full = 1;
5615 num_bytes -= bytes_to_add;
5616 }
5617 spin_unlock(&dest->lock);
5618 }
Josef Bacik957780e2016-05-17 13:30:55 -04005619 if (num_bytes)
5620 space_info_add_old_bytes(fs_info, space_info,
5621 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005622 }
5623}
5624
Josef Bacik25d609f2016-03-25 13:25:48 -04005625int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src,
5626 struct btrfs_block_rsv *dst, u64 num_bytes,
5627 int update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005628{
5629 int ret;
5630
5631 ret = block_rsv_use_bytes(src, num_bytes);
5632 if (ret)
5633 return ret;
5634
Josef Bacik25d609f2016-03-25 13:25:48 -04005635 block_rsv_add_bytes(dst, num_bytes, update_size);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005636 return 0;
5637}
5638
Miao Xie66d8f3d2012-09-06 04:02:28 -06005639void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005640{
5641 memset(rsv, 0, sizeof(*rsv));
5642 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06005643 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005644}
5645
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005646struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_fs_info *fs_info,
Miao Xie66d8f3d2012-09-06 04:02:28 -06005647 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005648{
5649 struct btrfs_block_rsv *block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005650
5651 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
5652 if (!block_rsv)
5653 return NULL;
5654
Miao Xie66d8f3d2012-09-06 04:02:28 -06005655 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005656 block_rsv->space_info = __find_space_info(fs_info,
5657 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005658 return block_rsv;
5659}
5660
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005661void btrfs_free_block_rsv(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005662 struct btrfs_block_rsv *rsv)
5663{
Josef Bacik2aaa6652012-08-29 14:27:18 -04005664 if (!rsv)
5665 return;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005666 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Josef Bacikdabdb642011-08-08 12:50:18 -04005667 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005668}
5669
Chris Masoncdfb0802015-04-06 18:17:00 -07005670void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv)
5671{
5672 kfree(rsv);
5673}
5674
Miao Xie08e007d2012-10-16 11:33:38 +00005675int btrfs_block_rsv_add(struct btrfs_root *root,
5676 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
5677 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005678{
5679 int ret;
5680
5681 if (num_bytes == 0)
5682 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005683
Miao Xie61b520a2011-11-10 20:45:05 -05005684 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005685 if (!ret) {
5686 block_rsv_add_bytes(block_rsv, num_bytes, 1);
5687 return 0;
5688 }
5689
Yan, Zhengf0486c62010-05-16 10:46:25 -04005690 return ret;
5691}
5692
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005693int btrfs_block_rsv_check(struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005694{
5695 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005696 int ret = -ENOSPC;
5697
5698 if (!block_rsv)
5699 return 0;
5700
5701 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04005702 num_bytes = div_factor(block_rsv->size, min_factor);
5703 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005704 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005705 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005706
Josef Bacik36ba0222011-10-18 12:15:48 -04005707 return ret;
5708}
5709
Miao Xie08e007d2012-10-16 11:33:38 +00005710int btrfs_block_rsv_refill(struct btrfs_root *root,
5711 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5712 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04005713{
5714 u64 num_bytes = 0;
5715 int ret = -ENOSPC;
5716
5717 if (!block_rsv)
5718 return 0;
5719
5720 spin_lock(&block_rsv->lock);
5721 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005722 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005723 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005724 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005725 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005726 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005727
Yan, Zhengf0486c62010-05-16 10:46:25 -04005728 if (!ret)
5729 return 0;
5730
Miao Xieaa38a712011-11-18 17:43:00 +08005731 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005732 if (!ret) {
5733 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005734 return 0;
5735 }
5736
Josef Bacik13553e52011-08-08 13:33:21 -04005737 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005738}
5739
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005740void btrfs_block_rsv_release(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005741 struct btrfs_block_rsv *block_rsv,
5742 u64 num_bytes)
5743{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005744 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5745
Liu Bo17504582013-12-29 21:44:50 +08005746 if (global_rsv == block_rsv ||
Yan, Zhengf0486c62010-05-16 10:46:25 -04005747 block_rsv->space_info != global_rsv->space_info)
5748 global_rsv = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005749 block_rsv_release_bytes(fs_info, block_rsv, global_rsv, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005750}
5751
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005752static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5753{
5754 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5755 struct btrfs_space_info *sinfo = block_rsv->space_info;
5756 u64 num_bytes;
5757
Josef Bacikae2e4722016-05-27 12:58:35 -04005758 /*
5759 * The global block rsv is based on the size of the extent tree, the
5760 * checksum tree and the root tree. If the fs is empty we want to set
5761 * it to a minimal amount for safety.
5762 */
5763 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) +
5764 btrfs_root_used(&fs_info->csum_root->root_item) +
5765 btrfs_root_used(&fs_info->tree_root->root_item);
5766 num_bytes = max_t(u64, num_bytes, SZ_16M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005767
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005768 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005769 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005770
Byongho Leeee221842015-12-15 01:42:10 +09005771 block_rsv->size = min_t(u64, num_bytes, SZ_512M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005772
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005773 if (block_rsv->reserved < block_rsv->size) {
Liu Bo41361352017-02-13 15:42:21 -08005774 num_bytes = btrfs_space_info_used(sinfo, true);
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005775 if (sinfo->total_bytes > num_bytes) {
5776 num_bytes = sinfo->total_bytes - num_bytes;
5777 num_bytes = min(num_bytes,
5778 block_rsv->size - block_rsv->reserved);
5779 block_rsv->reserved += num_bytes;
5780 sinfo->bytes_may_use += num_bytes;
5781 trace_btrfs_space_reservation(fs_info, "space_info",
5782 sinfo->flags, num_bytes,
5783 1);
5784 }
5785 } else if (block_rsv->reserved > block_rsv->size) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005786 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04005787 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005788 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005789 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005790 block_rsv->reserved = block_rsv->size;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005791 }
David Sterba182608c2011-05-05 13:13:16 +02005792
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005793 if (block_rsv->reserved == block_rsv->size)
5794 block_rsv->full = 1;
5795 else
5796 block_rsv->full = 0;
5797
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005798 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005799 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005800}
5801
Yan, Zhengf0486c62010-05-16 10:46:25 -04005802static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5803{
5804 struct btrfs_space_info *space_info;
5805
5806 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5807 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005808
5809 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005810 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005811 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005812 fs_info->trans_block_rsv.space_info = space_info;
5813 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005814 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005815
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005816 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
5817 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
5818 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5819 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005820 if (fs_info->quota_root)
5821 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005822 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005823
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005824 update_global_block_rsv(fs_info);
5825}
5826
5827static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5828{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005829 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
5830 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005831 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
5832 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
5833 WARN_ON(fs_info->trans_block_rsv.size > 0);
5834 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5835 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5836 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04005837 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5838 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04005839}
5840
Yan, Zhenga22285a2010-05-16 10:48:46 -04005841void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005842 struct btrfs_fs_info *fs_info)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005843{
Josef Bacik0e721102012-06-26 16:13:18 -04005844 if (!trans->block_rsv)
5845 return;
5846
Yan, Zhenga22285a2010-05-16 10:48:46 -04005847 if (!trans->bytes_reserved)
5848 return;
5849
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005850 trace_btrfs_space_reservation(fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04005851 trans->transid, trans->bytes_reserved, 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005852 btrfs_block_rsv_release(fs_info, trans->block_rsv,
5853 trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005854 trans->bytes_reserved = 0;
5855}
5856
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005857/*
5858 * To be called after all the new block groups attached to the transaction
5859 * handle have been created (btrfs_create_pending_block_groups()).
5860 */
5861void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5862{
Jeff Mahoney64b63582016-06-20 17:23:41 -04005863 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005864
5865 if (!trans->chunk_bytes_reserved)
5866 return;
5867
5868 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5869
5870 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
5871 trans->chunk_bytes_reserved);
5872 trans->chunk_bytes_reserved = 0;
5873}
5874
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005875/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04005876int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
Nikolay Borisov8ed7a2a2017-02-20 13:50:39 +02005877 struct btrfs_inode *inode)
Yan, Zhengd68fc572010-05-16 10:49:58 -04005878{
Nikolay Borisov8ed7a2a2017-02-20 13:50:39 +02005879 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
5880 struct btrfs_root *root = inode->root;
Josef Bacik40acc3ee2016-05-27 13:01:08 -04005881 /*
5882 * We always use trans->block_rsv here as we will have reserved space
5883 * for our orphan when starting the transaction, using get_block_rsv()
5884 * here will sometimes make us choose the wrong block rsv as we could be
5885 * doing a reloc inode for a non refcounted root.
5886 */
5887 struct btrfs_block_rsv *src_rsv = trans->block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04005888 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
5889
5890 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04005891 * We need to hold space in order to delete our orphan item once we've
5892 * added it, so this takes the reservation so we can release it later
5893 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04005894 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005895 u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
5896
Nikolay Borisov8ed7a2a2017-02-20 13:50:39 +02005897 trace_btrfs_space_reservation(fs_info, "orphan", btrfs_ino(inode),
5898 num_bytes, 1);
Josef Bacik25d609f2016-03-25 13:25:48 -04005899 return btrfs_block_rsv_migrate(src_rsv, dst_rsv, num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005900}
5901
Nikolay Borisov703b3912017-02-20 13:50:40 +02005902void btrfs_orphan_release_metadata(struct btrfs_inode *inode)
Yan, Zhengd68fc572010-05-16 10:49:58 -04005903{
Nikolay Borisov703b3912017-02-20 13:50:40 +02005904 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
5905 struct btrfs_root *root = inode->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005906 u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
5907
Nikolay Borisov703b3912017-02-20 13:50:40 +02005908 trace_btrfs_space_reservation(fs_info, "orphan", btrfs_ino(inode),
5909 num_bytes, 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005910 btrfs_block_rsv_release(fs_info, root->orphan_block_rsv, num_bytes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005911}
5912
Miao Xied5c12072013-02-28 10:04:33 +00005913/*
5914 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
5915 * root: the root of the parent directory
5916 * rsv: block reservation
5917 * items: the number of items that we need do reservation
5918 * qgroup_reserved: used to return the reserved size in qgroup
5919 *
5920 * This function is used to reserve the space for snapshot/subvolume
5921 * creation and deletion. Those operations are different with the
5922 * common file/directory operations, they change two fs/file trees
5923 * and root tree, the number of items that the qgroup reserves is
5924 * different with the free space reservation. So we can not use
Nicholas D Steeves01327612016-05-19 21:18:45 -04005925 * the space reservation mechanism in start_transaction().
Miao Xied5c12072013-02-28 10:04:33 +00005926 */
5927int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
5928 struct btrfs_block_rsv *rsv,
5929 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005930 u64 *qgroup_reserved,
5931 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005932{
Miao Xied5c12072013-02-28 10:04:33 +00005933 u64 num_bytes;
5934 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005935 struct btrfs_fs_info *fs_info = root->fs_info;
5936 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005937
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005938 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
Miao Xied5c12072013-02-28 10:04:33 +00005939 /* One for parent inode, two for dir entries */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005940 num_bytes = 3 * fs_info->nodesize;
Jeff Mahoney003d7c52017-01-25 09:50:33 -05005941 ret = btrfs_qgroup_reserve_meta(root, num_bytes, true);
Miao Xied5c12072013-02-28 10:04:33 +00005942 if (ret)
5943 return ret;
5944 } else {
5945 num_bytes = 0;
5946 }
5947
5948 *qgroup_reserved = num_bytes;
5949
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005950 num_bytes = btrfs_calc_trans_metadata_size(fs_info, items);
5951 rsv->space_info = __find_space_info(fs_info,
Miao Xied5c12072013-02-28 10:04:33 +00005952 BTRFS_BLOCK_GROUP_METADATA);
5953 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5954 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005955
5956 if (ret == -ENOSPC && use_global_rsv)
Josef Bacik25d609f2016-03-25 13:25:48 -04005957 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, 1);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005958
Qu Wenruo71741092015-09-08 17:22:41 +08005959 if (ret && *qgroup_reserved)
5960 btrfs_qgroup_free_meta(root, *qgroup_reserved);
Miao Xied5c12072013-02-28 10:04:33 +00005961
5962 return ret;
5963}
5964
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005965void btrfs_subvolume_release_metadata(struct btrfs_fs_info *fs_info,
David Sterba7775c812017-02-10 19:18:18 +01005966 struct btrfs_block_rsv *rsv)
Miao Xied5c12072013-02-28 10:04:33 +00005967{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005968 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005969}
5970
Josef Bacik7709cde2011-08-04 10:25:02 -04005971/**
5972 * drop_outstanding_extent - drop an outstanding extent
5973 * @inode: the inode we're dropping the extent for
Nicholas D Steeves01327612016-05-19 21:18:45 -04005974 * @num_bytes: the number of bytes we're releasing.
Josef Bacik7709cde2011-08-04 10:25:02 -04005975 *
5976 * This is called when we are freeing up an outstanding extent, either called
5977 * after an error or after an extent is written. This will return the number of
5978 * reserved extents that need to be freed. This must be called with
5979 * BTRFS_I(inode)->lock held.
5980 */
Nikolay Borisovbaa3ba32017-02-20 13:50:37 +02005981static unsigned drop_outstanding_extent(struct btrfs_inode *inode,
5982 u64 num_bytes)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005983{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005984 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005985 unsigned dropped_extents = 0;
David Sterba823bb202017-01-04 11:09:51 +01005986 unsigned num_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005987
David Sterba823bb202017-01-04 11:09:51 +01005988 num_extents = count_max_extents(num_bytes);
Josef Bacikdcab6a32015-02-11 15:08:59 -05005989 ASSERT(num_extents);
Nikolay Borisovbaa3ba32017-02-20 13:50:37 +02005990 ASSERT(inode->outstanding_extents >= num_extents);
5991 inode->outstanding_extents -= num_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005992
Nikolay Borisovbaa3ba32017-02-20 13:50:37 +02005993 if (inode->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04005994 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
Nikolay Borisovbaa3ba32017-02-20 13:50:37 +02005995 &inode->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005996 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005997
Josef Bacik9e0baf62011-07-15 15:16:44 +00005998 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005999 * If we have more or the same amount of outstanding extents than we have
Josef Bacik9e0baf62011-07-15 15:16:44 +00006000 * reserved then we need to leave the reserved extents count alone.
6001 */
Nikolay Borisovbaa3ba32017-02-20 13:50:37 +02006002 if (inode->outstanding_extents >= inode->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05006003 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006004
Nikolay Borisovbaa3ba32017-02-20 13:50:37 +02006005 dropped_extents = inode->reserved_extents - inode->outstanding_extents;
6006 inode->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05006007 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006008}
6009
Josef Bacik7709cde2011-08-04 10:25:02 -04006010/**
Nicholas D Steeves01327612016-05-19 21:18:45 -04006011 * calc_csum_metadata_size - return the amount of metadata space that must be
6012 * reserved/freed for the given bytes.
Josef Bacik7709cde2011-08-04 10:25:02 -04006013 * @inode: the inode we're manipulating
6014 * @num_bytes: the number of bytes in question
6015 * @reserve: 1 if we are reserving space, 0 if we are freeing space
6016 *
6017 * This adjusts the number of csum_bytes in the inode and then returns the
6018 * correct amount of metadata that must either be reserved or freed. We
6019 * calculate how many checksums we can fit into one leaf and then divide the
6020 * number of bytes that will need to be checksumed by this value to figure out
6021 * how many checksums will be required. If we are adding bytes then the number
6022 * may go up and we will return the number of additional bytes that must be
6023 * reserved. If it is going down we will return the number of bytes that must
6024 * be freed.
6025 *
6026 * This must be called with BTRFS_I(inode)->lock held.
6027 */
Nikolay Borisov0e6bf9b2017-02-20 13:50:38 +02006028static u64 calc_csum_metadata_size(struct btrfs_inode *inode, u64 num_bytes,
Josef Bacik7709cde2011-08-04 10:25:02 -04006029 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006030{
Nikolay Borisov0e6bf9b2017-02-20 13:50:38 +02006031 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Josef Bacik12621332015-02-03 07:50:16 -08006032 u64 old_csums, num_csums;
Josef Bacik7709cde2011-08-04 10:25:02 -04006033
Nikolay Borisov0e6bf9b2017-02-20 13:50:38 +02006034 if (inode->flags & BTRFS_INODE_NODATASUM && inode->csum_bytes == 0)
Josef Bacik7709cde2011-08-04 10:25:02 -04006035 return 0;
6036
Nikolay Borisov0e6bf9b2017-02-20 13:50:38 +02006037 old_csums = btrfs_csum_bytes_to_leaves(fs_info, inode->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04006038 if (reserve)
Nikolay Borisov0e6bf9b2017-02-20 13:50:38 +02006039 inode->csum_bytes += num_bytes;
Josef Bacik7709cde2011-08-04 10:25:02 -04006040 else
Nikolay Borisov0e6bf9b2017-02-20 13:50:38 +02006041 inode->csum_bytes -= num_bytes;
6042 num_csums = btrfs_csum_bytes_to_leaves(fs_info, inode->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04006043
6044 /* No change, no need to reserve more */
6045 if (old_csums == num_csums)
6046 return 0;
6047
6048 if (reserve)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006049 return btrfs_calc_trans_metadata_size(fs_info,
Josef Bacik7709cde2011-08-04 10:25:02 -04006050 num_csums - old_csums);
6051
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006052 return btrfs_calc_trans_metadata_size(fs_info, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006053}
6054
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006055int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006056{
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006057 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
6058 struct btrfs_root *root = inode->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006059 struct btrfs_block_rsv *block_rsv = &fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006060 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05006061 u64 csum_bytes;
David Sterba823bb202017-01-04 11:09:51 +01006062 unsigned nr_extents;
Miao Xie08e007d2012-10-16 11:33:38 +00006063 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07006064 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006065 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00006066 u64 to_free = 0;
6067 unsigned dropped;
Josef Bacik48c3d482016-03-25 13:25:49 -04006068 bool release_extra = false;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006069
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006070 /* If we are a free space inode we need to not flush since we will be in
6071 * the middle of a transaction commit. We also don't need the delalloc
6072 * mutex since we won't race with anybody. We need this mostly to make
6073 * lockdep shut its filthy mouth.
Josef Bacikbac357dc2016-07-20 16:48:45 -07006074 *
6075 * If we have a transaction open (can happen if we call truncate_block
6076 * from truncate), then we need FLUSH_LIMIT so we don't deadlock.
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006077 */
6078 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00006079 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006080 delalloc_lock = false;
Josef Bacikbac357dc2016-07-20 16:48:45 -07006081 } else if (current->journal_info) {
6082 flush = BTRFS_RESERVE_FLUSH_LIMIT;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006083 }
Josef Bacikc09544e2011-08-30 10:19:10 -04006084
Miao Xie08e007d2012-10-16 11:33:38 +00006085 if (flush != BTRFS_RESERVE_NO_FLUSH &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006086 btrfs_transaction_in_commit(fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006087 schedule_timeout(1);
6088
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006089 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006090 mutex_lock(&inode->delalloc_mutex);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006091
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006092 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04006093
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006094 spin_lock(&inode->lock);
David Sterba823bb202017-01-04 11:09:51 +01006095 nr_extents = count_max_extents(num_bytes);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006096 inode->outstanding_extents += nr_extents;
Josef Bacik57a45ced2011-01-25 16:30:38 -05006097
Josef Bacik48c3d482016-03-25 13:25:49 -04006098 nr_extents = 0;
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006099 if (inode->outstanding_extents > inode->reserved_extents)
6100 nr_extents += inode->outstanding_extents -
6101 inode->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05006102
Josef Bacik48c3d482016-03-25 13:25:49 -04006103 /* We always want to reserve a slot for updating the inode. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006104 to_reserve = btrfs_calc_trans_metadata_size(fs_info, nr_extents + 1);
Josef Bacik7709cde2011-08-04 10:25:02 -04006105 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006106 csum_bytes = inode->csum_bytes;
6107 spin_unlock(&inode->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05006108
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006109 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
Qu Wenruo71741092015-09-08 17:22:41 +08006110 ret = btrfs_qgroup_reserve_meta(root,
Jeff Mahoney003d7c52017-01-25 09:50:33 -05006111 nr_extents * fs_info->nodesize, true);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006112 if (ret)
6113 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00006114 }
Arne Jansenc5567232011-09-14 15:44:05 +02006115
Josef Bacik48c3d482016-03-25 13:25:49 -04006116 ret = btrfs_block_rsv_add(root, block_rsv, to_reserve, flush);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006117 if (unlikely(ret)) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04006118 btrfs_qgroup_free_meta(root,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006119 nr_extents * fs_info->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006120 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006121 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006122
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006123 spin_lock(&inode->lock);
Josef Bacik48c3d482016-03-25 13:25:49 -04006124 if (test_and_set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006125 &inode->runtime_flags)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006126 to_reserve -= btrfs_calc_trans_metadata_size(fs_info, 1);
Josef Bacik48c3d482016-03-25 13:25:49 -04006127 release_extra = true;
Josef Bacik660d3f62011-12-09 11:18:51 -05006128 }
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006129 inode->reserved_extents += nr_extents;
6130 spin_unlock(&inode->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006131
6132 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006133 mutex_unlock(&inode->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05006134
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006135 if (to_reserve)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006136 trace_btrfs_space_reservation(fs_info, "delalloc",
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006137 btrfs_ino(inode), to_reserve, 1);
Josef Bacik48c3d482016-03-25 13:25:49 -04006138 if (release_extra)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006139 btrfs_block_rsv_release(fs_info, block_rsv,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006140 btrfs_calc_trans_metadata_size(fs_info, 1));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006141 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00006142
6143out_fail:
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006144 spin_lock(&inode->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05006145 dropped = drop_outstanding_extent(inode, num_bytes);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006146 /*
6147 * If the inodes csum_bytes is the same as the original
6148 * csum_bytes then we know we haven't raced with any free()ers
6149 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00006150 */
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006151 if (inode->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00006152 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04006153 } else {
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006154 u64 orig_csum_bytes = inode->csum_bytes;
Josef Bacikf4881bc2013-03-25 16:03:35 -04006155 u64 bytes;
6156
6157 /*
6158 * This is tricky, but first we need to figure out how much we
Nicholas D Steeves01327612016-05-19 21:18:45 -04006159 * freed from any free-ers that occurred during this
Josef Bacikf4881bc2013-03-25 16:03:35 -04006160 * reservation, so we reset ->csum_bytes to the csum_bytes
6161 * before we dropped our lock, and then call the free for the
6162 * number of bytes that were freed while we were trying our
6163 * reservation.
6164 */
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006165 bytes = csum_bytes - inode->csum_bytes;
6166 inode->csum_bytes = csum_bytes;
Josef Bacikf4881bc2013-03-25 16:03:35 -04006167 to_free = calc_csum_metadata_size(inode, bytes, 0);
6168
6169
6170 /*
6171 * Now we need to see how much we would have freed had we not
6172 * been making this reservation and our ->csum_bytes were not
6173 * artificially inflated.
6174 */
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006175 inode->csum_bytes = csum_bytes - num_bytes;
Josef Bacikf4881bc2013-03-25 16:03:35 -04006176 bytes = csum_bytes - orig_csum_bytes;
6177 bytes = calc_csum_metadata_size(inode, bytes, 0);
6178
6179 /*
6180 * Now reset ->csum_bytes to what it should be. If bytes is
Nicholas D Steeves01327612016-05-19 21:18:45 -04006181 * more than to_free then we would have freed more space had we
Josef Bacikf4881bc2013-03-25 16:03:35 -04006182 * not had an artificially high ->csum_bytes, so we need to free
6183 * the remainder. If bytes is the same or less then we don't
6184 * need to do anything, the other free-ers did the correct
6185 * thing.
6186 */
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006187 inode->csum_bytes = orig_csum_bytes - num_bytes;
Josef Bacikf4881bc2013-03-25 16:03:35 -04006188 if (bytes > to_free)
6189 to_free = bytes - to_free;
6190 else
6191 to_free = 0;
6192 }
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006193 spin_unlock(&inode->lock);
Dongsheng Yange2d1f922015-02-06 10:26:52 -05006194 if (dropped)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006195 to_free += btrfs_calc_trans_metadata_size(fs_info, dropped);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006196
6197 if (to_free) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006198 btrfs_block_rsv_release(fs_info, block_rsv, to_free);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006199 trace_btrfs_space_reservation(fs_info, "delalloc",
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006200 btrfs_ino(inode), to_free, 0);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006201 }
6202 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006203 mutex_unlock(&inode->delalloc_mutex);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006204 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006205}
6206
Josef Bacik7709cde2011-08-04 10:25:02 -04006207/**
6208 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
6209 * @inode: the inode to release the reservation for
6210 * @num_bytes: the number of bytes we're releasing
6211 *
6212 * This will release the metadata reservation for an inode. This can be called
6213 * once we complete IO for a given set of bytes to release their metadata
6214 * reservations.
6215 */
Nikolay Borisov691fa052017-02-20 13:50:42 +02006216void btrfs_delalloc_release_metadata(struct btrfs_inode *inode, u64 num_bytes)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006217{
Nikolay Borisov691fa052017-02-20 13:50:42 +02006218 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006219 u64 to_free = 0;
6220 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006221
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006222 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006223 spin_lock(&inode->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05006224 dropped = drop_outstanding_extent(inode, num_bytes);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006225
Miao Xie09348562013-02-07 10:12:07 +00006226 if (num_bytes)
6227 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006228 spin_unlock(&inode->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006229 if (dropped > 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006230 to_free += btrfs_calc_trans_metadata_size(fs_info, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006231
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006232 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04006233 return;
6234
Nikolay Borisov691fa052017-02-20 13:50:42 +02006235 trace_btrfs_space_reservation(fs_info, "delalloc", btrfs_ino(inode),
6236 to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02006237
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006238 btrfs_block_rsv_release(fs_info, &fs_info->delalloc_block_rsv, to_free);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006239}
6240
Josef Bacik7709cde2011-08-04 10:25:02 -04006241/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006242 * btrfs_delalloc_reserve_space - reserve data and metadata space for
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006243 * delalloc
6244 * @inode: inode we're writing to
6245 * @start: start range we are writing to
6246 * @len: how long the range we are writing to
Qu Wenruo364ecf32017-02-27 15:10:38 +08006247 * @reserved: mandatory parameter, record actually reserved qgroup ranges of
6248 * current reservation.
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006249 *
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006250 * This will do the following things
6251 *
6252 * o reserve space in data space info for num bytes
6253 * and reserve precious corresponding qgroup space
6254 * (Done in check_data_free_space)
6255 *
6256 * o reserve space for metadata space, based on the number of outstanding
6257 * extents and how much csums will be needed
6258 * also reserve metadata space in a per root over-reserve method.
6259 * o add to the inodes->delalloc_bytes
6260 * o add it to the fs_info's delalloc inodes list.
6261 * (Above 3 all done in delalloc_reserve_metadata)
6262 *
6263 * Return 0 for success
6264 * Return <0 for error(-ENOSPC or -EQUOT)
6265 */
Qu Wenruo364ecf32017-02-27 15:10:38 +08006266int btrfs_delalloc_reserve_space(struct inode *inode,
6267 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006268{
6269 int ret;
6270
Qu Wenruo364ecf32017-02-27 15:10:38 +08006271 ret = btrfs_check_data_free_space(inode, reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006272 if (ret < 0)
6273 return ret;
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006274 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode), len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006275 if (ret < 0)
Qu Wenruobc42bda2017-02-27 15:10:39 +08006276 btrfs_free_reserved_data_space(inode, *reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006277 return ret;
6278}
6279
6280/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006281 * btrfs_delalloc_release_space - release data and metadata space for delalloc
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006282 * @inode: inode we're releasing space for
6283 * @start: start position of the space already reserved
6284 * @len: the len of the space already reserved
6285 *
6286 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
6287 * called in the case that we don't need the metadata AND data reservations
6288 * anymore. So if there is an error or we insert an inline extent.
6289 *
6290 * This function will release the metadata space that was not used and will
6291 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
6292 * list if there are no delalloc bytes left.
6293 * Also it will handle the qgroup reserved space.
6294 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08006295void btrfs_delalloc_release_space(struct inode *inode,
6296 struct extent_changeset *reserved, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006297{
Nikolay Borisov691fa052017-02-20 13:50:42 +02006298 btrfs_delalloc_release_metadata(BTRFS_I(inode), len);
Qu Wenruobc42bda2017-02-27 15:10:39 +08006299 btrfs_free_reserved_data_space(inode, reserved, start, len);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006300}
6301
Josef Bacikce93ec52014-11-17 15:45:48 -05006302static int update_block_group(struct btrfs_trans_handle *trans,
Jeff Mahoney6202df62016-06-22 18:54:22 -04006303 struct btrfs_fs_info *info, u64 bytenr,
Josef Bacikce93ec52014-11-17 15:45:48 -05006304 u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04006305{
Josef Bacik0af3d002010-06-21 14:48:16 -04006306 struct btrfs_block_group_cache *cache = NULL;
Chris Masondb945352007-10-15 16:15:53 -04006307 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006308 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04006309 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04006310 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04006311
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006312 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00006313 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02006314 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006315 if (alloc)
6316 old_val += num_bytes;
6317 else
6318 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02006319 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00006320 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006321
Chris Masond3977122009-01-05 21:25:51 -05006322 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04006323 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006324 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006325 return -ENOENT;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006326 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
6327 BTRFS_BLOCK_GROUP_RAID1 |
6328 BTRFS_BLOCK_GROUP_RAID10))
6329 factor = 2;
6330 else
6331 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04006332 /*
6333 * If this block group has free space cache written out, we
6334 * need to make sure to load it if we are removing space. This
6335 * is because we need the unpinning stage to actually add the
6336 * space back to the block group, otherwise we will leak space.
6337 */
6338 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00006339 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04006340
Chris Masondb945352007-10-15 16:15:53 -04006341 byte_in_group = bytenr - cache->key.objectid;
6342 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04006343
Josef Bacik25179202008-10-29 14:49:05 -04006344 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04006345 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04006346
Jeff Mahoney6202df62016-06-22 18:54:22 -04006347 if (btrfs_test_opt(info, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04006348 cache->disk_cache_state < BTRFS_DC_CLEAR)
6349 cache->disk_cache_state = BTRFS_DC_CLEAR;
6350
Chris Mason9078a3e2007-04-26 16:46:15 -04006351 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04006352 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04006353 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04006354 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006355 btrfs_set_block_group_used(&cache->item, old_val);
6356 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006357 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb82010-05-16 10:46:24 -04006358 cache->space_info->bytes_used += num_bytes;
6359 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04006360 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006361 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04006362 } else {
Chris Masondb945352007-10-15 16:15:53 -04006363 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00006364 btrfs_set_block_group_used(&cache->item, old_val);
6365 cache->pinned += num_bytes;
6366 cache->space_info->bytes_pinned += num_bytes;
6367 cache->space_info->bytes_used -= num_bytes;
6368 cache->space_info->disk_used -= num_bytes * factor;
6369 spin_unlock(&cache->lock);
6370 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04006371
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006372 trace_btrfs_space_reservation(info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006373 cache->space_info->flags,
6374 num_bytes, 1);
Omar Sandovald7eae342017-06-06 16:45:31 -07006375 percpu_counter_add(&cache->space_info->total_bytes_pinned,
6376 num_bytes);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006377 set_extent_dirty(info->pinned_extents,
6378 bytenr, bytenr + num_bytes - 1,
6379 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04006380 }
Chris Mason1bbc6212015-04-06 12:46:08 -07006381
6382 spin_lock(&trans->transaction->dirty_bgs_lock);
6383 if (list_empty(&cache->dirty_list)) {
6384 list_add_tail(&cache->dirty_list,
6385 &trans->transaction->dirty_bgs);
6386 trans->transaction->num_dirty_bgs++;
6387 btrfs_get_block_group(cache);
6388 }
6389 spin_unlock(&trans->transaction->dirty_bgs_lock);
6390
Filipe Manana036a9342015-11-23 15:25:16 +00006391 /*
6392 * No longer have used bytes in this block group, queue it for
6393 * deletion. We do this after adding the block group to the
6394 * dirty list to avoid races between cleaner kthread and space
6395 * cache writeout.
6396 */
6397 if (!alloc && old_val == 0) {
6398 spin_lock(&info->unused_bgs_lock);
6399 if (list_empty(&cache->bg_list)) {
6400 btrfs_get_block_group(cache);
6401 list_add_tail(&cache->bg_list,
6402 &info->unused_bgs);
6403 }
6404 spin_unlock(&info->unused_bgs_lock);
6405 }
6406
Chris Masonfa9c0d792009-04-03 09:47:43 -04006407 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04006408 total -= num_bytes;
6409 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006410 }
6411 return 0;
6412}
Chris Mason6324fbf2008-03-24 15:01:59 -04006413
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006414static u64 first_logical_byte(struct btrfs_fs_info *fs_info, u64 search_start)
Chris Masona061fc82008-05-07 11:43:44 -04006415{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006416 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05006417 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006418
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006419 spin_lock(&fs_info->block_group_cache_lock);
6420 bytenr = fs_info->first_logical_byte;
6421 spin_unlock(&fs_info->block_group_cache_lock);
Liu Boa1897fd2012-12-27 09:01:23 +00006422
6423 if (bytenr < (u64)-1)
6424 return bytenr;
6425
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006426 cache = btrfs_lookup_first_block_group(fs_info, search_start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006427 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04006428 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006429
Yan Zhengd2fb3432008-12-11 16:30:39 -05006430 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006431 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05006432
6433 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04006434}
6435
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006436static int pin_down_extent(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006437 struct btrfs_block_group_cache *cache,
6438 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05006439{
Yan Zheng11833d62009-09-11 16:11:19 -04006440 spin_lock(&cache->space_info->lock);
6441 spin_lock(&cache->lock);
6442 cache->pinned += num_bytes;
6443 cache->space_info->bytes_pinned += num_bytes;
6444 if (reserved) {
6445 cache->reserved -= num_bytes;
6446 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05006447 }
Yan Zheng11833d62009-09-11 16:11:19 -04006448 spin_unlock(&cache->lock);
6449 spin_unlock(&cache->space_info->lock);
6450
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006451 trace_btrfs_space_reservation(fs_info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006452 cache->space_info->flags, num_bytes, 1);
Omar Sandoval4da8b762017-06-06 16:45:28 -07006453 percpu_counter_add(&cache->space_info->total_bytes_pinned, num_bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006454 set_extent_dirty(fs_info->pinned_extents, bytenr,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006455 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05006456 return 0;
6457}
Chris Mason9078a3e2007-04-26 16:46:15 -04006458
Yan, Zhengf0486c62010-05-16 10:46:25 -04006459/*
6460 * this function must be called within transaction
6461 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006462int btrfs_pin_extent(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006463 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04006464{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006465 struct btrfs_block_group_cache *cache;
6466
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006467 cache = btrfs_lookup_block_group(fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006468 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006469
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006470 pin_down_extent(fs_info, cache, bytenr, num_bytes, reserved);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006471
6472 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04006473 return 0;
6474}
Zheng Yane8569812008-09-26 10:05:48 -04006475
Yan, Zhengf0486c62010-05-16 10:46:25 -04006476/*
Chris Masone688b7252011-10-31 20:52:39 -04006477 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04006478 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006479int btrfs_pin_extent_for_log_replay(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04006480 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006481{
Chris Masone688b7252011-10-31 20:52:39 -04006482 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04006483 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04006484
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006485 cache = btrfs_lookup_block_group(fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006486 if (!cache)
6487 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04006488
6489 /*
6490 * pull in the free space cache (if any) so that our pin
6491 * removes the free space from the cache. We have load_only set
6492 * to one because the slow code to read in the free extents does check
6493 * the pinned extents.
6494 */
Liu Bof6373bf2012-12-27 09:01:18 +00006495 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04006496
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006497 pin_down_extent(fs_info, cache, bytenr, num_bytes, 0);
Chris Masone688b7252011-10-31 20:52:39 -04006498
6499 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04006500 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04006501 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006502 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04006503}
6504
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006505static int __exclude_logged_extent(struct btrfs_fs_info *fs_info,
6506 u64 start, u64 num_bytes)
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006507{
6508 int ret;
6509 struct btrfs_block_group_cache *block_group;
6510 struct btrfs_caching_control *caching_ctl;
6511
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006512 block_group = btrfs_lookup_block_group(fs_info, start);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006513 if (!block_group)
6514 return -EINVAL;
6515
6516 cache_block_group(block_group, 0);
6517 caching_ctl = get_caching_control(block_group);
6518
6519 if (!caching_ctl) {
6520 /* Logic error */
6521 BUG_ON(!block_group_cache_done(block_group));
6522 ret = btrfs_remove_free_space(block_group, start, num_bytes);
6523 } else {
6524 mutex_lock(&caching_ctl->mutex);
6525
6526 if (start >= caching_ctl->progress) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006527 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006528 } else if (start + num_bytes <= caching_ctl->progress) {
6529 ret = btrfs_remove_free_space(block_group,
6530 start, num_bytes);
6531 } else {
6532 num_bytes = caching_ctl->progress - start;
6533 ret = btrfs_remove_free_space(block_group,
6534 start, num_bytes);
6535 if (ret)
6536 goto out_lock;
6537
6538 num_bytes = (start + num_bytes) -
6539 caching_ctl->progress;
6540 start = caching_ctl->progress;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006541 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006542 }
6543out_lock:
6544 mutex_unlock(&caching_ctl->mutex);
6545 put_caching_control(caching_ctl);
6546 }
6547 btrfs_put_block_group(block_group);
6548 return ret;
6549}
6550
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006551int btrfs_exclude_logged_extents(struct btrfs_fs_info *fs_info,
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006552 struct extent_buffer *eb)
6553{
6554 struct btrfs_file_extent_item *item;
6555 struct btrfs_key key;
6556 int found_type;
6557 int i;
6558
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006559 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS))
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006560 return 0;
6561
6562 for (i = 0; i < btrfs_header_nritems(eb); i++) {
6563 btrfs_item_key_to_cpu(eb, &key, i);
6564 if (key.type != BTRFS_EXTENT_DATA_KEY)
6565 continue;
6566 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
6567 found_type = btrfs_file_extent_type(eb, item);
6568 if (found_type == BTRFS_FILE_EXTENT_INLINE)
6569 continue;
6570 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
6571 continue;
6572 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
6573 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006574 __exclude_logged_extent(fs_info, key.objectid, key.offset);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006575 }
6576
6577 return 0;
6578}
6579
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006580static void
6581btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg)
6582{
6583 atomic_inc(&bg->reservations);
6584}
6585
6586void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
6587 const u64 start)
6588{
6589 struct btrfs_block_group_cache *bg;
6590
6591 bg = btrfs_lookup_block_group(fs_info, start);
6592 ASSERT(bg);
6593 if (atomic_dec_and_test(&bg->reservations))
6594 wake_up_atomic_t(&bg->reservations);
6595 btrfs_put_block_group(bg);
6596}
6597
6598static int btrfs_wait_bg_reservations_atomic_t(atomic_t *a)
6599{
6600 schedule();
6601 return 0;
6602}
6603
6604void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg)
6605{
6606 struct btrfs_space_info *space_info = bg->space_info;
6607
6608 ASSERT(bg->ro);
6609
6610 if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA))
6611 return;
6612
6613 /*
6614 * Our block group is read only but before we set it to read only,
6615 * some task might have had allocated an extent from it already, but it
6616 * has not yet created a respective ordered extent (and added it to a
6617 * root's list of ordered extents).
6618 * Therefore wait for any task currently allocating extents, since the
6619 * block group's reservations counter is incremented while a read lock
6620 * on the groups' semaphore is held and decremented after releasing
6621 * the read access on that semaphore and creating the ordered extent.
6622 */
6623 down_write(&space_info->groups_sem);
6624 up_write(&space_info->groups_sem);
6625
6626 wait_on_atomic_t(&bg->reservations,
6627 btrfs_wait_bg_reservations_atomic_t,
6628 TASK_UNINTERRUPTIBLE);
6629}
6630
Josef Bacikfb25e912011-07-26 17:00:46 -04006631/**
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006632 * btrfs_add_reserved_bytes - update the block_group and space info counters
Josef Bacikfb25e912011-07-26 17:00:46 -04006633 * @cache: The cache we are manipulating
Wang Xiaoguang18513092016-07-25 15:51:40 +08006634 * @ram_bytes: The number of bytes of file content, and will be same to
6635 * @num_bytes except for the compress path.
Josef Bacikfb25e912011-07-26 17:00:46 -04006636 * @num_bytes: The number of bytes in question
Miao Xiee570fd22014-06-19 10:42:50 +08006637 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04006638 *
Xiaoguang Wang745699e2016-09-23 12:38:50 +08006639 * This is called by the allocator when it reserves space. If this is a
6640 * reservation and the block group has become read only we cannot make the
6641 * reservation and return -EAGAIN, otherwise this function always succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04006642 */
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006643static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
Wang Xiaoguang18513092016-07-25 15:51:40 +08006644 u64 ram_bytes, u64 num_bytes, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006645{
Josef Bacikfb25e912011-07-26 17:00:46 -04006646 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006647 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006648
Josef Bacikfb25e912011-07-26 17:00:46 -04006649 spin_lock(&space_info->lock);
6650 spin_lock(&cache->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006651 if (cache->ro) {
6652 ret = -EAGAIN;
Josef Bacikfb25e912011-07-26 17:00:46 -04006653 } else {
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006654 cache->reserved += num_bytes;
6655 space_info->bytes_reserved += num_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006656
Wang Xiaoguang18513092016-07-25 15:51:40 +08006657 trace_btrfs_space_reservation(cache->fs_info,
6658 "space_info", space_info->flags,
6659 ram_bytes, 0);
6660 space_info->bytes_may_use -= ram_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006661 if (delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006662 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006663 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006664 spin_unlock(&cache->lock);
6665 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006666 return ret;
6667}
6668
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006669/**
6670 * btrfs_free_reserved_bytes - update the block_group and space info counters
6671 * @cache: The cache we are manipulating
6672 * @num_bytes: The number of bytes in question
6673 * @delalloc: The blocks are allocated for the delalloc write
6674 *
6675 * This is called by somebody who is freeing space that was never actually used
6676 * on disk. For example if you reserve some space for a new leaf in transaction
6677 * A and before transaction A commits you free that leaf, you call this with
6678 * reserve set to 0 in order to clear the reservation.
6679 */
6680
6681static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
6682 u64 num_bytes, int delalloc)
6683{
6684 struct btrfs_space_info *space_info = cache->space_info;
6685 int ret = 0;
6686
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;
6693
6694 if (delalloc)
6695 cache->delalloc_bytes -= num_bytes;
6696 spin_unlock(&cache->lock);
6697 spin_unlock(&space_info->lock);
6698 return ret;
6699}
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;
Josef Bacik7b398f82012-10-22 15:52:28 -04006817 space_info->bytes_pinned -= 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;
Liu Bod288db52014-07-02 16:58:01 +08006822 percpu_counter_add(&space_info->total_bytes_pinned, -len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006823 if (cache->ro) {
6824 space_info->bytes_readonly += len;
6825 readonly = true;
6826 }
Josef Bacik25179202008-10-29 14:49:05 -04006827 spin_unlock(&cache->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006828 if (!readonly && return_free_space &&
6829 global_rsv->space_info == space_info) {
6830 u64 to_add = len;
Nikolay Borisov92ac58e2017-08-17 10:52:28 +03006831
Josef Bacik7b398f82012-10-22 15:52:28 -04006832 spin_lock(&global_rsv->lock);
6833 if (!global_rsv->full) {
Josef Bacik957780e2016-05-17 13:30:55 -04006834 to_add = min(len, global_rsv->size -
6835 global_rsv->reserved);
6836 global_rsv->reserved += to_add;
6837 space_info->bytes_may_use += to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006838 if (global_rsv->reserved >= global_rsv->size)
6839 global_rsv->full = 1;
Josef Bacik957780e2016-05-17 13:30:55 -04006840 trace_btrfs_space_reservation(fs_info,
6841 "space_info",
6842 space_info->flags,
6843 to_add, 1);
6844 len -= to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006845 }
6846 spin_unlock(&global_rsv->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006847 /* Add to any tickets we may have */
6848 if (len)
6849 space_info_add_new_bytes(fs_info, space_info,
6850 len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006851 }
6852 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006853 }
6854
6855 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006856 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006857 return 0;
6858}
6859
6860int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006861 struct btrfs_fs_info *fs_info)
Chris Masona28ec192007-03-06 20:08:01 -05006862{
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006863 struct btrfs_block_group_cache *block_group, *tmp;
6864 struct list_head *deleted_bgs;
Yan Zheng11833d62009-09-11 16:11:19 -04006865 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006866 u64 start;
6867 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006868 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006869
Yan Zheng11833d62009-09-11 16:11:19 -04006870 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6871 unpin = &fs_info->freed_extents[1];
6872 else
6873 unpin = &fs_info->freed_extents[0];
6874
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006875 while (!trans->aborted) {
Filipe Mananad4b450c2015-01-29 19:18:25 +00006876 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006877 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04006878 EXTENT_DIRTY, NULL);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006879 if (ret) {
6880 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006881 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006882 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006883
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006884 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006885 ret = btrfs_discard_extent(fs_info, start,
Li Dongyang5378e602011-03-24 10:24:27 +00006886 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006887
David Sterbaaf6f8f62016-04-26 23:54:39 +02006888 clear_extent_dirty(unpin, start, end);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006889 unpin_extent_range(fs_info, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006890 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masonb9473432009-03-13 11:00:37 -04006891 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006892 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006893
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006894 /*
6895 * Transaction is finished. We don't need the lock anymore. We
6896 * do need to clean up the block groups in case of a transaction
6897 * abort.
6898 */
6899 deleted_bgs = &trans->transaction->deleted_bgs;
6900 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
6901 u64 trimmed = 0;
6902
6903 ret = -EROFS;
6904 if (!trans->aborted)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006905 ret = btrfs_discard_extent(fs_info,
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006906 block_group->key.objectid,
6907 block_group->key.offset,
6908 &trimmed);
6909
6910 list_del_init(&block_group->bg_list);
6911 btrfs_put_block_group_trimming(block_group);
6912 btrfs_put_block_group(block_group);
6913
6914 if (ret) {
6915 const char *errstr = btrfs_decode_error(ret);
6916 btrfs_warn(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02006917 "discard failed while removing blockgroup: errno=%d %s",
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006918 ret, errstr);
6919 }
6920 }
6921
Chris Masone20d96d2007-03-22 12:13:20 -04006922 return 0;
6923}
6924
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006925static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006926 struct btrfs_fs_info *info,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006927 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006928 u64 root_objectid, u64 owner_objectid,
6929 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006930 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006931{
Chris Masone2fa7222007-03-12 16:22:34 -04006932 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006933 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006934 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006935 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006936 struct btrfs_extent_item *ei;
6937 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006938 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006939 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006940 int extent_slot = 0;
6941 int found_extent = 0;
6942 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006943 u32 item_size;
6944 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006945 u64 bytenr = node->bytenr;
6946 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006947 int last_ref = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006948 bool skinny_metadata = btrfs_fs_incompat(info, SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006949
Chris Mason5caf2a02007-04-02 11:20:42 -04006950 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006951 if (!path)
6952 return -ENOMEM;
6953
David Sterbae4058b52015-11-27 16:31:35 +01006954 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04006955 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006956
6957 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6958 BUG_ON(!is_data && refs_to_drop != 1);
6959
Josef Bacik3173a182013-03-07 14:22:04 -05006960 if (is_data)
6961 skinny_metadata = 0;
6962
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05006963 ret = lookup_extent_backref(trans, info, path, &iref,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006964 bytenr, num_bytes, parent,
6965 root_objectid, owner_objectid,
6966 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006967 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006968 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006969 while (extent_slot >= 0) {
6970 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006971 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006972 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006973 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006974 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6975 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006976 found_extent = 1;
6977 break;
6978 }
Josef Bacik3173a182013-03-07 14:22:04 -05006979 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6980 key.offset == owner_objectid) {
6981 found_extent = 1;
6982 break;
6983 }
Chris Mason952fcca2008-02-18 16:33:44 -05006984 if (path->slots[0] - extent_slot > 5)
6985 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006986 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006987 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006988#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6989 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
6990 if (found_extent && item_size < sizeof(*ei))
6991 found_extent = 0;
6992#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04006993 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006994 BUG_ON(iref);
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05006995 ret = remove_extent_backref(trans, info, path, NULL,
6996 refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006997 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006998 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006999 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007000 goto out;
7001 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007002 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04007003 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007004
7005 key.objectid = bytenr;
7006 key.type = BTRFS_EXTENT_ITEM_KEY;
7007 key.offset = num_bytes;
7008
Josef Bacik3173a182013-03-07 14:22:04 -05007009 if (!is_data && skinny_metadata) {
7010 key.type = BTRFS_METADATA_ITEM_KEY;
7011 key.offset = owner_objectid;
7012 }
7013
Zheng Yan31840ae2008-09-23 13:14:14 -04007014 ret = btrfs_search_slot(trans, extent_root,
7015 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05007016 if (ret > 0 && skinny_metadata && path->slots[0]) {
7017 /*
7018 * Couldn't find our skinny metadata item,
7019 * see if we have ye olde extent item.
7020 */
7021 path->slots[0]--;
7022 btrfs_item_key_to_cpu(path->nodes[0], &key,
7023 path->slots[0]);
7024 if (key.objectid == bytenr &&
7025 key.type == BTRFS_EXTENT_ITEM_KEY &&
7026 key.offset == num_bytes)
7027 ret = 0;
7028 }
7029
7030 if (ret > 0 && skinny_metadata) {
7031 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01007032 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05007033 key.type = BTRFS_EXTENT_ITEM_KEY;
7034 key.offset = num_bytes;
7035 btrfs_release_path(path);
7036 ret = btrfs_search_slot(trans, extent_root,
7037 &key, path, -1, 1);
7038 }
7039
Josef Bacikf3465ca2008-11-12 14:19:50 -05007040 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007041 btrfs_err(info,
7042 "umm, got %d back from search, was looking for %llu",
7043 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00007044 if (ret > 0)
David Sterbaa4f78752017-06-29 18:37:49 +02007045 btrfs_print_leaf(path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05007046 }
David Sterba005d6422012-09-18 07:52:32 -06007047 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007048 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007049 goto out;
7050 }
Zheng Yan31840ae2008-09-23 13:14:14 -04007051 extent_slot = path->slots[0];
7052 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05307053 } else if (WARN_ON(ret == -ENOENT)) {
David Sterbaa4f78752017-06-29 18:37:49 +02007054 btrfs_print_leaf(path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007055 btrfs_err(info,
7056 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007057 bytenr, parent, root_objectid, owner_objectid,
7058 owner_offset);
Jeff Mahoney66642832016-06-10 18:19:25 -04007059 btrfs_abort_transaction(trans, ret);
Josef Bacikc4a050b2014-03-14 16:36:53 -04007060 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007061 } else {
Jeff Mahoney66642832016-06-10 18:19:25 -04007062 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007063 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05007064 }
Chris Mason5f39d392007-10-15 16:14:19 -04007065
7066 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007067 item_size = btrfs_item_size_nr(leaf, extent_slot);
7068#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
7069 if (item_size < sizeof(*ei)) {
7070 BUG_ON(found_extent || extent_slot != path->slots[0]);
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05007071 ret = convert_extent_item_v0(trans, info, path, owner_objectid,
7072 0);
David Sterba005d6422012-09-18 07:52:32 -06007073 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007074 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007075 goto out;
7076 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007077
David Sterbab3b4aa72011-04-21 01:20:15 +02007078 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007079 path->leave_spinning = 1;
7080
7081 key.objectid = bytenr;
7082 key.type = BTRFS_EXTENT_ITEM_KEY;
7083 key.offset = num_bytes;
7084
7085 ret = btrfs_search_slot(trans, extent_root, &key, path,
7086 -1, 1);
7087 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007088 btrfs_err(info,
7089 "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007090 ret, bytenr);
David Sterbaa4f78752017-06-29 18:37:49 +02007091 btrfs_print_leaf(path->nodes[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007092 }
David Sterba005d6422012-09-18 07:52:32 -06007093 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007094 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007095 goto out;
7096 }
7097
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007098 extent_slot = path->slots[0];
7099 leaf = path->nodes[0];
7100 item_size = btrfs_item_size_nr(leaf, extent_slot);
7101 }
7102#endif
7103 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05007104 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04007105 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05007106 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
7107 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007108 struct btrfs_tree_block_info *bi;
7109 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
7110 bi = (struct btrfs_tree_block_info *)(ei + 1);
7111 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05007112 }
7113
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007114 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04007115 if (refs < refs_to_drop) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007116 btrfs_err(info,
7117 "trying to drop %d refs but we only have %Lu for bytenr %Lu",
7118 refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04007119 ret = -EINVAL;
Jeff Mahoney66642832016-06-10 18:19:25 -04007120 btrfs_abort_transaction(trans, ret);
Josef Bacik32b02532013-04-24 16:38:50 -04007121 goto out;
7122 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007123 refs -= refs_to_drop;
7124
7125 if (refs > 0) {
7126 if (extent_op)
7127 __run_delayed_extent_op(extent_op, leaf, ei);
7128 /*
7129 * In the case of inline back ref, reference count will
7130 * be updated by remove_extent_backref
7131 */
7132 if (iref) {
7133 BUG_ON(!found_extent);
7134 } else {
7135 btrfs_set_extent_refs(leaf, ei, refs);
7136 btrfs_mark_buffer_dirty(leaf);
7137 }
7138 if (found_extent) {
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05007139 ret = remove_extent_backref(trans, info, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007140 iref, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07007141 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06007142 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007143 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007144 goto out;
7145 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007146 }
7147 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007148 if (found_extent) {
7149 BUG_ON(is_data && refs_to_drop !=
Zhaolei9ed0dea2015-08-06 22:16:24 +08007150 extent_data_ref_count(path, iref));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007151 if (iref) {
7152 BUG_ON(path->slots[0] != extent_slot);
7153 } else {
7154 BUG_ON(path->slots[0] != extent_slot + 1);
7155 path->slots[0] = extent_slot;
7156 num_to_del = 2;
7157 }
Chris Mason78fae272007-03-25 11:35:08 -04007158 }
Chris Masonb9473432009-03-13 11:00:37 -04007159
Josef Bacikfcebe452014-05-13 17:30:47 -07007160 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05007161 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
7162 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06007163 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007164 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007165 goto out;
7166 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007167 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01007168
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007169 if (is_data) {
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04007170 ret = btrfs_del_csums(trans, info, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06007171 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007172 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007173 goto out;
7174 }
Chris Mason459931e2008-12-10 09:10:46 -05007175 }
7176
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007177 ret = add_to_free_space_tree(trans, info, bytenr, num_bytes);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007178 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007179 btrfs_abort_transaction(trans, ret);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007180 goto out;
7181 }
7182
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007183 ret = update_block_group(trans, info, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06007184 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007185 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007186 goto out;
7187 }
Chris Masona28ec192007-03-06 20:08:01 -05007188 }
Josef Bacikfcebe452014-05-13 17:30:47 -07007189 btrfs_release_path(path);
7190
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007191out:
Chris Mason5caf2a02007-04-02 11:20:42 -04007192 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05007193 return ret;
7194}
7195
7196/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007197 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04007198 * delayed ref for that extent as well. This searches the delayed ref tree for
7199 * a given extent, and if there are no other delayed refs to be processed, it
7200 * removes it from the tree.
7201 */
7202static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007203 u64 bytenr)
Chris Mason1887be62009-03-13 10:11:24 -04007204{
7205 struct btrfs_delayed_ref_head *head;
7206 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007207 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04007208
7209 delayed_refs = &trans->transaction->delayed_refs;
7210 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08007211 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Chris Mason1887be62009-03-13 10:11:24 -04007212 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08007213 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04007214
Josef Bacikd7df2c72014-01-23 09:21:38 -05007215 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08007216 if (!list_empty(&head->ref_list))
Chris Mason1887be62009-03-13 10:11:24 -04007217 goto out;
7218
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007219 if (head->extent_op) {
7220 if (!head->must_insert_reserved)
7221 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00007222 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007223 head->extent_op = NULL;
7224 }
7225
Chris Mason1887be62009-03-13 10:11:24 -04007226 /*
7227 * waiting for the lock here would deadlock. If someone else has it
7228 * locked they are already in the process of dropping it anyway
7229 */
7230 if (!mutex_trylock(&head->mutex))
7231 goto out;
7232
7233 /*
7234 * at this point we have a head with no other entries. Go
7235 * ahead and process it.
7236 */
7237 head->node.in_tree = 0;
Liu Boc46effa2013-10-14 12:59:45 +08007238 rb_erase(&head->href_node, &delayed_refs->href_root);
Chris Masonc3e69d52009-03-13 10:17:05 -04007239
Josef Bacikd7df2c72014-01-23 09:21:38 -05007240 atomic_dec(&delayed_refs->num_entries);
Chris Mason1887be62009-03-13 10:11:24 -04007241
7242 /*
7243 * we don't take a ref on the node because we're removing it from the
7244 * tree, so we just steal the ref the tree was holding.
7245 */
Chris Masonc3e69d52009-03-13 10:17:05 -04007246 delayed_refs->num_heads--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05007247 if (head->processing == 0)
Chris Masonc3e69d52009-03-13 10:17:05 -04007248 delayed_refs->num_heads_ready--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05007249 head->processing = 0;
7250 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04007251 spin_unlock(&delayed_refs->lock);
7252
Yan, Zhengf0486c62010-05-16 10:46:25 -04007253 BUG_ON(head->extent_op);
7254 if (head->must_insert_reserved)
7255 ret = 1;
7256
7257 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04007258 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007259 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04007260out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05007261 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08007262
7263out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04007264 spin_unlock(&delayed_refs->lock);
7265 return 0;
7266}
7267
Yan, Zhengf0486c62010-05-16 10:46:25 -04007268void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
7269 struct btrfs_root *root,
7270 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02007271 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007272{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007273 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikb150a4f2013-06-19 15:00:04 -04007274 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007275 int ret;
7276
7277 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Omar Sandovald7eae342017-06-06 16:45:31 -07007278 int old_ref_mod, new_ref_mod;
7279
Omar Sandoval7be07912017-06-06 16:45:30 -07007280 ret = btrfs_add_delayed_tree_ref(fs_info, trans, buf->start,
7281 buf->len, parent,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007282 root->root_key.objectid,
7283 btrfs_header_level(buf),
Omar Sandoval7be07912017-06-06 16:45:30 -07007284 BTRFS_DROP_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007285 &old_ref_mod, &new_ref_mod);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007286 BUG_ON(ret); /* -ENOMEM */
Omar Sandovald7eae342017-06-06 16:45:31 -07007287 pin = old_ref_mod >= 0 && new_ref_mod < 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007288 }
7289
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007290 if (last_ref && btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00007291 struct btrfs_block_group_cache *cache;
7292
Yan, Zhengf0486c62010-05-16 10:46:25 -04007293 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007294 ret = check_ref_cleanup(trans, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007295 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04007296 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007297 }
7298
Omar Sandoval4da8b762017-06-06 16:45:28 -07007299 pin = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007300 cache = btrfs_lookup_block_group(fs_info, buf->start);
Filipe Manana62198722015-01-06 20:18:45 +00007301
Yan, Zhengf0486c62010-05-16 10:46:25 -04007302 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007303 pin_down_extent(fs_info, cache, buf->start,
7304 buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00007305 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04007306 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007307 }
7308
7309 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
7310
7311 btrfs_add_free_space(cache, buf->start, buf->len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08007312 btrfs_free_reserved_bytes(cache, buf->len, 0);
Filipe Manana62198722015-01-06 20:18:45 +00007313 btrfs_put_block_group(cache);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007314 trace_btrfs_reserved_extent_free(fs_info, buf->start, buf->len);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007315 }
7316out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04007317 if (pin)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007318 add_pinned_bytes(fs_info, buf->len, btrfs_header_level(buf),
Josef Bacikb150a4f2013-06-19 15:00:04 -04007319 root->root_key.objectid);
7320
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007321 if (last_ref) {
7322 /*
7323 * Deleting the buffer, clear the corrupt flag since it doesn't
7324 * matter anymore.
7325 */
7326 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
7327 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007328}
7329
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007330/* Can return -ENOMEM */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007331int btrfs_free_extent(struct btrfs_trans_handle *trans,
7332 struct btrfs_fs_info *fs_info,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007333 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007334 u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04007335{
Omar Sandovald7eae342017-06-06 16:45:31 -07007336 int old_ref_mod, new_ref_mod;
Chris Mason925baed2008-06-25 16:01:30 -04007337 int ret;
7338
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04007339 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007340 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02007341
Josef Bacikb150a4f2013-06-19 15:00:04 -04007342
Chris Mason56bec292009-03-13 10:10:06 -04007343 /*
7344 * tree log blocks never actually go into the extent allocation
7345 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04007346 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007347 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
7348 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04007349 /* unlocks the pinned mutex */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007350 btrfs_pin_extent(fs_info, bytenr, num_bytes, 1);
Omar Sandovald7eae342017-06-06 16:45:31 -07007351 old_ref_mod = new_ref_mod = 0;
Chris Mason56bec292009-03-13 10:10:06 -04007352 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007353 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007354 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07007355 num_bytes, parent,
7356 root_objectid, (int)owner,
7357 BTRFS_DROP_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007358 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007359 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007360 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07007361 num_bytes, parent,
7362 root_objectid, owner, offset,
7363 0, BTRFS_DROP_DELAYED_REF,
Omar Sandovald7eae342017-06-06 16:45:31 -07007364 &old_ref_mod, &new_ref_mod);
Chris Mason56bec292009-03-13 10:10:06 -04007365 }
Omar Sandovald7eae342017-06-06 16:45:31 -07007366
7367 if (ret == 0 && old_ref_mod >= 0 && new_ref_mod < 0)
7368 add_pinned_bytes(fs_info, num_bytes, owner, root_objectid);
7369
Chris Mason925baed2008-06-25 16:01:30 -04007370 return ret;
7371}
7372
Chris Masonfec577f2007-02-26 10:40:21 -05007373/*
Josef Bacik817d52f2009-07-13 21:29:25 -04007374 * when we wait for progress in the block group caching, its because
7375 * our allocation attempt failed at least once. So, we must sleep
7376 * and let some progress happen before we try again.
7377 *
7378 * This function will sleep at least once waiting for new free space to
7379 * show up, and then it will check the block group free space numbers
7380 * for our min num_bytes. Another option is to have it go ahead
7381 * and look in the rbtree for a free extent of a given size, but this
7382 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04007383 *
7384 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
7385 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04007386 */
Josef Bacik36cce922013-08-05 11:15:21 -04007387static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04007388wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
7389 u64 num_bytes)
7390{
Yan Zheng11833d62009-09-11 16:11:19 -04007391 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04007392
Yan Zheng11833d62009-09-11 16:11:19 -04007393 caching_ctl = get_caching_control(cache);
7394 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007395 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04007396
Yan Zheng11833d62009-09-11 16:11:19 -04007397 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08007398 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04007399
7400 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04007401}
7402
7403static noinline int
7404wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
7405{
7406 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04007407 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007408
7409 caching_ctl = get_caching_control(cache);
7410 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007411 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007412
7413 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04007414 if (cache->cached == BTRFS_CACHE_ERROR)
7415 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04007416 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04007417 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04007418}
7419
Liu Bo31e50222012-11-21 14:18:10 +00007420int __get_raid_index(u64 flags)
Yan, Zhengb742bb82010-05-16 10:46:24 -04007421{
Ilya Dryomov7738a532012-03-27 17:09:17 +03007422 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00007423 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007424 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00007425 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007426 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00007427 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007428 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00007429 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05007430 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05007431 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05007432 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05007433 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007434
Chris Masone942f882013-02-20 14:06:05 -05007435 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb82010-05-16 10:46:24 -04007436}
7437
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007438int get_block_group_index(struct btrfs_block_group_cache *cache)
Ilya Dryomov7738a532012-03-27 17:09:17 +03007439{
Liu Bo31e50222012-11-21 14:18:10 +00007440 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03007441}
7442
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007443static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
7444 [BTRFS_RAID_RAID10] = "raid10",
7445 [BTRFS_RAID_RAID1] = "raid1",
7446 [BTRFS_RAID_DUP] = "dup",
7447 [BTRFS_RAID_RAID0] = "raid0",
7448 [BTRFS_RAID_SINGLE] = "single",
7449 [BTRFS_RAID_RAID5] = "raid5",
7450 [BTRFS_RAID_RAID6] = "raid6",
7451};
7452
Jeff Mahoney1b8e5df2013-11-20 16:50:23 -05007453static const char *get_raid_name(enum btrfs_raid_types type)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007454{
7455 if (type >= BTRFS_NR_RAID_TYPES)
7456 return NULL;
7457
7458 return btrfs_raid_type_names[type];
7459}
7460
Josef Bacik817d52f2009-07-13 21:29:25 -04007461enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05007462 LOOP_CACHING_NOWAIT = 0,
7463 LOOP_CACHING_WAIT = 1,
7464 LOOP_ALLOC_CHUNK = 2,
7465 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04007466};
7467
Miao Xiee570fd22014-06-19 10:42:50 +08007468static inline void
7469btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
7470 int delalloc)
7471{
7472 if (delalloc)
7473 down_read(&cache->data_rwsem);
7474}
7475
7476static inline void
7477btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
7478 int delalloc)
7479{
7480 btrfs_get_block_group(cache);
7481 if (delalloc)
7482 down_read(&cache->data_rwsem);
7483}
7484
7485static struct btrfs_block_group_cache *
7486btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
7487 struct btrfs_free_cluster *cluster,
7488 int delalloc)
7489{
Sudip Mukherjee89771cc2016-02-16 13:32:47 +05307490 struct btrfs_block_group_cache *used_bg = NULL;
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007491
Miao Xiee570fd22014-06-19 10:42:50 +08007492 spin_lock(&cluster->refill_lock);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007493 while (1) {
7494 used_bg = cluster->block_group;
7495 if (!used_bg)
7496 return NULL;
7497
7498 if (used_bg == block_group)
7499 return used_bg;
7500
7501 btrfs_get_block_group(used_bg);
7502
7503 if (!delalloc)
7504 return used_bg;
7505
7506 if (down_read_trylock(&used_bg->data_rwsem))
7507 return used_bg;
7508
7509 spin_unlock(&cluster->refill_lock);
7510
Liu Boe321f8a2016-11-30 16:11:04 -08007511 /* We should only have one-level nested. */
7512 down_read_nested(&used_bg->data_rwsem, SINGLE_DEPTH_NESTING);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007513
7514 spin_lock(&cluster->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007515 if (used_bg == cluster->block_group)
7516 return used_bg;
7517
7518 up_read(&used_bg->data_rwsem);
7519 btrfs_put_block_group(used_bg);
7520 }
Miao Xiee570fd22014-06-19 10:42:50 +08007521}
7522
7523static inline void
7524btrfs_release_block_group(struct btrfs_block_group_cache *cache,
7525 int delalloc)
7526{
7527 if (delalloc)
7528 up_read(&cache->data_rwsem);
7529 btrfs_put_block_group(cache);
7530}
7531
Josef Bacik817d52f2009-07-13 21:29:25 -04007532/*
Chris Masonfec577f2007-02-26 10:40:21 -05007533 * walks the btree of allocated extents and find a hole of a given size.
7534 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08007535 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04007536 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08007537 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05007538 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08007539 *
7540 * If there is no suitable free space, we will record the max size of
7541 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05007542 */
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05007543static noinline int find_free_extent(struct btrfs_fs_info *fs_info,
Wang Xiaoguang18513092016-07-25 15:51:40 +08007544 u64 ram_bytes, u64 num_bytes, u64 empty_size,
7545 u64 hint_byte, struct btrfs_key *ins,
7546 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007547{
Josef Bacik80eb2342008-10-29 14:49:05 -04007548 int ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007549 struct btrfs_root *root = fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007550 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04007551 struct btrfs_block_group_cache *block_group = NULL;
Josef Bacik81c9ad22012-01-18 10:56:06 -05007552 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08007553 u64 max_extent_size = 0;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007554 u64 empty_cluster = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04007555 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007556 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00007557 int index = __get_raid_index(flags);
Josef Bacik0a243252009-09-11 16:11:20 -04007558 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007559 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04007560 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08007561 bool have_caching_bg = false;
chandan13a0db52015-11-02 13:59:46 +05307562 bool orig_have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007563 bool full_search = false;
Chris Masonfec577f2007-02-26 10:40:21 -05007564
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007565 WARN_ON(num_bytes < fs_info->sectorsize);
David Sterba962a2982014-06-04 18:41:45 +02007566 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04007567 ins->objectid = 0;
7568 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04007569
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007570 trace_find_free_extent(fs_info, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05007571
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007572 space_info = __find_space_info(fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007573 if (!space_info) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007574 btrfs_err(fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007575 return -ENOSPC;
7576 }
Josef Bacik2552d172009-04-03 10:14:19 -04007577
Josef Bacik67377732010-09-16 16:19:09 -04007578 /*
Josef Bacik4f4db212015-09-29 11:40:47 -04007579 * If our free space is heavily fragmented we may not be able to make
7580 * big contiguous allocations, so instead of doing the expensive search
7581 * for free space, simply return ENOSPC with our max_extent_size so we
7582 * can go ahead and search for a more manageable chunk.
7583 *
7584 * If our max_extent_size is large enough for our allocation simply
7585 * disable clustering since we will likely not be able to find enough
7586 * space to create a cluster and induce latency trying.
Josef Bacik67377732010-09-16 16:19:09 -04007587 */
Josef Bacik4f4db212015-09-29 11:40:47 -04007588 if (unlikely(space_info->max_extent_size)) {
7589 spin_lock(&space_info->lock);
7590 if (space_info->max_extent_size &&
7591 num_bytes > space_info->max_extent_size) {
7592 ins->offset = space_info->max_extent_size;
7593 spin_unlock(&space_info->lock);
7594 return -ENOSPC;
7595 } else if (space_info->max_extent_size) {
7596 use_cluster = false;
7597 }
7598 spin_unlock(&space_info->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007599 }
7600
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007601 last_ptr = fetch_cluster_info(fs_info, space_info, &empty_cluster);
Chris Mason239b14b2008-03-24 15:02:07 -04007602 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007603 spin_lock(&last_ptr->lock);
7604 if (last_ptr->block_group)
7605 hint_byte = last_ptr->window_start;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007606 if (last_ptr->fragmented) {
7607 /*
7608 * We still set window_start so we can keep track of the
7609 * last place we found an allocation to try and save
7610 * some time.
7611 */
7612 hint_byte = last_ptr->window_start;
7613 use_cluster = false;
7614 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007615 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007616 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007617
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007618 search_start = max(search_start, first_logical_byte(fs_info, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04007619 search_start = max(search_start, hint_byte);
Josef Bacik2552d172009-04-03 10:14:19 -04007620 if (search_start == hint_byte) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007621 block_group = btrfs_lookup_block_group(fs_info, search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04007622 /*
7623 * we don't want to use the block group if it doesn't match our
7624 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05007625 *
7626 * However if we are re-searching with an ideal block group
7627 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04007628 */
David Sterbab6919a52013-04-29 13:39:40 +00007629 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05007630 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04007631 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007632 if (list_empty(&block_group->list) ||
7633 block_group->ro) {
7634 /*
7635 * someone is removing this block group,
7636 * we can't jump into the have_block_group
7637 * target because our list pointers are not
7638 * valid
7639 */
7640 btrfs_put_block_group(block_group);
7641 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05007642 } else {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007643 index = get_block_group_index(block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007644 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04007645 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05007646 }
Josef Bacik2552d172009-04-03 10:14:19 -04007647 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007648 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04007649 }
Chris Mason42e70e72008-11-07 18:17:11 -05007650 }
Josef Bacik2552d172009-04-03 10:14:19 -04007651search:
Miao Xie60d2adb2011-09-09 17:34:35 +08007652 have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007653 if (index == 0 || index == __get_raid_index(flags))
7654 full_search = true;
Josef Bacik80eb2342008-10-29 14:49:05 -04007655 down_read(&space_info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04007656 list_for_each_entry(block_group, &space_info->block_groups[index],
7657 list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04007658 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04007659 int cached;
Chris Mason8a1413a2008-11-10 16:13:54 -05007660
Jeff Mahoney14443932017-07-19 23:25:51 -04007661 /* If the block group is read-only, we can skip it entirely. */
7662 if (unlikely(block_group->ro))
7663 continue;
7664
Miao Xiee570fd22014-06-19 10:42:50 +08007665 btrfs_grab_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007666 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05007667
Chris Mason83a50de2010-12-13 15:06:46 -05007668 /*
7669 * this can happen if we end up cycling through all the
7670 * raid types, but we want to make sure we only allocate
7671 * for the proper type.
7672 */
David Sterbab6919a52013-04-29 13:39:40 +00007673 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05007674 u64 extra = BTRFS_BLOCK_GROUP_DUP |
7675 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007676 BTRFS_BLOCK_GROUP_RAID5 |
7677 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05007678 BTRFS_BLOCK_GROUP_RAID10;
7679
7680 /*
7681 * if they asked for extra copies and this block group
7682 * doesn't provide them, bail. This does allow us to
7683 * fill raid0 from raid1.
7684 */
David Sterbab6919a52013-04-29 13:39:40 +00007685 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05007686 goto loop;
7687 }
7688
Josef Bacik2552d172009-04-03 10:14:19 -04007689have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05007690 cached = block_group_cache_done(block_group);
7691 if (unlikely(!cached)) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007692 have_caching_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00007693 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04007694 BUG_ON(ret < 0);
7695 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05007696 }
7697
Josef Bacik36cce922013-08-05 11:15:21 -04007698 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
7699 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007700
Josef Bacik0a243252009-09-11 16:11:20 -04007701 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007702 * Ok we want to try and use the cluster allocator, so
7703 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04007704 */
Josef Bacikc759c4e2015-10-02 15:25:10 -04007705 if (last_ptr && use_cluster) {
Miao Xie215a63d2014-01-15 20:00:56 +08007706 struct btrfs_block_group_cache *used_block_group;
Chris Mason8de972b2013-01-04 15:39:43 -05007707 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007708 /*
7709 * the refill lock keeps out other
7710 * people trying to start a new cluster
7711 */
Miao Xiee570fd22014-06-19 10:42:50 +08007712 used_block_group = btrfs_lock_cluster(block_group,
7713 last_ptr,
7714 delalloc);
7715 if (!used_block_group)
Chris Mason44fb5512009-06-04 15:34:51 -04007716 goto refill_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -04007717
Miao Xiee570fd22014-06-19 10:42:50 +08007718 if (used_block_group != block_group &&
7719 (used_block_group->ro ||
7720 !block_group_bits(used_block_group, flags)))
7721 goto release_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007722
7723 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007724 last_ptr,
7725 num_bytes,
7726 used_block_group->key.objectid,
7727 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007728 if (offset) {
7729 /* we have a block, we're done */
7730 spin_unlock(&last_ptr->refill_lock);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007731 trace_btrfs_reserve_extent_cluster(fs_info,
Miao Xie89d43462014-01-15 20:00:57 +08007732 used_block_group,
7733 search_start, num_bytes);
Miao Xie215a63d2014-01-15 20:00:56 +08007734 if (used_block_group != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08007735 btrfs_release_block_group(block_group,
7736 delalloc);
Miao Xie215a63d2014-01-15 20:00:56 +08007737 block_group = used_block_group;
7738 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007739 goto checks;
7740 }
7741
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007742 WARN_ON(last_ptr->block_group != used_block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007743release_cluster:
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007744 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
7745 * set up a new clusters, so lets just skip it
7746 * and let the allocator find whatever block
7747 * it can find. If we reach this point, we
7748 * will have tried the cluster allocator
7749 * plenty of times and not have found
7750 * anything, so we are likely way too
7751 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007752 * anything.
7753 *
7754 * However, if the cluster is taken from the
7755 * current block group, release the cluster
7756 * first, so that we stand a better chance of
7757 * succeeding in the unclustered
7758 * allocation. */
7759 if (loop >= LOOP_NO_EMPTY_SIZE &&
Miao Xiee570fd22014-06-19 10:42:50 +08007760 used_block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007761 spin_unlock(&last_ptr->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007762 btrfs_release_block_group(used_block_group,
7763 delalloc);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007764 goto unclustered_alloc;
7765 }
7766
Chris Masonfa9c0d792009-04-03 09:47:43 -04007767 /*
7768 * this cluster didn't work out, free it and
7769 * start over
7770 */
7771 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7772
Miao Xiee570fd22014-06-19 10:42:50 +08007773 if (used_block_group != block_group)
7774 btrfs_release_block_group(used_block_group,
7775 delalloc);
7776refill_cluster:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007777 if (loop >= LOOP_NO_EMPTY_SIZE) {
7778 spin_unlock(&last_ptr->refill_lock);
7779 goto unclustered_alloc;
7780 }
7781
Chris Mason8de972b2013-01-04 15:39:43 -05007782 aligned_cluster = max_t(unsigned long,
7783 empty_cluster + empty_size,
7784 block_group->full_stripe_len);
7785
Chris Masonfa9c0d792009-04-03 09:47:43 -04007786 /* allocate a cluster in this block group */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007787 ret = btrfs_find_space_cluster(fs_info, block_group,
Josef Bacik00361582013-08-14 14:02:47 -04007788 last_ptr, search_start,
7789 num_bytes,
7790 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007791 if (ret == 0) {
7792 /*
7793 * now pull our allocation out of this
7794 * cluster
7795 */
7796 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007797 last_ptr,
7798 num_bytes,
7799 search_start,
7800 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007801 if (offset) {
7802 /* we found one, proceed */
7803 spin_unlock(&last_ptr->refill_lock);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007804 trace_btrfs_reserve_extent_cluster(fs_info,
Josef Bacik3f7de032011-11-10 08:29:20 -05007805 block_group, search_start,
7806 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007807 goto checks;
7808 }
Josef Bacik0a243252009-09-11 16:11:20 -04007809 } else if (!cached && loop > LOOP_CACHING_NOWAIT
7810 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007811 spin_unlock(&last_ptr->refill_lock);
7812
Josef Bacik0a243252009-09-11 16:11:20 -04007813 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007814 wait_block_group_cache_progress(block_group,
7815 num_bytes + empty_cluster + empty_size);
7816 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007817 }
Josef Bacik817d52f2009-07-13 21:29:25 -04007818
Chris Masonfa9c0d792009-04-03 09:47:43 -04007819 /*
7820 * at this point we either didn't find a cluster
7821 * or we weren't able to allocate a block from our
7822 * cluster. Free the cluster we've been trying
7823 * to use, and go to the next block group
7824 */
Josef Bacik0a243252009-09-11 16:11:20 -04007825 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007826 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04007827 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007828 }
7829
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007830unclustered_alloc:
Josef Bacikc759c4e2015-10-02 15:25:10 -04007831 /*
7832 * We are doing an unclustered alloc, set the fragmented flag so
7833 * we don't bother trying to setup a cluster again until we get
7834 * more space.
7835 */
7836 if (unlikely(last_ptr)) {
7837 spin_lock(&last_ptr->lock);
7838 last_ptr->fragmented = 1;
7839 spin_unlock(&last_ptr->lock);
7840 }
Liu Bo0c9b36e2017-02-13 15:42:30 -08007841 if (cached) {
7842 struct btrfs_free_space_ctl *ctl =
7843 block_group->free_space_ctl;
7844
7845 spin_lock(&ctl->tree_lock);
7846 if (ctl->free_space <
7847 num_bytes + empty_cluster + empty_size) {
7848 if (ctl->free_space > max_extent_size)
7849 max_extent_size = ctl->free_space;
7850 spin_unlock(&ctl->tree_lock);
7851 goto loop;
7852 }
7853 spin_unlock(&ctl->tree_lock);
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007854 }
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007855
Josef Bacik6226cb02009-04-03 10:14:18 -04007856 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08007857 num_bytes, empty_size,
7858 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007859 /*
7860 * If we didn't find a chunk, and we haven't failed on this
7861 * block group before, and this block group is in the middle of
7862 * caching and we are ok with waiting, then go ahead and wait
7863 * for progress to be made, and set failed_alloc to true.
7864 *
7865 * If failed_alloc is true then we've already waited on this
7866 * block group once and should move on to the next block group.
7867 */
7868 if (!offset && !failed_alloc && !cached &&
7869 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007870 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007871 num_bytes + empty_size);
7872 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007873 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007874 } else if (!offset) {
7875 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04007876 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007877checks:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007878 search_start = ALIGN(offset, fs_info->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04007879
Josef Bacik2552d172009-04-03 10:14:19 -04007880 /* move on to the next group */
7881 if (search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08007882 block_group->key.objectid + block_group->key.offset) {
7883 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04007884 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04007885 }
Josef Bacik80eb2342008-10-29 14:49:05 -04007886
Josef Bacik6226cb02009-04-03 10:14:18 -04007887 if (offset < search_start)
Miao Xie215a63d2014-01-15 20:00:56 +08007888 btrfs_add_free_space(block_group, offset,
Josef Bacik6226cb02009-04-03 10:14:18 -04007889 search_start - offset);
7890 BUG_ON(offset > search_start);
7891
Wang Xiaoguang18513092016-07-25 15:51:40 +08007892 ret = btrfs_add_reserved_bytes(block_group, ram_bytes,
7893 num_bytes, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007894 if (ret == -EAGAIN) {
Miao Xie215a63d2014-01-15 20:00:56 +08007895 btrfs_add_free_space(block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007896 goto loop;
7897 }
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007898 btrfs_inc_block_group_reservations(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -04007899
Josef Bacik2552d172009-04-03 10:14:19 -04007900 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007901 ins->objectid = search_start;
7902 ins->offset = num_bytes;
7903
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007904 trace_btrfs_reserve_extent(fs_info, block_group,
Josef Bacik3f7de032011-11-10 08:29:20 -05007905 search_start, num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08007906 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007907 break;
7908loop:
Josef Bacik0a243252009-09-11 16:11:20 -04007909 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007910 failed_alloc = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04007911 BUG_ON(index != get_block_group_index(block_group));
Miao Xiee570fd22014-06-19 10:42:50 +08007912 btrfs_release_block_group(block_group, delalloc);
Jeff Mahoney14443932017-07-19 23:25:51 -04007913 cond_resched();
Josef Bacik2552d172009-04-03 10:14:19 -04007914 }
7915 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05007916
chandan13a0db52015-11-02 13:59:46 +05307917 if ((loop == LOOP_CACHING_NOWAIT) && have_caching_bg
7918 && !orig_have_caching_bg)
7919 orig_have_caching_bg = true;
7920
Miao Xie60d2adb2011-09-09 17:34:35 +08007921 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
7922 goto search;
7923
Yan, Zhengb742bb82010-05-16 10:46:24 -04007924 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
7925 goto search;
7926
Josef Bacik285ff5a2012-01-13 15:27:45 -05007927 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05007928 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7929 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04007930 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7931 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7932 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7933 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04007934 */
Josef Bacik723bda22011-05-27 16:11:38 -04007935 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb82010-05-16 10:46:24 -04007936 index = 0;
Josef Bacika5e681d2015-10-01 14:54:10 -04007937 if (loop == LOOP_CACHING_NOWAIT) {
7938 /*
7939 * We want to skip the LOOP_CACHING_WAIT step if we
Nicholas D Steeves01327612016-05-19 21:18:45 -04007940 * don't have any uncached bgs and we've already done a
Josef Bacika5e681d2015-10-01 14:54:10 -04007941 * full search through.
7942 */
chandan13a0db52015-11-02 13:59:46 +05307943 if (orig_have_caching_bg || !full_search)
Josef Bacika5e681d2015-10-01 14:54:10 -04007944 loop = LOOP_CACHING_WAIT;
7945 else
7946 loop = LOOP_ALLOC_CHUNK;
7947 } else {
7948 loop++;
7949 }
7950
Josef Bacik817d52f2009-07-13 21:29:25 -04007951 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04007952 struct btrfs_trans_handle *trans;
Wang Shilongf017f152014-03-13 13:19:47 +08007953 int exist = 0;
Josef Bacik00361582013-08-14 14:02:47 -04007954
Wang Shilongf017f152014-03-13 13:19:47 +08007955 trans = current->journal_info;
7956 if (trans)
7957 exist = 1;
7958 else
7959 trans = btrfs_join_transaction(root);
7960
Josef Bacik00361582013-08-14 14:02:47 -04007961 if (IS_ERR(trans)) {
7962 ret = PTR_ERR(trans);
7963 goto out;
7964 }
7965
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007966 ret = do_chunk_alloc(trans, fs_info, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04007967 CHUNK_ALLOC_FORCE);
Josef Bacika5e681d2015-10-01 14:54:10 -04007968
7969 /*
7970 * If we can't allocate a new chunk we've already looped
7971 * through at least once, move on to the NO_EMPTY_SIZE
7972 * case.
7973 */
7974 if (ret == -ENOSPC)
7975 loop = LOOP_NO_EMPTY_SIZE;
7976
Josef Bacikea658ba2012-09-11 16:57:25 -04007977 /*
7978 * Do not bail out on ENOSPC since we
7979 * can do more things.
7980 */
Josef Bacik00361582013-08-14 14:02:47 -04007981 if (ret < 0 && ret != -ENOSPC)
Jeff Mahoney66642832016-06-10 18:19:25 -04007982 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -04007983 else
7984 ret = 0;
Wang Shilongf017f152014-03-13 13:19:47 +08007985 if (!exist)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04007986 btrfs_end_transaction(trans);
Josef Bacik00361582013-08-14 14:02:47 -04007987 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04007988 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04007989 }
7990
7991 if (loop == LOOP_NO_EMPTY_SIZE) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007992 /*
7993 * Don't loop again if we already have no empty_size and
7994 * no empty_cluster.
7995 */
7996 if (empty_size == 0 &&
7997 empty_cluster == 0) {
7998 ret = -ENOSPC;
7999 goto out;
8000 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04008001 empty_size = 0;
8002 empty_cluster = 0;
8003 }
Chris Mason42e70e72008-11-07 18:17:11 -05008004
Josef Bacik723bda22011-05-27 16:11:38 -04008005 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04008006 } else if (!ins->objectid) {
8007 ret = -ENOSPC;
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04008008 } else if (ins->objectid) {
Josef Bacikc759c4e2015-10-02 15:25:10 -04008009 if (!use_cluster && last_ptr) {
8010 spin_lock(&last_ptr->lock);
8011 last_ptr->window_start = ins->objectid;
8012 spin_unlock(&last_ptr->lock);
8013 }
Josef Bacik2552d172009-04-03 10:14:19 -04008014 ret = 0;
8015 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008016out:
Josef Bacik4f4db212015-09-29 11:40:47 -04008017 if (ret == -ENOSPC) {
8018 spin_lock(&space_info->lock);
8019 space_info->max_extent_size = max_extent_size;
8020 spin_unlock(&space_info->lock);
Miao Xiea4820392013-09-09 13:19:42 +08008021 ins->offset = max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04008022 }
Chris Mason0f70abe2007-02-28 16:46:22 -05008023 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05008024}
Chris Masonec44a352008-04-28 15:29:52 -04008025
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008026static void dump_space_info(struct btrfs_fs_info *fs_info,
8027 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04008028 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04008029{
8030 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb82010-05-16 10:46:24 -04008031 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008032
Josef Bacik9ed74f22009-09-11 16:12:44 -04008033 spin_lock(&info->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008034 btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull",
8035 info->flags,
Liu Bo41361352017-02-13 15:42:21 -08008036 info->total_bytes - btrfs_space_info_used(info, true),
8037 info->full ? "" : "not ");
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008038 btrfs_info(fs_info,
8039 "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu",
8040 info->total_bytes, info->bytes_used, info->bytes_pinned,
8041 info->bytes_reserved, info->bytes_may_use,
8042 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04008043 spin_unlock(&info->lock);
8044
8045 if (!dump_block_groups)
8046 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008047
Josef Bacik80eb2342008-10-29 14:49:05 -04008048 down_read(&info->groups_sem);
Yan, Zhengb742bb82010-05-16 10:46:24 -04008049again:
8050 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04008051 spin_lock(&cache->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008052 btrfs_info(fs_info,
8053 "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s",
8054 cache->key.objectid, cache->key.offset,
8055 btrfs_block_group_used(&cache->item), cache->pinned,
8056 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04008057 btrfs_dump_free_space(cache, bytes);
8058 spin_unlock(&cache->lock);
8059 }
Yan, Zhengb742bb82010-05-16 10:46:24 -04008060 if (++index < BTRFS_NR_RAID_TYPES)
8061 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04008062 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008063}
Zheng Yane8569812008-09-26 10:05:48 -04008064
Wang Xiaoguang18513092016-07-25 15:51:40 +08008065int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
Yan Zheng11833d62009-09-11 16:11:19 -04008066 u64 num_bytes, u64 min_alloc_size,
8067 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08008068 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05008069{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008070 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik36af4e02015-09-25 16:13:11 -04008071 bool final_tried = num_bytes == min_alloc_size;
David Sterbab6919a52013-04-29 13:39:40 +00008072 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05008073 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04008074
Jeff Mahoney1b868262017-05-17 11:38:35 -04008075 flags = get_alloc_profile_by_root(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04008076again:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008077 WARN_ON(num_bytes < fs_info->sectorsize);
Jeff Mahoney87bde3cd2017-02-15 16:28:27 -05008078 ret = find_free_extent(fs_info, ram_bytes, num_bytes, empty_size,
Wang Xiaoguang18513092016-07-25 15:51:40 +08008079 hint_byte, ins, flags, delalloc);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008080 if (!ret && !is_data) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008081 btrfs_dec_block_group_reservations(fs_info, ins->objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008082 } else if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08008083 if (!final_tried && ins->offset) {
8084 num_bytes = min(num_bytes >> 1, ins->offset);
Jeff Mahoneyda170662016-06-15 09:22:56 -04008085 num_bytes = round_down(num_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008086 fs_info->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05008087 num_bytes = max(num_bytes, min_alloc_size);
Wang Xiaoguang18513092016-07-25 15:51:40 +08008088 ram_bytes = num_bytes;
Miao Xie9e622d62012-01-26 15:01:12 -05008089 if (num_bytes == min_alloc_size)
8090 final_tried = true;
8091 goto again;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008092 } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xie9e622d62012-01-26 15:01:12 -05008093 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008094
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008095 sinfo = __find_space_info(fs_info, flags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008096 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008097 "allocation failed flags %llu, wanted %llu",
8098 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01008099 if (sinfo)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008100 dump_space_info(fs_info, sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05008101 }
Chris Mason925baed2008-06-25 16:01:30 -04008102 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008103
8104 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008105}
8106
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008107static int __btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008108 u64 start, u64 len,
8109 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04008110{
Josef Bacik0f9dd462008-09-23 13:14:11 -04008111 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05008112 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008113
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008114 cache = btrfs_lookup_block_group(fs_info, start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008115 if (!cache) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008116 btrfs_err(fs_info, "Unable to find block group for %llu",
8117 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008118 return -ENOSPC;
8119 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05008120
Chris Masone688b7252011-10-31 20:52:39 -04008121 if (pin)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008122 pin_down_extent(fs_info, cache, start, len, 1);
Chris Masone688b7252011-10-31 20:52:39 -04008123 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008124 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008125 ret = btrfs_discard_extent(fs_info, start, len, NULL);
Chris Masone688b7252011-10-31 20:52:39 -04008126 btrfs_add_free_space(cache, start, len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08008127 btrfs_free_reserved_bytes(cache, len, delalloc);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008128 trace_btrfs_reserved_extent_free(fs_info, start, len);
Chris Masone688b7252011-10-31 20:52:39 -04008129 }
Dongsheng Yang31193212014-12-12 16:44:35 +08008130
Chris Masonfa9c0d792009-04-03 09:47:43 -04008131 btrfs_put_block_group(cache);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008132 return ret;
8133}
8134
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008135int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008136 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04008137{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008138 return __btrfs_free_reserved_extent(fs_info, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04008139}
8140
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008141int btrfs_free_and_pin_reserved_extent(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04008142 u64 start, u64 len)
8143{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008144 return __btrfs_free_reserved_extent(fs_info, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04008145}
8146
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008147static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008148 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008149 u64 parent, u64 root_objectid,
8150 u64 flags, u64 owner, u64 offset,
8151 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008152{
8153 int ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008154 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008155 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008156 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008157 struct extent_buffer *leaf;
8158 int type;
8159 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04008160
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008161 if (parent > 0)
8162 type = BTRFS_SHARED_DATA_REF_KEY;
8163 else
8164 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04008165
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008166 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05008167
8168 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008169 if (!path)
8170 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05008171
Chris Masonb9473432009-03-13 11:00:37 -04008172 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008173 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8174 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008175 if (ret) {
8176 btrfs_free_path(path);
8177 return ret;
8178 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008179
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008180 leaf = path->nodes[0];
8181 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05008182 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008183 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
8184 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8185 btrfs_set_extent_flags(leaf, extent_item,
8186 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05008187
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008188 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8189 btrfs_set_extent_inline_ref_type(leaf, iref, type);
8190 if (parent > 0) {
8191 struct btrfs_shared_data_ref *ref;
8192 ref = (struct btrfs_shared_data_ref *)(iref + 1);
8193 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8194 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
8195 } else {
8196 struct btrfs_extent_data_ref *ref;
8197 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
8198 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
8199 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
8200 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
8201 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
8202 }
Chris Mason47e4bb92008-02-01 14:51:59 -05008203
8204 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05008205 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04008206
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008207 ret = remove_from_free_space_tree(trans, fs_info, ins->objectid,
8208 ins->offset);
8209 if (ret)
8210 return ret;
8211
Jeff Mahoney6202df62016-06-22 18:54:22 -04008212 ret = update_block_group(trans, fs_info, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008213 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008214 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008215 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05008216 BUG();
8217 }
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008218 trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008219 return ret;
8220}
8221
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008222static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008223 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008224 u64 parent, u64 root_objectid,
8225 u64 flags, struct btrfs_disk_key *key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01008226 int level, struct btrfs_key *ins)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008227{
8228 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008229 struct btrfs_extent_item *extent_item;
8230 struct btrfs_tree_block_info *block_info;
8231 struct btrfs_extent_inline_ref *iref;
8232 struct btrfs_path *path;
8233 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05008234 u32 size = sizeof(*extent_item) + sizeof(*iref);
Josef Bacikfcebe452014-05-13 17:30:47 -07008235 u64 num_bytes = ins->offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008236 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Josef Bacik3173a182013-03-07 14:22:04 -05008237
8238 if (!skinny_metadata)
8239 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008240
8241 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04008242 if (!path) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008243 btrfs_free_and_pin_reserved_extent(fs_info, ins->objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008244 fs_info->nodesize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07008245 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04008246 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008247
8248 path->leave_spinning = 1;
8249 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8250 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008251 if (ret) {
Chris Masondd825252015-04-01 08:36:05 -07008252 btrfs_free_path(path);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008253 btrfs_free_and_pin_reserved_extent(fs_info, ins->objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008254 fs_info->nodesize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008255 return ret;
8256 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008257
8258 leaf = path->nodes[0];
8259 extent_item = btrfs_item_ptr(leaf, path->slots[0],
8260 struct btrfs_extent_item);
8261 btrfs_set_extent_refs(leaf, extent_item, 1);
8262 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8263 btrfs_set_extent_flags(leaf, extent_item,
8264 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008265
Josef Bacik3173a182013-03-07 14:22:04 -05008266 if (skinny_metadata) {
8267 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008268 num_bytes = fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05008269 } else {
8270 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
8271 btrfs_set_tree_block_key(leaf, block_info, key);
8272 btrfs_set_tree_block_level(leaf, block_info, level);
8273 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
8274 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008275
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008276 if (parent > 0) {
8277 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
8278 btrfs_set_extent_inline_ref_type(leaf, iref,
8279 BTRFS_SHARED_BLOCK_REF_KEY);
8280 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8281 } else {
8282 btrfs_set_extent_inline_ref_type(leaf, iref,
8283 BTRFS_TREE_BLOCK_REF_KEY);
8284 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
8285 }
8286
8287 btrfs_mark_buffer_dirty(leaf);
8288 btrfs_free_path(path);
8289
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008290 ret = remove_from_free_space_tree(trans, fs_info, ins->objectid,
8291 num_bytes);
8292 if (ret)
8293 return ret;
8294
Jeff Mahoney6202df62016-06-22 18:54:22 -04008295 ret = update_block_group(trans, fs_info, ins->objectid,
8296 fs_info->nodesize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008297 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008298 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008299 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008300 BUG();
8301 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04008302
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008303 trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008304 fs_info->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008305 return ret;
8306}
8307
8308int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008309 u64 root_objectid, u64 owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08008310 u64 offset, u64 ram_bytes,
8311 struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008312{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008313 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008314 int ret;
Chris Mason1c2308f82008-09-23 13:14:13 -04008315
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008316 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04008317
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008318 ret = btrfs_add_delayed_data_ref(fs_info, trans, ins->objectid,
Omar Sandoval7be07912017-06-06 16:45:30 -07008319 ins->offset, 0, root_objectid, owner,
8320 offset, ram_bytes,
8321 BTRFS_ADD_DELAYED_EXTENT, NULL, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008322 return ret;
8323}
Chris Masone02119d2008-09-05 16:13:11 -04008324
8325/*
8326 * this is used by the tree logging recovery code. It records that
8327 * an extent has been allocated and makes sure to clear the free
8328 * space cache bits as well
8329 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008330int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008331 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008332 u64 root_objectid, u64 owner, u64 offset,
8333 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04008334{
8335 int ret;
8336 struct btrfs_block_group_cache *block_group;
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008337 struct btrfs_space_info *space_info;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008338
8339 /*
8340 * Mixed block groups will exclude before processing the log so we only
Nicholas D Steeves01327612016-05-19 21:18:45 -04008341 * need to do the exclude dance if this fs isn't mixed.
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008342 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008343 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008344 ret = __exclude_logged_extent(fs_info, ins->objectid,
8345 ins->offset);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008346 if (ret)
8347 return ret;
8348 }
Chris Masone02119d2008-09-05 16:13:11 -04008349
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008350 block_group = btrfs_lookup_block_group(fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008351 if (!block_group)
8352 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04008353
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008354 space_info = block_group->space_info;
8355 spin_lock(&space_info->lock);
8356 spin_lock(&block_group->lock);
8357 space_info->bytes_reserved += ins->offset;
8358 block_group->reserved += ins->offset;
8359 spin_unlock(&block_group->lock);
8360 spin_unlock(&space_info->lock);
8361
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008362 ret = alloc_reserved_file_extent(trans, fs_info, 0, root_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008363 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04008364 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04008365 return ret;
8366}
8367
Eric Sandeen48a3b632013-04-25 20:41:01 +00008368static struct extent_buffer *
8369btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
David Sterbafe864572014-06-15 02:28:42 +02008370 u64 bytenr, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04008371{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008372 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason65b51a02008-08-01 15:11:20 -04008373 struct extent_buffer *buf;
8374
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008375 buf = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008376 if (IS_ERR(buf))
8377 return buf;
8378
Chris Mason65b51a02008-08-01 15:11:20 -04008379 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04008380 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04008381 btrfs_tree_lock(buf);
David Sterba7c302b42017-02-10 18:47:57 +01008382 clean_tree_block(fs_info, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05008383 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008384
8385 btrfs_set_lock_blocking(buf);
David Sterba4db8c522015-12-03 13:06:46 +01008386 set_extent_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008387
Chris Masond0c803c2008-09-11 16:17:57 -04008388 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01008389 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008390 /*
8391 * we allow two log transactions at a time, use different
8392 * EXENT bit to differentiate dirty pages.
8393 */
Filipe Manana656f30d2014-09-26 12:25:56 +01008394 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008395 set_extent_dirty(&root->dirty_log_pages, buf->start,
8396 buf->start + buf->len - 1, GFP_NOFS);
8397 else
8398 set_extent_new(&root->dirty_log_pages, buf->start,
David Sterba3744dbe2016-04-26 23:54:39 +02008399 buf->start + buf->len - 1);
Chris Masond0c803c2008-09-11 16:17:57 -04008400 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01008401 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04008402 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
8403 buf->start + buf->len - 1, GFP_NOFS);
8404 }
Jeff Mahoney64c12922016-06-08 00:36:38 -04008405 trans->dirty = true;
Chris Masonb4ce94d2009-02-04 09:25:08 -05008406 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04008407 return buf;
8408}
8409
Yan, Zhengf0486c62010-05-16 10:46:25 -04008410static struct btrfs_block_rsv *
8411use_block_rsv(struct btrfs_trans_handle *trans,
8412 struct btrfs_root *root, u32 blocksize)
8413{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008414 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008415 struct btrfs_block_rsv *block_rsv;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008416 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008417 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00008418 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008419
8420 block_rsv = get_block_rsv(trans, root);
8421
Miao Xieb586b322013-05-13 13:55:10 +00008422 if (unlikely(block_rsv->size == 0))
8423 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00008424again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008425 ret = block_rsv_use_bytes(block_rsv, blocksize);
8426 if (!ret)
8427 return block_rsv;
8428
Miao Xieb586b322013-05-13 13:55:10 +00008429 if (block_rsv->failfast)
8430 return ERR_PTR(ret);
8431
Miao Xied88033d2013-05-13 13:55:12 +00008432 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
8433 global_updated = true;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008434 update_global_block_rsv(fs_info);
Miao Xied88033d2013-05-13 13:55:12 +00008435 goto again;
8436 }
8437
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008438 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xieb586b322013-05-13 13:55:10 +00008439 static DEFINE_RATELIMIT_STATE(_rs,
8440 DEFAULT_RATELIMIT_INTERVAL * 10,
8441 /*DEFAULT_RATELIMIT_BURST*/ 1);
8442 if (__ratelimit(&_rs))
8443 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05008444 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00008445 }
8446try_reserve:
8447 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
8448 BTRFS_RESERVE_NO_FLUSH);
8449 if (!ret)
8450 return block_rsv;
8451 /*
8452 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00008453 * the global reserve if its space type is the same as the global
8454 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00008455 */
Miao Xie5881cfc2013-05-13 13:55:11 +00008456 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
8457 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00008458 ret = block_rsv_use_bytes(global_rsv, blocksize);
8459 if (!ret)
8460 return global_rsv;
8461 }
8462 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008463}
8464
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008465static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
8466 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008467{
8468 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008469 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008470}
8471
Chris Masonfec577f2007-02-26 10:40:21 -05008472/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04008473 * finds a free extent and does all the dirty work required for allocation
Omar Sandoval67b78592015-02-24 02:47:04 -08008474 * returns the tree buffer or an ERR_PTR on error.
Chris Masonfec577f2007-02-26 10:40:21 -05008475 */
David Sterba4d75f8a2014-06-15 01:54:12 +02008476struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
Omar Sandoval310712b2017-01-17 23:24:37 -08008477 struct btrfs_root *root,
8478 u64 parent, u64 root_objectid,
8479 const struct btrfs_disk_key *key,
8480 int level, u64 hint,
8481 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05008482{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008483 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone2fa7222007-03-12 16:22:34 -04008484 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008485 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04008486 struct extent_buffer *buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008487 struct btrfs_delayed_extent_op *extent_op;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008488 u64 flags = 0;
8489 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008490 u32 blocksize = fs_info->nodesize;
8491 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008492
David Sterba05653ef2016-07-15 15:23:37 +02008493#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008494 if (btrfs_is_testing(fs_info)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008495 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
David Sterbafe864572014-06-15 02:28:42 +02008496 level);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008497 if (!IS_ERR(buf))
8498 root->alloc_bytenr += blocksize;
8499 return buf;
8500 }
David Sterba05653ef2016-07-15 15:23:37 +02008501#endif
David Sterbafccb84c2014-09-29 23:53:21 +02008502
Yan, Zhengf0486c62010-05-16 10:46:25 -04008503 block_rsv = use_block_rsv(trans, root, blocksize);
8504 if (IS_ERR(block_rsv))
8505 return ERR_CAST(block_rsv);
8506
Wang Xiaoguang18513092016-07-25 15:51:40 +08008507 ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08008508 empty_size, hint, &ins, 0, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008509 if (ret)
8510 goto out_unuse;
Chris Mason55c69072008-01-09 15:55:33 -05008511
David Sterbafe864572014-06-15 02:28:42 +02008512 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level);
Omar Sandoval67b78592015-02-24 02:47:04 -08008513 if (IS_ERR(buf)) {
8514 ret = PTR_ERR(buf);
8515 goto out_free_reserved;
8516 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008517
8518 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
8519 if (parent == 0)
8520 parent = ins.objectid;
8521 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
8522 } else
8523 BUG_ON(parent > 0);
8524
8525 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Miao Xie78a61842012-11-21 02:21:28 +00008526 extent_op = btrfs_alloc_delayed_extent_op();
Omar Sandoval67b78592015-02-24 02:47:04 -08008527 if (!extent_op) {
8528 ret = -ENOMEM;
8529 goto out_free_buf;
8530 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008531 if (key)
8532 memcpy(&extent_op->key, key, sizeof(extent_op->key));
8533 else
8534 memset(&extent_op->key, 0, sizeof(extent_op->key));
8535 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01008536 extent_op->update_key = skinny_metadata ? false : true;
8537 extent_op->update_flags = true;
8538 extent_op->is_data = false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04008539 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008540
Omar Sandoval7be07912017-06-06 16:45:30 -07008541 ret = btrfs_add_delayed_tree_ref(fs_info, trans, ins.objectid,
8542 ins.offset, parent,
8543 root_objectid, level,
Omar Sandoval67b78592015-02-24 02:47:04 -08008544 BTRFS_ADD_DELAYED_EXTENT,
Omar Sandoval7be07912017-06-06 16:45:30 -07008545 extent_op, NULL, NULL);
Omar Sandoval67b78592015-02-24 02:47:04 -08008546 if (ret)
8547 goto out_free_delayed;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008548 }
Chris Masonfec577f2007-02-26 10:40:21 -05008549 return buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008550
8551out_free_delayed:
8552 btrfs_free_delayed_extent_op(extent_op);
8553out_free_buf:
8554 free_extent_buffer(buf);
8555out_free_reserved:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008556 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008557out_unuse:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008558 unuse_block_rsv(fs_info, block_rsv, blocksize);
Omar Sandoval67b78592015-02-24 02:47:04 -08008559 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05008560}
Chris Masona28ec192007-03-06 20:08:01 -05008561
Yan Zheng2c47e6052009-06-27 21:07:35 -04008562struct walk_control {
8563 u64 refs[BTRFS_MAX_LEVEL];
8564 u64 flags[BTRFS_MAX_LEVEL];
8565 struct btrfs_key update_progress;
8566 int stage;
8567 int level;
8568 int shared_level;
8569 int update_ref;
8570 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008571 int reada_slot;
8572 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008573 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008574};
8575
8576#define DROP_REFERENCE 1
8577#define UPDATE_BACKREF 2
8578
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008579static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
8580 struct btrfs_root *root,
8581 struct walk_control *wc,
8582 struct btrfs_path *path)
8583{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008584 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008585 u64 bytenr;
8586 u64 generation;
8587 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008588 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008589 u32 nritems;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008590 struct btrfs_key key;
8591 struct extent_buffer *eb;
8592 int ret;
8593 int slot;
8594 int nread = 0;
8595
8596 if (path->slots[wc->level] < wc->reada_slot) {
8597 wc->reada_count = wc->reada_count * 2 / 3;
8598 wc->reada_count = max(wc->reada_count, 2);
8599 } else {
8600 wc->reada_count = wc->reada_count * 3 / 2;
8601 wc->reada_count = min_t(int, wc->reada_count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008602 BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008603 }
8604
8605 eb = path->nodes[wc->level];
8606 nritems = btrfs_header_nritems(eb);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008607
8608 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
8609 if (nread >= wc->reada_count)
8610 break;
8611
8612 cond_resched();
8613 bytenr = btrfs_node_blockptr(eb, slot);
8614 generation = btrfs_node_ptr_generation(eb, slot);
8615
8616 if (slot == path->slots[wc->level])
8617 goto reada;
8618
8619 if (wc->stage == UPDATE_BACKREF &&
8620 generation <= root->root_key.offset)
8621 continue;
8622
Yan, Zheng94fcca92009-10-09 09:25:16 -04008623 /* We don't lock the tree block, it's OK to be racy here */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008624 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -05008625 wc->level - 1, 1, &refs,
8626 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008627 /* We don't care about errors in readahead. */
8628 if (ret < 0)
8629 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008630 BUG_ON(refs == 0);
8631
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008632 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008633 if (refs == 1)
8634 goto reada;
8635
Yan, Zheng94fcca92009-10-09 09:25:16 -04008636 if (wc->level == 1 &&
8637 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8638 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008639 if (!wc->update_ref ||
8640 generation <= root->root_key.offset)
8641 continue;
8642 btrfs_node_key_to_cpu(eb, &key, slot);
8643 ret = btrfs_comp_cpu_keys(&key,
8644 &wc->update_progress);
8645 if (ret < 0)
8646 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008647 } else {
8648 if (wc->level == 1 &&
8649 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8650 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008651 }
8652reada:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008653 readahead_tree_block(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008654 nread++;
8655 }
8656 wc->reada_slot = slot;
8657}
8658
Chris Mason9aca1d52007-03-13 11:09:37 -04008659/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008660 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008661 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04008662 * when wc->stage == UPDATE_BACKREF, this function updates
8663 * back refs for pointers in the block.
8664 *
8665 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04008666 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008667static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
8668 struct btrfs_root *root,
8669 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008670 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04008671{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008672 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008673 int level = wc->level;
8674 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04008675 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8676 int ret;
8677
8678 if (wc->stage == UPDATE_BACKREF &&
8679 btrfs_header_owner(eb) != root->root_key.objectid)
8680 return 1;
8681
8682 /*
8683 * when reference count of tree block is 1, it won't increase
8684 * again. once full backref flag is set, we never clear it.
8685 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04008686 if (lookup_info &&
8687 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
8688 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008689 BUG_ON(!path->locks[level]);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008690 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05008691 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008692 &wc->refs[level],
8693 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008694 BUG_ON(ret == -ENOMEM);
8695 if (ret)
8696 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008697 BUG_ON(wc->refs[level] == 0);
8698 }
8699
Yan Zheng2c47e6052009-06-27 21:07:35 -04008700 if (wc->stage == DROP_REFERENCE) {
8701 if (wc->refs[level] > 1)
8702 return 1;
8703
8704 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04008705 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008706 path->locks[level] = 0;
8707 }
8708 return 0;
8709 }
8710
8711 /* wc->stage == UPDATE_BACKREF */
8712 if (!(wc->flags[level] & flag)) {
8713 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07008714 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008715 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07008716 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008717 BUG_ON(ret); /* -ENOMEM */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008718 ret = btrfs_set_disk_extent_flags(trans, fs_info, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04008719 eb->len, flag,
8720 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008721 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008722 wc->flags[level] |= flag;
8723 }
8724
8725 /*
8726 * the block is shared by multiple trees, so it's not good to
8727 * keep the tree lock
8728 */
8729 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008730 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008731 path->locks[level] = 0;
8732 }
8733 return 0;
8734}
8735
8736/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008737 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008738 *
8739 * when wc->stage == DROP_REFERENCE, this function checks
8740 * reference count of the block pointed to. if the block
8741 * is shared and we need update back refs for the subtree
8742 * rooted at the block, this function changes wc->stage to
8743 * UPDATE_BACKREF. if the block is shared and there is no
8744 * need to update back, this function drops the reference
8745 * to the block.
8746 *
8747 * NOTE: return value 1 means we should stop walking down.
8748 */
8749static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8750 struct btrfs_root *root,
8751 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008752 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008753{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008754 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008755 u64 bytenr;
8756 u64 generation;
8757 u64 parent;
8758 u32 blocksize;
8759 struct btrfs_key key;
8760 struct extent_buffer *next;
8761 int level = wc->level;
8762 int reada = 0;
8763 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008764 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008765
8766 generation = btrfs_node_ptr_generation(path->nodes[level],
8767 path->slots[level]);
8768 /*
8769 * if the lower level block was created before the snapshot
8770 * was created, we know there is no need to update back refs
8771 * for the subtree
8772 */
8773 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008774 generation <= root->root_key.offset) {
8775 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008776 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008777 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008778
8779 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008780 blocksize = fs_info->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008781
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008782 next = find_extent_buffer(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008783 if (!next) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008784 next = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008785 if (IS_ERR(next))
8786 return PTR_ERR(next);
8787
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008788 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8789 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008790 reada = 1;
8791 }
8792 btrfs_tree_lock(next);
8793 btrfs_set_lock_blocking(next);
8794
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008795 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008796 &wc->refs[level - 1],
8797 &wc->flags[level - 1]);
Josef Bacik48672682016-09-23 13:23:28 +02008798 if (ret < 0)
8799 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008800
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008801 if (unlikely(wc->refs[level - 1] == 0)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008802 btrfs_err(fs_info, "Missing references.");
Josef Bacik48672682016-09-23 13:23:28 +02008803 ret = -EIO;
8804 goto out_unlock;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008805 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008806 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008807
Yan, Zheng94fcca92009-10-09 09:25:16 -04008808 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008809 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008810 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008811 if (level == 1 &&
8812 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8813 goto skip;
8814
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008815 if (!wc->update_ref ||
8816 generation <= root->root_key.offset)
8817 goto skip;
8818
8819 btrfs_node_key_to_cpu(path->nodes[level], &key,
8820 path->slots[level]);
8821 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8822 if (ret < 0)
8823 goto skip;
8824
8825 wc->stage = UPDATE_BACKREF;
8826 wc->shared_level = level - 1;
8827 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008828 } else {
8829 if (level == 1 &&
8830 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8831 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008832 }
8833
Chris Masonb9fab912012-05-06 07:23:47 -04008834 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008835 btrfs_tree_unlock(next);
8836 free_extent_buffer(next);
8837 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008838 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008839 }
8840
8841 if (!next) {
8842 if (reada && level == 1)
8843 reada_walk_down(trans, root, wc, path);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008844 next = read_tree_block(fs_info, bytenr, generation);
Liu Bo64c043d2015-05-25 17:30:15 +08008845 if (IS_ERR(next)) {
8846 return PTR_ERR(next);
8847 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008848 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008849 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008850 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008851 btrfs_tree_lock(next);
8852 btrfs_set_lock_blocking(next);
8853 }
8854
8855 level--;
Josef Bacik48672682016-09-23 13:23:28 +02008856 ASSERT(level == btrfs_header_level(next));
8857 if (level != btrfs_header_level(next)) {
8858 btrfs_err(root->fs_info, "mismatched level");
8859 ret = -EIO;
8860 goto out_unlock;
8861 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008862 path->nodes[level] = next;
8863 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008864 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008865 wc->level = level;
8866 if (wc->level == 1)
8867 wc->reada_slot = 0;
8868 return 0;
8869skip:
8870 wc->refs[level - 1] = 0;
8871 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008872 if (wc->stage == DROP_REFERENCE) {
8873 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
8874 parent = path->nodes[level]->start;
8875 } else {
Josef Bacik48672682016-09-23 13:23:28 +02008876 ASSERT(root->root_key.objectid ==
Yan, Zheng94fcca92009-10-09 09:25:16 -04008877 btrfs_header_owner(path->nodes[level]));
Josef Bacik48672682016-09-23 13:23:28 +02008878 if (root->root_key.objectid !=
8879 btrfs_header_owner(path->nodes[level])) {
8880 btrfs_err(root->fs_info,
8881 "mismatched block owner");
8882 ret = -EIO;
8883 goto out_unlock;
8884 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008885 parent = 0;
8886 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008887
Mark Fasheh11526512014-07-17 12:39:01 -07008888 if (need_account) {
Qu Wenruo33d1f052016-10-18 09:31:28 +08008889 ret = btrfs_qgroup_trace_subtree(trans, root, next,
8890 generation, level - 1);
Mark Fasheh11526512014-07-17 12:39:01 -07008891 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008892 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008893 "Error %d accounting shared subtree. Quota is out of sync, rescan required.",
8894 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07008895 }
8896 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008897 ret = btrfs_free_extent(trans, fs_info, bytenr, blocksize,
8898 parent, root->root_key.objectid,
8899 level - 1, 0);
Josef Bacik48672682016-09-23 13:23:28 +02008900 if (ret)
8901 goto out_unlock;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008902 }
Josef Bacik48672682016-09-23 13:23:28 +02008903
8904 *lookup_info = 1;
8905 ret = 1;
8906
8907out_unlock:
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008908 btrfs_tree_unlock(next);
8909 free_extent_buffer(next);
Josef Bacik48672682016-09-23 13:23:28 +02008910
8911 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008912}
8913
8914/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008915 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008916 *
8917 * when wc->stage == DROP_REFERENCE, this function drops
8918 * reference count on the block.
8919 *
8920 * when wc->stage == UPDATE_BACKREF, this function changes
8921 * wc->stage back to DROP_REFERENCE if we changed wc->stage
8922 * to UPDATE_BACKREF previously while processing the block.
8923 *
8924 * NOTE: return value 1 means we should stop walking up.
8925 */
8926static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
8927 struct btrfs_root *root,
8928 struct btrfs_path *path,
8929 struct walk_control *wc)
8930{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008931 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008932 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008933 int level = wc->level;
8934 struct extent_buffer *eb = path->nodes[level];
8935 u64 parent = 0;
8936
8937 if (wc->stage == UPDATE_BACKREF) {
8938 BUG_ON(wc->shared_level < level);
8939 if (level < wc->shared_level)
8940 goto out;
8941
Yan Zheng2c47e6052009-06-27 21:07:35 -04008942 ret = find_next_key(path, level + 1, &wc->update_progress);
8943 if (ret > 0)
8944 wc->update_ref = 0;
8945
8946 wc->stage = DROP_REFERENCE;
8947 wc->shared_level = -1;
8948 path->slots[level] = 0;
8949
8950 /*
8951 * check reference count again if the block isn't locked.
8952 * we should start walking down the tree again if reference
8953 * count is one.
8954 */
8955 if (!path->locks[level]) {
8956 BUG_ON(level == 0);
8957 btrfs_tree_lock(eb);
8958 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008959 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008960
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008961 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05008962 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008963 &wc->refs[level],
8964 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008965 if (ret < 0) {
8966 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008967 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008968 return ret;
8969 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008970 BUG_ON(wc->refs[level] == 0);
8971 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04008972 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008973 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008974 return 1;
8975 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008976 }
8977 }
8978
8979 /* wc->stage == DROP_REFERENCE */
8980 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
8981
8982 if (wc->refs[level] == 1) {
8983 if (level == 0) {
8984 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07008985 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008986 else
Josef Bacike339a6b2014-07-02 10:54:25 -07008987 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008988 BUG_ON(ret); /* -ENOMEM */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008989 ret = btrfs_qgroup_trace_leaf_items(trans, fs_info, eb);
Mark Fasheh11526512014-07-17 12:39:01 -07008990 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008991 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008992 "error %d accounting leaf items. Quota is out of sync, rescan required.",
8993 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07008994 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008995 }
8996 /* make block locked assertion in clean_tree_block happy */
8997 if (!path->locks[level] &&
8998 btrfs_header_generation(eb) == trans->transid) {
8999 btrfs_tree_lock(eb);
9000 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04009001 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009002 }
David Sterba7c302b42017-02-10 18:47:57 +01009003 clean_tree_block(fs_info, eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009004 }
9005
9006 if (eb == root->node) {
9007 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9008 parent = eb->start;
9009 else
9010 BUG_ON(root->root_key.objectid !=
9011 btrfs_header_owner(eb));
9012 } else {
9013 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
9014 parent = path->nodes[level + 1]->start;
9015 else
9016 BUG_ON(root->root_key.objectid !=
9017 btrfs_header_owner(path->nodes[level + 1]));
9018 }
9019
Jan Schmidt5581a512012-05-16 17:04:52 +02009020 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009021out:
9022 wc->refs[level] = 0;
9023 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009024 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009025}
9026
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009027static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
9028 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009029 struct btrfs_path *path,
9030 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009031{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009032 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04009033 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009034 int ret;
9035
Yan Zheng2c47e6052009-06-27 21:07:35 -04009036 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04009037 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009038 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04009039 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009040
Yan Zheng2c47e6052009-06-27 21:07:35 -04009041 if (level == 0)
9042 break;
9043
Yan, Zheng7a7965f2010-02-01 02:41:17 +00009044 if (path->slots[level] >=
9045 btrfs_header_nritems(path->nodes[level]))
9046 break;
9047
Yan, Zheng94fcca92009-10-09 09:25:16 -04009048 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009049 if (ret > 0) {
9050 path->slots[level]++;
9051 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00009052 } else if (ret < 0)
9053 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009054 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009055 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009056 return 0;
9057}
9058
Chris Masond3977122009-01-05 21:25:51 -05009059static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05009060 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04009061 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009062 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05009063{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009064 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05009065 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04009066
Yan Zheng2c47e6052009-06-27 21:07:35 -04009067 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
9068 while (level < max_level && path->nodes[level]) {
9069 wc->level = level;
9070 if (path->slots[level] + 1 <
9071 btrfs_header_nritems(path->nodes[level])) {
9072 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05009073 return 0;
9074 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009075 ret = walk_up_proc(trans, root, path, wc);
9076 if (ret > 0)
9077 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05009078
Yan Zheng2c47e6052009-06-27 21:07:35 -04009079 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04009080 btrfs_tree_unlock_rw(path->nodes[level],
9081 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009082 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009083 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009084 free_extent_buffer(path->nodes[level]);
9085 path->nodes[level] = NULL;
9086 level++;
Chris Mason20524f02007-03-10 06:35:47 -05009087 }
9088 }
9089 return 1;
9090}
9091
Chris Mason9aca1d52007-03-13 11:09:37 -04009092/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04009093 * drop a subvolume tree.
9094 *
9095 * this function traverses the tree freeing any blocks that only
9096 * referenced by the tree.
9097 *
9098 * when a shared tree block is found. this function decreases its
9099 * reference count by one. if update_ref is true, this function
9100 * also make sure backrefs for the shared block and all lower level
9101 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00009102 *
9103 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04009104 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04009105int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009106 struct btrfs_block_rsv *block_rsv, int update_ref,
9107 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05009108{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009109 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04009110 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009111 struct btrfs_trans_handle *trans;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009112 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04009113 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009114 struct walk_control *wc;
9115 struct btrfs_key key;
9116 int err = 0;
9117 int ret;
9118 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04009119 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05009120
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009121 btrfs_debug(fs_info, "Drop subvolume %llu", root->objectid);
Mark Fasheh11526512014-07-17 12:39:01 -07009122
Chris Mason5caf2a02007-04-02 11:20:42 -04009123 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009124 if (!path) {
9125 err = -ENOMEM;
9126 goto out;
9127 }
Chris Mason20524f02007-03-10 06:35:47 -05009128
Yan Zheng2c47e6052009-06-27 21:07:35 -04009129 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07009130 if (!wc) {
9131 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009132 err = -ENOMEM;
9133 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07009134 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009135
Yan, Zhenga22285a2010-05-16 10:48:46 -04009136 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009137 if (IS_ERR(trans)) {
9138 err = PTR_ERR(trans);
9139 goto out_free;
9140 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00009141
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009142 if (block_rsv)
9143 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009144
Chris Mason9f3a7422007-08-07 15:52:19 -04009145 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009146 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009147 path->nodes[level] = btrfs_lock_root_node(root);
9148 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04009149 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009150 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009151 memset(&wc->update_progress, 0,
9152 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04009153 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04009154 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009155 memcpy(&wc->update_progress, &key,
9156 sizeof(wc->update_progress));
9157
Chris Mason6702ed42007-08-07 16:15:09 -04009158 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009159 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04009160 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009161 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
9162 path->lowest_level = 0;
9163 if (ret < 0) {
9164 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009165 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04009166 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009167 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009168
Chris Mason7d9eb122008-07-08 14:19:17 -04009169 /*
9170 * unlock our path, this is safe because only this
9171 * function is allowed to delete this snapshot
9172 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009173 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04009174
Yan Zheng2c47e6052009-06-27 21:07:35 -04009175 level = btrfs_header_level(root->node);
9176 while (1) {
9177 btrfs_tree_lock(path->nodes[level]);
9178 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009179 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009180
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009181 ret = btrfs_lookup_extent_info(trans, fs_info,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009182 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05009183 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04009184 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009185 if (ret < 0) {
9186 err = ret;
9187 goto out_end_trans;
9188 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009189 BUG_ON(wc->refs[level] == 0);
9190
9191 if (level == root_item->drop_level)
9192 break;
9193
9194 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009195 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009196 WARN_ON(wc->refs[level] != 1);
9197 level--;
9198 }
9199 }
9200
9201 wc->level = level;
9202 wc->shared_level = -1;
9203 wc->stage = DROP_REFERENCE;
9204 wc->update_ref = update_ref;
9205 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009206 wc->for_reloc = for_reloc;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009207 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009208
9209 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00009210
Yan Zheng2c47e6052009-06-27 21:07:35 -04009211 ret = walk_down_tree(trans, root, path, wc);
9212 if (ret < 0) {
9213 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04009214 break;
9215 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009216
9217 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
9218 if (ret < 0) {
9219 err = ret;
9220 break;
9221 }
9222
9223 if (ret > 0) {
9224 BUG_ON(wc->stage != DROP_REFERENCE);
9225 break;
9226 }
9227
9228 if (wc->stage == DROP_REFERENCE) {
9229 level = wc->level;
9230 btrfs_node_key(path->nodes[level],
9231 &root_item->drop_progress,
9232 path->slots[level]);
9233 root_item->drop_level = level;
9234 }
9235
9236 BUG_ON(wc->level == 0);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009237 if (btrfs_should_end_transaction(trans) ||
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009238 (!for_reloc && btrfs_need_cleaner_sleep(fs_info))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009239 ret = btrfs_update_root(trans, tree_root,
9240 &root->root_key,
9241 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009242 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009243 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009244 err = ret;
9245 goto out_end_trans;
9246 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009247
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009248 btrfs_end_transaction_throttle(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009249 if (!for_reloc && btrfs_need_cleaner_sleep(fs_info)) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009250 btrfs_debug(fs_info,
9251 "drop snapshot early exit");
Josef Bacik3c8f2422013-07-15 11:57:06 -04009252 err = -EAGAIN;
9253 goto out_free;
9254 }
9255
Yan, Zhenga22285a2010-05-16 10:48:46 -04009256 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009257 if (IS_ERR(trans)) {
9258 err = PTR_ERR(trans);
9259 goto out_free;
9260 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009261 if (block_rsv)
9262 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04009263 }
Chris Mason20524f02007-03-10 06:35:47 -05009264 }
David Sterbab3b4aa72011-04-21 01:20:15 +02009265 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009266 if (err)
9267 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009268
Jeff Mahoney1cd54472017-08-17 10:25:11 -04009269 ret = btrfs_del_root(trans, fs_info, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009270 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009271 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009272 goto out_end_trans;
9273 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009274
Yan, Zheng76dda932009-09-21 16:00:26 -04009275 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00009276 ret = btrfs_find_root(tree_root, &root->root_key, path,
9277 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009278 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009279 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009280 err = ret;
9281 goto out_end_trans;
9282 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05009283 /* if we fail to delete the orphan item this time
9284 * around, it'll get picked up the next time.
9285 *
9286 * The most common failure here is just -ENOENT.
9287 */
9288 btrfs_del_orphan_item(trans, tree_root,
9289 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04009290 }
9291 }
9292
Miao Xie27cdeb72014-04-02 19:51:05 +08009293 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Josef Bacik2b9dbef2015-09-15 10:07:04 -04009294 btrfs_add_dropped_root(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009295 } else {
9296 free_extent_buffer(root->node);
9297 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00009298 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009299 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04009300 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009301out_end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009302 btrfs_end_transaction_throttle(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009303out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04009304 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04009305 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009306out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04009307 /*
9308 * So if we need to stop dropping the snapshot for whatever reason we
9309 * need to make sure to add it back to the dead root list so that we
9310 * keep trying to do the work later. This also cleans up roots if we
9311 * don't have it in the radix (like when we recover after a power fail
9312 * or unmount) so we don't leak memory.
9313 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04009314 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04009315 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08009316 if (err && err != -EAGAIN)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009317 btrfs_handle_fs_error(fs_info, err, NULL);
Jeff Mahoney2c536792011-10-03 23:22:41 -04009318 return err;
Chris Mason20524f02007-03-10 06:35:47 -05009319}
Chris Mason9078a3e2007-04-26 16:46:15 -04009320
Yan Zheng2c47e6052009-06-27 21:07:35 -04009321/*
9322 * drop subtree rooted at tree block 'node'.
9323 *
9324 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009325 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04009326 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04009327int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
9328 struct btrfs_root *root,
9329 struct extent_buffer *node,
9330 struct extent_buffer *parent)
9331{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009332 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009333 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009334 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009335 int level;
9336 int parent_level;
9337 int ret = 0;
9338 int wret;
9339
Yan Zheng2c47e6052009-06-27 21:07:35 -04009340 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
9341
Yan Zhengf82d02d2008-10-29 14:49:05 -04009342 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009343 if (!path)
9344 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009345
Yan Zheng2c47e6052009-06-27 21:07:35 -04009346 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009347 if (!wc) {
9348 btrfs_free_path(path);
9349 return -ENOMEM;
9350 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009351
Chris Masonb9447ef2009-03-09 11:45:38 -04009352 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009353 parent_level = btrfs_header_level(parent);
9354 extent_buffer_get(parent);
9355 path->nodes[parent_level] = parent;
9356 path->slots[parent_level] = btrfs_header_nritems(parent);
9357
Chris Masonb9447ef2009-03-09 11:45:38 -04009358 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009359 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009360 path->nodes[level] = node;
9361 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009362 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009363
9364 wc->refs[parent_level] = 1;
9365 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
9366 wc->level = level;
9367 wc->shared_level = -1;
9368 wc->stage = DROP_REFERENCE;
9369 wc->update_ref = 0;
9370 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009371 wc->for_reloc = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009372 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009373
9374 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009375 wret = walk_down_tree(trans, root, path, wc);
9376 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04009377 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009378 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009379 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009380
Yan Zheng2c47e6052009-06-27 21:07:35 -04009381 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009382 if (wret < 0)
9383 ret = wret;
9384 if (wret != 0)
9385 break;
9386 }
9387
Yan Zheng2c47e6052009-06-27 21:07:35 -04009388 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009389 btrfs_free_path(path);
9390 return ret;
9391}
9392
Jeff Mahoney6202df62016-06-22 18:54:22 -04009393static u64 update_block_group_flags(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04009394{
9395 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009396 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04009397
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009398 /*
9399 * if restripe for this chunk_type is on pick target profile and
9400 * return, otherwise do the usual balance
9401 */
Jeff Mahoney6202df62016-06-22 18:54:22 -04009402 stripped = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009403 if (stripped)
9404 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02009405
Jeff Mahoney6202df62016-06-22 18:54:22 -04009406 num_devices = fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05009407
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009408 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009409 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009410 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
9411
Chris Masonec44a352008-04-28 15:29:52 -04009412 if (num_devices == 1) {
9413 stripped |= BTRFS_BLOCK_GROUP_DUP;
9414 stripped = flags & ~stripped;
9415
9416 /* turn raid0 into single device chunks */
9417 if (flags & BTRFS_BLOCK_GROUP_RAID0)
9418 return stripped;
9419
9420 /* turn mirroring into duplication */
9421 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
9422 BTRFS_BLOCK_GROUP_RAID10))
9423 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04009424 } else {
9425 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04009426 if (flags & stripped)
9427 return flags;
9428
9429 stripped |= BTRFS_BLOCK_GROUP_DUP;
9430 stripped = flags & ~stripped;
9431
9432 /* switch duplicated blocks with raid1 */
9433 if (flags & BTRFS_BLOCK_GROUP_DUP)
9434 return stripped | BTRFS_BLOCK_GROUP_RAID1;
9435
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009436 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04009437 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009438
Chris Masonec44a352008-04-28 15:29:52 -04009439 return flags;
9440}
9441
Zhaolei868f4012015-08-05 16:43:27 +08009442static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04009443{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009444 struct btrfs_space_info *sinfo = cache->space_info;
9445 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00009446 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009447 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04009448
Miao Xie199c36e2011-07-15 10:34:36 +00009449 /*
9450 * We need some metadata space and system metadata space for
9451 * allocating chunks in some corner cases until we force to set
9452 * it to be readonly.
9453 */
9454 if ((sinfo->flags &
9455 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
9456 !force)
Byongho Leeee221842015-12-15 01:42:10 +09009457 min_allocable_bytes = SZ_1M;
Miao Xie199c36e2011-07-15 10:34:36 +00009458 else
9459 min_allocable_bytes = 0;
9460
Yan, Zhengf0486c62010-05-16 10:46:25 -04009461 spin_lock(&sinfo->lock);
9462 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00009463
9464 if (cache->ro) {
Zhaolei868f4012015-08-05 16:43:27 +08009465 cache->ro++;
WuBo61cfea92011-07-26 03:30:11 +00009466 ret = 0;
9467 goto out;
9468 }
9469
Yan, Zhengf0486c62010-05-16 10:46:25 -04009470 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
9471 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04009472
Liu Bo41361352017-02-13 15:42:21 -08009473 if (btrfs_space_info_used(sinfo, true) + num_bytes +
Josef Bacik37be25b2011-08-05 10:25:38 -04009474 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04009475 sinfo->bytes_readonly += num_bytes;
Zhaolei868f4012015-08-05 16:43:27 +08009476 cache->ro++;
Josef Bacik633c0aa2014-10-31 09:49:34 -04009477 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009478 ret = 0;
9479 }
WuBo61cfea92011-07-26 03:30:11 +00009480out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04009481 spin_unlock(&cache->lock);
9482 spin_unlock(&sinfo->lock);
9483 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04009484}
9485
Jeff Mahoney5e00f192017-02-15 16:28:29 -05009486int btrfs_inc_block_group_ro(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04009487 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009488
9489{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009490 struct btrfs_trans_handle *trans;
9491 u64 alloc_flags;
9492 int ret;
9493
Chris Mason1bbc6212015-04-06 12:46:08 -07009494again:
Jeff Mahoney5e00f192017-02-15 16:28:29 -05009495 trans = btrfs_join_transaction(fs_info->extent_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009496 if (IS_ERR(trans))
9497 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009498
Chris Mason1bbc6212015-04-06 12:46:08 -07009499 /*
9500 * we're not allowed to set block groups readonly after the dirty
9501 * block groups cache has started writing. If it already started,
9502 * back off and let this transaction commit
9503 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009504 mutex_lock(&fs_info->ro_block_group_mutex);
Josef Bacik3204d332015-09-24 10:46:10 -04009505 if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009506 u64 transid = trans->transid;
9507
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009508 mutex_unlock(&fs_info->ro_block_group_mutex);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009509 btrfs_end_transaction(trans);
Chris Mason1bbc6212015-04-06 12:46:08 -07009510
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009511 ret = btrfs_wait_for_commit(fs_info, transid);
Chris Mason1bbc6212015-04-06 12:46:08 -07009512 if (ret)
9513 return ret;
9514 goto again;
9515 }
9516
Chris Mason153c35b2015-05-19 18:54:41 -07009517 /*
9518 * if we are changing raid levels, try to allocate a corresponding
9519 * block group with the new raid level.
9520 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009521 alloc_flags = update_block_group_flags(fs_info, cache->flags);
Chris Mason153c35b2015-05-19 18:54:41 -07009522 if (alloc_flags != cache->flags) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009523 ret = do_chunk_alloc(trans, fs_info, alloc_flags,
Chris Mason153c35b2015-05-19 18:54:41 -07009524 CHUNK_ALLOC_FORCE);
9525 /*
9526 * ENOSPC is allowed here, we may have enough space
9527 * already allocated at the new raid level to
9528 * carry on
9529 */
9530 if (ret == -ENOSPC)
9531 ret = 0;
9532 if (ret < 0)
9533 goto out;
9534 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009535
Zhaolei868f4012015-08-05 16:43:27 +08009536 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009537 if (!ret)
9538 goto out;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009539 alloc_flags = get_alloc_profile(fs_info, cache->space_info->flags);
9540 ret = do_chunk_alloc(trans, fs_info, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04009541 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009542 if (ret < 0)
9543 goto out;
Zhaolei868f4012015-08-05 16:43:27 +08009544 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009545out:
Shaohua Li2f081082015-01-09 10:40:15 -08009546 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009547 alloc_flags = update_block_group_flags(fs_info, cache->flags);
David Sterba34441362016-10-04 19:34:27 +02009548 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009549 check_system_chunk(trans, fs_info, alloc_flags);
David Sterba34441362016-10-04 19:34:27 +02009550 mutex_unlock(&fs_info->chunk_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009551 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009552 mutex_unlock(&fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009553
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009554 btrfs_end_transaction(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009555 return ret;
9556}
9557
Chris Masonc87f08c2011-02-16 13:57:04 -05009558int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009559 struct btrfs_fs_info *fs_info, u64 type)
Chris Masonc87f08c2011-02-16 13:57:04 -05009560{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009561 u64 alloc_flags = get_alloc_profile(fs_info, type);
9562
9563 return do_chunk_alloc(trans, fs_info, alloc_flags, CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05009564}
9565
Miao Xie6d07bce2011-01-05 10:07:31 +00009566/*
9567 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04009568 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00009569 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009570u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00009571{
9572 struct btrfs_block_group_cache *block_group;
9573 u64 free_bytes = 0;
9574 int factor;
9575
Nicholas D Steeves01327612016-05-19 21:18:45 -04009576 /* It's df, we don't care if it's racy */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009577 if (list_empty(&sinfo->ro_bgs))
9578 return 0;
9579
9580 spin_lock(&sinfo->lock);
9581 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00009582 spin_lock(&block_group->lock);
9583
9584 if (!block_group->ro) {
9585 spin_unlock(&block_group->lock);
9586 continue;
9587 }
9588
9589 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
9590 BTRFS_BLOCK_GROUP_RAID10 |
9591 BTRFS_BLOCK_GROUP_DUP))
9592 factor = 2;
9593 else
9594 factor = 1;
9595
9596 free_bytes += (block_group->key.offset -
9597 btrfs_block_group_used(&block_group->item)) *
9598 factor;
9599
9600 spin_unlock(&block_group->lock);
9601 }
Miao Xie6d07bce2011-01-05 10:07:31 +00009602 spin_unlock(&sinfo->lock);
9603
9604 return free_bytes;
9605}
9606
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009607void btrfs_dec_block_group_ro(struct btrfs_block_group_cache *cache)
Yan, Zhengf0486c62010-05-16 10:46:25 -04009608{
9609 struct btrfs_space_info *sinfo = cache->space_info;
9610 u64 num_bytes;
9611
9612 BUG_ON(!cache->ro);
9613
9614 spin_lock(&sinfo->lock);
9615 spin_lock(&cache->lock);
Zhaolei868f4012015-08-05 16:43:27 +08009616 if (!--cache->ro) {
9617 num_bytes = cache->key.offset - cache->reserved -
9618 cache->pinned - cache->bytes_super -
9619 btrfs_block_group_used(&cache->item);
9620 sinfo->bytes_readonly -= num_bytes;
9621 list_del_init(&cache->ro_list);
9622 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009623 spin_unlock(&cache->lock);
9624 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009625}
9626
Josef Bacikba1bf482009-09-11 16:11:19 -04009627/*
9628 * checks to see if its even possible to relocate this block group.
9629 *
9630 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
9631 * ok to go ahead and try.
9632 */
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009633int btrfs_can_relocate(struct btrfs_fs_info *fs_info, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04009634{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009635 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04009636 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04009637 struct btrfs_space_info *space_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009638 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacikba1bf482009-09-11 16:11:19 -04009639 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04009640 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00009641 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04009642 u64 dev_min = 1;
9643 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009644 u64 target;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009645 int debug;
liubocdcb7252011-08-03 10:15:25 +00009646 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04009647 int full = 0;
9648 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05009649
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009650 debug = btrfs_test_opt(fs_info, ENOSPC_DEBUG);
Qu Wenruo0305bc22016-03-23 11:38:17 +08009651
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009652 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04009653
Josef Bacikba1bf482009-09-11 16:11:19 -04009654 /* odd, couldn't find the block group, leave it alone */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009655 if (!block_group) {
9656 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009657 btrfs_warn(fs_info,
Qu Wenruo0305bc22016-03-23 11:38:17 +08009658 "can't find block group for bytenr %llu",
9659 bytenr);
Josef Bacikba1bf482009-09-11 16:11:19 -04009660 return -1;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009661 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009662
liubocdcb7252011-08-03 10:15:25 +00009663 min_free = btrfs_block_group_used(&block_group->item);
9664
Josef Bacikba1bf482009-09-11 16:11:19 -04009665 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00009666 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04009667 goto out;
Chris Mason323da792008-05-09 11:46:48 -04009668
Josef Bacikba1bf482009-09-11 16:11:19 -04009669 space_info = block_group->space_info;
9670 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04009671
Josef Bacikba1bf482009-09-11 16:11:19 -04009672 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04009673
Josef Bacikba1bf482009-09-11 16:11:19 -04009674 /*
9675 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04009676 * relocate it unless we're able to allocate a new chunk below.
9677 *
9678 * Otherwise, we need to make sure we have room in the space to handle
9679 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04009680 */
Chris Mason7ce618d2009-09-22 14:48:44 -04009681 if ((space_info->total_bytes != block_group->key.offset) &&
Liu Bo41361352017-02-13 15:42:21 -08009682 (btrfs_space_info_used(space_info, false) + min_free <
9683 space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04009684 spin_unlock(&space_info->lock);
9685 goto out;
9686 }
9687 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009688
Josef Bacikba1bf482009-09-11 16:11:19 -04009689 /*
9690 * ok we don't have enough space, but maybe we have free space on our
9691 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009692 * alloc devices and guess if we have enough space. if this block
9693 * group is going to be restriped, run checks against the target
9694 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04009695 */
9696 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05009697
liubocdcb7252011-08-03 10:15:25 +00009698 /*
9699 * index:
9700 * 0: raid10
9701 * 1: raid1
9702 * 2: dup
9703 * 3: raid0
9704 * 4: single
9705 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009706 target = get_restripe_target(fs_info, block_group->flags);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009707 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00009708 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009709 } else {
9710 /*
9711 * this is just a balance, so if we were marked as full
9712 * we know there is no space for a new chunk
9713 */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009714 if (full) {
9715 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009716 btrfs_warn(fs_info,
9717 "no space to alloc new chunk for block group %llu",
9718 block_group->key.objectid);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009719 goto out;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009720 }
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009721
9722 index = get_block_group_index(block_group);
9723 }
9724
Miao Xiee6ec7162013-01-17 05:38:51 +00009725 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00009726 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04009727 /* Divide by 2 */
9728 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009729 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00009730 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00009731 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04009732 /* Multiply by 2 */
9733 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009734 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00009735 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01009736 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00009737 }
9738
Josef Bacik6df9a952013-06-27 13:22:46 -04009739 /* We need to do this so that we can look at pending chunks */
9740 trans = btrfs_join_transaction(root);
9741 if (IS_ERR(trans)) {
9742 ret = PTR_ERR(trans);
9743 goto out;
9744 }
9745
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009746 mutex_lock(&fs_info->chunk_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04009747 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00009748 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04009749
Josef Bacikba1bf482009-09-11 16:11:19 -04009750 /*
9751 * check to make sure we can actually find a chunk with enough
9752 * space to fit our block group in.
9753 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01009754 if (device->total_bytes > device->bytes_used + min_free &&
9755 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04009756 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00009757 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009758 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009759 dev_nr++;
9760
9761 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009762 break;
liubocdcb7252011-08-03 10:15:25 +00009763
Josef Bacikba1bf482009-09-11 16:11:19 -04009764 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009765 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009766 }
Qu Wenruo0305bc22016-03-23 11:38:17 +08009767 if (debug && ret == -1)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009768 btrfs_warn(fs_info,
9769 "no space to allocate a new chunk for block group %llu",
9770 block_group->key.objectid);
9771 mutex_unlock(&fs_info->chunk_mutex);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009772 btrfs_end_transaction(trans);
Chris Masonedbd8d42007-12-21 16:27:24 -05009773out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009774 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009775 return ret;
9776}
9777
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009778static int find_first_block_group(struct btrfs_fs_info *fs_info,
9779 struct btrfs_path *path,
9780 struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009781{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009782 struct btrfs_root *root = fs_info->extent_root;
Chris Mason925baed2008-06-25 16:01:30 -04009783 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009784 struct btrfs_key found_key;
9785 struct extent_buffer *leaf;
9786 int slot;
9787
9788 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9789 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009790 goto out;
9791
Chris Masond3977122009-01-05 21:25:51 -05009792 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009793 slot = path->slots[0];
9794 leaf = path->nodes[0];
9795 if (slot >= btrfs_header_nritems(leaf)) {
9796 ret = btrfs_next_leaf(root, path);
9797 if (ret == 0)
9798 continue;
9799 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009800 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009801 break;
9802 }
9803 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9804
9805 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009806 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
Liu Bo6fb37b72016-06-22 18:31:27 -07009807 struct extent_map_tree *em_tree;
9808 struct extent_map *em;
9809
9810 em_tree = &root->fs_info->mapping_tree.map_tree;
9811 read_lock(&em_tree->lock);
9812 em = lookup_extent_mapping(em_tree, found_key.objectid,
9813 found_key.offset);
9814 read_unlock(&em_tree->lock);
9815 if (!em) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009816 btrfs_err(fs_info,
Liu Bo6fb37b72016-06-22 18:31:27 -07009817 "logical %llu len %llu found bg but no related chunk",
9818 found_key.objectid, found_key.offset);
9819 ret = -ENOENT;
9820 } else {
9821 ret = 0;
9822 }
Josef Bacik187ee582016-08-18 15:30:06 -04009823 free_extent_map(em);
Chris Mason925baed2008-06-25 16:01:30 -04009824 goto out;
9825 }
Chris Mason0b86a832008-03-24 15:01:56 -04009826 path->slots[0]++;
9827 }
Chris Mason925baed2008-06-25 16:01:30 -04009828out:
Chris Mason0b86a832008-03-24 15:01:56 -04009829 return ret;
9830}
9831
Josef Bacik0af3d002010-06-21 14:48:16 -04009832void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
9833{
9834 struct btrfs_block_group_cache *block_group;
9835 u64 last = 0;
9836
9837 while (1) {
9838 struct inode *inode;
9839
9840 block_group = btrfs_lookup_first_block_group(info, last);
9841 while (block_group) {
9842 spin_lock(&block_group->lock);
9843 if (block_group->iref)
9844 break;
9845 spin_unlock(&block_group->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009846 block_group = next_block_group(info, block_group);
Josef Bacik0af3d002010-06-21 14:48:16 -04009847 }
9848 if (!block_group) {
9849 if (last == 0)
9850 break;
9851 last = 0;
9852 continue;
9853 }
9854
9855 inode = block_group->inode;
9856 block_group->iref = 0;
9857 block_group->inode = NULL;
9858 spin_unlock(&block_group->lock);
Liu Bof3bca802016-07-20 17:33:44 -07009859 ASSERT(block_group->io_ctl.inode == NULL);
Josef Bacik0af3d002010-06-21 14:48:16 -04009860 iput(inode);
9861 last = block_group->key.objectid + block_group->key.offset;
9862 btrfs_put_block_group(block_group);
9863 }
9864}
9865
Filipe Manana5cdd7db2017-02-01 22:39:50 +00009866/*
9867 * Must be called only after stopping all workers, since we could have block
9868 * group caching kthreads running, and therefore they could race with us if we
9869 * freed the block groups before stopping them.
9870 */
Zheng Yan1a40e232008-09-26 10:09:34 -04009871int btrfs_free_block_groups(struct btrfs_fs_info *info)
9872{
9873 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04009874 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04009875 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04009876 struct rb_node *n;
9877
Josef Bacik9e351cc2014-03-13 15:42:13 -04009878 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009879 while (!list_empty(&info->caching_block_groups)) {
9880 caching_ctl = list_entry(info->caching_block_groups.next,
9881 struct btrfs_caching_control, list);
9882 list_del(&caching_ctl->list);
9883 put_caching_control(caching_ctl);
9884 }
Josef Bacik9e351cc2014-03-13 15:42:13 -04009885 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009886
Josef Bacik47ab2a62014-09-18 11:20:02 -04009887 spin_lock(&info->unused_bgs_lock);
9888 while (!list_empty(&info->unused_bgs)) {
9889 block_group = list_first_entry(&info->unused_bgs,
9890 struct btrfs_block_group_cache,
9891 bg_list);
9892 list_del_init(&block_group->bg_list);
9893 btrfs_put_block_group(block_group);
9894 }
9895 spin_unlock(&info->unused_bgs_lock);
9896
Zheng Yan1a40e232008-09-26 10:09:34 -04009897 spin_lock(&info->block_group_cache_lock);
9898 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
9899 block_group = rb_entry(n, struct btrfs_block_group_cache,
9900 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04009901 rb_erase(&block_group->cache_node,
9902 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009903 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -04009904 spin_unlock(&info->block_group_cache_lock);
9905
Josef Bacik80eb2342008-10-29 14:49:05 -04009906 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04009907 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04009908 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05009909
Josef Bacik3c148742011-02-02 15:53:47 +00009910 /*
9911 * We haven't cached this block group, which means we could
9912 * possibly have excluded extents on this block group.
9913 */
Josef Bacik36cce922013-08-05 11:15:21 -04009914 if (block_group->cached == BTRFS_CACHE_NO ||
9915 block_group->cached == BTRFS_CACHE_ERROR)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009916 free_excluded_extents(info, block_group);
Josef Bacik3c148742011-02-02 15:53:47 +00009917
Josef Bacik817d52f2009-07-13 21:29:25 -04009918 btrfs_remove_free_space_cache(block_group);
Filipe Manana5cdd7db2017-02-01 22:39:50 +00009919 ASSERT(block_group->cached != BTRFS_CACHE_STARTED);
Liu Bof3bca802016-07-20 17:33:44 -07009920 ASSERT(list_empty(&block_group->dirty_list));
9921 ASSERT(list_empty(&block_group->io_list));
9922 ASSERT(list_empty(&block_group->bg_list));
9923 ASSERT(atomic_read(&block_group->count) == 1);
Josef Bacik11dfe352009-11-13 20:12:59 +00009924 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04009925
9926 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009927 }
9928 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04009929
9930 /* now that all the block groups are freed, go through and
9931 * free all the space_info structs. This is only called during
9932 * the final stages of unmount, and so we know nobody is
9933 * using them. We call synchronize_rcu() once before we start,
9934 * just to be on the safe side.
9935 */
9936 synchronize_rcu();
9937
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04009938 release_global_block_rsv(info);
9939
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05309940 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009941 int i;
9942
Chris Mason4184ea72009-03-10 12:39:20 -04009943 space_info = list_entry(info->space_info.next,
9944 struct btrfs_space_info,
9945 list);
Josef Bacikd555b6c2016-03-25 13:25:51 -04009946
9947 /*
9948 * Do not hide this behind enospc_debug, this is actually
9949 * important and indicates a real bug if this happens.
9950 */
9951 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +00009952 space_info->bytes_reserved > 0 ||
Josef Bacikd555b6c2016-03-25 13:25:51 -04009953 space_info->bytes_may_use > 0))
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009954 dump_space_info(info, space_info, 0, 0);
Chris Mason4184ea72009-03-10 12:39:20 -04009955 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009956 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
9957 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009958 kobj = space_info->block_group_kobjs[i];
9959 space_info->block_group_kobjs[i] = NULL;
9960 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009961 kobject_del(kobj);
9962 kobject_put(kobj);
9963 }
9964 }
9965 kobject_del(&space_info->kobj);
9966 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -04009967 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009968 return 0;
9969}
9970
Yan, Zhengb742bb82010-05-16 10:46:24 -04009971static void __link_block_group(struct btrfs_space_info *space_info,
9972 struct btrfs_block_group_cache *cache)
9973{
9974 int index = get_block_group_index(cache);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04009975 bool first = false;
Yan, Zhengb742bb82010-05-16 10:46:24 -04009976
9977 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04009978 if (list_empty(&space_info->block_groups[index]))
9979 first = true;
9980 list_add_tail(&cache->list, &space_info->block_groups[index]);
9981 up_write(&space_info->groups_sem);
9982
9983 if (first) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009984 struct raid_kobject *rkobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009985 int ret;
9986
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009987 rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
9988 if (!rkobj)
9989 goto out_err;
9990 rkobj->raid_type = index;
9991 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
9992 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
9993 "%s", get_raid_name(index));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009994 if (ret) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009995 kobject_put(&rkobj->kobj);
9996 goto out_err;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009997 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009998 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009999 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010000
10001 return;
10002out_err:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -040010003 btrfs_warn(cache->fs_info,
10004 "failed to add kobject for block cache, ignoring");
Yan, Zhengb742bb82010-05-16 10:46:24 -040010005}
10006
Miao Xie920e4a52014-01-15 20:00:55 +080010007static struct btrfs_block_group_cache *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010008btrfs_create_block_group_cache(struct btrfs_fs_info *fs_info,
10009 u64 start, u64 size)
Miao Xie920e4a52014-01-15 20:00:55 +080010010{
10011 struct btrfs_block_group_cache *cache;
10012
10013 cache = kzalloc(sizeof(*cache), GFP_NOFS);
10014 if (!cache)
10015 return NULL;
10016
10017 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
10018 GFP_NOFS);
10019 if (!cache->free_space_ctl) {
10020 kfree(cache);
10021 return NULL;
10022 }
10023
10024 cache->key.objectid = start;
10025 cache->key.offset = size;
10026 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
10027
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010028 cache->fs_info = fs_info;
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +030010029 cache->full_stripe_len = btrfs_full_stripe_len(fs_info, start);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010030 set_free_space_tree_thresholds(cache);
10031
Miao Xie920e4a52014-01-15 20:00:55 +080010032 atomic_set(&cache->count, 1);
10033 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +080010034 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +080010035 INIT_LIST_HEAD(&cache->list);
10036 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010037 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -040010038 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -050010039 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -070010040 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +080010041 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +000010042 atomic_set(&cache->trimming, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -070010043 mutex_init(&cache->free_space_lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +080010044 btrfs_init_full_stripe_locks_tree(&cache->full_stripe_locks_root);
Miao Xie920e4a52014-01-15 20:00:55 +080010045
10046 return cache;
10047}
10048
Jeff Mahoney5b4aace2016-06-21 10:40:19 -040010049int btrfs_read_block_groups(struct btrfs_fs_info *info)
Chris Mason9078a3e2007-04-26 16:46:15 -040010050{
10051 struct btrfs_path *path;
10052 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010053 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -040010054 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -040010055 struct btrfs_key key;
10056 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -040010057 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -040010058 int need_clear = 0;
10059 u64 cache_gen;
Liu Bo49303382016-08-25 18:08:27 -070010060 u64 feature;
10061 int mixed;
10062
10063 feature = btrfs_super_incompat_flags(info->super_copy);
10064 mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS);
Chris Mason96b51792007-10-15 16:15:19 -040010065
Chris Mason9078a3e2007-04-26 16:46:15 -040010066 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -040010067 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010068 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -040010069 path = btrfs_alloc_path();
10070 if (!path)
10071 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +010010072 path->reada = READA_FORWARD;
Chris Mason9078a3e2007-04-26 16:46:15 -040010073
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010074 cache_gen = btrfs_super_cache_generation(info->super_copy);
10075 if (btrfs_test_opt(info, SPACE_CACHE) &&
10076 btrfs_super_generation(info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -040010077 need_clear = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010078 if (btrfs_test_opt(info, CLEAR_CACHE))
Josef Bacik88c2ba32010-09-21 14:21:34 -040010079 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -040010080
Chris Masond3977122009-01-05 21:25:51 -050010081 while (1) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010082 ret = find_first_block_group(info, path, &key);
Yan, Zhengb742bb82010-05-16 10:46:24 -040010083 if (ret > 0)
10084 break;
Chris Mason0b86a832008-03-24 15:01:56 -040010085 if (ret != 0)
10086 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +080010087
Chris Mason5f39d392007-10-15 16:14:19 -040010088 leaf = path->nodes[0];
10089 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +080010090
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010091 cache = btrfs_create_block_group_cache(info, found_key.objectid,
Miao Xie920e4a52014-01-15 20:00:55 +080010092 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -040010093 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -040010094 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -040010095 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -040010096 }
Josef Bacik96303082009-07-13 21:29:25 -040010097
Liu Bocf7c1ef2012-07-06 03:31:34 -060010098 if (need_clear) {
10099 /*
10100 * When we mount with old space cache, we need to
10101 * set BTRFS_DC_CLEAR and set dirty flag.
10102 *
10103 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
10104 * truncate the old free space cache inode and
10105 * setup a new one.
10106 * b) Setting 'dirty flag' makes sure that we flush
10107 * the new space cache info onto disk.
10108 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010109 if (btrfs_test_opt(info, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -050010110 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -060010111 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010112
Chris Mason5f39d392007-10-15 16:14:19 -040010113 read_extent_buffer(leaf, &cache->item,
10114 btrfs_item_ptr_offset(leaf, path->slots[0]),
10115 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +080010116 cache->flags = btrfs_block_group_flags(&cache->item);
Liu Bo49303382016-08-25 18:08:27 -070010117 if (!mixed &&
10118 ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) &&
10119 (cache->flags & BTRFS_BLOCK_GROUP_DATA))) {
10120 btrfs_err(info,
10121"bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups",
10122 cache->key.objectid);
10123 ret = -EINVAL;
10124 goto error;
10125 }
Chris Mason0b86a832008-03-24 15:01:56 -040010126
Chris Mason9078a3e2007-04-26 16:46:15 -040010127 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +020010128 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +080010129
Josef Bacik817d52f2009-07-13 21:29:25 -040010130 /*
Josef Bacik3c148742011-02-02 15:53:47 +000010131 * We need to exclude the super stripes now so that the space
10132 * info has super bytes accounted for, otherwise we'll think
10133 * we have more space than we actually do.
10134 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010135 ret = exclude_super_stripes(info, cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010136 if (ret) {
10137 /*
10138 * We may have excluded something, so call this just in
10139 * case.
10140 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010141 free_excluded_extents(info, cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010142 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010143 goto error;
10144 }
Josef Bacik3c148742011-02-02 15:53:47 +000010145
10146 /*
Josef Bacik817d52f2009-07-13 21:29:25 -040010147 * check for two cases, either we are full, and therefore
10148 * don't need to bother with the caching work since we won't
10149 * find any space, or we are empty, and we can just add all
10150 * the space in and be done with it. This saves us _alot_ of
10151 * time, particularly in the full case.
10152 */
10153 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -040010154 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010155 cache->cached = BTRFS_CACHE_FINISHED;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010156 free_excluded_extents(info, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010157 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -040010158 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010159 cache->cached = BTRFS_CACHE_FINISHED;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010160 add_new_free_space(cache, info,
Josef Bacik817d52f2009-07-13 21:29:25 -040010161 found_key.objectid,
10162 found_key.objectid +
10163 found_key.offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010164 free_excluded_extents(info, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010165 }
Chris Mason96b51792007-10-15 16:15:19 -040010166
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010167 ret = btrfs_add_block_group_cache(info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010168 if (ret) {
10169 btrfs_remove_free_space_cache(cache);
10170 btrfs_put_block_group(cache);
10171 goto error;
10172 }
10173
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010174 trace_btrfs_add_block_group(info, cache, 0);
Nikolay Borisovd2006e6d2017-05-22 09:35:50 +030010175 update_space_info(info, cache->flags, found_key.offset,
10176 btrfs_block_group_used(&cache->item),
10177 cache->bytes_super, &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010178
Chris Mason6324fbf2008-03-24 15:01:59 -040010179 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -040010180
Yan, Zhengb742bb82010-05-16 10:46:24 -040010181 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010182
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010183 set_avail_alloc_bits(info, cache->flags);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010184 if (btrfs_chunk_readonly(info, cache->key.objectid)) {
Zhaolei868f4012015-08-05 16:43:27 +080010185 inc_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010186 } else if (btrfs_block_group_used(&cache->item) == 0) {
10187 spin_lock(&info->unused_bgs_lock);
10188 /* Should always be true but just in case. */
10189 if (list_empty(&cache->bg_list)) {
10190 btrfs_get_block_group(cache);
10191 list_add_tail(&cache->bg_list,
10192 &info->unused_bgs);
10193 }
10194 spin_unlock(&info->unused_bgs_lock);
10195 }
Chris Mason9078a3e2007-04-26 16:46:15 -040010196 }
Yan, Zhengb742bb82010-05-16 10:46:24 -040010197
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010198 list_for_each_entry_rcu(space_info, &info->space_info, list) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010199 if (!(get_alloc_profile(info, space_info->flags) &
Yan, Zhengb742bb82010-05-16 10:46:24 -040010200 (BTRFS_BLOCK_GROUP_RAID10 |
10201 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -050010202 BTRFS_BLOCK_GROUP_RAID5 |
10203 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb82010-05-16 10:46:24 -040010204 BTRFS_BLOCK_GROUP_DUP)))
10205 continue;
10206 /*
10207 * avoid allocating from un-mirrored block group if there are
10208 * mirrored block groups.
10209 */
chandan1095cc02013-07-16 12:28:56 +053010210 list_for_each_entry(cache,
10211 &space_info->block_groups[BTRFS_RAID_RAID0],
10212 list)
Zhaolei868f4012015-08-05 16:43:27 +080010213 inc_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +053010214 list_for_each_entry(cache,
10215 &space_info->block_groups[BTRFS_RAID_SINGLE],
10216 list)
Zhaolei868f4012015-08-05 16:43:27 +080010217 inc_block_group_ro(cache, 1);
Yan, Zhengb742bb82010-05-16 10:46:24 -040010218 }
Yan, Zhengf0486c62010-05-16 10:46:25 -040010219
10220 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -040010221 ret = 0;
10222error:
Chris Mason9078a3e2007-04-26 16:46:15 -040010223 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -040010224 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010225}
Chris Mason6324fbf2008-03-24 15:01:59 -040010226
Josef Bacikea658ba2012-09-11 16:57:25 -040010227void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010228 struct btrfs_fs_info *fs_info)
Josef Bacikea658ba2012-09-11 16:57:25 -040010229{
10230 struct btrfs_block_group_cache *block_group, *tmp;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010231 struct btrfs_root *extent_root = fs_info->extent_root;
Josef Bacikea658ba2012-09-11 16:57:25 -040010232 struct btrfs_block_group_item item;
10233 struct btrfs_key key;
10234 int ret = 0;
Filipe Mananad9a05402015-10-03 13:13:13 +010010235 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -040010236
Filipe Mananad9a05402015-10-03 13:13:13 +010010237 trans->can_flush_pending_bgs = false;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010238 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
Josef Bacikea658ba2012-09-11 16:57:25 -040010239 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +000010240 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -040010241
10242 spin_lock(&block_group->lock);
10243 memcpy(&item, &block_group->item, sizeof(item));
10244 memcpy(&key, &block_group->key, sizeof(key));
10245 spin_unlock(&block_group->lock);
10246
10247 ret = btrfs_insert_item(trans, extent_root, &key, &item,
10248 sizeof(item));
10249 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010250 btrfs_abort_transaction(trans, ret);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010251 ret = btrfs_finish_chunk_alloc(trans, fs_info, key.objectid,
10252 key.offset);
Josef Bacik6df9a952013-06-27 13:22:46 -040010253 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010254 btrfs_abort_transaction(trans, ret);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010255 add_block_group_free_space(trans, fs_info, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010256 /* already aborted the transaction if it failed. */
Filipe Mananac92f6be2014-11-26 15:28:55 +000010257next:
10258 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010259 }
Filipe Mananad9a05402015-10-03 13:13:13 +010010260 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -040010261}
10262
Chris Mason6324fbf2008-03-24 15:01:59 -040010263int btrfs_make_block_group(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010264 struct btrfs_fs_info *fs_info, u64 bytes_used,
Nikolay Borisov01744842017-07-27 14:22:11 +030010265 u64 type, u64 chunk_offset, u64 size)
Chris Mason6324fbf2008-03-24 15:01:59 -040010266{
Chris Mason6324fbf2008-03-24 15:01:59 -040010267 struct btrfs_block_group_cache *cache;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010268 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -040010269
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010270 btrfs_set_log_full_commit(fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -040010271
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010272 cache = btrfs_create_block_group_cache(fs_info, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -040010273 if (!cache)
10274 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +080010275
Chris Mason6324fbf2008-03-24 15:01:59 -040010276 btrfs_set_block_group_used(&cache->item, bytes_used);
Nikolay Borisov01744842017-07-27 14:22:11 +030010277 btrfs_set_block_group_chunk_objectid(&cache->item,
10278 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
Chris Mason6324fbf2008-03-24 15:01:59 -040010279 btrfs_set_block_group_flags(&cache->item, type);
10280
Miao Xie920e4a52014-01-15 20:00:55 +080010281 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -040010282 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010283 cache->cached = BTRFS_CACHE_FINISHED;
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010284 cache->needs_free_space = 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010285 ret = exclude_super_stripes(fs_info, cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010286 if (ret) {
10287 /*
10288 * We may have excluded something, so call this just in
10289 * case.
10290 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010291 free_excluded_extents(fs_info, cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010292 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010293 return ret;
10294 }
Josef Bacik96303082009-07-13 21:29:25 -040010295
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010296 add_new_free_space(cache, fs_info, chunk_offset, chunk_offset + size);
Josef Bacik817d52f2009-07-13 21:29:25 -040010297
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010298 free_excluded_extents(fs_info, cache);
Yan Zheng11833d62009-09-11 16:11:19 -040010299
Josef Bacikd0bd4562015-09-23 14:54:14 -040010300#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010301 if (btrfs_should_fragment_free_space(cache)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -040010302 u64 new_bytes_used = size - bytes_used;
10303
10304 bytes_used += new_bytes_used >> 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010305 fragment_free_space(cache);
Josef Bacikd0bd4562015-09-23 14:54:14 -040010306 }
10307#endif
Filipe Manana2e6e5182015-05-12 00:28:11 +010010308 /*
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010309 * Ensure the corresponding space_info object is created and
10310 * assigned to our block group. We want our bg to be added to the rbtree
10311 * with its ->space_info set.
Filipe Manana2e6e5182015-05-12 00:28:11 +010010312 */
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010313 cache->space_info = __find_space_info(fs_info, cache->flags);
10314 if (!cache->space_info) {
10315 ret = create_space_info(fs_info, cache->flags,
10316 &cache->space_info);
10317 if (ret) {
10318 btrfs_remove_free_space_cache(cache);
10319 btrfs_put_block_group(cache);
10320 return ret;
10321 }
Filipe Manana2e6e5182015-05-12 00:28:11 +010010322 }
10323
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010324 ret = btrfs_add_block_group_cache(fs_info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010325 if (ret) {
10326 btrfs_remove_free_space_cache(cache);
10327 btrfs_put_block_group(cache);
10328 return ret;
10329 }
10330
Filipe Manana2e6e5182015-05-12 00:28:11 +010010331 /*
10332 * Now that our block group has its ->space_info set and is inserted in
10333 * the rbtree, update the space info's counters.
10334 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010335 trace_btrfs_add_block_group(fs_info, cache, 1);
Nikolay Borisovd2006e6d2017-05-22 09:35:50 +030010336 update_space_info(fs_info, cache->flags, size, bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -040010337 cache->bytes_super, &cache->space_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010338 update_global_block_rsv(fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -040010339
Yan, Zhengb742bb82010-05-16 10:46:24 -040010340 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010341
Josef Bacik47ab2a62014-09-18 11:20:02 -040010342 list_add_tail(&cache->bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -040010343
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010344 set_avail_alloc_bits(fs_info, type);
Chris Mason6324fbf2008-03-24 15:01:59 -040010345 return 0;
10346}
Zheng Yan1a40e232008-09-26 10:09:34 -040010347
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010348static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
10349{
Ilya Dryomov899c81e2012-03-27 17:09:16 +030010350 u64 extra_flags = chunk_to_extended(flags) &
10351 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010352
Miao Xiede98ced2013-01-29 10:13:12 +000010353 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010354 if (flags & BTRFS_BLOCK_GROUP_DATA)
10355 fs_info->avail_data_alloc_bits &= ~extra_flags;
10356 if (flags & BTRFS_BLOCK_GROUP_METADATA)
10357 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
10358 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
10359 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +000010360 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010361}
10362
Zheng Yan1a40e232008-09-26 10:09:34 -040010363int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010364 struct btrfs_fs_info *fs_info, u64 group_start,
Filipe Manana04216822014-11-27 21:14:15 +000010365 struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -040010366{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010367 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010368 struct btrfs_path *path;
10369 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -040010370 struct btrfs_free_cluster *cluster;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010371 struct btrfs_root *tree_root = fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010372 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -040010373 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010374 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -040010375 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010376 int index;
Josef Bacik89a55892010-10-14 14:52:27 -040010377 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +000010378 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +000010379 bool remove_em;
Zheng Yan1a40e232008-09-26 10:09:34 -040010380
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010381 block_group = btrfs_lookup_block_group(fs_info, group_start);
Zheng Yan1a40e232008-09-26 10:09:34 -040010382 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -050010383 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -040010384
liubo9f7c43c2011-03-07 02:13:33 +000010385 /*
10386 * Free the reserved super bytes from this block group before
10387 * remove it.
10388 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010389 free_excluded_extents(fs_info, block_group);
liubo9f7c43c2011-03-07 02:13:33 +000010390
Zheng Yan1a40e232008-09-26 10:09:34 -040010391 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010392 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -040010393 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
10394 BTRFS_BLOCK_GROUP_RAID1 |
10395 BTRFS_BLOCK_GROUP_RAID10))
10396 factor = 2;
10397 else
10398 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -040010399
Chris Mason44fb5512009-06-04 15:34:51 -040010400 /* make sure this block group isn't part of an allocation cluster */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010401 cluster = &fs_info->data_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010402 spin_lock(&cluster->refill_lock);
10403 btrfs_return_cluster_to_free_space(block_group, cluster);
10404 spin_unlock(&cluster->refill_lock);
10405
10406 /*
10407 * make sure this block group isn't part of a metadata
10408 * allocation cluster
10409 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010410 cluster = &fs_info->meta_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010411 spin_lock(&cluster->refill_lock);
10412 btrfs_return_cluster_to_free_space(block_group, cluster);
10413 spin_unlock(&cluster->refill_lock);
10414
Zheng Yan1a40e232008-09-26 10:09:34 -040010415 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010416 if (!path) {
10417 ret = -ENOMEM;
10418 goto out;
10419 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010420
Chris Mason1bbc6212015-04-06 12:46:08 -070010421 /*
10422 * get the inode first so any iput calls done for the io_list
10423 * aren't the final iput (no unlinks allowed now)
10424 */
Jeff Mahoney77ab86b2017-02-15 16:28:30 -050010425 inode = lookup_free_space_inode(fs_info, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010426
10427 mutex_lock(&trans->transaction->cache_write_mutex);
10428 /*
10429 * make sure our free spache cache IO is done before remove the
10430 * free space inode
10431 */
10432 spin_lock(&trans->transaction->dirty_bgs_lock);
10433 if (!list_empty(&block_group->io_list)) {
10434 list_del_init(&block_group->io_list);
10435
10436 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
10437
10438 spin_unlock(&trans->transaction->dirty_bgs_lock);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -040010439 btrfs_wait_cache_io(trans, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010440 btrfs_put_block_group(block_group);
10441 spin_lock(&trans->transaction->dirty_bgs_lock);
10442 }
10443
10444 if (!list_empty(&block_group->dirty_list)) {
10445 list_del_init(&block_group->dirty_list);
10446 btrfs_put_block_group(block_group);
10447 }
10448 spin_unlock(&trans->transaction->dirty_bgs_lock);
10449 mutex_unlock(&trans->transaction->cache_write_mutex);
10450
Josef Bacik0af3d002010-06-21 14:48:16 -040010451 if (!IS_ERR(inode)) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010452 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010453 if (ret) {
10454 btrfs_add_delayed_iput(inode);
10455 goto out;
10456 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010457 clear_nlink(inode);
10458 /* One for the block groups ref */
10459 spin_lock(&block_group->lock);
10460 if (block_group->iref) {
10461 block_group->iref = 0;
10462 block_group->inode = NULL;
10463 spin_unlock(&block_group->lock);
10464 iput(inode);
10465 } else {
10466 spin_unlock(&block_group->lock);
10467 }
10468 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -040010469 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -040010470 }
10471
10472 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
10473 key.offset = block_group->key.objectid;
10474 key.type = 0;
10475
10476 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
10477 if (ret < 0)
10478 goto out;
10479 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +020010480 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010481 if (ret == 0) {
10482 ret = btrfs_del_item(trans, tree_root, path);
10483 if (ret)
10484 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +020010485 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010486 }
10487
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010488 spin_lock(&fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010489 rb_erase(&block_group->cache_node,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010490 &fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +000010491 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +000010492
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010493 if (fs_info->first_logical_byte == block_group->key.objectid)
10494 fs_info->first_logical_byte = (u64)-1;
10495 spin_unlock(&fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010496
Josef Bacik80eb2342008-10-29 14:49:05 -040010497 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -040010498 /*
10499 * we must use list_del_init so people can check to see if they
10500 * are still on the list after taking the semaphore
10501 */
10502 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010503 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010504 kobj = block_group->space_info->block_group_kobjs[index];
10505 block_group->space_info->block_group_kobjs[index] = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010506 clear_avail_alloc_bits(fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010507 }
Josef Bacik80eb2342008-10-29 14:49:05 -040010508 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010509 if (kobj) {
10510 kobject_del(kobj);
10511 kobject_put(kobj);
10512 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010513
Filipe Manana4f69cb92014-11-26 15:28:51 +000010514 if (block_group->has_caching_ctl)
10515 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -040010516 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -040010517 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010518 if (block_group->has_caching_ctl) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010519 down_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010520 if (!caching_ctl) {
10521 struct btrfs_caching_control *ctl;
10522
10523 list_for_each_entry(ctl,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010524 &fs_info->caching_block_groups, list)
Filipe Manana4f69cb92014-11-26 15:28:51 +000010525 if (ctl->block_group == block_group) {
10526 caching_ctl = ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +020010527 refcount_inc(&caching_ctl->count);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010528 break;
10529 }
10530 }
10531 if (caching_ctl)
10532 list_del_init(&caching_ctl->list);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010533 up_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010534 if (caching_ctl) {
10535 /* Once for the caching bgs list and once for us. */
10536 put_caching_control(caching_ctl);
10537 put_caching_control(caching_ctl);
10538 }
10539 }
Josef Bacik817d52f2009-07-13 21:29:25 -040010540
Josef Bacikce93ec52014-11-17 15:45:48 -050010541 spin_lock(&trans->transaction->dirty_bgs_lock);
10542 if (!list_empty(&block_group->dirty_list)) {
Chris Mason1bbc6212015-04-06 12:46:08 -070010543 WARN_ON(1);
10544 }
10545 if (!list_empty(&block_group->io_list)) {
10546 WARN_ON(1);
Josef Bacikce93ec52014-11-17 15:45:48 -050010547 }
10548 spin_unlock(&trans->transaction->dirty_bgs_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010549 btrfs_remove_free_space_cache(block_group);
10550
Yan Zhengc146afa2008-11-12 14:34:12 -050010551 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +000010552 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +080010553
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010554 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Zhao Lei18d018a2015-02-24 20:07:44 +080010555 WARN_ON(block_group->space_info->total_bytes
10556 < block_group->key.offset);
10557 WARN_ON(block_group->space_info->bytes_readonly
10558 < block_group->key.offset);
10559 WARN_ON(block_group->space_info->disk_total
10560 < block_group->key.offset * factor);
10561 }
Yan Zhengc146afa2008-11-12 14:34:12 -050010562 block_group->space_info->total_bytes -= block_group->key.offset;
10563 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -040010564 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +080010565
Yan Zhengc146afa2008-11-12 14:34:12 -050010566 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -040010567
Josef Bacik0af3d002010-06-21 14:48:16 -040010568 memcpy(&key, &block_group->key, sizeof(key));
10569
David Sterba34441362016-10-04 19:34:27 +020010570 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana495e64f2014-12-02 18:07:30 +000010571 if (!list_empty(&em->list)) {
10572 /* We're in the transaction->pending_chunks list. */
10573 free_extent_map(em);
10574 }
Filipe Manana04216822014-11-27 21:14:15 +000010575 spin_lock(&block_group->lock);
10576 block_group->removed = 1;
10577 /*
10578 * At this point trimming can't start on this block group, because we
10579 * removed the block group from the tree fs_info->block_group_cache_tree
10580 * so no one can't find it anymore and even if someone already got this
10581 * block group before we removed it from the rbtree, they have already
10582 * incremented block_group->trimming - if they didn't, they won't find
10583 * any free space entries because we already removed them all when we
10584 * called btrfs_remove_free_space_cache().
10585 *
10586 * And we must not remove the extent map from the fs_info->mapping_tree
10587 * to prevent the same logical address range and physical device space
10588 * ranges from being reused for a new block group. This is because our
10589 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
10590 * completely transactionless, so while it is trimming a range the
10591 * currently running transaction might finish and a new one start,
10592 * allowing for new block groups to be created that can reuse the same
10593 * physical device locations unless we take this special care.
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010594 *
10595 * There may also be an implicit trim operation if the file system
10596 * is mounted with -odiscard. The same protections must remain
10597 * in place until the extents have been discarded completely when
10598 * the transaction commit has completed.
Filipe Manana04216822014-11-27 21:14:15 +000010599 */
10600 remove_em = (atomic_read(&block_group->trimming) == 0);
10601 /*
10602 * Make sure a trimmer task always sees the em in the pinned_chunks list
10603 * if it sees block_group->removed == 1 (needs to lock block_group->lock
10604 * before checking block_group->removed).
10605 */
10606 if (!remove_em) {
10607 /*
10608 * Our em might be in trans->transaction->pending_chunks which
10609 * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks),
10610 * and so is the fs_info->pinned_chunks list.
10611 *
10612 * So at this point we must be holding the chunk_mutex to avoid
10613 * any races with chunk allocation (more specifically at
10614 * volumes.c:contains_pending_extent()), to ensure it always
10615 * sees the em, either in the pending_chunks list or in the
10616 * pinned_chunks list.
10617 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010618 list_move_tail(&em->list, &fs_info->pinned_chunks);
Filipe Manana04216822014-11-27 21:14:15 +000010619 }
10620 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +000010621
10622 if (remove_em) {
10623 struct extent_map_tree *em_tree;
10624
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010625 em_tree = &fs_info->mapping_tree.map_tree;
Filipe Manana04216822014-11-27 21:14:15 +000010626 write_lock(&em_tree->lock);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010627 /*
10628 * The em might be in the pending_chunks list, so make sure the
10629 * chunk mutex is locked, since remove_extent_mapping() will
10630 * delete us from that list.
10631 */
Filipe Manana04216822014-11-27 21:14:15 +000010632 remove_extent_mapping(em_tree, em);
10633 write_unlock(&em_tree->lock);
10634 /* once for the tree */
10635 free_extent_map(em);
10636 }
10637
David Sterba34441362016-10-04 19:34:27 +020010638 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010639
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010640 ret = remove_block_group_free_space(trans, fs_info, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010641 if (ret)
10642 goto out;
10643
Chris Masonfa9c0d792009-04-03 09:47:43 -040010644 btrfs_put_block_group(block_group);
10645 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -040010646
10647 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
10648 if (ret > 0)
10649 ret = -EIO;
10650 if (ret < 0)
10651 goto out;
10652
10653 ret = btrfs_del_item(trans, root, path);
10654out:
10655 btrfs_free_path(path);
10656 return ret;
10657}
liuboacce9522011-01-06 19:30:25 +080010658
Filipe Manana8eab77f2015-11-13 23:57:16 +000010659struct btrfs_trans_handle *
Filipe Manana7fd01182015-11-13 23:57:17 +000010660btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info,
10661 const u64 chunk_offset)
Filipe Manana8eab77f2015-11-13 23:57:16 +000010662{
Filipe Manana7fd01182015-11-13 23:57:17 +000010663 struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree;
10664 struct extent_map *em;
10665 struct map_lookup *map;
10666 unsigned int num_items;
10667
10668 read_lock(&em_tree->lock);
10669 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
10670 read_unlock(&em_tree->lock);
10671 ASSERT(em && em->start == chunk_offset);
10672
Filipe Manana8eab77f2015-11-13 23:57:16 +000010673 /*
Filipe Manana7fd01182015-11-13 23:57:17 +000010674 * We need to reserve 3 + N units from the metadata space info in order
10675 * to remove a block group (done at btrfs_remove_chunk() and at
10676 * btrfs_remove_block_group()), which are used for:
10677 *
Filipe Manana8eab77f2015-11-13 23:57:16 +000010678 * 1 unit for adding the free space inode's orphan (located in the tree
10679 * of tree roots).
Filipe Manana7fd01182015-11-13 23:57:17 +000010680 * 1 unit for deleting the block group item (located in the extent
10681 * tree).
10682 * 1 unit for deleting the free space item (located in tree of tree
10683 * roots).
10684 * N units for deleting N device extent items corresponding to each
10685 * stripe (located in the device tree).
10686 *
10687 * In order to remove a block group we also need to reserve units in the
10688 * system space info in order to update the chunk tree (update one or
10689 * more device items and remove one chunk item), but this is done at
10690 * btrfs_remove_chunk() through a call to check_system_chunk().
Filipe Manana8eab77f2015-11-13 23:57:16 +000010691 */
Jeff Mahoney95617d62015-06-03 10:55:48 -040010692 map = em->map_lookup;
Filipe Manana7fd01182015-11-13 23:57:17 +000010693 num_items = 3 + map->num_stripes;
10694 free_extent_map(em);
10695
Filipe Manana8eab77f2015-11-13 23:57:16 +000010696 return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root,
Filipe Manana7fd01182015-11-13 23:57:17 +000010697 num_items, 1);
Filipe Manana8eab77f2015-11-13 23:57:16 +000010698}
10699
Josef Bacik47ab2a62014-09-18 11:20:02 -040010700/*
10701 * Process the unused_bgs list and remove any that don't have any allocated
10702 * space inside of them.
10703 */
10704void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
10705{
10706 struct btrfs_block_group_cache *block_group;
10707 struct btrfs_space_info *space_info;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010708 struct btrfs_trans_handle *trans;
10709 int ret = 0;
10710
Josef Bacikafcdd122016-09-02 15:40:02 -040010711 if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
Josef Bacik47ab2a62014-09-18 11:20:02 -040010712 return;
10713
10714 spin_lock(&fs_info->unused_bgs_lock);
10715 while (!list_empty(&fs_info->unused_bgs)) {
10716 u64 start, end;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010717 int trimming;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010718
10719 block_group = list_first_entry(&fs_info->unused_bgs,
10720 struct btrfs_block_group_cache,
10721 bg_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010722 list_del_init(&block_group->bg_list);
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010723
10724 space_info = block_group->space_info;
10725
Josef Bacik47ab2a62014-09-18 11:20:02 -040010726 if (ret || btrfs_mixed_space_info(space_info)) {
10727 btrfs_put_block_group(block_group);
10728 continue;
10729 }
10730 spin_unlock(&fs_info->unused_bgs_lock);
10731
Zhao Leid5f2e332015-10-08 18:46:44 +080010732 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010733
Josef Bacik47ab2a62014-09-18 11:20:02 -040010734 /* Don't want to race with allocators so take the groups_sem */
10735 down_write(&space_info->groups_sem);
10736 spin_lock(&block_group->lock);
10737 if (block_group->reserved ||
10738 btrfs_block_group_used(&block_group->item) ||
Chris Mason19c4d2f2016-10-10 13:43:31 -070010739 block_group->ro ||
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010740 list_is_singular(&block_group->list)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -040010741 /*
10742 * We want to bail if we made new allocations or have
10743 * outstanding allocations in this block group. We do
10744 * the ro check in case balance is currently acting on
10745 * this block group.
10746 */
10747 spin_unlock(&block_group->lock);
10748 up_write(&space_info->groups_sem);
10749 goto next;
10750 }
10751 spin_unlock(&block_group->lock);
10752
10753 /* We don't want to force the issue, only flip if it's ok. */
Zhaolei868f4012015-08-05 16:43:27 +080010754 ret = inc_block_group_ro(block_group, 0);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010755 up_write(&space_info->groups_sem);
10756 if (ret < 0) {
10757 ret = 0;
10758 goto next;
10759 }
10760
10761 /*
10762 * Want to do this before we do anything else so we can recover
10763 * properly if we fail to join the transaction.
10764 */
Filipe Manana7fd01182015-11-13 23:57:17 +000010765 trans = btrfs_start_trans_remove_block_group(fs_info,
10766 block_group->key.objectid);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010767 if (IS_ERR(trans)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010768 btrfs_dec_block_group_ro(block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010769 ret = PTR_ERR(trans);
10770 goto next;
10771 }
10772
10773 /*
10774 * We could have pending pinned extents for this block group,
10775 * just delete them, we don't care about them anymore.
10776 */
10777 start = block_group->key.objectid;
10778 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +000010779 /*
10780 * Hold the unused_bg_unpin_mutex lock to avoid racing with
10781 * btrfs_finish_extent_commit(). If we are at transaction N,
10782 * another task might be running finish_extent_commit() for the
10783 * previous transaction N - 1, and have seen a range belonging
10784 * to the block group in freed_extents[] before we were able to
10785 * clear the whole block group range from freed_extents[]. This
10786 * means that task can lookup for the block group after we
10787 * unpinned it from freed_extents[] and removed it, leading to
10788 * a BUG_ON() at btrfs_unpin_extent_range().
10789 */
10790 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +000010791 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
David Sterba91166212016-04-26 23:54:39 +020010792 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000010793 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010794 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010795 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010796 goto end_trans;
10797 }
10798 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
David Sterba91166212016-04-26 23:54:39 +020010799 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000010800 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010801 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010802 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010803 goto end_trans;
10804 }
Filipe Mananad4b450c2015-01-29 19:18:25 +000010805 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010806
10807 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +080010808 spin_lock(&space_info->lock);
10809 spin_lock(&block_group->lock);
10810
10811 space_info->bytes_pinned -= block_group->pinned;
10812 space_info->bytes_readonly += block_group->pinned;
10813 percpu_counter_add(&space_info->total_bytes_pinned,
10814 -block_group->pinned);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010815 block_group->pinned = 0;
10816
Zhao Leic30666d2015-02-25 14:17:20 +080010817 spin_unlock(&block_group->lock);
10818 spin_unlock(&space_info->lock);
10819
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010820 /* DISCARD can flip during remount */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010821 trimming = btrfs_test_opt(fs_info, DISCARD);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010822
10823 /* Implicit trim during transaction commit. */
10824 if (trimming)
10825 btrfs_get_block_group_trimming(block_group);
10826
Josef Bacik47ab2a62014-09-18 11:20:02 -040010827 /*
10828 * Btrfs_remove_chunk will abort the transaction if things go
10829 * horribly wrong.
10830 */
Jeff Mahoney5b4aace2016-06-21 10:40:19 -040010831 ret = btrfs_remove_chunk(trans, fs_info,
Josef Bacik47ab2a62014-09-18 11:20:02 -040010832 block_group->key.objectid);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010833
10834 if (ret) {
10835 if (trimming)
10836 btrfs_put_block_group_trimming(block_group);
10837 goto end_trans;
10838 }
10839
10840 /*
10841 * If we're not mounted with -odiscard, we can just forget
10842 * about this block group. Otherwise we'll need to wait
10843 * until transaction commit to do the actual discard.
10844 */
10845 if (trimming) {
Filipe Manana348a0012015-11-27 12:16:16 +000010846 spin_lock(&fs_info->unused_bgs_lock);
10847 /*
10848 * A concurrent scrub might have added us to the list
10849 * fs_info->unused_bgs, so use a list_move operation
10850 * to add the block group to the deleted_bgs list.
10851 */
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010852 list_move(&block_group->bg_list,
10853 &trans->transaction->deleted_bgs);
Filipe Manana348a0012015-11-27 12:16:16 +000010854 spin_unlock(&fs_info->unused_bgs_lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010855 btrfs_get_block_group(block_group);
10856 }
Filipe Manana758eb512014-11-03 14:08:39 +000010857end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010858 btrfs_end_transaction(trans);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010859next:
Zhao Leid5f2e332015-10-08 18:46:44 +080010860 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010861 btrfs_put_block_group(block_group);
10862 spin_lock(&fs_info->unused_bgs_lock);
10863 }
10864 spin_unlock(&fs_info->unused_bgs_lock);
10865}
10866
liuboc59021f2011-03-07 02:13:14 +000010867int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
10868{
10869 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +000010870 struct btrfs_super_block *disk_super;
10871 u64 features;
10872 u64 flags;
10873 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000010874 int ret;
10875
David Sterba6c417612011-04-13 15:41:04 +020010876 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000010877 if (!btrfs_super_root(disk_super))
Dan Carpenter0dc924c52016-01-13 15:21:17 +030010878 return -EINVAL;
liuboc59021f2011-03-07 02:13:14 +000010879
liubo1aba86d2011-04-08 08:44:37 +000010880 features = btrfs_super_incompat_flags(disk_super);
10881 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
10882 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000010883
liubo1aba86d2011-04-08 08:44:37 +000010884 flags = BTRFS_BLOCK_GROUP_SYSTEM;
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010885 ret = create_space_info(fs_info, flags, &space_info);
liuboc59021f2011-03-07 02:13:14 +000010886 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000010887 goto out;
liuboc59021f2011-03-07 02:13:14 +000010888
liubo1aba86d2011-04-08 08:44:37 +000010889 if (mixed) {
10890 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010891 ret = create_space_info(fs_info, flags, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010892 } else {
10893 flags = BTRFS_BLOCK_GROUP_METADATA;
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010894 ret = create_space_info(fs_info, flags, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010895 if (ret)
10896 goto out;
10897
10898 flags = BTRFS_BLOCK_GROUP_DATA;
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010899 ret = create_space_info(fs_info, flags, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010900 }
10901out:
liuboc59021f2011-03-07 02:13:14 +000010902 return ret;
10903}
10904
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010905int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info,
10906 u64 start, u64 end)
liuboacce9522011-01-06 19:30:25 +080010907{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010908 return unpin_extent_range(fs_info, start, end, false);
liuboacce9522011-01-06 19:30:25 +080010909}
10910
Jeff Mahoney499f3772015-06-15 09:41:17 -040010911/*
10912 * It used to be that old block groups would be left around forever.
10913 * Iterating over them would be enough to trim unused space. Since we
10914 * now automatically remove them, we also need to iterate over unallocated
10915 * space.
10916 *
10917 * We don't want a transaction for this since the discard may take a
10918 * substantial amount of time. We don't require that a transaction be
10919 * running, but we do need to take a running transaction into account
10920 * to ensure that we're not discarding chunks that were released in
10921 * the current transaction.
10922 *
10923 * Holding the chunks lock will prevent other threads from allocating
10924 * or releasing chunks, but it won't prevent a running transaction
10925 * from committing and releasing the memory that the pending chunks
10926 * list head uses. For that, we need to take a reference to the
10927 * transaction.
10928 */
10929static int btrfs_trim_free_extents(struct btrfs_device *device,
10930 u64 minlen, u64 *trimmed)
10931{
10932 u64 start = 0, len = 0;
10933 int ret;
10934
10935 *trimmed = 0;
10936
10937 /* Not writeable = nothing to do. */
10938 if (!device->writeable)
10939 return 0;
10940
10941 /* No free space = nothing to do. */
10942 if (device->total_bytes <= device->bytes_used)
10943 return 0;
10944
10945 ret = 0;
10946
10947 while (1) {
Jeff Mahoneyfb456252016-06-22 18:54:56 -040010948 struct btrfs_fs_info *fs_info = device->fs_info;
Jeff Mahoney499f3772015-06-15 09:41:17 -040010949 struct btrfs_transaction *trans;
10950 u64 bytes;
10951
10952 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
10953 if (ret)
10954 return ret;
10955
10956 down_read(&fs_info->commit_root_sem);
10957
10958 spin_lock(&fs_info->trans_lock);
10959 trans = fs_info->running_transaction;
10960 if (trans)
Elena Reshetova9b64f572017-03-03 10:55:11 +020010961 refcount_inc(&trans->use_count);
Jeff Mahoney499f3772015-06-15 09:41:17 -040010962 spin_unlock(&fs_info->trans_lock);
10963
10964 ret = find_free_dev_extent_start(trans, device, minlen, start,
10965 &start, &len);
10966 if (trans)
10967 btrfs_put_transaction(trans);
10968
10969 if (ret) {
10970 up_read(&fs_info->commit_root_sem);
10971 mutex_unlock(&fs_info->chunk_mutex);
10972 if (ret == -ENOSPC)
10973 ret = 0;
10974 break;
10975 }
10976
10977 ret = btrfs_issue_discard(device->bdev, start, len, &bytes);
10978 up_read(&fs_info->commit_root_sem);
10979 mutex_unlock(&fs_info->chunk_mutex);
10980
10981 if (ret)
10982 break;
10983
10984 start += len;
10985 *trimmed += bytes;
10986
10987 if (fatal_signal_pending(current)) {
10988 ret = -ERESTARTSYS;
10989 break;
10990 }
10991
10992 cond_resched();
10993 }
10994
10995 return ret;
10996}
10997
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010998int btrfs_trim_fs(struct btrfs_fs_info *fs_info, struct fstrim_range *range)
Li Dongyangf7039b12011-03-24 10:24:28 +000010999{
Li Dongyangf7039b12011-03-24 10:24:28 +000011000 struct btrfs_block_group_cache *cache = NULL;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011001 struct btrfs_device *device;
11002 struct list_head *devices;
Li Dongyangf7039b12011-03-24 10:24:28 +000011003 u64 group_trimmed;
11004 u64 start;
11005 u64 end;
11006 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +080011007 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +000011008 int ret = 0;
11009
Liu Bo2cac13e2012-02-09 18:17:41 +080011010 /*
11011 * try to trim all FS space, our block group may start from non-zero.
11012 */
11013 if (range->len == total_bytes)
11014 cache = btrfs_lookup_first_block_group(fs_info, range->start);
11015 else
11016 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +000011017
11018 while (cache) {
11019 if (cache->key.objectid >= (range->start + range->len)) {
11020 btrfs_put_block_group(cache);
11021 break;
11022 }
11023
11024 start = max(range->start, cache->key.objectid);
11025 end = min(range->start + range->len,
11026 cache->key.objectid + cache->key.offset);
11027
11028 if (end - start >= range->minlen) {
11029 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000011030 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040011031 if (ret) {
11032 btrfs_put_block_group(cache);
11033 break;
11034 }
11035 ret = wait_block_group_cache_done(cache);
11036 if (ret) {
11037 btrfs_put_block_group(cache);
11038 break;
11039 }
Li Dongyangf7039b12011-03-24 10:24:28 +000011040 }
11041 ret = btrfs_trim_block_group(cache,
11042 &group_trimmed,
11043 start,
11044 end,
11045 range->minlen);
11046
11047 trimmed += group_trimmed;
11048 if (ret) {
11049 btrfs_put_block_group(cache);
11050 break;
11051 }
11052 }
11053
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011054 cache = next_block_group(fs_info, cache);
Li Dongyangf7039b12011-03-24 10:24:28 +000011055 }
11056
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011057 mutex_lock(&fs_info->fs_devices->device_list_mutex);
11058 devices = &fs_info->fs_devices->alloc_list;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011059 list_for_each_entry(device, devices, dev_alloc_list) {
11060 ret = btrfs_trim_free_extents(device, range->minlen,
11061 &group_trimmed);
11062 if (ret)
11063 break;
11064
11065 trimmed += group_trimmed;
11066 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011067 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011068
Li Dongyangf7039b12011-03-24 10:24:28 +000011069 range->len = trimmed;
11070 return ret;
11071}
Miao Xie8257b2d2014-03-06 13:38:19 +080011072
11073/*
David Sterbaea14b57f2017-06-22 02:19:11 +020011074 * btrfs_{start,end}_write_no_snapshotting() are similar to
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011075 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
11076 * data into the page cache through nocow before the subvolume is snapshoted,
11077 * but flush the data into disk after the snapshot creation, or to prevent
David Sterbaea14b57f2017-06-22 02:19:11 +020011078 * operations while snapshotting is ongoing and that cause the snapshot to be
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011079 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080011080 */
David Sterbaea14b57f2017-06-22 02:19:11 +020011081void btrfs_end_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011082{
11083 percpu_counter_dec(&root->subv_writers->counter);
11084 /*
David Sterbaa83342a2015-02-16 19:36:47 +010011085 * Make sure counter is updated before we wake up waiters.
Miao Xie8257b2d2014-03-06 13:38:19 +080011086 */
11087 smp_mb();
11088 if (waitqueue_active(&root->subv_writers->wait))
11089 wake_up(&root->subv_writers->wait);
11090}
11091
David Sterbaea14b57f2017-06-22 02:19:11 +020011092int btrfs_start_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011093{
David Sterbaea14b57f2017-06-22 02:19:11 +020011094 if (atomic_read(&root->will_be_snapshotted))
Miao Xie8257b2d2014-03-06 13:38:19 +080011095 return 0;
11096
11097 percpu_counter_inc(&root->subv_writers->counter);
11098 /*
11099 * Make sure counter is updated before we check for snapshot creation.
11100 */
11101 smp_mb();
David Sterbaea14b57f2017-06-22 02:19:11 +020011102 if (atomic_read(&root->will_be_snapshotted)) {
11103 btrfs_end_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080011104 return 0;
11105 }
11106 return 1;
11107}
Zhao Lei0bc19f902016-01-06 18:56:36 +080011108
David Sterbaea14b57f2017-06-22 02:19:11 +020011109static int wait_snapshotting_atomic_t(atomic_t *a)
Zhao Lei0bc19f902016-01-06 18:56:36 +080011110{
11111 schedule();
11112 return 0;
11113}
11114
11115void btrfs_wait_for_snapshot_creation(struct btrfs_root *root)
11116{
11117 while (true) {
11118 int ret;
11119
David Sterbaea14b57f2017-06-22 02:19:11 +020011120 ret = btrfs_start_write_no_snapshotting(root);
Zhao Lei0bc19f902016-01-06 18:56:36 +080011121 if (ret)
11122 break;
David Sterbaea14b57f2017-06-22 02:19:11 +020011123 wait_on_atomic_t(&root->will_be_snapshotted,
11124 wait_snapshotting_atomic_t,
Zhao Lei0bc19f902016-01-06 18:56:36 +080011125 TASK_UNINTERRUPTIBLE);
11126 }
11127}