1 // SPDX-License-Identifier: GPL-2.0
4 #include "bkey_methods.h"
6 #include "btree_cache.h"
7 #include "btree_iter.h"
8 #include "btree_journal_iter.h"
9 #include "btree_key_cache.h"
10 #include "btree_locking.h"
11 #include "btree_update.h"
16 #include "journal_io.h"
21 #include <linux/random.h>
22 #include <linux/prefetch.h>
24 static inline void btree_path_list_remove(struct btree_trans
*, struct btree_path
*);
25 static inline void btree_path_list_add(struct btree_trans
*,
26 btree_path_idx_t
, btree_path_idx_t
);
28 static inline unsigned long btree_iter_ip_allocated(struct btree_iter
*iter
)
30 #ifdef TRACK_PATH_ALLOCATED
31 return iter
->ip_allocated
;
37 static btree_path_idx_t
btree_path_alloc(struct btree_trans
*, btree_path_idx_t
);
38 static void bch2_trans_srcu_lock(struct btree_trans
*);
40 static inline int __btree_path_cmp(const struct btree_path
*l
,
41 enum btree_id r_btree_id
,
47 * Must match lock ordering as defined by __bch2_btree_node_lock:
49 return cmp_int(l
->btree_id
, r_btree_id
) ?:
50 cmp_int((int) l
->cached
, (int) r_cached
) ?:
51 bpos_cmp(l
->pos
, r_pos
) ?:
52 -cmp_int(l
->level
, r_level
);
55 static inline int btree_path_cmp(const struct btree_path
*l
,
56 const struct btree_path
*r
)
58 return __btree_path_cmp(l
, r
->btree_id
, r
->cached
, r
->pos
, r
->level
);
61 static inline struct bpos
bkey_successor(struct btree_iter
*iter
, struct bpos p
)
63 /* Are we iterating over keys in all snapshots? */
64 if (iter
->flags
& BTREE_ITER_all_snapshots
) {
65 p
= bpos_successor(p
);
67 p
= bpos_nosnap_successor(p
);
68 p
.snapshot
= iter
->snapshot
;
74 static inline struct bpos
bkey_predecessor(struct btree_iter
*iter
, struct bpos p
)
76 /* Are we iterating over keys in all snapshots? */
77 if (iter
->flags
& BTREE_ITER_all_snapshots
) {
78 p
= bpos_predecessor(p
);
80 p
= bpos_nosnap_predecessor(p
);
81 p
.snapshot
= iter
->snapshot
;
87 static inline struct bpos
btree_iter_search_key(struct btree_iter
*iter
)
89 struct bpos pos
= iter
->pos
;
91 if ((iter
->flags
& BTREE_ITER_is_extents
) &&
92 !bkey_eq(pos
, POS_MAX
))
93 pos
= bkey_successor(iter
, pos
);
97 static inline bool btree_path_pos_before_node(struct btree_path
*path
,
100 return bpos_lt(path
->pos
, b
->data
->min_key
);
103 static inline bool btree_path_pos_after_node(struct btree_path
*path
,
106 return bpos_gt(path
->pos
, b
->key
.k
.p
);
109 static inline bool btree_path_pos_in_node(struct btree_path
*path
,
112 return path
->btree_id
== b
->c
.btree_id
&&
113 !btree_path_pos_before_node(path
, b
) &&
114 !btree_path_pos_after_node(path
, b
);
117 /* Btree iterator: */
119 #ifdef CONFIG_BCACHEFS_DEBUG
121 static void bch2_btree_path_verify_cached(struct btree_trans
*trans
,
122 struct btree_path
*path
)
124 struct bkey_cached
*ck
;
125 bool locked
= btree_node_locked(path
, 0);
127 if (!bch2_btree_node_relock(trans
, path
, 0))
130 ck
= (void *) path
->l
[0].b
;
131 BUG_ON(ck
->key
.btree_id
!= path
->btree_id
||
132 !bkey_eq(ck
->key
.pos
, path
->pos
));
135 btree_node_unlock(trans
, path
, 0);
138 static void bch2_btree_path_verify_level(struct btree_trans
*trans
,
139 struct btree_path
*path
, unsigned level
)
141 struct btree_path_level
*l
;
142 struct btree_node_iter tmp
;
144 struct bkey_packed
*p
, *k
;
145 struct printbuf buf1
= PRINTBUF
;
146 struct printbuf buf2
= PRINTBUF
;
147 struct printbuf buf3
= PRINTBUF
;
150 if (!bch2_debug_check_iterators
)
155 locked
= btree_node_locked(path
, level
);
159 bch2_btree_path_verify_cached(trans
, path
);
163 if (!btree_path_node(path
, level
))
166 if (!bch2_btree_node_relock_notrace(trans
, path
, level
))
169 BUG_ON(!btree_path_pos_in_node(path
, l
->b
));
171 bch2_btree_node_iter_verify(&l
->iter
, l
->b
);
174 * For interior nodes, the iterator will have skipped past deleted keys:
177 ? bch2_btree_node_iter_prev(&tmp
, l
->b
)
178 : bch2_btree_node_iter_prev_all(&tmp
, l
->b
);
179 k
= bch2_btree_node_iter_peek_all(&l
->iter
, l
->b
);
181 if (p
&& bkey_iter_pos_cmp(l
->b
, p
, &path
->pos
) >= 0) {
186 if (k
&& bkey_iter_pos_cmp(l
->b
, k
, &path
->pos
) < 0) {
192 btree_node_unlock(trans
, path
, level
);
195 bch2_bpos_to_text(&buf1
, path
->pos
);
198 struct bkey uk
= bkey_unpack_key(l
->b
, p
);
200 bch2_bkey_to_text(&buf2
, &uk
);
202 prt_printf(&buf2
, "(none)");
206 struct bkey uk
= bkey_unpack_key(l
->b
, k
);
208 bch2_bkey_to_text(&buf3
, &uk
);
210 prt_printf(&buf3
, "(none)");
213 panic("path should be %s key at level %u:\n"
217 msg
, level
, buf1
.buf
, buf2
.buf
, buf3
.buf
);
220 static void bch2_btree_path_verify(struct btree_trans
*trans
,
221 struct btree_path
*path
)
223 struct bch_fs
*c
= trans
->c
;
225 for (unsigned i
= 0; i
< (!path
->cached
? BTREE_MAX_DEPTH
: 1); i
++) {
227 BUG_ON(!path
->cached
&&
228 bch2_btree_id_root(c
, path
->btree_id
)->b
->c
.level
> i
);
232 bch2_btree_path_verify_level(trans
, path
, i
);
235 bch2_btree_path_verify_locks(path
);
238 void bch2_trans_verify_paths(struct btree_trans
*trans
)
240 struct btree_path
*path
;
243 trans_for_each_path(trans
, path
, iter
)
244 bch2_btree_path_verify(trans
, path
);
247 static void bch2_btree_iter_verify(struct btree_iter
*iter
)
249 struct btree_trans
*trans
= iter
->trans
;
251 BUG_ON(!!(iter
->flags
& BTREE_ITER_cached
) != btree_iter_path(trans
, iter
)->cached
);
253 BUG_ON((iter
->flags
& BTREE_ITER_is_extents
) &&
254 (iter
->flags
& BTREE_ITER_all_snapshots
));
256 BUG_ON(!(iter
->flags
& BTREE_ITER_snapshot_field
) &&
257 (iter
->flags
& BTREE_ITER_all_snapshots
) &&
258 !btree_type_has_snapshot_field(iter
->btree_id
));
260 if (iter
->update_path
)
261 bch2_btree_path_verify(trans
, &trans
->paths
[iter
->update_path
]);
262 bch2_btree_path_verify(trans
, btree_iter_path(trans
, iter
));
265 static void bch2_btree_iter_verify_entry_exit(struct btree_iter
*iter
)
267 BUG_ON((iter
->flags
& BTREE_ITER_filter_snapshots
) &&
268 !iter
->pos
.snapshot
);
270 BUG_ON(!(iter
->flags
& BTREE_ITER_all_snapshots
) &&
271 iter
->pos
.snapshot
!= iter
->snapshot
);
273 BUG_ON(bkey_lt(iter
->pos
, bkey_start_pos(&iter
->k
)) ||
274 bkey_gt(iter
->pos
, iter
->k
.p
));
277 static int bch2_btree_iter_verify_ret(struct btree_iter
*iter
, struct bkey_s_c k
)
279 struct btree_trans
*trans
= iter
->trans
;
280 struct btree_iter copy
;
281 struct bkey_s_c prev
;
284 if (!bch2_debug_check_iterators
)
287 if (!(iter
->flags
& BTREE_ITER_filter_snapshots
))
290 if (bkey_err(k
) || !k
.k
)
293 BUG_ON(!bch2_snapshot_is_ancestor(trans
->c
,
297 bch2_trans_iter_init(trans
, ©
, iter
->btree_id
, iter
->pos
,
298 BTREE_ITER_nopreserve
|
299 BTREE_ITER_all_snapshots
);
300 prev
= bch2_btree_iter_prev(©
);
304 ret
= bkey_err(prev
);
308 if (bkey_eq(prev
.k
->p
, k
.k
->p
) &&
309 bch2_snapshot_is_ancestor(trans
->c
, iter
->snapshot
,
310 prev
.k
->p
.snapshot
) > 0) {
311 struct printbuf buf1
= PRINTBUF
, buf2
= PRINTBUF
;
313 bch2_bkey_to_text(&buf1
, k
.k
);
314 bch2_bkey_to_text(&buf2
, prev
.k
);
316 panic("iter snap %u\n"
323 bch2_trans_iter_exit(trans
, ©
);
327 void bch2_assert_pos_locked(struct btree_trans
*trans
, enum btree_id id
,
330 bch2_trans_verify_not_unlocked(trans
);
332 struct btree_path
*path
;
333 struct trans_for_each_path_inorder_iter iter
;
334 struct printbuf buf
= PRINTBUF
;
336 btree_trans_sort_paths(trans
);
338 trans_for_each_path_inorder(trans
, path
, iter
) {
339 if (path
->btree_id
!= id
||
340 !btree_node_locked(path
, 0) ||
341 !path
->should_be_locked
)
345 if (bkey_ge(pos
, path
->l
[0].b
->data
->min_key
) &&
346 bkey_le(pos
, path
->l
[0].b
->key
.k
.p
))
349 if (bkey_eq(pos
, path
->pos
))
354 bch2_dump_trans_paths_updates(trans
);
355 bch2_bpos_to_text(&buf
, pos
);
357 panic("not locked: %s %s\n", bch2_btree_id_str(id
), buf
.buf
);
362 static inline void bch2_btree_path_verify_level(struct btree_trans
*trans
,
363 struct btree_path
*path
, unsigned l
) {}
364 static inline void bch2_btree_path_verify(struct btree_trans
*trans
,
365 struct btree_path
*path
) {}
366 static inline void bch2_btree_iter_verify(struct btree_iter
*iter
) {}
367 static inline void bch2_btree_iter_verify_entry_exit(struct btree_iter
*iter
) {}
368 static inline int bch2_btree_iter_verify_ret(struct btree_iter
*iter
, struct bkey_s_c k
) { return 0; }
372 /* Btree path: fixups after btree updates */
374 static void btree_node_iter_set_set_pos(struct btree_node_iter
*iter
,
377 struct bkey_packed
*k
)
379 struct btree_node_iter_set
*set
;
381 btree_node_iter_for_each(iter
, set
)
382 if (set
->end
== t
->end_offset
) {
383 set
->k
= __btree_node_key_to_offset(b
, k
);
384 bch2_btree_node_iter_sort(iter
, b
);
388 bch2_btree_node_iter_push(iter
, b
, k
, btree_bkey_last(b
, t
));
391 static void __bch2_btree_path_fix_key_modified(struct btree_path
*path
,
393 struct bkey_packed
*where
)
395 struct btree_path_level
*l
= &path
->l
[b
->c
.level
];
397 if (where
!= bch2_btree_node_iter_peek_all(&l
->iter
, l
->b
))
400 if (bkey_iter_pos_cmp(l
->b
, where
, &path
->pos
) < 0)
401 bch2_btree_node_iter_advance(&l
->iter
, l
->b
);
404 void bch2_btree_path_fix_key_modified(struct btree_trans
*trans
,
406 struct bkey_packed
*where
)
408 struct btree_path
*path
;
411 trans_for_each_path_with_node(trans
, b
, path
, i
) {
412 __bch2_btree_path_fix_key_modified(path
, b
, where
);
413 bch2_btree_path_verify_level(trans
, path
, b
->c
.level
);
417 static void __bch2_btree_node_iter_fix(struct btree_path
*path
,
419 struct btree_node_iter
*node_iter
,
421 struct bkey_packed
*where
,
422 unsigned clobber_u64s
,
425 const struct bkey_packed
*end
= btree_bkey_last(b
, t
);
426 struct btree_node_iter_set
*set
;
427 unsigned offset
= __btree_node_key_to_offset(b
, where
);
428 int shift
= new_u64s
- clobber_u64s
;
429 unsigned old_end
= t
->end_offset
- shift
;
430 unsigned orig_iter_pos
= node_iter
->data
[0].k
;
431 bool iter_current_key_modified
=
432 orig_iter_pos
>= offset
&&
433 orig_iter_pos
<= offset
+ clobber_u64s
;
435 btree_node_iter_for_each(node_iter
, set
)
436 if (set
->end
== old_end
)
439 /* didn't find the bset in the iterator - might have to readd it: */
441 bkey_iter_pos_cmp(b
, where
, &path
->pos
) >= 0) {
442 bch2_btree_node_iter_push(node_iter
, b
, where
, end
);
445 /* Iterator is after key that changed */
449 set
->end
= t
->end_offset
;
451 /* Iterator hasn't gotten to the key that changed yet: */
456 bkey_iter_pos_cmp(b
, where
, &path
->pos
) >= 0) {
458 } else if (set
->k
< offset
+ clobber_u64s
) {
459 set
->k
= offset
+ new_u64s
;
460 if (set
->k
== set
->end
)
461 bch2_btree_node_iter_set_drop(node_iter
, set
);
463 /* Iterator is after key that changed */
464 set
->k
= (int) set
->k
+ shift
;
468 bch2_btree_node_iter_sort(node_iter
, b
);
470 if (node_iter
->data
[0].k
!= orig_iter_pos
)
471 iter_current_key_modified
= true;
474 * When a new key is added, and the node iterator now points to that
475 * key, the iterator might have skipped past deleted keys that should
476 * come after the key the iterator now points to. We have to rewind to
477 * before those deleted keys - otherwise
478 * bch2_btree_node_iter_prev_all() breaks:
480 if (!bch2_btree_node_iter_end(node_iter
) &&
481 iter_current_key_modified
&&
483 struct bkey_packed
*k
, *k2
, *p
;
485 k
= bch2_btree_node_iter_peek_all(node_iter
, b
);
487 for_each_bset(b
, t
) {
488 bool set_pos
= false;
490 if (node_iter
->data
[0].end
== t
->end_offset
)
493 k2
= bch2_btree_node_iter_bset_pos(node_iter
, b
, t
);
495 while ((p
= bch2_bkey_prev_all(b
, t
, k2
)) &&
496 bkey_iter_cmp(b
, k
, p
) < 0) {
502 btree_node_iter_set_set_pos(node_iter
,
508 void bch2_btree_node_iter_fix(struct btree_trans
*trans
,
509 struct btree_path
*path
,
511 struct btree_node_iter
*node_iter
,
512 struct bkey_packed
*where
,
513 unsigned clobber_u64s
,
516 struct bset_tree
*t
= bch2_bkey_to_bset_inlined(b
, where
);
517 struct btree_path
*linked
;
520 if (node_iter
!= &path
->l
[b
->c
.level
].iter
) {
521 __bch2_btree_node_iter_fix(path
, b
, node_iter
, t
,
522 where
, clobber_u64s
, new_u64s
);
524 if (bch2_debug_check_iterators
)
525 bch2_btree_node_iter_verify(node_iter
, b
);
528 trans_for_each_path_with_node(trans
, b
, linked
, i
) {
529 __bch2_btree_node_iter_fix(linked
, b
,
530 &linked
->l
[b
->c
.level
].iter
, t
,
531 where
, clobber_u64s
, new_u64s
);
532 bch2_btree_path_verify_level(trans
, linked
, b
->c
.level
);
536 /* Btree path level: pointer to a particular btree node and node iter */
538 static inline struct bkey_s_c
__btree_iter_unpack(struct bch_fs
*c
,
539 struct btree_path_level
*l
,
541 struct bkey_packed
*k
)
545 * signal to bch2_btree_iter_peek_slot() that we're currently at
548 u
->type
= KEY_TYPE_deleted
;
549 return bkey_s_c_null
;
552 return bkey_disassemble(l
->b
, k
, u
);
555 static inline struct bkey_s_c
btree_path_level_peek_all(struct bch_fs
*c
,
556 struct btree_path_level
*l
,
559 return __btree_iter_unpack(c
, l
, u
,
560 bch2_btree_node_iter_peek_all(&l
->iter
, l
->b
));
563 static inline struct bkey_s_c
btree_path_level_peek(struct btree_trans
*trans
,
564 struct btree_path
*path
,
565 struct btree_path_level
*l
,
568 struct bkey_s_c k
= __btree_iter_unpack(trans
->c
, l
, u
,
569 bch2_btree_node_iter_peek(&l
->iter
, l
->b
));
571 path
->pos
= k
.k
? k
.k
->p
: l
->b
->key
.k
.p
;
572 trans
->paths_sorted
= false;
573 bch2_btree_path_verify_level(trans
, path
, l
- path
->l
);
577 static inline struct bkey_s_c
btree_path_level_prev(struct btree_trans
*trans
,
578 struct btree_path
*path
,
579 struct btree_path_level
*l
,
582 struct bkey_s_c k
= __btree_iter_unpack(trans
->c
, l
, u
,
583 bch2_btree_node_iter_prev(&l
->iter
, l
->b
));
585 path
->pos
= k
.k
? k
.k
->p
: l
->b
->data
->min_key
;
586 trans
->paths_sorted
= false;
587 bch2_btree_path_verify_level(trans
, path
, l
- path
->l
);
591 static inline bool btree_path_advance_to_pos(struct btree_path
*path
,
592 struct btree_path_level
*l
,
595 struct bkey_packed
*k
;
598 while ((k
= bch2_btree_node_iter_peek_all(&l
->iter
, l
->b
)) &&
599 bkey_iter_pos_cmp(l
->b
, k
, &path
->pos
) < 0) {
600 if (max_advance
> 0 && nr_advanced
>= max_advance
)
603 bch2_btree_node_iter_advance(&l
->iter
, l
->b
);
610 static inline void __btree_path_level_init(struct btree_path
*path
,
613 struct btree_path_level
*l
= &path
->l
[level
];
615 bch2_btree_node_iter_init(&l
->iter
, l
->b
, &path
->pos
);
618 * Iterators to interior nodes should always be pointed at the first non
622 bch2_btree_node_iter_peek(&l
->iter
, l
->b
);
625 void bch2_btree_path_level_init(struct btree_trans
*trans
,
626 struct btree_path
*path
,
629 BUG_ON(path
->cached
);
631 EBUG_ON(!btree_path_pos_in_node(path
, b
));
633 path
->l
[b
->c
.level
].lock_seq
= six_lock_seq(&b
->c
.lock
);
634 path
->l
[b
->c
.level
].b
= b
;
635 __btree_path_level_init(path
, b
->c
.level
);
638 /* Btree path: fixups after btree node updates: */
640 static void bch2_trans_revalidate_updates_in_node(struct btree_trans
*trans
, struct btree
*b
)
642 struct bch_fs
*c
= trans
->c
;
644 trans_for_each_update(trans
, i
)
646 i
->level
== b
->c
.level
&&
647 i
->btree_id
== b
->c
.btree_id
&&
648 bpos_cmp(i
->k
->k
.p
, b
->data
->min_key
) >= 0 &&
649 bpos_cmp(i
->k
->k
.p
, b
->data
->max_key
) <= 0) {
650 i
->old_v
= bch2_btree_path_peek_slot(trans
->paths
+ i
->path
, &i
->old_k
).v
;
652 if (unlikely(trans
->journal_replay_not_finished
)) {
654 bch2_journal_keys_peek_slot(c
, i
->btree_id
, i
->level
,
666 * A btree node is being replaced - update the iterator to point to the new
669 void bch2_trans_node_add(struct btree_trans
*trans
,
670 struct btree_path
*path
,
673 struct btree_path
*prev
;
675 BUG_ON(!btree_path_pos_in_node(path
, b
));
677 while ((prev
= prev_btree_path(trans
, path
)) &&
678 btree_path_pos_in_node(prev
, b
))
682 path
&& btree_path_pos_in_node(path
, b
);
683 path
= next_btree_path(trans
, path
))
684 if (path
->uptodate
== BTREE_ITER_UPTODATE
&& !path
->cached
) {
685 enum btree_node_locked_type t
=
686 btree_lock_want(path
, b
->c
.level
);
688 if (t
!= BTREE_NODE_UNLOCKED
) {
689 btree_node_unlock(trans
, path
, b
->c
.level
);
690 six_lock_increment(&b
->c
.lock
, (enum six_lock_type
) t
);
691 mark_btree_node_locked(trans
, path
, b
->c
.level
, t
);
694 bch2_btree_path_level_init(trans
, path
, b
);
697 bch2_trans_revalidate_updates_in_node(trans
, b
);
701 * A btree node has been modified in such a way as to invalidate iterators - fix
704 void bch2_trans_node_reinit_iter(struct btree_trans
*trans
, struct btree
*b
)
706 struct btree_path
*path
;
709 trans_for_each_path_with_node(trans
, b
, path
, i
)
710 __btree_path_level_init(path
, b
->c
.level
);
712 bch2_trans_revalidate_updates_in_node(trans
, b
);
715 /* Btree path: traverse, set_pos: */
717 static inline int btree_path_lock_root(struct btree_trans
*trans
,
718 struct btree_path
*path
,
720 unsigned long trace_ip
)
722 struct bch_fs
*c
= trans
->c
;
723 struct btree
*b
, **rootp
= &bch2_btree_id_root(c
, path
->btree_id
)->b
;
724 enum six_lock_type lock_type
;
728 EBUG_ON(path
->nodes_locked
);
731 b
= READ_ONCE(*rootp
);
732 path
->level
= READ_ONCE(b
->c
.level
);
734 if (unlikely(path
->level
< depth_want
)) {
736 * the root is at a lower depth than the depth we want:
737 * got to the end of the btree, or we're walking nodes
738 * greater than some depth and there are no nodes >=
741 path
->level
= depth_want
;
742 for (i
= path
->level
; i
< BTREE_MAX_DEPTH
; i
++)
747 lock_type
= __btree_lock_want(path
, path
->level
);
748 ret
= btree_node_lock(trans
, path
, &b
->c
,
749 path
->level
, lock_type
, trace_ip
);
751 if (bch2_err_matches(ret
, BCH_ERR_lock_fail_root_changed
))
753 if (bch2_err_matches(ret
, BCH_ERR_transaction_restart
))
758 if (likely(b
== READ_ONCE(*rootp
) &&
759 b
->c
.level
== path
->level
&&
761 for (i
= 0; i
< path
->level
; i
++)
762 path
->l
[i
].b
= ERR_PTR(-BCH_ERR_no_btree_node_lock_root
);
763 path
->l
[path
->level
].b
= b
;
764 for (i
= path
->level
+ 1; i
< BTREE_MAX_DEPTH
; i
++)
767 mark_btree_node_locked(trans
, path
, path
->level
,
768 (enum btree_node_locked_type
) lock_type
);
769 bch2_btree_path_level_init(trans
, path
, b
);
773 six_unlock_type(&b
->c
.lock
, lock_type
);
778 static int btree_path_prefetch(struct btree_trans
*trans
, struct btree_path
*path
)
780 struct bch_fs
*c
= trans
->c
;
781 struct btree_path_level
*l
= path_l(path
);
782 struct btree_node_iter node_iter
= l
->iter
;
783 struct bkey_packed
*k
;
785 unsigned nr
= test_bit(BCH_FS_started
, &c
->flags
)
786 ? (path
->level
> 1 ? 0 : 2)
787 : (path
->level
> 1 ? 1 : 16);
788 bool was_locked
= btree_node_locked(path
, path
->level
);
791 bch2_bkey_buf_init(&tmp
);
793 while (nr
-- && !ret
) {
794 if (!bch2_btree_node_relock(trans
, path
, path
->level
))
797 bch2_btree_node_iter_advance(&node_iter
, l
->b
);
798 k
= bch2_btree_node_iter_peek(&node_iter
, l
->b
);
802 bch2_bkey_buf_unpack(&tmp
, c
, l
->b
, k
);
803 ret
= bch2_btree_node_prefetch(trans
, path
, tmp
.k
, path
->btree_id
,
808 btree_node_unlock(trans
, path
, path
->level
);
810 bch2_bkey_buf_exit(&tmp
, c
);
814 static int btree_path_prefetch_j(struct btree_trans
*trans
, struct btree_path
*path
,
815 struct btree_and_journal_iter
*jiter
)
817 struct bch_fs
*c
= trans
->c
;
820 unsigned nr
= test_bit(BCH_FS_started
, &c
->flags
)
821 ? (path
->level
> 1 ? 0 : 2)
822 : (path
->level
> 1 ? 1 : 16);
823 bool was_locked
= btree_node_locked(path
, path
->level
);
826 bch2_bkey_buf_init(&tmp
);
828 while (nr
-- && !ret
) {
829 if (!bch2_btree_node_relock(trans
, path
, path
->level
))
832 bch2_btree_and_journal_iter_advance(jiter
);
833 k
= bch2_btree_and_journal_iter_peek(jiter
);
837 bch2_bkey_buf_reassemble(&tmp
, c
, k
);
838 ret
= bch2_btree_node_prefetch(trans
, path
, tmp
.k
, path
->btree_id
,
843 btree_node_unlock(trans
, path
, path
->level
);
845 bch2_bkey_buf_exit(&tmp
, c
);
849 static noinline
void btree_node_mem_ptr_set(struct btree_trans
*trans
,
850 struct btree_path
*path
,
851 unsigned plevel
, struct btree
*b
)
853 struct btree_path_level
*l
= &path
->l
[plevel
];
854 bool locked
= btree_node_locked(path
, plevel
);
855 struct bkey_packed
*k
;
856 struct bch_btree_ptr_v2
*bp
;
858 if (!bch2_btree_node_relock(trans
, path
, plevel
))
861 k
= bch2_btree_node_iter_peek_all(&l
->iter
, l
->b
);
862 BUG_ON(k
->type
!= KEY_TYPE_btree_ptr_v2
);
864 bp
= (void *) bkeyp_val(&l
->b
->format
, k
);
865 bp
->mem_ptr
= (unsigned long)b
;
868 btree_node_unlock(trans
, path
, plevel
);
871 static noinline
int btree_node_iter_and_journal_peek(struct btree_trans
*trans
,
872 struct btree_path
*path
,
874 struct bkey_buf
*out
)
876 struct bch_fs
*c
= trans
->c
;
877 struct btree_path_level
*l
= path_l(path
);
878 struct btree_and_journal_iter jiter
;
882 __bch2_btree_and_journal_iter_init_node_iter(trans
, &jiter
, l
->b
, l
->iter
, path
->pos
);
884 k
= bch2_btree_and_journal_iter_peek(&jiter
);
886 struct printbuf buf
= PRINTBUF
;
888 prt_str(&buf
, "node not found at pos ");
889 bch2_bpos_to_text(&buf
, path
->pos
);
890 prt_str(&buf
, " at btree ");
891 bch2_btree_pos_to_text(&buf
, c
, l
->b
);
893 ret
= bch2_fs_topology_error(c
, "%s", buf
.buf
);
898 bch2_bkey_buf_reassemble(out
, c
, k
);
900 if ((flags
& BTREE_ITER_prefetch
) &&
901 c
->opts
.btree_node_prefetch
)
902 ret
= btree_path_prefetch_j(trans
, path
, &jiter
);
905 bch2_btree_and_journal_iter_exit(&jiter
);
909 static __always_inline
int btree_path_down(struct btree_trans
*trans
,
910 struct btree_path
*path
,
912 unsigned long trace_ip
)
914 struct bch_fs
*c
= trans
->c
;
915 struct btree_path_level
*l
= path_l(path
);
917 unsigned level
= path
->level
- 1;
918 enum six_lock_type lock_type
= __btree_lock_want(path
, level
);
922 EBUG_ON(!btree_node_locked(path
, path
->level
));
924 bch2_bkey_buf_init(&tmp
);
926 if (unlikely(trans
->journal_replay_not_finished
)) {
927 ret
= btree_node_iter_and_journal_peek(trans
, path
, flags
, &tmp
);
931 struct bkey_packed
*k
= bch2_btree_node_iter_peek(&l
->iter
, l
->b
);
933 struct printbuf buf
= PRINTBUF
;
935 prt_str(&buf
, "node not found at pos ");
936 bch2_bpos_to_text(&buf
, path
->pos
);
937 prt_str(&buf
, " within parent node ");
938 bch2_bkey_val_to_text(&buf
, c
, bkey_i_to_s_c(&l
->b
->key
));
940 bch2_fs_fatal_error(c
, "%s", buf
.buf
);
942 ret
= -BCH_ERR_btree_need_topology_repair
;
946 bch2_bkey_buf_unpack(&tmp
, c
, l
->b
, k
);
948 if ((flags
& BTREE_ITER_prefetch
) &&
949 c
->opts
.btree_node_prefetch
) {
950 ret
= btree_path_prefetch(trans
, path
);
956 b
= bch2_btree_node_get(trans
, path
, tmp
.k
, level
, lock_type
, trace_ip
);
957 ret
= PTR_ERR_OR_ZERO(b
);
961 if (likely(!trans
->journal_replay_not_finished
&&
962 tmp
.k
->k
.type
== KEY_TYPE_btree_ptr_v2
) &&
963 unlikely(b
!= btree_node_mem_ptr(tmp
.k
)))
964 btree_node_mem_ptr_set(trans
, path
, level
+ 1, b
);
966 if (btree_node_read_locked(path
, level
+ 1))
967 btree_node_unlock(trans
, path
, level
+ 1);
969 mark_btree_node_locked(trans
, path
, level
,
970 (enum btree_node_locked_type
) lock_type
);
972 bch2_btree_path_level_init(trans
, path
, b
);
974 bch2_btree_path_verify_locks(path
);
976 bch2_bkey_buf_exit(&tmp
, c
);
980 static int bch2_btree_path_traverse_all(struct btree_trans
*trans
)
982 struct bch_fs
*c
= trans
->c
;
983 struct btree_path
*path
;
984 unsigned long trace_ip
= _RET_IP_
;
988 if (trans
->in_traverse_all
)
989 return -BCH_ERR_transaction_restart_in_traverse_all
;
991 trans
->in_traverse_all
= true;
993 trans
->restarted
= 0;
994 trans
->last_restarted_ip
= 0;
996 trans_for_each_path(trans
, path
, i
)
997 path
->should_be_locked
= false;
999 btree_trans_sort_paths(trans
);
1001 bch2_trans_unlock(trans
);
1003 trans_set_locked(trans
);
1005 if (unlikely(trans
->memory_allocation_failure
)) {
1008 closure_init_stack(&cl
);
1011 ret
= bch2_btree_cache_cannibalize_lock(trans
, &cl
);
1016 /* Now, redo traversals in correct order: */
1018 while (i
< trans
->nr_sorted
) {
1019 btree_path_idx_t idx
= trans
->sorted
[i
];
1022 * Traversing a path can cause another path to be added at about
1023 * the same position:
1025 if (trans
->paths
[idx
].uptodate
) {
1026 __btree_path_get(trans
, &trans
->paths
[idx
], false);
1027 ret
= bch2_btree_path_traverse_one(trans
, idx
, 0, _THIS_IP_
);
1028 __btree_path_put(trans
, &trans
->paths
[idx
], false);
1030 if (bch2_err_matches(ret
, BCH_ERR_transaction_restart
) ||
1031 bch2_err_matches(ret
, ENOMEM
))
1041 * We used to assert that all paths had been traversed here
1042 * (path->uptodate < BTREE_ITER_NEED_TRAVERSE); however, since
1043 * path->should_be_locked is not set yet, we might have unlocked and
1044 * then failed to relock a path - that's fine.
1047 bch2_btree_cache_cannibalize_unlock(trans
);
1049 trans
->in_traverse_all
= false;
1051 trace_and_count(c
, trans_traverse_all
, trans
, trace_ip
);
1055 static inline bool btree_path_check_pos_in_node(struct btree_path
*path
,
1056 unsigned l
, int check_pos
)
1058 if (check_pos
< 0 && btree_path_pos_before_node(path
, path
->l
[l
].b
))
1060 if (check_pos
> 0 && btree_path_pos_after_node(path
, path
->l
[l
].b
))
1065 static inline bool btree_path_good_node(struct btree_trans
*trans
,
1066 struct btree_path
*path
,
1067 unsigned l
, int check_pos
)
1069 return is_btree_node(path
, l
) &&
1070 bch2_btree_node_relock(trans
, path
, l
) &&
1071 btree_path_check_pos_in_node(path
, l
, check_pos
);
1074 static void btree_path_set_level_down(struct btree_trans
*trans
,
1075 struct btree_path
*path
,
1080 path
->level
= new_level
;
1082 for (l
= path
->level
+ 1; l
< BTREE_MAX_DEPTH
; l
++)
1083 if (btree_lock_want(path
, l
) == BTREE_NODE_UNLOCKED
)
1084 btree_node_unlock(trans
, path
, l
);
1086 btree_path_set_dirty(path
, BTREE_ITER_NEED_TRAVERSE
);
1087 bch2_btree_path_verify(trans
, path
);
1090 static noinline
unsigned __btree_path_up_until_good_node(struct btree_trans
*trans
,
1091 struct btree_path
*path
,
1094 unsigned i
, l
= path
->level
;
1096 while (btree_path_node(path
, l
) &&
1097 !btree_path_good_node(trans
, path
, l
, check_pos
))
1098 __btree_path_set_level_up(trans
, path
, l
++);
1100 /* If we need intent locks, take them too: */
1102 i
< path
->locks_want
&& btree_path_node(path
, i
);
1104 if (!bch2_btree_node_relock(trans
, path
, i
)) {
1106 __btree_path_set_level_up(trans
, path
, l
++);
1113 static inline unsigned btree_path_up_until_good_node(struct btree_trans
*trans
,
1114 struct btree_path
*path
,
1117 return likely(btree_node_locked(path
, path
->level
) &&
1118 btree_path_check_pos_in_node(path
, path
->level
, check_pos
))
1120 : __btree_path_up_until_good_node(trans
, path
, check_pos
);
1124 * This is the main state machine for walking down the btree - walks down to a
1127 * Returns 0 on success, -EIO on error (error reading in a btree node).
1129 * On error, caller (peek_node()/peek_key()) must return NULL; the error is
1130 * stashed in the iterator and returned from bch2_trans_exit().
1132 int bch2_btree_path_traverse_one(struct btree_trans
*trans
,
1133 btree_path_idx_t path_idx
,
1135 unsigned long trace_ip
)
1137 struct btree_path
*path
= &trans
->paths
[path_idx
];
1138 unsigned depth_want
= path
->level
;
1139 int ret
= -((int) trans
->restarted
);
1144 if (unlikely(!trans
->srcu_held
))
1145 bch2_trans_srcu_lock(trans
);
1147 trace_btree_path_traverse_start(trans
, path
);
1150 * Ensure we obey path->should_be_locked: if it's set, we can't unlock
1151 * and re-traverse the path without a transaction restart:
1153 if (path
->should_be_locked
) {
1154 ret
= bch2_btree_path_relock(trans
, path
, trace_ip
);
1159 ret
= bch2_btree_path_traverse_cached(trans
, path
, flags
);
1163 path
= &trans
->paths
[path_idx
];
1165 if (unlikely(path
->level
>= BTREE_MAX_DEPTH
))
1168 path
->level
= btree_path_up_until_good_node(trans
, path
, 0);
1169 unsigned max_level
= path
->level
;
1171 EBUG_ON(btree_path_node(path
, path
->level
) &&
1172 !btree_node_locked(path
, path
->level
));
1175 * Note: path->nodes[path->level] may be temporarily NULL here - that
1176 * would indicate to other code that we got to the end of the btree,
1177 * here it indicates that relocking the root failed - it's critical that
1178 * btree_path_lock_root() comes next and that it can't fail
1180 while (path
->level
> depth_want
) {
1181 ret
= btree_path_node(path
, path
->level
)
1182 ? btree_path_down(trans
, path
, flags
, trace_ip
)
1183 : btree_path_lock_root(trans
, path
, depth_want
, trace_ip
);
1184 if (unlikely(ret
)) {
1187 * No nodes at this level - got to the end of
1194 __bch2_btree_path_unlock(trans
, path
);
1195 path
->level
= depth_want
;
1196 path
->l
[path
->level
].b
= ERR_PTR(ret
);
1201 if (unlikely(max_level
> path
->level
)) {
1202 struct btree_path
*linked
;
1205 trans_for_each_path_with_node(trans
, path_l(path
)->b
, linked
, iter
)
1206 for (unsigned j
= path
->level
+ 1; j
< max_level
; j
++)
1207 linked
->l
[j
] = path
->l
[j
];
1211 path
->uptodate
= BTREE_ITER_UPTODATE
;
1212 trace_btree_path_traverse_end(trans
, path
);
1214 if (bch2_err_matches(ret
, BCH_ERR_transaction_restart
) != !!trans
->restarted
)
1215 panic("ret %s (%i) trans->restarted %s (%i)\n",
1216 bch2_err_str(ret
), ret
,
1217 bch2_err_str(trans
->restarted
), trans
->restarted
);
1218 bch2_btree_path_verify(trans
, path
);
1222 static inline void btree_path_copy(struct btree_trans
*trans
, struct btree_path
*dst
,
1223 struct btree_path
*src
)
1225 unsigned i
, offset
= offsetof(struct btree_path
, pos
);
1227 memcpy((void *) dst
+ offset
,
1228 (void *) src
+ offset
,
1229 sizeof(struct btree_path
) - offset
);
1231 for (i
= 0; i
< BTREE_MAX_DEPTH
; i
++) {
1232 unsigned t
= btree_node_locked_type(dst
, i
);
1234 if (t
!= BTREE_NODE_UNLOCKED
)
1235 six_lock_increment(&dst
->l
[i
].b
->c
.lock
, t
);
1239 static btree_path_idx_t
btree_path_clone(struct btree_trans
*trans
, btree_path_idx_t src
,
1240 bool intent
, unsigned long ip
)
1242 btree_path_idx_t
new = btree_path_alloc(trans
, src
);
1243 btree_path_copy(trans
, trans
->paths
+ new, trans
->paths
+ src
);
1244 __btree_path_get(trans
, trans
->paths
+ new, intent
);
1245 #ifdef TRACK_PATH_ALLOCATED
1246 trans
->paths
[new].ip_allocated
= ip
;
1252 btree_path_idx_t
__bch2_btree_path_make_mut(struct btree_trans
*trans
,
1253 btree_path_idx_t path
, bool intent
, unsigned long ip
)
1255 struct btree_path
*old
= trans
->paths
+ path
;
1256 __btree_path_put(trans
, trans
->paths
+ path
, intent
);
1257 path
= btree_path_clone(trans
, path
, intent
, ip
);
1258 trace_btree_path_clone(trans
, old
, trans
->paths
+ path
);
1259 trans
->paths
[path
].preserve
= false;
1263 btree_path_idx_t __must_check
1264 __bch2_btree_path_set_pos(struct btree_trans
*trans
,
1265 btree_path_idx_t path_idx
, struct bpos new_pos
,
1266 bool intent
, unsigned long ip
)
1268 int cmp
= bpos_cmp(new_pos
, trans
->paths
[path_idx
].pos
);
1270 bch2_trans_verify_not_in_restart(trans
);
1271 EBUG_ON(!trans
->paths
[path_idx
].ref
);
1273 trace_btree_path_set_pos(trans
, trans
->paths
+ path_idx
, &new_pos
);
1275 path_idx
= bch2_btree_path_make_mut(trans
, path_idx
, intent
, ip
);
1277 struct btree_path
*path
= trans
->paths
+ path_idx
;
1278 path
->pos
= new_pos
;
1279 trans
->paths_sorted
= false;
1281 if (unlikely(path
->cached
)) {
1282 btree_node_unlock(trans
, path
, 0);
1283 path
->l
[0].b
= ERR_PTR(-BCH_ERR_no_btree_node_up
);
1284 btree_path_set_dirty(path
, BTREE_ITER_NEED_TRAVERSE
);
1288 unsigned level
= btree_path_up_until_good_node(trans
, path
, cmp
);
1290 if (btree_path_node(path
, level
)) {
1291 struct btree_path_level
*l
= &path
->l
[level
];
1293 BUG_ON(!btree_node_locked(path
, level
));
1295 * We might have to skip over many keys, or just a few: try
1296 * advancing the node iterator, and if we have to skip over too
1297 * many keys just reinit it (or if we're rewinding, since that
1301 !btree_path_advance_to_pos(path
, l
, 8))
1302 bch2_btree_node_iter_init(&l
->iter
, l
->b
, &path
->pos
);
1305 * Iterators to interior nodes should always be pointed at the first non
1308 if (unlikely(level
))
1309 bch2_btree_node_iter_peek(&l
->iter
, l
->b
);
1312 if (unlikely(level
!= path
->level
)) {
1313 btree_path_set_dirty(path
, BTREE_ITER_NEED_TRAVERSE
);
1314 __bch2_btree_path_unlock(trans
, path
);
1317 bch2_btree_path_verify(trans
, path
);
1321 /* Btree path: main interface: */
1323 static struct btree_path
*have_path_at_pos(struct btree_trans
*trans
, struct btree_path
*path
)
1325 struct btree_path
*sib
;
1327 sib
= prev_btree_path(trans
, path
);
1328 if (sib
&& !btree_path_cmp(sib
, path
))
1331 sib
= next_btree_path(trans
, path
);
1332 if (sib
&& !btree_path_cmp(sib
, path
))
1338 static struct btree_path
*have_node_at_pos(struct btree_trans
*trans
, struct btree_path
*path
)
1340 struct btree_path
*sib
;
1342 sib
= prev_btree_path(trans
, path
);
1343 if (sib
&& sib
->level
== path
->level
&& path_l(sib
)->b
== path_l(path
)->b
)
1346 sib
= next_btree_path(trans
, path
);
1347 if (sib
&& sib
->level
== path
->level
&& path_l(sib
)->b
== path_l(path
)->b
)
1353 static inline void __bch2_path_free(struct btree_trans
*trans
, btree_path_idx_t path
)
1355 __bch2_btree_path_unlock(trans
, trans
->paths
+ path
);
1356 btree_path_list_remove(trans
, trans
->paths
+ path
);
1357 __clear_bit(path
, trans
->paths_allocated
);
1360 static bool bch2_btree_path_can_relock(struct btree_trans
*trans
, struct btree_path
*path
)
1362 unsigned l
= path
->level
;
1365 if (!btree_path_node(path
, l
))
1368 if (!is_btree_node(path
, l
))
1371 if (path
->l
[l
].lock_seq
!= path
->l
[l
].b
->c
.lock
.seq
)
1375 } while (l
< path
->locks_want
);
1380 void bch2_path_put(struct btree_trans
*trans
, btree_path_idx_t path_idx
, bool intent
)
1382 struct btree_path
*path
= trans
->paths
+ path_idx
, *dup
;
1384 if (!__btree_path_put(trans
, path
, intent
))
1387 dup
= path
->preserve
1388 ? have_path_at_pos(trans
, path
)
1389 : have_node_at_pos(trans
, path
);
1391 trace_btree_path_free(trans
, path_idx
, dup
);
1393 if (!dup
&& !(!path
->preserve
&& !is_btree_node(path
, path
->level
)))
1396 if (path
->should_be_locked
&& !trans
->restarted
) {
1401 ? bch2_btree_path_relock_norestart(trans
, dup
)
1402 : bch2_btree_path_can_relock(trans
, dup
)))
1407 dup
->preserve
|= path
->preserve
;
1408 dup
->should_be_locked
|= path
->should_be_locked
;
1411 __bch2_path_free(trans
, path_idx
);
1414 static void bch2_path_put_nokeep(struct btree_trans
*trans
, btree_path_idx_t path
,
1417 if (!__btree_path_put(trans
, trans
->paths
+ path
, intent
))
1420 __bch2_path_free(trans
, path
);
1423 void __noreturn
bch2_trans_restart_error(struct btree_trans
*trans
, u32 restart_count
)
1425 panic("trans->restart_count %u, should be %u, last restarted by %pS\n",
1426 trans
->restart_count
, restart_count
,
1427 (void *) trans
->last_begin_ip
);
1430 void __noreturn
bch2_trans_in_restart_error(struct btree_trans
*trans
)
1432 panic("in transaction restart: %s, last restarted by %pS\n",
1433 bch2_err_str(trans
->restarted
),
1434 (void *) trans
->last_restarted_ip
);
1437 void __noreturn
bch2_trans_unlocked_error(struct btree_trans
*trans
)
1439 panic("trans should be locked, unlocked by %pS\n",
1440 (void *) trans
->last_unlock_ip
);
1444 void bch2_trans_updates_to_text(struct printbuf
*buf
, struct btree_trans
*trans
)
1446 prt_printf(buf
, "%u transaction updates for %s journal seq %llu\n",
1447 trans
->nr_updates
, trans
->fn
, trans
->journal_res
.seq
);
1448 printbuf_indent_add(buf
, 2);
1450 trans_for_each_update(trans
, i
) {
1451 struct bkey_s_c old
= { &i
->old_k
, i
->old_v
};
1453 prt_printf(buf
, "update: btree=%s cached=%u %pS\n",
1454 bch2_btree_id_str(i
->btree_id
),
1456 (void *) i
->ip_allocated
);
1458 prt_printf(buf
, " old ");
1459 bch2_bkey_val_to_text(buf
, trans
->c
, old
);
1462 prt_printf(buf
, " new ");
1463 bch2_bkey_val_to_text(buf
, trans
->c
, bkey_i_to_s_c(i
->k
));
1467 for (struct jset_entry
*e
= trans
->journal_entries
;
1468 e
!= btree_trans_journal_entries_top(trans
);
1469 e
= vstruct_next(e
))
1470 bch2_journal_entry_to_text(buf
, trans
->c
, e
);
1472 printbuf_indent_sub(buf
, 2);
1476 void bch2_dump_trans_updates(struct btree_trans
*trans
)
1478 struct printbuf buf
= PRINTBUF
;
1480 bch2_trans_updates_to_text(&buf
, trans
);
1481 bch2_print_str(trans
->c
, buf
.buf
);
1482 printbuf_exit(&buf
);
1485 static void bch2_btree_path_to_text_short(struct printbuf
*out
, struct btree_trans
*trans
, btree_path_idx_t path_idx
)
1487 struct btree_path
*path
= trans
->paths
+ path_idx
;
1489 prt_printf(out
, "path: idx %3u ref %u:%u %c %c %c btree=%s l=%u pos ",
1490 path_idx
, path
->ref
, path
->intent_ref
,
1491 path
->preserve
? 'P' : ' ',
1492 path
->should_be_locked
? 'S' : ' ',
1493 path
->cached
? 'C' : 'B',
1494 bch2_btree_id_str(path
->btree_id
),
1496 bch2_bpos_to_text(out
, path
->pos
);
1498 if (!path
->cached
&& btree_node_locked(path
, path
->level
)) {
1500 struct btree
*b
= path_l(path
)->b
;
1501 bch2_bpos_to_text(out
, b
->data
->min_key
);
1503 bch2_bpos_to_text(out
, b
->key
.k
.p
);
1506 #ifdef TRACK_PATH_ALLOCATED
1507 prt_printf(out
, " %pS", (void *) path
->ip_allocated
);
1511 static const char *btree_node_locked_str(enum btree_node_locked_type t
)
1514 case BTREE_NODE_UNLOCKED
:
1516 case BTREE_NODE_READ_LOCKED
:
1518 case BTREE_NODE_INTENT_LOCKED
:
1520 case BTREE_NODE_WRITE_LOCKED
:
1527 void bch2_btree_path_to_text(struct printbuf
*out
, struct btree_trans
*trans
, btree_path_idx_t path_idx
)
1529 bch2_btree_path_to_text_short(out
, trans
, path_idx
);
1531 struct btree_path
*path
= trans
->paths
+ path_idx
;
1533 prt_printf(out
, " uptodate %u locks_want %u", path
->uptodate
, path
->locks_want
);
1536 printbuf_indent_add(out
, 2);
1537 for (unsigned l
= 0; l
< BTREE_MAX_DEPTH
; l
++) {
1538 prt_printf(out
, "l=%u locks %s seq %u node ", l
,
1539 btree_node_locked_str(btree_node_locked_type(path
, l
)),
1540 path
->l
[l
].lock_seq
);
1542 int ret
= PTR_ERR_OR_ZERO(path
->l
[l
].b
);
1544 prt_str(out
, bch2_err_str(ret
));
1546 prt_printf(out
, "%px", path
->l
[l
].b
);
1549 printbuf_indent_sub(out
, 2);
1552 static noinline __cold
1553 void __bch2_trans_paths_to_text(struct printbuf
*out
, struct btree_trans
*trans
,
1556 struct trans_for_each_path_inorder_iter iter
;
1559 btree_trans_sort_paths(trans
);
1561 trans_for_each_path_idx_inorder(trans
, iter
) {
1562 bch2_btree_path_to_text_short(out
, trans
, iter
.path_idx
);
1568 void bch2_trans_paths_to_text(struct printbuf
*out
, struct btree_trans
*trans
)
1570 __bch2_trans_paths_to_text(out
, trans
, false);
1573 static noinline __cold
1574 void __bch2_dump_trans_paths_updates(struct btree_trans
*trans
, bool nosort
)
1576 struct printbuf buf
= PRINTBUF
;
1578 __bch2_trans_paths_to_text(&buf
, trans
, nosort
);
1579 bch2_trans_updates_to_text(&buf
, trans
);
1581 bch2_print_str(trans
->c
, buf
.buf
);
1582 printbuf_exit(&buf
);
1586 void bch2_dump_trans_paths_updates(struct btree_trans
*trans
)
1588 __bch2_dump_trans_paths_updates(trans
, false);
1592 static void bch2_trans_update_max_paths(struct btree_trans
*trans
)
1594 struct btree_transaction_stats
*s
= btree_trans_stats(trans
);
1595 struct printbuf buf
= PRINTBUF
;
1596 size_t nr
= bitmap_weight(trans
->paths_allocated
, trans
->nr_paths
);
1598 bch2_trans_paths_to_text(&buf
, trans
);
1600 if (!buf
.allocation_failure
) {
1601 mutex_lock(&s
->lock
);
1602 if (nr
> s
->nr_max_paths
) {
1603 s
->nr_max_paths
= nr
;
1604 swap(s
->max_paths_text
, buf
.buf
);
1606 mutex_unlock(&s
->lock
);
1609 printbuf_exit(&buf
);
1611 trans
->nr_paths_max
= nr
;
1615 int __bch2_btree_trans_too_many_iters(struct btree_trans
*trans
)
1617 if (trace_trans_restart_too_many_iters_enabled()) {
1618 struct printbuf buf
= PRINTBUF
;
1620 bch2_trans_paths_to_text(&buf
, trans
);
1621 trace_trans_restart_too_many_iters(trans
, _THIS_IP_
, buf
.buf
);
1622 printbuf_exit(&buf
);
1625 count_event(trans
->c
, trans_restart_too_many_iters
);
1627 return btree_trans_restart(trans
, BCH_ERR_transaction_restart_too_many_iters
);
1630 static noinline
void btree_path_overflow(struct btree_trans
*trans
)
1632 bch2_dump_trans_paths_updates(trans
);
1633 bch_err(trans
->c
, "trans path overflow");
1636 static noinline
void btree_paths_realloc(struct btree_trans
*trans
)
1638 unsigned nr
= trans
->nr_paths
* 2;
1640 void *p
= kvzalloc(BITS_TO_LONGS(nr
) * sizeof(unsigned long) +
1641 sizeof(struct btree_trans_paths
) +
1642 nr
* sizeof(struct btree_path
) +
1643 nr
* sizeof(btree_path_idx_t
) + 8 +
1644 nr
* sizeof(struct btree_insert_entry
), GFP_KERNEL
|__GFP_NOFAIL
);
1646 unsigned long *paths_allocated
= p
;
1647 memcpy(paths_allocated
, trans
->paths_allocated
, BITS_TO_LONGS(trans
->nr_paths
) * sizeof(unsigned long));
1648 p
+= BITS_TO_LONGS(nr
) * sizeof(unsigned long);
1650 p
+= sizeof(struct btree_trans_paths
);
1651 struct btree_path
*paths
= p
;
1652 *trans_paths_nr(paths
) = nr
;
1653 memcpy(paths
, trans
->paths
, trans
->nr_paths
* sizeof(struct btree_path
));
1654 p
+= nr
* sizeof(struct btree_path
);
1656 btree_path_idx_t
*sorted
= p
;
1657 memcpy(sorted
, trans
->sorted
, trans
->nr_sorted
* sizeof(btree_path_idx_t
));
1658 p
+= nr
* sizeof(btree_path_idx_t
) + 8;
1660 struct btree_insert_entry
*updates
= p
;
1661 memcpy(updates
, trans
->updates
, trans
->nr_paths
* sizeof(struct btree_insert_entry
));
1663 unsigned long *old
= trans
->paths_allocated
;
1665 rcu_assign_pointer(trans
->paths_allocated
, paths_allocated
);
1666 rcu_assign_pointer(trans
->paths
, paths
);
1667 rcu_assign_pointer(trans
->sorted
, sorted
);
1668 rcu_assign_pointer(trans
->updates
, updates
);
1670 trans
->nr_paths
= nr
;
1672 if (old
!= trans
->_paths_allocated
)
1673 kfree_rcu_mightsleep(old
);
1676 static inline btree_path_idx_t
btree_path_alloc(struct btree_trans
*trans
,
1677 btree_path_idx_t pos
)
1679 btree_path_idx_t idx
= find_first_zero_bit(trans
->paths_allocated
, trans
->nr_paths
);
1681 if (unlikely(idx
== trans
->nr_paths
)) {
1682 if (trans
->nr_paths
== BTREE_ITER_MAX
) {
1683 btree_path_overflow(trans
);
1687 btree_paths_realloc(trans
);
1691 * Do this before marking the new path as allocated, since it won't be
1694 if (unlikely(idx
> trans
->nr_paths_max
))
1695 bch2_trans_update_max_paths(trans
);
1697 __set_bit(idx
, trans
->paths_allocated
);
1699 struct btree_path
*path
= &trans
->paths
[idx
];
1701 path
->intent_ref
= 0;
1702 path
->nodes_locked
= 0;
1704 btree_path_list_add(trans
, pos
, idx
);
1705 trans
->paths_sorted
= false;
1709 btree_path_idx_t
bch2_path_get(struct btree_trans
*trans
,
1710 enum btree_id btree_id
, struct bpos pos
,
1711 unsigned locks_want
, unsigned level
,
1712 unsigned flags
, unsigned long ip
)
1714 struct btree_path
*path
;
1715 bool cached
= flags
& BTREE_ITER_cached
;
1716 bool intent
= flags
& BTREE_ITER_intent
;
1717 struct trans_for_each_path_inorder_iter iter
;
1718 btree_path_idx_t path_pos
= 0, path_idx
;
1720 bch2_trans_verify_not_unlocked(trans
);
1721 bch2_trans_verify_not_in_restart(trans
);
1722 bch2_trans_verify_locks(trans
);
1724 btree_trans_sort_paths(trans
);
1726 trans_for_each_path_inorder(trans
, path
, iter
) {
1727 if (__btree_path_cmp(path
,
1734 path_pos
= iter
.path_idx
;
1738 trans
->paths
[path_pos
].cached
== cached
&&
1739 trans
->paths
[path_pos
].btree_id
== btree_id
&&
1740 trans
->paths
[path_pos
].level
== level
) {
1741 trace_btree_path_get(trans
, trans
->paths
+ path_pos
, &pos
);
1743 __btree_path_get(trans
, trans
->paths
+ path_pos
, intent
);
1744 path_idx
= bch2_btree_path_set_pos(trans
, path_pos
, pos
, intent
, ip
);
1745 path
= trans
->paths
+ path_idx
;
1747 path_idx
= btree_path_alloc(trans
, path_pos
);
1748 path
= trans
->paths
+ path_idx
;
1750 __btree_path_get(trans
, path
, intent
);
1752 path
->btree_id
= btree_id
;
1753 path
->cached
= cached
;
1754 path
->uptodate
= BTREE_ITER_NEED_TRAVERSE
;
1755 path
->should_be_locked
= false;
1756 path
->level
= level
;
1757 path
->locks_want
= locks_want
;
1758 path
->nodes_locked
= 0;
1759 for (unsigned i
= 0; i
< ARRAY_SIZE(path
->l
); i
++)
1760 path
->l
[i
].b
= ERR_PTR(-BCH_ERR_no_btree_node_init
);
1761 #ifdef TRACK_PATH_ALLOCATED
1762 path
->ip_allocated
= ip
;
1764 trans
->paths_sorted
= false;
1766 trace_btree_path_alloc(trans
, path
);
1769 if (!(flags
& BTREE_ITER_nopreserve
))
1770 path
->preserve
= true;
1772 if (path
->intent_ref
)
1773 locks_want
= max(locks_want
, level
+ 1);
1776 * If the path has locks_want greater than requested, we don't downgrade
1777 * it here - on transaction restart because btree node split needs to
1778 * upgrade locks, we might be putting/getting the iterator again.
1779 * Downgrading iterators only happens via bch2_trans_downgrade(), after
1780 * a successful transaction commit.
1783 locks_want
= min(locks_want
, BTREE_MAX_DEPTH
);
1784 if (locks_want
> path
->locks_want
)
1785 bch2_btree_path_upgrade_noupgrade_sibs(trans
, path
, locks_want
, NULL
);
1790 btree_path_idx_t
bch2_path_get_unlocked_mut(struct btree_trans
*trans
,
1791 enum btree_id btree_id
,
1795 btree_path_idx_t path_idx
= bch2_path_get(trans
, btree_id
, pos
, level
+ 1, level
,
1796 BTREE_ITER_nopreserve
|
1797 BTREE_ITER_intent
, _RET_IP_
);
1798 path_idx
= bch2_btree_path_make_mut(trans
, path_idx
, true, _RET_IP_
);
1800 struct btree_path
*path
= trans
->paths
+ path_idx
;
1801 bch2_btree_path_downgrade(trans
, path
);
1802 __bch2_btree_path_unlock(trans
, path
);
1806 struct bkey_s_c
bch2_btree_path_peek_slot(struct btree_path
*path
, struct bkey
*u
)
1809 struct btree_path_level
*l
= path_l(path
);
1810 struct bkey_packed
*_k
;
1813 if (unlikely(!l
->b
))
1814 return bkey_s_c_null
;
1816 EBUG_ON(path
->uptodate
!= BTREE_ITER_UPTODATE
);
1817 EBUG_ON(!btree_node_locked(path
, path
->level
));
1819 if (!path
->cached
) {
1820 _k
= bch2_btree_node_iter_peek_all(&l
->iter
, l
->b
);
1821 k
= _k
? bkey_disassemble(l
->b
, _k
, u
) : bkey_s_c_null
;
1823 EBUG_ON(k
.k
&& bkey_deleted(k
.k
) && bpos_eq(k
.k
->p
, path
->pos
));
1825 if (!k
.k
|| !bpos_eq(path
->pos
, k
.k
->p
))
1828 struct bkey_cached
*ck
= (void *) path
->l
[0].b
;
1830 return bkey_s_c_null
;
1832 EBUG_ON(path
->btree_id
!= ck
->key
.btree_id
||
1833 !bkey_eq(path
->pos
, ck
->key
.pos
));
1836 k
= bkey_i_to_s_c(ck
->k
);
1843 return (struct bkey_s_c
) { u
, NULL
};
1847 void bch2_set_btree_iter_dontneed(struct btree_iter
*iter
)
1849 struct btree_trans
*trans
= iter
->trans
;
1851 if (!iter
->path
|| trans
->restarted
)
1854 struct btree_path
*path
= btree_iter_path(trans
, iter
);
1855 path
->preserve
= false;
1857 path
->should_be_locked
= false;
1859 /* Btree iterators: */
1862 __bch2_btree_iter_traverse(struct btree_iter
*iter
)
1864 return bch2_btree_path_traverse(iter
->trans
, iter
->path
, iter
->flags
);
1868 bch2_btree_iter_traverse(struct btree_iter
*iter
)
1870 struct btree_trans
*trans
= iter
->trans
;
1873 bch2_trans_verify_not_unlocked(trans
);
1875 iter
->path
= bch2_btree_path_set_pos(trans
, iter
->path
,
1876 btree_iter_search_key(iter
),
1877 iter
->flags
& BTREE_ITER_intent
,
1878 btree_iter_ip_allocated(iter
));
1880 ret
= bch2_btree_path_traverse(iter
->trans
, iter
->path
, iter
->flags
);
1884 struct btree_path
*path
= btree_iter_path(trans
, iter
);
1885 if (btree_path_node(path
, path
->level
))
1886 btree_path_set_should_be_locked(trans
, path
);
1890 /* Iterate across nodes (leaf and interior nodes) */
1892 struct btree
*bch2_btree_iter_peek_node(struct btree_iter
*iter
)
1894 struct btree_trans
*trans
= iter
->trans
;
1895 struct btree
*b
= NULL
;
1898 EBUG_ON(trans
->paths
[iter
->path
].cached
);
1899 bch2_btree_iter_verify(iter
);
1901 ret
= bch2_btree_path_traverse(trans
, iter
->path
, iter
->flags
);
1905 struct btree_path
*path
= btree_iter_path(trans
, iter
);
1906 b
= btree_path_node(path
, path
->level
);
1910 BUG_ON(bpos_lt(b
->key
.k
.p
, iter
->pos
));
1912 bkey_init(&iter
->k
);
1913 iter
->k
.p
= iter
->pos
= b
->key
.k
.p
;
1915 iter
->path
= bch2_btree_path_set_pos(trans
, iter
->path
, b
->key
.k
.p
,
1916 iter
->flags
& BTREE_ITER_intent
,
1917 btree_iter_ip_allocated(iter
));
1918 btree_path_set_should_be_locked(trans
, btree_iter_path(trans
, iter
));
1920 bch2_btree_iter_verify_entry_exit(iter
);
1921 bch2_btree_iter_verify(iter
);
1929 /* Only kept for -tools */
1930 struct btree
*bch2_btree_iter_peek_node_and_restart(struct btree_iter
*iter
)
1934 while (b
= bch2_btree_iter_peek_node(iter
),
1935 bch2_err_matches(PTR_ERR_OR_ZERO(b
), BCH_ERR_transaction_restart
))
1936 bch2_trans_begin(iter
->trans
);
1941 struct btree
*bch2_btree_iter_next_node(struct btree_iter
*iter
)
1943 struct btree_trans
*trans
= iter
->trans
;
1944 struct btree
*b
= NULL
;
1947 EBUG_ON(trans
->paths
[iter
->path
].cached
);
1948 bch2_trans_verify_not_in_restart(trans
);
1949 bch2_btree_iter_verify(iter
);
1951 ret
= bch2_btree_path_traverse(trans
, iter
->path
, iter
->flags
);
1956 struct btree_path
*path
= btree_iter_path(trans
, iter
);
1958 /* already at end? */
1959 if (!btree_path_node(path
, path
->level
))
1963 if (!btree_path_node(path
, path
->level
+ 1)) {
1964 btree_path_set_level_up(trans
, path
);
1968 if (!bch2_btree_node_relock(trans
, path
, path
->level
+ 1)) {
1969 __bch2_btree_path_unlock(trans
, path
);
1970 path
->l
[path
->level
].b
= ERR_PTR(-BCH_ERR_no_btree_node_relock
);
1971 path
->l
[path
->level
+ 1].b
= ERR_PTR(-BCH_ERR_no_btree_node_relock
);
1972 btree_path_set_dirty(path
, BTREE_ITER_NEED_TRAVERSE
);
1973 trace_and_count(trans
->c
, trans_restart_relock_next_node
, trans
, _THIS_IP_
, path
);
1974 ret
= btree_trans_restart(trans
, BCH_ERR_transaction_restart_relock
);
1978 b
= btree_path_node(path
, path
->level
+ 1);
1980 if (bpos_eq(iter
->pos
, b
->key
.k
.p
)) {
1981 __btree_path_set_level_up(trans
, path
, path
->level
++);
1983 if (btree_lock_want(path
, path
->level
+ 1) == BTREE_NODE_UNLOCKED
)
1984 btree_node_unlock(trans
, path
, path
->level
+ 1);
1987 * Haven't gotten to the end of the parent node: go back down to
1988 * the next child node
1990 iter
->path
= bch2_btree_path_set_pos(trans
, iter
->path
,
1991 bpos_successor(iter
->pos
),
1992 iter
->flags
& BTREE_ITER_intent
,
1993 btree_iter_ip_allocated(iter
));
1995 path
= btree_iter_path(trans
, iter
);
1996 btree_path_set_level_down(trans
, path
, iter
->min_depth
);
1998 ret
= bch2_btree_path_traverse(trans
, iter
->path
, iter
->flags
);
2002 path
= btree_iter_path(trans
, iter
);
2003 b
= path
->l
[path
->level
].b
;
2006 bkey_init(&iter
->k
);
2007 iter
->k
.p
= iter
->pos
= b
->key
.k
.p
;
2009 iter
->path
= bch2_btree_path_set_pos(trans
, iter
->path
, b
->key
.k
.p
,
2010 iter
->flags
& BTREE_ITER_intent
,
2011 btree_iter_ip_allocated(iter
));
2012 btree_path_set_should_be_locked(trans
, btree_iter_path(trans
, iter
));
2013 EBUG_ON(btree_iter_path(trans
, iter
)->uptodate
);
2015 bch2_btree_iter_verify_entry_exit(iter
);
2016 bch2_btree_iter_verify(iter
);
2024 /* Iterate across keys (in leaf nodes only) */
2026 inline bool bch2_btree_iter_advance(struct btree_iter
*iter
)
2028 struct bpos pos
= iter
->k
.p
;
2029 bool ret
= !(iter
->flags
& BTREE_ITER_all_snapshots
2030 ? bpos_eq(pos
, SPOS_MAX
)
2031 : bkey_eq(pos
, SPOS_MAX
));
2033 if (ret
&& !(iter
->flags
& BTREE_ITER_is_extents
))
2034 pos
= bkey_successor(iter
, pos
);
2035 bch2_btree_iter_set_pos(iter
, pos
);
2039 inline bool bch2_btree_iter_rewind(struct btree_iter
*iter
)
2041 struct bpos pos
= bkey_start_pos(&iter
->k
);
2042 bool ret
= !(iter
->flags
& BTREE_ITER_all_snapshots
2043 ? bpos_eq(pos
, POS_MIN
)
2044 : bkey_eq(pos
, POS_MIN
));
2046 if (ret
&& !(iter
->flags
& BTREE_ITER_is_extents
))
2047 pos
= bkey_predecessor(iter
, pos
);
2048 bch2_btree_iter_set_pos(iter
, pos
);
2053 void bch2_btree_trans_peek_prev_updates(struct btree_trans
*trans
, struct btree_iter
*iter
,
2056 struct bpos end
= path_l(btree_iter_path(trans
, iter
))->b
->data
->min_key
;
2058 trans_for_each_update(trans
, i
)
2059 if (!i
->key_cache_already_flushed
&&
2060 i
->btree_id
== iter
->btree_id
&&
2061 bpos_le(i
->k
->k
.p
, iter
->pos
) &&
2062 bpos_ge(i
->k
->k
.p
, k
->k
? k
->k
->p
: end
)) {
2064 *k
= bkey_i_to_s_c(i
->k
);
2069 void bch2_btree_trans_peek_updates(struct btree_trans
*trans
, struct btree_iter
*iter
,
2072 struct btree_path
*path
= btree_iter_path(trans
, iter
);
2073 struct bpos end
= path_l(path
)->b
->key
.k
.p
;
2075 trans_for_each_update(trans
, i
)
2076 if (!i
->key_cache_already_flushed
&&
2077 i
->btree_id
== iter
->btree_id
&&
2078 bpos_ge(i
->k
->k
.p
, path
->pos
) &&
2079 bpos_le(i
->k
->k
.p
, k
->k
? k
->k
->p
: end
)) {
2081 *k
= bkey_i_to_s_c(i
->k
);
2086 void bch2_btree_trans_peek_slot_updates(struct btree_trans
*trans
, struct btree_iter
*iter
,
2089 trans_for_each_update(trans
, i
)
2090 if (!i
->key_cache_already_flushed
&&
2091 i
->btree_id
== iter
->btree_id
&&
2092 bpos_eq(i
->k
->k
.p
, iter
->pos
)) {
2094 *k
= bkey_i_to_s_c(i
->k
);
2098 static struct bkey_i
*bch2_btree_journal_peek(struct btree_trans
*trans
,
2099 struct btree_iter
*iter
,
2100 struct bpos end_pos
)
2102 struct btree_path
*path
= btree_iter_path(trans
, iter
);
2104 return bch2_journal_keys_peek_upto(trans
->c
, iter
->btree_id
,
2108 &iter
->journal_idx
);
2112 struct bkey_s_c
btree_trans_peek_slot_journal(struct btree_trans
*trans
,
2113 struct btree_iter
*iter
)
2115 struct btree_path
*path
= btree_iter_path(trans
, iter
);
2116 struct bkey_i
*k
= bch2_btree_journal_peek(trans
, iter
, path
->pos
);
2120 return bkey_i_to_s_c(k
);
2122 return bkey_s_c_null
;
2127 struct bkey_s_c
btree_trans_peek_journal(struct btree_trans
*trans
,
2128 struct btree_iter
*iter
,
2131 struct btree_path
*path
= btree_iter_path(trans
, iter
);
2132 struct bkey_i
*next_journal
=
2133 bch2_btree_journal_peek(trans
, iter
,
2134 k
.k
? k
.k
->p
: path_l(path
)->b
->key
.k
.p
);
2137 iter
->k
= next_journal
->k
;
2138 k
= bkey_i_to_s_c(next_journal
);
2145 * Checks btree key cache for key at iter->pos and returns it if present, or
2149 struct bkey_s_c
btree_trans_peek_key_cache(struct btree_iter
*iter
, struct bpos pos
)
2151 struct btree_trans
*trans
= iter
->trans
;
2152 struct bch_fs
*c
= trans
->c
;
2157 bch2_trans_verify_not_in_restart(trans
);
2158 bch2_trans_verify_not_unlocked(trans
);
2160 if ((iter
->flags
& BTREE_ITER_key_cache_fill
) &&
2161 bpos_eq(iter
->pos
, pos
))
2162 return bkey_s_c_null
;
2164 if (!bch2_btree_key_cache_find(c
, iter
->btree_id
, pos
))
2165 return bkey_s_c_null
;
2167 if (!iter
->key_cache_path
)
2168 iter
->key_cache_path
= bch2_path_get(trans
, iter
->btree_id
, pos
,
2169 iter
->flags
& BTREE_ITER_intent
, 0,
2170 iter
->flags
|BTREE_ITER_cached
|
2171 BTREE_ITER_cached_nofill
,
2174 iter
->key_cache_path
= bch2_btree_path_set_pos(trans
, iter
->key_cache_path
, pos
,
2175 iter
->flags
& BTREE_ITER_intent
,
2176 btree_iter_ip_allocated(iter
));
2178 ret
= bch2_btree_path_traverse(trans
, iter
->key_cache_path
,
2179 iter
->flags
|BTREE_ITER_cached
) ?:
2180 bch2_btree_path_relock(trans
, btree_iter_path(trans
, iter
), _THIS_IP_
);
2182 return bkey_s_c_err(ret
);
2184 btree_path_set_should_be_locked(trans
, trans
->paths
+ iter
->key_cache_path
);
2186 k
= bch2_btree_path_peek_slot(trans
->paths
+ iter
->key_cache_path
, &u
);
2187 if (k
.k
&& !bkey_err(k
)) {
2194 static struct bkey_s_c
__bch2_btree_iter_peek(struct btree_iter
*iter
, struct bpos search_key
)
2196 struct btree_trans
*trans
= iter
->trans
;
2197 struct bkey_s_c k
, k2
;
2200 EBUG_ON(btree_iter_path(trans
, iter
)->cached
);
2201 bch2_btree_iter_verify(iter
);
2204 struct btree_path_level
*l
;
2206 iter
->path
= bch2_btree_path_set_pos(trans
, iter
->path
, search_key
,
2207 iter
->flags
& BTREE_ITER_intent
,
2208 btree_iter_ip_allocated(iter
));
2210 ret
= bch2_btree_path_traverse(trans
, iter
->path
, iter
->flags
);
2211 if (unlikely(ret
)) {
2212 /* ensure that iter->k is consistent with iter->pos: */
2213 bch2_btree_iter_set_pos(iter
, iter
->pos
);
2214 k
= bkey_s_c_err(ret
);
2218 struct btree_path
*path
= btree_iter_path(trans
, iter
);
2221 if (unlikely(!l
->b
)) {
2222 /* No btree nodes at requested level: */
2223 bch2_btree_iter_set_pos(iter
, SPOS_MAX
);
2228 btree_path_set_should_be_locked(trans
, path
);
2230 k
= btree_path_level_peek_all(trans
->c
, l
, &iter
->k
);
2232 if (unlikely(iter
->flags
& BTREE_ITER_with_key_cache
) &&
2234 (k2
= btree_trans_peek_key_cache(iter
, k
.k
->p
)).k
) {
2238 bch2_btree_iter_set_pos(iter
, iter
->pos
);
2243 if (unlikely(iter
->flags
& BTREE_ITER_with_journal
))
2244 k
= btree_trans_peek_journal(trans
, iter
, k
);
2246 if (unlikely((iter
->flags
& BTREE_ITER_with_updates
) &&
2248 bch2_btree_trans_peek_updates(trans
, iter
, &k
);
2250 if (k
.k
&& bkey_deleted(k
.k
)) {
2252 * If we've got a whiteout, and it's after the search
2253 * key, advance the search key to the whiteout instead
2254 * of just after the whiteout - it might be a btree
2255 * whiteout, with a real key at the same position, since
2256 * in the btree deleted keys sort before non deleted.
2258 search_key
= !bpos_eq(search_key
, k
.k
->p
)
2260 : bpos_successor(k
.k
->p
);
2266 } else if (likely(!bpos_eq(l
->b
->key
.k
.p
, SPOS_MAX
))) {
2267 /* Advance to next leaf node: */
2268 search_key
= bpos_successor(l
->b
->key
.k
.p
);
2271 bch2_btree_iter_set_pos(iter
, SPOS_MAX
);
2277 bch2_btree_iter_verify(iter
);
2283 * bch2_btree_iter_peek_upto() - returns first key greater than or equal to
2284 * iterator's current position
2285 * @iter: iterator to peek from
2286 * @end: search limit: returns keys less than or equal to @end
2288 * Returns: key if found, or an error extractable with bkey_err().
2290 struct bkey_s_c
bch2_btree_iter_peek_upto(struct btree_iter
*iter
, struct bpos end
)
2292 struct btree_trans
*trans
= iter
->trans
;
2293 struct bpos search_key
= btree_iter_search_key(iter
);
2295 struct bpos iter_pos
;
2298 bch2_trans_verify_not_unlocked(trans
);
2299 EBUG_ON((iter
->flags
& BTREE_ITER_filter_snapshots
) && bkey_eq(end
, POS_MAX
));
2301 if (iter
->update_path
) {
2302 bch2_path_put_nokeep(trans
, iter
->update_path
,
2303 iter
->flags
& BTREE_ITER_intent
);
2304 iter
->update_path
= 0;
2307 bch2_btree_iter_verify_entry_exit(iter
);
2310 k
= __bch2_btree_iter_peek(iter
, search_key
);
2313 if (unlikely(bkey_err(k
)))
2317 * We need to check against @end before FILTER_SNAPSHOTS because
2318 * if we get to a different inode that requested we might be
2319 * seeing keys for a different snapshot tree that will all be
2322 * But we can't do the full check here, because bkey_start_pos()
2323 * isn't monotonically increasing before FILTER_SNAPSHOTS, and
2324 * that's what we check against in extents mode:
2326 if (unlikely(!(iter
->flags
& BTREE_ITER_is_extents
)
2327 ? bkey_gt(k
.k
->p
, end
)
2328 : k
.k
->p
.inode
> end
.inode
))
2331 if (iter
->update_path
&&
2332 !bkey_eq(trans
->paths
[iter
->update_path
].pos
, k
.k
->p
)) {
2333 bch2_path_put_nokeep(trans
, iter
->update_path
,
2334 iter
->flags
& BTREE_ITER_intent
);
2335 iter
->update_path
= 0;
2338 if ((iter
->flags
& BTREE_ITER_filter_snapshots
) &&
2339 (iter
->flags
& BTREE_ITER_intent
) &&
2340 !(iter
->flags
& BTREE_ITER_is_extents
) &&
2341 !iter
->update_path
) {
2342 struct bpos pos
= k
.k
->p
;
2344 if (pos
.snapshot
< iter
->snapshot
) {
2345 search_key
= bpos_successor(k
.k
->p
);
2349 pos
.snapshot
= iter
->snapshot
;
2352 * advance, same as on exit for iter->path, but only up
2355 __btree_path_get(trans
, trans
->paths
+ iter
->path
, iter
->flags
& BTREE_ITER_intent
);
2356 iter
->update_path
= iter
->path
;
2358 iter
->update_path
= bch2_btree_path_set_pos(trans
,
2359 iter
->update_path
, pos
,
2360 iter
->flags
& BTREE_ITER_intent
,
2362 ret
= bch2_btree_path_traverse(trans
, iter
->update_path
, iter
->flags
);
2363 if (unlikely(ret
)) {
2364 k
= bkey_s_c_err(ret
);
2370 * We can never have a key in a leaf node at POS_MAX, so
2371 * we don't have to check these successor() calls:
2373 if ((iter
->flags
& BTREE_ITER_filter_snapshots
) &&
2374 !bch2_snapshot_is_ancestor(trans
->c
,
2377 search_key
= bpos_successor(k
.k
->p
);
2381 if (bkey_whiteout(k
.k
) &&
2382 !(iter
->flags
& BTREE_ITER_all_snapshots
)) {
2383 search_key
= bkey_successor(iter
, k
.k
->p
);
2388 * iter->pos should be mononotically increasing, and always be
2389 * equal to the key we just returned - except extents can
2390 * straddle iter->pos:
2392 if (!(iter
->flags
& BTREE_ITER_is_extents
))
2395 iter_pos
= bkey_max(iter
->pos
, bkey_start_pos(k
.k
));
2397 if (unlikely(iter
->flags
& BTREE_ITER_all_snapshots
? bpos_gt(iter_pos
, end
) :
2398 iter
->flags
& BTREE_ITER_is_extents
? bkey_ge(iter_pos
, end
) :
2399 bkey_gt(iter_pos
, end
)))
2405 iter
->pos
= iter_pos
;
2407 iter
->path
= bch2_btree_path_set_pos(trans
, iter
->path
, k
.k
->p
,
2408 iter
->flags
& BTREE_ITER_intent
,
2409 btree_iter_ip_allocated(iter
));
2411 btree_path_set_should_be_locked(trans
, btree_iter_path(trans
, iter
));
2413 if (iter
->update_path
) {
2414 ret
= bch2_btree_path_relock(trans
, trans
->paths
+ iter
->update_path
, _THIS_IP_
);
2416 k
= bkey_s_c_err(ret
);
2418 btree_path_set_should_be_locked(trans
, trans
->paths
+ iter
->update_path
);
2421 if (!(iter
->flags
& BTREE_ITER_all_snapshots
))
2422 iter
->pos
.snapshot
= iter
->snapshot
;
2424 ret
= bch2_btree_iter_verify_ret(iter
, k
);
2425 if (unlikely(ret
)) {
2426 bch2_btree_iter_set_pos(iter
, iter
->pos
);
2427 k
= bkey_s_c_err(ret
);
2430 bch2_btree_iter_verify_entry_exit(iter
);
2434 bch2_btree_iter_set_pos(iter
, end
);
2440 * bch2_btree_iter_next() - returns first key greater than iterator's current
2442 * @iter: iterator to peek from
2444 * Returns: key if found, or an error extractable with bkey_err().
2446 struct bkey_s_c
bch2_btree_iter_next(struct btree_iter
*iter
)
2448 if (!bch2_btree_iter_advance(iter
))
2449 return bkey_s_c_null
;
2451 return bch2_btree_iter_peek(iter
);
2455 * bch2_btree_iter_peek_prev() - returns first key less than or equal to
2456 * iterator's current position
2457 * @iter: iterator to peek from
2459 * Returns: key if found, or an error extractable with bkey_err().
2461 struct bkey_s_c
bch2_btree_iter_peek_prev(struct btree_iter
*iter
)
2463 struct btree_trans
*trans
= iter
->trans
;
2464 struct bpos search_key
= iter
->pos
;
2466 struct bkey saved_k
;
2467 const struct bch_val
*saved_v
;
2468 btree_path_idx_t saved_path
= 0;
2471 bch2_trans_verify_not_unlocked(trans
);
2472 EBUG_ON(btree_iter_path(trans
, iter
)->cached
||
2473 btree_iter_path(trans
, iter
)->level
);
2475 if (iter
->flags
& BTREE_ITER_with_journal
)
2476 return bkey_s_c_err(-BCH_ERR_btree_iter_with_journal_not_supported
);
2478 bch2_btree_iter_verify(iter
);
2479 bch2_btree_iter_verify_entry_exit(iter
);
2481 if (iter
->flags
& BTREE_ITER_filter_snapshots
)
2482 search_key
.snapshot
= U32_MAX
;
2485 iter
->path
= bch2_btree_path_set_pos(trans
, iter
->path
, search_key
,
2486 iter
->flags
& BTREE_ITER_intent
,
2487 btree_iter_ip_allocated(iter
));
2489 ret
= bch2_btree_path_traverse(trans
, iter
->path
, iter
->flags
);
2490 if (unlikely(ret
)) {
2491 /* ensure that iter->k is consistent with iter->pos: */
2492 bch2_btree_iter_set_pos(iter
, iter
->pos
);
2493 k
= bkey_s_c_err(ret
);
2497 struct btree_path
*path
= btree_iter_path(trans
, iter
);
2499 k
= btree_path_level_peek(trans
, path
, &path
->l
[0], &iter
->k
);
2501 ((iter
->flags
& BTREE_ITER_is_extents
)
2502 ? bpos_ge(bkey_start_pos(k
.k
), search_key
)
2503 : bpos_gt(k
.k
->p
, search_key
)))
2504 k
= btree_path_level_prev(trans
, path
, &path
->l
[0], &iter
->k
);
2506 if (unlikely((iter
->flags
& BTREE_ITER_with_updates
) &&
2508 bch2_btree_trans_peek_prev_updates(trans
, iter
, &k
);
2511 if (iter
->flags
& BTREE_ITER_filter_snapshots
) {
2512 if (k
.k
->p
.snapshot
== iter
->snapshot
)
2516 * If we have a saved candidate, and we're no
2517 * longer at the same _key_ (not pos), return
2520 if (saved_path
&& !bkey_eq(k
.k
->p
, saved_k
.p
)) {
2521 bch2_path_put_nokeep(trans
, iter
->path
,
2522 iter
->flags
& BTREE_ITER_intent
);
2523 iter
->path
= saved_path
;
2530 if (bch2_snapshot_is_ancestor(trans
->c
,
2534 bch2_path_put_nokeep(trans
, saved_path
,
2535 iter
->flags
& BTREE_ITER_intent
);
2536 saved_path
= btree_path_clone(trans
, iter
->path
,
2537 iter
->flags
& BTREE_ITER_intent
,
2539 path
= btree_iter_path(trans
, iter
);
2540 trace_btree_path_save_pos(trans
, path
, trans
->paths
+ saved_path
);
2545 search_key
= bpos_predecessor(k
.k
->p
);
2549 if (bkey_whiteout(k
.k
) &&
2550 !(iter
->flags
& BTREE_ITER_all_snapshots
)) {
2551 search_key
= bkey_predecessor(iter
, k
.k
->p
);
2552 if (iter
->flags
& BTREE_ITER_filter_snapshots
)
2553 search_key
.snapshot
= U32_MAX
;
2557 btree_path_set_should_be_locked(trans
, path
);
2559 } else if (likely(!bpos_eq(path
->l
[0].b
->data
->min_key
, POS_MIN
))) {
2560 /* Advance to previous leaf node: */
2561 search_key
= bpos_predecessor(path
->l
[0].b
->data
->min_key
);
2563 /* Start of btree: */
2564 bch2_btree_iter_set_pos(iter
, POS_MIN
);
2570 EBUG_ON(bkey_gt(bkey_start_pos(k
.k
), iter
->pos
));
2572 /* Extents can straddle iter->pos: */
2573 if (bkey_lt(k
.k
->p
, iter
->pos
))
2576 if (iter
->flags
& BTREE_ITER_filter_snapshots
)
2577 iter
->pos
.snapshot
= iter
->snapshot
;
2580 bch2_path_put_nokeep(trans
, saved_path
, iter
->flags
& BTREE_ITER_intent
);
2582 bch2_btree_iter_verify_entry_exit(iter
);
2583 bch2_btree_iter_verify(iter
);
2589 * bch2_btree_iter_prev() - returns first key less than iterator's current
2591 * @iter: iterator to peek from
2593 * Returns: key if found, or an error extractable with bkey_err().
2595 struct bkey_s_c
bch2_btree_iter_prev(struct btree_iter
*iter
)
2597 if (!bch2_btree_iter_rewind(iter
))
2598 return bkey_s_c_null
;
2600 return bch2_btree_iter_peek_prev(iter
);
2603 struct bkey_s_c
bch2_btree_iter_peek_slot(struct btree_iter
*iter
)
2605 struct btree_trans
*trans
= iter
->trans
;
2606 struct bpos search_key
;
2610 bch2_trans_verify_not_unlocked(trans
);
2611 bch2_btree_iter_verify(iter
);
2612 bch2_btree_iter_verify_entry_exit(iter
);
2613 EBUG_ON(btree_iter_path(trans
, iter
)->level
&& (iter
->flags
& BTREE_ITER_with_key_cache
));
2615 /* extents can't span inode numbers: */
2616 if ((iter
->flags
& BTREE_ITER_is_extents
) &&
2617 unlikely(iter
->pos
.offset
== KEY_OFFSET_MAX
)) {
2618 if (iter
->pos
.inode
== KEY_INODE_MAX
)
2619 return bkey_s_c_null
;
2621 bch2_btree_iter_set_pos(iter
, bpos_nosnap_successor(iter
->pos
));
2624 search_key
= btree_iter_search_key(iter
);
2625 iter
->path
= bch2_btree_path_set_pos(trans
, iter
->path
, search_key
,
2626 iter
->flags
& BTREE_ITER_intent
,
2627 btree_iter_ip_allocated(iter
));
2629 ret
= bch2_btree_path_traverse(trans
, iter
->path
, iter
->flags
);
2630 if (unlikely(ret
)) {
2631 k
= bkey_s_c_err(ret
);
2635 if ((iter
->flags
& BTREE_ITER_cached
) ||
2636 !(iter
->flags
& (BTREE_ITER_is_extents
|BTREE_ITER_filter_snapshots
))) {
2639 if (unlikely((iter
->flags
& BTREE_ITER_with_updates
) &&
2640 trans
->nr_updates
)) {
2641 bch2_btree_trans_peek_slot_updates(trans
, iter
, &k
);
2646 if (unlikely(iter
->flags
& BTREE_ITER_with_journal
) &&
2647 (k
= btree_trans_peek_slot_journal(trans
, iter
)).k
)
2650 if (unlikely(iter
->flags
& BTREE_ITER_with_key_cache
) &&
2651 (k
= btree_trans_peek_key_cache(iter
, iter
->pos
)).k
) {
2654 /* We're not returning a key from iter->path: */
2658 k
= bch2_btree_path_peek_slot(trans
->paths
+ iter
->path
, &iter
->k
);
2663 struct bpos end
= iter
->pos
;
2665 if (iter
->flags
& BTREE_ITER_is_extents
)
2666 end
.offset
= U64_MAX
;
2668 EBUG_ON(btree_iter_path(trans
, iter
)->level
);
2670 if (iter
->flags
& BTREE_ITER_intent
) {
2671 struct btree_iter iter2
;
2673 bch2_trans_copy_iter(&iter2
, iter
);
2674 k
= bch2_btree_iter_peek_upto(&iter2
, end
);
2676 if (k
.k
&& !bkey_err(k
)) {
2677 swap(iter
->key_cache_path
, iter2
.key_cache_path
);
2681 bch2_trans_iter_exit(trans
, &iter2
);
2683 struct bpos pos
= iter
->pos
;
2685 k
= bch2_btree_iter_peek_upto(iter
, end
);
2686 if (unlikely(bkey_err(k
)))
2687 bch2_btree_iter_set_pos(iter
, pos
);
2692 if (unlikely(bkey_err(k
)))
2695 next
= k
.k
? bkey_start_pos(k
.k
) : POS_MAX
;
2697 if (bkey_lt(iter
->pos
, next
)) {
2698 bkey_init(&iter
->k
);
2699 iter
->k
.p
= iter
->pos
;
2701 if (iter
->flags
& BTREE_ITER_is_extents
) {
2702 bch2_key_resize(&iter
->k
,
2703 min_t(u64
, KEY_SIZE_MAX
,
2704 (next
.inode
== iter
->pos
.inode
2708 EBUG_ON(!iter
->k
.size
);
2711 k
= (struct bkey_s_c
) { &iter
->k
, NULL
};
2715 btree_path_set_should_be_locked(trans
, btree_iter_path(trans
, iter
));
2717 bch2_btree_iter_verify_entry_exit(iter
);
2718 bch2_btree_iter_verify(iter
);
2719 ret
= bch2_btree_iter_verify_ret(iter
, k
);
2721 return bkey_s_c_err(ret
);
2726 struct bkey_s_c
bch2_btree_iter_next_slot(struct btree_iter
*iter
)
2728 if (!bch2_btree_iter_advance(iter
))
2729 return bkey_s_c_null
;
2731 return bch2_btree_iter_peek_slot(iter
);
2734 struct bkey_s_c
bch2_btree_iter_prev_slot(struct btree_iter
*iter
)
2736 if (!bch2_btree_iter_rewind(iter
))
2737 return bkey_s_c_null
;
2739 return bch2_btree_iter_peek_slot(iter
);
2742 /* Obsolete, but still used by rust wrapper in -tools */
2743 struct bkey_s_c
bch2_btree_iter_peek_and_restart_outlined(struct btree_iter
*iter
)
2747 while (btree_trans_too_many_iters(iter
->trans
) ||
2748 (k
= bch2_btree_iter_peek_type(iter
, iter
->flags
),
2749 bch2_err_matches(bkey_err(k
), BCH_ERR_transaction_restart
)))
2750 bch2_trans_begin(iter
->trans
);
2755 /* new transactional stuff: */
2757 #ifdef CONFIG_BCACHEFS_DEBUG
2758 static void btree_trans_verify_sorted_refs(struct btree_trans
*trans
)
2760 struct btree_path
*path
;
2763 BUG_ON(trans
->nr_sorted
!= bitmap_weight(trans
->paths_allocated
, trans
->nr_paths
) - 1);
2765 trans_for_each_path(trans
, path
, i
) {
2766 BUG_ON(path
->sorted_idx
>= trans
->nr_sorted
);
2767 BUG_ON(trans
->sorted
[path
->sorted_idx
] != i
);
2770 for (i
= 0; i
< trans
->nr_sorted
; i
++) {
2771 unsigned idx
= trans
->sorted
[i
];
2773 BUG_ON(!test_bit(idx
, trans
->paths_allocated
));
2774 BUG_ON(trans
->paths
[idx
].sorted_idx
!= i
);
2778 static void btree_trans_verify_sorted(struct btree_trans
*trans
)
2780 struct btree_path
*path
, *prev
= NULL
;
2781 struct trans_for_each_path_inorder_iter iter
;
2783 if (!bch2_debug_check_iterators
)
2786 trans_for_each_path_inorder(trans
, path
, iter
) {
2787 if (prev
&& btree_path_cmp(prev
, path
) > 0) {
2788 __bch2_dump_trans_paths_updates(trans
, true);
2789 panic("trans paths out of order!\n");
2795 static inline void btree_trans_verify_sorted_refs(struct btree_trans
*trans
) {}
2796 static inline void btree_trans_verify_sorted(struct btree_trans
*trans
) {}
2799 void __bch2_btree_trans_sort_paths(struct btree_trans
*trans
)
2801 int i
, l
= 0, r
= trans
->nr_sorted
, inc
= 1;
2804 btree_trans_verify_sorted_refs(trans
);
2806 if (trans
->paths_sorted
)
2810 * Cocktail shaker sort: this is efficient because iterators will be
2816 for (i
= inc
> 0 ? l
: r
- 2;
2817 i
+ 1 < r
&& i
>= l
;
2819 if (btree_path_cmp(trans
->paths
+ trans
->sorted
[i
],
2820 trans
->paths
+ trans
->sorted
[i
+ 1]) > 0) {
2821 swap(trans
->sorted
[i
], trans
->sorted
[i
+ 1]);
2822 trans
->paths
[trans
->sorted
[i
]].sorted_idx
= i
;
2823 trans
->paths
[trans
->sorted
[i
+ 1]].sorted_idx
= i
+ 1;
2835 trans
->paths_sorted
= true;
2837 btree_trans_verify_sorted(trans
);
2840 static inline void btree_path_list_remove(struct btree_trans
*trans
,
2841 struct btree_path
*path
)
2843 EBUG_ON(path
->sorted_idx
>= trans
->nr_sorted
);
2844 #ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2846 memmove_u64s_down_small(trans
->sorted
+ path
->sorted_idx
,
2847 trans
->sorted
+ path
->sorted_idx
+ 1,
2848 DIV_ROUND_UP(trans
->nr_sorted
- path
->sorted_idx
,
2849 sizeof(u64
) / sizeof(btree_path_idx_t
)));
2851 array_remove_item(trans
->sorted
, trans
->nr_sorted
, path
->sorted_idx
);
2853 for (unsigned i
= path
->sorted_idx
; i
< trans
->nr_sorted
; i
++)
2854 trans
->paths
[trans
->sorted
[i
]].sorted_idx
= i
;
2857 static inline void btree_path_list_add(struct btree_trans
*trans
,
2858 btree_path_idx_t pos
,
2859 btree_path_idx_t path_idx
)
2861 struct btree_path
*path
= trans
->paths
+ path_idx
;
2863 path
->sorted_idx
= pos
? trans
->paths
[pos
].sorted_idx
+ 1 : trans
->nr_sorted
;
2865 #ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2866 memmove_u64s_up_small(trans
->sorted
+ path
->sorted_idx
+ 1,
2867 trans
->sorted
+ path
->sorted_idx
,
2868 DIV_ROUND_UP(trans
->nr_sorted
- path
->sorted_idx
,
2869 sizeof(u64
) / sizeof(btree_path_idx_t
)));
2871 trans
->sorted
[path
->sorted_idx
] = path_idx
;
2873 array_insert_item(trans
->sorted
, trans
->nr_sorted
, path
->sorted_idx
, path_idx
);
2876 for (unsigned i
= path
->sorted_idx
; i
< trans
->nr_sorted
; i
++)
2877 trans
->paths
[trans
->sorted
[i
]].sorted_idx
= i
;
2879 btree_trans_verify_sorted_refs(trans
);
2882 void bch2_trans_iter_exit(struct btree_trans
*trans
, struct btree_iter
*iter
)
2884 if (iter
->update_path
)
2885 bch2_path_put_nokeep(trans
, iter
->update_path
,
2886 iter
->flags
& BTREE_ITER_intent
);
2888 bch2_path_put(trans
, iter
->path
,
2889 iter
->flags
& BTREE_ITER_intent
);
2890 if (iter
->key_cache_path
)
2891 bch2_path_put(trans
, iter
->key_cache_path
,
2892 iter
->flags
& BTREE_ITER_intent
);
2894 iter
->update_path
= 0;
2895 iter
->key_cache_path
= 0;
2899 void bch2_trans_iter_init_outlined(struct btree_trans
*trans
,
2900 struct btree_iter
*iter
,
2901 enum btree_id btree_id
, struct bpos pos
,
2904 bch2_trans_iter_init_common(trans
, iter
, btree_id
, pos
, 0, 0,
2905 bch2_btree_iter_flags(trans
, btree_id
, flags
),
2909 void bch2_trans_node_iter_init(struct btree_trans
*trans
,
2910 struct btree_iter
*iter
,
2911 enum btree_id btree_id
,
2913 unsigned locks_want
,
2917 flags
|= BTREE_ITER_not_extents
;
2918 flags
|= BTREE_ITER_snapshot_field
;
2919 flags
|= BTREE_ITER_all_snapshots
;
2921 bch2_trans_iter_init_common(trans
, iter
, btree_id
, pos
, locks_want
, depth
,
2922 __bch2_btree_iter_flags(trans
, btree_id
, flags
),
2925 iter
->min_depth
= depth
;
2927 struct btree_path
*path
= btree_iter_path(trans
, iter
);
2928 BUG_ON(path
->locks_want
< min(locks_want
, BTREE_MAX_DEPTH
));
2929 BUG_ON(path
->level
!= depth
);
2930 BUG_ON(iter
->min_depth
!= depth
);
2933 void bch2_trans_copy_iter(struct btree_iter
*dst
, struct btree_iter
*src
)
2935 struct btree_trans
*trans
= src
->trans
;
2938 #ifdef TRACK_PATH_ALLOCATED
2939 dst
->ip_allocated
= _RET_IP_
;
2942 __btree_path_get(trans
, trans
->paths
+ src
->path
, src
->flags
& BTREE_ITER_intent
);
2943 if (src
->update_path
)
2944 __btree_path_get(trans
, trans
->paths
+ src
->update_path
, src
->flags
& BTREE_ITER_intent
);
2945 dst
->key_cache_path
= 0;
2948 void *__bch2_trans_kmalloc(struct btree_trans
*trans
, size_t size
)
2950 struct bch_fs
*c
= trans
->c
;
2951 unsigned new_top
= trans
->mem_top
+ size
;
2952 unsigned old_bytes
= trans
->mem_bytes
;
2953 unsigned new_bytes
= roundup_pow_of_two(new_top
);
2958 WARN_ON_ONCE(new_bytes
> BTREE_TRANS_MEM_MAX
);
2960 struct btree_transaction_stats
*s
= btree_trans_stats(trans
);
2961 s
->max_mem
= max(s
->max_mem
, new_bytes
);
2963 if (trans
->used_mempool
) {
2964 if (trans
->mem_bytes
>= new_bytes
)
2965 goto out_change_top
;
2967 /* No more space from mempool item, need malloc new one */
2968 new_mem
= kmalloc(new_bytes
, GFP_NOWAIT
|__GFP_NOWARN
);
2969 if (unlikely(!new_mem
)) {
2970 bch2_trans_unlock(trans
);
2972 new_mem
= kmalloc(new_bytes
, GFP_KERNEL
);
2974 return ERR_PTR(-BCH_ERR_ENOMEM_trans_kmalloc
);
2976 ret
= bch2_trans_relock(trans
);
2979 return ERR_PTR(ret
);
2982 memcpy(new_mem
, trans
->mem
, trans
->mem_top
);
2983 trans
->used_mempool
= false;
2984 mempool_free(trans
->mem
, &c
->btree_trans_mem_pool
);
2988 new_mem
= krealloc(trans
->mem
, new_bytes
, GFP_NOWAIT
|__GFP_NOWARN
);
2989 if (unlikely(!new_mem
)) {
2990 bch2_trans_unlock(trans
);
2992 new_mem
= krealloc(trans
->mem
, new_bytes
, GFP_KERNEL
);
2993 if (!new_mem
&& new_bytes
<= BTREE_TRANS_MEM_MAX
) {
2994 new_mem
= mempool_alloc(&c
->btree_trans_mem_pool
, GFP_KERNEL
);
2995 new_bytes
= BTREE_TRANS_MEM_MAX
;
2996 memcpy(new_mem
, trans
->mem
, trans
->mem_top
);
2997 trans
->used_mempool
= true;
3002 return ERR_PTR(-BCH_ERR_ENOMEM_trans_kmalloc
);
3004 trans
->mem
= new_mem
;
3005 trans
->mem_bytes
= new_bytes
;
3007 ret
= bch2_trans_relock(trans
);
3009 return ERR_PTR(ret
);
3012 trans
->mem
= new_mem
;
3013 trans
->mem_bytes
= new_bytes
;
3016 trace_and_count(c
, trans_restart_mem_realloced
, trans
, _RET_IP_
, new_bytes
);
3017 return ERR_PTR(btree_trans_restart(trans
, BCH_ERR_transaction_restart_mem_realloced
));
3020 p
= trans
->mem
+ trans
->mem_top
;
3021 trans
->mem_top
+= size
;
3026 static inline void check_srcu_held_too_long(struct btree_trans
*trans
)
3028 WARN(trans
->srcu_held
&& time_after(jiffies
, trans
->srcu_lock_time
+ HZ
* 10),
3029 "btree trans held srcu lock (delaying memory reclaim) for %lu seconds",
3030 (jiffies
- trans
->srcu_lock_time
) / HZ
);
3033 void bch2_trans_srcu_unlock(struct btree_trans
*trans
)
3035 if (trans
->srcu_held
) {
3036 struct bch_fs
*c
= trans
->c
;
3037 struct btree_path
*path
;
3040 trans_for_each_path(trans
, path
, i
)
3041 if (path
->cached
&& !btree_node_locked(path
, 0))
3042 path
->l
[0].b
= ERR_PTR(-BCH_ERR_no_btree_node_srcu_reset
);
3044 check_srcu_held_too_long(trans
);
3045 srcu_read_unlock(&c
->btree_trans_barrier
, trans
->srcu_idx
);
3046 trans
->srcu_held
= false;
3050 static void bch2_trans_srcu_lock(struct btree_trans
*trans
)
3052 if (!trans
->srcu_held
) {
3053 trans
->srcu_idx
= srcu_read_lock(&trans
->c
->btree_trans_barrier
);
3054 trans
->srcu_lock_time
= jiffies
;
3055 trans
->srcu_held
= true;
3060 * bch2_trans_begin() - reset a transaction after a interrupted attempt
3061 * @trans: transaction to reset
3063 * Returns: current restart counter, to be used with trans_was_restarted()
3065 * While iterating over nodes or updating nodes a attempt to lock a btree node
3066 * may return BCH_ERR_transaction_restart when the trylock fails. When this
3067 * occurs bch2_trans_begin() should be called and the transaction retried.
3069 u32
bch2_trans_begin(struct btree_trans
*trans
)
3071 struct btree_path
*path
;
3075 bch2_trans_reset_updates(trans
);
3077 trans
->restart_count
++;
3079 trans
->journal_entries
= NULL
;
3081 trans_for_each_path(trans
, path
, i
) {
3082 path
->should_be_locked
= false;
3085 * If the transaction wasn't restarted, we're presuming to be
3086 * doing something new: dont keep iterators excpt the ones that
3087 * are in use - except for the subvolumes btree:
3089 if (!trans
->restarted
&& path
->btree_id
!= BTREE_ID_subvolumes
)
3090 path
->preserve
= false;
3093 * XXX: we probably shouldn't be doing this if the transaction
3094 * was restarted, but currently we still overflow transaction
3095 * iterators if we do that
3097 if (!path
->ref
&& !path
->preserve
)
3098 __bch2_path_free(trans
, i
);
3100 path
->preserve
= false;
3103 now
= local_clock();
3105 if (!IS_ENABLED(CONFIG_BCACHEFS_NO_LATENCY_ACCT
) &&
3106 time_after64(now
, trans
->last_begin_time
+ 10))
3107 __bch2_time_stats_update(&btree_trans_stats(trans
)->duration
,
3108 trans
->last_begin_time
, now
);
3110 if (!trans
->restarted
&&
3112 time_after64(now
, trans
->last_begin_time
+ BTREE_TRANS_MAX_LOCK_HOLD_TIME_NS
))) {
3113 bch2_trans_unlock(trans
);
3115 now
= local_clock();
3117 trans
->last_begin_time
= now
;
3119 if (unlikely(trans
->srcu_held
&&
3120 time_after(jiffies
, trans
->srcu_lock_time
+ msecs_to_jiffies(10))))
3121 bch2_trans_srcu_unlock(trans
);
3123 trans
->last_begin_ip
= _RET_IP_
;
3125 trans_set_locked(trans
);
3127 if (trans
->restarted
) {
3128 bch2_btree_path_traverse_all(trans
);
3129 trans
->notrace_relock_fail
= false;
3132 bch2_trans_verify_not_unlocked(trans
);
3133 return trans
->restart_count
;
3136 const char *bch2_btree_transaction_fns
[BCH_TRANSACTIONS_NR
] = { "(unknown)" };
3138 unsigned bch2_trans_get_fn_idx(const char *fn
)
3140 for (unsigned i
= 0; i
< ARRAY_SIZE(bch2_btree_transaction_fns
); i
++)
3141 if (!bch2_btree_transaction_fns
[i
] ||
3142 bch2_btree_transaction_fns
[i
] == fn
) {
3143 bch2_btree_transaction_fns
[i
] = fn
;
3147 pr_warn_once("BCH_TRANSACTIONS_NR not big enough!");
3151 struct btree_trans
*__bch2_trans_get(struct bch_fs
*c
, unsigned fn_idx
)
3152 __acquires(&c
->btree_trans_barrier
)
3154 struct btree_trans
*trans
;
3156 if (IS_ENABLED(__KERNEL__
)) {
3157 trans
= this_cpu_xchg(c
->btree_trans_bufs
->trans
, NULL
);
3159 memset(trans
, 0, offsetof(struct btree_trans
, list
));
3164 trans
= mempool_alloc(&c
->btree_trans_pool
, GFP_NOFS
);
3165 memset(trans
, 0, sizeof(*trans
));
3167 seqmutex_lock(&c
->btree_trans_lock
);
3168 if (IS_ENABLED(CONFIG_BCACHEFS_DEBUG
)) {
3169 struct btree_trans
*pos
;
3170 pid_t pid
= current
->pid
;
3172 trans
->locking_wait
.task
= current
;
3174 list_for_each_entry(pos
, &c
->btree_trans_list
, list
) {
3175 struct task_struct
*pos_task
= READ_ONCE(pos
->locking_wait
.task
);
3177 * We'd much prefer to be stricter here and completely
3178 * disallow multiple btree_trans in the same thread -
3179 * but the data move path calls bch2_write when we
3180 * already have a btree_trans initialized.
3183 pid
== pos_task
->pid
&&
3188 list_add(&trans
->list
, &c
->btree_trans_list
);
3189 seqmutex_unlock(&c
->btree_trans_lock
);
3192 trans
->last_begin_time
= local_clock();
3193 trans
->fn_idx
= fn_idx
;
3194 trans
->locking_wait
.task
= current
;
3195 trans
->journal_replay_not_finished
=
3196 unlikely(!test_bit(JOURNAL_replay_done
, &c
->journal
.flags
)) &&
3197 atomic_inc_not_zero(&c
->journal_keys
.ref
);
3198 trans
->nr_paths
= ARRAY_SIZE(trans
->_paths
);
3199 trans
->paths_allocated
= trans
->_paths_allocated
;
3200 trans
->sorted
= trans
->_sorted
;
3201 trans
->paths
= trans
->_paths
;
3202 trans
->updates
= trans
->_updates
;
3204 *trans_paths_nr(trans
->paths
) = BTREE_ITER_INITIAL
;
3206 trans
->paths_allocated
[0] = 1;
3208 static struct lock_class_key lockdep_key
;
3209 lockdep_init_map(&trans
->dep_map
, "bcachefs_btree", &lockdep_key
, 0);
3211 if (fn_idx
< BCH_TRANSACTIONS_NR
) {
3212 trans
->fn
= bch2_btree_transaction_fns
[fn_idx
];
3214 struct btree_transaction_stats
*s
= &c
->btree_transaction_stats
[fn_idx
];
3217 unsigned expected_mem_bytes
= roundup_pow_of_two(s
->max_mem
);
3219 trans
->mem
= kmalloc(expected_mem_bytes
, GFP_KERNEL
);
3220 if (likely(trans
->mem
))
3221 trans
->mem_bytes
= expected_mem_bytes
;
3224 trans
->nr_paths_max
= s
->nr_max_paths
;
3225 trans
->journal_entries_size
= s
->journal_entries_size
;
3228 trans
->srcu_idx
= srcu_read_lock(&c
->btree_trans_barrier
);
3229 trans
->srcu_lock_time
= jiffies
;
3230 trans
->srcu_held
= true;
3231 trans_set_locked(trans
);
3233 closure_init_stack_release(&trans
->ref
);
3237 static void check_btree_paths_leaked(struct btree_trans
*trans
)
3239 #ifdef CONFIG_BCACHEFS_DEBUG
3240 struct bch_fs
*c
= trans
->c
;
3241 struct btree_path
*path
;
3244 trans_for_each_path(trans
, path
, i
)
3249 bch_err(c
, "btree paths leaked from %s!", trans
->fn
);
3250 trans_for_each_path(trans
, path
, i
)
3252 printk(KERN_ERR
" btree %s %pS\n",
3253 bch2_btree_id_str(path
->btree_id
),
3254 (void *) path
->ip_allocated
);
3255 /* Be noisy about this: */
3256 bch2_fatal_error(c
);
3260 void bch2_trans_put(struct btree_trans
*trans
)
3261 __releases(&c
->btree_trans_barrier
)
3263 struct bch_fs
*c
= trans
->c
;
3265 bch2_trans_unlock(trans
);
3267 trans_for_each_update(trans
, i
)
3268 __btree_path_put(trans
, trans
->paths
+ i
->path
, true);
3269 trans
->nr_updates
= 0;
3271 check_btree_paths_leaked(trans
);
3273 if (trans
->srcu_held
) {
3274 check_srcu_held_too_long(trans
);
3275 srcu_read_unlock(&c
->btree_trans_barrier
, trans
->srcu_idx
);
3278 if (unlikely(trans
->journal_replay_not_finished
))
3279 bch2_journal_keys_put(c
);
3282 * trans->ref protects trans->locking_wait.task, btree_paths array; used
3285 closure_return_sync(&trans
->ref
);
3286 trans
->locking_wait
.task
= NULL
;
3288 unsigned long *paths_allocated
= trans
->paths_allocated
;
3289 trans
->paths_allocated
= NULL
;
3290 trans
->paths
= NULL
;
3292 if (paths_allocated
!= trans
->_paths_allocated
)
3293 kvfree_rcu_mightsleep(paths_allocated
);
3295 if (trans
->used_mempool
)
3296 mempool_free(trans
->mem
, &c
->btree_trans_mem_pool
);
3300 /* Userspace doesn't have a real percpu implementation: */
3301 if (IS_ENABLED(__KERNEL__
))
3302 trans
= this_cpu_xchg(c
->btree_trans_bufs
->trans
, trans
);
3305 seqmutex_lock(&c
->btree_trans_lock
);
3306 list_del(&trans
->list
);
3307 seqmutex_unlock(&c
->btree_trans_lock
);
3309 mempool_free(trans
, &c
->btree_trans_pool
);
3313 bool bch2_current_has_btree_trans(struct bch_fs
*c
)
3315 seqmutex_lock(&c
->btree_trans_lock
);
3316 struct btree_trans
*trans
;
3318 list_for_each_entry(trans
, &c
->btree_trans_list
, list
)
3319 if (trans
->locking_wait
.task
== current
&&
3324 seqmutex_unlock(&c
->btree_trans_lock
);
3328 static void __maybe_unused
3329 bch2_btree_bkey_cached_common_to_text(struct printbuf
*out
,
3330 struct btree_bkey_cached_common
*b
)
3332 struct six_lock_count c
= six_lock_counts(&b
->lock
);
3333 struct task_struct
*owner
;
3337 owner
= READ_ONCE(b
->lock
.owner
);
3338 pid
= owner
? owner
->pid
: 0;
3341 prt_printf(out
, "\t%px %c l=%u %s:", b
, b
->cached
? 'c' : 'b',
3342 b
->level
, bch2_btree_id_str(b
->btree_id
));
3343 bch2_bpos_to_text(out
, btree_node_pos(b
));
3345 prt_printf(out
, "\t locks %u:%u:%u held by pid %u",
3346 c
.n
[0], c
.n
[1], c
.n
[2], pid
);
3349 void bch2_btree_trans_to_text(struct printbuf
*out
, struct btree_trans
*trans
)
3351 struct btree_bkey_cached_common
*b
;
3352 static char lock_types
[] = { 'r', 'i', 'w' };
3353 struct task_struct
*task
= READ_ONCE(trans
->locking_wait
.task
);
3356 /* before rcu_read_lock(): */
3357 bch2_printbuf_make_room(out
, 4096);
3359 if (!out
->nr_tabstops
) {
3360 printbuf_tabstop_push(out
, 16);
3361 printbuf_tabstop_push(out
, 32);
3364 prt_printf(out
, "%i %s\n", task
? task
->pid
: 0, trans
->fn
);
3366 /* trans->paths is rcu protected vs. freeing */
3370 struct btree_path
*paths
= rcu_dereference(trans
->paths
);
3374 unsigned long *paths_allocated
= trans_paths_allocated(paths
);
3376 trans_for_each_path_idx_from(paths_allocated
, *trans_paths_nr(paths
), idx
, 1) {
3377 struct btree_path
*path
= paths
+ idx
;
3378 if (!path
->nodes_locked
)
3381 prt_printf(out
, " path %u %c l=%u %s:",
3383 path
->cached
? 'c' : 'b',
3385 bch2_btree_id_str(path
->btree_id
));
3386 bch2_bpos_to_text(out
, path
->pos
);
3389 for (l
= 0; l
< BTREE_MAX_DEPTH
; l
++) {
3390 if (btree_node_locked(path
, l
) &&
3391 !IS_ERR_OR_NULL(b
= (void *) READ_ONCE(path
->l
[l
].b
))) {
3392 prt_printf(out
, " %c l=%u ",
3393 lock_types
[btree_node_locked_type(path
, l
)], l
);
3394 bch2_btree_bkey_cached_common_to_text(out
, b
);
3400 b
= READ_ONCE(trans
->locking
);
3402 prt_printf(out
, " blocked for %lluus on\n",
3403 div_u64(local_clock() - trans
->locking_wait
.start_time
, 1000));
3404 prt_printf(out
, " %c", lock_types
[trans
->locking_wait
.lock_want
]);
3405 bch2_btree_bkey_cached_common_to_text(out
, b
);
3413 void bch2_fs_btree_iter_exit(struct bch_fs
*c
)
3415 struct btree_transaction_stats
*s
;
3416 struct btree_trans
*trans
;
3419 if (c
->btree_trans_bufs
)
3420 for_each_possible_cpu(cpu
) {
3421 struct btree_trans
*trans
=
3422 per_cpu_ptr(c
->btree_trans_bufs
, cpu
)->trans
;
3425 seqmutex_lock(&c
->btree_trans_lock
);
3426 list_del(&trans
->list
);
3427 seqmutex_unlock(&c
->btree_trans_lock
);
3431 free_percpu(c
->btree_trans_bufs
);
3433 trans
= list_first_entry_or_null(&c
->btree_trans_list
, struct btree_trans
, list
);
3435 panic("%s leaked btree_trans\n", trans
->fn
);
3437 for (s
= c
->btree_transaction_stats
;
3438 s
< c
->btree_transaction_stats
+ ARRAY_SIZE(c
->btree_transaction_stats
);
3440 kfree(s
->max_paths_text
);
3441 bch2_time_stats_exit(&s
->lock_hold_times
);
3444 if (c
->btree_trans_barrier_initialized
) {
3445 synchronize_srcu_expedited(&c
->btree_trans_barrier
);
3446 cleanup_srcu_struct(&c
->btree_trans_barrier
);
3448 mempool_exit(&c
->btree_trans_mem_pool
);
3449 mempool_exit(&c
->btree_trans_pool
);
3452 void bch2_fs_btree_iter_init_early(struct bch_fs
*c
)
3454 struct btree_transaction_stats
*s
;
3456 for (s
= c
->btree_transaction_stats
;
3457 s
< c
->btree_transaction_stats
+ ARRAY_SIZE(c
->btree_transaction_stats
);
3459 bch2_time_stats_init(&s
->duration
);
3460 bch2_time_stats_init(&s
->lock_hold_times
);
3461 mutex_init(&s
->lock
);
3464 INIT_LIST_HEAD(&c
->btree_trans_list
);
3465 seqmutex_init(&c
->btree_trans_lock
);
3468 int bch2_fs_btree_iter_init(struct bch_fs
*c
)
3472 c
->btree_trans_bufs
= alloc_percpu(struct btree_trans_buf
);
3473 if (!c
->btree_trans_bufs
)
3476 ret
= mempool_init_kmalloc_pool(&c
->btree_trans_pool
, 1,
3477 sizeof(struct btree_trans
)) ?:
3478 mempool_init_kmalloc_pool(&c
->btree_trans_mem_pool
, 1,
3479 BTREE_TRANS_MEM_MAX
) ?:
3480 init_srcu_struct(&c
->btree_trans_barrier
);
3485 * static annotation (hackily done) for lock ordering of reclaim vs.
3488 #ifdef CONFIG_LOCKDEP
3489 fs_reclaim_acquire(GFP_KERNEL
);
3490 struct btree_trans
*trans
= bch2_trans_get(c
);
3491 trans_set_locked(trans
);
3492 bch2_trans_put(trans
);
3493 fs_reclaim_release(GFP_KERNEL
);
3496 c
->btree_trans_barrier_initialized
= true;