blob: f74dc259307b69af0660ac3080c39e103b21a948 [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"
Chris Masonfa9c0d792009-04-03 09:47:43 -040021
Feifei Xu0ef64472016-06-01 19:18:24 +080022#define BITS_PER_BITMAP (PAGE_SIZE * 8UL)
Byongho Leeee221842015-12-15 01:42:10 +090023#define MAX_CACHE_BYTES_PER_GIG SZ_32K
Josef Bacik96303082009-07-13 21:29:25 -040024
Filipe Manana55507ce2014-12-01 17:04:09 +000025struct btrfs_trim_range {
26 u64 start;
27 u64 bytes;
28 struct list_head list;
29};
30
Li Zefan34d52cb2011-03-29 13:46:06 +080031static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0cb59c92010-07-02 12:14:14 -040032 struct btrfs_free_space *info);
Josef Bacikcd023e72012-05-14 10:06:40 -040033static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
34 struct btrfs_free_space *info);
Jeff Mahoneyafdb5712016-09-09 12:09:35 -040035static int btrfs_wait_cache_io_root(struct btrfs_root *root,
36 struct btrfs_trans_handle *trans,
37 struct btrfs_io_ctl *io_ctl,
38 struct btrfs_path *path);
Josef Bacik0cb59c92010-07-02 12:14:14 -040039
Li Zefan0414efa2011-04-20 10:20:14 +080040static struct inode *__lookup_free_space_inode(struct btrfs_root *root,
41 struct btrfs_path *path,
42 u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -040043{
Jeff Mahoney0b246af2016-06-22 18:54:23 -040044 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik0af3d002010-06-21 14:48:16 -040045 struct btrfs_key key;
46 struct btrfs_key location;
47 struct btrfs_disk_key disk_key;
48 struct btrfs_free_space_header *header;
49 struct extent_buffer *leaf;
50 struct inode *inode = NULL;
Josef Bacik84de76a2018-09-28 07:17:49 -040051 unsigned nofs_flag;
Josef Bacik0af3d002010-06-21 14:48:16 -040052 int ret;
53
Josef Bacik0af3d002010-06-21 14:48:16 -040054 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +080055 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -040056 key.type = 0;
57
58 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
59 if (ret < 0)
60 return ERR_PTR(ret);
61 if (ret > 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +020062 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040063 return ERR_PTR(-ENOENT);
64 }
65
66 leaf = path->nodes[0];
67 header = btrfs_item_ptr(leaf, path->slots[0],
68 struct btrfs_free_space_header);
69 btrfs_free_space_key(leaf, header, &disk_key);
70 btrfs_disk_key_to_cpu(&location, &disk_key);
David Sterbab3b4aa72011-04-21 01:20:15 +020071 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -040072
Josef Bacik84de76a2018-09-28 07:17:49 -040073 /*
74 * We are often under a trans handle at this point, so we need to make
75 * sure NOFS is set to keep us from deadlocking.
76 */
77 nofs_flag = memalloc_nofs_save();
Filipe Manana4222ea72018-10-24 10:13:03 +010078 inode = btrfs_iget_path(fs_info->sb, &location, root, NULL, path);
79 btrfs_release_path(path);
Josef Bacik84de76a2018-09-28 07:17:49 -040080 memalloc_nofs_restore(nofs_flag);
Josef Bacik0af3d002010-06-21 14:48:16 -040081 if (IS_ERR(inode))
82 return inode;
Josef Bacik0af3d002010-06-21 14:48:16 -040083
Al Viro528c0322012-04-13 11:03:55 -040084 mapping_set_gfp_mask(inode->i_mapping,
Michal Hockoc62d2552015-11-06 16:28:49 -080085 mapping_gfp_constraint(inode->i_mapping,
86 ~(__GFP_FS | __GFP_HIGHMEM)));
Miao Xieadae52b2011-03-31 09:43:23 +000087
Li Zefan0414efa2011-04-20 10:20:14 +080088 return inode;
89}
90
David Sterba7949f332019-03-20 13:40:19 +010091struct inode *lookup_free_space_inode(
92 struct btrfs_block_group_cache *block_group,
93 struct btrfs_path *path)
Li Zefan0414efa2011-04-20 10:20:14 +080094{
David Sterba7949f332019-03-20 13:40:19 +010095 struct btrfs_fs_info *fs_info = block_group->fs_info;
Li Zefan0414efa2011-04-20 10:20:14 +080096 struct inode *inode = NULL;
Josef Bacik5b0e95b2011-10-06 08:58:24 -040097 u32 flags = BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
Li Zefan0414efa2011-04-20 10:20:14 +080098
99 spin_lock(&block_group->lock);
100 if (block_group->inode)
101 inode = igrab(block_group->inode);
102 spin_unlock(&block_group->lock);
103 if (inode)
104 return inode;
105
Jeff Mahoney77ab86b2017-02-15 16:28:30 -0500106 inode = __lookup_free_space_inode(fs_info->tree_root, path,
Li Zefan0414efa2011-04-20 10:20:14 +0800107 block_group->key.objectid);
108 if (IS_ERR(inode))
109 return inode;
110
Josef Bacik0af3d002010-06-21 14:48:16 -0400111 spin_lock(&block_group->lock);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400112 if (!((BTRFS_I(inode)->flags & flags) == flags)) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400113 btrfs_info(fs_info, "Old style space inode found, converting.");
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400114 BTRFS_I(inode)->flags |= BTRFS_INODE_NODATASUM |
115 BTRFS_INODE_NODATACOW;
Josef Bacik2f356122011-06-10 15:31:13 -0400116 block_group->disk_cache_state = BTRFS_DC_CLEAR;
117 }
118
Josef Bacik300e4f82011-08-29 14:06:00 -0400119 if (!block_group->iref) {
Josef Bacik0af3d002010-06-21 14:48:16 -0400120 block_group->inode = igrab(inode);
121 block_group->iref = 1;
122 }
123 spin_unlock(&block_group->lock);
124
125 return inode;
126}
127
Eric Sandeen48a3b632013-04-25 20:41:01 +0000128static int __create_free_space_inode(struct btrfs_root *root,
129 struct btrfs_trans_handle *trans,
130 struct btrfs_path *path,
131 u64 ino, u64 offset)
Josef Bacik0af3d002010-06-21 14:48:16 -0400132{
133 struct btrfs_key key;
134 struct btrfs_disk_key disk_key;
135 struct btrfs_free_space_header *header;
136 struct btrfs_inode_item *inode_item;
137 struct extent_buffer *leaf;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400138 u64 flags = BTRFS_INODE_NOCOMPRESS | BTRFS_INODE_PREALLOC;
Josef Bacik0af3d002010-06-21 14:48:16 -0400139 int ret;
140
Li Zefan0414efa2011-04-20 10:20:14 +0800141 ret = btrfs_insert_empty_inode(trans, root, path, ino);
Josef Bacik0af3d002010-06-21 14:48:16 -0400142 if (ret)
143 return ret;
144
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400145 /* We inline crc's for the free disk space cache */
146 if (ino != BTRFS_FREE_INO_OBJECTID)
147 flags |= BTRFS_INODE_NODATASUM | BTRFS_INODE_NODATACOW;
148
Josef Bacik0af3d002010-06-21 14:48:16 -0400149 leaf = path->nodes[0];
150 inode_item = btrfs_item_ptr(leaf, path->slots[0],
151 struct btrfs_inode_item);
152 btrfs_item_key(leaf, &disk_key, path->slots[0]);
David Sterbab159fa22016-11-08 18:09:03 +0100153 memzero_extent_buffer(leaf, (unsigned long)inode_item,
Josef Bacik0af3d002010-06-21 14:48:16 -0400154 sizeof(*inode_item));
155 btrfs_set_inode_generation(leaf, inode_item, trans->transid);
156 btrfs_set_inode_size(leaf, inode_item, 0);
157 btrfs_set_inode_nbytes(leaf, inode_item, 0);
158 btrfs_set_inode_uid(leaf, inode_item, 0);
159 btrfs_set_inode_gid(leaf, inode_item, 0);
160 btrfs_set_inode_mode(leaf, inode_item, S_IFREG | 0600);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400161 btrfs_set_inode_flags(leaf, inode_item, flags);
Josef Bacik0af3d002010-06-21 14:48:16 -0400162 btrfs_set_inode_nlink(leaf, inode_item, 1);
163 btrfs_set_inode_transid(leaf, inode_item, trans->transid);
Li Zefan0414efa2011-04-20 10:20:14 +0800164 btrfs_set_inode_block_group(leaf, inode_item, offset);
Josef Bacik0af3d002010-06-21 14:48:16 -0400165 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200166 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400167
168 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800169 key.offset = offset;
Josef Bacik0af3d002010-06-21 14:48:16 -0400170 key.type = 0;
Josef Bacik0af3d002010-06-21 14:48:16 -0400171 ret = btrfs_insert_empty_item(trans, root, path, &key,
172 sizeof(struct btrfs_free_space_header));
173 if (ret < 0) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200174 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400175 return ret;
176 }
Chris Masonc9dc4c62015-04-04 17:14:42 -0700177
Josef Bacik0af3d002010-06-21 14:48:16 -0400178 leaf = path->nodes[0];
179 header = btrfs_item_ptr(leaf, path->slots[0],
180 struct btrfs_free_space_header);
David Sterbab159fa22016-11-08 18:09:03 +0100181 memzero_extent_buffer(leaf, (unsigned long)header, sizeof(*header));
Josef Bacik0af3d002010-06-21 14:48:16 -0400182 btrfs_set_free_space_key(leaf, header, &disk_key);
183 btrfs_mark_buffer_dirty(leaf);
David Sterbab3b4aa72011-04-21 01:20:15 +0200184 btrfs_release_path(path);
Josef Bacik0af3d002010-06-21 14:48:16 -0400185
186 return 0;
187}
188
David Sterba4ca75f12019-03-20 13:42:57 +0100189int create_free_space_inode(struct btrfs_trans_handle *trans,
Li Zefan0414efa2011-04-20 10:20:14 +0800190 struct btrfs_block_group_cache *block_group,
191 struct btrfs_path *path)
192{
193 int ret;
194 u64 ino;
195
David Sterba4ca75f12019-03-20 13:42:57 +0100196 ret = btrfs_find_free_objectid(trans->fs_info->tree_root, &ino);
Li Zefan0414efa2011-04-20 10:20:14 +0800197 if (ret < 0)
198 return ret;
199
David Sterba4ca75f12019-03-20 13:42:57 +0100200 return __create_free_space_inode(trans->fs_info->tree_root, trans, path,
201 ino, block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800202}
203
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400204int btrfs_check_trunc_cache_free_space(struct btrfs_fs_info *fs_info,
Miao Xie7b61cd92013-05-13 13:55:09 +0000205 struct btrfs_block_rsv *rsv)
Josef Bacik0af3d002010-06-21 14:48:16 -0400206{
Josef Bacikc8174312011-11-02 09:29:35 -0400207 u64 needed_bytes;
Miao Xie7b61cd92013-05-13 13:55:09 +0000208 int ret;
Josef Bacikc8174312011-11-02 09:29:35 -0400209
210 /* 1 for slack space, 1 for updating the inode */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400211 needed_bytes = btrfs_calc_trunc_metadata_size(fs_info, 1) +
212 btrfs_calc_trans_metadata_size(fs_info, 1);
Josef Bacikc8174312011-11-02 09:29:35 -0400213
Miao Xie7b61cd92013-05-13 13:55:09 +0000214 spin_lock(&rsv->lock);
215 if (rsv->reserved < needed_bytes)
216 ret = -ENOSPC;
217 else
218 ret = 0;
219 spin_unlock(&rsv->lock);
Wei Yongjun4b286cd2013-05-21 02:39:21 +0000220 return ret;
Miao Xie7b61cd92013-05-13 13:55:09 +0000221}
222
Jeff Mahoney77ab86b2017-02-15 16:28:30 -0500223int btrfs_truncate_free_space_cache(struct btrfs_trans_handle *trans,
Chris Mason1bbc6212015-04-06 12:46:08 -0700224 struct btrfs_block_group_cache *block_group,
Miao Xie7b61cd92013-05-13 13:55:09 +0000225 struct inode *inode)
226{
Jeff Mahoney77ab86b2017-02-15 16:28:30 -0500227 struct btrfs_root *root = BTRFS_I(inode)->root;
Miao Xie7b61cd92013-05-13 13:55:09 +0000228 int ret = 0;
Filipe Manana35c76642015-04-30 17:47:05 +0100229 bool locked = false;
Chris Mason1bbc6212015-04-06 12:46:08 -0700230
Chris Mason1bbc6212015-04-06 12:46:08 -0700231 if (block_group) {
Jeff Mahoney21e75ff2017-02-15 16:28:32 -0500232 struct btrfs_path *path = btrfs_alloc_path();
233
234 if (!path) {
235 ret = -ENOMEM;
236 goto fail;
237 }
Filipe Manana35c76642015-04-30 17:47:05 +0100238 locked = true;
Chris Mason1bbc6212015-04-06 12:46:08 -0700239 mutex_lock(&trans->transaction->cache_write_mutex);
240 if (!list_empty(&block_group->io_list)) {
241 list_del_init(&block_group->io_list);
242
Jeff Mahoneyafdb5712016-09-09 12:09:35 -0400243 btrfs_wait_cache_io(trans, block_group, path);
Chris Mason1bbc6212015-04-06 12:46:08 -0700244 btrfs_put_block_group(block_group);
245 }
246
247 /*
248 * now that we've truncated the cache away, its no longer
249 * setup or written
250 */
251 spin_lock(&block_group->lock);
252 block_group->disk_cache_state = BTRFS_DC_CLEAR;
253 spin_unlock(&block_group->lock);
Jeff Mahoney21e75ff2017-02-15 16:28:32 -0500254 btrfs_free_path(path);
Chris Mason1bbc6212015-04-06 12:46:08 -0700255 }
Josef Bacik0af3d002010-06-21 14:48:16 -0400256
Nikolay Borisov6ef06d22017-02-20 13:50:34 +0200257 btrfs_i_size_write(BTRFS_I(inode), 0);
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700258 truncate_pagecache(inode, 0);
Josef Bacik0af3d002010-06-21 14:48:16 -0400259
260 /*
Omar Sandovalf7e9e8f2018-05-11 13:13:32 -0700261 * We skip the throttling logic for free space cache inodes, so we don't
262 * need to check for -EAGAIN.
Josef Bacik0af3d002010-06-21 14:48:16 -0400263 */
264 ret = btrfs_truncate_inode_items(trans, root, inode,
265 0, BTRFS_EXTENT_DATA_KEY);
Filipe Manana35c76642015-04-30 17:47:05 +0100266 if (ret)
267 goto fail;
Josef Bacik0af3d002010-06-21 14:48:16 -0400268
Li Zefan82d59022011-04-20 10:33:24 +0800269 ret = btrfs_update_inode(trans, root, inode);
Chris Mason1bbc6212015-04-06 12:46:08 -0700270
Chris Mason1bbc6212015-04-06 12:46:08 -0700271fail:
Filipe Manana35c76642015-04-30 17:47:05 +0100272 if (locked)
273 mutex_unlock(&trans->transaction->cache_write_mutex);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100274 if (ret)
Jeff Mahoney66642832016-06-10 18:19:25 -0400275 btrfs_abort_transaction(trans, ret);
Josef Bacikc8174312011-11-02 09:29:35 -0400276
Li Zefan82d59022011-04-20 10:33:24 +0800277 return ret;
Josef Bacik0af3d002010-06-21 14:48:16 -0400278}
279
David Sterba1d480532017-01-23 17:28:19 +0100280static void readahead_cache(struct inode *inode)
Josef Bacik9d66e232010-08-25 16:54:15 -0400281{
282 struct file_ra_state *ra;
283 unsigned long last_index;
284
285 ra = kzalloc(sizeof(*ra), GFP_NOFS);
286 if (!ra)
David Sterba1d480532017-01-23 17:28:19 +0100287 return;
Josef Bacik9d66e232010-08-25 16:54:15 -0400288
289 file_ra_state_init(ra, inode->i_mapping);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300290 last_index = (i_size_read(inode) - 1) >> PAGE_SHIFT;
Josef Bacik9d66e232010-08-25 16:54:15 -0400291
292 page_cache_sync_readahead(inode->i_mapping, ra, NULL, 0, last_index);
293
294 kfree(ra);
Josef Bacik9d66e232010-08-25 16:54:15 -0400295}
296
Chris Mason4c6d1d82015-04-06 13:17:20 -0700297static int io_ctl_init(struct btrfs_io_ctl *io_ctl, struct inode *inode,
Jeff Mahoneyf15376d2016-06-22 18:56:18 -0400298 int write)
Josef Bacika67509c2011-10-05 15:18:58 -0400299{
Miao Xie5349d6c2014-06-19 10:42:49 +0800300 int num_pages;
301 int check_crcs = 0;
302
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300303 num_pages = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
Miao Xie5349d6c2014-06-19 10:42:49 +0800304
Nikolay Borisov4a0cc7c2017-01-10 20:35:31 +0200305 if (btrfs_ino(BTRFS_I(inode)) != BTRFS_FREE_INO_OBJECTID)
Miao Xie5349d6c2014-06-19 10:42:49 +0800306 check_crcs = 1;
307
Zhihui Zhang8f6c72a2018-07-02 20:00:54 -0400308 /* Make sure we can fit our crcs and generation into the first page */
Miao Xie5349d6c2014-06-19 10:42:49 +0800309 if (write && check_crcs &&
Zhihui Zhang8f6c72a2018-07-02 20:00:54 -0400310 (num_pages * sizeof(u32) + sizeof(u64)) > PAGE_SIZE)
Miao Xie5349d6c2014-06-19 10:42:49 +0800311 return -ENOSPC;
312
Chris Mason4c6d1d82015-04-06 13:17:20 -0700313 memset(io_ctl, 0, sizeof(struct btrfs_io_ctl));
Miao Xie5349d6c2014-06-19 10:42:49 +0800314
David Sterba31e818f2015-02-20 18:00:26 +0100315 io_ctl->pages = kcalloc(num_pages, sizeof(struct page *), GFP_NOFS);
Josef Bacika67509c2011-10-05 15:18:58 -0400316 if (!io_ctl->pages)
317 return -ENOMEM;
Miao Xie5349d6c2014-06-19 10:42:49 +0800318
319 io_ctl->num_pages = num_pages;
Jeff Mahoneyf15376d2016-06-22 18:56:18 -0400320 io_ctl->fs_info = btrfs_sb(inode->i_sb);
Miao Xie5349d6c2014-06-19 10:42:49 +0800321 io_ctl->check_crcs = check_crcs;
Chris Masonc9dc4c62015-04-04 17:14:42 -0700322 io_ctl->inode = inode;
Miao Xie5349d6c2014-06-19 10:42:49 +0800323
Josef Bacika67509c2011-10-05 15:18:58 -0400324 return 0;
325}
Masami Hiramatsu663faf92018-01-13 02:55:33 +0900326ALLOW_ERROR_INJECTION(io_ctl_init, ERRNO);
Josef Bacika67509c2011-10-05 15:18:58 -0400327
Chris Mason4c6d1d82015-04-06 13:17:20 -0700328static void io_ctl_free(struct btrfs_io_ctl *io_ctl)
Josef Bacika67509c2011-10-05 15:18:58 -0400329{
330 kfree(io_ctl->pages);
Chris Masonc9dc4c62015-04-04 17:14:42 -0700331 io_ctl->pages = NULL;
Josef Bacika67509c2011-10-05 15:18:58 -0400332}
333
Chris Mason4c6d1d82015-04-06 13:17:20 -0700334static void io_ctl_unmap_page(struct btrfs_io_ctl *io_ctl)
Josef Bacika67509c2011-10-05 15:18:58 -0400335{
336 if (io_ctl->cur) {
Josef Bacika67509c2011-10-05 15:18:58 -0400337 io_ctl->cur = NULL;
338 io_ctl->orig = NULL;
339 }
340}
341
Chris Mason4c6d1d82015-04-06 13:17:20 -0700342static void io_ctl_map_page(struct btrfs_io_ctl *io_ctl, int clear)
Josef Bacika67509c2011-10-05 15:18:58 -0400343{
Josef Bacikb12d6862013-08-26 17:14:08 -0400344 ASSERT(io_ctl->index < io_ctl->num_pages);
Josef Bacika67509c2011-10-05 15:18:58 -0400345 io_ctl->page = io_ctl->pages[io_ctl->index++];
Chris Mason2b108262015-04-06 07:48:20 -0700346 io_ctl->cur = page_address(io_ctl->page);
Josef Bacika67509c2011-10-05 15:18:58 -0400347 io_ctl->orig = io_ctl->cur;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300348 io_ctl->size = PAGE_SIZE;
Josef Bacika67509c2011-10-05 15:18:58 -0400349 if (clear)
David Sterba619a9742017-03-29 20:48:44 +0200350 clear_page(io_ctl->cur);
Josef Bacika67509c2011-10-05 15:18:58 -0400351}
352
Chris Mason4c6d1d82015-04-06 13:17:20 -0700353static void io_ctl_drop_pages(struct btrfs_io_ctl *io_ctl)
Josef Bacika67509c2011-10-05 15:18:58 -0400354{
355 int i;
356
357 io_ctl_unmap_page(io_ctl);
358
359 for (i = 0; i < io_ctl->num_pages; i++) {
Li Zefana1ee5a42012-01-09 14:27:42 +0800360 if (io_ctl->pages[i]) {
361 ClearPageChecked(io_ctl->pages[i]);
362 unlock_page(io_ctl->pages[i]);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300363 put_page(io_ctl->pages[i]);
Li Zefana1ee5a42012-01-09 14:27:42 +0800364 }
Josef Bacika67509c2011-10-05 15:18:58 -0400365 }
366}
367
Chris Mason4c6d1d82015-04-06 13:17:20 -0700368static int io_ctl_prepare_pages(struct btrfs_io_ctl *io_ctl, struct inode *inode,
Josef Bacika67509c2011-10-05 15:18:58 -0400369 int uptodate)
370{
371 struct page *page;
372 gfp_t mask = btrfs_alloc_write_mask(inode->i_mapping);
373 int i;
374
375 for (i = 0; i < io_ctl->num_pages; i++) {
376 page = find_or_create_page(inode->i_mapping, i, mask);
377 if (!page) {
378 io_ctl_drop_pages(io_ctl);
379 return -ENOMEM;
380 }
381 io_ctl->pages[i] = page;
382 if (uptodate && !PageUptodate(page)) {
383 btrfs_readpage(NULL, page);
384 lock_page(page);
385 if (!PageUptodate(page)) {
Frank Holtonefe120a2013-12-20 11:37:06 -0500386 btrfs_err(BTRFS_I(inode)->root->fs_info,
387 "error reading free space cache");
Josef Bacika67509c2011-10-05 15:18:58 -0400388 io_ctl_drop_pages(io_ctl);
389 return -EIO;
390 }
391 }
392 }
393
Josef Bacikf7d61dc2011-11-15 09:31:24 -0500394 for (i = 0; i < io_ctl->num_pages; i++) {
395 clear_page_dirty_for_io(io_ctl->pages[i]);
396 set_page_extent_mapped(io_ctl->pages[i]);
397 }
398
Josef Bacika67509c2011-10-05 15:18:58 -0400399 return 0;
400}
401
Chris Mason4c6d1d82015-04-06 13:17:20 -0700402static void io_ctl_set_generation(struct btrfs_io_ctl *io_ctl, u64 generation)
Josef Bacika67509c2011-10-05 15:18:58 -0400403{
Al Viro528c0322012-04-13 11:03:55 -0400404 __le64 *val;
Josef Bacika67509c2011-10-05 15:18:58 -0400405
406 io_ctl_map_page(io_ctl, 1);
407
408 /*
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400409 * Skip the csum areas. If we don't check crcs then we just have a
410 * 64bit chunk at the front of the first page.
Josef Bacika67509c2011-10-05 15:18:58 -0400411 */
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400412 if (io_ctl->check_crcs) {
413 io_ctl->cur += (sizeof(u32) * io_ctl->num_pages);
414 io_ctl->size -= sizeof(u64) + (sizeof(u32) * io_ctl->num_pages);
415 } else {
416 io_ctl->cur += sizeof(u64);
417 io_ctl->size -= sizeof(u64) * 2;
418 }
Josef Bacika67509c2011-10-05 15:18:58 -0400419
420 val = io_ctl->cur;
421 *val = cpu_to_le64(generation);
422 io_ctl->cur += sizeof(u64);
Josef Bacika67509c2011-10-05 15:18:58 -0400423}
424
Chris Mason4c6d1d82015-04-06 13:17:20 -0700425static int io_ctl_check_generation(struct btrfs_io_ctl *io_ctl, u64 generation)
Josef Bacika67509c2011-10-05 15:18:58 -0400426{
Al Viro528c0322012-04-13 11:03:55 -0400427 __le64 *gen;
Josef Bacika67509c2011-10-05 15:18:58 -0400428
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400429 /*
430 * Skip the crc area. If we don't check crcs then we just have a 64bit
431 * chunk at the front of the first page.
432 */
433 if (io_ctl->check_crcs) {
434 io_ctl->cur += sizeof(u32) * io_ctl->num_pages;
435 io_ctl->size -= sizeof(u64) +
436 (sizeof(u32) * io_ctl->num_pages);
437 } else {
438 io_ctl->cur += sizeof(u64);
439 io_ctl->size -= sizeof(u64) * 2;
440 }
Josef Bacika67509c2011-10-05 15:18:58 -0400441
Josef Bacika67509c2011-10-05 15:18:58 -0400442 gen = io_ctl->cur;
443 if (le64_to_cpu(*gen) != generation) {
Jeff Mahoneyf15376d2016-06-22 18:56:18 -0400444 btrfs_err_rl(io_ctl->fs_info,
David Sterba94647322015-10-08 11:01:36 +0200445 "space cache generation (%llu) does not match inode (%llu)",
446 *gen, generation);
Josef Bacika67509c2011-10-05 15:18:58 -0400447 io_ctl_unmap_page(io_ctl);
448 return -EIO;
449 }
450 io_ctl->cur += sizeof(u64);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400451 return 0;
452}
453
Chris Mason4c6d1d82015-04-06 13:17:20 -0700454static void io_ctl_set_crc(struct btrfs_io_ctl *io_ctl, int index)
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400455{
456 u32 *tmp;
457 u32 crc = ~(u32)0;
458 unsigned offset = 0;
459
460 if (!io_ctl->check_crcs) {
461 io_ctl_unmap_page(io_ctl);
462 return;
463 }
464
465 if (index == 0)
Justin P. Mattockcb54f252011-11-21 08:43:28 -0800466 offset = sizeof(u32) * io_ctl->num_pages;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400467
Liu Bob0496682013-03-14 14:57:45 +0000468 crc = btrfs_csum_data(io_ctl->orig + offset, crc,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300469 PAGE_SIZE - offset);
Domagoj Tršan0b5e3da2016-10-27 08:52:33 +0100470 btrfs_csum_final(crc, (u8 *)&crc);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400471 io_ctl_unmap_page(io_ctl);
Chris Mason2b108262015-04-06 07:48:20 -0700472 tmp = page_address(io_ctl->pages[0]);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400473 tmp += index;
474 *tmp = crc;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400475}
476
Chris Mason4c6d1d82015-04-06 13:17:20 -0700477static int io_ctl_check_crc(struct btrfs_io_ctl *io_ctl, int index)
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400478{
479 u32 *tmp, val;
480 u32 crc = ~(u32)0;
481 unsigned offset = 0;
482
483 if (!io_ctl->check_crcs) {
484 io_ctl_map_page(io_ctl, 0);
485 return 0;
486 }
487
488 if (index == 0)
489 offset = sizeof(u32) * io_ctl->num_pages;
490
Chris Mason2b108262015-04-06 07:48:20 -0700491 tmp = page_address(io_ctl->pages[0]);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400492 tmp += index;
493 val = *tmp;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400494
495 io_ctl_map_page(io_ctl, 0);
Liu Bob0496682013-03-14 14:57:45 +0000496 crc = btrfs_csum_data(io_ctl->orig + offset, crc,
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300497 PAGE_SIZE - offset);
Domagoj Tršan0b5e3da2016-10-27 08:52:33 +0100498 btrfs_csum_final(crc, (u8 *)&crc);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400499 if (val != crc) {
Jeff Mahoneyf15376d2016-06-22 18:56:18 -0400500 btrfs_err_rl(io_ctl->fs_info,
David Sterba94647322015-10-08 11:01:36 +0200501 "csum mismatch on free space cache");
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400502 io_ctl_unmap_page(io_ctl);
503 return -EIO;
504 }
505
Josef Bacika67509c2011-10-05 15:18:58 -0400506 return 0;
507}
508
Chris Mason4c6d1d82015-04-06 13:17:20 -0700509static int io_ctl_add_entry(struct btrfs_io_ctl *io_ctl, u64 offset, u64 bytes,
Josef Bacika67509c2011-10-05 15:18:58 -0400510 void *bitmap)
511{
512 struct btrfs_free_space_entry *entry;
513
514 if (!io_ctl->cur)
515 return -ENOSPC;
516
517 entry = io_ctl->cur;
518 entry->offset = cpu_to_le64(offset);
519 entry->bytes = cpu_to_le64(bytes);
520 entry->type = (bitmap) ? BTRFS_FREE_SPACE_BITMAP :
521 BTRFS_FREE_SPACE_EXTENT;
522 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
523 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
524
525 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
526 return 0;
527
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400528 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400529
530 /* No more pages to map */
531 if (io_ctl->index >= io_ctl->num_pages)
532 return 0;
533
534 /* map the next page */
535 io_ctl_map_page(io_ctl, 1);
536 return 0;
537}
538
Chris Mason4c6d1d82015-04-06 13:17:20 -0700539static int io_ctl_add_bitmap(struct btrfs_io_ctl *io_ctl, void *bitmap)
Josef Bacika67509c2011-10-05 15:18:58 -0400540{
541 if (!io_ctl->cur)
542 return -ENOSPC;
543
544 /*
545 * If we aren't at the start of the current page, unmap this one and
546 * map the next one if there is any left.
547 */
548 if (io_ctl->cur != io_ctl->orig) {
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400549 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400550 if (io_ctl->index >= io_ctl->num_pages)
551 return -ENOSPC;
552 io_ctl_map_page(io_ctl, 0);
553 }
554
David Sterba69d24802018-06-29 10:56:44 +0200555 copy_page(io_ctl->cur, bitmap);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400556 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400557 if (io_ctl->index < io_ctl->num_pages)
558 io_ctl_map_page(io_ctl, 0);
559 return 0;
560}
561
Chris Mason4c6d1d82015-04-06 13:17:20 -0700562static void io_ctl_zero_remaining_pages(struct btrfs_io_ctl *io_ctl)
Josef Bacika67509c2011-10-05 15:18:58 -0400563{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400564 /*
565 * If we're not on the boundary we know we've modified the page and we
566 * need to crc the page.
567 */
568 if (io_ctl->cur != io_ctl->orig)
569 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
570 else
571 io_ctl_unmap_page(io_ctl);
Josef Bacika67509c2011-10-05 15:18:58 -0400572
573 while (io_ctl->index < io_ctl->num_pages) {
574 io_ctl_map_page(io_ctl, 1);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400575 io_ctl_set_crc(io_ctl, io_ctl->index - 1);
Josef Bacika67509c2011-10-05 15:18:58 -0400576 }
577}
578
Chris Mason4c6d1d82015-04-06 13:17:20 -0700579static int io_ctl_read_entry(struct btrfs_io_ctl *io_ctl,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400580 struct btrfs_free_space *entry, u8 *type)
Josef Bacika67509c2011-10-05 15:18:58 -0400581{
582 struct btrfs_free_space_entry *e;
Josef Bacik2f120c02011-11-10 20:45:05 -0500583 int ret;
584
585 if (!io_ctl->cur) {
586 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
587 if (ret)
588 return ret;
589 }
Josef Bacika67509c2011-10-05 15:18:58 -0400590
591 e = io_ctl->cur;
592 entry->offset = le64_to_cpu(e->offset);
593 entry->bytes = le64_to_cpu(e->bytes);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400594 *type = e->type;
Josef Bacika67509c2011-10-05 15:18:58 -0400595 io_ctl->cur += sizeof(struct btrfs_free_space_entry);
596 io_ctl->size -= sizeof(struct btrfs_free_space_entry);
597
598 if (io_ctl->size >= sizeof(struct btrfs_free_space_entry))
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400599 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400600
601 io_ctl_unmap_page(io_ctl);
602
Josef Bacik2f120c02011-11-10 20:45:05 -0500603 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400604}
605
Chris Mason4c6d1d82015-04-06 13:17:20 -0700606static int io_ctl_read_bitmap(struct btrfs_io_ctl *io_ctl,
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400607 struct btrfs_free_space *entry)
Josef Bacika67509c2011-10-05 15:18:58 -0400608{
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400609 int ret;
610
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400611 ret = io_ctl_check_crc(io_ctl, io_ctl->index);
612 if (ret)
613 return ret;
614
David Sterba69d24802018-06-29 10:56:44 +0200615 copy_page(entry->bitmap, io_ctl->cur);
Josef Bacika67509c2011-10-05 15:18:58 -0400616 io_ctl_unmap_page(io_ctl);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400617
618 return 0;
Josef Bacika67509c2011-10-05 15:18:58 -0400619}
620
Josef Bacikcd023e72012-05-14 10:06:40 -0400621/*
622 * Since we attach pinned extents after the fact we can have contiguous sections
623 * of free space that are split up in entries. This poses a problem with the
624 * tree logging stuff since it could have allocated across what appears to be 2
625 * entries since we would have merged the entries when adding the pinned extents
626 * back to the free space cache. So run through the space cache that we just
627 * loaded and merge contiguous entries. This will make the log replay stuff not
628 * blow up and it will make for nicer allocator behavior.
629 */
630static void merge_space_tree(struct btrfs_free_space_ctl *ctl)
631{
632 struct btrfs_free_space *e, *prev = NULL;
633 struct rb_node *n;
634
635again:
636 spin_lock(&ctl->tree_lock);
637 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
638 e = rb_entry(n, struct btrfs_free_space, offset_index);
639 if (!prev)
640 goto next;
641 if (e->bitmap || prev->bitmap)
642 goto next;
643 if (prev->offset + prev->bytes == e->offset) {
644 unlink_free_space(ctl, prev);
645 unlink_free_space(ctl, e);
646 prev->bytes += e->bytes;
647 kmem_cache_free(btrfs_free_space_cachep, e);
648 link_free_space(ctl, prev);
649 prev = NULL;
650 spin_unlock(&ctl->tree_lock);
651 goto again;
652 }
653next:
654 prev = e;
655 }
656 spin_unlock(&ctl->tree_lock);
657}
658
Eric Sandeen48a3b632013-04-25 20:41:01 +0000659static int __load_free_space_cache(struct btrfs_root *root, struct inode *inode,
660 struct btrfs_free_space_ctl *ctl,
661 struct btrfs_path *path, u64 offset)
Josef Bacik9d66e232010-08-25 16:54:15 -0400662{
David Sterba3ffbd682018-06-29 10:56:42 +0200663 struct btrfs_fs_info *fs_info = root->fs_info;
Josef Bacik9d66e232010-08-25 16:54:15 -0400664 struct btrfs_free_space_header *header;
665 struct extent_buffer *leaf;
Chris Mason4c6d1d82015-04-06 13:17:20 -0700666 struct btrfs_io_ctl io_ctl;
Josef Bacik9d66e232010-08-25 16:54:15 -0400667 struct btrfs_key key;
Josef Bacika67509c2011-10-05 15:18:58 -0400668 struct btrfs_free_space *e, *n;
Gui Hechengb76808f2014-12-31 09:51:35 +0800669 LIST_HEAD(bitmaps);
Josef Bacik9d66e232010-08-25 16:54:15 -0400670 u64 num_entries;
671 u64 num_bitmaps;
672 u64 generation;
Josef Bacika67509c2011-10-05 15:18:58 -0400673 u8 type;
Josef Bacikf6a39822011-06-06 10:50:35 -0400674 int ret = 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400675
Josef Bacik9d66e232010-08-25 16:54:15 -0400676 /* Nothing in the space cache, goodbye */
Li Zefan0414efa2011-04-20 10:20:14 +0800677 if (!i_size_read(inode))
Josef Bacika67509c2011-10-05 15:18:58 -0400678 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400679
680 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
Li Zefan0414efa2011-04-20 10:20:14 +0800681 key.offset = offset;
Josef Bacik9d66e232010-08-25 16:54:15 -0400682 key.type = 0;
683
684 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
Li Zefan0414efa2011-04-20 10:20:14 +0800685 if (ret < 0)
Josef Bacika67509c2011-10-05 15:18:58 -0400686 return 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800687 else if (ret > 0) {
Chris Mason945d8962011-05-22 12:33:42 -0400688 btrfs_release_path(path);
Josef Bacika67509c2011-10-05 15:18:58 -0400689 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400690 }
691
Li Zefan0414efa2011-04-20 10:20:14 +0800692 ret = -1;
693
Josef Bacik9d66e232010-08-25 16:54:15 -0400694 leaf = path->nodes[0];
695 header = btrfs_item_ptr(leaf, path->slots[0],
696 struct btrfs_free_space_header);
697 num_entries = btrfs_free_space_entries(leaf, header);
698 num_bitmaps = btrfs_free_space_bitmaps(leaf, header);
699 generation = btrfs_free_space_generation(leaf, header);
Chris Mason945d8962011-05-22 12:33:42 -0400700 btrfs_release_path(path);
Josef Bacik9d66e232010-08-25 16:54:15 -0400701
Miao Xiee570fd22014-06-19 10:42:50 +0800702 if (!BTRFS_I(inode)->generation) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400703 btrfs_info(fs_info,
David Sterba913e1532017-07-13 15:32:18 +0200704 "the free space cache file (%llu) is invalid, skip it",
Miao Xiee570fd22014-06-19 10:42:50 +0800705 offset);
706 return 0;
707 }
708
Josef Bacik9d66e232010-08-25 16:54:15 -0400709 if (BTRFS_I(inode)->generation != generation) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400710 btrfs_err(fs_info,
711 "free space inode generation (%llu) did not match free space cache generation (%llu)",
712 BTRFS_I(inode)->generation, generation);
Josef Bacika67509c2011-10-05 15:18:58 -0400713 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400714 }
715
716 if (!num_entries)
Josef Bacika67509c2011-10-05 15:18:58 -0400717 return 0;
Josef Bacik9d66e232010-08-25 16:54:15 -0400718
Jeff Mahoneyf15376d2016-06-22 18:56:18 -0400719 ret = io_ctl_init(&io_ctl, inode, 0);
Li Zefan706efc62012-01-09 14:36:28 +0800720 if (ret)
721 return ret;
722
David Sterba1d480532017-01-23 17:28:19 +0100723 readahead_cache(inode);
Josef Bacik9d66e232010-08-25 16:54:15 -0400724
Josef Bacika67509c2011-10-05 15:18:58 -0400725 ret = io_ctl_prepare_pages(&io_ctl, inode, 1);
726 if (ret)
727 goto out;
Josef Bacik9d66e232010-08-25 16:54:15 -0400728
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400729 ret = io_ctl_check_crc(&io_ctl, 0);
730 if (ret)
731 goto free_cache;
732
Josef Bacika67509c2011-10-05 15:18:58 -0400733 ret = io_ctl_check_generation(&io_ctl, generation);
734 if (ret)
735 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400736
Josef Bacika67509c2011-10-05 15:18:58 -0400737 while (num_entries) {
738 e = kmem_cache_zalloc(btrfs_free_space_cachep,
739 GFP_NOFS);
740 if (!e)
Josef Bacik9d66e232010-08-25 16:54:15 -0400741 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400742
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400743 ret = io_ctl_read_entry(&io_ctl, e, &type);
744 if (ret) {
745 kmem_cache_free(btrfs_free_space_cachep, e);
746 goto free_cache;
747 }
748
Josef Bacika67509c2011-10-05 15:18:58 -0400749 if (!e->bytes) {
750 kmem_cache_free(btrfs_free_space_cachep, e);
751 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400752 }
Josef Bacik9d66e232010-08-25 16:54:15 -0400753
Josef Bacika67509c2011-10-05 15:18:58 -0400754 if (type == BTRFS_FREE_SPACE_EXTENT) {
755 spin_lock(&ctl->tree_lock);
756 ret = link_free_space(ctl, e);
757 spin_unlock(&ctl->tree_lock);
758 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400759 btrfs_err(fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000760 "Duplicate entries in free space cache, dumping");
Josef Bacikdc89e982011-01-28 17:05:48 -0500761 kmem_cache_free(btrfs_free_space_cachep, e);
Josef Bacik9d66e232010-08-25 16:54:15 -0400762 goto free_cache;
763 }
Josef Bacika67509c2011-10-05 15:18:58 -0400764 } else {
Josef Bacikb12d6862013-08-26 17:14:08 -0400765 ASSERT(num_bitmaps);
Josef Bacika67509c2011-10-05 15:18:58 -0400766 num_bitmaps--;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300767 e->bitmap = kzalloc(PAGE_SIZE, GFP_NOFS);
Josef Bacika67509c2011-10-05 15:18:58 -0400768 if (!e->bitmap) {
769 kmem_cache_free(
770 btrfs_free_space_cachep, e);
771 goto free_cache;
Josef Bacik9d66e232010-08-25 16:54:15 -0400772 }
Josef Bacika67509c2011-10-05 15:18:58 -0400773 spin_lock(&ctl->tree_lock);
774 ret = link_free_space(ctl, e);
775 ctl->total_bitmaps++;
776 ctl->op->recalc_thresholds(ctl);
777 spin_unlock(&ctl->tree_lock);
778 if (ret) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400779 btrfs_err(fs_info,
Simon Kirbyc2cf52e2013-03-19 22:41:23 +0000780 "Duplicate entries in free space cache, dumping");
Josef Bacika67509c2011-10-05 15:18:58 -0400781 kmem_cache_free(btrfs_free_space_cachep, e);
782 goto free_cache;
783 }
784 list_add_tail(&e->list, &bitmaps);
Josef Bacik9d66e232010-08-25 16:54:15 -0400785 }
786
Josef Bacika67509c2011-10-05 15:18:58 -0400787 num_entries--;
Josef Bacik9d66e232010-08-25 16:54:15 -0400788 }
789
Josef Bacik2f120c02011-11-10 20:45:05 -0500790 io_ctl_unmap_page(&io_ctl);
791
Josef Bacika67509c2011-10-05 15:18:58 -0400792 /*
793 * We add the bitmaps at the end of the entries in order that
794 * the bitmap entries are added to the cache.
795 */
796 list_for_each_entry_safe(e, n, &bitmaps, list) {
797 list_del_init(&e->list);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400798 ret = io_ctl_read_bitmap(&io_ctl, e);
799 if (ret)
800 goto free_cache;
Josef Bacika67509c2011-10-05 15:18:58 -0400801 }
802
803 io_ctl_drop_pages(&io_ctl);
Josef Bacikcd023e72012-05-14 10:06:40 -0400804 merge_space_tree(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400805 ret = 1;
806out:
Josef Bacika67509c2011-10-05 15:18:58 -0400807 io_ctl_free(&io_ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400808 return ret;
Josef Bacik9d66e232010-08-25 16:54:15 -0400809free_cache:
Josef Bacika67509c2011-10-05 15:18:58 -0400810 io_ctl_drop_pages(&io_ctl);
Li Zefan0414efa2011-04-20 10:20:14 +0800811 __btrfs_remove_free_space_cache(ctl);
Josef Bacik9d66e232010-08-25 16:54:15 -0400812 goto out;
813}
814
David Sterbabb6cb1c2019-03-20 13:47:15 +0100815int load_free_space_cache(struct btrfs_block_group_cache *block_group)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400816{
David Sterbabb6cb1c2019-03-20 13:47:15 +0100817 struct btrfs_fs_info *fs_info = block_group->fs_info;
Li Zefan34d52cb2011-03-29 13:46:06 +0800818 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan0414efa2011-04-20 10:20:14 +0800819 struct inode *inode;
820 struct btrfs_path *path;
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400821 int ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800822 bool matched;
823 u64 used = btrfs_block_group_used(&block_group->item);
824
825 /*
Li Zefan0414efa2011-04-20 10:20:14 +0800826 * If this block group has been marked to be cleared for one reason or
827 * another then we can't trust the on disk cache, so just return.
828 */
829 spin_lock(&block_group->lock);
830 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
831 spin_unlock(&block_group->lock);
832 return 0;
833 }
834 spin_unlock(&block_group->lock);
835
836 path = btrfs_alloc_path();
837 if (!path)
838 return 0;
Josef Bacikd53ba472012-04-12 16:03:57 -0400839 path->search_commit_root = 1;
840 path->skip_locking = 1;
Li Zefan0414efa2011-04-20 10:20:14 +0800841
Filipe Manana4222ea72018-10-24 10:13:03 +0100842 /*
843 * We must pass a path with search_commit_root set to btrfs_iget in
844 * order to avoid a deadlock when allocating extents for the tree root.
845 *
846 * When we are COWing an extent buffer from the tree root, when looking
847 * for a free extent, at extent-tree.c:find_free_extent(), we can find
848 * block group without its free space cache loaded. When we find one
849 * we must load its space cache which requires reading its free space
850 * cache's inode item from the root tree. If this inode item is located
851 * in the same leaf that we started COWing before, then we end up in
852 * deadlock on the extent buffer (trying to read lock it when we
853 * previously write locked it).
854 *
855 * It's safe to read the inode item using the commit root because
856 * block groups, once loaded, stay in memory forever (until they are
857 * removed) as well as their space caches once loaded. New block groups
858 * once created get their ->cached field set to BTRFS_CACHE_FINISHED so
859 * we will never try to read their inode item while the fs is mounted.
860 */
David Sterba7949f332019-03-20 13:40:19 +0100861 inode = lookup_free_space_inode(block_group, path);
Li Zefan0414efa2011-04-20 10:20:14 +0800862 if (IS_ERR(inode)) {
863 btrfs_free_path(path);
864 return 0;
865 }
866
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400867 /* We may have converted the inode and made the cache invalid. */
868 spin_lock(&block_group->lock);
869 if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
870 spin_unlock(&block_group->lock);
Tsutomu Itoha7e221e2012-02-14 17:12:23 +0900871 btrfs_free_path(path);
Josef Bacik5b0e95b2011-10-06 08:58:24 -0400872 goto out;
873 }
874 spin_unlock(&block_group->lock);
875
Li Zefan0414efa2011-04-20 10:20:14 +0800876 ret = __load_free_space_cache(fs_info->tree_root, inode, ctl,
877 path, block_group->key.objectid);
878 btrfs_free_path(path);
879 if (ret <= 0)
880 goto out;
881
882 spin_lock(&ctl->tree_lock);
883 matched = (ctl->free_space == (block_group->key.offset - used -
884 block_group->bytes_super));
885 spin_unlock(&ctl->tree_lock);
886
887 if (!matched) {
888 __btrfs_remove_free_space_cache(ctl);
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400889 btrfs_warn(fs_info,
890 "block group %llu has wrong amount of free space",
891 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800892 ret = -1;
893 }
894out:
895 if (ret < 0) {
896 /* This cache is bogus, make sure it gets cleared */
897 spin_lock(&block_group->lock);
898 block_group->disk_cache_state = BTRFS_DC_CLEAR;
899 spin_unlock(&block_group->lock);
Li Zefan82d59022011-04-20 10:33:24 +0800900 ret = 0;
Li Zefan0414efa2011-04-20 10:20:14 +0800901
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400902 btrfs_warn(fs_info,
903 "failed to load free space cache for block group %llu, rebuilding it now",
904 block_group->key.objectid);
Li Zefan0414efa2011-04-20 10:20:14 +0800905 }
906
907 iput(inode);
908 return ret;
909}
910
Chris Masond4452bc2014-05-19 20:47:56 -0700911static noinline_for_stack
Chris Mason4c6d1d82015-04-06 13:17:20 -0700912int write_cache_extent_entries(struct btrfs_io_ctl *io_ctl,
Chris Masond4452bc2014-05-19 20:47:56 -0700913 struct btrfs_free_space_ctl *ctl,
914 struct btrfs_block_group_cache *block_group,
915 int *entries, int *bitmaps,
916 struct list_head *bitmap_list)
Josef Bacik0cb59c92010-07-02 12:14:14 -0400917{
Josef Bacikc09544e2011-08-30 10:19:10 -0400918 int ret;
Chris Masond4452bc2014-05-19 20:47:56 -0700919 struct btrfs_free_cluster *cluster = NULL;
Chris Mason1bbc6212015-04-06 12:46:08 -0700920 struct btrfs_free_cluster *cluster_locked = NULL;
Chris Masond4452bc2014-05-19 20:47:56 -0700921 struct rb_node *node = rb_first(&ctl->free_space_offset);
Filipe Manana55507ce2014-12-01 17:04:09 +0000922 struct btrfs_trim_range *trim_entry;
Josef Bacikbe1a12a2011-04-06 13:05:22 -0400923
Josef Bacik43be2142011-04-01 14:55:00 +0000924 /* Get the cluster for this block_group if it exists */
Chris Masond4452bc2014-05-19 20:47:56 -0700925 if (block_group && !list_empty(&block_group->cluster_list)) {
Josef Bacik43be2142011-04-01 14:55:00 +0000926 cluster = list_entry(block_group->cluster_list.next,
927 struct btrfs_free_cluster,
928 block_group_list);
Chris Masond4452bc2014-05-19 20:47:56 -0700929 }
Josef Bacik43be2142011-04-01 14:55:00 +0000930
Josef Bacikf75b1302011-10-05 10:00:18 -0400931 if (!node && cluster) {
Chris Mason1bbc6212015-04-06 12:46:08 -0700932 cluster_locked = cluster;
933 spin_lock(&cluster_locked->lock);
Josef Bacikf75b1302011-10-05 10:00:18 -0400934 node = rb_first(&cluster->root);
935 cluster = NULL;
936 }
937
Josef Bacik0cb59c92010-07-02 12:14:14 -0400938 /* Write out the extent entries */
Josef Bacika67509c2011-10-05 15:18:58 -0400939 while (node) {
940 struct btrfs_free_space *e;
Josef Bacik0cb59c92010-07-02 12:14:14 -0400941
Josef Bacika67509c2011-10-05 15:18:58 -0400942 e = rb_entry(node, struct btrfs_free_space, offset_index);
Chris Masond4452bc2014-05-19 20:47:56 -0700943 *entries += 1;
Josef Bacik43be2142011-04-01 14:55:00 +0000944
Chris Masond4452bc2014-05-19 20:47:56 -0700945 ret = io_ctl_add_entry(io_ctl, e->offset, e->bytes,
Josef Bacika67509c2011-10-05 15:18:58 -0400946 e->bitmap);
947 if (ret)
Chris Masond4452bc2014-05-19 20:47:56 -0700948 goto fail;
Josef Bacika67509c2011-10-05 15:18:58 -0400949
950 if (e->bitmap) {
Chris Masond4452bc2014-05-19 20:47:56 -0700951 list_add_tail(&e->list, bitmap_list);
952 *bitmaps += 1;
Josef Bacika67509c2011-10-05 15:18:58 -0400953 }
954 node = rb_next(node);
955 if (!node && cluster) {
956 node = rb_first(&cluster->root);
Chris Mason1bbc6212015-04-06 12:46:08 -0700957 cluster_locked = cluster;
958 spin_lock(&cluster_locked->lock);
Josef Bacika67509c2011-10-05 15:18:58 -0400959 cluster = NULL;
960 }
961 }
Chris Mason1bbc6212015-04-06 12:46:08 -0700962 if (cluster_locked) {
963 spin_unlock(&cluster_locked->lock);
964 cluster_locked = NULL;
965 }
Filipe Manana55507ce2014-12-01 17:04:09 +0000966
967 /*
968 * Make sure we don't miss any range that was removed from our rbtree
969 * because trimming is running. Otherwise after a umount+mount (or crash
970 * after committing the transaction) we would leak free space and get
971 * an inconsistent free space cache report from fsck.
972 */
973 list_for_each_entry(trim_entry, &ctl->trimming_ranges, list) {
974 ret = io_ctl_add_entry(io_ctl, trim_entry->start,
975 trim_entry->bytes, NULL);
976 if (ret)
977 goto fail;
978 *entries += 1;
979 }
980
Chris Masond4452bc2014-05-19 20:47:56 -0700981 return 0;
982fail:
Chris Mason1bbc6212015-04-06 12:46:08 -0700983 if (cluster_locked)
984 spin_unlock(&cluster_locked->lock);
Chris Masond4452bc2014-05-19 20:47:56 -0700985 return -ENOSPC;
986}
987
988static noinline_for_stack int
989update_cache_item(struct btrfs_trans_handle *trans,
990 struct btrfs_root *root,
991 struct inode *inode,
992 struct btrfs_path *path, u64 offset,
993 int entries, int bitmaps)
994{
995 struct btrfs_key key;
996 struct btrfs_free_space_header *header;
997 struct extent_buffer *leaf;
998 int ret;
999
1000 key.objectid = BTRFS_FREE_SPACE_OBJECTID;
1001 key.offset = offset;
1002 key.type = 0;
1003
1004 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1005 if (ret < 0) {
1006 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001007 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0, NULL);
Chris Masond4452bc2014-05-19 20:47:56 -07001008 goto fail;
1009 }
1010 leaf = path->nodes[0];
1011 if (ret > 0) {
1012 struct btrfs_key found_key;
1013 ASSERT(path->slots[0]);
1014 path->slots[0]--;
1015 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1016 if (found_key.objectid != BTRFS_FREE_SPACE_OBJECTID ||
1017 found_key.offset != offset) {
1018 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0,
1019 inode->i_size - 1,
1020 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0,
David Sterbaae0f1622017-10-31 16:37:52 +01001021 NULL);
Chris Masond4452bc2014-05-19 20:47:56 -07001022 btrfs_release_path(path);
1023 goto fail;
1024 }
1025 }
1026
1027 BTRFS_I(inode)->generation = trans->transid;
1028 header = btrfs_item_ptr(leaf, path->slots[0],
1029 struct btrfs_free_space_header);
1030 btrfs_set_free_space_entries(leaf, header, entries);
1031 btrfs_set_free_space_bitmaps(leaf, header, bitmaps);
1032 btrfs_set_free_space_generation(leaf, header, trans->transid);
1033 btrfs_mark_buffer_dirty(leaf);
1034 btrfs_release_path(path);
1035
1036 return 0;
1037
1038fail:
1039 return -1;
1040}
1041
David Sterba6701bdb2019-03-20 13:49:09 +01001042static noinline_for_stack int write_pinned_extent_entries(
Miao Xie5349d6c2014-06-19 10:42:49 +08001043 struct btrfs_block_group_cache *block_group,
Chris Mason4c6d1d82015-04-06 13:17:20 -07001044 struct btrfs_io_ctl *io_ctl,
Miao Xie5349d6c2014-06-19 10:42:49 +08001045 int *entries)
Chris Masond4452bc2014-05-19 20:47:56 -07001046{
1047 u64 start, extent_start, extent_end, len;
Chris Masond4452bc2014-05-19 20:47:56 -07001048 struct extent_io_tree *unpin = NULL;
1049 int ret;
Josef Bacika67509c2011-10-05 15:18:58 -04001050
Miao Xie5349d6c2014-06-19 10:42:49 +08001051 if (!block_group)
1052 return 0;
1053
Josef Bacika67509c2011-10-05 15:18:58 -04001054 /*
1055 * We want to add any pinned extents to our free space cache
1056 * so we don't leak the space
Chris Masond4452bc2014-05-19 20:47:56 -07001057 *
Li Zefandb804f22012-01-10 16:41:01 +08001058 * We shouldn't have switched the pinned extents yet so this is the
1059 * right one
1060 */
David Sterba6701bdb2019-03-20 13:49:09 +01001061 unpin = block_group->fs_info->pinned_extents;
Li Zefandb804f22012-01-10 16:41:01 +08001062
Miao Xie5349d6c2014-06-19 10:42:49 +08001063 start = block_group->key.objectid;
Li Zefandb804f22012-01-10 16:41:01 +08001064
Miao Xie5349d6c2014-06-19 10:42:49 +08001065 while (start < block_group->key.objectid + block_group->key.offset) {
Li Zefandb804f22012-01-10 16:41:01 +08001066 ret = find_first_extent_bit(unpin, start,
1067 &extent_start, &extent_end,
Josef Bacike6138872012-09-27 17:07:30 -04001068 EXTENT_DIRTY, NULL);
Miao Xie5349d6c2014-06-19 10:42:49 +08001069 if (ret)
1070 return 0;
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001071
Josef Bacika67509c2011-10-05 15:18:58 -04001072 /* This pinned extent is out of our range */
Li Zefandb804f22012-01-10 16:41:01 +08001073 if (extent_start >= block_group->key.objectid +
Josef Bacika67509c2011-10-05 15:18:58 -04001074 block_group->key.offset)
Miao Xie5349d6c2014-06-19 10:42:49 +08001075 return 0;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001076
Li Zefandb804f22012-01-10 16:41:01 +08001077 extent_start = max(extent_start, start);
1078 extent_end = min(block_group->key.objectid +
1079 block_group->key.offset, extent_end + 1);
1080 len = extent_end - extent_start;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001081
Chris Masond4452bc2014-05-19 20:47:56 -07001082 *entries += 1;
1083 ret = io_ctl_add_entry(io_ctl, extent_start, len, NULL);
Josef Bacika67509c2011-10-05 15:18:58 -04001084 if (ret)
Miao Xie5349d6c2014-06-19 10:42:49 +08001085 return -ENOSPC;
Josef Bacik2f356122011-06-10 15:31:13 -04001086
Li Zefandb804f22012-01-10 16:41:01 +08001087 start = extent_end;
Josef Bacika67509c2011-10-05 15:18:58 -04001088 }
Josef Bacik0cb59c92010-07-02 12:14:14 -04001089
Miao Xie5349d6c2014-06-19 10:42:49 +08001090 return 0;
1091}
1092
1093static noinline_for_stack int
Chris Mason4c6d1d82015-04-06 13:17:20 -07001094write_bitmap_entries(struct btrfs_io_ctl *io_ctl, struct list_head *bitmap_list)
Miao Xie5349d6c2014-06-19 10:42:49 +08001095{
Geliang Tang7ae16812015-12-18 22:17:00 +08001096 struct btrfs_free_space *entry, *next;
Miao Xie5349d6c2014-06-19 10:42:49 +08001097 int ret;
1098
Josef Bacik0cb59c92010-07-02 12:14:14 -04001099 /* Write out the bitmaps */
Geliang Tang7ae16812015-12-18 22:17:00 +08001100 list_for_each_entry_safe(entry, next, bitmap_list, list) {
Chris Masond4452bc2014-05-19 20:47:56 -07001101 ret = io_ctl_add_bitmap(io_ctl, entry->bitmap);
Josef Bacika67509c2011-10-05 15:18:58 -04001102 if (ret)
Miao Xie5349d6c2014-06-19 10:42:49 +08001103 return -ENOSPC;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001104 list_del_init(&entry->list);
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001105 }
1106
Miao Xie5349d6c2014-06-19 10:42:49 +08001107 return 0;
1108}
Josef Bacik0cb59c92010-07-02 12:14:14 -04001109
Miao Xie5349d6c2014-06-19 10:42:49 +08001110static int flush_dirty_cache(struct inode *inode)
1111{
1112 int ret;
Josef Bacikbe1a12a2011-04-06 13:05:22 -04001113
Josef Bacik0ef8b722013-10-25 16:13:35 -04001114 ret = btrfs_wait_ordered_range(inode, 0, (u64)-1);
Miao Xie5349d6c2014-06-19 10:42:49 +08001115 if (ret)
Josef Bacik0ef8b722013-10-25 16:13:35 -04001116 clear_extent_bit(&BTRFS_I(inode)->io_tree, 0, inode->i_size - 1,
David Sterbaae0f1622017-10-31 16:37:52 +01001117 EXTENT_DIRTY | EXTENT_DELALLOC, 0, 0, NULL);
Chris Masond4452bc2014-05-19 20:47:56 -07001118
Miao Xie5349d6c2014-06-19 10:42:49 +08001119 return ret;
Chris Masond4452bc2014-05-19 20:47:56 -07001120}
1121
1122static void noinline_for_stack
Chris Masona3bdccc2015-04-24 11:00:00 -07001123cleanup_bitmap_list(struct list_head *bitmap_list)
Chris Masond4452bc2014-05-19 20:47:56 -07001124{
Geliang Tang7ae16812015-12-18 22:17:00 +08001125 struct btrfs_free_space *entry, *next;
Miao Xie5349d6c2014-06-19 10:42:49 +08001126
Geliang Tang7ae16812015-12-18 22:17:00 +08001127 list_for_each_entry_safe(entry, next, bitmap_list, list)
Chris Masond4452bc2014-05-19 20:47:56 -07001128 list_del_init(&entry->list);
Chris Masona3bdccc2015-04-24 11:00:00 -07001129}
1130
1131static void noinline_for_stack
1132cleanup_write_cache_enospc(struct inode *inode,
1133 struct btrfs_io_ctl *io_ctl,
David Sterba7bf1a152017-02-10 20:23:00 +01001134 struct extent_state **cached_state)
Chris Masona3bdccc2015-04-24 11:00:00 -07001135{
Chris Masond4452bc2014-05-19 20:47:56 -07001136 io_ctl_drop_pages(io_ctl);
1137 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
David Sterbae43bbe52017-12-12 21:43:52 +01001138 i_size_read(inode) - 1, cached_state);
Chris Masond4452bc2014-05-19 20:47:56 -07001139}
1140
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04001141static int __btrfs_wait_cache_io(struct btrfs_root *root,
1142 struct btrfs_trans_handle *trans,
1143 struct btrfs_block_group_cache *block_group,
1144 struct btrfs_io_ctl *io_ctl,
1145 struct btrfs_path *path, u64 offset)
Chris Masonc9dc4c62015-04-04 17:14:42 -07001146{
1147 int ret;
1148 struct inode *inode = io_ctl->inode;
1149
Chris Mason1bbc6212015-04-06 12:46:08 -07001150 if (!inode)
1151 return 0;
1152
Chris Masonc9dc4c62015-04-04 17:14:42 -07001153 /* Flush the dirty pages in the cache file. */
1154 ret = flush_dirty_cache(inode);
1155 if (ret)
1156 goto out;
1157
1158 /* Update the cache item to tell everyone this cache file is valid. */
1159 ret = update_cache_item(trans, root, inode, path, offset,
1160 io_ctl->entries, io_ctl->bitmaps);
1161out:
1162 io_ctl_free(io_ctl);
1163 if (ret) {
1164 invalidate_inode_pages2(inode->i_mapping);
1165 BTRFS_I(inode)->generation = 0;
1166 if (block_group) {
1167#ifdef DEBUG
David Sterba3ffbd682018-06-29 10:56:42 +02001168 btrfs_err(root->fs_info,
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001169 "failed to write free space cache for block group %llu",
1170 block_group->key.objectid);
Chris Masonc9dc4c62015-04-04 17:14:42 -07001171#endif
1172 }
1173 }
1174 btrfs_update_inode(trans, root, inode);
1175
1176 if (block_group) {
Chris Mason1bbc6212015-04-06 12:46:08 -07001177 /* the dirty list is protected by the dirty_bgs_lock */
1178 spin_lock(&trans->transaction->dirty_bgs_lock);
1179
1180 /* the disk_cache_state is protected by the block group lock */
Chris Masonc9dc4c62015-04-04 17:14:42 -07001181 spin_lock(&block_group->lock);
1182
1183 /*
1184 * only mark this as written if we didn't get put back on
Chris Mason1bbc6212015-04-06 12:46:08 -07001185 * the dirty list while waiting for IO. Otherwise our
1186 * cache state won't be right, and we won't get written again
Chris Masonc9dc4c62015-04-04 17:14:42 -07001187 */
1188 if (!ret && list_empty(&block_group->dirty_list))
1189 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
1190 else if (ret)
1191 block_group->disk_cache_state = BTRFS_DC_ERROR;
1192
1193 spin_unlock(&block_group->lock);
Chris Mason1bbc6212015-04-06 12:46:08 -07001194 spin_unlock(&trans->transaction->dirty_bgs_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07001195 io_ctl->inode = NULL;
1196 iput(inode);
1197 }
1198
1199 return ret;
1200
1201}
1202
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04001203static int btrfs_wait_cache_io_root(struct btrfs_root *root,
1204 struct btrfs_trans_handle *trans,
1205 struct btrfs_io_ctl *io_ctl,
1206 struct btrfs_path *path)
1207{
1208 return __btrfs_wait_cache_io(root, trans, NULL, io_ctl, path, 0);
1209}
1210
1211int btrfs_wait_cache_io(struct btrfs_trans_handle *trans,
1212 struct btrfs_block_group_cache *block_group,
1213 struct btrfs_path *path)
1214{
1215 return __btrfs_wait_cache_io(block_group->fs_info->tree_root, trans,
1216 block_group, &block_group->io_ctl,
1217 path, block_group->key.objectid);
1218}
1219
Chris Masond4452bc2014-05-19 20:47:56 -07001220/**
1221 * __btrfs_write_out_cache - write out cached info to an inode
1222 * @root - the root the inode belongs to
1223 * @ctl - the free space cache we are going to write out
1224 * @block_group - the block_group for this cache if it belongs to a block_group
1225 * @trans - the trans handle
Chris Masond4452bc2014-05-19 20:47:56 -07001226 *
1227 * This function writes out a free space cache struct to disk for quick recovery
Geliang Tang8cd1e732015-10-04 17:05:32 +08001228 * on mount. This will return 0 if it was successful in writing the cache out,
Omar Sandovalb8605452015-02-24 02:47:06 -08001229 * or an errno if it was not.
Chris Masond4452bc2014-05-19 20:47:56 -07001230 */
1231static int __btrfs_write_out_cache(struct btrfs_root *root, struct inode *inode,
1232 struct btrfs_free_space_ctl *ctl,
1233 struct btrfs_block_group_cache *block_group,
Chris Masonc9dc4c62015-04-04 17:14:42 -07001234 struct btrfs_io_ctl *io_ctl,
David Sterba0e8d9312017-02-10 20:26:24 +01001235 struct btrfs_trans_handle *trans)
Chris Masond4452bc2014-05-19 20:47:56 -07001236{
1237 struct extent_state *cached_state = NULL;
Miao Xie5349d6c2014-06-19 10:42:49 +08001238 LIST_HEAD(bitmap_list);
Chris Masond4452bc2014-05-19 20:47:56 -07001239 int entries = 0;
1240 int bitmaps = 0;
1241 int ret;
Chris Masonc9dc4c62015-04-04 17:14:42 -07001242 int must_iput = 0;
Chris Masond4452bc2014-05-19 20:47:56 -07001243
1244 if (!i_size_read(inode))
Omar Sandovalb8605452015-02-24 02:47:06 -08001245 return -EIO;
Chris Masond4452bc2014-05-19 20:47:56 -07001246
Chris Masonc9dc4c62015-04-04 17:14:42 -07001247 WARN_ON(io_ctl->pages);
Jeff Mahoneyf15376d2016-06-22 18:56:18 -04001248 ret = io_ctl_init(io_ctl, inode, 1);
Chris Masond4452bc2014-05-19 20:47:56 -07001249 if (ret)
Omar Sandovalb8605452015-02-24 02:47:06 -08001250 return ret;
Chris Masond4452bc2014-05-19 20:47:56 -07001251
Miao Xiee570fd22014-06-19 10:42:50 +08001252 if (block_group && (block_group->flags & BTRFS_BLOCK_GROUP_DATA)) {
1253 down_write(&block_group->data_rwsem);
1254 spin_lock(&block_group->lock);
1255 if (block_group->delalloc_bytes) {
1256 block_group->disk_cache_state = BTRFS_DC_WRITTEN;
1257 spin_unlock(&block_group->lock);
1258 up_write(&block_group->data_rwsem);
1259 BTRFS_I(inode)->generation = 0;
1260 ret = 0;
Chris Masonc9dc4c62015-04-04 17:14:42 -07001261 must_iput = 1;
Miao Xiee570fd22014-06-19 10:42:50 +08001262 goto out;
1263 }
1264 spin_unlock(&block_group->lock);
1265 }
1266
Chris Masond4452bc2014-05-19 20:47:56 -07001267 /* Lock all pages first so we can lock the extent safely. */
Omar Sandovalb8605452015-02-24 02:47:06 -08001268 ret = io_ctl_prepare_pages(io_ctl, inode, 0);
1269 if (ret)
Josef Bacikb77000e2017-11-15 16:20:52 -05001270 goto out_unlock;
Chris Masond4452bc2014-05-19 20:47:56 -07001271
1272 lock_extent_bits(&BTRFS_I(inode)->io_tree, 0, i_size_read(inode) - 1,
David Sterbaff13db42015-12-03 14:30:40 +01001273 &cached_state);
Chris Masond4452bc2014-05-19 20:47:56 -07001274
Chris Masonc9dc4c62015-04-04 17:14:42 -07001275 io_ctl_set_generation(io_ctl, trans->transid);
Chris Masond4452bc2014-05-19 20:47:56 -07001276
Filipe Manana55507ce2014-12-01 17:04:09 +00001277 mutex_lock(&ctl->cache_writeout_mutex);
Miao Xie5349d6c2014-06-19 10:42:49 +08001278 /* Write out the extent entries in the free space cache */
Chris Mason1bbc6212015-04-06 12:46:08 -07001279 spin_lock(&ctl->tree_lock);
Chris Masonc9dc4c62015-04-04 17:14:42 -07001280 ret = write_cache_extent_entries(io_ctl, ctl,
Chris Masond4452bc2014-05-19 20:47:56 -07001281 block_group, &entries, &bitmaps,
1282 &bitmap_list);
Chris Masona3bdccc2015-04-24 11:00:00 -07001283 if (ret)
1284 goto out_nospc_locked;
Chris Masond4452bc2014-05-19 20:47:56 -07001285
Miao Xie5349d6c2014-06-19 10:42:49 +08001286 /*
1287 * Some spaces that are freed in the current transaction are pinned,
1288 * they will be added into free space cache after the transaction is
1289 * committed, we shouldn't lose them.
Chris Mason1bbc6212015-04-06 12:46:08 -07001290 *
1291 * If this changes while we are working we'll get added back to
1292 * the dirty list and redo it. No locking needed
Miao Xie5349d6c2014-06-19 10:42:49 +08001293 */
David Sterba6701bdb2019-03-20 13:49:09 +01001294 ret = write_pinned_extent_entries(block_group, io_ctl, &entries);
Chris Masona3bdccc2015-04-24 11:00:00 -07001295 if (ret)
1296 goto out_nospc_locked;
Miao Xie5349d6c2014-06-19 10:42:49 +08001297
Filipe Manana55507ce2014-12-01 17:04:09 +00001298 /*
1299 * At last, we write out all the bitmaps and keep cache_writeout_mutex
1300 * locked while doing it because a concurrent trim can be manipulating
1301 * or freeing the bitmap.
1302 */
Chris Masonc9dc4c62015-04-04 17:14:42 -07001303 ret = write_bitmap_entries(io_ctl, &bitmap_list);
Chris Mason1bbc6212015-04-06 12:46:08 -07001304 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00001305 mutex_unlock(&ctl->cache_writeout_mutex);
Miao Xie5349d6c2014-06-19 10:42:49 +08001306 if (ret)
1307 goto out_nospc;
1308
1309 /* Zero out the rest of the pages just to make sure */
Chris Masonc9dc4c62015-04-04 17:14:42 -07001310 io_ctl_zero_remaining_pages(io_ctl);
Miao Xie5349d6c2014-06-19 10:42:49 +08001311
1312 /* Everything is written out, now we dirty the pages in the file. */
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001313 ret = btrfs_dirty_pages(inode, io_ctl->pages, io_ctl->num_pages, 0,
1314 i_size_read(inode), &cached_state);
Miao Xie5349d6c2014-06-19 10:42:49 +08001315 if (ret)
1316 goto out_nospc;
1317
Miao Xiee570fd22014-06-19 10:42:50 +08001318 if (block_group && (block_group->flags & BTRFS_BLOCK_GROUP_DATA))
1319 up_write(&block_group->data_rwsem);
Miao Xie5349d6c2014-06-19 10:42:49 +08001320 /*
1321 * Release the pages and unlock the extent, we will flush
1322 * them out later
1323 */
Chris Masonc9dc4c62015-04-04 17:14:42 -07001324 io_ctl_drop_pages(io_ctl);
Miao Xie5349d6c2014-06-19 10:42:49 +08001325
1326 unlock_extent_cached(&BTRFS_I(inode)->io_tree, 0,
David Sterbae43bbe52017-12-12 21:43:52 +01001327 i_size_read(inode) - 1, &cached_state);
Miao Xie5349d6c2014-06-19 10:42:49 +08001328
Chris Masonc9dc4c62015-04-04 17:14:42 -07001329 /*
1330 * at this point the pages are under IO and we're happy,
1331 * The caller is responsible for waiting on them and updating the
1332 * the cache and the inode
1333 */
1334 io_ctl->entries = entries;
1335 io_ctl->bitmaps = bitmaps;
1336
1337 ret = btrfs_fdatawrite_range(inode, 0, (u64)-1);
Miao Xie5349d6c2014-06-19 10:42:49 +08001338 if (ret)
Josef Bacik0ef8b722013-10-25 16:13:35 -04001339 goto out;
Josef Bacik0cb59c92010-07-02 12:14:14 -04001340
Chris Masonc9dc4c62015-04-04 17:14:42 -07001341 return 0;
1342
Josef Bacik2f356122011-06-10 15:31:13 -04001343out:
Chris Masonc9dc4c62015-04-04 17:14:42 -07001344 io_ctl->inode = NULL;
1345 io_ctl_free(io_ctl);
Miao Xie5349d6c2014-06-19 10:42:49 +08001346 if (ret) {
Josef Bacika67509c2011-10-05 15:18:58 -04001347 invalidate_inode_pages2(inode->i_mapping);
Josef Bacik0cb59c92010-07-02 12:14:14 -04001348 BTRFS_I(inode)->generation = 0;
1349 }
Josef Bacik0cb59c92010-07-02 12:14:14 -04001350 btrfs_update_inode(trans, root, inode);
Chris Masonc9dc4c62015-04-04 17:14:42 -07001351 if (must_iput)
1352 iput(inode);
Miao Xie5349d6c2014-06-19 10:42:49 +08001353 return ret;
Josef Bacika67509c2011-10-05 15:18:58 -04001354
Chris Masona3bdccc2015-04-24 11:00:00 -07001355out_nospc_locked:
1356 cleanup_bitmap_list(&bitmap_list);
1357 spin_unlock(&ctl->tree_lock);
1358 mutex_unlock(&ctl->cache_writeout_mutex);
1359
Josef Bacika67509c2011-10-05 15:18:58 -04001360out_nospc:
David Sterba7bf1a152017-02-10 20:23:00 +01001361 cleanup_write_cache_enospc(inode, io_ctl, &cached_state);
Miao Xiee570fd22014-06-19 10:42:50 +08001362
Josef Bacikb77000e2017-11-15 16:20:52 -05001363out_unlock:
Miao Xiee570fd22014-06-19 10:42:50 +08001364 if (block_group && (block_group->flags & BTRFS_BLOCK_GROUP_DATA))
1365 up_write(&block_group->data_rwsem);
1366
Josef Bacika67509c2011-10-05 15:18:58 -04001367 goto out;
Li Zefan0414efa2011-04-20 10:20:14 +08001368}
1369
David Sterbafe041532019-03-20 13:51:56 +01001370int btrfs_write_out_cache(struct btrfs_trans_handle *trans,
Li Zefan0414efa2011-04-20 10:20:14 +08001371 struct btrfs_block_group_cache *block_group,
1372 struct btrfs_path *path)
1373{
David Sterbafe041532019-03-20 13:51:56 +01001374 struct btrfs_fs_info *fs_info = trans->fs_info;
Li Zefan0414efa2011-04-20 10:20:14 +08001375 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
1376 struct inode *inode;
1377 int ret = 0;
1378
Li Zefan0414efa2011-04-20 10:20:14 +08001379 spin_lock(&block_group->lock);
1380 if (block_group->disk_cache_state < BTRFS_DC_SETUP) {
1381 spin_unlock(&block_group->lock);
1382 return 0;
1383 }
1384 spin_unlock(&block_group->lock);
1385
David Sterba7949f332019-03-20 13:40:19 +01001386 inode = lookup_free_space_inode(block_group, path);
Li Zefan0414efa2011-04-20 10:20:14 +08001387 if (IS_ERR(inode))
1388 return 0;
1389
Jeff Mahoney77ab86b2017-02-15 16:28:30 -05001390 ret = __btrfs_write_out_cache(fs_info->tree_root, inode, ctl,
1391 block_group, &block_group->io_ctl, trans);
Josef Bacikc09544e2011-08-30 10:19:10 -04001392 if (ret) {
Josef Bacikc09544e2011-08-30 10:19:10 -04001393#ifdef DEBUG
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001394 btrfs_err(fs_info,
1395 "failed to write free space cache for block group %llu",
1396 block_group->key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04001397#endif
Chris Masonc9dc4c62015-04-04 17:14:42 -07001398 spin_lock(&block_group->lock);
1399 block_group->disk_cache_state = BTRFS_DC_ERROR;
1400 spin_unlock(&block_group->lock);
1401
1402 block_group->io_ctl.inode = NULL;
1403 iput(inode);
Li Zefan0414efa2011-04-20 10:20:14 +08001404 }
1405
Chris Masonc9dc4c62015-04-04 17:14:42 -07001406 /*
1407 * if ret == 0 the caller is expected to call btrfs_wait_cache_io
1408 * to wait for IO and put the inode
1409 */
1410
Josef Bacik0cb59c92010-07-02 12:14:14 -04001411 return ret;
1412}
1413
Li Zefan34d52cb2011-03-29 13:46:06 +08001414static inline unsigned long offset_to_bit(u64 bitmap_start, u32 unit,
Josef Bacik96303082009-07-13 21:29:25 -04001415 u64 offset)
1416{
Josef Bacikb12d6862013-08-26 17:14:08 -04001417 ASSERT(offset >= bitmap_start);
Josef Bacik96303082009-07-13 21:29:25 -04001418 offset -= bitmap_start;
Li Zefan34d52cb2011-03-29 13:46:06 +08001419 return (unsigned long)(div_u64(offset, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001420}
1421
Li Zefan34d52cb2011-03-29 13:46:06 +08001422static inline unsigned long bytes_to_bits(u64 bytes, u32 unit)
Josef Bacik96303082009-07-13 21:29:25 -04001423{
Li Zefan34d52cb2011-03-29 13:46:06 +08001424 return (unsigned long)(div_u64(bytes, unit));
Josef Bacik96303082009-07-13 21:29:25 -04001425}
1426
Li Zefan34d52cb2011-03-29 13:46:06 +08001427static inline u64 offset_to_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001428 u64 offset)
1429{
1430 u64 bitmap_start;
Feifei Xu0ef64472016-06-01 19:18:24 +08001431 u64 bytes_per_bitmap;
Josef Bacik96303082009-07-13 21:29:25 -04001432
Li Zefan34d52cb2011-03-29 13:46:06 +08001433 bytes_per_bitmap = BITS_PER_BITMAP * ctl->unit;
1434 bitmap_start = offset - ctl->start;
Feifei Xu0ef64472016-06-01 19:18:24 +08001435 bitmap_start = div64_u64(bitmap_start, bytes_per_bitmap);
Josef Bacik96303082009-07-13 21:29:25 -04001436 bitmap_start *= bytes_per_bitmap;
Li Zefan34d52cb2011-03-29 13:46:06 +08001437 bitmap_start += ctl->start;
Josef Bacik96303082009-07-13 21:29:25 -04001438
1439 return bitmap_start;
1440}
Josef Bacik0f9dd462008-09-23 13:14:11 -04001441
1442static int tree_insert_offset(struct rb_root *root, u64 offset,
Josef Bacik96303082009-07-13 21:29:25 -04001443 struct rb_node *node, int bitmap)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001444{
1445 struct rb_node **p = &root->rb_node;
1446 struct rb_node *parent = NULL;
1447 struct btrfs_free_space *info;
1448
1449 while (*p) {
1450 parent = *p;
1451 info = rb_entry(parent, struct btrfs_free_space, offset_index);
1452
Josef Bacik96303082009-07-13 21:29:25 -04001453 if (offset < info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001454 p = &(*p)->rb_left;
Josef Bacik96303082009-07-13 21:29:25 -04001455 } else if (offset > info->offset) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001456 p = &(*p)->rb_right;
Josef Bacik96303082009-07-13 21:29:25 -04001457 } else {
1458 /*
1459 * we could have a bitmap entry and an extent entry
1460 * share the same offset. If this is the case, we want
1461 * the extent entry to always be found first if we do a
1462 * linear search through the tree, since we want to have
1463 * the quickest allocation time, and allocating from an
1464 * extent is faster than allocating from a bitmap. So
1465 * if we're inserting a bitmap and we find an entry at
1466 * this offset, we want to go right, or after this entry
1467 * logically. If we are inserting an extent and we've
1468 * found a bitmap, we want to go left, or before
1469 * logically.
1470 */
1471 if (bitmap) {
Josef Bacik207dde82011-05-13 14:49:23 -04001472 if (info->bitmap) {
1473 WARN_ON_ONCE(1);
1474 return -EEXIST;
1475 }
Josef Bacik96303082009-07-13 21:29:25 -04001476 p = &(*p)->rb_right;
1477 } else {
Josef Bacik207dde82011-05-13 14:49:23 -04001478 if (!info->bitmap) {
1479 WARN_ON_ONCE(1);
1480 return -EEXIST;
1481 }
Josef Bacik96303082009-07-13 21:29:25 -04001482 p = &(*p)->rb_left;
1483 }
1484 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04001485 }
1486
1487 rb_link_node(node, parent, p);
1488 rb_insert_color(node, root);
1489
1490 return 0;
1491}
1492
1493/*
Josef Bacik70cb0742009-04-03 10:14:19 -04001494 * searches the tree for the given offset.
1495 *
Josef Bacik96303082009-07-13 21:29:25 -04001496 * fuzzy - If this is set, then we are trying to make an allocation, and we just
1497 * want a section that has at least bytes size and comes at or after the given
1498 * offset.
Josef Bacik0f9dd462008-09-23 13:14:11 -04001499 */
Josef Bacik96303082009-07-13 21:29:25 -04001500static struct btrfs_free_space *
Li Zefan34d52cb2011-03-29 13:46:06 +08001501tree_search_offset(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001502 u64 offset, int bitmap_only, int fuzzy)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001503{
Li Zefan34d52cb2011-03-29 13:46:06 +08001504 struct rb_node *n = ctl->free_space_offset.rb_node;
Josef Bacik96303082009-07-13 21:29:25 -04001505 struct btrfs_free_space *entry, *prev = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001506
Josef Bacik96303082009-07-13 21:29:25 -04001507 /* find entry that is closest to the 'offset' */
1508 while (1) {
1509 if (!n) {
1510 entry = NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001511 break;
1512 }
Josef Bacik96303082009-07-13 21:29:25 -04001513
1514 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1515 prev = entry;
1516
1517 if (offset < entry->offset)
1518 n = n->rb_left;
1519 else if (offset > entry->offset)
1520 n = n->rb_right;
1521 else
1522 break;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001523 }
1524
Josef Bacik96303082009-07-13 21:29:25 -04001525 if (bitmap_only) {
1526 if (!entry)
1527 return NULL;
1528 if (entry->bitmap)
1529 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001530
Josef Bacik96303082009-07-13 21:29:25 -04001531 /*
1532 * bitmap entry and extent entry may share same offset,
1533 * in that case, bitmap entry comes after extent entry.
1534 */
1535 n = rb_next(n);
1536 if (!n)
1537 return NULL;
1538 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1539 if (entry->offset != offset)
1540 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001541
Josef Bacik96303082009-07-13 21:29:25 -04001542 WARN_ON(!entry->bitmap);
1543 return entry;
1544 } else if (entry) {
1545 if (entry->bitmap) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04001546 /*
Josef Bacik96303082009-07-13 21:29:25 -04001547 * if previous extent entry covers the offset,
1548 * we should return it instead of the bitmap entry
Josef Bacik0f9dd462008-09-23 13:14:11 -04001549 */
Miao Xiede6c4112012-10-18 08:18:01 +00001550 n = rb_prev(&entry->offset_index);
1551 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001552 prev = rb_entry(n, struct btrfs_free_space,
1553 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001554 if (!prev->bitmap &&
1555 prev->offset + prev->bytes > offset)
1556 entry = prev;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001557 }
Josef Bacik96303082009-07-13 21:29:25 -04001558 }
1559 return entry;
1560 }
1561
1562 if (!prev)
1563 return NULL;
1564
1565 /* find last entry before the 'offset' */
1566 entry = prev;
1567 if (entry->offset > offset) {
1568 n = rb_prev(&entry->offset_index);
1569 if (n) {
1570 entry = rb_entry(n, struct btrfs_free_space,
1571 offset_index);
Josef Bacikb12d6862013-08-26 17:14:08 -04001572 ASSERT(entry->offset <= offset);
Josef Bacik0f9dd462008-09-23 13:14:11 -04001573 } else {
Josef Bacik96303082009-07-13 21:29:25 -04001574 if (fuzzy)
1575 return entry;
1576 else
1577 return NULL;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001578 }
1579 }
1580
Josef Bacik96303082009-07-13 21:29:25 -04001581 if (entry->bitmap) {
Miao Xiede6c4112012-10-18 08:18:01 +00001582 n = rb_prev(&entry->offset_index);
1583 if (n) {
Josef Bacik96303082009-07-13 21:29:25 -04001584 prev = rb_entry(n, struct btrfs_free_space,
1585 offset_index);
Miao Xiede6c4112012-10-18 08:18:01 +00001586 if (!prev->bitmap &&
1587 prev->offset + prev->bytes > offset)
1588 return prev;
Josef Bacik96303082009-07-13 21:29:25 -04001589 }
Li Zefan34d52cb2011-03-29 13:46:06 +08001590 if (entry->offset + BITS_PER_BITMAP * ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001591 return entry;
1592 } else if (entry->offset + entry->bytes > offset)
1593 return entry;
1594
1595 if (!fuzzy)
1596 return NULL;
1597
1598 while (1) {
1599 if (entry->bitmap) {
1600 if (entry->offset + BITS_PER_BITMAP *
Li Zefan34d52cb2011-03-29 13:46:06 +08001601 ctl->unit > offset)
Josef Bacik96303082009-07-13 21:29:25 -04001602 break;
1603 } else {
1604 if (entry->offset + entry->bytes > offset)
1605 break;
1606 }
1607
1608 n = rb_next(&entry->offset_index);
1609 if (!n)
1610 return NULL;
1611 entry = rb_entry(n, struct btrfs_free_space, offset_index);
1612 }
1613 return entry;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001614}
1615
Li Zefanf333adb2010-11-09 14:57:39 +08001616static inline void
Li Zefan34d52cb2011-03-29 13:46:06 +08001617__unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001618 struct btrfs_free_space *info)
Josef Bacik0f9dd462008-09-23 13:14:11 -04001619{
Li Zefan34d52cb2011-03-29 13:46:06 +08001620 rb_erase(&info->offset_index, &ctl->free_space_offset);
1621 ctl->free_extents--;
Li Zefanf333adb2010-11-09 14:57:39 +08001622}
1623
Li Zefan34d52cb2011-03-29 13:46:06 +08001624static void unlink_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08001625 struct btrfs_free_space *info)
1626{
Li Zefan34d52cb2011-03-29 13:46:06 +08001627 __unlink_free_space(ctl, info);
1628 ctl->free_space -= info->bytes;
Josef Bacik0f9dd462008-09-23 13:14:11 -04001629}
1630
Li Zefan34d52cb2011-03-29 13:46:06 +08001631static int link_free_space(struct btrfs_free_space_ctl *ctl,
Josef Bacik0f9dd462008-09-23 13:14:11 -04001632 struct btrfs_free_space *info)
1633{
1634 int ret = 0;
1635
Josef Bacikb12d6862013-08-26 17:14:08 -04001636 ASSERT(info->bytes || info->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08001637 ret = tree_insert_offset(&ctl->free_space_offset, info->offset,
Josef Bacik96303082009-07-13 21:29:25 -04001638 &info->offset_index, (info->bitmap != NULL));
Josef Bacik0f9dd462008-09-23 13:14:11 -04001639 if (ret)
1640 return ret;
1641
Li Zefan34d52cb2011-03-29 13:46:06 +08001642 ctl->free_space += info->bytes;
1643 ctl->free_extents++;
Josef Bacik96303082009-07-13 21:29:25 -04001644 return ret;
1645}
1646
Li Zefan34d52cb2011-03-29 13:46:06 +08001647static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl)
Josef Bacik96303082009-07-13 21:29:25 -04001648{
Li Zefan34d52cb2011-03-29 13:46:06 +08001649 struct btrfs_block_group_cache *block_group = ctl->private;
Josef Bacik25891f72009-09-11 16:11:20 -04001650 u64 max_bytes;
1651 u64 bitmap_bytes;
1652 u64 extent_bytes;
Li Zefan8eb2d822010-11-09 14:48:01 +08001653 u64 size = block_group->key.offset;
Feifei Xu0ef64472016-06-01 19:18:24 +08001654 u64 bytes_per_bg = BITS_PER_BITMAP * ctl->unit;
1655 u64 max_bitmaps = div64_u64(size + bytes_per_bg - 1, bytes_per_bg);
Li Zefan34d52cb2011-03-29 13:46:06 +08001656
Feifei Xu0ef64472016-06-01 19:18:24 +08001657 max_bitmaps = max_t(u64, max_bitmaps, 1);
Josef Bacikdde57402013-02-12 14:07:51 -05001658
Josef Bacikb12d6862013-08-26 17:14:08 -04001659 ASSERT(ctl->total_bitmaps <= max_bitmaps);
Josef Bacik96303082009-07-13 21:29:25 -04001660
1661 /*
1662 * The goal is to keep the total amount of memory used per 1gb of space
1663 * at or below 32k, so we need to adjust how much memory we allow to be
1664 * used by extent based free space tracking
1665 */
Byongho Leeee221842015-12-15 01:42:10 +09001666 if (size < SZ_1G)
Li Zefan8eb2d822010-11-09 14:48:01 +08001667 max_bytes = MAX_CACHE_BYTES_PER_GIG;
1668 else
Byongho Leeee221842015-12-15 01:42:10 +09001669 max_bytes = MAX_CACHE_BYTES_PER_GIG * div_u64(size, SZ_1G);
Josef Bacik96303082009-07-13 21:29:25 -04001670
Josef Bacik25891f72009-09-11 16:11:20 -04001671 /*
1672 * we want to account for 1 more bitmap than what we have so we can make
1673 * sure we don't go over our overall goal of MAX_CACHE_BYTES_PER_GIG as
1674 * we add more bitmaps.
1675 */
Feifei Xub9ef22d2016-06-01 19:18:25 +08001676 bitmap_bytes = (ctl->total_bitmaps + 1) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001677
Josef Bacik25891f72009-09-11 16:11:20 -04001678 if (bitmap_bytes >= max_bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001679 ctl->extents_thresh = 0;
Josef Bacik25891f72009-09-11 16:11:20 -04001680 return;
Josef Bacik96303082009-07-13 21:29:25 -04001681 }
Josef Bacik25891f72009-09-11 16:11:20 -04001682
1683 /*
David Sterbaf8c269d2015-01-16 17:21:12 +01001684 * we want the extent entry threshold to always be at most 1/2 the max
Josef Bacik25891f72009-09-11 16:11:20 -04001685 * bytes we can have, or whatever is less than that.
1686 */
1687 extent_bytes = max_bytes - bitmap_bytes;
David Sterbaf8c269d2015-01-16 17:21:12 +01001688 extent_bytes = min_t(u64, extent_bytes, max_bytes >> 1);
Josef Bacik25891f72009-09-11 16:11:20 -04001689
Li Zefan34d52cb2011-03-29 13:46:06 +08001690 ctl->extents_thresh =
David Sterbaf8c269d2015-01-16 17:21:12 +01001691 div_u64(extent_bytes, sizeof(struct btrfs_free_space));
Josef Bacik96303082009-07-13 21:29:25 -04001692}
1693
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001694static inline void __bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1695 struct btrfs_free_space *info,
1696 u64 offset, u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001697{
Li Zefanf38b6e72011-03-14 13:40:51 +08001698 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001699
Li Zefan34d52cb2011-03-29 13:46:06 +08001700 start = offset_to_bit(info->offset, ctl->unit, offset);
1701 count = bytes_to_bits(bytes, ctl->unit);
Josef Bacikb12d6862013-08-26 17:14:08 -04001702 ASSERT(start + count <= BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001703
Li Zefanf38b6e72011-03-14 13:40:51 +08001704 bitmap_clear(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001705
1706 info->bytes -= bytes;
Josef Bacik553cceb2018-09-28 07:18:00 -04001707 if (info->max_extent_size > ctl->unit)
1708 info->max_extent_size = 0;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00001709}
1710
1711static void bitmap_clear_bits(struct btrfs_free_space_ctl *ctl,
1712 struct btrfs_free_space *info, u64 offset,
1713 u64 bytes)
1714{
1715 __bitmap_clear_bits(ctl, info, offset, bytes);
Li Zefan34d52cb2011-03-29 13:46:06 +08001716 ctl->free_space -= bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001717}
1718
Li Zefan34d52cb2011-03-29 13:46:06 +08001719static void bitmap_set_bits(struct btrfs_free_space_ctl *ctl,
Josef Bacik817d52f2009-07-13 21:29:25 -04001720 struct btrfs_free_space *info, u64 offset,
1721 u64 bytes)
Josef Bacik96303082009-07-13 21:29:25 -04001722{
Li Zefanf38b6e72011-03-14 13:40:51 +08001723 unsigned long start, count;
Josef Bacik96303082009-07-13 21:29:25 -04001724
Li Zefan34d52cb2011-03-29 13:46:06 +08001725 start = offset_to_bit(info->offset, ctl->unit, offset);
1726 count = bytes_to_bits(bytes, ctl->unit);
Josef Bacikb12d6862013-08-26 17:14:08 -04001727 ASSERT(start + count <= BITS_PER_BITMAP);
Josef Bacik96303082009-07-13 21:29:25 -04001728
Li Zefanf38b6e72011-03-14 13:40:51 +08001729 bitmap_set(info->bitmap, start, count);
Josef Bacik96303082009-07-13 21:29:25 -04001730
1731 info->bytes += bytes;
Li Zefan34d52cb2011-03-29 13:46:06 +08001732 ctl->free_space += bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001733}
1734
Miao Xiea4820392013-09-09 13:19:42 +08001735/*
1736 * If we can not find suitable extent, we will use bytes to record
1737 * the size of the max extent.
1738 */
Li Zefan34d52cb2011-03-29 13:46:06 +08001739static int search_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001740 struct btrfs_free_space *bitmap_info, u64 *offset,
Josef Bacik0584f712015-10-02 16:12:23 -04001741 u64 *bytes, bool for_alloc)
Josef Bacik96303082009-07-13 21:29:25 -04001742{
1743 unsigned long found_bits = 0;
Miao Xiea4820392013-09-09 13:19:42 +08001744 unsigned long max_bits = 0;
Josef Bacik96303082009-07-13 21:29:25 -04001745 unsigned long bits, i;
1746 unsigned long next_zero;
Miao Xiea4820392013-09-09 13:19:42 +08001747 unsigned long extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001748
Josef Bacikcef40482015-10-02 16:09:42 -04001749 /*
1750 * Skip searching the bitmap if we don't have a contiguous section that
1751 * is large enough for this allocation.
1752 */
Josef Bacik0584f712015-10-02 16:12:23 -04001753 if (for_alloc &&
1754 bitmap_info->max_extent_size &&
Josef Bacikcef40482015-10-02 16:09:42 -04001755 bitmap_info->max_extent_size < *bytes) {
1756 *bytes = bitmap_info->max_extent_size;
1757 return -1;
1758 }
1759
Li Zefan34d52cb2011-03-29 13:46:06 +08001760 i = offset_to_bit(bitmap_info->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04001761 max_t(u64, *offset, bitmap_info->offset));
Li Zefan34d52cb2011-03-29 13:46:06 +08001762 bits = bytes_to_bits(*bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04001763
Wei Yongjunebb3dad2012-09-13 20:29:02 -06001764 for_each_set_bit_from(i, bitmap_info->bitmap, BITS_PER_BITMAP) {
Josef Bacik0584f712015-10-02 16:12:23 -04001765 if (for_alloc && bits == 1) {
1766 found_bits = 1;
1767 break;
1768 }
Josef Bacik96303082009-07-13 21:29:25 -04001769 next_zero = find_next_zero_bit(bitmap_info->bitmap,
1770 BITS_PER_BITMAP, i);
Miao Xiea4820392013-09-09 13:19:42 +08001771 extent_bits = next_zero - i;
1772 if (extent_bits >= bits) {
1773 found_bits = extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001774 break;
Miao Xiea4820392013-09-09 13:19:42 +08001775 } else if (extent_bits > max_bits) {
1776 max_bits = extent_bits;
Josef Bacik96303082009-07-13 21:29:25 -04001777 }
1778 i = next_zero;
1779 }
1780
1781 if (found_bits) {
Li Zefan34d52cb2011-03-29 13:46:06 +08001782 *offset = (u64)(i * ctl->unit) + bitmap_info->offset;
1783 *bytes = (u64)(found_bits) * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04001784 return 0;
1785 }
1786
Miao Xiea4820392013-09-09 13:19:42 +08001787 *bytes = (u64)(max_bits) * ctl->unit;
Josef Bacikcef40482015-10-02 16:09:42 -04001788 bitmap_info->max_extent_size = *bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001789 return -1;
1790}
1791
Josef Bacikad22cf62018-10-12 15:32:33 -04001792static inline u64 get_max_extent_size(struct btrfs_free_space *entry)
1793{
1794 if (entry->bitmap)
1795 return entry->max_extent_size;
1796 return entry->bytes;
1797}
1798
Miao Xiea4820392013-09-09 13:19:42 +08001799/* Cache the size of the max extent in bytes */
Li Zefan34d52cb2011-03-29 13:46:06 +08001800static struct btrfs_free_space *
David Woodhouse53b381b2013-01-29 18:40:14 -05001801find_free_space(struct btrfs_free_space_ctl *ctl, u64 *offset, u64 *bytes,
Miao Xiea4820392013-09-09 13:19:42 +08001802 unsigned long align, u64 *max_extent_size)
Josef Bacik96303082009-07-13 21:29:25 -04001803{
1804 struct btrfs_free_space *entry;
1805 struct rb_node *node;
David Woodhouse53b381b2013-01-29 18:40:14 -05001806 u64 tmp;
1807 u64 align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001808 int ret;
1809
Li Zefan34d52cb2011-03-29 13:46:06 +08001810 if (!ctl->free_space_offset.rb_node)
Miao Xiea4820392013-09-09 13:19:42 +08001811 goto out;
Josef Bacik96303082009-07-13 21:29:25 -04001812
Li Zefan34d52cb2011-03-29 13:46:06 +08001813 entry = tree_search_offset(ctl, offset_to_bitmap(ctl, *offset), 0, 1);
Josef Bacik96303082009-07-13 21:29:25 -04001814 if (!entry)
Miao Xiea4820392013-09-09 13:19:42 +08001815 goto out;
Josef Bacik96303082009-07-13 21:29:25 -04001816
1817 for (node = &entry->offset_index; node; node = rb_next(node)) {
1818 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Miao Xiea4820392013-09-09 13:19:42 +08001819 if (entry->bytes < *bytes) {
Josef Bacikad22cf62018-10-12 15:32:33 -04001820 *max_extent_size = max(get_max_extent_size(entry),
1821 *max_extent_size);
Josef Bacik96303082009-07-13 21:29:25 -04001822 continue;
Miao Xiea4820392013-09-09 13:19:42 +08001823 }
Josef Bacik96303082009-07-13 21:29:25 -04001824
David Woodhouse53b381b2013-01-29 18:40:14 -05001825 /* make sure the space returned is big enough
1826 * to match our requested alignment
1827 */
1828 if (*bytes >= align) {
Miao Xiea4820392013-09-09 13:19:42 +08001829 tmp = entry->offset - ctl->start + align - 1;
David Sterba47c57132015-02-20 18:43:47 +01001830 tmp = div64_u64(tmp, align);
David Woodhouse53b381b2013-01-29 18:40:14 -05001831 tmp = tmp * align + ctl->start;
1832 align_off = tmp - entry->offset;
1833 } else {
1834 align_off = 0;
1835 tmp = entry->offset;
1836 }
1837
Miao Xiea4820392013-09-09 13:19:42 +08001838 if (entry->bytes < *bytes + align_off) {
Josef Bacikad22cf62018-10-12 15:32:33 -04001839 *max_extent_size = max(get_max_extent_size(entry),
1840 *max_extent_size);
David Woodhouse53b381b2013-01-29 18:40:14 -05001841 continue;
Miao Xiea4820392013-09-09 13:19:42 +08001842 }
David Woodhouse53b381b2013-01-29 18:40:14 -05001843
Josef Bacik96303082009-07-13 21:29:25 -04001844 if (entry->bitmap) {
Miao Xiea4820392013-09-09 13:19:42 +08001845 u64 size = *bytes;
1846
Josef Bacik0584f712015-10-02 16:12:23 -04001847 ret = search_bitmap(ctl, entry, &tmp, &size, true);
David Woodhouse53b381b2013-01-29 18:40:14 -05001848 if (!ret) {
1849 *offset = tmp;
Miao Xiea4820392013-09-09 13:19:42 +08001850 *bytes = size;
Josef Bacik96303082009-07-13 21:29:25 -04001851 return entry;
Josef Bacikad22cf62018-10-12 15:32:33 -04001852 } else {
1853 *max_extent_size =
1854 max(get_max_extent_size(entry),
1855 *max_extent_size);
David Woodhouse53b381b2013-01-29 18:40:14 -05001856 }
Josef Bacik96303082009-07-13 21:29:25 -04001857 continue;
1858 }
1859
David Woodhouse53b381b2013-01-29 18:40:14 -05001860 *offset = tmp;
1861 *bytes = entry->bytes - align_off;
Josef Bacik96303082009-07-13 21:29:25 -04001862 return entry;
1863 }
Miao Xiea4820392013-09-09 13:19:42 +08001864out:
Josef Bacik96303082009-07-13 21:29:25 -04001865 return NULL;
1866}
1867
Li Zefan34d52cb2011-03-29 13:46:06 +08001868static void add_new_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001869 struct btrfs_free_space *info, u64 offset)
1870{
Li Zefan34d52cb2011-03-29 13:46:06 +08001871 info->offset = offset_to_bitmap(ctl, offset);
Josef Bacikf019f422009-09-11 16:11:20 -04001872 info->bytes = 0;
Alexandre Olivaf2d0f672011-11-28 12:04:43 -02001873 INIT_LIST_HEAD(&info->list);
Li Zefan34d52cb2011-03-29 13:46:06 +08001874 link_free_space(ctl, info);
1875 ctl->total_bitmaps++;
Josef Bacik96303082009-07-13 21:29:25 -04001876
Li Zefan34d52cb2011-03-29 13:46:06 +08001877 ctl->op->recalc_thresholds(ctl);
Josef Bacik96303082009-07-13 21:29:25 -04001878}
1879
Li Zefan34d52cb2011-03-29 13:46:06 +08001880static void free_bitmap(struct btrfs_free_space_ctl *ctl,
Li Zefanedf6e2d2010-11-09 14:50:07 +08001881 struct btrfs_free_space *bitmap_info)
1882{
Li Zefan34d52cb2011-03-29 13:46:06 +08001883 unlink_free_space(ctl, bitmap_info);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001884 kfree(bitmap_info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05001885 kmem_cache_free(btrfs_free_space_cachep, bitmap_info);
Li Zefan34d52cb2011-03-29 13:46:06 +08001886 ctl->total_bitmaps--;
1887 ctl->op->recalc_thresholds(ctl);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001888}
1889
Li Zefan34d52cb2011-03-29 13:46:06 +08001890static noinline int remove_from_bitmap(struct btrfs_free_space_ctl *ctl,
Josef Bacik96303082009-07-13 21:29:25 -04001891 struct btrfs_free_space *bitmap_info,
1892 u64 *offset, u64 *bytes)
1893{
1894 u64 end;
Josef Bacik6606bb92009-07-31 11:03:58 -04001895 u64 search_start, search_bytes;
1896 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04001897
1898again:
Li Zefan34d52cb2011-03-29 13:46:06 +08001899 end = bitmap_info->offset + (u64)(BITS_PER_BITMAP * ctl->unit) - 1;
Josef Bacik96303082009-07-13 21:29:25 -04001900
Josef Bacik6606bb92009-07-31 11:03:58 -04001901 /*
Josef Bacikbdb7d302012-06-27 15:10:56 -04001902 * We need to search for bits in this bitmap. We could only cover some
1903 * of the extent in this bitmap thanks to how we add space, so we need
1904 * to search for as much as it as we can and clear that amount, and then
1905 * go searching for the next bit.
Josef Bacik6606bb92009-07-31 11:03:58 -04001906 */
1907 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001908 search_bytes = ctl->unit;
Josef Bacik13dbc082011-02-03 02:39:52 +00001909 search_bytes = min(search_bytes, end - search_start + 1);
Josef Bacik0584f712015-10-02 16:12:23 -04001910 ret = search_bitmap(ctl, bitmap_info, &search_start, &search_bytes,
1911 false);
Josef Bacikb50c6e22013-04-25 15:55:30 -04001912 if (ret < 0 || search_start != *offset)
1913 return -EINVAL;
Josef Bacik6606bb92009-07-31 11:03:58 -04001914
Josef Bacikbdb7d302012-06-27 15:10:56 -04001915 /* We may have found more bits than what we need */
1916 search_bytes = min(search_bytes, *bytes);
1917
1918 /* Cannot clear past the end of the bitmap */
1919 search_bytes = min(search_bytes, end - search_start + 1);
1920
1921 bitmap_clear_bits(ctl, bitmap_info, search_start, search_bytes);
1922 *offset += search_bytes;
1923 *bytes -= search_bytes;
Josef Bacik96303082009-07-13 21:29:25 -04001924
1925 if (*bytes) {
Josef Bacik6606bb92009-07-31 11:03:58 -04001926 struct rb_node *next = rb_next(&bitmap_info->offset_index);
Li Zefanedf6e2d2010-11-09 14:50:07 +08001927 if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001928 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001929
Josef Bacik6606bb92009-07-31 11:03:58 -04001930 /*
1931 * no entry after this bitmap, but we still have bytes to
1932 * remove, so something has gone wrong.
1933 */
1934 if (!next)
Josef Bacik96303082009-07-13 21:29:25 -04001935 return -EINVAL;
1936
Josef Bacik6606bb92009-07-31 11:03:58 -04001937 bitmap_info = rb_entry(next, struct btrfs_free_space,
1938 offset_index);
1939
1940 /*
1941 * if the next entry isn't a bitmap we need to return to let the
1942 * extent stuff do its work.
1943 */
Josef Bacik96303082009-07-13 21:29:25 -04001944 if (!bitmap_info->bitmap)
1945 return -EAGAIN;
1946
Josef Bacik6606bb92009-07-31 11:03:58 -04001947 /*
1948 * Ok the next item is a bitmap, but it may not actually hold
1949 * the information for the rest of this free space stuff, so
1950 * look for it, and if we don't find it return so we can try
1951 * everything over again.
1952 */
1953 search_start = *offset;
Josef Bacikbdb7d302012-06-27 15:10:56 -04001954 search_bytes = ctl->unit;
Li Zefan34d52cb2011-03-29 13:46:06 +08001955 ret = search_bitmap(ctl, bitmap_info, &search_start,
Josef Bacik0584f712015-10-02 16:12:23 -04001956 &search_bytes, false);
Josef Bacik6606bb92009-07-31 11:03:58 -04001957 if (ret < 0 || search_start != *offset)
1958 return -EAGAIN;
1959
Josef Bacik96303082009-07-13 21:29:25 -04001960 goto again;
Li Zefanedf6e2d2010-11-09 14:50:07 +08001961 } else if (!bitmap_info->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08001962 free_bitmap(ctl, bitmap_info);
Josef Bacik96303082009-07-13 21:29:25 -04001963
1964 return 0;
1965}
1966
Josef Bacik2cdc3422011-05-27 14:07:49 -04001967static u64 add_bytes_to_bitmap(struct btrfs_free_space_ctl *ctl,
1968 struct btrfs_free_space *info, u64 offset,
1969 u64 bytes)
1970{
1971 u64 bytes_to_set = 0;
1972 u64 end;
1973
1974 end = info->offset + (u64)(BITS_PER_BITMAP * ctl->unit);
1975
1976 bytes_to_set = min(end - offset, bytes);
1977
1978 bitmap_set_bits(ctl, info, offset, bytes_to_set);
1979
Josef Bacikcef40482015-10-02 16:09:42 -04001980 /*
1981 * We set some bytes, we have no idea what the max extent size is
1982 * anymore.
1983 */
1984 info->max_extent_size = 0;
1985
Josef Bacik2cdc3422011-05-27 14:07:49 -04001986 return bytes_to_set;
1987
1988}
1989
Li Zefan34d52cb2011-03-29 13:46:06 +08001990static bool use_bitmap(struct btrfs_free_space_ctl *ctl,
1991 struct btrfs_free_space *info)
Josef Bacik96303082009-07-13 21:29:25 -04001992{
Li Zefan34d52cb2011-03-29 13:46:06 +08001993 struct btrfs_block_group_cache *block_group = ctl->private;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04001994 struct btrfs_fs_info *fs_info = block_group->fs_info;
Josef Bacikd0bd4562015-09-23 14:54:14 -04001995 bool forced = false;
1996
1997#ifdef CONFIG_BTRFS_DEBUG
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04001998 if (btrfs_should_fragment_free_space(block_group))
Josef Bacikd0bd4562015-09-23 14:54:14 -04001999 forced = true;
2000#endif
Josef Bacik96303082009-07-13 21:29:25 -04002001
2002 /*
2003 * If we are below the extents threshold then we can add this as an
2004 * extent, and don't have to deal with the bitmap
2005 */
Josef Bacikd0bd4562015-09-23 14:54:14 -04002006 if (!forced && ctl->free_extents < ctl->extents_thresh) {
Josef Bacik32cb0842011-03-18 16:16:21 -04002007 /*
2008 * If this block group has some small extents we don't want to
2009 * use up all of our free slots in the cache with them, we want
Nicholas D Steeves01327612016-05-19 21:18:45 -04002010 * to reserve them to larger extents, however if we have plenty
Josef Bacik32cb0842011-03-18 16:16:21 -04002011 * of cache left then go ahead an dadd them, no sense in adding
2012 * the overhead of a bitmap if we don't have to.
2013 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002014 if (info->bytes <= fs_info->sectorsize * 4) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002015 if (ctl->free_extents * 2 <= ctl->extents_thresh)
2016 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04002017 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08002018 return false;
Josef Bacik32cb0842011-03-18 16:16:21 -04002019 }
2020 }
Josef Bacik96303082009-07-13 21:29:25 -04002021
2022 /*
Josef Bacikdde57402013-02-12 14:07:51 -05002023 * The original block groups from mkfs can be really small, like 8
2024 * megabytes, so don't bother with a bitmap for those entries. However
2025 * some block groups can be smaller than what a bitmap would cover but
2026 * are still large enough that they could overflow the 32k memory limit,
2027 * so allow those block groups to still be allowed to have a bitmap
2028 * entry.
Josef Bacik96303082009-07-13 21:29:25 -04002029 */
Josef Bacikdde57402013-02-12 14:07:51 -05002030 if (((BITS_PER_BITMAP * ctl->unit) >> 1) > block_group->key.offset)
Li Zefan34d52cb2011-03-29 13:46:06 +08002031 return false;
2032
2033 return true;
2034}
2035
David Sterba20e55062015-11-19 11:42:28 +01002036static const struct btrfs_free_space_op free_space_op = {
Josef Bacik2cdc3422011-05-27 14:07:49 -04002037 .recalc_thresholds = recalculate_thresholds,
2038 .use_bitmap = use_bitmap,
2039};
2040
Li Zefan34d52cb2011-03-29 13:46:06 +08002041static int insert_into_bitmap(struct btrfs_free_space_ctl *ctl,
2042 struct btrfs_free_space *info)
2043{
2044 struct btrfs_free_space *bitmap_info;
Josef Bacik2cdc3422011-05-27 14:07:49 -04002045 struct btrfs_block_group_cache *block_group = NULL;
Li Zefan34d52cb2011-03-29 13:46:06 +08002046 int added = 0;
Josef Bacik2cdc3422011-05-27 14:07:49 -04002047 u64 bytes, offset, bytes_added;
Li Zefan34d52cb2011-03-29 13:46:06 +08002048 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002049
2050 bytes = info->bytes;
2051 offset = info->offset;
2052
Li Zefan34d52cb2011-03-29 13:46:06 +08002053 if (!ctl->op->use_bitmap(ctl, info))
2054 return 0;
2055
Josef Bacik2cdc3422011-05-27 14:07:49 -04002056 if (ctl->op == &free_space_op)
2057 block_group = ctl->private;
Chris Mason38e87882011-06-10 16:36:57 -04002058again:
Josef Bacik2cdc3422011-05-27 14:07:49 -04002059 /*
2060 * Since we link bitmaps right into the cluster we need to see if we
2061 * have a cluster here, and if so and it has our bitmap we need to add
2062 * the free space to that bitmap.
2063 */
2064 if (block_group && !list_empty(&block_group->cluster_list)) {
2065 struct btrfs_free_cluster *cluster;
2066 struct rb_node *node;
2067 struct btrfs_free_space *entry;
2068
2069 cluster = list_entry(block_group->cluster_list.next,
2070 struct btrfs_free_cluster,
2071 block_group_list);
2072 spin_lock(&cluster->lock);
2073 node = rb_first(&cluster->root);
2074 if (!node) {
2075 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04002076 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04002077 }
2078
2079 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2080 if (!entry->bitmap) {
2081 spin_unlock(&cluster->lock);
Chris Mason38e87882011-06-10 16:36:57 -04002082 goto no_cluster_bitmap;
Josef Bacik2cdc3422011-05-27 14:07:49 -04002083 }
2084
2085 if (entry->offset == offset_to_bitmap(ctl, offset)) {
2086 bytes_added = add_bytes_to_bitmap(ctl, entry,
2087 offset, bytes);
2088 bytes -= bytes_added;
2089 offset += bytes_added;
2090 }
2091 spin_unlock(&cluster->lock);
2092 if (!bytes) {
2093 ret = 1;
2094 goto out;
2095 }
2096 }
Chris Mason38e87882011-06-10 16:36:57 -04002097
2098no_cluster_bitmap:
Li Zefan34d52cb2011-03-29 13:46:06 +08002099 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik96303082009-07-13 21:29:25 -04002100 1, 0);
2101 if (!bitmap_info) {
Josef Bacikb12d6862013-08-26 17:14:08 -04002102 ASSERT(added == 0);
Josef Bacik96303082009-07-13 21:29:25 -04002103 goto new_bitmap;
2104 }
2105
Josef Bacik2cdc3422011-05-27 14:07:49 -04002106 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
2107 bytes -= bytes_added;
2108 offset += bytes_added;
2109 added = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002110
2111 if (!bytes) {
2112 ret = 1;
2113 goto out;
2114 } else
2115 goto again;
2116
2117new_bitmap:
2118 if (info && info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002119 add_new_bitmap(ctl, info, offset);
Josef Bacik96303082009-07-13 21:29:25 -04002120 added = 1;
2121 info = NULL;
2122 goto again;
2123 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08002124 spin_unlock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002125
2126 /* no pre-allocated info, allocate a new one */
2127 if (!info) {
Josef Bacikdc89e982011-01-28 17:05:48 -05002128 info = kmem_cache_zalloc(btrfs_free_space_cachep,
2129 GFP_NOFS);
Josef Bacik96303082009-07-13 21:29:25 -04002130 if (!info) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002131 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002132 ret = -ENOMEM;
2133 goto out;
2134 }
2135 }
2136
2137 /* allocate the bitmap */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002138 info->bitmap = kzalloc(PAGE_SIZE, GFP_NOFS);
Li Zefan34d52cb2011-03-29 13:46:06 +08002139 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002140 if (!info->bitmap) {
2141 ret = -ENOMEM;
2142 goto out;
2143 }
2144 goto again;
2145 }
2146
2147out:
2148 if (info) {
zhong jiangf8b00e02018-08-13 14:06:08 +08002149 kfree(info->bitmap);
Josef Bacikdc89e982011-01-28 17:05:48 -05002150 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04002151 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002152
2153 return ret;
2154}
2155
Chris Mason945d8962011-05-22 12:33:42 -04002156static bool try_merge_free_space(struct btrfs_free_space_ctl *ctl,
Li Zefanf333adb2010-11-09 14:57:39 +08002157 struct btrfs_free_space *info, bool update_stat)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002158{
Li Zefan120d66e2010-11-09 14:56:50 +08002159 struct btrfs_free_space *left_info;
2160 struct btrfs_free_space *right_info;
2161 bool merged = false;
2162 u64 offset = info->offset;
2163 u64 bytes = info->bytes;
Josef Bacik6226cb02009-04-03 10:14:18 -04002164
Josef Bacik0f9dd462008-09-23 13:14:11 -04002165 /*
2166 * first we want to see if there is free space adjacent to the range we
2167 * are adding, if there is remove that struct and add a new one to
2168 * cover the entire range
2169 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002170 right_info = tree_search_offset(ctl, offset + bytes, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04002171 if (right_info && rb_prev(&right_info->offset_index))
2172 left_info = rb_entry(rb_prev(&right_info->offset_index),
2173 struct btrfs_free_space, offset_index);
2174 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002175 left_info = tree_search_offset(ctl, offset - 1, 0, 0);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002176
Josef Bacik96303082009-07-13 21:29:25 -04002177 if (right_info && !right_info->bitmap) {
Li Zefanf333adb2010-11-09 14:57:39 +08002178 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08002179 unlink_free_space(ctl, right_info);
Li Zefanf333adb2010-11-09 14:57:39 +08002180 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002181 __unlink_free_space(ctl, right_info);
Josef Bacik6226cb02009-04-03 10:14:18 -04002182 info->bytes += right_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05002183 kmem_cache_free(btrfs_free_space_cachep, right_info);
Li Zefan120d66e2010-11-09 14:56:50 +08002184 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002185 }
2186
Josef Bacik96303082009-07-13 21:29:25 -04002187 if (left_info && !left_info->bitmap &&
2188 left_info->offset + left_info->bytes == offset) {
Li Zefanf333adb2010-11-09 14:57:39 +08002189 if (update_stat)
Li Zefan34d52cb2011-03-29 13:46:06 +08002190 unlink_free_space(ctl, left_info);
Li Zefanf333adb2010-11-09 14:57:39 +08002191 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002192 __unlink_free_space(ctl, left_info);
Josef Bacik6226cb02009-04-03 10:14:18 -04002193 info->offset = left_info->offset;
2194 info->bytes += left_info->bytes;
Josef Bacikdc89e982011-01-28 17:05:48 -05002195 kmem_cache_free(btrfs_free_space_cachep, left_info);
Li Zefan120d66e2010-11-09 14:56:50 +08002196 merged = true;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002197 }
2198
Li Zefan120d66e2010-11-09 14:56:50 +08002199 return merged;
2200}
2201
Filipe Manana20005522014-08-29 13:35:13 +01002202static bool steal_from_bitmap_to_end(struct btrfs_free_space_ctl *ctl,
2203 struct btrfs_free_space *info,
2204 bool update_stat)
2205{
2206 struct btrfs_free_space *bitmap;
2207 unsigned long i;
2208 unsigned long j;
2209 const u64 end = info->offset + info->bytes;
2210 const u64 bitmap_offset = offset_to_bitmap(ctl, end);
2211 u64 bytes;
2212
2213 bitmap = tree_search_offset(ctl, bitmap_offset, 1, 0);
2214 if (!bitmap)
2215 return false;
2216
2217 i = offset_to_bit(bitmap->offset, ctl->unit, end);
2218 j = find_next_zero_bit(bitmap->bitmap, BITS_PER_BITMAP, i);
2219 if (j == i)
2220 return false;
2221 bytes = (j - i) * ctl->unit;
2222 info->bytes += bytes;
2223
2224 if (update_stat)
2225 bitmap_clear_bits(ctl, bitmap, end, bytes);
2226 else
2227 __bitmap_clear_bits(ctl, bitmap, end, bytes);
2228
2229 if (!bitmap->bytes)
2230 free_bitmap(ctl, bitmap);
2231
2232 return true;
2233}
2234
2235static bool steal_from_bitmap_to_front(struct btrfs_free_space_ctl *ctl,
2236 struct btrfs_free_space *info,
2237 bool update_stat)
2238{
2239 struct btrfs_free_space *bitmap;
2240 u64 bitmap_offset;
2241 unsigned long i;
2242 unsigned long j;
2243 unsigned long prev_j;
2244 u64 bytes;
2245
2246 bitmap_offset = offset_to_bitmap(ctl, info->offset);
2247 /* If we're on a boundary, try the previous logical bitmap. */
2248 if (bitmap_offset == info->offset) {
2249 if (info->offset == 0)
2250 return false;
2251 bitmap_offset = offset_to_bitmap(ctl, info->offset - 1);
2252 }
2253
2254 bitmap = tree_search_offset(ctl, bitmap_offset, 1, 0);
2255 if (!bitmap)
2256 return false;
2257
2258 i = offset_to_bit(bitmap->offset, ctl->unit, info->offset) - 1;
2259 j = 0;
2260 prev_j = (unsigned long)-1;
2261 for_each_clear_bit_from(j, bitmap->bitmap, BITS_PER_BITMAP) {
2262 if (j > i)
2263 break;
2264 prev_j = j;
2265 }
2266 if (prev_j == i)
2267 return false;
2268
2269 if (prev_j == (unsigned long)-1)
2270 bytes = (i + 1) * ctl->unit;
2271 else
2272 bytes = (i - prev_j) * ctl->unit;
2273
2274 info->offset -= bytes;
2275 info->bytes += bytes;
2276
2277 if (update_stat)
2278 bitmap_clear_bits(ctl, bitmap, info->offset, bytes);
2279 else
2280 __bitmap_clear_bits(ctl, bitmap, info->offset, bytes);
2281
2282 if (!bitmap->bytes)
2283 free_bitmap(ctl, bitmap);
2284
2285 return true;
2286}
2287
2288/*
2289 * We prefer always to allocate from extent entries, both for clustered and
2290 * non-clustered allocation requests. So when attempting to add a new extent
2291 * entry, try to see if there's adjacent free space in bitmap entries, and if
2292 * there is, migrate that space from the bitmaps to the extent.
2293 * Like this we get better chances of satisfying space allocation requests
2294 * because we attempt to satisfy them based on a single cache entry, and never
2295 * on 2 or more entries - even if the entries represent a contiguous free space
2296 * region (e.g. 1 extent entry + 1 bitmap entry starting where the extent entry
2297 * ends).
2298 */
2299static void steal_from_bitmap(struct btrfs_free_space_ctl *ctl,
2300 struct btrfs_free_space *info,
2301 bool update_stat)
2302{
2303 /*
2304 * Only work with disconnected entries, as we can change their offset,
2305 * and must be extent entries.
2306 */
2307 ASSERT(!info->bitmap);
2308 ASSERT(RB_EMPTY_NODE(&info->offset_index));
2309
2310 if (ctl->total_bitmaps > 0) {
2311 bool stole_end;
2312 bool stole_front = false;
2313
2314 stole_end = steal_from_bitmap_to_end(ctl, info, update_stat);
2315 if (ctl->total_bitmaps > 0)
2316 stole_front = steal_from_bitmap_to_front(ctl, info,
2317 update_stat);
2318
2319 if (stole_end || stole_front)
2320 try_merge_free_space(ctl, info, update_stat);
2321 }
2322}
2323
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002324int __btrfs_add_free_space(struct btrfs_fs_info *fs_info,
2325 struct btrfs_free_space_ctl *ctl,
Li Zefan581bb052011-04-20 10:06:11 +08002326 u64 offset, u64 bytes)
Li Zefan120d66e2010-11-09 14:56:50 +08002327{
2328 struct btrfs_free_space *info;
2329 int ret = 0;
2330
Josef Bacikdc89e982011-01-28 17:05:48 -05002331 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
Li Zefan120d66e2010-11-09 14:56:50 +08002332 if (!info)
2333 return -ENOMEM;
2334
2335 info->offset = offset;
2336 info->bytes = bytes;
Filipe Manana20005522014-08-29 13:35:13 +01002337 RB_CLEAR_NODE(&info->offset_index);
Li Zefan120d66e2010-11-09 14:56:50 +08002338
Li Zefan34d52cb2011-03-29 13:46:06 +08002339 spin_lock(&ctl->tree_lock);
Li Zefan120d66e2010-11-09 14:56:50 +08002340
Li Zefan34d52cb2011-03-29 13:46:06 +08002341 if (try_merge_free_space(ctl, info, true))
Li Zefan120d66e2010-11-09 14:56:50 +08002342 goto link;
2343
2344 /*
2345 * There was no extent directly to the left or right of this new
2346 * extent then we know we're going to have to allocate a new extent, so
2347 * before we do that see if we need to drop this into a bitmap
2348 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002349 ret = insert_into_bitmap(ctl, info);
Li Zefan120d66e2010-11-09 14:56:50 +08002350 if (ret < 0) {
2351 goto out;
2352 } else if (ret) {
2353 ret = 0;
2354 goto out;
2355 }
2356link:
Filipe Manana20005522014-08-29 13:35:13 +01002357 /*
2358 * Only steal free space from adjacent bitmaps if we're sure we're not
2359 * going to add the new free space to existing bitmap entries - because
2360 * that would mean unnecessary work that would be reverted. Therefore
2361 * attempt to steal space from bitmaps if we're adding an extent entry.
2362 */
2363 steal_from_bitmap(ctl, info, true);
2364
Li Zefan34d52cb2011-03-29 13:46:06 +08002365 ret = link_free_space(ctl, info);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002366 if (ret)
Josef Bacikdc89e982011-01-28 17:05:48 -05002367 kmem_cache_free(btrfs_free_space_cachep, info);
Josef Bacik96303082009-07-13 21:29:25 -04002368out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002369 spin_unlock(&ctl->tree_lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04002370
Josef Bacik0f9dd462008-09-23 13:14:11 -04002371 if (ret) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002372 btrfs_crit(fs_info, "unable to add free space :%d", ret);
Josef Bacikb12d6862013-08-26 17:14:08 -04002373 ASSERT(ret != -EEXIST);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002374 }
2375
Josef Bacik0f9dd462008-09-23 13:14:11 -04002376 return ret;
2377}
2378
Josef Bacik6226cb02009-04-03 10:14:18 -04002379int btrfs_remove_free_space(struct btrfs_block_group_cache *block_group,
2380 u64 offset, u64 bytes)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002381{
Li Zefan34d52cb2011-03-29 13:46:06 +08002382 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002383 struct btrfs_free_space *info;
Josef Bacikb0175112012-12-18 11:39:19 -05002384 int ret;
2385 bool re_search = false;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002386
Li Zefan34d52cb2011-03-29 13:46:06 +08002387 spin_lock(&ctl->tree_lock);
Josef Bacik6226cb02009-04-03 10:14:18 -04002388
Josef Bacik96303082009-07-13 21:29:25 -04002389again:
Josef Bacikb0175112012-12-18 11:39:19 -05002390 ret = 0;
Josef Bacikbdb7d302012-06-27 15:10:56 -04002391 if (!bytes)
2392 goto out_lock;
2393
Li Zefan34d52cb2011-03-29 13:46:06 +08002394 info = tree_search_offset(ctl, offset, 0, 0);
Josef Bacik96303082009-07-13 21:29:25 -04002395 if (!info) {
Josef Bacik6606bb92009-07-31 11:03:58 -04002396 /*
2397 * oops didn't find an extent that matched the space we wanted
2398 * to remove, look for a bitmap instead
2399 */
Li Zefan34d52cb2011-03-29 13:46:06 +08002400 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
Josef Bacik6606bb92009-07-31 11:03:58 -04002401 1, 0);
2402 if (!info) {
Josef Bacikb0175112012-12-18 11:39:19 -05002403 /*
2404 * If we found a partial bit of our free space in a
2405 * bitmap but then couldn't find the other part this may
2406 * be a problem, so WARN about it.
Chris Mason24a70312011-11-21 09:39:11 -05002407 */
Josef Bacikb0175112012-12-18 11:39:19 -05002408 WARN_ON(re_search);
Josef Bacik6606bb92009-07-31 11:03:58 -04002409 goto out_lock;
2410 }
Josef Bacik96303082009-07-13 21:29:25 -04002411 }
2412
Josef Bacikb0175112012-12-18 11:39:19 -05002413 re_search = false;
Josef Bacikbdb7d302012-06-27 15:10:56 -04002414 if (!info->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002415 unlink_free_space(ctl, info);
Josef Bacikbdb7d302012-06-27 15:10:56 -04002416 if (offset == info->offset) {
2417 u64 to_free = min(bytes, info->bytes);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002418
Josef Bacikbdb7d302012-06-27 15:10:56 -04002419 info->bytes -= to_free;
2420 info->offset += to_free;
2421 if (info->bytes) {
2422 ret = link_free_space(ctl, info);
2423 WARN_ON(ret);
2424 } else {
2425 kmem_cache_free(btrfs_free_space_cachep, info);
2426 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002427
Josef Bacikbdb7d302012-06-27 15:10:56 -04002428 offset += to_free;
2429 bytes -= to_free;
2430 goto again;
2431 } else {
2432 u64 old_end = info->bytes + info->offset;
Chris Mason9b49c9b2008-09-24 11:23:25 -04002433
Josef Bacikbdb7d302012-06-27 15:10:56 -04002434 info->bytes = offset - info->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002435 ret = link_free_space(ctl, info);
Josef Bacik96303082009-07-13 21:29:25 -04002436 WARN_ON(ret);
2437 if (ret)
2438 goto out_lock;
Josef Bacik96303082009-07-13 21:29:25 -04002439
Josef Bacikbdb7d302012-06-27 15:10:56 -04002440 /* Not enough bytes in this entry to satisfy us */
2441 if (old_end < offset + bytes) {
2442 bytes -= old_end - offset;
2443 offset = old_end;
2444 goto again;
2445 } else if (old_end == offset + bytes) {
2446 /* all done */
2447 goto out_lock;
2448 }
2449 spin_unlock(&ctl->tree_lock);
2450
2451 ret = btrfs_add_free_space(block_group, offset + bytes,
2452 old_end - (offset + bytes));
2453 WARN_ON(ret);
2454 goto out;
2455 }
Josef Bacik0f9dd462008-09-23 13:14:11 -04002456 }
Josef Bacik96303082009-07-13 21:29:25 -04002457
Li Zefan34d52cb2011-03-29 13:46:06 +08002458 ret = remove_from_bitmap(ctl, info, &offset, &bytes);
Josef Bacikb0175112012-12-18 11:39:19 -05002459 if (ret == -EAGAIN) {
2460 re_search = true;
Josef Bacik96303082009-07-13 21:29:25 -04002461 goto again;
Josef Bacikb0175112012-12-18 11:39:19 -05002462 }
Josef Bacik96303082009-07-13 21:29:25 -04002463out_lock:
Li Zefan34d52cb2011-03-29 13:46:06 +08002464 spin_unlock(&ctl->tree_lock);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002465out:
Josef Bacik25179202008-10-29 14:49:05 -04002466 return ret;
2467}
2468
Josef Bacik0f9dd462008-09-23 13:14:11 -04002469void btrfs_dump_free_space(struct btrfs_block_group_cache *block_group,
2470 u64 bytes)
2471{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002472 struct btrfs_fs_info *fs_info = block_group->fs_info;
Li Zefan34d52cb2011-03-29 13:46:06 +08002473 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002474 struct btrfs_free_space *info;
2475 struct rb_node *n;
2476 int count = 0;
2477
Filipe Manana9084cb62018-10-22 10:43:06 +01002478 spin_lock(&ctl->tree_lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08002479 for (n = rb_first(&ctl->free_space_offset); n; n = rb_next(n)) {
Josef Bacik0f9dd462008-09-23 13:14:11 -04002480 info = rb_entry(n, struct btrfs_free_space, offset_index);
Liu Bof6175ef2012-07-06 03:31:36 -06002481 if (info->bytes >= bytes && !block_group->ro)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002482 count++;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002483 btrfs_crit(fs_info, "entry offset %llu, bytes %llu, bitmap %s",
Frank Holtonefe120a2013-12-20 11:37:06 -05002484 info->offset, info->bytes,
Josef Bacik96303082009-07-13 21:29:25 -04002485 (info->bitmap) ? "yes" : "no");
Josef Bacik0f9dd462008-09-23 13:14:11 -04002486 }
Filipe Manana9084cb62018-10-22 10:43:06 +01002487 spin_unlock(&ctl->tree_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002488 btrfs_info(fs_info, "block group has cluster?: %s",
Josef Bacik96303082009-07-13 21:29:25 -04002489 list_empty(&block_group->cluster_list) ? "no" : "yes");
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002490 btrfs_info(fs_info,
Frank Holtonefe120a2013-12-20 11:37:06 -05002491 "%d blocks of free space at or bigger than bytes is", count);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002492}
2493
Li Zefan34d52cb2011-03-29 13:46:06 +08002494void btrfs_init_free_space_ctl(struct btrfs_block_group_cache *block_group)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002495{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002496 struct btrfs_fs_info *fs_info = block_group->fs_info;
Li Zefan34d52cb2011-03-29 13:46:06 +08002497 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002498
Li Zefan34d52cb2011-03-29 13:46:06 +08002499 spin_lock_init(&ctl->tree_lock);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04002500 ctl->unit = fs_info->sectorsize;
Li Zefan34d52cb2011-03-29 13:46:06 +08002501 ctl->start = block_group->key.objectid;
2502 ctl->private = block_group;
2503 ctl->op = &free_space_op;
Filipe Manana55507ce2014-12-01 17:04:09 +00002504 INIT_LIST_HEAD(&ctl->trimming_ranges);
2505 mutex_init(&ctl->cache_writeout_mutex);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002506
Li Zefan34d52cb2011-03-29 13:46:06 +08002507 /*
2508 * we only want to have 32k of ram per block group for keeping
2509 * track of free space, and if we pass 1/2 of that we want to
2510 * start converting things over to using bitmaps
2511 */
Byongho Leeee221842015-12-15 01:42:10 +09002512 ctl->extents_thresh = (SZ_32K / 2) / sizeof(struct btrfs_free_space);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002513}
2514
Chris Masonfa9c0d792009-04-03 09:47:43 -04002515/*
2516 * for a given cluster, put all of its extents back into the free
2517 * space cache. If the block group passed doesn't match the block group
2518 * pointed to by the cluster, someone else raced in and freed the
2519 * cluster already. In that case, we just return without changing anything
2520 */
2521static int
2522__btrfs_return_cluster_to_free_space(
2523 struct btrfs_block_group_cache *block_group,
2524 struct btrfs_free_cluster *cluster)
2525{
Li Zefan34d52cb2011-03-29 13:46:06 +08002526 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002527 struct btrfs_free_space *entry;
2528 struct rb_node *node;
2529
2530 spin_lock(&cluster->lock);
2531 if (cluster->block_group != block_group)
2532 goto out;
2533
Josef Bacik96303082009-07-13 21:29:25 -04002534 cluster->block_group = NULL;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002535 cluster->window_start = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002536 list_del_init(&cluster->block_group_list);
Josef Bacik96303082009-07-13 21:29:25 -04002537
Chris Masonfa9c0d792009-04-03 09:47:43 -04002538 node = rb_first(&cluster->root);
Josef Bacik96303082009-07-13 21:29:25 -04002539 while (node) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002540 bool bitmap;
2541
Chris Masonfa9c0d792009-04-03 09:47:43 -04002542 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2543 node = rb_next(&entry->offset_index);
2544 rb_erase(&entry->offset_index, &cluster->root);
Filipe Manana20005522014-08-29 13:35:13 +01002545 RB_CLEAR_NODE(&entry->offset_index);
Josef Bacik4e69b592011-03-21 10:11:24 -04002546
2547 bitmap = (entry->bitmap != NULL);
Filipe Manana20005522014-08-29 13:35:13 +01002548 if (!bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002549 try_merge_free_space(ctl, entry, false);
Filipe Manana20005522014-08-29 13:35:13 +01002550 steal_from_bitmap(ctl, entry, false);
2551 }
Li Zefan34d52cb2011-03-29 13:46:06 +08002552 tree_insert_offset(&ctl->free_space_offset,
Josef Bacik4e69b592011-03-21 10:11:24 -04002553 entry->offset, &entry->offset_index, bitmap);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002554 }
Eric Paris6bef4d32010-02-23 19:43:04 +00002555 cluster->root = RB_ROOT;
Josef Bacik96303082009-07-13 21:29:25 -04002556
Chris Masonfa9c0d792009-04-03 09:47:43 -04002557out:
2558 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002559 btrfs_put_block_group(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002560 return 0;
2561}
2562
Eric Sandeen48a3b632013-04-25 20:41:01 +00002563static void __btrfs_remove_free_space_cache_locked(
2564 struct btrfs_free_space_ctl *ctl)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002565{
2566 struct btrfs_free_space *info;
2567 struct rb_node *node;
Li Zefan581bb052011-04-20 10:06:11 +08002568
Li Zefan581bb052011-04-20 10:06:11 +08002569 while ((node = rb_last(&ctl->free_space_offset)) != NULL) {
2570 info = rb_entry(node, struct btrfs_free_space, offset_index);
Josef Bacik9b90f512011-06-24 16:02:51 +00002571 if (!info->bitmap) {
2572 unlink_free_space(ctl, info);
2573 kmem_cache_free(btrfs_free_space_cachep, info);
2574 } else {
2575 free_bitmap(ctl, info);
2576 }
David Sterba351810c2015-01-08 15:20:54 +01002577
2578 cond_resched_lock(&ctl->tree_lock);
Li Zefan581bb052011-04-20 10:06:11 +08002579 }
Chris Mason09655372011-05-21 09:27:38 -04002580}
2581
2582void __btrfs_remove_free_space_cache(struct btrfs_free_space_ctl *ctl)
2583{
2584 spin_lock(&ctl->tree_lock);
2585 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan581bb052011-04-20 10:06:11 +08002586 spin_unlock(&ctl->tree_lock);
2587}
2588
Josef Bacik0f9dd462008-09-23 13:14:11 -04002589void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group)
2590{
Li Zefan34d52cb2011-03-29 13:46:06 +08002591 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002592 struct btrfs_free_cluster *cluster;
Josef Bacik96303082009-07-13 21:29:25 -04002593 struct list_head *head;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002594
Li Zefan34d52cb2011-03-29 13:46:06 +08002595 spin_lock(&ctl->tree_lock);
Josef Bacik96303082009-07-13 21:29:25 -04002596 while ((head = block_group->cluster_list.next) !=
2597 &block_group->cluster_list) {
2598 cluster = list_entry(head, struct btrfs_free_cluster,
2599 block_group_list);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002600
2601 WARN_ON(cluster->block_group != block_group);
2602 __btrfs_return_cluster_to_free_space(block_group, cluster);
David Sterba351810c2015-01-08 15:20:54 +01002603
2604 cond_resched_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002605 }
Chris Mason09655372011-05-21 09:27:38 -04002606 __btrfs_remove_free_space_cache_locked(ctl);
Li Zefan34d52cb2011-03-29 13:46:06 +08002607 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002608
Josef Bacik0f9dd462008-09-23 13:14:11 -04002609}
2610
Josef Bacik6226cb02009-04-03 10:14:18 -04002611u64 btrfs_find_space_for_alloc(struct btrfs_block_group_cache *block_group,
Miao Xiea4820392013-09-09 13:19:42 +08002612 u64 offset, u64 bytes, u64 empty_size,
2613 u64 *max_extent_size)
Josef Bacik0f9dd462008-09-23 13:14:11 -04002614{
Li Zefan34d52cb2011-03-29 13:46:06 +08002615 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik6226cb02009-04-03 10:14:18 -04002616 struct btrfs_free_space *entry = NULL;
Josef Bacik96303082009-07-13 21:29:25 -04002617 u64 bytes_search = bytes + empty_size;
Josef Bacik6226cb02009-04-03 10:14:18 -04002618 u64 ret = 0;
David Woodhouse53b381b2013-01-29 18:40:14 -05002619 u64 align_gap = 0;
2620 u64 align_gap_len = 0;
Josef Bacik0f9dd462008-09-23 13:14:11 -04002621
Li Zefan34d52cb2011-03-29 13:46:06 +08002622 spin_lock(&ctl->tree_lock);
David Woodhouse53b381b2013-01-29 18:40:14 -05002623 entry = find_free_space(ctl, &offset, &bytes_search,
Miao Xiea4820392013-09-09 13:19:42 +08002624 block_group->full_stripe_len, max_extent_size);
Josef Bacik6226cb02009-04-03 10:14:18 -04002625 if (!entry)
Josef Bacik96303082009-07-13 21:29:25 -04002626 goto out;
2627
2628 ret = offset;
2629 if (entry->bitmap) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002630 bitmap_clear_bits(ctl, entry, offset, bytes);
Li Zefanedf6e2d2010-11-09 14:50:07 +08002631 if (!entry->bytes)
Li Zefan34d52cb2011-03-29 13:46:06 +08002632 free_bitmap(ctl, entry);
Josef Bacik96303082009-07-13 21:29:25 -04002633 } else {
Li Zefan34d52cb2011-03-29 13:46:06 +08002634 unlink_free_space(ctl, entry);
David Woodhouse53b381b2013-01-29 18:40:14 -05002635 align_gap_len = offset - entry->offset;
2636 align_gap = entry->offset;
2637
2638 entry->offset = offset + bytes;
2639 WARN_ON(entry->bytes < bytes + align_gap_len);
2640
2641 entry->bytes -= bytes + align_gap_len;
Josef Bacik6226cb02009-04-03 10:14:18 -04002642 if (!entry->bytes)
Josef Bacikdc89e982011-01-28 17:05:48 -05002643 kmem_cache_free(btrfs_free_space_cachep, entry);
Josef Bacik6226cb02009-04-03 10:14:18 -04002644 else
Li Zefan34d52cb2011-03-29 13:46:06 +08002645 link_free_space(ctl, entry);
Josef Bacik6226cb02009-04-03 10:14:18 -04002646 }
Josef Bacik96303082009-07-13 21:29:25 -04002647out:
Li Zefan34d52cb2011-03-29 13:46:06 +08002648 spin_unlock(&ctl->tree_lock);
Josef Bacik817d52f2009-07-13 21:29:25 -04002649
David Woodhouse53b381b2013-01-29 18:40:14 -05002650 if (align_gap_len)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -04002651 __btrfs_add_free_space(block_group->fs_info, ctl,
2652 align_gap, align_gap_len);
Josef Bacik0f9dd462008-09-23 13:14:11 -04002653 return ret;
2654}
Chris Masonfa9c0d792009-04-03 09:47:43 -04002655
2656/*
2657 * given a cluster, put all of its extents back into the free space
2658 * cache. If a block group is passed, this function will only free
2659 * a cluster that belongs to the passed block group.
2660 *
2661 * Otherwise, it'll get a reference on the block group pointed to by the
2662 * cluster and remove the cluster from it.
2663 */
2664int btrfs_return_cluster_to_free_space(
2665 struct btrfs_block_group_cache *block_group,
2666 struct btrfs_free_cluster *cluster)
2667{
Li Zefan34d52cb2011-03-29 13:46:06 +08002668 struct btrfs_free_space_ctl *ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002669 int ret;
2670
2671 /* first, get a safe pointer to the block group */
2672 spin_lock(&cluster->lock);
2673 if (!block_group) {
2674 block_group = cluster->block_group;
2675 if (!block_group) {
2676 spin_unlock(&cluster->lock);
2677 return 0;
2678 }
2679 } else if (cluster->block_group != block_group) {
2680 /* someone else has already freed it don't redo their work */
2681 spin_unlock(&cluster->lock);
2682 return 0;
2683 }
2684 atomic_inc(&block_group->count);
2685 spin_unlock(&cluster->lock);
2686
Li Zefan34d52cb2011-03-29 13:46:06 +08002687 ctl = block_group->free_space_ctl;
2688
Chris Masonfa9c0d792009-04-03 09:47:43 -04002689 /* now return any extents the cluster had on it */
Li Zefan34d52cb2011-03-29 13:46:06 +08002690 spin_lock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002691 ret = __btrfs_return_cluster_to_free_space(block_group, cluster);
Li Zefan34d52cb2011-03-29 13:46:06 +08002692 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002693
2694 /* finally drop our ref */
2695 btrfs_put_block_group(block_group);
2696 return ret;
2697}
2698
Josef Bacik96303082009-07-13 21:29:25 -04002699static u64 btrfs_alloc_from_bitmap(struct btrfs_block_group_cache *block_group,
2700 struct btrfs_free_cluster *cluster,
Josef Bacik4e69b592011-03-21 10:11:24 -04002701 struct btrfs_free_space *entry,
Miao Xiea4820392013-09-09 13:19:42 +08002702 u64 bytes, u64 min_start,
2703 u64 *max_extent_size)
Josef Bacik96303082009-07-13 21:29:25 -04002704{
Li Zefan34d52cb2011-03-29 13:46:06 +08002705 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002706 int err;
2707 u64 search_start = cluster->window_start;
2708 u64 search_bytes = bytes;
2709 u64 ret = 0;
2710
Josef Bacik96303082009-07-13 21:29:25 -04002711 search_start = min_start;
2712 search_bytes = bytes;
2713
Josef Bacik0584f712015-10-02 16:12:23 -04002714 err = search_bitmap(ctl, entry, &search_start, &search_bytes, true);
Miao Xiea4820392013-09-09 13:19:42 +08002715 if (err) {
Josef Bacikad22cf62018-10-12 15:32:33 -04002716 *max_extent_size = max(get_max_extent_size(entry),
2717 *max_extent_size);
Josef Bacik4e69b592011-03-21 10:11:24 -04002718 return 0;
Miao Xiea4820392013-09-09 13:19:42 +08002719 }
Josef Bacik96303082009-07-13 21:29:25 -04002720
2721 ret = search_start;
Miao Xiebb3ac5a2011-08-05 09:32:35 +00002722 __bitmap_clear_bits(ctl, entry, ret, bytes);
Josef Bacik96303082009-07-13 21:29:25 -04002723
2724 return ret;
2725}
2726
Chris Masonfa9c0d792009-04-03 09:47:43 -04002727/*
2728 * given a cluster, try to allocate 'bytes' from it, returns 0
2729 * if it couldn't find anything suitably large, or a logical disk offset
2730 * if things worked out
2731 */
2732u64 btrfs_alloc_from_cluster(struct btrfs_block_group_cache *block_group,
2733 struct btrfs_free_cluster *cluster, u64 bytes,
Miao Xiea4820392013-09-09 13:19:42 +08002734 u64 min_start, u64 *max_extent_size)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002735{
Li Zefan34d52cb2011-03-29 13:46:06 +08002736 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Masonfa9c0d792009-04-03 09:47:43 -04002737 struct btrfs_free_space *entry = NULL;
2738 struct rb_node *node;
2739 u64 ret = 0;
2740
2741 spin_lock(&cluster->lock);
2742 if (bytes > cluster->max_size)
2743 goto out;
2744
2745 if (cluster->block_group != block_group)
2746 goto out;
2747
2748 node = rb_first(&cluster->root);
2749 if (!node)
2750 goto out;
2751
2752 entry = rb_entry(node, struct btrfs_free_space, offset_index);
Dulshani Gunawardhana67871252013-10-31 10:33:04 +05302753 while (1) {
Josef Bacikad22cf62018-10-12 15:32:33 -04002754 if (entry->bytes < bytes)
2755 *max_extent_size = max(get_max_extent_size(entry),
2756 *max_extent_size);
Miao Xiea4820392013-09-09 13:19:42 +08002757
Josef Bacik4e69b592011-03-21 10:11:24 -04002758 if (entry->bytes < bytes ||
2759 (!entry->bitmap && entry->offset < min_start)) {
Chris Masonfa9c0d792009-04-03 09:47:43 -04002760 node = rb_next(&entry->offset_index);
2761 if (!node)
2762 break;
2763 entry = rb_entry(node, struct btrfs_free_space,
2764 offset_index);
2765 continue;
2766 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002767
Josef Bacik4e69b592011-03-21 10:11:24 -04002768 if (entry->bitmap) {
2769 ret = btrfs_alloc_from_bitmap(block_group,
2770 cluster, entry, bytes,
Miao Xiea4820392013-09-09 13:19:42 +08002771 cluster->window_start,
2772 max_extent_size);
Josef Bacik4e69b592011-03-21 10:11:24 -04002773 if (ret == 0) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002774 node = rb_next(&entry->offset_index);
2775 if (!node)
2776 break;
2777 entry = rb_entry(node, struct btrfs_free_space,
2778 offset_index);
2779 continue;
2780 }
Josef Bacik9b230622012-01-26 15:01:12 -05002781 cluster->window_start += bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002782 } else {
Josef Bacik4e69b592011-03-21 10:11:24 -04002783 ret = entry->offset;
2784
2785 entry->offset += bytes;
2786 entry->bytes -= bytes;
2787 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04002788
Li Zefan5e71b5d2010-11-09 14:55:34 +08002789 if (entry->bytes == 0)
Chris Masonfa9c0d792009-04-03 09:47:43 -04002790 rb_erase(&entry->offset_index, &cluster->root);
Chris Masonfa9c0d792009-04-03 09:47:43 -04002791 break;
2792 }
2793out:
2794 spin_unlock(&cluster->lock);
Josef Bacik96303082009-07-13 21:29:25 -04002795
Li Zefan5e71b5d2010-11-09 14:55:34 +08002796 if (!ret)
2797 return 0;
2798
Li Zefan34d52cb2011-03-29 13:46:06 +08002799 spin_lock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002800
Li Zefan34d52cb2011-03-29 13:46:06 +08002801 ctl->free_space -= bytes;
Li Zefan5e71b5d2010-11-09 14:55:34 +08002802 if (entry->bytes == 0) {
Li Zefan34d52cb2011-03-29 13:46:06 +08002803 ctl->free_extents--;
Josef Bacik4e69b592011-03-21 10:11:24 -04002804 if (entry->bitmap) {
2805 kfree(entry->bitmap);
Li Zefan34d52cb2011-03-29 13:46:06 +08002806 ctl->total_bitmaps--;
2807 ctl->op->recalc_thresholds(ctl);
Josef Bacik4e69b592011-03-21 10:11:24 -04002808 }
Josef Bacikdc89e982011-01-28 17:05:48 -05002809 kmem_cache_free(btrfs_free_space_cachep, entry);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002810 }
2811
Li Zefan34d52cb2011-03-29 13:46:06 +08002812 spin_unlock(&ctl->tree_lock);
Li Zefan5e71b5d2010-11-09 14:55:34 +08002813
Chris Masonfa9c0d792009-04-03 09:47:43 -04002814 return ret;
2815}
2816
Josef Bacik96303082009-07-13 21:29:25 -04002817static int btrfs_bitmap_cluster(struct btrfs_block_group_cache *block_group,
2818 struct btrfs_free_space *entry,
2819 struct btrfs_free_cluster *cluster,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002820 u64 offset, u64 bytes,
2821 u64 cont1_bytes, u64 min_bytes)
Josef Bacik96303082009-07-13 21:29:25 -04002822{
Li Zefan34d52cb2011-03-29 13:46:06 +08002823 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik96303082009-07-13 21:29:25 -04002824 unsigned long next_zero;
2825 unsigned long i;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002826 unsigned long want_bits;
2827 unsigned long min_bits;
Josef Bacik96303082009-07-13 21:29:25 -04002828 unsigned long found_bits;
Josef Bacikcef40482015-10-02 16:09:42 -04002829 unsigned long max_bits = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002830 unsigned long start = 0;
2831 unsigned long total_found = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002832 int ret;
Josef Bacik96303082009-07-13 21:29:25 -04002833
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002834 i = offset_to_bit(entry->offset, ctl->unit,
Josef Bacik96303082009-07-13 21:29:25 -04002835 max_t(u64, offset, entry->offset));
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002836 want_bits = bytes_to_bits(bytes, ctl->unit);
2837 min_bits = bytes_to_bits(min_bytes, ctl->unit);
Josef Bacik96303082009-07-13 21:29:25 -04002838
Josef Bacikcef40482015-10-02 16:09:42 -04002839 /*
2840 * Don't bother looking for a cluster in this bitmap if it's heavily
2841 * fragmented.
2842 */
2843 if (entry->max_extent_size &&
2844 entry->max_extent_size < cont1_bytes)
2845 return -ENOSPC;
Josef Bacik96303082009-07-13 21:29:25 -04002846again:
2847 found_bits = 0;
Wei Yongjunebb3dad2012-09-13 20:29:02 -06002848 for_each_set_bit_from(i, entry->bitmap, BITS_PER_BITMAP) {
Josef Bacik96303082009-07-13 21:29:25 -04002849 next_zero = find_next_zero_bit(entry->bitmap,
2850 BITS_PER_BITMAP, i);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002851 if (next_zero - i >= min_bits) {
Josef Bacik96303082009-07-13 21:29:25 -04002852 found_bits = next_zero - i;
Josef Bacikcef40482015-10-02 16:09:42 -04002853 if (found_bits > max_bits)
2854 max_bits = found_bits;
Josef Bacik96303082009-07-13 21:29:25 -04002855 break;
2856 }
Josef Bacikcef40482015-10-02 16:09:42 -04002857 if (next_zero - i > max_bits)
2858 max_bits = next_zero - i;
Josef Bacik96303082009-07-13 21:29:25 -04002859 i = next_zero;
2860 }
2861
Josef Bacikcef40482015-10-02 16:09:42 -04002862 if (!found_bits) {
2863 entry->max_extent_size = (u64)max_bits * ctl->unit;
Josef Bacik4e69b592011-03-21 10:11:24 -04002864 return -ENOSPC;
Josef Bacikcef40482015-10-02 16:09:42 -04002865 }
Josef Bacik96303082009-07-13 21:29:25 -04002866
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002867 if (!total_found) {
Josef Bacik96303082009-07-13 21:29:25 -04002868 start = i;
Alexandre Olivab78d09b2011-11-30 13:43:00 -05002869 cluster->max_size = 0;
Josef Bacik96303082009-07-13 21:29:25 -04002870 }
2871
2872 total_found += found_bits;
2873
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002874 if (cluster->max_size < found_bits * ctl->unit)
2875 cluster->max_size = found_bits * ctl->unit;
Josef Bacik96303082009-07-13 21:29:25 -04002876
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002877 if (total_found < want_bits || cluster->max_size < cont1_bytes) {
2878 i = next_zero + 1;
Josef Bacik96303082009-07-13 21:29:25 -04002879 goto again;
2880 }
2881
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002882 cluster->window_start = start * ctl->unit + entry->offset;
Li Zefan34d52cb2011-03-29 13:46:06 +08002883 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002884 ret = tree_insert_offset(&cluster->root, entry->offset,
2885 &entry->offset_index, 1);
Josef Bacikb12d6862013-08-26 17:14:08 -04002886 ASSERT(!ret); /* -EEXIST; Logic error */
Josef Bacik96303082009-07-13 21:29:25 -04002887
Josef Bacik3f7de032011-11-10 08:29:20 -05002888 trace_btrfs_setup_cluster(block_group, cluster,
Wang Sheng-Hui96009762012-11-30 06:30:14 +00002889 total_found * ctl->unit, 1);
Josef Bacik96303082009-07-13 21:29:25 -04002890 return 0;
2891}
2892
Chris Masonfa9c0d792009-04-03 09:47:43 -04002893/*
Josef Bacik4e69b592011-03-21 10:11:24 -04002894 * This searches the block group for just extents to fill the cluster with.
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002895 * Try to find a cluster with at least bytes total bytes, at least one
2896 * extent of cont1_bytes, and other clusters of at least min_bytes.
Josef Bacik4e69b592011-03-21 10:11:24 -04002897 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002898static noinline int
2899setup_cluster_no_bitmap(struct btrfs_block_group_cache *block_group,
2900 struct btrfs_free_cluster *cluster,
2901 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002902 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002903{
Li Zefan34d52cb2011-03-29 13:46:06 +08002904 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik4e69b592011-03-21 10:11:24 -04002905 struct btrfs_free_space *first = NULL;
2906 struct btrfs_free_space *entry = NULL;
Josef Bacik4e69b592011-03-21 10:11:24 -04002907 struct btrfs_free_space *last;
2908 struct rb_node *node;
Josef Bacik4e69b592011-03-21 10:11:24 -04002909 u64 window_free;
2910 u64 max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002911 u64 total_size = 0;
Josef Bacik4e69b592011-03-21 10:11:24 -04002912
Li Zefan34d52cb2011-03-29 13:46:06 +08002913 entry = tree_search_offset(ctl, offset, 0, 1);
Josef Bacik4e69b592011-03-21 10:11:24 -04002914 if (!entry)
2915 return -ENOSPC;
2916
2917 /*
2918 * We don't want bitmaps, so just move along until we find a normal
2919 * extent entry.
2920 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002921 while (entry->bitmap || entry->bytes < min_bytes) {
2922 if (entry->bitmap && list_empty(&entry->list))
Josef Bacik86d4a772011-05-25 13:03:16 -04002923 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002924 node = rb_next(&entry->offset_index);
2925 if (!node)
2926 return -ENOSPC;
2927 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2928 }
2929
Josef Bacik4e69b592011-03-21 10:11:24 -04002930 window_free = entry->bytes;
2931 max_extent = entry->bytes;
2932 first = entry;
2933 last = entry;
Josef Bacik4e69b592011-03-21 10:11:24 -04002934
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002935 for (node = rb_next(&entry->offset_index); node;
2936 node = rb_next(&entry->offset_index)) {
Josef Bacik4e69b592011-03-21 10:11:24 -04002937 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2938
Josef Bacik86d4a772011-05-25 13:03:16 -04002939 if (entry->bitmap) {
2940 if (list_empty(&entry->list))
2941 list_add_tail(&entry->list, bitmaps);
Josef Bacik4e69b592011-03-21 10:11:24 -04002942 continue;
Josef Bacik86d4a772011-05-25 13:03:16 -04002943 }
2944
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002945 if (entry->bytes < min_bytes)
2946 continue;
2947
2948 last = entry;
2949 window_free += entry->bytes;
2950 if (entry->bytes > max_extent)
Josef Bacik4e69b592011-03-21 10:11:24 -04002951 max_extent = entry->bytes;
Josef Bacik4e69b592011-03-21 10:11:24 -04002952 }
2953
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002954 if (window_free < bytes || max_extent < cont1_bytes)
2955 return -ENOSPC;
2956
Josef Bacik4e69b592011-03-21 10:11:24 -04002957 cluster->window_start = first->offset;
2958
2959 node = &first->offset_index;
2960
2961 /*
2962 * now we've found our entries, pull them out of the free space
2963 * cache and put them into the cluster rbtree
2964 */
2965 do {
2966 int ret;
2967
2968 entry = rb_entry(node, struct btrfs_free_space, offset_index);
2969 node = rb_next(&entry->offset_index);
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002970 if (entry->bitmap || entry->bytes < min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002971 continue;
2972
Li Zefan34d52cb2011-03-29 13:46:06 +08002973 rb_erase(&entry->offset_index, &ctl->free_space_offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002974 ret = tree_insert_offset(&cluster->root, entry->offset,
2975 &entry->offset_index, 0);
Josef Bacik3f7de032011-11-10 08:29:20 -05002976 total_size += entry->bytes;
Josef Bacikb12d6862013-08-26 17:14:08 -04002977 ASSERT(!ret); /* -EEXIST; Logic error */
Josef Bacik4e69b592011-03-21 10:11:24 -04002978 } while (node && entry != last);
2979
2980 cluster->max_size = max_extent;
Josef Bacik3f7de032011-11-10 08:29:20 -05002981 trace_btrfs_setup_cluster(block_group, cluster, total_size, 0);
Josef Bacik4e69b592011-03-21 10:11:24 -04002982 return 0;
2983}
2984
2985/*
2986 * This specifically looks for bitmaps that may work in the cluster, we assume
2987 * that we have already failed to find extents that will work.
2988 */
Josef Bacik3de85bb2011-05-25 13:07:37 -04002989static noinline int
2990setup_cluster_bitmap(struct btrfs_block_group_cache *block_group,
2991 struct btrfs_free_cluster *cluster,
2992 struct list_head *bitmaps, u64 offset, u64 bytes,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03002993 u64 cont1_bytes, u64 min_bytes)
Josef Bacik4e69b592011-03-21 10:11:24 -04002994{
Li Zefan34d52cb2011-03-29 13:46:06 +08002995 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Chris Mason1b9b9222015-12-15 07:15:32 -08002996 struct btrfs_free_space *entry = NULL;
Josef Bacik4e69b592011-03-21 10:11:24 -04002997 int ret = -ENOSPC;
Li Zefan0f0fbf12011-11-20 07:33:38 -05002998 u64 bitmap_offset = offset_to_bitmap(ctl, offset);
Josef Bacik4e69b592011-03-21 10:11:24 -04002999
Li Zefan34d52cb2011-03-29 13:46:06 +08003000 if (ctl->total_bitmaps == 0)
Josef Bacik4e69b592011-03-21 10:11:24 -04003001 return -ENOSPC;
3002
Josef Bacik86d4a772011-05-25 13:03:16 -04003003 /*
Li Zefan0f0fbf12011-11-20 07:33:38 -05003004 * The bitmap that covers offset won't be in the list unless offset
3005 * is just its start offset.
3006 */
Chris Mason1b9b9222015-12-15 07:15:32 -08003007 if (!list_empty(bitmaps))
3008 entry = list_first_entry(bitmaps, struct btrfs_free_space, list);
3009
3010 if (!entry || entry->offset != bitmap_offset) {
Li Zefan0f0fbf12011-11-20 07:33:38 -05003011 entry = tree_search_offset(ctl, bitmap_offset, 1, 0);
3012 if (entry && list_empty(&entry->list))
3013 list_add(&entry->list, bitmaps);
3014 }
3015
Josef Bacik86d4a772011-05-25 13:03:16 -04003016 list_for_each_entry(entry, bitmaps, list) {
Josef Bacik357b9782012-01-26 15:01:11 -05003017 if (entry->bytes < bytes)
Josef Bacik86d4a772011-05-25 13:03:16 -04003018 continue;
3019 ret = btrfs_bitmap_cluster(block_group, entry, cluster, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003020 bytes, cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04003021 if (!ret)
3022 return 0;
3023 }
3024
3025 /*
Li Zefan52621cb2011-11-20 07:33:38 -05003026 * The bitmaps list has all the bitmaps that record free space
3027 * starting after offset, so no more search is required.
Josef Bacik86d4a772011-05-25 13:03:16 -04003028 */
Li Zefan52621cb2011-11-20 07:33:38 -05003029 return -ENOSPC;
Josef Bacik4e69b592011-03-21 10:11:24 -04003030}
3031
3032/*
Chris Masonfa9c0d792009-04-03 09:47:43 -04003033 * here we try to find a cluster of blocks in a block group. The goal
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003034 * is to find at least bytes+empty_size.
Chris Masonfa9c0d792009-04-03 09:47:43 -04003035 * We might not find them all in one contiguous area.
3036 *
3037 * returns zero and sets up cluster if things worked out, otherwise
3038 * it returns -enospc
3039 */
David Sterba2ceeae22019-03-20 13:53:49 +01003040int btrfs_find_space_cluster(struct btrfs_block_group_cache *block_group,
Chris Masonfa9c0d792009-04-03 09:47:43 -04003041 struct btrfs_free_cluster *cluster,
3042 u64 offset, u64 bytes, u64 empty_size)
3043{
David Sterba2ceeae22019-03-20 13:53:49 +01003044 struct btrfs_fs_info *fs_info = block_group->fs_info;
Li Zefan34d52cb2011-03-29 13:46:06 +08003045 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Josef Bacik86d4a772011-05-25 13:03:16 -04003046 struct btrfs_free_space *entry, *tmp;
Li Zefan52621cb2011-11-20 07:33:38 -05003047 LIST_HEAD(bitmaps);
Chris Masonfa9c0d792009-04-03 09:47:43 -04003048 u64 min_bytes;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003049 u64 cont1_bytes;
Chris Masonfa9c0d792009-04-03 09:47:43 -04003050 int ret;
3051
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003052 /*
3053 * Choose the minimum extent size we'll require for this
3054 * cluster. For SSD_SPREAD, don't allow any fragmentation.
3055 * For metadata, allow allocates with smaller extents. For
3056 * data, keep it dense.
3057 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003058 if (btrfs_test_opt(fs_info, SSD_SPREAD)) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003059 cont1_bytes = min_bytes = bytes + empty_size;
Chris Mason451d7582009-06-09 20:28:34 -04003060 } else if (block_group->flags & BTRFS_BLOCK_GROUP_METADATA) {
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003061 cont1_bytes = bytes;
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003062 min_bytes = fs_info->sectorsize;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003063 } else {
3064 cont1_bytes = max(bytes, (bytes + empty_size) >> 2);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003065 min_bytes = fs_info->sectorsize;
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003066 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04003067
Li Zefan34d52cb2011-03-29 13:46:06 +08003068 spin_lock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04003069
3070 /*
3071 * If we know we don't have enough space to make a cluster don't even
3072 * bother doing all the work to try and find one.
3073 */
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003074 if (ctl->free_space < bytes) {
Li Zefan34d52cb2011-03-29 13:46:06 +08003075 spin_unlock(&ctl->tree_lock);
Josef Bacik7d0d2e82011-03-18 15:13:42 -04003076 return -ENOSPC;
3077 }
3078
Chris Masonfa9c0d792009-04-03 09:47:43 -04003079 spin_lock(&cluster->lock);
3080
3081 /* someone already found a cluster, hooray */
3082 if (cluster->block_group) {
3083 ret = 0;
3084 goto out;
3085 }
Josef Bacik4e69b592011-03-21 10:11:24 -04003086
Josef Bacik3f7de032011-11-10 08:29:20 -05003087 trace_btrfs_find_cluster(block_group, offset, bytes, empty_size,
3088 min_bytes);
3089
Josef Bacik86d4a772011-05-25 13:03:16 -04003090 ret = setup_cluster_no_bitmap(block_group, cluster, &bitmaps, offset,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003091 bytes + empty_size,
3092 cont1_bytes, min_bytes);
Josef Bacik4e69b592011-03-21 10:11:24 -04003093 if (ret)
Josef Bacik86d4a772011-05-25 13:03:16 -04003094 ret = setup_cluster_bitmap(block_group, cluster, &bitmaps,
Alexandre Oliva1bb91902011-10-14 12:10:36 -03003095 offset, bytes + empty_size,
3096 cont1_bytes, min_bytes);
Josef Bacik86d4a772011-05-25 13:03:16 -04003097
3098 /* Clear our temporary list */
3099 list_for_each_entry_safe(entry, tmp, &bitmaps, list)
3100 list_del_init(&entry->list);
Josef Bacik4e69b592011-03-21 10:11:24 -04003101
3102 if (!ret) {
3103 atomic_inc(&block_group->count);
3104 list_add_tail(&cluster->block_group_list,
3105 &block_group->cluster_list);
3106 cluster->block_group = block_group;
Josef Bacik3f7de032011-11-10 08:29:20 -05003107 } else {
3108 trace_btrfs_failed_cluster_setup(block_group);
Chris Masonfa9c0d792009-04-03 09:47:43 -04003109 }
Chris Masonfa9c0d792009-04-03 09:47:43 -04003110out:
3111 spin_unlock(&cluster->lock);
Li Zefan34d52cb2011-03-29 13:46:06 +08003112 spin_unlock(&ctl->tree_lock);
Chris Masonfa9c0d792009-04-03 09:47:43 -04003113
3114 return ret;
3115}
3116
3117/*
3118 * simple code to zero out a cluster
3119 */
3120void btrfs_init_free_cluster(struct btrfs_free_cluster *cluster)
3121{
3122 spin_lock_init(&cluster->lock);
3123 spin_lock_init(&cluster->refill_lock);
Eric Paris6bef4d32010-02-23 19:43:04 +00003124 cluster->root = RB_ROOT;
Chris Masonfa9c0d792009-04-03 09:47:43 -04003125 cluster->max_size = 0;
Josef Bacikc759c4e2015-10-02 15:25:10 -04003126 cluster->fragmented = false;
Chris Masonfa9c0d792009-04-03 09:47:43 -04003127 INIT_LIST_HEAD(&cluster->block_group_list);
3128 cluster->block_group = NULL;
3129}
3130
Li Zefan7fe1e642011-12-29 14:47:27 +08003131static int do_trimming(struct btrfs_block_group_cache *block_group,
3132 u64 *total_trimmed, u64 start, u64 bytes,
Filipe Manana55507ce2014-12-01 17:04:09 +00003133 u64 reserved_start, u64 reserved_bytes,
3134 struct btrfs_trim_range *trim_entry)
Li Zefan7fe1e642011-12-29 14:47:27 +08003135{
3136 struct btrfs_space_info *space_info = block_group->space_info;
3137 struct btrfs_fs_info *fs_info = block_group->fs_info;
Filipe Manana55507ce2014-12-01 17:04:09 +00003138 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan7fe1e642011-12-29 14:47:27 +08003139 int ret;
3140 int update = 0;
3141 u64 trimmed = 0;
3142
3143 spin_lock(&space_info->lock);
3144 spin_lock(&block_group->lock);
3145 if (!block_group->ro) {
3146 block_group->reserved += reserved_bytes;
3147 space_info->bytes_reserved += reserved_bytes;
3148 update = 1;
3149 }
3150 spin_unlock(&block_group->lock);
3151 spin_unlock(&space_info->lock);
3152
Jeff Mahoney2ff7e612016-06-22 18:54:24 -04003153 ret = btrfs_discard_extent(fs_info, start, bytes, &trimmed);
Li Zefan7fe1e642011-12-29 14:47:27 +08003154 if (!ret)
3155 *total_trimmed += trimmed;
3156
Filipe Manana55507ce2014-12-01 17:04:09 +00003157 mutex_lock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003158 btrfs_add_free_space(block_group, reserved_start, reserved_bytes);
Filipe Manana55507ce2014-12-01 17:04:09 +00003159 list_del(&trim_entry->list);
3160 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003161
3162 if (update) {
3163 spin_lock(&space_info->lock);
3164 spin_lock(&block_group->lock);
3165 if (block_group->ro)
3166 space_info->bytes_readonly += reserved_bytes;
3167 block_group->reserved -= reserved_bytes;
3168 space_info->bytes_reserved -= reserved_bytes;
3169 spin_unlock(&space_info->lock);
3170 spin_unlock(&block_group->lock);
3171 }
3172
3173 return ret;
3174}
3175
3176static int trim_no_bitmap(struct btrfs_block_group_cache *block_group,
3177 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
Li Dongyangf7039b12011-03-24 10:24:28 +00003178{
Li Zefan34d52cb2011-03-29 13:46:06 +08003179 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
Li Zefan7fe1e642011-12-29 14:47:27 +08003180 struct btrfs_free_space *entry;
3181 struct rb_node *node;
Li Dongyangf7039b12011-03-24 10:24:28 +00003182 int ret = 0;
Li Zefan7fe1e642011-12-29 14:47:27 +08003183 u64 extent_start;
3184 u64 extent_bytes;
3185 u64 bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00003186
3187 while (start < end) {
Filipe Manana55507ce2014-12-01 17:04:09 +00003188 struct btrfs_trim_range trim_entry;
3189
3190 mutex_lock(&ctl->cache_writeout_mutex);
Li Zefan34d52cb2011-03-29 13:46:06 +08003191 spin_lock(&ctl->tree_lock);
Li Dongyangf7039b12011-03-24 10:24:28 +00003192
Li Zefan34d52cb2011-03-29 13:46:06 +08003193 if (ctl->free_space < minlen) {
3194 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003195 mutex_unlock(&ctl->cache_writeout_mutex);
Li Dongyangf7039b12011-03-24 10:24:28 +00003196 break;
3197 }
3198
Li Zefan34d52cb2011-03-29 13:46:06 +08003199 entry = tree_search_offset(ctl, start, 0, 1);
Li Zefan7fe1e642011-12-29 14:47:27 +08003200 if (!entry) {
Li Zefan34d52cb2011-03-29 13:46:06 +08003201 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003202 mutex_unlock(&ctl->cache_writeout_mutex);
Li Dongyangf7039b12011-03-24 10:24:28 +00003203 break;
3204 }
3205
Li Zefan7fe1e642011-12-29 14:47:27 +08003206 /* skip bitmaps */
3207 while (entry->bitmap) {
3208 node = rb_next(&entry->offset_index);
3209 if (!node) {
Li Zefan34d52cb2011-03-29 13:46:06 +08003210 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003211 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003212 goto out;
Li Dongyangf7039b12011-03-24 10:24:28 +00003213 }
Li Zefan7fe1e642011-12-29 14:47:27 +08003214 entry = rb_entry(node, struct btrfs_free_space,
3215 offset_index);
Li Dongyangf7039b12011-03-24 10:24:28 +00003216 }
3217
Li Zefan7fe1e642011-12-29 14:47:27 +08003218 if (entry->offset >= end) {
3219 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003220 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003221 break;
3222 }
3223
3224 extent_start = entry->offset;
3225 extent_bytes = entry->bytes;
3226 start = max(start, extent_start);
3227 bytes = min(extent_start + extent_bytes, end) - start;
3228 if (bytes < minlen) {
3229 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003230 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003231 goto next;
3232 }
3233
3234 unlink_free_space(ctl, entry);
3235 kmem_cache_free(btrfs_free_space_cachep, entry);
3236
Li Zefan34d52cb2011-03-29 13:46:06 +08003237 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003238 trim_entry.start = extent_start;
3239 trim_entry.bytes = extent_bytes;
3240 list_add_tail(&trim_entry.list, &ctl->trimming_ranges);
3241 mutex_unlock(&ctl->cache_writeout_mutex);
Li Dongyangf7039b12011-03-24 10:24:28 +00003242
Li Zefan7fe1e642011-12-29 14:47:27 +08003243 ret = do_trimming(block_group, total_trimmed, start, bytes,
Filipe Manana55507ce2014-12-01 17:04:09 +00003244 extent_start, extent_bytes, &trim_entry);
Li Zefan7fe1e642011-12-29 14:47:27 +08003245 if (ret)
3246 break;
3247next:
Li Dongyangf7039b12011-03-24 10:24:28 +00003248 start += bytes;
Li Dongyangf7039b12011-03-24 10:24:28 +00003249
3250 if (fatal_signal_pending(current)) {
3251 ret = -ERESTARTSYS;
3252 break;
3253 }
3254
3255 cond_resched();
3256 }
Li Zefan7fe1e642011-12-29 14:47:27 +08003257out:
3258 return ret;
3259}
3260
3261static int trim_bitmaps(struct btrfs_block_group_cache *block_group,
3262 u64 *total_trimmed, u64 start, u64 end, u64 minlen)
3263{
3264 struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl;
3265 struct btrfs_free_space *entry;
3266 int ret = 0;
3267 int ret2;
3268 u64 bytes;
3269 u64 offset = offset_to_bitmap(ctl, start);
3270
3271 while (offset < end) {
3272 bool next_bitmap = false;
Filipe Manana55507ce2014-12-01 17:04:09 +00003273 struct btrfs_trim_range trim_entry;
Li Zefan7fe1e642011-12-29 14:47:27 +08003274
Filipe Manana55507ce2014-12-01 17:04:09 +00003275 mutex_lock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003276 spin_lock(&ctl->tree_lock);
3277
3278 if (ctl->free_space < minlen) {
3279 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003280 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003281 break;
3282 }
3283
3284 entry = tree_search_offset(ctl, offset, 1, 0);
3285 if (!entry) {
3286 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003287 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003288 next_bitmap = true;
3289 goto next;
3290 }
3291
3292 bytes = minlen;
Josef Bacik0584f712015-10-02 16:12:23 -04003293 ret2 = search_bitmap(ctl, entry, &start, &bytes, false);
Li Zefan7fe1e642011-12-29 14:47:27 +08003294 if (ret2 || start >= end) {
3295 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003296 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003297 next_bitmap = true;
3298 goto next;
3299 }
3300
3301 bytes = min(bytes, end - start);
3302 if (bytes < minlen) {
3303 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003304 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003305 goto next;
3306 }
3307
3308 bitmap_clear_bits(ctl, entry, start, bytes);
3309 if (entry->bytes == 0)
3310 free_bitmap(ctl, entry);
3311
3312 spin_unlock(&ctl->tree_lock);
Filipe Manana55507ce2014-12-01 17:04:09 +00003313 trim_entry.start = start;
3314 trim_entry.bytes = bytes;
3315 list_add_tail(&trim_entry.list, &ctl->trimming_ranges);
3316 mutex_unlock(&ctl->cache_writeout_mutex);
Li Zefan7fe1e642011-12-29 14:47:27 +08003317
3318 ret = do_trimming(block_group, total_trimmed, start, bytes,
Filipe Manana55507ce2014-12-01 17:04:09 +00003319 start, bytes, &trim_entry);
Li Zefan7fe1e642011-12-29 14:47:27 +08003320 if (ret)
3321 break;
3322next:
3323 if (next_bitmap) {
3324 offset += BITS_PER_BITMAP * ctl->unit;
3325 } else {
3326 start += bytes;
3327 if (start >= offset + BITS_PER_BITMAP * ctl->unit)
3328 offset += BITS_PER_BITMAP * ctl->unit;
3329 }
3330
3331 if (fatal_signal_pending(current)) {
3332 ret = -ERESTARTSYS;
3333 break;
3334 }
3335
3336 cond_resched();
3337 }
3338
3339 return ret;
3340}
3341
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003342void btrfs_get_block_group_trimming(struct btrfs_block_group_cache *cache)
Li Zefan7fe1e642011-12-29 14:47:27 +08003343{
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003344 atomic_inc(&cache->trimming);
3345}
Li Zefan7fe1e642011-12-29 14:47:27 +08003346
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003347void btrfs_put_block_group_trimming(struct btrfs_block_group_cache *block_group)
3348{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003349 struct btrfs_fs_info *fs_info = block_group->fs_info;
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003350 struct extent_map_tree *em_tree;
3351 struct extent_map *em;
3352 bool cleanup;
Li Zefan7fe1e642011-12-29 14:47:27 +08003353
Filipe Manana04216822014-11-27 21:14:15 +00003354 spin_lock(&block_group->lock);
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003355 cleanup = (atomic_dec_and_test(&block_group->trimming) &&
3356 block_group->removed);
Filipe Manana04216822014-11-27 21:14:15 +00003357 spin_unlock(&block_group->lock);
3358
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003359 if (cleanup) {
David Sterba34441362016-10-04 19:34:27 +02003360 mutex_lock(&fs_info->chunk_mutex);
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003361 em_tree = &fs_info->mapping_tree.map_tree;
Filipe Manana04216822014-11-27 21:14:15 +00003362 write_lock(&em_tree->lock);
3363 em = lookup_extent_mapping(em_tree, block_group->key.objectid,
3364 1);
3365 BUG_ON(!em); /* logic error, can't happen */
3366 remove_extent_mapping(em_tree, em);
3367 write_unlock(&em_tree->lock);
David Sterba34441362016-10-04 19:34:27 +02003368 mutex_unlock(&fs_info->chunk_mutex);
Filipe Manana04216822014-11-27 21:14:15 +00003369
3370 /* once for us and once for the tree */
3371 free_extent_map(em);
3372 free_extent_map(em);
Filipe Manana946ddbe2014-12-01 17:04:40 +00003373
3374 /*
3375 * We've left one free space entry and other tasks trimming
3376 * this block group have left 1 entry each one. Free them.
3377 */
3378 __btrfs_remove_free_space_cache(block_group->free_space_ctl);
Filipe Manana04216822014-11-27 21:14:15 +00003379 }
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003380}
Li Dongyangf7039b12011-03-24 10:24:28 +00003381
Jeff Mahoneye33e17e2015-06-15 09:41:19 -04003382int btrfs_trim_block_group(struct btrfs_block_group_cache *block_group,
3383 u64 *trimmed, u64 start, u64 end, u64 minlen)
3384{
3385 int ret;
3386
3387 *trimmed = 0;
3388
3389 spin_lock(&block_group->lock);
3390 if (block_group->removed) {
3391 spin_unlock(&block_group->lock);
3392 return 0;
3393 }
3394 btrfs_get_block_group_trimming(block_group);
3395 spin_unlock(&block_group->lock);
3396
3397 ret = trim_no_bitmap(block_group, trimmed, start, end, minlen);
3398 if (ret)
3399 goto out;
3400
3401 ret = trim_bitmaps(block_group, trimmed, start, end, minlen);
3402out:
3403 btrfs_put_block_group_trimming(block_group);
Li Dongyangf7039b12011-03-24 10:24:28 +00003404 return ret;
3405}
Li Zefan581bb052011-04-20 10:06:11 +08003406
3407/*
3408 * Find the left-most item in the cache tree, and then return the
3409 * smallest inode number in the item.
3410 *
3411 * Note: the returned inode number may not be the smallest one in
3412 * the tree, if the left-most item is a bitmap.
3413 */
3414u64 btrfs_find_ino_for_alloc(struct btrfs_root *fs_root)
3415{
3416 struct btrfs_free_space_ctl *ctl = fs_root->free_ino_ctl;
3417 struct btrfs_free_space *entry = NULL;
3418 u64 ino = 0;
3419
3420 spin_lock(&ctl->tree_lock);
3421
3422 if (RB_EMPTY_ROOT(&ctl->free_space_offset))
3423 goto out;
3424
3425 entry = rb_entry(rb_first(&ctl->free_space_offset),
3426 struct btrfs_free_space, offset_index);
3427
3428 if (!entry->bitmap) {
3429 ino = entry->offset;
3430
3431 unlink_free_space(ctl, entry);
3432 entry->offset++;
3433 entry->bytes--;
3434 if (!entry->bytes)
3435 kmem_cache_free(btrfs_free_space_cachep, entry);
3436 else
3437 link_free_space(ctl, entry);
3438 } else {
3439 u64 offset = 0;
3440 u64 count = 1;
3441 int ret;
3442
Josef Bacik0584f712015-10-02 16:12:23 -04003443 ret = search_bitmap(ctl, entry, &offset, &count, true);
Jeff Mahoney79787ea2012-03-12 16:03:00 +01003444 /* Logic error; Should be empty if it can't find anything */
Josef Bacikb12d6862013-08-26 17:14:08 -04003445 ASSERT(!ret);
Li Zefan581bb052011-04-20 10:06:11 +08003446
3447 ino = offset;
3448 bitmap_clear_bits(ctl, entry, offset, 1);
3449 if (entry->bytes == 0)
3450 free_bitmap(ctl, entry);
3451 }
3452out:
3453 spin_unlock(&ctl->tree_lock);
3454
3455 return ino;
3456}
Li Zefan82d59022011-04-20 10:33:24 +08003457
3458struct inode *lookup_free_ino_inode(struct btrfs_root *root,
3459 struct btrfs_path *path)
3460{
3461 struct inode *inode = NULL;
3462
David Sterba57cdc8d2014-02-05 02:37:48 +01003463 spin_lock(&root->ino_cache_lock);
3464 if (root->ino_cache_inode)
3465 inode = igrab(root->ino_cache_inode);
3466 spin_unlock(&root->ino_cache_lock);
Li Zefan82d59022011-04-20 10:33:24 +08003467 if (inode)
3468 return inode;
3469
3470 inode = __lookup_free_space_inode(root, path, 0);
3471 if (IS_ERR(inode))
3472 return inode;
3473
David Sterba57cdc8d2014-02-05 02:37:48 +01003474 spin_lock(&root->ino_cache_lock);
David Sterba7841cb22011-05-31 18:07:27 +02003475 if (!btrfs_fs_closing(root->fs_info))
David Sterba57cdc8d2014-02-05 02:37:48 +01003476 root->ino_cache_inode = igrab(inode);
3477 spin_unlock(&root->ino_cache_lock);
Li Zefan82d59022011-04-20 10:33:24 +08003478
3479 return inode;
3480}
3481
3482int create_free_ino_inode(struct btrfs_root *root,
3483 struct btrfs_trans_handle *trans,
3484 struct btrfs_path *path)
3485{
3486 return __create_free_space_inode(root, trans, path,
3487 BTRFS_FREE_INO_OBJECTID, 0);
3488}
3489
3490int load_free_ino_cache(struct btrfs_fs_info *fs_info, struct btrfs_root *root)
3491{
3492 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
3493 struct btrfs_path *path;
3494 struct inode *inode;
3495 int ret = 0;
3496 u64 root_gen = btrfs_root_generation(&root->root_item);
3497
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003498 if (!btrfs_test_opt(fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -04003499 return 0;
3500
Li Zefan82d59022011-04-20 10:33:24 +08003501 /*
3502 * If we're unmounting then just return, since this does a search on the
3503 * normal root and not the commit root and we could deadlock.
3504 */
David Sterba7841cb22011-05-31 18:07:27 +02003505 if (btrfs_fs_closing(fs_info))
Li Zefan82d59022011-04-20 10:33:24 +08003506 return 0;
3507
3508 path = btrfs_alloc_path();
3509 if (!path)
3510 return 0;
3511
3512 inode = lookup_free_ino_inode(root, path);
3513 if (IS_ERR(inode))
3514 goto out;
3515
3516 if (root_gen != BTRFS_I(inode)->generation)
3517 goto out_put;
3518
3519 ret = __load_free_space_cache(root, inode, ctl, path, 0);
3520
3521 if (ret < 0)
Simon Kirbyc2cf52e2013-03-19 22:41:23 +00003522 btrfs_err(fs_info,
3523 "failed to load free ino cache for root %llu",
3524 root->root_key.objectid);
Li Zefan82d59022011-04-20 10:33:24 +08003525out_put:
3526 iput(inode);
3527out:
3528 btrfs_free_path(path);
3529 return ret;
3530}
3531
3532int btrfs_write_out_ino_cache(struct btrfs_root *root,
3533 struct btrfs_trans_handle *trans,
Filipe David Borba Manana53645a92013-09-20 14:43:28 +01003534 struct btrfs_path *path,
3535 struct inode *inode)
Li Zefan82d59022011-04-20 10:33:24 +08003536{
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003537 struct btrfs_fs_info *fs_info = root->fs_info;
Li Zefan82d59022011-04-20 10:33:24 +08003538 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
Li Zefan82d59022011-04-20 10:33:24 +08003539 int ret;
Chris Masonc9dc4c62015-04-04 17:14:42 -07003540 struct btrfs_io_ctl io_ctl;
Filipe Mananae43699d2015-05-05 15:21:27 +01003541 bool release_metadata = true;
Li Zefan82d59022011-04-20 10:33:24 +08003542
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003543 if (!btrfs_test_opt(fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -04003544 return 0;
3545
Chris Mason85db36c2015-04-23 08:02:49 -07003546 memset(&io_ctl, 0, sizeof(io_ctl));
David Sterba0e8d9312017-02-10 20:26:24 +01003547 ret = __btrfs_write_out_cache(root, inode, ctl, NULL, &io_ctl, trans);
Filipe Mananae43699d2015-05-05 15:21:27 +01003548 if (!ret) {
3549 /*
3550 * At this point writepages() didn't error out, so our metadata
3551 * reservation is released when the writeback finishes, at
3552 * inode.c:btrfs_finish_ordered_io(), regardless of it finishing
3553 * with or without an error.
3554 */
3555 release_metadata = false;
Jeff Mahoneyafdb5712016-09-09 12:09:35 -04003556 ret = btrfs_wait_cache_io_root(root, trans, &io_ctl, path);
Filipe Mananae43699d2015-05-05 15:21:27 +01003557 }
Chris Mason85db36c2015-04-23 08:02:49 -07003558
Josef Bacikc09544e2011-08-30 10:19:10 -04003559 if (ret) {
Filipe Mananae43699d2015-05-05 15:21:27 +01003560 if (release_metadata)
Nikolay Borisov691fa052017-02-20 13:50:42 +02003561 btrfs_delalloc_release_metadata(BTRFS_I(inode),
Qu Wenruo43b18592017-12-12 15:34:32 +08003562 inode->i_size, true);
Josef Bacikc09544e2011-08-30 10:19:10 -04003563#ifdef DEBUG
Jeff Mahoney0b246af2016-06-22 18:54:23 -04003564 btrfs_err(fs_info,
3565 "failed to write free ino cache for root %llu",
3566 root->root_key.objectid);
Josef Bacikc09544e2011-08-30 10:19:10 -04003567#endif
3568 }
Li Zefan82d59022011-04-20 10:33:24 +08003569
Li Zefan82d59022011-04-20 10:33:24 +08003570 return ret;
3571}
Josef Bacik74255aa2013-03-15 09:47:08 -04003572
3573#ifdef CONFIG_BTRFS_FS_RUN_SANITY_TESTS
Josef Bacikdc11dd52013-08-14 15:05:12 -04003574/*
3575 * Use this if you need to make a bitmap or extent entry specifically, it
3576 * doesn't do any of the merging that add_free_space does, this acts a lot like
3577 * how the free space cache loading stuff works, so you can get really weird
3578 * configurations.
3579 */
3580int test_add_free_space_entry(struct btrfs_block_group_cache *cache,
3581 u64 offset, u64 bytes, bool bitmap)
Josef Bacik74255aa2013-03-15 09:47:08 -04003582{
Josef Bacikdc11dd52013-08-14 15:05:12 -04003583 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3584 struct btrfs_free_space *info = NULL, *bitmap_info;
3585 void *map = NULL;
3586 u64 bytes_added;
3587 int ret;
Josef Bacik74255aa2013-03-15 09:47:08 -04003588
Josef Bacikdc11dd52013-08-14 15:05:12 -04003589again:
3590 if (!info) {
3591 info = kmem_cache_zalloc(btrfs_free_space_cachep, GFP_NOFS);
3592 if (!info)
3593 return -ENOMEM;
Josef Bacik74255aa2013-03-15 09:47:08 -04003594 }
3595
Josef Bacikdc11dd52013-08-14 15:05:12 -04003596 if (!bitmap) {
3597 spin_lock(&ctl->tree_lock);
3598 info->offset = offset;
3599 info->bytes = bytes;
Josef Bacikcef40482015-10-02 16:09:42 -04003600 info->max_extent_size = 0;
Josef Bacikdc11dd52013-08-14 15:05:12 -04003601 ret = link_free_space(ctl, info);
3602 spin_unlock(&ctl->tree_lock);
3603 if (ret)
3604 kmem_cache_free(btrfs_free_space_cachep, info);
3605 return ret;
3606 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003607
Josef Bacikdc11dd52013-08-14 15:05:12 -04003608 if (!map) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003609 map = kzalloc(PAGE_SIZE, GFP_NOFS);
Josef Bacikdc11dd52013-08-14 15:05:12 -04003610 if (!map) {
3611 kmem_cache_free(btrfs_free_space_cachep, info);
3612 return -ENOMEM;
3613 }
3614 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003615
Josef Bacikdc11dd52013-08-14 15:05:12 -04003616 spin_lock(&ctl->tree_lock);
3617 bitmap_info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3618 1, 0);
3619 if (!bitmap_info) {
3620 info->bitmap = map;
3621 map = NULL;
3622 add_new_bitmap(ctl, info, offset);
3623 bitmap_info = info;
Filipe Manana20005522014-08-29 13:35:13 +01003624 info = NULL;
Josef Bacikdc11dd52013-08-14 15:05:12 -04003625 }
Josef Bacik74255aa2013-03-15 09:47:08 -04003626
Josef Bacikdc11dd52013-08-14 15:05:12 -04003627 bytes_added = add_bytes_to_bitmap(ctl, bitmap_info, offset, bytes);
Josef Bacikcef40482015-10-02 16:09:42 -04003628
Josef Bacikdc11dd52013-08-14 15:05:12 -04003629 bytes -= bytes_added;
3630 offset += bytes_added;
3631 spin_unlock(&ctl->tree_lock);
3632
3633 if (bytes)
3634 goto again;
3635
Filipe Manana20005522014-08-29 13:35:13 +01003636 if (info)
3637 kmem_cache_free(btrfs_free_space_cachep, info);
zhong jiangf8b00e02018-08-13 14:06:08 +08003638 kfree(map);
Josef Bacikdc11dd52013-08-14 15:05:12 -04003639 return 0;
Josef Bacik74255aa2013-03-15 09:47:08 -04003640}
3641
3642/*
3643 * Checks to see if the given range is in the free space cache. This is really
3644 * just used to check the absence of space, so if there is free space in the
3645 * range at all we will return 1.
3646 */
Josef Bacikdc11dd52013-08-14 15:05:12 -04003647int test_check_exists(struct btrfs_block_group_cache *cache,
3648 u64 offset, u64 bytes)
Josef Bacik74255aa2013-03-15 09:47:08 -04003649{
3650 struct btrfs_free_space_ctl *ctl = cache->free_space_ctl;
3651 struct btrfs_free_space *info;
3652 int ret = 0;
3653
3654 spin_lock(&ctl->tree_lock);
3655 info = tree_search_offset(ctl, offset, 0, 0);
3656 if (!info) {
3657 info = tree_search_offset(ctl, offset_to_bitmap(ctl, offset),
3658 1, 0);
3659 if (!info)
3660 goto out;
3661 }
3662
3663have_info:
3664 if (info->bitmap) {
3665 u64 bit_off, bit_bytes;
3666 struct rb_node *n;
3667 struct btrfs_free_space *tmp;
3668
3669 bit_off = offset;
3670 bit_bytes = ctl->unit;
Josef Bacik0584f712015-10-02 16:12:23 -04003671 ret = search_bitmap(ctl, info, &bit_off, &bit_bytes, false);
Josef Bacik74255aa2013-03-15 09:47:08 -04003672 if (!ret) {
3673 if (bit_off == offset) {
3674 ret = 1;
3675 goto out;
3676 } else if (bit_off > offset &&
3677 offset + bytes > bit_off) {
3678 ret = 1;
3679 goto out;
3680 }
3681 }
3682
3683 n = rb_prev(&info->offset_index);
3684 while (n) {
3685 tmp = rb_entry(n, struct btrfs_free_space,
3686 offset_index);
3687 if (tmp->offset + tmp->bytes < offset)
3688 break;
3689 if (offset + bytes < tmp->offset) {
Feifei Xu5473e0c42016-06-01 19:18:23 +08003690 n = rb_prev(&tmp->offset_index);
Josef Bacik74255aa2013-03-15 09:47:08 -04003691 continue;
3692 }
3693 info = tmp;
3694 goto have_info;
3695 }
3696
3697 n = rb_next(&info->offset_index);
3698 while (n) {
3699 tmp = rb_entry(n, struct btrfs_free_space,
3700 offset_index);
3701 if (offset + bytes < tmp->offset)
3702 break;
3703 if (tmp->offset + tmp->bytes < offset) {
Feifei Xu5473e0c42016-06-01 19:18:23 +08003704 n = rb_next(&tmp->offset_index);
Josef Bacik74255aa2013-03-15 09:47:08 -04003705 continue;
3706 }
3707 info = tmp;
3708 goto have_info;
3709 }
3710
Filipe Manana20005522014-08-29 13:35:13 +01003711 ret = 0;
Josef Bacik74255aa2013-03-15 09:47:08 -04003712 goto out;
3713 }
3714
3715 if (info->offset == offset) {
3716 ret = 1;
3717 goto out;
3718 }
3719
3720 if (offset > info->offset && offset < info->offset + info->bytes)
3721 ret = 1;
3722out:
3723 spin_unlock(&ctl->tree_lock);
3724 return ret;
3725}
Josef Bacikdc11dd52013-08-14 15:05:12 -04003726#endif /* CONFIG_BTRFS_FS_RUN_SANITY_TESTS */