blob: 794b06dd824a7aead5ccf339718ba598756a498f [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, Zhengb742bb822010-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 Mahoney87bde3c2017-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 Mahoney87bde3c2017-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 Mahoney87bde3c2017-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);
1161
1162 if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1163 type == BTRFS_SHARED_BLOCK_REF_KEY ||
1164 type == BTRFS_SHARED_DATA_REF_KEY ||
1165 type == BTRFS_EXTENT_DATA_REF_KEY) {
1166 if (is_data == BTRFS_REF_TYPE_BLOCK) {
1167 if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1168 type == BTRFS_SHARED_BLOCK_REF_KEY)
1169 return type;
1170 } else if (is_data == BTRFS_REF_TYPE_DATA) {
1171 if (type == BTRFS_EXTENT_DATA_REF_KEY ||
1172 type == BTRFS_SHARED_DATA_REF_KEY)
1173 return type;
1174 } else {
1175 ASSERT(is_data == BTRFS_REF_TYPE_ANY);
1176 return type;
1177 }
1178 }
1179
1180 btrfs_print_leaf((struct extent_buffer *)eb);
1181 btrfs_err(eb->fs_info, "eb %llu invalid extent inline ref type %d",
1182 eb->start, type);
1183 WARN_ON(1);
1184
1185 return BTRFS_REF_TYPE_INVALID;
1186}
1187
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001188static u64 hash_extent_data_ref(u64 root_objectid, u64 owner, u64 offset)
1189{
1190 u32 high_crc = ~(u32)0;
1191 u32 low_crc = ~(u32)0;
1192 __le64 lenum;
1193
1194 lenum = cpu_to_le64(root_objectid);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001195 high_crc = btrfs_crc32c(high_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001196 lenum = cpu_to_le64(owner);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001197 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001198 lenum = cpu_to_le64(offset);
Filipe David Borba Manana14a958e2014-01-12 02:22:46 +00001199 low_crc = btrfs_crc32c(low_crc, &lenum, sizeof(lenum));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001200
1201 return ((u64)high_crc << 31) ^ (u64)low_crc;
1202}
1203
1204static u64 hash_extent_data_ref_item(struct extent_buffer *leaf,
1205 struct btrfs_extent_data_ref *ref)
1206{
1207 return hash_extent_data_ref(btrfs_extent_data_ref_root(leaf, ref),
1208 btrfs_extent_data_ref_objectid(leaf, ref),
1209 btrfs_extent_data_ref_offset(leaf, ref));
1210}
1211
1212static int match_extent_data_ref(struct extent_buffer *leaf,
1213 struct btrfs_extent_data_ref *ref,
1214 u64 root_objectid, u64 owner, u64 offset)
1215{
1216 if (btrfs_extent_data_ref_root(leaf, ref) != root_objectid ||
1217 btrfs_extent_data_ref_objectid(leaf, ref) != owner ||
1218 btrfs_extent_data_ref_offset(leaf, ref) != offset)
1219 return 0;
1220 return 1;
1221}
1222
1223static noinline int lookup_extent_data_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001224 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001225 struct btrfs_path *path,
1226 u64 bytenr, u64 parent,
1227 u64 root_objectid,
1228 u64 owner, u64 offset)
1229{
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001230 struct btrfs_root *root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001231 struct btrfs_key key;
1232 struct btrfs_extent_data_ref *ref;
1233 struct extent_buffer *leaf;
1234 u32 nritems;
1235 int ret;
1236 int recow;
1237 int err = -ENOENT;
1238
1239 key.objectid = bytenr;
1240 if (parent) {
1241 key.type = BTRFS_SHARED_DATA_REF_KEY;
1242 key.offset = parent;
1243 } else {
1244 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1245 key.offset = hash_extent_data_ref(root_objectid,
1246 owner, offset);
1247 }
1248again:
1249 recow = 0;
1250 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1251 if (ret < 0) {
1252 err = ret;
1253 goto fail;
1254 }
1255
1256 if (parent) {
1257 if (!ret)
1258 return 0;
1259#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1260 key.type = BTRFS_EXTENT_REF_V0_KEY;
David Sterbab3b4aa72011-04-21 01:20:15 +02001261 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001262 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1263 if (ret < 0) {
1264 err = ret;
1265 goto fail;
1266 }
1267 if (!ret)
1268 return 0;
1269#endif
1270 goto fail;
Zheng Yan31840ae2008-09-23 13:14:14 -04001271 }
1272
1273 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001274 nritems = btrfs_header_nritems(leaf);
1275 while (1) {
1276 if (path->slots[0] >= nritems) {
1277 ret = btrfs_next_leaf(root, path);
1278 if (ret < 0)
1279 err = ret;
1280 if (ret)
1281 goto fail;
1282
1283 leaf = path->nodes[0];
1284 nritems = btrfs_header_nritems(leaf);
1285 recow = 1;
1286 }
1287
1288 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1289 if (key.objectid != bytenr ||
1290 key.type != BTRFS_EXTENT_DATA_REF_KEY)
1291 goto fail;
1292
1293 ref = btrfs_item_ptr(leaf, path->slots[0],
1294 struct btrfs_extent_data_ref);
1295
1296 if (match_extent_data_ref(leaf, ref, root_objectid,
1297 owner, offset)) {
1298 if (recow) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001299 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001300 goto again;
1301 }
1302 err = 0;
1303 break;
1304 }
1305 path->slots[0]++;
Zheng Yan31840ae2008-09-23 13:14:14 -04001306 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001307fail:
1308 return err;
Zheng Yan31840ae2008-09-23 13:14:14 -04001309}
1310
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001311static noinline int insert_extent_data_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001312 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001313 struct btrfs_path *path,
1314 u64 bytenr, u64 parent,
1315 u64 root_objectid, u64 owner,
1316 u64 offset, int refs_to_add)
Zheng Yan31840ae2008-09-23 13:14:14 -04001317{
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001318 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04001319 struct btrfs_key key;
1320 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001321 u32 size;
Zheng Yan31840ae2008-09-23 13:14:14 -04001322 u32 num_refs;
1323 int ret;
1324
1325 key.objectid = bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001326 if (parent) {
1327 key.type = BTRFS_SHARED_DATA_REF_KEY;
1328 key.offset = parent;
1329 size = sizeof(struct btrfs_shared_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001330 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001331 key.type = BTRFS_EXTENT_DATA_REF_KEY;
1332 key.offset = hash_extent_data_ref(root_objectid,
1333 owner, offset);
1334 size = sizeof(struct btrfs_extent_data_ref);
Zheng Yan31840ae2008-09-23 13:14:14 -04001335 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001336
1337 ret = btrfs_insert_empty_item(trans, root, path, &key, size);
1338 if (ret && ret != -EEXIST)
1339 goto fail;
1340
1341 leaf = path->nodes[0];
1342 if (parent) {
1343 struct btrfs_shared_data_ref *ref;
1344 ref = btrfs_item_ptr(leaf, path->slots[0],
1345 struct btrfs_shared_data_ref);
1346 if (ret == 0) {
1347 btrfs_set_shared_data_ref_count(leaf, ref, refs_to_add);
1348 } else {
1349 num_refs = btrfs_shared_data_ref_count(leaf, ref);
1350 num_refs += refs_to_add;
1351 btrfs_set_shared_data_ref_count(leaf, ref, num_refs);
1352 }
1353 } else {
1354 struct btrfs_extent_data_ref *ref;
1355 while (ret == -EEXIST) {
1356 ref = btrfs_item_ptr(leaf, path->slots[0],
1357 struct btrfs_extent_data_ref);
1358 if (match_extent_data_ref(leaf, ref, root_objectid,
1359 owner, offset))
1360 break;
David Sterbab3b4aa72011-04-21 01:20:15 +02001361 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001362 key.offset++;
1363 ret = btrfs_insert_empty_item(trans, root, path, &key,
1364 size);
1365 if (ret && ret != -EEXIST)
1366 goto fail;
1367
1368 leaf = path->nodes[0];
1369 }
1370 ref = btrfs_item_ptr(leaf, path->slots[0],
1371 struct btrfs_extent_data_ref);
1372 if (ret == 0) {
1373 btrfs_set_extent_data_ref_root(leaf, ref,
1374 root_objectid);
1375 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
1376 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
1377 btrfs_set_extent_data_ref_count(leaf, ref, refs_to_add);
1378 } else {
1379 num_refs = btrfs_extent_data_ref_count(leaf, ref);
1380 num_refs += refs_to_add;
1381 btrfs_set_extent_data_ref_count(leaf, ref, num_refs);
1382 }
1383 }
1384 btrfs_mark_buffer_dirty(leaf);
1385 ret = 0;
1386fail:
David Sterbab3b4aa72011-04-21 01:20:15 +02001387 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05001388 return ret;
Chris Mason74493f72007-12-11 09:25:06 -05001389}
1390
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001391static noinline int remove_extent_data_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001392 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001393 struct btrfs_path *path,
Josef Bacikfcebe452014-05-13 17:30:47 -07001394 int refs_to_drop, int *last_ref)
Zheng Yan31840ae2008-09-23 13:14:14 -04001395{
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001396 struct btrfs_key key;
1397 struct btrfs_extent_data_ref *ref1 = NULL;
1398 struct btrfs_shared_data_ref *ref2 = NULL;
Zheng Yan31840ae2008-09-23 13:14:14 -04001399 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001400 u32 num_refs = 0;
Zheng Yan31840ae2008-09-23 13:14:14 -04001401 int ret = 0;
1402
1403 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001404 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1405
1406 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1407 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1408 struct btrfs_extent_data_ref);
1409 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1410 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1411 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1412 struct btrfs_shared_data_ref);
1413 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1414#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1415 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1416 struct btrfs_extent_ref_v0 *ref0;
1417 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1418 struct btrfs_extent_ref_v0);
1419 num_refs = btrfs_ref_count_v0(leaf, ref0);
1420#endif
1421 } else {
1422 BUG();
1423 }
1424
Chris Mason56bec292009-03-13 10:10:06 -04001425 BUG_ON(num_refs < refs_to_drop);
1426 num_refs -= refs_to_drop;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001427
Zheng Yan31840ae2008-09-23 13:14:14 -04001428 if (num_refs == 0) {
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001429 ret = btrfs_del_item(trans, fs_info->extent_root, path);
Josef Bacikfcebe452014-05-13 17:30:47 -07001430 *last_ref = 1;
Zheng Yan31840ae2008-09-23 13:14:14 -04001431 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001432 if (key.type == BTRFS_EXTENT_DATA_REF_KEY)
1433 btrfs_set_extent_data_ref_count(leaf, ref1, num_refs);
1434 else if (key.type == BTRFS_SHARED_DATA_REF_KEY)
1435 btrfs_set_shared_data_ref_count(leaf, ref2, num_refs);
1436#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1437 else {
1438 struct btrfs_extent_ref_v0 *ref0;
1439 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1440 struct btrfs_extent_ref_v0);
1441 btrfs_set_ref_count_v0(leaf, ref0, num_refs);
1442 }
1443#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04001444 btrfs_mark_buffer_dirty(leaf);
1445 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001446 return ret;
1447}
1448
Zhaolei9ed0dea2015-08-06 22:16:24 +08001449static noinline u32 extent_data_ref_count(struct btrfs_path *path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001450 struct btrfs_extent_inline_ref *iref)
1451{
1452 struct btrfs_key key;
1453 struct extent_buffer *leaf;
1454 struct btrfs_extent_data_ref *ref1;
1455 struct btrfs_shared_data_ref *ref2;
1456 u32 num_refs = 0;
1457
1458 leaf = path->nodes[0];
1459 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1460 if (iref) {
1461 if (btrfs_extent_inline_ref_type(leaf, iref) ==
1462 BTRFS_EXTENT_DATA_REF_KEY) {
1463 ref1 = (struct btrfs_extent_data_ref *)(&iref->offset);
1464 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1465 } else {
1466 ref2 = (struct btrfs_shared_data_ref *)(iref + 1);
1467 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1468 }
1469 } else if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
1470 ref1 = btrfs_item_ptr(leaf, path->slots[0],
1471 struct btrfs_extent_data_ref);
1472 num_refs = btrfs_extent_data_ref_count(leaf, ref1);
1473 } else if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
1474 ref2 = btrfs_item_ptr(leaf, path->slots[0],
1475 struct btrfs_shared_data_ref);
1476 num_refs = btrfs_shared_data_ref_count(leaf, ref2);
1477#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1478 } else if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
1479 struct btrfs_extent_ref_v0 *ref0;
1480 ref0 = btrfs_item_ptr(leaf, path->slots[0],
1481 struct btrfs_extent_ref_v0);
1482 num_refs = btrfs_ref_count_v0(leaf, ref0);
1483#endif
1484 } else {
1485 WARN_ON(1);
1486 }
1487 return num_refs;
1488}
1489
1490static noinline int lookup_tree_block_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001491 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001492 struct btrfs_path *path,
1493 u64 bytenr, u64 parent,
1494 u64 root_objectid)
1495{
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001496 struct btrfs_root *root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001497 struct btrfs_key key;
1498 int ret;
1499
1500 key.objectid = bytenr;
1501 if (parent) {
1502 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1503 key.offset = parent;
1504 } else {
1505 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1506 key.offset = root_objectid;
1507 }
1508
1509 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1510 if (ret > 0)
1511 ret = -ENOENT;
1512#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1513 if (ret == -ENOENT && parent) {
David Sterbab3b4aa72011-04-21 01:20:15 +02001514 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001515 key.type = BTRFS_EXTENT_REF_V0_KEY;
1516 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
1517 if (ret > 0)
1518 ret = -ENOENT;
1519 }
1520#endif
1521 return ret;
1522}
1523
1524static noinline int insert_tree_block_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001525 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001526 struct btrfs_path *path,
1527 u64 bytenr, u64 parent,
1528 u64 root_objectid)
1529{
1530 struct btrfs_key key;
1531 int ret;
1532
1533 key.objectid = bytenr;
1534 if (parent) {
1535 key.type = BTRFS_SHARED_BLOCK_REF_KEY;
1536 key.offset = parent;
1537 } else {
1538 key.type = BTRFS_TREE_BLOCK_REF_KEY;
1539 key.offset = root_objectid;
1540 }
1541
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001542 ret = btrfs_insert_empty_item(trans, fs_info->extent_root,
1543 path, &key, 0);
David Sterbab3b4aa72011-04-21 01:20:15 +02001544 btrfs_release_path(path);
Zheng Yan31840ae2008-09-23 13:14:14 -04001545 return ret;
1546}
1547
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001548static inline int extent_ref_type(u64 parent, u64 owner)
1549{
1550 int type;
1551 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1552 if (parent > 0)
1553 type = BTRFS_SHARED_BLOCK_REF_KEY;
1554 else
1555 type = BTRFS_TREE_BLOCK_REF_KEY;
1556 } else {
1557 if (parent > 0)
1558 type = BTRFS_SHARED_DATA_REF_KEY;
1559 else
1560 type = BTRFS_EXTENT_DATA_REF_KEY;
1561 }
1562 return type;
1563}
1564
Yan Zheng2c47e6052009-06-27 21:07:35 -04001565static int find_next_key(struct btrfs_path *path, int level,
1566 struct btrfs_key *key)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001567
1568{
Yan Zheng2c47e6052009-06-27 21:07:35 -04001569 for (; level < BTRFS_MAX_LEVEL; level++) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001570 if (!path->nodes[level])
1571 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001572 if (path->slots[level] + 1 >=
1573 btrfs_header_nritems(path->nodes[level]))
1574 continue;
1575 if (level == 0)
1576 btrfs_item_key_to_cpu(path->nodes[level], key,
1577 path->slots[level] + 1);
1578 else
1579 btrfs_node_key_to_cpu(path->nodes[level], key,
1580 path->slots[level] + 1);
1581 return 0;
1582 }
1583 return 1;
1584}
1585
1586/*
1587 * look for inline back ref. if back ref is found, *ref_ret is set
1588 * to the address of inline back ref, and 0 is returned.
1589 *
1590 * if back ref isn't found, *ref_ret is set to the address where it
1591 * should be inserted, and -ENOENT is returned.
1592 *
1593 * if insert is true and there are too many inline back refs, the path
1594 * points to the extent item, and -EAGAIN is returned.
1595 *
1596 * NOTE: inline back refs are ordered in the same way that back ref
1597 * items in the tree are ordered.
1598 */
1599static noinline_for_stack
1600int lookup_inline_extent_backref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001601 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001602 struct btrfs_path *path,
1603 struct btrfs_extent_inline_ref **ref_ret,
1604 u64 bytenr, u64 num_bytes,
1605 u64 parent, u64 root_objectid,
1606 u64 owner, u64 offset, int insert)
1607{
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001608 struct btrfs_root *root = fs_info->extent_root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001609 struct btrfs_key key;
1610 struct extent_buffer *leaf;
1611 struct btrfs_extent_item *ei;
1612 struct btrfs_extent_inline_ref *iref;
1613 u64 flags;
1614 u64 item_size;
1615 unsigned long ptr;
1616 unsigned long end;
1617 int extra_size;
1618 int type;
1619 int want;
1620 int ret;
1621 int err = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001622 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001623
1624 key.objectid = bytenr;
1625 key.type = BTRFS_EXTENT_ITEM_KEY;
1626 key.offset = num_bytes;
1627
1628 want = extent_ref_type(parent, owner);
1629 if (insert) {
1630 extra_size = btrfs_extent_inline_ref_size(want);
Yan Zheng85d41982009-06-11 08:51:10 -04001631 path->keep_locks = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001632 } else
1633 extra_size = -1;
Josef Bacik3173a182013-03-07 14:22:04 -05001634
1635 /*
1636 * Owner is our parent level, so we can just add one to get the level
1637 * for the block we are interested in.
1638 */
1639 if (skinny_metadata && owner < BTRFS_FIRST_FREE_OBJECTID) {
1640 key.type = BTRFS_METADATA_ITEM_KEY;
1641 key.offset = owner;
1642 }
1643
1644again:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001645 ret = btrfs_search_slot(trans, root, &key, path, extra_size, 1);
1646 if (ret < 0) {
1647 err = ret;
1648 goto out;
1649 }
Josef Bacik3173a182013-03-07 14:22:04 -05001650
1651 /*
1652 * We may be a newly converted file system which still has the old fat
1653 * extent entries for metadata, so try and see if we have one of those.
1654 */
1655 if (ret > 0 && skinny_metadata) {
1656 skinny_metadata = false;
1657 if (path->slots[0]) {
1658 path->slots[0]--;
1659 btrfs_item_key_to_cpu(path->nodes[0], &key,
1660 path->slots[0]);
1661 if (key.objectid == bytenr &&
1662 key.type == BTRFS_EXTENT_ITEM_KEY &&
1663 key.offset == num_bytes)
1664 ret = 0;
1665 }
1666 if (ret) {
Filipe Manana9ce49a02014-04-24 15:15:28 +01001667 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05001668 key.type = BTRFS_EXTENT_ITEM_KEY;
1669 key.offset = num_bytes;
1670 btrfs_release_path(path);
1671 goto again;
1672 }
1673 }
1674
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001675 if (ret && !insert) {
1676 err = -ENOENT;
1677 goto out;
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05301678 } else if (WARN_ON(ret)) {
Josef Bacik492104c2013-03-08 15:41:02 -05001679 err = -EIO;
Josef Bacik492104c2013-03-08 15:41:02 -05001680 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01001681 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001682
1683 leaf = path->nodes[0];
1684 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1685#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1686 if (item_size < sizeof(*ei)) {
1687 if (!insert) {
1688 err = -ENOENT;
1689 goto out;
1690 }
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001691 ret = convert_extent_item_v0(trans, fs_info, path, owner,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001692 extra_size);
1693 if (ret < 0) {
1694 err = ret;
1695 goto out;
1696 }
1697 leaf = path->nodes[0];
1698 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1699 }
1700#endif
1701 BUG_ON(item_size < sizeof(*ei));
1702
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001703 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1704 flags = btrfs_extent_flags(leaf, ei);
1705
1706 ptr = (unsigned long)(ei + 1);
1707 end = (unsigned long)ei + item_size;
1708
Josef Bacik3173a182013-03-07 14:22:04 -05001709 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK && !skinny_metadata) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001710 ptr += sizeof(struct btrfs_tree_block_info);
1711 BUG_ON(ptr > end);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001712 }
1713
1714 err = -ENOENT;
1715 while (1) {
1716 if (ptr >= end) {
1717 WARN_ON(ptr > end);
1718 break;
1719 }
1720 iref = (struct btrfs_extent_inline_ref *)ptr;
1721 type = btrfs_extent_inline_ref_type(leaf, iref);
1722 if (want < type)
1723 break;
1724 if (want > type) {
1725 ptr += btrfs_extent_inline_ref_size(type);
1726 continue;
1727 }
1728
1729 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1730 struct btrfs_extent_data_ref *dref;
1731 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1732 if (match_extent_data_ref(leaf, dref, root_objectid,
1733 owner, offset)) {
1734 err = 0;
1735 break;
1736 }
1737 if (hash_extent_data_ref_item(leaf, dref) <
1738 hash_extent_data_ref(root_objectid, owner, offset))
1739 break;
1740 } else {
1741 u64 ref_offset;
1742 ref_offset = btrfs_extent_inline_ref_offset(leaf, iref);
1743 if (parent > 0) {
1744 if (parent == ref_offset) {
1745 err = 0;
1746 break;
1747 }
1748 if (ref_offset < parent)
1749 break;
1750 } else {
1751 if (root_objectid == ref_offset) {
1752 err = 0;
1753 break;
1754 }
1755 if (ref_offset < root_objectid)
1756 break;
1757 }
1758 }
1759 ptr += btrfs_extent_inline_ref_size(type);
1760 }
1761 if (err == -ENOENT && insert) {
1762 if (item_size + extra_size >=
1763 BTRFS_MAX_EXTENT_ITEM_SIZE(root)) {
1764 err = -EAGAIN;
1765 goto out;
1766 }
1767 /*
1768 * To add new inline back ref, we have to make sure
1769 * there is no corresponding back ref item.
1770 * For simplicity, we just do not add new inline back
1771 * ref if there is any kind of item for this block
1772 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04001773 if (find_next_key(path, 0, &key) == 0 &&
1774 key.objectid == bytenr &&
Yan Zheng85d41982009-06-11 08:51:10 -04001775 key.type < BTRFS_BLOCK_GROUP_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001776 err = -EAGAIN;
1777 goto out;
1778 }
1779 }
1780 *ref_ret = (struct btrfs_extent_inline_ref *)ptr;
1781out:
Yan Zheng85d41982009-06-11 08:51:10 -04001782 if (insert) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001783 path->keep_locks = 0;
1784 btrfs_unlock_up_safe(path, 1);
1785 }
1786 return err;
1787}
1788
1789/*
1790 * helper to add new inline back ref
1791 */
1792static noinline_for_stack
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001793void setup_inline_extent_backref(struct btrfs_fs_info *fs_info,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001794 struct btrfs_path *path,
1795 struct btrfs_extent_inline_ref *iref,
1796 u64 parent, u64 root_objectid,
1797 u64 owner, u64 offset, int refs_to_add,
1798 struct btrfs_delayed_extent_op *extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001799{
1800 struct extent_buffer *leaf;
1801 struct btrfs_extent_item *ei;
1802 unsigned long ptr;
1803 unsigned long end;
1804 unsigned long item_offset;
1805 u64 refs;
1806 int size;
1807 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001808
1809 leaf = path->nodes[0];
1810 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1811 item_offset = (unsigned long)iref - (unsigned long)ei;
1812
1813 type = extent_ref_type(parent, owner);
1814 size = btrfs_extent_inline_ref_size(type);
1815
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001816 btrfs_extend_item(fs_info, path, size);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001817
1818 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1819 refs = btrfs_extent_refs(leaf, ei);
1820 refs += refs_to_add;
1821 btrfs_set_extent_refs(leaf, ei, refs);
1822 if (extent_op)
1823 __run_delayed_extent_op(extent_op, leaf, ei);
1824
1825 ptr = (unsigned long)ei + item_offset;
1826 end = (unsigned long)ei + btrfs_item_size_nr(leaf, path->slots[0]);
1827 if (ptr < end - size)
1828 memmove_extent_buffer(leaf, ptr + size, ptr,
1829 end - size - ptr);
1830
1831 iref = (struct btrfs_extent_inline_ref *)ptr;
1832 btrfs_set_extent_inline_ref_type(leaf, iref, type);
1833 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1834 struct btrfs_extent_data_ref *dref;
1835 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1836 btrfs_set_extent_data_ref_root(leaf, dref, root_objectid);
1837 btrfs_set_extent_data_ref_objectid(leaf, dref, owner);
1838 btrfs_set_extent_data_ref_offset(leaf, dref, offset);
1839 btrfs_set_extent_data_ref_count(leaf, dref, refs_to_add);
1840 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1841 struct btrfs_shared_data_ref *sref;
1842 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1843 btrfs_set_shared_data_ref_count(leaf, sref, refs_to_add);
1844 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1845 } else if (type == BTRFS_SHARED_BLOCK_REF_KEY) {
1846 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
1847 } else {
1848 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
1849 }
1850 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001851}
1852
1853static int lookup_extent_backref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001854 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001855 struct btrfs_path *path,
1856 struct btrfs_extent_inline_ref **ref_ret,
1857 u64 bytenr, u64 num_bytes, u64 parent,
1858 u64 root_objectid, u64 owner, u64 offset)
1859{
1860 int ret;
1861
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001862 ret = lookup_inline_extent_backref(trans, fs_info, path, ref_ret,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001863 bytenr, num_bytes, parent,
1864 root_objectid, owner, offset, 0);
1865 if (ret != -ENOENT)
1866 return ret;
1867
David Sterbab3b4aa72011-04-21 01:20:15 +02001868 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001869 *ref_ret = NULL;
1870
1871 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001872 ret = lookup_tree_block_ref(trans, fs_info, path, bytenr,
1873 parent, root_objectid);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001874 } else {
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001875 ret = lookup_extent_data_ref(trans, fs_info, path, bytenr,
1876 parent, root_objectid, owner,
1877 offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001878 }
1879 return ret;
1880}
1881
1882/*
1883 * helper to update/remove inline back ref
1884 */
1885static noinline_for_stack
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001886void update_inline_extent_backref(struct btrfs_fs_info *fs_info,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001887 struct btrfs_path *path,
1888 struct btrfs_extent_inline_ref *iref,
1889 int refs_to_mod,
Josef Bacikfcebe452014-05-13 17:30:47 -07001890 struct btrfs_delayed_extent_op *extent_op,
1891 int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001892{
1893 struct extent_buffer *leaf;
1894 struct btrfs_extent_item *ei;
1895 struct btrfs_extent_data_ref *dref = NULL;
1896 struct btrfs_shared_data_ref *sref = NULL;
1897 unsigned long ptr;
1898 unsigned long end;
1899 u32 item_size;
1900 int size;
1901 int type;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001902 u64 refs;
1903
1904 leaf = path->nodes[0];
1905 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
1906 refs = btrfs_extent_refs(leaf, ei);
1907 WARN_ON(refs_to_mod < 0 && refs + refs_to_mod <= 0);
1908 refs += refs_to_mod;
1909 btrfs_set_extent_refs(leaf, ei, refs);
1910 if (extent_op)
1911 __run_delayed_extent_op(extent_op, leaf, ei);
1912
1913 type = btrfs_extent_inline_ref_type(leaf, iref);
1914
1915 if (type == BTRFS_EXTENT_DATA_REF_KEY) {
1916 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
1917 refs = btrfs_extent_data_ref_count(leaf, dref);
1918 } else if (type == BTRFS_SHARED_DATA_REF_KEY) {
1919 sref = (struct btrfs_shared_data_ref *)(iref + 1);
1920 refs = btrfs_shared_data_ref_count(leaf, sref);
1921 } else {
1922 refs = 1;
1923 BUG_ON(refs_to_mod != -1);
1924 }
1925
1926 BUG_ON(refs_to_mod < 0 && refs < -refs_to_mod);
1927 refs += refs_to_mod;
1928
1929 if (refs > 0) {
1930 if (type == BTRFS_EXTENT_DATA_REF_KEY)
1931 btrfs_set_extent_data_ref_count(leaf, dref, refs);
1932 else
1933 btrfs_set_shared_data_ref_count(leaf, sref, refs);
1934 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07001935 *last_ref = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001936 size = btrfs_extent_inline_ref_size(type);
1937 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
1938 ptr = (unsigned long)iref;
1939 end = (unsigned long)ei + item_size;
1940 if (ptr + size < end)
1941 memmove_extent_buffer(leaf, ptr, ptr + size,
1942 end - ptr - size);
1943 item_size -= size;
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001944 btrfs_truncate_item(fs_info, path, item_size, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001945 }
1946 btrfs_mark_buffer_dirty(leaf);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001947}
1948
1949static noinline_for_stack
1950int insert_inline_extent_backref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001951 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001952 struct btrfs_path *path,
1953 u64 bytenr, u64 num_bytes, u64 parent,
1954 u64 root_objectid, u64 owner,
1955 u64 offset, int refs_to_add,
1956 struct btrfs_delayed_extent_op *extent_op)
1957{
1958 struct btrfs_extent_inline_ref *iref;
1959 int ret;
1960
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001961 ret = lookup_inline_extent_backref(trans, fs_info, path, &iref,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001962 bytenr, num_bytes, parent,
1963 root_objectid, owner, offset, 1);
1964 if (ret == 0) {
1965 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID);
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001966 update_inline_extent_backref(fs_info, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07001967 refs_to_add, extent_op, NULL);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001968 } else if (ret == -ENOENT) {
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001969 setup_inline_extent_backref(fs_info, path, iref, parent,
Jeff Mahoney143bede2012-03-01 14:56:26 +01001970 root_objectid, owner, offset,
1971 refs_to_add, extent_op);
1972 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001973 }
1974 return ret;
1975}
1976
1977static int insert_extent_backref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001978 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001979 struct btrfs_path *path,
1980 u64 bytenr, u64 parent, u64 root_objectid,
1981 u64 owner, u64 offset, int refs_to_add)
1982{
1983 int ret;
1984 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
1985 BUG_ON(refs_to_add != 1);
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001986 ret = insert_tree_block_ref(trans, fs_info, path, bytenr,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001987 parent, root_objectid);
1988 } else {
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001989 ret = insert_extent_data_ref(trans, fs_info, path, bytenr,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001990 parent, root_objectid,
1991 owner, offset, refs_to_add);
1992 }
1993 return ret;
1994}
1995
1996static int remove_extent_backref(struct btrfs_trans_handle *trans,
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05001997 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04001998 struct btrfs_path *path,
1999 struct btrfs_extent_inline_ref *iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07002000 int refs_to_drop, int is_data, int *last_ref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002001{
Jeff Mahoney143bede2012-03-01 14:56:26 +01002002 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002003
2004 BUG_ON(!is_data && refs_to_drop != 1);
2005 if (iref) {
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05002006 update_inline_extent_backref(fs_info, path, iref,
Josef Bacikfcebe452014-05-13 17:30:47 -07002007 -refs_to_drop, NULL, last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002008 } else if (is_data) {
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05002009 ret = remove_extent_data_ref(trans, fs_info, path, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07002010 last_ref);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002011 } else {
Josef Bacikfcebe452014-05-13 17:30:47 -07002012 *last_ref = 1;
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05002013 ret = btrfs_del_item(trans, fs_info->extent_root, path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002014 }
2015 return ret;
2016}
2017
Jeff Mahoney86557862015-06-15 09:41:16 -04002018#define in_range(b, first, len) ((b) >= (first) && (b) < (first) + (len))
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002019static int btrfs_issue_discard(struct block_device *bdev, u64 start, u64 len,
2020 u64 *discarded_bytes)
Chris Mason15916de2008-11-19 21:17:22 -05002021{
Jeff Mahoney86557862015-06-15 09:41:16 -04002022 int j, ret = 0;
2023 u64 bytes_left, end;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002024 u64 aligned_start = ALIGN(start, 1 << 9);
2025
2026 if (WARN_ON(start != aligned_start)) {
2027 len -= aligned_start - start;
2028 len = round_down(len, 1 << 9);
2029 start = aligned_start;
2030 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002031
2032 *discarded_bytes = 0;
Jeff Mahoney86557862015-06-15 09:41:16 -04002033
2034 if (!len)
2035 return 0;
2036
2037 end = start + len;
2038 bytes_left = len;
2039
2040 /* Skip any superblocks on this device. */
2041 for (j = 0; j < BTRFS_SUPER_MIRROR_MAX; j++) {
2042 u64 sb_start = btrfs_sb_offset(j);
2043 u64 sb_end = sb_start + BTRFS_SUPER_INFO_SIZE;
2044 u64 size = sb_start - start;
2045
2046 if (!in_range(sb_start, start, bytes_left) &&
2047 !in_range(sb_end, start, bytes_left) &&
2048 !in_range(start, sb_start, BTRFS_SUPER_INFO_SIZE))
2049 continue;
2050
2051 /*
2052 * Superblock spans beginning of range. Adjust start and
2053 * try again.
2054 */
2055 if (sb_start <= start) {
2056 start += sb_end - start;
2057 if (start > end) {
2058 bytes_left = 0;
2059 break;
2060 }
2061 bytes_left = end - start;
2062 continue;
2063 }
2064
2065 if (size) {
2066 ret = blkdev_issue_discard(bdev, start >> 9, size >> 9,
2067 GFP_NOFS, 0);
2068 if (!ret)
2069 *discarded_bytes += size;
2070 else if (ret != -EOPNOTSUPP)
2071 return ret;
2072 }
2073
2074 start = sb_end;
2075 if (start > end) {
2076 bytes_left = 0;
2077 break;
2078 }
2079 bytes_left = end - start;
2080 }
2081
2082 if (bytes_left) {
2083 ret = blkdev_issue_discard(bdev, start >> 9, bytes_left >> 9,
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002084 GFP_NOFS, 0);
2085 if (!ret)
Jeff Mahoney86557862015-06-15 09:41:16 -04002086 *discarded_bytes += bytes_left;
Jeff Mahoney4d89d372015-06-15 09:41:15 -04002087 }
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002088 return ret;
Chris Mason15916de2008-11-19 21:17:22 -05002089}
Chris Mason15916de2008-11-19 21:17:22 -05002090
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002091int btrfs_discard_extent(struct btrfs_fs_info *fs_info, u64 bytenr,
Filipe Manana1edb647b2014-12-08 14:01:12 +00002092 u64 num_bytes, u64 *actual_bytes)
Liu Hui1f3c79a2009-01-05 15:57:51 -05002093{
Liu Hui1f3c79a2009-01-05 15:57:51 -05002094 int ret;
Li Dongyang5378e602011-03-24 10:24:27 +00002095 u64 discarded_bytes = 0;
Jan Schmidta1d3c472011-08-04 17:15:33 +02002096 struct btrfs_bio *bbio = NULL;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002097
Christoph Hellwige244a0a2009-10-14 09:24:59 -04002098
Filipe Manana29992412016-05-27 17:42:05 +01002099 /*
2100 * Avoid races with device replace and make sure our bbio has devices
2101 * associated to its stripes that don't go away while we are discarding.
2102 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002103 btrfs_bio_counter_inc_blocked(fs_info);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002104 /* Tell the block device(s) that the sectors can be discarded */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002105 ret = btrfs_map_block(fs_info, BTRFS_MAP_DISCARD, bytenr, &num_bytes,
2106 &bbio, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002107 /* Error condition is -ENOMEM */
Liu Hui1f3c79a2009-01-05 15:57:51 -05002108 if (!ret) {
Jan Schmidta1d3c472011-08-04 17:15:33 +02002109 struct btrfs_bio_stripe *stripe = bbio->stripes;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002110 int i;
2111
Liu Hui1f3c79a2009-01-05 15:57:51 -05002112
Jan Schmidta1d3c472011-08-04 17:15:33 +02002113 for (i = 0; i < bbio->num_stripes; i++, stripe++) {
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002114 u64 bytes;
Josef Bacikd5e20032011-08-04 14:52:27 +00002115 if (!stripe->dev->can_discard)
2116 continue;
2117
Li Dongyang5378e602011-03-24 10:24:27 +00002118 ret = btrfs_issue_discard(stripe->dev->bdev,
2119 stripe->physical,
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002120 stripe->length,
2121 &bytes);
Li Dongyang5378e602011-03-24 10:24:27 +00002122 if (!ret)
Jeff Mahoneyd04c6b82015-06-15 09:41:14 -04002123 discarded_bytes += bytes;
Li Dongyang5378e602011-03-24 10:24:27 +00002124 else if (ret != -EOPNOTSUPP)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002125 break; /* Logic errors or -ENOMEM, or -EIO but I don't know how that could happen JDM */
Josef Bacikd5e20032011-08-04 14:52:27 +00002126
2127 /*
2128 * Just in case we get back EOPNOTSUPP for some reason,
2129 * just ignore the return value so we don't screw up
2130 * people calling discard_extent.
2131 */
2132 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002133 }
Zhao Lei6e9606d2015-01-20 15:11:34 +08002134 btrfs_put_bbio(bbio);
Liu Hui1f3c79a2009-01-05 15:57:51 -05002135 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002136 btrfs_bio_counter_dec(fs_info);
Li Dongyang5378e602011-03-24 10:24:27 +00002137
2138 if (actual_bytes)
2139 *actual_bytes = discarded_bytes;
2140
Liu Hui1f3c79a2009-01-05 15:57:51 -05002141
David Woodhouse53b381b2013-01-29 18:40:14 -05002142 if (ret == -EOPNOTSUPP)
2143 ret = 0;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002144 return ret;
Liu Hui1f3c79a2009-01-05 15:57:51 -05002145}
2146
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002147/* Can return -ENOMEM */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002148int btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002149 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002150 u64 bytenr, u64 num_bytes, u64 parent,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002151 u64 root_objectid, u64 owner, u64 offset)
Zheng Yan31840ae2008-09-23 13:14:14 -04002152{
Omar Sandovald7eae342017-06-06 16:45:31 -07002153 int old_ref_mod, new_ref_mod;
Zheng Yan31840ae2008-09-23 13:14:14 -04002154 int ret;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002155
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002156 BUG_ON(owner < BTRFS_FIRST_FREE_OBJECTID &&
2157 root_objectid == BTRFS_TREE_LOG_OBJECTID);
Zheng Yan31840ae2008-09-23 13:14:14 -04002158
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002159 if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002160 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07002161 num_bytes, parent,
2162 root_objectid, (int)owner,
2163 BTRFS_ADD_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07002164 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002165 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02002166 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07002167 num_bytes, parent,
2168 root_objectid, owner, offset,
Omar Sandovald7eae342017-06-06 16:45:31 -07002169 0, BTRFS_ADD_DELAYED_REF,
2170 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002171 }
Omar Sandovald7eae342017-06-06 16:45:31 -07002172
2173 if (ret == 0 && old_ref_mod < 0 && new_ref_mod >= 0)
2174 add_pinned_bytes(fs_info, -num_bytes, owner, root_objectid);
2175
Zheng Yan31840ae2008-09-23 13:14:14 -04002176 return ret;
2177}
2178
Chris Mason925baed2008-06-25 16:01:30 -04002179static int __btrfs_inc_extent_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002180 struct btrfs_fs_info *fs_info,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002181 struct btrfs_delayed_ref_node *node,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002182 u64 parent, u64 root_objectid,
2183 u64 owner, u64 offset, int refs_to_add,
2184 struct btrfs_delayed_extent_op *extent_op)
Chris Mason56bec292009-03-13 10:10:06 -04002185{
Chris Mason5caf2a02007-04-02 11:20:42 -04002186 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002187 struct extent_buffer *leaf;
Chris Mason234b63a2007-03-13 10:46:10 -04002188 struct btrfs_extent_item *item;
Josef Bacikfcebe452014-05-13 17:30:47 -07002189 struct btrfs_key key;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002190 u64 bytenr = node->bytenr;
2191 u64 num_bytes = node->num_bytes;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002192 u64 refs;
2193 int ret;
Chris Mason037e6392007-03-07 11:50:24 -05002194
Chris Mason5caf2a02007-04-02 11:20:42 -04002195 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04002196 if (!path)
2197 return -ENOMEM;
Chris Mason26b80032007-08-08 20:17:12 -04002198
David Sterbae4058b52015-11-27 16:31:35 +01002199 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002200 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002201 /* this will setup the path even if it fails to insert the back ref */
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05002202 ret = insert_inline_extent_backref(trans, fs_info, path, bytenr,
2203 num_bytes, parent, root_objectid,
2204 owner, offset,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002205 refs_to_add, extent_op);
Qu Wenruo0ed47922015-04-16 16:55:08 +08002206 if ((ret < 0 && ret != -EAGAIN) || !ret)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002207 goto out;
Josef Bacikfcebe452014-05-13 17:30:47 -07002208
2209 /*
2210 * Ok we had -EAGAIN which means we didn't have space to insert and
2211 * inline extent ref, so just update the reference count and add a
2212 * normal backref.
2213 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002214 leaf = path->nodes[0];
Josef Bacikfcebe452014-05-13 17:30:47 -07002215 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002216 item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2217 refs = btrfs_extent_refs(leaf, item);
2218 btrfs_set_extent_refs(leaf, item, refs + refs_to_add);
2219 if (extent_op)
2220 __run_delayed_extent_op(extent_op, leaf, item);
Zheng Yan31840ae2008-09-23 13:14:14 -04002221
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002222 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +02002223 btrfs_release_path(path);
Chris Mason7bb86312007-12-11 09:25:06 -05002224
David Sterbae4058b52015-11-27 16:31:35 +01002225 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04002226 path->leave_spinning = 1;
Chris Mason56bec292009-03-13 10:10:06 -04002227 /* now insert the actual backref */
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05002228 ret = insert_extent_backref(trans, fs_info, path, bytenr, parent,
2229 root_objectid, owner, offset, refs_to_add);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002230 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04002231 btrfs_abort_transaction(trans, ret);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002232out:
Chris Mason74493f72007-12-11 09:25:06 -05002233 btrfs_free_path(path);
Liu Bo30d133f2013-10-11 16:30:23 +08002234 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05002235}
2236
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002237static int run_delayed_data_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002238 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002239 struct btrfs_delayed_ref_node *node,
2240 struct btrfs_delayed_extent_op *extent_op,
2241 int insert_reserved)
Chris Masone9d0b132007-08-10 14:06:19 -04002242{
Chris Mason56bec292009-03-13 10:10:06 -04002243 int ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002244 struct btrfs_delayed_data_ref *ref;
2245 struct btrfs_key ins;
2246 u64 parent = 0;
2247 u64 ref_root = 0;
2248 u64 flags = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002249
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002250 ins.objectid = node->bytenr;
2251 ins.offset = node->num_bytes;
2252 ins.type = BTRFS_EXTENT_ITEM_KEY;
Chris Mason56bec292009-03-13 10:10:06 -04002253
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002254 ref = btrfs_delayed_node_to_data_ref(node);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002255 trace_run_delayed_data_ref(fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002256
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002257 if (node->type == BTRFS_SHARED_DATA_REF_KEY)
2258 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002259 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002260
2261 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002262 if (extent_op)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002263 flags |= extent_op->flags_to_set;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002264 ret = alloc_reserved_file_extent(trans, fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002265 parent, ref_root, flags,
2266 ref->objectid, ref->offset,
2267 &ins, node->ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002268 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002269 ret = __btrfs_inc_extent_ref(trans, fs_info, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002270 ref_root, ref->objectid,
2271 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002272 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002273 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002274 ret = __btrfs_free_extent(trans, fs_info, node, parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002275 ref_root, ref->objectid,
2276 ref->offset, node->ref_mod,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002277 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002278 } else {
2279 BUG();
2280 }
Chris Mason56bec292009-03-13 10:10:06 -04002281 return ret;
2282}
2283
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002284static void __run_delayed_extent_op(struct btrfs_delayed_extent_op *extent_op,
2285 struct extent_buffer *leaf,
2286 struct btrfs_extent_item *ei)
2287{
2288 u64 flags = btrfs_extent_flags(leaf, ei);
2289 if (extent_op->update_flags) {
2290 flags |= extent_op->flags_to_set;
2291 btrfs_set_extent_flags(leaf, ei, flags);
2292 }
2293
2294 if (extent_op->update_key) {
2295 struct btrfs_tree_block_info *bi;
2296 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK));
2297 bi = (struct btrfs_tree_block_info *)(ei + 1);
2298 btrfs_set_tree_block_key(leaf, bi, &extent_op->key);
2299 }
2300}
2301
2302static int run_delayed_extent_op(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002303 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002304 struct btrfs_delayed_ref_node *node,
2305 struct btrfs_delayed_extent_op *extent_op)
2306{
2307 struct btrfs_key key;
2308 struct btrfs_path *path;
2309 struct btrfs_extent_item *ei;
2310 struct extent_buffer *leaf;
2311 u32 item_size;
2312 int ret;
2313 int err = 0;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002314 int metadata = !extent_op->is_data;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002315
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002316 if (trans->aborted)
2317 return 0;
2318
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002319 if (metadata && !btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik3173a182013-03-07 14:22:04 -05002320 metadata = 0;
2321
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002322 path = btrfs_alloc_path();
2323 if (!path)
2324 return -ENOMEM;
2325
2326 key.objectid = node->bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002327
Josef Bacik3173a182013-03-07 14:22:04 -05002328 if (metadata) {
Josef Bacik3173a182013-03-07 14:22:04 -05002329 key.type = BTRFS_METADATA_ITEM_KEY;
Josef Bacikb1c79e02013-05-09 13:49:30 -04002330 key.offset = extent_op->level;
Josef Bacik3173a182013-03-07 14:22:04 -05002331 } else {
2332 key.type = BTRFS_EXTENT_ITEM_KEY;
2333 key.offset = node->num_bytes;
2334 }
2335
2336again:
David Sterbae4058b52015-11-27 16:31:35 +01002337 path->reada = READA_FORWARD;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002338 path->leave_spinning = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002339 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002340 if (ret < 0) {
2341 err = ret;
2342 goto out;
2343 }
2344 if (ret > 0) {
Josef Bacik3173a182013-03-07 14:22:04 -05002345 if (metadata) {
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002346 if (path->slots[0] > 0) {
2347 path->slots[0]--;
2348 btrfs_item_key_to_cpu(path->nodes[0], &key,
2349 path->slots[0]);
2350 if (key.objectid == node->bytenr &&
2351 key.type == BTRFS_EXTENT_ITEM_KEY &&
2352 key.offset == node->num_bytes)
2353 ret = 0;
2354 }
2355 if (ret > 0) {
2356 btrfs_release_path(path);
2357 metadata = 0;
Josef Bacik3173a182013-03-07 14:22:04 -05002358
Filipe David Borba Manana55994882013-10-18 15:42:56 +01002359 key.objectid = node->bytenr;
2360 key.offset = node->num_bytes;
2361 key.type = BTRFS_EXTENT_ITEM_KEY;
2362 goto again;
2363 }
2364 } else {
2365 err = -EIO;
2366 goto out;
Josef Bacik3173a182013-03-07 14:22:04 -05002367 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002368 }
2369
2370 leaf = path->nodes[0];
2371 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2372#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2373 if (item_size < sizeof(*ei)) {
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05002374 ret = convert_extent_item_v0(trans, fs_info, path, (u64)-1, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002375 if (ret < 0) {
2376 err = ret;
2377 goto out;
2378 }
2379 leaf = path->nodes[0];
2380 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
2381 }
2382#endif
2383 BUG_ON(item_size < sizeof(*ei));
2384 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
2385 __run_delayed_extent_op(extent_op, leaf, ei);
2386
2387 btrfs_mark_buffer_dirty(leaf);
2388out:
2389 btrfs_free_path(path);
2390 return err;
2391}
2392
2393static int run_delayed_tree_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002394 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002395 struct btrfs_delayed_ref_node *node,
2396 struct btrfs_delayed_extent_op *extent_op,
2397 int insert_reserved)
2398{
2399 int ret = 0;
2400 struct btrfs_delayed_tree_ref *ref;
2401 struct btrfs_key ins;
2402 u64 parent = 0;
2403 u64 ref_root = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002404 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002405
2406 ref = btrfs_delayed_node_to_tree_ref(node);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002407 trace_run_delayed_tree_ref(fs_info, node, ref, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002408
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002409 if (node->type == BTRFS_SHARED_BLOCK_REF_KEY)
2410 parent = ref->parent;
Josef Bacikfcebe452014-05-13 17:30:47 -07002411 ref_root = ref->root;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002412
Josef Bacik3173a182013-03-07 14:22:04 -05002413 ins.objectid = node->bytenr;
2414 if (skinny_metadata) {
2415 ins.offset = ref->level;
2416 ins.type = BTRFS_METADATA_ITEM_KEY;
2417 } else {
2418 ins.offset = node->num_bytes;
2419 ins.type = BTRFS_EXTENT_ITEM_KEY;
2420 }
2421
Liu Bo02794222016-09-14 19:19:05 -07002422 if (node->ref_mod != 1) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002423 btrfs_err(fs_info,
Liu Bo02794222016-09-14 19:19:05 -07002424 "btree block(%llu) has %d references rather than 1: action %d ref_root %llu parent %llu",
2425 node->bytenr, node->ref_mod, node->action, ref_root,
2426 parent);
2427 return -EIO;
2428 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002429 if (node->action == BTRFS_ADD_DELAYED_REF && insert_reserved) {
Josef Bacik3173a182013-03-07 14:22:04 -05002430 BUG_ON(!extent_op || !extent_op->update_flags);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002431 ret = alloc_reserved_tree_block(trans, fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002432 parent, ref_root,
2433 extent_op->flags_to_set,
2434 &extent_op->key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01002435 ref->level, &ins);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002436 } else if (node->action == BTRFS_ADD_DELAYED_REF) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002437 ret = __btrfs_inc_extent_ref(trans, fs_info, node,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002438 parent, ref_root,
2439 ref->level, 0, 1,
Josef Bacikfcebe452014-05-13 17:30:47 -07002440 extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002441 } else if (node->action == BTRFS_DROP_DELAYED_REF) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002442 ret = __btrfs_free_extent(trans, fs_info, node,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08002443 parent, ref_root,
2444 ref->level, 0, 1, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002445 } else {
2446 BUG();
2447 }
2448 return ret;
2449}
2450
Chris Mason56bec292009-03-13 10:10:06 -04002451/* helper function to actually process a single delayed ref entry */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002452static int run_one_delayed_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002453 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002454 struct btrfs_delayed_ref_node *node,
2455 struct btrfs_delayed_extent_op *extent_op,
2456 int insert_reserved)
Chris Mason56bec292009-03-13 10:10:06 -04002457{
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002458 int ret = 0;
2459
Josef Bacik857cc2f2013-10-07 15:21:08 -04002460 if (trans->aborted) {
2461 if (insert_reserved)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002462 btrfs_pin_extent(fs_info, node->bytenr,
Josef Bacik857cc2f2013-10-07 15:21:08 -04002463 node->num_bytes, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002464 return 0;
Josef Bacik857cc2f2013-10-07 15:21:08 -04002465 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002466
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002467 if (btrfs_delayed_ref_is_head(node)) {
Chris Mason56bec292009-03-13 10:10:06 -04002468 struct btrfs_delayed_ref_head *head;
2469 /*
2470 * we've hit the end of the chain and we were supposed
2471 * to insert this extent into the tree. But, it got
2472 * deleted before we ever needed to insert it, so all
2473 * we have to do is clean up the accounting
2474 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002475 BUG_ON(extent_op);
2476 head = btrfs_delayed_node_to_head(node);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002477 trace_run_delayed_ref_head(fs_info, node, head, node->action);
Liu Bo599c75e2013-07-16 19:03:36 +08002478
Omar Sandovald7eae342017-06-06 16:45:31 -07002479 if (head->total_ref_mod < 0) {
2480 struct btrfs_block_group_cache *cache;
2481
2482 cache = btrfs_lookup_block_group(fs_info, node->bytenr);
2483 ASSERT(cache);
2484 percpu_counter_add(&cache->space_info->total_bytes_pinned,
2485 -node->num_bytes);
2486 btrfs_put_block_group(cache);
2487 }
2488
Chris Mason56bec292009-03-13 10:10:06 -04002489 if (insert_reserved) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002490 btrfs_pin_extent(fs_info, node->bytenr,
Yan, Zhengf0486c62010-05-16 10:46:25 -04002491 node->num_bytes, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002492 if (head->is_data) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002493 ret = btrfs_del_csums(trans, fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002494 node->bytenr,
2495 node->num_bytes);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002496 }
Chris Mason56bec292009-03-13 10:10:06 -04002497 }
Qu Wenruo297d7502015-09-08 17:08:37 +08002498
2499 /* Also free its reserved qgroup space */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002500 btrfs_qgroup_free_delayed_ref(fs_info, head->qgroup_ref_root,
Qu Wenruo297d7502015-09-08 17:08:37 +08002501 head->qgroup_reserved);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002502 return ret;
Chris Mason56bec292009-03-13 10:10:06 -04002503 }
Josef Bacikeb099672009-02-12 09:27:38 -05002504
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002505 if (node->type == BTRFS_TREE_BLOCK_REF_KEY ||
2506 node->type == BTRFS_SHARED_BLOCK_REF_KEY)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002507 ret = run_delayed_tree_ref(trans, fs_info, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002508 insert_reserved);
2509 else if (node->type == BTRFS_EXTENT_DATA_REF_KEY ||
2510 node->type == BTRFS_SHARED_DATA_REF_KEY)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002511 ret = run_delayed_data_ref(trans, fs_info, node, extent_op,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002512 insert_reserved);
2513 else
2514 BUG();
2515 return ret;
Chris Masone9d0b132007-08-10 14:06:19 -04002516}
2517
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002518static inline struct btrfs_delayed_ref_node *
Chris Mason56bec292009-03-13 10:10:06 -04002519select_delayed_ref(struct btrfs_delayed_ref_head *head)
Chris Masona28ec192007-03-06 20:08:01 -05002520{
Filipe Mananacffc3372015-07-09 13:13:44 +01002521 struct btrfs_delayed_ref_node *ref;
2522
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002523 if (list_empty(&head->ref_list))
2524 return NULL;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002525
Filipe Mananacffc3372015-07-09 13:13:44 +01002526 /*
2527 * Select a delayed ref of type BTRFS_ADD_DELAYED_REF first.
2528 * This is to prevent a ref count from going down to zero, which deletes
2529 * the extent item from the extent tree, when there still are references
2530 * to add, which would fail because they would not find the extent item.
2531 */
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002532 if (!list_empty(&head->ref_add_list))
2533 return list_first_entry(&head->ref_add_list,
2534 struct btrfs_delayed_ref_node, add_list);
Filipe Mananacffc3372015-07-09 13:13:44 +01002535
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002536 ref = list_first_entry(&head->ref_list, struct btrfs_delayed_ref_node,
2537 list);
2538 ASSERT(list_empty(&ref->add_list));
2539 return ref;
Chris Mason56bec292009-03-13 10:10:06 -04002540}
2541
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002542/*
2543 * Returns 0 on success or if called with an already aborted transaction.
2544 * Returns -ENOMEM or -EIO on failure and will abort the transaction.
2545 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002546static noinline int __btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002547 struct btrfs_fs_info *fs_info,
Josef Bacikd7df2c72014-01-23 09:21:38 -05002548 unsigned long nr)
Chris Mason56bec292009-03-13 10:10:06 -04002549{
Chris Mason56bec292009-03-13 10:10:06 -04002550 struct btrfs_delayed_ref_root *delayed_refs;
2551 struct btrfs_delayed_ref_node *ref;
2552 struct btrfs_delayed_ref_head *locked_ref = NULL;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002553 struct btrfs_delayed_extent_op *extent_op;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002554 ktime_t start = ktime_get();
Chris Mason56bec292009-03-13 10:10:06 -04002555 int ret;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002556 unsigned long count = 0;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002557 unsigned long actual_count = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002558 int must_insert_reserved = 0;
Chris Mason56bec292009-03-13 10:10:06 -04002559
2560 delayed_refs = &trans->transaction->delayed_refs;
Chris Mason56bec292009-03-13 10:10:06 -04002561 while (1) {
2562 if (!locked_ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002563 if (count >= nr)
Chris Mason56bec292009-03-13 10:10:06 -04002564 break;
Chris Mason56bec292009-03-13 10:10:06 -04002565
Josef Bacikd7df2c72014-01-23 09:21:38 -05002566 spin_lock(&delayed_refs->lock);
2567 locked_ref = btrfs_select_ref_head(trans);
2568 if (!locked_ref) {
2569 spin_unlock(&delayed_refs->lock);
2570 break;
2571 }
Chris Masonc3e69d52009-03-13 10:17:05 -04002572
2573 /* grab the lock that says we are going to process
2574 * all the refs for this head */
2575 ret = btrfs_delayed_ref_lock(trans, locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002576 spin_unlock(&delayed_refs->lock);
Chris Masonc3e69d52009-03-13 10:17:05 -04002577 /*
2578 * we may have dropped the spin lock to get the head
2579 * mutex lock, and that might have given someone else
2580 * time to free the head. If that's true, it has been
2581 * removed from our list and we can move on.
2582 */
2583 if (ret == -EAGAIN) {
2584 locked_ref = NULL;
2585 count++;
2586 continue;
Chris Mason56bec292009-03-13 10:10:06 -04002587 }
2588 }
2589
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002590 /*
2591 * We need to try and merge add/drops of the same ref since we
2592 * can run into issues with relocate dropping the implicit ref
2593 * and then it being added back again before the drop can
2594 * finish. If we merged anything we need to re-loop so we can
2595 * get a good ref.
2596 * Or we can get node references of the same type that weren't
2597 * merged when created due to bumps in the tree mod seq, and
2598 * we need to merge them to prevent adding an inline extent
2599 * backref before dropping it (triggering a BUG_ON at
2600 * insert_inline_extent_backref()).
2601 */
Josef Bacikd7df2c72014-01-23 09:21:38 -05002602 spin_lock(&locked_ref->lock);
Filipe Manana2c3cf7d2015-10-22 09:47:34 +01002603 btrfs_merge_delayed_refs(trans, fs_info, delayed_refs,
2604 locked_ref);
Josef Bacikae1e2062012-08-07 16:00:32 -04002605
2606 /*
Arne Jansend1270cd2011-09-13 15:16:43 +02002607 * locked_ref is the head node, so we have to go one
2608 * node back for any delayed ref updates
2609 */
2610 ref = select_delayed_ref(locked_ref);
2611
2612 if (ref && ref->seq &&
Jan Schmidt097b8a72012-06-21 11:08:04 +02002613 btrfs_check_delayed_seq(fs_info, delayed_refs, ref->seq)) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002614 spin_unlock(&locked_ref->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002615 spin_lock(&delayed_refs->lock);
2616 locked_ref->processing = 0;
Arne Jansend1270cd2011-09-13 15:16:43 +02002617 delayed_refs->num_heads_ready++;
2618 spin_unlock(&delayed_refs->lock);
Jeff Mahoneyd0280992016-12-20 13:28:28 -05002619 btrfs_delayed_ref_unlock(locked_ref);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002620 locked_ref = NULL;
Arne Jansend1270cd2011-09-13 15:16:43 +02002621 cond_resched();
Josef Bacik27a377d2014-02-07 13:57:59 -05002622 count++;
Arne Jansend1270cd2011-09-13 15:16:43 +02002623 continue;
2624 }
2625
2626 /*
Chris Mason56bec292009-03-13 10:10:06 -04002627 * record the must insert reserved flag before we
2628 * drop the spin lock.
2629 */
2630 must_insert_reserved = locked_ref->must_insert_reserved;
2631 locked_ref->must_insert_reserved = 0;
2632
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002633 extent_op = locked_ref->extent_op;
2634 locked_ref->extent_op = NULL;
2635
Chris Mason56bec292009-03-13 10:10:06 -04002636 if (!ref) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002637
2638
Chris Mason56bec292009-03-13 10:10:06 -04002639 /* All delayed refs have been processed, Go ahead
2640 * and send the head node to run_one_delayed_ref,
2641 * so that any accounting fixes can happen
2642 */
2643 ref = &locked_ref->node;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002644
2645 if (extent_op && must_insert_reserved) {
Miao Xie78a61842012-11-21 02:21:28 +00002646 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002647 extent_op = NULL;
2648 }
2649
2650 if (extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002651 spin_unlock(&locked_ref->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002652 ret = run_delayed_extent_op(trans, fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002653 ref, extent_op);
Miao Xie78a61842012-11-21 02:21:28 +00002654 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002655
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002656 if (ret) {
Josef Bacik857cc2f2013-10-07 15:21:08 -04002657 /*
2658 * Need to reset must_insert_reserved if
2659 * there was an error so the abort stuff
2660 * can cleanup the reserved space
2661 * properly.
2662 */
2663 if (must_insert_reserved)
2664 locked_ref->must_insert_reserved = 1;
Jeff Mahoneyaa7c8da2016-12-20 13:28:27 -05002665 spin_lock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002666 locked_ref->processing = 0;
Jeff Mahoneyaa7c8da2016-12-20 13:28:27 -05002667 delayed_refs->num_heads_ready++;
2668 spin_unlock(&delayed_refs->lock);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002669 btrfs_debug(fs_info,
2670 "run_delayed_extent_op returned %d",
2671 ret);
Miao Xie093486c2012-12-19 08:10:10 +00002672 btrfs_delayed_ref_unlock(locked_ref);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002673 return ret;
2674 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002675 continue;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04002676 }
Chris Mason56bec292009-03-13 10:10:06 -04002677
Josef Bacikd7df2c72014-01-23 09:21:38 -05002678 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002679 * Need to drop our head ref lock and re-acquire the
Josef Bacikd7df2c72014-01-23 09:21:38 -05002680 * delayed ref lock and then re-check to make sure
2681 * nobody got added.
2682 */
2683 spin_unlock(&locked_ref->lock);
2684 spin_lock(&delayed_refs->lock);
2685 spin_lock(&locked_ref->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002686 if (!list_empty(&locked_ref->ref_list) ||
Josef Bacik573a0752014-03-27 19:41:34 -04002687 locked_ref->extent_op) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05002688 spin_unlock(&locked_ref->lock);
2689 spin_unlock(&delayed_refs->lock);
2690 continue;
2691 }
2692 ref->in_tree = 0;
2693 delayed_refs->num_heads--;
Liu Boc46effa2013-10-14 12:59:45 +08002694 rb_erase(&locked_ref->href_node,
2695 &delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002696 spin_unlock(&delayed_refs->lock);
2697 } else {
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002698 actual_count++;
Josef Bacikd7df2c72014-01-23 09:21:38 -05002699 ref->in_tree = 0;
Qu Wenruoc6fc2452015-03-30 17:03:00 +08002700 list_del(&ref->list);
Wang Xiaoguang1d57ee92016-10-26 18:07:33 +08002701 if (!list_empty(&ref->add_list))
2702 list_del(&ref->add_list);
Liu Boc46effa2013-10-14 12:59:45 +08002703 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002704 atomic_dec(&delayed_refs->num_entries);
2705
Miao Xie093486c2012-12-19 08:10:10 +00002706 if (!btrfs_delayed_ref_is_head(ref)) {
Arne Jansen22cd2e72012-08-09 00:16:53 -06002707 /*
2708 * when we play the delayed ref, also correct the
2709 * ref_mod on head
2710 */
2711 switch (ref->action) {
2712 case BTRFS_ADD_DELAYED_REF:
2713 case BTRFS_ADD_DELAYED_EXTENT:
2714 locked_ref->node.ref_mod -= ref->ref_mod;
2715 break;
2716 case BTRFS_DROP_DELAYED_REF:
2717 locked_ref->node.ref_mod += ref->ref_mod;
2718 break;
2719 default:
2720 WARN_ON(1);
2721 }
2722 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002723 spin_unlock(&locked_ref->lock);
Chris Mason56bec292009-03-13 10:10:06 -04002724
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002725 ret = run_one_delayed_ref(trans, fs_info, ref, extent_op,
Chris Mason56bec292009-03-13 10:10:06 -04002726 must_insert_reserved);
Chris Mason56bec292009-03-13 10:10:06 -04002727
Miao Xie78a61842012-11-21 02:21:28 +00002728 btrfs_free_delayed_extent_op(extent_op);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002729 if (ret) {
Wang Xiaoguang9d1032c2016-06-20 09:18:52 +08002730 spin_lock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05002731 locked_ref->processing = 0;
Wang Xiaoguang9d1032c2016-06-20 09:18:52 +08002732 delayed_refs->num_heads_ready++;
2733 spin_unlock(&delayed_refs->lock);
Miao Xie093486c2012-12-19 08:10:10 +00002734 btrfs_delayed_ref_unlock(locked_ref);
2735 btrfs_put_delayed_ref(ref);
Jeff Mahoney5d163e02016-09-20 10:05:00 -04002736 btrfs_debug(fs_info, "run_one_delayed_ref returned %d",
2737 ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01002738 return ret;
2739 }
2740
Miao Xie093486c2012-12-19 08:10:10 +00002741 /*
2742 * If this node is a head, that means all the refs in this head
2743 * have been dealt with, and we will pick the next head to deal
2744 * with, so we must unlock the head and drop it from the cluster
2745 * list before we release it.
2746 */
2747 if (btrfs_delayed_ref_is_head(ref)) {
Josef Bacik12621332015-02-03 07:50:16 -08002748 if (locked_ref->is_data &&
2749 locked_ref->total_ref_mod < 0) {
2750 spin_lock(&delayed_refs->lock);
2751 delayed_refs->pending_csums -= ref->num_bytes;
2752 spin_unlock(&delayed_refs->lock);
2753 }
Miao Xie093486c2012-12-19 08:10:10 +00002754 btrfs_delayed_ref_unlock(locked_ref);
2755 locked_ref = NULL;
2756 }
2757 btrfs_put_delayed_ref(ref);
2758 count++;
Chris Mason1887be62009-03-13 10:11:24 -04002759 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04002760 }
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002761
2762 /*
2763 * We don't want to include ref heads since we can have empty ref heads
2764 * and those will drastically skew our runtime down since we just do
2765 * accounting, no actual extent tree updates.
2766 */
2767 if (actual_count > 0) {
2768 u64 runtime = ktime_to_ns(ktime_sub(ktime_get(), start));
2769 u64 avg;
2770
2771 /*
2772 * We weigh the current average higher than our current runtime
2773 * to avoid large swings in the average.
2774 */
2775 spin_lock(&delayed_refs->lock);
2776 avg = fs_info->avg_delayed_ref_runtime * 3 + runtime;
David Sterbaf8c269d2015-01-16 17:21:12 +01002777 fs_info->avg_delayed_ref_runtime = avg >> 2; /* div by 4 */
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002778 spin_unlock(&delayed_refs->lock);
2779 }
Josef Bacikd7df2c72014-01-23 09:21:38 -05002780 return 0;
Chris Masonc3e69d52009-03-13 10:17:05 -04002781}
2782
Arne Jansen709c0482011-09-12 12:22:57 +02002783#ifdef SCRAMBLE_DELAYED_REFS
2784/*
2785 * Normally delayed refs get processed in ascending bytenr order. This
2786 * correlates in most cases to the order added. To expose dependencies on this
2787 * order, we start to process the tree in the middle instead of the beginning
2788 */
2789static u64 find_middle(struct rb_root *root)
2790{
2791 struct rb_node *n = root->rb_node;
2792 struct btrfs_delayed_ref_node *entry;
2793 int alt = 1;
2794 u64 middle;
2795 u64 first = 0, last = 0;
2796
2797 n = rb_first(root);
2798 if (n) {
2799 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2800 first = entry->bytenr;
2801 }
2802 n = rb_last(root);
2803 if (n) {
2804 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2805 last = entry->bytenr;
2806 }
2807 n = root->rb_node;
2808
2809 while (n) {
2810 entry = rb_entry(n, struct btrfs_delayed_ref_node, rb_node);
2811 WARN_ON(!entry->in_tree);
2812
2813 middle = entry->bytenr;
2814
2815 if (alt)
2816 n = n->rb_left;
2817 else
2818 n = n->rb_right;
2819
2820 alt = 1 - alt;
2821 }
2822 return middle;
2823}
2824#endif
2825
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002826static inline u64 heads_to_leaves(struct btrfs_fs_info *fs_info, u64 heads)
Josef Bacik1be41b72013-06-12 13:56:06 -04002827{
2828 u64 num_bytes;
2829
2830 num_bytes = heads * (sizeof(struct btrfs_extent_item) +
2831 sizeof(struct btrfs_extent_inline_ref));
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002832 if (!btrfs_fs_incompat(fs_info, SKINNY_METADATA))
Josef Bacik1be41b72013-06-12 13:56:06 -04002833 num_bytes += heads * sizeof(struct btrfs_tree_block_info);
2834
2835 /*
2836 * 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 -04002837 * closer to what we're really going to want to use.
Josef Bacik1be41b72013-06-12 13:56:06 -04002838 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002839 return div_u64(num_bytes, BTRFS_LEAF_DATA_SIZE(fs_info));
Josef Bacik1be41b72013-06-12 13:56:06 -04002840}
2841
Josef Bacik12621332015-02-03 07:50:16 -08002842/*
2843 * Takes the number of bytes to be csumm'ed and figures out how many leaves it
2844 * would require to store the csums for that many bytes.
2845 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002846u64 btrfs_csum_bytes_to_leaves(struct btrfs_fs_info *fs_info, u64 csum_bytes)
Josef Bacik12621332015-02-03 07:50:16 -08002847{
2848 u64 csum_size;
2849 u64 num_csums_per_leaf;
2850 u64 num_csums;
2851
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002852 csum_size = BTRFS_MAX_ITEM_SIZE(fs_info);
Josef Bacik12621332015-02-03 07:50:16 -08002853 num_csums_per_leaf = div64_u64(csum_size,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002854 (u64)btrfs_super_csum_size(fs_info->super_copy));
2855 num_csums = div64_u64(csum_bytes, fs_info->sectorsize);
Josef Bacik12621332015-02-03 07:50:16 -08002856 num_csums += num_csums_per_leaf - 1;
2857 num_csums = div64_u64(num_csums, num_csums_per_leaf);
2858 return num_csums;
2859}
2860
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002861int btrfs_check_space_for_delayed_refs(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002862 struct btrfs_fs_info *fs_info)
Josef Bacik1be41b72013-06-12 13:56:06 -04002863{
2864 struct btrfs_block_rsv *global_rsv;
2865 u64 num_heads = trans->transaction->delayed_refs.num_heads_ready;
Josef Bacik12621332015-02-03 07:50:16 -08002866 u64 csum_bytes = trans->transaction->delayed_refs.pending_csums;
Josef Bacikcb723e42015-02-18 08:06:57 -08002867 u64 num_dirty_bgs = trans->transaction->num_dirty_bgs;
2868 u64 num_bytes, num_dirty_bgs_bytes;
Josef Bacik1be41b72013-06-12 13:56:06 -04002869 int ret = 0;
2870
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002871 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002872 num_heads = heads_to_leaves(fs_info, num_heads);
Josef Bacik1be41b72013-06-12 13:56:06 -04002873 if (num_heads > 1)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002874 num_bytes += (num_heads - 1) * fs_info->nodesize;
Josef Bacik1be41b72013-06-12 13:56:06 -04002875 num_bytes <<= 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002876 num_bytes += btrfs_csum_bytes_to_leaves(fs_info, csum_bytes) *
2877 fs_info->nodesize;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002878 num_dirty_bgs_bytes = btrfs_calc_trans_metadata_size(fs_info,
Josef Bacikcb723e42015-02-18 08:06:57 -08002879 num_dirty_bgs);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002880 global_rsv = &fs_info->global_block_rsv;
Josef Bacik1be41b72013-06-12 13:56:06 -04002881
2882 /*
2883 * If we can't allocate any more chunks lets make sure we have _lots_ of
2884 * wiggle room since running delayed refs can create more delayed refs.
2885 */
Josef Bacikcb723e42015-02-18 08:06:57 -08002886 if (global_rsv->space_info->full) {
2887 num_dirty_bgs_bytes <<= 1;
Josef Bacik1be41b72013-06-12 13:56:06 -04002888 num_bytes <<= 1;
Josef Bacikcb723e42015-02-18 08:06:57 -08002889 }
Josef Bacik1be41b72013-06-12 13:56:06 -04002890
2891 spin_lock(&global_rsv->lock);
Josef Bacikcb723e42015-02-18 08:06:57 -08002892 if (global_rsv->reserved <= num_bytes + num_dirty_bgs_bytes)
Josef Bacik1be41b72013-06-12 13:56:06 -04002893 ret = 1;
2894 spin_unlock(&global_rsv->lock);
2895 return ret;
2896}
2897
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002898int btrfs_should_throttle_delayed_refs(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002899 struct btrfs_fs_info *fs_info)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002900{
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002901 u64 num_entries =
2902 atomic_read(&trans->transaction->delayed_refs.num_entries);
2903 u64 avg_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002904 u64 val;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002905
2906 smp_mb();
2907 avg_runtime = fs_info->avg_delayed_ref_runtime;
Chris Masona79b7d42014-05-22 16:18:52 -07002908 val = num_entries * avg_runtime;
Wang Xiaoguangdc1a90c2016-10-26 15:23:01 +08002909 if (val >= NSEC_PER_SEC)
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002910 return 1;
Chris Masona79b7d42014-05-22 16:18:52 -07002911 if (val >= NSEC_PER_SEC / 2)
2912 return 2;
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002913
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002914 return btrfs_check_space_for_delayed_refs(trans, fs_info);
Josef Bacik0a2b2a82014-01-23 10:54:11 -05002915}
2916
Chris Masona79b7d42014-05-22 16:18:52 -07002917struct async_delayed_refs {
2918 struct btrfs_root *root;
Josef Bacik31b96552016-04-11 17:37:40 -04002919 u64 transid;
Chris Masona79b7d42014-05-22 16:18:52 -07002920 int count;
2921 int error;
2922 int sync;
2923 struct completion wait;
2924 struct btrfs_work work;
2925};
2926
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002927static inline struct async_delayed_refs *
2928to_async_delayed_refs(struct btrfs_work *work)
2929{
2930 return container_of(work, struct async_delayed_refs, work);
2931}
2932
Chris Masona79b7d42014-05-22 16:18:52 -07002933static void delayed_ref_async_start(struct btrfs_work *work)
2934{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002935 struct async_delayed_refs *async = to_async_delayed_refs(work);
Chris Masona79b7d42014-05-22 16:18:52 -07002936 struct btrfs_trans_handle *trans;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002937 struct btrfs_fs_info *fs_info = async->root->fs_info;
Chris Masona79b7d42014-05-22 16:18:52 -07002938 int ret;
2939
Chris Mason0f873ec2016-04-27 09:59:38 -04002940 /* if the commit is already started, we don't need to wait here */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002941 if (btrfs_transaction_blocked(fs_info))
Josef Bacik31b96552016-04-11 17:37:40 -04002942 goto done;
Josef Bacik31b96552016-04-11 17:37:40 -04002943
Chris Mason0f873ec2016-04-27 09:59:38 -04002944 trans = btrfs_join_transaction(async->root);
2945 if (IS_ERR(trans)) {
2946 async->error = PTR_ERR(trans);
Chris Masona79b7d42014-05-22 16:18:52 -07002947 goto done;
2948 }
2949
2950 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04002951 * trans->sync means that when we call end_transaction, we won't
Chris Masona79b7d42014-05-22 16:18:52 -07002952 * wait on delayed refs
2953 */
2954 trans->sync = true;
Chris Mason0f873ec2016-04-27 09:59:38 -04002955
2956 /* Don't bother flushing if we got into a different transaction */
2957 if (trans->transid > async->transid)
2958 goto end;
2959
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002960 ret = btrfs_run_delayed_refs(trans, fs_info, async->count);
Chris Masona79b7d42014-05-22 16:18:52 -07002961 if (ret)
2962 async->error = ret;
Chris Mason0f873ec2016-04-27 09:59:38 -04002963end:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04002964 ret = btrfs_end_transaction(trans);
Chris Masona79b7d42014-05-22 16:18:52 -07002965 if (ret && !async->error)
2966 async->error = ret;
2967done:
2968 if (async->sync)
2969 complete(&async->wait);
2970 else
2971 kfree(async);
2972}
2973
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04002974int btrfs_async_run_delayed_refs(struct btrfs_fs_info *fs_info,
Josef Bacik31b96552016-04-11 17:37:40 -04002975 unsigned long count, u64 transid, int wait)
Chris Masona79b7d42014-05-22 16:18:52 -07002976{
2977 struct async_delayed_refs *async;
2978 int ret;
2979
2980 async = kmalloc(sizeof(*async), GFP_NOFS);
2981 if (!async)
2982 return -ENOMEM;
2983
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002984 async->root = fs_info->tree_root;
Chris Masona79b7d42014-05-22 16:18:52 -07002985 async->count = count;
2986 async->error = 0;
Josef Bacik31b96552016-04-11 17:37:40 -04002987 async->transid = transid;
Chris Masona79b7d42014-05-22 16:18:52 -07002988 if (wait)
2989 async->sync = 1;
2990 else
2991 async->sync = 0;
2992 init_completion(&async->wait);
2993
Liu Bo9e0af232014-08-15 23:36:53 +08002994 btrfs_init_work(&async->work, btrfs_extent_refs_helper,
2995 delayed_ref_async_start, NULL, NULL);
Chris Masona79b7d42014-05-22 16:18:52 -07002996
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002997 btrfs_queue_work(fs_info->extent_workers, &async->work);
Chris Masona79b7d42014-05-22 16:18:52 -07002998
2999 if (wait) {
3000 wait_for_completion(&async->wait);
3001 ret = async->error;
3002 kfree(async);
3003 return ret;
3004 }
3005 return 0;
3006}
3007
Chris Masonc3e69d52009-03-13 10:17:05 -04003008/*
3009 * this starts processing the delayed reference count updates and
3010 * extent insertions we have queued up so far. count can be
3011 * 0, which means to process everything in the tree at the start
3012 * of the run (but not newly added entries), or it can be some target
3013 * number you'd like to process.
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003014 *
3015 * Returns 0 on success or if called with an aborted transaction
3016 * Returns <0 on error and aborts the transaction
Chris Masonc3e69d52009-03-13 10:17:05 -04003017 */
3018int btrfs_run_delayed_refs(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003019 struct btrfs_fs_info *fs_info, unsigned long count)
Chris Masonc3e69d52009-03-13 10:17:05 -04003020{
3021 struct rb_node *node;
3022 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boc46effa2013-10-14 12:59:45 +08003023 struct btrfs_delayed_ref_head *head;
Chris Masonc3e69d52009-03-13 10:17:05 -04003024 int ret;
3025 int run_all = count == (unsigned long)-1;
Filipe Mananad9a05402015-10-03 13:13:13 +01003026 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Chris Masonc3e69d52009-03-13 10:17:05 -04003027
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003028 /* We'll clean this up in btrfs_cleanup_transaction */
3029 if (trans->aborted)
3030 return 0;
3031
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003032 if (test_bit(BTRFS_FS_CREATING_FREE_SPACE_TREE, &fs_info->flags))
Chris Mason511711a2015-12-30 07:52:35 -08003033 return 0;
3034
Chris Masonc3e69d52009-03-13 10:17:05 -04003035 delayed_refs = &trans->transaction->delayed_refs;
Liu Bo26455d32014-12-17 16:14:09 +08003036 if (count == 0)
Josef Bacikd7df2c72014-01-23 09:21:38 -05003037 count = atomic_read(&delayed_refs->num_entries) * 2;
Chris Masonbb721702013-01-29 18:44:12 -05003038
Chris Masonc3e69d52009-03-13 10:17:05 -04003039again:
Arne Jansen709c0482011-09-12 12:22:57 +02003040#ifdef SCRAMBLE_DELAYED_REFS
3041 delayed_refs->run_delayed_start = find_middle(&delayed_refs->root);
3042#endif
Filipe Mananad9a05402015-10-03 13:13:13 +01003043 trans->can_flush_pending_bgs = false;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003044 ret = __btrfs_run_delayed_refs(trans, fs_info, count);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003045 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003046 btrfs_abort_transaction(trans, ret);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003047 return ret;
Chris Masonc3e69d52009-03-13 10:17:05 -04003048 }
3049
Chris Mason56bec292009-03-13 10:10:06 -04003050 if (run_all) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05003051 if (!list_empty(&trans->new_bgs))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003052 btrfs_create_pending_block_groups(trans, fs_info);
Josef Bacikea658ba2012-09-11 16:57:25 -04003053
Josef Bacikd7df2c72014-01-23 09:21:38 -05003054 spin_lock(&delayed_refs->lock);
Liu Boc46effa2013-10-14 12:59:45 +08003055 node = rb_first(&delayed_refs->href_root);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003056 if (!node) {
3057 spin_unlock(&delayed_refs->lock);
Chris Mason56bec292009-03-13 10:10:06 -04003058 goto out;
Josef Bacikd7df2c72014-01-23 09:21:38 -05003059 }
Chris Mason56bec292009-03-13 10:10:06 -04003060
3061 while (node) {
Liu Boc46effa2013-10-14 12:59:45 +08003062 head = rb_entry(node, struct btrfs_delayed_ref_head,
3063 href_node);
3064 if (btrfs_delayed_ref_is_head(&head->node)) {
3065 struct btrfs_delayed_ref_node *ref;
Chris Mason56bec292009-03-13 10:10:06 -04003066
Liu Boc46effa2013-10-14 12:59:45 +08003067 ref = &head->node;
Elena Reshetova6df8cdf2017-03-03 10:55:15 +02003068 refcount_inc(&ref->refs);
Chris Mason56bec292009-03-13 10:10:06 -04003069
3070 spin_unlock(&delayed_refs->lock);
David Sterba8cc33e52011-05-02 15:29:25 +02003071 /*
3072 * Mutex was contended, block until it's
3073 * released and try again
3074 */
Chris Mason56bec292009-03-13 10:10:06 -04003075 mutex_lock(&head->mutex);
3076 mutex_unlock(&head->mutex);
3077
3078 btrfs_put_delayed_ref(ref);
Chris Mason1887be62009-03-13 10:11:24 -04003079 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04003080 goto again;
Liu Boc46effa2013-10-14 12:59:45 +08003081 } else {
3082 WARN_ON(1);
Chris Mason56bec292009-03-13 10:10:06 -04003083 }
3084 node = rb_next(node);
3085 }
3086 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003087 cond_resched();
Chris Mason56bec292009-03-13 10:10:06 -04003088 goto again;
3089 }
Chris Mason54aa1f42007-06-22 14:16:25 -04003090out:
Filipe Mananad9a05402015-10-03 13:13:13 +01003091 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Chris Masona28ec192007-03-06 20:08:01 -05003092 return 0;
3093}
3094
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003095int btrfs_set_disk_extent_flags(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003096 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003097 u64 bytenr, u64 num_bytes, u64 flags,
Josef Bacikb1c79e02013-05-09 13:49:30 -04003098 int level, int is_data)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003099{
3100 struct btrfs_delayed_extent_op *extent_op;
3101 int ret;
3102
Miao Xie78a61842012-11-21 02:21:28 +00003103 extent_op = btrfs_alloc_delayed_extent_op();
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003104 if (!extent_op)
3105 return -ENOMEM;
3106
3107 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01003108 extent_op->update_flags = true;
3109 extent_op->update_key = false;
3110 extent_op->is_data = is_data ? true : false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04003111 extent_op->level = level;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003112
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003113 ret = btrfs_add_delayed_extent_op(fs_info, trans, bytenr,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02003114 num_bytes, extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003115 if (ret)
Miao Xie78a61842012-11-21 02:21:28 +00003116 btrfs_free_delayed_extent_op(extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003117 return ret;
3118}
3119
Liu Boe4c3b2d2017-01-30 12:25:28 -08003120static noinline int check_delayed_ref(struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003121 struct btrfs_path *path,
3122 u64 objectid, u64 offset, u64 bytenr)
3123{
3124 struct btrfs_delayed_ref_head *head;
3125 struct btrfs_delayed_ref_node *ref;
3126 struct btrfs_delayed_data_ref *data_ref;
3127 struct btrfs_delayed_ref_root *delayed_refs;
Liu Boe4c3b2d2017-01-30 12:25:28 -08003128 struct btrfs_transaction *cur_trans;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003129 int ret = 0;
3130
Liu Boe4c3b2d2017-01-30 12:25:28 -08003131 cur_trans = root->fs_info->running_transaction;
3132 if (!cur_trans)
3133 return 0;
3134
3135 delayed_refs = &cur_trans->delayed_refs;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003136 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08003137 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003138 if (!head) {
3139 spin_unlock(&delayed_refs->lock);
3140 return 0;
3141 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003142
3143 if (!mutex_trylock(&head->mutex)) {
Elena Reshetova6df8cdf2017-03-03 10:55:15 +02003144 refcount_inc(&head->node.refs);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003145 spin_unlock(&delayed_refs->lock);
3146
David Sterbab3b4aa72011-04-21 01:20:15 +02003147 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003148
David Sterba8cc33e52011-05-02 15:29:25 +02003149 /*
3150 * Mutex was contended, block until it's released and let
3151 * caller try again
3152 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003153 mutex_lock(&head->mutex);
3154 mutex_unlock(&head->mutex);
3155 btrfs_put_delayed_ref(&head->node);
3156 return -EAGAIN;
3157 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003158 spin_unlock(&delayed_refs->lock);
Josef Bacikd7df2c72014-01-23 09:21:38 -05003159
3160 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08003161 list_for_each_entry(ref, &head->ref_list, list) {
Josef Bacikd7df2c72014-01-23 09:21:38 -05003162 /* If it's a shared ref we know a cross reference exists */
3163 if (ref->type != BTRFS_EXTENT_DATA_REF_KEY) {
3164 ret = 1;
3165 break;
3166 }
3167
3168 data_ref = btrfs_delayed_node_to_data_ref(ref);
3169
3170 /*
3171 * If our ref doesn't match the one we're currently looking at
3172 * then we have a cross reference.
3173 */
3174 if (data_ref->root != root->root_key.objectid ||
3175 data_ref->objectid != objectid ||
3176 data_ref->offset != offset) {
3177 ret = 1;
3178 break;
3179 }
3180 }
3181 spin_unlock(&head->lock);
3182 mutex_unlock(&head->mutex);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003183 return ret;
3184}
3185
Liu Boe4c3b2d2017-01-30 12:25:28 -08003186static noinline int check_committed_ref(struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003187 struct btrfs_path *path,
3188 u64 objectid, u64 offset, u64 bytenr)
Chris Masonbe20aa92007-12-17 20:14:01 -05003189{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003190 struct btrfs_fs_info *fs_info = root->fs_info;
3191 struct btrfs_root *extent_root = fs_info->extent_root;
Yan Zhengf321e492008-07-30 09:26:11 -04003192 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003193 struct btrfs_extent_data_ref *ref;
3194 struct btrfs_extent_inline_ref *iref;
3195 struct btrfs_extent_item *ei;
Chris Masonbe20aa92007-12-17 20:14:01 -05003196 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003197 u32 item_size;
Yan Zhengf321e492008-07-30 09:26:11 -04003198 int ret;
Chris Masonbe20aa92007-12-17 20:14:01 -05003199
Chris Masonbe20aa92007-12-17 20:14:01 -05003200 key.objectid = bytenr;
Zheng Yan31840ae2008-09-23 13:14:14 -04003201 key.offset = (u64)-1;
Yan Zhengf321e492008-07-30 09:26:11 -04003202 key.type = BTRFS_EXTENT_ITEM_KEY;
Chris Masonbe20aa92007-12-17 20:14:01 -05003203
Chris Masonbe20aa92007-12-17 20:14:01 -05003204 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
3205 if (ret < 0)
3206 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003207 BUG_ON(ret == 0); /* Corruption */
Yan Zheng80ff3852008-10-30 14:20:02 -04003208
3209 ret = -ENOENT;
3210 if (path->slots[0] == 0)
Zheng Yan31840ae2008-09-23 13:14:14 -04003211 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003212
Zheng Yan31840ae2008-09-23 13:14:14 -04003213 path->slots[0]--;
Yan Zhengf321e492008-07-30 09:26:11 -04003214 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003215 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
Chris Masonbe20aa92007-12-17 20:14:01 -05003216
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003217 if (key.objectid != bytenr || key.type != BTRFS_EXTENT_ITEM_KEY)
Chris Masonbe20aa92007-12-17 20:14:01 -05003218 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003219
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003220 ret = 1;
3221 item_size = btrfs_item_size_nr(leaf, path->slots[0]);
3222#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3223 if (item_size < sizeof(*ei)) {
3224 WARN_ON(item_size != sizeof(struct btrfs_extent_item_v0));
3225 goto out;
Chris Masonbe20aa92007-12-17 20:14:01 -05003226 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003227#endif
3228 ei = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_extent_item);
3229
3230 if (item_size != sizeof(*ei) +
3231 btrfs_extent_inline_ref_size(BTRFS_EXTENT_DATA_REF_KEY))
3232 goto out;
3233
3234 if (btrfs_extent_generation(leaf, ei) <=
3235 btrfs_root_last_snapshot(&root->root_item))
3236 goto out;
3237
3238 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
3239 if (btrfs_extent_inline_ref_type(leaf, iref) !=
3240 BTRFS_EXTENT_DATA_REF_KEY)
3241 goto out;
3242
3243 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
3244 if (btrfs_extent_refs(leaf, ei) !=
3245 btrfs_extent_data_ref_count(leaf, ref) ||
3246 btrfs_extent_data_ref_root(leaf, ref) !=
3247 root->root_key.objectid ||
3248 btrfs_extent_data_ref_objectid(leaf, ref) != objectid ||
3249 btrfs_extent_data_ref_offset(leaf, ref) != offset)
3250 goto out;
3251
Yan Zhengf321e492008-07-30 09:26:11 -04003252 ret = 0;
Chris Masonbe20aa92007-12-17 20:14:01 -05003253out:
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003254 return ret;
3255}
3256
Liu Boe4c3b2d2017-01-30 12:25:28 -08003257int btrfs_cross_ref_exist(struct btrfs_root *root, u64 objectid, u64 offset,
3258 u64 bytenr)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003259{
3260 struct btrfs_path *path;
3261 int ret;
3262 int ret2;
3263
3264 path = btrfs_alloc_path();
3265 if (!path)
3266 return -ENOENT;
3267
3268 do {
Liu Boe4c3b2d2017-01-30 12:25:28 -08003269 ret = check_committed_ref(root, path, objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003270 offset, bytenr);
3271 if (ret && ret != -ENOENT)
3272 goto out;
3273
Liu Boe4c3b2d2017-01-30 12:25:28 -08003274 ret2 = check_delayed_ref(root, path, objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003275 offset, bytenr);
3276 } while (ret2 == -EAGAIN);
3277
3278 if (ret2 && ret2 != -ENOENT) {
3279 ret = ret2;
3280 goto out;
3281 }
3282
3283 if (ret != -ENOENT || ret2 != -ENOENT)
3284 ret = 0;
3285out:
Yan Zhengf321e492008-07-30 09:26:11 -04003286 btrfs_free_path(path);
Yan, Zhengf0486c62010-05-16 10:46:25 -04003287 if (root->root_key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3288 WARN_ON(ret > 0);
Yan Zhengf321e492008-07-30 09:26:11 -04003289 return ret;
3290}
3291
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003292static int __btrfs_mod_ref(struct btrfs_trans_handle *trans,
Chris Masonb7a9f292009-02-04 09:23:45 -05003293 struct btrfs_root *root,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003294 struct extent_buffer *buf,
Josef Bacike339a6b2014-07-02 10:54:25 -07003295 int full_backref, int inc)
Zheng Yan31840ae2008-09-23 13:14:14 -04003296{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003297 struct btrfs_fs_info *fs_info = root->fs_info;
Zheng Yan31840ae2008-09-23 13:14:14 -04003298 u64 bytenr;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003299 u64 num_bytes;
3300 u64 parent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003301 u64 ref_root;
Zheng Yan31840ae2008-09-23 13:14:14 -04003302 u32 nritems;
Zheng Yan31840ae2008-09-23 13:14:14 -04003303 struct btrfs_key key;
3304 struct btrfs_file_extent_item *fi;
3305 int i;
3306 int level;
3307 int ret = 0;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003308 int (*process_func)(struct btrfs_trans_handle *,
3309 struct btrfs_fs_info *,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003310 u64, u64, u64, u64, u64, u64);
Zheng Yan31840ae2008-09-23 13:14:14 -04003311
David Sterbafccb84c2014-09-29 23:53:21 +02003312
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003313 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04003314 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02003315
Zheng Yan31840ae2008-09-23 13:14:14 -04003316 ref_root = btrfs_header_owner(buf);
Zheng Yan31840ae2008-09-23 13:14:14 -04003317 nritems = btrfs_header_nritems(buf);
3318 level = btrfs_header_level(buf);
3319
Miao Xie27cdeb72014-04-02 19:51:05 +08003320 if (!test_bit(BTRFS_ROOT_REF_COWS, &root->state) && level == 0)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003321 return 0;
Chris Masonb7a9f292009-02-04 09:23:45 -05003322
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003323 if (inc)
3324 process_func = btrfs_inc_extent_ref;
3325 else
3326 process_func = btrfs_free_extent;
Zheng Yan31840ae2008-09-23 13:14:14 -04003327
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003328 if (full_backref)
3329 parent = buf->start;
3330 else
3331 parent = 0;
3332
Zheng Yan31840ae2008-09-23 13:14:14 -04003333 for (i = 0; i < nritems; i++) {
Chris Masondb945352007-10-15 16:15:53 -04003334 if (level == 0) {
Chris Mason5f39d392007-10-15 16:14:19 -04003335 btrfs_item_key_to_cpu(buf, &key, i);
David Sterba962a2982014-06-04 18:41:45 +02003336 if (key.type != BTRFS_EXTENT_DATA_KEY)
Chris Mason54aa1f42007-06-22 14:16:25 -04003337 continue;
Chris Mason5f39d392007-10-15 16:14:19 -04003338 fi = btrfs_item_ptr(buf, i,
Chris Mason54aa1f42007-06-22 14:16:25 -04003339 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -04003340 if (btrfs_file_extent_type(buf, fi) ==
Chris Mason54aa1f42007-06-22 14:16:25 -04003341 BTRFS_FILE_EXTENT_INLINE)
3342 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003343 bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
3344 if (bytenr == 0)
Chris Mason54aa1f42007-06-22 14:16:25 -04003345 continue;
Zheng Yan31840ae2008-09-23 13:14:14 -04003346
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003347 num_bytes = btrfs_file_extent_disk_num_bytes(buf, fi);
3348 key.offset -= btrfs_file_extent_offset(buf, fi);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003349 ret = process_func(trans, fs_info, bytenr, num_bytes,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003350 parent, ref_root, key.objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003351 key.offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003352 if (ret)
3353 goto fail;
Chris Masonb7a9f292009-02-04 09:23:45 -05003354 } else {
3355 bytenr = btrfs_node_blockptr(buf, i);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003356 num_bytes = fs_info->nodesize;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003357 ret = process_func(trans, fs_info, bytenr, num_bytes,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01003358 parent, ref_root, level - 1, 0);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003359 if (ret)
Zheng Yan31840ae2008-09-23 13:14:14 -04003360 goto fail;
Chris Mason54aa1f42007-06-22 14:16:25 -04003361 }
3362 }
Zheng Yan31840ae2008-09-23 13:14:14 -04003363 return 0;
3364fail:
Chris Mason54aa1f42007-06-22 14:16:25 -04003365 return ret;
Chris Mason02217ed2007-03-02 16:08:05 -05003366}
3367
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003368int btrfs_inc_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003369 struct extent_buffer *buf, int full_backref)
Zheng Yan31840ae2008-09-23 13:14:14 -04003370{
Josef Bacike339a6b2014-07-02 10:54:25 -07003371 return __btrfs_mod_ref(trans, root, buf, full_backref, 1);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003372}
Zheng Yan31840ae2008-09-23 13:14:14 -04003373
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003374int btrfs_dec_ref(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Josef Bacike339a6b2014-07-02 10:54:25 -07003375 struct extent_buffer *buf, int full_backref)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04003376{
Josef Bacike339a6b2014-07-02 10:54:25 -07003377 return __btrfs_mod_ref(trans, root, buf, full_backref, 0);
Zheng Yan31840ae2008-09-23 13:14:14 -04003378}
3379
Chris Mason9078a3e2007-04-26 16:46:15 -04003380static int write_one_cache_group(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003381 struct btrfs_fs_info *fs_info,
Chris Mason9078a3e2007-04-26 16:46:15 -04003382 struct btrfs_path *path,
3383 struct btrfs_block_group_cache *cache)
3384{
3385 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003386 struct btrfs_root *extent_root = fs_info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04003387 unsigned long bi;
3388 struct extent_buffer *leaf;
Chris Mason9078a3e2007-04-26 16:46:15 -04003389
Chris Mason9078a3e2007-04-26 16:46:15 -04003390 ret = btrfs_search_slot(trans, extent_root, &cache->key, path, 0, 1);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003391 if (ret) {
3392 if (ret > 0)
3393 ret = -ENOENT;
Chris Mason54aa1f42007-06-22 14:16:25 -04003394 goto fail;
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003395 }
Chris Mason5f39d392007-10-15 16:14:19 -04003396
3397 leaf = path->nodes[0];
3398 bi = btrfs_item_ptr_offset(leaf, path->slots[0]);
3399 write_extent_buffer(leaf, &cache->item, bi, sizeof(cache->item));
3400 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -04003401fail:
Filipe Manana24b89d02015-04-25 18:31:05 +01003402 btrfs_release_path(path);
Josef Bacikdf95e7f2014-12-12 16:02:20 -05003403 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003404
3405}
3406
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003407static struct btrfs_block_group_cache *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003408next_block_group(struct btrfs_fs_info *fs_info,
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003409 struct btrfs_block_group_cache *cache)
3410{
3411 struct rb_node *node;
Filipe Manana292cbd52014-11-26 15:28:50 +00003412
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003413 spin_lock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003414
3415 /* If our block group was removed, we need a full search. */
3416 if (RB_EMPTY_NODE(&cache->cache_node)) {
3417 const u64 next_bytenr = cache->key.objectid + cache->key.offset;
3418
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003419 spin_unlock(&fs_info->block_group_cache_lock);
Filipe Manana292cbd52014-11-26 15:28:50 +00003420 btrfs_put_block_group(cache);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003421 cache = btrfs_lookup_first_block_group(fs_info, next_bytenr); return cache;
Filipe Manana292cbd52014-11-26 15:28:50 +00003422 }
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003423 node = rb_next(&cache->cache_node);
3424 btrfs_put_block_group(cache);
3425 if (node) {
3426 cache = rb_entry(node, struct btrfs_block_group_cache,
3427 cache_node);
Josef Bacik11dfe352009-11-13 20:12:59 +00003428 btrfs_get_block_group(cache);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003429 } else
3430 cache = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003431 spin_unlock(&fs_info->block_group_cache_lock);
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003432 return cache;
3433}
3434
Josef Bacik0af3d002010-06-21 14:48:16 -04003435static int cache_save_setup(struct btrfs_block_group_cache *block_group,
3436 struct btrfs_trans_handle *trans,
3437 struct btrfs_path *path)
3438{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003439 struct btrfs_fs_info *fs_info = block_group->fs_info;
3440 struct btrfs_root *root = fs_info->tree_root;
Josef Bacik0af3d002010-06-21 14:48:16 -04003441 struct inode *inode = NULL;
Qu Wenruo364ecf32017-02-27 15:10:38 +08003442 struct extent_changeset *data_reserved = NULL;
Josef Bacik0af3d002010-06-21 14:48:16 -04003443 u64 alloc_hint = 0;
Josef Bacik2b209822010-12-03 13:17:53 -05003444 int dcs = BTRFS_DC_ERROR;
David Sterbaf8c269d2015-01-16 17:21:12 +01003445 u64 num_pages = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003446 int retries = 0;
3447 int ret = 0;
3448
3449 /*
3450 * If this block group is smaller than 100 megs don't bother caching the
3451 * block group.
3452 */
Byongho Leeee221842015-12-15 01:42:10 +09003453 if (block_group->key.offset < (100 * SZ_1M)) {
Josef Bacik0af3d002010-06-21 14:48:16 -04003454 spin_lock(&block_group->lock);
3455 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
3456 spin_unlock(&block_group->lock);
3457 return 0;
3458 }
3459
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003460 if (trans->aborted)
3461 return 0;
Josef Bacik0af3d002010-06-21 14:48:16 -04003462again:
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003463 inode = lookup_free_space_inode(fs_info, block_group, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003464 if (IS_ERR(inode) && PTR_ERR(inode) != -ENOENT) {
3465 ret = PTR_ERR(inode);
David Sterbab3b4aa72011-04-21 01:20:15 +02003466 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003467 goto out;
3468 }
3469
3470 if (IS_ERR(inode)) {
3471 BUG_ON(retries);
3472 retries++;
3473
3474 if (block_group->ro)
3475 goto out_free;
3476
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003477 ret = create_free_space_inode(fs_info, trans, block_group,
3478 path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003479 if (ret)
3480 goto out_free;
3481 goto again;
3482 }
3483
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003484 /* We've already setup this transaction, go ahead and exit */
3485 if (block_group->cache_generation == trans->transid &&
3486 i_size_read(inode)) {
3487 dcs = BTRFS_DC_SETUP;
3488 goto out_put;
3489 }
3490
Josef Bacik0af3d002010-06-21 14:48:16 -04003491 /*
3492 * We want to set the generation to 0, that way if anything goes wrong
3493 * from here on out we know not to trust this cache when we load up next
3494 * time.
3495 */
3496 BTRFS_I(inode)->generation = 0;
3497 ret = btrfs_update_inode(trans, root, inode);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003498 if (ret) {
3499 /*
3500 * So theoretically we could recover from this, simply set the
3501 * super cache generation to 0 so we know to invalidate the
3502 * cache, but then we'd have to keep track of the block groups
3503 * that fail this way so we know we _have_ to reset this cache
3504 * before the next commit or risk reading stale cache. So to
3505 * limit our exposure to horrible edge cases lets just abort the
3506 * transaction, this only happens in really bad situations
3507 * anyway.
3508 */
Jeff Mahoney66642832016-06-10 18:19:25 -04003509 btrfs_abort_transaction(trans, ret);
Josef Bacik0c0ef4b2015-02-12 09:43:51 -05003510 goto out_put;
3511 }
Josef Bacik0af3d002010-06-21 14:48:16 -04003512 WARN_ON(ret);
3513
3514 if (i_size_read(inode) > 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003515 ret = btrfs_check_trunc_cache_free_space(fs_info,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003516 &fs_info->global_block_rsv);
Miao Xie7b61cd92013-05-13 13:55:09 +00003517 if (ret)
3518 goto out_put;
3519
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05003520 ret = btrfs_truncate_free_space_cache(trans, NULL, inode);
Josef Bacik0af3d002010-06-21 14:48:16 -04003521 if (ret)
3522 goto out_put;
3523 }
3524
3525 spin_lock(&block_group->lock);
Liu Bocf7c1ef2012-07-06 03:31:34 -06003526 if (block_group->cached != BTRFS_CACHE_FINISHED ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003527 !btrfs_test_opt(fs_info, SPACE_CACHE)) {
Liu Bocf7c1ef2012-07-06 03:31:34 -06003528 /*
3529 * don't bother trying to write stuff out _if_
3530 * a) we're not cached,
Liu Bo1a79c1f2017-03-06 13:49:02 -08003531 * b) we're with nospace_cache mount option,
3532 * c) we're with v2 space_cache (FREE_SPACE_TREE).
Liu Bocf7c1ef2012-07-06 03:31:34 -06003533 */
Josef Bacik2b209822010-12-03 13:17:53 -05003534 dcs = BTRFS_DC_WRITTEN;
Josef Bacik0af3d002010-06-21 14:48:16 -04003535 spin_unlock(&block_group->lock);
3536 goto out_put;
3537 }
3538 spin_unlock(&block_group->lock);
3539
Josef Bacik6fc823b2012-08-06 13:46:38 -06003540 /*
Josef Bacik2968b1f2015-10-01 12:55:18 -04003541 * We hit an ENOSPC when setting up the cache in this transaction, just
3542 * skip doing the setup, we've already cleared the cache so we're safe.
3543 */
3544 if (test_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags)) {
3545 ret = -ENOSPC;
3546 goto out_put;
3547 }
3548
3549 /*
Josef Bacik6fc823b2012-08-06 13:46:38 -06003550 * Try to preallocate enough space based on how big the block group is.
3551 * Keep in mind this has to include any pinned space which could end up
3552 * taking up quite a bit since it's not folded into the other space
3553 * cache.
3554 */
Byongho Leeee221842015-12-15 01:42:10 +09003555 num_pages = div_u64(block_group->key.offset, SZ_256M);
Josef Bacik0af3d002010-06-21 14:48:16 -04003556 if (!num_pages)
3557 num_pages = 1;
3558
Josef Bacik0af3d002010-06-21 14:48:16 -04003559 num_pages *= 16;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003560 num_pages *= PAGE_SIZE;
Josef Bacik0af3d002010-06-21 14:48:16 -04003561
Qu Wenruo364ecf32017-02-27 15:10:38 +08003562 ret = btrfs_check_data_free_space(inode, &data_reserved, 0, num_pages);
Josef Bacik0af3d002010-06-21 14:48:16 -04003563 if (ret)
3564 goto out_put;
3565
3566 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, num_pages,
3567 num_pages, num_pages,
3568 &alloc_hint);
Josef Bacik2968b1f2015-10-01 12:55:18 -04003569 /*
3570 * Our cache requires contiguous chunks so that we don't modify a bunch
3571 * of metadata or split extents when writing the cache out, which means
3572 * we can enospc if we are heavily fragmented in addition to just normal
3573 * out of space conditions. So if we hit this just skip setting up any
3574 * other block groups for this transaction, maybe we'll unpin enough
3575 * space the next time around.
3576 */
Josef Bacik2b209822010-12-03 13:17:53 -05003577 if (!ret)
3578 dcs = BTRFS_DC_SETUP;
Josef Bacik2968b1f2015-10-01 12:55:18 -04003579 else if (ret == -ENOSPC)
3580 set_bit(BTRFS_TRANS_CACHE_ENOSPC, &trans->transaction->flags);
Josef Bacikc09544e2011-08-30 10:19:10 -04003581
Josef Bacik0af3d002010-06-21 14:48:16 -04003582out_put:
3583 iput(inode);
3584out_free:
David Sterbab3b4aa72011-04-21 01:20:15 +02003585 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003586out:
3587 spin_lock(&block_group->lock);
Josef Bacike65cbb92011-12-13 16:04:54 -05003588 if (!ret && dcs == BTRFS_DC_SETUP)
Josef Bacik5b0e95b2011-10-06 08:58:24 -04003589 block_group->cache_generation = trans->transid;
Josef Bacik2b209822010-12-03 13:17:53 -05003590 block_group->disk_cache_state = dcs;
Josef Bacik0af3d002010-06-21 14:48:16 -04003591 spin_unlock(&block_group->lock);
3592
Qu Wenruo364ecf32017-02-27 15:10:38 +08003593 extent_changeset_free(data_reserved);
Josef Bacik0af3d002010-06-21 14:48:16 -04003594 return ret;
3595}
3596
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003597int btrfs_setup_space_cache(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003598 struct btrfs_fs_info *fs_info)
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003599{
3600 struct btrfs_block_group_cache *cache, *tmp;
3601 struct btrfs_transaction *cur_trans = trans->transaction;
3602 struct btrfs_path *path;
3603
3604 if (list_empty(&cur_trans->dirty_bgs) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003605 !btrfs_test_opt(fs_info, SPACE_CACHE))
Josef Bacikdcdf7f62015-03-02 16:37:31 -05003606 return 0;
3607
3608 path = btrfs_alloc_path();
3609 if (!path)
3610 return -ENOMEM;
3611
3612 /* Could add new block groups, use _safe just in case */
3613 list_for_each_entry_safe(cache, tmp, &cur_trans->dirty_bgs,
3614 dirty_list) {
3615 if (cache->disk_cache_state == BTRFS_DC_CLEAR)
3616 cache_save_setup(cache, trans, path);
3617 }
3618
3619 btrfs_free_path(path);
3620 return 0;
3621}
3622
Chris Mason1bbc6212015-04-06 12:46:08 -07003623/*
3624 * transaction commit does final block group cache writeback during a
3625 * critical section where nothing is allowed to change the FS. This is
3626 * required in order for the cache to actually match the block group,
3627 * but can introduce a lot of latency into the commit.
3628 *
3629 * So, btrfs_start_dirty_block_groups is here to kick off block group
3630 * cache IO. There's a chance we'll have to redo some of it if the
3631 * block group changes again during the commit, but it greatly reduces
3632 * the commit latency by getting rid of the easy block groups while
3633 * we're still allowing others to join the commit.
3634 */
3635int btrfs_start_dirty_block_groups(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003636 struct btrfs_fs_info *fs_info)
Chris Mason1bbc6212015-04-06 12:46:08 -07003637{
3638 struct btrfs_block_group_cache *cache;
3639 struct btrfs_transaction *cur_trans = trans->transaction;
3640 int ret = 0;
3641 int should_put;
3642 struct btrfs_path *path = NULL;
3643 LIST_HEAD(dirty);
3644 struct list_head *io = &cur_trans->io_bgs;
3645 int num_started = 0;
3646 int loops = 0;
3647
3648 spin_lock(&cur_trans->dirty_bgs_lock);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003649 if (list_empty(&cur_trans->dirty_bgs)) {
3650 spin_unlock(&cur_trans->dirty_bgs_lock);
3651 return 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003652 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003653 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Chris Mason1bbc6212015-04-06 12:46:08 -07003654 spin_unlock(&cur_trans->dirty_bgs_lock);
3655
3656again:
Chris Mason1bbc6212015-04-06 12:46:08 -07003657 /*
3658 * make sure all the block groups on our dirty list actually
3659 * exist
3660 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003661 btrfs_create_pending_block_groups(trans, fs_info);
Chris Mason1bbc6212015-04-06 12:46:08 -07003662
3663 if (!path) {
3664 path = btrfs_alloc_path();
3665 if (!path)
3666 return -ENOMEM;
3667 }
3668
Filipe Mananab58d1a92015-04-25 18:29:16 +01003669 /*
3670 * cache_write_mutex is here only to save us from balance or automatic
3671 * removal of empty block groups deleting this block group while we are
3672 * writing out the cache
3673 */
3674 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003675 while (!list_empty(&dirty)) {
3676 cache = list_first_entry(&dirty,
3677 struct btrfs_block_group_cache,
3678 dirty_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07003679 /*
3680 * this can happen if something re-dirties a block
3681 * group that is already under IO. Just wait for it to
3682 * finish and then do it all again
3683 */
3684 if (!list_empty(&cache->io_list)) {
3685 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003686 btrfs_wait_cache_io(trans, cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003687 btrfs_put_block_group(cache);
3688 }
3689
3690
3691 /*
3692 * btrfs_wait_cache_io uses the cache->dirty_list to decide
3693 * if it should update the cache_state. Don't delete
3694 * until after we wait.
3695 *
3696 * Since we're not running in the commit critical section
3697 * we need the dirty_bgs_lock to protect from update_block_group
3698 */
3699 spin_lock(&cur_trans->dirty_bgs_lock);
3700 list_del_init(&cache->dirty_list);
3701 spin_unlock(&cur_trans->dirty_bgs_lock);
3702
3703 should_put = 1;
3704
3705 cache_save_setup(cache, trans, path);
3706
3707 if (cache->disk_cache_state == BTRFS_DC_SETUP) {
3708 cache->io_ctl.inode = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003709 ret = btrfs_write_out_cache(fs_info, trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003710 cache, path);
Chris Mason1bbc6212015-04-06 12:46:08 -07003711 if (ret == 0 && cache->io_ctl.inode) {
3712 num_started++;
3713 should_put = 0;
3714
3715 /*
3716 * the cache_write_mutex is protecting
3717 * the io_list
3718 */
3719 list_add_tail(&cache->io_list, io);
3720 } else {
3721 /*
3722 * if we failed to write the cache, the
3723 * generation will be bad and life goes on
3724 */
3725 ret = 0;
3726 }
3727 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003728 if (!ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003729 ret = write_one_cache_group(trans, fs_info,
3730 path, cache);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003731 /*
3732 * Our block group might still be attached to the list
3733 * of new block groups in the transaction handle of some
3734 * other task (struct btrfs_trans_handle->new_bgs). This
3735 * means its block group item isn't yet in the extent
3736 * tree. If this happens ignore the error, as we will
3737 * try again later in the critical section of the
3738 * transaction commit.
3739 */
3740 if (ret == -ENOENT) {
3741 ret = 0;
3742 spin_lock(&cur_trans->dirty_bgs_lock);
3743 if (list_empty(&cache->dirty_list)) {
3744 list_add_tail(&cache->dirty_list,
3745 &cur_trans->dirty_bgs);
3746 btrfs_get_block_group(cache);
3747 }
3748 spin_unlock(&cur_trans->dirty_bgs_lock);
3749 } else if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04003750 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003751 }
3752 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003753
3754 /* if its not on the io list, we need to put the block group */
3755 if (should_put)
3756 btrfs_put_block_group(cache);
3757
3758 if (ret)
3759 break;
Filipe Mananab58d1a92015-04-25 18:29:16 +01003760
3761 /*
3762 * Avoid blocking other tasks for too long. It might even save
3763 * us from writing caches for block groups that are going to be
3764 * removed.
3765 */
3766 mutex_unlock(&trans->transaction->cache_write_mutex);
3767 mutex_lock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003768 }
Filipe Mananab58d1a92015-04-25 18:29:16 +01003769 mutex_unlock(&trans->transaction->cache_write_mutex);
Chris Mason1bbc6212015-04-06 12:46:08 -07003770
3771 /*
3772 * go through delayed refs for all the stuff we've just kicked off
3773 * and then loop back (just once)
3774 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003775 ret = btrfs_run_delayed_refs(trans, fs_info, 0);
Chris Mason1bbc6212015-04-06 12:46:08 -07003776 if (!ret && loops == 0) {
3777 loops++;
3778 spin_lock(&cur_trans->dirty_bgs_lock);
3779 list_splice_init(&cur_trans->dirty_bgs, &dirty);
Filipe Mananab58d1a92015-04-25 18:29:16 +01003780 /*
3781 * dirty_bgs_lock protects us from concurrent block group
3782 * deletes too (not just cache_write_mutex).
3783 */
3784 if (!list_empty(&dirty)) {
3785 spin_unlock(&cur_trans->dirty_bgs_lock);
3786 goto again;
3787 }
Chris Mason1bbc6212015-04-06 12:46:08 -07003788 spin_unlock(&cur_trans->dirty_bgs_lock);
Liu Boc79a1752016-07-20 17:44:12 -07003789 } else if (ret < 0) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003790 btrfs_cleanup_dirty_bgs(cur_trans, fs_info);
Chris Mason1bbc6212015-04-06 12:46:08 -07003791 }
3792
3793 btrfs_free_path(path);
3794 return ret;
3795}
3796
Chris Mason96b51792007-10-15 16:15:19 -04003797int btrfs_write_dirty_block_groups(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003798 struct btrfs_fs_info *fs_info)
Chris Mason9078a3e2007-04-26 16:46:15 -04003799{
Yan Zheng4a8c9a62009-07-22 10:07:05 -04003800 struct btrfs_block_group_cache *cache;
Josef Bacikce93ec52014-11-17 15:45:48 -05003801 struct btrfs_transaction *cur_trans = trans->transaction;
3802 int ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003803 int should_put;
Chris Mason9078a3e2007-04-26 16:46:15 -04003804 struct btrfs_path *path;
Chris Mason1bbc6212015-04-06 12:46:08 -07003805 struct list_head *io = &cur_trans->io_bgs;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003806 int num_started = 0;
Chris Mason9078a3e2007-04-26 16:46:15 -04003807
3808 path = btrfs_alloc_path();
3809 if (!path)
3810 return -ENOMEM;
3811
Josef Bacikce93ec52014-11-17 15:45:48 -05003812 /*
Filipe Mananae44081e2015-12-18 03:02:48 +00003813 * Even though we are in the critical section of the transaction commit,
3814 * we can still have concurrent tasks adding elements to this
3815 * transaction's list of dirty block groups. These tasks correspond to
3816 * endio free space workers started when writeback finishes for a
3817 * space cache, which run inode.c:btrfs_finish_ordered_io(), and can
3818 * allocate new block groups as a result of COWing nodes of the root
3819 * tree when updating the free space inode. The writeback for the space
3820 * caches is triggered by an earlier call to
3821 * btrfs_start_dirty_block_groups() and iterations of the following
3822 * loop.
3823 * Also we want to do the cache_save_setup first and then run the
Josef Bacikce93ec52014-11-17 15:45:48 -05003824 * delayed refs to make sure we have the best chance at doing this all
3825 * in one shot.
3826 */
Filipe Mananae44081e2015-12-18 03:02:48 +00003827 spin_lock(&cur_trans->dirty_bgs_lock);
Josef Bacikce93ec52014-11-17 15:45:48 -05003828 while (!list_empty(&cur_trans->dirty_bgs)) {
3829 cache = list_first_entry(&cur_trans->dirty_bgs,
3830 struct btrfs_block_group_cache,
3831 dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003832
3833 /*
3834 * this can happen if cache_save_setup re-dirties a block
3835 * group that is already under IO. Just wait for it to
3836 * finish and then do it all again
3837 */
3838 if (!list_empty(&cache->io_list)) {
Filipe Mananae44081e2015-12-18 03:02:48 +00003839 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003840 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003841 btrfs_wait_cache_io(trans, cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003842 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003843 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003844 }
3845
Chris Mason1bbc6212015-04-06 12:46:08 -07003846 /*
3847 * don't remove from the dirty list until after we've waited
3848 * on any pending IO
3849 */
Josef Bacikce93ec52014-11-17 15:45:48 -05003850 list_del_init(&cache->dirty_list);
Filipe Mananae44081e2015-12-18 03:02:48 +00003851 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003852 should_put = 1;
3853
Chris Mason1bbc6212015-04-06 12:46:08 -07003854 cache_save_setup(cache, trans, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003855
Josef Bacikce93ec52014-11-17 15:45:48 -05003856 if (!ret)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003857 ret = btrfs_run_delayed_refs(trans, fs_info,
3858 (unsigned long) -1);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003859
3860 if (!ret && cache->disk_cache_state == BTRFS_DC_SETUP) {
3861 cache->io_ctl.inode = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003862 ret = btrfs_write_out_cache(fs_info, trans,
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04003863 cache, path);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003864 if (ret == 0 && cache->io_ctl.inode) {
3865 num_started++;
3866 should_put = 0;
Chris Mason1bbc6212015-04-06 12:46:08 -07003867 list_add_tail(&cache->io_list, io);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003868 } else {
3869 /*
3870 * if we failed to write the cache, the
3871 * generation will be bad and life goes on
3872 */
3873 ret = 0;
3874 }
3875 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003876 if (!ret) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003877 ret = write_one_cache_group(trans, fs_info,
3878 path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003879 /*
3880 * One of the free space endio workers might have
3881 * created a new block group while updating a free space
3882 * cache's inode (at inode.c:btrfs_finish_ordered_io())
3883 * and hasn't released its transaction handle yet, in
3884 * which case the new block group is still attached to
3885 * its transaction handle and its creation has not
3886 * finished yet (no block group item in the extent tree
3887 * yet, etc). If this is the case, wait for all free
3888 * space endio workers to finish and retry. This is a
3889 * a very rare case so no need for a more efficient and
3890 * complex approach.
3891 */
3892 if (ret == -ENOENT) {
3893 wait_event(cur_trans->writer_wait,
3894 atomic_read(&cur_trans->num_writers) == 1);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003895 ret = write_one_cache_group(trans, fs_info,
3896 path, cache);
Filipe Manana2bc0bb52015-12-30 02:42:30 +00003897 }
Filipe Mananaff1f8252015-05-06 16:15:09 +01003898 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -04003899 btrfs_abort_transaction(trans, ret);
Filipe Mananaff1f8252015-05-06 16:15:09 +01003900 }
Chris Masonc9dc4c62015-04-04 17:14:42 -07003901
3902 /* if its not on the io list, we need to put the block group */
3903 if (should_put)
3904 btrfs_put_block_group(cache);
Filipe Mananae44081e2015-12-18 03:02:48 +00003905 spin_lock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003906 }
Filipe Mananae44081e2015-12-18 03:02:48 +00003907 spin_unlock(&cur_trans->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07003908
Chris Mason1bbc6212015-04-06 12:46:08 -07003909 while (!list_empty(io)) {
3910 cache = list_first_entry(io, struct btrfs_block_group_cache,
Chris Masonc9dc4c62015-04-04 17:14:42 -07003911 io_list);
3912 list_del_init(&cache->io_list);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003913 btrfs_wait_cache_io(trans, cache, path);
Josef Bacik0af3d002010-06-21 14:48:16 -04003914 btrfs_put_block_group(cache);
3915 }
3916
Chris Mason9078a3e2007-04-26 16:46:15 -04003917 btrfs_free_path(path);
Josef Bacikce93ec52014-11-17 15:45:48 -05003918 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -04003919}
3920
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003921int btrfs_extent_readonly(struct btrfs_fs_info *fs_info, u64 bytenr)
Yan Zhengd2fb3432008-12-11 16:30:39 -05003922{
3923 struct btrfs_block_group_cache *block_group;
3924 int readonly = 0;
3925
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003926 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003927 if (!block_group || block_group->ro)
3928 readonly = 1;
3929 if (block_group)
Chris Masonfa9c0d792009-04-03 09:47:43 -04003930 btrfs_put_block_group(block_group);
Yan Zhengd2fb3432008-12-11 16:30:39 -05003931 return readonly;
3932}
3933
Filipe Mananaf78c4362016-05-09 13:15:41 +01003934bool btrfs_inc_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3935{
3936 struct btrfs_block_group_cache *bg;
3937 bool ret = true;
3938
3939 bg = btrfs_lookup_block_group(fs_info, bytenr);
3940 if (!bg)
3941 return false;
3942
3943 spin_lock(&bg->lock);
3944 if (bg->ro)
3945 ret = false;
3946 else
3947 atomic_inc(&bg->nocow_writers);
3948 spin_unlock(&bg->lock);
3949
3950 /* no put on block group, done by btrfs_dec_nocow_writers */
3951 if (!ret)
3952 btrfs_put_block_group(bg);
3953
3954 return ret;
3955
3956}
3957
3958void btrfs_dec_nocow_writers(struct btrfs_fs_info *fs_info, u64 bytenr)
3959{
3960 struct btrfs_block_group_cache *bg;
3961
3962 bg = btrfs_lookup_block_group(fs_info, bytenr);
3963 ASSERT(bg);
3964 if (atomic_dec_and_test(&bg->nocow_writers))
3965 wake_up_atomic_t(&bg->nocow_writers);
3966 /*
3967 * Once for our lookup and once for the lookup done by a previous call
3968 * to btrfs_inc_nocow_writers()
3969 */
3970 btrfs_put_block_group(bg);
3971 btrfs_put_block_group(bg);
3972}
3973
3974static int btrfs_wait_nocow_writers_atomic_t(atomic_t *a)
3975{
3976 schedule();
3977 return 0;
3978}
3979
3980void btrfs_wait_nocow_writers(struct btrfs_block_group_cache *bg)
3981{
3982 wait_on_atomic_t(&bg->nocow_writers,
3983 btrfs_wait_nocow_writers_atomic_t,
3984 TASK_UNINTERRUPTIBLE);
3985}
3986
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04003987static const char *alloc_name(u64 flags)
3988{
3989 switch (flags) {
3990 case BTRFS_BLOCK_GROUP_METADATA|BTRFS_BLOCK_GROUP_DATA:
3991 return "mixed";
3992 case BTRFS_BLOCK_GROUP_METADATA:
3993 return "metadata";
3994 case BTRFS_BLOCK_GROUP_DATA:
3995 return "data";
3996 case BTRFS_BLOCK_GROUP_SYSTEM:
3997 return "system";
3998 default:
3999 WARN_ON(1);
4000 return "invalid-combination";
4001 };
4002}
4003
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03004004static int create_space_info(struct btrfs_fs_info *info, u64 flags,
4005 struct btrfs_space_info **new)
4006{
4007
4008 struct btrfs_space_info *space_info;
4009 int i;
4010 int ret;
4011
4012 space_info = kzalloc(sizeof(*space_info), GFP_NOFS);
4013 if (!space_info)
4014 return -ENOMEM;
4015
4016 ret = percpu_counter_init(&space_info->total_bytes_pinned, 0,
4017 GFP_KERNEL);
4018 if (ret) {
4019 kfree(space_info);
4020 return ret;
4021 }
4022
4023 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++)
4024 INIT_LIST_HEAD(&space_info->block_groups[i]);
4025 init_rwsem(&space_info->groups_sem);
4026 spin_lock_init(&space_info->lock);
4027 space_info->flags = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
4028 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
4029 init_waitqueue_head(&space_info->wait);
4030 INIT_LIST_HEAD(&space_info->ro_bgs);
4031 INIT_LIST_HEAD(&space_info->tickets);
4032 INIT_LIST_HEAD(&space_info->priority_tickets);
4033
4034 ret = kobject_init_and_add(&space_info->kobj, &space_info_ktype,
4035 info->space_info_kobj, "%s",
4036 alloc_name(space_info->flags));
4037 if (ret) {
4038 percpu_counter_destroy(&space_info->total_bytes_pinned);
4039 kfree(space_info);
4040 return ret;
4041 }
4042
4043 *new = space_info;
4044 list_add_rcu(&space_info->list, &info->space_info);
4045 if (flags & BTRFS_BLOCK_GROUP_DATA)
4046 info->data_sinfo = space_info;
4047
4048 return ret;
4049}
4050
Nikolay Borisovd2006e62017-05-22 09:35:50 +03004051static void update_space_info(struct btrfs_fs_info *info, u64 flags,
Chris Mason593060d2008-03-25 16:50:33 -04004052 u64 total_bytes, u64 bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -04004053 u64 bytes_readonly,
Chris Mason593060d2008-03-25 16:50:33 -04004054 struct btrfs_space_info **space_info)
4055{
4056 struct btrfs_space_info *found;
Yan, Zhengb742bb822010-05-16 10:46:24 -04004057 int factor;
4058
4059 if (flags & (BTRFS_BLOCK_GROUP_DUP | BTRFS_BLOCK_GROUP_RAID1 |
4060 BTRFS_BLOCK_GROUP_RAID10))
4061 factor = 2;
4062 else
4063 factor = 1;
Chris Mason593060d2008-03-25 16:50:33 -04004064
4065 found = __find_space_info(info, flags);
Nikolay Borisovd2006e62017-05-22 09:35:50 +03004066 ASSERT(found);
4067 spin_lock(&found->lock);
4068 found->total_bytes += total_bytes;
4069 found->disk_total += total_bytes * factor;
4070 found->bytes_used += bytes_used;
4071 found->disk_used += bytes_used * factor;
4072 found->bytes_readonly += bytes_readonly;
4073 if (total_bytes > 0)
4074 found->full = 0;
4075 space_info_add_new_bytes(info, found, total_bytes -
4076 bytes_used - bytes_readonly);
4077 spin_unlock(&found->lock);
4078 *space_info = found;
Chris Mason593060d2008-03-25 16:50:33 -04004079}
4080
Chris Mason8790d502008-04-03 16:29:03 -04004081static void set_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
4082{
Ilya Dryomov899c81e2012-03-27 17:09:16 +03004083 u64 extra_flags = chunk_to_extended(flags) &
4084 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004085
Miao Xiede98ced2013-01-29 10:13:12 +00004086 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004087 if (flags & BTRFS_BLOCK_GROUP_DATA)
4088 fs_info->avail_data_alloc_bits |= extra_flags;
4089 if (flags & BTRFS_BLOCK_GROUP_METADATA)
4090 fs_info->avail_metadata_alloc_bits |= extra_flags;
4091 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
4092 fs_info->avail_system_alloc_bits |= extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004093 write_sequnlock(&fs_info->profiles_lock);
Chris Mason8790d502008-04-03 16:29:03 -04004094}
Chris Mason593060d2008-03-25 16:50:33 -04004095
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004096/*
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004097 * returns target flags in extended format or 0 if restripe for this
4098 * chunk_type is not in progress
Ilya Dryomovc6664b42012-04-12 16:03:56 -04004099 *
4100 * should be called with either volume_mutex or balance_lock held
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004101 */
4102static u64 get_restripe_target(struct btrfs_fs_info *fs_info, u64 flags)
4103{
4104 struct btrfs_balance_control *bctl = fs_info->balance_ctl;
4105 u64 target = 0;
4106
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004107 if (!bctl)
4108 return 0;
4109
4110 if (flags & BTRFS_BLOCK_GROUP_DATA &&
4111 bctl->data.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4112 target = BTRFS_BLOCK_GROUP_DATA | bctl->data.target;
4113 } else if (flags & BTRFS_BLOCK_GROUP_SYSTEM &&
4114 bctl->sys.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4115 target = BTRFS_BLOCK_GROUP_SYSTEM | bctl->sys.target;
4116 } else if (flags & BTRFS_BLOCK_GROUP_METADATA &&
4117 bctl->meta.flags & BTRFS_BALANCE_ARGS_CONVERT) {
4118 target = BTRFS_BLOCK_GROUP_METADATA | bctl->meta.target;
4119 }
4120
4121 return target;
4122}
4123
4124/*
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004125 * @flags: available profiles in extended format (see ctree.h)
4126 *
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004127 * Returns reduced profile in chunk format. If profile changing is in
4128 * progress (either running or paused) picks the target profile (if it's
4129 * already available), otherwise falls back to plain reducing.
Ilya Dryomova46d11a2012-01-16 22:04:47 +02004130 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004131static u64 btrfs_reduce_alloc_profile(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04004132{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004133 u64 num_devices = fs_info->fs_devices->rw_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004134 u64 target;
Zhao Lei9c170b22015-09-15 21:08:08 +08004135 u64 raid_type;
4136 u64 allowed = 0;
Chris Masona061fc82008-05-07 11:43:44 -04004137
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004138 /*
4139 * see if restripe for this chunk_type is in progress, if so
4140 * try to reduce to the target profile
4141 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004142 spin_lock(&fs_info->balance_lock);
4143 target = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004144 if (target) {
4145 /* pick target profile only if it's already available */
4146 if ((flags & target) & BTRFS_EXTENDED_PROFILE_MASK) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004147 spin_unlock(&fs_info->balance_lock);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03004148 return extended_to_chunk(target);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004149 }
4150 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004151 spin_unlock(&fs_info->balance_lock);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02004152
David Woodhouse53b381b2013-01-29 18:40:14 -05004153 /* First, mask out the RAID levels which aren't possible */
Zhao Lei9c170b22015-09-15 21:08:08 +08004154 for (raid_type = 0; raid_type < BTRFS_NR_RAID_TYPES; raid_type++) {
4155 if (num_devices >= btrfs_raid_array[raid_type].devs_min)
4156 allowed |= btrfs_raid_group[raid_type];
4157 }
4158 allowed &= flags;
Chris Masona061fc82008-05-07 11:43:44 -04004159
Zhao Lei9c170b22015-09-15 21:08:08 +08004160 if (allowed & BTRFS_BLOCK_GROUP_RAID6)
4161 allowed = BTRFS_BLOCK_GROUP_RAID6;
4162 else if (allowed & BTRFS_BLOCK_GROUP_RAID5)
4163 allowed = BTRFS_BLOCK_GROUP_RAID5;
4164 else if (allowed & BTRFS_BLOCK_GROUP_RAID10)
4165 allowed = BTRFS_BLOCK_GROUP_RAID10;
4166 else if (allowed & BTRFS_BLOCK_GROUP_RAID1)
4167 allowed = BTRFS_BLOCK_GROUP_RAID1;
4168 else if (allowed & BTRFS_BLOCK_GROUP_RAID0)
4169 allowed = BTRFS_BLOCK_GROUP_RAID0;
Chris Masonec44a352008-04-28 15:29:52 -04004170
Zhao Lei9c170b22015-09-15 21:08:08 +08004171 flags &= ~BTRFS_BLOCK_GROUP_PROFILE_MASK;
Chris Masonec44a352008-04-28 15:29:52 -04004172
Zhao Lei9c170b22015-09-15 21:08:08 +08004173 return extended_to_chunk(flags | allowed);
Chris Masonec44a352008-04-28 15:29:52 -04004174}
4175
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004176static u64 get_alloc_profile(struct btrfs_fs_info *fs_info, u64 orig_flags)
Josef Bacik6a632092009-02-20 11:00:09 -05004177{
Miao Xiede98ced2013-01-29 10:13:12 +00004178 unsigned seq;
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004179 u64 flags;
Miao Xiede98ced2013-01-29 10:13:12 +00004180
4181 do {
Filipe Mananaf8213bd2014-04-24 15:15:29 +01004182 flags = orig_flags;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004183 seq = read_seqbegin(&fs_info->profiles_lock);
Miao Xiede98ced2013-01-29 10:13:12 +00004184
4185 if (flags & BTRFS_BLOCK_GROUP_DATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004186 flags |= fs_info->avail_data_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004187 else if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004188 flags |= fs_info->avail_system_alloc_bits;
Miao Xiede98ced2013-01-29 10:13:12 +00004189 else if (flags & BTRFS_BLOCK_GROUP_METADATA)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004190 flags |= fs_info->avail_metadata_alloc_bits;
4191 } while (read_seqretry(&fs_info->profiles_lock, seq));
Ilya Dryomov6fef8df2012-01-16 22:04:47 +02004192
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004193 return btrfs_reduce_alloc_profile(fs_info, flags);
Yan, Zhengb742bb822010-05-16 10:46:24 -04004194}
Josef Bacik6a632092009-02-20 11:00:09 -05004195
Jeff Mahoney1b868262017-05-17 11:38:35 -04004196static u64 get_alloc_profile_by_root(struct btrfs_root *root, int data)
Yan, Zhengb742bb822010-05-16 10:46:24 -04004197{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004198 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengb742bb822010-05-16 10:46:24 -04004199 u64 flags;
David Woodhouse53b381b2013-01-29 18:40:14 -05004200 u64 ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004201
Yan, Zhengb742bb822010-05-16 10:46:24 -04004202 if (data)
4203 flags = BTRFS_BLOCK_GROUP_DATA;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004204 else if (root == fs_info->chunk_root)
Yan, Zhengb742bb822010-05-16 10:46:24 -04004205 flags = BTRFS_BLOCK_GROUP_SYSTEM;
4206 else
4207 flags = BTRFS_BLOCK_GROUP_METADATA;
4208
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004209 ret = get_alloc_profile(fs_info, flags);
David Woodhouse53b381b2013-01-29 18:40:14 -05004210 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004211}
4212
Jeff Mahoney1b868262017-05-17 11:38:35 -04004213u64 btrfs_data_alloc_profile(struct btrfs_fs_info *fs_info)
4214{
4215 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_DATA);
4216}
4217
4218u64 btrfs_metadata_alloc_profile(struct btrfs_fs_info *fs_info)
4219{
4220 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_METADATA);
4221}
4222
4223u64 btrfs_system_alloc_profile(struct btrfs_fs_info *fs_info)
4224{
4225 return get_alloc_profile(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
4226}
4227
Liu Bo41361352017-02-13 15:42:21 -08004228static u64 btrfs_space_info_used(struct btrfs_space_info *s_info,
4229 bool may_use_included)
4230{
4231 ASSERT(s_info);
4232 return s_info->bytes_used + s_info->bytes_reserved +
4233 s_info->bytes_pinned + s_info->bytes_readonly +
4234 (may_use_included ? s_info->bytes_may_use : 0);
4235}
4236
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004237int btrfs_alloc_data_chunk_ondemand(struct btrfs_inode *inode, u64 bytes)
Josef Bacik6a632092009-02-20 11:00:09 -05004238{
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004239 struct btrfs_root *root = inode->root;
Li Zefanb4d7c3c2012-07-09 20:21:07 -06004240 struct btrfs_fs_info *fs_info = root->fs_info;
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004241 struct btrfs_space_info *data_sinfo = fs_info->data_sinfo;
Josef Bacikab6e24102010-03-19 14:38:13 +00004242 u64 used;
Zhao Lei94b947b2015-02-14 13:23:45 +08004243 int ret = 0;
Zhao Leic99f1b02015-03-02 19:32:20 +08004244 int need_commit = 2;
4245 int have_pinned_space;
Josef Bacik6a632092009-02-20 11:00:09 -05004246
4247 /* make sure bytes are sectorsize aligned */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004248 bytes = ALIGN(bytes, fs_info->sectorsize);
Josef Bacik6a632092009-02-20 11:00:09 -05004249
Miao Xie9dced182013-10-25 17:33:36 +08004250 if (btrfs_is_free_space_inode(inode)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004251 need_commit = 0;
Miao Xie9dced182013-10-25 17:33:36 +08004252 ASSERT(current->journal_info);
Josef Bacik0af3d002010-06-21 14:48:16 -04004253 }
4254
Josef Bacik6a632092009-02-20 11:00:09 -05004255again:
4256 /* make sure we have enough space to handle the data first */
4257 spin_lock(&data_sinfo->lock);
Liu Bo41361352017-02-13 15:42:21 -08004258 used = btrfs_space_info_used(data_sinfo, true);
Josef Bacikab6e24102010-03-19 14:38:13 +00004259
4260 if (used + bytes > data_sinfo->total_bytes) {
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004261 struct btrfs_trans_handle *trans;
4262
Josef Bacik6a632092009-02-20 11:00:09 -05004263 /*
4264 * if we don't have enough free bytes in this space then we need
4265 * to alloc a new chunk.
4266 */
Zhao Leib9fd47c2015-02-09 14:40:20 +08004267 if (!data_sinfo->full) {
Josef Bacik6a632092009-02-20 11:00:09 -05004268 u64 alloc_target;
Josef Bacik6a632092009-02-20 11:00:09 -05004269
Chris Mason0e4f8f82011-04-15 16:05:44 -04004270 data_sinfo->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik6a632092009-02-20 11:00:09 -05004271 spin_unlock(&data_sinfo->lock);
Nikolay Borisov1174cad2017-07-11 13:47:50 +03004272
Jeff Mahoney1b868262017-05-17 11:38:35 -04004273 alloc_target = btrfs_data_alloc_profile(fs_info);
Miao Xie9dced182013-10-25 17:33:36 +08004274 /*
4275 * It is ugly that we don't call nolock join
4276 * transaction for the free space inode case here.
4277 * But it is safe because we only do the data space
4278 * reservation for the free space cache in the
4279 * transaction context, the common join transaction
4280 * just increase the counter of the current transaction
4281 * handler, doesn't try to acquire the trans_lock of
4282 * the fs.
4283 */
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004284 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004285 if (IS_ERR(trans))
4286 return PTR_ERR(trans);
Josef Bacik6a632092009-02-20 11:00:09 -05004287
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004288 ret = do_chunk_alloc(trans, fs_info, alloc_target,
Chris Mason0e4f8f82011-04-15 16:05:44 -04004289 CHUNK_ALLOC_NO_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004290 btrfs_end_transaction(trans);
Miao Xied52a5b52011-01-05 10:07:18 +00004291 if (ret < 0) {
4292 if (ret != -ENOSPC)
4293 return ret;
Zhao Leic99f1b02015-03-02 19:32:20 +08004294 else {
4295 have_pinned_space = 1;
Miao Xied52a5b52011-01-05 10:07:18 +00004296 goto commit_trans;
Zhao Leic99f1b02015-03-02 19:32:20 +08004297 }
Miao Xied52a5b52011-01-05 10:07:18 +00004298 }
Chris Mason33b4d472009-09-22 14:45:50 -04004299
Josef Bacik6a632092009-02-20 11:00:09 -05004300 goto again;
4301 }
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004302
4303 /*
Josef Bacikb150a4f2013-06-19 15:00:04 -04004304 * If we don't have enough pinned space to deal with this
Zhao Lei94b947b2015-02-14 13:23:45 +08004305 * allocation, and no removed chunk in current transaction,
4306 * don't bother committing the transaction.
Josef Bacikf2bb8f52011-05-25 13:10:16 -04004307 */
Zhao Leic99f1b02015-03-02 19:32:20 +08004308 have_pinned_space = percpu_counter_compare(
4309 &data_sinfo->total_bytes_pinned,
4310 used + bytes - data_sinfo->total_bytes);
Josef Bacik6a632092009-02-20 11:00:09 -05004311 spin_unlock(&data_sinfo->lock);
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004312
4313 /* commit the current transaction and try again */
Miao Xied52a5b52011-01-05 10:07:18 +00004314commit_trans:
Zhao Leic99f1b02015-03-02 19:32:20 +08004315 if (need_commit &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004316 !atomic_read(&fs_info->open_ioctl_trans)) {
Zhao Leic99f1b02015-03-02 19:32:20 +08004317 need_commit--;
Josef Bacikb150a4f2013-06-19 15:00:04 -04004318
Zhao Leie1746e82015-12-01 18:39:40 +08004319 if (need_commit > 0) {
4320 btrfs_start_delalloc_roots(fs_info, 0, -1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004321 btrfs_wait_ordered_roots(fs_info, U64_MAX, 0,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004322 (u64)-1);
Zhao Leie1746e82015-12-01 18:39:40 +08004323 }
Zhao Lei9a4e7272015-04-09 12:34:43 +08004324
Josef Bacik7a7eaa42011-04-13 12:54:33 -04004325 trans = btrfs_join_transaction(root);
Yan, Zhenga22285a2010-05-16 10:48:46 -04004326 if (IS_ERR(trans))
4327 return PTR_ERR(trans);
Zhao Leic99f1b02015-03-02 19:32:20 +08004328 if (have_pinned_space >= 0 ||
Josef Bacik3204d332015-09-24 10:46:10 -04004329 test_bit(BTRFS_TRANS_HAVE_FREE_BGS,
4330 &trans->transaction->flags) ||
Zhao Leic99f1b02015-03-02 19:32:20 +08004331 need_commit > 0) {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004332 ret = btrfs_commit_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004333 if (ret)
4334 return ret;
Zhao Leid7c15172015-02-26 10:49:20 +08004335 /*
Filipe Mananac2d6cb12016-01-15 11:05:12 +00004336 * The cleaner kthread might still be doing iput
4337 * operations. Wait for it to finish so that
4338 * more space is released.
Zhao Leid7c15172015-02-26 10:49:20 +08004339 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004340 mutex_lock(&fs_info->cleaner_delayed_iput_mutex);
4341 mutex_unlock(&fs_info->cleaner_delayed_iput_mutex);
Zhao Lei94b947b2015-02-14 13:23:45 +08004342 goto again;
4343 } else {
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004344 btrfs_end_transaction(trans);
Zhao Lei94b947b2015-02-14 13:23:45 +08004345 }
Josef Bacik4e06bdd2009-02-20 10:59:53 -05004346 }
4347
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004348 trace_btrfs_space_reservation(fs_info,
Jeff Mahoneycab45e22013-10-16 16:27:01 -04004349 "space_info:enospc",
4350 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004351 return -ENOSPC;
4352 }
4353 data_sinfo->bytes_may_use += bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004354 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04004355 data_sinfo->flags, bytes, 1);
Josef Bacik6a632092009-02-20 11:00:09 -05004356 spin_unlock(&data_sinfo->lock);
4357
Dongsheng Yang237c0e92014-12-29 06:23:05 -05004358 return ret;
Josef Bacik6a632092009-02-20 11:00:09 -05004359}
4360
Qu Wenruo364ecf32017-02-27 15:10:38 +08004361int btrfs_check_data_free_space(struct inode *inode,
4362 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004363{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004364 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004365 int ret;
4366
4367 /* align the range */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004368 len = round_up(start + len, fs_info->sectorsize) -
4369 round_down(start, fs_info->sectorsize);
4370 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004371
Nikolay Borisov04f4f912017-02-20 13:50:36 +02004372 ret = btrfs_alloc_data_chunk_ondemand(BTRFS_I(inode), len);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004373 if (ret < 0)
4374 return ret;
4375
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004376 /* Use new btrfs_qgroup_reserve_data to reserve precious data space. */
Qu Wenruo364ecf32017-02-27 15:10:38 +08004377 ret = btrfs_qgroup_reserve_data(inode, reserved, start, len);
Qu Wenruo7bc329c2017-02-27 15:10:36 +08004378 if (ret < 0)
Josef Bacik1e5ec2e2016-09-15 14:57:48 -04004379 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruo364ecf32017-02-27 15:10:38 +08004380 else
4381 ret = 0;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004382 return ret;
4383}
4384
4385/*
Qu Wenruo4ceff072015-09-08 17:22:42 +08004386 * Called if we need to clear a data reservation for this inode
4387 * Normally in a error case.
4388 *
Qu Wenruo51773be2015-10-08 18:19:37 +08004389 * This one will *NOT* use accurate qgroup reserved space API, just for case
4390 * which we can't sleep and is sure it won't affect qgroup reserved space.
4391 * Like clear_bit_hook().
Qu Wenruo4ceff072015-09-08 17:22:42 +08004392 */
Qu Wenruo51773be2015-10-08 18:19:37 +08004393void btrfs_free_reserved_data_space_noquota(struct inode *inode, u64 start,
4394 u64 len)
Qu Wenruo4ceff072015-09-08 17:22:42 +08004395{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004396 struct btrfs_fs_info *fs_info = btrfs_sb(inode->i_sb);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004397 struct btrfs_space_info *data_sinfo;
4398
4399 /* Make sure the range is aligned to sectorsize */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004400 len = round_up(start + len, fs_info->sectorsize) -
4401 round_down(start, fs_info->sectorsize);
4402 start = round_down(start, fs_info->sectorsize);
Qu Wenruo4ceff072015-09-08 17:22:42 +08004403
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004404 data_sinfo = fs_info->data_sinfo;
Qu Wenruo4ceff072015-09-08 17:22:42 +08004405 spin_lock(&data_sinfo->lock);
4406 if (WARN_ON(data_sinfo->bytes_may_use < len))
4407 data_sinfo->bytes_may_use = 0;
4408 else
4409 data_sinfo->bytes_may_use -= len;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004410 trace_btrfs_space_reservation(fs_info, "space_info",
Qu Wenruo4ceff072015-09-08 17:22:42 +08004411 data_sinfo->flags, len, 0);
4412 spin_unlock(&data_sinfo->lock);
4413}
4414
Qu Wenruo51773be2015-10-08 18:19:37 +08004415/*
4416 * Called if we need to clear a data reservation for this inode
4417 * Normally in a error case.
4418 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04004419 * This one will handle the per-inode data rsv map for accurate reserved
Qu Wenruo51773be2015-10-08 18:19:37 +08004420 * space framework.
4421 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08004422void btrfs_free_reserved_data_space(struct inode *inode,
4423 struct extent_changeset *reserved, u64 start, u64 len)
Qu Wenruo51773be2015-10-08 18:19:37 +08004424{
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004425 struct btrfs_root *root = BTRFS_I(inode)->root;
4426
4427 /* Make sure the range is aligned to sectorsize */
Jeff Mahoneyda170662016-06-15 09:22:56 -04004428 len = round_up(start + len, root->fs_info->sectorsize) -
4429 round_down(start, root->fs_info->sectorsize);
4430 start = round_down(start, root->fs_info->sectorsize);
Jeff Mahoney0c476a52016-11-18 21:52:40 -05004431
Qu Wenruo51773be2015-10-08 18:19:37 +08004432 btrfs_free_reserved_data_space_noquota(inode, start, len);
Qu Wenruobc42bda2017-02-27 15:10:39 +08004433 btrfs_qgroup_free_data(inode, reserved, start, len);
Qu Wenruo51773be2015-10-08 18:19:37 +08004434}
4435
Josef Bacik97e728d2009-04-21 17:40:57 -04004436static void force_metadata_allocation(struct btrfs_fs_info *info)
4437{
4438 struct list_head *head = &info->space_info;
4439 struct btrfs_space_info *found;
4440
4441 rcu_read_lock();
4442 list_for_each_entry_rcu(found, head, list) {
4443 if (found->flags & BTRFS_BLOCK_GROUP_METADATA)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004444 found->force_alloc = CHUNK_ALLOC_FORCE;
Josef Bacik97e728d2009-04-21 17:40:57 -04004445 }
4446 rcu_read_unlock();
4447}
4448
Miao Xie3c76cd82013-04-25 10:12:38 +00004449static inline u64 calc_global_rsv_need_space(struct btrfs_block_rsv *global)
4450{
4451 return (global->size << 1);
4452}
4453
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004454static int should_alloc_chunk(struct btrfs_fs_info *fs_info,
Josef Bacik698d0082012-09-12 14:08:47 -04004455 struct btrfs_space_info *sinfo, int force)
Yan, Zheng424499d2010-05-16 10:46:25 -04004456{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004457 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004458 u64 bytes_used = btrfs_space_info_used(sinfo, false);
Chris Masone5bc2452010-10-26 13:37:56 -04004459 u64 thresh;
Yan, Zheng424499d2010-05-16 10:46:25 -04004460
Chris Mason0e4f8f82011-04-15 16:05:44 -04004461 if (force == CHUNK_ALLOC_FORCE)
4462 return 1;
4463
4464 /*
Josef Bacikfb25e912011-07-26 17:00:46 -04004465 * We need to take into account the global rsv because for all intents
4466 * and purposes it's used space. Don't worry about locking the
4467 * global_rsv, it doesn't change except when the transaction commits.
4468 */
Josef Bacik54338b52012-08-14 16:20:52 -04004469 if (sinfo->flags & BTRFS_BLOCK_GROUP_METADATA)
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004470 bytes_used += calc_global_rsv_need_space(global_rsv);
Josef Bacikfb25e912011-07-26 17:00:46 -04004471
4472 /*
Chris Mason0e4f8f82011-04-15 16:05:44 -04004473 * in limited mode, we want to have some free space up to
4474 * about 1% of the FS size.
4475 */
4476 if (force == CHUNK_ALLOC_LIMITED) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004477 thresh = btrfs_super_total_bytes(fs_info->super_copy);
Byongho Leeee221842015-12-15 01:42:10 +09004478 thresh = max_t(u64, SZ_64M, div_factor_fine(thresh, 1));
Chris Mason0e4f8f82011-04-15 16:05:44 -04004479
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004480 if (sinfo->total_bytes - bytes_used < thresh)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004481 return 1;
4482 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004483
Nikolay Borisov8d8aafe2017-06-22 09:51:48 -04004484 if (bytes_used + SZ_2M < div_factor(sinfo->total_bytes, 8))
Josef Bacik14ed0ca2010-10-15 15:23:48 -04004485 return 0;
Yan, Zheng424499d2010-05-16 10:46:25 -04004486 return 1;
4487}
4488
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004489static u64 get_profile_num_devs(struct btrfs_fs_info *fs_info, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004490{
4491 u64 num_dev;
4492
David Woodhouse53b381b2013-01-29 18:40:14 -05004493 if (type & (BTRFS_BLOCK_GROUP_RAID10 |
4494 BTRFS_BLOCK_GROUP_RAID0 |
4495 BTRFS_BLOCK_GROUP_RAID5 |
4496 BTRFS_BLOCK_GROUP_RAID6))
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004497 num_dev = fs_info->fs_devices->rw_devices;
Liu Bo15d1ff82012-03-29 09:57:44 -04004498 else if (type & BTRFS_BLOCK_GROUP_RAID1)
4499 num_dev = 2;
4500 else
4501 num_dev = 1; /* DUP or single */
4502
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004503 return num_dev;
Liu Bo15d1ff82012-03-29 09:57:44 -04004504}
4505
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004506/*
4507 * If @is_allocation is true, reserve space in the system space info necessary
4508 * for allocating a chunk, otherwise if it's false, reserve space necessary for
4509 * removing a chunk.
4510 */
4511void check_system_chunk(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004512 struct btrfs_fs_info *fs_info, u64 type)
Liu Bo15d1ff82012-03-29 09:57:44 -04004513{
4514 struct btrfs_space_info *info;
4515 u64 left;
4516 u64 thresh;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004517 int ret = 0;
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004518 u64 num_devs;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004519
4520 /*
4521 * Needed because we can end up allocating a system chunk and for an
4522 * atomic and race free space reservation in the chunk block reserve.
4523 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004524 ASSERT(mutex_is_locked(&fs_info->chunk_mutex));
Liu Bo15d1ff82012-03-29 09:57:44 -04004525
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004526 info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
Liu Bo15d1ff82012-03-29 09:57:44 -04004527 spin_lock(&info->lock);
Liu Bo41361352017-02-13 15:42:21 -08004528 left = info->total_bytes - btrfs_space_info_used(info, true);
Liu Bo15d1ff82012-03-29 09:57:44 -04004529 spin_unlock(&info->lock);
4530
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004531 num_devs = get_profile_num_devs(fs_info, type);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004532
4533 /* num_devs device items to update and 1 chunk item to add or remove */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004534 thresh = btrfs_calc_trunc_metadata_size(fs_info, num_devs) +
4535 btrfs_calc_trans_metadata_size(fs_info, 1);
Filipe Manana39c2d7f2015-05-20 14:01:55 +01004536
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004537 if (left < thresh && btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
4538 btrfs_info(fs_info, "left=%llu, need=%llu, flags=%llu",
4539 left, thresh, type);
4540 dump_space_info(fs_info, info, 0, 0);
Liu Bo15d1ff82012-03-29 09:57:44 -04004541 }
4542
4543 if (left < thresh) {
Jeff Mahoney1b868262017-05-17 11:38:35 -04004544 u64 flags = btrfs_system_alloc_profile(fs_info);
Liu Bo15d1ff82012-03-29 09:57:44 -04004545
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004546 /*
4547 * Ignore failure to create system chunk. We might end up not
4548 * needing it, as we might not need to COW all nodes/leafs from
4549 * the paths we visit in the chunk tree (they were already COWed
4550 * or created in the current transaction for example).
4551 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004552 ret = btrfs_alloc_chunk(trans, fs_info, flags);
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004553 }
4554
4555 if (!ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004556 ret = btrfs_block_rsv_add(fs_info->chunk_root,
4557 &fs_info->chunk_block_rsv,
Filipe Manana4fbcdf62015-05-20 14:01:54 +01004558 thresh, BTRFS_RESERVE_NO_FLUSH);
4559 if (!ret)
4560 trans->chunk_bytes_reserved += thresh;
Liu Bo15d1ff82012-03-29 09:57:44 -04004561 }
4562}
4563
Liu Bo28b737f2016-07-29 11:09:50 -07004564/*
4565 * If force is CHUNK_ALLOC_FORCE:
4566 * - return 1 if it successfully allocates a chunk,
4567 * - return errors including -ENOSPC otherwise.
4568 * If force is NOT CHUNK_ALLOC_FORCE:
4569 * - return 0 if it doesn't need to allocate a new chunk,
4570 * - return 1 if it successfully allocates a chunk,
4571 * - return errors including -ENOSPC otherwise.
4572 */
Chris Mason6324fbf2008-03-24 15:01:59 -04004573static int do_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004574 struct btrfs_fs_info *fs_info, u64 flags, int force)
Chris Mason6324fbf2008-03-24 15:01:59 -04004575{
4576 struct btrfs_space_info *space_info;
Josef Bacik6d741192011-04-11 20:20:11 -04004577 int wait_for_alloc = 0;
Yan Zhengc146afa2008-11-12 14:34:12 -05004578 int ret = 0;
4579
Josef Bacikc6b305a2012-12-18 09:16:16 -05004580 /* Don't re-enter if we're already allocating a chunk */
4581 if (trans->allocating_chunk)
4582 return -ENOSPC;
4583
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004584 space_info = __find_space_info(fs_info, flags);
Chris Mason593060d2008-03-25 16:50:33 -04004585 if (!space_info) {
Nikolay Borisov2be12ef2017-05-22 09:35:49 +03004586 ret = create_space_info(fs_info, flags, &space_info);
4587 if (ret)
4588 return ret;
Chris Mason593060d2008-03-25 16:50:33 -04004589 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004590
Josef Bacik6d741192011-04-11 20:20:11 -04004591again:
Josef Bacik25179202008-10-29 14:49:05 -04004592 spin_lock(&space_info->lock);
Miao Xie9e622d62012-01-26 15:01:12 -05004593 if (force < space_info->force_alloc)
Chris Mason0e4f8f82011-04-15 16:05:44 -04004594 force = space_info->force_alloc;
Josef Bacik25179202008-10-29 14:49:05 -04004595 if (space_info->full) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004596 if (should_alloc_chunk(fs_info, space_info, force))
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004597 ret = -ENOSPC;
4598 else
4599 ret = 0;
Josef Bacik25179202008-10-29 14:49:05 -04004600 spin_unlock(&space_info->lock);
Filipe David Borba Manana09fb99a2013-08-05 16:25:12 +01004601 return ret;
Josef Bacik25179202008-10-29 14:49:05 -04004602 }
Chris Mason6324fbf2008-03-24 15:01:59 -04004603
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004604 if (!should_alloc_chunk(fs_info, space_info, force)) {
Josef Bacik25179202008-10-29 14:49:05 -04004605 spin_unlock(&space_info->lock);
Josef Bacik6d741192011-04-11 20:20:11 -04004606 return 0;
4607 } else if (space_info->chunk_alloc) {
4608 wait_for_alloc = 1;
4609 } else {
4610 space_info->chunk_alloc = 1;
Josef Bacik25179202008-10-29 14:49:05 -04004611 }
Chris Mason0e4f8f82011-04-15 16:05:44 -04004612
Josef Bacik25179202008-10-29 14:49:05 -04004613 spin_unlock(&space_info->lock);
4614
Josef Bacik6d741192011-04-11 20:20:11 -04004615 mutex_lock(&fs_info->chunk_mutex);
4616
4617 /*
4618 * The chunk_mutex is held throughout the entirety of a chunk
4619 * allocation, so once we've acquired the chunk_mutex we know that the
4620 * other guy is done and we need to recheck and see if we should
4621 * allocate.
4622 */
4623 if (wait_for_alloc) {
4624 mutex_unlock(&fs_info->chunk_mutex);
4625 wait_for_alloc = 0;
4626 goto again;
4627 }
4628
Josef Bacikc6b305a2012-12-18 09:16:16 -05004629 trans->allocating_chunk = true;
4630
Josef Bacik97e728d2009-04-21 17:40:57 -04004631 /*
Josef Bacik67377732010-09-16 16:19:09 -04004632 * If we have mixed data/metadata chunks we want to make sure we keep
4633 * allocating mixed chunks instead of individual chunks.
4634 */
4635 if (btrfs_mixed_space_info(space_info))
4636 flags |= (BTRFS_BLOCK_GROUP_DATA | BTRFS_BLOCK_GROUP_METADATA);
4637
4638 /*
Josef Bacik97e728d2009-04-21 17:40:57 -04004639 * if we're doing a data chunk, go ahead and make sure that
4640 * we keep a reasonable number of metadata chunks allocated in the
4641 * FS as well.
4642 */
Josef Bacik9ed74f22009-09-11 16:12:44 -04004643 if (flags & BTRFS_BLOCK_GROUP_DATA && fs_info->metadata_ratio) {
Josef Bacik97e728d2009-04-21 17:40:57 -04004644 fs_info->data_chunk_allocations++;
4645 if (!(fs_info->data_chunk_allocations %
4646 fs_info->metadata_ratio))
4647 force_metadata_allocation(fs_info);
4648 }
4649
Liu Bo15d1ff82012-03-29 09:57:44 -04004650 /*
4651 * Check if we have enough space in SYSTEM chunk because we may need
4652 * to update devices.
4653 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004654 check_system_chunk(trans, fs_info, flags);
Liu Bo15d1ff82012-03-29 09:57:44 -04004655
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004656 ret = btrfs_alloc_chunk(trans, fs_info, flags);
Josef Bacikc6b305a2012-12-18 09:16:16 -05004657 trans->allocating_chunk = false;
Mark Fasheh92b8e8972011-07-12 10:57:59 -07004658
Josef Bacik9ed74f22009-09-11 16:12:44 -04004659 spin_lock(&space_info->lock);
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004660 if (ret < 0 && ret != -ENOSPC)
4661 goto out;
Chris Masond3977122009-01-05 21:25:51 -05004662 if (ret)
Chris Mason6324fbf2008-03-24 15:01:59 -04004663 space_info->full = 1;
Yan, Zheng424499d2010-05-16 10:46:25 -04004664 else
4665 ret = 1;
Josef Bacik6d741192011-04-11 20:20:11 -04004666
Chris Mason0e4f8f82011-04-15 16:05:44 -04004667 space_info->force_alloc = CHUNK_ALLOC_NO_FORCE;
Alexandre Olivaa81cb9a2013-02-21 21:15:14 +00004668out:
Josef Bacik6d741192011-04-11 20:20:11 -04004669 space_info->chunk_alloc = 0;
Josef Bacik9ed74f22009-09-11 16:12:44 -04004670 spin_unlock(&space_info->lock);
Dan Carpentera25c75d2012-04-18 09:59:29 +03004671 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana00d80e32015-07-20 14:56:20 +01004672 /*
4673 * When we allocate a new chunk we reserve space in the chunk block
4674 * reserve to make sure we can COW nodes/leafs in the chunk tree or
4675 * add new nodes/leafs to it if we end up needing to do it when
4676 * inserting the chunk item and updating device items as part of the
4677 * second phase of chunk allocation, performed by
4678 * btrfs_finish_chunk_alloc(). So make sure we don't accumulate a
4679 * large number of new block groups to create in our transaction
4680 * handle's new_bgs list to avoid exhausting the chunk block reserve
4681 * in extreme cases - like having a single transaction create many new
4682 * block groups when starting to write out the free space caches of all
4683 * the block groups that were made dirty during the lifetime of the
4684 * transaction.
4685 */
Filipe Mananad9a05402015-10-03 13:13:13 +01004686 if (trans->can_flush_pending_bgs &&
Byongho Leeee221842015-12-15 01:42:10 +09004687 trans->chunk_bytes_reserved >= (u64)SZ_2M) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004688 btrfs_create_pending_block_groups(trans, fs_info);
Filipe Manana00d80e32015-07-20 14:56:20 +01004689 btrfs_trans_release_chunk_metadata(trans);
4690 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04004691 return ret;
Chris Mason6324fbf2008-03-24 15:01:59 -04004692}
4693
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004694static int can_overcommit(struct btrfs_fs_info *fs_info,
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004695 struct btrfs_space_info *space_info, u64 bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004696 enum btrfs_reserve_flush_enum flush,
4697 bool system_chunk)
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004698{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004699 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04004700 u64 profile;
Miao Xie3c76cd82013-04-25 10:12:38 +00004701 u64 space_size;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004702 u64 avail;
4703 u64 used;
4704
Josef Bacik957780e2016-05-17 13:30:55 -04004705 /* Don't overcommit when in mixed mode. */
4706 if (space_info->flags & BTRFS_BLOCK_GROUP_DATA)
4707 return 0;
4708
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004709 if (system_chunk)
4710 profile = btrfs_system_alloc_profile(fs_info);
4711 else
4712 profile = btrfs_metadata_alloc_profile(fs_info);
4713
Liu Bo41361352017-02-13 15:42:21 -08004714 used = btrfs_space_info_used(space_info, false);
Josef Bacik96f1bb52013-01-30 17:02:51 -05004715
Josef Bacik96f1bb52013-01-30 17:02:51 -05004716 /*
4717 * We only want to allow over committing if we have lots of actual space
4718 * free, but if we don't have enough space to handle the global reserve
4719 * space then we could end up having a real enospc problem when trying
4720 * to allocate a chunk or some other such important allocation.
4721 */
Miao Xie3c76cd82013-04-25 10:12:38 +00004722 spin_lock(&global_rsv->lock);
4723 space_size = calc_global_rsv_need_space(global_rsv);
4724 spin_unlock(&global_rsv->lock);
4725 if (used + space_size >= space_info->total_bytes)
Josef Bacik96f1bb52013-01-30 17:02:51 -05004726 return 0;
4727
4728 used += space_info->bytes_may_use;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004729
Nikolay Borisova5ed45f2017-05-11 09:17:46 +03004730 avail = atomic64_read(&fs_info->free_chunk_space);
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004731
4732 /*
4733 * If we have dup, raid1 or raid10 then only half of the free
David Woodhouse53b381b2013-01-29 18:40:14 -05004734 * space is actually useable. For raid56, the space info used
4735 * doesn't include the parity drive, so we don't have to
4736 * change the math
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004737 */
4738 if (profile & (BTRFS_BLOCK_GROUP_DUP |
4739 BTRFS_BLOCK_GROUP_RAID1 |
4740 BTRFS_BLOCK_GROUP_RAID10))
4741 avail >>= 1;
4742
4743 /*
Miao Xie561c2942012-10-16 11:32:18 +00004744 * If we aren't flushing all things, let us overcommit up to
4745 * 1/2th of the space. If we can flush, don't let us overcommit
4746 * too much, let it overcommit up to 1/8 of the space.
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004747 */
Miao Xie08e007d2012-10-16 11:33:38 +00004748 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Josef Bacik14575ae2013-09-17 10:48:00 -04004749 avail >>= 3;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004750 else
Josef Bacik14575ae2013-09-17 10:48:00 -04004751 avail >>= 1;
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004752
Josef Bacik14575ae2013-09-17 10:48:00 -04004753 if (used + bytes < space_info->total_bytes + avail)
Josef Bacika80c8dcf2012-09-06 16:59:33 -04004754 return 1;
4755 return 0;
4756}
4757
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004758static void btrfs_writeback_inodes_sb_nr(struct btrfs_fs_info *fs_info,
Miao Xie6c255e62014-03-06 13:55:01 +08004759 unsigned long nr_pages, int nr_items)
Miao Xieda633a42012-12-20 11:19:09 +00004760{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004761 struct super_block *sb = fs_info->sb;
Miao Xieda633a42012-12-20 11:19:09 +00004762
Josef Bacik925a6ef2013-06-20 12:31:27 -04004763 if (down_read_trylock(&sb->s_umount)) {
4764 writeback_inodes_sb_nr(sb, nr_pages, WB_REASON_FS_FREE_SPACE);
4765 up_read(&sb->s_umount);
4766 } else {
Miao Xieda633a42012-12-20 11:19:09 +00004767 /*
4768 * We needn't worry the filesystem going from r/w to r/o though
4769 * we don't acquire ->s_umount mutex, because the filesystem
4770 * should guarantee the delalloc inodes list be empty after
4771 * the filesystem is readonly(all dirty pages are written to
4772 * the disk).
4773 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004774 btrfs_start_delalloc_roots(fs_info, 0, nr_items);
Josef Bacik98ad69c2013-04-04 11:55:49 -04004775 if (!current->journal_info)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004776 btrfs_wait_ordered_roots(fs_info, nr_items, 0, (u64)-1);
Miao Xieda633a42012-12-20 11:19:09 +00004777 }
4778}
4779
Chris Mason6374e57a2017-06-23 09:48:21 -07004780static inline u64 calc_reclaim_items_nr(struct btrfs_fs_info *fs_info,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004781 u64 to_reclaim)
Miao Xie18cd8ea2013-11-04 23:13:22 +08004782{
4783 u64 bytes;
Chris Mason6374e57a2017-06-23 09:48:21 -07004784 u64 nr;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004785
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004786 bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
Chris Mason6374e57a2017-06-23 09:48:21 -07004787 nr = div64_u64(to_reclaim, bytes);
Miao Xie18cd8ea2013-11-04 23:13:22 +08004788 if (!nr)
4789 nr = 1;
4790 return nr;
4791}
4792
Byongho Leeee221842015-12-15 01:42:10 +09004793#define EXTENT_SIZE_PER_ITEM SZ_256K
Miao Xiec61a16a2013-11-04 23:13:23 +08004794
Yan, Zheng5da9d012010-05-16 10:46:25 -04004795/*
4796 * shrink metadata reservation for delalloc
4797 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004798static void shrink_delalloc(struct btrfs_fs_info *fs_info, u64 to_reclaim,
4799 u64 orig, bool wait_ordered)
Yan, Zheng5da9d012010-05-16 10:46:25 -04004800{
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04004801 struct btrfs_block_rsv *block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004802 struct btrfs_space_info *space_info;
Josef Bacik663350a2011-11-03 22:54:25 -04004803 struct btrfs_trans_handle *trans;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004804 u64 delalloc_bytes;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004805 u64 max_reclaim;
Chris Mason6374e57a2017-06-23 09:48:21 -07004806 u64 items;
Josef Bacikb1953bc2011-01-21 21:10:01 +00004807 long time_left;
Miao Xied3ee29e32013-11-04 23:13:20 +08004808 unsigned long nr_pages;
4809 int loops;
Miao Xie08e007d2012-10-16 11:33:38 +00004810 enum btrfs_reserve_flush_enum flush;
Yan, Zheng5da9d012010-05-16 10:46:25 -04004811
Miao Xiec61a16a2013-11-04 23:13:23 +08004812 /* Calc the number of the pages we need flush for space reservation */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004813 items = calc_reclaim_items_nr(fs_info, to_reclaim);
Chris Mason6374e57a2017-06-23 09:48:21 -07004814 to_reclaim = items * EXTENT_SIZE_PER_ITEM;
Miao Xiec61a16a2013-11-04 23:13:23 +08004815
Josef Bacik663350a2011-11-03 22:54:25 -04004816 trans = (struct btrfs_trans_handle *)current->journal_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004817 block_rsv = &fs_info->delalloc_block_rsv;
Josef Bacik0019f102010-10-15 15:18:40 -04004818 space_info = block_rsv->space_info;
Chris Masonbf9022e2010-10-26 13:40:45 -04004819
Miao Xie963d6782013-01-29 10:10:51 +00004820 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004821 &fs_info->delalloc_bytes);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004822 if (delalloc_bytes == 0) {
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004823 if (trans)
Josef Bacikf4c738c2012-07-02 17:10:51 -04004824 return;
Miao Xie38c135a2013-11-04 23:13:21 +08004825 if (wait_ordered)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004826 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf4c738c2012-07-02 17:10:51 -04004827 return;
Josef Bacikfdb5eff2011-06-07 16:07:44 -04004828 }
4829
Miao Xied3ee29e32013-11-04 23:13:20 +08004830 loops = 0;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004831 while (delalloc_bytes && loops < 3) {
4832 max_reclaim = min(delalloc_bytes, to_reclaim);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03004833 nr_pages = max_reclaim >> PAGE_SHIFT;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004834 btrfs_writeback_inodes_sb_nr(fs_info, nr_pages, items);
Josef Bacikdea31f52012-09-06 16:47:00 -04004835 /*
4836 * We need to wait for the async pages to actually start before
4837 * we do anything.
4838 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004839 max_reclaim = atomic_read(&fs_info->async_delalloc_pages);
Miao Xie9f3a0742013-11-04 23:13:24 +08004840 if (!max_reclaim)
4841 goto skip_async;
Josef Bacikdea31f52012-09-06 16:47:00 -04004842
Miao Xie9f3a0742013-11-04 23:13:24 +08004843 if (max_reclaim <= nr_pages)
4844 max_reclaim = 0;
4845 else
4846 max_reclaim -= nr_pages;
4847
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004848 wait_event(fs_info->async_submit_wait,
4849 atomic_read(&fs_info->async_delalloc_pages) <=
Miao Xie9f3a0742013-11-04 23:13:24 +08004850 (int)max_reclaim);
4851skip_async:
Miao Xie08e007d2012-10-16 11:33:38 +00004852 if (!trans)
4853 flush = BTRFS_RESERVE_FLUSH_ALL;
4854 else
4855 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacik0019f102010-10-15 15:18:40 -04004856 spin_lock(&space_info->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04004857 if (list_empty(&space_info->tickets) &&
4858 list_empty(&space_info->priority_tickets)) {
4859 spin_unlock(&space_info->lock);
4860 break;
4861 }
Josef Bacik0019f102010-10-15 15:18:40 -04004862 spin_unlock(&space_info->lock);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004863
Chris Mason36e39c42011-03-12 07:08:42 -05004864 loops++;
Josef Bacikf104d042011-10-14 13:56:58 -04004865 if (wait_ordered && !trans) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004866 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1);
Josef Bacikf104d042011-10-14 13:56:58 -04004867 } else {
Josef Bacikf4c738c2012-07-02 17:10:51 -04004868 time_left = schedule_timeout_killable(1);
Josef Bacikf104d042011-10-14 13:56:58 -04004869 if (time_left)
4870 break;
4871 }
Miao Xie963d6782013-01-29 10:10:51 +00004872 delalloc_bytes = percpu_counter_sum_positive(
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004873 &fs_info->delalloc_bytes);
Yan, Zheng5da9d012010-05-16 10:46:25 -04004874 }
Yan, Zheng5da9d012010-05-16 10:46:25 -04004875}
4876
Josef Bacik4a92b1b2011-08-30 12:34:28 -04004877/**
Josef Bacik663350a2011-11-03 22:54:25 -04004878 * maybe_commit_transaction - possibly commit the transaction if its ok to
4879 * @root - the root we're allocating for
4880 * @bytes - the number of bytes we want to reserve
4881 * @force - force the commit
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004882 *
Josef Bacik663350a2011-11-03 22:54:25 -04004883 * This will check to make sure that committing the transaction will actually
4884 * get us somewhere and then commit the transaction if it does. Otherwise it
4885 * will return -ENOSPC.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04004886 */
Jeff Mahoney0c9ab342017-02-15 16:28:28 -05004887static int may_commit_transaction(struct btrfs_fs_info *fs_info,
Josef Bacik663350a2011-11-03 22:54:25 -04004888 struct btrfs_space_info *space_info,
4889 u64 bytes, int force)
4890{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04004891 struct btrfs_block_rsv *delayed_rsv = &fs_info->delayed_block_rsv;
Josef Bacik663350a2011-11-03 22:54:25 -04004892 struct btrfs_trans_handle *trans;
4893
4894 trans = (struct btrfs_trans_handle *)current->journal_info;
4895 if (trans)
4896 return -EAGAIN;
4897
4898 if (force)
4899 goto commit;
4900
4901 /* See if there is enough pinned space to make this reservation */
Josef Bacikb150a4f2013-06-19 15:00:04 -04004902 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Miao Xie0424c542014-03-06 13:54:59 +08004903 bytes) >= 0)
Josef Bacik663350a2011-11-03 22:54:25 -04004904 goto commit;
Josef Bacik663350a2011-11-03 22:54:25 -04004905
4906 /*
4907 * See if there is some space in the delayed insertion reservation for
4908 * this reservation.
4909 */
4910 if (space_info != delayed_rsv->space_info)
4911 return -ENOSPC;
4912
4913 spin_lock(&delayed_rsv->lock);
Josef Bacikb150a4f2013-06-19 15:00:04 -04004914 if (percpu_counter_compare(&space_info->total_bytes_pinned,
Liu Bo28785f72017-05-19 11:39:15 -06004915 bytes - delayed_rsv->size) < 0) {
Josef Bacik663350a2011-11-03 22:54:25 -04004916 spin_unlock(&delayed_rsv->lock);
4917 return -ENOSPC;
4918 }
4919 spin_unlock(&delayed_rsv->lock);
4920
4921commit:
Jeff Mahoneya9b33112017-05-17 11:38:34 -04004922 trans = btrfs_join_transaction(fs_info->extent_root);
Josef Bacik663350a2011-11-03 22:54:25 -04004923 if (IS_ERR(trans))
4924 return -ENOSPC;
4925
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004926 return btrfs_commit_transaction(trans);
Josef Bacik663350a2011-11-03 22:54:25 -04004927}
4928
Josef Bacik957780e2016-05-17 13:30:55 -04004929struct reserve_ticket {
4930 u64 bytes;
4931 int error;
4932 struct list_head list;
4933 wait_queue_head_t wait;
Josef Bacik96c3f432012-06-21 14:05:49 -04004934};
4935
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03004936/*
4937 * Try to flush some data based on policy set by @state. This is only advisory
4938 * and may fail for various reasons. The caller is supposed to examine the
4939 * state of @space_info to detect the outcome.
4940 */
4941static void flush_space(struct btrfs_fs_info *fs_info,
Josef Bacik96c3f432012-06-21 14:05:49 -04004942 struct btrfs_space_info *space_info, u64 num_bytes,
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004943 int state)
Josef Bacik96c3f432012-06-21 14:05:49 -04004944{
Jeff Mahoneya9b33112017-05-17 11:38:34 -04004945 struct btrfs_root *root = fs_info->extent_root;
Josef Bacik96c3f432012-06-21 14:05:49 -04004946 struct btrfs_trans_handle *trans;
4947 int nr;
Josef Bacikf4c738c2012-07-02 17:10:51 -04004948 int ret = 0;
Josef Bacik96c3f432012-06-21 14:05:49 -04004949
4950 switch (state) {
Josef Bacik96c3f432012-06-21 14:05:49 -04004951 case FLUSH_DELAYED_ITEMS_NR:
4952 case FLUSH_DELAYED_ITEMS:
Miao Xie18cd8ea2013-11-04 23:13:22 +08004953 if (state == FLUSH_DELAYED_ITEMS_NR)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004954 nr = calc_reclaim_items_nr(fs_info, num_bytes) * 2;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004955 else
Josef Bacik96c3f432012-06-21 14:05:49 -04004956 nr = -1;
Miao Xie18cd8ea2013-11-04 23:13:22 +08004957
Josef Bacik96c3f432012-06-21 14:05:49 -04004958 trans = btrfs_join_transaction(root);
4959 if (IS_ERR(trans)) {
4960 ret = PTR_ERR(trans);
4961 break;
4962 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004963 ret = btrfs_run_delayed_items_nr(trans, fs_info, nr);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004964 btrfs_end_transaction(trans);
Josef Bacik96c3f432012-06-21 14:05:49 -04004965 break;
Josef Bacik67b0fd62012-09-24 13:42:00 -04004966 case FLUSH_DELALLOC:
4967 case FLUSH_DELALLOC_WAIT:
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004968 shrink_delalloc(fs_info, num_bytes * 2, num_bytes,
Josef Bacik67b0fd62012-09-24 13:42:00 -04004969 state == FLUSH_DELALLOC_WAIT);
4970 break;
Josef Bacikea658ba2012-09-11 16:57:25 -04004971 case ALLOC_CHUNK:
4972 trans = btrfs_join_transaction(root);
4973 if (IS_ERR(trans)) {
4974 ret = PTR_ERR(trans);
4975 break;
4976 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04004977 ret = do_chunk_alloc(trans, fs_info,
Jeff Mahoney1b868262017-05-17 11:38:35 -04004978 btrfs_metadata_alloc_profile(fs_info),
Josef Bacikea658ba2012-09-11 16:57:25 -04004979 CHUNK_ALLOC_NO_FORCE);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04004980 btrfs_end_transaction(trans);
Alex Lyakaseecba892015-12-06 12:32:31 +02004981 if (ret > 0 || ret == -ENOSPC)
Josef Bacikea658ba2012-09-11 16:57:25 -04004982 ret = 0;
4983 break;
Josef Bacik96c3f432012-06-21 14:05:49 -04004984 case COMMIT_TRANS:
Jeff Mahoney0c9ab342017-02-15 16:28:28 -05004985 ret = may_commit_transaction(fs_info, space_info,
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004986 num_bytes, 0);
Josef Bacik96c3f432012-06-21 14:05:49 -04004987 break;
4988 default:
4989 ret = -ENOSPC;
4990 break;
4991 }
4992
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03004993 trace_btrfs_flush_space(fs_info, space_info->flags, num_bytes, state,
4994 ret);
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03004995 return;
Josef Bacik96c3f432012-06-21 14:05:49 -04004996}
Miao Xie21c7e752014-05-13 17:29:04 -07004997
4998static inline u64
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04004999btrfs_calc_reclaim_metadata_size(struct btrfs_fs_info *fs_info,
5000 struct btrfs_space_info *space_info,
5001 bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07005002{
Josef Bacik957780e2016-05-17 13:30:55 -04005003 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07005004 u64 used;
5005 u64 expected;
Josef Bacik957780e2016-05-17 13:30:55 -04005006 u64 to_reclaim = 0;
Miao Xie21c7e752014-05-13 17:29:04 -07005007
Josef Bacik957780e2016-05-17 13:30:55 -04005008 list_for_each_entry(ticket, &space_info->tickets, list)
5009 to_reclaim += ticket->bytes;
5010 list_for_each_entry(ticket, &space_info->priority_tickets, list)
5011 to_reclaim += ticket->bytes;
5012 if (to_reclaim)
5013 return to_reclaim;
Miao Xie21c7e752014-05-13 17:29:04 -07005014
Wang Xiaoguange0af2482016-08-31 19:46:16 +08005015 to_reclaim = min_t(u64, num_online_cpus() * SZ_1M, SZ_16M);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005016 if (can_overcommit(fs_info, space_info, to_reclaim,
5017 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Wang Xiaoguange0af2482016-08-31 19:46:16 +08005018 return 0;
5019
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03005020 used = btrfs_space_info_used(space_info, true);
5021
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005022 if (can_overcommit(fs_info, space_info, SZ_1M,
5023 BTRFS_RESERVE_FLUSH_ALL, system_chunk))
Miao Xie21c7e752014-05-13 17:29:04 -07005024 expected = div_factor_fine(space_info->total_bytes, 95);
5025 else
5026 expected = div_factor_fine(space_info->total_bytes, 90);
5027
5028 if (used > expected)
5029 to_reclaim = used - expected;
5030 else
5031 to_reclaim = 0;
5032 to_reclaim = min(to_reclaim, space_info->bytes_may_use +
5033 space_info->bytes_reserved);
Miao Xie21c7e752014-05-13 17:29:04 -07005034 return to_reclaim;
5035}
5036
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005037static inline int need_do_async_reclaim(struct btrfs_fs_info *fs_info,
5038 struct btrfs_space_info *space_info,
5039 u64 used, bool system_chunk)
Miao Xie21c7e752014-05-13 17:29:04 -07005040{
Josef Bacik365c5312015-02-18 13:58:15 -08005041 u64 thresh = div_factor_fine(space_info->total_bytes, 98);
5042
5043 /* If we're just plain full then async reclaim just slows us down. */
Josef Bacikbaee8792016-01-26 09:35:38 -05005044 if ((space_info->bytes_used + space_info->bytes_reserved) >= thresh)
Josef Bacik365c5312015-02-18 13:58:15 -08005045 return 0;
5046
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005047 if (!btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5048 system_chunk))
Liu Bo25ce4592014-09-10 12:58:50 +08005049 return 0;
Liu Bo25ce4592014-09-10 12:58:50 +08005050
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005051 return (used >= thresh && !btrfs_fs_closing(fs_info) &&
5052 !test_bit(BTRFS_FS_STATE_REMOUNTING, &fs_info->fs_state));
Miao Xie21c7e752014-05-13 17:29:04 -07005053}
5054
Josef Bacik957780e2016-05-17 13:30:55 -04005055static void wake_all_tickets(struct list_head *head)
Miao Xie21c7e752014-05-13 17:29:04 -07005056{
Josef Bacik957780e2016-05-17 13:30:55 -04005057 struct reserve_ticket *ticket;
Miao Xie21c7e752014-05-13 17:29:04 -07005058
Josef Bacik957780e2016-05-17 13:30:55 -04005059 while (!list_empty(head)) {
5060 ticket = list_first_entry(head, struct reserve_ticket, list);
5061 list_del_init(&ticket->list);
5062 ticket->error = -ENOSPC;
5063 wake_up(&ticket->wait);
Miao Xie21c7e752014-05-13 17:29:04 -07005064 }
Miao Xie21c7e752014-05-13 17:29:04 -07005065}
5066
Josef Bacik957780e2016-05-17 13:30:55 -04005067/*
5068 * This is for normal flushers, we can wait all goddamned day if we want to. We
5069 * will loop and continuously try to flush as long as we are making progress.
5070 * We count progress as clearing off tickets each time we have to loop.
5071 */
Miao Xie21c7e752014-05-13 17:29:04 -07005072static void btrfs_async_reclaim_metadata_space(struct work_struct *work)
5073{
5074 struct btrfs_fs_info *fs_info;
5075 struct btrfs_space_info *space_info;
5076 u64 to_reclaim;
5077 int flush_state;
Josef Bacik957780e2016-05-17 13:30:55 -04005078 int commit_cycles = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005079 u64 last_tickets_id;
Miao Xie21c7e752014-05-13 17:29:04 -07005080
5081 fs_info = container_of(work, struct btrfs_fs_info, async_reclaim_work);
5082 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
5083
Josef Bacik957780e2016-05-17 13:30:55 -04005084 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005085 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5086 false);
Josef Bacik957780e2016-05-17 13:30:55 -04005087 if (!to_reclaim) {
5088 space_info->flush = 0;
5089 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005090 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005091 }
Wang Xiaoguangce129652016-09-02 10:58:46 +08005092 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005093 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005094
5095 flush_state = FLUSH_DELAYED_ITEMS_NR;
5096 do {
Nikolay Borisove38ae7a2017-07-25 17:48:28 +03005097 flush_space(fs_info, space_info, to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04005098 spin_lock(&space_info->lock);
5099 if (list_empty(&space_info->tickets)) {
5100 space_info->flush = 0;
5101 spin_unlock(&space_info->lock);
Miao Xie21c7e752014-05-13 17:29:04 -07005102 return;
Josef Bacik957780e2016-05-17 13:30:55 -04005103 }
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005104 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info,
5105 space_info,
5106 false);
Wang Xiaoguangce129652016-09-02 10:58:46 +08005107 if (last_tickets_id == space_info->tickets_id) {
Josef Bacik957780e2016-05-17 13:30:55 -04005108 flush_state++;
5109 } else {
Wang Xiaoguangce129652016-09-02 10:58:46 +08005110 last_tickets_id = space_info->tickets_id;
Josef Bacik957780e2016-05-17 13:30:55 -04005111 flush_state = FLUSH_DELAYED_ITEMS_NR;
5112 if (commit_cycles)
5113 commit_cycles--;
5114 }
5115
5116 if (flush_state > COMMIT_TRANS) {
5117 commit_cycles++;
5118 if (commit_cycles > 2) {
5119 wake_all_tickets(&space_info->tickets);
5120 space_info->flush = 0;
5121 } else {
5122 flush_state = FLUSH_DELAYED_ITEMS_NR;
5123 }
5124 }
5125 spin_unlock(&space_info->lock);
5126 } while (flush_state <= COMMIT_TRANS);
Miao Xie21c7e752014-05-13 17:29:04 -07005127}
5128
5129void btrfs_init_async_reclaim_work(struct work_struct *work)
5130{
5131 INIT_WORK(work, btrfs_async_reclaim_metadata_space);
5132}
5133
Josef Bacik957780e2016-05-17 13:30:55 -04005134static void priority_reclaim_metadata_space(struct btrfs_fs_info *fs_info,
5135 struct btrfs_space_info *space_info,
5136 struct reserve_ticket *ticket)
5137{
5138 u64 to_reclaim;
5139 int flush_state = FLUSH_DELAYED_ITEMS_NR;
5140
5141 spin_lock(&space_info->lock);
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005142 to_reclaim = btrfs_calc_reclaim_metadata_size(fs_info, space_info,
5143 false);
Josef Bacik957780e2016-05-17 13:30:55 -04005144 if (!to_reclaim) {
5145 spin_unlock(&space_info->lock);
5146 return;
5147 }
5148 spin_unlock(&space_info->lock);
5149
5150 do {
Nikolay Borisov7bdd6272017-07-11 13:25:13 +03005151 flush_space(fs_info, space_info, to_reclaim, flush_state);
Josef Bacik957780e2016-05-17 13:30:55 -04005152 flush_state++;
5153 spin_lock(&space_info->lock);
5154 if (ticket->bytes == 0) {
5155 spin_unlock(&space_info->lock);
5156 return;
5157 }
5158 spin_unlock(&space_info->lock);
5159
5160 /*
5161 * Priority flushers can't wait on delalloc without
5162 * deadlocking.
5163 */
5164 if (flush_state == FLUSH_DELALLOC ||
5165 flush_state == FLUSH_DELALLOC_WAIT)
5166 flush_state = ALLOC_CHUNK;
5167 } while (flush_state < COMMIT_TRANS);
5168}
5169
5170static int wait_reserve_ticket(struct btrfs_fs_info *fs_info,
5171 struct btrfs_space_info *space_info,
5172 struct reserve_ticket *ticket, u64 orig_bytes)
5173
5174{
5175 DEFINE_WAIT(wait);
5176 int ret = 0;
5177
5178 spin_lock(&space_info->lock);
5179 while (ticket->bytes > 0 && ticket->error == 0) {
5180 ret = prepare_to_wait_event(&ticket->wait, &wait, TASK_KILLABLE);
5181 if (ret) {
5182 ret = -EINTR;
5183 break;
5184 }
5185 spin_unlock(&space_info->lock);
5186
5187 schedule();
5188
5189 finish_wait(&ticket->wait, &wait);
5190 spin_lock(&space_info->lock);
5191 }
5192 if (!ret)
5193 ret = ticket->error;
5194 if (!list_empty(&ticket->list))
5195 list_del_init(&ticket->list);
5196 if (ticket->bytes && ticket->bytes < orig_bytes) {
5197 u64 num_bytes = orig_bytes - ticket->bytes;
5198 space_info->bytes_may_use -= num_bytes;
5199 trace_btrfs_space_reservation(fs_info, "space_info",
5200 space_info->flags, num_bytes, 0);
5201 }
5202 spin_unlock(&space_info->lock);
5203
5204 return ret;
5205}
5206
Josef Bacik663350a2011-11-03 22:54:25 -04005207/**
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005208 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5209 * @root - the root we're allocating for
Josef Bacik957780e2016-05-17 13:30:55 -04005210 * @space_info - the space info we want to allocate from
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005211 * @orig_bytes - the number of bytes we want
Adam Buchbinder48fc7f72012-09-19 21:48:00 -04005212 * @flush - whether or not we can flush to make our reservation
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005213 *
Nicholas D Steeves01327612016-05-19 21:18:45 -04005214 * This will reserve orig_bytes number of bytes from the space info associated
Josef Bacik4a92b1b2011-08-30 12:34:28 -04005215 * with the block_rsv. If there is not enough space it will make an attempt to
5216 * flush out space to make room. It will do this by flushing delalloc if
5217 * possible or committing the transaction. If flush is 0 then no attempts to
5218 * regain reservations will be made and this will fail if there is not enough
5219 * space already.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005220 */
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005221static int __reserve_metadata_bytes(struct btrfs_fs_info *fs_info,
Josef Bacik957780e2016-05-17 13:30:55 -04005222 struct btrfs_space_info *space_info,
5223 u64 orig_bytes,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005224 enum btrfs_reserve_flush_enum flush,
5225 bool system_chunk)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005226{
Josef Bacik957780e2016-05-17 13:30:55 -04005227 struct reserve_ticket ticket;
Josef Bacik2bf64752011-09-26 17:12:22 -04005228 u64 used;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005229 int ret = 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005230
Josef Bacik957780e2016-05-17 13:30:55 -04005231 ASSERT(orig_bytes);
Josef Bacik8ca17f02016-05-27 13:24:13 -04005232 ASSERT(!current->journal_info || flush != BTRFS_RESERVE_FLUSH_ALL);
5233
Yan, Zhengf0486c62010-05-16 10:46:25 -04005234 spin_lock(&space_info->lock);
Josef Bacikfdb5eff2011-06-07 16:07:44 -04005235 ret = -ENOSPC;
Liu Bo41361352017-02-13 15:42:21 -08005236 used = btrfs_space_info_used(space_info, true);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005237
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005238 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005239 * If we have enough space then hooray, make our reservation and carry
5240 * on. If not see if we can overcommit, and if we can, hooray carry on.
5241 * If not things get more complicated.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005242 */
Josef Bacik957780e2016-05-17 13:30:55 -04005243 if (used + orig_bytes <= space_info->total_bytes) {
5244 space_info->bytes_may_use += orig_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005245 trace_btrfs_space_reservation(fs_info, "space_info",
5246 space_info->flags, orig_bytes, 1);
Josef Bacik957780e2016-05-17 13:30:55 -04005247 ret = 0;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005248 } else if (can_overcommit(fs_info, space_info, orig_bytes, flush,
5249 system_chunk)) {
Josef Bacik44734ed2012-09-28 16:04:19 -04005250 space_info->bytes_may_use += orig_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005251 trace_btrfs_space_reservation(fs_info, "space_info",
5252 space_info->flags, orig_bytes, 1);
Josef Bacik44734ed2012-09-28 16:04:19 -04005253 ret = 0;
Josef Bacik2bf64752011-09-26 17:12:22 -04005254 }
5255
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005256 /*
Josef Bacik957780e2016-05-17 13:30:55 -04005257 * If we couldn't make a reservation then setup our reservation ticket
5258 * and kick the async worker if it's not already running.
Miao Xie08e007d2012-10-16 11:33:38 +00005259 *
Josef Bacik957780e2016-05-17 13:30:55 -04005260 * If we are a priority flusher then we just need to add our ticket to
5261 * the list and we will do our own flushing further down.
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005262 */
Josef Bacik72bcd992012-12-18 15:16:34 -05005263 if (ret && flush != BTRFS_RESERVE_NO_FLUSH) {
Josef Bacik957780e2016-05-17 13:30:55 -04005264 ticket.bytes = orig_bytes;
5265 ticket.error = 0;
5266 init_waitqueue_head(&ticket.wait);
5267 if (flush == BTRFS_RESERVE_FLUSH_ALL) {
5268 list_add_tail(&ticket.list, &space_info->tickets);
5269 if (!space_info->flush) {
5270 space_info->flush = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005271 trace_btrfs_trigger_flush(fs_info,
Josef Bacikf376df22016-03-25 13:25:56 -04005272 space_info->flags,
5273 orig_bytes, flush,
5274 "enospc");
Josef Bacik957780e2016-05-17 13:30:55 -04005275 queue_work(system_unbound_wq,
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005276 &fs_info->async_reclaim_work);
Josef Bacik957780e2016-05-17 13:30:55 -04005277 }
5278 } else {
5279 list_add_tail(&ticket.list,
5280 &space_info->priority_tickets);
5281 }
Miao Xie21c7e752014-05-13 17:29:04 -07005282 } else if (!ret && space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
5283 used += orig_bytes;
Josef Bacikf6acfd52014-09-18 11:27:17 -04005284 /*
5285 * We will do the space reservation dance during log replay,
5286 * which means we won't have fs_info->fs_root set, so don't do
5287 * the async reclaim as we will panic.
5288 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005289 if (!test_bit(BTRFS_FS_LOG_RECOVERING, &fs_info->flags) &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005290 need_do_async_reclaim(fs_info, space_info,
5291 used, system_chunk) &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005292 !work_busy(&fs_info->async_reclaim_work)) {
5293 trace_btrfs_trigger_flush(fs_info, space_info->flags,
5294 orig_bytes, flush, "preempt");
Miao Xie21c7e752014-05-13 17:29:04 -07005295 queue_work(system_unbound_wq,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005296 &fs_info->async_reclaim_work);
Josef Bacikf376df22016-03-25 13:25:56 -04005297 }
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005298 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04005299 spin_unlock(&space_info->lock);
Miao Xie08e007d2012-10-16 11:33:38 +00005300 if (!ret || flush == BTRFS_RESERVE_NO_FLUSH)
Josef Bacik957780e2016-05-17 13:30:55 -04005301 return ret;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005302
Josef Bacik957780e2016-05-17 13:30:55 -04005303 if (flush == BTRFS_RESERVE_FLUSH_ALL)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005304 return wait_reserve_ticket(fs_info, space_info, &ticket,
Josef Bacik957780e2016-05-17 13:30:55 -04005305 orig_bytes);
Miao Xie08e007d2012-10-16 11:33:38 +00005306
Josef Bacik957780e2016-05-17 13:30:55 -04005307 ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005308 priority_reclaim_metadata_space(fs_info, space_info, &ticket);
Josef Bacik957780e2016-05-17 13:30:55 -04005309 spin_lock(&space_info->lock);
5310 if (ticket.bytes) {
5311 if (ticket.bytes < orig_bytes) {
5312 u64 num_bytes = orig_bytes - ticket.bytes;
5313 space_info->bytes_may_use -= num_bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005314 trace_btrfs_space_reservation(fs_info, "space_info",
5315 space_info->flags,
5316 num_bytes, 0);
Miao Xie08e007d2012-10-16 11:33:38 +00005317
Josef Bacik957780e2016-05-17 13:30:55 -04005318 }
5319 list_del_init(&ticket.list);
5320 ret = -ENOSPC;
5321 }
5322 spin_unlock(&space_info->lock);
5323 ASSERT(list_empty(&ticket.list));
5324 return ret;
5325}
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005326
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005327/**
5328 * reserve_metadata_bytes - try to reserve bytes from the block_rsv's space
5329 * @root - the root we're allocating for
5330 * @block_rsv - the block_rsv we're allocating for
5331 * @orig_bytes - the number of bytes we want
5332 * @flush - whether or not we can flush to make our reservation
5333 *
Josef Bacik957780e2016-05-17 13:30:55 -04005334 * This will reserve orgi_bytes number of bytes from the space info associated
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005335 * with the block_rsv. If there is not enough space it will make an attempt to
5336 * flush out space to make room. It will do this by flushing delalloc if
5337 * possible or committing the transaction. If flush is 0 then no attempts to
5338 * regain reservations will be made and this will fail if there is not enough
5339 * space already.
5340 */
5341static int reserve_metadata_bytes(struct btrfs_root *root,
5342 struct btrfs_block_rsv *block_rsv,
5343 u64 orig_bytes,
5344 enum btrfs_reserve_flush_enum flush)
5345{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005346 struct btrfs_fs_info *fs_info = root->fs_info;
5347 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacik957780e2016-05-17 13:30:55 -04005348 int ret;
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005349 bool system_chunk = (root == fs_info->chunk_root);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005350
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005351 ret = __reserve_metadata_bytes(fs_info, block_rsv->space_info,
5352 orig_bytes, flush, system_chunk);
Josef Bacik5d803662013-02-07 16:06:02 -05005353 if (ret == -ENOSPC &&
5354 unlikely(root->orphan_cleanup_state == ORPHAN_CLEANUP_STARTED)) {
Josef Bacik5d803662013-02-07 16:06:02 -05005355 if (block_rsv != global_rsv &&
5356 !block_rsv_use_bytes(global_rsv, orig_bytes))
5357 ret = 0;
5358 }
Jeff Mahoneycab45e22013-10-16 16:27:01 -04005359 if (ret == -ENOSPC)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005360 trace_btrfs_space_reservation(fs_info, "space_info:enospc",
Josef Bacik957780e2016-05-17 13:30:55 -04005361 block_rsv->space_info->flags,
5362 orig_bytes, 1);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005363 return ret;
5364}
5365
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005366static struct btrfs_block_rsv *get_block_rsv(
5367 const struct btrfs_trans_handle *trans,
5368 const struct btrfs_root *root)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005369{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005370 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik4c13d752011-08-30 11:31:29 -04005371 struct btrfs_block_rsv *block_rsv = NULL;
5372
Alexandru Moisee9cf4392015-09-09 00:18:50 +00005373 if (test_bit(BTRFS_ROOT_REF_COWS, &root->state) ||
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005374 (root == fs_info->csum_root && trans->adding_csums) ||
5375 (root == fs_info->uuid_root))
Stefan Behrensf7a81ea2013-08-15 17:11:19 +02005376 block_rsv = trans->block_rsv;
5377
Josef Bacik4c13d752011-08-30 11:31:29 -04005378 if (!block_rsv)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005379 block_rsv = root->block_rsv;
5380
5381 if (!block_rsv)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005382 block_rsv = &fs_info->empty_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005383
5384 return block_rsv;
5385}
5386
5387static int block_rsv_use_bytes(struct btrfs_block_rsv *block_rsv,
5388 u64 num_bytes)
5389{
5390 int ret = -ENOSPC;
5391 spin_lock(&block_rsv->lock);
5392 if (block_rsv->reserved >= num_bytes) {
5393 block_rsv->reserved -= num_bytes;
5394 if (block_rsv->reserved < block_rsv->size)
5395 block_rsv->full = 0;
5396 ret = 0;
5397 }
5398 spin_unlock(&block_rsv->lock);
5399 return ret;
5400}
5401
5402static void block_rsv_add_bytes(struct btrfs_block_rsv *block_rsv,
5403 u64 num_bytes, int update_size)
5404{
5405 spin_lock(&block_rsv->lock);
5406 block_rsv->reserved += num_bytes;
5407 if (update_size)
5408 block_rsv->size += num_bytes;
5409 else if (block_rsv->reserved >= block_rsv->size)
5410 block_rsv->full = 1;
5411 spin_unlock(&block_rsv->lock);
5412}
5413
Josef Bacikd52be812013-05-29 14:54:47 -04005414int btrfs_cond_migrate_bytes(struct btrfs_fs_info *fs_info,
5415 struct btrfs_block_rsv *dest, u64 num_bytes,
5416 int min_factor)
5417{
5418 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5419 u64 min_bytes;
5420
5421 if (global_rsv->space_info != dest->space_info)
5422 return -ENOSPC;
5423
5424 spin_lock(&global_rsv->lock);
5425 min_bytes = div_factor(global_rsv->size, min_factor);
5426 if (global_rsv->reserved < min_bytes + num_bytes) {
5427 spin_unlock(&global_rsv->lock);
5428 return -ENOSPC;
5429 }
5430 global_rsv->reserved -= num_bytes;
5431 if (global_rsv->reserved < global_rsv->size)
5432 global_rsv->full = 0;
5433 spin_unlock(&global_rsv->lock);
5434
5435 block_rsv_add_bytes(dest, num_bytes, 1);
5436 return 0;
5437}
5438
Josef Bacik957780e2016-05-17 13:30:55 -04005439/*
5440 * This is for space we already have accounted in space_info->bytes_may_use, so
5441 * basically when we're returning space from block_rsv's.
5442 */
5443static void space_info_add_old_bytes(struct btrfs_fs_info *fs_info,
5444 struct btrfs_space_info *space_info,
5445 u64 num_bytes)
5446{
5447 struct reserve_ticket *ticket;
5448 struct list_head *head;
5449 u64 used;
5450 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_NO_FLUSH;
5451 bool check_overcommit = false;
5452
5453 spin_lock(&space_info->lock);
5454 head = &space_info->priority_tickets;
5455
5456 /*
5457 * If we are over our limit then we need to check and see if we can
5458 * overcommit, and if we can't then we just need to free up our space
5459 * and not satisfy any requests.
5460 */
Nikolay Borisov0eee8a42017-06-14 11:35:34 +03005461 used = btrfs_space_info_used(space_info, true);
Josef Bacik957780e2016-05-17 13:30:55 -04005462 if (used - num_bytes >= space_info->total_bytes)
5463 check_overcommit = true;
5464again:
5465 while (!list_empty(head) && num_bytes) {
5466 ticket = list_first_entry(head, struct reserve_ticket,
5467 list);
5468 /*
5469 * We use 0 bytes because this space is already reserved, so
5470 * adding the ticket space would be a double count.
5471 */
5472 if (check_overcommit &&
Jeff Mahoneyc1c49192017-05-17 11:38:36 -04005473 !can_overcommit(fs_info, space_info, 0, flush, false))
Josef Bacik957780e2016-05-17 13:30:55 -04005474 break;
5475 if (num_bytes >= ticket->bytes) {
5476 list_del_init(&ticket->list);
5477 num_bytes -= ticket->bytes;
5478 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005479 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005480 wake_up(&ticket->wait);
5481 } else {
5482 ticket->bytes -= num_bytes;
5483 num_bytes = 0;
5484 }
5485 }
5486
5487 if (num_bytes && head == &space_info->priority_tickets) {
5488 head = &space_info->tickets;
5489 flush = BTRFS_RESERVE_FLUSH_ALL;
5490 goto again;
5491 }
5492 space_info->bytes_may_use -= num_bytes;
5493 trace_btrfs_space_reservation(fs_info, "space_info",
5494 space_info->flags, num_bytes, 0);
5495 spin_unlock(&space_info->lock);
5496}
5497
5498/*
5499 * This is for newly allocated space that isn't accounted in
5500 * space_info->bytes_may_use yet. So if we allocate a chunk or unpin an extent
5501 * we use this helper.
5502 */
5503static void space_info_add_new_bytes(struct btrfs_fs_info *fs_info,
5504 struct btrfs_space_info *space_info,
5505 u64 num_bytes)
5506{
5507 struct reserve_ticket *ticket;
5508 struct list_head *head = &space_info->priority_tickets;
5509
5510again:
5511 while (!list_empty(head) && num_bytes) {
5512 ticket = list_first_entry(head, struct reserve_ticket,
5513 list);
5514 if (num_bytes >= ticket->bytes) {
5515 trace_btrfs_space_reservation(fs_info, "space_info",
5516 space_info->flags,
5517 ticket->bytes, 1);
5518 list_del_init(&ticket->list);
5519 num_bytes -= ticket->bytes;
5520 space_info->bytes_may_use += ticket->bytes;
5521 ticket->bytes = 0;
Wang Xiaoguangce129652016-09-02 10:58:46 +08005522 space_info->tickets_id++;
Josef Bacik957780e2016-05-17 13:30:55 -04005523 wake_up(&ticket->wait);
5524 } else {
5525 trace_btrfs_space_reservation(fs_info, "space_info",
5526 space_info->flags,
5527 num_bytes, 1);
5528 space_info->bytes_may_use += num_bytes;
5529 ticket->bytes -= num_bytes;
5530 num_bytes = 0;
5531 }
5532 }
5533
5534 if (num_bytes && head == &space_info->priority_tickets) {
5535 head = &space_info->tickets;
5536 goto again;
5537 }
5538}
5539
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005540static void block_rsv_release_bytes(struct btrfs_fs_info *fs_info,
5541 struct btrfs_block_rsv *block_rsv,
David Sterba62a45b62011-04-20 15:52:26 +02005542 struct btrfs_block_rsv *dest, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005543{
5544 struct btrfs_space_info *space_info = block_rsv->space_info;
5545
5546 spin_lock(&block_rsv->lock);
5547 if (num_bytes == (u64)-1)
5548 num_bytes = block_rsv->size;
5549 block_rsv->size -= num_bytes;
5550 if (block_rsv->reserved >= block_rsv->size) {
5551 num_bytes = block_rsv->reserved - block_rsv->size;
5552 block_rsv->reserved = block_rsv->size;
5553 block_rsv->full = 1;
5554 } else {
5555 num_bytes = 0;
5556 }
5557 spin_unlock(&block_rsv->lock);
5558
5559 if (num_bytes > 0) {
5560 if (dest) {
Josef Bacike9e22892011-01-24 21:43:19 +00005561 spin_lock(&dest->lock);
5562 if (!dest->full) {
5563 u64 bytes_to_add;
5564
5565 bytes_to_add = dest->size - dest->reserved;
5566 bytes_to_add = min(num_bytes, bytes_to_add);
5567 dest->reserved += bytes_to_add;
5568 if (dest->reserved >= dest->size)
5569 dest->full = 1;
5570 num_bytes -= bytes_to_add;
5571 }
5572 spin_unlock(&dest->lock);
5573 }
Josef Bacik957780e2016-05-17 13:30:55 -04005574 if (num_bytes)
5575 space_info_add_old_bytes(fs_info, space_info,
5576 num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005577 }
5578}
5579
Josef Bacik25d609f2016-03-25 13:25:48 -04005580int btrfs_block_rsv_migrate(struct btrfs_block_rsv *src,
5581 struct btrfs_block_rsv *dst, u64 num_bytes,
5582 int update_size)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005583{
5584 int ret;
5585
5586 ret = block_rsv_use_bytes(src, num_bytes);
5587 if (ret)
5588 return ret;
5589
Josef Bacik25d609f2016-03-25 13:25:48 -04005590 block_rsv_add_bytes(dst, num_bytes, update_size);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005591 return 0;
5592}
5593
Miao Xie66d8f3d2012-09-06 04:02:28 -06005594void btrfs_init_block_rsv(struct btrfs_block_rsv *rsv, unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005595{
5596 memset(rsv, 0, sizeof(*rsv));
5597 spin_lock_init(&rsv->lock);
Miao Xie66d8f3d2012-09-06 04:02:28 -06005598 rsv->type = type;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005599}
5600
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005601struct btrfs_block_rsv *btrfs_alloc_block_rsv(struct btrfs_fs_info *fs_info,
Miao Xie66d8f3d2012-09-06 04:02:28 -06005602 unsigned short type)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005603{
5604 struct btrfs_block_rsv *block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005605
5606 block_rsv = kmalloc(sizeof(*block_rsv), GFP_NOFS);
5607 if (!block_rsv)
5608 return NULL;
5609
Miao Xie66d8f3d2012-09-06 04:02:28 -06005610 btrfs_init_block_rsv(block_rsv, type);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005611 block_rsv->space_info = __find_space_info(fs_info,
5612 BTRFS_BLOCK_GROUP_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005613 return block_rsv;
5614}
5615
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005616void btrfs_free_block_rsv(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005617 struct btrfs_block_rsv *rsv)
5618{
Josef Bacik2aaa6652012-08-29 14:27:18 -04005619 if (!rsv)
5620 return;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005621 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Josef Bacikdabdb642011-08-08 12:50:18 -04005622 kfree(rsv);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005623}
5624
Chris Masoncdfb0802015-04-06 18:17:00 -07005625void __btrfs_free_block_rsv(struct btrfs_block_rsv *rsv)
5626{
5627 kfree(rsv);
5628}
5629
Miao Xie08e007d2012-10-16 11:33:38 +00005630int btrfs_block_rsv_add(struct btrfs_root *root,
5631 struct btrfs_block_rsv *block_rsv, u64 num_bytes,
5632 enum btrfs_reserve_flush_enum flush)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005633{
5634 int ret;
5635
5636 if (num_bytes == 0)
5637 return 0;
Josef Bacik8bb8ab22010-10-15 16:52:49 -04005638
Miao Xie61b520a2011-11-10 20:45:05 -05005639 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005640 if (!ret) {
5641 block_rsv_add_bytes(block_rsv, num_bytes, 1);
5642 return 0;
5643 }
5644
Yan, Zhengf0486c62010-05-16 10:46:25 -04005645 return ret;
5646}
5647
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005648int btrfs_block_rsv_check(struct btrfs_block_rsv *block_rsv, int min_factor)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005649{
5650 u64 num_bytes = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005651 int ret = -ENOSPC;
5652
5653 if (!block_rsv)
5654 return 0;
5655
5656 spin_lock(&block_rsv->lock);
Josef Bacik36ba0222011-10-18 12:15:48 -04005657 num_bytes = div_factor(block_rsv->size, min_factor);
5658 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005659 ret = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005660 spin_unlock(&block_rsv->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005661
Josef Bacik36ba0222011-10-18 12:15:48 -04005662 return ret;
5663}
5664
Miao Xie08e007d2012-10-16 11:33:38 +00005665int btrfs_block_rsv_refill(struct btrfs_root *root,
5666 struct btrfs_block_rsv *block_rsv, u64 min_reserved,
5667 enum btrfs_reserve_flush_enum flush)
Josef Bacik36ba0222011-10-18 12:15:48 -04005668{
5669 u64 num_bytes = 0;
5670 int ret = -ENOSPC;
5671
5672 if (!block_rsv)
5673 return 0;
5674
5675 spin_lock(&block_rsv->lock);
5676 num_bytes = min_reserved;
Josef Bacik13553e52011-08-08 13:33:21 -04005677 if (block_rsv->reserved >= num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04005678 ret = 0;
Josef Bacik13553e52011-08-08 13:33:21 -04005679 else
Yan, Zhengf0486c62010-05-16 10:46:25 -04005680 num_bytes -= block_rsv->reserved;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005681 spin_unlock(&block_rsv->lock);
Josef Bacik13553e52011-08-08 13:33:21 -04005682
Yan, Zhengf0486c62010-05-16 10:46:25 -04005683 if (!ret)
5684 return 0;
5685
Miao Xieaa38a712011-11-18 17:43:00 +08005686 ret = reserve_metadata_bytes(root, block_rsv, num_bytes, flush);
Josef Bacikdabdb642011-08-08 12:50:18 -04005687 if (!ret) {
5688 block_rsv_add_bytes(block_rsv, num_bytes, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005689 return 0;
5690 }
5691
Josef Bacik13553e52011-08-08 13:33:21 -04005692 return ret;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005693}
5694
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005695void btrfs_block_rsv_release(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04005696 struct btrfs_block_rsv *block_rsv,
5697 u64 num_bytes)
5698{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005699 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
5700
Liu Bo17504582013-12-29 21:44:50 +08005701 if (global_rsv == block_rsv ||
Yan, Zhengf0486c62010-05-16 10:46:25 -04005702 block_rsv->space_info != global_rsv->space_info)
5703 global_rsv = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005704 block_rsv_release_bytes(fs_info, block_rsv, global_rsv, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04005705}
5706
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005707static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
5708{
5709 struct btrfs_block_rsv *block_rsv = &fs_info->global_block_rsv;
5710 struct btrfs_space_info *sinfo = block_rsv->space_info;
5711 u64 num_bytes;
5712
Josef Bacikae2e4722016-05-27 12:58:35 -04005713 /*
5714 * The global block rsv is based on the size of the extent tree, the
5715 * checksum tree and the root tree. If the fs is empty we want to set
5716 * it to a minimal amount for safety.
5717 */
5718 num_bytes = btrfs_root_used(&fs_info->extent_root->root_item) +
5719 btrfs_root_used(&fs_info->csum_root->root_item) +
5720 btrfs_root_used(&fs_info->tree_root->root_item);
5721 num_bytes = max_t(u64, num_bytes, SZ_16M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005722
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005723 spin_lock(&sinfo->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005724 spin_lock(&block_rsv->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005725
Byongho Leeee221842015-12-15 01:42:10 +09005726 block_rsv->size = min_t(u64, num_bytes, SZ_512M);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005727
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005728 if (block_rsv->reserved < block_rsv->size) {
Liu Bo41361352017-02-13 15:42:21 -08005729 num_bytes = btrfs_space_info_used(sinfo, true);
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005730 if (sinfo->total_bytes > num_bytes) {
5731 num_bytes = sinfo->total_bytes - num_bytes;
5732 num_bytes = min(num_bytes,
5733 block_rsv->size - block_rsv->reserved);
5734 block_rsv->reserved += num_bytes;
5735 sinfo->bytes_may_use += num_bytes;
5736 trace_btrfs_space_reservation(fs_info, "space_info",
5737 sinfo->flags, num_bytes,
5738 1);
5739 }
5740 } else if (block_rsv->reserved > block_rsv->size) {
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005741 num_bytes = block_rsv->reserved - block_rsv->size;
Josef Bacikfb25e912011-07-26 17:00:46 -04005742 sinfo->bytes_may_use -= num_bytes;
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005743 trace_btrfs_space_reservation(fs_info, "space_info",
Liu Bo2bcc0322012-03-29 09:57:44 -04005744 sinfo->flags, num_bytes, 0);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005745 block_rsv->reserved = block_rsv->size;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005746 }
David Sterba182608c2011-05-05 13:13:16 +02005747
Josef Bacikfb4b10e2016-01-11 17:28:38 -05005748 if (block_rsv->reserved == block_rsv->size)
5749 block_rsv->full = 1;
5750 else
5751 block_rsv->full = 0;
5752
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005753 spin_unlock(&block_rsv->lock);
Stefan Behrens1f699d32012-04-27 12:41:46 -04005754 spin_unlock(&sinfo->lock);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005755}
5756
Yan, Zhengf0486c62010-05-16 10:46:25 -04005757static void init_global_block_rsv(struct btrfs_fs_info *fs_info)
5758{
5759 struct btrfs_space_info *space_info;
5760
5761 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_SYSTEM);
5762 fs_info->chunk_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005763
5764 space_info = __find_space_info(fs_info, BTRFS_BLOCK_GROUP_METADATA);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005765 fs_info->global_block_rsv.space_info = space_info;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005766 fs_info->delalloc_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005767 fs_info->trans_block_rsv.space_info = space_info;
5768 fs_info->empty_block_rsv.space_info = space_info;
Josef Bacik6d668dd2011-11-03 22:54:25 -04005769 fs_info->delayed_block_rsv.space_info = space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005770
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005771 fs_info->extent_root->block_rsv = &fs_info->global_block_rsv;
5772 fs_info->csum_root->block_rsv = &fs_info->global_block_rsv;
5773 fs_info->dev_root->block_rsv = &fs_info->global_block_rsv;
5774 fs_info->tree_root->block_rsv = &fs_info->global_block_rsv;
Stefan Behrens3a6cad92013-05-16 14:48:19 +00005775 if (fs_info->quota_root)
5776 fs_info->quota_root->block_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04005777 fs_info->chunk_root->block_rsv = &fs_info->chunk_block_rsv;
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005778
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005779 update_global_block_rsv(fs_info);
5780}
5781
5782static void release_global_block_rsv(struct btrfs_fs_info *fs_info)
5783{
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05005784 block_rsv_release_bytes(fs_info, &fs_info->global_block_rsv, NULL,
5785 (u64)-1);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04005786 WARN_ON(fs_info->delalloc_block_rsv.size > 0);
5787 WARN_ON(fs_info->delalloc_block_rsv.reserved > 0);
5788 WARN_ON(fs_info->trans_block_rsv.size > 0);
5789 WARN_ON(fs_info->trans_block_rsv.reserved > 0);
5790 WARN_ON(fs_info->chunk_block_rsv.size > 0);
5791 WARN_ON(fs_info->chunk_block_rsv.reserved > 0);
Josef Bacik6d668dd2011-11-03 22:54:25 -04005792 WARN_ON(fs_info->delayed_block_rsv.size > 0);
5793 WARN_ON(fs_info->delayed_block_rsv.reserved > 0);
Josef Bacikfcb80c22011-05-03 10:40:22 -04005794}
5795
Yan, Zhenga22285a2010-05-16 10:48:46 -04005796void btrfs_trans_release_metadata(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005797 struct btrfs_fs_info *fs_info)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005798{
Josef Bacik0e721102012-06-26 16:13:18 -04005799 if (!trans->block_rsv)
5800 return;
5801
Yan, Zhenga22285a2010-05-16 10:48:46 -04005802 if (!trans->bytes_reserved)
5803 return;
5804
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005805 trace_btrfs_space_reservation(fs_info, "transaction",
Liu Bo2bcc0322012-03-29 09:57:44 -04005806 trans->transid, trans->bytes_reserved, 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005807 btrfs_block_rsv_release(fs_info, trans->block_rsv,
5808 trans->bytes_reserved);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005809 trans->bytes_reserved = 0;
5810}
5811
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005812/*
5813 * To be called after all the new block groups attached to the transaction
5814 * handle have been created (btrfs_create_pending_block_groups()).
5815 */
5816void btrfs_trans_release_chunk_metadata(struct btrfs_trans_handle *trans)
5817{
Jeff Mahoney64b63582016-06-20 17:23:41 -04005818 struct btrfs_fs_info *fs_info = trans->fs_info;
Filipe Manana4fbcdf62015-05-20 14:01:54 +01005819
5820 if (!trans->chunk_bytes_reserved)
5821 return;
5822
5823 WARN_ON_ONCE(!list_empty(&trans->new_bgs));
5824
5825 block_rsv_release_bytes(fs_info, &fs_info->chunk_block_rsv, NULL,
5826 trans->chunk_bytes_reserved);
5827 trans->chunk_bytes_reserved = 0;
5828}
5829
Jeff Mahoney79787ea2012-03-12 16:03:00 +01005830/* Can only return 0 or -ENOSPC */
Yan, Zhengd68fc572010-05-16 10:49:58 -04005831int btrfs_orphan_reserve_metadata(struct btrfs_trans_handle *trans,
Nikolay Borisov8ed7a2a2017-02-20 13:50:39 +02005832 struct btrfs_inode *inode)
Yan, Zhengd68fc572010-05-16 10:49:58 -04005833{
Nikolay Borisov8ed7a2a2017-02-20 13:50:39 +02005834 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
5835 struct btrfs_root *root = inode->root;
Josef Bacik40acc3e2016-05-27 13:01:08 -04005836 /*
5837 * We always use trans->block_rsv here as we will have reserved space
5838 * for our orphan when starting the transaction, using get_block_rsv()
5839 * here will sometimes make us choose the wrong block rsv as we could be
5840 * doing a reloc inode for a non refcounted root.
5841 */
5842 struct btrfs_block_rsv *src_rsv = trans->block_rsv;
Yan, Zhengd68fc572010-05-16 10:49:58 -04005843 struct btrfs_block_rsv *dst_rsv = root->orphan_block_rsv;
5844
5845 /*
Josef Bacikfcb80c22011-05-03 10:40:22 -04005846 * We need to hold space in order to delete our orphan item once we've
5847 * added it, so this takes the reservation so we can release it later
5848 * when we are truly done with the orphan item.
Yan, Zhengd68fc572010-05-16 10:49:58 -04005849 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005850 u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
5851
Nikolay Borisov8ed7a2a2017-02-20 13:50:39 +02005852 trace_btrfs_space_reservation(fs_info, "orphan", btrfs_ino(inode),
5853 num_bytes, 1);
Josef Bacik25d609f2016-03-25 13:25:48 -04005854 return btrfs_block_rsv_migrate(src_rsv, dst_rsv, num_bytes, 1);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005855}
5856
Nikolay Borisov703b3912017-02-20 13:50:40 +02005857void btrfs_orphan_release_metadata(struct btrfs_inode *inode)
Yan, Zhengd68fc572010-05-16 10:49:58 -04005858{
Nikolay Borisov703b3912017-02-20 13:50:40 +02005859 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
5860 struct btrfs_root *root = inode->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005861 u64 num_bytes = btrfs_calc_trans_metadata_size(fs_info, 1);
5862
Nikolay Borisov703b3912017-02-20 13:50:40 +02005863 trace_btrfs_space_reservation(fs_info, "orphan", btrfs_ino(inode),
5864 num_bytes, 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005865 btrfs_block_rsv_release(fs_info, root->orphan_block_rsv, num_bytes);
Yan, Zhengd68fc572010-05-16 10:49:58 -04005866}
5867
Miao Xied5c12072013-02-28 10:04:33 +00005868/*
5869 * btrfs_subvolume_reserve_metadata() - reserve space for subvolume operation
5870 * root: the root of the parent directory
5871 * rsv: block reservation
5872 * items: the number of items that we need do reservation
5873 * qgroup_reserved: used to return the reserved size in qgroup
5874 *
5875 * This function is used to reserve the space for snapshot/subvolume
5876 * creation and deletion. Those operations are different with the
5877 * common file/directory operations, they change two fs/file trees
5878 * and root tree, the number of items that the qgroup reserves is
5879 * different with the free space reservation. So we can not use
Nicholas D Steeves01327612016-05-19 21:18:45 -04005880 * the space reservation mechanism in start_transaction().
Miao Xied5c12072013-02-28 10:04:33 +00005881 */
5882int btrfs_subvolume_reserve_metadata(struct btrfs_root *root,
5883 struct btrfs_block_rsv *rsv,
5884 int items,
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005885 u64 *qgroup_reserved,
5886 bool use_global_rsv)
Yan, Zhenga22285a2010-05-16 10:48:46 -04005887{
Miao Xied5c12072013-02-28 10:04:33 +00005888 u64 num_bytes;
5889 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005890 struct btrfs_fs_info *fs_info = root->fs_info;
5891 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Miao Xied5c12072013-02-28 10:04:33 +00005892
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005893 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
Miao Xied5c12072013-02-28 10:04:33 +00005894 /* One for parent inode, two for dir entries */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005895 num_bytes = 3 * fs_info->nodesize;
Jeff Mahoney003d7c52017-01-25 09:50:33 -05005896 ret = btrfs_qgroup_reserve_meta(root, num_bytes, true);
Miao Xied5c12072013-02-28 10:04:33 +00005897 if (ret)
5898 return ret;
5899 } else {
5900 num_bytes = 0;
5901 }
5902
5903 *qgroup_reserved = num_bytes;
5904
Jeff Mahoney0b246af2016-06-22 18:54:23 -04005905 num_bytes = btrfs_calc_trans_metadata_size(fs_info, items);
5906 rsv->space_info = __find_space_info(fs_info,
Miao Xied5c12072013-02-28 10:04:33 +00005907 BTRFS_BLOCK_GROUP_METADATA);
5908 ret = btrfs_block_rsv_add(root, rsv, num_bytes,
5909 BTRFS_RESERVE_FLUSH_ALL);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005910
5911 if (ret == -ENOSPC && use_global_rsv)
Josef Bacik25d609f2016-03-25 13:25:48 -04005912 ret = btrfs_block_rsv_migrate(global_rsv, rsv, num_bytes, 1);
Jeff Mahoneyee3441b2013-07-09 16:37:21 -04005913
Qu Wenruo71741092015-09-08 17:22:41 +08005914 if (ret && *qgroup_reserved)
5915 btrfs_qgroup_free_meta(root, *qgroup_reserved);
Miao Xied5c12072013-02-28 10:04:33 +00005916
5917 return ret;
5918}
5919
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005920void btrfs_subvolume_release_metadata(struct btrfs_fs_info *fs_info,
David Sterba7775c812017-02-10 19:18:18 +01005921 struct btrfs_block_rsv *rsv)
Miao Xied5c12072013-02-28 10:04:33 +00005922{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04005923 btrfs_block_rsv_release(fs_info, rsv, (u64)-1);
Yan, Zhenga22285a2010-05-16 10:48:46 -04005924}
5925
Josef Bacik7709cde2011-08-04 10:25:02 -04005926/**
5927 * drop_outstanding_extent - drop an outstanding extent
5928 * @inode: the inode we're dropping the extent for
Nicholas D Steeves01327612016-05-19 21:18:45 -04005929 * @num_bytes: the number of bytes we're releasing.
Josef Bacik7709cde2011-08-04 10:25:02 -04005930 *
5931 * This is called when we are freeing up an outstanding extent, either called
5932 * after an error or after an extent is written. This will return the number of
5933 * reserved extents that need to be freed. This must be called with
5934 * BTRFS_I(inode)->lock held.
5935 */
Nikolay Borisovbaa3ba32017-02-20 13:50:37 +02005936static unsigned drop_outstanding_extent(struct btrfs_inode *inode,
5937 u64 num_bytes)
Josef Bacik9e0baf62011-07-15 15:16:44 +00005938{
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005939 unsigned drop_inode_space = 0;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005940 unsigned dropped_extents = 0;
David Sterba823bb202017-01-04 11:09:51 +01005941 unsigned num_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005942
David Sterba823bb202017-01-04 11:09:51 +01005943 num_extents = count_max_extents(num_bytes);
Josef Bacikdcab6a32015-02-11 15:08:59 -05005944 ASSERT(num_extents);
Nikolay Borisovbaa3ba32017-02-20 13:50:37 +02005945 ASSERT(inode->outstanding_extents >= num_extents);
5946 inode->outstanding_extents -= num_extents;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005947
Nikolay Borisovbaa3ba32017-02-20 13:50:37 +02005948 if (inode->outstanding_extents == 0 &&
Josef Bacik72ac3c02012-05-23 14:13:11 -04005949 test_and_clear_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
Nikolay Borisovbaa3ba32017-02-20 13:50:37 +02005950 &inode->runtime_flags))
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005951 drop_inode_space = 1;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005952
Josef Bacik9e0baf62011-07-15 15:16:44 +00005953 /*
Nicholas D Steeves01327612016-05-19 21:18:45 -04005954 * If we have more or the same amount of outstanding extents than we have
Josef Bacik9e0baf62011-07-15 15:16:44 +00005955 * reserved then we need to leave the reserved extents count alone.
5956 */
Nikolay Borisovbaa3ba32017-02-20 13:50:37 +02005957 if (inode->outstanding_extents >= inode->reserved_extents)
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005958 return drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005959
Nikolay Borisovbaa3ba32017-02-20 13:50:37 +02005960 dropped_extents = inode->reserved_extents - inode->outstanding_extents;
5961 inode->reserved_extents -= dropped_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05005962 return dropped_extents + drop_inode_space;
Josef Bacik9e0baf62011-07-15 15:16:44 +00005963}
5964
Josef Bacik7709cde2011-08-04 10:25:02 -04005965/**
Nicholas D Steeves01327612016-05-19 21:18:45 -04005966 * calc_csum_metadata_size - return the amount of metadata space that must be
5967 * reserved/freed for the given bytes.
Josef Bacik7709cde2011-08-04 10:25:02 -04005968 * @inode: the inode we're manipulating
5969 * @num_bytes: the number of bytes in question
5970 * @reserve: 1 if we are reserving space, 0 if we are freeing space
5971 *
5972 * This adjusts the number of csum_bytes in the inode and then returns the
5973 * correct amount of metadata that must either be reserved or freed. We
5974 * calculate how many checksums we can fit into one leaf and then divide the
5975 * number of bytes that will need to be checksumed by this value to figure out
5976 * how many checksums will be required. If we are adding bytes then the number
5977 * may go up and we will return the number of additional bytes that must be
5978 * reserved. If it is going down we will return the number of bytes that must
5979 * be freed.
5980 *
5981 * This must be called with BTRFS_I(inode)->lock held.
5982 */
Nikolay Borisov0e6bf9b2017-02-20 13:50:38 +02005983static u64 calc_csum_metadata_size(struct btrfs_inode *inode, u64 num_bytes,
Josef Bacik7709cde2011-08-04 10:25:02 -04005984 int reserve)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04005985{
Nikolay Borisov0e6bf9b2017-02-20 13:50:38 +02005986 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Josef Bacik12621332015-02-03 07:50:16 -08005987 u64 old_csums, num_csums;
Josef Bacik7709cde2011-08-04 10:25:02 -04005988
Nikolay Borisov0e6bf9b2017-02-20 13:50:38 +02005989 if (inode->flags & BTRFS_INODE_NODATASUM && inode->csum_bytes == 0)
Josef Bacik7709cde2011-08-04 10:25:02 -04005990 return 0;
5991
Nikolay Borisov0e6bf9b2017-02-20 13:50:38 +02005992 old_csums = btrfs_csum_bytes_to_leaves(fs_info, inode->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005993 if (reserve)
Nikolay Borisov0e6bf9b2017-02-20 13:50:38 +02005994 inode->csum_bytes += num_bytes;
Josef Bacik7709cde2011-08-04 10:25:02 -04005995 else
Nikolay Borisov0e6bf9b2017-02-20 13:50:38 +02005996 inode->csum_bytes -= num_bytes;
5997 num_csums = btrfs_csum_bytes_to_leaves(fs_info, inode->csum_bytes);
Josef Bacik7709cde2011-08-04 10:25:02 -04005998
5999 /* No change, no need to reserve more */
6000 if (old_csums == num_csums)
6001 return 0;
6002
6003 if (reserve)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006004 return btrfs_calc_trans_metadata_size(fs_info,
Josef Bacik7709cde2011-08-04 10:25:02 -04006005 num_csums - old_csums);
6006
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006007 return btrfs_calc_trans_metadata_size(fs_info, old_csums - num_csums);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006008}
6009
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006010int btrfs_delalloc_reserve_metadata(struct btrfs_inode *inode, u64 num_bytes)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006011{
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006012 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
6013 struct btrfs_root *root = inode->root;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006014 struct btrfs_block_rsv *block_rsv = &fs_info->delalloc_block_rsv;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006015 u64 to_reserve = 0;
Josef Bacik660d3f62011-12-09 11:18:51 -05006016 u64 csum_bytes;
David Sterba823bb202017-01-04 11:09:51 +01006017 unsigned nr_extents;
Miao Xie08e007d2012-10-16 11:33:38 +00006018 enum btrfs_reserve_flush_enum flush = BTRFS_RESERVE_FLUSH_ALL;
Jan Schmidteb6b88d2013-01-27 23:26:00 -07006019 int ret = 0;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006020 bool delalloc_lock = true;
Wang Shilong88e081bf2013-03-01 11:36:01 +00006021 u64 to_free = 0;
6022 unsigned dropped;
Josef Bacik48c3d482016-03-25 13:25:49 -04006023 bool release_extra = false;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006024
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006025 /* If we are a free space inode we need to not flush since we will be in
6026 * the middle of a transaction commit. We also don't need the delalloc
6027 * mutex since we won't race with anybody. We need this mostly to make
6028 * lockdep shut its filthy mouth.
Josef Bacikbac357dc2016-07-20 16:48:45 -07006029 *
6030 * If we have a transaction open (can happen if we call truncate_block
6031 * from truncate), then we need FLUSH_LIMIT so we don't deadlock.
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006032 */
6033 if (btrfs_is_free_space_inode(inode)) {
Miao Xie08e007d2012-10-16 11:33:38 +00006034 flush = BTRFS_RESERVE_NO_FLUSH;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006035 delalloc_lock = false;
Josef Bacikbac357dc2016-07-20 16:48:45 -07006036 } else if (current->journal_info) {
6037 flush = BTRFS_RESERVE_FLUSH_LIMIT;
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006038 }
Josef Bacikc09544e2011-08-30 10:19:10 -04006039
Miao Xie08e007d2012-10-16 11:33:38 +00006040 if (flush != BTRFS_RESERVE_NO_FLUSH &&
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006041 btrfs_transaction_in_commit(fs_info))
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006042 schedule_timeout(1);
6043
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006044 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006045 mutex_lock(&inode->delalloc_mutex);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006046
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006047 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Josef Bacik8bb8ab22010-10-15 16:52:49 -04006048
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006049 spin_lock(&inode->lock);
David Sterba823bb202017-01-04 11:09:51 +01006050 nr_extents = count_max_extents(num_bytes);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006051 inode->outstanding_extents += nr_extents;
Josef Bacik57a45ced2011-01-25 16:30:38 -05006052
Josef Bacik48c3d482016-03-25 13:25:49 -04006053 nr_extents = 0;
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006054 if (inode->outstanding_extents > inode->reserved_extents)
6055 nr_extents += inode->outstanding_extents -
6056 inode->reserved_extents;
Josef Bacik7fd2ae22011-11-08 15:47:34 -05006057
Josef Bacik48c3d482016-03-25 13:25:49 -04006058 /* We always want to reserve a slot for updating the inode. */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006059 to_reserve = btrfs_calc_trans_metadata_size(fs_info, nr_extents + 1);
Josef Bacik7709cde2011-08-04 10:25:02 -04006060 to_reserve += calc_csum_metadata_size(inode, num_bytes, 1);
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006061 csum_bytes = inode->csum_bytes;
6062 spin_unlock(&inode->lock);
Josef Bacik57a45ced2011-01-25 16:30:38 -05006063
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006064 if (test_bit(BTRFS_FS_QUOTA_ENABLED, &fs_info->flags)) {
Qu Wenruo71741092015-09-08 17:22:41 +08006065 ret = btrfs_qgroup_reserve_meta(root,
Jeff Mahoney003d7c52017-01-25 09:50:33 -05006066 nr_extents * fs_info->nodesize, true);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006067 if (ret)
6068 goto out_fail;
Wang Shilonga9870c02013-03-01 11:33:01 +00006069 }
Arne Jansenc5567232011-09-14 15:44:05 +02006070
Josef Bacik48c3d482016-03-25 13:25:49 -04006071 ret = btrfs_block_rsv_add(root, block_rsv, to_reserve, flush);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006072 if (unlikely(ret)) {
Jeff Mahoneyda170662016-06-15 09:22:56 -04006073 btrfs_qgroup_free_meta(root,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006074 nr_extents * fs_info->nodesize);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006075 goto out_fail;
Josef Bacik9e0baf62011-07-15 15:16:44 +00006076 }
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006077
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006078 spin_lock(&inode->lock);
Josef Bacik48c3d482016-03-25 13:25:49 -04006079 if (test_and_set_bit(BTRFS_INODE_DELALLOC_META_RESERVED,
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006080 &inode->runtime_flags)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006081 to_reserve -= btrfs_calc_trans_metadata_size(fs_info, 1);
Josef Bacik48c3d482016-03-25 13:25:49 -04006082 release_extra = true;
Josef Bacik660d3f62011-12-09 11:18:51 -05006083 }
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006084 inode->reserved_extents += nr_extents;
6085 spin_unlock(&inode->lock);
Josef Bacikc64c2bd2012-12-14 13:48:14 -05006086
6087 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006088 mutex_unlock(&inode->delalloc_mutex);
Josef Bacik660d3f62011-12-09 11:18:51 -05006089
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05006090 if (to_reserve)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006091 trace_btrfs_space_reservation(fs_info, "delalloc",
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006092 btrfs_ino(inode), to_reserve, 1);
Josef Bacik48c3d482016-03-25 13:25:49 -04006093 if (release_extra)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006094 btrfs_block_rsv_release(fs_info, block_rsv,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006095 btrfs_calc_trans_metadata_size(fs_info, 1));
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006096 return 0;
Wang Shilong88e081bf2013-03-01 11:36:01 +00006097
6098out_fail:
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006099 spin_lock(&inode->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05006100 dropped = drop_outstanding_extent(inode, num_bytes);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006101 /*
6102 * If the inodes csum_bytes is the same as the original
6103 * csum_bytes then we know we haven't raced with any free()ers
6104 * so we can just reduce our inodes csum bytes and carry on.
Wang Shilong88e081bf2013-03-01 11:36:01 +00006105 */
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006106 if (inode->csum_bytes == csum_bytes) {
Wang Shilong88e081bf2013-03-01 11:36:01 +00006107 calc_csum_metadata_size(inode, num_bytes, 0);
Josef Bacikf4881bc2013-03-25 16:03:35 -04006108 } else {
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006109 u64 orig_csum_bytes = inode->csum_bytes;
Josef Bacikf4881bc2013-03-25 16:03:35 -04006110 u64 bytes;
6111
6112 /*
6113 * This is tricky, but first we need to figure out how much we
Nicholas D Steeves01327612016-05-19 21:18:45 -04006114 * freed from any free-ers that occurred during this
Josef Bacikf4881bc2013-03-25 16:03:35 -04006115 * reservation, so we reset ->csum_bytes to the csum_bytes
6116 * before we dropped our lock, and then call the free for the
6117 * number of bytes that were freed while we were trying our
6118 * reservation.
6119 */
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006120 bytes = csum_bytes - inode->csum_bytes;
6121 inode->csum_bytes = csum_bytes;
Josef Bacikf4881bc2013-03-25 16:03:35 -04006122 to_free = calc_csum_metadata_size(inode, bytes, 0);
6123
6124
6125 /*
6126 * Now we need to see how much we would have freed had we not
6127 * been making this reservation and our ->csum_bytes were not
6128 * artificially inflated.
6129 */
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006130 inode->csum_bytes = csum_bytes - num_bytes;
Josef Bacikf4881bc2013-03-25 16:03:35 -04006131 bytes = csum_bytes - orig_csum_bytes;
6132 bytes = calc_csum_metadata_size(inode, bytes, 0);
6133
6134 /*
6135 * Now reset ->csum_bytes to what it should be. If bytes is
Nicholas D Steeves01327612016-05-19 21:18:45 -04006136 * more than to_free then we would have freed more space had we
Josef Bacikf4881bc2013-03-25 16:03:35 -04006137 * not had an artificially high ->csum_bytes, so we need to free
6138 * the remainder. If bytes is the same or less then we don't
6139 * need to do anything, the other free-ers did the correct
6140 * thing.
6141 */
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006142 inode->csum_bytes = orig_csum_bytes - num_bytes;
Josef Bacikf4881bc2013-03-25 16:03:35 -04006143 if (bytes > to_free)
6144 to_free = bytes - to_free;
6145 else
6146 to_free = 0;
6147 }
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006148 spin_unlock(&inode->lock);
Dongsheng Yange2d1f922015-02-06 10:26:52 -05006149 if (dropped)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006150 to_free += btrfs_calc_trans_metadata_size(fs_info, dropped);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006151
6152 if (to_free) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006153 btrfs_block_rsv_release(fs_info, block_rsv, to_free);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006154 trace_btrfs_space_reservation(fs_info, "delalloc",
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006155 btrfs_ino(inode), to_free, 0);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006156 }
6157 if (delalloc_lock)
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006158 mutex_unlock(&inode->delalloc_mutex);
Wang Shilong88e081bf2013-03-01 11:36:01 +00006159 return ret;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006160}
6161
Josef Bacik7709cde2011-08-04 10:25:02 -04006162/**
6163 * btrfs_delalloc_release_metadata - release a metadata reservation for an inode
6164 * @inode: the inode to release the reservation for
6165 * @num_bytes: the number of bytes we're releasing
6166 *
6167 * This will release the metadata reservation for an inode. This can be called
6168 * once we complete IO for a given set of bytes to release their metadata
6169 * reservations.
6170 */
Nikolay Borisov691fa052017-02-20 13:50:42 +02006171void btrfs_delalloc_release_metadata(struct btrfs_inode *inode, u64 num_bytes)
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006172{
Nikolay Borisov691fa052017-02-20 13:50:42 +02006173 struct btrfs_fs_info *fs_info = btrfs_sb(inode->vfs_inode.i_sb);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006174 u64 to_free = 0;
6175 unsigned dropped;
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006176
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006177 num_bytes = ALIGN(num_bytes, fs_info->sectorsize);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006178 spin_lock(&inode->lock);
Josef Bacikdcab6a32015-02-11 15:08:59 -05006179 dropped = drop_outstanding_extent(inode, num_bytes);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006180
Miao Xie09348562013-02-07 10:12:07 +00006181 if (num_bytes)
6182 to_free = calc_csum_metadata_size(inode, num_bytes, 0);
Nikolay Borisov691fa052017-02-20 13:50:42 +02006183 spin_unlock(&inode->lock);
Josef Bacik9e0baf62011-07-15 15:16:44 +00006184 if (dropped > 0)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006185 to_free += btrfs_calc_trans_metadata_size(fs_info, dropped);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006186
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006187 if (btrfs_is_testing(fs_info))
Josef Bacik6a3891c2015-03-16 17:38:52 -04006188 return;
6189
Nikolay Borisov691fa052017-02-20 13:50:42 +02006190 trace_btrfs_space_reservation(fs_info, "delalloc", btrfs_ino(inode),
6191 to_free, 0);
Arne Jansenc5567232011-09-14 15:44:05 +02006192
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006193 btrfs_block_rsv_release(fs_info, &fs_info->delalloc_block_rsv, to_free);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006194}
6195
Josef Bacik7709cde2011-08-04 10:25:02 -04006196/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006197 * btrfs_delalloc_reserve_space - reserve data and metadata space for
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006198 * delalloc
6199 * @inode: inode we're writing to
6200 * @start: start range we are writing to
6201 * @len: how long the range we are writing to
Qu Wenruo364ecf32017-02-27 15:10:38 +08006202 * @reserved: mandatory parameter, record actually reserved qgroup ranges of
6203 * current reservation.
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006204 *
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006205 * This will do the following things
6206 *
6207 * o reserve space in data space info for num bytes
6208 * and reserve precious corresponding qgroup space
6209 * (Done in check_data_free_space)
6210 *
6211 * o reserve space for metadata space, based on the number of outstanding
6212 * extents and how much csums will be needed
6213 * also reserve metadata space in a per root over-reserve method.
6214 * o add to the inodes->delalloc_bytes
6215 * o add it to the fs_info's delalloc inodes list.
6216 * (Above 3 all done in delalloc_reserve_metadata)
6217 *
6218 * Return 0 for success
6219 * Return <0 for error(-ENOSPC or -EQUOT)
6220 */
Qu Wenruo364ecf32017-02-27 15:10:38 +08006221int btrfs_delalloc_reserve_space(struct inode *inode,
6222 struct extent_changeset **reserved, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006223{
6224 int ret;
6225
Qu Wenruo364ecf32017-02-27 15:10:38 +08006226 ret = btrfs_check_data_free_space(inode, reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006227 if (ret < 0)
6228 return ret;
Nikolay Borisov9f3db422017-02-20 13:50:41 +02006229 ret = btrfs_delalloc_reserve_metadata(BTRFS_I(inode), len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006230 if (ret < 0)
Qu Wenruobc42bda2017-02-27 15:10:39 +08006231 btrfs_free_reserved_data_space(inode, *reserved, start, len);
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006232 return ret;
6233}
6234
6235/**
Qu Wenruo7cf5b972015-09-08 17:25:55 +08006236 * btrfs_delalloc_release_space - release data and metadata space for delalloc
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006237 * @inode: inode we're releasing space for
6238 * @start: start position of the space already reserved
6239 * @len: the len of the space already reserved
6240 *
6241 * This must be matched with a call to btrfs_delalloc_reserve_space. This is
6242 * called in the case that we don't need the metadata AND data reservations
6243 * anymore. So if there is an error or we insert an inline extent.
6244 *
6245 * This function will release the metadata space that was not used and will
6246 * decrement ->delalloc_bytes and remove it from the fs_info delalloc_inodes
6247 * list if there are no delalloc bytes left.
6248 * Also it will handle the qgroup reserved space.
6249 */
Qu Wenruobc42bda2017-02-27 15:10:39 +08006250void btrfs_delalloc_release_space(struct inode *inode,
6251 struct extent_changeset *reserved, u64 start, u64 len)
Qu Wenruo1ada3a62015-09-08 17:25:53 +08006252{
Nikolay Borisov691fa052017-02-20 13:50:42 +02006253 btrfs_delalloc_release_metadata(BTRFS_I(inode), len);
Qu Wenruobc42bda2017-02-27 15:10:39 +08006254 btrfs_free_reserved_data_space(inode, reserved, start, len);
Yan, Zheng0ca1f7c2010-05-16 10:48:47 -04006255}
6256
Josef Bacikce93ec52014-11-17 15:45:48 -05006257static int update_block_group(struct btrfs_trans_handle *trans,
Jeff Mahoney6202df62016-06-22 18:54:22 -04006258 struct btrfs_fs_info *info, u64 bytenr,
Josef Bacikce93ec52014-11-17 15:45:48 -05006259 u64 num_bytes, int alloc)
Chris Mason9078a3e2007-04-26 16:46:15 -04006260{
Josef Bacik0af3d002010-06-21 14:48:16 -04006261 struct btrfs_block_group_cache *cache = NULL;
Chris Masondb945352007-10-15 16:15:53 -04006262 u64 total = num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006263 u64 old_val;
Chris Masondb945352007-10-15 16:15:53 -04006264 u64 byte_in_group;
Josef Bacik0af3d002010-06-21 14:48:16 -04006265 int factor;
Chris Mason3e1ad542007-05-07 20:03:49 -04006266
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006267 /* block accounting for super block */
Miao Xieeb73c1b2013-05-15 07:48:22 +00006268 spin_lock(&info->delalloc_root_lock);
David Sterba6c417612011-04-13 15:41:04 +02006269 old_val = btrfs_super_bytes_used(info->super_copy);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006270 if (alloc)
6271 old_val += num_bytes;
6272 else
6273 old_val -= num_bytes;
David Sterba6c417612011-04-13 15:41:04 +02006274 btrfs_set_super_bytes_used(info->super_copy, old_val);
Miao Xieeb73c1b2013-05-15 07:48:22 +00006275 spin_unlock(&info->delalloc_root_lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006276
Chris Masond3977122009-01-05 21:25:51 -05006277 while (total) {
Chris Masondb945352007-10-15 16:15:53 -04006278 cache = btrfs_lookup_block_group(info, bytenr);
Josef Bacikf3465ca2008-11-12 14:19:50 -05006279 if (!cache)
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006280 return -ENOENT;
Yan, Zhengb742bb822010-05-16 10:46:24 -04006281 if (cache->flags & (BTRFS_BLOCK_GROUP_DUP |
6282 BTRFS_BLOCK_GROUP_RAID1 |
6283 BTRFS_BLOCK_GROUP_RAID10))
6284 factor = 2;
6285 else
6286 factor = 1;
Josef Bacik9d66e232010-08-25 16:54:15 -04006287 /*
6288 * If this block group has free space cache written out, we
6289 * need to make sure to load it if we are removing space. This
6290 * is because we need the unpinning stage to actually add the
6291 * space back to the block group, otherwise we will leak space.
6292 */
6293 if (!alloc && cache->cached == BTRFS_CACHE_NO)
Liu Bof6373bf2012-12-27 09:01:18 +00006294 cache_block_group(cache, 1);
Josef Bacik0af3d002010-06-21 14:48:16 -04006295
Chris Masondb945352007-10-15 16:15:53 -04006296 byte_in_group = bytenr - cache->key.objectid;
6297 WARN_ON(byte_in_group > cache->key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -04006298
Josef Bacik25179202008-10-29 14:49:05 -04006299 spin_lock(&cache->space_info->lock);
Chris Masonc286ac42008-07-22 23:06:41 -04006300 spin_lock(&cache->lock);
Josef Bacik0af3d002010-06-21 14:48:16 -04006301
Jeff Mahoney6202df62016-06-22 18:54:22 -04006302 if (btrfs_test_opt(info, SPACE_CACHE) &&
Josef Bacik0af3d002010-06-21 14:48:16 -04006303 cache->disk_cache_state < BTRFS_DC_CLEAR)
6304 cache->disk_cache_state = BTRFS_DC_CLEAR;
6305
Chris Mason9078a3e2007-04-26 16:46:15 -04006306 old_val = btrfs_block_group_used(&cache->item);
Chris Masondb945352007-10-15 16:15:53 -04006307 num_bytes = min(total, cache->key.offset - byte_in_group);
Chris Masoncd1bc462007-04-27 10:08:34 -04006308 if (alloc) {
Chris Masondb945352007-10-15 16:15:53 -04006309 old_val += num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006310 btrfs_set_block_group_used(&cache->item, old_val);
6311 cache->reserved -= num_bytes;
Yan Zheng11833d62009-09-11 16:11:19 -04006312 cache->space_info->bytes_reserved -= num_bytes;
Yan, Zhengb742bb822010-05-16 10:46:24 -04006313 cache->space_info->bytes_used += num_bytes;
6314 cache->space_info->disk_used += num_bytes * factor;
Chris Masonc286ac42008-07-22 23:06:41 -04006315 spin_unlock(&cache->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006316 spin_unlock(&cache->space_info->lock);
Chris Masoncd1bc462007-04-27 10:08:34 -04006317 } else {
Chris Masondb945352007-10-15 16:15:53 -04006318 old_val -= num_bytes;
Filipe Mananaae0ab002014-11-26 15:28:52 +00006319 btrfs_set_block_group_used(&cache->item, old_val);
6320 cache->pinned += num_bytes;
6321 cache->space_info->bytes_pinned += num_bytes;
6322 cache->space_info->bytes_used -= num_bytes;
6323 cache->space_info->disk_used -= num_bytes * factor;
6324 spin_unlock(&cache->lock);
6325 spin_unlock(&cache->space_info->lock);
Josef Bacik47ab2a62014-09-18 11:20:02 -04006326
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006327 trace_btrfs_space_reservation(info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006328 cache->space_info->flags,
6329 num_bytes, 1);
Omar Sandovald7eae342017-06-06 16:45:31 -07006330 percpu_counter_add(&cache->space_info->total_bytes_pinned,
6331 num_bytes);
Filipe Mananaae0ab002014-11-26 15:28:52 +00006332 set_extent_dirty(info->pinned_extents,
6333 bytenr, bytenr + num_bytes - 1,
6334 GFP_NOFS | __GFP_NOFAIL);
Chris Masoncd1bc462007-04-27 10:08:34 -04006335 }
Chris Mason1bbc6212015-04-06 12:46:08 -07006336
6337 spin_lock(&trans->transaction->dirty_bgs_lock);
6338 if (list_empty(&cache->dirty_list)) {
6339 list_add_tail(&cache->dirty_list,
6340 &trans->transaction->dirty_bgs);
6341 trans->transaction->num_dirty_bgs++;
6342 btrfs_get_block_group(cache);
6343 }
6344 spin_unlock(&trans->transaction->dirty_bgs_lock);
6345
Filipe Manana036a9342015-11-23 15:25:16 +00006346 /*
6347 * No longer have used bytes in this block group, queue it for
6348 * deletion. We do this after adding the block group to the
6349 * dirty list to avoid races between cleaner kthread and space
6350 * cache writeout.
6351 */
6352 if (!alloc && old_val == 0) {
6353 spin_lock(&info->unused_bgs_lock);
6354 if (list_empty(&cache->bg_list)) {
6355 btrfs_get_block_group(cache);
6356 list_add_tail(&cache->bg_list,
6357 &info->unused_bgs);
6358 }
6359 spin_unlock(&info->unused_bgs_lock);
6360 }
6361
Chris Masonfa9c0d792009-04-03 09:47:43 -04006362 btrfs_put_block_group(cache);
Chris Masondb945352007-10-15 16:15:53 -04006363 total -= num_bytes;
6364 bytenr += num_bytes;
Chris Mason9078a3e2007-04-26 16:46:15 -04006365 }
6366 return 0;
6367}
Chris Mason6324fbf2008-03-24 15:01:59 -04006368
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006369static u64 first_logical_byte(struct btrfs_fs_info *fs_info, u64 search_start)
Chris Masona061fc82008-05-07 11:43:44 -04006370{
Josef Bacik0f9dd462008-09-23 13:14:11 -04006371 struct btrfs_block_group_cache *cache;
Yan Zhengd2fb3432008-12-11 16:30:39 -05006372 u64 bytenr;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006373
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006374 spin_lock(&fs_info->block_group_cache_lock);
6375 bytenr = fs_info->first_logical_byte;
6376 spin_unlock(&fs_info->block_group_cache_lock);
Liu Boa1897fd2012-12-27 09:01:23 +00006377
6378 if (bytenr < (u64)-1)
6379 return bytenr;
6380
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006381 cache = btrfs_lookup_first_block_group(fs_info, search_start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04006382 if (!cache)
Chris Masona061fc82008-05-07 11:43:44 -04006383 return 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04006384
Yan Zhengd2fb3432008-12-11 16:30:39 -05006385 bytenr = cache->key.objectid;
Chris Masonfa9c0d792009-04-03 09:47:43 -04006386 btrfs_put_block_group(cache);
Yan Zhengd2fb3432008-12-11 16:30:39 -05006387
6388 return bytenr;
Chris Masona061fc82008-05-07 11:43:44 -04006389}
6390
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006391static int pin_down_extent(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006392 struct btrfs_block_group_cache *cache,
6393 u64 bytenr, u64 num_bytes, int reserved)
Yan324ae4d2007-11-16 14:57:08 -05006394{
Yan Zheng11833d62009-09-11 16:11:19 -04006395 spin_lock(&cache->space_info->lock);
6396 spin_lock(&cache->lock);
6397 cache->pinned += num_bytes;
6398 cache->space_info->bytes_pinned += num_bytes;
6399 if (reserved) {
6400 cache->reserved -= num_bytes;
6401 cache->space_info->bytes_reserved -= num_bytes;
Yan324ae4d2007-11-16 14:57:08 -05006402 }
Yan Zheng11833d62009-09-11 16:11:19 -04006403 spin_unlock(&cache->lock);
6404 spin_unlock(&cache->space_info->lock);
6405
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006406 trace_btrfs_space_reservation(fs_info, "pinned",
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006407 cache->space_info->flags, num_bytes, 1);
Omar Sandoval4da8b762017-06-06 16:45:28 -07006408 percpu_counter_add(&cache->space_info->total_bytes_pinned, num_bytes);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006409 set_extent_dirty(fs_info->pinned_extents, bytenr,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006410 bytenr + num_bytes - 1, GFP_NOFS | __GFP_NOFAIL);
Yan324ae4d2007-11-16 14:57:08 -05006411 return 0;
6412}
Chris Mason9078a3e2007-04-26 16:46:15 -04006413
Yan, Zhengf0486c62010-05-16 10:46:25 -04006414/*
6415 * this function must be called within transaction
6416 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006417int btrfs_pin_extent(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04006418 u64 bytenr, u64 num_bytes, int reserved)
Zheng Yane8569812008-09-26 10:05:48 -04006419{
Yan, Zhengf0486c62010-05-16 10:46:25 -04006420 struct btrfs_block_group_cache *cache;
6421
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006422 cache = btrfs_lookup_block_group(fs_info, bytenr);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006423 BUG_ON(!cache); /* Logic error */
Yan, Zhengf0486c62010-05-16 10:46:25 -04006424
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006425 pin_down_extent(fs_info, cache, bytenr, num_bytes, reserved);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006426
6427 btrfs_put_block_group(cache);
Yan Zheng11833d62009-09-11 16:11:19 -04006428 return 0;
6429}
Zheng Yane8569812008-09-26 10:05:48 -04006430
Yan, Zhengf0486c62010-05-16 10:46:25 -04006431/*
Chris Masone688b7252011-10-31 20:52:39 -04006432 * this function must be called within transaction
Yan, Zhengf0486c62010-05-16 10:46:25 -04006433 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006434int btrfs_pin_extent_for_log_replay(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04006435 u64 bytenr, u64 num_bytes)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006436{
Chris Masone688b7252011-10-31 20:52:39 -04006437 struct btrfs_block_group_cache *cache;
Josef Bacikb50c6e22013-04-25 15:55:30 -04006438 int ret;
Chris Masone688b7252011-10-31 20:52:39 -04006439
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006440 cache = btrfs_lookup_block_group(fs_info, bytenr);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006441 if (!cache)
6442 return -EINVAL;
Chris Masone688b7252011-10-31 20:52:39 -04006443
6444 /*
6445 * pull in the free space cache (if any) so that our pin
6446 * removes the free space from the cache. We have load_only set
6447 * to one because the slow code to read in the free extents does check
6448 * the pinned extents.
6449 */
Liu Bof6373bf2012-12-27 09:01:18 +00006450 cache_block_group(cache, 1);
Chris Masone688b7252011-10-31 20:52:39 -04006451
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006452 pin_down_extent(fs_info, cache, bytenr, num_bytes, 0);
Chris Masone688b7252011-10-31 20:52:39 -04006453
6454 /* remove us from the free space cache (if we're there at all) */
Josef Bacikb50c6e22013-04-25 15:55:30 -04006455 ret = btrfs_remove_free_space(cache, bytenr, num_bytes);
Chris Masone688b7252011-10-31 20:52:39 -04006456 btrfs_put_block_group(cache);
Josef Bacikb50c6e22013-04-25 15:55:30 -04006457 return ret;
Chris Masone688b7252011-10-31 20:52:39 -04006458}
6459
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006460static int __exclude_logged_extent(struct btrfs_fs_info *fs_info,
6461 u64 start, u64 num_bytes)
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006462{
6463 int ret;
6464 struct btrfs_block_group_cache *block_group;
6465 struct btrfs_caching_control *caching_ctl;
6466
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006467 block_group = btrfs_lookup_block_group(fs_info, start);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006468 if (!block_group)
6469 return -EINVAL;
6470
6471 cache_block_group(block_group, 0);
6472 caching_ctl = get_caching_control(block_group);
6473
6474 if (!caching_ctl) {
6475 /* Logic error */
6476 BUG_ON(!block_group_cache_done(block_group));
6477 ret = btrfs_remove_free_space(block_group, start, num_bytes);
6478 } else {
6479 mutex_lock(&caching_ctl->mutex);
6480
6481 if (start >= caching_ctl->progress) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006482 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006483 } else if (start + num_bytes <= caching_ctl->progress) {
6484 ret = btrfs_remove_free_space(block_group,
6485 start, num_bytes);
6486 } else {
6487 num_bytes = caching_ctl->progress - start;
6488 ret = btrfs_remove_free_space(block_group,
6489 start, num_bytes);
6490 if (ret)
6491 goto out_lock;
6492
6493 num_bytes = (start + num_bytes) -
6494 caching_ctl->progress;
6495 start = caching_ctl->progress;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006496 ret = add_excluded_extent(fs_info, start, num_bytes);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006497 }
6498out_lock:
6499 mutex_unlock(&caching_ctl->mutex);
6500 put_caching_control(caching_ctl);
6501 }
6502 btrfs_put_block_group(block_group);
6503 return ret;
6504}
6505
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006506int btrfs_exclude_logged_extents(struct btrfs_fs_info *fs_info,
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006507 struct extent_buffer *eb)
6508{
6509 struct btrfs_file_extent_item *item;
6510 struct btrfs_key key;
6511 int found_type;
6512 int i;
6513
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006514 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS))
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006515 return 0;
6516
6517 for (i = 0; i < btrfs_header_nritems(eb); i++) {
6518 btrfs_item_key_to_cpu(eb, &key, i);
6519 if (key.type != BTRFS_EXTENT_DATA_KEY)
6520 continue;
6521 item = btrfs_item_ptr(eb, i, struct btrfs_file_extent_item);
6522 found_type = btrfs_file_extent_type(eb, item);
6523 if (found_type == BTRFS_FILE_EXTENT_INLINE)
6524 continue;
6525 if (btrfs_file_extent_disk_bytenr(eb, item) == 0)
6526 continue;
6527 key.objectid = btrfs_file_extent_disk_bytenr(eb, item);
6528 key.offset = btrfs_file_extent_disk_num_bytes(eb, item);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006529 __exclude_logged_extent(fs_info, key.objectid, key.offset);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04006530 }
6531
6532 return 0;
6533}
6534
Filipe Manana9cfa3e32016-04-26 15:39:32 +01006535static void
6536btrfs_inc_block_group_reservations(struct btrfs_block_group_cache *bg)
6537{
6538 atomic_inc(&bg->reservations);
6539}
6540
6541void btrfs_dec_block_group_reservations(struct btrfs_fs_info *fs_info,
6542 const u64 start)
6543{
6544 struct btrfs_block_group_cache *bg;
6545
6546 bg = btrfs_lookup_block_group(fs_info, start);
6547 ASSERT(bg);
6548 if (atomic_dec_and_test(&bg->reservations))
6549 wake_up_atomic_t(&bg->reservations);
6550 btrfs_put_block_group(bg);
6551}
6552
6553static int btrfs_wait_bg_reservations_atomic_t(atomic_t *a)
6554{
6555 schedule();
6556 return 0;
6557}
6558
6559void btrfs_wait_block_group_reservations(struct btrfs_block_group_cache *bg)
6560{
6561 struct btrfs_space_info *space_info = bg->space_info;
6562
6563 ASSERT(bg->ro);
6564
6565 if (!(bg->flags & BTRFS_BLOCK_GROUP_DATA))
6566 return;
6567
6568 /*
6569 * Our block group is read only but before we set it to read only,
6570 * some task might have had allocated an extent from it already, but it
6571 * has not yet created a respective ordered extent (and added it to a
6572 * root's list of ordered extents).
6573 * Therefore wait for any task currently allocating extents, since the
6574 * block group's reservations counter is incremented while a read lock
6575 * on the groups' semaphore is held and decremented after releasing
6576 * the read access on that semaphore and creating the ordered extent.
6577 */
6578 down_write(&space_info->groups_sem);
6579 up_write(&space_info->groups_sem);
6580
6581 wait_on_atomic_t(&bg->reservations,
6582 btrfs_wait_bg_reservations_atomic_t,
6583 TASK_UNINTERRUPTIBLE);
6584}
6585
Josef Bacikfb25e912011-07-26 17:00:46 -04006586/**
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006587 * btrfs_add_reserved_bytes - update the block_group and space info counters
Josef Bacikfb25e912011-07-26 17:00:46 -04006588 * @cache: The cache we are manipulating
Wang Xiaoguang18513092016-07-25 15:51:40 +08006589 * @ram_bytes: The number of bytes of file content, and will be same to
6590 * @num_bytes except for the compress path.
Josef Bacikfb25e912011-07-26 17:00:46 -04006591 * @num_bytes: The number of bytes in question
Miao Xiee570fd22014-06-19 10:42:50 +08006592 * @delalloc: The blocks are allocated for the delalloc write
Josef Bacikfb25e912011-07-26 17:00:46 -04006593 *
Xiaoguang Wang745699e2016-09-23 12:38:50 +08006594 * This is called by the allocator when it reserves space. If this is a
6595 * reservation and the block group has become read only we cannot make the
6596 * reservation and return -EAGAIN, otherwise this function always succeeds.
Yan, Zhengf0486c62010-05-16 10:46:25 -04006597 */
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006598static int btrfs_add_reserved_bytes(struct btrfs_block_group_cache *cache,
Wang Xiaoguang18513092016-07-25 15:51:40 +08006599 u64 ram_bytes, u64 num_bytes, int delalloc)
Yan, Zhengf0486c62010-05-16 10:46:25 -04006600{
Josef Bacikfb25e912011-07-26 17:00:46 -04006601 struct btrfs_space_info *space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006602 int ret = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006603
Josef Bacikfb25e912011-07-26 17:00:46 -04006604 spin_lock(&space_info->lock);
6605 spin_lock(&cache->lock);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006606 if (cache->ro) {
6607 ret = -EAGAIN;
Josef Bacikfb25e912011-07-26 17:00:46 -04006608 } else {
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006609 cache->reserved += num_bytes;
6610 space_info->bytes_reserved += num_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006611
Wang Xiaoguang18513092016-07-25 15:51:40 +08006612 trace_btrfs_space_reservation(cache->fs_info,
6613 "space_info", space_info->flags,
6614 ram_bytes, 0);
6615 space_info->bytes_may_use -= ram_bytes;
Miao Xiee570fd22014-06-19 10:42:50 +08006616 if (delalloc)
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006617 cache->delalloc_bytes += num_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006618 }
Josef Bacikfb25e912011-07-26 17:00:46 -04006619 spin_unlock(&cache->lock);
6620 spin_unlock(&space_info->lock);
Yan, Zhengf0486c62010-05-16 10:46:25 -04006621 return ret;
6622}
6623
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08006624/**
6625 * btrfs_free_reserved_bytes - update the block_group and space info counters
6626 * @cache: The cache we are manipulating
6627 * @num_bytes: The number of bytes in question
6628 * @delalloc: The blocks are allocated for the delalloc write
6629 *
6630 * This is called by somebody who is freeing space that was never actually used
6631 * on disk. For example if you reserve some space for a new leaf in transaction
6632 * A and before transaction A commits you free that leaf, you call this with
6633 * reserve set to 0 in order to clear the reservation.
6634 */
6635
6636static int btrfs_free_reserved_bytes(struct btrfs_block_group_cache *cache,
6637 u64 num_bytes, int delalloc)
6638{
6639 struct btrfs_space_info *space_info = cache->space_info;
6640 int ret = 0;
6641
6642 spin_lock(&space_info->lock);
6643 spin_lock(&cache->lock);
6644 if (cache->ro)
6645 space_info->bytes_readonly += num_bytes;
6646 cache->reserved -= num_bytes;
6647 space_info->bytes_reserved -= num_bytes;
6648
6649 if (delalloc)
6650 cache->delalloc_bytes -= num_bytes;
6651 spin_unlock(&cache->lock);
6652 spin_unlock(&space_info->lock);
6653 return ret;
6654}
David Sterba8b74c032017-02-10 19:20:56 +01006655void btrfs_prepare_extent_commit(struct btrfs_fs_info *fs_info)
Yan Zheng11833d62009-09-11 16:11:19 -04006656{
Yan Zheng11833d62009-09-11 16:11:19 -04006657 struct btrfs_caching_control *next;
6658 struct btrfs_caching_control *caching_ctl;
6659 struct btrfs_block_group_cache *cache;
6660
Josef Bacik9e351cc2014-03-13 15:42:13 -04006661 down_write(&fs_info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04006662
6663 list_for_each_entry_safe(caching_ctl, next,
6664 &fs_info->caching_block_groups, list) {
6665 cache = caching_ctl->block_group;
6666 if (block_group_cache_done(cache)) {
6667 cache->last_byte_to_unpin = (u64)-1;
6668 list_del_init(&caching_ctl->list);
6669 put_caching_control(caching_ctl);
6670 } else {
6671 cache->last_byte_to_unpin = caching_ctl->progress;
6672 }
6673 }
6674
6675 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6676 fs_info->pinned_extents = &fs_info->freed_extents[1];
6677 else
6678 fs_info->pinned_extents = &fs_info->freed_extents[0];
6679
Josef Bacik9e351cc2014-03-13 15:42:13 -04006680 up_write(&fs_info->commit_root_sem);
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04006681
6682 update_global_block_rsv(fs_info);
Yan Zheng11833d62009-09-11 16:11:19 -04006683}
6684
Josef Bacikc759c4e2015-10-02 15:25:10 -04006685/*
6686 * Returns the free cluster for the given space info and sets empty_cluster to
6687 * what it should be based on the mount options.
6688 */
6689static struct btrfs_free_cluster *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006690fetch_cluster_info(struct btrfs_fs_info *fs_info,
6691 struct btrfs_space_info *space_info, u64 *empty_cluster)
Josef Bacikc759c4e2015-10-02 15:25:10 -04006692{
6693 struct btrfs_free_cluster *ret = NULL;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006694
6695 *empty_cluster = 0;
6696 if (btrfs_mixed_space_info(space_info))
6697 return ret;
6698
Josef Bacikc759c4e2015-10-02 15:25:10 -04006699 if (space_info->flags & BTRFS_BLOCK_GROUP_METADATA) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006700 ret = &fs_info->meta_alloc_cluster;
Hans van Kranenburg583b7232017-07-28 08:31:28 +02006701 if (btrfs_test_opt(fs_info, SSD))
6702 *empty_cluster = SZ_2M;
6703 else
Byongho Leeee221842015-12-15 01:42:10 +09006704 *empty_cluster = SZ_64K;
Hans van Kranenburg583b7232017-07-28 08:31:28 +02006705 } else if ((space_info->flags & BTRFS_BLOCK_GROUP_DATA) &&
6706 btrfs_test_opt(fs_info, SSD_SPREAD)) {
6707 *empty_cluster = SZ_2M;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006708 ret = &fs_info->data_alloc_cluster;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006709 }
6710
6711 return ret;
6712}
6713
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006714static int unpin_extent_range(struct btrfs_fs_info *fs_info,
6715 u64 start, u64 end,
Filipe Manana678886b2014-12-07 21:31:47 +00006716 const bool return_free_space)
Yan Zheng11833d62009-09-11 16:11:19 -04006717{
Yan Zheng11833d62009-09-11 16:11:19 -04006718 struct btrfs_block_group_cache *cache = NULL;
Josef Bacik7b398f82012-10-22 15:52:28 -04006719 struct btrfs_space_info *space_info;
6720 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006721 struct btrfs_free_cluster *cluster = NULL;
Yan Zheng11833d62009-09-11 16:11:19 -04006722 u64 len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006723 u64 total_unpinned = 0;
6724 u64 empty_cluster = 0;
Josef Bacik7b398f82012-10-22 15:52:28 -04006725 bool readonly;
Yan Zheng11833d62009-09-11 16:11:19 -04006726
6727 while (start <= end) {
Josef Bacik7b398f82012-10-22 15:52:28 -04006728 readonly = false;
Yan Zheng11833d62009-09-11 16:11:19 -04006729 if (!cache ||
6730 start >= cache->key.objectid + cache->key.offset) {
6731 if (cache)
6732 btrfs_put_block_group(cache);
Josef Bacikc759c4e2015-10-02 15:25:10 -04006733 total_unpinned = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04006734 cache = btrfs_lookup_block_group(fs_info, start);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01006735 BUG_ON(!cache); /* Logic error */
Josef Bacikc759c4e2015-10-02 15:25:10 -04006736
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006737 cluster = fetch_cluster_info(fs_info,
Josef Bacikc759c4e2015-10-02 15:25:10 -04006738 cache->space_info,
6739 &empty_cluster);
6740 empty_cluster <<= 1;
Yan Zheng11833d62009-09-11 16:11:19 -04006741 }
6742
6743 len = cache->key.objectid + cache->key.offset - start;
6744 len = min(len, end + 1 - start);
6745
6746 if (start < cache->last_byte_to_unpin) {
6747 len = min(len, cache->last_byte_to_unpin - start);
Filipe Manana678886b2014-12-07 21:31:47 +00006748 if (return_free_space)
6749 btrfs_add_free_space(cache, start, len);
Yan Zheng11833d62009-09-11 16:11:19 -04006750 }
Josef Bacik25179202008-10-29 14:49:05 -04006751
Yan, Zhengf0486c62010-05-16 10:46:25 -04006752 start += len;
Josef Bacikc759c4e2015-10-02 15:25:10 -04006753 total_unpinned += len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006754 space_info = cache->space_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04006755
Josef Bacikc759c4e2015-10-02 15:25:10 -04006756 /*
6757 * If this space cluster has been marked as fragmented and we've
6758 * unpinned enough in this block group to potentially allow a
6759 * cluster to be created inside of it go ahead and clear the
6760 * fragmented check.
6761 */
6762 if (cluster && cluster->fragmented &&
6763 total_unpinned > empty_cluster) {
6764 spin_lock(&cluster->lock);
6765 cluster->fragmented = 0;
6766 spin_unlock(&cluster->lock);
6767 }
6768
Josef Bacik7b398f82012-10-22 15:52:28 -04006769 spin_lock(&space_info->lock);
Josef Bacik25179202008-10-29 14:49:05 -04006770 spin_lock(&cache->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006771 cache->pinned -= len;
Josef Bacik7b398f82012-10-22 15:52:28 -04006772 space_info->bytes_pinned -= len;
Josef Bacikc51e7bb2016-03-25 13:25:54 -04006773
6774 trace_btrfs_space_reservation(fs_info, "pinned",
6775 space_info->flags, len, 0);
Josef Bacik4f4db212015-09-29 11:40:47 -04006776 space_info->max_extent_size = 0;
Liu Bod288db52014-07-02 16:58:01 +08006777 percpu_counter_add(&space_info->total_bytes_pinned, -len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006778 if (cache->ro) {
6779 space_info->bytes_readonly += len;
6780 readonly = true;
6781 }
Josef Bacik25179202008-10-29 14:49:05 -04006782 spin_unlock(&cache->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006783 if (!readonly && return_free_space &&
6784 global_rsv->space_info == space_info) {
6785 u64 to_add = len;
Nikolay Borisov92ac58e2017-08-17 10:52:28 +03006786
Josef Bacik7b398f82012-10-22 15:52:28 -04006787 spin_lock(&global_rsv->lock);
6788 if (!global_rsv->full) {
Josef Bacik957780e2016-05-17 13:30:55 -04006789 to_add = min(len, global_rsv->size -
6790 global_rsv->reserved);
6791 global_rsv->reserved += to_add;
6792 space_info->bytes_may_use += to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006793 if (global_rsv->reserved >= global_rsv->size)
6794 global_rsv->full = 1;
Josef Bacik957780e2016-05-17 13:30:55 -04006795 trace_btrfs_space_reservation(fs_info,
6796 "space_info",
6797 space_info->flags,
6798 to_add, 1);
6799 len -= to_add;
Josef Bacik7b398f82012-10-22 15:52:28 -04006800 }
6801 spin_unlock(&global_rsv->lock);
Josef Bacik957780e2016-05-17 13:30:55 -04006802 /* Add to any tickets we may have */
6803 if (len)
6804 space_info_add_new_bytes(fs_info, space_info,
6805 len);
Josef Bacik7b398f82012-10-22 15:52:28 -04006806 }
6807 spin_unlock(&space_info->lock);
Yan Zheng11833d62009-09-11 16:11:19 -04006808 }
6809
6810 if (cache)
Chris Masonfa9c0d792009-04-03 09:47:43 -04006811 btrfs_put_block_group(cache);
Chris Masonccd467d2007-06-28 15:57:36 -04006812 return 0;
6813}
6814
6815int btrfs_finish_extent_commit(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006816 struct btrfs_fs_info *fs_info)
Chris Masona28ec192007-03-06 20:08:01 -05006817{
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006818 struct btrfs_block_group_cache *block_group, *tmp;
6819 struct list_head *deleted_bgs;
Yan Zheng11833d62009-09-11 16:11:19 -04006820 struct extent_io_tree *unpin;
Chris Mason1a5bc162007-10-15 16:15:26 -04006821 u64 start;
6822 u64 end;
Chris Masona28ec192007-03-06 20:08:01 -05006823 int ret;
Chris Masona28ec192007-03-06 20:08:01 -05006824
Yan Zheng11833d62009-09-11 16:11:19 -04006825 if (fs_info->pinned_extents == &fs_info->freed_extents[0])
6826 unpin = &fs_info->freed_extents[1];
6827 else
6828 unpin = &fs_info->freed_extents[0];
6829
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006830 while (!trans->aborted) {
Filipe Mananad4b450c2015-01-29 19:18:25 +00006831 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Chris Mason1a5bc162007-10-15 16:15:26 -04006832 ret = find_first_extent_bit(unpin, 0, &start, &end,
Josef Bacike6138872012-09-27 17:07:30 -04006833 EXTENT_DIRTY, NULL);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006834 if (ret) {
6835 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masona28ec192007-03-06 20:08:01 -05006836 break;
Filipe Mananad4b450c2015-01-29 19:18:25 +00006837 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05006838
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006839 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006840 ret = btrfs_discard_extent(fs_info, start,
Li Dongyang5378e602011-03-24 10:24:27 +00006841 end + 1 - start, NULL);
Liu Hui1f3c79a2009-01-05 15:57:51 -05006842
David Sterbaaf6f8f62016-04-26 23:54:39 +02006843 clear_extent_dirty(unpin, start, end);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006844 unpin_extent_range(fs_info, start, end, true);
Filipe Mananad4b450c2015-01-29 19:18:25 +00006845 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Chris Masonb9473432009-03-13 11:00:37 -04006846 cond_resched();
Chris Masona28ec192007-03-06 20:08:01 -05006847 }
Josef Bacik817d52f2009-07-13 21:29:25 -04006848
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006849 /*
6850 * Transaction is finished. We don't need the lock anymore. We
6851 * do need to clean up the block groups in case of a transaction
6852 * abort.
6853 */
6854 deleted_bgs = &trans->transaction->deleted_bgs;
6855 list_for_each_entry_safe(block_group, tmp, deleted_bgs, bg_list) {
6856 u64 trimmed = 0;
6857
6858 ret = -EROFS;
6859 if (!trans->aborted)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006860 ret = btrfs_discard_extent(fs_info,
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006861 block_group->key.objectid,
6862 block_group->key.offset,
6863 &trimmed);
6864
6865 list_del_init(&block_group->bg_list);
6866 btrfs_put_block_group_trimming(block_group);
6867 btrfs_put_block_group(block_group);
6868
6869 if (ret) {
6870 const char *errstr = btrfs_decode_error(ret);
6871 btrfs_warn(fs_info,
David Sterba913e1532017-07-13 15:32:18 +02006872 "discard failed while removing blockgroup: errno=%d %s",
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04006873 ret, errstr);
6874 }
6875 }
6876
Chris Masone20d96d2007-03-22 12:13:20 -04006877 return 0;
6878}
6879
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006880static int __btrfs_free_extent(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04006881 struct btrfs_fs_info *info,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006882 struct btrfs_delayed_ref_node *node, u64 parent,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006883 u64 root_objectid, u64 owner_objectid,
6884 u64 owner_offset, int refs_to_drop,
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006885 struct btrfs_delayed_extent_op *extent_op)
Chris Masona28ec192007-03-06 20:08:01 -05006886{
Chris Masone2fa7222007-03-12 16:22:34 -04006887 struct btrfs_key key;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006888 struct btrfs_path *path;
Chris Mason1261ec42007-03-20 20:35:03 -04006889 struct btrfs_root *extent_root = info->extent_root;
Chris Mason5f39d392007-10-15 16:14:19 -04006890 struct extent_buffer *leaf;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006891 struct btrfs_extent_item *ei;
6892 struct btrfs_extent_inline_ref *iref;
Chris Masona28ec192007-03-06 20:08:01 -05006893 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006894 int is_data;
Chris Mason952fcca2008-02-18 16:33:44 -05006895 int extent_slot = 0;
6896 int found_extent = 0;
6897 int num_to_del = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006898 u32 item_size;
6899 u64 refs;
Qu Wenruoc682f9b2015-03-17 16:59:47 +08006900 u64 bytenr = node->bytenr;
6901 u64 num_bytes = node->num_bytes;
Josef Bacikfcebe452014-05-13 17:30:47 -07006902 int last_ref = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04006903 bool skinny_metadata = btrfs_fs_incompat(info, SKINNY_METADATA);
Chris Mason037e6392007-03-07 11:50:24 -05006904
Chris Mason5caf2a02007-04-02 11:20:42 -04006905 path = btrfs_alloc_path();
Chris Mason54aa1f42007-06-22 14:16:25 -04006906 if (!path)
6907 return -ENOMEM;
6908
David Sterbae4058b52015-11-27 16:31:35 +01006909 path->reada = READA_FORWARD;
Chris Masonb9473432009-03-13 11:00:37 -04006910 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006911
6912 is_data = owner_objectid >= BTRFS_FIRST_FREE_OBJECTID;
6913 BUG_ON(!is_data && refs_to_drop != 1);
6914
Josef Bacik3173a182013-03-07 14:22:04 -05006915 if (is_data)
6916 skinny_metadata = 0;
6917
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05006918 ret = lookup_extent_backref(trans, info, path, &iref,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006919 bytenr, num_bytes, parent,
6920 root_objectid, owner_objectid,
6921 owner_offset);
Chris Mason7bb86312007-12-11 09:25:06 -05006922 if (ret == 0) {
Chris Mason952fcca2008-02-18 16:33:44 -05006923 extent_slot = path->slots[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006924 while (extent_slot >= 0) {
6925 btrfs_item_key_to_cpu(path->nodes[0], &key,
Chris Mason952fcca2008-02-18 16:33:44 -05006926 extent_slot);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006927 if (key.objectid != bytenr)
Chris Mason952fcca2008-02-18 16:33:44 -05006928 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006929 if (key.type == BTRFS_EXTENT_ITEM_KEY &&
6930 key.offset == num_bytes) {
Chris Mason952fcca2008-02-18 16:33:44 -05006931 found_extent = 1;
6932 break;
6933 }
Josef Bacik3173a182013-03-07 14:22:04 -05006934 if (key.type == BTRFS_METADATA_ITEM_KEY &&
6935 key.offset == owner_objectid) {
6936 found_extent = 1;
6937 break;
6938 }
Chris Mason952fcca2008-02-18 16:33:44 -05006939 if (path->slots[0] - extent_slot > 5)
6940 break;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006941 extent_slot--;
Chris Mason952fcca2008-02-18 16:33:44 -05006942 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006943#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
6944 item_size = btrfs_item_size_nr(path->nodes[0], extent_slot);
6945 if (found_extent && item_size < sizeof(*ei))
6946 found_extent = 0;
6947#endif
Zheng Yan31840ae2008-09-23 13:14:14 -04006948 if (!found_extent) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006949 BUG_ON(iref);
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05006950 ret = remove_extent_backref(trans, info, path, NULL,
6951 refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07006952 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06006953 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04006954 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06006955 goto out;
6956 }
David Sterbab3b4aa72011-04-21 01:20:15 +02006957 btrfs_release_path(path);
Chris Masonb9473432009-03-13 11:00:37 -04006958 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04006959
6960 key.objectid = bytenr;
6961 key.type = BTRFS_EXTENT_ITEM_KEY;
6962 key.offset = num_bytes;
6963
Josef Bacik3173a182013-03-07 14:22:04 -05006964 if (!is_data && skinny_metadata) {
6965 key.type = BTRFS_METADATA_ITEM_KEY;
6966 key.offset = owner_objectid;
6967 }
6968
Zheng Yan31840ae2008-09-23 13:14:14 -04006969 ret = btrfs_search_slot(trans, extent_root,
6970 &key, path, -1, 1);
Josef Bacik3173a182013-03-07 14:22:04 -05006971 if (ret > 0 && skinny_metadata && path->slots[0]) {
6972 /*
6973 * Couldn't find our skinny metadata item,
6974 * see if we have ye olde extent item.
6975 */
6976 path->slots[0]--;
6977 btrfs_item_key_to_cpu(path->nodes[0], &key,
6978 path->slots[0]);
6979 if (key.objectid == bytenr &&
6980 key.type == BTRFS_EXTENT_ITEM_KEY &&
6981 key.offset == num_bytes)
6982 ret = 0;
6983 }
6984
6985 if (ret > 0 && skinny_metadata) {
6986 skinny_metadata = false;
Filipe Manana9ce49a02014-04-24 15:15:28 +01006987 key.objectid = bytenr;
Josef Bacik3173a182013-03-07 14:22:04 -05006988 key.type = BTRFS_EXTENT_ITEM_KEY;
6989 key.offset = num_bytes;
6990 btrfs_release_path(path);
6991 ret = btrfs_search_slot(trans, extent_root,
6992 &key, path, -1, 1);
6993 }
6994
Josef Bacikf3465ca2008-11-12 14:19:50 -05006995 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04006996 btrfs_err(info,
6997 "umm, got %d back from search, was looking for %llu",
6998 ret, bytenr);
Josef Bacikb783e622011-07-13 15:03:50 +00006999 if (ret > 0)
David Sterbaa4f78752017-06-29 18:37:49 +02007000 btrfs_print_leaf(path->nodes[0]);
Josef Bacikf3465ca2008-11-12 14:19:50 -05007001 }
David Sterba005d6422012-09-18 07:52:32 -06007002 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007003 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007004 goto out;
7005 }
Zheng Yan31840ae2008-09-23 13:14:14 -04007006 extent_slot = path->slots[0];
7007 }
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +05307008 } else if (WARN_ON(ret == -ENOENT)) {
David Sterbaa4f78752017-06-29 18:37:49 +02007009 btrfs_print_leaf(path->nodes[0]);
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00007010 btrfs_err(info,
7011 "unable to find ref byte nr %llu parent %llu root %llu owner %llu offset %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007012 bytenr, parent, root_objectid, owner_objectid,
7013 owner_offset);
Jeff Mahoney66642832016-06-10 18:19:25 -04007014 btrfs_abort_transaction(trans, ret);
Josef Bacikc4a050b2014-03-14 16:36:53 -04007015 goto out;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007016 } else {
Jeff Mahoney66642832016-06-10 18:19:25 -04007017 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007018 goto out;
Chris Mason7bb86312007-12-11 09:25:06 -05007019 }
Chris Mason5f39d392007-10-15 16:14:19 -04007020
7021 leaf = path->nodes[0];
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007022 item_size = btrfs_item_size_nr(leaf, extent_slot);
7023#ifdef BTRFS_COMPAT_EXTENT_TREE_V0
7024 if (item_size < sizeof(*ei)) {
7025 BUG_ON(found_extent || extent_slot != path->slots[0]);
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05007026 ret = convert_extent_item_v0(trans, info, path, owner_objectid,
7027 0);
David Sterba005d6422012-09-18 07:52:32 -06007028 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007029 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007030 goto out;
7031 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007032
David Sterbab3b4aa72011-04-21 01:20:15 +02007033 btrfs_release_path(path);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007034 path->leave_spinning = 1;
7035
7036 key.objectid = bytenr;
7037 key.type = BTRFS_EXTENT_ITEM_KEY;
7038 key.offset = num_bytes;
7039
7040 ret = btrfs_search_slot(trans, extent_root, &key, path,
7041 -1, 1);
7042 if (ret) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007043 btrfs_err(info,
7044 "umm, got %d back from search, was looking for %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02007045 ret, bytenr);
David Sterbaa4f78752017-06-29 18:37:49 +02007046 btrfs_print_leaf(path->nodes[0]);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007047 }
David Sterba005d6422012-09-18 07:52:32 -06007048 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007049 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007050 goto out;
7051 }
7052
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007053 extent_slot = path->slots[0];
7054 leaf = path->nodes[0];
7055 item_size = btrfs_item_size_nr(leaf, extent_slot);
7056 }
7057#endif
7058 BUG_ON(item_size < sizeof(*ei));
Chris Mason952fcca2008-02-18 16:33:44 -05007059 ei = btrfs_item_ptr(leaf, extent_slot,
Chris Mason123abc82007-03-14 14:14:43 -04007060 struct btrfs_extent_item);
Josef Bacik3173a182013-03-07 14:22:04 -05007061 if (owner_objectid < BTRFS_FIRST_FREE_OBJECTID &&
7062 key.type == BTRFS_EXTENT_ITEM_KEY) {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007063 struct btrfs_tree_block_info *bi;
7064 BUG_ON(item_size < sizeof(*ei) + sizeof(*bi));
7065 bi = (struct btrfs_tree_block_info *)(ei + 1);
7066 WARN_ON(owner_objectid != btrfs_tree_block_level(leaf, bi));
Chris Mason952fcca2008-02-18 16:33:44 -05007067 }
7068
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007069 refs = btrfs_extent_refs(leaf, ei);
Josef Bacik32b02532013-04-24 16:38:50 -04007070 if (refs < refs_to_drop) {
Jeff Mahoney5d163e02016-09-20 10:05:00 -04007071 btrfs_err(info,
7072 "trying to drop %d refs but we only have %Lu for bytenr %Lu",
7073 refs_to_drop, refs, bytenr);
Josef Bacik32b02532013-04-24 16:38:50 -04007074 ret = -EINVAL;
Jeff Mahoney66642832016-06-10 18:19:25 -04007075 btrfs_abort_transaction(trans, ret);
Josef Bacik32b02532013-04-24 16:38:50 -04007076 goto out;
7077 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007078 refs -= refs_to_drop;
7079
7080 if (refs > 0) {
7081 if (extent_op)
7082 __run_delayed_extent_op(extent_op, leaf, ei);
7083 /*
7084 * In the case of inline back ref, reference count will
7085 * be updated by remove_extent_backref
7086 */
7087 if (iref) {
7088 BUG_ON(!found_extent);
7089 } else {
7090 btrfs_set_extent_refs(leaf, ei, refs);
7091 btrfs_mark_buffer_dirty(leaf);
7092 }
7093 if (found_extent) {
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05007094 ret = remove_extent_backref(trans, info, path,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007095 iref, refs_to_drop,
Josef Bacikfcebe452014-05-13 17:30:47 -07007096 is_data, &last_ref);
David Sterba005d6422012-09-18 07:52:32 -06007097 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007098 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007099 goto out;
7100 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007101 }
7102 } else {
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007103 if (found_extent) {
7104 BUG_ON(is_data && refs_to_drop !=
Zhaolei9ed0dea2015-08-06 22:16:24 +08007105 extent_data_ref_count(path, iref));
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007106 if (iref) {
7107 BUG_ON(path->slots[0] != extent_slot);
7108 } else {
7109 BUG_ON(path->slots[0] != extent_slot + 1);
7110 path->slots[0] = extent_slot;
7111 num_to_del = 2;
7112 }
Chris Mason78fae272007-03-25 11:35:08 -04007113 }
Chris Masonb9473432009-03-13 11:00:37 -04007114
Josef Bacikfcebe452014-05-13 17:30:47 -07007115 last_ref = 1;
Chris Mason952fcca2008-02-18 16:33:44 -05007116 ret = btrfs_del_items(trans, extent_root, path, path->slots[0],
7117 num_to_del);
David Sterba005d6422012-09-18 07:52:32 -06007118 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007119 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007120 goto out;
7121 }
David Sterbab3b4aa72011-04-21 01:20:15 +02007122 btrfs_release_path(path);
David Woodhouse21af8042008-08-12 14:13:26 +01007123
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007124 if (is_data) {
Jeff Mahoney5b4aace2016-06-21 10:40:19 -04007125 ret = btrfs_del_csums(trans, info, bytenr, num_bytes);
David Sterba005d6422012-09-18 07:52:32 -06007126 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007127 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007128 goto out;
7129 }
Chris Mason459931e2008-12-10 09:10:46 -05007130 }
7131
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007132 ret = add_to_free_space_tree(trans, info, bytenr, num_bytes);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007133 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007134 btrfs_abort_transaction(trans, ret);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07007135 goto out;
7136 }
7137
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007138 ret = update_block_group(trans, info, bytenr, num_bytes, 0);
David Sterba005d6422012-09-18 07:52:32 -06007139 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04007140 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -06007141 goto out;
7142 }
Chris Masona28ec192007-03-06 20:08:01 -05007143 }
Josef Bacikfcebe452014-05-13 17:30:47 -07007144 btrfs_release_path(path);
7145
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007146out:
Chris Mason5caf2a02007-04-02 11:20:42 -04007147 btrfs_free_path(path);
Chris Masona28ec192007-03-06 20:08:01 -05007148 return ret;
7149}
7150
7151/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04007152 * when we free an block, it is possible (and likely) that we free the last
Chris Mason1887be62009-03-13 10:11:24 -04007153 * delayed ref for that extent as well. This searches the delayed ref tree for
7154 * a given extent, and if there are no other delayed refs to be processed, it
7155 * removes it from the tree.
7156 */
7157static noinline int check_ref_cleanup(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007158 u64 bytenr)
Chris Mason1887be62009-03-13 10:11:24 -04007159{
7160 struct btrfs_delayed_ref_head *head;
7161 struct btrfs_delayed_ref_root *delayed_refs;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007162 int ret = 0;
Chris Mason1887be62009-03-13 10:11:24 -04007163
7164 delayed_refs = &trans->transaction->delayed_refs;
7165 spin_lock(&delayed_refs->lock);
Liu Bof72ad18e2017-01-30 12:24:37 -08007166 head = btrfs_find_delayed_ref_head(delayed_refs, bytenr);
Chris Mason1887be62009-03-13 10:11:24 -04007167 if (!head)
Chris Masoncf93da72014-01-29 07:02:40 -08007168 goto out_delayed_unlock;
Chris Mason1887be62009-03-13 10:11:24 -04007169
Josef Bacikd7df2c72014-01-23 09:21:38 -05007170 spin_lock(&head->lock);
Qu Wenruoc6fc2452015-03-30 17:03:00 +08007171 if (!list_empty(&head->ref_list))
Chris Mason1887be62009-03-13 10:11:24 -04007172 goto out;
7173
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007174 if (head->extent_op) {
7175 if (!head->must_insert_reserved)
7176 goto out;
Miao Xie78a61842012-11-21 02:21:28 +00007177 btrfs_free_delayed_extent_op(head->extent_op);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007178 head->extent_op = NULL;
7179 }
7180
Chris Mason1887be62009-03-13 10:11:24 -04007181 /*
7182 * waiting for the lock here would deadlock. If someone else has it
7183 * locked they are already in the process of dropping it anyway
7184 */
7185 if (!mutex_trylock(&head->mutex))
7186 goto out;
7187
7188 /*
7189 * at this point we have a head with no other entries. Go
7190 * ahead and process it.
7191 */
7192 head->node.in_tree = 0;
Liu Boc46effa2013-10-14 12:59:45 +08007193 rb_erase(&head->href_node, &delayed_refs->href_root);
Chris Masonc3e69d52009-03-13 10:17:05 -04007194
Josef Bacikd7df2c72014-01-23 09:21:38 -05007195 atomic_dec(&delayed_refs->num_entries);
Chris Mason1887be62009-03-13 10:11:24 -04007196
7197 /*
7198 * we don't take a ref on the node because we're removing it from the
7199 * tree, so we just steal the ref the tree was holding.
7200 */
Chris Masonc3e69d52009-03-13 10:17:05 -04007201 delayed_refs->num_heads--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05007202 if (head->processing == 0)
Chris Masonc3e69d52009-03-13 10:17:05 -04007203 delayed_refs->num_heads_ready--;
Josef Bacikd7df2c72014-01-23 09:21:38 -05007204 head->processing = 0;
7205 spin_unlock(&head->lock);
Chris Mason1887be62009-03-13 10:11:24 -04007206 spin_unlock(&delayed_refs->lock);
7207
Yan, Zhengf0486c62010-05-16 10:46:25 -04007208 BUG_ON(head->extent_op);
7209 if (head->must_insert_reserved)
7210 ret = 1;
7211
7212 mutex_unlock(&head->mutex);
Chris Mason1887be62009-03-13 10:11:24 -04007213 btrfs_put_delayed_ref(&head->node);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007214 return ret;
Chris Mason1887be62009-03-13 10:11:24 -04007215out:
Josef Bacikd7df2c72014-01-23 09:21:38 -05007216 spin_unlock(&head->lock);
Chris Masoncf93da72014-01-29 07:02:40 -08007217
7218out_delayed_unlock:
Chris Mason1887be62009-03-13 10:11:24 -04007219 spin_unlock(&delayed_refs->lock);
7220 return 0;
7221}
7222
Yan, Zhengf0486c62010-05-16 10:46:25 -04007223void btrfs_free_tree_block(struct btrfs_trans_handle *trans,
7224 struct btrfs_root *root,
7225 struct extent_buffer *buf,
Jan Schmidt5581a512012-05-16 17:04:52 +02007226 u64 parent, int last_ref)
Yan, Zhengf0486c62010-05-16 10:46:25 -04007227{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007228 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacikb150a4f2013-06-19 15:00:04 -04007229 int pin = 1;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007230 int ret;
7231
7232 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Omar Sandovald7eae342017-06-06 16:45:31 -07007233 int old_ref_mod, new_ref_mod;
7234
Omar Sandoval7be07912017-06-06 16:45:30 -07007235 ret = btrfs_add_delayed_tree_ref(fs_info, trans, buf->start,
7236 buf->len, parent,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007237 root->root_key.objectid,
7238 btrfs_header_level(buf),
Omar Sandoval7be07912017-06-06 16:45:30 -07007239 BTRFS_DROP_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007240 &old_ref_mod, &new_ref_mod);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007241 BUG_ON(ret); /* -ENOMEM */
Omar Sandovald7eae342017-06-06 16:45:31 -07007242 pin = old_ref_mod >= 0 && new_ref_mod < 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007243 }
7244
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007245 if (last_ref && btrfs_header_generation(buf) == trans->transid) {
Filipe Manana62198722015-01-06 20:18:45 +00007246 struct btrfs_block_group_cache *cache;
7247
Yan, Zhengf0486c62010-05-16 10:46:25 -04007248 if (root->root_key.objectid != BTRFS_TREE_LOG_OBJECTID) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007249 ret = check_ref_cleanup(trans, buf->start);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007250 if (!ret)
Josef Bacik37be25b2011-08-05 10:25:38 -04007251 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007252 }
7253
Omar Sandoval4da8b762017-06-06 16:45:28 -07007254 pin = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007255 cache = btrfs_lookup_block_group(fs_info, buf->start);
Filipe Manana62198722015-01-06 20:18:45 +00007256
Yan, Zhengf0486c62010-05-16 10:46:25 -04007257 if (btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007258 pin_down_extent(fs_info, cache, buf->start,
7259 buf->len, 1);
Filipe Manana62198722015-01-06 20:18:45 +00007260 btrfs_put_block_group(cache);
Josef Bacik37be25b2011-08-05 10:25:38 -04007261 goto out;
Yan, Zhengf0486c62010-05-16 10:46:25 -04007262 }
7263
7264 WARN_ON(test_bit(EXTENT_BUFFER_DIRTY, &buf->bflags));
7265
7266 btrfs_add_free_space(cache, buf->start, buf->len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08007267 btrfs_free_reserved_bytes(cache, buf->len, 0);
Filipe Manana62198722015-01-06 20:18:45 +00007268 btrfs_put_block_group(cache);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007269 trace_btrfs_reserved_extent_free(fs_info, buf->start, buf->len);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007270 }
7271out:
Josef Bacikb150a4f2013-06-19 15:00:04 -04007272 if (pin)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007273 add_pinned_bytes(fs_info, buf->len, btrfs_header_level(buf),
Josef Bacikb150a4f2013-06-19 15:00:04 -04007274 root->root_key.objectid);
7275
Omar Sandoval0a16c7d2017-06-06 16:45:29 -07007276 if (last_ref) {
7277 /*
7278 * Deleting the buffer, clear the corrupt flag since it doesn't
7279 * matter anymore.
7280 */
7281 clear_bit(EXTENT_BUFFER_CORRUPT, &buf->bflags);
7282 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04007283}
7284
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007285/* Can return -ENOMEM */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007286int btrfs_free_extent(struct btrfs_trans_handle *trans,
7287 struct btrfs_fs_info *fs_info,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007288 u64 bytenr, u64 num_bytes, u64 parent, u64 root_objectid,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01007289 u64 owner, u64 offset)
Chris Mason925baed2008-06-25 16:01:30 -04007290{
Omar Sandovald7eae342017-06-06 16:45:31 -07007291 int old_ref_mod, new_ref_mod;
Chris Mason925baed2008-06-25 16:01:30 -04007292 int ret;
7293
Jeff Mahoneyf5ee5c92016-06-21 09:52:41 -04007294 if (btrfs_is_testing(fs_info))
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04007295 return 0;
David Sterbafccb84c2014-09-29 23:53:21 +02007296
Josef Bacikb150a4f2013-06-19 15:00:04 -04007297
Chris Mason56bec292009-03-13 10:10:06 -04007298 /*
7299 * tree log blocks never actually go into the extent allocation
7300 * tree, just update pinning info and exit early.
Chris Mason56bec292009-03-13 10:10:06 -04007301 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007302 if (root_objectid == BTRFS_TREE_LOG_OBJECTID) {
7303 WARN_ON(owner >= BTRFS_FIRST_FREE_OBJECTID);
Chris Masonb9473432009-03-13 11:00:37 -04007304 /* unlocks the pinned mutex */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007305 btrfs_pin_extent(fs_info, bytenr, num_bytes, 1);
Omar Sandovald7eae342017-06-06 16:45:31 -07007306 old_ref_mod = new_ref_mod = 0;
Chris Mason56bec292009-03-13 10:10:06 -04007307 ret = 0;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007308 } else if (owner < BTRFS_FIRST_FREE_OBJECTID) {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007309 ret = btrfs_add_delayed_tree_ref(fs_info, trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07007310 num_bytes, parent,
7311 root_objectid, (int)owner,
7312 BTRFS_DROP_DELAYED_REF, NULL,
Omar Sandovald7eae342017-06-06 16:45:31 -07007313 &old_ref_mod, &new_ref_mod);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04007314 } else {
Arne Jansen66d7e7f2011-09-12 15:26:38 +02007315 ret = btrfs_add_delayed_data_ref(fs_info, trans, bytenr,
Omar Sandoval7be07912017-06-06 16:45:30 -07007316 num_bytes, parent,
7317 root_objectid, owner, offset,
7318 0, BTRFS_DROP_DELAYED_REF,
Omar Sandovald7eae342017-06-06 16:45:31 -07007319 &old_ref_mod, &new_ref_mod);
Chris Mason56bec292009-03-13 10:10:06 -04007320 }
Omar Sandovald7eae342017-06-06 16:45:31 -07007321
7322 if (ret == 0 && old_ref_mod >= 0 && new_ref_mod < 0)
7323 add_pinned_bytes(fs_info, num_bytes, owner, root_objectid);
7324
Chris Mason925baed2008-06-25 16:01:30 -04007325 return ret;
7326}
7327
Chris Masonfec577f2007-02-26 10:40:21 -05007328/*
Josef Bacik817d52f2009-07-13 21:29:25 -04007329 * when we wait for progress in the block group caching, its because
7330 * our allocation attempt failed at least once. So, we must sleep
7331 * and let some progress happen before we try again.
7332 *
7333 * This function will sleep at least once waiting for new free space to
7334 * show up, and then it will check the block group free space numbers
7335 * for our min num_bytes. Another option is to have it go ahead
7336 * and look in the rbtree for a free extent of a given size, but this
7337 * is a good start.
Josef Bacik36cce922013-08-05 11:15:21 -04007338 *
7339 * Callers of this must check if cache->cached == BTRFS_CACHE_ERROR before using
7340 * any of the information in this block group.
Josef Bacik817d52f2009-07-13 21:29:25 -04007341 */
Josef Bacik36cce922013-08-05 11:15:21 -04007342static noinline void
Josef Bacik817d52f2009-07-13 21:29:25 -04007343wait_block_group_cache_progress(struct btrfs_block_group_cache *cache,
7344 u64 num_bytes)
7345{
Yan Zheng11833d62009-09-11 16:11:19 -04007346 struct btrfs_caching_control *caching_ctl;
Josef Bacik817d52f2009-07-13 21:29:25 -04007347
Yan Zheng11833d62009-09-11 16:11:19 -04007348 caching_ctl = get_caching_control(cache);
7349 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007350 return;
Josef Bacik817d52f2009-07-13 21:29:25 -04007351
Yan Zheng11833d62009-09-11 16:11:19 -04007352 wait_event(caching_ctl->wait, block_group_cache_done(cache) ||
Li Zefan34d52cb2011-03-29 13:46:06 +08007353 (cache->free_space_ctl->free_space >= num_bytes));
Yan Zheng11833d62009-09-11 16:11:19 -04007354
7355 put_caching_control(caching_ctl);
Yan Zheng11833d62009-09-11 16:11:19 -04007356}
7357
7358static noinline int
7359wait_block_group_cache_done(struct btrfs_block_group_cache *cache)
7360{
7361 struct btrfs_caching_control *caching_ctl;
Josef Bacik36cce922013-08-05 11:15:21 -04007362 int ret = 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007363
7364 caching_ctl = get_caching_control(cache);
7365 if (!caching_ctl)
Josef Bacik36cce922013-08-05 11:15:21 -04007366 return (cache->cached == BTRFS_CACHE_ERROR) ? -EIO : 0;
Yan Zheng11833d62009-09-11 16:11:19 -04007367
7368 wait_event(caching_ctl->wait, block_group_cache_done(cache));
Josef Bacik36cce922013-08-05 11:15:21 -04007369 if (cache->cached == BTRFS_CACHE_ERROR)
7370 ret = -EIO;
Yan Zheng11833d62009-09-11 16:11:19 -04007371 put_caching_control(caching_ctl);
Josef Bacik36cce922013-08-05 11:15:21 -04007372 return ret;
Josef Bacik817d52f2009-07-13 21:29:25 -04007373}
7374
Liu Bo31e50222012-11-21 14:18:10 +00007375int __get_raid_index(u64 flags)
Yan, Zhengb742bb822010-05-16 10:46:24 -04007376{
Ilya Dryomov7738a532012-03-27 17:09:17 +03007377 if (flags & BTRFS_BLOCK_GROUP_RAID10)
Miao Xiee6ec7162013-01-17 05:38:51 +00007378 return BTRFS_RAID_RAID10;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007379 else if (flags & BTRFS_BLOCK_GROUP_RAID1)
Miao Xiee6ec7162013-01-17 05:38:51 +00007380 return BTRFS_RAID_RAID1;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007381 else if (flags & BTRFS_BLOCK_GROUP_DUP)
Miao Xiee6ec7162013-01-17 05:38:51 +00007382 return BTRFS_RAID_DUP;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007383 else if (flags & BTRFS_BLOCK_GROUP_RAID0)
Miao Xiee6ec7162013-01-17 05:38:51 +00007384 return BTRFS_RAID_RAID0;
David Woodhouse53b381b2013-01-29 18:40:14 -05007385 else if (flags & BTRFS_BLOCK_GROUP_RAID5)
Chris Masone942f882013-02-20 14:06:05 -05007386 return BTRFS_RAID_RAID5;
David Woodhouse53b381b2013-01-29 18:40:14 -05007387 else if (flags & BTRFS_BLOCK_GROUP_RAID6)
Chris Masone942f882013-02-20 14:06:05 -05007388 return BTRFS_RAID_RAID6;
Ilya Dryomov7738a532012-03-27 17:09:17 +03007389
Chris Masone942f882013-02-20 14:06:05 -05007390 return BTRFS_RAID_SINGLE; /* BTRFS_BLOCK_GROUP_SINGLE */
Yan, Zhengb742bb822010-05-16 10:46:24 -04007391}
7392
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007393int get_block_group_index(struct btrfs_block_group_cache *cache)
Ilya Dryomov7738a532012-03-27 17:09:17 +03007394{
Liu Bo31e50222012-11-21 14:18:10 +00007395 return __get_raid_index(cache->flags);
Ilya Dryomov7738a532012-03-27 17:09:17 +03007396}
7397
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007398static const char *btrfs_raid_type_names[BTRFS_NR_RAID_TYPES] = {
7399 [BTRFS_RAID_RAID10] = "raid10",
7400 [BTRFS_RAID_RAID1] = "raid1",
7401 [BTRFS_RAID_DUP] = "dup",
7402 [BTRFS_RAID_RAID0] = "raid0",
7403 [BTRFS_RAID_SINGLE] = "single",
7404 [BTRFS_RAID_RAID5] = "raid5",
7405 [BTRFS_RAID_RAID6] = "raid6",
7406};
7407
Jeff Mahoney1b8e5df2013-11-20 16:50:23 -05007408static const char *get_raid_name(enum btrfs_raid_types type)
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04007409{
7410 if (type >= BTRFS_NR_RAID_TYPES)
7411 return NULL;
7412
7413 return btrfs_raid_type_names[type];
7414}
7415
Josef Bacik817d52f2009-07-13 21:29:25 -04007416enum btrfs_loop_type {
Josef Bacik285ff5a2012-01-13 15:27:45 -05007417 LOOP_CACHING_NOWAIT = 0,
7418 LOOP_CACHING_WAIT = 1,
7419 LOOP_ALLOC_CHUNK = 2,
7420 LOOP_NO_EMPTY_SIZE = 3,
Josef Bacik817d52f2009-07-13 21:29:25 -04007421};
7422
Miao Xiee570fd22014-06-19 10:42:50 +08007423static inline void
7424btrfs_lock_block_group(struct btrfs_block_group_cache *cache,
7425 int delalloc)
7426{
7427 if (delalloc)
7428 down_read(&cache->data_rwsem);
7429}
7430
7431static inline void
7432btrfs_grab_block_group(struct btrfs_block_group_cache *cache,
7433 int delalloc)
7434{
7435 btrfs_get_block_group(cache);
7436 if (delalloc)
7437 down_read(&cache->data_rwsem);
7438}
7439
7440static struct btrfs_block_group_cache *
7441btrfs_lock_cluster(struct btrfs_block_group_cache *block_group,
7442 struct btrfs_free_cluster *cluster,
7443 int delalloc)
7444{
Sudip Mukherjee89771cc2016-02-16 13:32:47 +05307445 struct btrfs_block_group_cache *used_bg = NULL;
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007446
Miao Xiee570fd22014-06-19 10:42:50 +08007447 spin_lock(&cluster->refill_lock);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007448 while (1) {
7449 used_bg = cluster->block_group;
7450 if (!used_bg)
7451 return NULL;
7452
7453 if (used_bg == block_group)
7454 return used_bg;
7455
7456 btrfs_get_block_group(used_bg);
7457
7458 if (!delalloc)
7459 return used_bg;
7460
7461 if (down_read_trylock(&used_bg->data_rwsem))
7462 return used_bg;
7463
7464 spin_unlock(&cluster->refill_lock);
7465
Liu Boe321f8a2016-11-30 16:11:04 -08007466 /* We should only have one-level nested. */
7467 down_read_nested(&used_bg->data_rwsem, SINGLE_DEPTH_NESTING);
Geert Uytterhoeven6719afd2014-06-22 14:30:09 +02007468
7469 spin_lock(&cluster->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007470 if (used_bg == cluster->block_group)
7471 return used_bg;
7472
7473 up_read(&used_bg->data_rwsem);
7474 btrfs_put_block_group(used_bg);
7475 }
Miao Xiee570fd22014-06-19 10:42:50 +08007476}
7477
7478static inline void
7479btrfs_release_block_group(struct btrfs_block_group_cache *cache,
7480 int delalloc)
7481{
7482 if (delalloc)
7483 up_read(&cache->data_rwsem);
7484 btrfs_put_block_group(cache);
7485}
7486
Josef Bacik817d52f2009-07-13 21:29:25 -04007487/*
Chris Masonfec577f2007-02-26 10:40:21 -05007488 * walks the btree of allocated extents and find a hole of a given size.
7489 * The key ins is changed to record the hole:
Miao Xiea4820392013-09-09 13:19:42 +08007490 * ins->objectid == start position
Chris Mason62e27492007-03-15 12:56:47 -04007491 * ins->flags = BTRFS_EXTENT_ITEM_KEY
Miao Xiea4820392013-09-09 13:19:42 +08007492 * ins->offset == the size of the hole.
Chris Masonfec577f2007-02-26 10:40:21 -05007493 * Any available blocks before search_start are skipped.
Miao Xiea4820392013-09-09 13:19:42 +08007494 *
7495 * If there is no suitable free space, we will record the max size of
7496 * the free space extent currently.
Chris Masonfec577f2007-02-26 10:40:21 -05007497 */
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05007498static noinline int find_free_extent(struct btrfs_fs_info *fs_info,
Wang Xiaoguang18513092016-07-25 15:51:40 +08007499 u64 ram_bytes, u64 num_bytes, u64 empty_size,
7500 u64 hint_byte, struct btrfs_key *ins,
7501 u64 flags, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05007502{
Josef Bacik80eb2342008-10-29 14:49:05 -04007503 int ret = 0;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007504 struct btrfs_root *root = fs_info->extent_root;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007505 struct btrfs_free_cluster *last_ptr = NULL;
Josef Bacik80eb2342008-10-29 14:49:05 -04007506 struct btrfs_block_group_cache *block_group = NULL;
Josef Bacik81c9ad22012-01-18 10:56:06 -05007507 u64 search_start = 0;
Miao Xiea4820392013-09-09 13:19:42 +08007508 u64 max_extent_size = 0;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007509 u64 empty_cluster = 0;
Josef Bacik80eb2342008-10-29 14:49:05 -04007510 struct btrfs_space_info *space_info;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007511 int loop = 0;
David Sterbab6919a52013-04-29 13:39:40 +00007512 int index = __get_raid_index(flags);
Josef Bacik0a243252009-09-11 16:11:20 -04007513 bool failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007514 bool failed_alloc = false;
Josef Bacik67377732010-09-16 16:19:09 -04007515 bool use_cluster = true;
Miao Xie60d2adb2011-09-09 17:34:35 +08007516 bool have_caching_bg = false;
chandan13a0db52015-11-02 13:59:46 +05307517 bool orig_have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007518 bool full_search = false;
Chris Masonfec577f2007-02-26 10:40:21 -05007519
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007520 WARN_ON(num_bytes < fs_info->sectorsize);
David Sterba962a2982014-06-04 18:41:45 +02007521 ins->type = BTRFS_EXTENT_ITEM_KEY;
Josef Bacik80eb2342008-10-29 14:49:05 -04007522 ins->objectid = 0;
7523 ins->offset = 0;
Chris Masonb1a4d962007-04-04 15:27:52 -04007524
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007525 trace_find_free_extent(fs_info, num_bytes, empty_size, flags);
Josef Bacik3f7de032011-11-10 08:29:20 -05007526
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007527 space_info = __find_space_info(fs_info, flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007528 if (!space_info) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007529 btrfs_err(fs_info, "No space info for %llu", flags);
Josef Bacik1b1d1f62010-03-19 20:49:55 +00007530 return -ENOSPC;
7531 }
Josef Bacik2552d172009-04-03 10:14:19 -04007532
Josef Bacik67377732010-09-16 16:19:09 -04007533 /*
Josef Bacik4f4db212015-09-29 11:40:47 -04007534 * If our free space is heavily fragmented we may not be able to make
7535 * big contiguous allocations, so instead of doing the expensive search
7536 * for free space, simply return ENOSPC with our max_extent_size so we
7537 * can go ahead and search for a more manageable chunk.
7538 *
7539 * If our max_extent_size is large enough for our allocation simply
7540 * disable clustering since we will likely not be able to find enough
7541 * space to create a cluster and induce latency trying.
Josef Bacik67377732010-09-16 16:19:09 -04007542 */
Josef Bacik4f4db212015-09-29 11:40:47 -04007543 if (unlikely(space_info->max_extent_size)) {
7544 spin_lock(&space_info->lock);
7545 if (space_info->max_extent_size &&
7546 num_bytes > space_info->max_extent_size) {
7547 ins->offset = space_info->max_extent_size;
7548 spin_unlock(&space_info->lock);
7549 return -ENOSPC;
7550 } else if (space_info->max_extent_size) {
7551 use_cluster = false;
7552 }
7553 spin_unlock(&space_info->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007554 }
7555
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007556 last_ptr = fetch_cluster_info(fs_info, space_info, &empty_cluster);
Chris Mason239b14b2008-03-24 15:02:07 -04007557 if (last_ptr) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007558 spin_lock(&last_ptr->lock);
7559 if (last_ptr->block_group)
7560 hint_byte = last_ptr->window_start;
Josef Bacikc759c4e2015-10-02 15:25:10 -04007561 if (last_ptr->fragmented) {
7562 /*
7563 * We still set window_start so we can keep track of the
7564 * last place we found an allocation to try and save
7565 * some time.
7566 */
7567 hint_byte = last_ptr->window_start;
7568 use_cluster = false;
7569 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007570 spin_unlock(&last_ptr->lock);
Chris Mason239b14b2008-03-24 15:02:07 -04007571 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007572
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007573 search_start = max(search_start, first_logical_byte(fs_info, 0));
Chris Mason239b14b2008-03-24 15:02:07 -04007574 search_start = max(search_start, hint_byte);
Josef Bacik2552d172009-04-03 10:14:19 -04007575 if (search_start == hint_byte) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007576 block_group = btrfs_lookup_block_group(fs_info, search_start);
Josef Bacik817d52f2009-07-13 21:29:25 -04007577 /*
7578 * we don't want to use the block group if it doesn't match our
7579 * allocation bits, or if its not cached.
Josef Bacikccf0e722009-11-10 21:23:48 -05007580 *
7581 * However if we are re-searching with an ideal block group
7582 * picked out then we don't care that the block group is cached.
Josef Bacik817d52f2009-07-13 21:29:25 -04007583 */
David Sterbab6919a52013-04-29 13:39:40 +00007584 if (block_group && block_group_bits(block_group, flags) &&
Josef Bacik285ff5a2012-01-13 15:27:45 -05007585 block_group->cached != BTRFS_CACHE_NO) {
Josef Bacik2552d172009-04-03 10:14:19 -04007586 down_read(&space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -04007587 if (list_empty(&block_group->list) ||
7588 block_group->ro) {
7589 /*
7590 * someone is removing this block group,
7591 * we can't jump into the have_block_group
7592 * target because our list pointers are not
7593 * valid
7594 */
7595 btrfs_put_block_group(block_group);
7596 up_read(&space_info->groups_sem);
Josef Bacikccf0e722009-11-10 21:23:48 -05007597 } else {
Yan, Zhengb742bb822010-05-16 10:46:24 -04007598 index = get_block_group_index(block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007599 btrfs_lock_block_group(block_group, delalloc);
Chris Mason44fb5512009-06-04 15:34:51 -04007600 goto have_block_group;
Josef Bacikccf0e722009-11-10 21:23:48 -05007601 }
Josef Bacik2552d172009-04-03 10:14:19 -04007602 } else if (block_group) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04007603 btrfs_put_block_group(block_group);
Josef Bacik2552d172009-04-03 10:14:19 -04007604 }
Chris Mason42e70e72008-11-07 18:17:11 -05007605 }
Josef Bacik2552d172009-04-03 10:14:19 -04007606search:
Miao Xie60d2adb2011-09-09 17:34:35 +08007607 have_caching_bg = false;
Josef Bacika5e681d2015-10-01 14:54:10 -04007608 if (index == 0 || index == __get_raid_index(flags))
7609 full_search = true;
Josef Bacik80eb2342008-10-29 14:49:05 -04007610 down_read(&space_info->groups_sem);
Yan, Zhengb742bb822010-05-16 10:46:24 -04007611 list_for_each_entry(block_group, &space_info->block_groups[index],
7612 list) {
Josef Bacik6226cb02009-04-03 10:14:18 -04007613 u64 offset;
Josef Bacik817d52f2009-07-13 21:29:25 -04007614 int cached;
Chris Mason8a1413a22008-11-10 16:13:54 -05007615
Jeff Mahoney14443932017-07-19 23:25:51 -04007616 /* If the block group is read-only, we can skip it entirely. */
7617 if (unlikely(block_group->ro))
7618 continue;
7619
Miao Xiee570fd22014-06-19 10:42:50 +08007620 btrfs_grab_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007621 search_start = block_group->key.objectid;
Chris Mason42e70e72008-11-07 18:17:11 -05007622
Chris Mason83a50de2010-12-13 15:06:46 -05007623 /*
7624 * this can happen if we end up cycling through all the
7625 * raid types, but we want to make sure we only allocate
7626 * for the proper type.
7627 */
David Sterbab6919a52013-04-29 13:39:40 +00007628 if (!block_group_bits(block_group, flags)) {
Chris Mason83a50de2010-12-13 15:06:46 -05007629 u64 extra = BTRFS_BLOCK_GROUP_DUP |
7630 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -05007631 BTRFS_BLOCK_GROUP_RAID5 |
7632 BTRFS_BLOCK_GROUP_RAID6 |
Chris Mason83a50de2010-12-13 15:06:46 -05007633 BTRFS_BLOCK_GROUP_RAID10;
7634
7635 /*
7636 * if they asked for extra copies and this block group
7637 * doesn't provide them, bail. This does allow us to
7638 * fill raid0 from raid1.
7639 */
David Sterbab6919a52013-04-29 13:39:40 +00007640 if ((flags & extra) && !(block_group->flags & extra))
Chris Mason83a50de2010-12-13 15:06:46 -05007641 goto loop;
7642 }
7643
Josef Bacik2552d172009-04-03 10:14:19 -04007644have_block_group:
Josef Bacik291c7d22011-11-14 13:52:14 -05007645 cached = block_group_cache_done(block_group);
7646 if (unlikely(!cached)) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007647 have_caching_bg = true;
Liu Bof6373bf2012-12-27 09:01:18 +00007648 ret = cache_block_group(block_group, 0);
Chris Mason1d4284b2012-03-28 20:31:37 -04007649 BUG_ON(ret < 0);
7650 ret = 0;
Josef Bacikea6a4782008-11-20 12:16:16 -05007651 }
7652
Josef Bacik36cce922013-08-05 11:15:21 -04007653 if (unlikely(block_group->cached == BTRFS_CACHE_ERROR))
7654 goto loop;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007655
Josef Bacik0a243252009-09-11 16:11:20 -04007656 /*
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007657 * Ok we want to try and use the cluster allocator, so
7658 * lets look there
Josef Bacik0a243252009-09-11 16:11:20 -04007659 */
Josef Bacikc759c4e2015-10-02 15:25:10 -04007660 if (last_ptr && use_cluster) {
Miao Xie215a63d2014-01-15 20:00:56 +08007661 struct btrfs_block_group_cache *used_block_group;
Chris Mason8de972b2013-01-04 15:39:43 -05007662 unsigned long aligned_cluster;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007663 /*
7664 * the refill lock keeps out other
7665 * people trying to start a new cluster
7666 */
Miao Xiee570fd22014-06-19 10:42:50 +08007667 used_block_group = btrfs_lock_cluster(block_group,
7668 last_ptr,
7669 delalloc);
7670 if (!used_block_group)
Chris Mason44fb5512009-06-04 15:34:51 -04007671 goto refill_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -04007672
Miao Xiee570fd22014-06-19 10:42:50 +08007673 if (used_block_group != block_group &&
7674 (used_block_group->ro ||
7675 !block_group_bits(used_block_group, flags)))
7676 goto release_cluster;
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007677
7678 offset = btrfs_alloc_from_cluster(used_block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007679 last_ptr,
7680 num_bytes,
7681 used_block_group->key.objectid,
7682 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007683 if (offset) {
7684 /* we have a block, we're done */
7685 spin_unlock(&last_ptr->refill_lock);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007686 trace_btrfs_reserve_extent_cluster(fs_info,
Miao Xie89d43462014-01-15 20:00:57 +08007687 used_block_group,
7688 search_start, num_bytes);
Miao Xie215a63d2014-01-15 20:00:56 +08007689 if (used_block_group != block_group) {
Miao Xiee570fd22014-06-19 10:42:50 +08007690 btrfs_release_block_group(block_group,
7691 delalloc);
Miao Xie215a63d2014-01-15 20:00:56 +08007692 block_group = used_block_group;
7693 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007694 goto checks;
7695 }
7696
Alexandre Oliva274bd4f2011-12-07 20:08:40 -05007697 WARN_ON(last_ptr->block_group != used_block_group);
Miao Xiee570fd22014-06-19 10:42:50 +08007698release_cluster:
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007699 /* If we are on LOOP_NO_EMPTY_SIZE, we can't
7700 * set up a new clusters, so lets just skip it
7701 * and let the allocator find whatever block
7702 * it can find. If we reach this point, we
7703 * will have tried the cluster allocator
7704 * plenty of times and not have found
7705 * anything, so we are likely way too
7706 * fragmented for the clustering stuff to find
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007707 * anything.
7708 *
7709 * However, if the cluster is taken from the
7710 * current block group, release the cluster
7711 * first, so that we stand a better chance of
7712 * succeeding in the unclustered
7713 * allocation. */
7714 if (loop >= LOOP_NO_EMPTY_SIZE &&
Miao Xiee570fd22014-06-19 10:42:50 +08007715 used_block_group != block_group) {
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007716 spin_unlock(&last_ptr->refill_lock);
Miao Xiee570fd22014-06-19 10:42:50 +08007717 btrfs_release_block_group(used_block_group,
7718 delalloc);
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007719 goto unclustered_alloc;
7720 }
7721
Chris Masonfa9c0d792009-04-03 09:47:43 -04007722 /*
7723 * this cluster didn't work out, free it and
7724 * start over
7725 */
7726 btrfs_return_cluster_to_free_space(NULL, last_ptr);
7727
Miao Xiee570fd22014-06-19 10:42:50 +08007728 if (used_block_group != block_group)
7729 btrfs_release_block_group(used_block_group,
7730 delalloc);
7731refill_cluster:
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007732 if (loop >= LOOP_NO_EMPTY_SIZE) {
7733 spin_unlock(&last_ptr->refill_lock);
7734 goto unclustered_alloc;
7735 }
7736
Chris Mason8de972b2013-01-04 15:39:43 -05007737 aligned_cluster = max_t(unsigned long,
7738 empty_cluster + empty_size,
7739 block_group->full_stripe_len);
7740
Chris Masonfa9c0d792009-04-03 09:47:43 -04007741 /* allocate a cluster in this block group */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007742 ret = btrfs_find_space_cluster(fs_info, block_group,
Josef Bacik00361582013-08-14 14:02:47 -04007743 last_ptr, search_start,
7744 num_bytes,
7745 aligned_cluster);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007746 if (ret == 0) {
7747 /*
7748 * now pull our allocation out of this
7749 * cluster
7750 */
7751 offset = btrfs_alloc_from_cluster(block_group,
Miao Xiea4820392013-09-09 13:19:42 +08007752 last_ptr,
7753 num_bytes,
7754 search_start,
7755 &max_extent_size);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007756 if (offset) {
7757 /* we found one, proceed */
7758 spin_unlock(&last_ptr->refill_lock);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007759 trace_btrfs_reserve_extent_cluster(fs_info,
Josef Bacik3f7de032011-11-10 08:29:20 -05007760 block_group, search_start,
7761 num_bytes);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007762 goto checks;
7763 }
Josef Bacik0a243252009-09-11 16:11:20 -04007764 } else if (!cached && loop > LOOP_CACHING_NOWAIT
7765 && !failed_cluster_refill) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007766 spin_unlock(&last_ptr->refill_lock);
7767
Josef Bacik0a243252009-09-11 16:11:20 -04007768 failed_cluster_refill = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007769 wait_block_group_cache_progress(block_group,
7770 num_bytes + empty_cluster + empty_size);
7771 goto have_block_group;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007772 }
Josef Bacik817d52f2009-07-13 21:29:25 -04007773
Chris Masonfa9c0d792009-04-03 09:47:43 -04007774 /*
7775 * at this point we either didn't find a cluster
7776 * or we weren't able to allocate a block from our
7777 * cluster. Free the cluster we've been trying
7778 * to use, and go to the next block group
7779 */
Josef Bacik0a243252009-09-11 16:11:20 -04007780 btrfs_return_cluster_to_free_space(NULL, last_ptr);
Chris Masonfa9c0d792009-04-03 09:47:43 -04007781 spin_unlock(&last_ptr->refill_lock);
Josef Bacik0a243252009-09-11 16:11:20 -04007782 goto loop;
Chris Masonfa9c0d792009-04-03 09:47:43 -04007783 }
7784
Alexandre Oliva062c05c2011-12-07 19:50:42 -05007785unclustered_alloc:
Josef Bacikc759c4e2015-10-02 15:25:10 -04007786 /*
7787 * We are doing an unclustered alloc, set the fragmented flag so
7788 * we don't bother trying to setup a cluster again until we get
7789 * more space.
7790 */
7791 if (unlikely(last_ptr)) {
7792 spin_lock(&last_ptr->lock);
7793 last_ptr->fragmented = 1;
7794 spin_unlock(&last_ptr->lock);
7795 }
Liu Bo0c9b36e2017-02-13 15:42:30 -08007796 if (cached) {
7797 struct btrfs_free_space_ctl *ctl =
7798 block_group->free_space_ctl;
7799
7800 spin_lock(&ctl->tree_lock);
7801 if (ctl->free_space <
7802 num_bytes + empty_cluster + empty_size) {
7803 if (ctl->free_space > max_extent_size)
7804 max_extent_size = ctl->free_space;
7805 spin_unlock(&ctl->tree_lock);
7806 goto loop;
7807 }
7808 spin_unlock(&ctl->tree_lock);
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007809 }
Alexandre Olivaa5f6f712011-12-12 04:48:19 -02007810
Josef Bacik6226cb02009-04-03 10:14:18 -04007811 offset = btrfs_find_space_for_alloc(block_group, search_start,
Miao Xiea4820392013-09-09 13:19:42 +08007812 num_bytes, empty_size,
7813 &max_extent_size);
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007814 /*
7815 * If we didn't find a chunk, and we haven't failed on this
7816 * block group before, and this block group is in the middle of
7817 * caching and we are ok with waiting, then go ahead and wait
7818 * for progress to be made, and set failed_alloc to true.
7819 *
7820 * If failed_alloc is true then we've already waited on this
7821 * block group once and should move on to the next block group.
7822 */
7823 if (!offset && !failed_alloc && !cached &&
7824 loop > LOOP_CACHING_NOWAIT) {
Josef Bacik817d52f2009-07-13 21:29:25 -04007825 wait_block_group_cache_progress(block_group,
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007826 num_bytes + empty_size);
7827 failed_alloc = true;
Josef Bacik817d52f2009-07-13 21:29:25 -04007828 goto have_block_group;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007829 } else if (!offset) {
7830 goto loop;
Josef Bacik817d52f2009-07-13 21:29:25 -04007831 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007832checks:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04007833 search_start = ALIGN(offset, fs_info->stripesize);
Chris Masone37c9e62007-05-09 20:13:14 -04007834
Josef Bacik2552d172009-04-03 10:14:19 -04007835 /* move on to the next group */
7836 if (search_start + num_bytes >
Miao Xie215a63d2014-01-15 20:00:56 +08007837 block_group->key.objectid + block_group->key.offset) {
7838 btrfs_add_free_space(block_group, offset, num_bytes);
Josef Bacik2552d172009-04-03 10:14:19 -04007839 goto loop;
Josef Bacik6226cb02009-04-03 10:14:18 -04007840 }
Josef Bacik80eb2342008-10-29 14:49:05 -04007841
Josef Bacik6226cb02009-04-03 10:14:18 -04007842 if (offset < search_start)
Miao Xie215a63d2014-01-15 20:00:56 +08007843 btrfs_add_free_space(block_group, offset,
Josef Bacik6226cb02009-04-03 10:14:18 -04007844 search_start - offset);
7845 BUG_ON(offset > search_start);
7846
Wang Xiaoguang18513092016-07-25 15:51:40 +08007847 ret = btrfs_add_reserved_bytes(block_group, ram_bytes,
7848 num_bytes, delalloc);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007849 if (ret == -EAGAIN) {
Miao Xie215a63d2014-01-15 20:00:56 +08007850 btrfs_add_free_space(block_group, offset, num_bytes);
Yan, Zhengf0486c62010-05-16 10:46:25 -04007851 goto loop;
7852 }
Filipe Manana9cfa3e32016-04-26 15:39:32 +01007853 btrfs_inc_block_group_reservations(block_group);
Yan Zheng11833d62009-09-11 16:11:19 -04007854
Josef Bacik2552d172009-04-03 10:14:19 -04007855 /* we are all good, lets return */
Yan, Zhengf0486c62010-05-16 10:46:25 -04007856 ins->objectid = search_start;
7857 ins->offset = num_bytes;
7858
Jeff Mahoney71ff6432016-09-06 16:00:42 -04007859 trace_btrfs_reserve_extent(fs_info, block_group,
Josef Bacik3f7de032011-11-10 08:29:20 -05007860 search_start, num_bytes);
Miao Xiee570fd22014-06-19 10:42:50 +08007861 btrfs_release_block_group(block_group, delalloc);
Josef Bacik2552d172009-04-03 10:14:19 -04007862 break;
7863loop:
Josef Bacik0a243252009-09-11 16:11:20 -04007864 failed_cluster_refill = false;
Josef Bacik1cdda9b2009-10-06 10:04:28 -04007865 failed_alloc = false;
Yan, Zhengb742bb822010-05-16 10:46:24 -04007866 BUG_ON(index != get_block_group_index(block_group));
Miao Xiee570fd22014-06-19 10:42:50 +08007867 btrfs_release_block_group(block_group, delalloc);
Jeff Mahoney14443932017-07-19 23:25:51 -04007868 cond_resched();
Josef Bacik2552d172009-04-03 10:14:19 -04007869 }
7870 up_read(&space_info->groups_sem);
Chris Masonf5a31e12008-11-10 11:47:09 -05007871
chandan13a0db52015-11-02 13:59:46 +05307872 if ((loop == LOOP_CACHING_NOWAIT) && have_caching_bg
7873 && !orig_have_caching_bg)
7874 orig_have_caching_bg = true;
7875
Miao Xie60d2adb2011-09-09 17:34:35 +08007876 if (!ins->objectid && loop >= LOOP_CACHING_WAIT && have_caching_bg)
7877 goto search;
7878
Yan, Zhengb742bb822010-05-16 10:46:24 -04007879 if (!ins->objectid && ++index < BTRFS_NR_RAID_TYPES)
7880 goto search;
7881
Josef Bacik285ff5a2012-01-13 15:27:45 -05007882 /*
Josef Bacikccf0e722009-11-10 21:23:48 -05007883 * LOOP_CACHING_NOWAIT, search partially cached block groups, kicking
7884 * caching kthreads as we move along
Josef Bacik817d52f2009-07-13 21:29:25 -04007885 * LOOP_CACHING_WAIT, search everything, and wait if our bg is caching
7886 * LOOP_ALLOC_CHUNK, force a chunk allocation and try again
7887 * LOOP_NO_EMPTY_SIZE, set empty_size and empty_cluster to 0 and try
7888 * again
Chris Masonfa9c0d792009-04-03 09:47:43 -04007889 */
Josef Bacik723bda22011-05-27 16:11:38 -04007890 if (!ins->objectid && loop < LOOP_NO_EMPTY_SIZE) {
Yan, Zhengb742bb822010-05-16 10:46:24 -04007891 index = 0;
Josef Bacika5e681d2015-10-01 14:54:10 -04007892 if (loop == LOOP_CACHING_NOWAIT) {
7893 /*
7894 * We want to skip the LOOP_CACHING_WAIT step if we
Nicholas D Steeves01327612016-05-19 21:18:45 -04007895 * don't have any uncached bgs and we've already done a
Josef Bacika5e681d2015-10-01 14:54:10 -04007896 * full search through.
7897 */
chandan13a0db52015-11-02 13:59:46 +05307898 if (orig_have_caching_bg || !full_search)
Josef Bacika5e681d2015-10-01 14:54:10 -04007899 loop = LOOP_CACHING_WAIT;
7900 else
7901 loop = LOOP_ALLOC_CHUNK;
7902 } else {
7903 loop++;
7904 }
7905
Josef Bacik817d52f2009-07-13 21:29:25 -04007906 if (loop == LOOP_ALLOC_CHUNK) {
Josef Bacik00361582013-08-14 14:02:47 -04007907 struct btrfs_trans_handle *trans;
Wang Shilongf017f152014-03-13 13:19:47 +08007908 int exist = 0;
Josef Bacik00361582013-08-14 14:02:47 -04007909
Wang Shilongf017f152014-03-13 13:19:47 +08007910 trans = current->journal_info;
7911 if (trans)
7912 exist = 1;
7913 else
7914 trans = btrfs_join_transaction(root);
7915
Josef Bacik00361582013-08-14 14:02:47 -04007916 if (IS_ERR(trans)) {
7917 ret = PTR_ERR(trans);
7918 goto out;
7919 }
7920
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04007921 ret = do_chunk_alloc(trans, fs_info, flags,
Josef Bacikea658ba2012-09-11 16:57:25 -04007922 CHUNK_ALLOC_FORCE);
Josef Bacika5e681d2015-10-01 14:54:10 -04007923
7924 /*
7925 * If we can't allocate a new chunk we've already looped
7926 * through at least once, move on to the NO_EMPTY_SIZE
7927 * case.
7928 */
7929 if (ret == -ENOSPC)
7930 loop = LOOP_NO_EMPTY_SIZE;
7931
Josef Bacikea658ba2012-09-11 16:57:25 -04007932 /*
7933 * Do not bail out on ENOSPC since we
7934 * can do more things.
7935 */
Josef Bacik00361582013-08-14 14:02:47 -04007936 if (ret < 0 && ret != -ENOSPC)
Jeff Mahoney66642832016-06-10 18:19:25 -04007937 btrfs_abort_transaction(trans, ret);
Josef Bacik00361582013-08-14 14:02:47 -04007938 else
7939 ret = 0;
Wang Shilongf017f152014-03-13 13:19:47 +08007940 if (!exist)
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04007941 btrfs_end_transaction(trans);
Josef Bacik00361582013-08-14 14:02:47 -04007942 if (ret)
Josef Bacikea658ba2012-09-11 16:57:25 -04007943 goto out;
Josef Bacik723bda22011-05-27 16:11:38 -04007944 }
7945
7946 if (loop == LOOP_NO_EMPTY_SIZE) {
Josef Bacika5e681d2015-10-01 14:54:10 -04007947 /*
7948 * Don't loop again if we already have no empty_size and
7949 * no empty_cluster.
7950 */
7951 if (empty_size == 0 &&
7952 empty_cluster == 0) {
7953 ret = -ENOSPC;
7954 goto out;
7955 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04007956 empty_size = 0;
7957 empty_cluster = 0;
7958 }
Chris Mason42e70e72008-11-07 18:17:11 -05007959
Josef Bacik723bda22011-05-27 16:11:38 -04007960 goto search;
Josef Bacik2552d172009-04-03 10:14:19 -04007961 } else if (!ins->objectid) {
7962 ret = -ENOSPC;
Josef Bacikd82a6f1d2011-05-11 15:26:06 -04007963 } else if (ins->objectid) {
Josef Bacikc759c4e2015-10-02 15:25:10 -04007964 if (!use_cluster && last_ptr) {
7965 spin_lock(&last_ptr->lock);
7966 last_ptr->window_start = ins->objectid;
7967 spin_unlock(&last_ptr->lock);
7968 }
Josef Bacik2552d172009-04-03 10:14:19 -04007969 ret = 0;
7970 }
Jeff Mahoney79787ea2012-03-12 16:03:00 +01007971out:
Josef Bacik4f4db212015-09-29 11:40:47 -04007972 if (ret == -ENOSPC) {
7973 spin_lock(&space_info->lock);
7974 space_info->max_extent_size = max_extent_size;
7975 spin_unlock(&space_info->lock);
Miao Xiea4820392013-09-09 13:19:42 +08007976 ins->offset = max_extent_size;
Josef Bacik4f4db212015-09-29 11:40:47 -04007977 }
Chris Mason0f70abe2007-02-28 16:46:22 -05007978 return ret;
Chris Masonfec577f2007-02-26 10:40:21 -05007979}
Chris Masonec44a352008-04-28 15:29:52 -04007980
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007981static void dump_space_info(struct btrfs_fs_info *fs_info,
7982 struct btrfs_space_info *info, u64 bytes,
Josef Bacik9ed74f22009-09-11 16:12:44 -04007983 int dump_block_groups)
Josef Bacik0f9dd462008-09-23 13:14:11 -04007984{
7985 struct btrfs_block_group_cache *cache;
Yan, Zhengb742bb822010-05-16 10:46:24 -04007986 int index = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04007987
Josef Bacik9ed74f22009-09-11 16:12:44 -04007988 spin_lock(&info->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007989 btrfs_info(fs_info, "space_info %llu has %llu free, is %sfull",
7990 info->flags,
Liu Bo41361352017-02-13 15:42:21 -08007991 info->total_bytes - btrfs_space_info_used(info, true),
7992 info->full ? "" : "not ");
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04007993 btrfs_info(fs_info,
7994 "space_info total=%llu, used=%llu, pinned=%llu, reserved=%llu, may_use=%llu, readonly=%llu",
7995 info->total_bytes, info->bytes_used, info->bytes_pinned,
7996 info->bytes_reserved, info->bytes_may_use,
7997 info->bytes_readonly);
Josef Bacik9ed74f22009-09-11 16:12:44 -04007998 spin_unlock(&info->lock);
7999
8000 if (!dump_block_groups)
8001 return;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008002
Josef Bacik80eb2342008-10-29 14:49:05 -04008003 down_read(&info->groups_sem);
Yan, Zhengb742bb822010-05-16 10:46:24 -04008004again:
8005 list_for_each_entry(cache, &info->block_groups[index], list) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04008006 spin_lock(&cache->lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008007 btrfs_info(fs_info,
8008 "block group %llu has %llu bytes, %llu used %llu pinned %llu reserved %s",
8009 cache->key.objectid, cache->key.offset,
8010 btrfs_block_group_used(&cache->item), cache->pinned,
8011 cache->reserved, cache->ro ? "[readonly]" : "");
Josef Bacik0f9dd462008-09-23 13:14:11 -04008012 btrfs_dump_free_space(cache, bytes);
8013 spin_unlock(&cache->lock);
8014 }
Yan, Zhengb742bb822010-05-16 10:46:24 -04008015 if (++index < BTRFS_NR_RAID_TYPES)
8016 goto again;
Josef Bacik80eb2342008-10-29 14:49:05 -04008017 up_read(&info->groups_sem);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008018}
Zheng Yane8569812008-09-26 10:05:48 -04008019
Wang Xiaoguang18513092016-07-25 15:51:40 +08008020int btrfs_reserve_extent(struct btrfs_root *root, u64 ram_bytes,
Yan Zheng11833d62009-09-11 16:11:19 -04008021 u64 num_bytes, u64 min_alloc_size,
8022 u64 empty_size, u64 hint_byte,
Miao Xiee570fd22014-06-19 10:42:50 +08008023 struct btrfs_key *ins, int is_data, int delalloc)
Chris Masonfec577f2007-02-26 10:40:21 -05008024{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008025 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik36af4e02015-09-25 16:13:11 -04008026 bool final_tried = num_bytes == min_alloc_size;
David Sterbab6919a52013-04-29 13:39:40 +00008027 u64 flags;
Chris Masonfec577f2007-02-26 10:40:21 -05008028 int ret;
Chris Mason925baed2008-06-25 16:01:30 -04008029
Jeff Mahoney1b868262017-05-17 11:38:35 -04008030 flags = get_alloc_profile_by_root(root, is_data);
Chris Mason98d20f62008-04-14 09:46:10 -04008031again:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008032 WARN_ON(num_bytes < fs_info->sectorsize);
Jeff Mahoney87bde3c2017-02-15 16:28:27 -05008033 ret = find_free_extent(fs_info, ram_bytes, num_bytes, empty_size,
Wang Xiaoguang18513092016-07-25 15:51:40 +08008034 hint_byte, ins, flags, delalloc);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008035 if (!ret && !is_data) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008036 btrfs_dec_block_group_reservations(fs_info, ins->objectid);
Filipe Manana9cfa3e32016-04-26 15:39:32 +01008037 } else if (ret == -ENOSPC) {
Miao Xiea4820392013-09-09 13:19:42 +08008038 if (!final_tried && ins->offset) {
8039 num_bytes = min(num_bytes >> 1, ins->offset);
Jeff Mahoneyda170662016-06-15 09:22:56 -04008040 num_bytes = round_down(num_bytes,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008041 fs_info->sectorsize);
Miao Xie9e622d62012-01-26 15:01:12 -05008042 num_bytes = max(num_bytes, min_alloc_size);
Wang Xiaoguang18513092016-07-25 15:51:40 +08008043 ram_bytes = num_bytes;
Miao Xie9e622d62012-01-26 15:01:12 -05008044 if (num_bytes == min_alloc_size)
8045 final_tried = true;
8046 goto again;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008047 } else if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xie9e622d62012-01-26 15:01:12 -05008048 struct btrfs_space_info *sinfo;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008049
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008050 sinfo = __find_space_info(fs_info, flags);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008051 btrfs_err(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008052 "allocation failed flags %llu, wanted %llu",
8053 flags, num_bytes);
Jeff Mahoney53804282012-03-01 14:56:28 +01008054 if (sinfo)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04008055 dump_space_info(fs_info, sinfo, num_bytes, 1);
Miao Xie9e622d62012-01-26 15:01:12 -05008056 }
Chris Mason925baed2008-06-25 16:01:30 -04008057 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008058
8059 return ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008060}
8061
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008062static int __btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008063 u64 start, u64 len,
8064 int pin, int delalloc)
Chris Mason65b51a02008-08-01 15:11:20 -04008065{
Josef Bacik0f9dd462008-09-23 13:14:11 -04008066 struct btrfs_block_group_cache *cache;
Liu Hui1f3c79a2009-01-05 15:57:51 -05008067 int ret = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04008068
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008069 cache = btrfs_lookup_block_group(fs_info, start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008070 if (!cache) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008071 btrfs_err(fs_info, "Unable to find block group for %llu",
8072 start);
Josef Bacik0f9dd462008-09-23 13:14:11 -04008073 return -ENOSPC;
8074 }
Liu Hui1f3c79a2009-01-05 15:57:51 -05008075
Chris Masone688b7252011-10-31 20:52:39 -04008076 if (pin)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008077 pin_down_extent(fs_info, cache, start, len, 1);
Chris Masone688b7252011-10-31 20:52:39 -04008078 else {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008079 if (btrfs_test_opt(fs_info, DISCARD))
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008080 ret = btrfs_discard_extent(fs_info, start, len, NULL);
Chris Masone688b7252011-10-31 20:52:39 -04008081 btrfs_add_free_space(cache, start, len);
Wang Xiaoguang4824f1f2016-07-25 15:51:39 +08008082 btrfs_free_reserved_bytes(cache, len, delalloc);
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008083 trace_btrfs_reserved_extent_free(fs_info, start, len);
Chris Masone688b7252011-10-31 20:52:39 -04008084 }
Dongsheng Yang31193212014-12-12 16:44:35 +08008085
Chris Masonfa9c0d792009-04-03 09:47:43 -04008086 btrfs_put_block_group(cache);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008087 return ret;
8088}
8089
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008090int btrfs_free_reserved_extent(struct btrfs_fs_info *fs_info,
Miao Xiee570fd22014-06-19 10:42:50 +08008091 u64 start, u64 len, int delalloc)
Chris Masone688b7252011-10-31 20:52:39 -04008092{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008093 return __btrfs_free_reserved_extent(fs_info, start, len, 0, delalloc);
Chris Masone688b7252011-10-31 20:52:39 -04008094}
8095
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008096int btrfs_free_and_pin_reserved_extent(struct btrfs_fs_info *fs_info,
Chris Masone688b7252011-10-31 20:52:39 -04008097 u64 start, u64 len)
8098{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008099 return __btrfs_free_reserved_extent(fs_info, start, len, 1, 0);
Chris Masone688b7252011-10-31 20:52:39 -04008100}
8101
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008102static int alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008103 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008104 u64 parent, u64 root_objectid,
8105 u64 flags, u64 owner, u64 offset,
8106 struct btrfs_key *ins, int ref_mod)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008107{
8108 int ret;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008109 struct btrfs_extent_item *extent_item;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008110 struct btrfs_extent_inline_ref *iref;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008111 struct btrfs_path *path;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008112 struct extent_buffer *leaf;
8113 int type;
8114 u32 size;
Chris Masonf2654de2007-06-26 12:20:46 -04008115
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008116 if (parent > 0)
8117 type = BTRFS_SHARED_DATA_REF_KEY;
8118 else
8119 type = BTRFS_EXTENT_DATA_REF_KEY;
Zheng Yan31840ae2008-09-23 13:14:14 -04008120
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008121 size = sizeof(*extent_item) + btrfs_extent_inline_ref_size(type);
Chris Mason7bb86312007-12-11 09:25:06 -05008122
8123 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00008124 if (!path)
8125 return -ENOMEM;
Chris Mason47e4bb92008-02-01 14:51:59 -05008126
Chris Masonb9473432009-03-13 11:00:37 -04008127 path->leave_spinning = 1;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008128 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8129 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008130 if (ret) {
8131 btrfs_free_path(path);
8132 return ret;
8133 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04008134
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008135 leaf = path->nodes[0];
8136 extent_item = btrfs_item_ptr(leaf, path->slots[0],
Chris Mason47e4bb92008-02-01 14:51:59 -05008137 struct btrfs_extent_item);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008138 btrfs_set_extent_refs(leaf, extent_item, ref_mod);
8139 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8140 btrfs_set_extent_flags(leaf, extent_item,
8141 flags | BTRFS_EXTENT_FLAG_DATA);
Chris Mason47e4bb92008-02-01 14:51:59 -05008142
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008143 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
8144 btrfs_set_extent_inline_ref_type(leaf, iref, type);
8145 if (parent > 0) {
8146 struct btrfs_shared_data_ref *ref;
8147 ref = (struct btrfs_shared_data_ref *)(iref + 1);
8148 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8149 btrfs_set_shared_data_ref_count(leaf, ref, ref_mod);
8150 } else {
8151 struct btrfs_extent_data_ref *ref;
8152 ref = (struct btrfs_extent_data_ref *)(&iref->offset);
8153 btrfs_set_extent_data_ref_root(leaf, ref, root_objectid);
8154 btrfs_set_extent_data_ref_objectid(leaf, ref, owner);
8155 btrfs_set_extent_data_ref_offset(leaf, ref, offset);
8156 btrfs_set_extent_data_ref_count(leaf, ref, ref_mod);
8157 }
Chris Mason47e4bb92008-02-01 14:51:59 -05008158
8159 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason7bb86312007-12-11 09:25:06 -05008160 btrfs_free_path(path);
Chris Masonf510cfe2007-10-15 16:14:48 -04008161
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008162 ret = remove_from_free_space_tree(trans, fs_info, ins->objectid,
8163 ins->offset);
8164 if (ret)
8165 return ret;
8166
Jeff Mahoney6202df62016-06-22 18:54:22 -04008167 ret = update_block_group(trans, fs_info, ins->objectid, ins->offset, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008168 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008169 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008170 ins->objectid, ins->offset);
Chris Masonf5947062008-02-04 10:10:13 -05008171 BUG();
8172 }
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008173 trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid, ins->offset);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008174 return ret;
8175}
8176
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008177static int alloc_reserved_tree_block(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008178 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008179 u64 parent, u64 root_objectid,
8180 u64 flags, struct btrfs_disk_key *key,
Filipe Mananab06c4bf2015-10-23 07:52:54 +01008181 int level, struct btrfs_key *ins)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008182{
8183 int ret;
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008184 struct btrfs_extent_item *extent_item;
8185 struct btrfs_tree_block_info *block_info;
8186 struct btrfs_extent_inline_ref *iref;
8187 struct btrfs_path *path;
8188 struct extent_buffer *leaf;
Josef Bacik3173a182013-03-07 14:22:04 -05008189 u32 size = sizeof(*extent_item) + sizeof(*iref);
Josef Bacikfcebe452014-05-13 17:30:47 -07008190 u64 num_bytes = ins->offset;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008191 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Josef Bacik3173a182013-03-07 14:22:04 -05008192
8193 if (!skinny_metadata)
8194 size += sizeof(*block_info);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008195
8196 path = btrfs_alloc_path();
Josef Bacik857cc2f2013-10-07 15:21:08 -04008197 if (!path) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008198 btrfs_free_and_pin_reserved_extent(fs_info, ins->objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008199 fs_info->nodesize);
Mark Fashehd8926bb2011-07-13 10:38:47 -07008200 return -ENOMEM;
Josef Bacik857cc2f2013-10-07 15:21:08 -04008201 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008202
8203 path->leave_spinning = 1;
8204 ret = btrfs_insert_empty_item(trans, fs_info->extent_root, path,
8205 ins, size);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008206 if (ret) {
Chris Masondd825252015-04-01 08:36:05 -07008207 btrfs_free_path(path);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008208 btrfs_free_and_pin_reserved_extent(fs_info, ins->objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008209 fs_info->nodesize);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008210 return ret;
8211 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008212
8213 leaf = path->nodes[0];
8214 extent_item = btrfs_item_ptr(leaf, path->slots[0],
8215 struct btrfs_extent_item);
8216 btrfs_set_extent_refs(leaf, extent_item, 1);
8217 btrfs_set_extent_generation(leaf, extent_item, trans->transid);
8218 btrfs_set_extent_flags(leaf, extent_item,
8219 flags | BTRFS_EXTENT_FLAG_TREE_BLOCK);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008220
Josef Bacik3173a182013-03-07 14:22:04 -05008221 if (skinny_metadata) {
8222 iref = (struct btrfs_extent_inline_ref *)(extent_item + 1);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008223 num_bytes = fs_info->nodesize;
Josef Bacik3173a182013-03-07 14:22:04 -05008224 } else {
8225 block_info = (struct btrfs_tree_block_info *)(extent_item + 1);
8226 btrfs_set_tree_block_key(leaf, block_info, key);
8227 btrfs_set_tree_block_level(leaf, block_info, level);
8228 iref = (struct btrfs_extent_inline_ref *)(block_info + 1);
8229 }
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008230
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008231 if (parent > 0) {
8232 BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF));
8233 btrfs_set_extent_inline_ref_type(leaf, iref,
8234 BTRFS_SHARED_BLOCK_REF_KEY);
8235 btrfs_set_extent_inline_ref_offset(leaf, iref, parent);
8236 } else {
8237 btrfs_set_extent_inline_ref_type(leaf, iref,
8238 BTRFS_TREE_BLOCK_REF_KEY);
8239 btrfs_set_extent_inline_ref_offset(leaf, iref, root_objectid);
8240 }
8241
8242 btrfs_mark_buffer_dirty(leaf);
8243 btrfs_free_path(path);
8244
Omar Sandoval1e144fb2015-09-29 20:50:37 -07008245 ret = remove_from_free_space_tree(trans, fs_info, ins->objectid,
8246 num_bytes);
8247 if (ret)
8248 return ret;
8249
Jeff Mahoney6202df62016-06-22 18:54:22 -04008250 ret = update_block_group(trans, fs_info, ins->objectid,
8251 fs_info->nodesize, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008252 if (ret) { /* -ENOENT, logic error */
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008253 btrfs_err(fs_info, "update block group failed for %llu %llu",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02008254 ins->objectid, ins->offset);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008255 BUG();
8256 }
Josef Bacik0be5dc62013-10-07 15:18:52 -04008257
Jeff Mahoney71ff6432016-09-06 16:00:42 -04008258 trace_btrfs_reserved_extent_alloc(fs_info, ins->objectid,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008259 fs_info->nodesize);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008260 return ret;
8261}
8262
8263int btrfs_alloc_reserved_file_extent(struct btrfs_trans_handle *trans,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008264 u64 root_objectid, u64 owner,
Qu Wenruo5846a3c2015-10-26 14:11:18 +08008265 u64 offset, u64 ram_bytes,
8266 struct btrfs_key *ins)
Chris Masone6dcd2d2008-07-17 12:53:50 -04008267{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008268 struct btrfs_fs_info *fs_info = trans->fs_info;
Chris Masone6dcd2d2008-07-17 12:53:50 -04008269 int ret;
Chris Mason1c2308f82008-09-23 13:14:13 -04008270
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008271 BUG_ON(root_objectid == BTRFS_TREE_LOG_OBJECTID);
Chris Mason56bec292009-03-13 10:10:06 -04008272
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008273 ret = btrfs_add_delayed_data_ref(fs_info, trans, ins->objectid,
Omar Sandoval7be07912017-06-06 16:45:30 -07008274 ins->offset, 0, root_objectid, owner,
8275 offset, ram_bytes,
8276 BTRFS_ADD_DELAYED_EXTENT, NULL, NULL);
Chris Masone6dcd2d2008-07-17 12:53:50 -04008277 return ret;
8278}
Chris Masone02119d2008-09-05 16:13:11 -04008279
8280/*
8281 * this is used by the tree logging recovery code. It records that
8282 * an extent has been allocated and makes sure to clear the free
8283 * space cache bits as well
8284 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008285int btrfs_alloc_logged_file_extent(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008286 struct btrfs_fs_info *fs_info,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008287 u64 root_objectid, u64 owner, u64 offset,
8288 struct btrfs_key *ins)
Chris Masone02119d2008-09-05 16:13:11 -04008289{
8290 int ret;
8291 struct btrfs_block_group_cache *block_group;
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008292 struct btrfs_space_info *space_info;
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008293
8294 /*
8295 * Mixed block groups will exclude before processing the log so we only
Nicholas D Steeves01327612016-05-19 21:18:45 -04008296 * need to do the exclude dance if this fs isn't mixed.
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008297 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008298 if (!btrfs_fs_incompat(fs_info, MIXED_GROUPS)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008299 ret = __exclude_logged_extent(fs_info, ins->objectid,
8300 ins->offset);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008301 if (ret)
8302 return ret;
8303 }
Chris Masone02119d2008-09-05 16:13:11 -04008304
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008305 block_group = btrfs_lookup_block_group(fs_info, ins->objectid);
Josef Bacik8c2a1a32013-06-06 13:19:32 -04008306 if (!block_group)
8307 return -EINVAL;
Yan Zheng11833d62009-09-11 16:11:19 -04008308
Wang Xiaoguanged7a6942016-08-26 11:33:14 +08008309 space_info = block_group->space_info;
8310 spin_lock(&space_info->lock);
8311 spin_lock(&block_group->lock);
8312 space_info->bytes_reserved += ins->offset;
8313 block_group->reserved += ins->offset;
8314 spin_unlock(&block_group->lock);
8315 spin_unlock(&space_info->lock);
8316
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008317 ret = alloc_reserved_file_extent(trans, fs_info, 0, root_objectid,
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008318 0, owner, offset, ins, 1);
Josef Bacikb50c6e22013-04-25 15:55:30 -04008319 btrfs_put_block_group(block_group);
Chris Masone02119d2008-09-05 16:13:11 -04008320 return ret;
8321}
8322
Eric Sandeen48a3b632013-04-25 20:41:01 +00008323static struct extent_buffer *
8324btrfs_init_new_buffer(struct btrfs_trans_handle *trans, struct btrfs_root *root,
David Sterbafe864572014-06-15 02:28:42 +02008325 u64 bytenr, int level)
Chris Mason65b51a02008-08-01 15:11:20 -04008326{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008327 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason65b51a02008-08-01 15:11:20 -04008328 struct extent_buffer *buf;
8329
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008330 buf = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008331 if (IS_ERR(buf))
8332 return buf;
8333
Chris Mason65b51a02008-08-01 15:11:20 -04008334 btrfs_set_header_generation(buf, trans->transid);
Chris Mason85d4e462011-07-26 16:11:19 -04008335 btrfs_set_buffer_lockdep_class(root->root_key.objectid, buf, level);
Chris Mason65b51a02008-08-01 15:11:20 -04008336 btrfs_tree_lock(buf);
David Sterba7c302b42017-02-10 18:47:57 +01008337 clean_tree_block(fs_info, buf);
Josef Bacik3083ee22012-03-09 16:01:49 -05008338 clear_bit(EXTENT_BUFFER_STALE, &buf->bflags);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008339
8340 btrfs_set_lock_blocking(buf);
David Sterba4db8c522015-12-03 13:06:46 +01008341 set_extent_buffer_uptodate(buf);
Chris Masonb4ce94d2009-02-04 09:25:08 -05008342
Chris Masond0c803c2008-09-11 16:17:57 -04008343 if (root->root_key.objectid == BTRFS_TREE_LOG_OBJECTID) {
Filipe Manana656f30d2014-09-26 12:25:56 +01008344 buf->log_index = root->log_transid % 2;
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008345 /*
8346 * we allow two log transactions at a time, use different
8347 * EXENT bit to differentiate dirty pages.
8348 */
Filipe Manana656f30d2014-09-26 12:25:56 +01008349 if (buf->log_index == 0)
Yan, Zheng8cef4e12009-11-12 09:33:26 +00008350 set_extent_dirty(&root->dirty_log_pages, buf->start,
8351 buf->start + buf->len - 1, GFP_NOFS);
8352 else
8353 set_extent_new(&root->dirty_log_pages, buf->start,
David Sterba3744dbe2016-04-26 23:54:39 +02008354 buf->start + buf->len - 1);
Chris Masond0c803c2008-09-11 16:17:57 -04008355 } else {
Filipe Manana656f30d2014-09-26 12:25:56 +01008356 buf->log_index = -1;
Chris Masond0c803c2008-09-11 16:17:57 -04008357 set_extent_dirty(&trans->transaction->dirty_pages, buf->start,
8358 buf->start + buf->len - 1, GFP_NOFS);
8359 }
Jeff Mahoney64c12922016-06-08 00:36:38 -04008360 trans->dirty = true;
Chris Masonb4ce94d2009-02-04 09:25:08 -05008361 /* this returns a buffer locked for blocking */
Chris Mason65b51a02008-08-01 15:11:20 -04008362 return buf;
8363}
8364
Yan, Zhengf0486c62010-05-16 10:46:25 -04008365static struct btrfs_block_rsv *
8366use_block_rsv(struct btrfs_trans_handle *trans,
8367 struct btrfs_root *root, u32 blocksize)
8368{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008369 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008370 struct btrfs_block_rsv *block_rsv;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008371 struct btrfs_block_rsv *global_rsv = &fs_info->global_block_rsv;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008372 int ret;
Miao Xied88033d2013-05-13 13:55:12 +00008373 bool global_updated = false;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008374
8375 block_rsv = get_block_rsv(trans, root);
8376
Miao Xieb586b322013-05-13 13:55:10 +00008377 if (unlikely(block_rsv->size == 0))
8378 goto try_reserve;
Miao Xied88033d2013-05-13 13:55:12 +00008379again:
Yan, Zhengf0486c62010-05-16 10:46:25 -04008380 ret = block_rsv_use_bytes(block_rsv, blocksize);
8381 if (!ret)
8382 return block_rsv;
8383
Miao Xieb586b322013-05-13 13:55:10 +00008384 if (block_rsv->failfast)
8385 return ERR_PTR(ret);
8386
Miao Xied88033d2013-05-13 13:55:12 +00008387 if (block_rsv->type == BTRFS_BLOCK_RSV_GLOBAL && !global_updated) {
8388 global_updated = true;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008389 update_global_block_rsv(fs_info);
Miao Xied88033d2013-05-13 13:55:12 +00008390 goto again;
8391 }
8392
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008393 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Miao Xieb586b322013-05-13 13:55:10 +00008394 static DEFINE_RATELIMIT_STATE(_rs,
8395 DEFAULT_RATELIMIT_INTERVAL * 10,
8396 /*DEFAULT_RATELIMIT_BURST*/ 1);
8397 if (__ratelimit(&_rs))
8398 WARN(1, KERN_DEBUG
Frank Holtonefe120a2013-12-20 11:37:06 -05008399 "BTRFS: block rsv returned %d\n", ret);
Miao Xieb586b322013-05-13 13:55:10 +00008400 }
8401try_reserve:
8402 ret = reserve_metadata_bytes(root, block_rsv, blocksize,
8403 BTRFS_RESERVE_NO_FLUSH);
8404 if (!ret)
8405 return block_rsv;
8406 /*
8407 * If we couldn't reserve metadata bytes try and use some from
Miao Xie5881cfc2013-05-13 13:55:11 +00008408 * the global reserve if its space type is the same as the global
8409 * reservation.
Miao Xieb586b322013-05-13 13:55:10 +00008410 */
Miao Xie5881cfc2013-05-13 13:55:11 +00008411 if (block_rsv->type != BTRFS_BLOCK_RSV_GLOBAL &&
8412 block_rsv->space_info == global_rsv->space_info) {
Miao Xieb586b322013-05-13 13:55:10 +00008413 ret = block_rsv_use_bytes(global_rsv, blocksize);
8414 if (!ret)
8415 return global_rsv;
8416 }
8417 return ERR_PTR(ret);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008418}
8419
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008420static void unuse_block_rsv(struct btrfs_fs_info *fs_info,
8421 struct btrfs_block_rsv *block_rsv, u32 blocksize)
Yan, Zhengf0486c62010-05-16 10:46:25 -04008422{
8423 block_rsv_add_bytes(block_rsv, blocksize, 0);
Josef Bacik8c2a3ca2012-01-10 10:31:31 -05008424 block_rsv_release_bytes(fs_info, block_rsv, NULL, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008425}
8426
Chris Masonfec577f2007-02-26 10:40:21 -05008427/*
Yan, Zhengf0486c62010-05-16 10:46:25 -04008428 * finds a free extent and does all the dirty work required for allocation
Omar Sandoval67b78592015-02-24 02:47:04 -08008429 * returns the tree buffer or an ERR_PTR on error.
Chris Masonfec577f2007-02-26 10:40:21 -05008430 */
David Sterba4d75f8a2014-06-15 01:54:12 +02008431struct extent_buffer *btrfs_alloc_tree_block(struct btrfs_trans_handle *trans,
Omar Sandoval310712b2017-01-17 23:24:37 -08008432 struct btrfs_root *root,
8433 u64 parent, u64 root_objectid,
8434 const struct btrfs_disk_key *key,
8435 int level, u64 hint,
8436 u64 empty_size)
Chris Masonfec577f2007-02-26 10:40:21 -05008437{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008438 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Masone2fa7222007-03-12 16:22:34 -04008439 struct btrfs_key ins;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008440 struct btrfs_block_rsv *block_rsv;
Chris Mason5f39d392007-10-15 16:14:19 -04008441 struct extent_buffer *buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008442 struct btrfs_delayed_extent_op *extent_op;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008443 u64 flags = 0;
8444 int ret;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008445 u32 blocksize = fs_info->nodesize;
8446 bool skinny_metadata = btrfs_fs_incompat(fs_info, SKINNY_METADATA);
Yan, Zhengf0486c62010-05-16 10:46:25 -04008447
David Sterba05653ef2016-07-15 15:23:37 +02008448#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008449 if (btrfs_is_testing(fs_info)) {
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008450 buf = btrfs_init_new_buffer(trans, root, root->alloc_bytenr,
David Sterbafe864572014-06-15 02:28:42 +02008451 level);
Josef Bacikfaa2dbf2014-05-07 17:06:09 -04008452 if (!IS_ERR(buf))
8453 root->alloc_bytenr += blocksize;
8454 return buf;
8455 }
David Sterba05653ef2016-07-15 15:23:37 +02008456#endif
David Sterbafccb84c2014-09-29 23:53:21 +02008457
Yan, Zhengf0486c62010-05-16 10:46:25 -04008458 block_rsv = use_block_rsv(trans, root, blocksize);
8459 if (IS_ERR(block_rsv))
8460 return ERR_CAST(block_rsv);
8461
Wang Xiaoguang18513092016-07-25 15:51:40 +08008462 ret = btrfs_reserve_extent(root, blocksize, blocksize, blocksize,
Miao Xiee570fd22014-06-19 10:42:50 +08008463 empty_size, hint, &ins, 0, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008464 if (ret)
8465 goto out_unuse;
Chris Mason55c69072008-01-09 15:55:33 -05008466
David Sterbafe864572014-06-15 02:28:42 +02008467 buf = btrfs_init_new_buffer(trans, root, ins.objectid, level);
Omar Sandoval67b78592015-02-24 02:47:04 -08008468 if (IS_ERR(buf)) {
8469 ret = PTR_ERR(buf);
8470 goto out_free_reserved;
8471 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008472
8473 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
8474 if (parent == 0)
8475 parent = ins.objectid;
8476 flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
8477 } else
8478 BUG_ON(parent > 0);
8479
8480 if (root_objectid != BTRFS_TREE_LOG_OBJECTID) {
Miao Xie78a61842012-11-21 02:21:28 +00008481 extent_op = btrfs_alloc_delayed_extent_op();
Omar Sandoval67b78592015-02-24 02:47:04 -08008482 if (!extent_op) {
8483 ret = -ENOMEM;
8484 goto out_free_buf;
8485 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04008486 if (key)
8487 memcpy(&extent_op->key, key, sizeof(extent_op->key));
8488 else
8489 memset(&extent_op->key, 0, sizeof(extent_op->key));
8490 extent_op->flags_to_set = flags;
David Sterba35b3ad52015-11-30 16:51:29 +01008491 extent_op->update_key = skinny_metadata ? false : true;
8492 extent_op->update_flags = true;
8493 extent_op->is_data = false;
Josef Bacikb1c79e02013-05-09 13:49:30 -04008494 extent_op->level = level;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008495
Omar Sandoval7be07912017-06-06 16:45:30 -07008496 ret = btrfs_add_delayed_tree_ref(fs_info, trans, ins.objectid,
8497 ins.offset, parent,
8498 root_objectid, level,
Omar Sandoval67b78592015-02-24 02:47:04 -08008499 BTRFS_ADD_DELAYED_EXTENT,
Omar Sandoval7be07912017-06-06 16:45:30 -07008500 extent_op, NULL, NULL);
Omar Sandoval67b78592015-02-24 02:47:04 -08008501 if (ret)
8502 goto out_free_delayed;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008503 }
Chris Masonfec577f2007-02-26 10:40:21 -05008504 return buf;
Omar Sandoval67b78592015-02-24 02:47:04 -08008505
8506out_free_delayed:
8507 btrfs_free_delayed_extent_op(extent_op);
8508out_free_buf:
8509 free_extent_buffer(buf);
8510out_free_reserved:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008511 btrfs_free_reserved_extent(fs_info, ins.objectid, ins.offset, 0);
Omar Sandoval67b78592015-02-24 02:47:04 -08008512out_unuse:
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008513 unuse_block_rsv(fs_info, block_rsv, blocksize);
Omar Sandoval67b78592015-02-24 02:47:04 -08008514 return ERR_PTR(ret);
Chris Masonfec577f2007-02-26 10:40:21 -05008515}
Chris Masona28ec192007-03-06 20:08:01 -05008516
Yan Zheng2c47e6052009-06-27 21:07:35 -04008517struct walk_control {
8518 u64 refs[BTRFS_MAX_LEVEL];
8519 u64 flags[BTRFS_MAX_LEVEL];
8520 struct btrfs_key update_progress;
8521 int stage;
8522 int level;
8523 int shared_level;
8524 int update_ref;
8525 int keep_locks;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008526 int reada_slot;
8527 int reada_count;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02008528 int for_reloc;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008529};
8530
8531#define DROP_REFERENCE 1
8532#define UPDATE_BACKREF 2
8533
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008534static noinline void reada_walk_down(struct btrfs_trans_handle *trans,
8535 struct btrfs_root *root,
8536 struct walk_control *wc,
8537 struct btrfs_path *path)
8538{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008539 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008540 u64 bytenr;
8541 u64 generation;
8542 u64 refs;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008543 u64 flags;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008544 u32 nritems;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008545 struct btrfs_key key;
8546 struct extent_buffer *eb;
8547 int ret;
8548 int slot;
8549 int nread = 0;
8550
8551 if (path->slots[wc->level] < wc->reada_slot) {
8552 wc->reada_count = wc->reada_count * 2 / 3;
8553 wc->reada_count = max(wc->reada_count, 2);
8554 } else {
8555 wc->reada_count = wc->reada_count * 3 / 2;
8556 wc->reada_count = min_t(int, wc->reada_count,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008557 BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008558 }
8559
8560 eb = path->nodes[wc->level];
8561 nritems = btrfs_header_nritems(eb);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008562
8563 for (slot = path->slots[wc->level]; slot < nritems; slot++) {
8564 if (nread >= wc->reada_count)
8565 break;
8566
8567 cond_resched();
8568 bytenr = btrfs_node_blockptr(eb, slot);
8569 generation = btrfs_node_ptr_generation(eb, slot);
8570
8571 if (slot == path->slots[wc->level])
8572 goto reada;
8573
8574 if (wc->stage == UPDATE_BACKREF &&
8575 generation <= root->root_key.offset)
8576 continue;
8577
Yan, Zheng94fcca92009-10-09 09:25:16 -04008578 /* We don't lock the tree block, it's OK to be racy here */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008579 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr,
Josef Bacik3173a182013-03-07 14:22:04 -05008580 wc->level - 1, 1, &refs,
8581 &flags);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008582 /* We don't care about errors in readahead. */
8583 if (ret < 0)
8584 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008585 BUG_ON(refs == 0);
8586
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008587 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008588 if (refs == 1)
8589 goto reada;
8590
Yan, Zheng94fcca92009-10-09 09:25:16 -04008591 if (wc->level == 1 &&
8592 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8593 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008594 if (!wc->update_ref ||
8595 generation <= root->root_key.offset)
8596 continue;
8597 btrfs_node_key_to_cpu(eb, &key, slot);
8598 ret = btrfs_comp_cpu_keys(&key,
8599 &wc->update_progress);
8600 if (ret < 0)
8601 continue;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008602 } else {
8603 if (wc->level == 1 &&
8604 (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8605 continue;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008606 }
8607reada:
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008608 readahead_tree_block(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008609 nread++;
8610 }
8611 wc->reada_slot = slot;
8612}
8613
Chris Mason9aca1d52007-03-13 11:09:37 -04008614/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008615 * helper to process tree block while walking down the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008616 *
Yan Zheng2c47e6052009-06-27 21:07:35 -04008617 * when wc->stage == UPDATE_BACKREF, this function updates
8618 * back refs for pointers in the block.
8619 *
8620 * NOTE: return value 1 means we should stop walking down.
Yan Zhengf82d02d2008-10-29 14:49:05 -04008621 */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008622static noinline int walk_down_proc(struct btrfs_trans_handle *trans,
8623 struct btrfs_root *root,
8624 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008625 struct walk_control *wc, int lookup_info)
Yan Zheng2c47e6052009-06-27 21:07:35 -04008626{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008627 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008628 int level = wc->level;
8629 struct extent_buffer *eb = path->nodes[level];
Yan Zheng2c47e6052009-06-27 21:07:35 -04008630 u64 flag = BTRFS_BLOCK_FLAG_FULL_BACKREF;
8631 int ret;
8632
8633 if (wc->stage == UPDATE_BACKREF &&
8634 btrfs_header_owner(eb) != root->root_key.objectid)
8635 return 1;
8636
8637 /*
8638 * when reference count of tree block is 1, it won't increase
8639 * again. once full backref flag is set, we never clear it.
8640 */
Yan, Zheng94fcca92009-10-09 09:25:16 -04008641 if (lookup_info &&
8642 ((wc->stage == DROP_REFERENCE && wc->refs[level] != 1) ||
8643 (wc->stage == UPDATE_BACKREF && !(wc->flags[level] & flag)))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04008644 BUG_ON(!path->locks[level]);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008645 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05008646 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008647 &wc->refs[level],
8648 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008649 BUG_ON(ret == -ENOMEM);
8650 if (ret)
8651 return ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008652 BUG_ON(wc->refs[level] == 0);
8653 }
8654
Yan Zheng2c47e6052009-06-27 21:07:35 -04008655 if (wc->stage == DROP_REFERENCE) {
8656 if (wc->refs[level] > 1)
8657 return 1;
8658
8659 if (path->locks[level] && !wc->keep_locks) {
Chris Masonbd681512011-07-16 15:23:14 -04008660 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008661 path->locks[level] = 0;
8662 }
8663 return 0;
8664 }
8665
8666 /* wc->stage == UPDATE_BACKREF */
8667 if (!(wc->flags[level] & flag)) {
8668 BUG_ON(!path->locks[level]);
Josef Bacike339a6b2014-07-02 10:54:25 -07008669 ret = btrfs_inc_ref(trans, root, eb, 1);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008670 BUG_ON(ret); /* -ENOMEM */
Josef Bacike339a6b2014-07-02 10:54:25 -07008671 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008672 BUG_ON(ret); /* -ENOMEM */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008673 ret = btrfs_set_disk_extent_flags(trans, fs_info, eb->start,
Josef Bacikb1c79e02013-05-09 13:49:30 -04008674 eb->len, flag,
8675 btrfs_header_level(eb), 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008676 BUG_ON(ret); /* -ENOMEM */
Yan Zheng2c47e6052009-06-27 21:07:35 -04008677 wc->flags[level] |= flag;
8678 }
8679
8680 /*
8681 * the block is shared by multiple trees, so it's not good to
8682 * keep the tree lock
8683 */
8684 if (path->locks[level] && level > 0) {
Chris Masonbd681512011-07-16 15:23:14 -04008685 btrfs_tree_unlock_rw(eb, path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008686 path->locks[level] = 0;
8687 }
8688 return 0;
8689}
8690
8691/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008692 * helper to process tree block pointer.
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008693 *
8694 * when wc->stage == DROP_REFERENCE, this function checks
8695 * reference count of the block pointed to. if the block
8696 * is shared and we need update back refs for the subtree
8697 * rooted at the block, this function changes wc->stage to
8698 * UPDATE_BACKREF. if the block is shared and there is no
8699 * need to update back, this function drops the reference
8700 * to the block.
8701 *
8702 * NOTE: return value 1 means we should stop walking down.
8703 */
8704static noinline int do_walk_down(struct btrfs_trans_handle *trans,
8705 struct btrfs_root *root,
8706 struct btrfs_path *path,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008707 struct walk_control *wc, int *lookup_info)
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008708{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008709 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008710 u64 bytenr;
8711 u64 generation;
8712 u64 parent;
8713 u32 blocksize;
8714 struct btrfs_key key;
8715 struct extent_buffer *next;
8716 int level = wc->level;
8717 int reada = 0;
8718 int ret = 0;
Mark Fasheh11526512014-07-17 12:39:01 -07008719 bool need_account = false;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008720
8721 generation = btrfs_node_ptr_generation(path->nodes[level],
8722 path->slots[level]);
8723 /*
8724 * if the lower level block was created before the snapshot
8725 * was created, we know there is no need to update back refs
8726 * for the subtree
8727 */
8728 if (wc->stage == UPDATE_BACKREF &&
Yan, Zheng94fcca92009-10-09 09:25:16 -04008729 generation <= root->root_key.offset) {
8730 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008731 return 1;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008732 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008733
8734 bytenr = btrfs_node_blockptr(path->nodes[level], path->slots[level]);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008735 blocksize = fs_info->nodesize;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008736
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008737 next = find_extent_buffer(fs_info, bytenr);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008738 if (!next) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008739 next = btrfs_find_create_tree_block(fs_info, bytenr);
Liu Boc871b0f2016-06-06 12:01:23 -07008740 if (IS_ERR(next))
8741 return PTR_ERR(next);
8742
Josef Bacikb2aaaa32013-07-05 17:05:38 -04008743 btrfs_set_buffer_lockdep_class(root->root_key.objectid, next,
8744 level - 1);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008745 reada = 1;
8746 }
8747 btrfs_tree_lock(next);
8748 btrfs_set_lock_blocking(next);
8749
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008750 ret = btrfs_lookup_extent_info(trans, fs_info, bytenr, level - 1, 1,
Yan, Zheng94fcca92009-10-09 09:25:16 -04008751 &wc->refs[level - 1],
8752 &wc->flags[level - 1]);
Josef Bacik48672682016-09-23 13:23:28 +02008753 if (ret < 0)
8754 goto out_unlock;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008755
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008756 if (unlikely(wc->refs[level - 1] == 0)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008757 btrfs_err(fs_info, "Missing references.");
Josef Bacik48672682016-09-23 13:23:28 +02008758 ret = -EIO;
8759 goto out_unlock;
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00008760 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008761 *lookup_info = 0;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008762
Yan, Zheng94fcca92009-10-09 09:25:16 -04008763 if (wc->stage == DROP_REFERENCE) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008764 if (wc->refs[level - 1] > 1) {
Mark Fasheh11526512014-07-17 12:39:01 -07008765 need_account = true;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008766 if (level == 1 &&
8767 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8768 goto skip;
8769
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008770 if (!wc->update_ref ||
8771 generation <= root->root_key.offset)
8772 goto skip;
8773
8774 btrfs_node_key_to_cpu(path->nodes[level], &key,
8775 path->slots[level]);
8776 ret = btrfs_comp_cpu_keys(&key, &wc->update_progress);
8777 if (ret < 0)
8778 goto skip;
8779
8780 wc->stage = UPDATE_BACKREF;
8781 wc->shared_level = level - 1;
8782 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008783 } else {
8784 if (level == 1 &&
8785 (wc->flags[0] & BTRFS_BLOCK_FLAG_FULL_BACKREF))
8786 goto skip;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008787 }
8788
Chris Masonb9fab912012-05-06 07:23:47 -04008789 if (!btrfs_buffer_uptodate(next, generation, 0)) {
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008790 btrfs_tree_unlock(next);
8791 free_extent_buffer(next);
8792 next = NULL;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008793 *lookup_info = 1;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008794 }
8795
8796 if (!next) {
8797 if (reada && level == 1)
8798 reada_walk_down(trans, root, wc, path);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008799 next = read_tree_block(fs_info, bytenr, generation);
Liu Bo64c043d2015-05-25 17:30:15 +08008800 if (IS_ERR(next)) {
8801 return PTR_ERR(next);
8802 } else if (!extent_buffer_uptodate(next)) {
Josef Bacik416bc652013-04-23 14:17:42 -04008803 free_extent_buffer(next);
Tsutomu Itoh97d9a8a2011-03-24 06:33:21 +00008804 return -EIO;
Josef Bacik416bc652013-04-23 14:17:42 -04008805 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008806 btrfs_tree_lock(next);
8807 btrfs_set_lock_blocking(next);
8808 }
8809
8810 level--;
Josef Bacik48672682016-09-23 13:23:28 +02008811 ASSERT(level == btrfs_header_level(next));
8812 if (level != btrfs_header_level(next)) {
8813 btrfs_err(root->fs_info, "mismatched level");
8814 ret = -EIO;
8815 goto out_unlock;
8816 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008817 path->nodes[level] = next;
8818 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04008819 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008820 wc->level = level;
8821 if (wc->level == 1)
8822 wc->reada_slot = 0;
8823 return 0;
8824skip:
8825 wc->refs[level - 1] = 0;
8826 wc->flags[level - 1] = 0;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008827 if (wc->stage == DROP_REFERENCE) {
8828 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
8829 parent = path->nodes[level]->start;
8830 } else {
Josef Bacik48672682016-09-23 13:23:28 +02008831 ASSERT(root->root_key.objectid ==
Yan, Zheng94fcca92009-10-09 09:25:16 -04008832 btrfs_header_owner(path->nodes[level]));
Josef Bacik48672682016-09-23 13:23:28 +02008833 if (root->root_key.objectid !=
8834 btrfs_header_owner(path->nodes[level])) {
8835 btrfs_err(root->fs_info,
8836 "mismatched block owner");
8837 ret = -EIO;
8838 goto out_unlock;
8839 }
Yan, Zheng94fcca92009-10-09 09:25:16 -04008840 parent = 0;
8841 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008842
Mark Fasheh11526512014-07-17 12:39:01 -07008843 if (need_account) {
Qu Wenruo33d1f052016-10-18 09:31:28 +08008844 ret = btrfs_qgroup_trace_subtree(trans, root, next,
8845 generation, level - 1);
Mark Fasheh11526512014-07-17 12:39:01 -07008846 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008847 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008848 "Error %d accounting shared subtree. Quota is out of sync, rescan required.",
8849 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07008850 }
8851 }
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008852 ret = btrfs_free_extent(trans, fs_info, bytenr, blocksize,
8853 parent, root->root_key.objectid,
8854 level - 1, 0);
Josef Bacik48672682016-09-23 13:23:28 +02008855 if (ret)
8856 goto out_unlock;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008857 }
Josef Bacik48672682016-09-23 13:23:28 +02008858
8859 *lookup_info = 1;
8860 ret = 1;
8861
8862out_unlock:
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008863 btrfs_tree_unlock(next);
8864 free_extent_buffer(next);
Josef Bacik48672682016-09-23 13:23:28 +02008865
8866 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04008867}
8868
8869/*
Liu Bo2c016dc2012-12-26 15:32:17 +08008870 * helper to process tree block while walking up the tree.
Yan Zheng2c47e6052009-06-27 21:07:35 -04008871 *
8872 * when wc->stage == DROP_REFERENCE, this function drops
8873 * reference count on the block.
8874 *
8875 * when wc->stage == UPDATE_BACKREF, this function changes
8876 * wc->stage back to DROP_REFERENCE if we changed wc->stage
8877 * to UPDATE_BACKREF previously while processing the block.
8878 *
8879 * NOTE: return value 1 means we should stop walking up.
8880 */
8881static noinline int walk_up_proc(struct btrfs_trans_handle *trans,
8882 struct btrfs_root *root,
8883 struct btrfs_path *path,
8884 struct walk_control *wc)
8885{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008886 struct btrfs_fs_info *fs_info = root->fs_info;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008887 int ret;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008888 int level = wc->level;
8889 struct extent_buffer *eb = path->nodes[level];
8890 u64 parent = 0;
8891
8892 if (wc->stage == UPDATE_BACKREF) {
8893 BUG_ON(wc->shared_level < level);
8894 if (level < wc->shared_level)
8895 goto out;
8896
Yan Zheng2c47e6052009-06-27 21:07:35 -04008897 ret = find_next_key(path, level + 1, &wc->update_progress);
8898 if (ret > 0)
8899 wc->update_ref = 0;
8900
8901 wc->stage = DROP_REFERENCE;
8902 wc->shared_level = -1;
8903 path->slots[level] = 0;
8904
8905 /*
8906 * check reference count again if the block isn't locked.
8907 * we should start walking down the tree again if reference
8908 * count is one.
8909 */
8910 if (!path->locks[level]) {
8911 BUG_ON(level == 0);
8912 btrfs_tree_lock(eb);
8913 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008914 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008915
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008916 ret = btrfs_lookup_extent_info(trans, fs_info,
Josef Bacik3173a182013-03-07 14:22:04 -05008917 eb->start, level, 1,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008918 &wc->refs[level],
8919 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008920 if (ret < 0) {
8921 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008922 path->locks[level] = 0;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008923 return ret;
8924 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008925 BUG_ON(wc->refs[level] == 0);
8926 if (wc->refs[level] == 1) {
Chris Masonbd681512011-07-16 15:23:14 -04008927 btrfs_tree_unlock_rw(eb, path->locks[level]);
Liu Bo3268a242012-12-28 09:33:19 +00008928 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008929 return 1;
8930 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008931 }
8932 }
8933
8934 /* wc->stage == DROP_REFERENCE */
8935 BUG_ON(wc->refs[level] > 1 && !path->locks[level]);
8936
8937 if (wc->refs[level] == 1) {
8938 if (level == 0) {
8939 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
Josef Bacike339a6b2014-07-02 10:54:25 -07008940 ret = btrfs_dec_ref(trans, root, eb, 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008941 else
Josef Bacike339a6b2014-07-02 10:54:25 -07008942 ret = btrfs_dec_ref(trans, root, eb, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01008943 BUG_ON(ret); /* -ENOMEM */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04008944 ret = btrfs_qgroup_trace_leaf_items(trans, fs_info, eb);
Mark Fasheh11526512014-07-17 12:39:01 -07008945 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04008946 btrfs_err_rl(fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -04008947 "error %d accounting leaf items. Quota is out of sync, rescan required.",
8948 ret);
Mark Fasheh11526512014-07-17 12:39:01 -07008949 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04008950 }
8951 /* make block locked assertion in clean_tree_block happy */
8952 if (!path->locks[level] &&
8953 btrfs_header_generation(eb) == trans->transid) {
8954 btrfs_tree_lock(eb);
8955 btrfs_set_lock_blocking(eb);
Chris Masonbd681512011-07-16 15:23:14 -04008956 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008957 }
David Sterba7c302b42017-02-10 18:47:57 +01008958 clean_tree_block(fs_info, eb);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008959 }
8960
8961 if (eb == root->node) {
8962 if (wc->flags[level] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8963 parent = eb->start;
8964 else
8965 BUG_ON(root->root_key.objectid !=
8966 btrfs_header_owner(eb));
8967 } else {
8968 if (wc->flags[level + 1] & BTRFS_BLOCK_FLAG_FULL_BACKREF)
8969 parent = path->nodes[level + 1]->start;
8970 else
8971 BUG_ON(root->root_key.objectid !=
8972 btrfs_header_owner(path->nodes[level + 1]));
8973 }
8974
Jan Schmidt5581a512012-05-16 17:04:52 +02008975 btrfs_free_tree_block(trans, root, eb, parent, wc->refs[level] == 1);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008976out:
8977 wc->refs[level] = 0;
8978 wc->flags[level] = 0;
Yan, Zhengf0486c62010-05-16 10:46:25 -04008979 return 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04008980}
8981
Yan Zheng5d4f98a2009-06-10 10:45:14 -04008982static noinline int walk_down_tree(struct btrfs_trans_handle *trans,
8983 struct btrfs_root *root,
Yan Zheng2c47e6052009-06-27 21:07:35 -04008984 struct btrfs_path *path,
8985 struct walk_control *wc)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008986{
Yan Zheng2c47e6052009-06-27 21:07:35 -04008987 int level = wc->level;
Yan, Zheng94fcca92009-10-09 09:25:16 -04008988 int lookup_info = 1;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008989 int ret;
8990
Yan Zheng2c47e6052009-06-27 21:07:35 -04008991 while (level >= 0) {
Yan, Zheng94fcca92009-10-09 09:25:16 -04008992 ret = walk_down_proc(trans, root, path, wc, lookup_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04008993 if (ret > 0)
Yan Zhengf82d02d2008-10-29 14:49:05 -04008994 break;
Yan Zhengf82d02d2008-10-29 14:49:05 -04008995
Yan Zheng2c47e6052009-06-27 21:07:35 -04008996 if (level == 0)
8997 break;
8998
Yan, Zheng7a7965f2010-02-01 02:41:17 +00008999 if (path->slots[level] >=
9000 btrfs_header_nritems(path->nodes[level]))
9001 break;
9002
Yan, Zheng94fcca92009-10-09 09:25:16 -04009003 ret = do_walk_down(trans, root, path, wc, &lookup_info);
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009004 if (ret > 0) {
9005 path->slots[level]++;
9006 continue;
Miao Xie90d2c51d2010-03-25 12:37:12 +00009007 } else if (ret < 0)
9008 return ret;
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009009 level = wc->level;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009010 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009011 return 0;
9012}
9013
Chris Masond3977122009-01-05 21:25:51 -05009014static noinline int walk_up_tree(struct btrfs_trans_handle *trans,
Chris Mason98ed5172008-01-03 10:01:48 -05009015 struct btrfs_root *root,
Yan Zhengf82d02d2008-10-29 14:49:05 -04009016 struct btrfs_path *path,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009017 struct walk_control *wc, int max_level)
Chris Mason20524f02007-03-10 06:35:47 -05009018{
Yan Zheng2c47e6052009-06-27 21:07:35 -04009019 int level = wc->level;
Chris Mason20524f02007-03-10 06:35:47 -05009020 int ret;
Chris Mason9f3a7422007-08-07 15:52:19 -04009021
Yan Zheng2c47e6052009-06-27 21:07:35 -04009022 path->slots[level] = btrfs_header_nritems(path->nodes[level]);
9023 while (level < max_level && path->nodes[level]) {
9024 wc->level = level;
9025 if (path->slots[level] + 1 <
9026 btrfs_header_nritems(path->nodes[level])) {
9027 path->slots[level]++;
Chris Mason20524f02007-03-10 06:35:47 -05009028 return 0;
9029 } else {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009030 ret = walk_up_proc(trans, root, path, wc);
9031 if (ret > 0)
9032 return 0;
Chris Masonbd56b302009-02-04 09:27:02 -05009033
Yan Zheng2c47e6052009-06-27 21:07:35 -04009034 if (path->locks[level]) {
Chris Masonbd681512011-07-16 15:23:14 -04009035 btrfs_tree_unlock_rw(path->nodes[level],
9036 path->locks[level]);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009037 path->locks[level] = 0;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009038 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009039 free_extent_buffer(path->nodes[level]);
9040 path->nodes[level] = NULL;
9041 level++;
Chris Mason20524f02007-03-10 06:35:47 -05009042 }
9043 }
9044 return 1;
9045}
9046
Chris Mason9aca1d52007-03-13 11:09:37 -04009047/*
Yan Zheng2c47e6052009-06-27 21:07:35 -04009048 * drop a subvolume tree.
9049 *
9050 * this function traverses the tree freeing any blocks that only
9051 * referenced by the tree.
9052 *
9053 * when a shared tree block is found. this function decreases its
9054 * reference count by one. if update_ref is true, this function
9055 * also make sure backrefs for the shared block and all lower level
9056 * blocks are properly updated.
David Sterba9d1a2a32013-03-12 15:13:28 +00009057 *
9058 * If called with for_reloc == 0, may exit early with -EAGAIN
Chris Mason9aca1d52007-03-13 11:09:37 -04009059 */
Jeff Mahoney2c536792011-10-03 23:22:41 -04009060int btrfs_drop_snapshot(struct btrfs_root *root,
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009061 struct btrfs_block_rsv *block_rsv, int update_ref,
9062 int for_reloc)
Chris Mason20524f02007-03-10 06:35:47 -05009063{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009064 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -04009065 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009066 struct btrfs_trans_handle *trans;
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009067 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Mason9f3a7422007-08-07 15:52:19 -04009068 struct btrfs_root_item *root_item = &root->root_item;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009069 struct walk_control *wc;
9070 struct btrfs_key key;
9071 int err = 0;
9072 int ret;
9073 int level;
Josef Bacikd29a9f62013-07-17 19:30:20 -04009074 bool root_dropped = false;
Chris Mason20524f02007-03-10 06:35:47 -05009075
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009076 btrfs_debug(fs_info, "Drop subvolume %llu", root->objectid);
Mark Fasheh11526512014-07-17 12:39:01 -07009077
Chris Mason5caf2a02007-04-02 11:20:42 -04009078 path = btrfs_alloc_path();
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009079 if (!path) {
9080 err = -ENOMEM;
9081 goto out;
9082 }
Chris Mason20524f02007-03-10 06:35:47 -05009083
Yan Zheng2c47e6052009-06-27 21:07:35 -04009084 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Mark Fasheh38a1a912011-07-13 10:59:59 -07009085 if (!wc) {
9086 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009087 err = -ENOMEM;
9088 goto out;
Mark Fasheh38a1a912011-07-13 10:59:59 -07009089 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009090
Yan, Zhenga22285a2010-05-16 10:48:46 -04009091 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009092 if (IS_ERR(trans)) {
9093 err = PTR_ERR(trans);
9094 goto out_free;
9095 }
Tsutomu Itoh98d5dc12011-01-20 06:19:37 +00009096
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009097 if (block_rsv)
9098 trans->block_rsv = block_rsv;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009099
Chris Mason9f3a7422007-08-07 15:52:19 -04009100 if (btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009101 level = btrfs_header_level(root->node);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009102 path->nodes[level] = btrfs_lock_root_node(root);
9103 btrfs_set_lock_blocking(path->nodes[level]);
Chris Mason9f3a7422007-08-07 15:52:19 -04009104 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009105 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009106 memset(&wc->update_progress, 0,
9107 sizeof(wc->update_progress));
Chris Mason9f3a7422007-08-07 15:52:19 -04009108 } else {
Chris Mason9f3a7422007-08-07 15:52:19 -04009109 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009110 memcpy(&wc->update_progress, &key,
9111 sizeof(wc->update_progress));
9112
Chris Mason6702ed42007-08-07 16:15:09 -04009113 level = root_item->drop_level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009114 BUG_ON(level == 0);
Chris Mason6702ed42007-08-07 16:15:09 -04009115 path->lowest_level = level;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009116 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
9117 path->lowest_level = 0;
9118 if (ret < 0) {
9119 err = ret;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009120 goto out_end_trans;
Chris Mason9f3a7422007-08-07 15:52:19 -04009121 }
Yan, Zheng1c4850e2009-09-21 15:55:59 -04009122 WARN_ON(ret > 0);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009123
Chris Mason7d9eb122008-07-08 14:19:17 -04009124 /*
9125 * unlock our path, this is safe because only this
9126 * function is allowed to delete this snapshot
9127 */
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009128 btrfs_unlock_up_safe(path, 0);
Chris Mason9aca1d52007-03-13 11:09:37 -04009129
Yan Zheng2c47e6052009-06-27 21:07:35 -04009130 level = btrfs_header_level(root->node);
9131 while (1) {
9132 btrfs_tree_lock(path->nodes[level]);
9133 btrfs_set_lock_blocking(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009134 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009135
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009136 ret = btrfs_lookup_extent_info(trans, fs_info,
Yan Zheng2c47e6052009-06-27 21:07:35 -04009137 path->nodes[level]->start,
Josef Bacik3173a182013-03-07 14:22:04 -05009138 level, 1, &wc->refs[level],
Yan Zheng2c47e6052009-06-27 21:07:35 -04009139 &wc->flags[level]);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009140 if (ret < 0) {
9141 err = ret;
9142 goto out_end_trans;
9143 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009144 BUG_ON(wc->refs[level] == 0);
9145
9146 if (level == root_item->drop_level)
9147 break;
9148
9149 btrfs_tree_unlock(path->nodes[level]);
Josef Bacikfec386a2013-07-15 12:41:42 -04009150 path->locks[level] = 0;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009151 WARN_ON(wc->refs[level] != 1);
9152 level--;
9153 }
9154 }
9155
9156 wc->level = level;
9157 wc->shared_level = -1;
9158 wc->stage = DROP_REFERENCE;
9159 wc->update_ref = update_ref;
9160 wc->keep_locks = 0;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009161 wc->for_reloc = for_reloc;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009162 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zheng2c47e6052009-06-27 21:07:35 -04009163
9164 while (1) {
David Sterba9d1a2a32013-03-12 15:13:28 +00009165
Yan Zheng2c47e6052009-06-27 21:07:35 -04009166 ret = walk_down_tree(trans, root, path, wc);
9167 if (ret < 0) {
9168 err = ret;
Chris Masone7a84562008-06-25 16:01:31 -04009169 break;
9170 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009171
9172 ret = walk_up_tree(trans, root, path, wc, BTRFS_MAX_LEVEL);
9173 if (ret < 0) {
9174 err = ret;
9175 break;
9176 }
9177
9178 if (ret > 0) {
9179 BUG_ON(wc->stage != DROP_REFERENCE);
9180 break;
9181 }
9182
9183 if (wc->stage == DROP_REFERENCE) {
9184 level = wc->level;
9185 btrfs_node_key(path->nodes[level],
9186 &root_item->drop_progress,
9187 path->slots[level]);
9188 root_item->drop_level = level;
9189 }
9190
9191 BUG_ON(wc->level == 0);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009192 if (btrfs_should_end_transaction(trans) ||
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009193 (!for_reloc && btrfs_need_cleaner_sleep(fs_info))) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009194 ret = btrfs_update_root(trans, tree_root,
9195 &root->root_key,
9196 root_item);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009197 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009198 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009199 err = ret;
9200 goto out_end_trans;
9201 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009202
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009203 btrfs_end_transaction_throttle(trans);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009204 if (!for_reloc && btrfs_need_cleaner_sleep(fs_info)) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009205 btrfs_debug(fs_info,
9206 "drop snapshot early exit");
Josef Bacik3c8f2422013-07-15 11:57:06 -04009207 err = -EAGAIN;
9208 goto out_free;
9209 }
9210
Yan, Zhenga22285a2010-05-16 10:48:46 -04009211 trans = btrfs_start_transaction(tree_root, 0);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009212 if (IS_ERR(trans)) {
9213 err = PTR_ERR(trans);
9214 goto out_free;
9215 }
Yan, Zheng3fd0a552010-05-16 10:49:59 -04009216 if (block_rsv)
9217 trans->block_rsv = block_rsv;
Chris Masonc3e69d52009-03-13 10:17:05 -04009218 }
Chris Mason20524f02007-03-10 06:35:47 -05009219 }
David Sterbab3b4aa72011-04-21 01:20:15 +02009220 btrfs_release_path(path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009221 if (err)
9222 goto out_end_trans;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009223
9224 ret = btrfs_del_root(trans, tree_root, &root->root_key);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009225 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009226 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009227 goto out_end_trans;
9228 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009229
Yan, Zheng76dda932009-09-21 16:00:26 -04009230 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
Miao Xiecb517ea2013-05-15 07:48:19 +00009231 ret = btrfs_find_root(tree_root, &root->root_key, path,
9232 NULL, NULL);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009233 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -04009234 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009235 err = ret;
9236 goto out_end_trans;
9237 } else if (ret > 0) {
Josef Bacik84cd9482010-12-08 12:24:01 -05009238 /* if we fail to delete the orphan item this time
9239 * around, it'll get picked up the next time.
9240 *
9241 * The most common failure here is just -ENOENT.
9242 */
9243 btrfs_del_orphan_item(trans, tree_root,
9244 root->root_key.objectid);
Yan, Zheng76dda932009-09-21 16:00:26 -04009245 }
9246 }
9247
Miao Xie27cdeb72014-04-02 19:51:05 +08009248 if (test_bit(BTRFS_ROOT_IN_RADIX, &root->state)) {
Josef Bacik2b9dbef2015-09-15 10:07:04 -04009249 btrfs_add_dropped_root(trans, root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009250 } else {
9251 free_extent_buffer(root->node);
9252 free_extent_buffer(root->commit_root);
Miao Xieb0feb9d2013-05-15 07:48:20 +00009253 btrfs_put_fs_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -04009254 }
Josef Bacikd29a9f62013-07-17 19:30:20 -04009255 root_dropped = true;
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009256out_end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009257 btrfs_end_transaction_throttle(trans);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009258out_free:
Yan Zheng2c47e6052009-06-27 21:07:35 -04009259 kfree(wc);
Chris Mason5caf2a02007-04-02 11:20:42 -04009260 btrfs_free_path(path);
Tsutomu Itohcb1b69f2011-08-09 07:11:13 +00009261out:
Josef Bacikd29a9f62013-07-17 19:30:20 -04009262 /*
9263 * So if we need to stop dropping the snapshot for whatever reason we
9264 * need to make sure to add it back to the dead root list so that we
9265 * keep trying to do the work later. This also cleans up roots if we
9266 * don't have it in the radix (like when we recover after a power fail
9267 * or unmount) so we don't leak memory.
9268 */
Josef Bacikb37b39c2013-07-23 16:57:15 -04009269 if (!for_reloc && root_dropped == false)
Josef Bacikd29a9f62013-07-17 19:30:20 -04009270 btrfs_add_dead_root(root);
Wang Shilong90515e72014-01-07 17:26:58 +08009271 if (err && err != -EAGAIN)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009272 btrfs_handle_fs_error(fs_info, err, NULL);
Jeff Mahoney2c536792011-10-03 23:22:41 -04009273 return err;
Chris Mason20524f02007-03-10 06:35:47 -05009274}
Chris Mason9078a3e2007-04-26 16:46:15 -04009275
Yan Zheng2c47e6052009-06-27 21:07:35 -04009276/*
9277 * drop subtree rooted at tree block 'node'.
9278 *
9279 * NOTE: this function will unlock and release tree block 'node'
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009280 * only used by relocation code
Yan Zheng2c47e6052009-06-27 21:07:35 -04009281 */
Yan Zhengf82d02d2008-10-29 14:49:05 -04009282int btrfs_drop_subtree(struct btrfs_trans_handle *trans,
9283 struct btrfs_root *root,
9284 struct extent_buffer *node,
9285 struct extent_buffer *parent)
9286{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009287 struct btrfs_fs_info *fs_info = root->fs_info;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009288 struct btrfs_path *path;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009289 struct walk_control *wc;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009290 int level;
9291 int parent_level;
9292 int ret = 0;
9293 int wret;
9294
Yan Zheng2c47e6052009-06-27 21:07:35 -04009295 BUG_ON(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID);
9296
Yan Zhengf82d02d2008-10-29 14:49:05 -04009297 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009298 if (!path)
9299 return -ENOMEM;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009300
Yan Zheng2c47e6052009-06-27 21:07:35 -04009301 wc = kzalloc(sizeof(*wc), GFP_NOFS);
Tsutomu Itohdb5b4932011-03-23 08:14:16 +00009302 if (!wc) {
9303 btrfs_free_path(path);
9304 return -ENOMEM;
9305 }
Yan Zheng2c47e6052009-06-27 21:07:35 -04009306
Chris Masonb9447ef82009-03-09 11:45:38 -04009307 btrfs_assert_tree_locked(parent);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009308 parent_level = btrfs_header_level(parent);
9309 extent_buffer_get(parent);
9310 path->nodes[parent_level] = parent;
9311 path->slots[parent_level] = btrfs_header_nritems(parent);
9312
Chris Masonb9447ef82009-03-09 11:45:38 -04009313 btrfs_assert_tree_locked(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009314 level = btrfs_header_level(node);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009315 path->nodes[level] = node;
9316 path->slots[level] = 0;
Chris Masonbd681512011-07-16 15:23:14 -04009317 path->locks[level] = BTRFS_WRITE_LOCK_BLOCKING;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009318
9319 wc->refs[parent_level] = 1;
9320 wc->flags[parent_level] = BTRFS_BLOCK_FLAG_FULL_BACKREF;
9321 wc->level = level;
9322 wc->shared_level = -1;
9323 wc->stage = DROP_REFERENCE;
9324 wc->update_ref = 0;
9325 wc->keep_locks = 1;
Arne Jansen66d7e7f2011-09-12 15:26:38 +02009326 wc->for_reloc = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009327 wc->reada_count = BTRFS_NODEPTRS_PER_BLOCK(fs_info);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009328
9329 while (1) {
Yan Zheng2c47e6052009-06-27 21:07:35 -04009330 wret = walk_down_tree(trans, root, path, wc);
9331 if (wret < 0) {
Yan Zhengf82d02d2008-10-29 14:49:05 -04009332 ret = wret;
Yan Zhengf82d02d2008-10-29 14:49:05 -04009333 break;
Yan Zheng2c47e6052009-06-27 21:07:35 -04009334 }
Yan Zhengf82d02d2008-10-29 14:49:05 -04009335
Yan Zheng2c47e6052009-06-27 21:07:35 -04009336 wret = walk_up_tree(trans, root, path, wc, parent_level);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009337 if (wret < 0)
9338 ret = wret;
9339 if (wret != 0)
9340 break;
9341 }
9342
Yan Zheng2c47e6052009-06-27 21:07:35 -04009343 kfree(wc);
Yan Zhengf82d02d2008-10-29 14:49:05 -04009344 btrfs_free_path(path);
9345 return ret;
9346}
9347
Jeff Mahoney6202df62016-06-22 18:54:22 -04009348static u64 update_block_group_flags(struct btrfs_fs_info *fs_info, u64 flags)
Chris Masonec44a352008-04-28 15:29:52 -04009349{
9350 u64 num_devices;
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009351 u64 stripped;
Chris Masonec44a352008-04-28 15:29:52 -04009352
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009353 /*
9354 * if restripe for this chunk_type is on pick target profile and
9355 * return, otherwise do the usual balance
9356 */
Jeff Mahoney6202df62016-06-22 18:54:22 -04009357 stripped = get_restripe_target(fs_info, flags);
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009358 if (stripped)
9359 return extended_to_chunk(stripped);
Ilya Dryomove4d8ec02012-01-16 22:04:48 +02009360
Jeff Mahoney6202df62016-06-22 18:54:22 -04009361 num_devices = fs_info->fs_devices->rw_devices;
Chris Masoncd02dca2010-12-13 14:56:23 -05009362
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009363 stripped = BTRFS_BLOCK_GROUP_RAID0 |
David Woodhouse53b381b2013-01-29 18:40:14 -05009364 BTRFS_BLOCK_GROUP_RAID5 | BTRFS_BLOCK_GROUP_RAID6 |
Ilya Dryomovfc67c452012-03-27 17:09:17 +03009365 BTRFS_BLOCK_GROUP_RAID1 | BTRFS_BLOCK_GROUP_RAID10;
9366
Chris Masonec44a352008-04-28 15:29:52 -04009367 if (num_devices == 1) {
9368 stripped |= BTRFS_BLOCK_GROUP_DUP;
9369 stripped = flags & ~stripped;
9370
9371 /* turn raid0 into single device chunks */
9372 if (flags & BTRFS_BLOCK_GROUP_RAID0)
9373 return stripped;
9374
9375 /* turn mirroring into duplication */
9376 if (flags & (BTRFS_BLOCK_GROUP_RAID1 |
9377 BTRFS_BLOCK_GROUP_RAID10))
9378 return stripped | BTRFS_BLOCK_GROUP_DUP;
Chris Masonec44a352008-04-28 15:29:52 -04009379 } else {
9380 /* they already had raid on here, just return */
Chris Masonec44a352008-04-28 15:29:52 -04009381 if (flags & stripped)
9382 return flags;
9383
9384 stripped |= BTRFS_BLOCK_GROUP_DUP;
9385 stripped = flags & ~stripped;
9386
9387 /* switch duplicated blocks with raid1 */
9388 if (flags & BTRFS_BLOCK_GROUP_DUP)
9389 return stripped | BTRFS_BLOCK_GROUP_RAID1;
9390
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009391 /* this is drive concat, leave it alone */
Chris Masonec44a352008-04-28 15:29:52 -04009392 }
Ilya Dryomove3176ca2012-03-27 17:09:16 +03009393
Chris Masonec44a352008-04-28 15:29:52 -04009394 return flags;
9395}
9396
Zhaolei868f4012015-08-05 16:43:27 +08009397static int inc_block_group_ro(struct btrfs_block_group_cache *cache, int force)
Chris Mason0ef3e662008-05-24 14:04:53 -04009398{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009399 struct btrfs_space_info *sinfo = cache->space_info;
9400 u64 num_bytes;
Miao Xie199c36e2011-07-15 10:34:36 +00009401 u64 min_allocable_bytes;
Yan, Zhengf0486c62010-05-16 10:46:25 -04009402 int ret = -ENOSPC;
Chris Mason0ef3e662008-05-24 14:04:53 -04009403
Miao Xie199c36e2011-07-15 10:34:36 +00009404 /*
9405 * We need some metadata space and system metadata space for
9406 * allocating chunks in some corner cases until we force to set
9407 * it to be readonly.
9408 */
9409 if ((sinfo->flags &
9410 (BTRFS_BLOCK_GROUP_SYSTEM | BTRFS_BLOCK_GROUP_METADATA)) &&
9411 !force)
Byongho Leeee221842015-12-15 01:42:10 +09009412 min_allocable_bytes = SZ_1M;
Miao Xie199c36e2011-07-15 10:34:36 +00009413 else
9414 min_allocable_bytes = 0;
9415
Yan, Zhengf0486c62010-05-16 10:46:25 -04009416 spin_lock(&sinfo->lock);
9417 spin_lock(&cache->lock);
WuBo61cfea92011-07-26 03:30:11 +00009418
9419 if (cache->ro) {
Zhaolei868f4012015-08-05 16:43:27 +08009420 cache->ro++;
WuBo61cfea92011-07-26 03:30:11 +00009421 ret = 0;
9422 goto out;
9423 }
9424
Yan, Zhengf0486c62010-05-16 10:46:25 -04009425 num_bytes = cache->key.offset - cache->reserved - cache->pinned -
9426 cache->bytes_super - btrfs_block_group_used(&cache->item);
Chris Mason7d9eb122008-07-08 14:19:17 -04009427
Liu Bo41361352017-02-13 15:42:21 -08009428 if (btrfs_space_info_used(sinfo, true) + num_bytes +
Josef Bacik37be25b2011-08-05 10:25:38 -04009429 min_allocable_bytes <= sinfo->total_bytes) {
Yan, Zhengf0486c62010-05-16 10:46:25 -04009430 sinfo->bytes_readonly += num_bytes;
Zhaolei868f4012015-08-05 16:43:27 +08009431 cache->ro++;
Josef Bacik633c0aa2014-10-31 09:49:34 -04009432 list_add_tail(&cache->ro_list, &sinfo->ro_bgs);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009433 ret = 0;
9434 }
WuBo61cfea92011-07-26 03:30:11 +00009435out:
Yan, Zhengf0486c62010-05-16 10:46:25 -04009436 spin_unlock(&cache->lock);
9437 spin_unlock(&sinfo->lock);
9438 return ret;
Chris Mason0ef3e662008-05-24 14:04:53 -04009439}
9440
Jeff Mahoney5e00f192017-02-15 16:28:29 -05009441int btrfs_inc_block_group_ro(struct btrfs_fs_info *fs_info,
Yan, Zhengf0486c62010-05-16 10:46:25 -04009442 struct btrfs_block_group_cache *cache)
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009443
9444{
Yan, Zhengf0486c62010-05-16 10:46:25 -04009445 struct btrfs_trans_handle *trans;
9446 u64 alloc_flags;
9447 int ret;
9448
Chris Mason1bbc6212015-04-06 12:46:08 -07009449again:
Jeff Mahoney5e00f192017-02-15 16:28:29 -05009450 trans = btrfs_join_transaction(fs_info->extent_root);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01009451 if (IS_ERR(trans))
9452 return PTR_ERR(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009453
Chris Mason1bbc6212015-04-06 12:46:08 -07009454 /*
9455 * we're not allowed to set block groups readonly after the dirty
9456 * block groups cache has started writing. If it already started,
9457 * back off and let this transaction commit
9458 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009459 mutex_lock(&fs_info->ro_block_group_mutex);
Josef Bacik3204d332015-09-24 10:46:10 -04009460 if (test_bit(BTRFS_TRANS_DIRTY_BG_RUN, &trans->transaction->flags)) {
Chris Mason1bbc6212015-04-06 12:46:08 -07009461 u64 transid = trans->transid;
9462
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009463 mutex_unlock(&fs_info->ro_block_group_mutex);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009464 btrfs_end_transaction(trans);
Chris Mason1bbc6212015-04-06 12:46:08 -07009465
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009466 ret = btrfs_wait_for_commit(fs_info, transid);
Chris Mason1bbc6212015-04-06 12:46:08 -07009467 if (ret)
9468 return ret;
9469 goto again;
9470 }
9471
Chris Mason153c35b2015-05-19 18:54:41 -07009472 /*
9473 * if we are changing raid levels, try to allocate a corresponding
9474 * block group with the new raid level.
9475 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009476 alloc_flags = update_block_group_flags(fs_info, cache->flags);
Chris Mason153c35b2015-05-19 18:54:41 -07009477 if (alloc_flags != cache->flags) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009478 ret = do_chunk_alloc(trans, fs_info, alloc_flags,
Chris Mason153c35b2015-05-19 18:54:41 -07009479 CHUNK_ALLOC_FORCE);
9480 /*
9481 * ENOSPC is allowed here, we may have enough space
9482 * already allocated at the new raid level to
9483 * carry on
9484 */
9485 if (ret == -ENOSPC)
9486 ret = 0;
9487 if (ret < 0)
9488 goto out;
9489 }
Chris Mason1bbc6212015-04-06 12:46:08 -07009490
Zhaolei868f4012015-08-05 16:43:27 +08009491 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009492 if (!ret)
9493 goto out;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009494 alloc_flags = get_alloc_profile(fs_info, cache->space_info->flags);
9495 ret = do_chunk_alloc(trans, fs_info, alloc_flags,
Chris Mason0e4f8f82011-04-15 16:05:44 -04009496 CHUNK_ALLOC_FORCE);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009497 if (ret < 0)
9498 goto out;
Zhaolei868f4012015-08-05 16:43:27 +08009499 ret = inc_block_group_ro(cache, 0);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009500out:
Shaohua Li2f081082015-01-09 10:40:15 -08009501 if (cache->flags & BTRFS_BLOCK_GROUP_SYSTEM) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009502 alloc_flags = update_block_group_flags(fs_info, cache->flags);
David Sterba34441362016-10-04 19:34:27 +02009503 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009504 check_system_chunk(trans, fs_info, alloc_flags);
David Sterba34441362016-10-04 19:34:27 +02009505 mutex_unlock(&fs_info->chunk_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009506 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009507 mutex_unlock(&fs_info->ro_block_group_mutex);
Shaohua Li2f081082015-01-09 10:40:15 -08009508
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009509 btrfs_end_transaction(trans);
Yan, Zhengf0486c62010-05-16 10:46:25 -04009510 return ret;
9511}
9512
Chris Masonc87f08c2011-02-16 13:57:04 -05009513int btrfs_force_chunk_alloc(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009514 struct btrfs_fs_info *fs_info, u64 type)
Chris Masonc87f08c2011-02-16 13:57:04 -05009515{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009516 u64 alloc_flags = get_alloc_profile(fs_info, type);
9517
9518 return do_chunk_alloc(trans, fs_info, alloc_flags, CHUNK_ALLOC_FORCE);
Chris Masonc87f08c2011-02-16 13:57:04 -05009519}
9520
Miao Xie6d07bce2011-01-05 10:07:31 +00009521/*
9522 * helper to account the unused space of all the readonly block group in the
Josef Bacik633c0aa2014-10-31 09:49:34 -04009523 * space_info. takes mirrors into account.
Miao Xie6d07bce2011-01-05 10:07:31 +00009524 */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009525u64 btrfs_account_ro_block_groups_free_space(struct btrfs_space_info *sinfo)
Miao Xie6d07bce2011-01-05 10:07:31 +00009526{
9527 struct btrfs_block_group_cache *block_group;
9528 u64 free_bytes = 0;
9529 int factor;
9530
Nicholas D Steeves01327612016-05-19 21:18:45 -04009531 /* It's df, we don't care if it's racy */
Josef Bacik633c0aa2014-10-31 09:49:34 -04009532 if (list_empty(&sinfo->ro_bgs))
9533 return 0;
9534
9535 spin_lock(&sinfo->lock);
9536 list_for_each_entry(block_group, &sinfo->ro_bgs, ro_list) {
Miao Xie6d07bce2011-01-05 10:07:31 +00009537 spin_lock(&block_group->lock);
9538
9539 if (!block_group->ro) {
9540 spin_unlock(&block_group->lock);
9541 continue;
9542 }
9543
9544 if (block_group->flags & (BTRFS_BLOCK_GROUP_RAID1 |
9545 BTRFS_BLOCK_GROUP_RAID10 |
9546 BTRFS_BLOCK_GROUP_DUP))
9547 factor = 2;
9548 else
9549 factor = 1;
9550
9551 free_bytes += (block_group->key.offset -
9552 btrfs_block_group_used(&block_group->item)) *
9553 factor;
9554
9555 spin_unlock(&block_group->lock);
9556 }
Miao Xie6d07bce2011-01-05 10:07:31 +00009557 spin_unlock(&sinfo->lock);
9558
9559 return free_bytes;
9560}
9561
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009562void btrfs_dec_block_group_ro(struct btrfs_block_group_cache *cache)
Yan, Zhengf0486c62010-05-16 10:46:25 -04009563{
9564 struct btrfs_space_info *sinfo = cache->space_info;
9565 u64 num_bytes;
9566
9567 BUG_ON(!cache->ro);
9568
9569 spin_lock(&sinfo->lock);
9570 spin_lock(&cache->lock);
Zhaolei868f4012015-08-05 16:43:27 +08009571 if (!--cache->ro) {
9572 num_bytes = cache->key.offset - cache->reserved -
9573 cache->pinned - cache->bytes_super -
9574 btrfs_block_group_used(&cache->item);
9575 sinfo->bytes_readonly -= num_bytes;
9576 list_del_init(&cache->ro_list);
9577 }
Yan, Zhengf0486c62010-05-16 10:46:25 -04009578 spin_unlock(&cache->lock);
9579 spin_unlock(&sinfo->lock);
Yan Zheng5d4f98a2009-06-10 10:45:14 -04009580}
9581
Josef Bacikba1bf482009-09-11 16:11:19 -04009582/*
9583 * checks to see if its even possible to relocate this block group.
9584 *
9585 * @return - -1 if it's not a good idea to relocate this block group, 0 if its
9586 * ok to go ahead and try.
9587 */
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009588int btrfs_can_relocate(struct btrfs_fs_info *fs_info, u64 bytenr)
Zheng Yan1a40e232008-09-26 10:09:34 -04009589{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009590 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan1a40e232008-09-26 10:09:34 -04009591 struct btrfs_block_group_cache *block_group;
Josef Bacikba1bf482009-09-11 16:11:19 -04009592 struct btrfs_space_info *space_info;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009593 struct btrfs_fs_devices *fs_devices = fs_info->fs_devices;
Josef Bacikba1bf482009-09-11 16:11:19 -04009594 struct btrfs_device *device;
Josef Bacik6df9a952013-06-27 13:22:46 -04009595 struct btrfs_trans_handle *trans;
liubocdcb7252011-08-03 10:15:25 +00009596 u64 min_free;
Josef Bacik6719db62011-08-20 08:29:51 -04009597 u64 dev_min = 1;
9598 u64 dev_nr = 0;
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009599 u64 target;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009600 int debug;
liubocdcb7252011-08-03 10:15:25 +00009601 int index;
Josef Bacikba1bf482009-09-11 16:11:19 -04009602 int full = 0;
9603 int ret = 0;
Chris Masonedbd8d42007-12-21 16:27:24 -05009604
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009605 debug = btrfs_test_opt(fs_info, ENOSPC_DEBUG);
Qu Wenruo0305bc22016-03-23 11:38:17 +08009606
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009607 block_group = btrfs_lookup_block_group(fs_info, bytenr);
Zheng Yan1a40e232008-09-26 10:09:34 -04009608
Josef Bacikba1bf482009-09-11 16:11:19 -04009609 /* odd, couldn't find the block group, leave it alone */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009610 if (!block_group) {
9611 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009612 btrfs_warn(fs_info,
Qu Wenruo0305bc22016-03-23 11:38:17 +08009613 "can't find block group for bytenr %llu",
9614 bytenr);
Josef Bacikba1bf482009-09-11 16:11:19 -04009615 return -1;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009616 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009617
liubocdcb7252011-08-03 10:15:25 +00009618 min_free = btrfs_block_group_used(&block_group->item);
9619
Josef Bacikba1bf482009-09-11 16:11:19 -04009620 /* no bytes used, we're good */
liubocdcb7252011-08-03 10:15:25 +00009621 if (!min_free)
Josef Bacikba1bf482009-09-11 16:11:19 -04009622 goto out;
Chris Mason323da792008-05-09 11:46:48 -04009623
Josef Bacikba1bf482009-09-11 16:11:19 -04009624 space_info = block_group->space_info;
9625 spin_lock(&space_info->lock);
Chris Mason323da792008-05-09 11:46:48 -04009626
Josef Bacikba1bf482009-09-11 16:11:19 -04009627 full = space_info->full;
Zheng Yan1a40e232008-09-26 10:09:34 -04009628
Josef Bacikba1bf482009-09-11 16:11:19 -04009629 /*
9630 * if this is the last block group we have in this space, we can't
Chris Mason7ce618d2009-09-22 14:48:44 -04009631 * relocate it unless we're able to allocate a new chunk below.
9632 *
9633 * Otherwise, we need to make sure we have room in the space to handle
9634 * all of the extents from this block group. If we can, we're good
Josef Bacikba1bf482009-09-11 16:11:19 -04009635 */
Chris Mason7ce618d2009-09-22 14:48:44 -04009636 if ((space_info->total_bytes != block_group->key.offset) &&
Liu Bo41361352017-02-13 15:42:21 -08009637 (btrfs_space_info_used(space_info, false) + min_free <
9638 space_info->total_bytes)) {
Josef Bacikba1bf482009-09-11 16:11:19 -04009639 spin_unlock(&space_info->lock);
9640 goto out;
9641 }
9642 spin_unlock(&space_info->lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009643
Josef Bacikba1bf482009-09-11 16:11:19 -04009644 /*
9645 * ok we don't have enough space, but maybe we have free space on our
9646 * devices to allocate new chunks for relocation, so loop through our
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009647 * alloc devices and guess if we have enough space. if this block
9648 * group is going to be restriped, run checks against the target
9649 * profile instead of the current one.
Josef Bacikba1bf482009-09-11 16:11:19 -04009650 */
9651 ret = -1;
Chris Mason4313b392008-01-03 09:08:48 -05009652
liubocdcb7252011-08-03 10:15:25 +00009653 /*
9654 * index:
9655 * 0: raid10
9656 * 1: raid1
9657 * 2: dup
9658 * 3: raid0
9659 * 4: single
9660 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009661 target = get_restripe_target(fs_info, block_group->flags);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009662 if (target) {
Liu Bo31e50222012-11-21 14:18:10 +00009663 index = __get_raid_index(extended_to_chunk(target));
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009664 } else {
9665 /*
9666 * this is just a balance, so if we were marked as full
9667 * we know there is no space for a new chunk
9668 */
Qu Wenruo0305bc22016-03-23 11:38:17 +08009669 if (full) {
9670 if (debug)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009671 btrfs_warn(fs_info,
9672 "no space to alloc new chunk for block group %llu",
9673 block_group->key.objectid);
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009674 goto out;
Qu Wenruo0305bc22016-03-23 11:38:17 +08009675 }
Ilya Dryomov4a5e98f2012-03-27 17:09:17 +03009676
9677 index = get_block_group_index(block_group);
9678 }
9679
Miao Xiee6ec7162013-01-17 05:38:51 +00009680 if (index == BTRFS_RAID_RAID10) {
liubocdcb7252011-08-03 10:15:25 +00009681 dev_min = 4;
Josef Bacik6719db62011-08-20 08:29:51 -04009682 /* Divide by 2 */
9683 min_free >>= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009684 } else if (index == BTRFS_RAID_RAID1) {
liubocdcb7252011-08-03 10:15:25 +00009685 dev_min = 2;
Miao Xiee6ec7162013-01-17 05:38:51 +00009686 } else if (index == BTRFS_RAID_DUP) {
Josef Bacik6719db62011-08-20 08:29:51 -04009687 /* Multiply by 2 */
9688 min_free <<= 1;
Miao Xiee6ec7162013-01-17 05:38:51 +00009689 } else if (index == BTRFS_RAID_RAID0) {
liubocdcb7252011-08-03 10:15:25 +00009690 dev_min = fs_devices->rw_devices;
David Sterba47c57132015-02-20 18:43:47 +01009691 min_free = div64_u64(min_free, dev_min);
liubocdcb7252011-08-03 10:15:25 +00009692 }
9693
Josef Bacik6df9a952013-06-27 13:22:46 -04009694 /* We need to do this so that we can look at pending chunks */
9695 trans = btrfs_join_transaction(root);
9696 if (IS_ERR(trans)) {
9697 ret = PTR_ERR(trans);
9698 goto out;
9699 }
9700
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009701 mutex_lock(&fs_info->chunk_mutex);
Josef Bacikba1bf482009-09-11 16:11:19 -04009702 list_for_each_entry(device, &fs_devices->alloc_list, dev_alloc_list) {
Miao Xie7bfc8372011-01-05 10:07:26 +00009703 u64 dev_offset;
Chris Masonea8c2812008-08-04 23:17:27 -04009704
Josef Bacikba1bf482009-09-11 16:11:19 -04009705 /*
9706 * check to make sure we can actually find a chunk with enough
9707 * space to fit our block group in.
9708 */
Stefan Behrens63a212a2012-11-05 18:29:28 +01009709 if (device->total_bytes > device->bytes_used + min_free &&
9710 !device->is_tgtdev_for_dev_replace) {
Josef Bacik6df9a952013-06-27 13:22:46 -04009711 ret = find_free_dev_extent(trans, device, min_free,
Miao Xie7bfc8372011-01-05 10:07:26 +00009712 &dev_offset, NULL);
Josef Bacikba1bf482009-09-11 16:11:19 -04009713 if (!ret)
liubocdcb7252011-08-03 10:15:25 +00009714 dev_nr++;
9715
9716 if (dev_nr >= dev_min)
Yan73e48b22008-01-03 14:14:39 -05009717 break;
liubocdcb7252011-08-03 10:15:25 +00009718
Josef Bacikba1bf482009-09-11 16:11:19 -04009719 ret = -1;
Yan73e48b22008-01-03 14:14:39 -05009720 }
Chris Masonedbd8d42007-12-21 16:27:24 -05009721 }
Qu Wenruo0305bc22016-03-23 11:38:17 +08009722 if (debug && ret == -1)
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009723 btrfs_warn(fs_info,
9724 "no space to allocate a new chunk for block group %llu",
9725 block_group->key.objectid);
9726 mutex_unlock(&fs_info->chunk_mutex);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -04009727 btrfs_end_transaction(trans);
Chris Masonedbd8d42007-12-21 16:27:24 -05009728out:
Josef Bacikba1bf482009-09-11 16:11:19 -04009729 btrfs_put_block_group(block_group);
Chris Masonedbd8d42007-12-21 16:27:24 -05009730 return ret;
9731}
9732
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009733static int find_first_block_group(struct btrfs_fs_info *fs_info,
9734 struct btrfs_path *path,
9735 struct btrfs_key *key)
Chris Mason0b86a832008-03-24 15:01:56 -04009736{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -04009737 struct btrfs_root *root = fs_info->extent_root;
Chris Mason925baed2008-06-25 16:01:30 -04009738 int ret = 0;
Chris Mason0b86a832008-03-24 15:01:56 -04009739 struct btrfs_key found_key;
9740 struct extent_buffer *leaf;
9741 int slot;
9742
9743 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
9744 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009745 goto out;
9746
Chris Masond3977122009-01-05 21:25:51 -05009747 while (1) {
Chris Mason0b86a832008-03-24 15:01:56 -04009748 slot = path->slots[0];
9749 leaf = path->nodes[0];
9750 if (slot >= btrfs_header_nritems(leaf)) {
9751 ret = btrfs_next_leaf(root, path);
9752 if (ret == 0)
9753 continue;
9754 if (ret < 0)
Chris Mason925baed2008-06-25 16:01:30 -04009755 goto out;
Chris Mason0b86a832008-03-24 15:01:56 -04009756 break;
9757 }
9758 btrfs_item_key_to_cpu(leaf, &found_key, slot);
9759
9760 if (found_key.objectid >= key->objectid &&
Chris Mason925baed2008-06-25 16:01:30 -04009761 found_key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
Liu Bo6fb37b72016-06-22 18:31:27 -07009762 struct extent_map_tree *em_tree;
9763 struct extent_map *em;
9764
9765 em_tree = &root->fs_info->mapping_tree.map_tree;
9766 read_lock(&em_tree->lock);
9767 em = lookup_extent_mapping(em_tree, found_key.objectid,
9768 found_key.offset);
9769 read_unlock(&em_tree->lock);
9770 if (!em) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009771 btrfs_err(fs_info,
Liu Bo6fb37b72016-06-22 18:31:27 -07009772 "logical %llu len %llu found bg but no related chunk",
9773 found_key.objectid, found_key.offset);
9774 ret = -ENOENT;
9775 } else {
9776 ret = 0;
9777 }
Josef Bacik187ee582016-08-18 15:30:06 -04009778 free_extent_map(em);
Chris Mason925baed2008-06-25 16:01:30 -04009779 goto out;
9780 }
Chris Mason0b86a832008-03-24 15:01:56 -04009781 path->slots[0]++;
9782 }
Chris Mason925baed2008-06-25 16:01:30 -04009783out:
Chris Mason0b86a832008-03-24 15:01:56 -04009784 return ret;
9785}
9786
Josef Bacik0af3d002010-06-21 14:48:16 -04009787void btrfs_put_block_group_cache(struct btrfs_fs_info *info)
9788{
9789 struct btrfs_block_group_cache *block_group;
9790 u64 last = 0;
9791
9792 while (1) {
9793 struct inode *inode;
9794
9795 block_group = btrfs_lookup_first_block_group(info, last);
9796 while (block_group) {
9797 spin_lock(&block_group->lock);
9798 if (block_group->iref)
9799 break;
9800 spin_unlock(&block_group->lock);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009801 block_group = next_block_group(info, block_group);
Josef Bacik0af3d002010-06-21 14:48:16 -04009802 }
9803 if (!block_group) {
9804 if (last == 0)
9805 break;
9806 last = 0;
9807 continue;
9808 }
9809
9810 inode = block_group->inode;
9811 block_group->iref = 0;
9812 block_group->inode = NULL;
9813 spin_unlock(&block_group->lock);
Liu Bof3bca802016-07-20 17:33:44 -07009814 ASSERT(block_group->io_ctl.inode == NULL);
Josef Bacik0af3d002010-06-21 14:48:16 -04009815 iput(inode);
9816 last = block_group->key.objectid + block_group->key.offset;
9817 btrfs_put_block_group(block_group);
9818 }
9819}
9820
Filipe Manana5cdd7db2017-02-01 22:39:50 +00009821/*
9822 * Must be called only after stopping all workers, since we could have block
9823 * group caching kthreads running, and therefore they could race with us if we
9824 * freed the block groups before stopping them.
9825 */
Zheng Yan1a40e232008-09-26 10:09:34 -04009826int btrfs_free_block_groups(struct btrfs_fs_info *info)
9827{
9828 struct btrfs_block_group_cache *block_group;
Chris Mason4184ea72009-03-10 12:39:20 -04009829 struct btrfs_space_info *space_info;
Yan Zheng11833d62009-09-11 16:11:19 -04009830 struct btrfs_caching_control *caching_ctl;
Zheng Yan1a40e232008-09-26 10:09:34 -04009831 struct rb_node *n;
9832
Josef Bacik9e351cc2014-03-13 15:42:13 -04009833 down_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009834 while (!list_empty(&info->caching_block_groups)) {
9835 caching_ctl = list_entry(info->caching_block_groups.next,
9836 struct btrfs_caching_control, list);
9837 list_del(&caching_ctl->list);
9838 put_caching_control(caching_ctl);
9839 }
Josef Bacik9e351cc2014-03-13 15:42:13 -04009840 up_write(&info->commit_root_sem);
Yan Zheng11833d62009-09-11 16:11:19 -04009841
Josef Bacik47ab2a62014-09-18 11:20:02 -04009842 spin_lock(&info->unused_bgs_lock);
9843 while (!list_empty(&info->unused_bgs)) {
9844 block_group = list_first_entry(&info->unused_bgs,
9845 struct btrfs_block_group_cache,
9846 bg_list);
9847 list_del_init(&block_group->bg_list);
9848 btrfs_put_block_group(block_group);
9849 }
9850 spin_unlock(&info->unused_bgs_lock);
9851
Zheng Yan1a40e232008-09-26 10:09:34 -04009852 spin_lock(&info->block_group_cache_lock);
9853 while ((n = rb_last(&info->block_group_cache_tree)) != NULL) {
9854 block_group = rb_entry(n, struct btrfs_block_group_cache,
9855 cache_node);
Zheng Yan1a40e232008-09-26 10:09:34 -04009856 rb_erase(&block_group->cache_node,
9857 &info->block_group_cache_tree);
Filipe Manana01eacb22014-12-04 18:38:30 +00009858 RB_CLEAR_NODE(&block_group->cache_node);
Yan Zhengd899e052008-10-30 14:25:28 -04009859 spin_unlock(&info->block_group_cache_lock);
9860
Josef Bacik80eb2342008-10-29 14:49:05 -04009861 down_write(&block_group->space_info->groups_sem);
Zheng Yan1a40e232008-09-26 10:09:34 -04009862 list_del(&block_group->list);
Josef Bacik80eb2342008-10-29 14:49:05 -04009863 up_write(&block_group->space_info->groups_sem);
Yan Zhengd2fb3432008-12-11 16:30:39 -05009864
Josef Bacik3c148742011-02-02 15:53:47 +00009865 /*
9866 * We haven't cached this block group, which means we could
9867 * possibly have excluded extents on this block group.
9868 */
Josef Bacik36cce922013-08-05 11:15:21 -04009869 if (block_group->cached == BTRFS_CACHE_NO ||
9870 block_group->cached == BTRFS_CACHE_ERROR)
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009871 free_excluded_extents(info, block_group);
Josef Bacik3c148742011-02-02 15:53:47 +00009872
Josef Bacik817d52f2009-07-13 21:29:25 -04009873 btrfs_remove_free_space_cache(block_group);
Filipe Manana5cdd7db2017-02-01 22:39:50 +00009874 ASSERT(block_group->cached != BTRFS_CACHE_STARTED);
Liu Bof3bca802016-07-20 17:33:44 -07009875 ASSERT(list_empty(&block_group->dirty_list));
9876 ASSERT(list_empty(&block_group->io_list));
9877 ASSERT(list_empty(&block_group->bg_list));
9878 ASSERT(atomic_read(&block_group->count) == 1);
Josef Bacik11dfe352009-11-13 20:12:59 +00009879 btrfs_put_block_group(block_group);
Yan Zhengd899e052008-10-30 14:25:28 -04009880
9881 spin_lock(&info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -04009882 }
9883 spin_unlock(&info->block_group_cache_lock);
Chris Mason4184ea72009-03-10 12:39:20 -04009884
9885 /* now that all the block groups are freed, go through and
9886 * free all the space_info structs. This is only called during
9887 * the final stages of unmount, and so we know nobody is
9888 * using them. We call synchronize_rcu() once before we start,
9889 * just to be on the safe side.
9890 */
9891 synchronize_rcu();
9892
Yan, Zheng8929ecfa2010-05-16 10:49:58 -04009893 release_global_block_rsv(info);
9894
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05309895 while (!list_empty(&info->space_info)) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009896 int i;
9897
Chris Mason4184ea72009-03-10 12:39:20 -04009898 space_info = list_entry(info->space_info.next,
9899 struct btrfs_space_info,
9900 list);
Josef Bacikd555b6c32016-03-25 13:25:51 -04009901
9902 /*
9903 * Do not hide this behind enospc_debug, this is actually
9904 * important and indicates a real bug if this happens.
9905 */
9906 if (WARN_ON(space_info->bytes_pinned > 0 ||
David Sterbab069e0c2013-02-08 21:28:17 +00009907 space_info->bytes_reserved > 0 ||
Josef Bacikd555b6c32016-03-25 13:25:51 -04009908 space_info->bytes_may_use > 0))
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009909 dump_space_info(info, space_info, 0, 0);
Chris Mason4184ea72009-03-10 12:39:20 -04009910 list_del(&space_info->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009911 for (i = 0; i < BTRFS_NR_RAID_TYPES; i++) {
9912 struct kobject *kobj;
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009913 kobj = space_info->block_group_kobjs[i];
9914 space_info->block_group_kobjs[i] = NULL;
9915 if (kobj) {
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009916 kobject_del(kobj);
9917 kobject_put(kobj);
9918 }
9919 }
9920 kobject_del(&space_info->kobj);
9921 kobject_put(&space_info->kobj);
Chris Mason4184ea72009-03-10 12:39:20 -04009922 }
Zheng Yan1a40e232008-09-26 10:09:34 -04009923 return 0;
9924}
9925
Yan, Zhengb742bb822010-05-16 10:46:24 -04009926static void __link_block_group(struct btrfs_space_info *space_info,
9927 struct btrfs_block_group_cache *cache)
9928{
9929 int index = get_block_group_index(cache);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04009930 bool first = false;
Yan, Zhengb742bb822010-05-16 10:46:24 -04009931
9932 down_write(&space_info->groups_sem);
Jeff Mahoneyed55b6a2014-03-26 14:11:26 -04009933 if (list_empty(&space_info->block_groups[index]))
9934 first = true;
9935 list_add_tail(&cache->list, &space_info->block_groups[index]);
9936 up_write(&space_info->groups_sem);
9937
9938 if (first) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009939 struct raid_kobject *rkobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009940 int ret;
9941
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009942 rkobj = kzalloc(sizeof(*rkobj), GFP_NOFS);
9943 if (!rkobj)
9944 goto out_err;
9945 rkobj->raid_type = index;
9946 kobject_init(&rkobj->kobj, &btrfs_raid_ktype);
9947 ret = kobject_add(&rkobj->kobj, &space_info->kobj,
9948 "%s", get_raid_name(index));
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009949 if (ret) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009950 kobject_put(&rkobj->kobj);
9951 goto out_err;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009952 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009953 space_info->block_group_kobjs[index] = &rkobj->kobj;
Jeff Mahoney6ab0a202013-11-01 13:07:04 -04009954 }
Jeff Mahoneyc1895442014-05-27 12:59:57 -04009955
9956 return;
9957out_err:
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04009958 btrfs_warn(cache->fs_info,
9959 "failed to add kobject for block cache, ignoring");
Yan, Zhengb742bb822010-05-16 10:46:24 -04009960}
9961
Miao Xie920e4a52014-01-15 20:00:55 +08009962static struct btrfs_block_group_cache *
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04009963btrfs_create_block_group_cache(struct btrfs_fs_info *fs_info,
9964 u64 start, u64 size)
Miao Xie920e4a52014-01-15 20:00:55 +08009965{
9966 struct btrfs_block_group_cache *cache;
9967
9968 cache = kzalloc(sizeof(*cache), GFP_NOFS);
9969 if (!cache)
9970 return NULL;
9971
9972 cache->free_space_ctl = kzalloc(sizeof(*cache->free_space_ctl),
9973 GFP_NOFS);
9974 if (!cache->free_space_ctl) {
9975 kfree(cache);
9976 return NULL;
9977 }
9978
9979 cache->key.objectid = start;
9980 cache->key.offset = size;
9981 cache->key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
9982
Jeff Mahoney0b246af2016-06-22 18:54:23 -04009983 cache->fs_info = fs_info;
Nikolay Borisove4ff5fb2017-07-19 10:48:42 +03009984 cache->full_stripe_len = btrfs_full_stripe_len(fs_info, start);
Omar Sandoval1e144fb2015-09-29 20:50:37 -07009985 set_free_space_tree_thresholds(cache);
9986
Miao Xie920e4a52014-01-15 20:00:55 +08009987 atomic_set(&cache->count, 1);
9988 spin_lock_init(&cache->lock);
Miao Xiee570fd22014-06-19 10:42:50 +08009989 init_rwsem(&cache->data_rwsem);
Miao Xie920e4a52014-01-15 20:00:55 +08009990 INIT_LIST_HEAD(&cache->list);
9991 INIT_LIST_HEAD(&cache->cluster_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -04009992 INIT_LIST_HEAD(&cache->bg_list);
Josef Bacik633c0aa2014-10-31 09:49:34 -04009993 INIT_LIST_HEAD(&cache->ro_list);
Josef Bacikce93ec52014-11-17 15:45:48 -05009994 INIT_LIST_HEAD(&cache->dirty_list);
Chris Masonc9dc4c62015-04-04 17:14:42 -07009995 INIT_LIST_HEAD(&cache->io_list);
Miao Xie920e4a52014-01-15 20:00:55 +08009996 btrfs_init_free_space_ctl(cache);
Filipe Manana04216822014-11-27 21:14:15 +00009997 atomic_set(&cache->trimming, 0);
Omar Sandovala5ed9182015-09-29 20:50:35 -07009998 mutex_init(&cache->free_space_lock);
Qu Wenruo0966a7b2017-04-14 08:35:54 +08009999 btrfs_init_full_stripe_locks_tree(&cache->full_stripe_locks_root);
Miao Xie920e4a52014-01-15 20:00:55 +080010000
10001 return cache;
10002}
10003
Jeff Mahoney5b4aace2016-06-21 10:40:19 -040010004int btrfs_read_block_groups(struct btrfs_fs_info *info)
Chris Mason9078a3e2007-04-26 16:46:15 -040010005{
10006 struct btrfs_path *path;
10007 int ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010008 struct btrfs_block_group_cache *cache;
Chris Mason6324fbf2008-03-24 15:01:59 -040010009 struct btrfs_space_info *space_info;
Chris Mason9078a3e2007-04-26 16:46:15 -040010010 struct btrfs_key key;
10011 struct btrfs_key found_key;
Chris Mason5f39d392007-10-15 16:14:19 -040010012 struct extent_buffer *leaf;
Josef Bacik0af3d002010-06-21 14:48:16 -040010013 int need_clear = 0;
10014 u64 cache_gen;
Liu Bo49303382016-08-25 18:08:27 -070010015 u64 feature;
10016 int mixed;
10017
10018 feature = btrfs_super_incompat_flags(info->super_copy);
10019 mixed = !!(feature & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS);
Chris Mason96b51792007-10-15 16:15:19 -040010020
Chris Mason9078a3e2007-04-26 16:46:15 -040010021 key.objectid = 0;
Chris Mason0b86a832008-03-24 15:01:56 -040010022 key.offset = 0;
David Sterba962a2982014-06-04 18:41:45 +020010023 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
Chris Mason9078a3e2007-04-26 16:46:15 -040010024 path = btrfs_alloc_path();
10025 if (!path)
10026 return -ENOMEM;
David Sterbae4058b52015-11-27 16:31:35 +010010027 path->reada = READA_FORWARD;
Chris Mason9078a3e2007-04-26 16:46:15 -040010028
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010029 cache_gen = btrfs_super_cache_generation(info->super_copy);
10030 if (btrfs_test_opt(info, SPACE_CACHE) &&
10031 btrfs_super_generation(info->super_copy) != cache_gen)
Josef Bacik0af3d002010-06-21 14:48:16 -040010032 need_clear = 1;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010033 if (btrfs_test_opt(info, CLEAR_CACHE))
Josef Bacik88c2ba32010-09-21 14:21:34 -040010034 need_clear = 1;
Josef Bacik0af3d002010-06-21 14:48:16 -040010035
Chris Masond3977122009-01-05 21:25:51 -050010036 while (1) {
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010037 ret = find_first_block_group(info, path, &key);
Yan, Zhengb742bb822010-05-16 10:46:24 -040010038 if (ret > 0)
10039 break;
Chris Mason0b86a832008-03-24 15:01:56 -040010040 if (ret != 0)
10041 goto error;
Miao Xie920e4a52014-01-15 20:00:55 +080010042
Chris Mason5f39d392007-10-15 16:14:19 -040010043 leaf = path->nodes[0];
10044 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
Miao Xie920e4a52014-01-15 20:00:55 +080010045
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010046 cache = btrfs_create_block_group_cache(info, found_key.objectid,
Miao Xie920e4a52014-01-15 20:00:55 +080010047 found_key.offset);
Chris Mason9078a3e2007-04-26 16:46:15 -040010048 if (!cache) {
Chris Mason0b86a832008-03-24 15:01:56 -040010049 ret = -ENOMEM;
Yan, Zhengf0486c62010-05-16 10:46:25 -040010050 goto error;
Chris Mason9078a3e2007-04-26 16:46:15 -040010051 }
Josef Bacik96303082009-07-13 21:29:25 -040010052
Liu Bocf7c1ef2012-07-06 03:31:34 -060010053 if (need_clear) {
10054 /*
10055 * When we mount with old space cache, we need to
10056 * set BTRFS_DC_CLEAR and set dirty flag.
10057 *
10058 * a) Setting 'BTRFS_DC_CLEAR' makes sure that we
10059 * truncate the old free space cache inode and
10060 * setup a new one.
10061 * b) Setting 'dirty flag' makes sure that we flush
10062 * the new space cache info onto disk.
10063 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010064 if (btrfs_test_opt(info, SPACE_CACHE))
Josef Bacikce93ec52014-11-17 15:45:48 -050010065 cache->disk_cache_state = BTRFS_DC_CLEAR;
Liu Bocf7c1ef2012-07-06 03:31:34 -060010066 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010067
Chris Mason5f39d392007-10-15 16:14:19 -040010068 read_extent_buffer(leaf, &cache->item,
10069 btrfs_item_ptr_offset(leaf, path->slots[0]),
10070 sizeof(cache->item));
Miao Xie920e4a52014-01-15 20:00:55 +080010071 cache->flags = btrfs_block_group_flags(&cache->item);
Liu Bo49303382016-08-25 18:08:27 -070010072 if (!mixed &&
10073 ((cache->flags & BTRFS_BLOCK_GROUP_METADATA) &&
10074 (cache->flags & BTRFS_BLOCK_GROUP_DATA))) {
10075 btrfs_err(info,
10076"bg %llu is a mixed block group but filesystem hasn't enabled mixed block groups",
10077 cache->key.objectid);
10078 ret = -EINVAL;
10079 goto error;
10080 }
Chris Mason0b86a832008-03-24 15:01:56 -040010081
Chris Mason9078a3e2007-04-26 16:46:15 -040010082 key.objectid = found_key.objectid + found_key.offset;
David Sterbab3b4aa72011-04-21 01:20:15 +020010083 btrfs_release_path(path);
Li Zefan34d52cb2011-03-29 13:46:06 +080010084
Josef Bacik817d52f2009-07-13 21:29:25 -040010085 /*
Josef Bacik3c148742011-02-02 15:53:47 +000010086 * We need to exclude the super stripes now so that the space
10087 * info has super bytes accounted for, otherwise we'll think
10088 * we have more space than we actually do.
10089 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010090 ret = exclude_super_stripes(info, cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010091 if (ret) {
10092 /*
10093 * We may have excluded something, so call this just in
10094 * case.
10095 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010096 free_excluded_extents(info, cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010097 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010098 goto error;
10099 }
Josef Bacik3c148742011-02-02 15:53:47 +000010100
10101 /*
Josef Bacik817d52f2009-07-13 21:29:25 -040010102 * check for two cases, either we are full, and therefore
10103 * don't need to bother with the caching work since we won't
10104 * find any space, or we are empty, and we can just add all
10105 * the space in and be done with it. This saves us _alot_ of
10106 * time, particularly in the full case.
10107 */
10108 if (found_key.offset == btrfs_block_group_used(&cache->item)) {
Yan Zheng11833d62009-09-11 16:11:19 -040010109 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010110 cache->cached = BTRFS_CACHE_FINISHED;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010111 free_excluded_extents(info, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010112 } else if (btrfs_block_group_used(&cache->item) == 0) {
Yan Zheng11833d62009-09-11 16:11:19 -040010113 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010114 cache->cached = BTRFS_CACHE_FINISHED;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010115 add_new_free_space(cache, info,
Josef Bacik817d52f2009-07-13 21:29:25 -040010116 found_key.objectid,
10117 found_key.objectid +
10118 found_key.offset);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010119 free_excluded_extents(info, cache);
Josef Bacik817d52f2009-07-13 21:29:25 -040010120 }
Chris Mason96b51792007-10-15 16:15:19 -040010121
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010122 ret = btrfs_add_block_group_cache(info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010123 if (ret) {
10124 btrfs_remove_free_space_cache(cache);
10125 btrfs_put_block_group(cache);
10126 goto error;
10127 }
10128
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010129 trace_btrfs_add_block_group(info, cache, 0);
Nikolay Borisovd2006e62017-05-22 09:35:50 +030010130 update_space_info(info, cache->flags, found_key.offset,
10131 btrfs_block_group_used(&cache->item),
10132 cache->bytes_super, &space_info);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010133
Chris Mason6324fbf2008-03-24 15:01:59 -040010134 cache->space_info = space_info;
Josef Bacik1b2da372009-09-11 16:11:20 -040010135
Yan, Zhengb742bb822010-05-16 10:46:24 -040010136 __link_block_group(space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010137
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010138 set_avail_alloc_bits(info, cache->flags);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010139 if (btrfs_chunk_readonly(info, cache->key.objectid)) {
Zhaolei868f4012015-08-05 16:43:27 +080010140 inc_block_group_ro(cache, 1);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010141 } else if (btrfs_block_group_used(&cache->item) == 0) {
10142 spin_lock(&info->unused_bgs_lock);
10143 /* Should always be true but just in case. */
10144 if (list_empty(&cache->bg_list)) {
10145 btrfs_get_block_group(cache);
10146 list_add_tail(&cache->bg_list,
10147 &info->unused_bgs);
10148 }
10149 spin_unlock(&info->unused_bgs_lock);
10150 }
Chris Mason9078a3e2007-04-26 16:46:15 -040010151 }
Yan, Zhengb742bb822010-05-16 10:46:24 -040010152
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010153 list_for_each_entry_rcu(space_info, &info->space_info, list) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010154 if (!(get_alloc_profile(info, space_info->flags) &
Yan, Zhengb742bb822010-05-16 10:46:24 -040010155 (BTRFS_BLOCK_GROUP_RAID10 |
10156 BTRFS_BLOCK_GROUP_RAID1 |
David Woodhouse53b381b2013-01-29 18:40:14 -050010157 BTRFS_BLOCK_GROUP_RAID5 |
10158 BTRFS_BLOCK_GROUP_RAID6 |
Yan, Zhengb742bb822010-05-16 10:46:24 -040010159 BTRFS_BLOCK_GROUP_DUP)))
10160 continue;
10161 /*
10162 * avoid allocating from un-mirrored block group if there are
10163 * mirrored block groups.
10164 */
chandan1095cc02013-07-16 12:28:56 +053010165 list_for_each_entry(cache,
10166 &space_info->block_groups[BTRFS_RAID_RAID0],
10167 list)
Zhaolei868f4012015-08-05 16:43:27 +080010168 inc_block_group_ro(cache, 1);
chandan1095cc02013-07-16 12:28:56 +053010169 list_for_each_entry(cache,
10170 &space_info->block_groups[BTRFS_RAID_SINGLE],
10171 list)
Zhaolei868f4012015-08-05 16:43:27 +080010172 inc_block_group_ro(cache, 1);
Yan, Zhengb742bb822010-05-16 10:46:24 -040010173 }
Yan, Zhengf0486c62010-05-16 10:46:25 -040010174
10175 init_global_block_rsv(info);
Chris Mason0b86a832008-03-24 15:01:56 -040010176 ret = 0;
10177error:
Chris Mason9078a3e2007-04-26 16:46:15 -040010178 btrfs_free_path(path);
Chris Mason0b86a832008-03-24 15:01:56 -040010179 return ret;
Chris Mason9078a3e2007-04-26 16:46:15 -040010180}
Chris Mason6324fbf2008-03-24 15:01:59 -040010181
Josef Bacikea658ba2012-09-11 16:57:25 -040010182void btrfs_create_pending_block_groups(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010183 struct btrfs_fs_info *fs_info)
Josef Bacikea658ba2012-09-11 16:57:25 -040010184{
10185 struct btrfs_block_group_cache *block_group, *tmp;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010186 struct btrfs_root *extent_root = fs_info->extent_root;
Josef Bacikea658ba2012-09-11 16:57:25 -040010187 struct btrfs_block_group_item item;
10188 struct btrfs_key key;
10189 int ret = 0;
Filipe Mananad9a05402015-10-03 13:13:13 +010010190 bool can_flush_pending_bgs = trans->can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -040010191
Filipe Mananad9a05402015-10-03 13:13:13 +010010192 trans->can_flush_pending_bgs = false;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010193 list_for_each_entry_safe(block_group, tmp, &trans->new_bgs, bg_list) {
Josef Bacikea658ba2012-09-11 16:57:25 -040010194 if (ret)
Filipe Mananac92f6be2014-11-26 15:28:55 +000010195 goto next;
Josef Bacikea658ba2012-09-11 16:57:25 -040010196
10197 spin_lock(&block_group->lock);
10198 memcpy(&item, &block_group->item, sizeof(item));
10199 memcpy(&key, &block_group->key, sizeof(key));
10200 spin_unlock(&block_group->lock);
10201
10202 ret = btrfs_insert_item(trans, extent_root, &key, &item,
10203 sizeof(item));
10204 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010205 btrfs_abort_transaction(trans, ret);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010206 ret = btrfs_finish_chunk_alloc(trans, fs_info, key.objectid,
10207 key.offset);
Josef Bacik6df9a952013-06-27 13:22:46 -040010208 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -040010209 btrfs_abort_transaction(trans, ret);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010210 add_block_group_free_space(trans, fs_info, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010211 /* already aborted the transaction if it failed. */
Filipe Mananac92f6be2014-11-26 15:28:55 +000010212next:
10213 list_del_init(&block_group->bg_list);
Josef Bacikea658ba2012-09-11 16:57:25 -040010214 }
Filipe Mananad9a05402015-10-03 13:13:13 +010010215 trans->can_flush_pending_bgs = can_flush_pending_bgs;
Josef Bacikea658ba2012-09-11 16:57:25 -040010216}
10217
Chris Mason6324fbf2008-03-24 15:01:59 -040010218int btrfs_make_block_group(struct btrfs_trans_handle *trans,
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010219 struct btrfs_fs_info *fs_info, u64 bytes_used,
Nikolay Borisov01744842017-07-27 14:22:11 +030010220 u64 type, u64 chunk_offset, u64 size)
Chris Mason6324fbf2008-03-24 15:01:59 -040010221{
Chris Mason6324fbf2008-03-24 15:01:59 -040010222 struct btrfs_block_group_cache *cache;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010223 int ret;
Chris Mason6324fbf2008-03-24 15:01:59 -040010224
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010225 btrfs_set_log_full_commit(fs_info, trans);
Chris Masone02119d2008-09-05 16:13:11 -040010226
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010227 cache = btrfs_create_block_group_cache(fs_info, chunk_offset, size);
Josef Bacik0f9dd462008-09-23 13:14:11 -040010228 if (!cache)
10229 return -ENOMEM;
Li Zefan34d52cb2011-03-29 13:46:06 +080010230
Chris Mason6324fbf2008-03-24 15:01:59 -040010231 btrfs_set_block_group_used(&cache->item, bytes_used);
Nikolay Borisov01744842017-07-27 14:22:11 +030010232 btrfs_set_block_group_chunk_objectid(&cache->item,
10233 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
Chris Mason6324fbf2008-03-24 15:01:59 -040010234 btrfs_set_block_group_flags(&cache->item, type);
10235
Miao Xie920e4a52014-01-15 20:00:55 +080010236 cache->flags = type;
Yan Zheng11833d62009-09-11 16:11:19 -040010237 cache->last_byte_to_unpin = (u64)-1;
Josef Bacik817d52f2009-07-13 21:29:25 -040010238 cache->cached = BTRFS_CACHE_FINISHED;
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010239 cache->needs_free_space = 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010240 ret = exclude_super_stripes(fs_info, cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010241 if (ret) {
10242 /*
10243 * We may have excluded something, so call this just in
10244 * case.
10245 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010246 free_excluded_extents(fs_info, cache);
Miao Xie920e4a52014-01-15 20:00:55 +080010247 btrfs_put_block_group(cache);
Josef Bacik835d9742013-03-19 12:13:25 -040010248 return ret;
10249 }
Josef Bacik96303082009-07-13 21:29:25 -040010250
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010251 add_new_free_space(cache, fs_info, chunk_offset, chunk_offset + size);
Josef Bacik817d52f2009-07-13 21:29:25 -040010252
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010253 free_excluded_extents(fs_info, cache);
Yan Zheng11833d62009-09-11 16:11:19 -040010254
Josef Bacikd0bd4562015-09-23 14:54:14 -040010255#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010256 if (btrfs_should_fragment_free_space(cache)) {
Josef Bacikd0bd4562015-09-23 14:54:14 -040010257 u64 new_bytes_used = size - bytes_used;
10258
10259 bytes_used += new_bytes_used >> 1;
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010260 fragment_free_space(cache);
Josef Bacikd0bd4562015-09-23 14:54:14 -040010261 }
10262#endif
Filipe Manana2e6e5182015-05-12 00:28:11 +010010263 /*
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010264 * Ensure the corresponding space_info object is created and
10265 * assigned to our block group. We want our bg to be added to the rbtree
10266 * with its ->space_info set.
Filipe Manana2e6e5182015-05-12 00:28:11 +010010267 */
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010268 cache->space_info = __find_space_info(fs_info, cache->flags);
10269 if (!cache->space_info) {
10270 ret = create_space_info(fs_info, cache->flags,
10271 &cache->space_info);
10272 if (ret) {
10273 btrfs_remove_free_space_cache(cache);
10274 btrfs_put_block_group(cache);
10275 return ret;
10276 }
Filipe Manana2e6e5182015-05-12 00:28:11 +010010277 }
10278
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010279 ret = btrfs_add_block_group_cache(fs_info, cache);
Josef Bacik8c579fe2013-04-02 12:40:42 -040010280 if (ret) {
10281 btrfs_remove_free_space_cache(cache);
10282 btrfs_put_block_group(cache);
10283 return ret;
10284 }
10285
Filipe Manana2e6e5182015-05-12 00:28:11 +010010286 /*
10287 * Now that our block group has its ->space_info set and is inserted in
10288 * the rbtree, update the space info's counters.
10289 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010290 trace_btrfs_add_block_group(fs_info, cache, 1);
Nikolay Borisovd2006e62017-05-22 09:35:50 +030010291 update_space_info(fs_info, cache->flags, size, bytes_used,
Josef Bacike40edf22016-03-25 13:25:47 -040010292 cache->bytes_super, &cache->space_info);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010293 update_global_block_rsv(fs_info);
Josef Bacik1b2da372009-09-11 16:11:20 -040010294
Yan, Zhengb742bb822010-05-16 10:46:24 -040010295 __link_block_group(cache->space_info, cache);
Chris Mason6324fbf2008-03-24 15:01:59 -040010296
Josef Bacik47ab2a62014-09-18 11:20:02 -040010297 list_add_tail(&cache->bg_list, &trans->new_bgs);
Chris Mason6324fbf2008-03-24 15:01:59 -040010298
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010299 set_avail_alloc_bits(fs_info, type);
Chris Mason6324fbf2008-03-24 15:01:59 -040010300 return 0;
10301}
Zheng Yan1a40e232008-09-26 10:09:34 -040010302
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010303static void clear_avail_alloc_bits(struct btrfs_fs_info *fs_info, u64 flags)
10304{
Ilya Dryomov899c81e2012-03-27 17:09:16 +030010305 u64 extra_flags = chunk_to_extended(flags) &
10306 BTRFS_EXTENDED_PROFILE_MASK;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010307
Miao Xiede98ced2013-01-29 10:13:12 +000010308 write_seqlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010309 if (flags & BTRFS_BLOCK_GROUP_DATA)
10310 fs_info->avail_data_alloc_bits &= ~extra_flags;
10311 if (flags & BTRFS_BLOCK_GROUP_METADATA)
10312 fs_info->avail_metadata_alloc_bits &= ~extra_flags;
10313 if (flags & BTRFS_BLOCK_GROUP_SYSTEM)
10314 fs_info->avail_system_alloc_bits &= ~extra_flags;
Miao Xiede98ced2013-01-29 10:13:12 +000010315 write_sequnlock(&fs_info->profiles_lock);
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010316}
10317
Zheng Yan1a40e232008-09-26 10:09:34 -040010318int btrfs_remove_block_group(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010319 struct btrfs_fs_info *fs_info, u64 group_start,
Filipe Manana04216822014-11-27 21:14:15 +000010320 struct extent_map *em)
Zheng Yan1a40e232008-09-26 10:09:34 -040010321{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010322 struct btrfs_root *root = fs_info->extent_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010323 struct btrfs_path *path;
10324 struct btrfs_block_group_cache *block_group;
Chris Mason44fb5512009-06-04 15:34:51 -040010325 struct btrfs_free_cluster *cluster;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010326 struct btrfs_root *tree_root = fs_info->tree_root;
Zheng Yan1a40e232008-09-26 10:09:34 -040010327 struct btrfs_key key;
Josef Bacik0af3d002010-06-21 14:48:16 -040010328 struct inode *inode;
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010329 struct kobject *kobj = NULL;
Zheng Yan1a40e232008-09-26 10:09:34 -040010330 int ret;
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010331 int index;
Josef Bacik89a55892010-10-14 14:52:27 -040010332 int factor;
Filipe Manana4f69cb92014-11-26 15:28:51 +000010333 struct btrfs_caching_control *caching_ctl = NULL;
Filipe Manana04216822014-11-27 21:14:15 +000010334 bool remove_em;
Zheng Yan1a40e232008-09-26 10:09:34 -040010335
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -040010336 block_group = btrfs_lookup_block_group(fs_info, group_start);
Zheng Yan1a40e232008-09-26 10:09:34 -040010337 BUG_ON(!block_group);
Yan Zhengc146afa2008-11-12 14:34:12 -050010338 BUG_ON(!block_group->ro);
Zheng Yan1a40e232008-09-26 10:09:34 -040010339
liubo9f7c43c2011-03-07 02:13:33 +000010340 /*
10341 * Free the reserved super bytes from this block group before
10342 * remove it.
10343 */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010344 free_excluded_extents(fs_info, block_group);
liubo9f7c43c2011-03-07 02:13:33 +000010345
Zheng Yan1a40e232008-09-26 10:09:34 -040010346 memcpy(&key, &block_group->key, sizeof(key));
Ilya Dryomov10ea00f2012-01-16 22:04:47 +020010347 index = get_block_group_index(block_group);
Josef Bacik89a55892010-10-14 14:52:27 -040010348 if (block_group->flags & (BTRFS_BLOCK_GROUP_DUP |
10349 BTRFS_BLOCK_GROUP_RAID1 |
10350 BTRFS_BLOCK_GROUP_RAID10))
10351 factor = 2;
10352 else
10353 factor = 1;
Zheng Yan1a40e232008-09-26 10:09:34 -040010354
Chris Mason44fb5512009-06-04 15:34:51 -040010355 /* make sure this block group isn't part of an allocation cluster */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010356 cluster = &fs_info->data_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010357 spin_lock(&cluster->refill_lock);
10358 btrfs_return_cluster_to_free_space(block_group, cluster);
10359 spin_unlock(&cluster->refill_lock);
10360
10361 /*
10362 * make sure this block group isn't part of a metadata
10363 * allocation cluster
10364 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010365 cluster = &fs_info->meta_alloc_cluster;
Chris Mason44fb5512009-06-04 15:34:51 -040010366 spin_lock(&cluster->refill_lock);
10367 btrfs_return_cluster_to_free_space(block_group, cluster);
10368 spin_unlock(&cluster->refill_lock);
10369
Zheng Yan1a40e232008-09-26 10:09:34 -040010370 path = btrfs_alloc_path();
Mark Fashehd8926bb2011-07-13 10:38:47 -070010371 if (!path) {
10372 ret = -ENOMEM;
10373 goto out;
10374 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010375
Chris Mason1bbc6212015-04-06 12:46:08 -070010376 /*
10377 * get the inode first so any iput calls done for the io_list
10378 * aren't the final iput (no unlinks allowed now)
10379 */
Jeff Mahoney77ab86b2017-02-15 16:28:30 -050010380 inode = lookup_free_space_inode(fs_info, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010381
10382 mutex_lock(&trans->transaction->cache_write_mutex);
10383 /*
10384 * make sure our free spache cache IO is done before remove the
10385 * free space inode
10386 */
10387 spin_lock(&trans->transaction->dirty_bgs_lock);
10388 if (!list_empty(&block_group->io_list)) {
10389 list_del_init(&block_group->io_list);
10390
10391 WARN_ON(!IS_ERR(inode) && inode != block_group->io_ctl.inode);
10392
10393 spin_unlock(&trans->transaction->dirty_bgs_lock);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -040010394 btrfs_wait_cache_io(trans, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -070010395 btrfs_put_block_group(block_group);
10396 spin_lock(&trans->transaction->dirty_bgs_lock);
10397 }
10398
10399 if (!list_empty(&block_group->dirty_list)) {
10400 list_del_init(&block_group->dirty_list);
10401 btrfs_put_block_group(block_group);
10402 }
10403 spin_unlock(&trans->transaction->dirty_bgs_lock);
10404 mutex_unlock(&trans->transaction->cache_write_mutex);
10405
Josef Bacik0af3d002010-06-21 14:48:16 -040010406 if (!IS_ERR(inode)) {
Nikolay Borisov73f2e542017-02-20 13:50:59 +020010407 ret = btrfs_orphan_add(trans, BTRFS_I(inode));
Jeff Mahoney79787ea2012-03-12 16:03:00 +010010408 if (ret) {
10409 btrfs_add_delayed_iput(inode);
10410 goto out;
10411 }
Josef Bacik0af3d002010-06-21 14:48:16 -040010412 clear_nlink(inode);
10413 /* One for the block groups ref */
10414 spin_lock(&block_group->lock);
10415 if (block_group->iref) {
10416 block_group->iref = 0;
10417 block_group->inode = NULL;
10418 spin_unlock(&block_group->lock);
10419 iput(inode);
10420 } else {
10421 spin_unlock(&block_group->lock);
10422 }
10423 /* One for our lookup ref */
Josef Bacik455757c2011-09-19 12:26:24 -040010424 btrfs_add_delayed_iput(inode);
Josef Bacik0af3d002010-06-21 14:48:16 -040010425 }
10426
10427 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
10428 key.offset = block_group->key.objectid;
10429 key.type = 0;
10430
10431 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
10432 if (ret < 0)
10433 goto out;
10434 if (ret > 0)
David Sterbab3b4aa72011-04-21 01:20:15 +020010435 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010436 if (ret == 0) {
10437 ret = btrfs_del_item(trans, tree_root, path);
10438 if (ret)
10439 goto out;
David Sterbab3b4aa72011-04-21 01:20:15 +020010440 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040010441 }
10442
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010443 spin_lock(&fs_info->block_group_cache_lock);
Zheng Yan1a40e232008-09-26 10:09:34 -040010444 rb_erase(&block_group->cache_node,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010445 &fs_info->block_group_cache_tree);
Filipe Manana292cbd52014-11-26 15:28:50 +000010446 RB_CLEAR_NODE(&block_group->cache_node);
Liu Boa1897fd2012-12-27 09:01:23 +000010447
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010448 if (fs_info->first_logical_byte == block_group->key.objectid)
10449 fs_info->first_logical_byte = (u64)-1;
10450 spin_unlock(&fs_info->block_group_cache_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010451
Josef Bacik80eb2342008-10-29 14:49:05 -040010452 down_write(&block_group->space_info->groups_sem);
Chris Mason44fb5512009-06-04 15:34:51 -040010453 /*
10454 * we must use list_del_init so people can check to see if they
10455 * are still on the list after taking the semaphore
10456 */
10457 list_del_init(&block_group->list);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010458 if (list_empty(&block_group->space_info->block_groups[index])) {
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010459 kobj = block_group->space_info->block_group_kobjs[index];
10460 block_group->space_info->block_group_kobjs[index] = NULL;
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010461 clear_avail_alloc_bits(fs_info, block_group->flags);
Jeff Mahoney6ab0a202013-11-01 13:07:04 -040010462 }
Josef Bacik80eb2342008-10-29 14:49:05 -040010463 up_write(&block_group->space_info->groups_sem);
Jeff Mahoneyc1895442014-05-27 12:59:57 -040010464 if (kobj) {
10465 kobject_del(kobj);
10466 kobject_put(kobj);
10467 }
Zheng Yan1a40e232008-09-26 10:09:34 -040010468
Filipe Manana4f69cb92014-11-26 15:28:51 +000010469 if (block_group->has_caching_ctl)
10470 caching_ctl = get_caching_control(block_group);
Josef Bacik817d52f2009-07-13 21:29:25 -040010471 if (block_group->cached == BTRFS_CACHE_STARTED)
Yan Zheng11833d62009-09-11 16:11:19 -040010472 wait_block_group_cache_done(block_group);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010473 if (block_group->has_caching_ctl) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010474 down_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010475 if (!caching_ctl) {
10476 struct btrfs_caching_control *ctl;
10477
10478 list_for_each_entry(ctl,
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010479 &fs_info->caching_block_groups, list)
Filipe Manana4f69cb92014-11-26 15:28:51 +000010480 if (ctl->block_group == block_group) {
10481 caching_ctl = ctl;
Elena Reshetova1e4f4712017-03-03 10:55:14 +020010482 refcount_inc(&caching_ctl->count);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010483 break;
10484 }
10485 }
10486 if (caching_ctl)
10487 list_del_init(&caching_ctl->list);
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010488 up_write(&fs_info->commit_root_sem);
Filipe Manana4f69cb92014-11-26 15:28:51 +000010489 if (caching_ctl) {
10490 /* Once for the caching bgs list and once for us. */
10491 put_caching_control(caching_ctl);
10492 put_caching_control(caching_ctl);
10493 }
10494 }
Josef Bacik817d52f2009-07-13 21:29:25 -040010495
Josef Bacikce93ec52014-11-17 15:45:48 -050010496 spin_lock(&trans->transaction->dirty_bgs_lock);
10497 if (!list_empty(&block_group->dirty_list)) {
Chris Mason1bbc6212015-04-06 12:46:08 -070010498 WARN_ON(1);
10499 }
10500 if (!list_empty(&block_group->io_list)) {
10501 WARN_ON(1);
Josef Bacikce93ec52014-11-17 15:45:48 -050010502 }
10503 spin_unlock(&trans->transaction->dirty_bgs_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -040010504 btrfs_remove_free_space_cache(block_group);
10505
Yan Zhengc146afa2008-11-12 14:34:12 -050010506 spin_lock(&block_group->space_info->lock);
Filipe Manana75c68e92015-01-16 13:24:40 +000010507 list_del_init(&block_group->ro_list);
Zhao Lei18d018a2015-02-24 20:07:44 +080010508
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010509 if (btrfs_test_opt(fs_info, ENOSPC_DEBUG)) {
Zhao Lei18d018a2015-02-24 20:07:44 +080010510 WARN_ON(block_group->space_info->total_bytes
10511 < block_group->key.offset);
10512 WARN_ON(block_group->space_info->bytes_readonly
10513 < block_group->key.offset);
10514 WARN_ON(block_group->space_info->disk_total
10515 < block_group->key.offset * factor);
10516 }
Yan Zhengc146afa2008-11-12 14:34:12 -050010517 block_group->space_info->total_bytes -= block_group->key.offset;
10518 block_group->space_info->bytes_readonly -= block_group->key.offset;
Josef Bacik89a55892010-10-14 14:52:27 -040010519 block_group->space_info->disk_total -= block_group->key.offset * factor;
Zhao Lei18d018a2015-02-24 20:07:44 +080010520
Yan Zhengc146afa2008-11-12 14:34:12 -050010521 spin_unlock(&block_group->space_info->lock);
Chris Mason283bb192009-07-24 16:30:55 -040010522
Josef Bacik0af3d002010-06-21 14:48:16 -040010523 memcpy(&key, &block_group->key, sizeof(key));
10524
David Sterba34441362016-10-04 19:34:27 +020010525 mutex_lock(&fs_info->chunk_mutex);
Filipe Manana495e64f2014-12-02 18:07:30 +000010526 if (!list_empty(&em->list)) {
10527 /* We're in the transaction->pending_chunks list. */
10528 free_extent_map(em);
10529 }
Filipe Manana04216822014-11-27 21:14:15 +000010530 spin_lock(&block_group->lock);
10531 block_group->removed = 1;
10532 /*
10533 * At this point trimming can't start on this block group, because we
10534 * removed the block group from the tree fs_info->block_group_cache_tree
10535 * so no one can't find it anymore and even if someone already got this
10536 * block group before we removed it from the rbtree, they have already
10537 * incremented block_group->trimming - if they didn't, they won't find
10538 * any free space entries because we already removed them all when we
10539 * called btrfs_remove_free_space_cache().
10540 *
10541 * And we must not remove the extent map from the fs_info->mapping_tree
10542 * to prevent the same logical address range and physical device space
10543 * ranges from being reused for a new block group. This is because our
10544 * fs trim operation (btrfs_trim_fs() / btrfs_ioctl_fitrim()) is
10545 * completely transactionless, so while it is trimming a range the
10546 * currently running transaction might finish and a new one start,
10547 * allowing for new block groups to be created that can reuse the same
10548 * physical device locations unless we take this special care.
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010549 *
10550 * There may also be an implicit trim operation if the file system
10551 * is mounted with -odiscard. The same protections must remain
10552 * in place until the extents have been discarded completely when
10553 * the transaction commit has completed.
Filipe Manana04216822014-11-27 21:14:15 +000010554 */
10555 remove_em = (atomic_read(&block_group->trimming) == 0);
10556 /*
10557 * Make sure a trimmer task always sees the em in the pinned_chunks list
10558 * if it sees block_group->removed == 1 (needs to lock block_group->lock
10559 * before checking block_group->removed).
10560 */
10561 if (!remove_em) {
10562 /*
10563 * Our em might be in trans->transaction->pending_chunks which
10564 * is protected by fs_info->chunk_mutex ([lock|unlock]_chunks),
10565 * and so is the fs_info->pinned_chunks list.
10566 *
10567 * So at this point we must be holding the chunk_mutex to avoid
10568 * any races with chunk allocation (more specifically at
10569 * volumes.c:contains_pending_extent()), to ensure it always
10570 * sees the em, either in the pending_chunks list or in the
10571 * pinned_chunks list.
10572 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010573 list_move_tail(&em->list, &fs_info->pinned_chunks);
Filipe Manana04216822014-11-27 21:14:15 +000010574 }
10575 spin_unlock(&block_group->lock);
Filipe Manana04216822014-11-27 21:14:15 +000010576
10577 if (remove_em) {
10578 struct extent_map_tree *em_tree;
10579
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010580 em_tree = &fs_info->mapping_tree.map_tree;
Filipe Manana04216822014-11-27 21:14:15 +000010581 write_lock(&em_tree->lock);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010582 /*
10583 * The em might be in the pending_chunks list, so make sure the
10584 * chunk mutex is locked, since remove_extent_mapping() will
10585 * delete us from that list.
10586 */
Filipe Manana04216822014-11-27 21:14:15 +000010587 remove_extent_mapping(em_tree, em);
10588 write_unlock(&em_tree->lock);
10589 /* once for the tree */
10590 free_extent_map(em);
10591 }
10592
David Sterba34441362016-10-04 19:34:27 +020010593 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana8dbcd102014-12-02 18:07:49 +000010594
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010595 ret = remove_block_group_free_space(trans, fs_info, block_group);
Omar Sandoval1e144fb2015-09-29 20:50:37 -070010596 if (ret)
10597 goto out;
10598
Chris Masonfa9c0d792009-04-03 09:47:43 -040010599 btrfs_put_block_group(block_group);
10600 btrfs_put_block_group(block_group);
Zheng Yan1a40e232008-09-26 10:09:34 -040010601
10602 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
10603 if (ret > 0)
10604 ret = -EIO;
10605 if (ret < 0)
10606 goto out;
10607
10608 ret = btrfs_del_item(trans, root, path);
10609out:
10610 btrfs_free_path(path);
10611 return ret;
10612}
liuboacce9522011-01-06 19:30:25 +080010613
Filipe Manana8eab77f2015-11-13 23:57:16 +000010614struct btrfs_trans_handle *
Filipe Manana7fd01182015-11-13 23:57:17 +000010615btrfs_start_trans_remove_block_group(struct btrfs_fs_info *fs_info,
10616 const u64 chunk_offset)
Filipe Manana8eab77f2015-11-13 23:57:16 +000010617{
Filipe Manana7fd01182015-11-13 23:57:17 +000010618 struct extent_map_tree *em_tree = &fs_info->mapping_tree.map_tree;
10619 struct extent_map *em;
10620 struct map_lookup *map;
10621 unsigned int num_items;
10622
10623 read_lock(&em_tree->lock);
10624 em = lookup_extent_mapping(em_tree, chunk_offset, 1);
10625 read_unlock(&em_tree->lock);
10626 ASSERT(em && em->start == chunk_offset);
10627
Filipe Manana8eab77f2015-11-13 23:57:16 +000010628 /*
Filipe Manana7fd01182015-11-13 23:57:17 +000010629 * We need to reserve 3 + N units from the metadata space info in order
10630 * to remove a block group (done at btrfs_remove_chunk() and at
10631 * btrfs_remove_block_group()), which are used for:
10632 *
Filipe Manana8eab77f2015-11-13 23:57:16 +000010633 * 1 unit for adding the free space inode's orphan (located in the tree
10634 * of tree roots).
Filipe Manana7fd01182015-11-13 23:57:17 +000010635 * 1 unit for deleting the block group item (located in the extent
10636 * tree).
10637 * 1 unit for deleting the free space item (located in tree of tree
10638 * roots).
10639 * N units for deleting N device extent items corresponding to each
10640 * stripe (located in the device tree).
10641 *
10642 * In order to remove a block group we also need to reserve units in the
10643 * system space info in order to update the chunk tree (update one or
10644 * more device items and remove one chunk item), but this is done at
10645 * btrfs_remove_chunk() through a call to check_system_chunk().
Filipe Manana8eab77f2015-11-13 23:57:16 +000010646 */
Jeff Mahoney95617d62015-06-03 10:55:48 -040010647 map = em->map_lookup;
Filipe Manana7fd01182015-11-13 23:57:17 +000010648 num_items = 3 + map->num_stripes;
10649 free_extent_map(em);
10650
Filipe Manana8eab77f2015-11-13 23:57:16 +000010651 return btrfs_start_transaction_fallback_global_rsv(fs_info->extent_root,
Filipe Manana7fd01182015-11-13 23:57:17 +000010652 num_items, 1);
Filipe Manana8eab77f2015-11-13 23:57:16 +000010653}
10654
Josef Bacik47ab2a62014-09-18 11:20:02 -040010655/*
10656 * Process the unused_bgs list and remove any that don't have any allocated
10657 * space inside of them.
10658 */
10659void btrfs_delete_unused_bgs(struct btrfs_fs_info *fs_info)
10660{
10661 struct btrfs_block_group_cache *block_group;
10662 struct btrfs_space_info *space_info;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010663 struct btrfs_trans_handle *trans;
10664 int ret = 0;
10665
Josef Bacikafcdd122016-09-02 15:40:02 -040010666 if (!test_bit(BTRFS_FS_OPEN, &fs_info->flags))
Josef Bacik47ab2a62014-09-18 11:20:02 -040010667 return;
10668
10669 spin_lock(&fs_info->unused_bgs_lock);
10670 while (!list_empty(&fs_info->unused_bgs)) {
10671 u64 start, end;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010672 int trimming;
Josef Bacik47ab2a62014-09-18 11:20:02 -040010673
10674 block_group = list_first_entry(&fs_info->unused_bgs,
10675 struct btrfs_block_group_cache,
10676 bg_list);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010677 list_del_init(&block_group->bg_list);
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010678
10679 space_info = block_group->space_info;
10680
Josef Bacik47ab2a62014-09-18 11:20:02 -040010681 if (ret || btrfs_mixed_space_info(space_info)) {
10682 btrfs_put_block_group(block_group);
10683 continue;
10684 }
10685 spin_unlock(&fs_info->unused_bgs_lock);
10686
Zhao Leid5f2e332015-10-08 18:46:44 +080010687 mutex_lock(&fs_info->delete_unused_bgs_mutex);
Filipe Manana67c5e7d2015-06-11 00:58:53 +010010688
Josef Bacik47ab2a62014-09-18 11:20:02 -040010689 /* Don't want to race with allocators so take the groups_sem */
10690 down_write(&space_info->groups_sem);
10691 spin_lock(&block_group->lock);
10692 if (block_group->reserved ||
10693 btrfs_block_group_used(&block_group->item) ||
Chris Mason19c4d2f2016-10-10 13:43:31 -070010694 block_group->ro ||
Zhao Leiaefbe9a2015-09-29 21:03:54 +080010695 list_is_singular(&block_group->list)) {
Josef Bacik47ab2a62014-09-18 11:20:02 -040010696 /*
10697 * We want to bail if we made new allocations or have
10698 * outstanding allocations in this block group. We do
10699 * the ro check in case balance is currently acting on
10700 * this block group.
10701 */
10702 spin_unlock(&block_group->lock);
10703 up_write(&space_info->groups_sem);
10704 goto next;
10705 }
10706 spin_unlock(&block_group->lock);
10707
10708 /* We don't want to force the issue, only flip if it's ok. */
Zhaolei868f4012015-08-05 16:43:27 +080010709 ret = inc_block_group_ro(block_group, 0);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010710 up_write(&space_info->groups_sem);
10711 if (ret < 0) {
10712 ret = 0;
10713 goto next;
10714 }
10715
10716 /*
10717 * Want to do this before we do anything else so we can recover
10718 * properly if we fail to join the transaction.
10719 */
Filipe Manana7fd01182015-11-13 23:57:17 +000010720 trans = btrfs_start_trans_remove_block_group(fs_info,
10721 block_group->key.objectid);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010722 if (IS_ERR(trans)) {
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010723 btrfs_dec_block_group_ro(block_group);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010724 ret = PTR_ERR(trans);
10725 goto next;
10726 }
10727
10728 /*
10729 * We could have pending pinned extents for this block group,
10730 * just delete them, we don't care about them anymore.
10731 */
10732 start = block_group->key.objectid;
10733 end = start + block_group->key.offset - 1;
Filipe Mananad4b450c2015-01-29 19:18:25 +000010734 /*
10735 * Hold the unused_bg_unpin_mutex lock to avoid racing with
10736 * btrfs_finish_extent_commit(). If we are at transaction N,
10737 * another task might be running finish_extent_commit() for the
10738 * previous transaction N - 1, and have seen a range belonging
10739 * to the block group in freed_extents[] before we were able to
10740 * clear the whole block group range from freed_extents[]. This
10741 * means that task can lookup for the block group after we
10742 * unpinned it from freed_extents[] and removed it, leading to
10743 * a BUG_ON() at btrfs_unpin_extent_range().
10744 */
10745 mutex_lock(&fs_info->unused_bg_unpin_mutex);
Filipe Manana758eb512014-11-03 14:08:39 +000010746 ret = clear_extent_bits(&fs_info->freed_extents[0], start, end,
David Sterba91166212016-04-26 23:54:39 +020010747 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000010748 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010749 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010750 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010751 goto end_trans;
10752 }
10753 ret = clear_extent_bits(&fs_info->freed_extents[1], start, end,
David Sterba91166212016-04-26 23:54:39 +020010754 EXTENT_DIRTY);
Filipe Manana758eb512014-11-03 14:08:39 +000010755 if (ret) {
Filipe Mananad4b450c2015-01-29 19:18:25 +000010756 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010757 btrfs_dec_block_group_ro(block_group);
Filipe Manana758eb512014-11-03 14:08:39 +000010758 goto end_trans;
10759 }
Filipe Mananad4b450c2015-01-29 19:18:25 +000010760 mutex_unlock(&fs_info->unused_bg_unpin_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010761
10762 /* Reset pinned so btrfs_put_block_group doesn't complain */
Zhao Leic30666d2015-02-25 14:17:20 +080010763 spin_lock(&space_info->lock);
10764 spin_lock(&block_group->lock);
10765
10766 space_info->bytes_pinned -= block_group->pinned;
10767 space_info->bytes_readonly += block_group->pinned;
10768 percpu_counter_add(&space_info->total_bytes_pinned,
10769 -block_group->pinned);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010770 block_group->pinned = 0;
10771
Zhao Leic30666d2015-02-25 14:17:20 +080010772 spin_unlock(&block_group->lock);
10773 spin_unlock(&space_info->lock);
10774
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010775 /* DISCARD can flip during remount */
Jeff Mahoney0b246af2016-06-22 18:54:23 -040010776 trimming = btrfs_test_opt(fs_info, DISCARD);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010777
10778 /* Implicit trim during transaction commit. */
10779 if (trimming)
10780 btrfs_get_block_group_trimming(block_group);
10781
Josef Bacik47ab2a62014-09-18 11:20:02 -040010782 /*
10783 * Btrfs_remove_chunk will abort the transaction if things go
10784 * horribly wrong.
10785 */
Jeff Mahoney5b4aace2016-06-21 10:40:19 -040010786 ret = btrfs_remove_chunk(trans, fs_info,
Josef Bacik47ab2a62014-09-18 11:20:02 -040010787 block_group->key.objectid);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010788
10789 if (ret) {
10790 if (trimming)
10791 btrfs_put_block_group_trimming(block_group);
10792 goto end_trans;
10793 }
10794
10795 /*
10796 * If we're not mounted with -odiscard, we can just forget
10797 * about this block group. Otherwise we'll need to wait
10798 * until transaction commit to do the actual discard.
10799 */
10800 if (trimming) {
Filipe Manana348a0012015-11-27 12:16:16 +000010801 spin_lock(&fs_info->unused_bgs_lock);
10802 /*
10803 * A concurrent scrub might have added us to the list
10804 * fs_info->unused_bgs, so use a list_move operation
10805 * to add the block group to the deleted_bgs list.
10806 */
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010807 list_move(&block_group->bg_list,
10808 &trans->transaction->deleted_bgs);
Filipe Manana348a0012015-11-27 12:16:16 +000010809 spin_unlock(&fs_info->unused_bgs_lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -040010810 btrfs_get_block_group(block_group);
10811 }
Filipe Manana758eb512014-11-03 14:08:39 +000010812end_trans:
Jeff Mahoney3a45bb22016-09-09 21:39:03 -040010813 btrfs_end_transaction(trans);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010814next:
Zhao Leid5f2e332015-10-08 18:46:44 +080010815 mutex_unlock(&fs_info->delete_unused_bgs_mutex);
Josef Bacik47ab2a62014-09-18 11:20:02 -040010816 btrfs_put_block_group(block_group);
10817 spin_lock(&fs_info->unused_bgs_lock);
10818 }
10819 spin_unlock(&fs_info->unused_bgs_lock);
10820}
10821
liuboc59021f2011-03-07 02:13:14 +000010822int btrfs_init_space_info(struct btrfs_fs_info *fs_info)
10823{
10824 struct btrfs_space_info *space_info;
liubo1aba86d2011-04-08 08:44:37 +000010825 struct btrfs_super_block *disk_super;
10826 u64 features;
10827 u64 flags;
10828 int mixed = 0;
liuboc59021f2011-03-07 02:13:14 +000010829 int ret;
10830
David Sterba6c417612011-04-13 15:41:04 +020010831 disk_super = fs_info->super_copy;
liubo1aba86d2011-04-08 08:44:37 +000010832 if (!btrfs_super_root(disk_super))
Dan Carpenter0dc924c52016-01-13 15:21:17 +030010833 return -EINVAL;
liuboc59021f2011-03-07 02:13:14 +000010834
liubo1aba86d2011-04-08 08:44:37 +000010835 features = btrfs_super_incompat_flags(disk_super);
10836 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
10837 mixed = 1;
liuboc59021f2011-03-07 02:13:14 +000010838
liubo1aba86d2011-04-08 08:44:37 +000010839 flags = BTRFS_BLOCK_GROUP_SYSTEM;
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010840 ret = create_space_info(fs_info, flags, &space_info);
liuboc59021f2011-03-07 02:13:14 +000010841 if (ret)
liubo1aba86d2011-04-08 08:44:37 +000010842 goto out;
liuboc59021f2011-03-07 02:13:14 +000010843
liubo1aba86d2011-04-08 08:44:37 +000010844 if (mixed) {
10845 flags = BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA;
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010846 ret = create_space_info(fs_info, flags, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010847 } else {
10848 flags = BTRFS_BLOCK_GROUP_METADATA;
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010849 ret = create_space_info(fs_info, flags, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010850 if (ret)
10851 goto out;
10852
10853 flags = BTRFS_BLOCK_GROUP_DATA;
Nikolay Borisov2be12ef2017-05-22 09:35:49 +030010854 ret = create_space_info(fs_info, flags, &space_info);
liubo1aba86d2011-04-08 08:44:37 +000010855 }
10856out:
liuboc59021f2011-03-07 02:13:14 +000010857 return ret;
10858}
10859
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010860int btrfs_error_unpin_extent_range(struct btrfs_fs_info *fs_info,
10861 u64 start, u64 end)
liuboacce9522011-01-06 19:30:25 +080010862{
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010863 return unpin_extent_range(fs_info, start, end, false);
liuboacce9522011-01-06 19:30:25 +080010864}
10865
Jeff Mahoney499f3772015-06-15 09:41:17 -040010866/*
10867 * It used to be that old block groups would be left around forever.
10868 * Iterating over them would be enough to trim unused space. Since we
10869 * now automatically remove them, we also need to iterate over unallocated
10870 * space.
10871 *
10872 * We don't want a transaction for this since the discard may take a
10873 * substantial amount of time. We don't require that a transaction be
10874 * running, but we do need to take a running transaction into account
10875 * to ensure that we're not discarding chunks that were released in
10876 * the current transaction.
10877 *
10878 * Holding the chunks lock will prevent other threads from allocating
10879 * or releasing chunks, but it won't prevent a running transaction
10880 * from committing and releasing the memory that the pending chunks
10881 * list head uses. For that, we need to take a reference to the
10882 * transaction.
10883 */
10884static int btrfs_trim_free_extents(struct btrfs_device *device,
10885 u64 minlen, u64 *trimmed)
10886{
10887 u64 start = 0, len = 0;
10888 int ret;
10889
10890 *trimmed = 0;
10891
10892 /* Not writeable = nothing to do. */
10893 if (!device->writeable)
10894 return 0;
10895
10896 /* No free space = nothing to do. */
10897 if (device->total_bytes <= device->bytes_used)
10898 return 0;
10899
10900 ret = 0;
10901
10902 while (1) {
Jeff Mahoneyfb456252016-06-22 18:54:56 -040010903 struct btrfs_fs_info *fs_info = device->fs_info;
Jeff Mahoney499f3772015-06-15 09:41:17 -040010904 struct btrfs_transaction *trans;
10905 u64 bytes;
10906
10907 ret = mutex_lock_interruptible(&fs_info->chunk_mutex);
10908 if (ret)
10909 return ret;
10910
10911 down_read(&fs_info->commit_root_sem);
10912
10913 spin_lock(&fs_info->trans_lock);
10914 trans = fs_info->running_transaction;
10915 if (trans)
Elena Reshetova9b64f572017-03-03 10:55:11 +020010916 refcount_inc(&trans->use_count);
Jeff Mahoney499f3772015-06-15 09:41:17 -040010917 spin_unlock(&fs_info->trans_lock);
10918
10919 ret = find_free_dev_extent_start(trans, device, minlen, start,
10920 &start, &len);
10921 if (trans)
10922 btrfs_put_transaction(trans);
10923
10924 if (ret) {
10925 up_read(&fs_info->commit_root_sem);
10926 mutex_unlock(&fs_info->chunk_mutex);
10927 if (ret == -ENOSPC)
10928 ret = 0;
10929 break;
10930 }
10931
10932 ret = btrfs_issue_discard(device->bdev, start, len, &bytes);
10933 up_read(&fs_info->commit_root_sem);
10934 mutex_unlock(&fs_info->chunk_mutex);
10935
10936 if (ret)
10937 break;
10938
10939 start += len;
10940 *trimmed += bytes;
10941
10942 if (fatal_signal_pending(current)) {
10943 ret = -ERESTARTSYS;
10944 break;
10945 }
10946
10947 cond_resched();
10948 }
10949
10950 return ret;
10951}
10952
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040010953int btrfs_trim_fs(struct btrfs_fs_info *fs_info, struct fstrim_range *range)
Li Dongyangf7039b12011-03-24 10:24:28 +000010954{
Li Dongyangf7039b12011-03-24 10:24:28 +000010955 struct btrfs_block_group_cache *cache = NULL;
Jeff Mahoney499f3772015-06-15 09:41:17 -040010956 struct btrfs_device *device;
10957 struct list_head *devices;
Li Dongyangf7039b12011-03-24 10:24:28 +000010958 u64 group_trimmed;
10959 u64 start;
10960 u64 end;
10961 u64 trimmed = 0;
Liu Bo2cac13e2012-02-09 18:17:41 +080010962 u64 total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
Li Dongyangf7039b12011-03-24 10:24:28 +000010963 int ret = 0;
10964
Liu Bo2cac13e2012-02-09 18:17:41 +080010965 /*
10966 * try to trim all FS space, our block group may start from non-zero.
10967 */
10968 if (range->len == total_bytes)
10969 cache = btrfs_lookup_first_block_group(fs_info, range->start);
10970 else
10971 cache = btrfs_lookup_block_group(fs_info, range->start);
Li Dongyangf7039b12011-03-24 10:24:28 +000010972
10973 while (cache) {
10974 if (cache->key.objectid >= (range->start + range->len)) {
10975 btrfs_put_block_group(cache);
10976 break;
10977 }
10978
10979 start = max(range->start, cache->key.objectid);
10980 end = min(range->start + range->len,
10981 cache->key.objectid + cache->key.offset);
10982
10983 if (end - start >= range->minlen) {
10984 if (!block_group_cache_done(cache)) {
Liu Bof6373bf2012-12-27 09:01:18 +000010985 ret = cache_block_group(cache, 0);
Josef Bacik1be41b72013-06-12 13:56:06 -040010986 if (ret) {
10987 btrfs_put_block_group(cache);
10988 break;
10989 }
10990 ret = wait_block_group_cache_done(cache);
10991 if (ret) {
10992 btrfs_put_block_group(cache);
10993 break;
10994 }
Li Dongyangf7039b12011-03-24 10:24:28 +000010995 }
10996 ret = btrfs_trim_block_group(cache,
10997 &group_trimmed,
10998 start,
10999 end,
11000 range->minlen);
11001
11002 trimmed += group_trimmed;
11003 if (ret) {
11004 btrfs_put_block_group(cache);
11005 break;
11006 }
11007 }
11008
Jeff Mahoney2ff7e612016-06-22 18:54:24 -040011009 cache = next_block_group(fs_info, cache);
Li Dongyangf7039b12011-03-24 10:24:28 +000011010 }
11011
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011012 mutex_lock(&fs_info->fs_devices->device_list_mutex);
11013 devices = &fs_info->fs_devices->alloc_list;
Jeff Mahoney499f3772015-06-15 09:41:17 -040011014 list_for_each_entry(device, devices, dev_alloc_list) {
11015 ret = btrfs_trim_free_extents(device, range->minlen,
11016 &group_trimmed);
11017 if (ret)
11018 break;
11019
11020 trimmed += group_trimmed;
11021 }
Jeff Mahoney0b246af2016-06-22 18:54:23 -040011022 mutex_unlock(&fs_info->fs_devices->device_list_mutex);
Jeff Mahoney499f3772015-06-15 09:41:17 -040011023
Li Dongyangf7039b12011-03-24 10:24:28 +000011024 range->len = trimmed;
11025 return ret;
11026}
Miao Xie8257b2d2014-03-06 13:38:19 +080011027
11028/*
David Sterbaea14b57f2017-06-22 02:19:11 +020011029 * btrfs_{start,end}_write_no_snapshotting() are similar to
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011030 * mnt_{want,drop}_write(), they are used to prevent some tasks from writing
11031 * data into the page cache through nocow before the subvolume is snapshoted,
11032 * but flush the data into disk after the snapshot creation, or to prevent
David Sterbaea14b57f2017-06-22 02:19:11 +020011033 * operations while snapshotting is ongoing and that cause the snapshot to be
Filipe Manana9ea24bb2014-10-29 11:57:59 +000011034 * inconsistent (writes followed by expanding truncates for example).
Miao Xie8257b2d2014-03-06 13:38:19 +080011035 */
David Sterbaea14b57f2017-06-22 02:19:11 +020011036void btrfs_end_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011037{
11038 percpu_counter_dec(&root->subv_writers->counter);
11039 /*
David Sterbaa83342a2015-02-16 19:36:47 +010011040 * Make sure counter is updated before we wake up waiters.
Miao Xie8257b2d2014-03-06 13:38:19 +080011041 */
11042 smp_mb();
11043 if (waitqueue_active(&root->subv_writers->wait))
11044 wake_up(&root->subv_writers->wait);
11045}
11046
David Sterbaea14b57f2017-06-22 02:19:11 +020011047int btrfs_start_write_no_snapshotting(struct btrfs_root *root)
Miao Xie8257b2d2014-03-06 13:38:19 +080011048{
David Sterbaea14b57f2017-06-22 02:19:11 +020011049 if (atomic_read(&root->will_be_snapshotted))
Miao Xie8257b2d2014-03-06 13:38:19 +080011050 return 0;
11051
11052 percpu_counter_inc(&root->subv_writers->counter);
11053 /*
11054 * Make sure counter is updated before we check for snapshot creation.
11055 */
11056 smp_mb();
David Sterbaea14b57f2017-06-22 02:19:11 +020011057 if (atomic_read(&root->will_be_snapshotted)) {
11058 btrfs_end_write_no_snapshotting(root);
Miao Xie8257b2d2014-03-06 13:38:19 +080011059 return 0;
11060 }
11061 return 1;
11062}
Zhao Lei0bc19f902016-01-06 18:56:36 +080011063
David Sterbaea14b57f2017-06-22 02:19:11 +020011064static int wait_snapshotting_atomic_t(atomic_t *a)
Zhao Lei0bc19f902016-01-06 18:56:36 +080011065{
11066 schedule();
11067 return 0;
11068}
11069
11070void btrfs_wait_for_snapshot_creation(struct btrfs_root *root)
11071{
11072 while (true) {
11073 int ret;
11074
David Sterbaea14b57f2017-06-22 02:19:11 +020011075 ret = btrfs_start_write_no_snapshotting(root);
Zhao Lei0bc19f902016-01-06 18:56:36 +080011076 if (ret)
11077 break;
David Sterbaea14b57f2017-06-22 02:19:11 +020011078 wait_on_atomic_t(&root->will_be_snapshotted,
11079 wait_snapshotting_atomic_t,
Zhao Lei0bc19f902016-01-06 18:56:36 +080011080 TASK_UNINTERRUPTIBLE);
11081 }
11082}