blob: faaf57a7c289a51a7cc3495e1f08577ecb807795 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Josef Bacik0f9dd462008-09-23 13:14:11 -04002/*
3 * Copyright (C) 2008 Red Hat. All rights reserved.
Josef Bacik0f9dd462008-09-23 13:14:11 -04004 */
5
Josef Bacik96303082009-07-13 21:29:25 -04006#include <linux/pagemap.h>
Josef Bacik0f9dd462008-09-23 13:14:11 -04007#include <linux/sched.h>
Ingo Molnarf361bf42017-02-03 23:47:37 +01008#include <linux/sched/signal.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Josef Bacik96303082009-07-13 21:29:25 -040010#include <linux/math64.h>
Josef Bacik6ab60602011-08-08 08:24:46 -040011#include <linux/ratelimit.h>
Masami Hiramatsu540adea2018-01-13 02:55:03 +090012#include <linux/error-injection.h>
Josef Bacik84de76a2018-09-28 07:17:49 -040013#include <linux/sched/mm.h>
Josef Bacik0f9dd462008-09-23 13:14:11 -040014#include "ctree.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040015#include "free-space-cache.h"
16#include "transaction.h"
Josef Bacik0af3d002010-06-21 14:48:16 -040017#include "disk-io.h"
Josef Bacik43be2142011-04-01 14:55:00 +000018#include "extent_io.h"
Li Zefan581bb052011-04-20 10:06:11 +080019#include "inode-map.h"
Filipe Manana04216822014-11-27 21:14:15 +000020#include "volumes.h"
Josef Bacik8719aaa2019-06-18 16:09:16 -040021#include "space-info.h"
Josef Bacik86736342019-06-19 15:12:00 -040022#include "delalloc-space.h"
Josef Bacikaac00232019-06-20 15:37:44 -040023#include "block-group.h"
Chris Masonfa9c0d792009-04-03 09:47:43 -040024
Feifei Xu0ef64472016-06-01 19:18:24 +080025#define BITS_PER_BITMAP (PAGE_SIZE * 8UL)
Byongho Leeee221842015-12-15 01:42:10 +090026#define MAX_CACHE_BYTES_PER_GIG SZ_32K
Josef Bacik96303082009-07-13 21:29:25 -040027
Filipe Manana55507ce2014-12-01 17:04:09 +000028struct btrfs_trim_range {
29 u64 start;
30 u64 bytes;
31 struct list_head list;
32};
33
Li Zefan34d52cb2011-03-29 13:46:06 +080034static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0cb59c92010-07-02 12:14:14 -040035 struct btrfs_free_space *info);
Josef Bacikcd023e72012-05-14 10:06:40 -040036static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
37 struct btrfs_free_space *info);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -040038static int btrfs_wait_cache_io_root(struct btrfs_root *root,
39 struct btrfs_trans_handle *trans,
40 struct btrfs_io_ctl *io_ctl,
41 struct btrfs_path *path);
Josef Bacik0cb59c92010-07-02 12:14:14 -040042
Li Zefan0414efa2011-04-20 10:20:14 +080043static struct inode *__lookup_free_space_inode(struct btrfs_root *root,
44 struct btrfs_path *path,
45 u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -040046{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040047 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik0af3d002010-06-21 14:48:16 -040048 struct btrfs_key key;
49 struct btrfs_key location;
50 struct btrfs_disk_key disk_key;
51 struct btrfs_free_space_header *header;
52 struct extent_buffer *leaf;
53 struct inode *inode = NULL;
Josef Bacik84de76a2018-09-28 07:17:49 -040054 unsigned nofs_flag;
Josef Bacik0af3d002010-06-21 14:48:16 -040055 int ret;
56
Josef Bacik0af3d002010-06-21 14:48:16 -040057 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +080058 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -040059 key.type = 0;
60
61 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
62 if (ret < 0)
63 return ERR_PTR(ret);
64 if (ret > 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +020065 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040066 return ERR_PTR(-ENOENT);
67 }
68
69 leaf = path->nodes[0];
70 header = btrfs_item_ptr(leaf, path->slots[0],
71 struct btrfs_free_space_header);
72 btrfs_free_space_key(leaf, header, &disk_key);
73 btrfs_disk_key_to_cpu(&location, &disk_key);
David Sterbab3b4aa72011-04-21 01:20:15 +020074 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040075
Josef Bacik84de76a2018-09-28 07:17:49 -040076 /*
77 * We are often under a trans handle at this point, so we need to make
78 * sure NOFS is set to keep us from deadlocking.
79 */
80 nofs_flag = memalloc_nofs_save();
Filipe Manana4222ea72018-10-24 10:13:03 +010081 inode = btrfs_iget_path(fs_info->sb, &location, root, NULL, path);
82 btrfs_release_path(path);
Josef Bacik84de76a2018-09-28 07:17:49 -040083 memalloc_nofs_restore(nofs_flag);
Josef Bacik0af3d002010-06-21 14:48:16 -040084 if (IS_ERR(inode))
85 return inode;
Josef Bacik0af3d002010-06-21 14:48:16 -040086
Al Viro528c0322012-04-13 11:03:55 -040087 mapping_set_gfp_mask(inode->i_mapping,
Michal Hockoc62d2552015-11-06 16:28:49 -080088 mapping_gfp_constraint(inode->i_mapping,
89 ~(__GFP_FS | __GFP_HIGHMEM)));
Miao Xieadae52b2011-03-31 09:43:23 +000090
Li Zefan0414efa2011-04-20 10:20:14 +080091 return inode;
92}
93
David Sterba7949f332019-03-20 13:40:19 +010094struct inode *lookup_free_space_inode(
95 struct btrfs_block_group_cache *block_group,
96 struct btrfs_path *path)
Li Zefan0414efa2011-04-20 10:20:14 +080097{
David Sterba7949f332019-03-20 13:40:19 +010098 struct btrfs_fs_info *fs_info = block_group->fs_info;
Li Zefan0414efa2011-04-20 10:20:14 +080099 struct inode *inode = NULL;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400100 u32 flags = BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
Li Zefan0414efa2011-04-20 10:20:14 +0800101
102 spin_lock(&block_group->lock);
103 if (block_group->inode)
104 inode = igrab(block_group->inode);
105 spin_unlock(&block_group->lock);
106 if (inode)
107 return inode;
108
Jeff Mahoney77ab86b2017-02-15 16:28:30 -0500109 inode = __lookup_free_space_inode(fs_info->tree_root, path,
Li Zefan0414efa2011-04-20 10:20:14 +0800110 block_group->key.objectid);
111 if (IS_ERR(inode))
112 return inode;
113
Josef Bacik0af3d002010-06-21 14:48:16 -0400114 spin_lock(&block_group->lock);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400115 if (!((BTRFS_I(inode)->flags & flags) == flags)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400116 btrfs_info(fs_info, "Old style space inode found, converting.");
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400117 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM |
118 BTRFS_INODE_NODATACOW;
Josef Bacik2f356122011-06-10 15:31:13 -0400119 block_group->disk_cache_state = BTRFS_DC_CLEAR;
120 }
121
Josef Bacik300e4f82011-08-29 14:06:00 -0400122 if (!block_group->iref) {
Josef Bacik0af3d002010-06-21 14:48:16 -0400123 block_group->inode = igrab(inode);
124 block_group->iref = 1;
125 }
126 spin_unlock(&block_group->lock);
127
128 return inode;
129}
130
Eric Sandeen48a3b632013-04-25 20:41:01 +0000131static int __create_free_space_inode(struct btrfs_root *root,
132 struct btrfs_trans_handle *trans,
133 struct btrfs_path *path,
134 u64 ino, u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -0400135{
136 struct btrfs_key key;
137 struct btrfs_disk_key disk_key;
138 struct btrfs_free_space_header *header;
139 struct btrfs_inode_item *inode_item;
140 struct extent_buffer *leaf;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400141 u64 flags = BTRFS_INODE_NOCOMPRESS | BTRFS_INODE_PREALLOC;
Josef Bacik0af3d002010-06-21 14:48:16 -0400142 int ret;
143
Li Zefan0414efa2011-04-20 10:20:14 +0800144 ret = btrfs_insert_empty_inode(trans, root, path, ino);
Josef Bacik0af3d002010-06-21 14:48:16 -0400145 if (ret)
146 return ret;
147
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400148 /* We inline crc's for the free disk space cache */
149 if (ino != BTRFS_FREE_INO_OBJECTID)
150 flags |= BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
151
Josef Bacik0af3d002010-06-21 14:48:16 -0400152 leaf = path->nodes[0];
153 inode_item = btrfs_item_ptr(leaf, path->slots[0],
154 struct btrfs_inode_item);
155 btrfs_item_key(leaf, &disk_key, path->slots[0]);
David Sterbab159fa22016-11-08 18:09:03 +0100156 memzero_extent_buffer(leaf, (unsigned long)inode_item,
Josef Bacik0af3d002010-06-21 14:48:16 -0400157 sizeof(*inode_item));
158 btrfs_set_inode_generation(leaf, inode_item, trans->transid);
159 btrfs_set_inode_size(leaf, inode_item, 0);
160 btrfs_set_inode_nbytes(leaf, inode_item, 0);
161 btrfs_set_inode_uid(leaf, inode_item, 0);
162 btrfs_set_inode_gid(leaf, inode_item, 0);
163 btrfs_set_inode_mode(leaf, inode_item, S_IFREG | 0600);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400164 btrfs_set_inode_flags(leaf, inode_item, flags);
Josef Bacik0af3d002010-06-21 14:48:16 -0400165 btrfs_set_inode_nlink(leaf, inode_item, 1);
166 btrfs_set_inode_transid(leaf, inode_item, trans->transid);
Li Zefan0414efa2011-04-20 10:20:14 +0800167 btrfs_set_inode_block_group(leaf, inode_item, offset);
Josef Bacik0af3d002010-06-21 14:48:16 -0400168 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200169 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400170
171 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800172 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -0400173 key.type = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -0400174 ret = btrfs_insert_empty_item(trans, root, path, &key,
175 sizeof(struct btrfs_free_space_header));
176 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200177 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400178 return ret;
179 }
Chris Masonc9dc4c62015-04-04 17:14:42 -0700180
Josef Bacik0af3d002010-06-21 14:48:16 -0400181 leaf = path->nodes[0];
182 header = btrfs_item_ptr(leaf, path->slots[0],
183 struct btrfs_free_space_header);
David Sterbab159fa22016-11-08 18:09:03 +0100184 memzero_extent_buffer(leaf, (unsigned long)header, sizeof(*header));
Josef Bacik0af3d002010-06-21 14:48:16 -0400185 btrfs_set_free_space_key(leaf, header, &disk_key);
186 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200187 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400188
189 return 0;
190}
191
David Sterba4ca75f12019-03-20 13:42:57 +0100192int create_free_space_inode(struct btrfs_trans_handle *trans,
Li Zefan0414efa2011-04-20 10:20:14 +0800193 struct btrfs_block_group_cache *block_group,
194 struct btrfs_path *path)
195{
196 int ret;
197 u64 ino;
198
David Sterba4ca75f12019-03-20 13:42:57 +0100199 ret = btrfs_find_free_objectid(trans->fs_info->tree_root, &ino);
Li Zefan0414efa2011-04-20 10:20:14 +0800200 if (ret < 0)
201 return ret;
202
David Sterba4ca75f12019-03-20 13:42:57 +0100203 return __create_free_space_inode(trans->fs_info->tree_root, trans, path,
204 ino, block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800205}
206
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400207int btrfs_check_trunc_cache_free_space(struct btrfs_fs_info *fs_info,
Miao Xie7b61cd92013-05-13 13:55:09 +0000208 struct btrfs_block_rsv *rsv)
Josef Bacik0af3d002010-06-21 14:48:16 -0400209{
Josef Bacikc8174312011-11-02 09:29:35 -0400210 u64 needed_bytes;
Miao Xie7b61cd92013-05-13 13:55:09 +0000211 int ret;
Josef Bacikc8174312011-11-02 09:29:35 -0400212
213 /* 1 for slack space, 1 for updating the inode */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400214 needed_bytes = btrfs_calc_trunc_metadata_size(fs_info, 1) +
215 btrfs_calc_trans_metadata_size(fs_info, 1);
Josef Bacikc8174312011-11-02 09:29:35 -0400216
Miao Xie7b61cd92013-05-13 13:55:09 +0000217 spin_lock(&rsv->lock);
218 if (rsv->reserved < needed_bytes)
219 ret = -ENOSPC;
220 else
221 ret = 0;
222 spin_unlock(&rsv->lock);
Wei Yongjun4b286cd2013-05-21 02:39:21 +0000223 return ret;
Miao Xie7b61cd92013-05-13 13:55:09 +0000224}
225
Jeff Mahoney77ab86b2017-02-15 16:28:30 -0500226int btrfs_truncate_free_space_cache(struct btrfs_trans_handle *trans,
Chris Mason1bbc6212015-04-06 12:46:08 -0700227 struct btrfs_block_group_cache *block_group,
Miao Xie7b61cd92013-05-13 13:55:09 +0000228 struct inode *inode)
229{
Jeff Mahoney77ab86b2017-02-15 16:28:30 -0500230 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie7b61cd92013-05-13 13:55:09 +0000231 int ret = 0;
Filipe Manana35c76642015-04-30 17:47:05 +0100232 bool locked = false;
Chris Mason1bbc6212015-04-06 12:46:08 -0700233
Chris Mason1bbc6212015-04-06 12:46:08 -0700234 if (block_group) {
Jeff Mahoney21e75ff2017-02-15 16:28:32 -0500235 struct btrfs_path *path = btrfs_alloc_path();
236
237 if (!path) {
238 ret = -ENOMEM;
239 goto fail;
240 }
Filipe Manana35c76642015-04-30 17:47:05 +0100241 locked = true;
Chris Mason1bbc6212015-04-06 12:46:08 -0700242 mutex_lock(&trans->transaction->cache_write_mutex);
243 if (!list_empty(&block_group->io_list)) {
244 list_del_init(&block_group->io_list);
245
Jeff Mahoneyafdb5712016-09-09 12:09:35 -0400246 btrfs_wait_cache_io(trans, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -0700247 btrfs_put_block_group(block_group);
248 }
249
250 /*
251 * now that we've truncated the cache away, its no longer
252 * setup or written
253 */
254 spin_lock(&block_group->lock);
255 block_group->disk_cache_state = BTRFS_DC_CLEAR;
256 spin_unlock(&block_group->lock);
Jeff Mahoney21e75ff2017-02-15 16:28:32 -0500257 btrfs_free_path(path);
Chris Mason1bbc6212015-04-06 12:46:08 -0700258 }
Josef Bacik0af3d002010-06-21 14:48:16 -0400259
Nikolay Borisov6ef06d22017-02-20 13:50:34 +0200260 btrfs_i_size_write(BTRFS_I(inode), 0);
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700261 truncate_pagecache(inode, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -0400262
263 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -0700264 * We skip the throttling logic for free space cache inodes, so we don't
265 * need to check for -EAGAIN.
Josef Bacik0af3d002010-06-21 14:48:16 -0400266 */
267 ret = btrfs_truncate_inode_items(trans, root, inode,
268 0, BTRFS_EXTENT_DATA_KEY);
Filipe Manana35c76642015-04-30 17:47:05 +0100269 if (ret)
270 goto fail;
Josef Bacik0af3d002010-06-21 14:48:16 -0400271
Li Zefan82d59022011-04-20 10:33:24 +0800272 ret = btrfs_update_inode(trans, root, inode);
Chris Mason1bbc6212015-04-06 12:46:08 -0700273
Chris Mason1bbc6212015-04-06 12:46:08 -0700274fail:
Filipe Manana35c76642015-04-30 17:47:05 +0100275 if (locked)
276 mutex_unlock(&trans->transaction->cache_write_mutex);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100277 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400278 btrfs_abort_transaction(trans, ret);
Josef Bacikc8174312011-11-02 09:29:35 -0400279
Li Zefan82d59022011-04-20 10:33:24 +0800280 return ret;
Josef Bacik0af3d002010-06-21 14:48:16 -0400281}
282
David Sterba1d480532017-01-23 17:28:19 +0100283static void readahead_cache(struct inode *inode)
Josef Bacik9d66e232010-08-25 16:54:15 -0400284{
285 struct file_ra_state *ra;
286 unsigned long last_index;
287
288 ra = kzalloc(sizeof(*ra), GFP_NOFS);
289 if (!ra)
David Sterba1d480532017-01-23 17:28:19 +0100290 return;
Josef Bacik9d66e232010-08-25 16:54:15 -0400291
292 file_ra_state_init(ra, inode->i_mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300293 last_index = (i_size_read(inode) - 1) >> PAGE_SHIFT;
Josef Bacik9d66e232010-08-25 16:54:15 -0400294
295 page_cache_sync_readahead(inode->i_mapping, ra, NULL, 0, last_index);
296
297 kfree(ra);
Josef Bacik9d66e232010-08-25 16:54:15 -0400298}
299
Chris Mason4c6d1d82015-04-06 13:17:20 -0700300static int io_ctl_init(struct btrfs_io_ctl *io_ctl, struct inode *inode,
Jeff Mahoneyf15376d2016-06-22 18:56:18 -0400301 int write)
Josef Bacika67509c2011-10-05 15:18:58 -0400302{
Miao Xie5349d6c2014-06-19 10:42:49 +0800303 int num_pages;
304 int check_crcs = 0;
305
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300306 num_pages = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
Miao Xie5349d6c2014-06-19 10:42:49 +0800307
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200308 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FREE_INO_OBJECTID)
Miao Xie5349d6c2014-06-19 10:42:49 +0800309 check_crcs = 1;
310
Zhihui Zhang8f6c72a2018-07-02 20:00:54 -0400311 /* Make sure we can fit our crcs and generation into the first page */
Miao Xie5349d6c2014-06-19 10:42:49 +0800312 if (write && check_crcs &&
Zhihui Zhang8f6c72a2018-07-02 20:00:54 -0400313 (num_pages * sizeof(u32) + sizeof(u64)) > PAGE_SIZE)
Miao Xie5349d6c2014-06-19 10:42:49 +0800314 return -ENOSPC;
315
Chris Mason4c6d1d82015-04-06 13:17:20 -0700316 memset(io_ctl, 0, sizeof(struct btrfs_io_ctl));
Miao Xie5349d6c2014-06-19 10:42:49 +0800317
David Sterba31e818f2015-02-20 18:00:26 +0100318 io_ctl->pages = kcalloc(num_pages, sizeof(struct page *), GFP_NOFS);
Josef Bacika67509c2011-10-05 15:18:58 -0400319 if (!io_ctl->pages)
320 return -ENOMEM;
Miao Xie5349d6c2014-06-19 10:42:49 +0800321
322 io_ctl->num_pages = num_pages;
Jeff Mahoneyf15376d2016-06-22 18:56:18 -0400323 io_ctl->fs_info = btrfs_sb(inode->i_sb);
Miao Xie5349d6c2014-06-19 10:42:49 +0800324 io_ctl->check_crcs = check_crcs;
Chris Masonc9dc4c62015-04-04 17:14:42 -0700325 io_ctl->inode = inode;
Miao Xie5349d6c2014-06-19 10:42:49 +0800326
Josef Bacika67509c2011-10-05 15:18:58 -0400327 return 0;
328}
Masami Hiramatsu663faf92018-01-13 02:55:33 +0900329ALLOW_ERROR_INJECTION(io_ctl_init, ERRNO);
Josef Bacika67509c2011-10-05 15:18:58 -0400330
Chris Mason4c6d1d82015-04-06 13:17:20 -0700331static void io_ctl_free(struct btrfs_io_ctl *io_ctl)
Josef Bacika67509c2011-10-05 15:18:58 -0400332{
333 kfree(io_ctl->pages);
Chris Masonc9dc4c62015-04-04 17:14:42 -0700334 io_ctl->pages = NULL;
Josef Bacika67509c2011-10-05 15:18:58 -0400335}
336
Chris Mason4c6d1d82015-04-06 13:17:20 -0700337static void io_ctl_unmap_page(struct btrfs_io_ctl *io_ctl)
Josef Bacika67509c2011-10-05 15:18:58 -0400338{
339 if (io_ctl->cur) {
Josef Bacika67509c2011-10-05 15:18:58 -0400340 io_ctl->cur = NULL;
341 io_ctl->orig = NULL;
342 }
343}
344
Chris Mason4c6d1d82015-04-06 13:17:20 -0700345static void io_ctl_map_page(struct btrfs_io_ctl *io_ctl, int clear)
Josef Bacika67509c2011-10-05 15:18:58 -0400346{
Josef Bacikb12d6862013-08-26 17:14:08 -0400347 ASSERT(io_ctl->index < io_ctl->num_pages);
Josef Bacika67509c2011-10-05 15:18:58 -0400348 io_ctl->page = io_ctl->pages[io_ctl->index++];
Chris Mason2b108262015-04-06 07:48:20 -0700349 io_ctl->cur = page_address(io_ctl->page);
Josef Bacika67509c2011-10-05 15:18:58 -0400350 io_ctl->orig = io_ctl->cur;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300351 io_ctl->size = PAGE_SIZE;
Josef Bacika67509c2011-10-05 15:18:58 -0400352 if (clear)
David Sterba619a9742017-03-29 20:48:44 +0200353 clear_page(io_ctl->cur);
Josef Bacika67509c2011-10-05 15:18:58 -0400354}
355
Chris Mason4c6d1d82015-04-06 13:17:20 -0700356static void io_ctl_drop_pages(struct btrfs_io_ctl *io_ctl)
Josef Bacika67509c2011-10-05 15:18:58 -0400357{
358 int i;
359
360 io_ctl_unmap_page(io_ctl);
361
362 for (i = 0; i < io_ctl->num_pages; i++) {
Li Zefana1ee5a42012-01-09 14:27:42 +0800363 if (io_ctl->pages[i]) {
364 ClearPageChecked(io_ctl->pages[i]);
365 unlock_page(io_ctl->pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300366 put_page(io_ctl->pages[i]);
Li Zefana1ee5a42012-01-09 14:27:42 +0800367 }
Josef Bacika67509c2011-10-05 15:18:58 -0400368 }
369}
370
Chris Mason4c6d1d82015-04-06 13:17:20 -0700371static int io_ctl_prepare_pages(struct btrfs_io_ctl *io_ctl, struct inode *inode,
Josef Bacika67509c2011-10-05 15:18:58 -0400372 int uptodate)
373{
374 struct page *page;
375 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
376 int i;
377
378 for (i = 0; i < io_ctl->num_pages; i++) {
379 page = find_or_create_page(inode->i_mapping, i, mask);
380 if (!page) {
381 io_ctl_drop_pages(io_ctl);
382 return -ENOMEM;
383 }
384 io_ctl->pages[i] = page;
385 if (uptodate && !PageUptodate(page)) {
386 btrfs_readpage(NULL, page);
387 lock_page(page);
388 if (!PageUptodate(page)) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500389 btrfs_err(BTRFS_I(inode)->root->fs_info,
390 "error reading free space cache");
Josef Bacika67509c2011-10-05 15:18:58 -0400391 io_ctl_drop_pages(io_ctl);
392 return -EIO;
393 }
394 }
395 }
396
Josef Bacikf7d61dc2011-11-15 09:31:24 -0500397 for (i = 0; i < io_ctl->num_pages; i++) {
398 clear_page_dirty_for_io(io_ctl->pages[i]);
399 set_page_extent_mapped(io_ctl->pages[i]);
400 }
401
Josef Bacika67509c2011-10-05 15:18:58 -0400402 return 0;
403}
404
Chris Mason4c6d1d82015-04-06 13:17:20 -0700405static void io_ctl_set_generation(struct btrfs_io_ctl *io_ctl, u64 generation)
Josef Bacika67509c2011-10-05 15:18:58 -0400406{
Al Viro528c0322012-04-13 11:03:55 -0400407 __le64 *val;
Josef Bacika67509c2011-10-05 15:18:58 -0400408
409 io_ctl_map_page(io_ctl, 1);
410
411 /*
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400412 * Skip the csum areas. If we don't check crcs then we just have a
413 * 64bit chunk at the front of the first page.
Josef Bacika67509c2011-10-05 15:18:58 -0400414 */
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400415 if (io_ctl->check_crcs) {
416 io_ctl->cur += (sizeof(u32) * io_ctl->num_pages);
417 io_ctl->size -= sizeof(u64) + (sizeof(u32) * io_ctl->num_pages);
418 } else {
419 io_ctl->cur += sizeof(u64);
420 io_ctl->size -= sizeof(u64) * 2;
421 }
Josef Bacika67509c2011-10-05 15:18:58 -0400422
423 val = io_ctl->cur;
424 *val = cpu_to_le64(generation);
425 io_ctl->cur += sizeof(u64);
Josef Bacika67509c2011-10-05 15:18:58 -0400426}
427
Chris Mason4c6d1d82015-04-06 13:17:20 -0700428static int io_ctl_check_generation(struct btrfs_io_ctl *io_ctl, u64 generation)
Josef Bacika67509c2011-10-05 15:18:58 -0400429{
Al Viro528c0322012-04-13 11:03:55 -0400430 __le64 *gen;
Josef Bacika67509c2011-10-05 15:18:58 -0400431
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400432 /*
433 * Skip the crc area. If we don't check crcs then we just have a 64bit
434 * chunk at the front of the first page.
435 */
436 if (io_ctl->check_crcs) {
437 io_ctl->cur += sizeof(u32) * io_ctl->num_pages;
438 io_ctl->size -= sizeof(u64) +
439 (sizeof(u32) * io_ctl->num_pages);
440 } else {
441 io_ctl->cur += sizeof(u64);
442 io_ctl->size -= sizeof(u64) * 2;
443 }
Josef Bacika67509c2011-10-05 15:18:58 -0400444
Josef Bacika67509c2011-10-05 15:18:58 -0400445 gen = io_ctl->cur;
446 if (le64_to_cpu(*gen) != generation) {
Jeff Mahoneyf15376d2016-06-22 18:56:18 -0400447 btrfs_err_rl(io_ctl->fs_info,
David Sterba94647322015-10-08 11:01:36 +0200448 "space cache generation (%llu) does not match inode (%llu)",
449 *gen, generation);
Josef Bacika67509c2011-10-05 15:18:58 -0400450 io_ctl_unmap_page(io_ctl);
451 return -EIO;
452 }
453 io_ctl->cur += sizeof(u64);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400454 return 0;
455}
456
Chris Mason4c6d1d82015-04-06 13:17:20 -0700457static void io_ctl_set_crc(struct btrfs_io_ctl *io_ctl, int index)
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400458{
459 u32 *tmp;
460 u32 crc = ~(u32)0;
461 unsigned offset = 0;
462
463 if (!io_ctl->check_crcs) {
464 io_ctl_unmap_page(io_ctl);
465 return;
466 }
467
468 if (index == 0)
Justin P. Mattockcb54f252011-11-21 08:43:28 -0800469 offset = sizeof(u32) * io_ctl->num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400470
Johannes Thumshirn4bb3c2e2019-05-22 10:19:00 +0200471 crc = btrfs_crc32c(crc, io_ctl->orig + offset, PAGE_SIZE - offset);
472 btrfs_crc32c_final(crc, (u8 *)&crc);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400473 io_ctl_unmap_page(io_ctl);
Chris Mason2b108262015-04-06 07:48:20 -0700474 tmp = page_address(io_ctl->pages[0]);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400475 tmp += index;
476 *tmp = crc;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400477}
478
Chris Mason4c6d1d82015-04-06 13:17:20 -0700479static int io_ctl_check_crc(struct btrfs_io_ctl *io_ctl, int index)
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400480{
481 u32 *tmp, val;
482 u32 crc = ~(u32)0;
483 unsigned offset = 0;
484
485 if (!io_ctl->check_crcs) {
486 io_ctl_map_page(io_ctl, 0);
487 return 0;
488 }
489
490 if (index == 0)
491 offset = sizeof(u32) * io_ctl->num_pages;
492
Chris Mason2b108262015-04-06 07:48:20 -0700493 tmp = page_address(io_ctl->pages[0]);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400494 tmp += index;
495 val = *tmp;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400496
497 io_ctl_map_page(io_ctl, 0);
Johannes Thumshirn4bb3c2e2019-05-22 10:19:00 +0200498 crc = btrfs_crc32c(crc, io_ctl->orig + offset, PAGE_SIZE - offset);
499 btrfs_crc32c_final(crc, (u8 *)&crc);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400500 if (val != crc) {
Jeff Mahoneyf15376d2016-06-22 18:56:18 -0400501 btrfs_err_rl(io_ctl->fs_info,
David Sterba94647322015-10-08 11:01:36 +0200502 "csum mismatch on free space cache");
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400503 io_ctl_unmap_page(io_ctl);
504 return -EIO;
505 }
506
Josef Bacika67509c2011-10-05 15:18:58 -0400507 return 0;
508}
509
Chris Mason4c6d1d82015-04-06 13:17:20 -0700510static int io_ctl_add_entry(struct btrfs_io_ctl *io_ctl, u64 offset, u64 bytes,
Josef Bacika67509c2011-10-05 15:18:58 -0400511 void *bitmap)
512{
513 struct btrfs_free_space_entry *entry;
514
515 if (!io_ctl->cur)
516 return -ENOSPC;
517
518 entry = io_ctl->cur;
519 entry->offset = cpu_to_le64(offset);
520 entry->bytes = cpu_to_le64(bytes);
521 entry->type = (bitmap) ? BTRFS_FREE_SPACE_BITMAP :
522 BTRFS_FREE_SPACE_EXTENT;
523 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
524 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
525
526 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
527 return 0;
528
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400529 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400530
531 /* No more pages to map */
532 if (io_ctl->index >= io_ctl->num_pages)
533 return 0;
534
535 /* map the next page */
536 io_ctl_map_page(io_ctl, 1);
537 return 0;
538}
539
Chris Mason4c6d1d82015-04-06 13:17:20 -0700540static int io_ctl_add_bitmap(struct btrfs_io_ctl *io_ctl, void *bitmap)
Josef Bacika67509c2011-10-05 15:18:58 -0400541{
542 if (!io_ctl->cur)
543 return -ENOSPC;
544
545 /*
546 * If we aren't at the start of the current page, unmap this one and
547 * map the next one if there is any left.
548 */
549 if (io_ctl->cur != io_ctl->orig) {
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400550 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400551 if (io_ctl->index >= io_ctl->num_pages)
552 return -ENOSPC;
553 io_ctl_map_page(io_ctl, 0);
554 }
555
David Sterba69d24802018-06-29 10:56:44 +0200556 copy_page(io_ctl->cur, bitmap);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400557 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400558 if (io_ctl->index < io_ctl->num_pages)
559 io_ctl_map_page(io_ctl, 0);
560 return 0;
561}
562
Chris Mason4c6d1d82015-04-06 13:17:20 -0700563static void io_ctl_zero_remaining_pages(struct btrfs_io_ctl *io_ctl)
Josef Bacika67509c2011-10-05 15:18:58 -0400564{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400565 /*
566 * If we're not on the boundary we know we've modified the page and we
567 * need to crc the page.
568 */
569 if (io_ctl->cur != io_ctl->orig)
570 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
571 else
572 io_ctl_unmap_page(io_ctl);
Josef Bacika67509c2011-10-05 15:18:58 -0400573
574 while (io_ctl->index < io_ctl->num_pages) {
575 io_ctl_map_page(io_ctl, 1);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400576 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400577 }
578}
579
Chris Mason4c6d1d82015-04-06 13:17:20 -0700580static int io_ctl_read_entry(struct btrfs_io_ctl *io_ctl,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400581 struct btrfs_free_space *entry, u8 *type)
Josef Bacika67509c2011-10-05 15:18:58 -0400582{
583 struct btrfs_free_space_entry *e;
Josef Bacik2f120c02011-11-10 20:45:05 -0500584 int ret;
585
586 if (!io_ctl->cur) {
587 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
588 if (ret)
589 return ret;
590 }
Josef Bacika67509c2011-10-05 15:18:58 -0400591
592 e = io_ctl->cur;
593 entry->offset = le64_to_cpu(e->offset);
594 entry->bytes = le64_to_cpu(e->bytes);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400595 *type = e->type;
Josef Bacika67509c2011-10-05 15:18:58 -0400596 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
597 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
598
599 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400600 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400601
602 io_ctl_unmap_page(io_ctl);
603
Josef Bacik2f120c02011-11-10 20:45:05 -0500604 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400605}
606
Chris Mason4c6d1d82015-04-06 13:17:20 -0700607static int io_ctl_read_bitmap(struct btrfs_io_ctl *io_ctl,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400608 struct btrfs_free_space *entry)
Josef Bacika67509c2011-10-05 15:18:58 -0400609{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400610 int ret;
611
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400612 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
613 if (ret)
614 return ret;
615
David Sterba69d24802018-06-29 10:56:44 +0200616 copy_page(entry->bitmap, io_ctl->cur);
Josef Bacika67509c2011-10-05 15:18:58 -0400617 io_ctl_unmap_page(io_ctl);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400618
619 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400620}
621
Josef Bacikcd023e72012-05-14 10:06:40 -0400622/*
623 * Since we attach pinned extents after the fact we can have contiguous sections
624 * of free space that are split up in entries. This poses a problem with the
625 * tree logging stuff since it could have allocated across what appears to be 2
626 * entries since we would have merged the entries when adding the pinned extents
627 * back to the free space cache. So run through the space cache that we just
628 * loaded and merge contiguous entries. This will make the log replay stuff not
629 * blow up and it will make for nicer allocator behavior.
630 */
631static void merge_space_tree(struct btrfs_free_space_ctl *ctl)
632{
633 struct btrfs_free_space *e, *prev = NULL;
634 struct rb_node *n;
635
636again:
637 spin_lock(&ctl->tree_lock);
638 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
639 e = rb_entry(n, struct btrfs_free_space, offset_index);
640 if (!prev)
641 goto next;
642 if (e->bitmap || prev->bitmap)
643 goto next;
644 if (prev->offset + prev->bytes == e->offset) {
645 unlink_free_space(ctl, prev);
646 unlink_free_space(ctl, e);
647 prev->bytes += e->bytes;
648 kmem_cache_free(btrfs_free_space_cachep, e);
649 link_free_space(ctl, prev);
650 prev = NULL;
651 spin_unlock(&ctl->tree_lock);
652 goto again;
653 }
654next:
655 prev = e;
656 }
657 spin_unlock(&ctl->tree_lock);
658}
659
Eric Sandeen48a3b632013-04-25 20:41:01 +0000660static int __load_free_space_cache(struct btrfs_root *root, struct inode *inode,
661 struct btrfs_free_space_ctl *ctl,
662 struct btrfs_path *path, u64 offset)
Josef Bacik9d66e232010-08-25 16:54:15 -0400663{
David Sterba3ffbd682018-06-29 10:56:42 +0200664 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik9d66e232010-08-25 16:54:15 -0400665 struct btrfs_free_space_header *header;
666 struct extent_buffer *leaf;
Chris Mason4c6d1d82015-04-06 13:17:20 -0700667 struct btrfs_io_ctl io_ctl;
Josef Bacik9d66e232010-08-25 16:54:15 -0400668 struct btrfs_key key;
Josef Bacika67509c2011-10-05 15:18:58 -0400669 struct btrfs_free_space *e, *n;
Gui Hechengb76808f2014-12-31 09:51:35 +0800670 LIST_HEAD(bitmaps);
Josef Bacik9d66e232010-08-25 16:54:15 -0400671 u64 num_entries;
672 u64 num_bitmaps;
673 u64 generation;
Josef Bacika67509c2011-10-05 15:18:58 -0400674 u8 type;
Josef Bacikf6a39822011-06-06 10:50:35 -0400675 int ret = 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400676
Josef Bacik9d66e232010-08-25 16:54:15 -0400677 /* Nothing in the space cache, goodbye */
Li Zefan0414efa2011-04-20 10:20:14 +0800678 if (!i_size_read(inode))
Josef Bacika67509c2011-10-05 15:18:58 -0400679 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400680
681 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800682 key.offset = offset;
Josef Bacik9d66e232010-08-25 16:54:15 -0400683 key.type = 0;
684
685 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Li Zefan0414efa2011-04-20 10:20:14 +0800686 if (ret < 0)
Josef Bacika67509c2011-10-05 15:18:58 -0400687 return 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800688 else if (ret > 0) {
Chris Mason945d8962011-05-22 12:33:42 -0400689 btrfs_release_path(path);
Josef Bacika67509c2011-10-05 15:18:58 -0400690 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400691 }
692
Li Zefan0414efa2011-04-20 10:20:14 +0800693 ret = -1;
694
Josef Bacik9d66e232010-08-25 16:54:15 -0400695 leaf = path->nodes[0];
696 header = btrfs_item_ptr(leaf, path->slots[0],
697 struct btrfs_free_space_header);
698 num_entries = btrfs_free_space_entries(leaf, header);
699 num_bitmaps = btrfs_free_space_bitmaps(leaf, header);
700 generation = btrfs_free_space_generation(leaf, header);
Chris Mason945d8962011-05-22 12:33:42 -0400701 btrfs_release_path(path);
Josef Bacik9d66e232010-08-25 16:54:15 -0400702
Miao Xiee570fd22014-06-19 10:42:50 +0800703 if (!BTRFS_I(inode)->generation) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400704 btrfs_info(fs_info,
David Sterba913e1532017-07-13 15:32:18 +0200705 "the free space cache file (%llu) is invalid, skip it",
Miao Xiee570fd22014-06-19 10:42:50 +0800706 offset);
707 return 0;
708 }
709
Josef Bacik9d66e232010-08-25 16:54:15 -0400710 if (BTRFS_I(inode)->generation != generation) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400711 btrfs_err(fs_info,
712 "free space inode generation (%llu) did not match free space cache generation (%llu)",
713 BTRFS_I(inode)->generation, generation);
Josef Bacika67509c2011-10-05 15:18:58 -0400714 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400715 }
716
717 if (!num_entries)
Josef Bacika67509c2011-10-05 15:18:58 -0400718 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400719
Jeff Mahoneyf15376d2016-06-22 18:56:18 -0400720 ret = io_ctl_init(&io_ctl, inode, 0);
Li Zefan706efc62012-01-09 14:36:28 +0800721 if (ret)
722 return ret;
723
David Sterba1d480532017-01-23 17:28:19 +0100724 readahead_cache(inode);
Josef Bacik9d66e232010-08-25 16:54:15 -0400725
Josef Bacika67509c2011-10-05 15:18:58 -0400726 ret = io_ctl_prepare_pages(&io_ctl, inode, 1);
727 if (ret)
728 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400729
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400730 ret = io_ctl_check_crc(&io_ctl, 0);
731 if (ret)
732 goto free_cache;
733
Josef Bacika67509c2011-10-05 15:18:58 -0400734 ret = io_ctl_check_generation(&io_ctl, generation);
735 if (ret)
736 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400737
Josef Bacika67509c2011-10-05 15:18:58 -0400738 while (num_entries) {
739 e = kmem_cache_zalloc(btrfs_free_space_cachep,
740 GFP_NOFS);
741 if (!e)
Josef Bacik9d66e232010-08-25 16:54:15 -0400742 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400743
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400744 ret = io_ctl_read_entry(&io_ctl, e, &type);
745 if (ret) {
746 kmem_cache_free(btrfs_free_space_cachep, e);
747 goto free_cache;
748 }
749
Josef Bacika67509c2011-10-05 15:18:58 -0400750 if (!e->bytes) {
751 kmem_cache_free(btrfs_free_space_cachep, e);
752 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400753 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400754
Josef Bacika67509c2011-10-05 15:18:58 -0400755 if (type == BTRFS_FREE_SPACE_EXTENT) {
756 spin_lock(&ctl->tree_lock);
757 ret = link_free_space(ctl, e);
758 spin_unlock(&ctl->tree_lock);
759 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400760 btrfs_err(fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000761 "Duplicate entries in free space cache, dumping");
Josef Bacikdc89e982011-01-28 17:05:48 -0500762 kmem_cache_free(btrfs_free_space_cachep, e);
Josef Bacik9d66e232010-08-25 16:54:15 -0400763 goto free_cache;
764 }
Josef Bacika67509c2011-10-05 15:18:58 -0400765 } else {
Josef Bacikb12d6862013-08-26 17:14:08 -0400766 ASSERT(num_bitmaps);
Josef Bacika67509c2011-10-05 15:18:58 -0400767 num_bitmaps--;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300768 e->bitmap = kzalloc(PAGE_SIZE, GFP_NOFS);
Josef Bacika67509c2011-10-05 15:18:58 -0400769 if (!e->bitmap) {
770 kmem_cache_free(
771 btrfs_free_space_cachep, e);
772 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400773 }
Josef Bacika67509c2011-10-05 15:18:58 -0400774 spin_lock(&ctl->tree_lock);
775 ret = link_free_space(ctl, e);
776 ctl->total_bitmaps++;
777 ctl->op->recalc_thresholds(ctl);
778 spin_unlock(&ctl->tree_lock);
779 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400780 btrfs_err(fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000781 "Duplicate entries in free space cache, dumping");
Josef Bacika67509c2011-10-05 15:18:58 -0400782 kmem_cache_free(btrfs_free_space_cachep, e);
783 goto free_cache;
784 }
785 list_add_tail(&e->list, &bitmaps);
Josef Bacik9d66e232010-08-25 16:54:15 -0400786 }
787
Josef Bacika67509c2011-10-05 15:18:58 -0400788 num_entries--;
Josef Bacik9d66e232010-08-25 16:54:15 -0400789 }
790
Josef Bacik2f120c02011-11-10 20:45:05 -0500791 io_ctl_unmap_page(&io_ctl);
792
Josef Bacika67509c2011-10-05 15:18:58 -0400793 /*
794 * We add the bitmaps at the end of the entries in order that
795 * the bitmap entries are added to the cache.
796 */
797 list_for_each_entry_safe(e, n, &bitmaps, list) {
798 list_del_init(&e->list);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400799 ret = io_ctl_read_bitmap(&io_ctl, e);
800 if (ret)
801 goto free_cache;
Josef Bacika67509c2011-10-05 15:18:58 -0400802 }
803
804 io_ctl_drop_pages(&io_ctl);
Josef Bacikcd023e72012-05-14 10:06:40 -0400805 merge_space_tree(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400806 ret = 1;
807out:
Josef Bacika67509c2011-10-05 15:18:58 -0400808 io_ctl_free(&io_ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400809 return ret;
Josef Bacik9d66e232010-08-25 16:54:15 -0400810free_cache:
Josef Bacika67509c2011-10-05 15:18:58 -0400811 io_ctl_drop_pages(&io_ctl);
Li Zefan0414efa2011-04-20 10:20:14 +0800812 __btrfs_remove_free_space_cache(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400813 goto out;
814}
815
David Sterbabb6cb1c2019-03-20 13:47:15 +0100816int load_free_space_cache(struct btrfs_block_group_cache *block_group)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400817{
David Sterbabb6cb1c2019-03-20 13:47:15 +0100818 struct btrfs_fs_info *fs_info = block_group->fs_info;
Li Zefan34d52cb2011-03-29 13:46:06 +0800819 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan0414efa2011-04-20 10:20:14 +0800820 struct inode *inode;
821 struct btrfs_path *path;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400822 int ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800823 bool matched;
824 u64 used = btrfs_block_group_used(&block_group->item);
825
826 /*
Li Zefan0414efa2011-04-20 10:20:14 +0800827 * If this block group has been marked to be cleared for one reason or
828 * another then we can't trust the on disk cache, so just return.
829 */
830 spin_lock(&block_group->lock);
831 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
832 spin_unlock(&block_group->lock);
833 return 0;
834 }
835 spin_unlock(&block_group->lock);
836
837 path = btrfs_alloc_path();
838 if (!path)
839 return 0;
Josef Bacikd53ba472012-04-12 16:03:57 -0400840 path->search_commit_root = 1;
841 path->skip_locking = 1;
Li Zefan0414efa2011-04-20 10:20:14 +0800842
Filipe Manana4222ea72018-10-24 10:13:03 +0100843 /*
844 * We must pass a path with search_commit_root set to btrfs_iget in
845 * order to avoid a deadlock when allocating extents for the tree root.
846 *
847 * When we are COWing an extent buffer from the tree root, when looking
848 * for a free extent, at extent-tree.c:find_free_extent(), we can find
849 * block group without its free space cache loaded. When we find one
850 * we must load its space cache which requires reading its free space
851 * cache's inode item from the root tree. If this inode item is located
852 * in the same leaf that we started COWing before, then we end up in
853 * deadlock on the extent buffer (trying to read lock it when we
854 * previously write locked it).
855 *
856 * It's safe to read the inode item using the commit root because
857 * block groups, once loaded, stay in memory forever (until they are
858 * removed) as well as their space caches once loaded. New block groups
859 * once created get their ->cached field set to BTRFS_CACHE_FINISHED so
860 * we will never try to read their inode item while the fs is mounted.
861 */
David Sterba7949f332019-03-20 13:40:19 +0100862 inode = lookup_free_space_inode(block_group, path);
Li Zefan0414efa2011-04-20 10:20:14 +0800863 if (IS_ERR(inode)) {
864 btrfs_free_path(path);
865 return 0;
866 }
867
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400868 /* We may have converted the inode and made the cache invalid. */
869 spin_lock(&block_group->lock);
870 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
871 spin_unlock(&block_group->lock);
Tsutomu Itoha7e221e2012-02-14 17:12:23 +0900872 btrfs_free_path(path);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400873 goto out;
874 }
875 spin_unlock(&block_group->lock);
876
Li Zefan0414efa2011-04-20 10:20:14 +0800877 ret = __load_free_space_cache(fs_info->tree_root, inode, ctl,
878 path, block_group->key.objectid);
879 btrfs_free_path(path);
880 if (ret <= 0)
881 goto out;
882
883 spin_lock(&ctl->tree_lock);
884 matched = (ctl->free_space == (block_group->key.offset - used -
885 block_group->bytes_super));
886 spin_unlock(&ctl->tree_lock);
887
888 if (!matched) {
889 __btrfs_remove_free_space_cache(ctl);
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400890 btrfs_warn(fs_info,
891 "block group %llu has wrong amount of free space",
892 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800893 ret = -1;
894 }
895out:
896 if (ret < 0) {
897 /* This cache is bogus, make sure it gets cleared */
898 spin_lock(&block_group->lock);
899 block_group->disk_cache_state = BTRFS_DC_CLEAR;
900 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +0800901 ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800902
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400903 btrfs_warn(fs_info,
904 "failed to load free space cache for block group %llu, rebuilding it now",
905 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800906 }
907
908 iput(inode);
909 return ret;
910}
911
Chris Masond4452bc2014-05-19 20:47:56 -0700912static noinline_for_stack
Chris Mason4c6d1d82015-04-06 13:17:20 -0700913int write_cache_extent_entries(struct btrfs_io_ctl *io_ctl,
Chris Masond4452bc2014-05-19 20:47:56 -0700914 struct btrfs_free_space_ctl *ctl,
915 struct btrfs_block_group_cache *block_group,
916 int *entries, int *bitmaps,
917 struct list_head *bitmap_list)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400918{
Josef Bacikc09544e2011-08-30 10:19:10 -0400919 int ret;
Chris Masond4452bc2014-05-19 20:47:56 -0700920 struct btrfs_free_cluster *cluster = NULL;
Chris Mason1bbc6212015-04-06 12:46:08 -0700921 struct btrfs_free_cluster *cluster_locked = NULL;
Chris Masond4452bc2014-05-19 20:47:56 -0700922 struct rb_node *node = rb_first(&ctl->free_space_offset);
Filipe Manana55507ce2014-12-01 17:04:09 +0000923 struct btrfs_trim_range *trim_entry;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400924
Josef Bacik43be2142011-04-01 14:55:00 +0000925 /* Get the cluster for this block_group if it exists */
Chris Masond4452bc2014-05-19 20:47:56 -0700926 if (block_group && !list_empty(&block_group->cluster_list)) {
Josef Bacik43be2142011-04-01 14:55:00 +0000927 cluster = list_entry(block_group->cluster_list.next,
928 struct btrfs_free_cluster,
929 block_group_list);
Chris Masond4452bc2014-05-19 20:47:56 -0700930 }
Josef Bacik43be2142011-04-01 14:55:00 +0000931
Josef Bacikf75b1302011-10-05 10:00:18 -0400932 if (!node && cluster) {
Chris Mason1bbc6212015-04-06 12:46:08 -0700933 cluster_locked = cluster;
934 spin_lock(&cluster_locked->lock);
Josef Bacikf75b1302011-10-05 10:00:18 -0400935 node = rb_first(&cluster->root);
936 cluster = NULL;
937 }
938
Josef Bacik0cb59c92010-07-02 12:14:14 -0400939 /* Write out the extent entries */
Josef Bacika67509c2011-10-05 15:18:58 -0400940 while (node) {
941 struct btrfs_free_space *e;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400942
Josef Bacika67509c2011-10-05 15:18:58 -0400943 e = rb_entry(node, struct btrfs_free_space, offset_index);
Chris Masond4452bc2014-05-19 20:47:56 -0700944 *entries += 1;
Josef Bacik43be2142011-04-01 14:55:00 +0000945
Chris Masond4452bc2014-05-19 20:47:56 -0700946 ret = io_ctl_add_entry(io_ctl, e->offset, e->bytes,
Josef Bacika67509c2011-10-05 15:18:58 -0400947 e->bitmap);
948 if (ret)
Chris Masond4452bc2014-05-19 20:47:56 -0700949 goto fail;
Josef Bacika67509c2011-10-05 15:18:58 -0400950
951 if (e->bitmap) {
Chris Masond4452bc2014-05-19 20:47:56 -0700952 list_add_tail(&e->list, bitmap_list);
953 *bitmaps += 1;
Josef Bacika67509c2011-10-05 15:18:58 -0400954 }
955 node = rb_next(node);
956 if (!node && cluster) {
957 node = rb_first(&cluster->root);
Chris Mason1bbc6212015-04-06 12:46:08 -0700958 cluster_locked = cluster;
959 spin_lock(&cluster_locked->lock);
Josef Bacika67509c2011-10-05 15:18:58 -0400960 cluster = NULL;
961 }
962 }
Chris Mason1bbc6212015-04-06 12:46:08 -0700963 if (cluster_locked) {
964 spin_unlock(&cluster_locked->lock);
965 cluster_locked = NULL;
966 }
Filipe Manana55507ce2014-12-01 17:04:09 +0000967
968 /*
969 * Make sure we don't miss any range that was removed from our rbtree
970 * because trimming is running. Otherwise after a umount+mount (or crash
971 * after committing the transaction) we would leak free space and get
972 * an inconsistent free space cache report from fsck.
973 */
974 list_for_each_entry(trim_entry, &ctl->trimming_ranges, list) {
975 ret = io_ctl_add_entry(io_ctl, trim_entry->start,
976 trim_entry->bytes, NULL);
977 if (ret)
978 goto fail;
979 *entries += 1;
980 }
981
Chris Masond4452bc2014-05-19 20:47:56 -0700982 return 0;
983fail:
Chris Mason1bbc6212015-04-06 12:46:08 -0700984 if (cluster_locked)
985 spin_unlock(&cluster_locked->lock);
Chris Masond4452bc2014-05-19 20:47:56 -0700986 return -ENOSPC;
987}
988
989static noinline_for_stack int
990update_cache_item(struct btrfs_trans_handle *trans,
991 struct btrfs_root *root,
992 struct inode *inode,
993 struct btrfs_path *path, u64 offset,
994 int entries, int bitmaps)
995{
996 struct btrfs_key key;
997 struct btrfs_free_space_header *header;
998 struct extent_buffer *leaf;
999 int ret;
1000
1001 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
1002 key.offset = offset;
1003 key.type = 0;
1004
1005 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1006 if (ret < 0) {
1007 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001008 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0, NULL);
Chris Masond4452bc2014-05-19 20:47:56 -07001009 goto fail;
1010 }
1011 leaf = path->nodes[0];
1012 if (ret > 0) {
1013 struct btrfs_key found_key;
1014 ASSERT(path->slots[0]);
1015 path->slots[0]--;
1016 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1017 if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID ||
1018 found_key.offset != offset) {
1019 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0,
1020 inode->i_size - 1,
1021 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001022 NULL);
Chris Masond4452bc2014-05-19 20:47:56 -07001023 btrfs_release_path(path);
1024 goto fail;
1025 }
1026 }
1027
1028 BTRFS_I(inode)->generation = trans->transid;
1029 header = btrfs_item_ptr(leaf, path->slots[0],
1030 struct btrfs_free_space_header);
1031 btrfs_set_free_space_entries(leaf, header, entries);
1032 btrfs_set_free_space_bitmaps(leaf, header, bitmaps);
1033 btrfs_set_free_space_generation(leaf, header, trans->transid);
1034 btrfs_mark_buffer_dirty(leaf);
1035 btrfs_release_path(path);
1036
1037 return 0;
1038
1039fail:
1040 return -1;
1041}
1042
David Sterba6701bdb2019-03-20 13:49:09 +01001043static noinline_for_stack int write_pinned_extent_entries(
Miao Xie5349d6c2014-06-19 10:42:49 +08001044 struct btrfs_block_group_cache *block_group,
Chris Mason4c6d1d82015-04-06 13:17:20 -07001045 struct btrfs_io_ctl *io_ctl,
Miao Xie5349d6c2014-06-19 10:42:49 +08001046 int *entries)
Chris Masond4452bc2014-05-19 20:47:56 -07001047{
1048 u64 start, extent_start, extent_end, len;
Chris Masond4452bc2014-05-19 20:47:56 -07001049 struct extent_io_tree *unpin = NULL;
1050 int ret;
Josef Bacika67509c2011-10-05 15:18:58 -04001051
Miao Xie5349d6c2014-06-19 10:42:49 +08001052 if (!block_group)
1053 return 0;
1054
Josef Bacika67509c2011-10-05 15:18:58 -04001055 /*
1056 * We want to add any pinned extents to our free space cache
1057 * so we don't leak the space
Chris Masond4452bc2014-05-19 20:47:56 -07001058 *
Li Zefandb804f22012-01-10 16:41:01 +08001059 * We shouldn't have switched the pinned extents yet so this is the
1060 * right one
1061 */
David Sterba6701bdb2019-03-20 13:49:09 +01001062 unpin = block_group->fs_info->pinned_extents;
Li Zefandb804f22012-01-10 16:41:01 +08001063
Miao Xie5349d6c2014-06-19 10:42:49 +08001064 start = block_group->key.objectid;
Li Zefandb804f22012-01-10 16:41:01 +08001065
Miao Xie5349d6c2014-06-19 10:42:49 +08001066 while (start < block_group->key.objectid + block_group->key.offset) {
Li Zefandb804f22012-01-10 16:41:01 +08001067 ret = find_first_extent_bit(unpin, start,
1068 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -04001069 EXTENT_DIRTY, NULL);
Miao Xie5349d6c2014-06-19 10:42:49 +08001070 if (ret)
1071 return 0;
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001072
Josef Bacika67509c2011-10-05 15:18:58 -04001073 /* This pinned extent is out of our range */
Li Zefandb804f22012-01-10 16:41:01 +08001074 if (extent_start >= block_group->key.objectid +
Josef Bacika67509c2011-10-05 15:18:58 -04001075 block_group->key.offset)
Miao Xie5349d6c2014-06-19 10:42:49 +08001076 return 0;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001077
Li Zefandb804f22012-01-10 16:41:01 +08001078 extent_start = max(extent_start, start);
1079 extent_end = min(block_group->key.objectid +
1080 block_group->key.offset, extent_end + 1);
1081 len = extent_end - extent_start;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001082
Chris Masond4452bc2014-05-19 20:47:56 -07001083 *entries += 1;
1084 ret = io_ctl_add_entry(io_ctl, extent_start, len, NULL);
Josef Bacika67509c2011-10-05 15:18:58 -04001085 if (ret)
Miao Xie5349d6c2014-06-19 10:42:49 +08001086 return -ENOSPC;
Josef Bacik2f356122011-06-10 15:31:13 -04001087
Li Zefandb804f22012-01-10 16:41:01 +08001088 start = extent_end;
Josef Bacika67509c2011-10-05 15:18:58 -04001089 }
Josef Bacik0cb59c92010-07-02 12:14:14 -04001090
Miao Xie5349d6c2014-06-19 10:42:49 +08001091 return 0;
1092}
1093
1094static noinline_for_stack int
Chris Mason4c6d1d82015-04-06 13:17:20 -07001095write_bitmap_entries(struct btrfs_io_ctl *io_ctl, struct list_head *bitmap_list)
Miao Xie5349d6c2014-06-19 10:42:49 +08001096{
Geliang Tang7ae16812015-12-18 22:17:00 +08001097 struct btrfs_free_space *entry, *next;
Miao Xie5349d6c2014-06-19 10:42:49 +08001098 int ret;
1099
Josef Bacik0cb59c92010-07-02 12:14:14 -04001100 /* Write out the bitmaps */
Geliang Tang7ae16812015-12-18 22:17:00 +08001101 list_for_each_entry_safe(entry, next, bitmap_list, list) {
Chris Masond4452bc2014-05-19 20:47:56 -07001102 ret = io_ctl_add_bitmap(io_ctl, entry->bitmap);
Josef Bacika67509c2011-10-05 15:18:58 -04001103 if (ret)
Miao Xie5349d6c2014-06-19 10:42:49 +08001104 return -ENOSPC;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001105 list_del_init(&entry->list);
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001106 }
1107
Miao Xie5349d6c2014-06-19 10:42:49 +08001108 return 0;
1109}
Josef Bacik0cb59c92010-07-02 12:14:14 -04001110
Miao Xie5349d6c2014-06-19 10:42:49 +08001111static int flush_dirty_cache(struct inode *inode)
1112{
1113 int ret;
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001114
Josef Bacik0ef8b722013-10-25 16:13:35 -04001115 ret = btrfs_wait_ordered_range(inode, 0, (u64)-1);
Miao Xie5349d6c2014-06-19 10:42:49 +08001116 if (ret)
Josef Bacik0ef8b722013-10-25 16:13:35 -04001117 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001118 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0, NULL);
Chris Masond4452bc2014-05-19 20:47:56 -07001119
Miao Xie5349d6c2014-06-19 10:42:49 +08001120 return ret;
Chris Masond4452bc2014-05-19 20:47:56 -07001121}
1122
1123static void noinline_for_stack
Chris Masona3bdccc2015-04-24 11:00:00 -07001124cleanup_bitmap_list(struct list_head *bitmap_list)
Chris Masond4452bc2014-05-19 20:47:56 -07001125{
Geliang Tang7ae16812015-12-18 22:17:00 +08001126 struct btrfs_free_space *entry, *next;
Miao Xie5349d6c2014-06-19 10:42:49 +08001127
Geliang Tang7ae16812015-12-18 22:17:00 +08001128 list_for_each_entry_safe(entry, next, bitmap_list, list)
Chris Masond4452bc2014-05-19 20:47:56 -07001129 list_del_init(&entry->list);
Chris Masona3bdccc2015-04-24 11:00:00 -07001130}
1131
1132static void noinline_for_stack
1133cleanup_write_cache_enospc(struct inode *inode,
1134 struct btrfs_io_ctl *io_ctl,
David Sterba7bf1a152017-02-10 20:23:00 +01001135 struct extent_state **cached_state)
Chris Masona3bdccc2015-04-24 11:00:00 -07001136{
Chris Masond4452bc2014-05-19 20:47:56 -07001137 io_ctl_drop_pages(io_ctl);
1138 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
David Sterbae43bbe52017-12-12 21:43:52 +01001139 i_size_read(inode) - 1, cached_state);
Chris Masond4452bc2014-05-19 20:47:56 -07001140}
1141
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04001142static int __btrfs_wait_cache_io(struct btrfs_root *root,
1143 struct btrfs_trans_handle *trans,
1144 struct btrfs_block_group_cache *block_group,
1145 struct btrfs_io_ctl *io_ctl,
1146 struct btrfs_path *path, u64 offset)
Chris Masonc9dc4c62015-04-04 17:14:42 -07001147{
1148 int ret;
1149 struct inode *inode = io_ctl->inode;
1150
Chris Mason1bbc6212015-04-06 12:46:08 -07001151 if (!inode)
1152 return 0;
1153
Chris Masonc9dc4c62015-04-04 17:14:42 -07001154 /* Flush the dirty pages in the cache file. */
1155 ret = flush_dirty_cache(inode);
1156 if (ret)
1157 goto out;
1158
1159 /* Update the cache item to tell everyone this cache file is valid. */
1160 ret = update_cache_item(trans, root, inode, path, offset,
1161 io_ctl->entries, io_ctl->bitmaps);
1162out:
1163 io_ctl_free(io_ctl);
1164 if (ret) {
1165 invalidate_inode_pages2(inode->i_mapping);
1166 BTRFS_I(inode)->generation = 0;
1167 if (block_group) {
1168#ifdef DEBUG
David Sterba3ffbd682018-06-29 10:56:42 +02001169 btrfs_err(root->fs_info,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001170 "failed to write free space cache for block group %llu",
1171 block_group->key.objectid);
Chris Masonc9dc4c62015-04-04 17:14:42 -07001172#endif
1173 }
1174 }
1175 btrfs_update_inode(trans, root, inode);
1176
1177 if (block_group) {
Chris Mason1bbc6212015-04-06 12:46:08 -07001178 /* the dirty list is protected by the dirty_bgs_lock */
1179 spin_lock(&trans->transaction->dirty_bgs_lock);
1180
1181 /* the disk_cache_state is protected by the block group lock */
Chris Masonc9dc4c62015-04-04 17:14:42 -07001182 spin_lock(&block_group->lock);
1183
1184 /*
1185 * only mark this as written if we didn't get put back on
Chris Mason1bbc6212015-04-06 12:46:08 -07001186 * the dirty list while waiting for IO. Otherwise our
1187 * cache state won't be right, and we won't get written again
Chris Masonc9dc4c62015-04-04 17:14:42 -07001188 */
1189 if (!ret && list_empty(&block_group->dirty_list))
1190 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
1191 else if (ret)
1192 block_group->disk_cache_state = BTRFS_DC_ERROR;
1193
1194 spin_unlock(&block_group->lock);
Chris Mason1bbc6212015-04-06 12:46:08 -07001195 spin_unlock(&trans->transaction->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07001196 io_ctl->inode = NULL;
1197 iput(inode);
1198 }
1199
1200 return ret;
1201
1202}
1203
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04001204static int btrfs_wait_cache_io_root(struct btrfs_root *root,
1205 struct btrfs_trans_handle *trans,
1206 struct btrfs_io_ctl *io_ctl,
1207 struct btrfs_path *path)
1208{
1209 return __btrfs_wait_cache_io(root, trans, NULL, io_ctl, path, 0);
1210}
1211
1212int btrfs_wait_cache_io(struct btrfs_trans_handle *trans,
1213 struct btrfs_block_group_cache *block_group,
1214 struct btrfs_path *path)
1215{
1216 return __btrfs_wait_cache_io(block_group->fs_info->tree_root, trans,
1217 block_group, &block_group->io_ctl,
1218 path, block_group->key.objectid);
1219}
1220
Chris Masond4452bc2014-05-19 20:47:56 -07001221/**
1222 * __btrfs_write_out_cache - write out cached info to an inode
1223 * @root - the root the inode belongs to
1224 * @ctl - the free space cache we are going to write out
1225 * @block_group - the block_group for this cache if it belongs to a block_group
1226 * @trans - the trans handle
Chris Masond4452bc2014-05-19 20:47:56 -07001227 *
1228 * This function writes out a free space cache struct to disk for quick recovery
Geliang Tang8cd1e732015-10-04 17:05:32 +08001229 * on mount. This will return 0 if it was successful in writing the cache out,
Omar Sandovalb8605452015-02-24 02:47:06 -08001230 * or an errno if it was not.
Chris Masond4452bc2014-05-19 20:47:56 -07001231 */
1232static int __btrfs_write_out_cache(struct btrfs_root *root, struct inode *inode,
1233 struct btrfs_free_space_ctl *ctl,
1234 struct btrfs_block_group_cache *block_group,
Chris Masonc9dc4c62015-04-04 17:14:42 -07001235 struct btrfs_io_ctl *io_ctl,
David Sterba0e8d9312017-02-10 20:26:24 +01001236 struct btrfs_trans_handle *trans)
Chris Masond4452bc2014-05-19 20:47:56 -07001237{
1238 struct extent_state *cached_state = NULL;
Miao Xie5349d6c2014-06-19 10:42:49 +08001239 LIST_HEAD(bitmap_list);
Chris Masond4452bc2014-05-19 20:47:56 -07001240 int entries = 0;
1241 int bitmaps = 0;
1242 int ret;
Chris Masonc9dc4c62015-04-04 17:14:42 -07001243 int must_iput = 0;
Chris Masond4452bc2014-05-19 20:47:56 -07001244
1245 if (!i_size_read(inode))
Omar Sandovalb8605452015-02-24 02:47:06 -08001246 return -EIO;
Chris Masond4452bc2014-05-19 20:47:56 -07001247
Chris Masonc9dc4c62015-04-04 17:14:42 -07001248 WARN_ON(io_ctl->pages);
Jeff Mahoneyf15376d2016-06-22 18:56:18 -04001249 ret = io_ctl_init(io_ctl, inode, 1);
Chris Masond4452bc2014-05-19 20:47:56 -07001250 if (ret)
Omar Sandovalb8605452015-02-24 02:47:06 -08001251 return ret;
Chris Masond4452bc2014-05-19 20:47:56 -07001252
Miao Xiee570fd22014-06-19 10:42:50 +08001253 if (block_group && (block_group->flags & BTRFS_BLOCK_GROUP_DATA)) {
1254 down_write(&block_group->data_rwsem);
1255 spin_lock(&block_group->lock);
1256 if (block_group->delalloc_bytes) {
1257 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
1258 spin_unlock(&block_group->lock);
1259 up_write(&block_group->data_rwsem);
1260 BTRFS_I(inode)->generation = 0;
1261 ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07001262 must_iput = 1;
Miao Xiee570fd22014-06-19 10:42:50 +08001263 goto out;
1264 }
1265 spin_unlock(&block_group->lock);
1266 }
1267
Chris Masond4452bc2014-05-19 20:47:56 -07001268 /* Lock all pages first so we can lock the extent safely. */
Omar Sandovalb8605452015-02-24 02:47:06 -08001269 ret = io_ctl_prepare_pages(io_ctl, inode, 0);
1270 if (ret)
Josef Bacikb77000e2017-11-15 16:20:52 -05001271 goto out_unlock;
Chris Masond4452bc2014-05-19 20:47:56 -07001272
1273 lock_extent_bits(&BTRFS_I(inode)->io_tree, 0, i_size_read(inode) - 1,
David Sterbaff13db42015-12-03 14:30:40 +01001274 &cached_state);
Chris Masond4452bc2014-05-19 20:47:56 -07001275
Chris Masonc9dc4c62015-04-04 17:14:42 -07001276 io_ctl_set_generation(io_ctl, trans->transid);
Chris Masond4452bc2014-05-19 20:47:56 -07001277
Filipe Manana55507ce2014-12-01 17:04:09 +00001278 mutex_lock(&ctl->cache_writeout_mutex);
Miao Xie5349d6c2014-06-19 10:42:49 +08001279 /* Write out the extent entries in the free space cache */
Chris Mason1bbc6212015-04-06 12:46:08 -07001280 spin_lock(&ctl->tree_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07001281 ret = write_cache_extent_entries(io_ctl, ctl,
Chris Masond4452bc2014-05-19 20:47:56 -07001282 block_group, &entries, &bitmaps,
1283 &bitmap_list);
Chris Masona3bdccc2015-04-24 11:00:00 -07001284 if (ret)
1285 goto out_nospc_locked;
Chris Masond4452bc2014-05-19 20:47:56 -07001286
Miao Xie5349d6c2014-06-19 10:42:49 +08001287 /*
1288 * Some spaces that are freed in the current transaction are pinned,
1289 * they will be added into free space cache after the transaction is
1290 * committed, we shouldn't lose them.
Chris Mason1bbc6212015-04-06 12:46:08 -07001291 *
1292 * If this changes while we are working we'll get added back to
1293 * the dirty list and redo it. No locking needed
Miao Xie5349d6c2014-06-19 10:42:49 +08001294 */
David Sterba6701bdb2019-03-20 13:49:09 +01001295 ret = write_pinned_extent_entries(block_group, io_ctl, &entries);
Chris Masona3bdccc2015-04-24 11:00:00 -07001296 if (ret)
1297 goto out_nospc_locked;
Miao Xie5349d6c2014-06-19 10:42:49 +08001298
Filipe Manana55507ce2014-12-01 17:04:09 +00001299 /*
1300 * At last, we write out all the bitmaps and keep cache_writeout_mutex
1301 * locked while doing it because a concurrent trim can be manipulating
1302 * or freeing the bitmap.
1303 */
Chris Masonc9dc4c62015-04-04 17:14:42 -07001304 ret = write_bitmap_entries(io_ctl, &bitmap_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07001305 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00001306 mutex_unlock(&ctl->cache_writeout_mutex);
Miao Xie5349d6c2014-06-19 10:42:49 +08001307 if (ret)
1308 goto out_nospc;
1309
1310 /* Zero out the rest of the pages just to make sure */
Chris Masonc9dc4c62015-04-04 17:14:42 -07001311 io_ctl_zero_remaining_pages(io_ctl);
Miao Xie5349d6c2014-06-19 10:42:49 +08001312
1313 /* Everything is written out, now we dirty the pages in the file. */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001314 ret = btrfs_dirty_pages(inode, io_ctl->pages, io_ctl->num_pages, 0,
1315 i_size_read(inode), &cached_state);
Miao Xie5349d6c2014-06-19 10:42:49 +08001316 if (ret)
1317 goto out_nospc;
1318
Miao Xiee570fd22014-06-19 10:42:50 +08001319 if (block_group && (block_group->flags & BTRFS_BLOCK_GROUP_DATA))
1320 up_write(&block_group->data_rwsem);
Miao Xie5349d6c2014-06-19 10:42:49 +08001321 /*
1322 * Release the pages and unlock the extent, we will flush
1323 * them out later
1324 */
Chris Masonc9dc4c62015-04-04 17:14:42 -07001325 io_ctl_drop_pages(io_ctl);
Miao Xie5349d6c2014-06-19 10:42:49 +08001326
1327 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
David Sterbae43bbe52017-12-12 21:43:52 +01001328 i_size_read(inode) - 1, &cached_state);
Miao Xie5349d6c2014-06-19 10:42:49 +08001329
Chris Masonc9dc4c62015-04-04 17:14:42 -07001330 /*
1331 * at this point the pages are under IO and we're happy,
1332 * The caller is responsible for waiting on them and updating the
1333 * the cache and the inode
1334 */
1335 io_ctl->entries = entries;
1336 io_ctl->bitmaps = bitmaps;
1337
1338 ret = btrfs_fdatawrite_range(inode, 0, (u64)-1);
Miao Xie5349d6c2014-06-19 10:42:49 +08001339 if (ret)
Josef Bacik0ef8b722013-10-25 16:13:35 -04001340 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001341
Chris Masonc9dc4c62015-04-04 17:14:42 -07001342 return 0;
1343
Josef Bacik2f356122011-06-10 15:31:13 -04001344out:
Chris Masonc9dc4c62015-04-04 17:14:42 -07001345 io_ctl->inode = NULL;
1346 io_ctl_free(io_ctl);
Miao Xie5349d6c2014-06-19 10:42:49 +08001347 if (ret) {
Josef Bacika67509c2011-10-05 15:18:58 -04001348 invalidate_inode_pages2(inode->i_mapping);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001349 BTRFS_I(inode)->generation = 0;
1350 }
Josef Bacik0cb59c92010-07-02 12:14:14 -04001351 btrfs_update_inode(trans, root, inode);
Chris Masonc9dc4c62015-04-04 17:14:42 -07001352 if (must_iput)
1353 iput(inode);
Miao Xie5349d6c2014-06-19 10:42:49 +08001354 return ret;
Josef Bacika67509c2011-10-05 15:18:58 -04001355
Chris Masona3bdccc2015-04-24 11:00:00 -07001356out_nospc_locked:
1357 cleanup_bitmap_list(&bitmap_list);
1358 spin_unlock(&ctl->tree_lock);
1359 mutex_unlock(&ctl->cache_writeout_mutex);
1360
Josef Bacika67509c2011-10-05 15:18:58 -04001361out_nospc:
David Sterba7bf1a152017-02-10 20:23:00 +01001362 cleanup_write_cache_enospc(inode, io_ctl, &cached_state);
Miao Xiee570fd22014-06-19 10:42:50 +08001363
Josef Bacikb77000e2017-11-15 16:20:52 -05001364out_unlock:
Miao Xiee570fd22014-06-19 10:42:50 +08001365 if (block_group && (block_group->flags & BTRFS_BLOCK_GROUP_DATA))
1366 up_write(&block_group->data_rwsem);
1367
Josef Bacika67509c2011-10-05 15:18:58 -04001368 goto out;
Li Zefan0414efa2011-04-20 10:20:14 +08001369}
1370
David Sterbafe041532019-03-20 13:51:56 +01001371int btrfs_write_out_cache(struct btrfs_trans_handle *trans,
Li Zefan0414efa2011-04-20 10:20:14 +08001372 struct btrfs_block_group_cache *block_group,
1373 struct btrfs_path *path)
1374{
David Sterbafe041532019-03-20 13:51:56 +01001375 struct btrfs_fs_info *fs_info = trans->fs_info;
Li Zefan0414efa2011-04-20 10:20:14 +08001376 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
1377 struct inode *inode;
1378 int ret = 0;
1379
Li Zefan0414efa2011-04-20 10:20:14 +08001380 spin_lock(&block_group->lock);
1381 if (block_group->disk_cache_state < BTRFS_DC_SETUP) {
1382 spin_unlock(&block_group->lock);
1383 return 0;
1384 }
1385 spin_unlock(&block_group->lock);
1386
David Sterba7949f332019-03-20 13:40:19 +01001387 inode = lookup_free_space_inode(block_group, path);
Li Zefan0414efa2011-04-20 10:20:14 +08001388 if (IS_ERR(inode))
1389 return 0;
1390
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05001391 ret = __btrfs_write_out_cache(fs_info->tree_root, inode, ctl,
1392 block_group, &block_group->io_ctl, trans);
Josef Bacikc09544e2011-08-30 10:19:10 -04001393 if (ret) {
Josef Bacikc09544e2011-08-30 10:19:10 -04001394#ifdef DEBUG
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001395 btrfs_err(fs_info,
1396 "failed to write free space cache for block group %llu",
1397 block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001398#endif
Chris Masonc9dc4c62015-04-04 17:14:42 -07001399 spin_lock(&block_group->lock);
1400 block_group->disk_cache_state = BTRFS_DC_ERROR;
1401 spin_unlock(&block_group->lock);
1402
1403 block_group->io_ctl.inode = NULL;
1404 iput(inode);
Li Zefan0414efa2011-04-20 10:20:14 +08001405 }
1406
Chris Masonc9dc4c62015-04-04 17:14:42 -07001407 /*
1408 * if ret == 0 the caller is expected to call btrfs_wait_cache_io
1409 * to wait for IO and put the inode
1410 */
1411
Josef Bacik0cb59c92010-07-02 12:14:14 -04001412 return ret;
1413}
1414
Li Zefan34d52cb2011-03-29 13:46:06 +08001415static inline unsigned long offset_to_bit(u64 bitmap_start, u32 unit,
Josef Bacik96303082009-07-13 21:29:25 -04001416 u64 offset)
1417{
Josef Bacikb12d6862013-08-26 17:14:08 -04001418 ASSERT(offset >= bitmap_start);
Josef Bacik96303082009-07-13 21:29:25 -04001419 offset -= bitmap_start;
Li Zefan34d52cb2011-03-29 13:46:06 +08001420 return (unsigned long)(div_u64(offset, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001421}
1422
Li Zefan34d52cb2011-03-29 13:46:06 +08001423static inline unsigned long bytes_to_bits(u64 bytes, u32 unit)
Josef Bacik96303082009-07-13 21:29:25 -04001424{
Li Zefan34d52cb2011-03-29 13:46:06 +08001425 return (unsigned long)(div_u64(bytes, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001426}
1427
Li Zefan34d52cb2011-03-29 13:46:06 +08001428static inline u64 offset_to_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001429 u64 offset)
1430{
1431 u64 bitmap_start;
Feifei Xu0ef64472016-06-01 19:18:24 +08001432 u64 bytes_per_bitmap;
Josef Bacik96303082009-07-13 21:29:25 -04001433
Li Zefan34d52cb2011-03-29 13:46:06 +08001434 bytes_per_bitmap = BITS_PER_BITMAP * ctl->unit;
1435 bitmap_start = offset - ctl->start;
Feifei Xu0ef64472016-06-01 19:18:24 +08001436 bitmap_start = div64_u64(bitmap_start, bytes_per_bitmap);
Josef Bacik96303082009-07-13 21:29:25 -04001437 bitmap_start *= bytes_per_bitmap;
Li Zefan34d52cb2011-03-29 13:46:06 +08001438 bitmap_start += ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001439
1440 return bitmap_start;
1441}
Josef Bacik0f9dd462008-09-23 13:14:11 -04001442
1443static int tree_insert_offset(struct rb_root *root, u64 offset,
Josef Bacik96303082009-07-13 21:29:25 -04001444 struct rb_node *node, int bitmap)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001445{
1446 struct rb_node **p = &root->rb_node;
1447 struct rb_node *parent = NULL;
1448 struct btrfs_free_space *info;
1449
1450 while (*p) {
1451 parent = *p;
1452 info = rb_entry(parent, struct btrfs_free_space, offset_index);
1453
Josef Bacik96303082009-07-13 21:29:25 -04001454 if (offset < info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001455 p = &(*p)->rb_left;
Josef Bacik96303082009-07-13 21:29:25 -04001456 } else if (offset > info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001457 p = &(*p)->rb_right;
Josef Bacik96303082009-07-13 21:29:25 -04001458 } else {
1459 /*
1460 * we could have a bitmap entry and an extent entry
1461 * share the same offset. If this is the case, we want
1462 * the extent entry to always be found first if we do a
1463 * linear search through the tree, since we want to have
1464 * the quickest allocation time, and allocating from an
1465 * extent is faster than allocating from a bitmap. So
1466 * if we're inserting a bitmap and we find an entry at
1467 * this offset, we want to go right, or after this entry
1468 * logically. If we are inserting an extent and we've
1469 * found a bitmap, we want to go left, or before
1470 * logically.
1471 */
1472 if (bitmap) {
Josef Bacik207dde82011-05-13 14:49:23 -04001473 if (info->bitmap) {
1474 WARN_ON_ONCE(1);
1475 return -EEXIST;
1476 }
Josef Bacik96303082009-07-13 21:29:25 -04001477 p = &(*p)->rb_right;
1478 } else {
Josef Bacik207dde82011-05-13 14:49:23 -04001479 if (!info->bitmap) {
1480 WARN_ON_ONCE(1);
1481 return -EEXIST;
1482 }
Josef Bacik96303082009-07-13 21:29:25 -04001483 p = &(*p)->rb_left;
1484 }
1485 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001486 }
1487
1488 rb_link_node(node, parent, p);
1489 rb_insert_color(node, root);
1490
1491 return 0;
1492}
1493
1494/*
Josef Bacik70cb0742009-04-03 10:14:19 -04001495 * searches the tree for the given offset.
1496 *
Josef Bacik96303082009-07-13 21:29:25 -04001497 * fuzzy - If this is set, then we are trying to make an allocation, and we just
1498 * want a section that has at least bytes size and comes at or after the given
1499 * offset.
Josef Bacik0f9dd462008-09-23 13:14:11 -04001500 */
Josef Bacik96303082009-07-13 21:29:25 -04001501static struct btrfs_free_space *
Li Zefan34d52cb2011-03-29 13:46:06 +08001502tree_search_offset(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001503 u64 offset, int bitmap_only, int fuzzy)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001504{
Li Zefan34d52cb2011-03-29 13:46:06 +08001505 struct rb_node *n = ctl->free_space_offset.rb_node;
Josef Bacik96303082009-07-13 21:29:25 -04001506 struct btrfs_free_space *entry, *prev = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001507
Josef Bacik96303082009-07-13 21:29:25 -04001508 /* find entry that is closest to the 'offset' */
1509 while (1) {
1510 if (!n) {
1511 entry = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001512 break;
1513 }
Josef Bacik96303082009-07-13 21:29:25 -04001514
1515 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1516 prev = entry;
1517
1518 if (offset < entry->offset)
1519 n = n->rb_left;
1520 else if (offset > entry->offset)
1521 n = n->rb_right;
1522 else
1523 break;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001524 }
1525
Josef Bacik96303082009-07-13 21:29:25 -04001526 if (bitmap_only) {
1527 if (!entry)
1528 return NULL;
1529 if (entry->bitmap)
1530 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001531
Josef Bacik96303082009-07-13 21:29:25 -04001532 /*
1533 * bitmap entry and extent entry may share same offset,
1534 * in that case, bitmap entry comes after extent entry.
1535 */
1536 n = rb_next(n);
1537 if (!n)
1538 return NULL;
1539 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1540 if (entry->offset != offset)
1541 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001542
Josef Bacik96303082009-07-13 21:29:25 -04001543 WARN_ON(!entry->bitmap);
1544 return entry;
1545 } else if (entry) {
1546 if (entry->bitmap) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001547 /*
Josef Bacik96303082009-07-13 21:29:25 -04001548 * if previous extent entry covers the offset,
1549 * we should return it instead of the bitmap entry
Josef Bacik0f9dd462008-09-23 13:14:11 -04001550 */
Miao Xiede6c4112012-10-18 08:18:01 +00001551 n = rb_prev(&entry->offset_index);
1552 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001553 prev = rb_entry(n, struct btrfs_free_space,
1554 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001555 if (!prev->bitmap &&
1556 prev->offset + prev->bytes > offset)
1557 entry = prev;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001558 }
Josef Bacik96303082009-07-13 21:29:25 -04001559 }
1560 return entry;
1561 }
1562
1563 if (!prev)
1564 return NULL;
1565
1566 /* find last entry before the 'offset' */
1567 entry = prev;
1568 if (entry->offset > offset) {
1569 n = rb_prev(&entry->offset_index);
1570 if (n) {
1571 entry = rb_entry(n, struct btrfs_free_space,
1572 offset_index);
Josef Bacikb12d6862013-08-26 17:14:08 -04001573 ASSERT(entry->offset <= offset);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001574 } else {
Josef Bacik96303082009-07-13 21:29:25 -04001575 if (fuzzy)
1576 return entry;
1577 else
1578 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001579 }
1580 }
1581
Josef Bacik96303082009-07-13 21:29:25 -04001582 if (entry->bitmap) {
Miao Xiede6c4112012-10-18 08:18:01 +00001583 n = rb_prev(&entry->offset_index);
1584 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001585 prev = rb_entry(n, struct btrfs_free_space,
1586 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001587 if (!prev->bitmap &&
1588 prev->offset + prev->bytes > offset)
1589 return prev;
Josef Bacik96303082009-07-13 21:29:25 -04001590 }
Li Zefan34d52cb2011-03-29 13:46:06 +08001591 if (entry->offset + BITS_PER_BITMAP * ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001592 return entry;
1593 } else if (entry->offset + entry->bytes > offset)
1594 return entry;
1595
1596 if (!fuzzy)
1597 return NULL;
1598
1599 while (1) {
1600 if (entry->bitmap) {
1601 if (entry->offset + BITS_PER_BITMAP *
Li Zefan34d52cb2011-03-29 13:46:06 +08001602 ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001603 break;
1604 } else {
1605 if (entry->offset + entry->bytes > offset)
1606 break;
1607 }
1608
1609 n = rb_next(&entry->offset_index);
1610 if (!n)
1611 return NULL;
1612 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1613 }
1614 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001615}
1616
Li Zefanf333adb2010-11-09 14:57:39 +08001617static inline void
Li Zefan34d52cb2011-03-29 13:46:06 +08001618__unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001619 struct btrfs_free_space *info)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001620{
Li Zefan34d52cb2011-03-29 13:46:06 +08001621 rb_erase(&info->offset_index, &ctl->free_space_offset);
1622 ctl->free_extents--;
Li Zefanf333adb2010-11-09 14:57:39 +08001623}
1624
Li Zefan34d52cb2011-03-29 13:46:06 +08001625static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001626 struct btrfs_free_space *info)
1627{
Li Zefan34d52cb2011-03-29 13:46:06 +08001628 __unlink_free_space(ctl, info);
1629 ctl->free_space -= info->bytes;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001630}
1631
Li Zefan34d52cb2011-03-29 13:46:06 +08001632static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0f9dd462008-09-23 13:14:11 -04001633 struct btrfs_free_space *info)
1634{
1635 int ret = 0;
1636
Josef Bacikb12d6862013-08-26 17:14:08 -04001637 ASSERT(info->bytes || info->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08001638 ret = tree_insert_offset(&ctl->free_space_offset, info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001639 &info->offset_index, (info->bitmap != NULL));
Josef Bacik0f9dd462008-09-23 13:14:11 -04001640 if (ret)
1641 return ret;
1642
Li Zefan34d52cb2011-03-29 13:46:06 +08001643 ctl->free_space += info->bytes;
1644 ctl->free_extents++;
Josef Bacik96303082009-07-13 21:29:25 -04001645 return ret;
1646}
1647
Li Zefan34d52cb2011-03-29 13:46:06 +08001648static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl)
Josef Bacik96303082009-07-13 21:29:25 -04001649{
Li Zefan34d52cb2011-03-29 13:46:06 +08001650 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik25891f72009-09-11 16:11:20 -04001651 u64 max_bytes;
1652 u64 bitmap_bytes;
1653 u64 extent_bytes;
Li Zefan8eb2d822010-11-09 14:48:01 +08001654 u64 size = block_group->key.offset;
Feifei Xu0ef64472016-06-01 19:18:24 +08001655 u64 bytes_per_bg = BITS_PER_BITMAP * ctl->unit;
1656 u64 max_bitmaps = div64_u64(size + bytes_per_bg - 1, bytes_per_bg);
Li Zefan34d52cb2011-03-29 13:46:06 +08001657
Feifei Xu0ef64472016-06-01 19:18:24 +08001658 max_bitmaps = max_t(u64, max_bitmaps, 1);
Josef Bacikdde57402013-02-12 14:07:51 -05001659
Josef Bacikb12d6862013-08-26 17:14:08 -04001660 ASSERT(ctl->total_bitmaps <= max_bitmaps);
Josef Bacik96303082009-07-13 21:29:25 -04001661
1662 /*
1663 * The goal is to keep the total amount of memory used per 1gb of space
1664 * at or below 32k, so we need to adjust how much memory we allow to be
1665 * used by extent based free space tracking
1666 */
Byongho Leeee221842015-12-15 01:42:10 +09001667 if (size < SZ_1G)
Li Zefan8eb2d822010-11-09 14:48:01 +08001668 max_bytes = MAX_CACHE_BYTES_PER_GIG;
1669 else
Byongho Leeee221842015-12-15 01:42:10 +09001670 max_bytes = MAX_CACHE_BYTES_PER_GIG * div_u64(size, SZ_1G);
Josef Bacik96303082009-07-13 21:29:25 -04001671
Josef Bacik25891f72009-09-11 16:11:20 -04001672 /*
1673 * we want to account for 1 more bitmap than what we have so we can make
1674 * sure we don't go over our overall goal of MAX_CACHE_BYTES_PER_GIG as
1675 * we add more bitmaps.
1676 */
Feifei Xub9ef22d2016-06-01 19:18:25 +08001677 bitmap_bytes = (ctl->total_bitmaps + 1) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001678
Josef Bacik25891f72009-09-11 16:11:20 -04001679 if (bitmap_bytes >= max_bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001680 ctl->extents_thresh = 0;
Josef Bacik25891f72009-09-11 16:11:20 -04001681 return;
Josef Bacik96303082009-07-13 21:29:25 -04001682 }
Josef Bacik25891f72009-09-11 16:11:20 -04001683
1684 /*
David Sterbaf8c269d2015-01-16 17:21:12 +01001685 * we want the extent entry threshold to always be at most 1/2 the max
Josef Bacik25891f72009-09-11 16:11:20 -04001686 * bytes we can have, or whatever is less than that.
1687 */
1688 extent_bytes = max_bytes - bitmap_bytes;
David Sterbaf8c269d2015-01-16 17:21:12 +01001689 extent_bytes = min_t(u64, extent_bytes, max_bytes >> 1);
Josef Bacik25891f72009-09-11 16:11:20 -04001690
Li Zefan34d52cb2011-03-29 13:46:06 +08001691 ctl->extents_thresh =
David Sterbaf8c269d2015-01-16 17:21:12 +01001692 div_u64(extent_bytes, sizeof(struct btrfs_free_space));
Josef Bacik96303082009-07-13 21:29:25 -04001693}
1694
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001695static inline void __bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1696 struct btrfs_free_space *info,
1697 u64 offset, u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001698{
Li Zefanf38b6e72011-03-14 13:40:51 +08001699 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001700
Li Zefan34d52cb2011-03-29 13:46:06 +08001701 start = offset_to_bit(info->offset, ctl->unit, offset);
1702 count = bytes_to_bits(bytes, ctl->unit);
Josef Bacikb12d6862013-08-26 17:14:08 -04001703 ASSERT(start + count <= BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001704
Li Zefanf38b6e72011-03-14 13:40:51 +08001705 bitmap_clear(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001706
1707 info->bytes -= bytes;
Josef Bacik553cceb2018-09-28 07:18:00 -04001708 if (info->max_extent_size > ctl->unit)
1709 info->max_extent_size = 0;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001710}
1711
1712static void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1713 struct btrfs_free_space *info, u64 offset,
1714 u64 bytes)
1715{
1716 __bitmap_clear_bits(ctl, info, offset, bytes);
Li Zefan34d52cb2011-03-29 13:46:06 +08001717 ctl->free_space -= bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001718}
1719
Li Zefan34d52cb2011-03-29 13:46:06 +08001720static void bitmap_set_bits(struct btrfs_free_space_ctl *ctl,
Josef Bacik817d52f2009-07-13 21:29:25 -04001721 struct btrfs_free_space *info, u64 offset,
1722 u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001723{
Li Zefanf38b6e72011-03-14 13:40:51 +08001724 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001725
Li Zefan34d52cb2011-03-29 13:46:06 +08001726 start = offset_to_bit(info->offset, ctl->unit, offset);
1727 count = bytes_to_bits(bytes, ctl->unit);
Josef Bacikb12d6862013-08-26 17:14:08 -04001728 ASSERT(start + count <= BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001729
Li Zefanf38b6e72011-03-14 13:40:51 +08001730 bitmap_set(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001731
1732 info->bytes += bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001733 ctl->free_space += bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001734}
1735
Miao Xiea4820392013-09-09 13:19:42 +08001736/*
1737 * If we can not find suitable extent, we will use bytes to record
1738 * the size of the max extent.
1739 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001740static int search_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001741 struct btrfs_free_space *bitmap_info, u64 *offset,
Josef Bacik0584f712015-10-02 16:12:23 -04001742 u64 *bytes, bool for_alloc)
Josef Bacik96303082009-07-13 21:29:25 -04001743{
1744 unsigned long found_bits = 0;
Miao Xiea4820392013-09-09 13:19:42 +08001745 unsigned long max_bits = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001746 unsigned long bits, i;
1747 unsigned long next_zero;
Miao Xiea4820392013-09-09 13:19:42 +08001748 unsigned long extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001749
Josef Bacikcef40482015-10-02 16:09:42 -04001750 /*
1751 * Skip searching the bitmap if we don't have a contiguous section that
1752 * is large enough for this allocation.
1753 */
Josef Bacik0584f712015-10-02 16:12:23 -04001754 if (for_alloc &&
1755 bitmap_info->max_extent_size &&
Josef Bacikcef40482015-10-02 16:09:42 -04001756 bitmap_info->max_extent_size < *bytes) {
1757 *bytes = bitmap_info->max_extent_size;
1758 return -1;
1759 }
1760
Li Zefan34d52cb2011-03-29 13:46:06 +08001761 i = offset_to_bit(bitmap_info->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04001762 max_t(u64, *offset, bitmap_info->offset));
Li Zefan34d52cb2011-03-29 13:46:06 +08001763 bits = bytes_to_bits(*bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04001764
Wei Yongjunebb3dad2012-09-13 20:29:02 -06001765 for_each_set_bit_from(i, bitmap_info->bitmap, BITS_PER_BITMAP) {
Josef Bacik0584f712015-10-02 16:12:23 -04001766 if (for_alloc && bits == 1) {
1767 found_bits = 1;
1768 break;
1769 }
Josef Bacik96303082009-07-13 21:29:25 -04001770 next_zero = find_next_zero_bit(bitmap_info->bitmap,
1771 BITS_PER_BITMAP, i);
Miao Xiea4820392013-09-09 13:19:42 +08001772 extent_bits = next_zero - i;
1773 if (extent_bits >= bits) {
1774 found_bits = extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001775 break;
Miao Xiea4820392013-09-09 13:19:42 +08001776 } else if (extent_bits > max_bits) {
1777 max_bits = extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001778 }
1779 i = next_zero;
1780 }
1781
1782 if (found_bits) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001783 *offset = (u64)(i * ctl->unit) + bitmap_info->offset;
1784 *bytes = (u64)(found_bits) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001785 return 0;
1786 }
1787
Miao Xiea4820392013-09-09 13:19:42 +08001788 *bytes = (u64)(max_bits) * ctl->unit;
Josef Bacikcef40482015-10-02 16:09:42 -04001789 bitmap_info->max_extent_size = *bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001790 return -1;
1791}
1792
Josef Bacikad22cf62018-10-12 15:32:33 -04001793static inline u64 get_max_extent_size(struct btrfs_free_space *entry)
1794{
1795 if (entry->bitmap)
1796 return entry->max_extent_size;
1797 return entry->bytes;
1798}
1799
Miao Xiea4820392013-09-09 13:19:42 +08001800/* Cache the size of the max extent in bytes */
Li Zefan34d52cb2011-03-29 13:46:06 +08001801static struct btrfs_free_space *
David Woodhouse53b381b2013-01-29 18:40:14 -05001802find_free_space(struct btrfs_free_space_ctl *ctl, u64 *offset, u64 *bytes,
Miao Xiea4820392013-09-09 13:19:42 +08001803 unsigned long align, u64 *max_extent_size)
Josef Bacik96303082009-07-13 21:29:25 -04001804{
1805 struct btrfs_free_space *entry;
1806 struct rb_node *node;
David Woodhouse53b381b2013-01-29 18:40:14 -05001807 u64 tmp;
1808 u64 align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001809 int ret;
1810
Li Zefan34d52cb2011-03-29 13:46:06 +08001811 if (!ctl->free_space_offset.rb_node)
Miao Xiea4820392013-09-09 13:19:42 +08001812 goto out;
Josef Bacik96303082009-07-13 21:29:25 -04001813
Li Zefan34d52cb2011-03-29 13:46:06 +08001814 entry = tree_search_offset(ctl, offset_to_bitmap(ctl, *offset), 0, 1);
Josef Bacik96303082009-07-13 21:29:25 -04001815 if (!entry)
Miao Xiea4820392013-09-09 13:19:42 +08001816 goto out;
Josef Bacik96303082009-07-13 21:29:25 -04001817
1818 for (node = &entry->offset_index; node; node = rb_next(node)) {
1819 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Miao Xiea4820392013-09-09 13:19:42 +08001820 if (entry->bytes < *bytes) {
Josef Bacikad22cf62018-10-12 15:32:33 -04001821 *max_extent_size = max(get_max_extent_size(entry),
1822 *max_extent_size);
Josef Bacik96303082009-07-13 21:29:25 -04001823 continue;
Miao Xiea4820392013-09-09 13:19:42 +08001824 }
Josef Bacik96303082009-07-13 21:29:25 -04001825
David Woodhouse53b381b2013-01-29 18:40:14 -05001826 /* make sure the space returned is big enough
1827 * to match our requested alignment
1828 */
1829 if (*bytes >= align) {
Miao Xiea4820392013-09-09 13:19:42 +08001830 tmp = entry->offset - ctl->start + align - 1;
David Sterba47c57132015-02-20 18:43:47 +01001831 tmp = div64_u64(tmp, align);
David Woodhouse53b381b2013-01-29 18:40:14 -05001832 tmp = tmp * align + ctl->start;
1833 align_off = tmp - entry->offset;
1834 } else {
1835 align_off = 0;
1836 tmp = entry->offset;
1837 }
1838
Miao Xiea4820392013-09-09 13:19:42 +08001839 if (entry->bytes < *bytes + align_off) {
Josef Bacikad22cf62018-10-12 15:32:33 -04001840 *max_extent_size = max(get_max_extent_size(entry),
1841 *max_extent_size);
David Woodhouse53b381b2013-01-29 18:40:14 -05001842 continue;
Miao Xiea4820392013-09-09 13:19:42 +08001843 }
David Woodhouse53b381b2013-01-29 18:40:14 -05001844
Josef Bacik96303082009-07-13 21:29:25 -04001845 if (entry->bitmap) {
Miao Xiea4820392013-09-09 13:19:42 +08001846 u64 size = *bytes;
1847
Josef Bacik0584f712015-10-02 16:12:23 -04001848 ret = search_bitmap(ctl, entry, &tmp, &size, true);
David Woodhouse53b381b2013-01-29 18:40:14 -05001849 if (!ret) {
1850 *offset = tmp;
Miao Xiea4820392013-09-09 13:19:42 +08001851 *bytes = size;
Josef Bacik96303082009-07-13 21:29:25 -04001852 return entry;
Josef Bacikad22cf62018-10-12 15:32:33 -04001853 } else {
1854 *max_extent_size =
1855 max(get_max_extent_size(entry),
1856 *max_extent_size);
David Woodhouse53b381b2013-01-29 18:40:14 -05001857 }
Josef Bacik96303082009-07-13 21:29:25 -04001858 continue;
1859 }
1860
David Woodhouse53b381b2013-01-29 18:40:14 -05001861 *offset = tmp;
1862 *bytes = entry->bytes - align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001863 return entry;
1864 }
Miao Xiea4820392013-09-09 13:19:42 +08001865out:
Josef Bacik96303082009-07-13 21:29:25 -04001866 return NULL;
1867}
1868
Li Zefan34d52cb2011-03-29 13:46:06 +08001869static void add_new_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001870 struct btrfs_free_space *info, u64 offset)
1871{
Li Zefan34d52cb2011-03-29 13:46:06 +08001872 info->offset = offset_to_bitmap(ctl, offset);
Josef Bacikf019f422009-09-11 16:11:20 -04001873 info->bytes = 0;
Alexandre Olivaf2d0f672011-11-28 12:04:43 -02001874 INIT_LIST_HEAD(&info->list);
Li Zefan34d52cb2011-03-29 13:46:06 +08001875 link_free_space(ctl, info);
1876 ctl->total_bitmaps++;
Josef Bacik96303082009-07-13 21:29:25 -04001877
Li Zefan34d52cb2011-03-29 13:46:06 +08001878 ctl->op->recalc_thresholds(ctl);
Josef Bacik96303082009-07-13 21:29:25 -04001879}
1880
Li Zefan34d52cb2011-03-29 13:46:06 +08001881static void free_bitmap(struct btrfs_free_space_ctl *ctl,
Li Zefanedf6e2d2010-11-09 14:50:07 +08001882 struct btrfs_free_space *bitmap_info)
1883{
Li Zefan34d52cb2011-03-29 13:46:06 +08001884 unlink_free_space(ctl, bitmap_info);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001885 kfree(bitmap_info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001886 kmem_cache_free(btrfs_free_space_cachep, bitmap_info);
Li Zefan34d52cb2011-03-29 13:46:06 +08001887 ctl->total_bitmaps--;
1888 ctl->op->recalc_thresholds(ctl);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001889}
1890
Li Zefan34d52cb2011-03-29 13:46:06 +08001891static noinline int remove_from_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001892 struct btrfs_free_space *bitmap_info,
1893 u64 *offset, u64 *bytes)
1894{
1895 u64 end;
Josef Bacik6606bb92009-07-31 11:03:58 -04001896 u64 search_start, search_bytes;
1897 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001898
1899again:
Li Zefan34d52cb2011-03-29 13:46:06 +08001900 end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit) - 1;
Josef Bacik96303082009-07-13 21:29:25 -04001901
Josef Bacik6606bb92009-07-31 11:03:58 -04001902 /*
Josef Bacikbdb7d302012-06-27 15:10:56 -04001903 * We need to search for bits in this bitmap. We could only cover some
1904 * of the extent in this bitmap thanks to how we add space, so we need
1905 * to search for as much as it as we can and clear that amount, and then
1906 * go searching for the next bit.
Josef Bacik6606bb92009-07-31 11:03:58 -04001907 */
1908 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001909 search_bytes = ctl->unit;
Josef Bacik13dbc082011-02-03 02:39:52 +00001910 search_bytes = min(search_bytes, end - search_start + 1);
Josef Bacik0584f712015-10-02 16:12:23 -04001911 ret = search_bitmap(ctl, bitmap_info, &search_start, &search_bytes,
1912 false);
Josef Bacikb50c6e22013-04-25 15:55:30 -04001913 if (ret < 0 || search_start != *offset)
1914 return -EINVAL;
Josef Bacik6606bb92009-07-31 11:03:58 -04001915
Josef Bacikbdb7d302012-06-27 15:10:56 -04001916 /* We may have found more bits than what we need */
1917 search_bytes = min(search_bytes, *bytes);
1918
1919 /* Cannot clear past the end of the bitmap */
1920 search_bytes = min(search_bytes, end - search_start + 1);
1921
1922 bitmap_clear_bits(ctl, bitmap_info, search_start, search_bytes);
1923 *offset += search_bytes;
1924 *bytes -= search_bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001925
1926 if (*bytes) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001927 struct rb_node *next = rb_next(&bitmap_info->offset_index);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001928 if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001929 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001930
Josef Bacik6606bb92009-07-31 11:03:58 -04001931 /*
1932 * no entry after this bitmap, but we still have bytes to
1933 * remove, so something has gone wrong.
1934 */
1935 if (!next)
Josef Bacik96303082009-07-13 21:29:25 -04001936 return -EINVAL;
1937
Josef Bacik6606bb92009-07-31 11:03:58 -04001938 bitmap_info = rb_entry(next, struct btrfs_free_space,
1939 offset_index);
1940
1941 /*
1942 * if the next entry isn't a bitmap we need to return to let the
1943 * extent stuff do its work.
1944 */
Josef Bacik96303082009-07-13 21:29:25 -04001945 if (!bitmap_info->bitmap)
1946 return -EAGAIN;
1947
Josef Bacik6606bb92009-07-31 11:03:58 -04001948 /*
1949 * Ok the next item is a bitmap, but it may not actually hold
1950 * the information for the rest of this free space stuff, so
1951 * look for it, and if we don't find it return so we can try
1952 * everything over again.
1953 */
1954 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001955 search_bytes = ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001956 ret = search_bitmap(ctl, bitmap_info, &search_start,
Josef Bacik0584f712015-10-02 16:12:23 -04001957 &search_bytes, false);
Josef Bacik6606bb92009-07-31 11:03:58 -04001958 if (ret < 0 || search_start != *offset)
1959 return -EAGAIN;
1960
Josef Bacik96303082009-07-13 21:29:25 -04001961 goto again;
Li Zefanedf6e2d2010-11-09 14:50:07 +08001962 } else if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001963 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001964
1965 return 0;
1966}
1967
Josef Bacik2cdc3422011-05-27 14:07:49 -04001968static u64 add_bytes_to_bitmap(struct btrfs_free_space_ctl *ctl,
1969 struct btrfs_free_space *info, u64 offset,
1970 u64 bytes)
1971{
1972 u64 bytes_to_set = 0;
1973 u64 end;
1974
1975 end = info->offset + (u64)(BITS_PER_BITMAP * ctl->unit);
1976
1977 bytes_to_set = min(end - offset, bytes);
1978
1979 bitmap_set_bits(ctl, info, offset, bytes_to_set);
1980
Josef Bacikcef40482015-10-02 16:09:42 -04001981 /*
1982 * We set some bytes, we have no idea what the max extent size is
1983 * anymore.
1984 */
1985 info->max_extent_size = 0;
1986
Josef Bacik2cdc3422011-05-27 14:07:49 -04001987 return bytes_to_set;
1988
1989}
1990
Li Zefan34d52cb2011-03-29 13:46:06 +08001991static bool use_bitmap(struct btrfs_free_space_ctl *ctl,
1992 struct btrfs_free_space *info)
Josef Bacik96303082009-07-13 21:29:25 -04001993{
Li Zefan34d52cb2011-03-29 13:46:06 +08001994 struct btrfs_block_group_cache *block_group = ctl->private;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001995 struct btrfs_fs_info *fs_info = block_group->fs_info;
Josef Bacikd0bd4562015-09-23 14:54:14 -04001996 bool forced = false;
1997
1998#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001999 if (btrfs_should_fragment_free_space(block_group))
Josef Bacikd0bd4562015-09-23 14:54:14 -04002000 forced = true;
2001#endif
Josef Bacik96303082009-07-13 21:29:25 -04002002
2003 /*
2004 * If we are below the extents threshold then we can add this as an
2005 * extent, and don't have to deal with the bitmap
2006 */
Josef Bacikd0bd4562015-09-23 14:54:14 -04002007 if (!forced && ctl->free_extents < ctl->extents_thresh) {
Josef Bacik32cb0842011-03-18 16:16:21 -04002008 /*
2009 * If this block group has some small extents we don't want to
2010 * use up all of our free slots in the cache with them, we want
Nicholas D Steeves01327612016-05-19 21:18:45 -04002011 * to reserve them to larger extents, however if we have plenty
Josef Bacik32cb0842011-03-18 16:16:21 -04002012 * of cache left then go ahead an dadd them, no sense in adding
2013 * the overhead of a bitmap if we don't have to.
2014 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002015 if (info->bytes <= fs_info->sectorsize * 4) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002016 if (ctl->free_extents * 2 <= ctl->extents_thresh)
2017 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04002018 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08002019 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04002020 }
2021 }
Josef Bacik96303082009-07-13 21:29:25 -04002022
2023 /*
Josef Bacikdde57402013-02-12 14:07:51 -05002024 * The original block groups from mkfs can be really small, like 8
2025 * megabytes, so don't bother with a bitmap for those entries. However
2026 * some block groups can be smaller than what a bitmap would cover but
2027 * are still large enough that they could overflow the 32k memory limit,
2028 * so allow those block groups to still be allowed to have a bitmap
2029 * entry.
Josef Bacik96303082009-07-13 21:29:25 -04002030 */
Josef Bacikdde57402013-02-12 14:07:51 -05002031 if (((BITS_PER_BITMAP * ctl->unit) >> 1) > block_group->key.offset)
Li Zefan34d52cb2011-03-29 13:46:06 +08002032 return false;
2033
2034 return true;
2035}
2036
David Sterba20e55062015-11-19 11:42:28 +01002037static const struct btrfs_free_space_op free_space_op = {
Josef Bacik2cdc3422011-05-27 14:07:49 -04002038 .recalc_thresholds = recalculate_thresholds,
2039 .use_bitmap = use_bitmap,
2040};
2041
Li Zefan34d52cb2011-03-29 13:46:06 +08002042static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl,
2043 struct btrfs_free_space *info)
2044{
2045 struct btrfs_free_space *bitmap_info;
Josef Bacik2cdc3422011-05-27 14:07:49 -04002046 struct btrfs_block_group_cache *block_group = NULL;
Li Zefan34d52cb2011-03-29 13:46:06 +08002047 int added = 0;
Josef Bacik2cdc3422011-05-27 14:07:49 -04002048 u64 bytes, offset, bytes_added;
Li Zefan34d52cb2011-03-29 13:46:06 +08002049 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002050
2051 bytes = info->bytes;
2052 offset = info->offset;
2053
Li Zefan34d52cb2011-03-29 13:46:06 +08002054 if (!ctl->op->use_bitmap(ctl, info))
2055 return 0;
2056
Josef Bacik2cdc3422011-05-27 14:07:49 -04002057 if (ctl->op == &free_space_op)
2058 block_group = ctl->private;
Chris Mason38e87882011-06-10 16:36:57 -04002059again:
Josef Bacik2cdc3422011-05-27 14:07:49 -04002060 /*
2061 * Since we link bitmaps right into the cluster we need to see if we
2062 * have a cluster here, and if so and it has our bitmap we need to add
2063 * the free space to that bitmap.
2064 */
2065 if (block_group && !list_empty(&block_group->cluster_list)) {
2066 struct btrfs_free_cluster *cluster;
2067 struct rb_node *node;
2068 struct btrfs_free_space *entry;
2069
2070 cluster = list_entry(block_group->cluster_list.next,
2071 struct btrfs_free_cluster,
2072 block_group_list);
2073 spin_lock(&cluster->lock);
2074 node = rb_first(&cluster->root);
2075 if (!node) {
2076 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04002077 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04002078 }
2079
2080 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2081 if (!entry->bitmap) {
2082 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04002083 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04002084 }
2085
2086 if (entry->offset == offset_to_bitmap(ctl, offset)) {
2087 bytes_added = add_bytes_to_bitmap(ctl, entry,
2088 offset, bytes);
2089 bytes -= bytes_added;
2090 offset += bytes_added;
2091 }
2092 spin_unlock(&cluster->lock);
2093 if (!bytes) {
2094 ret = 1;
2095 goto out;
2096 }
2097 }
Chris Mason38e87882011-06-10 16:36:57 -04002098
2099no_cluster_bitmap:
Li Zefan34d52cb2011-03-29 13:46:06 +08002100 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik96303082009-07-13 21:29:25 -04002101 1, 0);
2102 if (!bitmap_info) {
Josef Bacikb12d6862013-08-26 17:14:08 -04002103 ASSERT(added == 0);
Josef Bacik96303082009-07-13 21:29:25 -04002104 goto new_bitmap;
2105 }
2106
Josef Bacik2cdc3422011-05-27 14:07:49 -04002107 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
2108 bytes -= bytes_added;
2109 offset += bytes_added;
2110 added = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002111
2112 if (!bytes) {
2113 ret = 1;
2114 goto out;
2115 } else
2116 goto again;
2117
2118new_bitmap:
2119 if (info && info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002120 add_new_bitmap(ctl, info, offset);
Josef Bacik96303082009-07-13 21:29:25 -04002121 added = 1;
2122 info = NULL;
2123 goto again;
2124 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08002125 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002126
2127 /* no pre-allocated info, allocate a new one */
2128 if (!info) {
Josef Bacikdc89e982011-01-28 17:05:48 -05002129 info = kmem_cache_zalloc(btrfs_free_space_cachep,
2130 GFP_NOFS);
Josef Bacik96303082009-07-13 21:29:25 -04002131 if (!info) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002132 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002133 ret = -ENOMEM;
2134 goto out;
2135 }
2136 }
2137
2138 /* allocate the bitmap */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002139 info->bitmap = kzalloc(PAGE_SIZE, GFP_NOFS);
Li Zefan34d52cb2011-03-29 13:46:06 +08002140 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002141 if (!info->bitmap) {
2142 ret = -ENOMEM;
2143 goto out;
2144 }
2145 goto again;
2146 }
2147
2148out:
2149 if (info) {
zhong jiangf8b00e02018-08-13 14:06:08 +08002150 kfree(info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05002151 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04002152 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002153
2154 return ret;
2155}
2156
Chris Mason945d8962011-05-22 12:33:42 -04002157static bool try_merge_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08002158 struct btrfs_free_space *info, bool update_stat)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002159{
Li Zefan120d66e2010-11-09 14:56:50 +08002160 struct btrfs_free_space *left_info;
2161 struct btrfs_free_space *right_info;
2162 bool merged = false;
2163 u64 offset = info->offset;
2164 u64 bytes = info->bytes;
Josef Bacik6226cb02009-04-03 10:14:18 -04002165
Josef Bacik0f9dd462008-09-23 13:14:11 -04002166 /*
2167 * first we want to see if there is free space adjacent to the range we
2168 * are adding, if there is remove that struct and add a new one to
2169 * cover the entire range
2170 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002171 right_info = tree_search_offset(ctl, offset + bytes, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04002172 if (right_info && rb_prev(&right_info->offset_index))
2173 left_info = rb_entry(rb_prev(&right_info->offset_index),
2174 struct btrfs_free_space, offset_index);
2175 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002176 left_info = tree_search_offset(ctl, offset - 1, 0, 0);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002177
Josef Bacik96303082009-07-13 21:29:25 -04002178 if (right_info && !right_info->bitmap) {
Li Zefanf333adb2010-11-09 14:57:39 +08002179 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08002180 unlink_free_space(ctl, right_info);
Li Zefanf333adb2010-11-09 14:57:39 +08002181 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002182 __unlink_free_space(ctl, right_info);
Josef Bacik6226cb02009-04-03 10:14:18 -04002183 info->bytes += right_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05002184 kmem_cache_free(btrfs_free_space_cachep, right_info);
Li Zefan120d66e2010-11-09 14:56:50 +08002185 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002186 }
2187
Josef Bacik96303082009-07-13 21:29:25 -04002188 if (left_info && !left_info->bitmap &&
2189 left_info->offset + left_info->bytes == offset) {
Li Zefanf333adb2010-11-09 14:57:39 +08002190 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08002191 unlink_free_space(ctl, left_info);
Li Zefanf333adb2010-11-09 14:57:39 +08002192 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002193 __unlink_free_space(ctl, left_info);
Josef Bacik6226cb02009-04-03 10:14:18 -04002194 info->offset = left_info->offset;
2195 info->bytes += left_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05002196 kmem_cache_free(btrfs_free_space_cachep, left_info);
Li Zefan120d66e2010-11-09 14:56:50 +08002197 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002198 }
2199
Li Zefan120d66e2010-11-09 14:56:50 +08002200 return merged;
2201}
2202
Filipe Manana20005522014-08-29 13:35:13 +01002203static bool steal_from_bitmap_to_end(struct btrfs_free_space_ctl *ctl,
2204 struct btrfs_free_space *info,
2205 bool update_stat)
2206{
2207 struct btrfs_free_space *bitmap;
2208 unsigned long i;
2209 unsigned long j;
2210 const u64 end = info->offset + info->bytes;
2211 const u64 bitmap_offset = offset_to_bitmap(ctl, end);
2212 u64 bytes;
2213
2214 bitmap = tree_search_offset(ctl, bitmap_offset, 1, 0);
2215 if (!bitmap)
2216 return false;
2217
2218 i = offset_to_bit(bitmap->offset, ctl->unit, end);
2219 j = find_next_zero_bit(bitmap->bitmap, BITS_PER_BITMAP, i);
2220 if (j == i)
2221 return false;
2222 bytes = (j - i) * ctl->unit;
2223 info->bytes += bytes;
2224
2225 if (update_stat)
2226 bitmap_clear_bits(ctl, bitmap, end, bytes);
2227 else
2228 __bitmap_clear_bits(ctl, bitmap, end, bytes);
2229
2230 if (!bitmap->bytes)
2231 free_bitmap(ctl, bitmap);
2232
2233 return true;
2234}
2235
2236static bool steal_from_bitmap_to_front(struct btrfs_free_space_ctl *ctl,
2237 struct btrfs_free_space *info,
2238 bool update_stat)
2239{
2240 struct btrfs_free_space *bitmap;
2241 u64 bitmap_offset;
2242 unsigned long i;
2243 unsigned long j;
2244 unsigned long prev_j;
2245 u64 bytes;
2246
2247 bitmap_offset = offset_to_bitmap(ctl, info->offset);
2248 /* If we're on a boundary, try the previous logical bitmap. */
2249 if (bitmap_offset == info->offset) {
2250 if (info->offset == 0)
2251 return false;
2252 bitmap_offset = offset_to_bitmap(ctl, info->offset - 1);
2253 }
2254
2255 bitmap = tree_search_offset(ctl, bitmap_offset, 1, 0);
2256 if (!bitmap)
2257 return false;
2258
2259 i = offset_to_bit(bitmap->offset, ctl->unit, info->offset) - 1;
2260 j = 0;
2261 prev_j = (unsigned long)-1;
2262 for_each_clear_bit_from(j, bitmap->bitmap, BITS_PER_BITMAP) {
2263 if (j > i)
2264 break;
2265 prev_j = j;
2266 }
2267 if (prev_j == i)
2268 return false;
2269
2270 if (prev_j == (unsigned long)-1)
2271 bytes = (i + 1) * ctl->unit;
2272 else
2273 bytes = (i - prev_j) * ctl->unit;
2274
2275 info->offset -= bytes;
2276 info->bytes += bytes;
2277
2278 if (update_stat)
2279 bitmap_clear_bits(ctl, bitmap, info->offset, bytes);
2280 else
2281 __bitmap_clear_bits(ctl, bitmap, info->offset, bytes);
2282
2283 if (!bitmap->bytes)
2284 free_bitmap(ctl, bitmap);
2285
2286 return true;
2287}
2288
2289/*
2290 * We prefer always to allocate from extent entries, both for clustered and
2291 * non-clustered allocation requests. So when attempting to add a new extent
2292 * entry, try to see if there's adjacent free space in bitmap entries, and if
2293 * there is, migrate that space from the bitmaps to the extent.
2294 * Like this we get better chances of satisfying space allocation requests
2295 * because we attempt to satisfy them based on a single cache entry, and never
2296 * on 2 or more entries - even if the entries represent a contiguous free space
2297 * region (e.g. 1 extent entry + 1 bitmap entry starting where the extent entry
2298 * ends).
2299 */
2300static void steal_from_bitmap(struct btrfs_free_space_ctl *ctl,
2301 struct btrfs_free_space *info,
2302 bool update_stat)
2303{
2304 /*
2305 * Only work with disconnected entries, as we can change their offset,
2306 * and must be extent entries.
2307 */
2308 ASSERT(!info->bitmap);
2309 ASSERT(RB_EMPTY_NODE(&info->offset_index));
2310
2311 if (ctl->total_bitmaps > 0) {
2312 bool stole_end;
2313 bool stole_front = false;
2314
2315 stole_end = steal_from_bitmap_to_end(ctl, info, update_stat);
2316 if (ctl->total_bitmaps > 0)
2317 stole_front = steal_from_bitmap_to_front(ctl, info,
2318 update_stat);
2319
2320 if (stole_end || stole_front)
2321 try_merge_free_space(ctl, info, update_stat);
2322 }
2323}
2324
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002325int __btrfs_add_free_space(struct btrfs_fs_info *fs_info,
2326 struct btrfs_free_space_ctl *ctl,
Li Zefan581bb052011-04-20 10:06:11 +08002327 u64 offset, u64 bytes)
Li Zefan120d66e2010-11-09 14:56:50 +08002328{
2329 struct btrfs_free_space *info;
2330 int ret = 0;
2331
Josef Bacikdc89e982011-01-28 17:05:48 -05002332 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
Li Zefan120d66e2010-11-09 14:56:50 +08002333 if (!info)
2334 return -ENOMEM;
2335
2336 info->offset = offset;
2337 info->bytes = bytes;
Filipe Manana20005522014-08-29 13:35:13 +01002338 RB_CLEAR_NODE(&info->offset_index);
Li Zefan120d66e2010-11-09 14:56:50 +08002339
Li Zefan34d52cb2011-03-29 13:46:06 +08002340 spin_lock(&ctl->tree_lock);
Li Zefan120d66e2010-11-09 14:56:50 +08002341
Li Zefan34d52cb2011-03-29 13:46:06 +08002342 if (try_merge_free_space(ctl, info, true))
Li Zefan120d66e2010-11-09 14:56:50 +08002343 goto link;
2344
2345 /*
2346 * There was no extent directly to the left or right of this new
2347 * extent then we know we're going to have to allocate a new extent, so
2348 * before we do that see if we need to drop this into a bitmap
2349 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002350 ret = insert_into_bitmap(ctl, info);
Li Zefan120d66e2010-11-09 14:56:50 +08002351 if (ret < 0) {
2352 goto out;
2353 } else if (ret) {
2354 ret = 0;
2355 goto out;
2356 }
2357link:
Filipe Manana20005522014-08-29 13:35:13 +01002358 /*
2359 * Only steal free space from adjacent bitmaps if we're sure we're not
2360 * going to add the new free space to existing bitmap entries - because
2361 * that would mean unnecessary work that would be reverted. Therefore
2362 * attempt to steal space from bitmaps if we're adding an extent entry.
2363 */
2364 steal_from_bitmap(ctl, info, true);
2365
Li Zefan34d52cb2011-03-29 13:46:06 +08002366 ret = link_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002367 if (ret)
Josef Bacikdc89e982011-01-28 17:05:48 -05002368 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04002369out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002370 spin_unlock(&ctl->tree_lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04002371
Josef Bacik0f9dd462008-09-23 13:14:11 -04002372 if (ret) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002373 btrfs_crit(fs_info, "unable to add free space :%d", ret);
Josef Bacikb12d6862013-08-26 17:14:08 -04002374 ASSERT(ret != -EEXIST);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002375 }
2376
Josef Bacik0f9dd462008-09-23 13:14:11 -04002377 return ret;
2378}
2379
Josef Bacik478b4d92019-06-20 15:37:43 -04002380int btrfs_add_free_space(struct btrfs_block_group_cache *block_group,
2381 u64 bytenr, u64 size)
2382{
2383 return __btrfs_add_free_space(block_group->fs_info,
2384 block_group->free_space_ctl,
2385 bytenr, size);
2386}
2387
Josef Bacik6226cb02009-04-03 10:14:18 -04002388int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
2389 u64 offset, u64 bytes)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002390{
Li Zefan34d52cb2011-03-29 13:46:06 +08002391 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002392 struct btrfs_free_space *info;
Josef Bacikb0175112012-12-18 11:39:19 -05002393 int ret;
2394 bool re_search = false;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002395
Li Zefan34d52cb2011-03-29 13:46:06 +08002396 spin_lock(&ctl->tree_lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04002397
Josef Bacik96303082009-07-13 21:29:25 -04002398again:
Josef Bacikb0175112012-12-18 11:39:19 -05002399 ret = 0;
Josef Bacikbdb7d302012-06-27 15:10:56 -04002400 if (!bytes)
2401 goto out_lock;
2402
Li Zefan34d52cb2011-03-29 13:46:06 +08002403 info = tree_search_offset(ctl, offset, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04002404 if (!info) {
Josef Bacik6606bb92009-07-31 11:03:58 -04002405 /*
2406 * oops didn't find an extent that matched the space we wanted
2407 * to remove, look for a bitmap instead
2408 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002409 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik6606bb92009-07-31 11:03:58 -04002410 1, 0);
2411 if (!info) {
Josef Bacikb0175112012-12-18 11:39:19 -05002412 /*
2413 * If we found a partial bit of our free space in a
2414 * bitmap but then couldn't find the other part this may
2415 * be a problem, so WARN about it.
Chris Mason24a70312011-11-21 09:39:11 -05002416 */
Josef Bacikb0175112012-12-18 11:39:19 -05002417 WARN_ON(re_search);
Josef Bacik6606bb92009-07-31 11:03:58 -04002418 goto out_lock;
2419 }
Josef Bacik96303082009-07-13 21:29:25 -04002420 }
2421
Josef Bacikb0175112012-12-18 11:39:19 -05002422 re_search = false;
Josef Bacikbdb7d302012-06-27 15:10:56 -04002423 if (!info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002424 unlink_free_space(ctl, info);
Josef Bacikbdb7d302012-06-27 15:10:56 -04002425 if (offset == info->offset) {
2426 u64 to_free = min(bytes, info->bytes);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002427
Josef Bacikbdb7d302012-06-27 15:10:56 -04002428 info->bytes -= to_free;
2429 info->offset += to_free;
2430 if (info->bytes) {
2431 ret = link_free_space(ctl, info);
2432 WARN_ON(ret);
2433 } else {
2434 kmem_cache_free(btrfs_free_space_cachep, info);
2435 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002436
Josef Bacikbdb7d302012-06-27 15:10:56 -04002437 offset += to_free;
2438 bytes -= to_free;
2439 goto again;
2440 } else {
2441 u64 old_end = info->bytes + info->offset;
Chris Mason9b49c9b2008-09-24 11:23:25 -04002442
Josef Bacikbdb7d302012-06-27 15:10:56 -04002443 info->bytes = offset - info->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002444 ret = link_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04002445 WARN_ON(ret);
2446 if (ret)
2447 goto out_lock;
Josef Bacik96303082009-07-13 21:29:25 -04002448
Josef Bacikbdb7d302012-06-27 15:10:56 -04002449 /* Not enough bytes in this entry to satisfy us */
2450 if (old_end < offset + bytes) {
2451 bytes -= old_end - offset;
2452 offset = old_end;
2453 goto again;
2454 } else if (old_end == offset + bytes) {
2455 /* all done */
2456 goto out_lock;
2457 }
2458 spin_unlock(&ctl->tree_lock);
2459
2460 ret = btrfs_add_free_space(block_group, offset + bytes,
2461 old_end - (offset + bytes));
2462 WARN_ON(ret);
2463 goto out;
2464 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002465 }
Josef Bacik96303082009-07-13 21:29:25 -04002466
Li Zefan34d52cb2011-03-29 13:46:06 +08002467 ret = remove_from_bitmap(ctl, info, &offset, &bytes);
Josef Bacikb0175112012-12-18 11:39:19 -05002468 if (ret == -EAGAIN) {
2469 re_search = true;
Josef Bacik96303082009-07-13 21:29:25 -04002470 goto again;
Josef Bacikb0175112012-12-18 11:39:19 -05002471 }
Josef Bacik96303082009-07-13 21:29:25 -04002472out_lock:
Li Zefan34d52cb2011-03-29 13:46:06 +08002473 spin_unlock(&ctl->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002474out:
Josef Bacik25179202008-10-29 14:49:05 -04002475 return ret;
2476}
2477
Josef Bacik0f9dd462008-09-23 13:14:11 -04002478void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
2479 u64 bytes)
2480{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002481 struct btrfs_fs_info *fs_info = block_group->fs_info;
Li Zefan34d52cb2011-03-29 13:46:06 +08002482 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002483 struct btrfs_free_space *info;
2484 struct rb_node *n;
2485 int count = 0;
2486
Filipe Manana9084cb62018-10-22 10:43:06 +01002487 spin_lock(&ctl->tree_lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08002488 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04002489 info = rb_entry(n, struct btrfs_free_space, offset_index);
Liu Bof6175ef2012-07-06 03:31:36 -06002490 if (info->bytes >= bytes && !block_group->ro)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002491 count++;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002492 btrfs_crit(fs_info, "entry offset %llu, bytes %llu, bitmap %s",
Frank Holtonefe120a2013-12-20 11:37:06 -05002493 info->offset, info->bytes,
Josef Bacik96303082009-07-13 21:29:25 -04002494 (info->bitmap) ? "yes" : "no");
Josef Bacik0f9dd462008-09-23 13:14:11 -04002495 }
Filipe Manana9084cb62018-10-22 10:43:06 +01002496 spin_unlock(&ctl->tree_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002497 btrfs_info(fs_info, "block group has cluster?: %s",
Josef Bacik96303082009-07-13 21:29:25 -04002498 list_empty(&block_group->cluster_list) ? "no" : "yes");
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002499 btrfs_info(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002500 "%d blocks of free space at or bigger than bytes is", count);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002501}
2502
Li Zefan34d52cb2011-03-29 13:46:06 +08002503void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002504{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002505 struct btrfs_fs_info *fs_info = block_group->fs_info;
Li Zefan34d52cb2011-03-29 13:46:06 +08002506 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002507
Li Zefan34d52cb2011-03-29 13:46:06 +08002508 spin_lock_init(&ctl->tree_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002509 ctl->unit = fs_info->sectorsize;
Li Zefan34d52cb2011-03-29 13:46:06 +08002510 ctl->start = block_group->key.objectid;
2511 ctl->private = block_group;
2512 ctl->op = &free_space_op;
Filipe Manana55507ce2014-12-01 17:04:09 +00002513 INIT_LIST_HEAD(&ctl->trimming_ranges);
2514 mutex_init(&ctl->cache_writeout_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002515
Li Zefan34d52cb2011-03-29 13:46:06 +08002516 /*
2517 * we only want to have 32k of ram per block group for keeping
2518 * track of free space, and if we pass 1/2 of that we want to
2519 * start converting things over to using bitmaps
2520 */
Byongho Leeee221842015-12-15 01:42:10 +09002521 ctl->extents_thresh = (SZ_32K / 2) / sizeof(struct btrfs_free_space);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002522}
2523
Chris Masonfa9c0d792009-04-03 09:47:43 -04002524/*
2525 * for a given cluster, put all of its extents back into the free
2526 * space cache. If the block group passed doesn't match the block group
2527 * pointed to by the cluster, someone else raced in and freed the
2528 * cluster already. In that case, we just return without changing anything
2529 */
2530static int
2531__btrfs_return_cluster_to_free_space(
2532 struct btrfs_block_group_cache *block_group,
2533 struct btrfs_free_cluster *cluster)
2534{
Li Zefan34d52cb2011-03-29 13:46:06 +08002535 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002536 struct btrfs_free_space *entry;
2537 struct rb_node *node;
2538
2539 spin_lock(&cluster->lock);
2540 if (cluster->block_group != block_group)
2541 goto out;
2542
Josef Bacik96303082009-07-13 21:29:25 -04002543 cluster->block_group = NULL;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002544 cluster->window_start = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002545 list_del_init(&cluster->block_group_list);
Josef Bacik96303082009-07-13 21:29:25 -04002546
Chris Masonfa9c0d792009-04-03 09:47:43 -04002547 node = rb_first(&cluster->root);
Josef Bacik96303082009-07-13 21:29:25 -04002548 while (node) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002549 bool bitmap;
2550
Chris Masonfa9c0d792009-04-03 09:47:43 -04002551 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2552 node = rb_next(&entry->offset_index);
2553 rb_erase(&entry->offset_index, &cluster->root);
Filipe Manana20005522014-08-29 13:35:13 +01002554 RB_CLEAR_NODE(&entry->offset_index);
Josef Bacik4e69b592011-03-21 10:11:24 -04002555
2556 bitmap = (entry->bitmap != NULL);
Filipe Manana20005522014-08-29 13:35:13 +01002557 if (!bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002558 try_merge_free_space(ctl, entry, false);
Filipe Manana20005522014-08-29 13:35:13 +01002559 steal_from_bitmap(ctl, entry, false);
2560 }
Li Zefan34d52cb2011-03-29 13:46:06 +08002561 tree_insert_offset(&ctl->free_space_offset,
Josef Bacik4e69b592011-03-21 10:11:24 -04002562 entry->offset, &entry->offset_index, bitmap);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002563 }
Eric Paris6bef4d32010-02-23 19:43:04 +00002564 cluster->root = RB_ROOT;
Josef Bacik96303082009-07-13 21:29:25 -04002565
Chris Masonfa9c0d792009-04-03 09:47:43 -04002566out:
2567 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002568 btrfs_put_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002569 return 0;
2570}
2571
Eric Sandeen48a3b632013-04-25 20:41:01 +00002572static void __btrfs_remove_free_space_cache_locked(
2573 struct btrfs_free_space_ctl *ctl)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002574{
2575 struct btrfs_free_space *info;
2576 struct rb_node *node;
Li Zefan581bb052011-04-20 10:06:11 +08002577
Li Zefan581bb052011-04-20 10:06:11 +08002578 while ((node = rb_last(&ctl->free_space_offset)) != NULL) {
2579 info = rb_entry(node, struct btrfs_free_space, offset_index);
Josef Bacik9b90f512011-06-24 16:02:51 +00002580 if (!info->bitmap) {
2581 unlink_free_space(ctl, info);
2582 kmem_cache_free(btrfs_free_space_cachep, info);
2583 } else {
2584 free_bitmap(ctl, info);
2585 }
David Sterba351810c2015-01-08 15:20:54 +01002586
2587 cond_resched_lock(&ctl->tree_lock);
Li Zefan581bb052011-04-20 10:06:11 +08002588 }
Chris Mason09655372011-05-21 09:27:38 -04002589}
2590
2591void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl)
2592{
2593 spin_lock(&ctl->tree_lock);
2594 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan581bb052011-04-20 10:06:11 +08002595 spin_unlock(&ctl->tree_lock);
2596}
2597
Josef Bacik0f9dd462008-09-23 13:14:11 -04002598void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group)
2599{
Li Zefan34d52cb2011-03-29 13:46:06 +08002600 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002601 struct btrfs_free_cluster *cluster;
Josef Bacik96303082009-07-13 21:29:25 -04002602 struct list_head *head;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002603
Li Zefan34d52cb2011-03-29 13:46:06 +08002604 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002605 while ((head = block_group->cluster_list.next) !=
2606 &block_group->cluster_list) {
2607 cluster = list_entry(head, struct btrfs_free_cluster,
2608 block_group_list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002609
2610 WARN_ON(cluster->block_group != block_group);
2611 __btrfs_return_cluster_to_free_space(block_group, cluster);
David Sterba351810c2015-01-08 15:20:54 +01002612
2613 cond_resched_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002614 }
Chris Mason09655372011-05-21 09:27:38 -04002615 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan34d52cb2011-03-29 13:46:06 +08002616 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002617
Josef Bacik0f9dd462008-09-23 13:14:11 -04002618}
2619
Josef Bacik6226cb02009-04-03 10:14:18 -04002620u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group,
Miao Xiea4820392013-09-09 13:19:42 +08002621 u64 offset, u64 bytes, u64 empty_size,
2622 u64 *max_extent_size)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002623{
Li Zefan34d52cb2011-03-29 13:46:06 +08002624 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik6226cb02009-04-03 10:14:18 -04002625 struct btrfs_free_space *entry = NULL;
Josef Bacik96303082009-07-13 21:29:25 -04002626 u64 bytes_search = bytes + empty_size;
Josef Bacik6226cb02009-04-03 10:14:18 -04002627 u64 ret = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05002628 u64 align_gap = 0;
2629 u64 align_gap_len = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002630
Li Zefan34d52cb2011-03-29 13:46:06 +08002631 spin_lock(&ctl->tree_lock);
David Woodhouse53b381b2013-01-29 18:40:14 -05002632 entry = find_free_space(ctl, &offset, &bytes_search,
Miao Xiea4820392013-09-09 13:19:42 +08002633 block_group->full_stripe_len, max_extent_size);
Josef Bacik6226cb02009-04-03 10:14:18 -04002634 if (!entry)
Josef Bacik96303082009-07-13 21:29:25 -04002635 goto out;
2636
2637 ret = offset;
2638 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002639 bitmap_clear_bits(ctl, entry, offset, bytes);
Li Zefanedf6e2d2010-11-09 14:50:07 +08002640 if (!entry->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08002641 free_bitmap(ctl, entry);
Josef Bacik96303082009-07-13 21:29:25 -04002642 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08002643 unlink_free_space(ctl, entry);
David Woodhouse53b381b2013-01-29 18:40:14 -05002644 align_gap_len = offset - entry->offset;
2645 align_gap = entry->offset;
2646
2647 entry->offset = offset + bytes;
2648 WARN_ON(entry->bytes < bytes + align_gap_len);
2649
2650 entry->bytes -= bytes + align_gap_len;
Josef Bacik6226cb02009-04-03 10:14:18 -04002651 if (!entry->bytes)
Josef Bacikdc89e982011-01-28 17:05:48 -05002652 kmem_cache_free(btrfs_free_space_cachep, entry);
Josef Bacik6226cb02009-04-03 10:14:18 -04002653 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002654 link_free_space(ctl, entry);
Josef Bacik6226cb02009-04-03 10:14:18 -04002655 }
Josef Bacik96303082009-07-13 21:29:25 -04002656out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002657 spin_unlock(&ctl->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04002658
David Woodhouse53b381b2013-01-29 18:40:14 -05002659 if (align_gap_len)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002660 __btrfs_add_free_space(block_group->fs_info, ctl,
2661 align_gap, align_gap_len);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002662 return ret;
2663}
Chris Masonfa9c0d792009-04-03 09:47:43 -04002664
2665/*
2666 * given a cluster, put all of its extents back into the free space
2667 * cache. If a block group is passed, this function will only free
2668 * a cluster that belongs to the passed block group.
2669 *
2670 * Otherwise, it'll get a reference on the block group pointed to by the
2671 * cluster and remove the cluster from it.
2672 */
2673int btrfs_return_cluster_to_free_space(
2674 struct btrfs_block_group_cache *block_group,
2675 struct btrfs_free_cluster *cluster)
2676{
Li Zefan34d52cb2011-03-29 13:46:06 +08002677 struct btrfs_free_space_ctl *ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002678 int ret;
2679
2680 /* first, get a safe pointer to the block group */
2681 spin_lock(&cluster->lock);
2682 if (!block_group) {
2683 block_group = cluster->block_group;
2684 if (!block_group) {
2685 spin_unlock(&cluster->lock);
2686 return 0;
2687 }
2688 } else if (cluster->block_group != block_group) {
2689 /* someone else has already freed it don't redo their work */
2690 spin_unlock(&cluster->lock);
2691 return 0;
2692 }
2693 atomic_inc(&block_group->count);
2694 spin_unlock(&cluster->lock);
2695
Li Zefan34d52cb2011-03-29 13:46:06 +08002696 ctl = block_group->free_space_ctl;
2697
Chris Masonfa9c0d792009-04-03 09:47:43 -04002698 /* now return any extents the cluster had on it */
Li Zefan34d52cb2011-03-29 13:46:06 +08002699 spin_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002700 ret = __btrfs_return_cluster_to_free_space(block_group, cluster);
Li Zefan34d52cb2011-03-29 13:46:06 +08002701 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002702
2703 /* finally drop our ref */
2704 btrfs_put_block_group(block_group);
2705 return ret;
2706}
2707
Josef Bacik96303082009-07-13 21:29:25 -04002708static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group,
2709 struct btrfs_free_cluster *cluster,
Josef Bacik4e69b592011-03-21 10:11:24 -04002710 struct btrfs_free_space *entry,
Miao Xiea4820392013-09-09 13:19:42 +08002711 u64 bytes, u64 min_start,
2712 u64 *max_extent_size)
Josef Bacik96303082009-07-13 21:29:25 -04002713{
Li Zefan34d52cb2011-03-29 13:46:06 +08002714 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002715 int err;
2716 u64 search_start = cluster->window_start;
2717 u64 search_bytes = bytes;
2718 u64 ret = 0;
2719
Josef Bacik96303082009-07-13 21:29:25 -04002720 search_start = min_start;
2721 search_bytes = bytes;
2722
Josef Bacik0584f712015-10-02 16:12:23 -04002723 err = search_bitmap(ctl, entry, &search_start, &search_bytes, true);
Miao Xiea4820392013-09-09 13:19:42 +08002724 if (err) {
Josef Bacikad22cf62018-10-12 15:32:33 -04002725 *max_extent_size = max(get_max_extent_size(entry),
2726 *max_extent_size);
Josef Bacik4e69b592011-03-21 10:11:24 -04002727 return 0;
Miao Xiea4820392013-09-09 13:19:42 +08002728 }
Josef Bacik96303082009-07-13 21:29:25 -04002729
2730 ret = search_start;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00002731 __bitmap_clear_bits(ctl, entry, ret, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002732
2733 return ret;
2734}
2735
Chris Masonfa9c0d792009-04-03 09:47:43 -04002736/*
2737 * given a cluster, try to allocate 'bytes' from it, returns 0
2738 * if it couldn't find anything suitably large, or a logical disk offset
2739 * if things worked out
2740 */
2741u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group,
2742 struct btrfs_free_cluster *cluster, u64 bytes,
Miao Xiea4820392013-09-09 13:19:42 +08002743 u64 min_start, u64 *max_extent_size)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002744{
Li Zefan34d52cb2011-03-29 13:46:06 +08002745 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002746 struct btrfs_free_space *entry = NULL;
2747 struct rb_node *node;
2748 u64 ret = 0;
2749
2750 spin_lock(&cluster->lock);
2751 if (bytes > cluster->max_size)
2752 goto out;
2753
2754 if (cluster->block_group != block_group)
2755 goto out;
2756
2757 node = rb_first(&cluster->root);
2758 if (!node)
2759 goto out;
2760
2761 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302762 while (1) {
Josef Bacikad22cf62018-10-12 15:32:33 -04002763 if (entry->bytes < bytes)
2764 *max_extent_size = max(get_max_extent_size(entry),
2765 *max_extent_size);
Miao Xiea4820392013-09-09 13:19:42 +08002766
Josef Bacik4e69b592011-03-21 10:11:24 -04002767 if (entry->bytes < bytes ||
2768 (!entry->bitmap && entry->offset < min_start)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04002769 node = rb_next(&entry->offset_index);
2770 if (!node)
2771 break;
2772 entry = rb_entry(node, struct btrfs_free_space,
2773 offset_index);
2774 continue;
2775 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002776
Josef Bacik4e69b592011-03-21 10:11:24 -04002777 if (entry->bitmap) {
2778 ret = btrfs_alloc_from_bitmap(block_group,
2779 cluster, entry, bytes,
Miao Xiea4820392013-09-09 13:19:42 +08002780 cluster->window_start,
2781 max_extent_size);
Josef Bacik4e69b592011-03-21 10:11:24 -04002782 if (ret == 0) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002783 node = rb_next(&entry->offset_index);
2784 if (!node)
2785 break;
2786 entry = rb_entry(node, struct btrfs_free_space,
2787 offset_index);
2788 continue;
2789 }
Josef Bacik9b230622012-01-26 15:01:12 -05002790 cluster->window_start += bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002791 } else {
Josef Bacik4e69b592011-03-21 10:11:24 -04002792 ret = entry->offset;
2793
2794 entry->offset += bytes;
2795 entry->bytes -= bytes;
2796 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002797
Li Zefan5e71b5d2010-11-09 14:55:34 +08002798 if (entry->bytes == 0)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002799 rb_erase(&entry->offset_index, &cluster->root);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002800 break;
2801 }
2802out:
2803 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002804
Li Zefan5e71b5d2010-11-09 14:55:34 +08002805 if (!ret)
2806 return 0;
2807
Li Zefan34d52cb2011-03-29 13:46:06 +08002808 spin_lock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002809
Li Zefan34d52cb2011-03-29 13:46:06 +08002810 ctl->free_space -= bytes;
Li Zefan5e71b5d2010-11-09 14:55:34 +08002811 if (entry->bytes == 0) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002812 ctl->free_extents--;
Josef Bacik4e69b592011-03-21 10:11:24 -04002813 if (entry->bitmap) {
2814 kfree(entry->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08002815 ctl->total_bitmaps--;
2816 ctl->op->recalc_thresholds(ctl);
Josef Bacik4e69b592011-03-21 10:11:24 -04002817 }
Josef Bacikdc89e982011-01-28 17:05:48 -05002818 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002819 }
2820
Li Zefan34d52cb2011-03-29 13:46:06 +08002821 spin_unlock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002822
Chris Masonfa9c0d792009-04-03 09:47:43 -04002823 return ret;
2824}
2825
Josef Bacik96303082009-07-13 21:29:25 -04002826static int btrfs_bitmap_cluster(struct btrfs_block_group_cache *block_group,
2827 struct btrfs_free_space *entry,
2828 struct btrfs_free_cluster *cluster,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002829 u64 offset, u64 bytes,
2830 u64 cont1_bytes, u64 min_bytes)
Josef Bacik96303082009-07-13 21:29:25 -04002831{
Li Zefan34d52cb2011-03-29 13:46:06 +08002832 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002833 unsigned long next_zero;
2834 unsigned long i;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002835 unsigned long want_bits;
2836 unsigned long min_bits;
Josef Bacik96303082009-07-13 21:29:25 -04002837 unsigned long found_bits;
Josef Bacikcef40482015-10-02 16:09:42 -04002838 unsigned long max_bits = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002839 unsigned long start = 0;
2840 unsigned long total_found = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002841 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002842
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002843 i = offset_to_bit(entry->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04002844 max_t(u64, offset, entry->offset));
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002845 want_bits = bytes_to_bits(bytes, ctl->unit);
2846 min_bits = bytes_to_bits(min_bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04002847
Josef Bacikcef40482015-10-02 16:09:42 -04002848 /*
2849 * Don't bother looking for a cluster in this bitmap if it's heavily
2850 * fragmented.
2851 */
2852 if (entry->max_extent_size &&
2853 entry->max_extent_size < cont1_bytes)
2854 return -ENOSPC;
Josef Bacik96303082009-07-13 21:29:25 -04002855again:
2856 found_bits = 0;
Wei Yongjunebb3dad2012-09-13 20:29:02 -06002857 for_each_set_bit_from(i, entry->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04002858 next_zero = find_next_zero_bit(entry->bitmap,
2859 BITS_PER_BITMAP, i);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002860 if (next_zero - i >= min_bits) {
Josef Bacik96303082009-07-13 21:29:25 -04002861 found_bits = next_zero - i;
Josef Bacikcef40482015-10-02 16:09:42 -04002862 if (found_bits > max_bits)
2863 max_bits = found_bits;
Josef Bacik96303082009-07-13 21:29:25 -04002864 break;
2865 }
Josef Bacikcef40482015-10-02 16:09:42 -04002866 if (next_zero - i > max_bits)
2867 max_bits = next_zero - i;
Josef Bacik96303082009-07-13 21:29:25 -04002868 i = next_zero;
2869 }
2870
Josef Bacikcef40482015-10-02 16:09:42 -04002871 if (!found_bits) {
2872 entry->max_extent_size = (u64)max_bits * ctl->unit;
Josef Bacik4e69b592011-03-21 10:11:24 -04002873 return -ENOSPC;
Josef Bacikcef40482015-10-02 16:09:42 -04002874 }
Josef Bacik96303082009-07-13 21:29:25 -04002875
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002876 if (!total_found) {
Josef Bacik96303082009-07-13 21:29:25 -04002877 start = i;
Alexandre Olivab78d09b2011-11-30 13:43:00 -05002878 cluster->max_size = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002879 }
2880
2881 total_found += found_bits;
2882
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002883 if (cluster->max_size < found_bits * ctl->unit)
2884 cluster->max_size = found_bits * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04002885
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002886 if (total_found < want_bits || cluster->max_size < cont1_bytes) {
2887 i = next_zero + 1;
Josef Bacik96303082009-07-13 21:29:25 -04002888 goto again;
2889 }
2890
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002891 cluster->window_start = start * ctl->unit + entry->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002892 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002893 ret = tree_insert_offset(&cluster->root, entry->offset,
2894 &entry->offset_index, 1);
Josef Bacikb12d6862013-08-26 17:14:08 -04002895 ASSERT(!ret); /* -EEXIST; Logic error */
Josef Bacik96303082009-07-13 21:29:25 -04002896
Josef Bacik3f7de032011-11-10 08:29:20 -05002897 trace_btrfs_setup_cluster(block_group, cluster,
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002898 total_found * ctl->unit, 1);
Josef Bacik96303082009-07-13 21:29:25 -04002899 return 0;
2900}
2901
Chris Masonfa9c0d792009-04-03 09:47:43 -04002902/*
Josef Bacik4e69b592011-03-21 10:11:24 -04002903 * This searches the block group for just extents to fill the cluster with.
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002904 * Try to find a cluster with at least bytes total bytes, at least one
2905 * extent of cont1_bytes, and other clusters of at least min_bytes.
Josef Bacik4e69b592011-03-21 10:11:24 -04002906 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002907static noinline int
2908setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
2909 struct btrfs_free_cluster *cluster,
2910 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002911 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002912{
Li Zefan34d52cb2011-03-29 13:46:06 +08002913 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002914 struct btrfs_free_space *first = NULL;
2915 struct btrfs_free_space *entry = NULL;
Josef Bacik4e69b592011-03-21 10:11:24 -04002916 struct btrfs_free_space *last;
2917 struct rb_node *node;
Josef Bacik4e69b592011-03-21 10:11:24 -04002918 u64 window_free;
2919 u64 max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002920 u64 total_size = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002921
Li Zefan34d52cb2011-03-29 13:46:06 +08002922 entry = tree_search_offset(ctl, offset, 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002923 if (!entry)
2924 return -ENOSPC;
2925
2926 /*
2927 * We don't want bitmaps, so just move along until we find a normal
2928 * extent entry.
2929 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002930 while (entry->bitmap || entry->bytes < min_bytes) {
2931 if (entry->bitmap && list_empty(&entry->list))
Josef Bacik86d4a772011-05-25 13:03:16 -04002932 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002933 node = rb_next(&entry->offset_index);
2934 if (!node)
2935 return -ENOSPC;
2936 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2937 }
2938
Josef Bacik4e69b592011-03-21 10:11:24 -04002939 window_free = entry->bytes;
2940 max_extent = entry->bytes;
2941 first = entry;
2942 last = entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002943
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002944 for (node = rb_next(&entry->offset_index); node;
2945 node = rb_next(&entry->offset_index)) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002946 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2947
Josef Bacik86d4a772011-05-25 13:03:16 -04002948 if (entry->bitmap) {
2949 if (list_empty(&entry->list))
2950 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002951 continue;
Josef Bacik86d4a772011-05-25 13:03:16 -04002952 }
2953
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002954 if (entry->bytes < min_bytes)
2955 continue;
2956
2957 last = entry;
2958 window_free += entry->bytes;
2959 if (entry->bytes > max_extent)
Josef Bacik4e69b592011-03-21 10:11:24 -04002960 max_extent = entry->bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002961 }
2962
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002963 if (window_free < bytes || max_extent < cont1_bytes)
2964 return -ENOSPC;
2965
Josef Bacik4e69b592011-03-21 10:11:24 -04002966 cluster->window_start = first->offset;
2967
2968 node = &first->offset_index;
2969
2970 /*
2971 * now we've found our entries, pull them out of the free space
2972 * cache and put them into the cluster rbtree
2973 */
2974 do {
2975 int ret;
2976
2977 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2978 node = rb_next(&entry->offset_index);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002979 if (entry->bitmap || entry->bytes < min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002980 continue;
2981
Li Zefan34d52cb2011-03-29 13:46:06 +08002982 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002983 ret = tree_insert_offset(&cluster->root, entry->offset,
2984 &entry->offset_index, 0);
Josef Bacik3f7de032011-11-10 08:29:20 -05002985 total_size += entry->bytes;
Josef Bacikb12d6862013-08-26 17:14:08 -04002986 ASSERT(!ret); /* -EEXIST; Logic error */
Josef Bacik4e69b592011-03-21 10:11:24 -04002987 } while (node && entry != last);
2988
2989 cluster->max_size = max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002990 trace_btrfs_setup_cluster(block_group, cluster, total_size, 0);
Josef Bacik4e69b592011-03-21 10:11:24 -04002991 return 0;
2992}
2993
2994/*
2995 * This specifically looks for bitmaps that may work in the cluster, we assume
2996 * that we have already failed to find extents that will work.
2997 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002998static noinline int
2999setup_cluster_bitmap(struct btrfs_block_group_cache *block_group,
3000 struct btrfs_free_cluster *cluster,
3001 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003002 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04003003{
Li Zefan34d52cb2011-03-29 13:46:06 +08003004 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Mason1b9b9222015-12-15 07:15:32 -08003005 struct btrfs_free_space *entry = NULL;
Josef Bacik4e69b592011-03-21 10:11:24 -04003006 int ret = -ENOSPC;
Li Zefan0f0fbf12011-11-20 07:33:38 -05003007 u64 bitmap_offset = offset_to_bitmap(ctl, offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04003008
Li Zefan34d52cb2011-03-29 13:46:06 +08003009 if (ctl->total_bitmaps == 0)
Josef Bacik4e69b592011-03-21 10:11:24 -04003010 return -ENOSPC;
3011
Josef Bacik86d4a772011-05-25 13:03:16 -04003012 /*
Li Zefan0f0fbf12011-11-20 07:33:38 -05003013 * The bitmap that covers offset won't be in the list unless offset
3014 * is just its start offset.
3015 */
Chris Mason1b9b9222015-12-15 07:15:32 -08003016 if (!list_empty(bitmaps))
3017 entry = list_first_entry(bitmaps, struct btrfs_free_space, list);
3018
3019 if (!entry || entry->offset != bitmap_offset) {
Li Zefan0f0fbf12011-11-20 07:33:38 -05003020 entry = tree_search_offset(ctl, bitmap_offset, 1, 0);
3021 if (entry && list_empty(&entry->list))
3022 list_add(&entry->list, bitmaps);
3023 }
3024
Josef Bacik86d4a772011-05-25 13:03:16 -04003025 list_for_each_entry(entry, bitmaps, list) {
Josef Bacik357b9782012-01-26 15:01:11 -05003026 if (entry->bytes < bytes)
Josef Bacik86d4a772011-05-25 13:03:16 -04003027 continue;
3028 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003029 bytes, cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04003030 if (!ret)
3031 return 0;
3032 }
3033
3034 /*
Li Zefan52621cb2011-11-20 07:33:38 -05003035 * The bitmaps list has all the bitmaps that record free space
3036 * starting after offset, so no more search is required.
Josef Bacik86d4a772011-05-25 13:03:16 -04003037 */
Li Zefan52621cb2011-11-20 07:33:38 -05003038 return -ENOSPC;
Josef Bacik4e69b592011-03-21 10:11:24 -04003039}
3040
3041/*
Chris Masonfa9c0d792009-04-03 09:47:43 -04003042 * here we try to find a cluster of blocks in a block group. The goal
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003043 * is to find at least bytes+empty_size.
Chris Masonfa9c0d792009-04-03 09:47:43 -04003044 * We might not find them all in one contiguous area.
3045 *
3046 * returns zero and sets up cluster if things worked out, otherwise
3047 * it returns -enospc
3048 */
David Sterba2ceeae22019-03-20 13:53:49 +01003049int btrfs_find_space_cluster(struct btrfs_block_group_cache *block_group,
Chris Masonfa9c0d792009-04-03 09:47:43 -04003050 struct btrfs_free_cluster *cluster,
3051 u64 offset, u64 bytes, u64 empty_size)
3052{
David Sterba2ceeae22019-03-20 13:53:49 +01003053 struct btrfs_fs_info *fs_info = block_group->fs_info;
Li Zefan34d52cb2011-03-29 13:46:06 +08003054 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik86d4a772011-05-25 13:03:16 -04003055 struct btrfs_free_space *entry, *tmp;
Li Zefan52621cb2011-11-20 07:33:38 -05003056 LIST_HEAD(bitmaps);
Chris Masonfa9c0d792009-04-03 09:47:43 -04003057 u64 min_bytes;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003058 u64 cont1_bytes;
Chris Masonfa9c0d792009-04-03 09:47:43 -04003059 int ret;
3060
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003061 /*
3062 * Choose the minimum extent size we'll require for this
3063 * cluster. For SSD_SPREAD, don't allow any fragmentation.
3064 * For metadata, allow allocates with smaller extents. For
3065 * data, keep it dense.
3066 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003067 if (btrfs_test_opt(fs_info, SSD_SPREAD)) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003068 cont1_bytes = min_bytes = bytes + empty_size;
Chris Mason451d7582009-06-09 20:28:34 -04003069 } else if (block_group->flags & BTRFS_BLOCK_GROUP_METADATA) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003070 cont1_bytes = bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003071 min_bytes = fs_info->sectorsize;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003072 } else {
3073 cont1_bytes = max(bytes, (bytes + empty_size) >> 2);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003074 min_bytes = fs_info->sectorsize;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003075 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04003076
Li Zefan34d52cb2011-03-29 13:46:06 +08003077 spin_lock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04003078
3079 /*
3080 * If we know we don't have enough space to make a cluster don't even
3081 * bother doing all the work to try and find one.
3082 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003083 if (ctl->free_space < bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08003084 spin_unlock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04003085 return -ENOSPC;
3086 }
3087
Chris Masonfa9c0d792009-04-03 09:47:43 -04003088 spin_lock(&cluster->lock);
3089
3090 /* someone already found a cluster, hooray */
3091 if (cluster->block_group) {
3092 ret = 0;
3093 goto out;
3094 }
Josef Bacik4e69b592011-03-21 10:11:24 -04003095
Josef Bacik3f7de032011-11-10 08:29:20 -05003096 trace_btrfs_find_cluster(block_group, offset, bytes, empty_size,
3097 min_bytes);
3098
Josef Bacik86d4a772011-05-25 13:03:16 -04003099 ret = setup_cluster_no_bitmap(block_group, cluster, &bitmaps, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003100 bytes + empty_size,
3101 cont1_bytes, min_bytes);
Josef Bacik4e69b592011-03-21 10:11:24 -04003102 if (ret)
Josef Bacik86d4a772011-05-25 13:03:16 -04003103 ret = setup_cluster_bitmap(block_group, cluster, &bitmaps,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003104 offset, bytes + empty_size,
3105 cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04003106
3107 /* Clear our temporary list */
3108 list_for_each_entry_safe(entry, tmp, &bitmaps, list)
3109 list_del_init(&entry->list);
Josef Bacik4e69b592011-03-21 10:11:24 -04003110
3111 if (!ret) {
3112 atomic_inc(&block_group->count);
3113 list_add_tail(&cluster->block_group_list,
3114 &block_group->cluster_list);
3115 cluster->block_group = block_group;
Josef Bacik3f7de032011-11-10 08:29:20 -05003116 } else {
3117 trace_btrfs_failed_cluster_setup(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04003118 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04003119out:
3120 spin_unlock(&cluster->lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08003121 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04003122
3123 return ret;
3124}
3125
3126/*
3127 * simple code to zero out a cluster
3128 */
3129void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster)
3130{
3131 spin_lock_init(&cluster->lock);
3132 spin_lock_init(&cluster->refill_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00003133 cluster->root = RB_ROOT;
Chris Masonfa9c0d792009-04-03 09:47:43 -04003134 cluster->max_size = 0;
Josef Bacikc759c4e2015-10-02 15:25:10 -04003135 cluster->fragmented = false;
Chris Masonfa9c0d792009-04-03 09:47:43 -04003136 INIT_LIST_HEAD(&cluster->block_group_list);
3137 cluster->block_group = NULL;
3138}
3139
Li Zefan7fe1e642011-12-29 14:47:27 +08003140static int do_trimming(struct btrfs_block_group_cache *block_group,
3141 u64 *total_trimmed, u64 start, u64 bytes,
Filipe Manana55507ce2014-12-01 17:04:09 +00003142 u64 reserved_start, u64 reserved_bytes,
3143 struct btrfs_trim_range *trim_entry)
Li Zefan7fe1e642011-12-29 14:47:27 +08003144{
3145 struct btrfs_space_info *space_info = block_group->space_info;
3146 struct btrfs_fs_info *fs_info = block_group->fs_info;
Filipe Manana55507ce2014-12-01 17:04:09 +00003147 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan7fe1e642011-12-29 14:47:27 +08003148 int ret;
3149 int update = 0;
3150 u64 trimmed = 0;
3151
3152 spin_lock(&space_info->lock);
3153 spin_lock(&block_group->lock);
3154 if (!block_group->ro) {
3155 block_group->reserved += reserved_bytes;
3156 space_info->bytes_reserved += reserved_bytes;
3157 update = 1;
3158 }
3159 spin_unlock(&block_group->lock);
3160 spin_unlock(&space_info->lock);
3161
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003162 ret = btrfs_discard_extent(fs_info, start, bytes, &trimmed);
Li Zefan7fe1e642011-12-29 14:47:27 +08003163 if (!ret)
3164 *total_trimmed += trimmed;
3165
Filipe Manana55507ce2014-12-01 17:04:09 +00003166 mutex_lock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003167 btrfs_add_free_space(block_group, reserved_start, reserved_bytes);
Filipe Manana55507ce2014-12-01 17:04:09 +00003168 list_del(&trim_entry->list);
3169 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003170
3171 if (update) {
3172 spin_lock(&space_info->lock);
3173 spin_lock(&block_group->lock);
3174 if (block_group->ro)
3175 space_info->bytes_readonly += reserved_bytes;
3176 block_group->reserved -= reserved_bytes;
3177 space_info->bytes_reserved -= reserved_bytes;
Li Zefan7fe1e642011-12-29 14:47:27 +08003178 spin_unlock(&block_group->lock);
Su Yue8f63a842018-11-28 11:21:12 +08003179 spin_unlock(&space_info->lock);
Li Zefan7fe1e642011-12-29 14:47:27 +08003180 }
3181
3182 return ret;
3183}
3184
3185static int trim_no_bitmap(struct btrfs_block_group_cache *block_group,
3186 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
Li Dongyangf7039b12011-03-24 10:24:28 +00003187{
Li Zefan34d52cb2011-03-29 13:46:06 +08003188 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan7fe1e642011-12-29 14:47:27 +08003189 struct btrfs_free_space *entry;
3190 struct rb_node *node;
Li Dongyangf7039b12011-03-24 10:24:28 +00003191 int ret = 0;
Li Zefan7fe1e642011-12-29 14:47:27 +08003192 u64 extent_start;
3193 u64 extent_bytes;
3194 u64 bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00003195
3196 while (start < end) {
Filipe Manana55507ce2014-12-01 17:04:09 +00003197 struct btrfs_trim_range trim_entry;
3198
3199 mutex_lock(&ctl->cache_writeout_mutex);
Li Zefan34d52cb2011-03-29 13:46:06 +08003200 spin_lock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00003201
Li Zefan34d52cb2011-03-29 13:46:06 +08003202 if (ctl->free_space < minlen) {
3203 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003204 mutex_unlock(&ctl->cache_writeout_mutex);
Li Dongyangf7039b12011-03-24 10:24:28 +00003205 break;
3206 }
3207
Li Zefan34d52cb2011-03-29 13:46:06 +08003208 entry = tree_search_offset(ctl, start, 0, 1);
Li Zefan7fe1e642011-12-29 14:47:27 +08003209 if (!entry) {
Li Zefan34d52cb2011-03-29 13:46:06 +08003210 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003211 mutex_unlock(&ctl->cache_writeout_mutex);
Li Dongyangf7039b12011-03-24 10:24:28 +00003212 break;
3213 }
3214
Li Zefan7fe1e642011-12-29 14:47:27 +08003215 /* skip bitmaps */
3216 while (entry->bitmap) {
3217 node = rb_next(&entry->offset_index);
3218 if (!node) {
Li Zefan34d52cb2011-03-29 13:46:06 +08003219 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003220 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003221 goto out;
Li Dongyangf7039b12011-03-24 10:24:28 +00003222 }
Li Zefan7fe1e642011-12-29 14:47:27 +08003223 entry = rb_entry(node, struct btrfs_free_space,
3224 offset_index);
Li Dongyangf7039b12011-03-24 10:24:28 +00003225 }
3226
Li Zefan7fe1e642011-12-29 14:47:27 +08003227 if (entry->offset >= end) {
3228 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003229 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003230 break;
3231 }
3232
3233 extent_start = entry->offset;
3234 extent_bytes = entry->bytes;
3235 start = max(start, extent_start);
3236 bytes = min(extent_start + extent_bytes, end) - start;
3237 if (bytes < minlen) {
3238 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003239 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003240 goto next;
3241 }
3242
3243 unlink_free_space(ctl, entry);
3244 kmem_cache_free(btrfs_free_space_cachep, entry);
3245
Li Zefan34d52cb2011-03-29 13:46:06 +08003246 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003247 trim_entry.start = extent_start;
3248 trim_entry.bytes = extent_bytes;
3249 list_add_tail(&trim_entry.list, &ctl->trimming_ranges);
3250 mutex_unlock(&ctl->cache_writeout_mutex);
Li Dongyangf7039b12011-03-24 10:24:28 +00003251
Li Zefan7fe1e642011-12-29 14:47:27 +08003252 ret = do_trimming(block_group, total_trimmed, start, bytes,
Filipe Manana55507ce2014-12-01 17:04:09 +00003253 extent_start, extent_bytes, &trim_entry);
Li Zefan7fe1e642011-12-29 14:47:27 +08003254 if (ret)
3255 break;
3256next:
Li Dongyangf7039b12011-03-24 10:24:28 +00003257 start += bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00003258
3259 if (fatal_signal_pending(current)) {
3260 ret = -ERESTARTSYS;
3261 break;
3262 }
3263
3264 cond_resched();
3265 }
Li Zefan7fe1e642011-12-29 14:47:27 +08003266out:
3267 return ret;
3268}
3269
3270static int trim_bitmaps(struct btrfs_block_group_cache *block_group,
3271 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
3272{
3273 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
3274 struct btrfs_free_space *entry;
3275 int ret = 0;
3276 int ret2;
3277 u64 bytes;
3278 u64 offset = offset_to_bitmap(ctl, start);
3279
3280 while (offset < end) {
3281 bool next_bitmap = false;
Filipe Manana55507ce2014-12-01 17:04:09 +00003282 struct btrfs_trim_range trim_entry;
Li Zefan7fe1e642011-12-29 14:47:27 +08003283
Filipe Manana55507ce2014-12-01 17:04:09 +00003284 mutex_lock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003285 spin_lock(&ctl->tree_lock);
3286
3287 if (ctl->free_space < minlen) {
3288 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003289 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003290 break;
3291 }
3292
3293 entry = tree_search_offset(ctl, offset, 1, 0);
3294 if (!entry) {
3295 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003296 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003297 next_bitmap = true;
3298 goto next;
3299 }
3300
3301 bytes = minlen;
Josef Bacik0584f712015-10-02 16:12:23 -04003302 ret2 = search_bitmap(ctl, entry, &start, &bytes, false);
Li Zefan7fe1e642011-12-29 14:47:27 +08003303 if (ret2 || start >= end) {
3304 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003305 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003306 next_bitmap = true;
3307 goto next;
3308 }
3309
3310 bytes = min(bytes, end - start);
3311 if (bytes < minlen) {
3312 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003313 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003314 goto next;
3315 }
3316
3317 bitmap_clear_bits(ctl, entry, start, bytes);
3318 if (entry->bytes == 0)
3319 free_bitmap(ctl, entry);
3320
3321 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003322 trim_entry.start = start;
3323 trim_entry.bytes = bytes;
3324 list_add_tail(&trim_entry.list, &ctl->trimming_ranges);
3325 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003326
3327 ret = do_trimming(block_group, total_trimmed, start, bytes,
Filipe Manana55507ce2014-12-01 17:04:09 +00003328 start, bytes, &trim_entry);
Li Zefan7fe1e642011-12-29 14:47:27 +08003329 if (ret)
3330 break;
3331next:
3332 if (next_bitmap) {
3333 offset += BITS_PER_BITMAP * ctl->unit;
3334 } else {
3335 start += bytes;
3336 if (start >= offset + BITS_PER_BITMAP * ctl->unit)
3337 offset += BITS_PER_BITMAP * ctl->unit;
3338 }
3339
3340 if (fatal_signal_pending(current)) {
3341 ret = -ERESTARTSYS;
3342 break;
3343 }
3344
3345 cond_resched();
3346 }
3347
3348 return ret;
3349}
3350
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003351void btrfs_get_block_group_trimming(struct btrfs_block_group_cache *cache)
Li Zefan7fe1e642011-12-29 14:47:27 +08003352{
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003353 atomic_inc(&cache->trimming);
3354}
Li Zefan7fe1e642011-12-29 14:47:27 +08003355
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003356void btrfs_put_block_group_trimming(struct btrfs_block_group_cache *block_group)
3357{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003358 struct btrfs_fs_info *fs_info = block_group->fs_info;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003359 struct extent_map_tree *em_tree;
3360 struct extent_map *em;
3361 bool cleanup;
Li Zefan7fe1e642011-12-29 14:47:27 +08003362
Filipe Manana04216822014-11-27 21:14:15 +00003363 spin_lock(&block_group->lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003364 cleanup = (atomic_dec_and_test(&block_group->trimming) &&
3365 block_group->removed);
Filipe Manana04216822014-11-27 21:14:15 +00003366 spin_unlock(&block_group->lock);
3367
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003368 if (cleanup) {
David Sterba34441362016-10-04 19:34:27 +02003369 mutex_lock(&fs_info->chunk_mutex);
David Sterbac8bf1b62019-05-17 11:43:17 +02003370 em_tree = &fs_info->mapping_tree;
Filipe Manana04216822014-11-27 21:14:15 +00003371 write_lock(&em_tree->lock);
3372 em = lookup_extent_mapping(em_tree, block_group->key.objectid,
3373 1);
3374 BUG_ON(!em); /* logic error, can't happen */
3375 remove_extent_mapping(em_tree, em);
3376 write_unlock(&em_tree->lock);
David Sterba34441362016-10-04 19:34:27 +02003377 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana04216822014-11-27 21:14:15 +00003378
3379 /* once for us and once for the tree */
3380 free_extent_map(em);
3381 free_extent_map(em);
Filipe Manana946ddbe2014-12-01 17:04:40 +00003382
3383 /*
3384 * We've left one free space entry and other tasks trimming
3385 * this block group have left 1 entry each one. Free them.
3386 */
3387 __btrfs_remove_free_space_cache(block_group->free_space_ctl);
Filipe Manana04216822014-11-27 21:14:15 +00003388 }
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003389}
Li Dongyangf7039b12011-03-24 10:24:28 +00003390
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003391int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group,
3392 u64 *trimmed, u64 start, u64 end, u64 minlen)
3393{
3394 int ret;
3395
3396 *trimmed = 0;
3397
3398 spin_lock(&block_group->lock);
3399 if (block_group->removed) {
3400 spin_unlock(&block_group->lock);
3401 return 0;
3402 }
3403 btrfs_get_block_group_trimming(block_group);
3404 spin_unlock(&block_group->lock);
3405
3406 ret = trim_no_bitmap(block_group, trimmed, start, end, minlen);
3407 if (ret)
3408 goto out;
3409
3410 ret = trim_bitmaps(block_group, trimmed, start, end, minlen);
3411out:
3412 btrfs_put_block_group_trimming(block_group);
Li Dongyangf7039b12011-03-24 10:24:28 +00003413 return ret;
3414}
Li Zefan581bb052011-04-20 10:06:11 +08003415
3416/*
3417 * Find the left-most item in the cache tree, and then return the
3418 * smallest inode number in the item.
3419 *
3420 * Note: the returned inode number may not be the smallest one in
3421 * the tree, if the left-most item is a bitmap.
3422 */
3423u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root)
3424{
3425 struct btrfs_free_space_ctl *ctl = fs_root->free_ino_ctl;
3426 struct btrfs_free_space *entry = NULL;
3427 u64 ino = 0;
3428
3429 spin_lock(&ctl->tree_lock);
3430
3431 if (RB_EMPTY_ROOT(&ctl->free_space_offset))
3432 goto out;
3433
3434 entry = rb_entry(rb_first(&ctl->free_space_offset),
3435 struct btrfs_free_space, offset_index);
3436
3437 if (!entry->bitmap) {
3438 ino = entry->offset;
3439
3440 unlink_free_space(ctl, entry);
3441 entry->offset++;
3442 entry->bytes--;
3443 if (!entry->bytes)
3444 kmem_cache_free(btrfs_free_space_cachep, entry);
3445 else
3446 link_free_space(ctl, entry);
3447 } else {
3448 u64 offset = 0;
3449 u64 count = 1;
3450 int ret;
3451
Josef Bacik0584f712015-10-02 16:12:23 -04003452 ret = search_bitmap(ctl, entry, &offset, &count, true);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003453 /* Logic error; Should be empty if it can't find anything */
Josef Bacikb12d6862013-08-26 17:14:08 -04003454 ASSERT(!ret);
Li Zefan581bb052011-04-20 10:06:11 +08003455
3456 ino = offset;
3457 bitmap_clear_bits(ctl, entry, offset, 1);
3458 if (entry->bytes == 0)
3459 free_bitmap(ctl, entry);
3460 }
3461out:
3462 spin_unlock(&ctl->tree_lock);
3463
3464 return ino;
3465}
Li Zefan82d59022011-04-20 10:33:24 +08003466
3467struct inode *lookup_free_ino_inode(struct btrfs_root *root,
3468 struct btrfs_path *path)
3469{
3470 struct inode *inode = NULL;
3471
David Sterba57cdc8d2014-02-05 02:37:48 +01003472 spin_lock(&root->ino_cache_lock);
3473 if (root->ino_cache_inode)
3474 inode = igrab(root->ino_cache_inode);
3475 spin_unlock(&root->ino_cache_lock);
Li Zefan82d59022011-04-20 10:33:24 +08003476 if (inode)
3477 return inode;
3478
3479 inode = __lookup_free_space_inode(root, path, 0);
3480 if (IS_ERR(inode))
3481 return inode;
3482
David Sterba57cdc8d2014-02-05 02:37:48 +01003483 spin_lock(&root->ino_cache_lock);
David Sterba7841cb22011-05-31 18:07:27 +02003484 if (!btrfs_fs_closing(root->fs_info))
David Sterba57cdc8d2014-02-05 02:37:48 +01003485 root->ino_cache_inode = igrab(inode);
3486 spin_unlock(&root->ino_cache_lock);
Li Zefan82d59022011-04-20 10:33:24 +08003487
3488 return inode;
3489}
3490
3491int create_free_ino_inode(struct btrfs_root *root,
3492 struct btrfs_trans_handle *trans,
3493 struct btrfs_path *path)
3494{
3495 return __create_free_space_inode(root, trans, path,
3496 BTRFS_FREE_INO_OBJECTID, 0);
3497}
3498
3499int load_free_ino_cache(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
3500{
3501 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
3502 struct btrfs_path *path;
3503 struct inode *inode;
3504 int ret = 0;
3505 u64 root_gen = btrfs_root_generation(&root->root_item);
3506
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003507 if (!btrfs_test_opt(fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -04003508 return 0;
3509
Li Zefan82d59022011-04-20 10:33:24 +08003510 /*
3511 * If we're unmounting then just return, since this does a search on the
3512 * normal root and not the commit root and we could deadlock.
3513 */
David Sterba7841cb22011-05-31 18:07:27 +02003514 if (btrfs_fs_closing(fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08003515 return 0;
3516
3517 path = btrfs_alloc_path();
3518 if (!path)
3519 return 0;
3520
3521 inode = lookup_free_ino_inode(root, path);
3522 if (IS_ERR(inode))
3523 goto out;
3524
3525 if (root_gen != BTRFS_I(inode)->generation)
3526 goto out_put;
3527
3528 ret = __load_free_space_cache(root, inode, ctl, path, 0);
3529
3530 if (ret < 0)
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003531 btrfs_err(fs_info,
3532 "failed to load free ino cache for root %llu",
3533 root->root_key.objectid);
Li Zefan82d59022011-04-20 10:33:24 +08003534out_put:
3535 iput(inode);
3536out:
3537 btrfs_free_path(path);
3538 return ret;
3539}
3540
3541int btrfs_write_out_ino_cache(struct btrfs_root *root,
3542 struct btrfs_trans_handle *trans,
Filipe David Borba Manana53645a92013-09-20 14:43:28 +01003543 struct btrfs_path *path,
3544 struct inode *inode)
Li Zefan82d59022011-04-20 10:33:24 +08003545{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003546 struct btrfs_fs_info *fs_info = root->fs_info;
Li Zefan82d59022011-04-20 10:33:24 +08003547 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
Li Zefan82d59022011-04-20 10:33:24 +08003548 int ret;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003549 struct btrfs_io_ctl io_ctl;
Filipe Mananae43699d2015-05-05 15:21:27 +01003550 bool release_metadata = true;
Li Zefan82d59022011-04-20 10:33:24 +08003551
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003552 if (!btrfs_test_opt(fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -04003553 return 0;
3554
Chris Mason85db36c2015-04-23 08:02:49 -07003555 memset(&io_ctl, 0, sizeof(io_ctl));
David Sterba0e8d9312017-02-10 20:26:24 +01003556 ret = __btrfs_write_out_cache(root, inode, ctl, NULL, &io_ctl, trans);
Filipe Mananae43699d2015-05-05 15:21:27 +01003557 if (!ret) {
3558 /*
3559 * At this point writepages() didn't error out, so our metadata
3560 * reservation is released when the writeback finishes, at
3561 * inode.c:btrfs_finish_ordered_io(), regardless of it finishing
3562 * with or without an error.
3563 */
3564 release_metadata = false;
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003565 ret = btrfs_wait_cache_io_root(root, trans, &io_ctl, path);
Filipe Mananae43699d2015-05-05 15:21:27 +01003566 }
Chris Mason85db36c2015-04-23 08:02:49 -07003567
Josef Bacikc09544e2011-08-30 10:19:10 -04003568 if (ret) {
Filipe Mananae43699d2015-05-05 15:21:27 +01003569 if (release_metadata)
Nikolay Borisov691fa052017-02-20 13:50:42 +02003570 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08003571 inode->i_size, true);
Josef Bacikc09544e2011-08-30 10:19:10 -04003572#ifdef DEBUG
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003573 btrfs_err(fs_info,
3574 "failed to write free ino cache for root %llu",
3575 root->root_key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04003576#endif
3577 }
Li Zefan82d59022011-04-20 10:33:24 +08003578
Li Zefan82d59022011-04-20 10:33:24 +08003579 return ret;
3580}
Josef Bacik74255aa2013-03-15 09:47:08 -04003581
3582#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Josef Bacikdc11dd52013-08-14 15:05:12 -04003583/*
3584 * Use this if you need to make a bitmap or extent entry specifically, it
3585 * doesn't do any of the merging that add_free_space does, this acts a lot like
3586 * how the free space cache loading stuff works, so you can get really weird
3587 * configurations.
3588 */
3589int test_add_free_space_entry(struct btrfs_block_group_cache *cache,
3590 u64 offset, u64 bytes, bool bitmap)
Josef Bacik74255aa2013-03-15 09:47:08 -04003591{
Josef Bacikdc11dd52013-08-14 15:05:12 -04003592 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3593 struct btrfs_free_space *info = NULL, *bitmap_info;
3594 void *map = NULL;
3595 u64 bytes_added;
3596 int ret;
Josef Bacik74255aa2013-03-15 09:47:08 -04003597
Josef Bacikdc11dd52013-08-14 15:05:12 -04003598again:
3599 if (!info) {
3600 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
3601 if (!info)
3602 return -ENOMEM;
Josef Bacik74255aa2013-03-15 09:47:08 -04003603 }
3604
Josef Bacikdc11dd52013-08-14 15:05:12 -04003605 if (!bitmap) {
3606 spin_lock(&ctl->tree_lock);
3607 info->offset = offset;
3608 info->bytes = bytes;
Josef Bacikcef40482015-10-02 16:09:42 -04003609 info->max_extent_size = 0;
Josef Bacikdc11dd52013-08-14 15:05:12 -04003610 ret = link_free_space(ctl, info);
3611 spin_unlock(&ctl->tree_lock);
3612 if (ret)
3613 kmem_cache_free(btrfs_free_space_cachep, info);
3614 return ret;
3615 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003616
Josef Bacikdc11dd52013-08-14 15:05:12 -04003617 if (!map) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003618 map = kzalloc(PAGE_SIZE, GFP_NOFS);
Josef Bacikdc11dd52013-08-14 15:05:12 -04003619 if (!map) {
3620 kmem_cache_free(btrfs_free_space_cachep, info);
3621 return -ENOMEM;
3622 }
3623 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003624
Josef Bacikdc11dd52013-08-14 15:05:12 -04003625 spin_lock(&ctl->tree_lock);
3626 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3627 1, 0);
3628 if (!bitmap_info) {
3629 info->bitmap = map;
3630 map = NULL;
3631 add_new_bitmap(ctl, info, offset);
3632 bitmap_info = info;
Filipe Manana20005522014-08-29 13:35:13 +01003633 info = NULL;
Josef Bacikdc11dd52013-08-14 15:05:12 -04003634 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003635
Josef Bacikdc11dd52013-08-14 15:05:12 -04003636 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
Josef Bacikcef40482015-10-02 16:09:42 -04003637
Josef Bacikdc11dd52013-08-14 15:05:12 -04003638 bytes -= bytes_added;
3639 offset += bytes_added;
3640 spin_unlock(&ctl->tree_lock);
3641
3642 if (bytes)
3643 goto again;
3644
Filipe Manana20005522014-08-29 13:35:13 +01003645 if (info)
3646 kmem_cache_free(btrfs_free_space_cachep, info);
zhong jiangf8b00e02018-08-13 14:06:08 +08003647 kfree(map);
Josef Bacikdc11dd52013-08-14 15:05:12 -04003648 return 0;
Josef Bacik74255aa2013-03-15 09:47:08 -04003649}
3650
3651/*
3652 * Checks to see if the given range is in the free space cache. This is really
3653 * just used to check the absence of space, so if there is free space in the
3654 * range at all we will return 1.
3655 */
Josef Bacikdc11dd52013-08-14 15:05:12 -04003656int test_check_exists(struct btrfs_block_group_cache *cache,
3657 u64 offset, u64 bytes)
Josef Bacik74255aa2013-03-15 09:47:08 -04003658{
3659 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3660 struct btrfs_free_space *info;
3661 int ret = 0;
3662
3663 spin_lock(&ctl->tree_lock);
3664 info = tree_search_offset(ctl, offset, 0, 0);
3665 if (!info) {
3666 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3667 1, 0);
3668 if (!info)
3669 goto out;
3670 }
3671
3672have_info:
3673 if (info->bitmap) {
3674 u64 bit_off, bit_bytes;
3675 struct rb_node *n;
3676 struct btrfs_free_space *tmp;
3677
3678 bit_off = offset;
3679 bit_bytes = ctl->unit;
Josef Bacik0584f712015-10-02 16:12:23 -04003680 ret = search_bitmap(ctl, info, &bit_off, &bit_bytes, false);
Josef Bacik74255aa2013-03-15 09:47:08 -04003681 if (!ret) {
3682 if (bit_off == offset) {
3683 ret = 1;
3684 goto out;
3685 } else if (bit_off > offset &&
3686 offset + bytes > bit_off) {
3687 ret = 1;
3688 goto out;
3689 }
3690 }
3691
3692 n = rb_prev(&info->offset_index);
3693 while (n) {
3694 tmp = rb_entry(n, struct btrfs_free_space,
3695 offset_index);
3696 if (tmp->offset + tmp->bytes < offset)
3697 break;
3698 if (offset + bytes < tmp->offset) {
Feifei Xu5473e0c42016-06-01 19:18:23 +08003699 n = rb_prev(&tmp->offset_index);
Josef Bacik74255aa2013-03-15 09:47:08 -04003700 continue;
3701 }
3702 info = tmp;
3703 goto have_info;
3704 }
3705
3706 n = rb_next(&info->offset_index);
3707 while (n) {
3708 tmp = rb_entry(n, struct btrfs_free_space,
3709 offset_index);
3710 if (offset + bytes < tmp->offset)
3711 break;
3712 if (tmp->offset + tmp->bytes < offset) {
Feifei Xu5473e0c42016-06-01 19:18:23 +08003713 n = rb_next(&tmp->offset_index);
Josef Bacik74255aa2013-03-15 09:47:08 -04003714 continue;
3715 }
3716 info = tmp;
3717 goto have_info;
3718 }
3719
Filipe Manana20005522014-08-29 13:35:13 +01003720 ret = 0;
Josef Bacik74255aa2013-03-15 09:47:08 -04003721 goto out;
3722 }
3723
3724 if (info->offset == offset) {
3725 ret = 1;
3726 goto out;
3727 }
3728
3729 if (offset > info->offset && offset < info->offset + info->bytes)
3730 ret = 1;
3731out:
3732 spin_unlock(&ctl->tree_lock);
3733 return ret;
3734}
Josef Bacikdc11dd52013-08-14 15:05:12 -04003735#endif /* CONFIG_BTRFS_FS_RUN_SANITY_TESTS */