blob: 37345fb6191d774aff9b8b4fbf57301afab83e98 [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,
Li Zefan581bb052011-04-20 10:06:11 +0800110 key.objectid - last - 1);
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,
Li Zefana47d6b72011-05-26 06:38:30 +0000121 root->highest_objectid - last - 1);
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,
Li Zefana47d6b72011-05-26 06:38:30 +0000178 BTRFS_LAST_FREE_OBJECTID - objectid + 1);
Filipe Manana32e53442019-07-04 16:25:00 +0100179 wake_up(&root->ino_cache_wait);
Li Zefana47d6b72011-05-26 06:38:30 +0000180 }
181
David Sterba67a77eb2014-05-16 15:15:45 +0200182 tsk = kthread_run(caching_kthread, root, "btrfs-ino-cache-%llu",
Li Zefan581bb052011-04-20 10:06:11 +0800183 root->root_key.objectid);
Filipe Mananaa68ebe02019-07-04 16:24:32 +0100184 if (IS_ERR(tsk))
185 fail_caching_thread(root);
Li Zefan581bb052011-04-20 10:06:11 +0800186}
187
188int btrfs_find_free_ino(struct btrfs_root *root, u64 *objectid)
189{
Jeff Mahoney3cdde222016-06-09 21:38:35 -0400190 if (!btrfs_test_opt(root->fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -0400191 return btrfs_find_free_objectid(root, objectid);
192
Li Zefan581bb052011-04-20 10:06:11 +0800193again:
194 *objectid = btrfs_find_ino_for_alloc(root);
195
196 if (*objectid != 0)
197 return 0;
198
199 start_caching(root);
200
David Sterba57cdc8d2014-02-05 02:37:48 +0100201 wait_event(root->ino_cache_wait,
202 root->ino_cache_state == BTRFS_CACHE_FINISHED ||
Filipe Mananaa68ebe02019-07-04 16:24:32 +0100203 root->ino_cache_state == BTRFS_CACHE_ERROR ||
Li Zefan581bb052011-04-20 10:06:11 +0800204 root->free_ino_ctl->free_space > 0);
205
David Sterba57cdc8d2014-02-05 02:37:48 +0100206 if (root->ino_cache_state == BTRFS_CACHE_FINISHED &&
Li Zefan581bb052011-04-20 10:06:11 +0800207 root->free_ino_ctl->free_space == 0)
208 return -ENOSPC;
Filipe Mananaa68ebe02019-07-04 16:24:32 +0100209 else if (root->ino_cache_state == BTRFS_CACHE_ERROR)
210 return btrfs_find_free_objectid(root, objectid);
Li Zefan581bb052011-04-20 10:06:11 +0800211 else
212 goto again;
213}
214
215void btrfs_return_ino(struct btrfs_root *root, u64 objectid)
216{
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400217 struct btrfs_fs_info *fs_info = root->fs_info;
Li Zefan581bb052011-04-20 10:06:11 +0800218 struct btrfs_free_space_ctl *pinned = root->free_ino_pinned;
Chris Mason4b9465c2011-06-03 09:36:29 -0400219
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400220 if (!btrfs_test_opt(fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -0400221 return;
Li Zefan581bb052011-04-20 10:06:11 +0800222again:
David Sterba57cdc8d2014-02-05 02:37:48 +0100223 if (root->ino_cache_state == BTRFS_CACHE_FINISHED) {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400224 __btrfs_add_free_space(fs_info, pinned, objectid, 1);
Li Zefan581bb052011-04-20 10:06:11 +0800225 } else {
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400226 down_write(&fs_info->commit_root_sem);
David Sterba57cdc8d2014-02-05 02:37:48 +0100227 spin_lock(&root->ino_cache_lock);
228 if (root->ino_cache_state == BTRFS_CACHE_FINISHED) {
229 spin_unlock(&root->ino_cache_lock);
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400230 up_write(&fs_info->commit_root_sem);
Li Zefan581bb052011-04-20 10:06:11 +0800231 goto again;
232 }
David Sterba57cdc8d2014-02-05 02:37:48 +0100233 spin_unlock(&root->ino_cache_lock);
Li Zefan581bb052011-04-20 10:06:11 +0800234
235 start_caching(root);
236
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400237 __btrfs_add_free_space(fs_info, pinned, objectid, 1);
Li Zefan581bb052011-04-20 10:06:11 +0800238
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400239 up_write(&fs_info->commit_root_sem);
Li Zefan581bb052011-04-20 10:06:11 +0800240 }
241}
242
243/*
David Sterba57cdc8d2014-02-05 02:37:48 +0100244 * When a transaction is committed, we'll move those inode numbers which are
245 * smaller than root->ino_cache_progress from pinned tree to free_ino tree, and
246 * others will just be dropped, because the commit root we were searching has
247 * changed.
Li Zefan581bb052011-04-20 10:06:11 +0800248 *
Josef Bacik9e351cc2014-03-13 15:42:13 -0400249 * Must be called with root->fs_info->commit_root_sem held
Li Zefan581bb052011-04-20 10:06:11 +0800250 */
251void btrfs_unpin_free_ino(struct btrfs_root *root)
252{
253 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
254 struct rb_root *rbroot = &root->free_ino_pinned->free_space_offset;
Filipe Mananaae9d8f12015-06-13 06:52:57 +0100255 spinlock_t *rbroot_lock = &root->free_ino_pinned->tree_lock;
Li Zefan581bb052011-04-20 10:06:11 +0800256 struct btrfs_free_space *info;
257 struct rb_node *n;
258 u64 count;
259
Jeff Mahoney3cdde222016-06-09 21:38:35 -0400260 if (!btrfs_test_opt(root->fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -0400261 return;
262
Li Zefan581bb052011-04-20 10:06:11 +0800263 while (1) {
Filipe Mananaae9d8f12015-06-13 06:52:57 +0100264 spin_lock(rbroot_lock);
Li Zefan581bb052011-04-20 10:06:11 +0800265 n = rb_first(rbroot);
Filipe Mananaae9d8f12015-06-13 06:52:57 +0100266 if (!n) {
267 spin_unlock(rbroot_lock);
Li Zefan581bb052011-04-20 10:06:11 +0800268 break;
Filipe Mananaae9d8f12015-06-13 06:52:57 +0100269 }
Li Zefan581bb052011-04-20 10:06:11 +0800270
271 info = rb_entry(n, struct btrfs_free_space, offset_index);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100272 BUG_ON(info->bitmap); /* Logic error */
Li Zefan581bb052011-04-20 10:06:11 +0800273
David Sterba57cdc8d2014-02-05 02:37:48 +0100274 if (info->offset > root->ino_cache_progress)
Geert Uytterhoevenbc931c02018-06-22 09:18:29 +0200275 count = 0;
Li Zefan581bb052011-04-20 10:06:11 +0800276 else
Geert Uytterhoevenbc931c02018-06-22 09:18:29 +0200277 count = min(root->ino_cache_progress - info->offset + 1,
278 info->bytes);
Li Zefan581bb052011-04-20 10:06:11 +0800279
Li Zefan581bb052011-04-20 10:06:11 +0800280 rb_erase(&info->offset_index, rbroot);
Filipe Mananaae9d8f12015-06-13 06:52:57 +0100281 spin_unlock(rbroot_lock);
Geert Uytterhoevenbc931c02018-06-22 09:18:29 +0200282 if (count)
Jeff Mahoneyab8d0fc2016-09-20 10:05:02 -0400283 __btrfs_add_free_space(root->fs_info, ctl,
284 info->offset, count);
Filipe Mananac3f4a162015-06-13 06:52:56 +0100285 kmem_cache_free(btrfs_free_space_cachep, info);
Li Zefan581bb052011-04-20 10:06:11 +0800286 }
287}
288
Byongho Leeee221842015-12-15 01:42:10 +0900289#define INIT_THRESHOLD ((SZ_32K / 2) / sizeof(struct btrfs_free_space))
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300290#define INODES_PER_BITMAP (PAGE_SIZE * 8)
Li Zefan581bb052011-04-20 10:06:11 +0800291
292/*
293 * The goal is to keep the memory used by the free_ino tree won't
294 * exceed the memory if we use bitmaps only.
295 */
296static void recalculate_thresholds(struct btrfs_free_space_ctl *ctl)
297{
298 struct btrfs_free_space *info;
299 struct rb_node *n;
300 int max_ino;
301 int max_bitmaps;
302
303 n = rb_last(&ctl->free_space_offset);
304 if (!n) {
305 ctl->extents_thresh = INIT_THRESHOLD;
306 return;
307 }
308 info = rb_entry(n, struct btrfs_free_space, offset_index);
309
310 /*
311 * Find the maximum inode number in the filesystem. Note we
312 * ignore the fact that this can be a bitmap, because we are
313 * not doing precise calculation.
314 */
315 max_ino = info->bytes - 1;
316
317 max_bitmaps = ALIGN(max_ino, INODES_PER_BITMAP) / INODES_PER_BITMAP;
318 if (max_bitmaps <= ctl->total_bitmaps) {
319 ctl->extents_thresh = 0;
320 return;
321 }
322
323 ctl->extents_thresh = (max_bitmaps - ctl->total_bitmaps) *
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300324 PAGE_SIZE / sizeof(*info);
Li Zefan581bb052011-04-20 10:06:11 +0800325}
326
327/*
328 * We don't fall back to bitmap, if we are below the extents threshold
329 * or this chunk of inode numbers is a big one.
330 */
331static bool use_bitmap(struct btrfs_free_space_ctl *ctl,
332 struct btrfs_free_space *info)
333{
334 if (ctl->free_extents < ctl->extents_thresh ||
335 info->bytes > INODES_PER_BITMAP / 10)
336 return false;
337
338 return true;
339}
340
David Sterba20e55062015-11-19 11:42:28 +0100341static const struct btrfs_free_space_op free_ino_op = {
Li Zefan581bb052011-04-20 10:06:11 +0800342 .recalc_thresholds = recalculate_thresholds,
343 .use_bitmap = use_bitmap,
344};
345
346static void pinned_recalc_thresholds(struct btrfs_free_space_ctl *ctl)
347{
348}
349
350static bool pinned_use_bitmap(struct btrfs_free_space_ctl *ctl,
351 struct btrfs_free_space *info)
352{
353 /*
354 * We always use extents for two reasons:
355 *
356 * - The pinned tree is only used during the process of caching
357 * work.
358 * - Make code simpler. See btrfs_unpin_free_ino().
359 */
360 return false;
361}
362
David Sterba20e55062015-11-19 11:42:28 +0100363static const struct btrfs_free_space_op pinned_free_ino_op = {
Li Zefan581bb052011-04-20 10:06:11 +0800364 .recalc_thresholds = pinned_recalc_thresholds,
365 .use_bitmap = pinned_use_bitmap,
366};
367
368void btrfs_init_free_ino_ctl(struct btrfs_root *root)
369{
370 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
371 struct btrfs_free_space_ctl *pinned = root->free_ino_pinned;
372
373 spin_lock_init(&ctl->tree_lock);
374 ctl->unit = 1;
375 ctl->start = 0;
376 ctl->private = NULL;
377 ctl->op = &free_ino_op;
Filipe Manana55507ce2014-12-01 17:04:09 +0000378 INIT_LIST_HEAD(&ctl->trimming_ranges);
379 mutex_init(&ctl->cache_writeout_mutex);
Li Zefan581bb052011-04-20 10:06:11 +0800380
381 /*
382 * Initially we allow to use 16K of ram to cache chunks of
383 * inode numbers before we resort to bitmaps. This is somewhat
384 * arbitrary, but it will be adjusted in runtime.
385 */
386 ctl->extents_thresh = INIT_THRESHOLD;
387
388 spin_lock_init(&pinned->tree_lock);
389 pinned->unit = 1;
390 pinned->start = 0;
391 pinned->private = NULL;
392 pinned->extents_thresh = 0;
393 pinned->op = &pinned_free_ino_op;
394}
395
Li Zefan82d59022011-04-20 10:33:24 +0800396int btrfs_save_ino_cache(struct btrfs_root *root,
397 struct btrfs_trans_handle *trans)
398{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400399 struct btrfs_fs_info *fs_info = root->fs_info;
Li Zefan82d59022011-04-20 10:33:24 +0800400 struct btrfs_free_space_ctl *ctl = root->free_ino_ctl;
401 struct btrfs_path *path;
402 struct inode *inode;
Miao Xieba38eb42011-11-10 20:45:04 -0500403 struct btrfs_block_rsv *rsv;
Qu Wenruo364ecf32017-02-27 15:10:38 +0800404 struct extent_changeset *data_reserved = NULL;
Miao Xieba38eb42011-11-10 20:45:04 -0500405 u64 num_bytes;
Li Zefan82d59022011-04-20 10:33:24 +0800406 u64 alloc_hint = 0;
407 int ret;
408 int prealloc;
409 bool retry = false;
410
liuboca456ae2011-06-01 09:42:49 +0000411 /* only fs tree and subvol/snap needs ino cache */
412 if (root->root_key.objectid != BTRFS_FS_TREE_OBJECTID &&
413 (root->root_key.objectid < BTRFS_FIRST_FREE_OBJECTID ||
414 root->root_key.objectid > BTRFS_LAST_FREE_OBJECTID))
415 return 0;
416
Josef Bacikd132a532011-05-31 19:33:33 +0000417 /* Don't save inode cache if we are deleting this root */
Stefan Behrens69e9c6c2013-09-05 16:58:43 +0200418 if (btrfs_root_refs(&root->root_item) == 0)
Josef Bacikd132a532011-05-31 19:33:33 +0000419 return 0;
420
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400421 if (!btrfs_test_opt(fs_info, INODE_MAP_CACHE))
Chris Mason4b9465c2011-06-03 09:36:29 -0400422 return 0;
423
Li Zefan82d59022011-04-20 10:33:24 +0800424 path = btrfs_alloc_path();
425 if (!path)
426 return -ENOMEM;
Chris Mason4b9465c2011-06-03 09:36:29 -0400427
Miao Xieba38eb42011-11-10 20:45:04 -0500428 rsv = trans->block_rsv;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400429 trans->block_rsv = &fs_info->trans_block_rsv;
Miao Xieba38eb42011-11-10 20:45:04 -0500430
431 num_bytes = trans->bytes_reserved;
432 /*
433 * 1 item for inode item insertion if need
Miao Xie7b61cd92013-05-13 13:55:09 +0000434 * 4 items for inode item update (in the worst case)
435 * 1 items for slack space if we need do truncation
Miao Xieba38eb42011-11-10 20:45:04 -0500436 * 1 item for free space object
437 * 3 items for pre-allocation
438 */
Josef Bacik2bd36e72019-08-22 15:14:33 -0400439 trans->bytes_reserved = btrfs_calc_insert_metadata_size(fs_info, 10);
Miao Xie08e007d2012-10-16 11:33:38 +0000440 ret = btrfs_block_rsv_add(root, trans->block_rsv,
441 trans->bytes_reserved,
442 BTRFS_RESERVE_NO_FLUSH);
Miao Xieba38eb42011-11-10 20:45:04 -0500443 if (ret)
444 goto out;
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400445 trace_btrfs_space_reservation(fs_info, "ino_cache", trans->transid,
446 trans->bytes_reserved, 1);
Li Zefan82d59022011-04-20 10:33:24 +0800447again:
448 inode = lookup_free_ino_inode(root, path);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100449 if (IS_ERR(inode) && (PTR_ERR(inode) != -ENOENT || retry)) {
Li Zefan82d59022011-04-20 10:33:24 +0800450 ret = PTR_ERR(inode);
Miao Xieba38eb42011-11-10 20:45:04 -0500451 goto out_release;
Li Zefan82d59022011-04-20 10:33:24 +0800452 }
453
454 if (IS_ERR(inode)) {
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100455 BUG_ON(retry); /* Logic error */
Li Zefan82d59022011-04-20 10:33:24 +0800456 retry = true;
457
458 ret = create_free_ino_inode(root, trans, path);
459 if (ret)
Miao Xieba38eb42011-11-10 20:45:04 -0500460 goto out_release;
Li Zefan82d59022011-04-20 10:33:24 +0800461 goto again;
462 }
463
464 BTRFS_I(inode)->generation = 0;
465 ret = btrfs_update_inode(trans, root, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100466 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400467 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100468 goto out_put;
469 }
Li Zefan82d59022011-04-20 10:33:24 +0800470
471 if (i_size_read(inode) > 0) {
Jeff Mahoney77ab86b2017-02-15 16:28:30 -0500472 ret = btrfs_truncate_free_space_cache(trans, NULL, inode);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100473 if (ret) {
Miao Xie7cfa9e52013-05-13 13:55:08 +0000474 if (ret != -ENOSPC)
Jeff Mahoney66642832016-06-10 18:19:25 -0400475 btrfs_abort_transaction(trans, ret);
Li Zefan82d59022011-04-20 10:33:24 +0800476 goto out_put;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100477 }
Li Zefan82d59022011-04-20 10:33:24 +0800478 }
479
David Sterba57cdc8d2014-02-05 02:37:48 +0100480 spin_lock(&root->ino_cache_lock);
481 if (root->ino_cache_state != BTRFS_CACHE_FINISHED) {
Li Zefan82d59022011-04-20 10:33:24 +0800482 ret = -1;
David Sterba57cdc8d2014-02-05 02:37:48 +0100483 spin_unlock(&root->ino_cache_lock);
Li Zefan82d59022011-04-20 10:33:24 +0800484 goto out_put;
485 }
David Sterba57cdc8d2014-02-05 02:37:48 +0100486 spin_unlock(&root->ino_cache_lock);
Li Zefan82d59022011-04-20 10:33:24 +0800487
488 spin_lock(&ctl->tree_lock);
489 prealloc = sizeof(struct btrfs_free_space) * ctl->free_extents;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300490 prealloc = ALIGN(prealloc, PAGE_SIZE);
491 prealloc += ctl->total_bitmaps * PAGE_SIZE;
Li Zefan82d59022011-04-20 10:33:24 +0800492 spin_unlock(&ctl->tree_lock);
493
494 /* Just to make sure we have enough space */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300495 prealloc += 8 * PAGE_SIZE;
Li Zefan82d59022011-04-20 10:33:24 +0800496
Qu Wenruo364ecf32017-02-27 15:10:38 +0800497 ret = btrfs_delalloc_reserve_space(inode, &data_reserved, 0, prealloc);
Li Zefan82d59022011-04-20 10:33:24 +0800498 if (ret)
499 goto out_put;
500
501 ret = btrfs_prealloc_file_range_trans(inode, trans, 0, 0, prealloc,
502 prealloc, prealloc, &alloc_hint);
Josef Bacikc09544e2011-08-30 10:19:10 -0400503 if (ret) {
Qu Wenruo8702ba92019-10-14 14:34:51 +0800504 btrfs_delalloc_release_extents(BTRFS_I(inode), prealloc);
Filipe Manana29d47d02019-07-04 16:24:19 +0100505 btrfs_delalloc_release_metadata(BTRFS_I(inode), prealloc, true);
Li Zefan82d59022011-04-20 10:33:24 +0800506 goto out_put;
Josef Bacikc09544e2011-08-30 10:19:10 -0400507 }
Li Zefan82d59022011-04-20 10:33:24 +0800508
Filipe David Borba Manana53645a92013-09-20 14:43:28 +0100509 ret = btrfs_write_out_ino_cache(root, trans, path, inode);
Qu Wenruo8702ba92019-10-14 14:34:51 +0800510 btrfs_delalloc_release_extents(BTRFS_I(inode), prealloc);
Li Zefan82d59022011-04-20 10:33:24 +0800511out_put:
512 iput(inode);
Miao Xieba38eb42011-11-10 20:45:04 -0500513out_release:
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400514 trace_btrfs_space_reservation(fs_info, "ino_cache", trans->transid,
515 trans->bytes_reserved, 0);
Jeff Mahoney2ff7e612016-06-22 18:54:24 -0400516 btrfs_block_rsv_release(fs_info, trans->block_rsv,
517 trans->bytes_reserved);
Li Zefan82d59022011-04-20 10:33:24 +0800518out:
Miao Xieba38eb42011-11-10 20:45:04 -0500519 trans->block_rsv = rsv;
520 trans->bytes_reserved = num_bytes;
Li Zefan82d59022011-04-20 10:33:24 +0800521
522 btrfs_free_path(path);
Qu Wenruo364ecf32017-02-27 15:10:38 +0800523 extent_changeset_free(data_reserved);
Li Zefan82d59022011-04-20 10:33:24 +0800524 return ret;
525}
526
Chandan Rajendraf32e48e2016-01-07 18:56:59 +0530527int btrfs_find_highest_objectid(struct btrfs_root *root, u64 *objectid)
Chris Mason5be6f7f2007-04-05 13:35:25 -0400528{
529 struct btrfs_path *path;
530 int ret;
Chris Mason5f39d392007-10-15 16:14:19 -0400531 struct extent_buffer *l;
Chris Mason5be6f7f2007-04-05 13:35:25 -0400532 struct btrfs_key search_key;
Chris Mason5f39d392007-10-15 16:14:19 -0400533 struct btrfs_key found_key;
Chris Mason5be6f7f2007-04-05 13:35:25 -0400534 int slot;
535
536 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +0000537 if (!path)
538 return -ENOMEM;
Chris Mason5be6f7f2007-04-05 13:35:25 -0400539
Zheng Yan6527cdb2008-09-05 16:43:53 -0400540 search_key.objectid = BTRFS_LAST_FREE_OBJECTID;
541 search_key.type = -1;
Chris Mason5be6f7f2007-04-05 13:35:25 -0400542 search_key.offset = (u64)-1;
543 ret = btrfs_search_slot(NULL, root, &search_key, path, 0, 0);
544 if (ret < 0)
545 goto error;
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100546 BUG_ON(ret == 0); /* Corruption */
Chris Mason5be6f7f2007-04-05 13:35:25 -0400547 if (path->slots[0] > 0) {
548 slot = path->slots[0] - 1;
Chris Mason5f39d392007-10-15 16:14:19 -0400549 l = path->nodes[0];
550 btrfs_item_key_to_cpu(l, &found_key, slot);
Yan, Zheng13a8a7c2009-09-21 15:56:00 -0400551 *objectid = max_t(u64, found_key.objectid,
552 BTRFS_FIRST_FREE_OBJECTID - 1);
Chris Mason5be6f7f2007-04-05 13:35:25 -0400553 } else {
Yan, Zheng13a8a7c2009-09-21 15:56:00 -0400554 *objectid = BTRFS_FIRST_FREE_OBJECTID - 1;
Chris Mason5be6f7f2007-04-05 13:35:25 -0400555 }
556 ret = 0;
557error:
558 btrfs_free_path(path);
559 return ret;
560}
561
Li Zefan581bb052011-04-20 10:06:11 +0800562int btrfs_find_free_objectid(struct btrfs_root *root, u64 *objectid)
Chris Mason9f5fae22007-03-20 14:38:32 -0400563{
Chris Mason9f5fae22007-03-20 14:38:32 -0400564 int ret;
Chris Masona2135012008-06-25 16:01:30 -0400565 mutex_lock(&root->objectid_mutex);
Yan, Zheng13a8a7c2009-09-21 15:56:00 -0400566
Yan, Zheng13a8a7c2009-09-21 15:56:00 -0400567 if (unlikely(root->highest_objectid >= BTRFS_LAST_FREE_OBJECTID)) {
Satoru Takeuchi3c1d84b2016-03-09 15:18:57 +0900568 btrfs_warn(root->fs_info,
569 "the objectid of root %llu reaches its highest value",
570 root->root_key.objectid);
Yan, Zheng13a8a7c2009-09-21 15:56:00 -0400571 ret = -ENOSPC;
572 goto out;
Chris Mason9f5fae22007-03-20 14:38:32 -0400573 }
Yan, Zheng13a8a7c2009-09-21 15:56:00 -0400574
575 *objectid = ++root->highest_objectid;
576 ret = 0;
577out:
Chris Masona2135012008-06-25 16:01:30 -0400578 mutex_unlock(&root->objectid_mutex);
Chris Mason9f5fae22007-03-20 14:38:32 -0400579 return ret;
580}