blob: d5c9c69d8263b7520df19c69319d2b250367f207 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason6cbd5572007-06-12 09:07:21 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04004 */
5
Li Zefan581bb052011-04-20 10:06:11 +08006#include <linux/kthread.h>
7#include <linux/pagemap.h>
8
Chris Mason9f5fae22007-03-20 14:38:32 -04009#include "ctree.h"
10#include "disk-io.h"
Li Zefan581bb052011-04-20 10:06:11 +080011#include "free-space-cache.h"
12#include "inode-map.h"
Chris Mason9f5fae22007-03-20 14:38:32 -040013#include "transaction.h"
Josef Bacik86736342019-06-19 15:12:00 -040014#include "delalloc-space.h"
Chris Mason9f5fae22007-03-20 14:38:32 -040015
Filipe Mananaa68ebe02019-07-04 16:24:32 +010016static void fail_caching_thread(struct btrfs_root *root)
17{
18 struct btrfs_fs_info *fs_info = root->fs_info;
19
20 btrfs_warn(fs_info, "failed to start inode caching task");
21 btrfs_clear_pending_and_info(fs_info, INODE_MAP_CACHE,
22 "disabling inode map caching");
23 spin_lock(&root->ino_cache_lock);
24 root->ino_cache_state = BTRFS_CACHE_ERROR;
25 spin_unlock(&root->ino_cache_lock);
26 wake_up(&root->ino_cache_wait);
27}
28
Li Zefan581bb052011-04-20 10:06:11 +080029static int caching_kthread(void *data)
30{
31 struct btrfs_root *root = data;
32 struct btrfs_fs_info *fs_info = root->fs_info;
33 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
34 struct btrfs_key key;
35 struct btrfs_path *path;
36 struct extent_buffer *leaf;
37 u64 last = (u64)-1;
38 int slot;
39 int ret;
40
Jeff Mahoney0b246af2016-06-22 18:54:23 -040041 if (!btrfs_test_opt(fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -040042 return 0;
43
Li Zefan581bb052011-04-20 10:06:11 +080044 path = btrfs_alloc_path();
Filipe Manana9d123a32019-07-04 16:24:44 +010045 if (!path) {
46 fail_caching_thread(root);
Li Zefan581bb052011-04-20 10:06:11 +080047 return -ENOMEM;
Filipe Manana9d123a32019-07-04 16:24:44 +010048 }
Li Zefan581bb052011-04-20 10:06:11 +080049
50 /* Since the commit root is read-only, we can safely skip locking. */
51 path->skip_locking = 1;
52 path->search_commit_root = 1;
David Sterbae4058b52015-11-27 16:31:35 +010053 path->reada = READA_FORWARD;
Li Zefan581bb052011-04-20 10:06:11 +080054
55 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
56 key.offset = 0;
57 key.type = BTRFS_INODE_ITEM_KEY;
58again:
59 /* need to make sure the commit_root doesn't disappear */
Josef Bacik9e351cc2014-03-13 15:42:13 -040060 down_read(&fs_info->commit_root_sem);
Li Zefan581bb052011-04-20 10:06:11 +080061
62 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
63 if (ret < 0)
64 goto out;
65
66 while (1) {
David Sterba7841cb22011-05-31 18:07:27 +020067 if (btrfs_fs_closing(fs_info))
Li Zefan581bb052011-04-20 10:06:11 +080068 goto out;
69
70 leaf = path->nodes[0];
71 slot = path->slots[0];
Li Zefana47d6b72011-05-26 06:38:30 +000072 if (slot >= btrfs_header_nritems(leaf)) {
Li Zefan581bb052011-04-20 10:06:11 +080073 ret = btrfs_next_leaf(root, path);
74 if (ret < 0)
75 goto out;
76 else if (ret > 0)
77 break;
78
79 if (need_resched() ||
80 btrfs_transaction_in_commit(fs_info)) {
81 leaf = path->nodes[0];
82
Dulshani Gunawardhanafae7f212013-10-31 10:30:08 +053083 if (WARN_ON(btrfs_header_nritems(leaf) == 0))
Li Zefan581bb052011-04-20 10:06:11 +080084 break;
Li Zefan581bb052011-04-20 10:06:11 +080085
86 /*
87 * Save the key so we can advances forward
88 * in the next search.
89 */
90 btrfs_item_key_to_cpu(leaf, &key, 0);
Chris Mason945d8962011-05-22 12:33:42 -040091 btrfs_release_path(path);
David Sterba57cdc8d2014-02-05 02:37:48 +010092 root->ino_cache_progress = last;
Josef Bacik9e351cc2014-03-13 15:42:13 -040093 up_read(&fs_info->commit_root_sem);
Li Zefan581bb052011-04-20 10:06:11 +080094 schedule_timeout(1);
95 goto again;
96 } else
97 continue;
98 }
99
100 btrfs_item_key_to_cpu(leaf, &key, slot);
101
102 if (key.type != BTRFS_INODE_ITEM_KEY)
103 goto next;
104
Li Zefana47d6b72011-05-26 06:38:30 +0000105 if (key.objectid >= root->highest_objectid)
Li Zefan581bb052011-04-20 10:06:11 +0800106 break;
107
108 if (last != (u64)-1 && last + 1 != key.objectid) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400109 __btrfs_add_free_space(fs_info, ctl, last + 1,
Dennis Zhoua7ccb252019-12-13 16:22:12 -0800110 key.objectid - last - 1, 0);
David Sterba57cdc8d2014-02-05 02:37:48 +0100111 wake_up(&root->ino_cache_wait);
Li Zefan581bb052011-04-20 10:06:11 +0800112 }
113
114 last = key.objectid;
115next:
116 path->slots[0]++;
117 }
118
Li Zefana47d6b72011-05-26 06:38:30 +0000119 if (last < root->highest_objectid - 1) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400120 __btrfs_add_free_space(fs_info, ctl, last + 1,
Dennis Zhoua7ccb252019-12-13 16:22:12 -0800121 root->highest_objectid - last - 1, 0);
Li Zefan581bb052011-04-20 10:06:11 +0800122 }
123
David Sterba57cdc8d2014-02-05 02:37:48 +0100124 spin_lock(&root->ino_cache_lock);
125 root->ino_cache_state = BTRFS_CACHE_FINISHED;
126 spin_unlock(&root->ino_cache_lock);
Li Zefan581bb052011-04-20 10:06:11 +0800127
David Sterba57cdc8d2014-02-05 02:37:48 +0100128 root->ino_cache_progress = (u64)-1;
Li Zefan581bb052011-04-20 10:06:11 +0800129 btrfs_unpin_free_ino(root);
130out:
David Sterba57cdc8d2014-02-05 02:37:48 +0100131 wake_up(&root->ino_cache_wait);
Josef Bacik9e351cc2014-03-13 15:42:13 -0400132 up_read(&fs_info->commit_root_sem);
Li Zefan581bb052011-04-20 10:06:11 +0800133
134 btrfs_free_path(path);
135
136 return ret;
137}
138
139static void start_caching(struct btrfs_root *root)
140{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400141 struct btrfs_fs_info *fs_info = root->fs_info;
Li Zefana47d6b72011-05-26 06:38:30 +0000142 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
Li Zefan581bb052011-04-20 10:06:11 +0800143 struct task_struct *tsk;
Li Zefan82d59022011-04-20 10:33:24 +0800144 int ret;
Li Zefana47d6b72011-05-26 06:38:30 +0000145 u64 objectid;
Li Zefan581bb052011-04-20 10:06:11 +0800146
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400147 if (!btrfs_test_opt(fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -0400148 return;
149
David Sterba57cdc8d2014-02-05 02:37:48 +0100150 spin_lock(&root->ino_cache_lock);
151 if (root->ino_cache_state != BTRFS_CACHE_NO) {
152 spin_unlock(&root->ino_cache_lock);
Li Zefan581bb052011-04-20 10:06:11 +0800153 return;
154 }
155
David Sterba57cdc8d2014-02-05 02:37:48 +0100156 root->ino_cache_state = BTRFS_CACHE_STARTED;
157 spin_unlock(&root->ino_cache_lock);
Li Zefan581bb052011-04-20 10:06:11 +0800158
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400159 ret = load_free_ino_cache(fs_info, root);
Li Zefan82d59022011-04-20 10:33:24 +0800160 if (ret == 1) {
David Sterba57cdc8d2014-02-05 02:37:48 +0100161 spin_lock(&root->ino_cache_lock);
162 root->ino_cache_state = BTRFS_CACHE_FINISHED;
163 spin_unlock(&root->ino_cache_lock);
Filipe Manana7764d562019-07-04 16:24:09 +0100164 wake_up(&root->ino_cache_wait);
Li Zefan82d59022011-04-20 10:33:24 +0800165 return;
166 }
167
Li Zefana47d6b72011-05-26 06:38:30 +0000168 /*
169 * It can be quite time-consuming to fill the cache by searching
170 * through the extent tree, and this can keep ino allocation path
171 * waiting. Therefore at start we quickly find out the highest
172 * inode number and we know we can use inode numbers which fall in
173 * [highest_ino + 1, BTRFS_LAST_FREE_OBJECTID].
174 */
175 ret = btrfs_find_free_objectid(root, &objectid);
176 if (!ret && objectid <= BTRFS_LAST_FREE_OBJECTID) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400177 __btrfs_add_free_space(fs_info, ctl, objectid,
Dennis Zhoua7ccb252019-12-13 16:22:12 -0800178 BTRFS_LAST_FREE_OBJECTID - objectid + 1,
179 0);
Filipe Manana32e53442019-07-04 16:25:00 +0100180 wake_up(&root->ino_cache_wait);
Li Zefana47d6b72011-05-26 06:38:30 +0000181 }
182
David Sterba67a77eb2014-05-16 15:15:45 +0200183 tsk = kthread_run(caching_kthread, root, "btrfs-ino-cache-%llu",
Li Zefan581bb052011-04-20 10:06:11 +0800184 root->root_key.objectid);
Filipe Mananaa68ebe02019-07-04 16:24:32 +0100185 if (IS_ERR(tsk))
186 fail_caching_thread(root);
Li Zefan581bb052011-04-20 10:06:11 +0800187}
188
189int btrfs_find_free_ino(struct btrfs_root *root, u64 *objectid)
190{
Jeff Mahoney3cdde222016-06-09 21:38:35 -0400191 if (!btrfs_test_opt(root->fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -0400192 return btrfs_find_free_objectid(root, objectid);
193
Li Zefan581bb052011-04-20 10:06:11 +0800194again:
195 *objectid = btrfs_find_ino_for_alloc(root);
196
197 if (*objectid != 0)
198 return 0;
199
200 start_caching(root);
201
David Sterba57cdc8d2014-02-05 02:37:48 +0100202 wait_event(root->ino_cache_wait,
203 root->ino_cache_state == BTRFS_CACHE_FINISHED ||
Filipe Mananaa68ebe02019-07-04 16:24:32 +0100204 root->ino_cache_state == BTRFS_CACHE_ERROR ||
Li Zefan581bb052011-04-20 10:06:11 +0800205 root->free_ino_ctl->free_space > 0);
206
David Sterba57cdc8d2014-02-05 02:37:48 +0100207 if (root->ino_cache_state == BTRFS_CACHE_FINISHED &&
Li Zefan581bb052011-04-20 10:06:11 +0800208 root->free_ino_ctl->free_space == 0)
209 return -ENOSPC;
Filipe Mananaa68ebe02019-07-04 16:24:32 +0100210 else if (root->ino_cache_state == BTRFS_CACHE_ERROR)
211 return btrfs_find_free_objectid(root, objectid);
Li Zefan581bb052011-04-20 10:06:11 +0800212 else
213 goto again;
214}
215
216void btrfs_return_ino(struct btrfs_root *root, u64 objectid)
217{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400218 struct btrfs_fs_info *fs_info = root->fs_info;
Li Zefan581bb052011-04-20 10:06:11 +0800219 struct btrfs_free_space_ctl *pinned = root->free_ino_pinned;
Chris Mason4b9465c2011-06-03 09:36:29 -0400220
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400221 if (!btrfs_test_opt(fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -0400222 return;
Li Zefan581bb052011-04-20 10:06:11 +0800223again:
David Sterba57cdc8d2014-02-05 02:37:48 +0100224 if (root->ino_cache_state == BTRFS_CACHE_FINISHED) {
Dennis Zhoua7ccb252019-12-13 16:22:12 -0800225 __btrfs_add_free_space(fs_info, pinned, objectid, 1, 0);
Li Zefan581bb052011-04-20 10:06:11 +0800226 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400227 down_write(&fs_info->commit_root_sem);
David Sterba57cdc8d2014-02-05 02:37:48 +0100228 spin_lock(&root->ino_cache_lock);
229 if (root->ino_cache_state == BTRFS_CACHE_FINISHED) {
230 spin_unlock(&root->ino_cache_lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400231 up_write(&fs_info->commit_root_sem);
Li Zefan581bb052011-04-20 10:06:11 +0800232 goto again;
233 }
David Sterba57cdc8d2014-02-05 02:37:48 +0100234 spin_unlock(&root->ino_cache_lock);
Li Zefan581bb052011-04-20 10:06:11 +0800235
236 start_caching(root);
237
Dennis Zhoua7ccb252019-12-13 16:22:12 -0800238 __btrfs_add_free_space(fs_info, pinned, objectid, 1, 0);
Li Zefan581bb052011-04-20 10:06:11 +0800239
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400240 up_write(&fs_info->commit_root_sem);
Li Zefan581bb052011-04-20 10:06:11 +0800241 }
242}
243
244/*
David Sterba57cdc8d2014-02-05 02:37:48 +0100245 * When a transaction is committed, we'll move those inode numbers which are
246 * smaller than root->ino_cache_progress from pinned tree to free_ino tree, and
247 * others will just be dropped, because the commit root we were searching has
248 * changed.
Li Zefan581bb052011-04-20 10:06:11 +0800249 *
Josef Bacik9e351cc2014-03-13 15:42:13 -0400250 * Must be called with root->fs_info->commit_root_sem held
Li Zefan581bb052011-04-20 10:06:11 +0800251 */
252void btrfs_unpin_free_ino(struct btrfs_root *root)
253{
254 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
255 struct rb_root *rbroot = &root->free_ino_pinned->free_space_offset;
Filipe Mananaae9d8f12015-06-13 06:52:57 +0100256 spinlock_t *rbroot_lock = &root->free_ino_pinned->tree_lock;
Li Zefan581bb052011-04-20 10:06:11 +0800257 struct btrfs_free_space *info;
258 struct rb_node *n;
259 u64 count;
260
Jeff Mahoney3cdde222016-06-09 21:38:35 -0400261 if (!btrfs_test_opt(root->fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -0400262 return;
263
Li Zefan581bb052011-04-20 10:06:11 +0800264 while (1) {
Filipe Mananaae9d8f12015-06-13 06:52:57 +0100265 spin_lock(rbroot_lock);
Li Zefan581bb052011-04-20 10:06:11 +0800266 n = rb_first(rbroot);
Filipe Mananaae9d8f12015-06-13 06:52:57 +0100267 if (!n) {
268 spin_unlock(rbroot_lock);
Li Zefan581bb052011-04-20 10:06:11 +0800269 break;
Filipe Mananaae9d8f12015-06-13 06:52:57 +0100270 }
Li Zefan581bb052011-04-20 10:06:11 +0800271
272 info = rb_entry(n, struct btrfs_free_space, offset_index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100273 BUG_ON(info->bitmap); /* Logic error */
Li Zefan581bb052011-04-20 10:06:11 +0800274
David Sterba57cdc8d2014-02-05 02:37:48 +0100275 if (info->offset > root->ino_cache_progress)
Geert Uytterhoevenbc931c02018-06-22 09:18:29 +0200276 count = 0;
Li Zefan581bb052011-04-20 10:06:11 +0800277 else
Geert Uytterhoevenbc931c02018-06-22 09:18:29 +0200278 count = min(root->ino_cache_progress - info->offset + 1,
279 info->bytes);
Li Zefan581bb052011-04-20 10:06:11 +0800280
Li Zefan581bb052011-04-20 10:06:11 +0800281 rb_erase(&info->offset_index, rbroot);
Filipe Mananaae9d8f12015-06-13 06:52:57 +0100282 spin_unlock(rbroot_lock);
Geert Uytterhoevenbc931c02018-06-22 09:18:29 +0200283 if (count)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400284 __btrfs_add_free_space(root->fs_info, ctl,
Dennis Zhoua7ccb252019-12-13 16:22:12 -0800285 info->offset, count, 0);
Filipe Mananac3f4a162015-06-13 06:52:56 +0100286 kmem_cache_free(btrfs_free_space_cachep, info);
Li Zefan581bb052011-04-20 10:06:11 +0800287 }
288}
289
Byongho Leeee221842015-12-15 01:42:10 +0900290#define INIT_THRESHOLD ((SZ_32K / 2) / sizeof(struct btrfs_free_space))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300291#define INODES_PER_BITMAP (PAGE_SIZE * 8)
Li Zefan581bb052011-04-20 10:06:11 +0800292
293/*
294 * The goal is to keep the memory used by the free_ino tree won't
295 * exceed the memory if we use bitmaps only.
296 */
297static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl)
298{
299 struct btrfs_free_space *info;
300 struct rb_node *n;
301 int max_ino;
302 int max_bitmaps;
303
304 n = rb_last(&ctl->free_space_offset);
305 if (!n) {
306 ctl->extents_thresh = INIT_THRESHOLD;
307 return;
308 }
309 info = rb_entry(n, struct btrfs_free_space, offset_index);
310
311 /*
312 * Find the maximum inode number in the filesystem. Note we
313 * ignore the fact that this can be a bitmap, because we are
314 * not doing precise calculation.
315 */
316 max_ino = info->bytes - 1;
317
318 max_bitmaps = ALIGN(max_ino, INODES_PER_BITMAP) / INODES_PER_BITMAP;
319 if (max_bitmaps <= ctl->total_bitmaps) {
320 ctl->extents_thresh = 0;
321 return;
322 }
323
324 ctl->extents_thresh = (max_bitmaps - ctl->total_bitmaps) *
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300325 PAGE_SIZE / sizeof(*info);
Li Zefan581bb052011-04-20 10:06:11 +0800326}
327
328/*
329 * We don't fall back to bitmap, if we are below the extents threshold
330 * or this chunk of inode numbers is a big one.
331 */
332static bool use_bitmap(struct btrfs_free_space_ctl *ctl,
333 struct btrfs_free_space *info)
334{
335 if (ctl->free_extents < ctl->extents_thresh ||
336 info->bytes > INODES_PER_BITMAP / 10)
337 return false;
338
339 return true;
340}
341
David Sterba20e55062015-11-19 11:42:28 +0100342static const struct btrfs_free_space_op free_ino_op = {
Li Zefan581bb052011-04-20 10:06:11 +0800343 .recalc_thresholds = recalculate_thresholds,
344 .use_bitmap = use_bitmap,
345};
346
347static void pinned_recalc_thresholds(struct btrfs_free_space_ctl *ctl)
348{
349}
350
351static bool pinned_use_bitmap(struct btrfs_free_space_ctl *ctl,
352 struct btrfs_free_space *info)
353{
354 /*
355 * We always use extents for two reasons:
356 *
357 * - The pinned tree is only used during the process of caching
358 * work.
359 * - Make code simpler. See btrfs_unpin_free_ino().
360 */
361 return false;
362}
363
David Sterba20e55062015-11-19 11:42:28 +0100364static const struct btrfs_free_space_op pinned_free_ino_op = {
Li Zefan581bb052011-04-20 10:06:11 +0800365 .recalc_thresholds = pinned_recalc_thresholds,
366 .use_bitmap = pinned_use_bitmap,
367};
368
369void btrfs_init_free_ino_ctl(struct btrfs_root *root)
370{
371 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
372 struct btrfs_free_space_ctl *pinned = root->free_ino_pinned;
373
374 spin_lock_init(&ctl->tree_lock);
375 ctl->unit = 1;
376 ctl->start = 0;
377 ctl->private = NULL;
378 ctl->op = &free_ino_op;
Filipe Manana55507ce2014-12-01 17:04:09 +0000379 INIT_LIST_HEAD(&ctl->trimming_ranges);
380 mutex_init(&ctl->cache_writeout_mutex);
Li Zefan581bb052011-04-20 10:06:11 +0800381
382 /*
383 * Initially we allow to use 16K of ram to cache chunks of
384 * inode numbers before we resort to bitmaps. This is somewhat
385 * arbitrary, but it will be adjusted in runtime.
386 */
387 ctl->extents_thresh = INIT_THRESHOLD;
388
389 spin_lock_init(&pinned->tree_lock);
390 pinned->unit = 1;
391 pinned->start = 0;
392 pinned->private = NULL;
393 pinned->extents_thresh = 0;
394 pinned->op = &pinned_free_ino_op;
395}
396
Li Zefan82d59022011-04-20 10:33:24 +0800397int btrfs_save_ino_cache(struct btrfs_root *root,
398 struct btrfs_trans_handle *trans)
399{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400400 struct btrfs_fs_info *fs_info = root->fs_info;
Li Zefan82d59022011-04-20 10:33:24 +0800401 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
402 struct btrfs_path *path;
403 struct inode *inode;
Miao Xieba38eb42011-11-10 20:45:04 -0500404 struct btrfs_block_rsv *rsv;
Qu Wenruo364ecf32017-02-27 15:10:38 +0800405 struct extent_changeset *data_reserved = NULL;
Miao Xieba38eb42011-11-10 20:45:04 -0500406 u64 num_bytes;
Li Zefan82d59022011-04-20 10:33:24 +0800407 u64 alloc_hint = 0;
408 int ret;
409 int prealloc;
410 bool retry = false;
411
liuboca456ae2011-06-01 09:42:49 +0000412 /* only fs tree and subvol/snap needs ino cache */
413 if (root->root_key.objectid != BTRFS_FS_TREE_OBJECTID &&
414 (root->root_key.objectid < BTRFS_FIRST_FREE_OBJECTID ||
415 root->root_key.objectid > BTRFS_LAST_FREE_OBJECTID))
416 return 0;
417
Josef Bacikd132a532011-05-31 19:33:33 +0000418 /* Don't save inode cache if we are deleting this root */
Stefan Behrens69e9c6c2013-09-05 16:58:43 +0200419 if (btrfs_root_refs(&root->root_item) == 0)
Josef Bacikd132a532011-05-31 19:33:33 +0000420 return 0;
421
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400422 if (!btrfs_test_opt(fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -0400423 return 0;
424
Li Zefan82d59022011-04-20 10:33:24 +0800425 path = btrfs_alloc_path();
426 if (!path)
427 return -ENOMEM;
Chris Mason4b9465c2011-06-03 09:36:29 -0400428
Miao Xieba38eb42011-11-10 20:45:04 -0500429 rsv = trans->block_rsv;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400430 trans->block_rsv = &fs_info->trans_block_rsv;
Miao Xieba38eb42011-11-10 20:45:04 -0500431
432 num_bytes = trans->bytes_reserved;
433 /*
434 * 1 item for inode item insertion if need
Miao Xie7b61cd92013-05-13 13:55:09 +0000435 * 4 items for inode item update (in the worst case)
436 * 1 items for slack space if we need do truncation
Miao Xieba38eb42011-11-10 20:45:04 -0500437 * 1 item for free space object
438 * 3 items for pre-allocation
439 */
Josef Bacik2bd36e72019-08-22 15:14:33 -0400440 trans->bytes_reserved = btrfs_calc_insert_metadata_size(fs_info, 10);
Miao Xie08e007d2012-10-16 11:33:38 +0000441 ret = btrfs_block_rsv_add(root, trans->block_rsv,
442 trans->bytes_reserved,
443 BTRFS_RESERVE_NO_FLUSH);
Miao Xieba38eb42011-11-10 20:45:04 -0500444 if (ret)
445 goto out;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400446 trace_btrfs_space_reservation(fs_info, "ino_cache", trans->transid,
447 trans->bytes_reserved, 1);
Li Zefan82d59022011-04-20 10:33:24 +0800448again:
449 inode = lookup_free_ino_inode(root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100450 if (IS_ERR(inode) && (PTR_ERR(inode) != -ENOENT || retry)) {
Li Zefan82d59022011-04-20 10:33:24 +0800451 ret = PTR_ERR(inode);
Miao Xieba38eb42011-11-10 20:45:04 -0500452 goto out_release;
Li Zefan82d59022011-04-20 10:33:24 +0800453 }
454
455 if (IS_ERR(inode)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100456 BUG_ON(retry); /* Logic error */
Li Zefan82d59022011-04-20 10:33:24 +0800457 retry = true;
458
459 ret = create_free_ino_inode(root, trans, path);
460 if (ret)
Miao Xieba38eb42011-11-10 20:45:04 -0500461 goto out_release;
Li Zefan82d59022011-04-20 10:33:24 +0800462 goto again;
463 }
464
465 BTRFS_I(inode)->generation = 0;
466 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100467 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400468 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100469 goto out_put;
470 }
Li Zefan82d59022011-04-20 10:33:24 +0800471
472 if (i_size_read(inode) > 0) {
Jeff Mahoney77ab86b2017-02-15 16:28:30 -0500473 ret = btrfs_truncate_free_space_cache(trans, NULL, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100474 if (ret) {
Miao Xie7cfa9e52013-05-13 13:55:08 +0000475 if (ret != -ENOSPC)
Jeff Mahoney66642832016-06-10 18:19:25 -0400476 btrfs_abort_transaction(trans, ret);
Li Zefan82d59022011-04-20 10:33:24 +0800477 goto out_put;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100478 }
Li Zefan82d59022011-04-20 10:33:24 +0800479 }
480
David Sterba57cdc8d2014-02-05 02:37:48 +0100481 spin_lock(&root->ino_cache_lock);
482 if (root->ino_cache_state != BTRFS_CACHE_FINISHED) {
Li Zefan82d59022011-04-20 10:33:24 +0800483 ret = -1;
David Sterba57cdc8d2014-02-05 02:37:48 +0100484 spin_unlock(&root->ino_cache_lock);
Li Zefan82d59022011-04-20 10:33:24 +0800485 goto out_put;
486 }
David Sterba57cdc8d2014-02-05 02:37:48 +0100487 spin_unlock(&root->ino_cache_lock);
Li Zefan82d59022011-04-20 10:33:24 +0800488
489 spin_lock(&ctl->tree_lock);
490 prealloc = sizeof(struct btrfs_free_space) * ctl->free_extents;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300491 prealloc = ALIGN(prealloc, PAGE_SIZE);
492 prealloc += ctl->total_bitmaps * PAGE_SIZE;
Li Zefan82d59022011-04-20 10:33:24 +0800493 spin_unlock(&ctl->tree_lock);
494
495 /* Just to make sure we have enough space */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300496 prealloc += 8 * PAGE_SIZE;
Li Zefan82d59022011-04-20 10:33:24 +0800497
Qu Wenruo364ecf32017-02-27 15:10:38 +0800498 ret = btrfs_delalloc_reserve_space(inode, &data_reserved, 0, prealloc);
Li Zefan82d59022011-04-20 10:33:24 +0800499 if (ret)
500 goto out_put;
501
502 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, prealloc,
503 prealloc, prealloc, &alloc_hint);
Josef Bacikc09544e2011-08-30 10:19:10 -0400504 if (ret) {
Qu Wenruo8702ba92019-10-14 14:34:51 +0800505 btrfs_delalloc_release_extents(BTRFS_I(inode), prealloc);
Filipe Manana29d47d02019-07-04 16:24:19 +0100506 btrfs_delalloc_release_metadata(BTRFS_I(inode), prealloc, true);
Li Zefan82d59022011-04-20 10:33:24 +0800507 goto out_put;
Josef Bacikc09544e2011-08-30 10:19:10 -0400508 }
Li Zefan82d59022011-04-20 10:33:24 +0800509
Filipe David Borba Manana53645a92013-09-20 14:43:28 +0100510 ret = btrfs_write_out_ino_cache(root, trans, path, inode);
Qu Wenruo8702ba92019-10-14 14:34:51 +0800511 btrfs_delalloc_release_extents(BTRFS_I(inode), prealloc);
Li Zefan82d59022011-04-20 10:33:24 +0800512out_put:
513 iput(inode);
Miao Xieba38eb42011-11-10 20:45:04 -0500514out_release:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400515 trace_btrfs_space_reservation(fs_info, "ino_cache", trans->transid,
516 trans->bytes_reserved, 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400517 btrfs_block_rsv_release(fs_info, trans->block_rsv,
518 trans->bytes_reserved);
Li Zefan82d59022011-04-20 10:33:24 +0800519out:
Miao Xieba38eb42011-11-10 20:45:04 -0500520 trans->block_rsv = rsv;
521 trans->bytes_reserved = num_bytes;
Li Zefan82d59022011-04-20 10:33:24 +0800522
523 btrfs_free_path(path);
Qu Wenruo364ecf32017-02-27 15:10:38 +0800524 extent_changeset_free(data_reserved);
Li Zefan82d59022011-04-20 10:33:24 +0800525 return ret;
526}
527
Chandan Rajendraf32e48e2016-01-07 18:56:59 +0530528int btrfs_find_highest_objectid(struct btrfs_root *root, u64 *objectid)
Chris Mason5be6f7f2007-04-05 13:35:25 -0400529{
530 struct btrfs_path *path;
531 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -0400532 struct extent_buffer *l;
Chris Mason5be6f7f2007-04-05 13:35:25 -0400533 struct btrfs_key search_key;
Chris Mason5f39d392007-10-15 16:14:19 -0400534 struct btrfs_key found_key;
Chris Mason5be6f7f2007-04-05 13:35:25 -0400535 int slot;
536
537 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +0000538 if (!path)
539 return -ENOMEM;
Chris Mason5be6f7f2007-04-05 13:35:25 -0400540
Zheng Yan6527cdb2008-09-05 16:43:53 -0400541 search_key.objectid = BTRFS_LAST_FREE_OBJECTID;
542 search_key.type = -1;
Chris Mason5be6f7f2007-04-05 13:35:25 -0400543 search_key.offset = (u64)-1;
544 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
545 if (ret < 0)
546 goto error;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100547 BUG_ON(ret == 0); /* Corruption */
Chris Mason5be6f7f2007-04-05 13:35:25 -0400548 if (path->slots[0] > 0) {
549 slot = path->slots[0] - 1;
Chris Mason5f39d392007-10-15 16:14:19 -0400550 l = path->nodes[0];
551 btrfs_item_key_to_cpu(l, &found_key, slot);
Yan, Zheng13a8a7c2009-09-21 15:56:00 -0400552 *objectid = max_t(u64, found_key.objectid,
553 BTRFS_FIRST_FREE_OBJECTID - 1);
Chris Mason5be6f7f2007-04-05 13:35:25 -0400554 } else {
Yan, Zheng13a8a7c2009-09-21 15:56:00 -0400555 *objectid = BTRFS_FIRST_FREE_OBJECTID - 1;
Chris Mason5be6f7f2007-04-05 13:35:25 -0400556 }
557 ret = 0;
558error:
559 btrfs_free_path(path);
560 return ret;
561}
562
Li Zefan581bb052011-04-20 10:06:11 +0800563int btrfs_find_free_objectid(struct btrfs_root *root, u64 *objectid)
Chris Mason9f5fae22007-03-20 14:38:32 -0400564{
Chris Mason9f5fae22007-03-20 14:38:32 -0400565 int ret;
Chris Masona2135012008-06-25 16:01:30 -0400566 mutex_lock(&root->objectid_mutex);
Yan, Zheng13a8a7c2009-09-21 15:56:00 -0400567
Yan, Zheng13a8a7c2009-09-21 15:56:00 -0400568 if (unlikely(root->highest_objectid >= BTRFS_LAST_FREE_OBJECTID)) {
Satoru Takeuchi3c1d84b2016-03-09 15:18:57 +0900569 btrfs_warn(root->fs_info,
570 "the objectid of root %llu reaches its highest value",
571 root->root_key.objectid);
Yan, Zheng13a8a7c2009-09-21 15:56:00 -0400572 ret = -ENOSPC;
573 goto out;
Chris Mason9f5fae22007-03-20 14:38:32 -0400574 }
Yan, Zheng13a8a7c2009-09-21 15:56:00 -0400575
576 *objectid = ++root->highest_objectid;
577 ret = 0;
578out:
Chris Masona2135012008-06-25 16:01:30 -0400579 mutex_unlock(&root->objectid_mutex);
Chris Mason9f5fae22007-03-20 14:38:32 -0400580 return ret;
581}