blob: 85cd874e7b48a2de6feed9fd6026c0f948f26490 [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();
David Sterba4c66e0d2019-10-03 19:09:35 +020081 inode = btrfs_iget_path(fs_info->sb, &location, root, path);
Filipe Manana4222ea72018-10-24 10:13:03 +010082 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 */
Josef Bacik2bd36e72019-08-22 15:14:33 -0400214 needed_bytes = btrfs_calc_insert_metadata_size(fs_info, 1) +
215 btrfs_calc_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--;
Christophe Leroy3acd4852019-08-21 15:05:55 +0000768 e->bitmap = kmem_cache_zalloc(
769 btrfs_free_space_bitmap_cachep, GFP_NOFS);
Josef Bacika67509c2011-10-05 15:18:58 -0400770 if (!e->bitmap) {
771 kmem_cache_free(
772 btrfs_free_space_cachep, e);
773 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400774 }
Josef Bacika67509c2011-10-05 15:18:58 -0400775 spin_lock(&ctl->tree_lock);
776 ret = link_free_space(ctl, e);
777 ctl->total_bitmaps++;
778 ctl->op->recalc_thresholds(ctl);
779 spin_unlock(&ctl->tree_lock);
780 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400781 btrfs_err(fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000782 "Duplicate entries in free space cache, dumping");
Josef Bacika67509c2011-10-05 15:18:58 -0400783 kmem_cache_free(btrfs_free_space_cachep, e);
784 goto free_cache;
785 }
786 list_add_tail(&e->list, &bitmaps);
Josef Bacik9d66e232010-08-25 16:54:15 -0400787 }
788
Josef Bacika67509c2011-10-05 15:18:58 -0400789 num_entries--;
Josef Bacik9d66e232010-08-25 16:54:15 -0400790 }
791
Josef Bacik2f120c02011-11-10 20:45:05 -0500792 io_ctl_unmap_page(&io_ctl);
793
Josef Bacika67509c2011-10-05 15:18:58 -0400794 /*
795 * We add the bitmaps at the end of the entries in order that
796 * the bitmap entries are added to the cache.
797 */
798 list_for_each_entry_safe(e, n, &bitmaps, list) {
799 list_del_init(&e->list);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400800 ret = io_ctl_read_bitmap(&io_ctl, e);
801 if (ret)
802 goto free_cache;
Josef Bacika67509c2011-10-05 15:18:58 -0400803 }
804
805 io_ctl_drop_pages(&io_ctl);
Josef Bacikcd023e72012-05-14 10:06:40 -0400806 merge_space_tree(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400807 ret = 1;
808out:
Josef Bacika67509c2011-10-05 15:18:58 -0400809 io_ctl_free(&io_ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400810 return ret;
Josef Bacik9d66e232010-08-25 16:54:15 -0400811free_cache:
Josef Bacika67509c2011-10-05 15:18:58 -0400812 io_ctl_drop_pages(&io_ctl);
Li Zefan0414efa2011-04-20 10:20:14 +0800813 __btrfs_remove_free_space_cache(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400814 goto out;
815}
816
David Sterbabb6cb1c2019-03-20 13:47:15 +0100817int load_free_space_cache(struct btrfs_block_group_cache *block_group)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400818{
David Sterbabb6cb1c2019-03-20 13:47:15 +0100819 struct btrfs_fs_info *fs_info = block_group->fs_info;
Li Zefan34d52cb2011-03-29 13:46:06 +0800820 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan0414efa2011-04-20 10:20:14 +0800821 struct inode *inode;
822 struct btrfs_path *path;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400823 int ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800824 bool matched;
825 u64 used = btrfs_block_group_used(&block_group->item);
826
827 /*
Li Zefan0414efa2011-04-20 10:20:14 +0800828 * If this block group has been marked to be cleared for one reason or
829 * another then we can't trust the on disk cache, so just return.
830 */
831 spin_lock(&block_group->lock);
832 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
833 spin_unlock(&block_group->lock);
834 return 0;
835 }
836 spin_unlock(&block_group->lock);
837
838 path = btrfs_alloc_path();
839 if (!path)
840 return 0;
Josef Bacikd53ba472012-04-12 16:03:57 -0400841 path->search_commit_root = 1;
842 path->skip_locking = 1;
Li Zefan0414efa2011-04-20 10:20:14 +0800843
Filipe Manana4222ea72018-10-24 10:13:03 +0100844 /*
845 * We must pass a path with search_commit_root set to btrfs_iget in
846 * order to avoid a deadlock when allocating extents for the tree root.
847 *
848 * When we are COWing an extent buffer from the tree root, when looking
849 * for a free extent, at extent-tree.c:find_free_extent(), we can find
850 * block group without its free space cache loaded. When we find one
851 * we must load its space cache which requires reading its free space
852 * cache's inode item from the root tree. If this inode item is located
853 * in the same leaf that we started COWing before, then we end up in
854 * deadlock on the extent buffer (trying to read lock it when we
855 * previously write locked it).
856 *
857 * It's safe to read the inode item using the commit root because
858 * block groups, once loaded, stay in memory forever (until they are
859 * removed) as well as their space caches once loaded. New block groups
860 * once created get their ->cached field set to BTRFS_CACHE_FINISHED so
861 * we will never try to read their inode item while the fs is mounted.
862 */
David Sterba7949f332019-03-20 13:40:19 +0100863 inode = lookup_free_space_inode(block_group, path);
Li Zefan0414efa2011-04-20 10:20:14 +0800864 if (IS_ERR(inode)) {
865 btrfs_free_path(path);
866 return 0;
867 }
868
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400869 /* We may have converted the inode and made the cache invalid. */
870 spin_lock(&block_group->lock);
871 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
872 spin_unlock(&block_group->lock);
Tsutomu Itoha7e221e2012-02-14 17:12:23 +0900873 btrfs_free_path(path);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400874 goto out;
875 }
876 spin_unlock(&block_group->lock);
877
Li Zefan0414efa2011-04-20 10:20:14 +0800878 ret = __load_free_space_cache(fs_info->tree_root, inode, ctl,
879 path, block_group->key.objectid);
880 btrfs_free_path(path);
881 if (ret <= 0)
882 goto out;
883
884 spin_lock(&ctl->tree_lock);
885 matched = (ctl->free_space == (block_group->key.offset - used -
886 block_group->bytes_super));
887 spin_unlock(&ctl->tree_lock);
888
889 if (!matched) {
890 __btrfs_remove_free_space_cache(ctl);
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400891 btrfs_warn(fs_info,
892 "block group %llu has wrong amount of free space",
893 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800894 ret = -1;
895 }
896out:
897 if (ret < 0) {
898 /* This cache is bogus, make sure it gets cleared */
899 spin_lock(&block_group->lock);
900 block_group->disk_cache_state = BTRFS_DC_CLEAR;
901 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +0800902 ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800903
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400904 btrfs_warn(fs_info,
905 "failed to load free space cache for block group %llu, rebuilding it now",
906 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800907 }
908
909 iput(inode);
910 return ret;
911}
912
Chris Masond4452bc2014-05-19 20:47:56 -0700913static noinline_for_stack
Chris Mason4c6d1d82015-04-06 13:17:20 -0700914int write_cache_extent_entries(struct btrfs_io_ctl *io_ctl,
Chris Masond4452bc2014-05-19 20:47:56 -0700915 struct btrfs_free_space_ctl *ctl,
916 struct btrfs_block_group_cache *block_group,
917 int *entries, int *bitmaps,
918 struct list_head *bitmap_list)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400919{
Josef Bacikc09544e2011-08-30 10:19:10 -0400920 int ret;
Chris Masond4452bc2014-05-19 20:47:56 -0700921 struct btrfs_free_cluster *cluster = NULL;
Chris Mason1bbc6212015-04-06 12:46:08 -0700922 struct btrfs_free_cluster *cluster_locked = NULL;
Chris Masond4452bc2014-05-19 20:47:56 -0700923 struct rb_node *node = rb_first(&ctl->free_space_offset);
Filipe Manana55507ce2014-12-01 17:04:09 +0000924 struct btrfs_trim_range *trim_entry;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400925
Josef Bacik43be2142011-04-01 14:55:00 +0000926 /* Get the cluster for this block_group if it exists */
Chris Masond4452bc2014-05-19 20:47:56 -0700927 if (block_group && !list_empty(&block_group->cluster_list)) {
Josef Bacik43be2142011-04-01 14:55:00 +0000928 cluster = list_entry(block_group->cluster_list.next,
929 struct btrfs_free_cluster,
930 block_group_list);
Chris Masond4452bc2014-05-19 20:47:56 -0700931 }
Josef Bacik43be2142011-04-01 14:55:00 +0000932
Josef Bacikf75b1302011-10-05 10:00:18 -0400933 if (!node && cluster) {
Chris Mason1bbc6212015-04-06 12:46:08 -0700934 cluster_locked = cluster;
935 spin_lock(&cluster_locked->lock);
Josef Bacikf75b1302011-10-05 10:00:18 -0400936 node = rb_first(&cluster->root);
937 cluster = NULL;
938 }
939
Josef Bacik0cb59c92010-07-02 12:14:14 -0400940 /* Write out the extent entries */
Josef Bacika67509c2011-10-05 15:18:58 -0400941 while (node) {
942 struct btrfs_free_space *e;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400943
Josef Bacika67509c2011-10-05 15:18:58 -0400944 e = rb_entry(node, struct btrfs_free_space, offset_index);
Chris Masond4452bc2014-05-19 20:47:56 -0700945 *entries += 1;
Josef Bacik43be2142011-04-01 14:55:00 +0000946
Chris Masond4452bc2014-05-19 20:47:56 -0700947 ret = io_ctl_add_entry(io_ctl, e->offset, e->bytes,
Josef Bacika67509c2011-10-05 15:18:58 -0400948 e->bitmap);
949 if (ret)
Chris Masond4452bc2014-05-19 20:47:56 -0700950 goto fail;
Josef Bacika67509c2011-10-05 15:18:58 -0400951
952 if (e->bitmap) {
Chris Masond4452bc2014-05-19 20:47:56 -0700953 list_add_tail(&e->list, bitmap_list);
954 *bitmaps += 1;
Josef Bacika67509c2011-10-05 15:18:58 -0400955 }
956 node = rb_next(node);
957 if (!node && cluster) {
958 node = rb_first(&cluster->root);
Chris Mason1bbc6212015-04-06 12:46:08 -0700959 cluster_locked = cluster;
960 spin_lock(&cluster_locked->lock);
Josef Bacika67509c2011-10-05 15:18:58 -0400961 cluster = NULL;
962 }
963 }
Chris Mason1bbc6212015-04-06 12:46:08 -0700964 if (cluster_locked) {
965 spin_unlock(&cluster_locked->lock);
966 cluster_locked = NULL;
967 }
Filipe Manana55507ce2014-12-01 17:04:09 +0000968
969 /*
970 * Make sure we don't miss any range that was removed from our rbtree
971 * because trimming is running. Otherwise after a umount+mount (or crash
972 * after committing the transaction) we would leak free space and get
973 * an inconsistent free space cache report from fsck.
974 */
975 list_for_each_entry(trim_entry, &ctl->trimming_ranges, list) {
976 ret = io_ctl_add_entry(io_ctl, trim_entry->start,
977 trim_entry->bytes, NULL);
978 if (ret)
979 goto fail;
980 *entries += 1;
981 }
982
Chris Masond4452bc2014-05-19 20:47:56 -0700983 return 0;
984fail:
Chris Mason1bbc6212015-04-06 12:46:08 -0700985 if (cluster_locked)
986 spin_unlock(&cluster_locked->lock);
Chris Masond4452bc2014-05-19 20:47:56 -0700987 return -ENOSPC;
988}
989
990static noinline_for_stack int
991update_cache_item(struct btrfs_trans_handle *trans,
992 struct btrfs_root *root,
993 struct inode *inode,
994 struct btrfs_path *path, u64 offset,
995 int entries, int bitmaps)
996{
997 struct btrfs_key key;
998 struct btrfs_free_space_header *header;
999 struct extent_buffer *leaf;
1000 int ret;
1001
1002 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
1003 key.offset = offset;
1004 key.type = 0;
1005
1006 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1007 if (ret < 0) {
1008 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
Omar Sandovale1821632019-08-15 14:04:04 -07001009 EXTENT_DELALLOC, 0, 0, NULL);
Chris Masond4452bc2014-05-19 20:47:56 -07001010 goto fail;
1011 }
1012 leaf = path->nodes[0];
1013 if (ret > 0) {
1014 struct btrfs_key found_key;
1015 ASSERT(path->slots[0]);
1016 path->slots[0]--;
1017 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1018 if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID ||
1019 found_key.offset != offset) {
1020 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0,
Omar Sandovale1821632019-08-15 14:04:04 -07001021 inode->i_size - 1, EXTENT_DELALLOC, 0,
1022 0, 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,
Omar Sandovale1821632019-08-15 14:04:04 -07001118 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);
Christophe Leroy3acd4852019-08-21 15:05:55 +00001885 kmem_cache_free(btrfs_free_space_bitmap_cachep, 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 */
Christophe Leroy3acd4852019-08-21 15:05:55 +00002139 info->bitmap = kmem_cache_zalloc(btrfs_free_space_bitmap_cachep,
2140 GFP_NOFS);
Li Zefan34d52cb2011-03-29 13:46:06 +08002141 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002142 if (!info->bitmap) {
2143 ret = -ENOMEM;
2144 goto out;
2145 }
2146 goto again;
2147 }
2148
2149out:
2150 if (info) {
Christophe Leroy3acd4852019-08-21 15:05:55 +00002151 if (info->bitmap)
2152 kmem_cache_free(btrfs_free_space_bitmap_cachep,
2153 info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05002154 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04002155 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002156
2157 return ret;
2158}
2159
Chris Mason945d8962011-05-22 12:33:42 -04002160static bool try_merge_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08002161 struct btrfs_free_space *info, bool update_stat)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002162{
Li Zefan120d66e2010-11-09 14:56:50 +08002163 struct btrfs_free_space *left_info;
2164 struct btrfs_free_space *right_info;
2165 bool merged = false;
2166 u64 offset = info->offset;
2167 u64 bytes = info->bytes;
Josef Bacik6226cb02009-04-03 10:14:18 -04002168
Josef Bacik0f9dd462008-09-23 13:14:11 -04002169 /*
2170 * first we want to see if there is free space adjacent to the range we
2171 * are adding, if there is remove that struct and add a new one to
2172 * cover the entire range
2173 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002174 right_info = tree_search_offset(ctl, offset + bytes, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04002175 if (right_info && rb_prev(&right_info->offset_index))
2176 left_info = rb_entry(rb_prev(&right_info->offset_index),
2177 struct btrfs_free_space, offset_index);
2178 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002179 left_info = tree_search_offset(ctl, offset - 1, 0, 0);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002180
Josef Bacik96303082009-07-13 21:29:25 -04002181 if (right_info && !right_info->bitmap) {
Li Zefanf333adb2010-11-09 14:57:39 +08002182 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08002183 unlink_free_space(ctl, right_info);
Li Zefanf333adb2010-11-09 14:57:39 +08002184 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002185 __unlink_free_space(ctl, right_info);
Josef Bacik6226cb02009-04-03 10:14:18 -04002186 info->bytes += right_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05002187 kmem_cache_free(btrfs_free_space_cachep, right_info);
Li Zefan120d66e2010-11-09 14:56:50 +08002188 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002189 }
2190
Josef Bacik96303082009-07-13 21:29:25 -04002191 if (left_info && !left_info->bitmap &&
2192 left_info->offset + left_info->bytes == offset) {
Li Zefanf333adb2010-11-09 14:57:39 +08002193 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08002194 unlink_free_space(ctl, left_info);
Li Zefanf333adb2010-11-09 14:57:39 +08002195 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002196 __unlink_free_space(ctl, left_info);
Josef Bacik6226cb02009-04-03 10:14:18 -04002197 info->offset = left_info->offset;
2198 info->bytes += left_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05002199 kmem_cache_free(btrfs_free_space_cachep, left_info);
Li Zefan120d66e2010-11-09 14:56:50 +08002200 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002201 }
2202
Li Zefan120d66e2010-11-09 14:56:50 +08002203 return merged;
2204}
2205
Filipe Manana20005522014-08-29 13:35:13 +01002206static bool steal_from_bitmap_to_end(struct btrfs_free_space_ctl *ctl,
2207 struct btrfs_free_space *info,
2208 bool update_stat)
2209{
2210 struct btrfs_free_space *bitmap;
2211 unsigned long i;
2212 unsigned long j;
2213 const u64 end = info->offset + info->bytes;
2214 const u64 bitmap_offset = offset_to_bitmap(ctl, end);
2215 u64 bytes;
2216
2217 bitmap = tree_search_offset(ctl, bitmap_offset, 1, 0);
2218 if (!bitmap)
2219 return false;
2220
2221 i = offset_to_bit(bitmap->offset, ctl->unit, end);
2222 j = find_next_zero_bit(bitmap->bitmap, BITS_PER_BITMAP, i);
2223 if (j == i)
2224 return false;
2225 bytes = (j - i) * ctl->unit;
2226 info->bytes += bytes;
2227
2228 if (update_stat)
2229 bitmap_clear_bits(ctl, bitmap, end, bytes);
2230 else
2231 __bitmap_clear_bits(ctl, bitmap, end, bytes);
2232
2233 if (!bitmap->bytes)
2234 free_bitmap(ctl, bitmap);
2235
2236 return true;
2237}
2238
2239static bool steal_from_bitmap_to_front(struct btrfs_free_space_ctl *ctl,
2240 struct btrfs_free_space *info,
2241 bool update_stat)
2242{
2243 struct btrfs_free_space *bitmap;
2244 u64 bitmap_offset;
2245 unsigned long i;
2246 unsigned long j;
2247 unsigned long prev_j;
2248 u64 bytes;
2249
2250 bitmap_offset = offset_to_bitmap(ctl, info->offset);
2251 /* If we're on a boundary, try the previous logical bitmap. */
2252 if (bitmap_offset == info->offset) {
2253 if (info->offset == 0)
2254 return false;
2255 bitmap_offset = offset_to_bitmap(ctl, info->offset - 1);
2256 }
2257
2258 bitmap = tree_search_offset(ctl, bitmap_offset, 1, 0);
2259 if (!bitmap)
2260 return false;
2261
2262 i = offset_to_bit(bitmap->offset, ctl->unit, info->offset) - 1;
2263 j = 0;
2264 prev_j = (unsigned long)-1;
2265 for_each_clear_bit_from(j, bitmap->bitmap, BITS_PER_BITMAP) {
2266 if (j > i)
2267 break;
2268 prev_j = j;
2269 }
2270 if (prev_j == i)
2271 return false;
2272
2273 if (prev_j == (unsigned long)-1)
2274 bytes = (i + 1) * ctl->unit;
2275 else
2276 bytes = (i - prev_j) * ctl->unit;
2277
2278 info->offset -= bytes;
2279 info->bytes += bytes;
2280
2281 if (update_stat)
2282 bitmap_clear_bits(ctl, bitmap, info->offset, bytes);
2283 else
2284 __bitmap_clear_bits(ctl, bitmap, info->offset, bytes);
2285
2286 if (!bitmap->bytes)
2287 free_bitmap(ctl, bitmap);
2288
2289 return true;
2290}
2291
2292/*
2293 * We prefer always to allocate from extent entries, both for clustered and
2294 * non-clustered allocation requests. So when attempting to add a new extent
2295 * entry, try to see if there's adjacent free space in bitmap entries, and if
2296 * there is, migrate that space from the bitmaps to the extent.
2297 * Like this we get better chances of satisfying space allocation requests
2298 * because we attempt to satisfy them based on a single cache entry, and never
2299 * on 2 or more entries - even if the entries represent a contiguous free space
2300 * region (e.g. 1 extent entry + 1 bitmap entry starting where the extent entry
2301 * ends).
2302 */
2303static void steal_from_bitmap(struct btrfs_free_space_ctl *ctl,
2304 struct btrfs_free_space *info,
2305 bool update_stat)
2306{
2307 /*
2308 * Only work with disconnected entries, as we can change their offset,
2309 * and must be extent entries.
2310 */
2311 ASSERT(!info->bitmap);
2312 ASSERT(RB_EMPTY_NODE(&info->offset_index));
2313
2314 if (ctl->total_bitmaps > 0) {
2315 bool stole_end;
2316 bool stole_front = false;
2317
2318 stole_end = steal_from_bitmap_to_end(ctl, info, update_stat);
2319 if (ctl->total_bitmaps > 0)
2320 stole_front = steal_from_bitmap_to_front(ctl, info,
2321 update_stat);
2322
2323 if (stole_end || stole_front)
2324 try_merge_free_space(ctl, info, update_stat);
2325 }
2326}
2327
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002328int __btrfs_add_free_space(struct btrfs_fs_info *fs_info,
2329 struct btrfs_free_space_ctl *ctl,
Li Zefan581bb052011-04-20 10:06:11 +08002330 u64 offset, u64 bytes)
Li Zefan120d66e2010-11-09 14:56:50 +08002331{
2332 struct btrfs_free_space *info;
2333 int ret = 0;
2334
Josef Bacikdc89e982011-01-28 17:05:48 -05002335 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
Li Zefan120d66e2010-11-09 14:56:50 +08002336 if (!info)
2337 return -ENOMEM;
2338
2339 info->offset = offset;
2340 info->bytes = bytes;
Filipe Manana20005522014-08-29 13:35:13 +01002341 RB_CLEAR_NODE(&info->offset_index);
Li Zefan120d66e2010-11-09 14:56:50 +08002342
Li Zefan34d52cb2011-03-29 13:46:06 +08002343 spin_lock(&ctl->tree_lock);
Li Zefan120d66e2010-11-09 14:56:50 +08002344
Li Zefan34d52cb2011-03-29 13:46:06 +08002345 if (try_merge_free_space(ctl, info, true))
Li Zefan120d66e2010-11-09 14:56:50 +08002346 goto link;
2347
2348 /*
2349 * There was no extent directly to the left or right of this new
2350 * extent then we know we're going to have to allocate a new extent, so
2351 * before we do that see if we need to drop this into a bitmap
2352 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002353 ret = insert_into_bitmap(ctl, info);
Li Zefan120d66e2010-11-09 14:56:50 +08002354 if (ret < 0) {
2355 goto out;
2356 } else if (ret) {
2357 ret = 0;
2358 goto out;
2359 }
2360link:
Filipe Manana20005522014-08-29 13:35:13 +01002361 /*
2362 * Only steal free space from adjacent bitmaps if we're sure we're not
2363 * going to add the new free space to existing bitmap entries - because
2364 * that would mean unnecessary work that would be reverted. Therefore
2365 * attempt to steal space from bitmaps if we're adding an extent entry.
2366 */
2367 steal_from_bitmap(ctl, info, true);
2368
Li Zefan34d52cb2011-03-29 13:46:06 +08002369 ret = link_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002370 if (ret)
Josef Bacikdc89e982011-01-28 17:05:48 -05002371 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04002372out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002373 spin_unlock(&ctl->tree_lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04002374
Josef Bacik0f9dd462008-09-23 13:14:11 -04002375 if (ret) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002376 btrfs_crit(fs_info, "unable to add free space :%d", ret);
Josef Bacikb12d6862013-08-26 17:14:08 -04002377 ASSERT(ret != -EEXIST);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002378 }
2379
Josef Bacik0f9dd462008-09-23 13:14:11 -04002380 return ret;
2381}
2382
Josef Bacik478b4d92019-06-20 15:37:43 -04002383int btrfs_add_free_space(struct btrfs_block_group_cache *block_group,
2384 u64 bytenr, u64 size)
2385{
2386 return __btrfs_add_free_space(block_group->fs_info,
2387 block_group->free_space_ctl,
2388 bytenr, size);
2389}
2390
Josef Bacik6226cb02009-04-03 10:14:18 -04002391int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
2392 u64 offset, u64 bytes)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002393{
Li Zefan34d52cb2011-03-29 13:46:06 +08002394 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002395 struct btrfs_free_space *info;
Josef Bacikb0175112012-12-18 11:39:19 -05002396 int ret;
2397 bool re_search = false;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002398
Li Zefan34d52cb2011-03-29 13:46:06 +08002399 spin_lock(&ctl->tree_lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04002400
Josef Bacik96303082009-07-13 21:29:25 -04002401again:
Josef Bacikb0175112012-12-18 11:39:19 -05002402 ret = 0;
Josef Bacikbdb7d302012-06-27 15:10:56 -04002403 if (!bytes)
2404 goto out_lock;
2405
Li Zefan34d52cb2011-03-29 13:46:06 +08002406 info = tree_search_offset(ctl, offset, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04002407 if (!info) {
Josef Bacik6606bb92009-07-31 11:03:58 -04002408 /*
2409 * oops didn't find an extent that matched the space we wanted
2410 * to remove, look for a bitmap instead
2411 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002412 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik6606bb92009-07-31 11:03:58 -04002413 1, 0);
2414 if (!info) {
Josef Bacikb0175112012-12-18 11:39:19 -05002415 /*
2416 * If we found a partial bit of our free space in a
2417 * bitmap but then couldn't find the other part this may
2418 * be a problem, so WARN about it.
Chris Mason24a70312011-11-21 09:39:11 -05002419 */
Josef Bacikb0175112012-12-18 11:39:19 -05002420 WARN_ON(re_search);
Josef Bacik6606bb92009-07-31 11:03:58 -04002421 goto out_lock;
2422 }
Josef Bacik96303082009-07-13 21:29:25 -04002423 }
2424
Josef Bacikb0175112012-12-18 11:39:19 -05002425 re_search = false;
Josef Bacikbdb7d302012-06-27 15:10:56 -04002426 if (!info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002427 unlink_free_space(ctl, info);
Josef Bacikbdb7d302012-06-27 15:10:56 -04002428 if (offset == info->offset) {
2429 u64 to_free = min(bytes, info->bytes);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002430
Josef Bacikbdb7d302012-06-27 15:10:56 -04002431 info->bytes -= to_free;
2432 info->offset += to_free;
2433 if (info->bytes) {
2434 ret = link_free_space(ctl, info);
2435 WARN_ON(ret);
2436 } else {
2437 kmem_cache_free(btrfs_free_space_cachep, info);
2438 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002439
Josef Bacikbdb7d302012-06-27 15:10:56 -04002440 offset += to_free;
2441 bytes -= to_free;
2442 goto again;
2443 } else {
2444 u64 old_end = info->bytes + info->offset;
Chris Mason9b49c9b2008-09-24 11:23:25 -04002445
Josef Bacikbdb7d302012-06-27 15:10:56 -04002446 info->bytes = offset - info->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002447 ret = link_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04002448 WARN_ON(ret);
2449 if (ret)
2450 goto out_lock;
Josef Bacik96303082009-07-13 21:29:25 -04002451
Josef Bacikbdb7d302012-06-27 15:10:56 -04002452 /* Not enough bytes in this entry to satisfy us */
2453 if (old_end < offset + bytes) {
2454 bytes -= old_end - offset;
2455 offset = old_end;
2456 goto again;
2457 } else if (old_end == offset + bytes) {
2458 /* all done */
2459 goto out_lock;
2460 }
2461 spin_unlock(&ctl->tree_lock);
2462
2463 ret = btrfs_add_free_space(block_group, offset + bytes,
2464 old_end - (offset + bytes));
2465 WARN_ON(ret);
2466 goto out;
2467 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002468 }
Josef Bacik96303082009-07-13 21:29:25 -04002469
Li Zefan34d52cb2011-03-29 13:46:06 +08002470 ret = remove_from_bitmap(ctl, info, &offset, &bytes);
Josef Bacikb0175112012-12-18 11:39:19 -05002471 if (ret == -EAGAIN) {
2472 re_search = true;
Josef Bacik96303082009-07-13 21:29:25 -04002473 goto again;
Josef Bacikb0175112012-12-18 11:39:19 -05002474 }
Josef Bacik96303082009-07-13 21:29:25 -04002475out_lock:
Li Zefan34d52cb2011-03-29 13:46:06 +08002476 spin_unlock(&ctl->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002477out:
Josef Bacik25179202008-10-29 14:49:05 -04002478 return ret;
2479}
2480
Josef Bacik0f9dd462008-09-23 13:14:11 -04002481void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
2482 u64 bytes)
2483{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002484 struct btrfs_fs_info *fs_info = block_group->fs_info;
Li Zefan34d52cb2011-03-29 13:46:06 +08002485 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002486 struct btrfs_free_space *info;
2487 struct rb_node *n;
2488 int count = 0;
2489
Filipe Manana9084cb62018-10-22 10:43:06 +01002490 spin_lock(&ctl->tree_lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08002491 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04002492 info = rb_entry(n, struct btrfs_free_space, offset_index);
Liu Bof6175ef2012-07-06 03:31:36 -06002493 if (info->bytes >= bytes && !block_group->ro)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002494 count++;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002495 btrfs_crit(fs_info, "entry offset %llu, bytes %llu, bitmap %s",
Frank Holtonefe120a2013-12-20 11:37:06 -05002496 info->offset, info->bytes,
Josef Bacik96303082009-07-13 21:29:25 -04002497 (info->bitmap) ? "yes" : "no");
Josef Bacik0f9dd462008-09-23 13:14:11 -04002498 }
Filipe Manana9084cb62018-10-22 10:43:06 +01002499 spin_unlock(&ctl->tree_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002500 btrfs_info(fs_info, "block group has cluster?: %s",
Josef Bacik96303082009-07-13 21:29:25 -04002501 list_empty(&block_group->cluster_list) ? "no" : "yes");
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002502 btrfs_info(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002503 "%d blocks of free space at or bigger than bytes is", count);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002504}
2505
Li Zefan34d52cb2011-03-29 13:46:06 +08002506void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002507{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002508 struct btrfs_fs_info *fs_info = block_group->fs_info;
Li Zefan34d52cb2011-03-29 13:46:06 +08002509 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002510
Li Zefan34d52cb2011-03-29 13:46:06 +08002511 spin_lock_init(&ctl->tree_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002512 ctl->unit = fs_info->sectorsize;
Li Zefan34d52cb2011-03-29 13:46:06 +08002513 ctl->start = block_group->key.objectid;
2514 ctl->private = block_group;
2515 ctl->op = &free_space_op;
Filipe Manana55507ce2014-12-01 17:04:09 +00002516 INIT_LIST_HEAD(&ctl->trimming_ranges);
2517 mutex_init(&ctl->cache_writeout_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002518
Li Zefan34d52cb2011-03-29 13:46:06 +08002519 /*
2520 * we only want to have 32k of ram per block group for keeping
2521 * track of free space, and if we pass 1/2 of that we want to
2522 * start converting things over to using bitmaps
2523 */
Byongho Leeee221842015-12-15 01:42:10 +09002524 ctl->extents_thresh = (SZ_32K / 2) / sizeof(struct btrfs_free_space);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002525}
2526
Chris Masonfa9c0d792009-04-03 09:47:43 -04002527/*
2528 * for a given cluster, put all of its extents back into the free
2529 * space cache. If the block group passed doesn't match the block group
2530 * pointed to by the cluster, someone else raced in and freed the
2531 * cluster already. In that case, we just return without changing anything
2532 */
2533static int
2534__btrfs_return_cluster_to_free_space(
2535 struct btrfs_block_group_cache *block_group,
2536 struct btrfs_free_cluster *cluster)
2537{
Li Zefan34d52cb2011-03-29 13:46:06 +08002538 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002539 struct btrfs_free_space *entry;
2540 struct rb_node *node;
2541
2542 spin_lock(&cluster->lock);
2543 if (cluster->block_group != block_group)
2544 goto out;
2545
Josef Bacik96303082009-07-13 21:29:25 -04002546 cluster->block_group = NULL;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002547 cluster->window_start = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002548 list_del_init(&cluster->block_group_list);
Josef Bacik96303082009-07-13 21:29:25 -04002549
Chris Masonfa9c0d792009-04-03 09:47:43 -04002550 node = rb_first(&cluster->root);
Josef Bacik96303082009-07-13 21:29:25 -04002551 while (node) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002552 bool bitmap;
2553
Chris Masonfa9c0d792009-04-03 09:47:43 -04002554 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2555 node = rb_next(&entry->offset_index);
2556 rb_erase(&entry->offset_index, &cluster->root);
Filipe Manana20005522014-08-29 13:35:13 +01002557 RB_CLEAR_NODE(&entry->offset_index);
Josef Bacik4e69b592011-03-21 10:11:24 -04002558
2559 bitmap = (entry->bitmap != NULL);
Filipe Manana20005522014-08-29 13:35:13 +01002560 if (!bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002561 try_merge_free_space(ctl, entry, false);
Filipe Manana20005522014-08-29 13:35:13 +01002562 steal_from_bitmap(ctl, entry, false);
2563 }
Li Zefan34d52cb2011-03-29 13:46:06 +08002564 tree_insert_offset(&ctl->free_space_offset,
Josef Bacik4e69b592011-03-21 10:11:24 -04002565 entry->offset, &entry->offset_index, bitmap);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002566 }
Eric Paris6bef4d32010-02-23 19:43:04 +00002567 cluster->root = RB_ROOT;
Josef Bacik96303082009-07-13 21:29:25 -04002568
Chris Masonfa9c0d792009-04-03 09:47:43 -04002569out:
2570 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002571 btrfs_put_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002572 return 0;
2573}
2574
Eric Sandeen48a3b632013-04-25 20:41:01 +00002575static void __btrfs_remove_free_space_cache_locked(
2576 struct btrfs_free_space_ctl *ctl)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002577{
2578 struct btrfs_free_space *info;
2579 struct rb_node *node;
Li Zefan581bb052011-04-20 10:06:11 +08002580
Li Zefan581bb052011-04-20 10:06:11 +08002581 while ((node = rb_last(&ctl->free_space_offset)) != NULL) {
2582 info = rb_entry(node, struct btrfs_free_space, offset_index);
Josef Bacik9b90f512011-06-24 16:02:51 +00002583 if (!info->bitmap) {
2584 unlink_free_space(ctl, info);
2585 kmem_cache_free(btrfs_free_space_cachep, info);
2586 } else {
2587 free_bitmap(ctl, info);
2588 }
David Sterba351810c2015-01-08 15:20:54 +01002589
2590 cond_resched_lock(&ctl->tree_lock);
Li Zefan581bb052011-04-20 10:06:11 +08002591 }
Chris Mason09655372011-05-21 09:27:38 -04002592}
2593
2594void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl)
2595{
2596 spin_lock(&ctl->tree_lock);
2597 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan581bb052011-04-20 10:06:11 +08002598 spin_unlock(&ctl->tree_lock);
2599}
2600
Josef Bacik0f9dd462008-09-23 13:14:11 -04002601void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group)
2602{
Li Zefan34d52cb2011-03-29 13:46:06 +08002603 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002604 struct btrfs_free_cluster *cluster;
Josef Bacik96303082009-07-13 21:29:25 -04002605 struct list_head *head;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002606
Li Zefan34d52cb2011-03-29 13:46:06 +08002607 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002608 while ((head = block_group->cluster_list.next) !=
2609 &block_group->cluster_list) {
2610 cluster = list_entry(head, struct btrfs_free_cluster,
2611 block_group_list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002612
2613 WARN_ON(cluster->block_group != block_group);
2614 __btrfs_return_cluster_to_free_space(block_group, cluster);
David Sterba351810c2015-01-08 15:20:54 +01002615
2616 cond_resched_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002617 }
Chris Mason09655372011-05-21 09:27:38 -04002618 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan34d52cb2011-03-29 13:46:06 +08002619 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002620
Josef Bacik0f9dd462008-09-23 13:14:11 -04002621}
2622
Josef Bacik6226cb02009-04-03 10:14:18 -04002623u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group,
Miao Xiea4820392013-09-09 13:19:42 +08002624 u64 offset, u64 bytes, u64 empty_size,
2625 u64 *max_extent_size)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002626{
Li Zefan34d52cb2011-03-29 13:46:06 +08002627 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik6226cb02009-04-03 10:14:18 -04002628 struct btrfs_free_space *entry = NULL;
Josef Bacik96303082009-07-13 21:29:25 -04002629 u64 bytes_search = bytes + empty_size;
Josef Bacik6226cb02009-04-03 10:14:18 -04002630 u64 ret = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05002631 u64 align_gap = 0;
2632 u64 align_gap_len = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002633
Li Zefan34d52cb2011-03-29 13:46:06 +08002634 spin_lock(&ctl->tree_lock);
David Woodhouse53b381b2013-01-29 18:40:14 -05002635 entry = find_free_space(ctl, &offset, &bytes_search,
Miao Xiea4820392013-09-09 13:19:42 +08002636 block_group->full_stripe_len, max_extent_size);
Josef Bacik6226cb02009-04-03 10:14:18 -04002637 if (!entry)
Josef Bacik96303082009-07-13 21:29:25 -04002638 goto out;
2639
2640 ret = offset;
2641 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002642 bitmap_clear_bits(ctl, entry, offset, bytes);
Li Zefanedf6e2d2010-11-09 14:50:07 +08002643 if (!entry->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08002644 free_bitmap(ctl, entry);
Josef Bacik96303082009-07-13 21:29:25 -04002645 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08002646 unlink_free_space(ctl, entry);
David Woodhouse53b381b2013-01-29 18:40:14 -05002647 align_gap_len = offset - entry->offset;
2648 align_gap = entry->offset;
2649
2650 entry->offset = offset + bytes;
2651 WARN_ON(entry->bytes < bytes + align_gap_len);
2652
2653 entry->bytes -= bytes + align_gap_len;
Josef Bacik6226cb02009-04-03 10:14:18 -04002654 if (!entry->bytes)
Josef Bacikdc89e982011-01-28 17:05:48 -05002655 kmem_cache_free(btrfs_free_space_cachep, entry);
Josef Bacik6226cb02009-04-03 10:14:18 -04002656 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002657 link_free_space(ctl, entry);
Josef Bacik6226cb02009-04-03 10:14:18 -04002658 }
Josef Bacik96303082009-07-13 21:29:25 -04002659out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002660 spin_unlock(&ctl->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04002661
David Woodhouse53b381b2013-01-29 18:40:14 -05002662 if (align_gap_len)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002663 __btrfs_add_free_space(block_group->fs_info, ctl,
2664 align_gap, align_gap_len);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002665 return ret;
2666}
Chris Masonfa9c0d792009-04-03 09:47:43 -04002667
2668/*
2669 * given a cluster, put all of its extents back into the free space
2670 * cache. If a block group is passed, this function will only free
2671 * a cluster that belongs to the passed block group.
2672 *
2673 * Otherwise, it'll get a reference on the block group pointed to by the
2674 * cluster and remove the cluster from it.
2675 */
2676int btrfs_return_cluster_to_free_space(
2677 struct btrfs_block_group_cache *block_group,
2678 struct btrfs_free_cluster *cluster)
2679{
Li Zefan34d52cb2011-03-29 13:46:06 +08002680 struct btrfs_free_space_ctl *ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002681 int ret;
2682
2683 /* first, get a safe pointer to the block group */
2684 spin_lock(&cluster->lock);
2685 if (!block_group) {
2686 block_group = cluster->block_group;
2687 if (!block_group) {
2688 spin_unlock(&cluster->lock);
2689 return 0;
2690 }
2691 } else if (cluster->block_group != block_group) {
2692 /* someone else has already freed it don't redo their work */
2693 spin_unlock(&cluster->lock);
2694 return 0;
2695 }
2696 atomic_inc(&block_group->count);
2697 spin_unlock(&cluster->lock);
2698
Li Zefan34d52cb2011-03-29 13:46:06 +08002699 ctl = block_group->free_space_ctl;
2700
Chris Masonfa9c0d792009-04-03 09:47:43 -04002701 /* now return any extents the cluster had on it */
Li Zefan34d52cb2011-03-29 13:46:06 +08002702 spin_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002703 ret = __btrfs_return_cluster_to_free_space(block_group, cluster);
Li Zefan34d52cb2011-03-29 13:46:06 +08002704 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002705
2706 /* finally drop our ref */
2707 btrfs_put_block_group(block_group);
2708 return ret;
2709}
2710
Josef Bacik96303082009-07-13 21:29:25 -04002711static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group,
2712 struct btrfs_free_cluster *cluster,
Josef Bacik4e69b592011-03-21 10:11:24 -04002713 struct btrfs_free_space *entry,
Miao Xiea4820392013-09-09 13:19:42 +08002714 u64 bytes, u64 min_start,
2715 u64 *max_extent_size)
Josef Bacik96303082009-07-13 21:29:25 -04002716{
Li Zefan34d52cb2011-03-29 13:46:06 +08002717 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002718 int err;
2719 u64 search_start = cluster->window_start;
2720 u64 search_bytes = bytes;
2721 u64 ret = 0;
2722
Josef Bacik96303082009-07-13 21:29:25 -04002723 search_start = min_start;
2724 search_bytes = bytes;
2725
Josef Bacik0584f712015-10-02 16:12:23 -04002726 err = search_bitmap(ctl, entry, &search_start, &search_bytes, true);
Miao Xiea4820392013-09-09 13:19:42 +08002727 if (err) {
Josef Bacikad22cf62018-10-12 15:32:33 -04002728 *max_extent_size = max(get_max_extent_size(entry),
2729 *max_extent_size);
Josef Bacik4e69b592011-03-21 10:11:24 -04002730 return 0;
Miao Xiea4820392013-09-09 13:19:42 +08002731 }
Josef Bacik96303082009-07-13 21:29:25 -04002732
2733 ret = search_start;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00002734 __bitmap_clear_bits(ctl, entry, ret, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002735
2736 return ret;
2737}
2738
Chris Masonfa9c0d792009-04-03 09:47:43 -04002739/*
2740 * given a cluster, try to allocate 'bytes' from it, returns 0
2741 * if it couldn't find anything suitably large, or a logical disk offset
2742 * if things worked out
2743 */
2744u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group,
2745 struct btrfs_free_cluster *cluster, u64 bytes,
Miao Xiea4820392013-09-09 13:19:42 +08002746 u64 min_start, u64 *max_extent_size)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002747{
Li Zefan34d52cb2011-03-29 13:46:06 +08002748 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002749 struct btrfs_free_space *entry = NULL;
2750 struct rb_node *node;
2751 u64 ret = 0;
2752
2753 spin_lock(&cluster->lock);
2754 if (bytes > cluster->max_size)
2755 goto out;
2756
2757 if (cluster->block_group != block_group)
2758 goto out;
2759
2760 node = rb_first(&cluster->root);
2761 if (!node)
2762 goto out;
2763
2764 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302765 while (1) {
Josef Bacikad22cf62018-10-12 15:32:33 -04002766 if (entry->bytes < bytes)
2767 *max_extent_size = max(get_max_extent_size(entry),
2768 *max_extent_size);
Miao Xiea4820392013-09-09 13:19:42 +08002769
Josef Bacik4e69b592011-03-21 10:11:24 -04002770 if (entry->bytes < bytes ||
2771 (!entry->bitmap && entry->offset < min_start)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04002772 node = rb_next(&entry->offset_index);
2773 if (!node)
2774 break;
2775 entry = rb_entry(node, struct btrfs_free_space,
2776 offset_index);
2777 continue;
2778 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002779
Josef Bacik4e69b592011-03-21 10:11:24 -04002780 if (entry->bitmap) {
2781 ret = btrfs_alloc_from_bitmap(block_group,
2782 cluster, entry, bytes,
Miao Xiea4820392013-09-09 13:19:42 +08002783 cluster->window_start,
2784 max_extent_size);
Josef Bacik4e69b592011-03-21 10:11:24 -04002785 if (ret == 0) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002786 node = rb_next(&entry->offset_index);
2787 if (!node)
2788 break;
2789 entry = rb_entry(node, struct btrfs_free_space,
2790 offset_index);
2791 continue;
2792 }
Josef Bacik9b230622012-01-26 15:01:12 -05002793 cluster->window_start += bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002794 } else {
Josef Bacik4e69b592011-03-21 10:11:24 -04002795 ret = entry->offset;
2796
2797 entry->offset += bytes;
2798 entry->bytes -= bytes;
2799 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002800
Li Zefan5e71b5d2010-11-09 14:55:34 +08002801 if (entry->bytes == 0)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002802 rb_erase(&entry->offset_index, &cluster->root);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002803 break;
2804 }
2805out:
2806 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002807
Li Zefan5e71b5d2010-11-09 14:55:34 +08002808 if (!ret)
2809 return 0;
2810
Li Zefan34d52cb2011-03-29 13:46:06 +08002811 spin_lock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002812
Li Zefan34d52cb2011-03-29 13:46:06 +08002813 ctl->free_space -= bytes;
Li Zefan5e71b5d2010-11-09 14:55:34 +08002814 if (entry->bytes == 0) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002815 ctl->free_extents--;
Josef Bacik4e69b592011-03-21 10:11:24 -04002816 if (entry->bitmap) {
Christophe Leroy3acd4852019-08-21 15:05:55 +00002817 kmem_cache_free(btrfs_free_space_bitmap_cachep,
2818 entry->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08002819 ctl->total_bitmaps--;
2820 ctl->op->recalc_thresholds(ctl);
Josef Bacik4e69b592011-03-21 10:11:24 -04002821 }
Josef Bacikdc89e982011-01-28 17:05:48 -05002822 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002823 }
2824
Li Zefan34d52cb2011-03-29 13:46:06 +08002825 spin_unlock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002826
Chris Masonfa9c0d792009-04-03 09:47:43 -04002827 return ret;
2828}
2829
Josef Bacik96303082009-07-13 21:29:25 -04002830static int btrfs_bitmap_cluster(struct btrfs_block_group_cache *block_group,
2831 struct btrfs_free_space *entry,
2832 struct btrfs_free_cluster *cluster,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002833 u64 offset, u64 bytes,
2834 u64 cont1_bytes, u64 min_bytes)
Josef Bacik96303082009-07-13 21:29:25 -04002835{
Li Zefan34d52cb2011-03-29 13:46:06 +08002836 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002837 unsigned long next_zero;
2838 unsigned long i;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002839 unsigned long want_bits;
2840 unsigned long min_bits;
Josef Bacik96303082009-07-13 21:29:25 -04002841 unsigned long found_bits;
Josef Bacikcef40482015-10-02 16:09:42 -04002842 unsigned long max_bits = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002843 unsigned long start = 0;
2844 unsigned long total_found = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002845 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002846
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002847 i = offset_to_bit(entry->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04002848 max_t(u64, offset, entry->offset));
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002849 want_bits = bytes_to_bits(bytes, ctl->unit);
2850 min_bits = bytes_to_bits(min_bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04002851
Josef Bacikcef40482015-10-02 16:09:42 -04002852 /*
2853 * Don't bother looking for a cluster in this bitmap if it's heavily
2854 * fragmented.
2855 */
2856 if (entry->max_extent_size &&
2857 entry->max_extent_size < cont1_bytes)
2858 return -ENOSPC;
Josef Bacik96303082009-07-13 21:29:25 -04002859again:
2860 found_bits = 0;
Wei Yongjunebb3dad2012-09-13 20:29:02 -06002861 for_each_set_bit_from(i, entry->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04002862 next_zero = find_next_zero_bit(entry->bitmap,
2863 BITS_PER_BITMAP, i);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002864 if (next_zero - i >= min_bits) {
Josef Bacik96303082009-07-13 21:29:25 -04002865 found_bits = next_zero - i;
Josef Bacikcef40482015-10-02 16:09:42 -04002866 if (found_bits > max_bits)
2867 max_bits = found_bits;
Josef Bacik96303082009-07-13 21:29:25 -04002868 break;
2869 }
Josef Bacikcef40482015-10-02 16:09:42 -04002870 if (next_zero - i > max_bits)
2871 max_bits = next_zero - i;
Josef Bacik96303082009-07-13 21:29:25 -04002872 i = next_zero;
2873 }
2874
Josef Bacikcef40482015-10-02 16:09:42 -04002875 if (!found_bits) {
2876 entry->max_extent_size = (u64)max_bits * ctl->unit;
Josef Bacik4e69b592011-03-21 10:11:24 -04002877 return -ENOSPC;
Josef Bacikcef40482015-10-02 16:09:42 -04002878 }
Josef Bacik96303082009-07-13 21:29:25 -04002879
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002880 if (!total_found) {
Josef Bacik96303082009-07-13 21:29:25 -04002881 start = i;
Alexandre Olivab78d09b2011-11-30 13:43:00 -05002882 cluster->max_size = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002883 }
2884
2885 total_found += found_bits;
2886
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002887 if (cluster->max_size < found_bits * ctl->unit)
2888 cluster->max_size = found_bits * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04002889
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002890 if (total_found < want_bits || cluster->max_size < cont1_bytes) {
2891 i = next_zero + 1;
Josef Bacik96303082009-07-13 21:29:25 -04002892 goto again;
2893 }
2894
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002895 cluster->window_start = start * ctl->unit + entry->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002896 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002897 ret = tree_insert_offset(&cluster->root, entry->offset,
2898 &entry->offset_index, 1);
Josef Bacikb12d6862013-08-26 17:14:08 -04002899 ASSERT(!ret); /* -EEXIST; Logic error */
Josef Bacik96303082009-07-13 21:29:25 -04002900
Josef Bacik3f7de032011-11-10 08:29:20 -05002901 trace_btrfs_setup_cluster(block_group, cluster,
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002902 total_found * ctl->unit, 1);
Josef Bacik96303082009-07-13 21:29:25 -04002903 return 0;
2904}
2905
Chris Masonfa9c0d792009-04-03 09:47:43 -04002906/*
Josef Bacik4e69b592011-03-21 10:11:24 -04002907 * This searches the block group for just extents to fill the cluster with.
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002908 * Try to find a cluster with at least bytes total bytes, at least one
2909 * extent of cont1_bytes, and other clusters of at least min_bytes.
Josef Bacik4e69b592011-03-21 10:11:24 -04002910 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002911static noinline int
2912setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
2913 struct btrfs_free_cluster *cluster,
2914 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002915 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002916{
Li Zefan34d52cb2011-03-29 13:46:06 +08002917 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002918 struct btrfs_free_space *first = NULL;
2919 struct btrfs_free_space *entry = NULL;
Josef Bacik4e69b592011-03-21 10:11:24 -04002920 struct btrfs_free_space *last;
2921 struct rb_node *node;
Josef Bacik4e69b592011-03-21 10:11:24 -04002922 u64 window_free;
2923 u64 max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002924 u64 total_size = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002925
Li Zefan34d52cb2011-03-29 13:46:06 +08002926 entry = tree_search_offset(ctl, offset, 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002927 if (!entry)
2928 return -ENOSPC;
2929
2930 /*
2931 * We don't want bitmaps, so just move along until we find a normal
2932 * extent entry.
2933 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002934 while (entry->bitmap || entry->bytes < min_bytes) {
2935 if (entry->bitmap && list_empty(&entry->list))
Josef Bacik86d4a772011-05-25 13:03:16 -04002936 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002937 node = rb_next(&entry->offset_index);
2938 if (!node)
2939 return -ENOSPC;
2940 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2941 }
2942
Josef Bacik4e69b592011-03-21 10:11:24 -04002943 window_free = entry->bytes;
2944 max_extent = entry->bytes;
2945 first = entry;
2946 last = entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002947
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002948 for (node = rb_next(&entry->offset_index); node;
2949 node = rb_next(&entry->offset_index)) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002950 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2951
Josef Bacik86d4a772011-05-25 13:03:16 -04002952 if (entry->bitmap) {
2953 if (list_empty(&entry->list))
2954 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002955 continue;
Josef Bacik86d4a772011-05-25 13:03:16 -04002956 }
2957
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002958 if (entry->bytes < min_bytes)
2959 continue;
2960
2961 last = entry;
2962 window_free += entry->bytes;
2963 if (entry->bytes > max_extent)
Josef Bacik4e69b592011-03-21 10:11:24 -04002964 max_extent = entry->bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002965 }
2966
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002967 if (window_free < bytes || max_extent < cont1_bytes)
2968 return -ENOSPC;
2969
Josef Bacik4e69b592011-03-21 10:11:24 -04002970 cluster->window_start = first->offset;
2971
2972 node = &first->offset_index;
2973
2974 /*
2975 * now we've found our entries, pull them out of the free space
2976 * cache and put them into the cluster rbtree
2977 */
2978 do {
2979 int ret;
2980
2981 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2982 node = rb_next(&entry->offset_index);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002983 if (entry->bitmap || entry->bytes < min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002984 continue;
2985
Li Zefan34d52cb2011-03-29 13:46:06 +08002986 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002987 ret = tree_insert_offset(&cluster->root, entry->offset,
2988 &entry->offset_index, 0);
Josef Bacik3f7de032011-11-10 08:29:20 -05002989 total_size += entry->bytes;
Josef Bacikb12d6862013-08-26 17:14:08 -04002990 ASSERT(!ret); /* -EEXIST; Logic error */
Josef Bacik4e69b592011-03-21 10:11:24 -04002991 } while (node && entry != last);
2992
2993 cluster->max_size = max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002994 trace_btrfs_setup_cluster(block_group, cluster, total_size, 0);
Josef Bacik4e69b592011-03-21 10:11:24 -04002995 return 0;
2996}
2997
2998/*
2999 * This specifically looks for bitmaps that may work in the cluster, we assume
3000 * that we have already failed to find extents that will work.
3001 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04003002static noinline int
3003setup_cluster_bitmap(struct btrfs_block_group_cache *block_group,
3004 struct btrfs_free_cluster *cluster,
3005 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003006 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04003007{
Li Zefan34d52cb2011-03-29 13:46:06 +08003008 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Mason1b9b9222015-12-15 07:15:32 -08003009 struct btrfs_free_space *entry = NULL;
Josef Bacik4e69b592011-03-21 10:11:24 -04003010 int ret = -ENOSPC;
Li Zefan0f0fbf12011-11-20 07:33:38 -05003011 u64 bitmap_offset = offset_to_bitmap(ctl, offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04003012
Li Zefan34d52cb2011-03-29 13:46:06 +08003013 if (ctl->total_bitmaps == 0)
Josef Bacik4e69b592011-03-21 10:11:24 -04003014 return -ENOSPC;
3015
Josef Bacik86d4a772011-05-25 13:03:16 -04003016 /*
Li Zefan0f0fbf12011-11-20 07:33:38 -05003017 * The bitmap that covers offset won't be in the list unless offset
3018 * is just its start offset.
3019 */
Chris Mason1b9b9222015-12-15 07:15:32 -08003020 if (!list_empty(bitmaps))
3021 entry = list_first_entry(bitmaps, struct btrfs_free_space, list);
3022
3023 if (!entry || entry->offset != bitmap_offset) {
Li Zefan0f0fbf12011-11-20 07:33:38 -05003024 entry = tree_search_offset(ctl, bitmap_offset, 1, 0);
3025 if (entry && list_empty(&entry->list))
3026 list_add(&entry->list, bitmaps);
3027 }
3028
Josef Bacik86d4a772011-05-25 13:03:16 -04003029 list_for_each_entry(entry, bitmaps, list) {
Josef Bacik357b9782012-01-26 15:01:11 -05003030 if (entry->bytes < bytes)
Josef Bacik86d4a772011-05-25 13:03:16 -04003031 continue;
3032 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003033 bytes, cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04003034 if (!ret)
3035 return 0;
3036 }
3037
3038 /*
Li Zefan52621cb2011-11-20 07:33:38 -05003039 * The bitmaps list has all the bitmaps that record free space
3040 * starting after offset, so no more search is required.
Josef Bacik86d4a772011-05-25 13:03:16 -04003041 */
Li Zefan52621cb2011-11-20 07:33:38 -05003042 return -ENOSPC;
Josef Bacik4e69b592011-03-21 10:11:24 -04003043}
3044
3045/*
Chris Masonfa9c0d792009-04-03 09:47:43 -04003046 * here we try to find a cluster of blocks in a block group. The goal
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003047 * is to find at least bytes+empty_size.
Chris Masonfa9c0d792009-04-03 09:47:43 -04003048 * We might not find them all in one contiguous area.
3049 *
3050 * returns zero and sets up cluster if things worked out, otherwise
3051 * it returns -enospc
3052 */
David Sterba2ceeae22019-03-20 13:53:49 +01003053int btrfs_find_space_cluster(struct btrfs_block_group_cache *block_group,
Chris Masonfa9c0d792009-04-03 09:47:43 -04003054 struct btrfs_free_cluster *cluster,
3055 u64 offset, u64 bytes, u64 empty_size)
3056{
David Sterba2ceeae22019-03-20 13:53:49 +01003057 struct btrfs_fs_info *fs_info = block_group->fs_info;
Li Zefan34d52cb2011-03-29 13:46:06 +08003058 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik86d4a772011-05-25 13:03:16 -04003059 struct btrfs_free_space *entry, *tmp;
Li Zefan52621cb2011-11-20 07:33:38 -05003060 LIST_HEAD(bitmaps);
Chris Masonfa9c0d792009-04-03 09:47:43 -04003061 u64 min_bytes;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003062 u64 cont1_bytes;
Chris Masonfa9c0d792009-04-03 09:47:43 -04003063 int ret;
3064
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003065 /*
3066 * Choose the minimum extent size we'll require for this
3067 * cluster. For SSD_SPREAD, don't allow any fragmentation.
3068 * For metadata, allow allocates with smaller extents. For
3069 * data, keep it dense.
3070 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003071 if (btrfs_test_opt(fs_info, SSD_SPREAD)) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003072 cont1_bytes = min_bytes = bytes + empty_size;
Chris Mason451d7582009-06-09 20:28:34 -04003073 } else if (block_group->flags & BTRFS_BLOCK_GROUP_METADATA) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003074 cont1_bytes = bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003075 min_bytes = fs_info->sectorsize;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003076 } else {
3077 cont1_bytes = max(bytes, (bytes + empty_size) >> 2);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003078 min_bytes = fs_info->sectorsize;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003079 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04003080
Li Zefan34d52cb2011-03-29 13:46:06 +08003081 spin_lock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04003082
3083 /*
3084 * If we know we don't have enough space to make a cluster don't even
3085 * bother doing all the work to try and find one.
3086 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003087 if (ctl->free_space < bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08003088 spin_unlock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04003089 return -ENOSPC;
3090 }
3091
Chris Masonfa9c0d792009-04-03 09:47:43 -04003092 spin_lock(&cluster->lock);
3093
3094 /* someone already found a cluster, hooray */
3095 if (cluster->block_group) {
3096 ret = 0;
3097 goto out;
3098 }
Josef Bacik4e69b592011-03-21 10:11:24 -04003099
Josef Bacik3f7de032011-11-10 08:29:20 -05003100 trace_btrfs_find_cluster(block_group, offset, bytes, empty_size,
3101 min_bytes);
3102
Josef Bacik86d4a772011-05-25 13:03:16 -04003103 ret = setup_cluster_no_bitmap(block_group, cluster, &bitmaps, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003104 bytes + empty_size,
3105 cont1_bytes, min_bytes);
Josef Bacik4e69b592011-03-21 10:11:24 -04003106 if (ret)
Josef Bacik86d4a772011-05-25 13:03:16 -04003107 ret = setup_cluster_bitmap(block_group, cluster, &bitmaps,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003108 offset, bytes + empty_size,
3109 cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04003110
3111 /* Clear our temporary list */
3112 list_for_each_entry_safe(entry, tmp, &bitmaps, list)
3113 list_del_init(&entry->list);
Josef Bacik4e69b592011-03-21 10:11:24 -04003114
3115 if (!ret) {
3116 atomic_inc(&block_group->count);
3117 list_add_tail(&cluster->block_group_list,
3118 &block_group->cluster_list);
3119 cluster->block_group = block_group;
Josef Bacik3f7de032011-11-10 08:29:20 -05003120 } else {
3121 trace_btrfs_failed_cluster_setup(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04003122 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04003123out:
3124 spin_unlock(&cluster->lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08003125 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04003126
3127 return ret;
3128}
3129
3130/*
3131 * simple code to zero out a cluster
3132 */
3133void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster)
3134{
3135 spin_lock_init(&cluster->lock);
3136 spin_lock_init(&cluster->refill_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00003137 cluster->root = RB_ROOT;
Chris Masonfa9c0d792009-04-03 09:47:43 -04003138 cluster->max_size = 0;
Josef Bacikc759c4e2015-10-02 15:25:10 -04003139 cluster->fragmented = false;
Chris Masonfa9c0d792009-04-03 09:47:43 -04003140 INIT_LIST_HEAD(&cluster->block_group_list);
3141 cluster->block_group = NULL;
3142}
3143
Li Zefan7fe1e642011-12-29 14:47:27 +08003144static int do_trimming(struct btrfs_block_group_cache *block_group,
3145 u64 *total_trimmed, u64 start, u64 bytes,
Filipe Manana55507ce2014-12-01 17:04:09 +00003146 u64 reserved_start, u64 reserved_bytes,
3147 struct btrfs_trim_range *trim_entry)
Li Zefan7fe1e642011-12-29 14:47:27 +08003148{
3149 struct btrfs_space_info *space_info = block_group->space_info;
3150 struct btrfs_fs_info *fs_info = block_group->fs_info;
Filipe Manana55507ce2014-12-01 17:04:09 +00003151 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan7fe1e642011-12-29 14:47:27 +08003152 int ret;
3153 int update = 0;
3154 u64 trimmed = 0;
3155
3156 spin_lock(&space_info->lock);
3157 spin_lock(&block_group->lock);
3158 if (!block_group->ro) {
3159 block_group->reserved += reserved_bytes;
3160 space_info->bytes_reserved += reserved_bytes;
3161 update = 1;
3162 }
3163 spin_unlock(&block_group->lock);
3164 spin_unlock(&space_info->lock);
3165
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003166 ret = btrfs_discard_extent(fs_info, start, bytes, &trimmed);
Li Zefan7fe1e642011-12-29 14:47:27 +08003167 if (!ret)
3168 *total_trimmed += trimmed;
3169
Filipe Manana55507ce2014-12-01 17:04:09 +00003170 mutex_lock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003171 btrfs_add_free_space(block_group, reserved_start, reserved_bytes);
Filipe Manana55507ce2014-12-01 17:04:09 +00003172 list_del(&trim_entry->list);
3173 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003174
3175 if (update) {
3176 spin_lock(&space_info->lock);
3177 spin_lock(&block_group->lock);
3178 if (block_group->ro)
3179 space_info->bytes_readonly += reserved_bytes;
3180 block_group->reserved -= reserved_bytes;
3181 space_info->bytes_reserved -= reserved_bytes;
Li Zefan7fe1e642011-12-29 14:47:27 +08003182 spin_unlock(&block_group->lock);
Su Yue8f63a842018-11-28 11:21:12 +08003183 spin_unlock(&space_info->lock);
Li Zefan7fe1e642011-12-29 14:47:27 +08003184 }
3185
3186 return ret;
3187}
3188
3189static int trim_no_bitmap(struct btrfs_block_group_cache *block_group,
3190 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
Li Dongyangf7039b12011-03-24 10:24:28 +00003191{
Li Zefan34d52cb2011-03-29 13:46:06 +08003192 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan7fe1e642011-12-29 14:47:27 +08003193 struct btrfs_free_space *entry;
3194 struct rb_node *node;
Li Dongyangf7039b12011-03-24 10:24:28 +00003195 int ret = 0;
Li Zefan7fe1e642011-12-29 14:47:27 +08003196 u64 extent_start;
3197 u64 extent_bytes;
3198 u64 bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00003199
3200 while (start < end) {
Filipe Manana55507ce2014-12-01 17:04:09 +00003201 struct btrfs_trim_range trim_entry;
3202
3203 mutex_lock(&ctl->cache_writeout_mutex);
Li Zefan34d52cb2011-03-29 13:46:06 +08003204 spin_lock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00003205
Li Zefan34d52cb2011-03-29 13:46:06 +08003206 if (ctl->free_space < minlen) {
3207 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003208 mutex_unlock(&ctl->cache_writeout_mutex);
Li Dongyangf7039b12011-03-24 10:24:28 +00003209 break;
3210 }
3211
Li Zefan34d52cb2011-03-29 13:46:06 +08003212 entry = tree_search_offset(ctl, start, 0, 1);
Li Zefan7fe1e642011-12-29 14:47:27 +08003213 if (!entry) {
Li Zefan34d52cb2011-03-29 13:46:06 +08003214 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003215 mutex_unlock(&ctl->cache_writeout_mutex);
Li Dongyangf7039b12011-03-24 10:24:28 +00003216 break;
3217 }
3218
Li Zefan7fe1e642011-12-29 14:47:27 +08003219 /* skip bitmaps */
3220 while (entry->bitmap) {
3221 node = rb_next(&entry->offset_index);
3222 if (!node) {
Li Zefan34d52cb2011-03-29 13:46:06 +08003223 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003224 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003225 goto out;
Li Dongyangf7039b12011-03-24 10:24:28 +00003226 }
Li Zefan7fe1e642011-12-29 14:47:27 +08003227 entry = rb_entry(node, struct btrfs_free_space,
3228 offset_index);
Li Dongyangf7039b12011-03-24 10:24:28 +00003229 }
3230
Li Zefan7fe1e642011-12-29 14:47:27 +08003231 if (entry->offset >= end) {
3232 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003233 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003234 break;
3235 }
3236
3237 extent_start = entry->offset;
3238 extent_bytes = entry->bytes;
3239 start = max(start, extent_start);
3240 bytes = min(extent_start + extent_bytes, end) - start;
3241 if (bytes < minlen) {
3242 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003243 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003244 goto next;
3245 }
3246
3247 unlink_free_space(ctl, entry);
3248 kmem_cache_free(btrfs_free_space_cachep, entry);
3249
Li Zefan34d52cb2011-03-29 13:46:06 +08003250 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003251 trim_entry.start = extent_start;
3252 trim_entry.bytes = extent_bytes;
3253 list_add_tail(&trim_entry.list, &ctl->trimming_ranges);
3254 mutex_unlock(&ctl->cache_writeout_mutex);
Li Dongyangf7039b12011-03-24 10:24:28 +00003255
Li Zefan7fe1e642011-12-29 14:47:27 +08003256 ret = do_trimming(block_group, total_trimmed, start, bytes,
Filipe Manana55507ce2014-12-01 17:04:09 +00003257 extent_start, extent_bytes, &trim_entry);
Li Zefan7fe1e642011-12-29 14:47:27 +08003258 if (ret)
3259 break;
3260next:
Li Dongyangf7039b12011-03-24 10:24:28 +00003261 start += bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00003262
3263 if (fatal_signal_pending(current)) {
3264 ret = -ERESTARTSYS;
3265 break;
3266 }
3267
3268 cond_resched();
3269 }
Li Zefan7fe1e642011-12-29 14:47:27 +08003270out:
3271 return ret;
3272}
3273
3274static int trim_bitmaps(struct btrfs_block_group_cache *block_group,
3275 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
3276{
3277 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
3278 struct btrfs_free_space *entry;
3279 int ret = 0;
3280 int ret2;
3281 u64 bytes;
3282 u64 offset = offset_to_bitmap(ctl, start);
3283
3284 while (offset < end) {
3285 bool next_bitmap = false;
Filipe Manana55507ce2014-12-01 17:04:09 +00003286 struct btrfs_trim_range trim_entry;
Li Zefan7fe1e642011-12-29 14:47:27 +08003287
Filipe Manana55507ce2014-12-01 17:04:09 +00003288 mutex_lock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003289 spin_lock(&ctl->tree_lock);
3290
3291 if (ctl->free_space < minlen) {
3292 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003293 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003294 break;
3295 }
3296
3297 entry = tree_search_offset(ctl, offset, 1, 0);
3298 if (!entry) {
3299 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003300 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003301 next_bitmap = true;
3302 goto next;
3303 }
3304
3305 bytes = minlen;
Josef Bacik0584f712015-10-02 16:12:23 -04003306 ret2 = search_bitmap(ctl, entry, &start, &bytes, false);
Li Zefan7fe1e642011-12-29 14:47:27 +08003307 if (ret2 || start >= end) {
3308 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003309 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003310 next_bitmap = true;
3311 goto next;
3312 }
3313
3314 bytes = min(bytes, end - start);
3315 if (bytes < minlen) {
3316 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003317 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003318 goto next;
3319 }
3320
3321 bitmap_clear_bits(ctl, entry, start, bytes);
3322 if (entry->bytes == 0)
3323 free_bitmap(ctl, entry);
3324
3325 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003326 trim_entry.start = start;
3327 trim_entry.bytes = bytes;
3328 list_add_tail(&trim_entry.list, &ctl->trimming_ranges);
3329 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003330
3331 ret = do_trimming(block_group, total_trimmed, start, bytes,
Filipe Manana55507ce2014-12-01 17:04:09 +00003332 start, bytes, &trim_entry);
Li Zefan7fe1e642011-12-29 14:47:27 +08003333 if (ret)
3334 break;
3335next:
3336 if (next_bitmap) {
3337 offset += BITS_PER_BITMAP * ctl->unit;
3338 } else {
3339 start += bytes;
3340 if (start >= offset + BITS_PER_BITMAP * ctl->unit)
3341 offset += BITS_PER_BITMAP * ctl->unit;
3342 }
3343
3344 if (fatal_signal_pending(current)) {
3345 ret = -ERESTARTSYS;
3346 break;
3347 }
3348
3349 cond_resched();
3350 }
3351
3352 return ret;
3353}
3354
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003355void btrfs_get_block_group_trimming(struct btrfs_block_group_cache *cache)
Li Zefan7fe1e642011-12-29 14:47:27 +08003356{
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003357 atomic_inc(&cache->trimming);
3358}
Li Zefan7fe1e642011-12-29 14:47:27 +08003359
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003360void btrfs_put_block_group_trimming(struct btrfs_block_group_cache *block_group)
3361{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003362 struct btrfs_fs_info *fs_info = block_group->fs_info;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003363 struct extent_map_tree *em_tree;
3364 struct extent_map *em;
3365 bool cleanup;
Li Zefan7fe1e642011-12-29 14:47:27 +08003366
Filipe Manana04216822014-11-27 21:14:15 +00003367 spin_lock(&block_group->lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003368 cleanup = (atomic_dec_and_test(&block_group->trimming) &&
3369 block_group->removed);
Filipe Manana04216822014-11-27 21:14:15 +00003370 spin_unlock(&block_group->lock);
3371
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003372 if (cleanup) {
David Sterba34441362016-10-04 19:34:27 +02003373 mutex_lock(&fs_info->chunk_mutex);
David Sterbac8bf1b62019-05-17 11:43:17 +02003374 em_tree = &fs_info->mapping_tree;
Filipe Manana04216822014-11-27 21:14:15 +00003375 write_lock(&em_tree->lock);
3376 em = lookup_extent_mapping(em_tree, block_group->key.objectid,
3377 1);
3378 BUG_ON(!em); /* logic error, can't happen */
3379 remove_extent_mapping(em_tree, em);
3380 write_unlock(&em_tree->lock);
David Sterba34441362016-10-04 19:34:27 +02003381 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana04216822014-11-27 21:14:15 +00003382
3383 /* once for us and once for the tree */
3384 free_extent_map(em);
3385 free_extent_map(em);
Filipe Manana946ddbe2014-12-01 17:04:40 +00003386
3387 /*
3388 * We've left one free space entry and other tasks trimming
3389 * this block group have left 1 entry each one. Free them.
3390 */
3391 __btrfs_remove_free_space_cache(block_group->free_space_ctl);
Filipe Manana04216822014-11-27 21:14:15 +00003392 }
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003393}
Li Dongyangf7039b12011-03-24 10:24:28 +00003394
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003395int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group,
3396 u64 *trimmed, u64 start, u64 end, u64 minlen)
3397{
3398 int ret;
3399
3400 *trimmed = 0;
3401
3402 spin_lock(&block_group->lock);
3403 if (block_group->removed) {
3404 spin_unlock(&block_group->lock);
3405 return 0;
3406 }
3407 btrfs_get_block_group_trimming(block_group);
3408 spin_unlock(&block_group->lock);
3409
3410 ret = trim_no_bitmap(block_group, trimmed, start, end, minlen);
3411 if (ret)
3412 goto out;
3413
3414 ret = trim_bitmaps(block_group, trimmed, start, end, minlen);
3415out:
3416 btrfs_put_block_group_trimming(block_group);
Li Dongyangf7039b12011-03-24 10:24:28 +00003417 return ret;
3418}
Li Zefan581bb052011-04-20 10:06:11 +08003419
3420/*
3421 * Find the left-most item in the cache tree, and then return the
3422 * smallest inode number in the item.
3423 *
3424 * Note: the returned inode number may not be the smallest one in
3425 * the tree, if the left-most item is a bitmap.
3426 */
3427u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root)
3428{
3429 struct btrfs_free_space_ctl *ctl = fs_root->free_ino_ctl;
3430 struct btrfs_free_space *entry = NULL;
3431 u64 ino = 0;
3432
3433 spin_lock(&ctl->tree_lock);
3434
3435 if (RB_EMPTY_ROOT(&ctl->free_space_offset))
3436 goto out;
3437
3438 entry = rb_entry(rb_first(&ctl->free_space_offset),
3439 struct btrfs_free_space, offset_index);
3440
3441 if (!entry->bitmap) {
3442 ino = entry->offset;
3443
3444 unlink_free_space(ctl, entry);
3445 entry->offset++;
3446 entry->bytes--;
3447 if (!entry->bytes)
3448 kmem_cache_free(btrfs_free_space_cachep, entry);
3449 else
3450 link_free_space(ctl, entry);
3451 } else {
3452 u64 offset = 0;
3453 u64 count = 1;
3454 int ret;
3455
Josef Bacik0584f712015-10-02 16:12:23 -04003456 ret = search_bitmap(ctl, entry, &offset, &count, true);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003457 /* Logic error; Should be empty if it can't find anything */
Josef Bacikb12d6862013-08-26 17:14:08 -04003458 ASSERT(!ret);
Li Zefan581bb052011-04-20 10:06:11 +08003459
3460 ino = offset;
3461 bitmap_clear_bits(ctl, entry, offset, 1);
3462 if (entry->bytes == 0)
3463 free_bitmap(ctl, entry);
3464 }
3465out:
3466 spin_unlock(&ctl->tree_lock);
3467
3468 return ino;
3469}
Li Zefan82d59022011-04-20 10:33:24 +08003470
3471struct inode *lookup_free_ino_inode(struct btrfs_root *root,
3472 struct btrfs_path *path)
3473{
3474 struct inode *inode = NULL;
3475
David Sterba57cdc8d2014-02-05 02:37:48 +01003476 spin_lock(&root->ino_cache_lock);
3477 if (root->ino_cache_inode)
3478 inode = igrab(root->ino_cache_inode);
3479 spin_unlock(&root->ino_cache_lock);
Li Zefan82d59022011-04-20 10:33:24 +08003480 if (inode)
3481 return inode;
3482
3483 inode = __lookup_free_space_inode(root, path, 0);
3484 if (IS_ERR(inode))
3485 return inode;
3486
David Sterba57cdc8d2014-02-05 02:37:48 +01003487 spin_lock(&root->ino_cache_lock);
David Sterba7841cb22011-05-31 18:07:27 +02003488 if (!btrfs_fs_closing(root->fs_info))
David Sterba57cdc8d2014-02-05 02:37:48 +01003489 root->ino_cache_inode = igrab(inode);
3490 spin_unlock(&root->ino_cache_lock);
Li Zefan82d59022011-04-20 10:33:24 +08003491
3492 return inode;
3493}
3494
3495int create_free_ino_inode(struct btrfs_root *root,
3496 struct btrfs_trans_handle *trans,
3497 struct btrfs_path *path)
3498{
3499 return __create_free_space_inode(root, trans, path,
3500 BTRFS_FREE_INO_OBJECTID, 0);
3501}
3502
3503int load_free_ino_cache(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
3504{
3505 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
3506 struct btrfs_path *path;
3507 struct inode *inode;
3508 int ret = 0;
3509 u64 root_gen = btrfs_root_generation(&root->root_item);
3510
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003511 if (!btrfs_test_opt(fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -04003512 return 0;
3513
Li Zefan82d59022011-04-20 10:33:24 +08003514 /*
3515 * If we're unmounting then just return, since this does a search on the
3516 * normal root and not the commit root and we could deadlock.
3517 */
David Sterba7841cb22011-05-31 18:07:27 +02003518 if (btrfs_fs_closing(fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08003519 return 0;
3520
3521 path = btrfs_alloc_path();
3522 if (!path)
3523 return 0;
3524
3525 inode = lookup_free_ino_inode(root, path);
3526 if (IS_ERR(inode))
3527 goto out;
3528
3529 if (root_gen != BTRFS_I(inode)->generation)
3530 goto out_put;
3531
3532 ret = __load_free_space_cache(root, inode, ctl, path, 0);
3533
3534 if (ret < 0)
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003535 btrfs_err(fs_info,
3536 "failed to load free ino cache for root %llu",
3537 root->root_key.objectid);
Li Zefan82d59022011-04-20 10:33:24 +08003538out_put:
3539 iput(inode);
3540out:
3541 btrfs_free_path(path);
3542 return ret;
3543}
3544
3545int btrfs_write_out_ino_cache(struct btrfs_root *root,
3546 struct btrfs_trans_handle *trans,
Filipe David Borba Manana53645a92013-09-20 14:43:28 +01003547 struct btrfs_path *path,
3548 struct inode *inode)
Li Zefan82d59022011-04-20 10:33:24 +08003549{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003550 struct btrfs_fs_info *fs_info = root->fs_info;
Li Zefan82d59022011-04-20 10:33:24 +08003551 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
Li Zefan82d59022011-04-20 10:33:24 +08003552 int ret;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003553 struct btrfs_io_ctl io_ctl;
Filipe Mananae43699d2015-05-05 15:21:27 +01003554 bool release_metadata = true;
Li Zefan82d59022011-04-20 10:33:24 +08003555
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003556 if (!btrfs_test_opt(fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -04003557 return 0;
3558
Chris Mason85db36c2015-04-23 08:02:49 -07003559 memset(&io_ctl, 0, sizeof(io_ctl));
David Sterba0e8d9312017-02-10 20:26:24 +01003560 ret = __btrfs_write_out_cache(root, inode, ctl, NULL, &io_ctl, trans);
Filipe Mananae43699d2015-05-05 15:21:27 +01003561 if (!ret) {
3562 /*
3563 * At this point writepages() didn't error out, so our metadata
3564 * reservation is released when the writeback finishes, at
3565 * inode.c:btrfs_finish_ordered_io(), regardless of it finishing
3566 * with or without an error.
3567 */
3568 release_metadata = false;
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003569 ret = btrfs_wait_cache_io_root(root, trans, &io_ctl, path);
Filipe Mananae43699d2015-05-05 15:21:27 +01003570 }
Chris Mason85db36c2015-04-23 08:02:49 -07003571
Josef Bacikc09544e2011-08-30 10:19:10 -04003572 if (ret) {
Filipe Mananae43699d2015-05-05 15:21:27 +01003573 if (release_metadata)
Nikolay Borisov691fa052017-02-20 13:50:42 +02003574 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08003575 inode->i_size, true);
Josef Bacikc09544e2011-08-30 10:19:10 -04003576#ifdef DEBUG
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003577 btrfs_err(fs_info,
3578 "failed to write free ino cache for root %llu",
3579 root->root_key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04003580#endif
3581 }
Li Zefan82d59022011-04-20 10:33:24 +08003582
Li Zefan82d59022011-04-20 10:33:24 +08003583 return ret;
3584}
Josef Bacik74255aa2013-03-15 09:47:08 -04003585
3586#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Josef Bacikdc11dd52013-08-14 15:05:12 -04003587/*
3588 * Use this if you need to make a bitmap or extent entry specifically, it
3589 * doesn't do any of the merging that add_free_space does, this acts a lot like
3590 * how the free space cache loading stuff works, so you can get really weird
3591 * configurations.
3592 */
3593int test_add_free_space_entry(struct btrfs_block_group_cache *cache,
3594 u64 offset, u64 bytes, bool bitmap)
Josef Bacik74255aa2013-03-15 09:47:08 -04003595{
Josef Bacikdc11dd52013-08-14 15:05:12 -04003596 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3597 struct btrfs_free_space *info = NULL, *bitmap_info;
3598 void *map = NULL;
3599 u64 bytes_added;
3600 int ret;
Josef Bacik74255aa2013-03-15 09:47:08 -04003601
Josef Bacikdc11dd52013-08-14 15:05:12 -04003602again:
3603 if (!info) {
3604 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
3605 if (!info)
3606 return -ENOMEM;
Josef Bacik74255aa2013-03-15 09:47:08 -04003607 }
3608
Josef Bacikdc11dd52013-08-14 15:05:12 -04003609 if (!bitmap) {
3610 spin_lock(&ctl->tree_lock);
3611 info->offset = offset;
3612 info->bytes = bytes;
Josef Bacikcef40482015-10-02 16:09:42 -04003613 info->max_extent_size = 0;
Josef Bacikdc11dd52013-08-14 15:05:12 -04003614 ret = link_free_space(ctl, info);
3615 spin_unlock(&ctl->tree_lock);
3616 if (ret)
3617 kmem_cache_free(btrfs_free_space_cachep, info);
3618 return ret;
3619 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003620
Josef Bacikdc11dd52013-08-14 15:05:12 -04003621 if (!map) {
Christophe Leroy3acd4852019-08-21 15:05:55 +00003622 map = kmem_cache_zalloc(btrfs_free_space_bitmap_cachep, GFP_NOFS);
Josef Bacikdc11dd52013-08-14 15:05:12 -04003623 if (!map) {
3624 kmem_cache_free(btrfs_free_space_cachep, info);
3625 return -ENOMEM;
3626 }
3627 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003628
Josef Bacikdc11dd52013-08-14 15:05:12 -04003629 spin_lock(&ctl->tree_lock);
3630 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3631 1, 0);
3632 if (!bitmap_info) {
3633 info->bitmap = map;
3634 map = NULL;
3635 add_new_bitmap(ctl, info, offset);
3636 bitmap_info = info;
Filipe Manana20005522014-08-29 13:35:13 +01003637 info = NULL;
Josef Bacikdc11dd52013-08-14 15:05:12 -04003638 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003639
Josef Bacikdc11dd52013-08-14 15:05:12 -04003640 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
Josef Bacikcef40482015-10-02 16:09:42 -04003641
Josef Bacikdc11dd52013-08-14 15:05:12 -04003642 bytes -= bytes_added;
3643 offset += bytes_added;
3644 spin_unlock(&ctl->tree_lock);
3645
3646 if (bytes)
3647 goto again;
3648
Filipe Manana20005522014-08-29 13:35:13 +01003649 if (info)
3650 kmem_cache_free(btrfs_free_space_cachep, info);
Christophe Leroy3acd4852019-08-21 15:05:55 +00003651 if (map)
3652 kmem_cache_free(btrfs_free_space_bitmap_cachep, map);
Josef Bacikdc11dd52013-08-14 15:05:12 -04003653 return 0;
Josef Bacik74255aa2013-03-15 09:47:08 -04003654}
3655
3656/*
3657 * Checks to see if the given range is in the free space cache. This is really
3658 * just used to check the absence of space, so if there is free space in the
3659 * range at all we will return 1.
3660 */
Josef Bacikdc11dd52013-08-14 15:05:12 -04003661int test_check_exists(struct btrfs_block_group_cache *cache,
3662 u64 offset, u64 bytes)
Josef Bacik74255aa2013-03-15 09:47:08 -04003663{
3664 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3665 struct btrfs_free_space *info;
3666 int ret = 0;
3667
3668 spin_lock(&ctl->tree_lock);
3669 info = tree_search_offset(ctl, offset, 0, 0);
3670 if (!info) {
3671 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3672 1, 0);
3673 if (!info)
3674 goto out;
3675 }
3676
3677have_info:
3678 if (info->bitmap) {
3679 u64 bit_off, bit_bytes;
3680 struct rb_node *n;
3681 struct btrfs_free_space *tmp;
3682
3683 bit_off = offset;
3684 bit_bytes = ctl->unit;
Josef Bacik0584f712015-10-02 16:12:23 -04003685 ret = search_bitmap(ctl, info, &bit_off, &bit_bytes, false);
Josef Bacik74255aa2013-03-15 09:47:08 -04003686 if (!ret) {
3687 if (bit_off == offset) {
3688 ret = 1;
3689 goto out;
3690 } else if (bit_off > offset &&
3691 offset + bytes > bit_off) {
3692 ret = 1;
3693 goto out;
3694 }
3695 }
3696
3697 n = rb_prev(&info->offset_index);
3698 while (n) {
3699 tmp = rb_entry(n, struct btrfs_free_space,
3700 offset_index);
3701 if (tmp->offset + tmp->bytes < offset)
3702 break;
3703 if (offset + bytes < tmp->offset) {
Feifei Xu5473e0c42016-06-01 19:18:23 +08003704 n = rb_prev(&tmp->offset_index);
Josef Bacik74255aa2013-03-15 09:47:08 -04003705 continue;
3706 }
3707 info = tmp;
3708 goto have_info;
3709 }
3710
3711 n = rb_next(&info->offset_index);
3712 while (n) {
3713 tmp = rb_entry(n, struct btrfs_free_space,
3714 offset_index);
3715 if (offset + bytes < tmp->offset)
3716 break;
3717 if (tmp->offset + tmp->bytes < offset) {
Feifei Xu5473e0c42016-06-01 19:18:23 +08003718 n = rb_next(&tmp->offset_index);
Josef Bacik74255aa2013-03-15 09:47:08 -04003719 continue;
3720 }
3721 info = tmp;
3722 goto have_info;
3723 }
3724
Filipe Manana20005522014-08-29 13:35:13 +01003725 ret = 0;
Josef Bacik74255aa2013-03-15 09:47:08 -04003726 goto out;
3727 }
3728
3729 if (info->offset == offset) {
3730 ret = 1;
3731 goto out;
3732 }
3733
3734 if (offset > info->offset && offset < info->offset + info->bytes)
3735 ret = 1;
3736out:
3737 spin_unlock(&ctl->tree_lock);
3738 return ret;
3739}
Josef Bacikdc11dd52013-08-14 15:05:12 -04003740#endif /* CONFIG_BTRFS_FS_RUN_SANITY_TESTS */