2007-06-12 13:07:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 Oracle. All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public
|
|
|
|
* License v2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 021110-1307, USA.
|
|
|
|
*/
|
2021-09-06 14:23:14 +00:00
|
|
|
|
2020-08-18 13:56:04 +00:00
|
|
|
#include "kernel-shared/ctree.h"
|
2020-08-18 13:56:04 +00:00
|
|
|
#include "kernel-shared/disk-io.h"
|
2020-08-18 13:56:04 +00:00
|
|
|
#include "kernel-shared/transaction.h"
|
2020-08-18 13:56:04 +00:00
|
|
|
#include "kernel-shared/print-tree.h"
|
2021-09-22 18:50:39 +00:00
|
|
|
#include "crypto/crc32c.h"
|
2021-04-30 20:04:03 +00:00
|
|
|
#include "common/repair.h"
|
2019-06-19 22:44:36 +00:00
|
|
|
#include "common/internal.h"
|
2019-06-19 22:44:36 +00:00
|
|
|
#include "common/messages.h"
|
2020-03-18 20:21:43 +00:00
|
|
|
#include "common/utils.h"
|
|
|
|
#include "kernel-lib/sizes.h"
|
2020-08-18 13:56:04 +00:00
|
|
|
#include "kernel-shared/volumes.h"
|
2007-12-09 18:46:24 +00:00
|
|
|
|
2007-03-16 20:20:31 +00:00
|
|
|
static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
|
|
|
|
*root, struct btrfs_path *path, int level);
|
|
|
|
static int split_leaf(struct btrfs_trans_handle *trans, struct btrfs_root
|
2018-10-12 07:41:53 +00:00
|
|
|
*root, const struct btrfs_key *ins_key,
|
2007-12-05 15:41:38 +00:00
|
|
|
struct btrfs_path *path, int data_size, int extend);
|
2008-01-04 15:38:22 +00:00
|
|
|
static int push_node_left(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root, struct extent_buffer *dst,
|
2008-04-24 14:54:32 +00:00
|
|
|
struct extent_buffer *src, int empty);
|
2008-01-04 15:38:22 +00:00
|
|
|
static int balance_node_right(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root,
|
|
|
|
struct extent_buffer *dst_buf,
|
|
|
|
struct extent_buffer *src_buf);
|
2007-02-20 21:40:44 +00:00
|
|
|
|
2019-09-25 17:31:15 +00:00
|
|
|
static const struct btrfs_csum {
|
2019-09-25 13:37:24 +00:00
|
|
|
u16 size;
|
2019-09-25 17:31:15 +00:00
|
|
|
const char name[14];
|
2019-09-25 13:37:24 +00:00
|
|
|
} btrfs_csums[] = {
|
|
|
|
[BTRFS_CSUM_TYPE_CRC32] = { 4, "crc32c" },
|
2019-09-25 13:37:26 +00:00
|
|
|
[BTRFS_CSUM_TYPE_XXHASH] = { 8, "xxhash64" },
|
2019-10-07 11:13:26 +00:00
|
|
|
[BTRFS_CSUM_TYPE_SHA256] = { 32, "sha256" },
|
2019-10-07 16:19:51 +00:00
|
|
|
[BTRFS_CSUM_TYPE_BLAKE2] = { 32, "blake2" },
|
2019-09-25 13:37:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
u16 btrfs_super_csum_size(const struct btrfs_super_block *sb)
|
|
|
|
{
|
|
|
|
const u16 csum_type = btrfs_super_csum_type(sb);
|
|
|
|
|
|
|
|
return btrfs_csums[csum_type].size;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *btrfs_super_csum_name(u16 csum_type)
|
|
|
|
{
|
|
|
|
return btrfs_csums[csum_type].name;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t btrfs_super_num_csums(void)
|
|
|
|
{
|
|
|
|
return ARRAY_SIZE(btrfs_csums);
|
|
|
|
}
|
|
|
|
|
|
|
|
u16 btrfs_csum_type_size(u16 csum_type)
|
|
|
|
{
|
|
|
|
return btrfs_csums[csum_type].size;
|
|
|
|
}
|
|
|
|
|
2021-09-22 18:50:39 +00:00
|
|
|
u64 btrfs_name_hash(const char *name, int len)
|
|
|
|
{
|
|
|
|
return crc32c((u32)~1, name, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Figure the key offset of an extended inode ref
|
|
|
|
*/
|
|
|
|
u64 btrfs_extref_hash(u64 parent_objectid, const char *name, int len)
|
|
|
|
{
|
|
|
|
return (u64)crc32c(parent_objectid, name, len);
|
|
|
|
}
|
|
|
|
|
2007-03-13 14:46:10 +00:00
|
|
|
inline void btrfs_init_path(struct btrfs_path *p)
|
2007-01-26 20:51:26 +00:00
|
|
|
{
|
|
|
|
memset(p, 0, sizeof(*p));
|
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_path *btrfs_alloc_path(void)
|
|
|
|
{
|
|
|
|
struct btrfs_path *path;
|
2013-04-26 21:06:10 +00:00
|
|
|
path = kzalloc(sizeof(struct btrfs_path), GFP_NOFS);
|
2008-01-04 15:38:22 +00:00
|
|
|
return path;
|
|
|
|
}
|
|
|
|
|
|
|
|
void btrfs_free_path(struct btrfs_path *p)
|
|
|
|
{
|
2014-12-19 16:01:40 +00:00
|
|
|
if (!p)
|
|
|
|
return;
|
2013-08-03 00:52:43 +00:00
|
|
|
btrfs_release_path(p);
|
2008-01-04 15:38:22 +00:00
|
|
|
kfree(p);
|
|
|
|
}
|
|
|
|
|
2013-08-03 00:52:43 +00:00
|
|
|
void btrfs_release_path(struct btrfs_path *p)
|
2007-02-02 14:18:22 +00:00
|
|
|
{
|
|
|
|
int i;
|
2007-03-13 14:46:10 +00:00
|
|
|
for (i = 0; i < BTRFS_MAX_LEVEL; i++) {
|
2007-02-02 14:18:22 +00:00
|
|
|
if (!p->nodes[i])
|
2009-01-07 19:57:12 +00:00
|
|
|
continue;
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(p->nodes[i]);
|
2007-02-02 14:18:22 +00:00
|
|
|
}
|
2007-02-28 21:35:06 +00:00
|
|
|
memset(p, 0, sizeof(*p));
|
2007-02-02 14:18:22 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2013-04-26 21:06:05 +00:00
|
|
|
void add_root_to_dirty_list(struct btrfs_root *root)
|
2008-03-24 19:03:18 +00:00
|
|
|
{
|
|
|
|
if (root->track_dirty && list_empty(&root->dirty_list)) {
|
|
|
|
list_add(&root->dirty_list,
|
|
|
|
&root->fs_info->dirty_cowonly_roots);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-08 12:47:46 +00:00
|
|
|
static void root_add_used(struct btrfs_root *root, u32 size)
|
|
|
|
{
|
|
|
|
btrfs_set_root_used(&root->root_item,
|
|
|
|
btrfs_root_used(&root->root_item) + size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void root_sub_used(struct btrfs_root *root, u32 size)
|
|
|
|
{
|
|
|
|
btrfs_set_root_used(&root->root_item,
|
|
|
|
btrfs_root_used(&root->root_item) - size);
|
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
int btrfs_copy_root(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root,
|
|
|
|
struct extent_buffer *buf,
|
|
|
|
struct extent_buffer **cow_ret, u64 new_root_objectid)
|
|
|
|
{
|
|
|
|
struct extent_buffer *cow;
|
|
|
|
int ret = 0;
|
|
|
|
int level;
|
|
|
|
struct btrfs_root *new_root;
|
2009-05-29 20:35:30 +00:00
|
|
|
struct btrfs_disk_key disk_key;
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
new_root = kmalloc(sizeof(*new_root), GFP_NOFS);
|
|
|
|
if (!new_root)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
memcpy(new_root, root, sizeof(*new_root));
|
|
|
|
new_root->root_key.objectid = new_root_objectid;
|
|
|
|
|
|
|
|
WARN_ON(root->ref_cows && trans->transid !=
|
|
|
|
root->fs_info->running_transaction->transid);
|
|
|
|
WARN_ON(root->ref_cows && trans->transid != root->last_trans);
|
|
|
|
|
|
|
|
level = btrfs_header_level(buf);
|
2009-05-29 20:35:30 +00:00
|
|
|
if (level == 0)
|
|
|
|
btrfs_item_key(buf, &disk_key, 0);
|
|
|
|
else
|
|
|
|
btrfs_node_key(buf, &disk_key, 0);
|
|
|
|
cow = btrfs_alloc_free_block(trans, new_root, buf->len,
|
|
|
|
new_root_objectid, &disk_key,
|
2008-09-23 16:29:10 +00:00
|
|
|
level, buf->start, 0);
|
2008-01-04 15:38:22 +00:00
|
|
|
if (IS_ERR(cow)) {
|
|
|
|
kfree(new_root);
|
|
|
|
return PTR_ERR(cow);
|
|
|
|
}
|
|
|
|
|
|
|
|
copy_extent_buffer(cow, buf, 0, 0, cow->len);
|
|
|
|
btrfs_set_header_bytenr(cow, cow->start);
|
|
|
|
btrfs_set_header_generation(cow, trans->transid);
|
2009-05-29 20:35:30 +00:00
|
|
|
btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
|
|
|
|
btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
|
|
|
|
BTRFS_HEADER_FLAG_RELOC);
|
|
|
|
if (new_root_objectid == BTRFS_TREE_RELOC_OBJECTID)
|
|
|
|
btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
|
|
|
|
else
|
|
|
|
btrfs_set_header_owner(cow, new_root_objectid);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2018-10-11 15:04:02 +00:00
|
|
|
write_extent_buffer(cow, root->fs_info->fs_devices->metadata_uuid,
|
2013-10-01 09:59:22 +00:00
|
|
|
btrfs_header_fsid(), BTRFS_FSID_SIZE);
|
2008-11-18 15:40:06 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
WARN_ON(btrfs_header_generation(buf) > trans->transid);
|
2009-05-29 20:35:30 +00:00
|
|
|
ret = btrfs_inc_ref(trans, new_root, cow, 0);
|
2008-01-04 15:38:22 +00:00
|
|
|
kfree(new_root);
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
btrfs_mark_buffer_dirty(cow);
|
|
|
|
*cow_ret = cow;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-03-18 20:21:43 +00:00
|
|
|
/*
|
|
|
|
* Create a new tree root, with root objectid set to @objectid.
|
|
|
|
*
|
|
|
|
* NOTE: Doesn't support tree with non-zero offset, like data reloc tree.
|
|
|
|
*/
|
|
|
|
int btrfs_create_root(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_fs_info *fs_info, u64 objectid)
|
|
|
|
{
|
|
|
|
struct extent_buffer *node;
|
|
|
|
struct btrfs_root *new_root;
|
|
|
|
struct btrfs_disk_key disk_key;
|
|
|
|
struct btrfs_key location;
|
|
|
|
struct btrfs_root_item root_item = { 0 };
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
new_root = malloc(sizeof(*new_root));
|
|
|
|
if (!new_root)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
btrfs_setup_root(new_root, fs_info, objectid);
|
|
|
|
if (!is_fstree(objectid))
|
|
|
|
new_root->track_dirty = 1;
|
|
|
|
add_root_to_dirty_list(new_root);
|
|
|
|
|
|
|
|
new_root->objectid = objectid;
|
|
|
|
new_root->root_key.objectid = objectid;
|
|
|
|
new_root->root_key.type = BTRFS_ROOT_ITEM_KEY;
|
|
|
|
new_root->root_key.offset = 0;
|
|
|
|
|
|
|
|
node = btrfs_alloc_free_block(trans, new_root, fs_info->nodesize,
|
|
|
|
objectid, &disk_key, 0, 0, 0);
|
|
|
|
if (IS_ERR(node)) {
|
|
|
|
ret = PTR_ERR(node);
|
|
|
|
error("failed to create root node for tree %llu: %d (%m)",
|
|
|
|
objectid, ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
new_root->node = node;
|
|
|
|
|
btrfs-progs: properly format btrfs_header in btrfs_create_root()
Enabling quota in zoned mored hits the following assertion:
$ mkfs.btrfs -f -d single -m single -R quota /dev/nullb0
btrfs-progs v5.11
See http://btrfs.wiki.kernel.org for more information.
Zoned: /dev/nullb0: host-managed device detected, setting zoned feature
Resetting device zones /dev/nullb0 (1600 zones) ...
bad tree block 25395200, bytenr mismatch, want=25395200, have=0
kernel-shared/disk-io.c:549: write_tree_block: BUG_ON `1` triggered, value 1
./mkfs.btrfs(+0x26aaa)[0x564d1a7ccaaa]
./mkfs.btrfs(write_tree_block+0xb8)[0x564d1a7cee29]
./mkfs.btrfs(__commit_transaction+0x91)[0x564d1a7e3740]
./mkfs.btrfs(btrfs_commit_transaction+0x135)[0x564d1a7e39aa]
./mkfs.btrfs(main+0x1fe9)[0x564d1a7b442a]
/lib64/libc.so.6(__libc_start_main+0xcd)[0x7f36377d37fd]
./mkfs.btrfs(_start+0x2a)[0x564d1a7b1fda]
zsh: IOT instruction sudo ./mkfs.btrfs -f -d single -m single -R quota /dev/nullb0
The issue occurs because btrfs_create_root() is not formatting the root
node properly. This is fine in regular mode, because it's fortunately
reusing an once freed buffer. As the previous tree node allocation
kindly formatted the header, it will see the proper bytenr and pass the
checks.
However, we never reuse a once freed buffer on zoned filesystem. As a
result, we have zero-filled bytenr, FSID, and chunk-tree UUID, hitting
the asserts in check_tree_block().
Reported-by: Johannes Thumshirn <Johannes.Thumshirn@wdc.com>
Signed-off-by: Naohiro Aota <naohiro.aota@wdc.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2021-09-23 15:29:11 +00:00
|
|
|
memset_extent_buffer(node, 0, 0, sizeof(struct btrfs_header));
|
|
|
|
btrfs_set_header_bytenr(node, node->start);
|
2020-03-18 20:21:43 +00:00
|
|
|
btrfs_set_header_generation(node, trans->transid);
|
|
|
|
btrfs_set_header_backref_rev(node, BTRFS_MIXED_BACKREF_REV);
|
|
|
|
btrfs_set_header_owner(node, objectid);
|
btrfs-progs: properly format btrfs_header in btrfs_create_root()
Enabling quota in zoned mored hits the following assertion:
$ mkfs.btrfs -f -d single -m single -R quota /dev/nullb0
btrfs-progs v5.11
See http://btrfs.wiki.kernel.org for more information.
Zoned: /dev/nullb0: host-managed device detected, setting zoned feature
Resetting device zones /dev/nullb0 (1600 zones) ...
bad tree block 25395200, bytenr mismatch, want=25395200, have=0
kernel-shared/disk-io.c:549: write_tree_block: BUG_ON `1` triggered, value 1
./mkfs.btrfs(+0x26aaa)[0x564d1a7ccaaa]
./mkfs.btrfs(write_tree_block+0xb8)[0x564d1a7cee29]
./mkfs.btrfs(__commit_transaction+0x91)[0x564d1a7e3740]
./mkfs.btrfs(btrfs_commit_transaction+0x135)[0x564d1a7e39aa]
./mkfs.btrfs(main+0x1fe9)[0x564d1a7b442a]
/lib64/libc.so.6(__libc_start_main+0xcd)[0x7f36377d37fd]
./mkfs.btrfs(_start+0x2a)[0x564d1a7b1fda]
zsh: IOT instruction sudo ./mkfs.btrfs -f -d single -m single -R quota /dev/nullb0
The issue occurs because btrfs_create_root() is not formatting the root
node properly. This is fine in regular mode, because it's fortunately
reusing an once freed buffer. As the previous tree node allocation
kindly formatted the header, it will see the proper bytenr and pass the
checks.
However, we never reuse a once freed buffer on zoned filesystem. As a
result, we have zero-filled bytenr, FSID, and chunk-tree UUID, hitting
the asserts in check_tree_block().
Reported-by: Johannes Thumshirn <Johannes.Thumshirn@wdc.com>
Signed-off-by: Naohiro Aota <naohiro.aota@wdc.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2021-09-23 15:29:11 +00:00
|
|
|
write_extent_buffer(node, fs_info->fs_devices->metadata_uuid,
|
|
|
|
btrfs_header_fsid(), BTRFS_FSID_SIZE);
|
|
|
|
write_extent_buffer(node, fs_info->chunk_tree_uuid,
|
|
|
|
btrfs_header_chunk_tree_uuid(node),
|
|
|
|
BTRFS_UUID_SIZE);
|
2020-03-18 20:21:43 +00:00
|
|
|
btrfs_set_header_nritems(node, 0);
|
|
|
|
btrfs_set_header_level(node, 0);
|
|
|
|
ret = btrfs_inc_ref(trans, new_root, node, 0);
|
|
|
|
if (ret < 0)
|
|
|
|
goto free;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Special tree roots may need to modify pointers in @fs_info
|
|
|
|
* Only quota is supported yet.
|
|
|
|
*/
|
|
|
|
switch (objectid) {
|
|
|
|
case BTRFS_QUOTA_TREE_OBJECTID:
|
|
|
|
if (fs_info->quota_root) {
|
|
|
|
error("quota root already exists");
|
|
|
|
ret = -EEXIST;
|
|
|
|
goto free;
|
|
|
|
}
|
|
|
|
fs_info->quota_root = new_root;
|
|
|
|
fs_info->quota_enabled = 1;
|
|
|
|
break;
|
|
|
|
/*
|
|
|
|
* Essential trees can't be created by this function, yet.
|
|
|
|
* As we expect such skeleton exists, or a lot of functions like
|
|
|
|
* btrfs_alloc_free_block() doesn't work at all
|
|
|
|
*/
|
|
|
|
case BTRFS_ROOT_TREE_OBJECTID:
|
|
|
|
case BTRFS_EXTENT_TREE_OBJECTID:
|
|
|
|
case BTRFS_CHUNK_TREE_OBJECTID:
|
|
|
|
case BTRFS_FS_TREE_OBJECTID:
|
|
|
|
ret = -EEXIST;
|
|
|
|
goto free;
|
|
|
|
default:
|
|
|
|
/* Subvolume trees don't need special handling */
|
|
|
|
if (is_fstree(objectid))
|
|
|
|
break;
|
|
|
|
/* Other special trees are not supported yet */
|
|
|
|
ret = -ENOTTY;
|
|
|
|
goto free;
|
|
|
|
}
|
|
|
|
btrfs_mark_buffer_dirty(node);
|
|
|
|
btrfs_set_root_bytenr(&root_item, btrfs_header_bytenr(node));
|
|
|
|
btrfs_set_root_level(&root_item, 0);
|
|
|
|
btrfs_set_root_generation(&root_item, trans->transid);
|
|
|
|
btrfs_set_root_dirid(&root_item, 0);
|
|
|
|
btrfs_set_root_refs(&root_item, 1);
|
|
|
|
btrfs_set_root_used(&root_item, fs_info->nodesize);
|
|
|
|
location.objectid = objectid;
|
|
|
|
location.type = BTRFS_ROOT_ITEM_KEY;
|
|
|
|
location.offset = 0;
|
|
|
|
|
|
|
|
ret = btrfs_insert_root(trans, fs_info->tree_root, &location, &root_item);
|
|
|
|
if (ret < 0)
|
|
|
|
goto free;
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
free:
|
|
|
|
free_extent_buffer(node);
|
|
|
|
free(new_root);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-05-29 20:35:30 +00:00
|
|
|
/*
|
|
|
|
* check if the tree block can be shared by multiple trees
|
|
|
|
*/
|
2013-08-14 23:16:41 +00:00
|
|
|
static int btrfs_block_can_be_shared(struct btrfs_root *root,
|
|
|
|
struct extent_buffer *buf)
|
2009-05-29 20:35:30 +00:00
|
|
|
{
|
|
|
|
/*
|
2016-05-11 23:50:36 +00:00
|
|
|
* Tree blocks not in reference counted trees and tree roots
|
2009-05-29 20:35:30 +00:00
|
|
|
* are never shared. If a block was allocated after the last
|
|
|
|
* snapshot and the block was not allocated by tree relocation,
|
|
|
|
* we know the block is not shared.
|
|
|
|
*/
|
|
|
|
if (root->ref_cows &&
|
|
|
|
buf != root->node && buf != root->commit_root &&
|
|
|
|
(btrfs_header_generation(buf) <=
|
|
|
|
btrfs_root_last_snapshot(&root->root_item) ||
|
|
|
|
btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static noinline int update_ref_for_cow(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root,
|
|
|
|
struct extent_buffer *buf,
|
|
|
|
struct extent_buffer *cow)
|
|
|
|
{
|
|
|
|
u64 refs;
|
|
|
|
u64 owner;
|
|
|
|
u64 flags;
|
|
|
|
u64 new_flags = 0;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Backrefs update rules:
|
|
|
|
*
|
|
|
|
* Always use full backrefs for extent pointers in tree block
|
|
|
|
* allocated by tree relocation.
|
|
|
|
*
|
|
|
|
* If a shared tree block is no longer referenced by its owner
|
|
|
|
* tree (btrfs_header_owner(buf) == root->root_key.objectid),
|
|
|
|
* use full backrefs for extent pointers in tree block.
|
|
|
|
*
|
|
|
|
* If a tree block is been relocating
|
|
|
|
* (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID),
|
|
|
|
* use full backrefs for extent pointers in tree block.
|
|
|
|
* The reason for this is some operations (such as drop tree)
|
|
|
|
* are only allowed for blocks use full backrefs.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (btrfs_block_can_be_shared(root, buf)) {
|
2018-05-28 06:36:47 +00:00
|
|
|
ret = btrfs_lookup_extent_info(trans, trans->fs_info,
|
|
|
|
buf->start,
|
2013-03-15 19:32:16 +00:00
|
|
|
btrfs_header_level(buf), 1,
|
|
|
|
&refs, &flags);
|
2009-05-29 20:35:30 +00:00
|
|
|
BUG_ON(ret);
|
|
|
|
BUG_ON(refs == 0);
|
|
|
|
} else {
|
|
|
|
refs = 1;
|
|
|
|
if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
|
|
|
|
btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
|
|
|
|
flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
|
|
|
|
else
|
|
|
|
flags = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
owner = btrfs_header_owner(buf);
|
|
|
|
BUG_ON(!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) &&
|
|
|
|
owner == BTRFS_TREE_RELOC_OBJECTID);
|
|
|
|
|
|
|
|
if (refs > 1) {
|
|
|
|
if ((owner == root->root_key.objectid ||
|
|
|
|
root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) &&
|
|
|
|
!(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) {
|
|
|
|
ret = btrfs_inc_ref(trans, root, buf, 1);
|
|
|
|
BUG_ON(ret);
|
|
|
|
|
|
|
|
if (root->root_key.objectid ==
|
|
|
|
BTRFS_TREE_RELOC_OBJECTID) {
|
|
|
|
ret = btrfs_dec_ref(trans, root, buf, 0);
|
|
|
|
BUG_ON(ret);
|
|
|
|
ret = btrfs_inc_ref(trans, root, cow, 1);
|
|
|
|
BUG_ON(ret);
|
|
|
|
}
|
|
|
|
new_flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
|
|
|
|
} else {
|
|
|
|
|
|
|
|
if (root->root_key.objectid ==
|
|
|
|
BTRFS_TREE_RELOC_OBJECTID)
|
|
|
|
ret = btrfs_inc_ref(trans, root, cow, 1);
|
|
|
|
else
|
|
|
|
ret = btrfs_inc_ref(trans, root, cow, 0);
|
|
|
|
BUG_ON(ret);
|
|
|
|
}
|
|
|
|
if (new_flags != 0) {
|
2018-05-28 06:36:48 +00:00
|
|
|
ret = btrfs_set_block_flags(trans, buf->start,
|
2013-03-15 19:32:16 +00:00
|
|
|
btrfs_header_level(buf),
|
|
|
|
new_flags);
|
2009-05-29 20:35:30 +00:00
|
|
|
BUG_ON(ret);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
|
|
|
|
if (root->root_key.objectid ==
|
|
|
|
BTRFS_TREE_RELOC_OBJECTID)
|
|
|
|
ret = btrfs_inc_ref(trans, root, cow, 1);
|
|
|
|
else
|
|
|
|
ret = btrfs_inc_ref(trans, root, cow, 0);
|
|
|
|
BUG_ON(ret);
|
|
|
|
ret = btrfs_dec_ref(trans, root, buf, 1);
|
|
|
|
BUG_ON(ret);
|
|
|
|
}
|
2018-05-28 06:36:45 +00:00
|
|
|
clean_tree_block(buf);
|
2009-05-29 20:35:30 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
int __btrfs_cow_block(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root,
|
|
|
|
struct extent_buffer *buf,
|
|
|
|
struct extent_buffer *parent, int parent_slot,
|
|
|
|
struct extent_buffer **cow_ret,
|
|
|
|
u64 search_start, u64 empty_size)
|
2007-03-02 21:08:05 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *cow;
|
2009-05-29 20:35:30 +00:00
|
|
|
struct btrfs_disk_key disk_key;
|
2008-01-04 15:38:22 +00:00
|
|
|
int level;
|
|
|
|
|
|
|
|
WARN_ON(root->ref_cows && trans->transid !=
|
|
|
|
root->fs_info->running_transaction->transid);
|
|
|
|
WARN_ON(root->ref_cows && trans->transid != root->last_trans);
|
|
|
|
|
2009-05-29 20:35:30 +00:00
|
|
|
level = btrfs_header_level(buf);
|
|
|
|
|
|
|
|
if (level == 0)
|
|
|
|
btrfs_item_key(buf, &disk_key, 0);
|
2008-09-23 16:29:10 +00:00
|
|
|
else
|
2009-05-29 20:35:30 +00:00
|
|
|
btrfs_node_key(buf, &disk_key, 0);
|
2008-09-23 16:29:10 +00:00
|
|
|
|
2009-05-29 20:35:30 +00:00
|
|
|
cow = btrfs_alloc_free_block(trans, root, buf->len,
|
|
|
|
root->root_key.objectid, &disk_key,
|
2008-09-23 16:29:10 +00:00
|
|
|
level, search_start, empty_size);
|
2008-01-04 15:38:22 +00:00
|
|
|
if (IS_ERR(cow))
|
|
|
|
return PTR_ERR(cow);
|
|
|
|
|
|
|
|
copy_extent_buffer(cow, buf, 0, 0, cow->len);
|
|
|
|
btrfs_set_header_bytenr(cow, cow->start);
|
|
|
|
btrfs_set_header_generation(cow, trans->transid);
|
2009-05-29 20:35:30 +00:00
|
|
|
btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
|
|
|
|
btrfs_clear_header_flag(cow, BTRFS_HEADER_FLAG_WRITTEN |
|
|
|
|
BTRFS_HEADER_FLAG_RELOC);
|
|
|
|
if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID)
|
|
|
|
btrfs_set_header_flag(cow, BTRFS_HEADER_FLAG_RELOC);
|
|
|
|
else
|
|
|
|
btrfs_set_header_owner(cow, root->root_key.objectid);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2018-10-11 15:04:02 +00:00
|
|
|
write_extent_buffer(cow, root->fs_info->fs_devices->metadata_uuid,
|
2013-10-01 09:59:22 +00:00
|
|
|
btrfs_header_fsid(), BTRFS_FSID_SIZE);
|
2008-11-18 15:40:06 +00:00
|
|
|
|
2013-10-01 13:00:19 +00:00
|
|
|
WARN_ON(!(buf->flags & EXTENT_BAD_TRANSID) &&
|
|
|
|
btrfs_header_generation(buf) > trans->transid);
|
2009-05-29 20:35:30 +00:00
|
|
|
|
|
|
|
update_ref_for_cow(trans, root, buf, cow);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-03-02 21:08:05 +00:00
|
|
|
if (buf == root->node) {
|
|
|
|
root->node = cow;
|
2008-01-04 15:38:22 +00:00
|
|
|
extent_buffer_get(cow);
|
2009-05-29 20:35:30 +00:00
|
|
|
|
|
|
|
btrfs_free_extent(trans, root, buf->start, buf->len,
|
|
|
|
0, root->root_key.objectid, level, 0);
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(buf);
|
2008-03-24 19:03:18 +00:00
|
|
|
add_root_to_dirty_list(root);
|
2007-03-02 21:08:05 +00:00
|
|
|
} else {
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_node_blockptr(parent, parent_slot,
|
|
|
|
cow->start);
|
|
|
|
WARN_ON(trans->transid == 0);
|
|
|
|
btrfs_set_node_ptr_generation(parent, parent_slot,
|
2007-12-09 18:46:24 +00:00
|
|
|
trans->transid);
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_mark_buffer_dirty(parent);
|
|
|
|
WARN_ON(btrfs_header_generation(parent) != trans->transid);
|
2009-05-29 20:35:30 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_free_extent(trans, root, buf->start, buf->len,
|
btrfs-progs: Always pass 0 for offset when calling btrfs_free_extent for btree blocks.
Currently some instances of btrfs_free_extent are called with the
last parameter ("offset") being set to 1. This makes no sense, since
offset is used for data extents. I suspect this is a left-over from
95d3f20b51e9 ("Mixed back reference (FORWARD ROLLING FORMAT CHANGE)")
since this commit changed the signature of the function from :
-int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
- *root, u64 bytenr, u64 num_bytes, u64 parent,
- u64 root_objectid, u64 ref_generation,
- u64 owner_objectid, int pin);
to
+int btrfs_free_extent(struct btrfs_trans_handle *trans,
+ struct btrfs_root *root,
+ u64 bytenr, u64 num_bytes, u64 parent,
+ u64 root_objectid, u64 owner, u64 offset);
I.e the last parameter was "pin" and not offset. So these are just
leftovers with no semantic meaning. Fix this by passing 0.
Signed-off-by: Nikolay Borisov <nborisov@suse.com>
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2018-06-08 12:47:52 +00:00
|
|
|
0, root->root_key.objectid, level, 0);
|
2007-03-02 21:08:05 +00:00
|
|
|
}
|
2013-10-01 13:00:19 +00:00
|
|
|
if (!list_empty(&buf->recow)) {
|
|
|
|
list_del_init(&buf->recow);
|
|
|
|
free_extent_buffer(buf);
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(buf);
|
|
|
|
btrfs_mark_buffer_dirty(cow);
|
|
|
|
*cow_ret = cow;
|
2007-03-02 21:08:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-05-29 20:35:30 +00:00
|
|
|
static inline int should_cow_block(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root,
|
|
|
|
struct extent_buffer *buf)
|
|
|
|
{
|
|
|
|
if (btrfs_header_generation(buf) == trans->transid &&
|
|
|
|
!btrfs_header_flag(buf, BTRFS_HEADER_FLAG_WRITTEN) &&
|
|
|
|
!(root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID &&
|
|
|
|
btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC)))
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
int btrfs_cow_block(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root, struct extent_buffer *buf,
|
|
|
|
struct extent_buffer *parent, int parent_slot,
|
|
|
|
struct extent_buffer **cow_ret)
|
2007-04-23 19:56:27 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
u64 search_start;
|
|
|
|
int ret;
|
|
|
|
/*
|
|
|
|
if (trans->transaction != root->fs_info->running_transaction) {
|
2021-06-11 21:07:50 +00:00
|
|
|
printk(KERN_CRIT "trans %llu running %llu\n", trans->transid,
|
2008-01-04 15:38:22 +00:00
|
|
|
root->fs_info->running_transaction->transid);
|
|
|
|
WARN_ON(1);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
if (trans->transid != root->fs_info->generation) {
|
2008-04-01 14:52:22 +00:00
|
|
|
printk(KERN_CRIT "trans %llu running %llu\n",
|
|
|
|
(unsigned long long)trans->transid,
|
|
|
|
(unsigned long long)root->fs_info->generation);
|
2008-01-04 15:38:22 +00:00
|
|
|
WARN_ON(1);
|
|
|
|
}
|
2009-05-29 20:35:30 +00:00
|
|
|
if (!should_cow_block(trans, root, buf)) {
|
2008-01-04 15:38:22 +00:00
|
|
|
*cow_ret = buf;
|
2007-04-23 19:56:27 +00:00
|
|
|
return 0;
|
2008-01-04 15:38:22 +00:00
|
|
|
}
|
|
|
|
|
2017-01-24 03:03:05 +00:00
|
|
|
search_start = buf->start & ~((u64)SZ_1G - 1);
|
2008-01-04 15:38:22 +00:00
|
|
|
ret = __btrfs_cow_block(trans, root, buf, parent,
|
|
|
|
parent_slot, cow_ret, search_start, 0);
|
|
|
|
return ret;
|
2007-04-23 19:56:27 +00:00
|
|
|
}
|
|
|
|
|
2018-10-12 07:41:53 +00:00
|
|
|
int btrfs_comp_cpu_keys(const struct btrfs_key *k1, const struct btrfs_key *k2)
|
2007-01-26 20:51:26 +00:00
|
|
|
{
|
2014-01-07 20:19:35 +00:00
|
|
|
if (k1->objectid > k2->objectid)
|
2007-01-26 20:51:26 +00:00
|
|
|
return 1;
|
2014-01-07 20:19:35 +00:00
|
|
|
if (k1->objectid < k2->objectid)
|
2007-01-26 20:51:26 +00:00
|
|
|
return -1;
|
2014-01-07 20:19:35 +00:00
|
|
|
if (k1->type > k2->type)
|
2007-03-29 19:15:49 +00:00
|
|
|
return 1;
|
2014-01-07 20:19:35 +00:00
|
|
|
if (k1->type < k2->type)
|
2007-03-29 19:15:49 +00:00
|
|
|
return -1;
|
2014-01-07 20:19:35 +00:00
|
|
|
if (k1->offset > k2->offset)
|
2007-04-17 19:40:34 +00:00
|
|
|
return 1;
|
2014-01-07 20:19:35 +00:00
|
|
|
if (k1->offset < k2->offset)
|
2007-04-17 19:40:34 +00:00
|
|
|
return -1;
|
2007-01-26 20:51:26 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2007-02-02 16:05:29 +00:00
|
|
|
|
2014-01-07 20:19:35 +00:00
|
|
|
/*
|
|
|
|
* compare two keys in a memcmp fashion
|
|
|
|
*/
|
2018-10-12 07:41:53 +00:00
|
|
|
static int btrfs_comp_keys(struct btrfs_disk_key *disk,
|
|
|
|
const struct btrfs_key *k2)
|
2014-01-07 20:19:35 +00:00
|
|
|
{
|
|
|
|
struct btrfs_key k1;
|
|
|
|
|
|
|
|
btrfs_disk_key_to_cpu(&k1, disk);
|
|
|
|
return btrfs_comp_cpu_keys(&k1, k2);
|
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
/*
|
|
|
|
* The leaf data grows from end-to-front in the node.
|
|
|
|
* this returns the address of the start of the last item,
|
|
|
|
* which is the stop of the leaf data stack
|
|
|
|
*/
|
2021-09-14 09:05:53 +00:00
|
|
|
static inline unsigned int leaf_data_end(const struct extent_buffer *leaf)
|
2008-01-04 15:38:22 +00:00
|
|
|
{
|
|
|
|
u32 nr = btrfs_header_nritems(leaf);
|
|
|
|
if (nr == 0)
|
2021-09-14 09:05:53 +00:00
|
|
|
return BTRFS_LEAF_DATA_SIZE(leaf->fs_info);
|
2008-01-04 15:38:22 +00:00
|
|
|
return btrfs_item_offset_nr(leaf, nr - 1);
|
|
|
|
}
|
|
|
|
|
2021-09-04 01:31:30 +00:00
|
|
|
static void generic_err(const struct extent_buffer *buf, int slot,
|
|
|
|
const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
fprintf(stderr, "corrupt %s: root=%lld block=%llu slot=%d, ",
|
|
|
|
btrfs_header_level(buf) == 0 ? "leaf": "node",
|
|
|
|
btrfs_header_owner(buf), btrfs_header_bytenr(buf), slot);
|
|
|
|
va_start(args, fmt);
|
|
|
|
vfprintf(stderr, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
|
2014-01-07 20:19:35 +00:00
|
|
|
enum btrfs_tree_block_status
|
2019-03-07 11:31:30 +00:00
|
|
|
btrfs_check_node(struct btrfs_fs_info *fs_info,
|
2021-09-04 01:31:31 +00:00
|
|
|
struct btrfs_key *parent_key, struct extent_buffer *node)
|
2007-02-28 21:35:06 +00:00
|
|
|
{
|
2021-09-04 01:31:31 +00:00
|
|
|
unsigned long nr = btrfs_header_nritems(node);
|
|
|
|
struct btrfs_key key, next_key;
|
|
|
|
int slot;
|
|
|
|
int level = btrfs_header_level(node);
|
|
|
|
u64 bytenr;
|
2014-01-07 20:19:35 +00:00
|
|
|
enum btrfs_tree_block_status ret = BTRFS_TREE_BLOCK_INVALID_NRITEMS;
|
2007-02-28 21:35:06 +00:00
|
|
|
|
2021-09-04 01:31:31 +00:00
|
|
|
if (level <= 0 || level >= BTRFS_MAX_LEVEL) {
|
|
|
|
generic_err(node, 0,
|
|
|
|
"invalid level for node, have %d expect [1, %d]",
|
|
|
|
level, BTRFS_MAX_LEVEL - 1);
|
|
|
|
ret = BTRFS_TREE_BLOCK_INVALID_LEVEL;
|
2012-02-21 19:37:21 +00:00
|
|
|
goto fail;
|
2021-09-04 01:31:31 +00:00
|
|
|
}
|
|
|
|
if (nr == 0 || nr > BTRFS_NODEPTRS_PER_BLOCK(fs_info)) {
|
|
|
|
generic_err(node, 0,
|
|
|
|
"corrupt node: root=%llu block=%llu, nritems too %s, have %lu expect range [1,%u]",
|
|
|
|
btrfs_header_owner(node), node->start,
|
|
|
|
nr == 0 ? "small" : "large", nr,
|
|
|
|
BTRFS_NODEPTRS_PER_BLOCK(fs_info));
|
|
|
|
ret = BTRFS_TREE_BLOCK_INVALID_NRITEMS;
|
|
|
|
goto fail;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2021-09-04 01:31:31 +00:00
|
|
|
for (slot = 0; slot < nr - 1; slot++) {
|
|
|
|
bytenr = btrfs_node_blockptr(node, slot);
|
|
|
|
btrfs_node_key_to_cpu(node, &key, slot);
|
|
|
|
btrfs_node_key_to_cpu(node, &next_key, slot + 1);
|
|
|
|
|
|
|
|
if (!bytenr) {
|
|
|
|
generic_err(node, slot,
|
|
|
|
"invalid NULL node pointer");
|
|
|
|
ret = BTRFS_TREE_BLOCK_INVALID_BLOCKPTR;
|
2012-02-21 19:37:21 +00:00
|
|
|
goto fail;
|
2021-09-04 01:31:31 +00:00
|
|
|
}
|
|
|
|
if (!IS_ALIGNED(bytenr, fs_info->sectorsize)) {
|
|
|
|
generic_err(node, slot,
|
|
|
|
"unaligned pointer, have %llu should be aligned to %u",
|
|
|
|
bytenr, fs_info->sectorsize);
|
|
|
|
ret = BTRFS_TREE_BLOCK_INVALID_BLOCKPTR;
|
|
|
|
goto fail;
|
|
|
|
}
|
2021-09-04 01:31:29 +00:00
|
|
|
|
2021-09-04 01:31:31 +00:00
|
|
|
if (btrfs_comp_cpu_keys(&key, &next_key) >= 0) {
|
|
|
|
generic_err(node, slot,
|
|
|
|
"bad key order, current (%llu %u %llu) next (%llu %u %llu)",
|
|
|
|
key.objectid, key.type, key.offset,
|
|
|
|
next_key.objectid, next_key.type,
|
|
|
|
next_key.offset);
|
|
|
|
ret = BTRFS_TREE_BLOCK_BAD_KEY_ORDER;
|
2012-02-21 19:37:21 +00:00
|
|
|
goto fail;
|
2021-09-04 01:31:31 +00:00
|
|
|
}
|
2007-02-28 21:35:06 +00:00
|
|
|
}
|
2014-01-07 20:19:35 +00:00
|
|
|
return BTRFS_TREE_BLOCK_CLEAN;
|
2012-02-21 19:37:21 +00:00
|
|
|
fail:
|
2021-09-04 01:31:31 +00:00
|
|
|
if (btrfs_header_owner(node) == BTRFS_EXTENT_TREE_OBJECTID) {
|
2012-02-21 19:37:21 +00:00
|
|
|
if (parent_key)
|
2021-09-04 01:31:29 +00:00
|
|
|
memcpy(&key, parent_key, sizeof(struct btrfs_key));
|
2012-02-21 19:37:21 +00:00
|
|
|
else
|
2021-09-04 01:31:31 +00:00
|
|
|
btrfs_node_key_to_cpu(node, &key, 0);
|
2021-09-04 01:31:29 +00:00
|
|
|
btrfs_add_corrupt_extent_record(fs_info, &key,
|
2021-09-04 01:31:31 +00:00
|
|
|
node->start, node->len,
|
|
|
|
btrfs_header_level(node));
|
2012-02-21 19:37:21 +00:00
|
|
|
}
|
2014-01-07 20:19:35 +00:00
|
|
|
return ret;
|
2007-02-28 21:35:06 +00:00
|
|
|
}
|
|
|
|
|
2014-01-07 20:19:35 +00:00
|
|
|
enum btrfs_tree_block_status
|
2019-03-07 11:31:30 +00:00
|
|
|
btrfs_check_leaf(struct btrfs_fs_info *fs_info,
|
2021-09-04 01:31:30 +00:00
|
|
|
struct btrfs_key *parent_key, struct extent_buffer *leaf)
|
2007-02-28 21:35:06 +00:00
|
|
|
{
|
2021-09-04 01:31:30 +00:00
|
|
|
/* No valid key type is 0, so all key should be larger than this key */
|
|
|
|
struct btrfs_key prev_key = {0, 0, 0};
|
2021-09-04 01:31:29 +00:00
|
|
|
struct btrfs_key key;
|
2021-09-04 01:31:30 +00:00
|
|
|
u32 nritems = btrfs_header_nritems(leaf);
|
|
|
|
int slot;
|
|
|
|
int ret;
|
2013-05-09 13:56:19 +00:00
|
|
|
|
2021-09-04 01:31:30 +00:00
|
|
|
if (btrfs_header_level(leaf) != 0) {
|
|
|
|
generic_err(leaf, 0,
|
|
|
|
"invalid level for leaf, have %d expect 0",
|
|
|
|
btrfs_header_level(leaf));
|
2014-01-07 20:19:35 +00:00
|
|
|
ret = BTRFS_TREE_BLOCK_INVALID_LEVEL;
|
2012-02-21 19:37:21 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
2007-03-12 16:01:18 +00:00
|
|
|
|
|
|
|
if (nritems == 0)
|
2021-09-04 01:31:30 +00:00
|
|
|
return 0;
|
2021-09-04 01:31:29 +00:00
|
|
|
|
2021-09-04 01:31:30 +00:00
|
|
|
/*
|
|
|
|
* Check the following things to make sure this is a good leaf, and
|
|
|
|
* leaf users won't need to bother with similar sanity checks:
|
|
|
|
*
|
|
|
|
* 1) key ordering
|
|
|
|
* 2) item offset and size
|
|
|
|
* No overlap, no hole, all inside the leaf.
|
|
|
|
* 3) item content
|
|
|
|
* If possible, do comprehensive sanity check.
|
|
|
|
* NOTE: All checks must only rely on the item data itself.
|
|
|
|
*/
|
|
|
|
for (slot = 0; slot < nritems; slot++) {
|
|
|
|
u32 item_end_expected;
|
|
|
|
|
|
|
|
btrfs_item_key_to_cpu(leaf, &key, slot);
|
|
|
|
|
|
|
|
/* Make sure the keys are in the right order */
|
|
|
|
if (btrfs_comp_cpu_keys(&prev_key, &key) >= 0) {
|
|
|
|
generic_err(leaf, slot,
|
|
|
|
"bad key order, prev (%llu %u %llu) current (%llu %u %llu)",
|
|
|
|
prev_key.objectid, prev_key.type,
|
|
|
|
prev_key.offset, key.objectid, key.type,
|
|
|
|
key.offset);
|
2014-01-07 20:19:35 +00:00
|
|
|
ret = BTRFS_TREE_BLOCK_BAD_KEY_ORDER;
|
2012-02-21 19:37:21 +00:00
|
|
|
goto fail;
|
2008-01-04 15:38:22 +00:00
|
|
|
}
|
2021-09-04 01:31:30 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure the offset and ends are right, remember that the
|
|
|
|
* item data starts at the end of the leaf and grows towards the
|
|
|
|
* front.
|
|
|
|
*/
|
|
|
|
if (slot == 0)
|
|
|
|
item_end_expected = BTRFS_LEAF_DATA_SIZE(fs_info);
|
|
|
|
else
|
|
|
|
item_end_expected = btrfs_item_offset_nr(leaf,
|
|
|
|
slot - 1);
|
|
|
|
if (btrfs_item_end_nr(leaf, slot) != item_end_expected) {
|
|
|
|
generic_err(leaf, slot,
|
|
|
|
"unexpected item end, have %u expect %u",
|
|
|
|
btrfs_item_end_nr(leaf, slot),
|
|
|
|
item_end_expected);
|
2014-01-07 20:19:35 +00:00
|
|
|
ret = BTRFS_TREE_BLOCK_INVALID_OFFSETS;
|
2012-02-21 19:37:21 +00:00
|
|
|
goto fail;
|
2008-01-04 15:38:22 +00:00
|
|
|
}
|
2021-09-04 01:31:30 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Check to make sure that we don't point outside of the leaf,
|
|
|
|
* just in case all the items are consistent to each other, but
|
|
|
|
* all point outside of the leaf.
|
|
|
|
*/
|
|
|
|
if (btrfs_item_end_nr(leaf, slot) >
|
2019-03-07 11:31:30 +00:00
|
|
|
BTRFS_LEAF_DATA_SIZE(fs_info)) {
|
2021-09-04 01:31:30 +00:00
|
|
|
generic_err(leaf, slot,
|
|
|
|
"slot end outside of leaf, have %u expect range [0, %u]",
|
|
|
|
btrfs_item_end_nr(leaf, slot),
|
|
|
|
BTRFS_LEAF_DATA_SIZE(fs_info));
|
2014-01-07 20:19:35 +00:00
|
|
|
ret = BTRFS_TREE_BLOCK_INVALID_OFFSETS;
|
2012-02-21 19:37:21 +00:00
|
|
|
goto fail;
|
2008-01-04 15:38:22 +00:00
|
|
|
}
|
2015-07-01 13:20:23 +00:00
|
|
|
|
2021-09-04 01:31:30 +00:00
|
|
|
/* Also check if the item pointer overlaps with btrfs item. */
|
|
|
|
if (btrfs_item_ptr_offset(leaf, slot) <
|
|
|
|
btrfs_item_nr_offset(slot) + sizeof(struct btrfs_item)) {
|
|
|
|
generic_err(leaf, slot,
|
|
|
|
"slot overlaps with its data, item end %lu data start %lu",
|
|
|
|
btrfs_item_nr_offset(slot) +
|
|
|
|
sizeof(struct btrfs_item),
|
|
|
|
btrfs_item_ptr_offset(leaf, slot));
|
2015-07-01 13:20:23 +00:00
|
|
|
ret = BTRFS_TREE_BLOCK_INVALID_OFFSETS;
|
|
|
|
goto fail;
|
|
|
|
}
|
2021-09-04 01:31:30 +00:00
|
|
|
|
|
|
|
prev_key.objectid = key.objectid;
|
|
|
|
prev_key.type = key.type;
|
|
|
|
prev_key.offset = key.offset;
|
2015-07-01 13:20:23 +00:00
|
|
|
}
|
|
|
|
|
2014-01-07 20:19:35 +00:00
|
|
|
return BTRFS_TREE_BLOCK_CLEAN;
|
2012-02-21 19:37:21 +00:00
|
|
|
fail:
|
2021-09-04 01:31:30 +00:00
|
|
|
if (btrfs_header_owner(leaf) == BTRFS_EXTENT_TREE_OBJECTID) {
|
2012-02-21 19:37:21 +00:00
|
|
|
if (parent_key)
|
2021-09-04 01:31:29 +00:00
|
|
|
memcpy(&key, parent_key, sizeof(struct btrfs_key));
|
2012-02-21 19:37:21 +00:00
|
|
|
else
|
2021-09-04 01:31:30 +00:00
|
|
|
btrfs_item_key_to_cpu(leaf, &key, 0);
|
2012-02-21 19:37:21 +00:00
|
|
|
|
2021-09-04 01:31:29 +00:00
|
|
|
btrfs_add_corrupt_extent_record(fs_info, &key,
|
2021-09-04 01:31:30 +00:00
|
|
|
leaf->start, leaf->len, 0);
|
2012-02-21 19:37:21 +00:00
|
|
|
}
|
2014-01-07 20:19:35 +00:00
|
|
|
return ret;
|
2007-02-28 21:35:06 +00:00
|
|
|
}
|
|
|
|
|
2019-03-07 11:31:30 +00:00
|
|
|
static int noinline check_block(struct btrfs_fs_info *fs_info,
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_path *path, int level)
|
2007-02-28 21:35:06 +00:00
|
|
|
{
|
2021-09-04 01:31:29 +00:00
|
|
|
struct btrfs_key key;
|
|
|
|
struct btrfs_key *parent_key_ptr = NULL;
|
2014-01-07 20:19:35 +00:00
|
|
|
enum btrfs_tree_block_status ret;
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2014-01-07 20:19:35 +00:00
|
|
|
if (path->skip_check_block)
|
|
|
|
return 0;
|
2012-02-21 19:37:21 +00:00
|
|
|
if (path->nodes[level + 1]) {
|
2021-09-04 01:31:29 +00:00
|
|
|
btrfs_node_key_to_cpu(path->nodes[level + 1], &key,
|
|
|
|
path->slots[level + 1]);
|
|
|
|
parent_key_ptr = &key;
|
2008-01-04 15:38:22 +00:00
|
|
|
}
|
2007-02-28 21:35:06 +00:00
|
|
|
if (level == 0)
|
2021-09-04 01:31:29 +00:00
|
|
|
ret = btrfs_check_leaf(fs_info, parent_key_ptr, path->nodes[0]);
|
2014-01-07 20:19:35 +00:00
|
|
|
else
|
2021-09-04 01:31:29 +00:00
|
|
|
ret = btrfs_check_node(fs_info, parent_key_ptr, path->nodes[level]);
|
2014-01-07 20:19:35 +00:00
|
|
|
if (ret == BTRFS_TREE_BLOCK_CLEAN)
|
|
|
|
return 0;
|
|
|
|
return -EIO;
|
2007-02-28 21:35:06 +00:00
|
|
|
}
|
|
|
|
|
2007-02-02 16:05:29 +00:00
|
|
|
/*
|
2008-01-04 15:38:22 +00:00
|
|
|
* search for key in the extent_buffer. The items start at offset p,
|
|
|
|
* and they are item_size apart. There are 'max' items in p.
|
|
|
|
*
|
2007-02-02 16:05:29 +00:00
|
|
|
* the slot in the array is returned via slot, and it points to
|
|
|
|
* the place where you would insert key if it is not found in
|
|
|
|
* the array.
|
|
|
|
*
|
|
|
|
* slot may point to max if the key is bigger than all of the keys
|
|
|
|
*/
|
2008-01-04 15:38:22 +00:00
|
|
|
static int generic_bin_search(struct extent_buffer *eb, unsigned long p,
|
2018-10-12 07:41:53 +00:00
|
|
|
int item_size, const struct btrfs_key *key,
|
2008-01-04 15:38:22 +00:00
|
|
|
int max, int *slot)
|
2007-01-26 20:51:26 +00:00
|
|
|
{
|
|
|
|
int low = 0;
|
|
|
|
int high = max;
|
|
|
|
int mid;
|
|
|
|
int ret;
|
2008-01-04 15:38:22 +00:00
|
|
|
unsigned long offset;
|
2007-03-12 20:22:34 +00:00
|
|
|
struct btrfs_disk_key *tmp;
|
2007-01-26 20:51:26 +00:00
|
|
|
|
|
|
|
while(low < high) {
|
|
|
|
mid = (low + high) / 2;
|
2008-01-04 15:38:22 +00:00
|
|
|
offset = p + mid * item_size;
|
|
|
|
|
|
|
|
tmp = (struct btrfs_disk_key *)(eb->data + offset);
|
2007-04-23 19:56:27 +00:00
|
|
|
ret = btrfs_comp_keys(tmp, key);
|
2007-01-26 20:51:26 +00:00
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
low = mid + 1;
|
|
|
|
else if (ret > 0)
|
|
|
|
high = mid;
|
|
|
|
else {
|
|
|
|
*slot = mid;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*slot = low;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2007-02-24 18:39:08 +00:00
|
|
|
/*
|
|
|
|
* simple bin_search frontend that does the right thing for
|
|
|
|
* leaves vs nodes
|
|
|
|
*/
|
2019-02-06 20:49:24 +00:00
|
|
|
int btrfs_bin_search(struct extent_buffer *eb, const struct btrfs_key *key,
|
2020-04-17 07:10:29 +00:00
|
|
|
int *slot)
|
2007-01-26 20:51:26 +00:00
|
|
|
{
|
2020-04-17 07:10:29 +00:00
|
|
|
if (btrfs_header_level(eb) == 0)
|
2008-01-04 15:38:22 +00:00
|
|
|
return generic_bin_search(eb,
|
|
|
|
offsetof(struct btrfs_leaf, items),
|
2007-03-13 00:12:07 +00:00
|
|
|
sizeof(struct btrfs_item),
|
2008-01-04 15:38:22 +00:00
|
|
|
key, btrfs_header_nritems(eb),
|
2007-03-12 16:01:18 +00:00
|
|
|
slot);
|
2013-04-26 21:06:09 +00:00
|
|
|
else
|
2008-01-04 15:38:22 +00:00
|
|
|
return generic_bin_search(eb,
|
|
|
|
offsetof(struct btrfs_node, ptrs),
|
2007-03-14 18:14:43 +00:00
|
|
|
sizeof(struct btrfs_key_ptr),
|
2008-01-04 15:38:22 +00:00
|
|
|
key, btrfs_header_nritems(eb),
|
2007-03-12 16:01:18 +00:00
|
|
|
slot);
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
|
|
|
|
2017-05-18 03:11:55 +00:00
|
|
|
struct extent_buffer *read_node_slot(struct btrfs_fs_info *fs_info,
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *parent, int slot)
|
2007-03-01 17:04:21 +00:00
|
|
|
{
|
2018-02-08 00:59:40 +00:00
|
|
|
struct extent_buffer *ret;
|
2008-05-12 17:51:24 +00:00
|
|
|
int level = btrfs_header_level(parent);
|
2018-02-08 00:59:40 +00:00
|
|
|
|
2007-03-01 17:04:21 +00:00
|
|
|
if (slot < 0)
|
|
|
|
return NULL;
|
2008-01-04 15:38:22 +00:00
|
|
|
if (slot >= btrfs_header_nritems(parent))
|
2007-03-01 17:04:21 +00:00
|
|
|
return NULL;
|
2008-05-12 17:51:24 +00:00
|
|
|
|
2013-07-05 17:44:07 +00:00
|
|
|
if (level == 0)
|
|
|
|
return NULL;
|
2008-05-12 17:51:24 +00:00
|
|
|
|
2018-02-08 00:59:40 +00:00
|
|
|
ret = read_tree_block(fs_info, btrfs_node_blockptr(parent, slot),
|
2008-05-12 17:51:24 +00:00
|
|
|
btrfs_node_ptr_generation(parent, slot));
|
2018-02-08 00:59:40 +00:00
|
|
|
if (!extent_buffer_uptodate(ret))
|
|
|
|
return ERR_PTR(-EIO);
|
|
|
|
|
|
|
|
if (btrfs_header_level(ret) != level - 1) {
|
|
|
|
error(
|
2021-01-06 10:35:50 +00:00
|
|
|
"child eb corrupted: parent bytenr=%llu item=%d parent level=%d child bytenr=%llu child level=%d",
|
|
|
|
btrfs_header_bytenr(parent), slot, btrfs_header_level(parent),
|
|
|
|
btrfs_header_bytenr(ret), btrfs_header_level(ret));
|
2018-02-08 00:59:40 +00:00
|
|
|
free_extent_buffer(ret);
|
|
|
|
return ERR_PTR(-EIO);
|
|
|
|
}
|
|
|
|
return ret;
|
2007-03-01 17:04:21 +00:00
|
|
|
}
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
static int balance_level(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root,
|
|
|
|
struct btrfs_path *path, int level)
|
2007-03-01 17:04:21 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *right = NULL;
|
|
|
|
struct extent_buffer *mid;
|
|
|
|
struct extent_buffer *left = NULL;
|
|
|
|
struct extent_buffer *parent = NULL;
|
2017-05-18 03:11:55 +00:00
|
|
|
struct btrfs_fs_info *fs_info = root->fs_info;
|
2007-03-01 17:04:21 +00:00
|
|
|
int ret = 0;
|
|
|
|
int wret;
|
|
|
|
int pslot;
|
|
|
|
int orig_slot = path->slots[level];
|
2007-03-01 20:16:26 +00:00
|
|
|
u64 orig_ptr;
|
2007-03-01 17:04:21 +00:00
|
|
|
|
|
|
|
if (level == 0)
|
|
|
|
return 0;
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
mid = path->nodes[level];
|
|
|
|
WARN_ON(btrfs_header_generation(mid) != trans->transid);
|
|
|
|
|
2007-03-13 13:28:32 +00:00
|
|
|
orig_ptr = btrfs_node_blockptr(mid, orig_slot);
|
2007-03-01 20:16:26 +00:00
|
|
|
|
2013-04-26 21:06:04 +00:00
|
|
|
if (level < BTRFS_MAX_LEVEL - 1) {
|
2008-01-04 15:38:22 +00:00
|
|
|
parent = path->nodes[level + 1];
|
2013-04-26 21:06:04 +00:00
|
|
|
pslot = path->slots[level + 1];
|
|
|
|
}
|
2007-03-01 17:04:21 +00:00
|
|
|
|
2007-03-17 18:29:23 +00:00
|
|
|
/*
|
|
|
|
* deal with the case where there is only one pointer in the root
|
|
|
|
* by promoting the node below to a root
|
|
|
|
*/
|
2008-01-04 15:38:22 +00:00
|
|
|
if (!parent) {
|
|
|
|
struct extent_buffer *child;
|
2007-03-01 17:04:21 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
if (btrfs_header_nritems(mid) != 1)
|
2007-03-01 17:04:21 +00:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* promote the child to a root */
|
2017-05-18 03:11:55 +00:00
|
|
|
child = read_node_slot(fs_info, mid, 0);
|
2015-01-28 02:12:55 +00:00
|
|
|
BUG_ON(!extent_buffer_uptodate(child));
|
2008-02-01 19:58:07 +00:00
|
|
|
ret = btrfs_cow_block(trans, root, child, mid, 0, &child);
|
|
|
|
BUG_ON(ret);
|
|
|
|
|
2007-03-01 17:04:21 +00:00
|
|
|
root->node = child;
|
2008-03-24 19:03:18 +00:00
|
|
|
add_root_to_dirty_list(root);
|
2007-03-01 17:04:21 +00:00
|
|
|
path->nodes[level] = NULL;
|
2018-05-28 06:36:45 +00:00
|
|
|
clean_tree_block(mid);
|
2007-03-01 17:04:21 +00:00
|
|
|
/* once for the path */
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(mid);
|
2009-05-29 20:35:30 +00:00
|
|
|
|
2018-06-08 12:47:47 +00:00
|
|
|
root_sub_used(root, mid->len);
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
ret = btrfs_free_extent(trans, root, mid->start, mid->len,
|
2009-05-29 20:35:30 +00:00
|
|
|
0, root->root_key.objectid,
|
btrfs-progs: Always pass 0 for offset when calling btrfs_free_extent for btree blocks.
Currently some instances of btrfs_free_extent are called with the
last parameter ("offset") being set to 1. This makes no sense, since
offset is used for data extents. I suspect this is a left-over from
95d3f20b51e9 ("Mixed back reference (FORWARD ROLLING FORMAT CHANGE)")
since this commit changed the signature of the function from :
-int btrfs_free_extent(struct btrfs_trans_handle *trans, struct btrfs_root
- *root, u64 bytenr, u64 num_bytes, u64 parent,
- u64 root_objectid, u64 ref_generation,
- u64 owner_objectid, int pin);
to
+int btrfs_free_extent(struct btrfs_trans_handle *trans,
+ struct btrfs_root *root,
+ u64 bytenr, u64 num_bytes, u64 parent,
+ u64 root_objectid, u64 owner, u64 offset);
I.e the last parameter was "pin" and not offset. So these are just
leftovers with no semantic meaning. Fix this by passing 0.
Signed-off-by: Nikolay Borisov <nborisov@suse.com>
Reviewed-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2018-06-08 12:47:52 +00:00
|
|
|
level, 0);
|
2007-03-01 17:04:21 +00:00
|
|
|
/* once for the root ptr */
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(mid);
|
|
|
|
return ret;
|
2007-03-01 17:04:21 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
if (btrfs_header_nritems(mid) >
|
2018-01-26 07:26:01 +00:00
|
|
|
BTRFS_NODEPTRS_PER_BLOCK(fs_info) / 4)
|
2007-03-01 17:04:21 +00:00
|
|
|
return 0;
|
|
|
|
|
2017-05-18 03:11:55 +00:00
|
|
|
left = read_node_slot(fs_info, parent, pslot - 1);
|
2015-01-28 02:12:55 +00:00
|
|
|
if (extent_buffer_uptodate(left)) {
|
2008-01-04 15:38:22 +00:00
|
|
|
wret = btrfs_cow_block(trans, root, left,
|
|
|
|
parent, pslot - 1, &left);
|
|
|
|
if (wret) {
|
|
|
|
ret = wret;
|
|
|
|
goto enospc;
|
|
|
|
}
|
|
|
|
}
|
2017-05-18 03:11:55 +00:00
|
|
|
right = read_node_slot(fs_info, parent, pslot + 1);
|
2015-01-28 02:12:55 +00:00
|
|
|
if (extent_buffer_uptodate(right)) {
|
2008-01-04 15:38:22 +00:00
|
|
|
wret = btrfs_cow_block(trans, root, right,
|
|
|
|
parent, pslot + 1, &right);
|
|
|
|
if (wret) {
|
|
|
|
ret = wret;
|
|
|
|
goto enospc;
|
|
|
|
}
|
|
|
|
}
|
2007-03-01 20:16:26 +00:00
|
|
|
|
|
|
|
/* first, try to make some room in the middle buffer */
|
2008-01-04 15:38:22 +00:00
|
|
|
if (left) {
|
|
|
|
orig_slot += btrfs_header_nritems(left);
|
2008-04-24 18:46:15 +00:00
|
|
|
wret = push_node_left(trans, root, left, mid, 1);
|
2007-03-01 20:16:26 +00:00
|
|
|
if (wret < 0)
|
|
|
|
ret = wret;
|
2007-03-01 17:04:21 +00:00
|
|
|
}
|
2007-03-01 20:16:26 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* then try to empty the right most buffer into the middle
|
|
|
|
*/
|
2008-01-04 15:38:22 +00:00
|
|
|
if (right) {
|
2008-04-24 14:54:32 +00:00
|
|
|
wret = push_node_left(trans, root, mid, right, 1);
|
2008-01-04 15:38:22 +00:00
|
|
|
if (wret < 0 && wret != -ENOSPC)
|
2007-03-01 20:16:26 +00:00
|
|
|
ret = wret;
|
2008-01-04 15:38:22 +00:00
|
|
|
if (btrfs_header_nritems(right) == 0) {
|
|
|
|
u64 bytenr = right->start;
|
|
|
|
u32 blocksize = right->len;
|
|
|
|
|
2018-05-28 06:36:45 +00:00
|
|
|
clean_tree_block(right);
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(right);
|
2007-03-01 17:04:21 +00:00
|
|
|
right = NULL;
|
2017-02-02 12:38:44 +00:00
|
|
|
wret = btrfs_del_ptr(root, path, level + 1, pslot + 1);
|
2007-03-01 17:04:21 +00:00
|
|
|
if (wret)
|
|
|
|
ret = wret;
|
2018-06-08 12:47:47 +00:00
|
|
|
|
2021-04-06 13:55:03 +00:00
|
|
|
root_sub_used(root, blocksize);
|
2007-10-15 20:25:14 +00:00
|
|
|
wret = btrfs_free_extent(trans, root, bytenr,
|
2009-05-29 20:35:30 +00:00
|
|
|
blocksize, 0,
|
|
|
|
root->root_key.objectid,
|
|
|
|
level, 0);
|
2007-03-01 17:04:21 +00:00
|
|
|
if (wret)
|
|
|
|
ret = wret;
|
|
|
|
} else {
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_disk_key right_key;
|
|
|
|
btrfs_node_key(right, &right_key, 0);
|
|
|
|
btrfs_set_node_key(parent, &right_key, pslot + 1);
|
|
|
|
btrfs_mark_buffer_dirty(parent);
|
2007-03-01 17:04:21 +00:00
|
|
|
}
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
if (btrfs_header_nritems(mid) == 1) {
|
2007-03-01 20:16:26 +00:00
|
|
|
/*
|
|
|
|
* we're not allowed to leave a node with one item in the
|
|
|
|
* tree during a delete. A deletion from lower in the tree
|
|
|
|
* could try to delete the only pointer in this node.
|
|
|
|
* So, pull some keys from the left.
|
|
|
|
* There has to be a left pointer at this point because
|
|
|
|
* otherwise we would have pulled some pointers from the
|
|
|
|
* right
|
|
|
|
*/
|
2008-01-04 15:38:22 +00:00
|
|
|
BUG_ON(!left);
|
|
|
|
wret = balance_node_right(trans, root, mid, left);
|
|
|
|
if (wret < 0) {
|
2007-03-01 20:16:26 +00:00
|
|
|
ret = wret;
|
2008-01-04 15:38:22 +00:00
|
|
|
goto enospc;
|
|
|
|
}
|
2008-04-24 18:46:15 +00:00
|
|
|
if (wret == 1) {
|
|
|
|
wret = push_node_left(trans, root, left, mid, 1);
|
|
|
|
if (wret < 0)
|
|
|
|
ret = wret;
|
|
|
|
}
|
2007-03-01 20:16:26 +00:00
|
|
|
BUG_ON(wret == 1);
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
if (btrfs_header_nritems(mid) == 0) {
|
2007-03-01 20:16:26 +00:00
|
|
|
/* we've managed to empty the middle node, drop it */
|
2008-01-04 15:38:22 +00:00
|
|
|
u64 bytenr = mid->start;
|
|
|
|
u32 blocksize = mid->len;
|
2018-05-28 06:36:45 +00:00
|
|
|
clean_tree_block(mid);
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(mid);
|
2007-03-01 17:04:21 +00:00
|
|
|
mid = NULL;
|
2017-02-02 12:38:44 +00:00
|
|
|
wret = btrfs_del_ptr(root, path, level + 1, pslot);
|
2007-03-01 17:04:21 +00:00
|
|
|
if (wret)
|
|
|
|
ret = wret;
|
2018-06-08 12:47:47 +00:00
|
|
|
|
|
|
|
root_sub_used(root, blocksize);
|
2008-01-04 15:38:22 +00:00
|
|
|
wret = btrfs_free_extent(trans, root, bytenr, blocksize,
|
2009-05-29 20:35:30 +00:00
|
|
|
0, root->root_key.objectid,
|
|
|
|
level, 0);
|
2007-03-01 17:04:21 +00:00
|
|
|
if (wret)
|
|
|
|
ret = wret;
|
2007-03-01 20:16:26 +00:00
|
|
|
} else {
|
|
|
|
/* update the parent key to reflect our changes */
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_disk_key mid_key;
|
|
|
|
btrfs_node_key(mid, &mid_key, 0);
|
|
|
|
btrfs_set_node_key(parent, &mid_key, pslot);
|
|
|
|
btrfs_mark_buffer_dirty(parent);
|
2007-03-01 20:16:26 +00:00
|
|
|
}
|
2007-03-01 17:04:21 +00:00
|
|
|
|
2007-03-01 20:16:26 +00:00
|
|
|
/* update the path */
|
2008-01-04 15:38:22 +00:00
|
|
|
if (left) {
|
|
|
|
if (btrfs_header_nritems(left) > orig_slot) {
|
|
|
|
extent_buffer_get(left);
|
|
|
|
path->nodes[level] = left;
|
2007-03-01 17:04:21 +00:00
|
|
|
path->slots[level + 1] -= 1;
|
|
|
|
path->slots[level] = orig_slot;
|
2008-01-04 15:38:22 +00:00
|
|
|
if (mid)
|
|
|
|
free_extent_buffer(mid);
|
2007-03-01 17:04:21 +00:00
|
|
|
} else {
|
2008-01-04 15:38:22 +00:00
|
|
|
orig_slot -= btrfs_header_nritems(left);
|
2007-03-01 17:04:21 +00:00
|
|
|
path->slots[level] = orig_slot;
|
|
|
|
}
|
|
|
|
}
|
2007-03-01 20:16:26 +00:00
|
|
|
/* double check we haven't messed things up */
|
2019-03-07 11:31:30 +00:00
|
|
|
check_block(root->fs_info, path, level);
|
2008-01-04 15:38:22 +00:00
|
|
|
if (orig_ptr !=
|
|
|
|
btrfs_node_blockptr(path->nodes[level], path->slots[level]))
|
2007-03-01 20:16:26 +00:00
|
|
|
BUG();
|
2008-01-04 15:38:22 +00:00
|
|
|
enospc:
|
|
|
|
if (right)
|
|
|
|
free_extent_buffer(right);
|
|
|
|
if (left)
|
|
|
|
free_extent_buffer(left);
|
2007-03-01 17:04:21 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
/* returns zero if the push worked, non-zero otherwise */
|
|
|
|
static int noinline push_nodes_for_insert(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root,
|
|
|
|
struct btrfs_path *path, int level)
|
2007-12-05 15:41:38 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *right = NULL;
|
|
|
|
struct extent_buffer *mid;
|
|
|
|
struct extent_buffer *left = NULL;
|
|
|
|
struct extent_buffer *parent = NULL;
|
2017-05-18 03:11:55 +00:00
|
|
|
struct btrfs_fs_info *fs_info = root->fs_info;
|
2007-12-05 15:41:38 +00:00
|
|
|
int ret = 0;
|
|
|
|
int wret;
|
|
|
|
int pslot;
|
|
|
|
int orig_slot = path->slots[level];
|
|
|
|
|
|
|
|
if (level == 0)
|
|
|
|
return 1;
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
mid = path->nodes[level];
|
|
|
|
WARN_ON(btrfs_header_generation(mid) != trans->transid);
|
2007-12-05 15:41:38 +00:00
|
|
|
|
2013-04-26 21:06:04 +00:00
|
|
|
if (level < BTRFS_MAX_LEVEL - 1) {
|
2008-01-04 15:38:22 +00:00
|
|
|
parent = path->nodes[level + 1];
|
2013-04-26 21:06:04 +00:00
|
|
|
pslot = path->slots[level + 1];
|
|
|
|
}
|
2007-12-05 15:41:38 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
if (!parent)
|
2007-12-05 15:41:38 +00:00
|
|
|
return 1;
|
|
|
|
|
2017-05-18 03:11:55 +00:00
|
|
|
left = read_node_slot(fs_info, parent, pslot - 1);
|
2007-12-05 15:41:38 +00:00
|
|
|
|
|
|
|
/* first, try to make some room in the middle buffer */
|
2015-01-28 02:12:55 +00:00
|
|
|
if (extent_buffer_uptodate(left)) {
|
2007-12-05 15:41:38 +00:00
|
|
|
u32 left_nr;
|
2008-01-04 15:38:22 +00:00
|
|
|
left_nr = btrfs_header_nritems(left);
|
2018-01-26 07:26:01 +00:00
|
|
|
if (left_nr >= BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 1) {
|
2007-12-05 15:41:38 +00:00
|
|
|
wret = 1;
|
|
|
|
} else {
|
2008-01-04 15:38:22 +00:00
|
|
|
ret = btrfs_cow_block(trans, root, left, parent,
|
|
|
|
pslot - 1, &left);
|
2007-12-05 15:41:38 +00:00
|
|
|
if (ret)
|
|
|
|
wret = 1;
|
|
|
|
else {
|
|
|
|
wret = push_node_left(trans, root,
|
2008-04-24 14:54:32 +00:00
|
|
|
left, mid, 0);
|
2007-12-05 15:41:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (wret < 0)
|
|
|
|
ret = wret;
|
|
|
|
if (wret == 0) {
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_disk_key disk_key;
|
2007-12-05 15:41:38 +00:00
|
|
|
orig_slot += left_nr;
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_node_key(mid, &disk_key, 0);
|
|
|
|
btrfs_set_node_key(parent, &disk_key, pslot);
|
|
|
|
btrfs_mark_buffer_dirty(parent);
|
|
|
|
if (btrfs_header_nritems(left) > orig_slot) {
|
|
|
|
path->nodes[level] = left;
|
2007-12-05 15:41:38 +00:00
|
|
|
path->slots[level + 1] -= 1;
|
|
|
|
path->slots[level] = orig_slot;
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(mid);
|
2007-12-05 15:41:38 +00:00
|
|
|
} else {
|
|
|
|
orig_slot -=
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_header_nritems(left);
|
2007-12-05 15:41:38 +00:00
|
|
|
path->slots[level] = orig_slot;
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(left);
|
2007-12-05 15:41:38 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(left);
|
2007-12-05 15:41:38 +00:00
|
|
|
}
|
2017-05-18 03:11:55 +00:00
|
|
|
right= read_node_slot(fs_info, parent, pslot + 1);
|
2007-12-05 15:41:38 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* then try to empty the right most buffer into the middle
|
|
|
|
*/
|
2015-01-28 02:12:55 +00:00
|
|
|
if (extent_buffer_uptodate(right)) {
|
2007-12-05 15:41:38 +00:00
|
|
|
u32 right_nr;
|
2008-01-04 15:38:22 +00:00
|
|
|
right_nr = btrfs_header_nritems(right);
|
2018-01-26 07:26:01 +00:00
|
|
|
if (right_nr >= BTRFS_NODEPTRS_PER_BLOCK(root->fs_info) - 1) {
|
2007-12-05 15:41:38 +00:00
|
|
|
wret = 1;
|
|
|
|
} else {
|
2008-01-04 15:38:22 +00:00
|
|
|
ret = btrfs_cow_block(trans, root, right,
|
|
|
|
parent, pslot + 1,
|
|
|
|
&right);
|
2007-12-05 15:41:38 +00:00
|
|
|
if (ret)
|
|
|
|
wret = 1;
|
|
|
|
else {
|
|
|
|
wret = balance_node_right(trans, root,
|
2008-01-04 15:38:22 +00:00
|
|
|
right, mid);
|
2007-12-05 15:41:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (wret < 0)
|
|
|
|
ret = wret;
|
|
|
|
if (wret == 0) {
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_disk_key disk_key;
|
|
|
|
|
|
|
|
btrfs_node_key(right, &disk_key, 0);
|
|
|
|
btrfs_set_node_key(parent, &disk_key, pslot + 1);
|
|
|
|
btrfs_mark_buffer_dirty(parent);
|
|
|
|
|
|
|
|
if (btrfs_header_nritems(mid) <= orig_slot) {
|
|
|
|
path->nodes[level] = right;
|
2007-12-05 15:41:38 +00:00
|
|
|
path->slots[level + 1] += 1;
|
|
|
|
path->slots[level] = orig_slot -
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_header_nritems(mid);
|
|
|
|
free_extent_buffer(mid);
|
2007-12-05 15:41:38 +00:00
|
|
|
} else {
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(right);
|
2007-12-05 15:41:38 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(right);
|
2007-12-05 15:41:38 +00:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
2007-03-01 17:04:21 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
/*
|
|
|
|
* readahead one full node of leaves
|
|
|
|
*/
|
2018-09-05 05:58:34 +00:00
|
|
|
void reada_for_search(struct btrfs_fs_info *fs_info, struct btrfs_path *path,
|
|
|
|
int level, int slot, u64 objectid)
|
2008-01-04 15:38:22 +00:00
|
|
|
{
|
|
|
|
struct extent_buffer *node;
|
|
|
|
struct btrfs_disk_key disk_key;
|
|
|
|
u32 nritems;
|
|
|
|
u64 search;
|
|
|
|
u64 lowest_read;
|
|
|
|
u64 highest_read;
|
|
|
|
u64 nread = 0;
|
|
|
|
int direction = path->reada;
|
|
|
|
struct extent_buffer *eb;
|
|
|
|
u32 nr;
|
|
|
|
u32 nscan = 0;
|
|
|
|
|
|
|
|
if (level != 1)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!path->nodes[level])
|
|
|
|
return;
|
|
|
|
|
|
|
|
node = path->nodes[level];
|
|
|
|
search = btrfs_node_blockptr(node, slot);
|
2017-08-25 14:20:16 +00:00
|
|
|
eb = btrfs_find_tree_block(fs_info, search, fs_info->nodesize);
|
2008-01-04 15:38:22 +00:00
|
|
|
if (eb) {
|
|
|
|
free_extent_buffer(eb);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
highest_read = search;
|
|
|
|
lowest_read = search;
|
|
|
|
|
|
|
|
nritems = btrfs_header_nritems(node);
|
|
|
|
nr = slot;
|
|
|
|
while(1) {
|
|
|
|
if (direction < 0) {
|
|
|
|
if (nr == 0)
|
|
|
|
break;
|
|
|
|
nr--;
|
|
|
|
} else if (direction > 0) {
|
|
|
|
nr++;
|
|
|
|
if (nr >= nritems)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (path->reada < 0 && objectid) {
|
|
|
|
btrfs_node_key(node, &disk_key, nr);
|
|
|
|
if (btrfs_disk_key_objectid(&disk_key) != objectid)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
search = btrfs_node_blockptr(node, nr);
|
|
|
|
if ((search >= lowest_read && search <= highest_read) ||
|
|
|
|
(search < lowest_read && lowest_read - search <= 32768) ||
|
|
|
|
(search > highest_read && search - highest_read <= 32768)) {
|
2017-08-25 16:07:15 +00:00
|
|
|
readahead_tree_block(fs_info, search,
|
2008-05-12 17:51:24 +00:00
|
|
|
btrfs_node_ptr_generation(node, nr));
|
2017-08-25 14:20:16 +00:00
|
|
|
nread += fs_info->nodesize;
|
2008-01-04 15:38:22 +00:00
|
|
|
}
|
|
|
|
nscan++;
|
2017-01-24 03:03:05 +00:00
|
|
|
if (path->reada < 2 && (nread > SZ_256K || nscan > 32))
|
2008-01-04 15:38:22 +00:00
|
|
|
break;
|
2017-01-24 03:03:05 +00:00
|
|
|
if(nread > SZ_1M || nscan > 128)
|
2008-01-04 15:38:22 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
if (search < lowest_read)
|
|
|
|
lowest_read = search;
|
|
|
|
if (search > highest_read)
|
|
|
|
highest_read = search;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-10 20:57:07 +00:00
|
|
|
int btrfs_find_item(struct btrfs_root *fs_root, struct btrfs_path *found_path,
|
|
|
|
u64 iobjectid, u64 ioff, u8 key_type,
|
|
|
|
struct btrfs_key *found_key)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct btrfs_key key;
|
|
|
|
struct extent_buffer *eb;
|
|
|
|
struct btrfs_path *path;
|
|
|
|
|
|
|
|
key.type = key_type;
|
|
|
|
key.objectid = iobjectid;
|
|
|
|
key.offset = ioff;
|
|
|
|
|
|
|
|
if (found_path == NULL) {
|
|
|
|
path = btrfs_alloc_path();
|
|
|
|
if (!path)
|
|
|
|
return -ENOMEM;
|
|
|
|
} else
|
|
|
|
path = found_path;
|
|
|
|
|
|
|
|
ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0);
|
2015-10-19 11:37:50 +00:00
|
|
|
if ((ret < 0) || (found_key == NULL))
|
|
|
|
goto out;
|
2014-10-10 20:57:07 +00:00
|
|
|
|
|
|
|
eb = path->nodes[0];
|
|
|
|
if (ret && path->slots[0] >= btrfs_header_nritems(eb)) {
|
|
|
|
ret = btrfs_next_leaf(fs_root, path);
|
|
|
|
if (ret)
|
2015-10-19 11:37:50 +00:00
|
|
|
goto out;
|
2014-10-10 20:57:07 +00:00
|
|
|
eb = path->nodes[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
btrfs_item_key_to_cpu(eb, found_key, path->slots[0]);
|
|
|
|
if (found_key->type != key.type ||
|
2015-10-19 11:37:50 +00:00
|
|
|
found_key->objectid != key.objectid) {
|
|
|
|
ret = 1;
|
|
|
|
goto out;
|
|
|
|
}
|
2014-10-10 20:57:07 +00:00
|
|
|
|
2015-10-19 11:37:50 +00:00
|
|
|
out:
|
|
|
|
if (path != found_path)
|
|
|
|
btrfs_free_path(path);
|
|
|
|
return ret;
|
2014-10-10 20:57:07 +00:00
|
|
|
}
|
|
|
|
|
2007-02-02 16:05:29 +00:00
|
|
|
/*
|
|
|
|
* look for key in the tree. path is filled in with nodes along the way
|
|
|
|
* if key is found, we return zero and you can find the item in the leaf
|
|
|
|
* level of the path (level 0)
|
|
|
|
*
|
|
|
|
* If the key isn't found, the path points to the slot where it should
|
2007-02-28 21:35:06 +00:00
|
|
|
* be inserted, and 1 is returned. If there are other errors during the
|
|
|
|
* search a negative error number is returned.
|
2007-02-24 18:39:08 +00:00
|
|
|
*
|
|
|
|
* if ins_len > 0, nodes and leaves will be split as we walk down the
|
|
|
|
* tree. if ins_len < 0, nodes will be merged as we walk down the tree (if
|
|
|
|
* possible)
|
2007-02-02 16:05:29 +00:00
|
|
|
*/
|
2018-10-12 07:41:53 +00:00
|
|
|
int btrfs_search_slot(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root, const struct btrfs_key *key,
|
|
|
|
struct btrfs_path *p, int ins_len, int cow)
|
2007-01-26 20:51:26 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *b;
|
2007-01-26 20:51:26 +00:00
|
|
|
int slot;
|
|
|
|
int ret;
|
|
|
|
int level;
|
2008-01-04 15:38:22 +00:00
|
|
|
int should_reada = p->reada;
|
2017-05-18 03:11:55 +00:00
|
|
|
struct btrfs_fs_info *fs_info = root->fs_info;
|
2008-01-04 15:38:22 +00:00
|
|
|
u8 lowest_level = 0;
|
2007-02-22 16:39:13 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
lowest_level = p->lowest_level;
|
2011-08-26 13:51:36 +00:00
|
|
|
WARN_ON(lowest_level && ins_len > 0);
|
2008-01-04 15:38:22 +00:00
|
|
|
WARN_ON(p->nodes[0] != NULL);
|
2007-03-01 17:04:21 +00:00
|
|
|
again:
|
|
|
|
b = root->node;
|
2008-01-04 15:38:22 +00:00
|
|
|
extent_buffer_get(b);
|
2007-02-02 14:18:22 +00:00
|
|
|
while (b) {
|
2008-01-04 15:38:22 +00:00
|
|
|
level = btrfs_header_level(b);
|
2007-03-02 21:08:05 +00:00
|
|
|
if (cow) {
|
|
|
|
int wret;
|
2007-12-05 15:41:38 +00:00
|
|
|
wret = btrfs_cow_block(trans, root, b,
|
2008-01-04 15:38:22 +00:00
|
|
|
p->nodes[level + 1],
|
|
|
|
p->slots[level + 1],
|
|
|
|
&b);
|
2007-12-05 15:41:38 +00:00
|
|
|
if (wret) {
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(b);
|
2007-12-05 15:41:38 +00:00
|
|
|
return wret;
|
|
|
|
}
|
2007-03-02 21:08:05 +00:00
|
|
|
}
|
|
|
|
BUG_ON(!cow && ins_len);
|
2008-01-04 15:38:22 +00:00
|
|
|
if (level != btrfs_header_level(b))
|
|
|
|
WARN_ON(1);
|
|
|
|
level = btrfs_header_level(b);
|
2007-02-02 14:18:22 +00:00
|
|
|
p->nodes[level] = b;
|
2019-03-07 11:31:30 +00:00
|
|
|
ret = check_block(fs_info, p, level);
|
2007-02-28 21:35:06 +00:00
|
|
|
if (ret)
|
|
|
|
return -1;
|
2020-04-17 07:10:29 +00:00
|
|
|
ret = btrfs_bin_search(b, key, &slot);
|
2008-01-04 15:38:22 +00:00
|
|
|
if (level != 0) {
|
2007-01-26 20:51:26 +00:00
|
|
|
if (ret && slot > 0)
|
|
|
|
slot -= 1;
|
|
|
|
p->slots[level] = slot;
|
2008-12-17 21:10:07 +00:00
|
|
|
if ((p->search_for_split || ins_len > 0) &&
|
|
|
|
btrfs_header_nritems(b) >=
|
2018-01-26 07:26:01 +00:00
|
|
|
BTRFS_NODEPTRS_PER_BLOCK(fs_info) - 3) {
|
2007-03-16 20:20:31 +00:00
|
|
|
int sret = split_node(trans, root, p, level);
|
2007-02-22 16:39:13 +00:00
|
|
|
BUG_ON(sret > 0);
|
|
|
|
if (sret)
|
|
|
|
return sret;
|
|
|
|
b = p->nodes[level];
|
|
|
|
slot = p->slots[level];
|
2007-03-01 17:04:21 +00:00
|
|
|
} else if (ins_len < 0) {
|
2007-03-16 20:20:31 +00:00
|
|
|
int sret = balance_level(trans, root, p,
|
|
|
|
level);
|
2007-03-01 17:04:21 +00:00
|
|
|
if (sret)
|
|
|
|
return sret;
|
|
|
|
b = p->nodes[level];
|
2007-12-05 15:41:38 +00:00
|
|
|
if (!b) {
|
2013-08-03 00:52:43 +00:00
|
|
|
btrfs_release_path(p);
|
2007-03-01 17:04:21 +00:00
|
|
|
goto again;
|
2007-12-05 15:41:38 +00:00
|
|
|
}
|
2007-03-01 17:04:21 +00:00
|
|
|
slot = p->slots[level];
|
2008-01-04 15:38:22 +00:00
|
|
|
BUG_ON(btrfs_header_nritems(b) == 1);
|
2007-02-22 16:39:13 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
/* this is only true while dropping a snapshot */
|
|
|
|
if (level == lowest_level)
|
|
|
|
break;
|
2008-05-12 17:51:24 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
if (should_reada)
|
2018-09-05 05:58:34 +00:00
|
|
|
reada_for_search(fs_info, p, level, slot,
|
2008-01-04 15:38:22 +00:00
|
|
|
key->objectid);
|
2008-05-12 17:51:24 +00:00
|
|
|
|
2017-05-18 03:11:55 +00:00
|
|
|
b = read_node_slot(fs_info, b, slot);
|
2012-02-22 02:20:54 +00:00
|
|
|
if (!extent_buffer_uptodate(b))
|
|
|
|
return -EIO;
|
2007-01-26 20:51:26 +00:00
|
|
|
} else {
|
|
|
|
p->slots[level] = slot;
|
2009-06-03 15:59:47 +00:00
|
|
|
if (ins_len > 0 &&
|
2018-04-30 03:15:43 +00:00
|
|
|
ins_len > btrfs_leaf_free_space(b)) {
|
2007-12-05 15:41:38 +00:00
|
|
|
int sret = split_leaf(trans, root, key,
|
|
|
|
p, ins_len, ret == 0);
|
2007-02-22 16:39:13 +00:00
|
|
|
BUG_ON(sret > 0);
|
|
|
|
if (sret)
|
|
|
|
return sret;
|
|
|
|
}
|
2007-01-26 20:51:26 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
2007-02-28 21:35:06 +00:00
|
|
|
return 1;
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
|
|
|
|
2018-10-01 14:46:16 +00:00
|
|
|
/*
|
|
|
|
* Helper to use instead of search slot if no exact match is needed but
|
|
|
|
* instead the next or previous item should be returned.
|
|
|
|
* When find_higher is true, the next higher item is returned, the next lower
|
|
|
|
* otherwise.
|
|
|
|
* When return_any and find_higher are both true, and no higher item is found,
|
|
|
|
* return the next lower instead.
|
|
|
|
* When return_any is true and find_higher is false, and no lower item is found,
|
|
|
|
* return the next higher instead.
|
|
|
|
* It returns 0 if any item is found, 1 if none is found (tree empty), and
|
|
|
|
* < 0 on error
|
|
|
|
*/
|
|
|
|
int btrfs_search_slot_for_read(struct btrfs_root *root,
|
|
|
|
const struct btrfs_key *key,
|
|
|
|
struct btrfs_path *p, int find_higher,
|
|
|
|
int return_any)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct extent_buffer *leaf;
|
|
|
|
|
|
|
|
again:
|
|
|
|
ret = btrfs_search_slot(NULL, root, key, p, 0, 0);
|
|
|
|
if (ret <= 0)
|
|
|
|
return ret;
|
|
|
|
/*
|
|
|
|
* A return value of 1 means the path is at the position where the item
|
|
|
|
* should be inserted. Normally this is the next bigger item, but in
|
|
|
|
* case the previous item is the last in a leaf, path points to the
|
|
|
|
* first free slot in the previous leaf, i.e. at an invalid item.
|
|
|
|
*/
|
|
|
|
leaf = p->nodes[0];
|
|
|
|
|
|
|
|
if (find_higher) {
|
|
|
|
if (p->slots[0] >= btrfs_header_nritems(leaf)) {
|
|
|
|
ret = btrfs_next_leaf(root, p);
|
|
|
|
if (ret <= 0)
|
|
|
|
return ret;
|
|
|
|
if (!return_any)
|
|
|
|
return 1;
|
|
|
|
/*
|
|
|
|
* No higher item found, return the next lower instead
|
|
|
|
*/
|
|
|
|
return_any = 0;
|
|
|
|
find_higher = 0;
|
|
|
|
btrfs_release_path(p);
|
|
|
|
goto again;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (p->slots[0] == 0) {
|
|
|
|
ret = btrfs_prev_leaf(root, p);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
if (!ret) {
|
|
|
|
leaf = p->nodes[0];
|
|
|
|
if (p->slots[0] == btrfs_header_nritems(leaf))
|
|
|
|
p->slots[0]--;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!return_any)
|
|
|
|
return 1;
|
|
|
|
/*
|
|
|
|
* No lower item found, return the next higher instead
|
|
|
|
*/
|
|
|
|
return_any = 0;
|
|
|
|
find_higher = 1;
|
|
|
|
btrfs_release_path(p);
|
|
|
|
goto again;
|
|
|
|
} else {
|
|
|
|
--p->slots[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-02-02 16:05:29 +00:00
|
|
|
/*
|
|
|
|
* adjust the pointers going up the tree, starting at level
|
|
|
|
* making sure the right key of each node is points to 'key'.
|
|
|
|
* This is used after shifting pointers to the left, so it stops
|
|
|
|
* fixing up pointers when a given leaf/node is not in slot 0 of the
|
|
|
|
* higher levels
|
|
|
|
*/
|
2021-09-14 09:05:52 +00:00
|
|
|
void btrfs_fixup_low_keys( struct btrfs_path *path, struct btrfs_disk_key *key,
|
|
|
|
int level)
|
2007-01-26 20:51:26 +00:00
|
|
|
{
|
|
|
|
int i;
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *t;
|
|
|
|
|
2007-03-13 14:46:10 +00:00
|
|
|
for (i = level; i < BTRFS_MAX_LEVEL; i++) {
|
2007-01-26 20:51:26 +00:00
|
|
|
int tslot = path->slots[i];
|
2007-02-02 14:18:22 +00:00
|
|
|
if (!path->nodes[i])
|
2007-01-26 20:51:26 +00:00
|
|
|
break;
|
2008-01-04 15:38:22 +00:00
|
|
|
t = path->nodes[i];
|
|
|
|
btrfs_set_node_key(t, key, tslot);
|
|
|
|
btrfs_mark_buffer_dirty(path->nodes[i]);
|
2007-01-26 20:51:26 +00:00
|
|
|
if (tslot != 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-23 16:29:10 +00:00
|
|
|
/*
|
|
|
|
* update item key.
|
|
|
|
*
|
|
|
|
* This function isn't completely safe. It's the caller's responsibility
|
|
|
|
* that the new key won't break the order
|
|
|
|
*/
|
2014-01-07 20:19:35 +00:00
|
|
|
int btrfs_set_item_key_safe(struct btrfs_root *root, struct btrfs_path *path,
|
2008-09-23 16:29:10 +00:00
|
|
|
struct btrfs_key *new_key)
|
|
|
|
{
|
|
|
|
struct btrfs_disk_key disk_key;
|
|
|
|
struct extent_buffer *eb;
|
|
|
|
int slot;
|
|
|
|
|
|
|
|
eb = path->nodes[0];
|
|
|
|
slot = path->slots[0];
|
|
|
|
if (slot > 0) {
|
|
|
|
btrfs_item_key(eb, &disk_key, slot - 1);
|
|
|
|
if (btrfs_comp_keys(&disk_key, new_key) >= 0)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (slot < btrfs_header_nritems(eb) - 1) {
|
|
|
|
btrfs_item_key(eb, &disk_key, slot + 1);
|
|
|
|
if (btrfs_comp_keys(&disk_key, new_key) <= 0)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
btrfs_cpu_key_to_disk(&disk_key, new_key);
|
|
|
|
btrfs_set_item_key(eb, &disk_key, slot);
|
|
|
|
btrfs_mark_buffer_dirty(eb);
|
|
|
|
if (slot == 0)
|
2021-09-14 09:05:52 +00:00
|
|
|
btrfs_fixup_low_keys(path, &disk_key, 1);
|
2008-09-23 16:29:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-01-07 20:19:35 +00:00
|
|
|
/*
|
|
|
|
* update an item key without the safety checks. This is meant to be called by
|
|
|
|
* fsck only.
|
|
|
|
*/
|
|
|
|
void btrfs_set_item_key_unsafe(struct btrfs_root *root,
|
|
|
|
struct btrfs_path *path,
|
|
|
|
struct btrfs_key *new_key)
|
|
|
|
{
|
|
|
|
struct btrfs_disk_key disk_key;
|
|
|
|
struct extent_buffer *eb;
|
|
|
|
int slot;
|
|
|
|
|
|
|
|
eb = path->nodes[0];
|
|
|
|
slot = path->slots[0];
|
|
|
|
|
|
|
|
btrfs_cpu_key_to_disk(&disk_key, new_key);
|
|
|
|
btrfs_set_item_key(eb, &disk_key, slot);
|
|
|
|
btrfs_mark_buffer_dirty(eb);
|
|
|
|
if (slot == 0)
|
2021-09-14 09:05:52 +00:00
|
|
|
btrfs_fixup_low_keys(path, &disk_key, 1);
|
2014-01-07 20:19:35 +00:00
|
|
|
}
|
|
|
|
|
2007-02-02 16:05:29 +00:00
|
|
|
/*
|
|
|
|
* try to push data from one node into the next node left in the
|
2007-03-01 20:16:26 +00:00
|
|
|
* tree.
|
2007-02-28 21:35:06 +00:00
|
|
|
*
|
|
|
|
* returns 0 if some ptrs were pushed left, < 0 if there was some horrible
|
|
|
|
* error, and > 0 if there was no room in the left hand block.
|
2007-02-02 16:05:29 +00:00
|
|
|
*/
|
2008-01-04 15:38:22 +00:00
|
|
|
static int push_node_left(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root, struct extent_buffer *dst,
|
2008-04-24 14:54:32 +00:00
|
|
|
struct extent_buffer *src, int empty)
|
2007-01-26 20:51:26 +00:00
|
|
|
{
|
|
|
|
int push_items = 0;
|
2007-03-01 17:04:21 +00:00
|
|
|
int src_nritems;
|
|
|
|
int dst_nritems;
|
2007-02-28 21:35:06 +00:00
|
|
|
int ret = 0;
|
2007-01-26 20:51:26 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
src_nritems = btrfs_header_nritems(src);
|
|
|
|
dst_nritems = btrfs_header_nritems(dst);
|
2018-01-26 07:26:01 +00:00
|
|
|
push_items = BTRFS_NODEPTRS_PER_BLOCK(root->fs_info) - dst_nritems;
|
2008-01-04 15:38:22 +00:00
|
|
|
WARN_ON(btrfs_header_generation(src) != trans->transid);
|
|
|
|
WARN_ON(btrfs_header_generation(dst) != trans->transid);
|
|
|
|
|
2008-04-24 18:46:15 +00:00
|
|
|
if (!empty && src_nritems <= 8)
|
2008-04-24 14:54:32 +00:00
|
|
|
return 1;
|
|
|
|
|
2007-02-02 14:18:22 +00:00
|
|
|
if (push_items <= 0) {
|
2007-01-26 20:51:26 +00:00
|
|
|
return 1;
|
2007-02-02 14:18:22 +00:00
|
|
|
}
|
2007-01-26 20:51:26 +00:00
|
|
|
|
2008-04-24 18:46:15 +00:00
|
|
|
if (empty) {
|
2008-04-24 14:54:32 +00:00
|
|
|
push_items = min(src_nritems, push_items);
|
2008-04-24 18:46:15 +00:00
|
|
|
if (push_items < src_nritems) {
|
|
|
|
/* leave at least 8 pointers in the node if
|
|
|
|
* we aren't going to empty it
|
|
|
|
*/
|
|
|
|
if (src_nritems - push_items < 8) {
|
|
|
|
if (push_items <= 8)
|
|
|
|
return 1;
|
|
|
|
push_items -= 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
push_items = min(src_nritems - 8, push_items);
|
2007-03-01 20:16:26 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
copy_extent_buffer(dst, src,
|
|
|
|
btrfs_node_key_ptr_offset(dst_nritems),
|
|
|
|
btrfs_node_key_ptr_offset(0),
|
|
|
|
push_items * sizeof(struct btrfs_key_ptr));
|
|
|
|
|
2007-03-01 17:04:21 +00:00
|
|
|
if (push_items < src_nritems) {
|
2008-01-04 15:38:22 +00:00
|
|
|
memmove_extent_buffer(src, btrfs_node_key_ptr_offset(0),
|
|
|
|
btrfs_node_key_ptr_offset(push_items),
|
|
|
|
(src_nritems - push_items) *
|
|
|
|
sizeof(struct btrfs_key_ptr));
|
|
|
|
}
|
|
|
|
btrfs_set_header_nritems(src, src_nritems - push_items);
|
|
|
|
btrfs_set_header_nritems(dst, dst_nritems + push_items);
|
|
|
|
btrfs_mark_buffer_dirty(src);
|
|
|
|
btrfs_mark_buffer_dirty(dst);
|
2008-09-23 16:29:10 +00:00
|
|
|
|
2007-03-01 20:16:26 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* try to push data from one node into the next node right in the
|
|
|
|
* tree.
|
|
|
|
*
|
|
|
|
* returns 0 if some ptrs were pushed, < 0 if there was some horrible
|
|
|
|
* error, and > 0 if there was no room in the right hand block.
|
|
|
|
*
|
|
|
|
* this will only push up to 1/2 the contents of the left node over
|
|
|
|
*/
|
2008-01-04 15:38:22 +00:00
|
|
|
static int balance_node_right(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root,
|
|
|
|
struct extent_buffer *dst,
|
|
|
|
struct extent_buffer *src)
|
2007-03-01 20:16:26 +00:00
|
|
|
{
|
|
|
|
int push_items = 0;
|
|
|
|
int max_push;
|
|
|
|
int src_nritems;
|
|
|
|
int dst_nritems;
|
|
|
|
int ret = 0;
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
WARN_ON(btrfs_header_generation(src) != trans->transid);
|
|
|
|
WARN_ON(btrfs_header_generation(dst) != trans->transid);
|
|
|
|
|
|
|
|
src_nritems = btrfs_header_nritems(src);
|
|
|
|
dst_nritems = btrfs_header_nritems(dst);
|
2018-01-26 07:26:01 +00:00
|
|
|
push_items = BTRFS_NODEPTRS_PER_BLOCK(root->fs_info) - dst_nritems;
|
2008-04-24 18:46:15 +00:00
|
|
|
if (push_items <= 0) {
|
2007-03-01 20:16:26 +00:00
|
|
|
return 1;
|
2008-04-24 18:46:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (src_nritems < 4) {
|
|
|
|
return 1;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-03-01 20:16:26 +00:00
|
|
|
max_push = src_nritems / 2 + 1;
|
|
|
|
/* don't try to empty the node */
|
2008-04-24 18:46:15 +00:00
|
|
|
if (max_push >= src_nritems) {
|
2007-03-01 20:16:26 +00:00
|
|
|
return 1;
|
2008-04-24 18:46:15 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-03-01 20:16:26 +00:00
|
|
|
if (max_push < push_items)
|
|
|
|
push_items = max_push;
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
memmove_extent_buffer(dst, btrfs_node_key_ptr_offset(push_items),
|
|
|
|
btrfs_node_key_ptr_offset(0),
|
|
|
|
(dst_nritems) *
|
|
|
|
sizeof(struct btrfs_key_ptr));
|
2007-03-01 20:16:26 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
copy_extent_buffer(dst, src,
|
|
|
|
btrfs_node_key_ptr_offset(0),
|
|
|
|
btrfs_node_key_ptr_offset(src_nritems - push_items),
|
|
|
|
push_items * sizeof(struct btrfs_key_ptr));
|
2007-03-01 20:16:26 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_header_nritems(src, src_nritems - push_items);
|
|
|
|
btrfs_set_header_nritems(dst, dst_nritems + push_items);
|
|
|
|
|
|
|
|
btrfs_mark_buffer_dirty(src);
|
|
|
|
btrfs_mark_buffer_dirty(dst);
|
2008-09-23 16:29:10 +00:00
|
|
|
|
2007-02-28 21:35:06 +00:00
|
|
|
return ret;
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
|
|
|
|
2007-02-24 18:39:08 +00:00
|
|
|
/*
|
|
|
|
* helper function to insert a new root level in the tree.
|
|
|
|
* A new node is allocated, and a single item is inserted to
|
|
|
|
* point to the existing root
|
2007-02-28 21:35:06 +00:00
|
|
|
*
|
|
|
|
* returns zero on success or < 0 on failure.
|
2007-02-24 18:39:08 +00:00
|
|
|
*/
|
2008-01-04 15:38:22 +00:00
|
|
|
static int noinline insert_new_root(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root,
|
|
|
|
struct btrfs_path *path, int level)
|
2007-02-22 16:39:13 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
u64 lower_gen;
|
|
|
|
struct extent_buffer *lower;
|
|
|
|
struct extent_buffer *c;
|
2008-09-23 16:29:10 +00:00
|
|
|
struct extent_buffer *old;
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_disk_key lower_key;
|
2007-02-22 16:39:13 +00:00
|
|
|
|
|
|
|
BUG_ON(path->nodes[level]);
|
|
|
|
BUG_ON(path->nodes[level-1] != root->node);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
lower = path->nodes[level-1];
|
|
|
|
if (level == 1)
|
|
|
|
btrfs_item_key(lower, &lower_key, 0);
|
2007-02-22 16:39:13 +00:00
|
|
|
else
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_node_key(lower, &lower_key, 0);
|
|
|
|
|
2017-05-18 01:17:41 +00:00
|
|
|
c = btrfs_alloc_free_block(trans, root, root->fs_info->nodesize,
|
2018-10-11 15:03:59 +00:00
|
|
|
root->root_key.objectid, &lower_key,
|
2009-05-29 20:35:30 +00:00
|
|
|
level, root->node->start, 0);
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
if (IS_ERR(c))
|
|
|
|
return PTR_ERR(c);
|
2008-09-23 16:29:10 +00:00
|
|
|
|
2009-05-29 20:35:30 +00:00
|
|
|
memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_header_nritems(c, 1);
|
|
|
|
btrfs_set_header_level(c, level);
|
|
|
|
btrfs_set_header_bytenr(c, c->start);
|
|
|
|
btrfs_set_header_generation(c, trans->transid);
|
2009-05-29 20:35:30 +00:00
|
|
|
btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_header_owner(c, root->root_key.objectid);
|
|
|
|
|
2018-06-08 12:47:47 +00:00
|
|
|
root_add_used(root, root->fs_info->nodesize);
|
|
|
|
|
2018-10-11 15:04:02 +00:00
|
|
|
write_extent_buffer(c, root->fs_info->fs_devices->metadata_uuid,
|
2013-10-01 09:59:22 +00:00
|
|
|
btrfs_header_fsid(), BTRFS_FSID_SIZE);
|
2008-04-15 19:42:08 +00:00
|
|
|
|
|
|
|
write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
|
2013-10-02 12:28:27 +00:00
|
|
|
btrfs_header_chunk_tree_uuid(c),
|
2008-04-15 19:42:08 +00:00
|
|
|
BTRFS_UUID_SIZE);
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_node_key(c, &lower_key, 0);
|
|
|
|
btrfs_set_node_blockptr(c, 0, lower->start);
|
|
|
|
lower_gen = btrfs_header_generation(lower);
|
2008-09-23 16:29:10 +00:00
|
|
|
WARN_ON(lower_gen != trans->transid);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
btrfs_set_node_ptr_generation(c, 0, lower_gen);
|
|
|
|
|
|
|
|
btrfs_mark_buffer_dirty(c);
|
|
|
|
|
2008-09-23 16:29:10 +00:00
|
|
|
old = root->node;
|
2008-01-04 15:38:22 +00:00
|
|
|
root->node = c;
|
2008-09-23 16:29:10 +00:00
|
|
|
|
|
|
|
/* the super has an extra ref to root->node */
|
|
|
|
free_extent_buffer(old);
|
|
|
|
|
2008-03-24 19:03:18 +00:00
|
|
|
add_root_to_dirty_list(root);
|
2008-01-04 15:38:22 +00:00
|
|
|
extent_buffer_get(c);
|
|
|
|
path->nodes[level] = c;
|
2007-02-22 16:39:13 +00:00
|
|
|
path->slots[level] = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-02-02 16:05:29 +00:00
|
|
|
/*
|
|
|
|
* worker function to insert a single pointer in a node.
|
|
|
|
* the node should have enough room for the pointer already
|
2007-02-24 18:39:08 +00:00
|
|
|
*
|
2007-02-02 16:05:29 +00:00
|
|
|
* slot and level indicate where you want the key to go, and
|
2008-01-04 15:38:22 +00:00
|
|
|
* blocknr is the block the key points to.
|
2007-02-28 21:35:06 +00:00
|
|
|
*
|
|
|
|
* returns zero on success and < 0 on any error
|
2007-02-02 16:05:29 +00:00
|
|
|
*/
|
2007-03-16 20:20:31 +00:00
|
|
|
static int insert_ptr(struct btrfs_trans_handle *trans, struct btrfs_root
|
|
|
|
*root, struct btrfs_path *path, struct btrfs_disk_key
|
2007-10-15 20:25:14 +00:00
|
|
|
*key, u64 bytenr, int slot, int level)
|
2007-02-02 16:05:29 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *lower;
|
2007-02-02 16:05:29 +00:00
|
|
|
int nritems;
|
2007-02-22 16:39:13 +00:00
|
|
|
|
|
|
|
BUG_ON(!path->nodes[level]);
|
2008-01-04 15:38:22 +00:00
|
|
|
lower = path->nodes[level];
|
|
|
|
nritems = btrfs_header_nritems(lower);
|
2007-02-02 16:05:29 +00:00
|
|
|
if (slot > nritems)
|
|
|
|
BUG();
|
2018-01-26 07:26:01 +00:00
|
|
|
if (nritems == BTRFS_NODEPTRS_PER_BLOCK(root->fs_info))
|
2007-02-02 16:05:29 +00:00
|
|
|
BUG();
|
btrfs-progs: Fix slot >= nritems
Running "btrfsck --repair /dev/sdd2" crashed as it can happen in
(corrupted) file systems, that slot > nritems:
> (gdb) bt full
> #0 0x00007ffff7020e71 in __memmove_sse2_unaligned_erms () from /lib/x86_64-linux-gnu/libc.so.6
> #1 0x0000000000438764 in btrfs_del_ptr (trans=<optimized out>, root=0x6e4fe0, path=0x1d17880, level=0, slot=7)
> at ctree.c:2611
> parent = 0xcd96980
> nritems = <optimized out>
> __func__ = "btrfs_del_ptr"
> #2 0x0000000000421b15 in repair_btree (corrupt_blocks=<optimized out>, root=<optimized out>) at cmds-check.c:3539
> key = {objectid = 77990592512, type = 168 '\250', offset = 16384}
> trans = 0x8f48c0
> path = 0x1d17880
> level = 0
> #3 check_fs_root (wc=<optimized out>, root_cache=<optimized out>, root=<optimized out>) at cmds-check.c:3703
> corrupt = 0x1d17880
> corrupt_blocks = {root = {rb_node = 0x6e80c60}}
> path = {nodes = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, slots = {0, 0, 0, 0, 0, 0, 0, 0}, locks = {0, 0,
> 0, 0, 0, 0, 0, 0}, reada = 0, lowest_level = 0, search_for_split = 0, skip_check_block = 0}
> nrefs = {bytenr = {271663104, 271646720, 560021504, 0, 0, 0, 0, 0}, refs = {1, 1, 1, 0, 0, 0, 0, 0}}
> wret = 215575372
> root_node = {cache = {rb_node = {__rb_parent_color = 0, rb_right = 0x0, rb_left = 0x0}, objectid = 0,
> start = 0, size = 0}, root_cache = {root = {rb_node = 0x0}}, inode_cache = {root = {
> rb_node = 0x781c80}}, current = 0x819530, refs = 0}
> status = 215575372
> rec = 0x1
> #4 check_fs_roots (root_cache=0xcd96b6d, root=<optimized out>) at cmds-check.c:3809
> path = {nodes = {0x6eed90, 0x6a2f40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, slots = {18, 2, 0, 0, 0, 0, 0, 0},
> locks = {0, 0, 0, 0, 0, 0, 0, 0}, reada = 0, lowest_level = 0, search_for_split = 0,
> skip_check_block = 0}
> key = {objectid = 323, type = 132 '\204', offset = 18446744073709551615}
> wc = {shared = {root = {rb_node = 0x0}}, nodes = {0x0, 0x0, 0x7fffffffe428, 0x0, 0x0, 0x0, 0x0, 0x0},
> active_node = 2, root_level = 2}
> leaf = 0x6e4fe0
> tmp_root = 0x6e4fe0
> #5 0x00000000004287c3 in cmd_check (argc=215575372, argv=0x1d17880) at cmds-check.c:11521
> root_cache = {root = {rb_node = 0x98c2940}}
> info = 0x6927b0
> bytenr = 6891440
> tree_root_bytenr = 0
> uuidbuf = "f65ff1a1-76ef-456e-beb5-c6c3841e7534"
> num = 215575372
> readonly = 218080104
> qgroups_repaired = 0
> #6 0x000000000040a41f in main (argc=3, argv=0x7fffffffebe8) at btrfs.c:243
> cmd = 0x689868
> bname = <optimized out>
> ret = <optimized out>
in that case the count of remaining items (nritems - slot - 1) gets
negative. That is then casted to (unsigned long len), which leads to the
observed crash.
Change the tests before the move to handle only the non-corrupted case,
were slow < nritems.
This does not fix the corruption, but allows btrfsck to finish without
crashing.
Signed-off-by: Philipp Hahn <hahn@univention.de>
Signed-off-by: David Sterba <dsterba@suse.com>
2017-05-15 17:00:23 +00:00
|
|
|
if (slot < nritems) {
|
|
|
|
/* shift the items */
|
2008-01-04 15:38:22 +00:00
|
|
|
memmove_extent_buffer(lower,
|
|
|
|
btrfs_node_key_ptr_offset(slot + 1),
|
|
|
|
btrfs_node_key_ptr_offset(slot),
|
|
|
|
(nritems - slot) * sizeof(struct btrfs_key_ptr));
|
2007-02-02 16:05:29 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_node_key(lower, key, slot);
|
2007-10-15 20:25:14 +00:00
|
|
|
btrfs_set_node_blockptr(lower, slot, bytenr);
|
2008-01-04 15:38:22 +00:00
|
|
|
WARN_ON(trans->transid == 0);
|
2007-12-09 18:46:24 +00:00
|
|
|
btrfs_set_node_ptr_generation(lower, slot, trans->transid);
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_header_nritems(lower, nritems + 1);
|
|
|
|
btrfs_mark_buffer_dirty(lower);
|
2007-02-02 16:05:29 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-02-24 18:39:08 +00:00
|
|
|
/*
|
|
|
|
* split the node at the specified level in path in two.
|
|
|
|
* The path is corrected to point to the appropriate node after the split
|
|
|
|
*
|
|
|
|
* Before splitting this tries to make some room in the node by pushing
|
|
|
|
* left and right, if either one works, it returns right away.
|
2007-02-28 21:35:06 +00:00
|
|
|
*
|
|
|
|
* returns 0 on success and < 0 on failure
|
2007-02-24 18:39:08 +00:00
|
|
|
*/
|
2007-03-16 20:20:31 +00:00
|
|
|
static int split_node(struct btrfs_trans_handle *trans, struct btrfs_root
|
|
|
|
*root, struct btrfs_path *path, int level)
|
2007-01-26 20:51:26 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *c;
|
|
|
|
struct extent_buffer *split;
|
|
|
|
struct btrfs_disk_key disk_key;
|
2007-01-26 20:51:26 +00:00
|
|
|
int mid;
|
2007-02-22 16:39:13 +00:00
|
|
|
int ret;
|
2007-02-28 21:35:06 +00:00
|
|
|
int wret;
|
2007-03-12 16:01:18 +00:00
|
|
|
u32 c_nritems;
|
2007-02-02 14:18:22 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
c = path->nodes[level];
|
|
|
|
WARN_ON(btrfs_header_generation(c) != trans->transid);
|
|
|
|
if (c == root->node) {
|
2007-02-22 16:39:13 +00:00
|
|
|
/* trying to split the root, lets make a new one */
|
2007-03-16 20:20:31 +00:00
|
|
|
ret = insert_new_root(trans, root, path, level + 1);
|
2007-02-22 16:39:13 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
2007-12-05 15:41:38 +00:00
|
|
|
} else {
|
|
|
|
ret = push_nodes_for_insert(trans, root, path, level);
|
2008-01-04 15:38:22 +00:00
|
|
|
c = path->nodes[level];
|
|
|
|
if (!ret && btrfs_header_nritems(c) <
|
2018-01-26 07:26:01 +00:00
|
|
|
BTRFS_NODEPTRS_PER_BLOCK(root->fs_info) - 3)
|
2007-12-05 15:41:38 +00:00
|
|
|
return 0;
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
c_nritems = btrfs_header_nritems(c);
|
2009-05-29 20:35:30 +00:00
|
|
|
mid = (c_nritems + 1) / 2;
|
|
|
|
btrfs_node_key(c, &disk_key, mid);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2017-05-18 01:17:41 +00:00
|
|
|
split = btrfs_alloc_free_block(trans, root, root->fs_info->nodesize,
|
2009-05-29 20:35:30 +00:00
|
|
|
root->root_key.objectid,
|
|
|
|
&disk_key, level, c->start, 0);
|
2008-01-04 15:38:22 +00:00
|
|
|
if (IS_ERR(split))
|
|
|
|
return PTR_ERR(split);
|
|
|
|
|
2009-05-29 20:35:30 +00:00
|
|
|
memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header));
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_header_level(split, btrfs_header_level(c));
|
|
|
|
btrfs_set_header_bytenr(split, split->start);
|
|
|
|
btrfs_set_header_generation(split, trans->transid);
|
2009-05-29 20:35:30 +00:00
|
|
|
btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV);
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_header_owner(split, root->root_key.objectid);
|
2018-10-11 15:04:02 +00:00
|
|
|
write_extent_buffer(split, root->fs_info->fs_devices->metadata_uuid,
|
2013-10-01 09:59:22 +00:00
|
|
|
btrfs_header_fsid(), BTRFS_FSID_SIZE);
|
2008-04-15 19:42:08 +00:00
|
|
|
write_extent_buffer(split, root->fs_info->chunk_tree_uuid,
|
2013-10-02 12:28:27 +00:00
|
|
|
btrfs_header_chunk_tree_uuid(split),
|
2008-04-15 19:42:08 +00:00
|
|
|
BTRFS_UUID_SIZE);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2018-06-08 12:47:47 +00:00
|
|
|
root_add_used(root, root->fs_info->nodesize);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
copy_extent_buffer(split, c,
|
|
|
|
btrfs_node_key_ptr_offset(0),
|
|
|
|
btrfs_node_key_ptr_offset(mid),
|
|
|
|
(c_nritems - mid) * sizeof(struct btrfs_key_ptr));
|
|
|
|
btrfs_set_header_nritems(split, c_nritems - mid);
|
|
|
|
btrfs_set_header_nritems(c, mid);
|
2007-02-28 21:35:06 +00:00
|
|
|
ret = 0;
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_mark_buffer_dirty(c);
|
|
|
|
btrfs_mark_buffer_dirty(split);
|
|
|
|
|
|
|
|
wret = insert_ptr(trans, root, path, &disk_key, split->start,
|
|
|
|
path->slots[level + 1] + 1,
|
2007-03-14 18:14:43 +00:00
|
|
|
level + 1);
|
2007-02-28 21:35:06 +00:00
|
|
|
if (wret)
|
|
|
|
ret = wret;
|
|
|
|
|
2007-02-24 11:24:44 +00:00
|
|
|
if (path->slots[level] >= mid) {
|
2007-02-22 16:39:13 +00:00
|
|
|
path->slots[level] -= mid;
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(c);
|
|
|
|
path->nodes[level] = split;
|
2007-02-22 16:39:13 +00:00
|
|
|
path->slots[level + 1] += 1;
|
|
|
|
} else {
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(split);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* how many bytes are required to store the items in a leaf. start
|
|
|
|
* and nr indicate which items in the leaf to check. This totals up the
|
|
|
|
* space used both by the item structs and the item data
|
|
|
|
*/
|
|
|
|
static int leaf_space_used(struct extent_buffer *l, int start, int nr)
|
|
|
|
{
|
|
|
|
int data_len;
|
|
|
|
int nritems = btrfs_header_nritems(l);
|
|
|
|
int end = min(nritems, start + nr) - 1;
|
|
|
|
|
|
|
|
if (!nr)
|
|
|
|
return 0;
|
|
|
|
data_len = btrfs_item_end_nr(l, start);
|
|
|
|
data_len = data_len - btrfs_item_offset_nr(l, end);
|
|
|
|
data_len += sizeof(struct btrfs_item) * nr;
|
|
|
|
WARN_ON(data_len < 0);
|
|
|
|
return data_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The space between the end of the leaf items and
|
|
|
|
* the start of the leaf data. IOW, how much room
|
|
|
|
* the leaf has left for both items and data
|
|
|
|
*/
|
2018-04-30 03:15:43 +00:00
|
|
|
int btrfs_leaf_free_space(struct extent_buffer *leaf)
|
2008-01-04 15:38:22 +00:00
|
|
|
{
|
|
|
|
int nritems = btrfs_header_nritems(leaf);
|
2018-04-30 03:15:43 +00:00
|
|
|
u32 leaf_data_size;
|
2008-01-04 15:38:22 +00:00
|
|
|
int ret;
|
2018-03-30 05:48:56 +00:00
|
|
|
|
2018-04-30 03:15:43 +00:00
|
|
|
BUG_ON(leaf->fs_info && leaf->fs_info->nodesize != leaf->len);
|
|
|
|
leaf_data_size = __BTRFS_LEAF_DATA_SIZE(leaf->len);
|
|
|
|
ret = leaf_data_size - leaf_space_used(leaf, 0 ,nritems);
|
2008-01-04 15:38:22 +00:00
|
|
|
if (ret < 0) {
|
2018-04-30 03:15:43 +00:00
|
|
|
printk("leaf free space ret %d, leaf data size %u, used %d nritems %d\n",
|
|
|
|
ret, leaf_data_size, leaf_space_used(leaf, 0, nritems),
|
|
|
|
nritems);
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
2007-02-28 21:35:06 +00:00
|
|
|
return ret;
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
|
|
|
|
2007-02-24 17:47:20 +00:00
|
|
|
/*
|
|
|
|
* push some data in the path leaf to the right, trying to free up at
|
|
|
|
* least data_size bytes. returns zero if the push worked, nonzero otherwise
|
2007-02-28 21:35:06 +00:00
|
|
|
*
|
|
|
|
* returns 1 if the push failed because the other node didn't have enough
|
|
|
|
* room, 0 if everything worked out and < 0 if there were major errors.
|
2007-02-24 17:47:20 +00:00
|
|
|
*/
|
2007-03-16 20:20:31 +00:00
|
|
|
static int push_leaf_right(struct btrfs_trans_handle *trans, struct btrfs_root
|
2007-12-05 15:41:38 +00:00
|
|
|
*root, struct btrfs_path *path, int data_size,
|
|
|
|
int empty)
|
2007-02-24 17:47:20 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *left = path->nodes[0];
|
|
|
|
struct extent_buffer *right;
|
|
|
|
struct extent_buffer *upper;
|
|
|
|
struct btrfs_disk_key disk_key;
|
2017-05-18 03:11:55 +00:00
|
|
|
struct btrfs_fs_info *fs_info = root->fs_info;
|
2007-02-24 17:47:20 +00:00
|
|
|
int slot;
|
2007-12-05 15:41:38 +00:00
|
|
|
u32 i;
|
2007-02-24 17:47:20 +00:00
|
|
|
int free_space;
|
|
|
|
int push_space = 0;
|
|
|
|
int push_items = 0;
|
2007-03-13 00:12:07 +00:00
|
|
|
struct btrfs_item *item;
|
2007-03-12 16:01:18 +00:00
|
|
|
u32 left_nritems;
|
2007-12-05 15:41:38 +00:00
|
|
|
u32 nr;
|
2007-03-12 16:01:18 +00:00
|
|
|
u32 right_nritems;
|
2008-01-04 15:38:22 +00:00
|
|
|
u32 data_end;
|
|
|
|
u32 this_item_size;
|
|
|
|
int ret;
|
|
|
|
|
2007-02-24 17:47:20 +00:00
|
|
|
slot = path->slots[1];
|
|
|
|
if (!path->nodes[1]) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
upper = path->nodes[1];
|
2008-01-04 15:38:22 +00:00
|
|
|
if (slot >= btrfs_header_nritems(upper) - 1)
|
2007-02-24 17:47:20 +00:00
|
|
|
return 1;
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2017-05-18 03:11:55 +00:00
|
|
|
right = read_node_slot(fs_info, upper, slot + 1);
|
2015-01-28 02:12:55 +00:00
|
|
|
if (!extent_buffer_uptodate(right)) {
|
|
|
|
if (IS_ERR(right))
|
|
|
|
return PTR_ERR(right);
|
|
|
|
return -EIO;
|
|
|
|
}
|
2018-04-30 03:15:43 +00:00
|
|
|
free_space = btrfs_leaf_free_space(right);
|
2009-06-03 15:59:47 +00:00
|
|
|
if (free_space < data_size) {
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(right);
|
2007-02-24 17:47:20 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-03-02 21:08:05 +00:00
|
|
|
/* cow and double check */
|
2008-01-04 15:38:22 +00:00
|
|
|
ret = btrfs_cow_block(trans, root, right, upper,
|
|
|
|
slot + 1, &right);
|
|
|
|
if (ret) {
|
|
|
|
free_extent_buffer(right);
|
|
|
|
return 1;
|
|
|
|
}
|
2018-04-30 03:15:43 +00:00
|
|
|
free_space = btrfs_leaf_free_space(right);
|
2009-06-03 15:59:47 +00:00
|
|
|
if (free_space < data_size) {
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(right);
|
2007-03-02 21:08:05 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
left_nritems = btrfs_header_nritems(left);
|
2007-12-05 15:41:38 +00:00
|
|
|
if (left_nritems == 0) {
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(right);
|
2007-12-05 15:41:38 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty)
|
|
|
|
nr = 0;
|
|
|
|
else
|
|
|
|
nr = 1;
|
|
|
|
|
|
|
|
i = left_nritems - 1;
|
|
|
|
while (i >= nr) {
|
2013-09-20 09:55:26 +00:00
|
|
|
item = btrfs_item_nr(i);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-02-24 17:47:20 +00:00
|
|
|
if (path->slots[0] == i)
|
|
|
|
push_space += data_size + sizeof(*item);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
this_item_size = btrfs_item_size(left, item);
|
|
|
|
if (this_item_size + sizeof(*item) + push_space > free_space)
|
2007-02-24 17:47:20 +00:00
|
|
|
break;
|
|
|
|
push_items++;
|
2008-01-04 15:38:22 +00:00
|
|
|
push_space += this_item_size + sizeof(*item);
|
2007-12-05 15:41:38 +00:00
|
|
|
if (i == 0)
|
|
|
|
break;
|
|
|
|
i--;
|
2007-02-24 17:47:20 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-02-24 17:47:20 +00:00
|
|
|
if (push_items == 0) {
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(right);
|
2007-02-24 17:47:20 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
if (!empty && push_items == left_nritems)
|
|
|
|
WARN_ON(1);
|
|
|
|
|
2007-02-24 17:47:20 +00:00
|
|
|
/* push left to right */
|
2008-01-04 15:38:22 +00:00
|
|
|
right_nritems = btrfs_header_nritems(right);
|
|
|
|
|
|
|
|
push_space = btrfs_item_end_nr(left, left_nritems - push_items);
|
2021-09-14 09:05:53 +00:00
|
|
|
push_space -= leaf_data_end(left);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-02-24 17:47:20 +00:00
|
|
|
/* make room in the right data area */
|
2021-09-14 09:05:53 +00:00
|
|
|
data_end = leaf_data_end(right);
|
2008-01-04 15:38:22 +00:00
|
|
|
memmove_extent_buffer(right,
|
|
|
|
btrfs_leaf_data(right) + data_end - push_space,
|
|
|
|
btrfs_leaf_data(right) + data_end,
|
2018-01-26 07:26:00 +00:00
|
|
|
BTRFS_LEAF_DATA_SIZE(root->fs_info) - data_end);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-02-24 17:47:20 +00:00
|
|
|
/* copy from the left data area */
|
2008-01-04 15:38:22 +00:00
|
|
|
copy_extent_buffer(right, left, btrfs_leaf_data(right) +
|
2018-01-26 07:26:00 +00:00
|
|
|
BTRFS_LEAF_DATA_SIZE(root->fs_info) - push_space,
|
2021-09-14 09:05:53 +00:00
|
|
|
btrfs_leaf_data(left) + leaf_data_end(left), push_space);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
memmove_extent_buffer(right, btrfs_item_nr_offset(push_items),
|
|
|
|
btrfs_item_nr_offset(0),
|
|
|
|
right_nritems * sizeof(struct btrfs_item));
|
|
|
|
|
2007-02-24 17:47:20 +00:00
|
|
|
/* copy the items from left to right */
|
2008-01-04 15:38:22 +00:00
|
|
|
copy_extent_buffer(right, left, btrfs_item_nr_offset(0),
|
|
|
|
btrfs_item_nr_offset(left_nritems - push_items),
|
|
|
|
push_items * sizeof(struct btrfs_item));
|
2007-02-24 17:47:20 +00:00
|
|
|
|
|
|
|
/* update the item pointers */
|
2007-03-12 16:01:18 +00:00
|
|
|
right_nritems += push_items;
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_header_nritems(right, right_nritems);
|
2018-01-26 07:26:00 +00:00
|
|
|
push_space = BTRFS_LEAF_DATA_SIZE(root->fs_info);
|
2007-03-12 16:01:18 +00:00
|
|
|
for (i = 0; i < right_nritems; i++) {
|
2013-09-20 09:55:26 +00:00
|
|
|
item = btrfs_item_nr(i);
|
2008-01-04 15:38:22 +00:00
|
|
|
push_space -= btrfs_item_size(right, item);
|
|
|
|
btrfs_set_item_offset(right, item, push_space);
|
2007-02-24 17:47:20 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-03-12 16:01:18 +00:00
|
|
|
left_nritems -= push_items;
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_header_nritems(left, left_nritems);
|
|
|
|
|
|
|
|
if (left_nritems)
|
|
|
|
btrfs_mark_buffer_dirty(left);
|
|
|
|
btrfs_mark_buffer_dirty(right);
|
2007-02-24 17:47:20 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_item_key(right, &disk_key, 0);
|
|
|
|
btrfs_set_node_key(upper, &disk_key, slot + 1);
|
|
|
|
btrfs_mark_buffer_dirty(upper);
|
2007-03-02 21:08:05 +00:00
|
|
|
|
2007-02-24 17:47:20 +00:00
|
|
|
/* then fixup the leaf pointer in the path */
|
2007-03-12 16:01:18 +00:00
|
|
|
if (path->slots[0] >= left_nritems) {
|
|
|
|
path->slots[0] -= left_nritems;
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(path->nodes[0]);
|
|
|
|
path->nodes[0] = right;
|
2007-02-24 17:47:20 +00:00
|
|
|
path->slots[1] += 1;
|
|
|
|
} else {
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(right);
|
2007-02-24 17:47:20 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2007-02-02 16:05:29 +00:00
|
|
|
/*
|
|
|
|
* push some data in the path leaf to the left, trying to free up at
|
|
|
|
* least data_size bytes. returns zero if the push worked, nonzero otherwise
|
|
|
|
*/
|
2007-03-16 20:20:31 +00:00
|
|
|
static int push_leaf_left(struct btrfs_trans_handle *trans, struct btrfs_root
|
2007-12-05 15:41:38 +00:00
|
|
|
*root, struct btrfs_path *path, int data_size,
|
|
|
|
int empty)
|
2007-01-26 20:51:26 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_disk_key disk_key;
|
|
|
|
struct extent_buffer *right = path->nodes[0];
|
|
|
|
struct extent_buffer *left;
|
2017-05-18 03:11:55 +00:00
|
|
|
struct btrfs_fs_info *fs_info = root->fs_info;
|
2007-01-26 20:51:26 +00:00
|
|
|
int slot;
|
|
|
|
int i;
|
|
|
|
int free_space;
|
|
|
|
int push_space = 0;
|
|
|
|
int push_items = 0;
|
2007-03-13 00:12:07 +00:00
|
|
|
struct btrfs_item *item;
|
2007-03-12 16:01:18 +00:00
|
|
|
u32 old_left_nritems;
|
2007-12-05 15:41:38 +00:00
|
|
|
u32 right_nritems;
|
|
|
|
u32 nr;
|
2007-02-28 21:35:06 +00:00
|
|
|
int ret = 0;
|
2008-01-04 15:38:22 +00:00
|
|
|
u32 this_item_size;
|
|
|
|
u32 old_left_item_size;
|
|
|
|
|
2007-01-26 20:51:26 +00:00
|
|
|
slot = path->slots[1];
|
2008-01-04 15:38:22 +00:00
|
|
|
if (slot == 0)
|
2007-01-26 20:51:26 +00:00
|
|
|
return 1;
|
2008-01-04 15:38:22 +00:00
|
|
|
if (!path->nodes[1])
|
2007-01-26 20:51:26 +00:00
|
|
|
return 1;
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
right_nritems = btrfs_header_nritems(right);
|
2007-12-05 15:41:38 +00:00
|
|
|
if (right_nritems == 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2017-05-18 03:11:55 +00:00
|
|
|
left = read_node_slot(fs_info, path->nodes[1], slot - 1);
|
2018-04-30 03:15:43 +00:00
|
|
|
free_space = btrfs_leaf_free_space(left);
|
2009-06-03 15:59:47 +00:00
|
|
|
if (free_space < data_size) {
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(left);
|
2007-01-26 20:51:26 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2007-03-02 21:08:05 +00:00
|
|
|
|
|
|
|
/* cow and double check */
|
2008-01-04 15:38:22 +00:00
|
|
|
ret = btrfs_cow_block(trans, root, left,
|
|
|
|
path->nodes[1], slot - 1, &left);
|
|
|
|
if (ret) {
|
|
|
|
/* we hit -ENOSPC, but it isn't fatal here */
|
|
|
|
free_extent_buffer(left);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2018-04-30 03:15:43 +00:00
|
|
|
free_space = btrfs_leaf_free_space(left);
|
2009-06-03 15:59:47 +00:00
|
|
|
if (free_space < data_size) {
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(left);
|
2007-03-02 21:08:05 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-12-05 15:41:38 +00:00
|
|
|
if (empty)
|
|
|
|
nr = right_nritems;
|
|
|
|
else
|
|
|
|
nr = right_nritems - 1;
|
2007-03-02 21:08:05 +00:00
|
|
|
|
2007-12-05 15:41:38 +00:00
|
|
|
for (i = 0; i < nr; i++) {
|
2013-09-20 09:55:26 +00:00
|
|
|
item = btrfs_item_nr(i);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-01-26 20:51:26 +00:00
|
|
|
if (path->slots[0] == i)
|
|
|
|
push_space += data_size + sizeof(*item);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
this_item_size = btrfs_item_size(right, item);
|
|
|
|
if (this_item_size + sizeof(*item) + push_space > free_space)
|
2007-01-26 20:51:26 +00:00
|
|
|
break;
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-01-26 20:51:26 +00:00
|
|
|
push_items++;
|
2008-01-04 15:38:22 +00:00
|
|
|
push_space += this_item_size + sizeof(*item);
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-01-26 20:51:26 +00:00
|
|
|
if (push_items == 0) {
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(left);
|
2007-01-26 20:51:26 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
if (!empty && push_items == btrfs_header_nritems(right))
|
|
|
|
WARN_ON(1);
|
|
|
|
|
2007-01-26 20:51:26 +00:00
|
|
|
/* push data from right to left */
|
2008-01-04 15:38:22 +00:00
|
|
|
copy_extent_buffer(left, right,
|
|
|
|
btrfs_item_nr_offset(btrfs_header_nritems(left)),
|
|
|
|
btrfs_item_nr_offset(0),
|
|
|
|
push_items * sizeof(struct btrfs_item));
|
|
|
|
|
2018-01-26 07:26:00 +00:00
|
|
|
push_space = BTRFS_LEAF_DATA_SIZE(root->fs_info) -
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_item_offset_nr(right, push_items -1);
|
|
|
|
|
|
|
|
copy_extent_buffer(left, right, btrfs_leaf_data(left) +
|
2021-09-14 09:05:53 +00:00
|
|
|
leaf_data_end(left) - push_space,
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_leaf_data(right) +
|
|
|
|
btrfs_item_offset_nr(right, push_items - 1),
|
|
|
|
push_space);
|
|
|
|
old_left_nritems = btrfs_header_nritems(left);
|
2013-01-22 21:58:20 +00:00
|
|
|
BUG_ON(old_left_nritems == 0);
|
2007-02-02 14:18:22 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
old_left_item_size = btrfs_item_offset_nr(left, old_left_nritems - 1);
|
2007-03-13 00:12:07 +00:00
|
|
|
for (i = old_left_nritems; i < old_left_nritems + push_items; i++) {
|
2008-01-04 15:38:22 +00:00
|
|
|
u32 ioff;
|
|
|
|
|
2013-09-20 09:55:26 +00:00
|
|
|
item = btrfs_item_nr(i);
|
2008-01-04 15:38:22 +00:00
|
|
|
ioff = btrfs_item_offset(left, item);
|
|
|
|
btrfs_set_item_offset(left, item,
|
2018-01-26 07:26:00 +00:00
|
|
|
ioff - (BTRFS_LEAF_DATA_SIZE(root->fs_info) -
|
|
|
|
old_left_item_size));
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_header_nritems(left, old_left_nritems + push_items);
|
|
|
|
|
2007-01-26 20:51:26 +00:00
|
|
|
/* fixup right node */
|
2008-01-04 15:38:22 +00:00
|
|
|
if (push_items > right_nritems) {
|
|
|
|
printk("push items %d nr %u\n", push_items, right_nritems);
|
|
|
|
WARN_ON(1);
|
|
|
|
}
|
|
|
|
|
2007-12-05 15:41:38 +00:00
|
|
|
if (push_items < right_nritems) {
|
2008-01-04 15:38:22 +00:00
|
|
|
push_space = btrfs_item_offset_nr(right, push_items - 1) -
|
2021-09-14 09:05:53 +00:00
|
|
|
leaf_data_end(right);
|
2008-01-04 15:38:22 +00:00
|
|
|
memmove_extent_buffer(right, btrfs_leaf_data(right) +
|
2018-01-26 07:26:00 +00:00
|
|
|
BTRFS_LEAF_DATA_SIZE(root->fs_info) -
|
|
|
|
push_space,
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_leaf_data(right) +
|
2021-09-14 09:05:53 +00:00
|
|
|
leaf_data_end(right), push_space);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
memmove_extent_buffer(right, btrfs_item_nr_offset(0),
|
|
|
|
btrfs_item_nr_offset(push_items),
|
|
|
|
(btrfs_header_nritems(right) - push_items) *
|
|
|
|
sizeof(struct btrfs_item));
|
2007-12-05 15:41:38 +00:00
|
|
|
}
|
|
|
|
right_nritems -= push_items;
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_header_nritems(right, right_nritems);
|
2018-01-26 07:26:00 +00:00
|
|
|
push_space = BTRFS_LEAF_DATA_SIZE(root->fs_info);
|
2007-12-05 15:41:38 +00:00
|
|
|
for (i = 0; i < right_nritems; i++) {
|
2013-09-20 09:55:26 +00:00
|
|
|
item = btrfs_item_nr(i);
|
2008-01-04 15:38:22 +00:00
|
|
|
push_space = push_space - btrfs_item_size(right, item);
|
|
|
|
btrfs_set_item_offset(right, item, push_space);
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
2007-02-02 14:18:22 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_mark_buffer_dirty(left);
|
|
|
|
if (right_nritems)
|
|
|
|
btrfs_mark_buffer_dirty(right);
|
2007-02-02 14:18:22 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_item_key(right, &disk_key, 0);
|
2021-09-14 09:05:52 +00:00
|
|
|
btrfs_fixup_low_keys(path, &disk_key, 1);
|
2007-01-26 20:51:26 +00:00
|
|
|
|
|
|
|
/* then fixup the leaf pointer in the path */
|
|
|
|
if (path->slots[0] < push_items) {
|
|
|
|
path->slots[0] += old_left_nritems;
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(path->nodes[0]);
|
|
|
|
path->nodes[0] = left;
|
2007-01-26 20:51:26 +00:00
|
|
|
path->slots[1] -= 1;
|
|
|
|
} else {
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(left);
|
2007-01-26 20:51:26 +00:00
|
|
|
path->slots[0] -= push_items;
|
|
|
|
}
|
2007-02-02 14:18:22 +00:00
|
|
|
BUG_ON(path->slots[0] < 0);
|
2007-02-28 21:35:06 +00:00
|
|
|
return ret;
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
|
|
|
|
2007-02-02 16:05:29 +00:00
|
|
|
/*
|
|
|
|
* split the path's leaf in two, making sure there is at least data_size
|
|
|
|
* available for the resulting leaf level of the path.
|
2007-02-28 21:35:06 +00:00
|
|
|
*
|
|
|
|
* returns 0 if all went well and < 0 on failure.
|
2007-02-02 16:05:29 +00:00
|
|
|
*/
|
2009-05-29 20:35:30 +00:00
|
|
|
static noinline int copy_for_split(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root,
|
|
|
|
struct btrfs_path *path,
|
|
|
|
struct extent_buffer *l,
|
|
|
|
struct extent_buffer *right,
|
|
|
|
int slot, int mid, int nritems)
|
2007-01-26 20:51:26 +00:00
|
|
|
{
|
2009-05-29 20:35:30 +00:00
|
|
|
int data_copy_size;
|
|
|
|
int rt_data_off;
|
|
|
|
int i;
|
|
|
|
int ret = 0;
|
|
|
|
int wret;
|
|
|
|
struct btrfs_disk_key disk_key;
|
|
|
|
|
|
|
|
nritems = nritems - mid;
|
|
|
|
btrfs_set_header_nritems(right, nritems);
|
2021-09-14 09:05:53 +00:00
|
|
|
data_copy_size = btrfs_item_end_nr(l, mid) - leaf_data_end(l);
|
2009-05-29 20:35:30 +00:00
|
|
|
|
|
|
|
copy_extent_buffer(right, l, btrfs_item_nr_offset(0),
|
|
|
|
btrfs_item_nr_offset(mid),
|
|
|
|
nritems * sizeof(struct btrfs_item));
|
|
|
|
|
|
|
|
copy_extent_buffer(right, l,
|
2018-01-26 07:26:00 +00:00
|
|
|
btrfs_leaf_data(right) +
|
2021-09-14 09:05:53 +00:00
|
|
|
BTRFS_LEAF_DATA_SIZE(root->fs_info) - data_copy_size,
|
|
|
|
btrfs_leaf_data(l) + leaf_data_end(l), data_copy_size);
|
2009-05-29 20:35:30 +00:00
|
|
|
|
2018-01-26 07:26:00 +00:00
|
|
|
rt_data_off = BTRFS_LEAF_DATA_SIZE(root->fs_info) -
|
2009-05-29 20:35:30 +00:00
|
|
|
btrfs_item_end_nr(l, mid);
|
|
|
|
|
|
|
|
for (i = 0; i < nritems; i++) {
|
2013-09-20 09:55:26 +00:00
|
|
|
struct btrfs_item *item = btrfs_item_nr(i);
|
2009-05-29 20:35:30 +00:00
|
|
|
u32 ioff = btrfs_item_offset(right, item);
|
|
|
|
btrfs_set_item_offset(right, item, ioff + rt_data_off);
|
|
|
|
}
|
|
|
|
|
|
|
|
btrfs_set_header_nritems(l, mid);
|
|
|
|
ret = 0;
|
|
|
|
btrfs_item_key(right, &disk_key, 0);
|
|
|
|
wret = insert_ptr(trans, root, path, &disk_key, right->start,
|
|
|
|
path->slots[1] + 1, 1);
|
|
|
|
if (wret)
|
|
|
|
ret = wret;
|
|
|
|
|
|
|
|
btrfs_mark_buffer_dirty(right);
|
|
|
|
btrfs_mark_buffer_dirty(l);
|
|
|
|
BUG_ON(path->slots[0] != slot);
|
|
|
|
|
|
|
|
if (mid <= slot) {
|
|
|
|
free_extent_buffer(path->nodes[0]);
|
|
|
|
path->nodes[0] = right;
|
|
|
|
path->slots[0] -= mid;
|
|
|
|
path->slots[1] += 1;
|
|
|
|
} else {
|
|
|
|
free_extent_buffer(right);
|
|
|
|
}
|
|
|
|
|
|
|
|
BUG_ON(path->slots[0] < 0);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* split the path's leaf in two, making sure there is at least data_size
|
|
|
|
* available for the resulting leaf level of the path.
|
|
|
|
*
|
|
|
|
* returns 0 if all went well and < 0 on failure.
|
|
|
|
*/
|
|
|
|
static noinline int split_leaf(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root,
|
2018-10-12 07:41:53 +00:00
|
|
|
const struct btrfs_key *ins_key,
|
2009-05-29 20:35:30 +00:00
|
|
|
struct btrfs_path *path, int data_size,
|
|
|
|
int extend)
|
|
|
|
{
|
|
|
|
struct btrfs_disk_key disk_key;
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *l;
|
2007-03-12 16:01:18 +00:00
|
|
|
u32 nritems;
|
2007-02-02 14:18:22 +00:00
|
|
|
int mid;
|
|
|
|
int slot;
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *right;
|
2007-12-05 15:41:38 +00:00
|
|
|
int ret = 0;
|
2007-02-28 21:35:06 +00:00
|
|
|
int wret;
|
2009-05-29 20:35:30 +00:00
|
|
|
int split;
|
2007-12-05 15:41:38 +00:00
|
|
|
int num_doubles = 0;
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2014-12-03 04:18:29 +00:00
|
|
|
l = path->nodes[0];
|
|
|
|
slot = path->slots[0];
|
|
|
|
if (extend && data_size + btrfs_item_size_nr(l, slot) +
|
2018-01-26 07:26:00 +00:00
|
|
|
sizeof(struct btrfs_item) > BTRFS_LEAF_DATA_SIZE(root->fs_info))
|
2014-12-03 04:18:29 +00:00
|
|
|
return -EOVERFLOW;
|
|
|
|
|
2007-03-17 18:29:23 +00:00
|
|
|
/* first try to make some room by pushing left and right */
|
2008-12-17 21:10:07 +00:00
|
|
|
if (data_size && ins_key->type != BTRFS_DIR_ITEM_KEY) {
|
2007-12-05 15:41:38 +00:00
|
|
|
wret = push_leaf_right(trans, root, path, data_size, 0);
|
2009-05-29 20:35:30 +00:00
|
|
|
if (wret < 0)
|
2007-03-13 15:17:52 +00:00
|
|
|
return wret;
|
2007-12-05 15:41:38 +00:00
|
|
|
if (wret) {
|
|
|
|
wret = push_leaf_left(trans, root, path, data_size, 0);
|
|
|
|
if (wret < 0)
|
|
|
|
return wret;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
l = path->nodes[0];
|
2007-02-28 21:35:06 +00:00
|
|
|
|
2007-12-05 15:41:38 +00:00
|
|
|
/* did the pushes work? */
|
2018-04-30 03:15:43 +00:00
|
|
|
if (btrfs_leaf_free_space(l) >= data_size)
|
2007-12-05 15:41:38 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-02-22 16:39:13 +00:00
|
|
|
if (!path->nodes[1]) {
|
2007-03-16 20:20:31 +00:00
|
|
|
ret = insert_new_root(trans, root, path, 1);
|
2007-02-22 16:39:13 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
2007-12-05 15:41:38 +00:00
|
|
|
again:
|
2009-05-29 20:35:30 +00:00
|
|
|
split = 1;
|
2008-01-04 15:38:22 +00:00
|
|
|
l = path->nodes[0];
|
2007-02-02 14:18:22 +00:00
|
|
|
slot = path->slots[0];
|
2008-01-04 15:38:22 +00:00
|
|
|
nritems = btrfs_header_nritems(l);
|
2009-05-29 20:35:30 +00:00
|
|
|
mid = (nritems + 1) / 2;
|
2007-12-05 15:41:38 +00:00
|
|
|
|
|
|
|
if (mid <= slot) {
|
|
|
|
if (nritems == 1 ||
|
2009-05-29 20:35:30 +00:00
|
|
|
leaf_space_used(l, mid, nritems - mid) + data_size >
|
2018-01-26 07:26:00 +00:00
|
|
|
BTRFS_LEAF_DATA_SIZE(root->fs_info)) {
|
2007-12-05 15:41:38 +00:00
|
|
|
if (slot >= nritems) {
|
2009-05-29 20:35:30 +00:00
|
|
|
split = 0;
|
|
|
|
} else {
|
|
|
|
mid = slot;
|
|
|
|
if (mid != nritems &&
|
|
|
|
leaf_space_used(l, mid, nritems - mid) +
|
2018-01-26 07:26:00 +00:00
|
|
|
data_size >
|
|
|
|
BTRFS_LEAF_DATA_SIZE(root->fs_info)) {
|
2009-05-29 20:35:30 +00:00
|
|
|
split = 2;
|
|
|
|
}
|
2007-12-05 15:41:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2009-05-29 20:35:30 +00:00
|
|
|
if (leaf_space_used(l, 0, mid) + data_size >
|
2018-01-26 07:26:00 +00:00
|
|
|
BTRFS_LEAF_DATA_SIZE(root->fs_info)) {
|
2008-12-17 21:10:07 +00:00
|
|
|
if (!extend && data_size && slot == 0) {
|
2009-05-29 20:35:30 +00:00
|
|
|
split = 0;
|
2008-12-17 21:10:07 +00:00
|
|
|
} else if ((extend || !data_size) && slot == 0) {
|
2007-12-05 15:41:38 +00:00
|
|
|
mid = 1;
|
|
|
|
} else {
|
|
|
|
mid = slot;
|
|
|
|
if (mid != nritems &&
|
|
|
|
leaf_space_used(l, mid, nritems - mid) +
|
2018-01-26 07:26:00 +00:00
|
|
|
data_size >
|
|
|
|
BTRFS_LEAF_DATA_SIZE(root->fs_info)) {
|
2009-05-29 20:35:30 +00:00
|
|
|
split = 2 ;
|
2007-12-05 15:41:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-11 15:03:59 +00:00
|
|
|
|
2009-05-29 20:35:30 +00:00
|
|
|
if (split == 0)
|
|
|
|
btrfs_cpu_key_to_disk(&disk_key, ins_key);
|
|
|
|
else
|
|
|
|
btrfs_item_key(l, &disk_key, mid);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2017-05-18 01:17:41 +00:00
|
|
|
right = btrfs_alloc_free_block(trans, root, root->fs_info->nodesize,
|
2009-05-29 20:35:30 +00:00
|
|
|
root->root_key.objectid,
|
|
|
|
&disk_key, 0, l->start, 0);
|
|
|
|
if (IS_ERR(right)) {
|
|
|
|
BUG_ON(1);
|
|
|
|
return PTR_ERR(right);
|
2007-03-13 00:12:07 +00:00
|
|
|
}
|
2007-02-02 16:05:29 +00:00
|
|
|
|
2009-05-29 20:35:30 +00:00
|
|
|
memset_extent_buffer(right, 0, 0, sizeof(struct btrfs_header));
|
|
|
|
btrfs_set_header_bytenr(right, right->start);
|
|
|
|
btrfs_set_header_generation(right, trans->transid);
|
|
|
|
btrfs_set_header_backref_rev(right, BTRFS_MIXED_BACKREF_REV);
|
|
|
|
btrfs_set_header_owner(right, root->root_key.objectid);
|
|
|
|
btrfs_set_header_level(right, 0);
|
2018-10-11 15:04:02 +00:00
|
|
|
write_extent_buffer(right, root->fs_info->fs_devices->metadata_uuid,
|
2013-10-01 09:59:22 +00:00
|
|
|
btrfs_header_fsid(), BTRFS_FSID_SIZE);
|
2007-12-05 15:41:38 +00:00
|
|
|
|
2009-05-29 20:35:30 +00:00
|
|
|
write_extent_buffer(right, root->fs_info->chunk_tree_uuid,
|
2013-10-02 12:28:27 +00:00
|
|
|
btrfs_header_chunk_tree_uuid(right),
|
2009-05-29 20:35:30 +00:00
|
|
|
BTRFS_UUID_SIZE);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2018-06-08 12:47:47 +00:00
|
|
|
root_add_used(root, root->fs_info->nodesize);
|
|
|
|
|
2009-05-29 20:35:30 +00:00
|
|
|
if (split == 0) {
|
|
|
|
if (mid <= slot) {
|
|
|
|
btrfs_set_header_nritems(right, 0);
|
|
|
|
wret = insert_ptr(trans, root, path,
|
|
|
|
&disk_key, right->start,
|
|
|
|
path->slots[1] + 1, 1);
|
|
|
|
if (wret)
|
|
|
|
ret = wret;
|
2008-09-23 16:29:10 +00:00
|
|
|
|
2009-05-29 20:35:30 +00:00
|
|
|
free_extent_buffer(path->nodes[0]);
|
|
|
|
path->nodes[0] = right;
|
|
|
|
path->slots[0] = 0;
|
|
|
|
path->slots[1] += 1;
|
|
|
|
} else {
|
|
|
|
btrfs_set_header_nritems(right, 0);
|
|
|
|
wret = insert_ptr(trans, root, path,
|
|
|
|
&disk_key,
|
|
|
|
right->start,
|
|
|
|
path->slots[1], 1);
|
|
|
|
if (wret)
|
|
|
|
ret = wret;
|
|
|
|
free_extent_buffer(path->nodes[0]);
|
|
|
|
path->nodes[0] = right;
|
|
|
|
path->slots[0] = 0;
|
2021-09-14 09:05:52 +00:00
|
|
|
if (path->slots[1] == 0)
|
|
|
|
btrfs_fixup_low_keys(path, &disk_key, 1);
|
2009-05-29 20:35:30 +00:00
|
|
|
}
|
|
|
|
btrfs_mark_buffer_dirty(right);
|
|
|
|
return ret;
|
|
|
|
}
|
2007-12-05 15:41:38 +00:00
|
|
|
|
2009-05-29 20:35:30 +00:00
|
|
|
ret = copy_for_split(trans, root, path, l, right, slot, mid, nritems);
|
|
|
|
BUG_ON(ret);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2009-05-29 20:35:30 +00:00
|
|
|
if (split == 2) {
|
2007-12-05 15:41:38 +00:00
|
|
|
BUG_ON(num_doubles != 0);
|
|
|
|
num_doubles++;
|
|
|
|
goto again;
|
|
|
|
}
|
2009-05-29 20:35:30 +00:00
|
|
|
|
2007-01-26 20:51:26 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2008-12-17 21:10:07 +00:00
|
|
|
/*
|
|
|
|
* This function splits a single item into two items,
|
|
|
|
* giving 'new_key' to the new item and splitting the
|
|
|
|
* old one at split_offset (from the start of the item).
|
|
|
|
*
|
|
|
|
* The path may be released by this operation. After
|
|
|
|
* the split, the path is pointing to the old item. The
|
|
|
|
* new item is going to be in the same node as the old one.
|
|
|
|
*
|
|
|
|
* Note, the item being split must be smaller enough to live alone on
|
|
|
|
* a tree block with room for one extra struct btrfs_item
|
|
|
|
*
|
|
|
|
* This allows us to split the item in place, keeping a lock on the
|
|
|
|
* leaf the entire time.
|
|
|
|
*/
|
|
|
|
int btrfs_split_item(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root,
|
|
|
|
struct btrfs_path *path,
|
|
|
|
struct btrfs_key *new_key,
|
|
|
|
unsigned long split_offset)
|
|
|
|
{
|
|
|
|
u32 item_size;
|
|
|
|
struct extent_buffer *leaf;
|
|
|
|
struct btrfs_key orig_key;
|
|
|
|
struct btrfs_item *item;
|
|
|
|
struct btrfs_item *new_item;
|
|
|
|
int ret = 0;
|
|
|
|
int slot;
|
|
|
|
u32 nritems;
|
|
|
|
u32 orig_offset;
|
|
|
|
struct btrfs_disk_key disk_key;
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
leaf = path->nodes[0];
|
|
|
|
btrfs_item_key_to_cpu(leaf, &orig_key, path->slots[0]);
|
2018-04-30 03:15:43 +00:00
|
|
|
if (btrfs_leaf_free_space(leaf) >=
|
2018-03-30 05:48:56 +00:00
|
|
|
sizeof(struct btrfs_item))
|
2008-12-17 21:10:07 +00:00
|
|
|
goto split;
|
|
|
|
|
|
|
|
item_size = btrfs_item_size_nr(leaf, path->slots[0]);
|
2013-08-03 00:52:43 +00:00
|
|
|
btrfs_release_path(path);
|
2008-12-17 21:10:07 +00:00
|
|
|
|
|
|
|
path->search_for_split = 1;
|
|
|
|
|
|
|
|
ret = btrfs_search_slot(trans, root, &orig_key, path, 0, 1);
|
|
|
|
path->search_for_split = 0;
|
|
|
|
|
|
|
|
/* if our item isn't there or got smaller, return now */
|
|
|
|
if (ret != 0 || item_size != btrfs_item_size_nr(path->nodes[0],
|
|
|
|
path->slots[0])) {
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = split_leaf(trans, root, &orig_key, path, 0, 0);
|
|
|
|
BUG_ON(ret);
|
|
|
|
|
2018-04-30 03:15:43 +00:00
|
|
|
BUG_ON(btrfs_leaf_free_space(leaf) < sizeof(struct btrfs_item));
|
2008-12-17 21:10:07 +00:00
|
|
|
leaf = path->nodes[0];
|
|
|
|
|
|
|
|
split:
|
2013-09-20 09:55:26 +00:00
|
|
|
item = btrfs_item_nr(path->slots[0]);
|
2008-12-17 21:10:07 +00:00
|
|
|
orig_offset = btrfs_item_offset(leaf, item);
|
|
|
|
item_size = btrfs_item_size(leaf, item);
|
|
|
|
|
|
|
|
|
|
|
|
buf = kmalloc(item_size, GFP_NOFS);
|
2016-01-06 14:52:11 +00:00
|
|
|
BUG_ON(!buf);
|
2008-12-17 21:10:07 +00:00
|
|
|
read_extent_buffer(leaf, buf, btrfs_item_ptr_offset(leaf,
|
|
|
|
path->slots[0]), item_size);
|
|
|
|
slot = path->slots[0] + 1;
|
|
|
|
leaf = path->nodes[0];
|
|
|
|
|
|
|
|
nritems = btrfs_header_nritems(leaf);
|
|
|
|
|
btrfs-progs: Fix slot >= nritems
Running "btrfsck --repair /dev/sdd2" crashed as it can happen in
(corrupted) file systems, that slot > nritems:
> (gdb) bt full
> #0 0x00007ffff7020e71 in __memmove_sse2_unaligned_erms () from /lib/x86_64-linux-gnu/libc.so.6
> #1 0x0000000000438764 in btrfs_del_ptr (trans=<optimized out>, root=0x6e4fe0, path=0x1d17880, level=0, slot=7)
> at ctree.c:2611
> parent = 0xcd96980
> nritems = <optimized out>
> __func__ = "btrfs_del_ptr"
> #2 0x0000000000421b15 in repair_btree (corrupt_blocks=<optimized out>, root=<optimized out>) at cmds-check.c:3539
> key = {objectid = 77990592512, type = 168 '\250', offset = 16384}
> trans = 0x8f48c0
> path = 0x1d17880
> level = 0
> #3 check_fs_root (wc=<optimized out>, root_cache=<optimized out>, root=<optimized out>) at cmds-check.c:3703
> corrupt = 0x1d17880
> corrupt_blocks = {root = {rb_node = 0x6e80c60}}
> path = {nodes = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, slots = {0, 0, 0, 0, 0, 0, 0, 0}, locks = {0, 0,
> 0, 0, 0, 0, 0, 0}, reada = 0, lowest_level = 0, search_for_split = 0, skip_check_block = 0}
> nrefs = {bytenr = {271663104, 271646720, 560021504, 0, 0, 0, 0, 0}, refs = {1, 1, 1, 0, 0, 0, 0, 0}}
> wret = 215575372
> root_node = {cache = {rb_node = {__rb_parent_color = 0, rb_right = 0x0, rb_left = 0x0}, objectid = 0,
> start = 0, size = 0}, root_cache = {root = {rb_node = 0x0}}, inode_cache = {root = {
> rb_node = 0x781c80}}, current = 0x819530, refs = 0}
> status = 215575372
> rec = 0x1
> #4 check_fs_roots (root_cache=0xcd96b6d, root=<optimized out>) at cmds-check.c:3809
> path = {nodes = {0x6eed90, 0x6a2f40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, slots = {18, 2, 0, 0, 0, 0, 0, 0},
> locks = {0, 0, 0, 0, 0, 0, 0, 0}, reada = 0, lowest_level = 0, search_for_split = 0,
> skip_check_block = 0}
> key = {objectid = 323, type = 132 '\204', offset = 18446744073709551615}
> wc = {shared = {root = {rb_node = 0x0}}, nodes = {0x0, 0x0, 0x7fffffffe428, 0x0, 0x0, 0x0, 0x0, 0x0},
> active_node = 2, root_level = 2}
> leaf = 0x6e4fe0
> tmp_root = 0x6e4fe0
> #5 0x00000000004287c3 in cmd_check (argc=215575372, argv=0x1d17880) at cmds-check.c:11521
> root_cache = {root = {rb_node = 0x98c2940}}
> info = 0x6927b0
> bytenr = 6891440
> tree_root_bytenr = 0
> uuidbuf = "f65ff1a1-76ef-456e-beb5-c6c3841e7534"
> num = 215575372
> readonly = 218080104
> qgroups_repaired = 0
> #6 0x000000000040a41f in main (argc=3, argv=0x7fffffffebe8) at btrfs.c:243
> cmd = 0x689868
> bname = <optimized out>
> ret = <optimized out>
in that case the count of remaining items (nritems - slot - 1) gets
negative. That is then casted to (unsigned long len), which leads to the
observed crash.
Change the tests before the move to handle only the non-corrupted case,
were slow < nritems.
This does not fix the corruption, but allows btrfsck to finish without
crashing.
Signed-off-by: Philipp Hahn <hahn@univention.de>
Signed-off-by: David Sterba <dsterba@suse.com>
2017-05-15 17:00:23 +00:00
|
|
|
if (slot < nritems) {
|
2008-12-17 21:10:07 +00:00
|
|
|
/* shift the items */
|
|
|
|
memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + 1),
|
|
|
|
btrfs_item_nr_offset(slot),
|
|
|
|
(nritems - slot) * sizeof(struct btrfs_item));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
btrfs_cpu_key_to_disk(&disk_key, new_key);
|
|
|
|
btrfs_set_item_key(leaf, &disk_key, slot);
|
|
|
|
|
2013-09-20 09:55:26 +00:00
|
|
|
new_item = btrfs_item_nr(slot);
|
2008-12-17 21:10:07 +00:00
|
|
|
|
|
|
|
btrfs_set_item_offset(leaf, new_item, orig_offset);
|
|
|
|
btrfs_set_item_size(leaf, new_item, item_size - split_offset);
|
|
|
|
|
|
|
|
btrfs_set_item_offset(leaf, item,
|
|
|
|
orig_offset + item_size - split_offset);
|
|
|
|
btrfs_set_item_size(leaf, item, split_offset);
|
|
|
|
|
|
|
|
btrfs_set_header_nritems(leaf, nritems + 1);
|
|
|
|
|
|
|
|
/* write the data for the start of the original item */
|
|
|
|
write_extent_buffer(leaf, buf,
|
|
|
|
btrfs_item_ptr_offset(leaf, path->slots[0]),
|
|
|
|
split_offset);
|
|
|
|
|
|
|
|
/* write the data for the new item */
|
|
|
|
write_extent_buffer(leaf, buf + split_offset,
|
|
|
|
btrfs_item_ptr_offset(leaf, slot),
|
|
|
|
item_size - split_offset);
|
|
|
|
btrfs_mark_buffer_dirty(leaf);
|
|
|
|
|
|
|
|
ret = 0;
|
2018-04-30 03:15:43 +00:00
|
|
|
if (btrfs_leaf_free_space(leaf) < 0) {
|
2021-06-02 19:59:48 +00:00
|
|
|
btrfs_print_leaf(leaf, BTRFS_PRINT_TREE_DEFAULT);
|
2008-12-17 21:10:07 +00:00
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
kfree(buf);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-09-14 09:05:54 +00:00
|
|
|
int btrfs_truncate_item(struct btrfs_path *path, u32 new_size, int from_end)
|
2008-01-04 15:38:22 +00:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
int slot;
|
|
|
|
struct extent_buffer *leaf;
|
|
|
|
struct btrfs_item *item;
|
|
|
|
u32 nritems;
|
|
|
|
unsigned int data_end;
|
|
|
|
unsigned int old_data_start;
|
|
|
|
unsigned int old_size;
|
|
|
|
unsigned int size_diff;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
leaf = path->nodes[0];
|
|
|
|
slot = path->slots[0];
|
|
|
|
|
|
|
|
old_size = btrfs_item_size_nr(leaf, slot);
|
|
|
|
if (old_size == new_size)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
nritems = btrfs_header_nritems(leaf);
|
2021-09-14 09:05:53 +00:00
|
|
|
data_end = leaf_data_end(leaf);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
old_data_start = btrfs_item_offset_nr(leaf, slot);
|
|
|
|
|
|
|
|
size_diff = old_size - new_size;
|
|
|
|
|
|
|
|
BUG_ON(slot < 0);
|
|
|
|
BUG_ON(slot >= nritems);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* item0..itemN ... dataN.offset..dataN.size .. data0.size
|
|
|
|
*/
|
|
|
|
/* first correct the data pointers */
|
|
|
|
for (i = slot; i < nritems; i++) {
|
|
|
|
u32 ioff;
|
2013-09-20 09:55:26 +00:00
|
|
|
item = btrfs_item_nr(i);
|
2008-01-04 15:38:22 +00:00
|
|
|
ioff = btrfs_item_offset(leaf, item);
|
|
|
|
btrfs_set_item_offset(leaf, item, ioff + size_diff);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* shift the data */
|
|
|
|
if (from_end) {
|
|
|
|
memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
|
|
|
|
data_end + size_diff, btrfs_leaf_data(leaf) +
|
|
|
|
data_end, old_data_start + new_size - data_end);
|
|
|
|
} else {
|
|
|
|
struct btrfs_disk_key disk_key;
|
|
|
|
u64 offset;
|
|
|
|
|
|
|
|
btrfs_item_key(leaf, &disk_key, slot);
|
|
|
|
|
|
|
|
if (btrfs_disk_key_type(&disk_key) == BTRFS_EXTENT_DATA_KEY) {
|
|
|
|
unsigned long ptr;
|
|
|
|
struct btrfs_file_extent_item *fi;
|
|
|
|
|
|
|
|
fi = btrfs_item_ptr(leaf, slot,
|
|
|
|
struct btrfs_file_extent_item);
|
|
|
|
fi = (struct btrfs_file_extent_item *)(
|
|
|
|
(unsigned long)fi - size_diff);
|
|
|
|
|
|
|
|
if (btrfs_file_extent_type(leaf, fi) ==
|
|
|
|
BTRFS_FILE_EXTENT_INLINE) {
|
|
|
|
ptr = btrfs_item_ptr_offset(leaf, slot);
|
|
|
|
memmove_extent_buffer(leaf, ptr,
|
|
|
|
(unsigned long)fi,
|
|
|
|
offsetof(struct btrfs_file_extent_item,
|
|
|
|
disk_bytenr));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
|
|
|
|
data_end + size_diff, btrfs_leaf_data(leaf) +
|
|
|
|
data_end, old_data_start - data_end);
|
|
|
|
|
|
|
|
offset = btrfs_disk_key_offset(&disk_key);
|
|
|
|
btrfs_set_disk_key_offset(&disk_key, offset + size_diff);
|
|
|
|
btrfs_set_item_key(leaf, &disk_key, slot);
|
|
|
|
if (slot == 0)
|
2021-09-14 09:05:52 +00:00
|
|
|
btrfs_fixup_low_keys(path, &disk_key, 1);
|
2008-01-04 15:38:22 +00:00
|
|
|
}
|
|
|
|
|
2013-09-20 09:55:26 +00:00
|
|
|
item = btrfs_item_nr(slot);
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_item_size(leaf, item, new_size);
|
|
|
|
btrfs_mark_buffer_dirty(leaf);
|
|
|
|
|
|
|
|
ret = 0;
|
2018-04-30 03:15:43 +00:00
|
|
|
if (btrfs_leaf_free_space(leaf) < 0) {
|
2021-06-02 19:59:48 +00:00
|
|
|
btrfs_print_leaf(leaf, BTRFS_PRINT_TREE_DEFAULT);
|
2008-01-04 15:38:22 +00:00
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-02-02 12:38:44 +00:00
|
|
|
int btrfs_extend_item(struct btrfs_root *root, struct btrfs_path *path,
|
2008-01-04 15:38:22 +00:00
|
|
|
u32 data_size)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
int slot;
|
|
|
|
struct extent_buffer *leaf;
|
|
|
|
struct btrfs_item *item;
|
|
|
|
u32 nritems;
|
|
|
|
unsigned int data_end;
|
|
|
|
unsigned int old_data;
|
|
|
|
unsigned int old_size;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
leaf = path->nodes[0];
|
|
|
|
|
|
|
|
nritems = btrfs_header_nritems(leaf);
|
2021-09-14 09:05:53 +00:00
|
|
|
data_end = leaf_data_end(leaf);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2018-04-30 03:15:43 +00:00
|
|
|
if (btrfs_leaf_free_space(leaf) < data_size) {
|
2021-06-02 19:59:48 +00:00
|
|
|
btrfs_print_leaf(leaf, BTRFS_PRINT_TREE_DEFAULT);
|
2008-01-04 15:38:22 +00:00
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
slot = path->slots[0];
|
|
|
|
old_data = btrfs_item_end_nr(leaf, slot);
|
|
|
|
|
|
|
|
BUG_ON(slot < 0);
|
|
|
|
if (slot >= nritems) {
|
2021-06-02 19:59:48 +00:00
|
|
|
btrfs_print_leaf(leaf, BTRFS_PRINT_TREE_DEFAULT);
|
2019-08-11 22:46:49 +00:00
|
|
|
printk("slot %d too large, nritems %u\n", slot, nritems);
|
2008-01-04 15:38:22 +00:00
|
|
|
BUG_ON(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* item0..itemN ... dataN.offset..dataN.size .. data0.size
|
|
|
|
*/
|
|
|
|
/* first correct the data pointers */
|
|
|
|
for (i = slot; i < nritems; i++) {
|
|
|
|
u32 ioff;
|
2013-09-20 09:55:26 +00:00
|
|
|
item = btrfs_item_nr(i);
|
2008-01-04 15:38:22 +00:00
|
|
|
ioff = btrfs_item_offset(leaf, item);
|
|
|
|
btrfs_set_item_offset(leaf, item, ioff - data_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* shift the data */
|
|
|
|
memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
|
|
|
|
data_end - data_size, btrfs_leaf_data(leaf) +
|
|
|
|
data_end, old_data - data_end);
|
|
|
|
|
|
|
|
data_end = old_data;
|
|
|
|
old_size = btrfs_item_size_nr(leaf, slot);
|
2013-09-20 09:55:26 +00:00
|
|
|
item = btrfs_item_nr(slot);
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_item_size(leaf, item, old_size + data_size);
|
|
|
|
btrfs_mark_buffer_dirty(leaf);
|
|
|
|
|
|
|
|
ret = 0;
|
2018-04-30 03:15:43 +00:00
|
|
|
if (btrfs_leaf_free_space(leaf) < 0) {
|
2021-06-02 19:59:48 +00:00
|
|
|
btrfs_print_leaf(leaf, BTRFS_PRINT_TREE_DEFAULT);
|
2008-01-04 15:38:22 +00:00
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-02-02 16:05:29 +00:00
|
|
|
/*
|
|
|
|
* Given a key and some data, insert an item into the tree.
|
|
|
|
* This does all the path init required, making room in the tree if needed.
|
|
|
|
*/
|
2008-01-29 20:15:18 +00:00
|
|
|
int btrfs_insert_empty_items(struct btrfs_trans_handle *trans,
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_root *root,
|
|
|
|
struct btrfs_path *path,
|
2008-01-29 20:15:18 +00:00
|
|
|
struct btrfs_key *cpu_key, u32 *data_size,
|
|
|
|
int nr)
|
2007-01-26 20:51:26 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *leaf;
|
|
|
|
struct btrfs_item *item;
|
2007-02-28 21:35:06 +00:00
|
|
|
int ret = 0;
|
2007-01-26 20:51:26 +00:00
|
|
|
int slot;
|
2008-01-29 20:15:18 +00:00
|
|
|
int i;
|
2007-03-12 16:01:18 +00:00
|
|
|
u32 nritems;
|
2008-01-29 20:15:18 +00:00
|
|
|
u32 total_size = 0;
|
|
|
|
u32 total_data = 0;
|
2007-01-26 20:51:26 +00:00
|
|
|
unsigned int data_end;
|
2007-03-12 20:22:34 +00:00
|
|
|
struct btrfs_disk_key disk_key;
|
|
|
|
|
2008-01-29 20:15:18 +00:00
|
|
|
for (i = 0; i < nr; i++) {
|
|
|
|
total_data += data_size[i];
|
|
|
|
}
|
2007-01-26 20:51:26 +00:00
|
|
|
|
2007-02-02 16:05:29 +00:00
|
|
|
/* create a root if there isn't one */
|
2007-02-22 16:39:13 +00:00
|
|
|
if (!root->node)
|
2007-02-21 22:04:57 +00:00
|
|
|
BUG();
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2009-06-03 15:59:47 +00:00
|
|
|
total_size = total_data + nr * sizeof(struct btrfs_item);
|
2008-01-29 20:15:18 +00:00
|
|
|
ret = btrfs_search_slot(trans, root, cpu_key, path, total_size, 1);
|
2007-02-02 14:18:22 +00:00
|
|
|
if (ret == 0) {
|
2007-03-02 14:47:58 +00:00
|
|
|
return -EEXIST;
|
2007-02-28 21:35:06 +00:00
|
|
|
}
|
2007-03-01 23:59:40 +00:00
|
|
|
if (ret < 0)
|
|
|
|
goto out;
|
2007-01-26 20:51:26 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
leaf = path->nodes[0];
|
2007-02-02 16:05:29 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
nritems = btrfs_header_nritems(leaf);
|
2021-09-14 09:05:53 +00:00
|
|
|
data_end = leaf_data_end(leaf);
|
2007-02-02 14:18:22 +00:00
|
|
|
|
2018-04-30 03:15:43 +00:00
|
|
|
if (btrfs_leaf_free_space(leaf) < total_size) {
|
2021-06-02 19:59:48 +00:00
|
|
|
btrfs_print_leaf(leaf, BTRFS_PRINT_TREE_DEFAULT);
|
2008-01-04 15:38:22 +00:00
|
|
|
printk("not enough freespace need %u have %d\n",
|
2018-04-30 03:15:43 +00:00
|
|
|
total_size, btrfs_leaf_free_space(leaf));
|
2007-01-26 20:51:26 +00:00
|
|
|
BUG();
|
2008-01-04 15:38:22 +00:00
|
|
|
}
|
2007-01-26 20:51:26 +00:00
|
|
|
|
2007-03-15 16:56:47 +00:00
|
|
|
slot = path->slots[0];
|
2007-02-02 14:18:22 +00:00
|
|
|
BUG_ON(slot < 0);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
btrfs-progs: Fix slot >= nritems
Running "btrfsck --repair /dev/sdd2" crashed as it can happen in
(corrupted) file systems, that slot > nritems:
> (gdb) bt full
> #0 0x00007ffff7020e71 in __memmove_sse2_unaligned_erms () from /lib/x86_64-linux-gnu/libc.so.6
> #1 0x0000000000438764 in btrfs_del_ptr (trans=<optimized out>, root=0x6e4fe0, path=0x1d17880, level=0, slot=7)
> at ctree.c:2611
> parent = 0xcd96980
> nritems = <optimized out>
> __func__ = "btrfs_del_ptr"
> #2 0x0000000000421b15 in repair_btree (corrupt_blocks=<optimized out>, root=<optimized out>) at cmds-check.c:3539
> key = {objectid = 77990592512, type = 168 '\250', offset = 16384}
> trans = 0x8f48c0
> path = 0x1d17880
> level = 0
> #3 check_fs_root (wc=<optimized out>, root_cache=<optimized out>, root=<optimized out>) at cmds-check.c:3703
> corrupt = 0x1d17880
> corrupt_blocks = {root = {rb_node = 0x6e80c60}}
> path = {nodes = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, slots = {0, 0, 0, 0, 0, 0, 0, 0}, locks = {0, 0,
> 0, 0, 0, 0, 0, 0}, reada = 0, lowest_level = 0, search_for_split = 0, skip_check_block = 0}
> nrefs = {bytenr = {271663104, 271646720, 560021504, 0, 0, 0, 0, 0}, refs = {1, 1, 1, 0, 0, 0, 0, 0}}
> wret = 215575372
> root_node = {cache = {rb_node = {__rb_parent_color = 0, rb_right = 0x0, rb_left = 0x0}, objectid = 0,
> start = 0, size = 0}, root_cache = {root = {rb_node = 0x0}}, inode_cache = {root = {
> rb_node = 0x781c80}}, current = 0x819530, refs = 0}
> status = 215575372
> rec = 0x1
> #4 check_fs_roots (root_cache=0xcd96b6d, root=<optimized out>) at cmds-check.c:3809
> path = {nodes = {0x6eed90, 0x6a2f40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, slots = {18, 2, 0, 0, 0, 0, 0, 0},
> locks = {0, 0, 0, 0, 0, 0, 0, 0}, reada = 0, lowest_level = 0, search_for_split = 0,
> skip_check_block = 0}
> key = {objectid = 323, type = 132 '\204', offset = 18446744073709551615}
> wc = {shared = {root = {rb_node = 0x0}}, nodes = {0x0, 0x0, 0x7fffffffe428, 0x0, 0x0, 0x0, 0x0, 0x0},
> active_node = 2, root_level = 2}
> leaf = 0x6e4fe0
> tmp_root = 0x6e4fe0
> #5 0x00000000004287c3 in cmd_check (argc=215575372, argv=0x1d17880) at cmds-check.c:11521
> root_cache = {root = {rb_node = 0x98c2940}}
> info = 0x6927b0
> bytenr = 6891440
> tree_root_bytenr = 0
> uuidbuf = "f65ff1a1-76ef-456e-beb5-c6c3841e7534"
> num = 215575372
> readonly = 218080104
> qgroups_repaired = 0
> #6 0x000000000040a41f in main (argc=3, argv=0x7fffffffebe8) at btrfs.c:243
> cmd = 0x689868
> bname = <optimized out>
> ret = <optimized out>
in that case the count of remaining items (nritems - slot - 1) gets
negative. That is then casted to (unsigned long len), which leads to the
observed crash.
Change the tests before the move to handle only the non-corrupted case,
were slow < nritems.
This does not fix the corruption, but allows btrfsck to finish without
crashing.
Signed-off-by: Philipp Hahn <hahn@univention.de>
Signed-off-by: David Sterba <dsterba@suse.com>
2017-05-15 17:00:23 +00:00
|
|
|
if (slot < nritems) {
|
2008-01-04 15:38:22 +00:00
|
|
|
unsigned int old_data = btrfs_item_end_nr(leaf, slot);
|
2007-01-26 20:51:26 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
if (old_data < data_end) {
|
2021-06-02 19:59:48 +00:00
|
|
|
btrfs_print_leaf(leaf, BTRFS_PRINT_TREE_DEFAULT);
|
2019-08-11 22:46:49 +00:00
|
|
|
printk("slot %d old_data %u data_end %u\n",
|
2008-01-04 15:38:22 +00:00
|
|
|
slot, old_data, data_end);
|
|
|
|
BUG_ON(1);
|
|
|
|
}
|
2007-01-26 20:51:26 +00:00
|
|
|
/*
|
|
|
|
* item0..itemN ... dataN.offset..dataN.size .. data0.size
|
|
|
|
*/
|
|
|
|
/* first correct the data pointers */
|
2007-03-13 00:12:07 +00:00
|
|
|
for (i = slot; i < nritems; i++) {
|
2008-01-04 15:38:22 +00:00
|
|
|
u32 ioff;
|
|
|
|
|
2013-09-20 09:55:26 +00:00
|
|
|
item = btrfs_item_nr(i);
|
2008-01-04 15:38:22 +00:00
|
|
|
ioff = btrfs_item_offset(leaf, item);
|
2008-01-29 20:15:18 +00:00
|
|
|
btrfs_set_item_offset(leaf, item, ioff - total_data);
|
2007-03-13 00:12:07 +00:00
|
|
|
}
|
2007-01-26 20:51:26 +00:00
|
|
|
|
|
|
|
/* shift the items */
|
2008-01-29 20:15:18 +00:00
|
|
|
memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot + nr),
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_item_nr_offset(slot),
|
|
|
|
(nritems - slot) * sizeof(struct btrfs_item));
|
2007-01-26 20:51:26 +00:00
|
|
|
|
|
|
|
/* shift the data */
|
2008-01-04 15:38:22 +00:00
|
|
|
memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
|
2008-01-29 20:15:18 +00:00
|
|
|
data_end - total_data, btrfs_leaf_data(leaf) +
|
2008-01-04 15:38:22 +00:00
|
|
|
data_end, old_data - data_end);
|
2007-01-26 20:51:26 +00:00
|
|
|
data_end = old_data;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-03-15 16:56:47 +00:00
|
|
|
/* setup the item for the new data */
|
2008-01-29 20:15:18 +00:00
|
|
|
for (i = 0; i < nr; i++) {
|
|
|
|
btrfs_cpu_key_to_disk(&disk_key, cpu_key + i);
|
|
|
|
btrfs_set_item_key(leaf, &disk_key, slot + i);
|
2013-09-20 09:55:26 +00:00
|
|
|
item = btrfs_item_nr(slot + i);
|
2008-01-29 20:15:18 +00:00
|
|
|
btrfs_set_item_offset(leaf, item, data_end - data_size[i]);
|
|
|
|
data_end -= data_size[i];
|
|
|
|
btrfs_set_item_size(leaf, item, data_size[i]);
|
|
|
|
}
|
|
|
|
btrfs_set_header_nritems(leaf, nritems + nr);
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_mark_buffer_dirty(leaf);
|
2007-02-28 21:35:06 +00:00
|
|
|
|
|
|
|
ret = 0;
|
2008-01-30 16:43:54 +00:00
|
|
|
if (slot == 0) {
|
|
|
|
btrfs_cpu_key_to_disk(&disk_key, cpu_key);
|
2021-09-14 09:05:52 +00:00
|
|
|
btrfs_fixup_low_keys(path, &disk_key, 1);
|
2008-01-30 16:43:54 +00:00
|
|
|
}
|
2007-02-28 21:35:06 +00:00
|
|
|
|
2018-04-30 03:15:43 +00:00
|
|
|
if (btrfs_leaf_free_space(leaf) < 0) {
|
2021-06-02 19:59:48 +00:00
|
|
|
btrfs_print_leaf(leaf, BTRFS_PRINT_TREE_DEFAULT);
|
2007-01-26 20:51:26 +00:00
|
|
|
BUG();
|
2008-01-04 15:38:22 +00:00
|
|
|
}
|
2008-01-30 16:43:54 +00:00
|
|
|
|
2007-03-01 23:59:40 +00:00
|
|
|
out:
|
2007-03-15 16:56:47 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Given a key and some data, insert an item into the tree.
|
|
|
|
* This does all the path init required, making room in the tree if needed.
|
|
|
|
*/
|
2007-03-16 20:20:31 +00:00
|
|
|
int btrfs_insert_item(struct btrfs_trans_handle *trans, struct btrfs_root
|
|
|
|
*root, struct btrfs_key *cpu_key, void *data, u32
|
|
|
|
data_size)
|
2007-03-15 16:56:47 +00:00
|
|
|
{
|
|
|
|
int ret = 0;
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_path *path;
|
|
|
|
struct extent_buffer *leaf;
|
|
|
|
unsigned long ptr;
|
2007-03-15 16:56:47 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
path = btrfs_alloc_path();
|
2016-08-31 18:38:46 +00:00
|
|
|
if (!path)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
ret = btrfs_insert_empty_item(trans, root, path, cpu_key, data_size);
|
2007-03-15 16:56:47 +00:00
|
|
|
if (!ret) {
|
2008-01-04 15:38:22 +00:00
|
|
|
leaf = path->nodes[0];
|
|
|
|
ptr = btrfs_item_ptr_offset(leaf, path->slots[0]);
|
|
|
|
write_extent_buffer(leaf, data, ptr, data_size);
|
|
|
|
btrfs_mark_buffer_dirty(leaf);
|
2007-03-15 16:56:47 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_free_path(path);
|
2007-02-28 21:35:06 +00:00
|
|
|
return ret;
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
|
|
|
|
2007-02-02 16:05:29 +00:00
|
|
|
/*
|
2007-02-24 11:24:44 +00:00
|
|
|
* delete the pointer from a given node.
|
2007-02-02 16:05:29 +00:00
|
|
|
*
|
|
|
|
* If the delete empties a node, the node is removed from the tree,
|
|
|
|
* continuing all the way the root if required. The root is converted into
|
|
|
|
* a leaf if all the nodes are emptied.
|
|
|
|
*/
|
2017-02-02 12:38:44 +00:00
|
|
|
int btrfs_del_ptr(struct btrfs_root *root, struct btrfs_path *path,
|
|
|
|
int level, int slot)
|
2007-01-26 20:51:26 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *parent = path->nodes[level];
|
2007-03-12 16:01:18 +00:00
|
|
|
u32 nritems;
|
2007-02-28 21:35:06 +00:00
|
|
|
int ret = 0;
|
2007-01-26 20:51:26 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
nritems = btrfs_header_nritems(parent);
|
btrfs-progs: Fix slot >= nritems
Running "btrfsck --repair /dev/sdd2" crashed as it can happen in
(corrupted) file systems, that slot > nritems:
> (gdb) bt full
> #0 0x00007ffff7020e71 in __memmove_sse2_unaligned_erms () from /lib/x86_64-linux-gnu/libc.so.6
> #1 0x0000000000438764 in btrfs_del_ptr (trans=<optimized out>, root=0x6e4fe0, path=0x1d17880, level=0, slot=7)
> at ctree.c:2611
> parent = 0xcd96980
> nritems = <optimized out>
> __func__ = "btrfs_del_ptr"
> #2 0x0000000000421b15 in repair_btree (corrupt_blocks=<optimized out>, root=<optimized out>) at cmds-check.c:3539
> key = {objectid = 77990592512, type = 168 '\250', offset = 16384}
> trans = 0x8f48c0
> path = 0x1d17880
> level = 0
> #3 check_fs_root (wc=<optimized out>, root_cache=<optimized out>, root=<optimized out>) at cmds-check.c:3703
> corrupt = 0x1d17880
> corrupt_blocks = {root = {rb_node = 0x6e80c60}}
> path = {nodes = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, slots = {0, 0, 0, 0, 0, 0, 0, 0}, locks = {0, 0,
> 0, 0, 0, 0, 0, 0}, reada = 0, lowest_level = 0, search_for_split = 0, skip_check_block = 0}
> nrefs = {bytenr = {271663104, 271646720, 560021504, 0, 0, 0, 0, 0}, refs = {1, 1, 1, 0, 0, 0, 0, 0}}
> wret = 215575372
> root_node = {cache = {rb_node = {__rb_parent_color = 0, rb_right = 0x0, rb_left = 0x0}, objectid = 0,
> start = 0, size = 0}, root_cache = {root = {rb_node = 0x0}}, inode_cache = {root = {
> rb_node = 0x781c80}}, current = 0x819530, refs = 0}
> status = 215575372
> rec = 0x1
> #4 check_fs_roots (root_cache=0xcd96b6d, root=<optimized out>) at cmds-check.c:3809
> path = {nodes = {0x6eed90, 0x6a2f40, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, slots = {18, 2, 0, 0, 0, 0, 0, 0},
> locks = {0, 0, 0, 0, 0, 0, 0, 0}, reada = 0, lowest_level = 0, search_for_split = 0,
> skip_check_block = 0}
> key = {objectid = 323, type = 132 '\204', offset = 18446744073709551615}
> wc = {shared = {root = {rb_node = 0x0}}, nodes = {0x0, 0x0, 0x7fffffffe428, 0x0, 0x0, 0x0, 0x0, 0x0},
> active_node = 2, root_level = 2}
> leaf = 0x6e4fe0
> tmp_root = 0x6e4fe0
> #5 0x00000000004287c3 in cmd_check (argc=215575372, argv=0x1d17880) at cmds-check.c:11521
> root_cache = {root = {rb_node = 0x98c2940}}
> info = 0x6927b0
> bytenr = 6891440
> tree_root_bytenr = 0
> uuidbuf = "f65ff1a1-76ef-456e-beb5-c6c3841e7534"
> num = 215575372
> readonly = 218080104
> qgroups_repaired = 0
> #6 0x000000000040a41f in main (argc=3, argv=0x7fffffffebe8) at btrfs.c:243
> cmd = 0x689868
> bname = <optimized out>
> ret = <optimized out>
in that case the count of remaining items (nritems - slot - 1) gets
negative. That is then casted to (unsigned long len), which leads to the
observed crash.
Change the tests before the move to handle only the non-corrupted case,
were slow < nritems.
This does not fix the corruption, but allows btrfsck to finish without
crashing.
Signed-off-by: Philipp Hahn <hahn@univention.de>
Signed-off-by: David Sterba <dsterba@suse.com>
2017-05-15 17:00:23 +00:00
|
|
|
if (slot < nritems - 1) {
|
|
|
|
/* shift the items */
|
2008-01-04 15:38:22 +00:00
|
|
|
memmove_extent_buffer(parent,
|
|
|
|
btrfs_node_key_ptr_offset(slot),
|
|
|
|
btrfs_node_key_ptr_offset(slot + 1),
|
|
|
|
sizeof(struct btrfs_key_ptr) *
|
|
|
|
(nritems - slot - 1));
|
2007-03-01 17:04:21 +00:00
|
|
|
}
|
2007-03-12 16:01:18 +00:00
|
|
|
nritems--;
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_header_nritems(parent, nritems);
|
2007-03-12 16:01:18 +00:00
|
|
|
if (nritems == 0 && parent == root->node) {
|
2008-01-04 15:38:22 +00:00
|
|
|
BUG_ON(btrfs_header_level(root->node) != 1);
|
2007-03-01 17:04:21 +00:00
|
|
|
/* just turn the root into a leaf and break */
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_set_header_level(root->node, 0);
|
2007-03-01 17:04:21 +00:00
|
|
|
} else if (slot == 0) {
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_disk_key disk_key;
|
|
|
|
|
|
|
|
btrfs_node_key(parent, &disk_key, 0);
|
2021-09-14 09:05:52 +00:00
|
|
|
btrfs_fixup_low_keys(path, &disk_key, level + 1);
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_mark_buffer_dirty(parent);
|
2007-02-28 21:35:06 +00:00
|
|
|
return ret;
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
|
|
|
|
2009-05-29 20:35:30 +00:00
|
|
|
/*
|
|
|
|
* a helper function to delete the leaf pointed to by path->slots[1] and
|
|
|
|
* path->nodes[1].
|
|
|
|
*
|
|
|
|
* This deletes the pointer in path->nodes[1] and frees the leaf
|
|
|
|
* block extent. zero is returned if it all worked out, < 0 otherwise.
|
|
|
|
*
|
|
|
|
* The path must have already been setup for deleting the leaf, including
|
|
|
|
* all the proper balancing. path->nodes[1] must be locked.
|
|
|
|
*/
|
|
|
|
static noinline int btrfs_del_leaf(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root,
|
|
|
|
struct btrfs_path *path,
|
|
|
|
struct extent_buffer *leaf)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
WARN_ON(btrfs_header_generation(leaf) != trans->transid);
|
2017-02-02 12:38:44 +00:00
|
|
|
ret = btrfs_del_ptr(root, path, 1, path->slots[1]);
|
2009-05-29 20:35:30 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2018-06-08 12:47:47 +00:00
|
|
|
root_sub_used(root, leaf->len);
|
|
|
|
|
2009-05-29 20:35:30 +00:00
|
|
|
ret = btrfs_free_extent(trans, root, leaf->start, leaf->len,
|
|
|
|
0, root->root_key.objectid, 0, 0);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-02-02 16:05:29 +00:00
|
|
|
/*
|
|
|
|
* delete the item at the leaf level in path. If that empties
|
|
|
|
* the leaf, remove it from the tree
|
|
|
|
*/
|
2008-01-29 20:11:36 +00:00
|
|
|
int btrfs_del_items(struct btrfs_trans_handle *trans, struct btrfs_root *root,
|
|
|
|
struct btrfs_path *path, int slot, int nr)
|
2007-01-26 20:51:26 +00:00
|
|
|
{
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *leaf;
|
|
|
|
struct btrfs_item *item;
|
2008-01-29 20:11:36 +00:00
|
|
|
int last_off;
|
|
|
|
int dsize = 0;
|
2007-02-28 21:35:06 +00:00
|
|
|
int ret = 0;
|
|
|
|
int wret;
|
2008-01-29 20:11:36 +00:00
|
|
|
int i;
|
2007-03-12 16:01:18 +00:00
|
|
|
u32 nritems;
|
2007-01-26 20:51:26 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
leaf = path->nodes[0];
|
2008-01-29 20:11:36 +00:00
|
|
|
last_off = btrfs_item_offset_nr(leaf, slot + nr - 1);
|
|
|
|
|
|
|
|
for (i = 0; i < nr; i++)
|
|
|
|
dsize += btrfs_item_size_nr(leaf, slot + i);
|
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
nritems = btrfs_header_nritems(leaf);
|
2007-01-26 20:51:26 +00:00
|
|
|
|
2008-01-29 20:11:36 +00:00
|
|
|
if (slot + nr != nritems) {
|
2021-09-14 09:05:53 +00:00
|
|
|
int data_end = leaf_data_end(leaf);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
memmove_extent_buffer(leaf, btrfs_leaf_data(leaf) +
|
|
|
|
data_end + dsize,
|
|
|
|
btrfs_leaf_data(leaf) + data_end,
|
2008-01-29 20:11:36 +00:00
|
|
|
last_off - data_end);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2008-01-29 20:11:36 +00:00
|
|
|
for (i = slot + nr; i < nritems; i++) {
|
2008-01-04 15:38:22 +00:00
|
|
|
u32 ioff;
|
|
|
|
|
2013-09-20 09:55:26 +00:00
|
|
|
item = btrfs_item_nr(i);
|
2008-01-04 15:38:22 +00:00
|
|
|
ioff = btrfs_item_offset(leaf, item);
|
|
|
|
btrfs_set_item_offset(leaf, item, ioff + dsize);
|
2007-03-13 00:12:07 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
memmove_extent_buffer(leaf, btrfs_item_nr_offset(slot),
|
2008-01-29 20:11:36 +00:00
|
|
|
btrfs_item_nr_offset(slot + nr),
|
2008-01-04 15:38:22 +00:00
|
|
|
sizeof(struct btrfs_item) *
|
2008-01-29 20:11:36 +00:00
|
|
|
(nritems - slot - nr));
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
2008-01-29 20:11:36 +00:00
|
|
|
btrfs_set_header_nritems(leaf, nritems - nr);
|
|
|
|
nritems -= nr;
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-02-02 16:05:29 +00:00
|
|
|
/* delete the leaf if we've emptied it */
|
2007-03-12 16:01:18 +00:00
|
|
|
if (nritems == 0) {
|
2008-01-04 15:38:22 +00:00
|
|
|
if (leaf == root->node) {
|
|
|
|
btrfs_set_header_level(leaf, 0);
|
2007-02-23 13:38:36 +00:00
|
|
|
} else {
|
2018-05-28 06:36:45 +00:00
|
|
|
clean_tree_block(leaf);
|
2009-05-29 20:35:30 +00:00
|
|
|
wret = btrfs_del_leaf(trans, root, path, leaf);
|
|
|
|
BUG_ON(ret);
|
2007-02-28 21:46:22 +00:00
|
|
|
if (wret)
|
|
|
|
ret = wret;
|
2007-02-23 13:38:36 +00:00
|
|
|
}
|
2007-01-26 20:51:26 +00:00
|
|
|
} else {
|
2007-03-12 16:01:18 +00:00
|
|
|
int used = leaf_space_used(leaf, 0, nritems);
|
2007-02-28 21:35:06 +00:00
|
|
|
if (slot == 0) {
|
2008-01-04 15:38:22 +00:00
|
|
|
struct btrfs_disk_key disk_key;
|
|
|
|
|
|
|
|
btrfs_item_key(leaf, &disk_key, 0);
|
2021-09-14 09:05:52 +00:00
|
|
|
btrfs_fixup_low_keys(path, &disk_key, 1);
|
2007-02-28 21:35:06 +00:00
|
|
|
}
|
|
|
|
|
2007-02-02 16:05:29 +00:00
|
|
|
/* delete the leaf if it is mostly empty */
|
2018-01-26 07:26:00 +00:00
|
|
|
if (used < BTRFS_LEAF_DATA_SIZE(root->fs_info) / 4) {
|
2007-01-26 20:51:26 +00:00
|
|
|
/* push_leaf_left fixes the path.
|
|
|
|
* make sure the path still points to our leaf
|
|
|
|
* for possible call to del_ptr below
|
|
|
|
*/
|
2007-01-26 21:38:42 +00:00
|
|
|
slot = path->slots[1];
|
2008-01-04 15:38:22 +00:00
|
|
|
extent_buffer_get(leaf);
|
|
|
|
|
2008-01-29 20:11:36 +00:00
|
|
|
wret = push_leaf_left(trans, root, path, 1, 1);
|
2008-01-04 15:38:22 +00:00
|
|
|
if (wret < 0 && wret != -ENOSPC)
|
2007-02-28 21:35:06 +00:00
|
|
|
ret = wret;
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
if (path->nodes[0] == leaf &&
|
|
|
|
btrfs_header_nritems(leaf)) {
|
2008-01-29 20:11:36 +00:00
|
|
|
wret = push_leaf_right(trans, root, path, 1, 1);
|
2008-01-04 15:38:22 +00:00
|
|
|
if (wret < 0 && wret != -ENOSPC)
|
2007-02-28 21:35:06 +00:00
|
|
|
ret = wret;
|
|
|
|
}
|
2007-12-11 14:21:42 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
if (btrfs_header_nritems(leaf) == 0) {
|
2018-05-28 06:36:45 +00:00
|
|
|
clean_tree_block(leaf);
|
2009-05-29 20:35:30 +00:00
|
|
|
path->slots[1] = slot;
|
|
|
|
ret = btrfs_del_leaf(trans, root, path, leaf);
|
|
|
|
BUG_ON(ret);
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(leaf);
|
2009-05-29 20:35:30 +00:00
|
|
|
|
2007-02-24 11:24:44 +00:00
|
|
|
} else {
|
2008-01-04 15:38:22 +00:00
|
|
|
btrfs_mark_buffer_dirty(leaf);
|
|
|
|
free_extent_buffer(leaf);
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
} else {
|
|
|
|
btrfs_mark_buffer_dirty(leaf);
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
|
|
|
}
|
2007-02-28 21:35:06 +00:00
|
|
|
return ret;
|
2007-01-26 20:51:26 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* walk up the tree as far as required to find the previous leaf.
|
|
|
|
* returns 0 if it found something or 1 if there are no lesser leaves.
|
|
|
|
* returns < 0 on io errors.
|
|
|
|
*/
|
|
|
|
int btrfs_prev_leaf(struct btrfs_root *root, struct btrfs_path *path)
|
2007-12-05 15:41:38 +00:00
|
|
|
{
|
|
|
|
int slot;
|
2008-01-04 15:38:22 +00:00
|
|
|
int level = 1;
|
|
|
|
struct extent_buffer *c;
|
|
|
|
struct extent_buffer *next = NULL;
|
2017-05-18 03:11:55 +00:00
|
|
|
struct btrfs_fs_info *fs_info = root->fs_info;
|
2007-12-05 15:41:38 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
while(level < BTRFS_MAX_LEVEL) {
|
|
|
|
if (!path->nodes[level])
|
|
|
|
return 1;
|
2007-12-05 15:41:38 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
slot = path->slots[level];
|
|
|
|
c = path->nodes[level];
|
|
|
|
if (slot == 0) {
|
|
|
|
level++;
|
|
|
|
if (level == BTRFS_MAX_LEVEL)
|
|
|
|
return 1;
|
|
|
|
continue;
|
2007-12-05 15:41:38 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
slot--;
|
2007-12-05 15:41:38 +00:00
|
|
|
|
2017-05-18 03:11:55 +00:00
|
|
|
next = read_node_slot(fs_info, c, slot);
|
2015-01-28 02:12:55 +00:00
|
|
|
if (!extent_buffer_uptodate(next)) {
|
|
|
|
if (IS_ERR(next))
|
|
|
|
return PTR_ERR(next);
|
|
|
|
return -EIO;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
break;
|
2007-12-05 15:41:38 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
path->slots[level] = slot;
|
|
|
|
while(1) {
|
|
|
|
level--;
|
|
|
|
c = path->nodes[level];
|
|
|
|
free_extent_buffer(c);
|
|
|
|
slot = btrfs_header_nritems(next);
|
|
|
|
if (slot != 0)
|
|
|
|
slot--;
|
|
|
|
path->nodes[level] = next;
|
|
|
|
path->slots[level] = slot;
|
|
|
|
if (!level)
|
|
|
|
break;
|
2017-05-18 03:11:55 +00:00
|
|
|
next = read_node_slot(fs_info, next, slot);
|
2015-01-28 02:12:55 +00:00
|
|
|
if (!extent_buffer_uptodate(next)) {
|
|
|
|
if (IS_ERR(next))
|
|
|
|
return PTR_ERR(next);
|
|
|
|
return -EIO;
|
|
|
|
}
|
2007-04-19 19:41:24 +00:00
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
return 0;
|
2007-04-19 19:41:24 +00:00
|
|
|
}
|
|
|
|
|
2007-02-24 18:39:08 +00:00
|
|
|
/*
|
2018-09-05 06:08:21 +00:00
|
|
|
* Walk up the tree as far as necessary to find the next sibling tree block.
|
|
|
|
* More generic version of btrfs_next_leaf(), as it could find sibling nodes
|
|
|
|
* if @path->lowest_level is not 0.
|
|
|
|
*
|
2007-02-28 21:46:22 +00:00
|
|
|
* returns 0 if it found something or 1 if there are no greater leaves.
|
|
|
|
* returns < 0 on io errors.
|
2007-02-24 18:39:08 +00:00
|
|
|
*/
|
2018-09-05 06:08:21 +00:00
|
|
|
int btrfs_next_sibling_tree_block(struct btrfs_fs_info *fs_info,
|
|
|
|
struct btrfs_path *path)
|
2007-02-20 21:40:44 +00:00
|
|
|
{
|
|
|
|
int slot;
|
2018-09-05 06:08:21 +00:00
|
|
|
int level = path->lowest_level + 1;
|
2008-01-04 15:38:22 +00:00
|
|
|
struct extent_buffer *c;
|
|
|
|
struct extent_buffer *next = NULL;
|
2007-02-20 21:40:44 +00:00
|
|
|
|
2018-09-05 06:08:21 +00:00
|
|
|
BUG_ON(path->lowest_level + 1 >= BTRFS_MAX_LEVEL);
|
2018-12-05 06:40:12 +00:00
|
|
|
do {
|
2007-02-20 21:40:44 +00:00
|
|
|
if (!path->nodes[level])
|
2007-02-28 21:46:22 +00:00
|
|
|
return 1;
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2007-02-20 21:40:44 +00:00
|
|
|
slot = path->slots[level] + 1;
|
|
|
|
c = path->nodes[level];
|
2008-01-04 15:38:22 +00:00
|
|
|
if (slot >= btrfs_header_nritems(c)) {
|
2007-02-20 21:40:44 +00:00
|
|
|
level++;
|
2008-01-04 15:38:22 +00:00
|
|
|
if (level == BTRFS_MAX_LEVEL)
|
|
|
|
return 1;
|
2007-02-20 21:40:44 +00:00
|
|
|
continue;
|
|
|
|
}
|
2008-01-04 15:38:22 +00:00
|
|
|
|
|
|
|
if (path->reada)
|
2018-09-05 05:58:34 +00:00
|
|
|
reada_for_search(fs_info, path, level, slot, 0);
|
2008-01-04 15:38:22 +00:00
|
|
|
|
2017-05-18 03:11:55 +00:00
|
|
|
next = read_node_slot(fs_info, c, slot);
|
2015-01-28 02:12:55 +00:00
|
|
|
if (!extent_buffer_uptodate(next))
|
2011-08-26 13:51:36 +00:00
|
|
|
return -EIO;
|
2007-02-20 21:40:44 +00:00
|
|
|
break;
|
2018-12-05 06:40:12 +00:00
|
|
|
} while (level < BTRFS_MAX_LEVEL);
|
2007-02-20 21:40:44 +00:00
|
|
|
path->slots[level] = slot;
|
|
|
|
while(1) {
|
|
|
|
level--;
|
|
|
|
c = path->nodes[level];
|
2008-01-04 15:38:22 +00:00
|
|
|
free_extent_buffer(c);
|
2007-02-20 21:40:44 +00:00
|
|
|
path->nodes[level] = next;
|
|
|
|
path->slots[level] = 0;
|
2021-08-23 19:23:06 +00:00
|
|
|
/*
|
|
|
|
* Fsck will happily load corrupt blocks in order to fix them,
|
|
|
|
* so we need an extra check just to make sure this block isn't
|
|
|
|
* marked uptodate but invalid.
|
|
|
|
*/
|
|
|
|
if (check_block(fs_info, path, level))
|
|
|
|
return -EIO;
|
2018-09-05 06:08:21 +00:00
|
|
|
if (level == path->lowest_level)
|
2007-02-20 21:40:44 +00:00
|
|
|
break;
|
2008-01-04 15:38:22 +00:00
|
|
|
if (path->reada)
|
2018-09-05 05:58:34 +00:00
|
|
|
reada_for_search(fs_info, path, level, 0, 0);
|
2017-05-18 03:11:55 +00:00
|
|
|
next = read_node_slot(fs_info, next, 0);
|
2015-01-28 02:12:55 +00:00
|
|
|
if (!extent_buffer_uptodate(next))
|
2011-08-26 13:51:36 +00:00
|
|
|
return -EIO;
|
2007-02-20 21:40:44 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2008-03-24 19:03:18 +00:00
|
|
|
|
|
|
|
int btrfs_previous_item(struct btrfs_root *root,
|
|
|
|
struct btrfs_path *path, u64 min_objectid,
|
|
|
|
int type)
|
|
|
|
{
|
|
|
|
struct btrfs_key found_key;
|
|
|
|
struct extent_buffer *leaf;
|
2016-05-19 02:54:39 +00:00
|
|
|
u32 nritems;
|
2008-03-24 19:03:18 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
if (path->slots[0] == 0) {
|
|
|
|
ret = btrfs_prev_leaf(root, path);
|
|
|
|
if (ret != 0)
|
|
|
|
return ret;
|
|
|
|
} else {
|
|
|
|
path->slots[0]--;
|
|
|
|
}
|
|
|
|
leaf = path->nodes[0];
|
2016-05-19 02:54:39 +00:00
|
|
|
nritems = btrfs_header_nritems(leaf);
|
|
|
|
if (nritems == 0)
|
|
|
|
return 1;
|
|
|
|
if (path->slots[0] == nritems)
|
|
|
|
path->slots[0]--;
|
|
|
|
|
2008-03-24 19:03:18 +00:00
|
|
|
btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
|
2016-05-19 02:54:39 +00:00
|
|
|
if (found_key.objectid < min_objectid)
|
|
|
|
break;
|
2008-03-24 19:03:18 +00:00
|
|
|
if (found_key.type == type)
|
|
|
|
return 0;
|
2016-05-19 02:54:39 +00:00
|
|
|
if (found_key.objectid == min_objectid &&
|
|
|
|
found_key.type < type)
|
|
|
|
break;
|
2008-03-24 19:03:18 +00:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-10-10 20:57:07 +00:00
|
|
|
/*
|
|
|
|
* search in extent tree to find a previous Metadata/Data extent item with
|
2018-11-26 17:01:42 +00:00
|
|
|
* min objectid.
|
2014-10-10 20:57:07 +00:00
|
|
|
*
|
|
|
|
* returns 0 if something is found, 1 if nothing was found and < 0 on error
|
|
|
|
*/
|
|
|
|
int btrfs_previous_extent_item(struct btrfs_root *root,
|
|
|
|
struct btrfs_path *path, u64 min_objectid)
|
|
|
|
{
|
|
|
|
struct btrfs_key found_key;
|
|
|
|
struct extent_buffer *leaf;
|
|
|
|
u32 nritems;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
if (path->slots[0] == 0) {
|
|
|
|
ret = btrfs_prev_leaf(root, path);
|
|
|
|
if (ret != 0)
|
|
|
|
return ret;
|
|
|
|
} else {
|
|
|
|
path->slots[0]--;
|
|
|
|
}
|
|
|
|
leaf = path->nodes[0];
|
|
|
|
nritems = btrfs_header_nritems(leaf);
|
|
|
|
if (nritems == 0)
|
|
|
|
return 1;
|
|
|
|
if (path->slots[0] == nritems)
|
|
|
|
path->slots[0]--;
|
|
|
|
|
|
|
|
btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
|
|
|
|
if (found_key.objectid < min_objectid)
|
|
|
|
break;
|
|
|
|
if (found_key.type == BTRFS_EXTENT_ITEM_KEY ||
|
|
|
|
found_key.type == BTRFS_METADATA_ITEM_KEY)
|
|
|
|
return 0;
|
|
|
|
if (found_key.objectid == min_objectid &&
|
|
|
|
found_key.type < BTRFS_EXTENT_ITEM_KEY)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
2016-01-29 05:03:23 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Search in extent tree to found next meta/data extent
|
|
|
|
* Caller needs to check for no-hole or skinny metadata features.
|
|
|
|
*/
|
|
|
|
int btrfs_next_extent_item(struct btrfs_root *root,
|
|
|
|
struct btrfs_path *path, u64 max_objectid)
|
|
|
|
{
|
|
|
|
struct btrfs_key found_key;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
ret = btrfs_next_item(root, path);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
btrfs_item_key_to_cpu(path->nodes[0], &found_key,
|
|
|
|
path->slots[0]);
|
|
|
|
if (found_key.objectid > max_objectid)
|
|
|
|
return 1;
|
|
|
|
if (found_key.type == BTRFS_EXTENT_ITEM_KEY ||
|
|
|
|
found_key.type == BTRFS_METADATA_ITEM_KEY)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2019-01-23 11:16:46 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Search uuid tree - unmounted
|
|
|
|
*
|
|
|
|
* return -ENOENT for !found, < 0 for errors, or 0 if an item was found
|
|
|
|
*/
|
|
|
|
static int btrfs_uuid_tree_lookup(struct btrfs_root *uuid_root, u8 *uuid,
|
|
|
|
u8 type, u64 subid)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct btrfs_path *path = NULL;
|
|
|
|
struct extent_buffer *eb;
|
|
|
|
int slot;
|
|
|
|
u32 item_size;
|
|
|
|
unsigned long offset;
|
|
|
|
struct btrfs_key key;
|
|
|
|
|
|
|
|
if (!uuid_root) {
|
|
|
|
ret = -ENOENT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
path = btrfs_alloc_path();
|
|
|
|
if (!path) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2019-06-13 18:25:26 +00:00
|
|
|
btrfs_uuid_to_key(uuid, &key);
|
2019-01-23 11:16:46 +00:00
|
|
|
key.type = type;
|
|
|
|
ret = btrfs_search_slot(NULL, uuid_root, &key, path, 0, 0);
|
|
|
|
if (ret < 0) {
|
|
|
|
goto out;
|
|
|
|
} else if (ret > 0) {
|
|
|
|
ret = -ENOENT;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
eb = path->nodes[0];
|
|
|
|
slot = path->slots[0];
|
|
|
|
item_size = btrfs_item_size_nr(eb, slot);
|
|
|
|
offset = btrfs_item_ptr_offset(eb, slot);
|
|
|
|
ret = -ENOENT;
|
|
|
|
|
|
|
|
if (!IS_ALIGNED(item_size, sizeof(u64))) {
|
|
|
|
warning("uuid item with invalid size %lu!",
|
|
|
|
(unsigned long)item_size);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
while (item_size) {
|
|
|
|
__le64 data;
|
|
|
|
|
|
|
|
read_extent_buffer(eb, &data, offset, sizeof(data));
|
|
|
|
if (le64_to_cpu(data) == subid) {
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
offset += sizeof(data);
|
|
|
|
item_size -= sizeof(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
btrfs_free_path(path);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int btrfs_uuid_tree_add(struct btrfs_trans_handle *trans, u8 *uuid, u8 type,
|
|
|
|
u64 subvol_id_cpu)
|
|
|
|
{
|
|
|
|
struct btrfs_fs_info *fs_info = trans->fs_info;
|
|
|
|
struct btrfs_root *uuid_root = fs_info->uuid_root;
|
|
|
|
int ret;
|
|
|
|
struct btrfs_path *path = NULL;
|
|
|
|
struct btrfs_key key;
|
|
|
|
struct extent_buffer *eb;
|
|
|
|
int slot;
|
|
|
|
unsigned long offset;
|
|
|
|
__le64 subvol_id_le;
|
|
|
|
|
|
|
|
if (!uuid_root) {
|
|
|
|
warning("%s: uuid root is not initialized", __func__);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = btrfs_uuid_tree_lookup(uuid_root, uuid, type, subvol_id_cpu);
|
|
|
|
if (ret != -ENOENT)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
key.type = type;
|
2019-06-13 18:25:26 +00:00
|
|
|
btrfs_uuid_to_key(uuid, &key);
|
2019-01-23 11:16:46 +00:00
|
|
|
|
|
|
|
path = btrfs_alloc_path();
|
|
|
|
if (!path) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = btrfs_insert_empty_item(trans, uuid_root, path, &key,
|
|
|
|
sizeof(subvol_id_le));
|
|
|
|
if (ret >= 0) {
|
|
|
|
/* Add an item for the type for the first time */
|
|
|
|
eb = path->nodes[0];
|
|
|
|
slot = path->slots[0];
|
|
|
|
offset = btrfs_item_ptr_offset(eb, slot);
|
|
|
|
} else if (ret == -EEXIST) {
|
|
|
|
/*
|
|
|
|
* An item with that type already exists.
|
|
|
|
* Extend the item and store the new subvol_id at the end.
|
|
|
|
*/
|
|
|
|
btrfs_extend_item(uuid_root, path, sizeof(subvol_id_le));
|
|
|
|
eb = path->nodes[0];
|
|
|
|
slot = path->slots[0];
|
|
|
|
offset = btrfs_item_ptr_offset(eb, slot);
|
|
|
|
offset += btrfs_item_size_nr(eb, slot) - sizeof(subvol_id_le);
|
|
|
|
} else if (ret < 0) {
|
|
|
|
warning(
|
|
|
|
"inserting uuid item failed (0x%016llx, 0x%016llx) type %u: %d",
|
|
|
|
(unsigned long long)key.objectid,
|
|
|
|
(unsigned long long)key.offset, type, ret);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
subvol_id_le = cpu_to_le64(subvol_id_cpu);
|
|
|
|
write_extent_buffer(eb, &subvol_id_le, offset, sizeof(subvol_id_le));
|
|
|
|
btrfs_mark_buffer_dirty(eb);
|
|
|
|
|
|
|
|
out:
|
|
|
|
btrfs_free_path(path);
|
|
|
|
return ret;
|
|
|
|
}
|