2017-03-17 14:18:50 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
#include "bcachefs.h"
|
|
|
|
#include "bkey_methods.h"
|
2018-11-28 07:30:56 +08:00
|
|
|
#include "bkey_sort.h"
|
2017-03-17 14:18:50 +08:00
|
|
|
#include "btree_cache.h"
|
|
|
|
#include "btree_io.h"
|
|
|
|
#include "btree_iter.h"
|
|
|
|
#include "btree_locking.h"
|
|
|
|
#include "btree_update.h"
|
|
|
|
#include "btree_update_interior.h"
|
|
|
|
#include "buckets.h"
|
|
|
|
#include "checksum.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "error.h"
|
|
|
|
#include "extents.h"
|
|
|
|
#include "io.h"
|
|
|
|
#include "journal_reclaim.h"
|
|
|
|
#include "journal_seq_blacklist.h"
|
|
|
|
#include "super-io.h"
|
|
|
|
#include "trace.h"
|
|
|
|
|
2020-03-28 05:38:51 +08:00
|
|
|
#include <linux/sched/mm.h>
|
|
|
|
|
2021-07-11 11:03:15 +08:00
|
|
|
void bch2_btree_node_io_unlock(struct btree *b)
|
|
|
|
{
|
|
|
|
EBUG_ON(!btree_node_write_in_flight(b));
|
|
|
|
|
2021-07-11 01:44:42 +08:00
|
|
|
clear_btree_node_write_in_flight_inner(b);
|
2021-07-11 11:03:15 +08:00
|
|
|
clear_btree_node_write_in_flight(b);
|
|
|
|
wake_up_bit(&b->flags, BTREE_NODE_write_in_flight);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bch2_btree_node_io_lock(struct btree *b)
|
|
|
|
{
|
|
|
|
wait_on_bit_lock_io(&b->flags, BTREE_NODE_write_in_flight,
|
|
|
|
TASK_UNINTERRUPTIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void __bch2_btree_node_wait_on_read(struct btree *b)
|
|
|
|
{
|
|
|
|
wait_on_bit_io(&b->flags, BTREE_NODE_read_in_flight,
|
|
|
|
TASK_UNINTERRUPTIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void __bch2_btree_node_wait_on_write(struct btree *b)
|
|
|
|
{
|
|
|
|
wait_on_bit_io(&b->flags, BTREE_NODE_write_in_flight,
|
|
|
|
TASK_UNINTERRUPTIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bch2_btree_node_wait_on_read(struct btree *b)
|
|
|
|
{
|
|
|
|
wait_on_bit_io(&b->flags, BTREE_NODE_read_in_flight,
|
|
|
|
TASK_UNINTERRUPTIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bch2_btree_node_wait_on_write(struct btree *b)
|
|
|
|
{
|
|
|
|
wait_on_bit_io(&b->flags, BTREE_NODE_write_in_flight,
|
|
|
|
TASK_UNINTERRUPTIBLE);
|
|
|
|
}
|
|
|
|
|
2017-03-17 14:18:50 +08:00
|
|
|
static void verify_no_dups(struct btree *b,
|
|
|
|
struct bkey_packed *start,
|
2021-02-20 13:00:23 +08:00
|
|
|
struct bkey_packed *end)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_BCACHEFS_DEBUG
|
2019-11-10 12:50:52 +08:00
|
|
|
struct bkey_packed *k, *p;
|
|
|
|
|
|
|
|
if (start == end)
|
|
|
|
return;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-03-25 08:22:51 +08:00
|
|
|
for (p = start, k = bkey_next(start);
|
2019-11-10 12:50:52 +08:00
|
|
|
k != end;
|
2021-03-25 08:22:51 +08:00
|
|
|
p = k, k = bkey_next(k)) {
|
2019-11-10 12:50:52 +08:00
|
|
|
struct bkey l = bkey_unpack_key(b, p);
|
|
|
|
struct bkey r = bkey_unpack_key(b, k);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-03-05 05:20:16 +08:00
|
|
|
BUG_ON(bpos_cmp(l.p, bkey_start_pos(&r)) >= 0);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-11-10 12:50:52 +08:00
|
|
|
static void set_needs_whiteout(struct bset *i, int v)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
|
|
|
struct bkey_packed *k;
|
|
|
|
|
2021-03-25 08:22:51 +08:00
|
|
|
for (k = i->start; k != vstruct_last(i); k = bkey_next(k))
|
2019-11-10 12:50:52 +08:00
|
|
|
k->needs_whiteout = v;
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
2020-07-26 03:07:37 +08:00
|
|
|
static void btree_bounce_free(struct bch_fs *c, size_t size,
|
2017-03-17 14:18:50 +08:00
|
|
|
bool used_mempool, void *p)
|
|
|
|
{
|
|
|
|
if (used_mempool)
|
|
|
|
mempool_free(p, &c->btree_bounce_pool);
|
|
|
|
else
|
2020-07-26 03:07:37 +08:00
|
|
|
vpfree(p, size);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
2020-07-26 03:07:37 +08:00
|
|
|
static void *btree_bounce_alloc(struct bch_fs *c, size_t size,
|
2017-03-17 14:18:50 +08:00
|
|
|
bool *used_mempool)
|
|
|
|
{
|
2020-03-28 05:38:51 +08:00
|
|
|
unsigned flags = memalloc_nofs_save();
|
2017-03-17 14:18:50 +08:00
|
|
|
void *p;
|
|
|
|
|
2020-07-26 03:07:37 +08:00
|
|
|
BUG_ON(size > btree_bytes(c));
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
*used_mempool = false;
|
2020-07-26 03:07:37 +08:00
|
|
|
p = vpmalloc(size, __GFP_NOWARN|GFP_NOWAIT);
|
2020-03-28 05:38:51 +08:00
|
|
|
if (!p) {
|
|
|
|
*used_mempool = true;
|
|
|
|
p = mempool_alloc(&c->btree_bounce_pool, GFP_NOIO);
|
|
|
|
}
|
|
|
|
memalloc_nofs_restore(flags);
|
|
|
|
return p;
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
2019-11-30 03:08:51 +08:00
|
|
|
static void sort_bkey_ptrs(const struct btree *bt,
|
|
|
|
struct bkey_packed **ptrs, unsigned nr)
|
|
|
|
{
|
|
|
|
unsigned n = nr, a = nr / 2, b, c, d;
|
|
|
|
|
|
|
|
if (!a)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Heap sort: see lib/sort.c: */
|
|
|
|
while (1) {
|
|
|
|
if (a)
|
|
|
|
a--;
|
|
|
|
else if (--n)
|
|
|
|
swap(ptrs[0], ptrs[n]);
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
|
|
|
|
for (b = a; c = 2 * b + 1, (d = c + 1) < n;)
|
2020-11-08 01:31:20 +08:00
|
|
|
b = bch2_bkey_cmp_packed(bt,
|
2019-11-30 03:08:51 +08:00
|
|
|
ptrs[c],
|
|
|
|
ptrs[d]) >= 0 ? c : d;
|
|
|
|
if (d == n)
|
|
|
|
b = c;
|
|
|
|
|
|
|
|
while (b != a &&
|
2020-11-08 01:31:20 +08:00
|
|
|
bch2_bkey_cmp_packed(bt,
|
2019-11-30 03:08:51 +08:00
|
|
|
ptrs[a],
|
|
|
|
ptrs[b]) >= 0)
|
|
|
|
b = (b - 1) / 2;
|
|
|
|
c = b;
|
|
|
|
while (b != a) {
|
|
|
|
b = (b - 1) / 2;
|
|
|
|
swap(ptrs[b], ptrs[c]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void bch2_sort_whiteouts(struct bch_fs *c, struct btree *b)
|
|
|
|
{
|
2019-12-15 04:55:29 +08:00
|
|
|
struct bkey_packed *new_whiteouts, **ptrs, **ptrs_end, *k;
|
|
|
|
bool used_mempool = false;
|
2020-07-26 03:07:37 +08:00
|
|
|
size_t bytes = b->whiteout_u64s * sizeof(u64);
|
2019-11-30 03:08:51 +08:00
|
|
|
|
|
|
|
if (!b->whiteout_u64s)
|
|
|
|
return;
|
|
|
|
|
2020-07-26 03:07:37 +08:00
|
|
|
new_whiteouts = btree_bounce_alloc(c, bytes, &used_mempool);
|
2019-11-30 03:08:51 +08:00
|
|
|
|
2020-07-26 03:07:37 +08:00
|
|
|
ptrs = ptrs_end = ((void *) new_whiteouts + bytes);
|
2019-11-30 03:08:51 +08:00
|
|
|
|
|
|
|
for (k = unwritten_whiteouts_start(c, b);
|
|
|
|
k != unwritten_whiteouts_end(c, b);
|
|
|
|
k = bkey_next(k))
|
2019-12-15 04:55:29 +08:00
|
|
|
*--ptrs = k;
|
2019-11-30 03:08:51 +08:00
|
|
|
|
2019-12-15 04:55:29 +08:00
|
|
|
sort_bkey_ptrs(b, ptrs, ptrs_end - ptrs);
|
2019-11-30 03:08:51 +08:00
|
|
|
|
|
|
|
k = new_whiteouts;
|
|
|
|
|
2019-12-15 04:55:29 +08:00
|
|
|
while (ptrs != ptrs_end) {
|
|
|
|
bkey_copy(k, *ptrs);
|
2019-11-30 03:08:51 +08:00
|
|
|
k = bkey_next(k);
|
2019-12-15 04:55:29 +08:00
|
|
|
ptrs++;
|
2019-11-30 03:08:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
verify_no_dups(b, new_whiteouts,
|
2021-02-20 13:00:23 +08:00
|
|
|
(void *) ((u64 *) new_whiteouts + b->whiteout_u64s));
|
2019-11-30 03:08:51 +08:00
|
|
|
|
|
|
|
memcpy_u64s(unwritten_whiteouts_start(c, b),
|
|
|
|
new_whiteouts, b->whiteout_u64s);
|
|
|
|
|
2020-07-26 03:07:37 +08:00
|
|
|
btree_bounce_free(c, bytes, used_mempool, new_whiteouts);
|
2019-11-30 03:08:51 +08:00
|
|
|
}
|
|
|
|
|
2019-12-14 02:08:37 +08:00
|
|
|
static bool should_compact_bset(struct btree *b, struct bset_tree *t,
|
|
|
|
bool compacting, enum compact_mode mode)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
2019-12-14 02:08:37 +08:00
|
|
|
if (!bset_dead_u64s(b, t))
|
|
|
|
return false;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2019-12-14 02:08:37 +08:00
|
|
|
switch (mode) {
|
|
|
|
case COMPACT_LAZY:
|
|
|
|
return should_compact_bset_lazy(b, t) ||
|
|
|
|
(compacting && !bset_written(b, bset(b, t)));
|
|
|
|
case COMPACT_ALL:
|
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
BUG();
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-14 02:08:37 +08:00
|
|
|
static bool bch2_drop_whiteouts(struct btree *b, enum compact_mode mode)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
|
|
|
struct bset_tree *t;
|
|
|
|
bool ret = false;
|
|
|
|
|
|
|
|
for_each_bset(b, t) {
|
|
|
|
struct bset *i = bset(b, t);
|
|
|
|
struct bkey_packed *k, *n, *out, *start, *end;
|
2019-12-14 02:08:37 +08:00
|
|
|
struct btree_node_entry *src = NULL, *dst = NULL;
|
|
|
|
|
|
|
|
if (t != b->set && !bset_written(b, i)) {
|
|
|
|
src = container_of(i, struct btree_node_entry, keys);
|
|
|
|
dst = max(write_block(b),
|
|
|
|
(void *) btree_bkey_last(b, t - 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (src != dst)
|
|
|
|
ret = true;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2019-12-14 02:08:37 +08:00
|
|
|
if (!should_compact_bset(b, t, ret, mode)) {
|
|
|
|
if (src != dst) {
|
|
|
|
memmove(dst, src, sizeof(*src) +
|
|
|
|
le16_to_cpu(src->keys.u64s) *
|
|
|
|
sizeof(u64));
|
|
|
|
i = &dst->keys;
|
|
|
|
set_btree_bset(b, t, i);
|
|
|
|
}
|
2017-03-17 14:18:50 +08:00
|
|
|
continue;
|
2019-12-14 02:08:37 +08:00
|
|
|
}
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
start = btree_bkey_first(b, t);
|
|
|
|
end = btree_bkey_last(b, t);
|
|
|
|
|
2019-12-14 02:08:37 +08:00
|
|
|
if (src != dst) {
|
|
|
|
memmove(dst, src, sizeof(*src));
|
|
|
|
i = &dst->keys;
|
2017-03-17 14:18:50 +08:00
|
|
|
set_btree_bset(b, t, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
out = i->start;
|
|
|
|
|
|
|
|
for (k = start; k != end; k = n) {
|
2021-03-25 08:22:51 +08:00
|
|
|
n = bkey_next(k);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-02-20 12:41:40 +08:00
|
|
|
if (!bkey_deleted(k)) {
|
2017-03-17 14:18:50 +08:00
|
|
|
bkey_copy(out, k);
|
|
|
|
out = bkey_next(out);
|
2019-12-14 02:08:37 +08:00
|
|
|
} else {
|
|
|
|
BUG_ON(k->needs_whiteout);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
i->u64s = cpu_to_le16((u64 *) out - i->_data);
|
2019-12-14 02:08:37 +08:00
|
|
|
set_btree_bset_end(b, t);
|
2017-03-17 14:18:50 +08:00
|
|
|
bch2_bset_set_no_aux_tree(b, t);
|
|
|
|
ret = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bch2_verify_btree_nr_keys(b);
|
|
|
|
|
2019-12-14 02:08:37 +08:00
|
|
|
bch2_btree_build_aux_trees(b);
|
|
|
|
|
2017-03-17 14:18:50 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-12-14 02:08:37 +08:00
|
|
|
bool bch2_compact_whiteouts(struct bch_fs *c, struct btree *b,
|
|
|
|
enum compact_mode mode)
|
|
|
|
{
|
2021-02-20 13:00:23 +08:00
|
|
|
return bch2_drop_whiteouts(b, mode);
|
2019-12-14 02:08:37 +08:00
|
|
|
}
|
|
|
|
|
2017-03-17 14:18:50 +08:00
|
|
|
static void btree_node_sort(struct bch_fs *c, struct btree *b,
|
|
|
|
unsigned start_idx,
|
|
|
|
unsigned end_idx,
|
|
|
|
bool filter_whiteouts)
|
|
|
|
{
|
|
|
|
struct btree_node *out;
|
|
|
|
struct sort_iter sort_iter;
|
|
|
|
struct bset_tree *t;
|
|
|
|
struct bset *start_bset = bset(b, &b->set[start_idx]);
|
|
|
|
bool used_mempool = false;
|
|
|
|
u64 start_time, seq = 0;
|
2020-07-26 03:07:37 +08:00
|
|
|
unsigned i, u64s = 0, bytes, shift = end_idx - start_idx - 1;
|
2017-03-17 14:18:50 +08:00
|
|
|
bool sorting_entire_node = start_idx == 0 &&
|
|
|
|
end_idx == b->nsets;
|
|
|
|
|
|
|
|
sort_iter_init(&sort_iter, b);
|
|
|
|
|
|
|
|
for (t = b->set + start_idx;
|
|
|
|
t < b->set + end_idx;
|
|
|
|
t++) {
|
|
|
|
u64s += le16_to_cpu(bset(b, t)->u64s);
|
|
|
|
sort_iter_add(&sort_iter,
|
|
|
|
btree_bkey_first(b, t),
|
|
|
|
btree_bkey_last(b, t));
|
|
|
|
}
|
|
|
|
|
2020-07-26 03:07:37 +08:00
|
|
|
bytes = sorting_entire_node
|
|
|
|
? btree_bytes(c)
|
|
|
|
: __vstruct_bytes(struct btree_node, u64s);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2020-07-26 03:07:37 +08:00
|
|
|
out = btree_bounce_alloc(c, bytes, &used_mempool);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
start_time = local_clock();
|
|
|
|
|
2021-02-20 13:00:23 +08:00
|
|
|
u64s = bch2_sort_keys(out->keys.start, &sort_iter, filter_whiteouts);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
out->keys.u64s = cpu_to_le16(u64s);
|
|
|
|
|
2020-07-26 03:07:37 +08:00
|
|
|
BUG_ON(vstruct_end(&out->keys) > (void *) out + bytes);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
if (sorting_entire_node)
|
2019-03-22 04:28:57 +08:00
|
|
|
bch2_time_stats_update(&c->times[BCH_TIME_btree_node_sort],
|
2017-03-17 14:18:50 +08:00
|
|
|
start_time);
|
|
|
|
|
|
|
|
/* Make sure we preserve bset journal_seq: */
|
|
|
|
for (t = b->set + start_idx; t < b->set + end_idx; t++)
|
|
|
|
seq = max(seq, le64_to_cpu(bset(b, t)->journal_seq));
|
|
|
|
start_bset->journal_seq = cpu_to_le64(seq);
|
|
|
|
|
|
|
|
if (sorting_entire_node) {
|
|
|
|
unsigned u64s = le16_to_cpu(out->keys.u64s);
|
|
|
|
|
2020-07-26 03:07:37 +08:00
|
|
|
BUG_ON(bytes != btree_bytes(c));
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Our temporary buffer is the same size as the btree node's
|
|
|
|
* buffer, we can just swap buffers instead of doing a big
|
|
|
|
* memcpy()
|
|
|
|
*/
|
|
|
|
*out = *b->data;
|
|
|
|
out->keys.u64s = cpu_to_le16(u64s);
|
|
|
|
swap(out, b->data);
|
|
|
|
set_btree_bset(b, b->set, &b->data->keys);
|
|
|
|
} else {
|
|
|
|
start_bset->u64s = out->keys.u64s;
|
|
|
|
memcpy_u64s(start_bset->start,
|
|
|
|
out->keys.start,
|
|
|
|
le16_to_cpu(out->keys.u64s));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = start_idx + 1; i < end_idx; i++)
|
|
|
|
b->nr.bset_u64s[start_idx] +=
|
|
|
|
b->nr.bset_u64s[i];
|
|
|
|
|
|
|
|
b->nsets -= shift;
|
|
|
|
|
|
|
|
for (i = start_idx + 1; i < b->nsets; i++) {
|
|
|
|
b->nr.bset_u64s[i] = b->nr.bset_u64s[i + shift];
|
|
|
|
b->set[i] = b->set[i + shift];
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = b->nsets; i < MAX_BSETS; i++)
|
|
|
|
b->nr.bset_u64s[i] = 0;
|
|
|
|
|
|
|
|
set_btree_bset_end(b, &b->set[start_idx]);
|
|
|
|
bch2_bset_set_no_aux_tree(b, &b->set[start_idx]);
|
|
|
|
|
2020-07-26 03:07:37 +08:00
|
|
|
btree_bounce_free(c, bytes, used_mempool, out);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
bch2_verify_btree_nr_keys(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bch2_btree_sort_into(struct bch_fs *c,
|
|
|
|
struct btree *dst,
|
|
|
|
struct btree *src)
|
|
|
|
{
|
|
|
|
struct btree_nr_keys nr;
|
|
|
|
struct btree_node_iter src_iter;
|
|
|
|
u64 start_time = local_clock();
|
|
|
|
|
|
|
|
BUG_ON(dst->nsets != 1);
|
|
|
|
|
|
|
|
bch2_bset_set_no_aux_tree(dst, dst->set);
|
|
|
|
|
2016-07-22 11:05:06 +08:00
|
|
|
bch2_btree_node_iter_init_from_start(&src_iter, src);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-12-20 07:59:22 +08:00
|
|
|
nr = bch2_sort_repack(btree_bset_first(dst),
|
|
|
|
src, &src_iter,
|
|
|
|
&dst->format,
|
|
|
|
true);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2019-03-22 04:28:57 +08:00
|
|
|
bch2_time_stats_update(&c->times[BCH_TIME_btree_node_sort],
|
|
|
|
start_time);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
set_btree_bset_end(dst, dst->set);
|
|
|
|
|
|
|
|
dst->nr.live_u64s += nr.live_u64s;
|
|
|
|
dst->nr.bset_u64s[0] += nr.bset_u64s[0];
|
|
|
|
dst->nr.packed_keys += nr.packed_keys;
|
|
|
|
dst->nr.unpacked_keys += nr.unpacked_keys;
|
|
|
|
|
|
|
|
bch2_verify_btree_nr_keys(dst);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SORT_CRIT (4096 / sizeof(u64))
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We're about to add another bset to the btree node, so if there's currently
|
|
|
|
* too many bsets - sort some of them together:
|
|
|
|
*/
|
2021-04-07 03:33:19 +08:00
|
|
|
static bool btree_node_compact(struct bch_fs *c, struct btree *b)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
|
|
|
unsigned unwritten_idx;
|
|
|
|
bool ret = false;
|
|
|
|
|
|
|
|
for (unwritten_idx = 0;
|
|
|
|
unwritten_idx < b->nsets;
|
|
|
|
unwritten_idx++)
|
2018-08-06 10:23:44 +08:00
|
|
|
if (!bset_written(b, bset(b, &b->set[unwritten_idx])))
|
2017-03-17 14:18:50 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
if (b->nsets - unwritten_idx > 1) {
|
2021-04-07 03:33:19 +08:00
|
|
|
btree_node_sort(c, b, unwritten_idx,
|
2017-03-17 14:18:50 +08:00
|
|
|
b->nsets, false);
|
|
|
|
ret = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unwritten_idx > 1) {
|
2021-04-07 03:33:19 +08:00
|
|
|
btree_node_sort(c, b, 0, unwritten_idx, false);
|
2017-03-17 14:18:50 +08:00
|
|
|
ret = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void bch2_btree_build_aux_trees(struct btree *b)
|
|
|
|
{
|
|
|
|
struct bset_tree *t;
|
|
|
|
|
|
|
|
for_each_bset(b, t)
|
|
|
|
bch2_bset_build_aux_tree(b, t,
|
2018-08-06 10:23:44 +08:00
|
|
|
!bset_written(b, bset(b, t)) &&
|
2017-03-17 14:18:50 +08:00
|
|
|
t == bset_tree_last(b));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @bch_btree_init_next - initialize a new (unwritten) bset that can then be
|
|
|
|
* inserted into
|
|
|
|
*
|
|
|
|
* Safe to call if there already is an unwritten bset - will only add a new bset
|
|
|
|
* if @b doesn't already have one.
|
|
|
|
*
|
|
|
|
* Returns true if we sorted (i.e. invalidated iterators
|
|
|
|
*/
|
2021-08-31 02:36:03 +08:00
|
|
|
void bch2_btree_init_next(struct btree_trans *trans, struct btree *b)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
2021-07-11 11:22:06 +08:00
|
|
|
struct bch_fs *c = trans->c;
|
2017-03-17 14:18:50 +08:00
|
|
|
struct btree_node_entry *bne;
|
2021-04-07 03:33:19 +08:00
|
|
|
bool reinit_iter = false;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2020-06-07 00:28:01 +08:00
|
|
|
EBUG_ON(!(b->c.lock.state.seq & 1));
|
2021-04-07 03:33:19 +08:00
|
|
|
BUG_ON(bset_written(b, bset(b, &b->set[1])));
|
|
|
|
|
2021-07-11 11:03:15 +08:00
|
|
|
if (b->nsets == MAX_BSETS &&
|
|
|
|
!btree_node_write_in_flight(b)) {
|
2021-04-07 03:33:19 +08:00
|
|
|
unsigned log_u64s[] = {
|
|
|
|
ilog2(bset_u64s(&b->set[0])),
|
|
|
|
ilog2(bset_u64s(&b->set[1])),
|
|
|
|
ilog2(bset_u64s(&b->set[2])),
|
|
|
|
};
|
|
|
|
|
|
|
|
if (log_u64s[1] >= (log_u64s[0] + log_u64s[2]) / 2) {
|
2022-02-27 10:46:41 +08:00
|
|
|
bch2_btree_node_write(c, b, SIX_LOCK_write, 0);
|
2021-04-07 03:33:19 +08:00
|
|
|
reinit_iter = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (b->nsets == MAX_BSETS &&
|
|
|
|
btree_node_compact(c, b))
|
|
|
|
reinit_iter = true;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-04-07 03:33:19 +08:00
|
|
|
BUG_ON(b->nsets >= MAX_BSETS);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
bne = want_new_bset(c, b);
|
|
|
|
if (bne)
|
|
|
|
bch2_bset_init_next(c, b, bne);
|
|
|
|
|
|
|
|
bch2_btree_build_aux_trees(b);
|
|
|
|
|
2021-08-31 02:36:03 +08:00
|
|
|
if (reinit_iter)
|
|
|
|
bch2_trans_node_reinit_iter(trans, b);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
2020-12-04 02:57:22 +08:00
|
|
|
static void btree_pos_to_text(struct printbuf *out, struct bch_fs *c,
|
|
|
|
struct btree *b)
|
|
|
|
{
|
|
|
|
pr_buf(out, "%s level %u/%u\n ",
|
|
|
|
bch2_btree_ids[b->c.btree_id],
|
|
|
|
b->c.level,
|
|
|
|
c->btree_roots[b->c.btree_id].level);
|
|
|
|
bch2_bkey_val_to_text(out, c, bkey_i_to_s_c(&b->key));
|
|
|
|
}
|
|
|
|
|
2018-11-09 14:24:07 +08:00
|
|
|
static void btree_err_msg(struct printbuf *out, struct bch_fs *c,
|
2021-02-03 06:08:54 +08:00
|
|
|
struct bch_dev *ca,
|
2018-11-09 14:24:07 +08:00
|
|
|
struct btree *b, struct bset *i,
|
|
|
|
unsigned offset, int write)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
2021-02-03 06:08:54 +08:00
|
|
|
pr_buf(out, "error validating btree node ");
|
|
|
|
if (write)
|
|
|
|
pr_buf(out, "before write ");
|
|
|
|
if (ca)
|
|
|
|
pr_buf(out, "on %s ", ca->name);
|
|
|
|
pr_buf(out, "at btree ");
|
2020-12-04 02:57:22 +08:00
|
|
|
btree_pos_to_text(out, c, b);
|
2020-06-04 06:27:07 +08:00
|
|
|
|
2020-12-04 02:57:22 +08:00
|
|
|
pr_buf(out, "\n node offset %u", b->written);
|
2017-03-17 14:18:50 +08:00
|
|
|
if (i)
|
2018-11-09 14:24:07 +08:00
|
|
|
pr_buf(out, " bset u64s %u", le16_to_cpu(i->u64s));
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
enum btree_err_type {
|
|
|
|
BTREE_ERR_FIXABLE,
|
|
|
|
BTREE_ERR_WANT_RETRY,
|
|
|
|
BTREE_ERR_MUST_RETRY,
|
|
|
|
BTREE_ERR_FATAL,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum btree_validate_ret {
|
|
|
|
BTREE_RETRY_READ = 64,
|
|
|
|
};
|
|
|
|
|
2021-02-03 06:08:54 +08:00
|
|
|
#define btree_err(type, c, ca, b, i, msg, ...) \
|
2017-03-17 14:18:50 +08:00
|
|
|
({ \
|
|
|
|
__label__ out; \
|
2022-02-26 02:18:19 +08:00
|
|
|
struct printbuf out = PRINTBUF; \
|
2020-12-07 05:30:02 +08:00
|
|
|
\
|
2021-02-03 06:08:54 +08:00
|
|
|
btree_err_msg(&out, c, ca, b, i, b->written, write); \
|
2018-11-09 14:24:07 +08:00
|
|
|
pr_buf(&out, ": " msg, ##__VA_ARGS__); \
|
2017-03-17 14:18:50 +08:00
|
|
|
\
|
|
|
|
if (type == BTREE_ERR_FIXABLE && \
|
|
|
|
write == READ && \
|
|
|
|
!test_bit(BCH_FS_INITIAL_GC_DONE, &c->flags)) { \
|
2022-02-26 02:18:19 +08:00
|
|
|
mustfix_fsck_err(c, "%s", out.buf); \
|
2017-03-17 14:18:50 +08:00
|
|
|
goto out; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
switch (write) { \
|
|
|
|
case READ: \
|
2022-02-26 02:18:19 +08:00
|
|
|
bch_err(c, "%s", out.buf); \
|
2017-03-17 14:18:50 +08:00
|
|
|
\
|
|
|
|
switch (type) { \
|
|
|
|
case BTREE_ERR_FIXABLE: \
|
|
|
|
ret = BCH_FSCK_ERRORS_NOT_FIXED; \
|
|
|
|
goto fsck_err; \
|
|
|
|
case BTREE_ERR_WANT_RETRY: \
|
|
|
|
if (have_retry) { \
|
|
|
|
ret = BTREE_RETRY_READ; \
|
|
|
|
goto fsck_err; \
|
|
|
|
} \
|
|
|
|
break; \
|
|
|
|
case BTREE_ERR_MUST_RETRY: \
|
|
|
|
ret = BTREE_RETRY_READ; \
|
|
|
|
goto fsck_err; \
|
|
|
|
case BTREE_ERR_FATAL: \
|
|
|
|
ret = BCH_FSCK_ERRORS_NOT_FIXED; \
|
|
|
|
goto fsck_err; \
|
|
|
|
} \
|
|
|
|
break; \
|
|
|
|
case WRITE: \
|
2022-02-26 02:18:19 +08:00
|
|
|
bch_err(c, "corrupt metadata before write: %s", out.buf);\
|
2017-03-17 14:18:50 +08:00
|
|
|
\
|
|
|
|
if (bch2_fs_inconsistent(c)) { \
|
|
|
|
ret = BCH_FSCK_ERRORS_NOT_FIXED; \
|
|
|
|
goto fsck_err; \
|
|
|
|
} \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
out: \
|
2022-02-26 02:18:19 +08:00
|
|
|
printbuf_exit(&out); \
|
2017-03-17 14:18:50 +08:00
|
|
|
true; \
|
|
|
|
})
|
|
|
|
|
|
|
|
#define btree_err_on(cond, ...) ((cond) ? btree_err(__VA_ARGS__) : false)
|
|
|
|
|
2021-04-25 04:32:35 +08:00
|
|
|
/*
|
|
|
|
* When btree topology repair changes the start or end of a node, that might
|
|
|
|
* mean we have to drop keys that are no longer inside the node:
|
|
|
|
*/
|
|
|
|
__cold
|
|
|
|
void bch2_btree_node_drop_keys_outside_node(struct btree *b)
|
|
|
|
{
|
|
|
|
struct bset_tree *t;
|
|
|
|
struct bkey_s_c k;
|
|
|
|
struct bkey unpacked;
|
|
|
|
struct btree_node_iter iter;
|
|
|
|
|
|
|
|
for_each_bset(b, t) {
|
|
|
|
struct bset *i = bset(b, t);
|
|
|
|
struct bkey_packed *k;
|
|
|
|
|
|
|
|
for (k = i->start; k != vstruct_last(i); k = bkey_next(k))
|
|
|
|
if (bkey_cmp_left_packed(b, k, &b->data->min_key) >= 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (k != i->start) {
|
|
|
|
unsigned shift = (u64 *) k - (u64 *) i->start;
|
|
|
|
|
|
|
|
memmove_u64s_down(i->start, k,
|
|
|
|
(u64 *) vstruct_end(i) - (u64 *) k);
|
|
|
|
i->u64s = cpu_to_le16(le16_to_cpu(i->u64s) - shift);
|
|
|
|
set_btree_bset_end(b, t);
|
|
|
|
bch2_bset_set_no_aux_tree(b, t);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (k = i->start; k != vstruct_last(i); k = bkey_next(k))
|
|
|
|
if (bkey_cmp_left_packed(b, k, &b->data->max_key) > 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (k != vstruct_last(i)) {
|
|
|
|
i->u64s = cpu_to_le16((u64 *) k - (u64 *) i->start);
|
|
|
|
set_btree_bset_end(b, t);
|
|
|
|
bch2_bset_set_no_aux_tree(b, t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bch2_btree_build_aux_trees(b);
|
|
|
|
|
|
|
|
for_each_btree_node_key_unpack(b, k, &iter, &unpacked) {
|
|
|
|
BUG_ON(bpos_cmp(k.k->p, b->data->min_key) < 0);
|
|
|
|
BUG_ON(bpos_cmp(k.k->p, b->data->max_key) > 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-03 06:08:54 +08:00
|
|
|
static int validate_bset(struct bch_fs *c, struct bch_dev *ca,
|
|
|
|
struct btree *b, struct bset *i,
|
2021-07-17 00:57:27 +08:00
|
|
|
unsigned offset, unsigned sectors,
|
|
|
|
int write, bool have_retry)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
2020-01-08 02:29:32 +08:00
|
|
|
unsigned version = le16_to_cpu(i->version);
|
2017-03-17 14:18:50 +08:00
|
|
|
const char *err;
|
2022-02-26 02:18:19 +08:00
|
|
|
struct printbuf buf1 = PRINTBUF;
|
|
|
|
struct printbuf buf2 = PRINTBUF;
|
2017-03-17 14:18:50 +08:00
|
|
|
int ret = 0;
|
|
|
|
|
2020-01-08 02:29:32 +08:00
|
|
|
btree_err_on((version != BCH_BSET_VERSION_OLD &&
|
|
|
|
version < bcachefs_metadata_version_min) ||
|
|
|
|
version >= bcachefs_metadata_version_max,
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_FATAL, c, ca, b, i,
|
2020-01-08 02:29:32 +08:00
|
|
|
"unsupported bset version");
|
|
|
|
|
2021-03-22 04:03:23 +08:00
|
|
|
if (btree_err_on(version < c->sb.version_min,
|
|
|
|
BTREE_ERR_FIXABLE, c, NULL, b, i,
|
|
|
|
"bset version %u older than superblock version_min %u",
|
|
|
|
version, c->sb.version_min)) {
|
|
|
|
mutex_lock(&c->sb_lock);
|
|
|
|
c->disk_sb.sb->version_min = cpu_to_le16(version);
|
|
|
|
bch2_write_super(c);
|
|
|
|
mutex_unlock(&c->sb_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (btree_err_on(version > c->sb.version,
|
|
|
|
BTREE_ERR_FIXABLE, c, NULL, b, i,
|
|
|
|
"bset version %u newer than superblock version %u",
|
|
|
|
version, c->sb.version)) {
|
|
|
|
mutex_lock(&c->sb_lock);
|
|
|
|
c->disk_sb.sb->version = cpu_to_le16(version);
|
|
|
|
bch2_write_super(c);
|
|
|
|
mutex_unlock(&c->sb_lock);
|
|
|
|
}
|
|
|
|
|
2021-03-29 12:19:05 +08:00
|
|
|
btree_err_on(BSET_SEPARATE_WHITEOUTS(i),
|
|
|
|
BTREE_ERR_FATAL, c, ca, b, i,
|
|
|
|
"BSET_SEPARATE_WHITEOUTS no longer supported");
|
|
|
|
|
2021-12-15 03:24:41 +08:00
|
|
|
if (btree_err_on(offset + sectors > btree_sectors(c),
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_FIXABLE, c, ca, b, i,
|
2020-01-08 02:29:32 +08:00
|
|
|
"bset past end of btree node")) {
|
|
|
|
i->u64s = 0;
|
2022-02-26 02:18:19 +08:00
|
|
|
ret = 0;
|
|
|
|
goto out;
|
2020-01-08 02:29:32 +08:00
|
|
|
}
|
|
|
|
|
2021-07-17 00:57:27 +08:00
|
|
|
btree_err_on(offset && !i->u64s,
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_FIXABLE, c, ca, b, i,
|
2020-01-08 02:29:32 +08:00
|
|
|
"empty bset");
|
|
|
|
|
2021-07-17 00:57:27 +08:00
|
|
|
btree_err_on(BSET_OFFSET(i) &&
|
|
|
|
BSET_OFFSET(i) != offset,
|
|
|
|
BTREE_ERR_WANT_RETRY, c, ca, b, i,
|
|
|
|
"bset at wrong sector offset");
|
|
|
|
|
|
|
|
if (!offset) {
|
2020-01-08 02:29:32 +08:00
|
|
|
struct btree_node *bn =
|
|
|
|
container_of(i, struct btree_node, keys);
|
2017-03-17 14:18:50 +08:00
|
|
|
/* These indicate that we read the wrong btree node: */
|
2020-05-13 06:34:16 +08:00
|
|
|
|
|
|
|
if (b->key.k.type == KEY_TYPE_btree_ptr_v2) {
|
|
|
|
struct bch_btree_ptr_v2 *bp =
|
|
|
|
&bkey_i_to_btree_ptr_v2(&b->key)->v;
|
|
|
|
|
|
|
|
/* XXX endianness */
|
|
|
|
btree_err_on(bp->seq != bn->keys.seq,
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_MUST_RETRY, c, ca, b, NULL,
|
2020-05-13 06:34:16 +08:00
|
|
|
"incorrect sequence number (wrong btree node)");
|
|
|
|
}
|
|
|
|
|
2020-01-08 02:29:32 +08:00
|
|
|
btree_err_on(BTREE_NODE_ID(bn) != b->c.btree_id,
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_MUST_RETRY, c, ca, b, i,
|
2017-03-17 14:18:50 +08:00
|
|
|
"incorrect btree id");
|
|
|
|
|
2020-01-08 02:29:32 +08:00
|
|
|
btree_err_on(BTREE_NODE_LEVEL(bn) != b->c.level,
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_MUST_RETRY, c, ca, b, i,
|
2017-03-17 14:18:50 +08:00
|
|
|
"incorrect level");
|
|
|
|
|
2020-01-08 02:29:32 +08:00
|
|
|
if (!write)
|
|
|
|
compat_btree_node(b->c.level, b->c.btree_id, version,
|
|
|
|
BSET_BIG_ENDIAN(i), write, bn);
|
|
|
|
|
2020-02-08 02:38:02 +08:00
|
|
|
if (b->key.k.type == KEY_TYPE_btree_ptr_v2) {
|
|
|
|
struct bch_btree_ptr_v2 *bp =
|
|
|
|
&bkey_i_to_btree_ptr_v2(&b->key)->v;
|
|
|
|
|
2021-01-27 09:13:54 +08:00
|
|
|
if (BTREE_PTR_RANGE_UPDATED(bp)) {
|
|
|
|
b->data->min_key = bp->min_key;
|
|
|
|
b->data->max_key = b->key.k.p;
|
|
|
|
}
|
|
|
|
|
2021-03-05 05:20:16 +08:00
|
|
|
btree_err_on(bpos_cmp(b->data->min_key, bp->min_key),
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_MUST_RETRY, c, ca, b, NULL,
|
2021-03-05 04:20:22 +08:00
|
|
|
"incorrect min_key: got %s should be %s",
|
2022-02-26 02:18:19 +08:00
|
|
|
(printbuf_reset(&buf1),
|
|
|
|
bch2_bpos_to_text(&buf1, bn->min_key), buf1.buf),
|
|
|
|
(printbuf_reset(&buf2),
|
|
|
|
bch2_bpos_to_text(&buf2, bp->min_key), buf2.buf));
|
2020-02-08 02:38:02 +08:00
|
|
|
}
|
|
|
|
|
2021-03-05 05:20:16 +08:00
|
|
|
btree_err_on(bpos_cmp(bn->max_key, b->key.k.p),
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_MUST_RETRY, c, ca, b, i,
|
2021-03-05 04:20:22 +08:00
|
|
|
"incorrect max key %s",
|
2022-02-26 02:18:19 +08:00
|
|
|
(printbuf_reset(&buf1),
|
|
|
|
bch2_bpos_to_text(&buf1, bn->max_key), buf1.buf));
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2020-01-08 02:29:32 +08:00
|
|
|
if (write)
|
|
|
|
compat_btree_node(b->c.level, b->c.btree_id, version,
|
|
|
|
BSET_BIG_ENDIAN(i), write, bn);
|
|
|
|
|
|
|
|
err = bch2_bkey_format_validate(&bn->format);
|
2017-03-17 14:18:50 +08:00
|
|
|
btree_err_on(err,
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_FATAL, c, ca, b, i,
|
2017-03-17 14:18:50 +08:00
|
|
|
"invalid bkey format: %s", err);
|
|
|
|
|
2020-01-08 02:29:32 +08:00
|
|
|
compat_bformat(b->c.level, b->c.btree_id, version,
|
|
|
|
BSET_BIG_ENDIAN(i), write,
|
|
|
|
&bn->format);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
2022-02-26 02:18:19 +08:00
|
|
|
out:
|
2020-01-08 02:29:32 +08:00
|
|
|
fsck_err:
|
2022-02-26 02:18:19 +08:00
|
|
|
printbuf_exit(&buf2);
|
|
|
|
printbuf_exit(&buf1);
|
2020-01-08 02:29:32 +08:00
|
|
|
return ret;
|
|
|
|
}
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2022-04-04 05:50:01 +08:00
|
|
|
static int bset_key_invalid(struct bch_fs *c, struct btree *b,
|
|
|
|
struct bkey_s_c k,
|
2022-04-04 09:50:25 +08:00
|
|
|
bool updated_range, int rw,
|
2022-04-04 05:50:01 +08:00
|
|
|
struct printbuf *err)
|
|
|
|
{
|
2022-04-04 09:50:25 +08:00
|
|
|
return __bch2_bkey_invalid(c, k, btree_node_type(b), rw, err) ?:
|
2022-04-04 05:50:01 +08:00
|
|
|
(!updated_range ? bch2_bkey_in_btree_node(b, k, err) : 0) ?:
|
2022-04-04 09:50:25 +08:00
|
|
|
(rw == WRITE ? bch2_bkey_val_invalid(c, k, rw, err) : 0);
|
2022-04-04 05:50:01 +08:00
|
|
|
}
|
|
|
|
|
2020-01-08 02:29:32 +08:00
|
|
|
static int validate_bset_keys(struct bch_fs *c, struct btree *b,
|
|
|
|
struct bset *i, unsigned *whiteout_u64s,
|
|
|
|
int write, bool have_retry)
|
|
|
|
{
|
|
|
|
unsigned version = le16_to_cpu(i->version);
|
|
|
|
struct bkey_packed *k, *prev = NULL;
|
2022-04-04 05:50:01 +08:00
|
|
|
struct printbuf buf = PRINTBUF;
|
2021-04-25 04:32:35 +08:00
|
|
|
bool updated_range = b->key.k.type == KEY_TYPE_btree_ptr_v2 &&
|
|
|
|
BTREE_PTR_RANGE_UPDATED(&bkey_i_to_btree_ptr_v2(&b->key)->v);
|
2020-01-08 02:29:32 +08:00
|
|
|
int ret = 0;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
for (k = i->start;
|
|
|
|
k != vstruct_last(i);) {
|
2020-02-07 09:15:15 +08:00
|
|
|
struct bkey_s u;
|
2017-03-17 14:18:50 +08:00
|
|
|
struct bkey tmp;
|
|
|
|
|
|
|
|
if (btree_err_on(bkey_next(k) > vstruct_last(i),
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_FIXABLE, c, NULL, b, i,
|
2017-03-17 14:18:50 +08:00
|
|
|
"key extends past end of bset")) {
|
|
|
|
i->u64s = cpu_to_le16((u64 *) k - i->_data);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (btree_err_on(k->format > KEY_FORMAT_CURRENT,
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_FIXABLE, c, NULL, b, i,
|
2017-03-17 14:18:50 +08:00
|
|
|
"invalid bkey format %u", k->format)) {
|
|
|
|
i->u64s = cpu_to_le16(le16_to_cpu(i->u64s) - k->u64s);
|
|
|
|
memmove_u64s_down(k, bkey_next(k),
|
|
|
|
(u64 *) vstruct_end(i) - (u64 *) k);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-01-08 02:29:32 +08:00
|
|
|
/* XXX: validate k->u64s */
|
|
|
|
if (!write)
|
|
|
|
bch2_bkey_compat(b->c.level, b->c.btree_id, version,
|
|
|
|
BSET_BIG_ENDIAN(i), write,
|
|
|
|
&b->format, k);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2020-02-07 09:15:15 +08:00
|
|
|
u = __bkey_disassemble(b, k, &tmp);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2022-04-04 05:50:01 +08:00
|
|
|
printbuf_reset(&buf);
|
|
|
|
if (bset_key_invalid(c, b, u.s_c, updated_range, write, &buf)) {
|
|
|
|
printbuf_reset(&buf);
|
|
|
|
pr_buf(&buf, "invalid bkey:\n ");
|
|
|
|
bch2_bkey_val_to_text(&buf, c, u.s_c);
|
|
|
|
pr_buf(&buf, " \n");
|
|
|
|
bset_key_invalid(c, b, u.s_c, updated_range, write, &buf);
|
|
|
|
|
|
|
|
btree_err(BTREE_ERR_FIXABLE, c, NULL, b, i, "%s", buf.buf);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
i->u64s = cpu_to_le16(le16_to_cpu(i->u64s) - k->u64s);
|
|
|
|
memmove_u64s_down(k, bkey_next(k),
|
|
|
|
(u64 *) vstruct_end(i) - (u64 *) k);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-01-08 02:29:32 +08:00
|
|
|
if (write)
|
|
|
|
bch2_bkey_compat(b->c.level, b->c.btree_id, version,
|
|
|
|
BSET_BIG_ENDIAN(i), write,
|
|
|
|
&b->format, k);
|
2018-11-02 03:10:01 +08:00
|
|
|
|
2021-03-29 12:19:05 +08:00
|
|
|
if (prev && bkey_iter_cmp(b, prev, k) > 0) {
|
2019-12-31 03:37:25 +08:00
|
|
|
struct bkey up = bkey_unpack_key(b, prev);
|
2020-02-27 09:39:06 +08:00
|
|
|
|
2022-04-04 05:50:01 +08:00
|
|
|
printbuf_reset(&buf);
|
|
|
|
pr_buf(&buf, "keys out of order: ");
|
|
|
|
bch2_bkey_to_text(&buf, &up);
|
|
|
|
pr_buf(&buf, " > ");
|
|
|
|
bch2_bkey_to_text(&buf, u.k);
|
2020-02-27 09:39:06 +08:00
|
|
|
|
2020-06-18 05:33:53 +08:00
|
|
|
bch2_dump_bset(c, b, i, 0);
|
2021-03-29 12:19:05 +08:00
|
|
|
|
2022-04-04 05:50:01 +08:00
|
|
|
if (btree_err(BTREE_ERR_FIXABLE, c, NULL, b, i, "%s", buf.buf)) {
|
2021-03-29 12:19:05 +08:00
|
|
|
i->u64s = cpu_to_le16(le16_to_cpu(i->u64s) - k->u64s);
|
|
|
|
memmove_u64s_down(k, bkey_next(k),
|
|
|
|
(u64 *) vstruct_end(i) - (u64 *) k);
|
|
|
|
continue;
|
|
|
|
}
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
2019-12-31 03:37:25 +08:00
|
|
|
prev = k;
|
2021-03-25 08:22:51 +08:00
|
|
|
k = bkey_next(k);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
fsck_err:
|
2022-04-04 05:50:01 +08:00
|
|
|
printbuf_exit(&buf);
|
2017-03-17 14:18:50 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-02-03 06:08:54 +08:00
|
|
|
int bch2_btree_node_read_done(struct bch_fs *c, struct bch_dev *ca,
|
|
|
|
struct btree *b, bool have_retry)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
|
|
|
struct btree_node_entry *bne;
|
2019-12-15 05:20:33 +08:00
|
|
|
struct sort_iter *iter;
|
2017-03-17 14:18:50 +08:00
|
|
|
struct btree_node *sorted;
|
|
|
|
struct bkey_packed *k;
|
2020-07-04 04:32:00 +08:00
|
|
|
struct bch_extent_ptr *ptr;
|
2017-03-17 14:18:50 +08:00
|
|
|
struct bset *i;
|
2019-04-05 09:53:12 +08:00
|
|
|
bool used_mempool, blacklisted;
|
2021-04-25 04:32:35 +08:00
|
|
|
bool updated_range = b->key.k.type == KEY_TYPE_btree_ptr_v2 &&
|
|
|
|
BTREE_PTR_RANGE_UPDATED(&bkey_i_to_btree_ptr_v2(&b->key)->v);
|
2017-03-17 14:18:50 +08:00
|
|
|
unsigned u64s;
|
2021-07-11 01:44:42 +08:00
|
|
|
unsigned blacklisted_written, nonblacklisted_written = 0;
|
|
|
|
unsigned ptr_written = btree_ptr_sectors_written(&b->key);
|
2022-04-04 05:50:01 +08:00
|
|
|
struct printbuf buf = PRINTBUF;
|
2017-03-17 14:18:50 +08:00
|
|
|
int ret, retry_read = 0, write = READ;
|
|
|
|
|
2021-03-15 07:01:14 +08:00
|
|
|
b->version_ondisk = U16_MAX;
|
|
|
|
|
2017-03-17 14:18:50 +08:00
|
|
|
iter = mempool_alloc(&c->fill_iter, GFP_NOIO);
|
2019-12-15 05:20:33 +08:00
|
|
|
sort_iter_init(iter, b);
|
|
|
|
iter->size = (btree_blocks(c) + 1) * 2;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
if (bch2_meta_read_fault("btree"))
|
2021-02-03 06:08:54 +08:00
|
|
|
btree_err(BTREE_ERR_MUST_RETRY, c, ca, b, NULL,
|
2017-03-17 14:18:50 +08:00
|
|
|
"dynamic fault");
|
|
|
|
|
|
|
|
btree_err_on(le64_to_cpu(b->data->magic) != bset_magic(c),
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_MUST_RETRY, c, ca, b, NULL,
|
2022-02-23 23:32:43 +08:00
|
|
|
"bad magic: want %llx, got %llx",
|
|
|
|
bset_magic(c), le64_to_cpu(b->data->magic));
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
btree_err_on(!b->data->keys.seq,
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_MUST_RETRY, c, ca, b, NULL,
|
2022-02-23 23:32:43 +08:00
|
|
|
"bad btree header: seq 0");
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2020-02-08 02:38:02 +08:00
|
|
|
if (b->key.k.type == KEY_TYPE_btree_ptr_v2) {
|
|
|
|
struct bch_btree_ptr_v2 *bp =
|
|
|
|
&bkey_i_to_btree_ptr_v2(&b->key)->v;
|
|
|
|
|
|
|
|
btree_err_on(b->data->keys.seq != bp->seq,
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_MUST_RETRY, c, ca, b, NULL,
|
2020-06-04 06:27:07 +08:00
|
|
|
"got wrong btree node (seq %llx want %llx)",
|
|
|
|
b->data->keys.seq, bp->seq);
|
2020-02-08 02:38:02 +08:00
|
|
|
}
|
|
|
|
|
2021-12-15 03:24:41 +08:00
|
|
|
while (b->written < (ptr_written ?: btree_sectors(c))) {
|
2017-03-17 14:18:50 +08:00
|
|
|
unsigned sectors, whiteout_u64s = 0;
|
|
|
|
struct nonce nonce;
|
|
|
|
struct bch_csum csum;
|
|
|
|
bool first = !b->written;
|
|
|
|
|
|
|
|
if (!b->written) {
|
|
|
|
i = &b->data->keys;
|
|
|
|
|
|
|
|
btree_err_on(!bch2_checksum_type_valid(c, BSET_CSUM_TYPE(i)),
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_WANT_RETRY, c, ca, b, i,
|
2020-10-25 04:37:17 +08:00
|
|
|
"unknown checksum type %llu",
|
|
|
|
BSET_CSUM_TYPE(i));
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
nonce = btree_nonce(i, b->written << 9);
|
|
|
|
csum = csum_vstruct(c, BSET_CSUM_TYPE(i), nonce, b->data);
|
|
|
|
|
|
|
|
btree_err_on(bch2_crc_cmp(csum, b->data->csum),
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_WANT_RETRY, c, ca, b, i,
|
2017-03-17 14:18:50 +08:00
|
|
|
"invalid checksum");
|
|
|
|
|
2022-02-19 13:42:12 +08:00
|
|
|
ret = bset_encrypt(c, i, b->written << 9);
|
|
|
|
if (bch2_fs_fatal_err_on(ret, c,
|
|
|
|
"error decrypting btree node: %i", ret))
|
|
|
|
goto fsck_err;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-12-12 06:13:09 +08:00
|
|
|
btree_err_on(btree_node_type_is_extents(btree_node_type(b)) &&
|
2021-02-20 13:00:23 +08:00
|
|
|
!BTREE_NODE_NEW_EXTENT_OVERWRITE(b->data),
|
|
|
|
BTREE_ERR_FATAL, c, NULL, b, NULL,
|
|
|
|
"btree node does not have NEW_EXTENT_OVERWRITE set");
|
2019-11-27 06:26:04 +08:00
|
|
|
|
2017-03-17 14:18:50 +08:00
|
|
|
sectors = vstruct_sectors(b->data, c->block_bits);
|
|
|
|
} else {
|
|
|
|
bne = write_block(b);
|
|
|
|
i = &bne->keys;
|
|
|
|
|
|
|
|
if (i->seq != b->data->keys.seq)
|
|
|
|
break;
|
|
|
|
|
|
|
|
btree_err_on(!bch2_checksum_type_valid(c, BSET_CSUM_TYPE(i)),
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_WANT_RETRY, c, ca, b, i,
|
2020-10-25 04:37:17 +08:00
|
|
|
"unknown checksum type %llu",
|
|
|
|
BSET_CSUM_TYPE(i));
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
nonce = btree_nonce(i, b->written << 9);
|
|
|
|
csum = csum_vstruct(c, BSET_CSUM_TYPE(i), nonce, bne);
|
|
|
|
|
|
|
|
btree_err_on(bch2_crc_cmp(csum, bne->csum),
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_WANT_RETRY, c, ca, b, i,
|
2017-03-17 14:18:50 +08:00
|
|
|
"invalid checksum");
|
|
|
|
|
2022-02-19 13:42:12 +08:00
|
|
|
ret = bset_encrypt(c, i, b->written << 9);
|
|
|
|
if (bch2_fs_fatal_err_on(ret, c,
|
|
|
|
"error decrypting btree node: %i\n", ret))
|
|
|
|
goto fsck_err;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
sectors = vstruct_sectors(bne, c->block_bits);
|
|
|
|
}
|
|
|
|
|
2021-03-15 07:01:14 +08:00
|
|
|
b->version_ondisk = min(b->version_ondisk,
|
|
|
|
le16_to_cpu(i->version));
|
|
|
|
|
2021-07-17 00:57:27 +08:00
|
|
|
ret = validate_bset(c, ca, b, i, b->written, sectors,
|
2017-03-17 14:18:50 +08:00
|
|
|
READ, have_retry);
|
|
|
|
if (ret)
|
|
|
|
goto fsck_err;
|
|
|
|
|
2020-01-08 02:29:32 +08:00
|
|
|
if (!b->written)
|
|
|
|
btree_node_set_format(b, b->data->format);
|
|
|
|
|
|
|
|
ret = validate_bset_keys(c, b, i, &whiteout_u64s,
|
|
|
|
READ, have_retry);
|
|
|
|
if (ret)
|
|
|
|
goto fsck_err;
|
|
|
|
|
|
|
|
SET_BSET_BIG_ENDIAN(i, CPU_BIG_ENDIAN);
|
|
|
|
|
2019-04-05 09:53:12 +08:00
|
|
|
blacklisted = bch2_journal_seq_is_blacklisted(c,
|
|
|
|
le64_to_cpu(i->journal_seq),
|
|
|
|
true);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2019-04-05 09:53:12 +08:00
|
|
|
btree_err_on(blacklisted && first,
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_FIXABLE, c, ca, b, i,
|
2022-01-05 08:05:08 +08:00
|
|
|
"first btree node bset has blacklisted journal seq (%llu)",
|
|
|
|
le64_to_cpu(i->journal_seq));
|
2021-07-11 01:44:42 +08:00
|
|
|
|
|
|
|
btree_err_on(blacklisted && ptr_written,
|
|
|
|
BTREE_ERR_FIXABLE, c, ca, b, i,
|
2022-01-05 08:05:08 +08:00
|
|
|
"found blacklisted bset (journal seq %llu) in btree node at offset %u-%u/%u",
|
|
|
|
le64_to_cpu(i->journal_seq),
|
|
|
|
b->written, b->written + sectors, ptr_written);
|
|
|
|
|
|
|
|
b->written += sectors;
|
|
|
|
|
2019-04-05 09:53:12 +08:00
|
|
|
if (blacklisted && !first)
|
|
|
|
continue;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2019-12-15 05:20:33 +08:00
|
|
|
sort_iter_add(iter, i->start,
|
|
|
|
vstruct_idx(i, whiteout_u64s));
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2019-12-15 05:20:33 +08:00
|
|
|
sort_iter_add(iter,
|
|
|
|
vstruct_idx(i, whiteout_u64s),
|
|
|
|
vstruct_last(i));
|
2021-05-23 09:43:20 +08:00
|
|
|
|
|
|
|
nonblacklisted_written = b->written;
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
2021-07-11 01:44:42 +08:00
|
|
|
if (ptr_written) {
|
|
|
|
btree_err_on(b->written < ptr_written,
|
2021-02-03 06:08:54 +08:00
|
|
|
BTREE_ERR_WANT_RETRY, c, ca, b, NULL,
|
2021-07-11 01:44:42 +08:00
|
|
|
"btree node data missing: expected %u sectors, found %u",
|
|
|
|
ptr_written, b->written);
|
|
|
|
} else {
|
|
|
|
for (bne = write_block(b);
|
|
|
|
bset_byte_offset(b, bne) < btree_bytes(c);
|
|
|
|
bne = (void *) bne + block_bytes(c))
|
|
|
|
btree_err_on(bne->keys.seq == b->data->keys.seq &&
|
|
|
|
!bch2_journal_seq_is_blacklisted(c,
|
|
|
|
le64_to_cpu(bne->keys.journal_seq),
|
|
|
|
true),
|
|
|
|
BTREE_ERR_WANT_RETRY, c, ca, b, NULL,
|
|
|
|
"found bset signature after last bset");
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-07-11 01:44:42 +08:00
|
|
|
/*
|
|
|
|
* Blacklisted bsets are those that were written after the most recent
|
|
|
|
* (flush) journal write. Since there wasn't a flush, they may not have
|
|
|
|
* made it to all devices - which means we shouldn't write new bsets
|
|
|
|
* after them, as that could leave a gap and then reads from that device
|
|
|
|
* wouldn't find all the bsets in that btree node - which means it's
|
|
|
|
* important that we start writing new bsets after the most recent _non_
|
|
|
|
* blacklisted bset:
|
|
|
|
*/
|
|
|
|
blacklisted_written = b->written;
|
|
|
|
b->written = nonblacklisted_written;
|
|
|
|
}
|
2021-05-23 09:43:20 +08:00
|
|
|
|
2020-07-26 03:07:37 +08:00
|
|
|
sorted = btree_bounce_alloc(c, btree_bytes(c), &used_mempool);
|
2017-03-17 14:18:50 +08:00
|
|
|
sorted->keys.u64s = 0;
|
|
|
|
|
|
|
|
set_btree_bset(b, b->set, &b->data->keys);
|
|
|
|
|
2021-02-20 13:00:23 +08:00
|
|
|
b->nr = bch2_key_sort_fix_overlapping(c, &sorted->keys, iter);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
u64s = le16_to_cpu(sorted->keys.u64s);
|
|
|
|
*sorted = *b->data;
|
|
|
|
sorted->keys.u64s = cpu_to_le16(u64s);
|
|
|
|
swap(sorted, b->data);
|
|
|
|
set_btree_bset(b, b->set, &b->data->keys);
|
|
|
|
b->nsets = 1;
|
|
|
|
|
|
|
|
BUG_ON(b->nr.live_u64s != u64s);
|
|
|
|
|
2020-07-26 03:07:37 +08:00
|
|
|
btree_bounce_free(c, btree_bytes(c), used_mempool, sorted);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-04-25 04:32:35 +08:00
|
|
|
if (updated_range)
|
|
|
|
bch2_btree_node_drop_keys_outside_node(b);
|
|
|
|
|
2017-03-17 14:18:50 +08:00
|
|
|
i = &b->data->keys;
|
|
|
|
for (k = i->start; k != vstruct_last(i);) {
|
|
|
|
struct bkey tmp;
|
2020-02-08 02:38:02 +08:00
|
|
|
struct bkey_s u = __bkey_disassemble(b, k, &tmp);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2022-04-04 05:50:01 +08:00
|
|
|
printbuf_reset(&buf);
|
|
|
|
|
2022-04-04 09:50:25 +08:00
|
|
|
if (bch2_bkey_val_invalid(c, u.s_c, READ, &buf) ||
|
2020-11-03 07:20:44 +08:00
|
|
|
(bch2_inject_invalid_keys &&
|
2017-03-17 14:18:50 +08:00
|
|
|
!bversion_cmp(u.k->version, MAX_VERSION))) {
|
2022-04-04 05:50:01 +08:00
|
|
|
printbuf_reset(&buf);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2022-04-04 05:50:01 +08:00
|
|
|
pr_buf(&buf, "invalid bkey\n ");
|
2022-02-26 02:18:19 +08:00
|
|
|
bch2_bkey_val_to_text(&buf, c, u.s_c);
|
2022-04-04 05:50:01 +08:00
|
|
|
pr_buf(&buf, "\n ");
|
2022-04-04 09:50:25 +08:00
|
|
|
bch2_bkey_val_invalid(c, u.s_c, READ, &buf);
|
2022-04-04 05:50:01 +08:00
|
|
|
|
|
|
|
btree_err(BTREE_ERR_FIXABLE, c, NULL, b, i, "%s", buf.buf);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
btree_keys_account_key_drop(&b->nr, 0, k);
|
|
|
|
|
|
|
|
i->u64s = cpu_to_le16(le16_to_cpu(i->u64s) - k->u64s);
|
|
|
|
memmove_u64s_down(k, bkey_next(k),
|
|
|
|
(u64 *) vstruct_end(i) - (u64 *) k);
|
|
|
|
set_btree_bset_end(b, b->set);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-02-08 02:38:02 +08:00
|
|
|
if (u.k->type == KEY_TYPE_btree_ptr_v2) {
|
|
|
|
struct bkey_s_btree_ptr_v2 bp = bkey_s_to_btree_ptr_v2(u);
|
|
|
|
|
|
|
|
bp.v->mem_ptr = 0;
|
|
|
|
}
|
|
|
|
|
2021-03-25 08:22:51 +08:00
|
|
|
k = bkey_next(k);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bch2_bset_build_aux_tree(b, b->set, false);
|
|
|
|
|
2019-11-10 12:50:52 +08:00
|
|
|
set_needs_whiteout(btree_bset_first(b), true);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
btree_node_reset_sib_u64s(b);
|
2020-07-04 04:32:00 +08:00
|
|
|
|
|
|
|
bkey_for_each_ptr(bch2_bkey_ptrs(bkey_i_to_s(&b->key)), ptr) {
|
|
|
|
struct bch_dev *ca = bch_dev_bkey_exists(c, ptr->dev);
|
|
|
|
|
2021-02-21 08:47:58 +08:00
|
|
|
if (ca->mi.state != BCH_MEMBER_STATE_rw)
|
2020-07-04 04:32:00 +08:00
|
|
|
set_btree_node_need_rewrite(b);
|
|
|
|
}
|
2021-07-11 01:44:42 +08:00
|
|
|
|
|
|
|
if (!ptr_written)
|
|
|
|
set_btree_node_need_rewrite(b);
|
2017-03-17 14:18:50 +08:00
|
|
|
out:
|
|
|
|
mempool_free(iter, &c->fill_iter);
|
2022-04-04 05:50:01 +08:00
|
|
|
printbuf_exit(&buf);
|
2017-03-17 14:18:50 +08:00
|
|
|
return retry_read;
|
|
|
|
fsck_err:
|
|
|
|
if (ret == BTREE_RETRY_READ) {
|
|
|
|
retry_read = 1;
|
|
|
|
} else {
|
|
|
|
bch2_inconsistent_error(c);
|
|
|
|
set_btree_node_read_error(b);
|
|
|
|
}
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void btree_node_read_work(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct btree_read_bio *rb =
|
|
|
|
container_of(work, struct btree_read_bio, work);
|
|
|
|
struct bch_fs *c = rb->c;
|
2021-05-22 11:57:37 +08:00
|
|
|
struct btree *b = rb->b;
|
2017-03-17 14:18:50 +08:00
|
|
|
struct bch_dev *ca = bch_dev_bkey_exists(c, rb->pick.ptr.dev);
|
|
|
|
struct bio *bio = &rb->bio;
|
2018-11-02 03:28:45 +08:00
|
|
|
struct bch_io_failures failed = { .nr = 0 };
|
2022-02-26 02:18:19 +08:00
|
|
|
struct printbuf buf = PRINTBUF;
|
2021-04-24 14:47:41 +08:00
|
|
|
bool saw_error = false;
|
2017-03-17 14:18:50 +08:00
|
|
|
bool can_retry;
|
|
|
|
|
|
|
|
goto start;
|
|
|
|
while (1) {
|
|
|
|
bch_info(c, "retrying read");
|
|
|
|
ca = bch_dev_bkey_exists(c, rb->pick.ptr.dev);
|
|
|
|
rb->have_ioref = bch2_dev_get_ioref(ca, READ);
|
|
|
|
bio_reset(bio, NULL, REQ_OP_READ|REQ_SYNC|REQ_META);
|
|
|
|
bio->bi_iter.bi_sector = rb->pick.ptr.offset;
|
|
|
|
bio->bi_iter.bi_size = btree_bytes(c);
|
|
|
|
|
|
|
|
if (rb->have_ioref) {
|
|
|
|
bio_set_dev(bio, ca->disk_sb.bdev);
|
|
|
|
submit_bio_wait(bio);
|
|
|
|
} else {
|
|
|
|
bio->bi_status = BLK_STS_REMOVED;
|
|
|
|
}
|
|
|
|
start:
|
2022-02-26 02:18:19 +08:00
|
|
|
printbuf_reset(&buf);
|
|
|
|
btree_pos_to_text(&buf, c, b);
|
2020-12-04 02:57:22 +08:00
|
|
|
bch2_dev_io_err_on(bio->bi_status, ca, "btree read error %s for %s",
|
2022-02-26 02:18:19 +08:00
|
|
|
bch2_blk_status_to_str(bio->bi_status), buf.buf);
|
2017-03-17 14:18:50 +08:00
|
|
|
if (rb->have_ioref)
|
|
|
|
percpu_ref_put(&ca->io_ref);
|
|
|
|
rb->have_ioref = false;
|
|
|
|
|
2018-11-02 03:28:45 +08:00
|
|
|
bch2_mark_io_failure(&failed, &rb->pick);
|
|
|
|
|
2018-11-02 03:10:01 +08:00
|
|
|
can_retry = bch2_bkey_pick_read_device(c,
|
|
|
|
bkey_i_to_s_c(&b->key),
|
|
|
|
&failed, &rb->pick) > 0;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
if (!bio->bi_status &&
|
2021-02-03 06:08:54 +08:00
|
|
|
!bch2_btree_node_read_done(c, ca, b, can_retry))
|
2017-03-17 14:18:50 +08:00
|
|
|
break;
|
|
|
|
|
2021-04-24 14:47:41 +08:00
|
|
|
saw_error = true;
|
|
|
|
|
2017-03-17 14:18:50 +08:00
|
|
|
if (!can_retry) {
|
|
|
|
set_btree_node_read_error(b);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-22 04:28:57 +08:00
|
|
|
bch2_time_stats_update(&c->times[BCH_TIME_btree_node_read],
|
|
|
|
rb->start_time);
|
2017-03-17 14:18:50 +08:00
|
|
|
bio_put(&rb->bio);
|
2022-02-26 02:18:19 +08:00
|
|
|
printbuf_exit(&buf);
|
2021-04-24 14:47:41 +08:00
|
|
|
|
|
|
|
if (saw_error && !btree_node_read_error(b))
|
|
|
|
bch2_btree_node_rewrite_async(c, b);
|
|
|
|
|
2017-03-17 14:18:50 +08:00
|
|
|
clear_btree_node_read_in_flight(b);
|
|
|
|
wake_up_bit(&b->flags, BTREE_NODE_read_in_flight);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void btree_node_read_endio(struct bio *bio)
|
|
|
|
{
|
|
|
|
struct btree_read_bio *rb =
|
|
|
|
container_of(bio, struct btree_read_bio, bio);
|
|
|
|
struct bch_fs *c = rb->c;
|
|
|
|
|
|
|
|
if (rb->have_ioref) {
|
|
|
|
struct bch_dev *ca = bch_dev_bkey_exists(c, rb->pick.ptr.dev);
|
|
|
|
bch2_latency_acct(ca, rb->start_time, READ);
|
|
|
|
}
|
|
|
|
|
2021-05-23 05:37:25 +08:00
|
|
|
queue_work(c->io_complete_wq, &rb->work);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
2021-05-22 11:57:37 +08:00
|
|
|
struct btree_node_read_all {
|
|
|
|
struct closure cl;
|
|
|
|
struct bch_fs *c;
|
|
|
|
struct btree *b;
|
|
|
|
unsigned nr;
|
|
|
|
void *buf[BCH_REPLICAS_MAX];
|
|
|
|
struct bio *bio[BCH_REPLICAS_MAX];
|
|
|
|
int err[BCH_REPLICAS_MAX];
|
|
|
|
};
|
|
|
|
|
|
|
|
static unsigned btree_node_sectors_written(struct bch_fs *c, void *data)
|
|
|
|
{
|
|
|
|
struct btree_node *bn = data;
|
|
|
|
struct btree_node_entry *bne;
|
|
|
|
unsigned offset = 0;
|
|
|
|
|
|
|
|
if (le64_to_cpu(bn->magic) != bset_magic(c))
|
|
|
|
return 0;
|
|
|
|
|
2021-12-15 03:24:41 +08:00
|
|
|
while (offset < btree_sectors(c)) {
|
2021-05-22 11:57:37 +08:00
|
|
|
if (!offset) {
|
|
|
|
offset += vstruct_sectors(bn, c->block_bits);
|
|
|
|
} else {
|
|
|
|
bne = data + (offset << 9);
|
|
|
|
if (bne->keys.seq != bn->keys.seq)
|
|
|
|
break;
|
|
|
|
offset += vstruct_sectors(bne, c->block_bits);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool btree_node_has_extra_bsets(struct bch_fs *c, unsigned offset, void *data)
|
|
|
|
{
|
|
|
|
struct btree_node *bn = data;
|
|
|
|
struct btree_node_entry *bne;
|
|
|
|
|
|
|
|
if (!offset)
|
|
|
|
return false;
|
|
|
|
|
2021-12-15 03:24:41 +08:00
|
|
|
while (offset < btree_sectors(c)) {
|
2021-05-22 11:57:37 +08:00
|
|
|
bne = data + (offset << 9);
|
|
|
|
if (bne->keys.seq == bn->keys.seq)
|
|
|
|
return true;
|
|
|
|
offset++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
return offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void btree_node_read_all_replicas_done(struct closure *cl)
|
|
|
|
{
|
|
|
|
struct btree_node_read_all *ra =
|
|
|
|
container_of(cl, struct btree_node_read_all, cl);
|
|
|
|
struct bch_fs *c = ra->c;
|
|
|
|
struct btree *b = ra->b;
|
2022-02-26 02:18:19 +08:00
|
|
|
struct printbuf buf = PRINTBUF;
|
2021-05-22 11:57:37 +08:00
|
|
|
bool dump_bset_maps = false;
|
|
|
|
bool have_retry = false;
|
2021-06-23 09:51:17 +08:00
|
|
|
int ret = 0, best = -1, write = READ;
|
2021-09-10 07:05:34 +08:00
|
|
|
unsigned i, written = 0, written2 = 0;
|
2021-05-22 11:57:37 +08:00
|
|
|
__le64 seq = b->key.k.type == KEY_TYPE_btree_ptr_v2
|
|
|
|
? bkey_i_to_btree_ptr_v2(&b->key)->v.seq : 0;
|
|
|
|
|
|
|
|
for (i = 0; i < ra->nr; i++) {
|
2021-06-23 09:51:17 +08:00
|
|
|
struct btree_node *bn = ra->buf[i];
|
|
|
|
|
2021-05-22 11:57:37 +08:00
|
|
|
if (ra->err[i])
|
|
|
|
continue;
|
|
|
|
|
2021-06-23 09:51:17 +08:00
|
|
|
if (le64_to_cpu(bn->magic) != bset_magic(c) ||
|
|
|
|
(seq && seq != bn->keys.seq))
|
|
|
|
continue;
|
2021-05-22 11:57:37 +08:00
|
|
|
|
2021-06-23 09:51:17 +08:00
|
|
|
if (best < 0) {
|
|
|
|
best = i;
|
|
|
|
written = btree_node_sectors_written(c, bn);
|
|
|
|
continue;
|
2021-05-22 11:57:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
written2 = btree_node_sectors_written(c, ra->buf[i]);
|
|
|
|
if (btree_err_on(written2 != written, BTREE_ERR_FIXABLE, c, NULL, b, NULL,
|
|
|
|
"btree node sectors written mismatch: %u != %u",
|
|
|
|
written, written2) ||
|
|
|
|
btree_err_on(btree_node_has_extra_bsets(c, written2, ra->buf[i]),
|
|
|
|
BTREE_ERR_FIXABLE, c, NULL, b, NULL,
|
|
|
|
"found bset signature after last bset") ||
|
2021-06-23 09:51:17 +08:00
|
|
|
btree_err_on(memcmp(ra->buf[best], ra->buf[i], written << 9),
|
2021-05-22 11:57:37 +08:00
|
|
|
BTREE_ERR_FIXABLE, c, NULL, b, NULL,
|
|
|
|
"btree node replicas content mismatch"))
|
|
|
|
dump_bset_maps = true;
|
|
|
|
|
|
|
|
if (written2 > written) {
|
|
|
|
written = written2;
|
2021-06-23 09:51:17 +08:00
|
|
|
best = i;
|
2021-05-22 11:57:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
fsck_err:
|
|
|
|
if (dump_bset_maps) {
|
|
|
|
for (i = 0; i < ra->nr; i++) {
|
|
|
|
struct btree_node *bn = ra->buf[i];
|
|
|
|
struct btree_node_entry *bne = NULL;
|
|
|
|
unsigned offset = 0, sectors;
|
|
|
|
bool gap = false;
|
|
|
|
|
|
|
|
if (ra->err[i])
|
|
|
|
continue;
|
|
|
|
|
2022-02-26 02:18:19 +08:00
|
|
|
printbuf_reset(&buf);
|
|
|
|
|
2021-12-15 03:24:41 +08:00
|
|
|
while (offset < btree_sectors(c)) {
|
2021-05-22 11:57:37 +08:00
|
|
|
if (!offset) {
|
|
|
|
sectors = vstruct_sectors(bn, c->block_bits);
|
|
|
|
} else {
|
|
|
|
bne = ra->buf[i] + (offset << 9);
|
|
|
|
if (bne->keys.seq != bn->keys.seq)
|
|
|
|
break;
|
|
|
|
sectors = vstruct_sectors(bne, c->block_bits);
|
|
|
|
}
|
|
|
|
|
2022-02-26 02:18:19 +08:00
|
|
|
pr_buf(&buf, " %u-%u", offset, offset + sectors);
|
2021-05-22 11:57:37 +08:00
|
|
|
if (bne && bch2_journal_seq_is_blacklisted(c,
|
|
|
|
le64_to_cpu(bne->keys.journal_seq), false))
|
2022-02-26 02:18:19 +08:00
|
|
|
pr_buf(&buf, "*");
|
2021-05-22 11:57:37 +08:00
|
|
|
offset += sectors;
|
|
|
|
}
|
|
|
|
|
2021-12-15 03:24:41 +08:00
|
|
|
while (offset < btree_sectors(c)) {
|
2021-05-22 11:57:37 +08:00
|
|
|
bne = ra->buf[i] + (offset << 9);
|
|
|
|
if (bne->keys.seq == bn->keys.seq) {
|
|
|
|
if (!gap)
|
2022-02-26 02:18:19 +08:00
|
|
|
pr_buf(&buf, " GAP");
|
2021-05-22 11:57:37 +08:00
|
|
|
gap = true;
|
|
|
|
|
|
|
|
sectors = vstruct_sectors(bne, c->block_bits);
|
2022-02-26 02:18:19 +08:00
|
|
|
pr_buf(&buf, " %u-%u", offset, offset + sectors);
|
2021-05-22 11:57:37 +08:00
|
|
|
if (bch2_journal_seq_is_blacklisted(c,
|
|
|
|
le64_to_cpu(bne->keys.journal_seq), false))
|
2022-02-26 02:18:19 +08:00
|
|
|
pr_buf(&buf, "*");
|
2021-05-22 11:57:37 +08:00
|
|
|
}
|
|
|
|
offset++;
|
|
|
|
}
|
|
|
|
|
2022-02-26 02:18:19 +08:00
|
|
|
bch_err(c, "replica %u:%s", i, buf.buf);
|
2021-05-22 11:57:37 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-23 09:51:17 +08:00
|
|
|
if (best >= 0) {
|
|
|
|
memcpy(b->data, ra->buf[best], btree_bytes(c));
|
|
|
|
ret = bch2_btree_node_read_done(c, NULL, b, false);
|
|
|
|
} else {
|
|
|
|
ret = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret)
|
2021-05-22 11:57:37 +08:00
|
|
|
set_btree_node_read_error(b);
|
|
|
|
|
|
|
|
for (i = 0; i < ra->nr; i++) {
|
|
|
|
mempool_free(ra->buf[i], &c->btree_bounce_pool);
|
|
|
|
bio_put(ra->bio[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
closure_debug_destroy(&ra->cl);
|
|
|
|
kfree(ra);
|
2022-02-26 02:18:19 +08:00
|
|
|
printbuf_exit(&buf);
|
2021-05-22 11:57:37 +08:00
|
|
|
|
|
|
|
clear_btree_node_read_in_flight(b);
|
|
|
|
wake_up_bit(&b->flags, BTREE_NODE_read_in_flight);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void btree_node_read_all_replicas_endio(struct bio *bio)
|
|
|
|
{
|
|
|
|
struct btree_read_bio *rb =
|
|
|
|
container_of(bio, struct btree_read_bio, bio);
|
|
|
|
struct bch_fs *c = rb->c;
|
|
|
|
struct btree_node_read_all *ra = rb->ra;
|
|
|
|
|
|
|
|
if (rb->have_ioref) {
|
|
|
|
struct bch_dev *ca = bch_dev_bkey_exists(c, rb->pick.ptr.dev);
|
|
|
|
bch2_latency_acct(ca, rb->start_time, READ);
|
|
|
|
}
|
|
|
|
|
|
|
|
ra->err[rb->idx] = bio->bi_status;
|
|
|
|
closure_put(&ra->cl);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX This allocates multiple times from the same mempools, and can deadlock
|
|
|
|
* under sufficient memory pressure (but is only a debug path)
|
|
|
|
*/
|
|
|
|
static int btree_node_read_all_replicas(struct bch_fs *c, struct btree *b, bool sync)
|
|
|
|
{
|
|
|
|
struct bkey_s_c k = bkey_i_to_s_c(&b->key);
|
|
|
|
struct bkey_ptrs_c ptrs = bch2_bkey_ptrs_c(k);
|
|
|
|
const union bch_extent_entry *entry;
|
|
|
|
struct extent_ptr_decoded pick;
|
|
|
|
struct btree_node_read_all *ra;
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
ra = kzalloc(sizeof(*ra), GFP_NOFS);
|
|
|
|
if (!ra)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
closure_init(&ra->cl, NULL);
|
|
|
|
ra->c = c;
|
|
|
|
ra->b = b;
|
|
|
|
ra->nr = bch2_bkey_nr_ptrs(k);
|
|
|
|
|
|
|
|
for (i = 0; i < ra->nr; i++) {
|
|
|
|
ra->buf[i] = mempool_alloc(&c->btree_bounce_pool, GFP_NOFS);
|
|
|
|
ra->bio[i] = bio_alloc_bioset(NULL,
|
|
|
|
buf_pages(ra->buf[i], btree_bytes(c)),
|
|
|
|
REQ_OP_READ|REQ_SYNC|REQ_META,
|
|
|
|
GFP_NOFS,
|
|
|
|
&c->btree_bio);
|
|
|
|
}
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
bkey_for_each_ptr_decode(k.k, ptrs, pick, entry) {
|
|
|
|
struct bch_dev *ca = bch_dev_bkey_exists(c, pick.ptr.dev);
|
|
|
|
struct btree_read_bio *rb =
|
|
|
|
container_of(ra->bio[i], struct btree_read_bio, bio);
|
|
|
|
rb->c = c;
|
|
|
|
rb->b = b;
|
|
|
|
rb->ra = ra;
|
|
|
|
rb->start_time = local_clock();
|
|
|
|
rb->have_ioref = bch2_dev_get_ioref(ca, READ);
|
|
|
|
rb->idx = i;
|
|
|
|
rb->pick = pick;
|
|
|
|
rb->bio.bi_iter.bi_sector = pick.ptr.offset;
|
|
|
|
rb->bio.bi_end_io = btree_node_read_all_replicas_endio;
|
|
|
|
bch2_bio_map(&rb->bio, ra->buf[i], btree_bytes(c));
|
|
|
|
|
|
|
|
if (rb->have_ioref) {
|
|
|
|
this_cpu_add(ca->io_done->sectors[READ][BCH_DATA_btree],
|
|
|
|
bio_sectors(&rb->bio));
|
|
|
|
bio_set_dev(&rb->bio, ca->disk_sb.bdev);
|
|
|
|
|
|
|
|
closure_get(&ra->cl);
|
|
|
|
submit_bio(&rb->bio);
|
|
|
|
} else {
|
|
|
|
ra->err[i] = BLK_STS_REMOVED;
|
|
|
|
}
|
|
|
|
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sync) {
|
|
|
|
closure_sync(&ra->cl);
|
|
|
|
btree_node_read_all_replicas_done(&ra->cl);
|
|
|
|
} else {
|
2021-05-23 05:37:25 +08:00
|
|
|
continue_at(&ra->cl, btree_node_read_all_replicas_done,
|
|
|
|
c->io_complete_wq);
|
2021-05-22 11:57:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-03-17 14:18:50 +08:00
|
|
|
void bch2_btree_node_read(struct bch_fs *c, struct btree *b,
|
|
|
|
bool sync)
|
|
|
|
{
|
2018-10-02 23:03:39 +08:00
|
|
|
struct extent_ptr_decoded pick;
|
2017-03-17 14:18:50 +08:00
|
|
|
struct btree_read_bio *rb;
|
|
|
|
struct bch_dev *ca;
|
|
|
|
struct bio *bio;
|
2022-02-26 02:18:19 +08:00
|
|
|
struct printbuf buf = PRINTBUF;
|
2017-03-17 14:18:50 +08:00
|
|
|
int ret;
|
|
|
|
|
2022-02-26 02:18:19 +08:00
|
|
|
btree_pos_to_text(&buf, c, b);
|
2017-03-17 14:18:50 +08:00
|
|
|
trace_btree_read(c, b);
|
|
|
|
|
2021-05-22 11:57:37 +08:00
|
|
|
if (bch2_verify_all_btree_replicas &&
|
|
|
|
!btree_node_read_all_replicas(c, b, sync))
|
2022-02-26 02:18:19 +08:00
|
|
|
goto out;
|
2021-05-22 11:57:37 +08:00
|
|
|
|
2018-11-02 03:10:01 +08:00
|
|
|
ret = bch2_bkey_pick_read_device(c, bkey_i_to_s_c(&b->key),
|
|
|
|
NULL, &pick);
|
2017-03-17 14:18:50 +08:00
|
|
|
if (bch2_fs_fatal_err_on(ret <= 0, c,
|
2021-04-17 06:59:54 +08:00
|
|
|
"btree node read error: no device to read from\n"
|
2022-02-26 02:18:19 +08:00
|
|
|
" at %s", buf.buf)) {
|
2017-03-17 14:18:50 +08:00
|
|
|
set_btree_node_read_error(b);
|
2022-02-26 02:18:19 +08:00
|
|
|
goto out;
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ca = bch_dev_bkey_exists(c, pick.ptr.dev);
|
|
|
|
|
|
|
|
bio = bio_alloc_bioset(NULL,
|
|
|
|
buf_pages(b->data, btree_bytes(c)),
|
|
|
|
REQ_OP_READ|REQ_SYNC|REQ_META,
|
|
|
|
GFP_NOIO,
|
|
|
|
&c->btree_bio);
|
|
|
|
rb = container_of(bio, struct btree_read_bio, bio);
|
|
|
|
rb->c = c;
|
2021-05-22 11:57:37 +08:00
|
|
|
rb->b = b;
|
|
|
|
rb->ra = NULL;
|
2017-03-17 14:18:50 +08:00
|
|
|
rb->start_time = local_clock();
|
|
|
|
rb->have_ioref = bch2_dev_get_ioref(ca, READ);
|
|
|
|
rb->pick = pick;
|
|
|
|
INIT_WORK(&rb->work, btree_node_read_work);
|
|
|
|
bio->bi_iter.bi_sector = pick.ptr.offset;
|
|
|
|
bio->bi_end_io = btree_node_read_endio;
|
2019-07-04 07:27:42 +08:00
|
|
|
bch2_bio_map(bio, b->data, btree_bytes(c));
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
if (rb->have_ioref) {
|
2020-07-10 06:28:11 +08:00
|
|
|
this_cpu_add(ca->io_done->sectors[READ][BCH_DATA_btree],
|
2017-03-17 14:18:50 +08:00
|
|
|
bio_sectors(bio));
|
|
|
|
bio_set_dev(bio, ca->disk_sb.bdev);
|
|
|
|
|
|
|
|
if (sync) {
|
|
|
|
submit_bio_wait(bio);
|
|
|
|
|
|
|
|
btree_node_read_work(&rb->work);
|
|
|
|
} else {
|
|
|
|
submit_bio(bio);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bio->bi_status = BLK_STS_REMOVED;
|
|
|
|
|
|
|
|
if (sync)
|
|
|
|
btree_node_read_work(&rb->work);
|
|
|
|
else
|
2021-05-23 05:37:25 +08:00
|
|
|
queue_work(c->io_complete_wq, &rb->work);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
2022-02-26 02:18:19 +08:00
|
|
|
out:
|
|
|
|
printbuf_exit(&buf);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int bch2_btree_root_read(struct bch_fs *c, enum btree_id id,
|
|
|
|
const struct bkey_i *k, unsigned level)
|
|
|
|
{
|
|
|
|
struct closure cl;
|
|
|
|
struct btree *b;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
closure_init_stack(&cl);
|
|
|
|
|
|
|
|
do {
|
|
|
|
ret = bch2_btree_cache_cannibalize_lock(c, &cl);
|
|
|
|
closure_sync(&cl);
|
|
|
|
} while (ret);
|
|
|
|
|
2022-03-05 08:16:04 +08:00
|
|
|
b = bch2_btree_node_mem_alloc(c, level != 0);
|
2017-03-17 14:18:50 +08:00
|
|
|
bch2_btree_cache_cannibalize_unlock(c);
|
|
|
|
|
|
|
|
BUG_ON(IS_ERR(b));
|
|
|
|
|
|
|
|
bkey_copy(&b->key, k);
|
|
|
|
BUG_ON(bch2_btree_node_hash_insert(&c->btree_cache, b, level, id));
|
|
|
|
|
2021-07-11 11:03:15 +08:00
|
|
|
set_btree_node_read_in_flight(b);
|
|
|
|
|
2017-03-17 14:18:50 +08:00
|
|
|
bch2_btree_node_read(c, b, true);
|
|
|
|
|
|
|
|
if (btree_node_read_error(b)) {
|
|
|
|
bch2_btree_node_hash_remove(&c->btree_cache, b);
|
|
|
|
|
|
|
|
mutex_lock(&c->btree_cache.lock);
|
|
|
|
list_move(&b->list, &c->btree_cache.freeable);
|
|
|
|
mutex_unlock(&c->btree_cache.lock);
|
|
|
|
|
|
|
|
ret = -EIO;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
bch2_btree_set_root_for_read(c, b);
|
|
|
|
err:
|
2020-06-07 00:28:01 +08:00
|
|
|
six_unlock_write(&b->c.lock);
|
|
|
|
six_unlock_intent(&b->c.lock);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void bch2_btree_complete_write(struct bch_fs *c, struct btree *b,
|
|
|
|
struct btree_write *w)
|
|
|
|
{
|
|
|
|
unsigned long old, new, v = READ_ONCE(b->will_make_reachable);
|
|
|
|
|
|
|
|
do {
|
|
|
|
old = new = v;
|
|
|
|
if (!(old & 1))
|
|
|
|
break;
|
|
|
|
|
|
|
|
new &= ~1UL;
|
|
|
|
} while ((v = cmpxchg(&b->will_make_reachable, old, new)) != old);
|
|
|
|
|
|
|
|
if (old & 1)
|
|
|
|
closure_put(&((struct btree_update *) new)->cl);
|
|
|
|
|
|
|
|
bch2_journal_pin_drop(&c->journal, &w->journal);
|
|
|
|
}
|
|
|
|
|
2022-02-27 10:35:16 +08:00
|
|
|
static void __btree_node_write_done(struct bch_fs *c, struct btree *b)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
|
|
|
struct btree_write *w = btree_prev_write(b);
|
2021-07-12 04:41:14 +08:00
|
|
|
unsigned long old, new, v;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
bch2_btree_complete_write(c, b, w);
|
2021-07-12 04:41:14 +08:00
|
|
|
|
|
|
|
v = READ_ONCE(b->flags);
|
|
|
|
do {
|
|
|
|
old = new = v;
|
|
|
|
|
|
|
|
if ((old & (1U << BTREE_NODE_dirty)) &&
|
|
|
|
(old & (1U << BTREE_NODE_need_write)) &&
|
|
|
|
!(old & (1U << BTREE_NODE_never_write)) &&
|
2022-02-27 22:56:33 +08:00
|
|
|
!(old & (1U << BTREE_NODE_write_blocked)) &&
|
|
|
|
!(old & (1U << BTREE_NODE_will_make_reachable))) {
|
2021-07-12 04:41:14 +08:00
|
|
|
new &= ~(1U << BTREE_NODE_dirty);
|
|
|
|
new &= ~(1U << BTREE_NODE_need_write);
|
|
|
|
new |= (1U << BTREE_NODE_write_in_flight);
|
2021-07-11 01:44:42 +08:00
|
|
|
new |= (1U << BTREE_NODE_write_in_flight_inner);
|
2021-07-12 04:41:14 +08:00
|
|
|
new |= (1U << BTREE_NODE_just_written);
|
|
|
|
new ^= (1U << BTREE_NODE_write_idx);
|
|
|
|
} else {
|
|
|
|
new &= ~(1U << BTREE_NODE_write_in_flight);
|
2021-07-11 01:44:42 +08:00
|
|
|
new &= ~(1U << BTREE_NODE_write_in_flight_inner);
|
2021-07-12 04:41:14 +08:00
|
|
|
}
|
|
|
|
} while ((v = cmpxchg(&b->flags, old, new)) != old);
|
|
|
|
|
|
|
|
if (new & (1U << BTREE_NODE_write_in_flight))
|
2022-02-27 10:46:41 +08:00
|
|
|
__bch2_btree_node_write(c, b, BTREE_WRITE_ALREADY_STARTED);
|
2022-03-11 06:35:06 +08:00
|
|
|
else
|
|
|
|
wake_up_bit(&b->flags, BTREE_NODE_write_in_flight);
|
2022-02-27 10:35:16 +08:00
|
|
|
}
|
2021-07-12 04:41:14 +08:00
|
|
|
|
2022-02-27 10:35:16 +08:00
|
|
|
static void btree_node_write_done(struct bch_fs *c, struct btree *b)
|
|
|
|
{
|
|
|
|
six_lock_read(&b->c.lock, NULL, NULL);
|
|
|
|
__btree_node_write_done(c, b);
|
2021-07-12 04:41:14 +08:00
|
|
|
six_unlock_read(&b->c.lock);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
2021-07-11 01:44:42 +08:00
|
|
|
static void btree_node_write_work(struct work_struct *work)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
2021-07-11 01:44:42 +08:00
|
|
|
struct btree_write_bio *wbio =
|
|
|
|
container_of(work, struct btree_write_bio, work);
|
|
|
|
struct bch_fs *c = wbio->wbio.c;
|
2017-03-17 14:18:50 +08:00
|
|
|
struct btree *b = wbio->wbio.bio.bi_private;
|
|
|
|
struct bch_extent_ptr *ptr;
|
|
|
|
int ret;
|
|
|
|
|
2021-07-11 01:44:42 +08:00
|
|
|
btree_bounce_free(c,
|
|
|
|
wbio->data_bytes,
|
|
|
|
wbio->wbio.used_mempool,
|
|
|
|
wbio->data);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-07-11 01:44:42 +08:00
|
|
|
bch2_bkey_drop_ptrs(bkey_i_to_s(&wbio->key), ptr,
|
2018-10-01 06:28:23 +08:00
|
|
|
bch2_dev_list_has_dev(wbio->wbio.failed, ptr->dev));
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-07-11 01:44:42 +08:00
|
|
|
if (!bch2_bkey_nr_ptrs(bkey_i_to_s_c(&wbio->key)))
|
2017-03-17 14:18:50 +08:00
|
|
|
goto err;
|
|
|
|
|
2021-07-11 01:44:42 +08:00
|
|
|
if (wbio->wbio.first_btree_write) {
|
|
|
|
if (wbio->wbio.failed.nr) {
|
|
|
|
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ret = bch2_trans_do(c, NULL, NULL, 0,
|
|
|
|
bch2_btree_node_update_key_get_iter(&trans, b, &wbio->key,
|
|
|
|
!wbio->wbio.failed.nr));
|
|
|
|
if (ret)
|
|
|
|
goto err;
|
|
|
|
}
|
2017-03-17 14:18:50 +08:00
|
|
|
out:
|
|
|
|
bio_put(&wbio->wbio.bio);
|
|
|
|
btree_node_write_done(c, b);
|
|
|
|
return;
|
|
|
|
err:
|
|
|
|
set_btree_node_noevict(b);
|
|
|
|
bch2_fs_fatal_error(c, "fatal error writing btree node");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void btree_node_write_endio(struct bio *bio)
|
|
|
|
{
|
|
|
|
struct bch_write_bio *wbio = to_wbio(bio);
|
|
|
|
struct bch_write_bio *parent = wbio->split ? wbio->parent : NULL;
|
|
|
|
struct bch_write_bio *orig = parent ?: wbio;
|
2021-07-11 01:44:42 +08:00
|
|
|
struct btree_write_bio *wb = container_of(orig, struct btree_write_bio, wbio);
|
2017-03-17 14:18:50 +08:00
|
|
|
struct bch_fs *c = wbio->c;
|
2021-07-11 01:44:42 +08:00
|
|
|
struct btree *b = wbio->bio.bi_private;
|
2017-03-17 14:18:50 +08:00
|
|
|
struct bch_dev *ca = bch_dev_bkey_exists(c, wbio->dev);
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
if (wbio->have_ioref)
|
|
|
|
bch2_latency_acct(ca, wbio->submit_time, WRITE);
|
|
|
|
|
2020-12-04 02:57:22 +08:00
|
|
|
if (bch2_dev_io_err_on(bio->bi_status, ca, "btree write error: %s",
|
2020-07-22 01:34:22 +08:00
|
|
|
bch2_blk_status_to_str(bio->bi_status)) ||
|
2017-03-17 14:18:50 +08:00
|
|
|
bch2_meta_write_fault("btree")) {
|
|
|
|
spin_lock_irqsave(&c->btree_write_error_lock, flags);
|
|
|
|
bch2_dev_list_add_dev(&orig->failed, wbio->dev);
|
|
|
|
spin_unlock_irqrestore(&c->btree_write_error_lock, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (wbio->have_ioref)
|
|
|
|
percpu_ref_put(&ca->io_ref);
|
|
|
|
|
|
|
|
if (parent) {
|
|
|
|
bio_put(bio);
|
|
|
|
bio_endio(&parent->bio);
|
2021-07-11 01:44:42 +08:00
|
|
|
return;
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
2021-07-11 01:44:42 +08:00
|
|
|
|
|
|
|
clear_btree_node_write_in_flight_inner(b);
|
|
|
|
wake_up_bit(&b->flags, BTREE_NODE_write_in_flight_inner);
|
|
|
|
INIT_WORK(&wb->work, btree_node_write_work);
|
|
|
|
queue_work(c->btree_io_complete_wq, &wb->work);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int validate_bset_for_write(struct bch_fs *c, struct btree *b,
|
|
|
|
struct bset *i, unsigned sectors)
|
|
|
|
{
|
|
|
|
unsigned whiteout_u64s = 0;
|
2022-04-04 05:50:01 +08:00
|
|
|
struct printbuf buf = PRINTBUF;
|
2017-03-17 14:18:50 +08:00
|
|
|
int ret;
|
|
|
|
|
2022-04-04 09:50:25 +08:00
|
|
|
ret = bch2_bkey_invalid(c, bkey_i_to_s_c(&b->key),
|
|
|
|
BKEY_TYPE_btree, WRITE, &buf);
|
2022-04-04 05:50:01 +08:00
|
|
|
|
|
|
|
if (ret)
|
|
|
|
bch2_fs_inconsistent(c, "invalid btree node key before write: %s", buf.buf);
|
|
|
|
printbuf_exit(&buf);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
bcachefs: Start using bpos.snapshot field
This patch starts treating the bpos.snapshot field like part of the key
in the btree code:
* bpos_successor() and bpos_predecessor() now include the snapshot field
* Keys in btrees that will be using snapshots (extents, inodes, dirents
and xattrs) now always have their snapshot field set to U32_MAX
The btree iterator code gets a new flag, BTREE_ITER_ALL_SNAPSHOTS, that
determines whether we're iterating over keys in all snapshots or not -
internally, this controlls whether bkey_(successor|predecessor)
increment/decrement the snapshot field, or only the higher bits of the
key.
We add a new member to struct btree_iter, iter->snapshot: when
BTREE_ITER_ALL_SNAPSHOTS is not set, iter->pos.snapshot should always
equal iter->snapshot, which will be 0 for btrees that don't use
snapshots, and alsways U32_MAX for btrees that will use snapshots
(until we enable snapshot creation).
This patch also introduces a new metadata version number, and compat
code for reading from/writing to older versions - this isn't a forced
upgrade (yet).
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2021-03-25 06:02:16 +08:00
|
|
|
ret = validate_bset_keys(c, b, i, &whiteout_u64s, WRITE, false) ?:
|
2021-07-17 00:57:27 +08:00
|
|
|
validate_bset(c, NULL, b, i, b->written, sectors, WRITE, false);
|
2020-11-17 03:16:42 +08:00
|
|
|
if (ret) {
|
2017-03-17 14:18:50 +08:00
|
|
|
bch2_inconsistent_error(c);
|
2020-11-17 03:16:42 +08:00
|
|
|
dump_stack();
|
|
|
|
}
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-04-07 03:28:34 +08:00
|
|
|
static void btree_write_submit(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct btree_write_bio *wbio = container_of(work, struct btree_write_bio, work);
|
2021-07-11 01:44:42 +08:00
|
|
|
struct bch_extent_ptr *ptr;
|
|
|
|
__BKEY_PADDED(k, BKEY_BTREE_PTR_VAL_U64s_MAX) tmp;
|
|
|
|
|
|
|
|
bkey_copy(&tmp.k, &wbio->key);
|
|
|
|
|
|
|
|
bkey_for_each_ptr(bch2_bkey_ptrs(bkey_i_to_s(&tmp.k)), ptr)
|
|
|
|
ptr->offset += wbio->sector_offset;
|
2021-04-07 03:28:34 +08:00
|
|
|
|
2021-07-11 01:44:42 +08:00
|
|
|
bch2_submit_wbio_replicas(&wbio->wbio, wbio->wbio.c, BCH_DATA_btree, &tmp.k);
|
2021-04-07 03:28:34 +08:00
|
|
|
}
|
|
|
|
|
2022-02-27 10:46:41 +08:00
|
|
|
void __bch2_btree_node_write(struct bch_fs *c, struct btree *b, unsigned flags)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
|
|
|
struct btree_write_bio *wbio;
|
|
|
|
struct bset_tree *t;
|
|
|
|
struct bset *i;
|
|
|
|
struct btree_node *bn = NULL;
|
|
|
|
struct btree_node_entry *bne = NULL;
|
|
|
|
struct sort_iter sort_iter;
|
|
|
|
struct nonce nonce;
|
2020-07-26 03:07:37 +08:00
|
|
|
unsigned bytes_to_write, sectors_to_write, bytes, u64s;
|
2017-03-17 14:18:50 +08:00
|
|
|
u64 seq = 0;
|
|
|
|
bool used_mempool;
|
|
|
|
unsigned long old, new;
|
2018-11-02 03:10:01 +08:00
|
|
|
bool validate_before_checksum = false;
|
2017-03-17 14:18:50 +08:00
|
|
|
void *data;
|
2022-02-19 13:42:12 +08:00
|
|
|
int ret;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2022-02-27 10:46:41 +08:00
|
|
|
if (flags & BTREE_WRITE_ALREADY_STARTED)
|
2021-07-12 04:41:14 +08:00
|
|
|
goto do_write;
|
2021-07-11 11:03:15 +08:00
|
|
|
|
2017-03-17 14:18:50 +08:00
|
|
|
/*
|
|
|
|
* We may only have a read lock on the btree node - the dirty bit is our
|
|
|
|
* "lock" against racing with other threads that may be trying to start
|
|
|
|
* a write, we do a write iff we clear the dirty bit. Since setting the
|
|
|
|
* dirty bit requires a write lock, we can't race with other threads
|
|
|
|
* redirtying it:
|
|
|
|
*/
|
|
|
|
do {
|
|
|
|
old = new = READ_ONCE(b->flags);
|
|
|
|
|
|
|
|
if (!(old & (1 << BTREE_NODE_dirty)))
|
|
|
|
return;
|
|
|
|
|
2022-02-27 10:46:41 +08:00
|
|
|
if ((flags & BTREE_WRITE_ONLY_IF_NEED) &&
|
|
|
|
!(old & (1 << BTREE_NODE_need_write)))
|
|
|
|
return;
|
|
|
|
|
2022-02-27 22:56:33 +08:00
|
|
|
if (old &
|
|
|
|
((1 << BTREE_NODE_never_write)|
|
|
|
|
(1 << BTREE_NODE_write_blocked)))
|
2017-03-17 14:18:50 +08:00
|
|
|
return;
|
|
|
|
|
2022-02-27 22:56:33 +08:00
|
|
|
if (b->written &&
|
|
|
|
(old & (1 << BTREE_NODE_will_make_reachable)))
|
2020-12-04 05:20:18 +08:00
|
|
|
return;
|
|
|
|
|
2022-02-27 10:46:41 +08:00
|
|
|
if (old & (1 << BTREE_NODE_write_in_flight))
|
|
|
|
return;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
new &= ~(1 << BTREE_NODE_dirty);
|
|
|
|
new &= ~(1 << BTREE_NODE_need_write);
|
|
|
|
new |= (1 << BTREE_NODE_write_in_flight);
|
2021-07-11 01:44:42 +08:00
|
|
|
new |= (1 << BTREE_NODE_write_in_flight_inner);
|
2017-03-17 14:18:50 +08:00
|
|
|
new |= (1 << BTREE_NODE_just_written);
|
|
|
|
new ^= (1 << BTREE_NODE_write_idx);
|
|
|
|
} while (cmpxchg_acquire(&b->flags, old, new) != old);
|
|
|
|
|
2021-07-12 04:41:14 +08:00
|
|
|
if (new & (1U << BTREE_NODE_need_write))
|
|
|
|
return;
|
|
|
|
do_write:
|
2020-11-10 02:01:52 +08:00
|
|
|
atomic_dec(&c->btree_cache.dirty);
|
|
|
|
|
2017-03-17 14:18:50 +08:00
|
|
|
BUG_ON(btree_node_fake(b));
|
|
|
|
BUG_ON((b->will_make_reachable != 0) != !b->written);
|
|
|
|
|
2021-12-15 03:24:41 +08:00
|
|
|
BUG_ON(b->written >= btree_sectors(c));
|
|
|
|
BUG_ON(b->written & (block_sectors(c) - 1));
|
2017-03-17 14:18:50 +08:00
|
|
|
BUG_ON(bset_written(b, btree_bset_last(b)));
|
|
|
|
BUG_ON(le64_to_cpu(b->data->magic) != bset_magic(c));
|
|
|
|
BUG_ON(memcmp(&b->data->format, &b->format, sizeof(b->format)));
|
|
|
|
|
2019-11-30 03:08:51 +08:00
|
|
|
bch2_sort_whiteouts(c, b);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
sort_iter_init(&sort_iter, b);
|
|
|
|
|
|
|
|
bytes = !b->written
|
|
|
|
? sizeof(struct btree_node)
|
|
|
|
: sizeof(struct btree_node_entry);
|
|
|
|
|
|
|
|
bytes += b->whiteout_u64s * sizeof(u64);
|
|
|
|
|
|
|
|
for_each_bset(b, t) {
|
|
|
|
i = bset(b, t);
|
|
|
|
|
|
|
|
if (bset_written(b, i))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
bytes += le16_to_cpu(i->u64s) * sizeof(u64);
|
|
|
|
sort_iter_add(&sort_iter,
|
|
|
|
btree_bkey_first(b, t),
|
|
|
|
btree_bkey_last(b, t));
|
|
|
|
seq = max(seq, le64_to_cpu(i->journal_seq));
|
|
|
|
}
|
|
|
|
|
2020-12-04 05:20:18 +08:00
|
|
|
BUG_ON(b->written && !seq);
|
|
|
|
|
2020-11-12 01:42:54 +08:00
|
|
|
/* bch2_varint_decode may read up to 7 bytes past the end of the buffer: */
|
|
|
|
bytes += 8;
|
|
|
|
|
2021-05-08 10:29:02 +08:00
|
|
|
/* buffer must be a multiple of the block size */
|
|
|
|
bytes = round_up(bytes, block_bytes(c));
|
|
|
|
|
2020-07-26 03:07:37 +08:00
|
|
|
data = btree_bounce_alloc(c, bytes, &used_mempool);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
if (!b->written) {
|
|
|
|
bn = data;
|
|
|
|
*bn = *b->data;
|
|
|
|
i = &bn->keys;
|
|
|
|
} else {
|
|
|
|
bne = data;
|
|
|
|
bne->keys = b->data->keys;
|
|
|
|
i = &bne->keys;
|
|
|
|
}
|
|
|
|
|
|
|
|
i->journal_seq = cpu_to_le64(seq);
|
|
|
|
i->u64s = 0;
|
|
|
|
|
2021-02-20 13:00:23 +08:00
|
|
|
sort_iter_add(&sort_iter,
|
|
|
|
unwritten_whiteouts_start(c, b),
|
|
|
|
unwritten_whiteouts_end(c, b));
|
|
|
|
SET_BSET_SEPARATE_WHITEOUTS(i, false);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
b->whiteout_u64s = 0;
|
|
|
|
|
2021-02-20 13:00:23 +08:00
|
|
|
u64s = bch2_sort_keys(i->start, &sort_iter, false);
|
2017-03-17 14:18:50 +08:00
|
|
|
le16_add_cpu(&i->u64s, u64s);
|
|
|
|
|
2019-11-10 12:50:52 +08:00
|
|
|
set_needs_whiteout(i, false);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
/* do we have data to write? */
|
|
|
|
if (b->written && !i->u64s)
|
|
|
|
goto nowrite;
|
|
|
|
|
|
|
|
bytes_to_write = vstruct_end(i) - data;
|
|
|
|
sectors_to_write = round_up(bytes_to_write, block_bytes(c)) >> 9;
|
|
|
|
|
|
|
|
memset(data + bytes_to_write, 0,
|
|
|
|
(sectors_to_write << 9) - bytes_to_write);
|
|
|
|
|
2021-12-15 03:24:41 +08:00
|
|
|
BUG_ON(b->written + sectors_to_write > btree_sectors(c));
|
2017-03-17 14:18:50 +08:00
|
|
|
BUG_ON(BSET_BIG_ENDIAN(i) != CPU_BIG_ENDIAN);
|
|
|
|
BUG_ON(i->seq != b->data->keys.seq);
|
|
|
|
|
2022-03-21 11:34:11 +08:00
|
|
|
i->version = c->sb.version < bcachefs_metadata_version_bkey_renumber
|
2018-11-02 03:10:01 +08:00
|
|
|
? cpu_to_le16(BCH_BSET_VERSION_OLD)
|
|
|
|
: cpu_to_le16(c->sb.version);
|
2021-07-17 00:57:27 +08:00
|
|
|
SET_BSET_OFFSET(i, b->written);
|
2017-03-17 14:18:50 +08:00
|
|
|
SET_BSET_CSUM_TYPE(i, bch2_meta_checksum_type(c));
|
|
|
|
|
2018-11-02 03:10:01 +08:00
|
|
|
if (bch2_csum_type_is_encryption(BSET_CSUM_TYPE(i)))
|
|
|
|
validate_before_checksum = true;
|
|
|
|
|
|
|
|
/* validate_bset will be modifying: */
|
bcachefs: Start using bpos.snapshot field
This patch starts treating the bpos.snapshot field like part of the key
in the btree code:
* bpos_successor() and bpos_predecessor() now include the snapshot field
* Keys in btrees that will be using snapshots (extents, inodes, dirents
and xattrs) now always have their snapshot field set to U32_MAX
The btree iterator code gets a new flag, BTREE_ITER_ALL_SNAPSHOTS, that
determines whether we're iterating over keys in all snapshots or not -
internally, this controlls whether bkey_(successor|predecessor)
increment/decrement the snapshot field, or only the higher bits of the
key.
We add a new member to struct btree_iter, iter->snapshot: when
BTREE_ITER_ALL_SNAPSHOTS is not set, iter->pos.snapshot should always
equal iter->snapshot, which will be 0 for btrees that don't use
snapshots, and alsways U32_MAX for btrees that will use snapshots
(until we enable snapshot creation).
This patch also introduces a new metadata version number, and compat
code for reading from/writing to older versions - this isn't a forced
upgrade (yet).
Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2021-03-25 06:02:16 +08:00
|
|
|
if (le16_to_cpu(i->version) < bcachefs_metadata_version_current)
|
2018-11-02 03:10:01 +08:00
|
|
|
validate_before_checksum = true;
|
|
|
|
|
2017-03-17 14:18:50 +08:00
|
|
|
/* if we're going to be encrypting, check metadata validity first: */
|
2018-11-02 03:10:01 +08:00
|
|
|
if (validate_before_checksum &&
|
2017-03-17 14:18:50 +08:00
|
|
|
validate_bset_for_write(c, b, i, sectors_to_write))
|
|
|
|
goto err;
|
|
|
|
|
2022-02-19 13:42:12 +08:00
|
|
|
ret = bset_encrypt(c, i, b->written << 9);
|
|
|
|
if (bch2_fs_fatal_err_on(ret, c,
|
|
|
|
"error encrypting btree node: %i\n", ret))
|
|
|
|
goto err;
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
nonce = btree_nonce(i, b->written << 9);
|
|
|
|
|
|
|
|
if (bn)
|
|
|
|
bn->csum = csum_vstruct(c, BSET_CSUM_TYPE(i), nonce, bn);
|
|
|
|
else
|
|
|
|
bne->csum = csum_vstruct(c, BSET_CSUM_TYPE(i), nonce, bne);
|
|
|
|
|
|
|
|
/* if we're not encrypting, check metadata after checksumming: */
|
2018-11-02 03:10:01 +08:00
|
|
|
if (!validate_before_checksum &&
|
2017-03-17 14:18:50 +08:00
|
|
|
validate_bset_for_write(c, b, i, sectors_to_write))
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We handle btree write errors by immediately halting the journal -
|
|
|
|
* after we've done that, we can't issue any subsequent btree writes
|
|
|
|
* because they might have pointers to new nodes that failed to write.
|
|
|
|
*
|
|
|
|
* Furthermore, there's no point in doing any more btree writes because
|
|
|
|
* with the journal stopped, we're never going to update the journal to
|
|
|
|
* reflect that those writes were done and the data flushed from the
|
|
|
|
* journal:
|
|
|
|
*
|
2020-05-03 04:21:35 +08:00
|
|
|
* Also on journal error, the pending write may have updates that were
|
|
|
|
* never journalled (interior nodes, see btree_update_nodes_written()) -
|
|
|
|
* it's critical that we don't do the write in that case otherwise we
|
|
|
|
* will have updates visible that weren't in the journal:
|
|
|
|
*
|
2017-03-17 14:18:50 +08:00
|
|
|
* Make sure to update b->written so bch2_btree_init_next() doesn't
|
|
|
|
* break:
|
|
|
|
*/
|
|
|
|
if (bch2_journal_error(&c->journal) ||
|
|
|
|
c->opts.nochanges)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
trace_btree_write(b, bytes_to_write, sectors_to_write);
|
|
|
|
|
2018-11-04 08:04:54 +08:00
|
|
|
wbio = container_of(bio_alloc_bioset(NULL,
|
|
|
|
buf_pages(data, sectors_to_write << 9),
|
2019-10-22 07:38:08 +08:00
|
|
|
REQ_OP_WRITE|REQ_META,
|
2017-03-17 14:18:50 +08:00
|
|
|
GFP_NOIO,
|
|
|
|
&c->btree_bio),
|
|
|
|
struct btree_write_bio, wbio.bio);
|
|
|
|
wbio_init(&wbio->wbio.bio);
|
|
|
|
wbio->data = data;
|
2021-07-11 01:44:42 +08:00
|
|
|
wbio->data_bytes = bytes;
|
|
|
|
wbio->sector_offset = b->written;
|
2021-04-07 03:28:34 +08:00
|
|
|
wbio->wbio.c = c;
|
2017-03-17 14:18:50 +08:00
|
|
|
wbio->wbio.used_mempool = used_mempool;
|
2021-07-11 01:44:42 +08:00
|
|
|
wbio->wbio.first_btree_write = !b->written;
|
2017-03-17 14:18:50 +08:00
|
|
|
wbio->wbio.bio.bi_end_io = btree_node_write_endio;
|
|
|
|
wbio->wbio.bio.bi_private = b;
|
|
|
|
|
2019-07-04 07:27:42 +08:00
|
|
|
bch2_bio_map(&wbio->wbio.bio, data, sectors_to_write << 9);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
2021-04-07 03:28:34 +08:00
|
|
|
bkey_copy(&wbio->key, &b->key);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
b->written += sectors_to_write;
|
|
|
|
|
2021-07-11 01:44:42 +08:00
|
|
|
if (wbio->wbio.first_btree_write &&
|
|
|
|
b->key.k.type == KEY_TYPE_btree_ptr_v2)
|
|
|
|
bkey_i_to_btree_ptr_v2(&b->key)->v.sectors_written =
|
|
|
|
cpu_to_le16(b->written);
|
|
|
|
|
|
|
|
if (wbio->key.k.type == KEY_TYPE_btree_ptr_v2)
|
|
|
|
bkey_i_to_btree_ptr_v2(&wbio->key)->v.sectors_written =
|
|
|
|
cpu_to_le16(b->written);
|
|
|
|
|
2021-04-01 09:07:37 +08:00
|
|
|
atomic64_inc(&c->btree_writes_nr);
|
|
|
|
atomic64_add(sectors_to_write, &c->btree_writes_sectors);
|
|
|
|
|
2021-04-07 03:28:34 +08:00
|
|
|
INIT_WORK(&wbio->work, btree_write_submit);
|
2021-05-23 05:37:25 +08:00
|
|
|
queue_work(c->io_complete_wq, &wbio->work);
|
2017-03-17 14:18:50 +08:00
|
|
|
return;
|
|
|
|
err:
|
|
|
|
set_btree_node_noevict(b);
|
2021-07-11 01:44:42 +08:00
|
|
|
if (!b->written &&
|
|
|
|
b->key.k.type == KEY_TYPE_btree_ptr_v2)
|
|
|
|
bkey_i_to_btree_ptr_v2(&b->key)->v.sectors_written =
|
|
|
|
cpu_to_le16(sectors_to_write);
|
2017-03-17 14:18:50 +08:00
|
|
|
b->written += sectors_to_write;
|
|
|
|
nowrite:
|
2020-07-26 03:07:37 +08:00
|
|
|
btree_bounce_free(c, bytes, used_mempool, data);
|
2022-02-27 10:35:16 +08:00
|
|
|
__btree_node_write_done(c, b);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Work that must be done with write lock held:
|
|
|
|
*/
|
|
|
|
bool bch2_btree_post_write_cleanup(struct bch_fs *c, struct btree *b)
|
|
|
|
{
|
|
|
|
bool invalidated_iter = false;
|
|
|
|
struct btree_node_entry *bne;
|
|
|
|
struct bset_tree *t;
|
|
|
|
|
|
|
|
if (!btree_node_just_written(b))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
BUG_ON(b->whiteout_u64s);
|
|
|
|
|
|
|
|
clear_btree_node_just_written(b);
|
|
|
|
|
|
|
|
/*
|
2018-08-06 10:23:44 +08:00
|
|
|
* Note: immediately after write, bset_written() doesn't work - the
|
|
|
|
* amount of data we had to write after compaction might have been
|
|
|
|
* smaller than the offset of the last bset.
|
2017-03-17 14:18:50 +08:00
|
|
|
*
|
|
|
|
* However, we know that all bsets have been written here, as long as
|
|
|
|
* we're still holding the write lock:
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX: decide if we really want to unconditionally sort down to a
|
|
|
|
* single bset:
|
|
|
|
*/
|
|
|
|
if (b->nsets > 1) {
|
2021-04-07 03:33:19 +08:00
|
|
|
btree_node_sort(c, b, 0, b->nsets, true);
|
2017-03-17 14:18:50 +08:00
|
|
|
invalidated_iter = true;
|
|
|
|
} else {
|
2019-12-14 02:08:37 +08:00
|
|
|
invalidated_iter = bch2_drop_whiteouts(b, COMPACT_ALL);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for_each_bset(b, t)
|
2019-11-10 12:50:52 +08:00
|
|
|
set_needs_whiteout(bset(b, t), true);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
bch2_btree_verify(c, b);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If later we don't unconditionally sort down to a single bset, we have
|
|
|
|
* to ensure this is still true:
|
|
|
|
*/
|
|
|
|
BUG_ON((void *) btree_bkey_last(b, bset_tree_last(b)) > write_block(b));
|
|
|
|
|
|
|
|
bne = want_new_bset(c, b);
|
|
|
|
if (bne)
|
|
|
|
bch2_bset_init_next(c, b, bne);
|
|
|
|
|
|
|
|
bch2_btree_build_aux_trees(b);
|
|
|
|
|
|
|
|
return invalidated_iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Use this one if the node is intent locked:
|
|
|
|
*/
|
|
|
|
void bch2_btree_node_write(struct bch_fs *c, struct btree *b,
|
2022-02-27 10:46:41 +08:00
|
|
|
enum six_lock_type lock_type_held,
|
|
|
|
unsigned flags)
|
2017-03-17 14:18:50 +08:00
|
|
|
{
|
|
|
|
if (lock_type_held == SIX_LOCK_intent ||
|
2021-04-07 03:33:19 +08:00
|
|
|
(lock_type_held == SIX_LOCK_read &&
|
|
|
|
six_lock_tryupgrade(&b->c.lock))) {
|
2022-02-27 10:46:41 +08:00
|
|
|
__bch2_btree_node_write(c, b, flags);
|
2017-03-17 14:18:50 +08:00
|
|
|
|
|
|
|
/* don't cycle lock unnecessarily: */
|
|
|
|
if (btree_node_just_written(b) &&
|
2020-06-07 00:28:01 +08:00
|
|
|
six_trylock_write(&b->c.lock)) {
|
2017-03-17 14:18:50 +08:00
|
|
|
bch2_btree_post_write_cleanup(c, b);
|
2020-06-07 00:28:01 +08:00
|
|
|
six_unlock_write(&b->c.lock);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (lock_type_held == SIX_LOCK_read)
|
2020-06-07 00:28:01 +08:00
|
|
|
six_lock_downgrade(&b->c.lock);
|
2017-03-17 14:18:50 +08:00
|
|
|
} else {
|
2022-02-27 10:46:41 +08:00
|
|
|
__bch2_btree_node_write(c, b, flags);
|
2021-04-07 03:33:19 +08:00
|
|
|
if (lock_type_held == SIX_LOCK_write &&
|
|
|
|
btree_node_just_written(b))
|
|
|
|
bch2_btree_post_write_cleanup(c, b);
|
2017-03-17 14:18:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __bch2_btree_flush_all(struct bch_fs *c, unsigned flag)
|
|
|
|
{
|
|
|
|
struct bucket_table *tbl;
|
|
|
|
struct rhash_head *pos;
|
|
|
|
struct btree *b;
|
|
|
|
unsigned i;
|
|
|
|
restart:
|
|
|
|
rcu_read_lock();
|
|
|
|
for_each_cached_btree(b, c, tbl, i, pos)
|
|
|
|
if (test_bit(flag, &b->flags)) {
|
|
|
|
rcu_read_unlock();
|
|
|
|
wait_on_bit_io(&b->flags, flag, TASK_UNINTERRUPTIBLE);
|
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
rcu_read_unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
void bch2_btree_flush_all_reads(struct bch_fs *c)
|
|
|
|
{
|
|
|
|
__bch2_btree_flush_all(c, BTREE_NODE_read_in_flight);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bch2_btree_flush_all_writes(struct bch_fs *c)
|
|
|
|
{
|
|
|
|
__bch2_btree_flush_all(c, BTREE_NODE_write_in_flight);
|
|
|
|
}
|