]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/btree_iter.c
Update bcachefs sources to 95ff72a6c1 fixup! mm: Centralize & improve oom reporting...
[bcachefs-tools-debian] / libbcachefs / btree_iter.c
1 // SPDX-License-Identifier: GPL-2.0
2
3 #include "bcachefs.h"
4 #include "bkey_methods.h"
5 #include "bkey_buf.h"
6 #include "btree_cache.h"
7 #include "btree_iter.h"
8 #include "btree_key_cache.h"
9 #include "btree_locking.h"
10 #include "btree_update.h"
11 #include "debug.h"
12 #include "error.h"
13 #include "extents.h"
14 #include "journal.h"
15 #include "recovery.h"
16 #include "replicas.h"
17 #include "subvolume.h"
18
19 #include <linux/prefetch.h>
20 #include <trace/events/bcachefs.h>
21
22 static void btree_trans_verify_sorted(struct btree_trans *);
23 inline void bch2_btree_path_check_sort(struct btree_trans *, struct btree_path *, int);
24
25 static inline void btree_path_list_remove(struct btree_trans *, struct btree_path *);
26 static inline void btree_path_list_add(struct btree_trans *, struct btree_path *,
27                                        struct btree_path *);
28
29 static inline unsigned long btree_iter_ip_allocated(struct btree_iter *iter)
30 {
31 #ifdef CONFIG_BCACHEFS_DEBUG
32         return iter->ip_allocated;
33 #else
34         return 0;
35 #endif
36 }
37
38 static struct btree_path *btree_path_alloc(struct btree_trans *, struct btree_path *);
39
40 /*
41  * Unlocks before scheduling
42  * Note: does not revalidate iterator
43  */
44 static inline int bch2_trans_cond_resched(struct btree_trans *trans)
45 {
46         if (need_resched() || race_fault()) {
47                 bch2_trans_unlock(trans);
48                 schedule();
49                 return bch2_trans_relock(trans) ? 0 : -EINTR;
50         } else {
51                 return 0;
52         }
53 }
54
55 static inline int __btree_path_cmp(const struct btree_path *l,
56                                    enum btree_id        r_btree_id,
57                                    bool                 r_cached,
58                                    struct bpos          r_pos,
59                                    unsigned             r_level)
60 {
61         /*
62          * Must match lock ordering as defined by __bch2_btree_node_lock:
63          */
64         return   cmp_int(l->btree_id,   r_btree_id) ?:
65                  cmp_int((int) l->cached,       (int) r_cached) ?:
66                  bpos_cmp(l->pos,       r_pos) ?:
67                 -cmp_int(l->level,      r_level);
68 }
69
70 static inline int btree_path_cmp(const struct btree_path *l,
71                                  const struct btree_path *r)
72 {
73         return __btree_path_cmp(l, r->btree_id, r->cached, r->pos, r->level);
74 }
75
76 static inline struct bpos bkey_successor(struct btree_iter *iter, struct bpos p)
77 {
78         /* Are we iterating over keys in all snapshots? */
79         if (iter->flags & BTREE_ITER_ALL_SNAPSHOTS) {
80                 p = bpos_successor(p);
81         } else {
82                 p = bpos_nosnap_successor(p);
83                 p.snapshot = iter->snapshot;
84         }
85
86         return p;
87 }
88
89 static inline struct bpos bkey_predecessor(struct btree_iter *iter, struct bpos p)
90 {
91         /* Are we iterating over keys in all snapshots? */
92         if (iter->flags & BTREE_ITER_ALL_SNAPSHOTS) {
93                 p = bpos_predecessor(p);
94         } else {
95                 p = bpos_nosnap_predecessor(p);
96                 p.snapshot = iter->snapshot;
97         }
98
99         return p;
100 }
101
102 static inline bool is_btree_node(struct btree_path *path, unsigned l)
103 {
104         return l < BTREE_MAX_DEPTH &&
105                 (unsigned long) path->l[l].b >= 128;
106 }
107
108 static inline struct bpos btree_iter_search_key(struct btree_iter *iter)
109 {
110         struct bpos pos = iter->pos;
111
112         if ((iter->flags & BTREE_ITER_IS_EXTENTS) &&
113             bkey_cmp(pos, POS_MAX))
114                 pos = bkey_successor(iter, pos);
115         return pos;
116 }
117
118 static inline bool btree_path_pos_before_node(struct btree_path *path,
119                                               struct btree *b)
120 {
121         return bpos_cmp(path->pos, b->data->min_key) < 0;
122 }
123
124 static inline bool btree_path_pos_after_node(struct btree_path *path,
125                                              struct btree *b)
126 {
127         return bpos_cmp(b->key.k.p, path->pos) < 0;
128 }
129
130 static inline bool btree_path_pos_in_node(struct btree_path *path,
131                                           struct btree *b)
132 {
133         return path->btree_id == b->c.btree_id &&
134                 !btree_path_pos_before_node(path, b) &&
135                 !btree_path_pos_after_node(path, b);
136 }
137
138 /* Btree node locking: */
139
140 void bch2_btree_node_unlock_write(struct btree_trans *trans,
141                         struct btree_path *path, struct btree *b)
142 {
143         bch2_btree_node_unlock_write_inlined(trans, path, b);
144 }
145
146 void __bch2_btree_node_lock_write(struct btree_trans *trans, struct btree *b)
147 {
148         struct btree_path *linked;
149         unsigned readers = 0;
150
151         trans_for_each_path(trans, linked)
152                 if (linked->l[b->c.level].b == b &&
153                     btree_node_read_locked(linked, b->c.level))
154                         readers++;
155
156         /*
157          * Must drop our read locks before calling six_lock_write() -
158          * six_unlock() won't do wakeups until the reader count
159          * goes to 0, and it's safe because we have the node intent
160          * locked:
161          */
162         if (!b->c.lock.readers)
163                 atomic64_sub(__SIX_VAL(read_lock, readers),
164                              &b->c.lock.state.counter);
165         else
166                 this_cpu_sub(*b->c.lock.readers, readers);
167
168         six_lock_write(&b->c.lock, NULL, NULL);
169
170         if (!b->c.lock.readers)
171                 atomic64_add(__SIX_VAL(read_lock, readers),
172                              &b->c.lock.state.counter);
173         else
174                 this_cpu_add(*b->c.lock.readers, readers);
175 }
176
177 bool __bch2_btree_node_relock(struct btree_trans *trans,
178                               struct btree_path *path, unsigned level)
179 {
180         struct btree *b = btree_path_node(path, level);
181         int want = __btree_lock_want(path, level);
182
183         if (!is_btree_node(path, level))
184                 goto fail;
185
186         if (race_fault())
187                 goto fail;
188
189         if (six_relock_type(&b->c.lock, want, path->l[level].lock_seq) ||
190             (btree_node_lock_seq_matches(path, b, level) &&
191              btree_node_lock_increment(trans, b, level, want))) {
192                 mark_btree_node_locked(trans, path, level, want);
193                 return true;
194         }
195 fail:
196         trace_btree_node_relock_fail(trans->fn, _RET_IP_,
197                                      path->btree_id,
198                                      &path->pos,
199                                      (unsigned long) b,
200                                      path->l[level].lock_seq,
201                                      is_btree_node(path, level) ? b->c.lock.state.seq : 0);
202         return false;
203 }
204
205 bool bch2_btree_node_upgrade(struct btree_trans *trans,
206                              struct btree_path *path, unsigned level)
207 {
208         struct btree *b = path->l[level].b;
209
210         if (!is_btree_node(path, level))
211                 return false;
212
213         switch (btree_lock_want(path, level)) {
214         case BTREE_NODE_UNLOCKED:
215                 BUG_ON(btree_node_locked(path, level));
216                 return true;
217         case BTREE_NODE_READ_LOCKED:
218                 BUG_ON(btree_node_intent_locked(path, level));
219                 return bch2_btree_node_relock(trans, path, level);
220         case BTREE_NODE_INTENT_LOCKED:
221                 break;
222         }
223
224         if (btree_node_intent_locked(path, level))
225                 return true;
226
227         if (race_fault())
228                 return false;
229
230         if (btree_node_locked(path, level)
231             ? six_lock_tryupgrade(&b->c.lock)
232             : six_relock_type(&b->c.lock, SIX_LOCK_intent, path->l[level].lock_seq))
233                 goto success;
234
235         if (btree_node_lock_seq_matches(path, b, level) &&
236             btree_node_lock_increment(trans, b, level, BTREE_NODE_INTENT_LOCKED)) {
237                 btree_node_unlock(path, level);
238                 goto success;
239         }
240
241         return false;
242 success:
243         mark_btree_node_intent_locked(trans, path, level);
244         return true;
245 }
246
247 static inline bool btree_path_get_locks(struct btree_trans *trans,
248                                         struct btree_path *path,
249                                         bool upgrade)
250 {
251         unsigned l = path->level;
252         int fail_idx = -1;
253
254         do {
255                 if (!btree_path_node(path, l))
256                         break;
257
258                 if (!(upgrade
259                       ? bch2_btree_node_upgrade(trans, path, l)
260                       : bch2_btree_node_relock(trans, path, l)))
261                         fail_idx = l;
262
263                 l++;
264         } while (l < path->locks_want);
265
266         /*
267          * When we fail to get a lock, we have to ensure that any child nodes
268          * can't be relocked so bch2_btree_path_traverse has to walk back up to
269          * the node that we failed to relock:
270          */
271         if (fail_idx >= 0) {
272                 __bch2_btree_path_unlock(path);
273                 btree_path_set_dirty(path, BTREE_ITER_NEED_TRAVERSE);
274
275                 do {
276                         path->l[fail_idx].b = BTREE_ITER_NO_NODE_GET_LOCKS;
277                         --fail_idx;
278                 } while (fail_idx >= 0);
279         }
280
281         if (path->uptodate == BTREE_ITER_NEED_RELOCK)
282                 path->uptodate = BTREE_ITER_UPTODATE;
283
284         bch2_trans_verify_locks(trans);
285
286         return path->uptodate < BTREE_ITER_NEED_RELOCK;
287 }
288
289 static struct bpos btree_node_pos(struct btree_bkey_cached_common *_b,
290                                   bool cached)
291 {
292         return !cached
293                 ? container_of(_b, struct btree, c)->key.k.p
294                 : container_of(_b, struct bkey_cached, c)->key.pos;
295 }
296
297 /* Slowpath: */
298 bool __bch2_btree_node_lock(struct btree_trans *trans,
299                             struct btree_path *path,
300                             struct btree *b,
301                             struct bpos pos, unsigned level,
302                             enum six_lock_type type,
303                             six_lock_should_sleep_fn should_sleep_fn, void *p,
304                             unsigned long ip)
305 {
306         struct btree_path *linked;
307         unsigned reason;
308
309         /* Check if it's safe to block: */
310         trans_for_each_path(trans, linked) {
311                 if (!linked->nodes_locked)
312                         continue;
313
314                 /*
315                  * Can't block taking an intent lock if we have _any_ nodes read
316                  * locked:
317                  *
318                  * - Our read lock blocks another thread with an intent lock on
319                  *   the same node from getting a write lock, and thus from
320                  *   dropping its intent lock
321                  *
322                  * - And the other thread may have multiple nodes intent locked:
323                  *   both the node we want to intent lock, and the node we
324                  *   already have read locked - deadlock:
325                  */
326                 if (type == SIX_LOCK_intent &&
327                     linked->nodes_locked != linked->nodes_intent_locked) {
328                         reason = 1;
329                         goto deadlock;
330                 }
331
332                 if (linked->btree_id != path->btree_id) {
333                         if (linked->btree_id < path->btree_id)
334                                 continue;
335
336                         reason = 3;
337                         goto deadlock;
338                 }
339
340                 /*
341                  * Within the same btree, non-cached paths come before cached
342                  * paths:
343                  */
344                 if (linked->cached != path->cached) {
345                         if (!linked->cached)
346                                 continue;
347
348                         reason = 4;
349                         goto deadlock;
350                 }
351
352                 /*
353                  * Interior nodes must be locked before their descendants: if
354                  * another path has possible descendants locked of the node
355                  * we're about to lock, it must have the ancestors locked too:
356                  */
357                 if (level > __fls(linked->nodes_locked)) {
358                         reason = 5;
359                         goto deadlock;
360                 }
361
362                 /* Must lock btree nodes in key order: */
363                 if (btree_node_locked(linked, level) &&
364                     bpos_cmp(pos, btree_node_pos((void *) linked->l[level].b,
365                                                  linked->cached)) <= 0) {
366                         BUG_ON(trans->in_traverse_all);
367                         reason = 7;
368                         goto deadlock;
369                 }
370         }
371
372         return btree_node_lock_type(trans, path, b, pos, level,
373                                     type, should_sleep_fn, p);
374 deadlock:
375         trace_trans_restart_would_deadlock(trans->fn, ip,
376                         trans->in_traverse_all, reason,
377                         linked->btree_id,
378                         linked->cached,
379                         &linked->pos,
380                         path->btree_id,
381                         path->cached,
382                         &pos);
383         btree_trans_restart(trans);
384         return false;
385 }
386
387 /* Btree iterator locking: */
388
389 #ifdef CONFIG_BCACHEFS_DEBUG
390
391 static void bch2_btree_path_verify_locks(struct btree_path *path)
392 {
393         unsigned l;
394
395         if (!path->nodes_locked) {
396                 BUG_ON(path->uptodate == BTREE_ITER_UPTODATE &&
397                        btree_path_node(path, path->level));
398                 return;
399         }
400
401         for (l = 0; btree_path_node(path, l); l++)
402                 BUG_ON(btree_lock_want(path, l) !=
403                        btree_node_locked_type(path, l));
404 }
405
406 void bch2_trans_verify_locks(struct btree_trans *trans)
407 {
408         struct btree_path *path;
409
410         trans_for_each_path(trans, path)
411                 bch2_btree_path_verify_locks(path);
412 }
413 #else
414 static inline void bch2_btree_path_verify_locks(struct btree_path *path) {}
415 #endif
416
417 /* Btree path locking: */
418
419 /*
420  * Only for btree_cache.c - only relocks intent locks
421  */
422 bool bch2_btree_path_relock_intent(struct btree_trans *trans,
423                                    struct btree_path *path)
424 {
425         unsigned l;
426
427         for (l = path->level;
428              l < path->locks_want && btree_path_node(path, l);
429              l++) {
430                 if (!bch2_btree_node_relock(trans, path, l)) {
431                         __bch2_btree_path_unlock(path);
432                         btree_path_set_dirty(path, BTREE_ITER_NEED_TRAVERSE);
433                         trace_trans_restart_relock_path_intent(trans->fn, _RET_IP_,
434                                                    path->btree_id, &path->pos);
435                         btree_trans_restart(trans);
436                         return false;
437                 }
438         }
439
440         return true;
441 }
442
443 __flatten
444 static bool bch2_btree_path_relock(struct btree_trans *trans,
445                         struct btree_path *path, unsigned long trace_ip)
446 {
447         bool ret = btree_path_get_locks(trans, path, false);
448
449         if (!ret) {
450                 trace_trans_restart_relock_path(trans->fn, trace_ip,
451                                                 path->btree_id, &path->pos);
452                 btree_trans_restart(trans);
453         }
454         return ret;
455 }
456
457 bool __bch2_btree_path_upgrade(struct btree_trans *trans,
458                                struct btree_path *path,
459                                unsigned new_locks_want)
460 {
461         struct btree_path *linked;
462
463         EBUG_ON(path->locks_want >= new_locks_want);
464
465         path->locks_want = new_locks_want;
466
467         if (btree_path_get_locks(trans, path, true))
468                 return true;
469
470         /*
471          * XXX: this is ugly - we'd prefer to not be mucking with other
472          * iterators in the btree_trans here.
473          *
474          * On failure to upgrade the iterator, setting iter->locks_want and
475          * calling get_locks() is sufficient to make bch2_btree_path_traverse()
476          * get the locks we want on transaction restart.
477          *
478          * But if this iterator was a clone, on transaction restart what we did
479          * to this iterator isn't going to be preserved.
480          *
481          * Possibly we could add an iterator field for the parent iterator when
482          * an iterator is a copy - for now, we'll just upgrade any other
483          * iterators with the same btree id.
484          *
485          * The code below used to be needed to ensure ancestor nodes get locked
486          * before interior nodes - now that's handled by
487          * bch2_btree_path_traverse_all().
488          */
489         if (!path->cached && !trans->in_traverse_all)
490                 trans_for_each_path(trans, linked)
491                         if (linked != path &&
492                             linked->cached == path->cached &&
493                             linked->btree_id == path->btree_id &&
494                             linked->locks_want < new_locks_want) {
495                                 linked->locks_want = new_locks_want;
496                                 btree_path_get_locks(trans, linked, true);
497                         }
498
499         return false;
500 }
501
502 void __bch2_btree_path_downgrade(struct btree_path *path,
503                                  unsigned new_locks_want)
504 {
505         unsigned l;
506
507         EBUG_ON(path->locks_want < new_locks_want);
508
509         path->locks_want = new_locks_want;
510
511         while (path->nodes_locked &&
512                (l = __fls(path->nodes_locked)) >= path->locks_want) {
513                 if (l > path->level) {
514                         btree_node_unlock(path, l);
515                 } else {
516                         if (btree_node_intent_locked(path, l)) {
517                                 six_lock_downgrade(&path->l[l].b->c.lock);
518                                 path->nodes_intent_locked ^= 1 << l;
519                         }
520                         break;
521                 }
522         }
523
524         bch2_btree_path_verify_locks(path);
525 }
526
527 void bch2_trans_downgrade(struct btree_trans *trans)
528 {
529         struct btree_path *path;
530
531         trans_for_each_path(trans, path)
532                 bch2_btree_path_downgrade(path);
533 }
534
535 /* Btree transaction locking: */
536
537 bool bch2_trans_relock(struct btree_trans *trans)
538 {
539         struct btree_path *path;
540
541         if (unlikely(trans->restarted))
542                 return false;
543
544         trans_for_each_path(trans, path)
545                 if (path->should_be_locked &&
546                     !bch2_btree_path_relock(trans, path, _RET_IP_)) {
547                         trace_trans_restart_relock(trans->fn, _RET_IP_,
548                                         path->btree_id, &path->pos);
549                         BUG_ON(!trans->restarted);
550                         return false;
551                 }
552         return true;
553 }
554
555 void bch2_trans_unlock(struct btree_trans *trans)
556 {
557         struct btree_path *path;
558
559         trans_for_each_path(trans, path)
560                 __bch2_btree_path_unlock(path);
561
562         /*
563          * bch2_gc_btree_init_recurse() doesn't use btree iterators for walking
564          * btree nodes, it implements its own walking:
565          */
566         BUG_ON(!trans->is_initial_gc &&
567                lock_class_is_held(&bch2_btree_node_lock_key));
568 }
569
570 /* Btree iterator: */
571
572 #ifdef CONFIG_BCACHEFS_DEBUG
573
574 static void bch2_btree_path_verify_cached(struct btree_trans *trans,
575                                           struct btree_path *path)
576 {
577         struct bkey_cached *ck;
578         bool locked = btree_node_locked(path, 0);
579
580         if (!bch2_btree_node_relock(trans, path, 0))
581                 return;
582
583         ck = (void *) path->l[0].b;
584         BUG_ON(ck->key.btree_id != path->btree_id ||
585                bkey_cmp(ck->key.pos, path->pos));
586
587         if (!locked)
588                 btree_node_unlock(path, 0);
589 }
590
591 static void bch2_btree_path_verify_level(struct btree_trans *trans,
592                                 struct btree_path *path, unsigned level)
593 {
594         struct btree_path_level *l;
595         struct btree_node_iter tmp;
596         bool locked;
597         struct bkey_packed *p, *k;
598         struct printbuf buf1 = PRINTBUF;
599         struct printbuf buf2 = PRINTBUF;
600         struct printbuf buf3 = PRINTBUF;
601         const char *msg;
602
603         if (!bch2_debug_check_iterators)
604                 return;
605
606         l       = &path->l[level];
607         tmp     = l->iter;
608         locked  = btree_node_locked(path, level);
609
610         if (path->cached) {
611                 if (!level)
612                         bch2_btree_path_verify_cached(trans, path);
613                 return;
614         }
615
616         if (!btree_path_node(path, level))
617                 return;
618
619         if (!bch2_btree_node_relock(trans, path, level))
620                 return;
621
622         BUG_ON(!btree_path_pos_in_node(path, l->b));
623
624         bch2_btree_node_iter_verify(&l->iter, l->b);
625
626         /*
627          * For interior nodes, the iterator will have skipped past deleted keys:
628          */
629         p = level
630                 ? bch2_btree_node_iter_prev(&tmp, l->b)
631                 : bch2_btree_node_iter_prev_all(&tmp, l->b);
632         k = bch2_btree_node_iter_peek_all(&l->iter, l->b);
633
634         if (p && bkey_iter_pos_cmp(l->b, p, &path->pos) >= 0) {
635                 msg = "before";
636                 goto err;
637         }
638
639         if (k && bkey_iter_pos_cmp(l->b, k, &path->pos) < 0) {
640                 msg = "after";
641                 goto err;
642         }
643
644         if (!locked)
645                 btree_node_unlock(path, level);
646         return;
647 err:
648         bch2_bpos_to_text(&buf1, path->pos);
649
650         if (p) {
651                 struct bkey uk = bkey_unpack_key(l->b, p);
652                 bch2_bkey_to_text(&buf2, &uk);
653         } else {
654                 prt_printf(&buf2, "(none)");
655         }
656
657         if (k) {
658                 struct bkey uk = bkey_unpack_key(l->b, k);
659                 bch2_bkey_to_text(&buf3, &uk);
660         } else {
661                 prt_printf(&buf3, "(none)");
662         }
663
664         panic("path should be %s key at level %u:\n"
665               "path pos %s\n"
666               "prev key %s\n"
667               "cur  key %s\n",
668               msg, level, buf1.buf, buf2.buf, buf3.buf);
669 }
670
671 static void bch2_btree_path_verify(struct btree_trans *trans,
672                                    struct btree_path *path)
673 {
674         struct bch_fs *c = trans->c;
675         unsigned i;
676
677         EBUG_ON(path->btree_id >= BTREE_ID_NR);
678
679         for (i = 0; i < (!path->cached ? BTREE_MAX_DEPTH : 1); i++) {
680                 if (!path->l[i].b) {
681                         BUG_ON(!path->cached &&
682                                c->btree_roots[path->btree_id].b->c.level > i);
683                         break;
684                 }
685
686                 bch2_btree_path_verify_level(trans, path, i);
687         }
688
689         bch2_btree_path_verify_locks(path);
690 }
691
692 void bch2_trans_verify_paths(struct btree_trans *trans)
693 {
694         struct btree_path *path;
695
696         trans_for_each_path(trans, path)
697                 bch2_btree_path_verify(trans, path);
698 }
699
700 static void bch2_btree_iter_verify(struct btree_iter *iter)
701 {
702         struct btree_trans *trans = iter->trans;
703
704         BUG_ON(iter->btree_id >= BTREE_ID_NR);
705
706         BUG_ON(!!(iter->flags & BTREE_ITER_CACHED) != iter->path->cached);
707
708         BUG_ON((iter->flags & BTREE_ITER_IS_EXTENTS) &&
709                (iter->flags & BTREE_ITER_ALL_SNAPSHOTS));
710
711         BUG_ON(!(iter->flags & __BTREE_ITER_ALL_SNAPSHOTS) &&
712                (iter->flags & BTREE_ITER_ALL_SNAPSHOTS) &&
713                !btree_type_has_snapshots(iter->btree_id));
714
715         if (iter->update_path)
716                 bch2_btree_path_verify(trans, iter->update_path);
717         bch2_btree_path_verify(trans, iter->path);
718 }
719
720 static void bch2_btree_iter_verify_entry_exit(struct btree_iter *iter)
721 {
722         BUG_ON((iter->flags & BTREE_ITER_FILTER_SNAPSHOTS) &&
723                !iter->pos.snapshot);
724
725         BUG_ON(!(iter->flags & BTREE_ITER_ALL_SNAPSHOTS) &&
726                iter->pos.snapshot != iter->snapshot);
727
728         BUG_ON(bkey_cmp(iter->pos, bkey_start_pos(&iter->k)) < 0 ||
729                bkey_cmp(iter->pos, iter->k.p) > 0);
730 }
731
732 static int bch2_btree_iter_verify_ret(struct btree_iter *iter, struct bkey_s_c k)
733 {
734         struct btree_trans *trans = iter->trans;
735         struct btree_iter copy;
736         struct bkey_s_c prev;
737         int ret = 0;
738
739         if (!bch2_debug_check_iterators)
740                 return 0;
741
742         if (!(iter->flags & BTREE_ITER_FILTER_SNAPSHOTS))
743                 return 0;
744
745         if (bkey_err(k) || !k.k)
746                 return 0;
747
748         BUG_ON(!bch2_snapshot_is_ancestor(trans->c,
749                                           iter->snapshot,
750                                           k.k->p.snapshot));
751
752         bch2_trans_iter_init(trans, &copy, iter->btree_id, iter->pos,
753                              BTREE_ITER_NOPRESERVE|
754                              BTREE_ITER_ALL_SNAPSHOTS);
755         prev = bch2_btree_iter_prev(&copy);
756         if (!prev.k)
757                 goto out;
758
759         ret = bkey_err(prev);
760         if (ret)
761                 goto out;
762
763         if (!bkey_cmp(prev.k->p, k.k->p) &&
764             bch2_snapshot_is_ancestor(trans->c, iter->snapshot,
765                                       prev.k->p.snapshot) > 0) {
766                 struct printbuf buf1 = PRINTBUF, buf2 = PRINTBUF;
767
768                 bch2_bkey_to_text(&buf1, k.k);
769                 bch2_bkey_to_text(&buf2, prev.k);
770
771                 panic("iter snap %u\n"
772                       "k    %s\n"
773                       "prev %s\n",
774                       iter->snapshot,
775                       buf1.buf, buf2.buf);
776         }
777 out:
778         bch2_trans_iter_exit(trans, &copy);
779         return ret;
780 }
781
782 void bch2_assert_pos_locked(struct btree_trans *trans, enum btree_id id,
783                             struct bpos pos, bool key_cache)
784 {
785         struct btree_path *path;
786         unsigned idx;
787         struct printbuf buf = PRINTBUF;
788
789         trans_for_each_path_inorder(trans, path, idx) {
790                 int cmp = cmp_int(path->btree_id, id) ?:
791                         cmp_int(path->cached, key_cache);
792
793                 if (cmp > 0)
794                         break;
795                 if (cmp < 0)
796                         continue;
797
798                 if (!(path->nodes_locked & 1) ||
799                     !path->should_be_locked)
800                         continue;
801
802                 if (!key_cache) {
803                         if (bkey_cmp(pos, path->l[0].b->data->min_key) >= 0 &&
804                             bkey_cmp(pos, path->l[0].b->key.k.p) <= 0)
805                                 return;
806                 } else {
807                         if (!bkey_cmp(pos, path->pos))
808                                 return;
809                 }
810         }
811
812         bch2_dump_trans_paths_updates(trans);
813         bch2_bpos_to_text(&buf, pos);
814
815         panic("not locked: %s %s%s\n",
816               bch2_btree_ids[id], buf.buf,
817               key_cache ? " cached" : "");
818 }
819
820 #else
821
822 static inline void bch2_btree_path_verify_level(struct btree_trans *trans,
823                                                 struct btree_path *path, unsigned l) {}
824 static inline void bch2_btree_path_verify(struct btree_trans *trans,
825                                           struct btree_path *path) {}
826 static inline void bch2_btree_iter_verify(struct btree_iter *iter) {}
827 static inline void bch2_btree_iter_verify_entry_exit(struct btree_iter *iter) {}
828 static inline int bch2_btree_iter_verify_ret(struct btree_iter *iter, struct bkey_s_c k) { return 0; }
829
830 #endif
831
832 /* Btree path: fixups after btree updates */
833
834 static void btree_node_iter_set_set_pos(struct btree_node_iter *iter,
835                                         struct btree *b,
836                                         struct bset_tree *t,
837                                         struct bkey_packed *k)
838 {
839         struct btree_node_iter_set *set;
840
841         btree_node_iter_for_each(iter, set)
842                 if (set->end == t->end_offset) {
843                         set->k = __btree_node_key_to_offset(b, k);
844                         bch2_btree_node_iter_sort(iter, b);
845                         return;
846                 }
847
848         bch2_btree_node_iter_push(iter, b, k, btree_bkey_last(b, t));
849 }
850
851 static void __bch2_btree_path_fix_key_modified(struct btree_path *path,
852                                                struct btree *b,
853                                                struct bkey_packed *where)
854 {
855         struct btree_path_level *l = &path->l[b->c.level];
856
857         if (where != bch2_btree_node_iter_peek_all(&l->iter, l->b))
858                 return;
859
860         if (bkey_iter_pos_cmp(l->b, where, &path->pos) < 0)
861                 bch2_btree_node_iter_advance(&l->iter, l->b);
862 }
863
864 void bch2_btree_path_fix_key_modified(struct btree_trans *trans,
865                                       struct btree *b,
866                                       struct bkey_packed *where)
867 {
868         struct btree_path *path;
869
870         trans_for_each_path_with_node(trans, b, path) {
871                 __bch2_btree_path_fix_key_modified(path, b, where);
872                 bch2_btree_path_verify_level(trans, path, b->c.level);
873         }
874 }
875
876 static void __bch2_btree_node_iter_fix(struct btree_path *path,
877                                        struct btree *b,
878                                        struct btree_node_iter *node_iter,
879                                        struct bset_tree *t,
880                                        struct bkey_packed *where,
881                                        unsigned clobber_u64s,
882                                        unsigned new_u64s)
883 {
884         const struct bkey_packed *end = btree_bkey_last(b, t);
885         struct btree_node_iter_set *set;
886         unsigned offset = __btree_node_key_to_offset(b, where);
887         int shift = new_u64s - clobber_u64s;
888         unsigned old_end = t->end_offset - shift;
889         unsigned orig_iter_pos = node_iter->data[0].k;
890         bool iter_current_key_modified =
891                 orig_iter_pos >= offset &&
892                 orig_iter_pos <= offset + clobber_u64s;
893
894         btree_node_iter_for_each(node_iter, set)
895                 if (set->end == old_end)
896                         goto found;
897
898         /* didn't find the bset in the iterator - might have to readd it: */
899         if (new_u64s &&
900             bkey_iter_pos_cmp(b, where, &path->pos) >= 0) {
901                 bch2_btree_node_iter_push(node_iter, b, where, end);
902                 goto fixup_done;
903         } else {
904                 /* Iterator is after key that changed */
905                 return;
906         }
907 found:
908         set->end = t->end_offset;
909
910         /* Iterator hasn't gotten to the key that changed yet: */
911         if (set->k < offset)
912                 return;
913
914         if (new_u64s &&
915             bkey_iter_pos_cmp(b, where, &path->pos) >= 0) {
916                 set->k = offset;
917         } else if (set->k < offset + clobber_u64s) {
918                 set->k = offset + new_u64s;
919                 if (set->k == set->end)
920                         bch2_btree_node_iter_set_drop(node_iter, set);
921         } else {
922                 /* Iterator is after key that changed */
923                 set->k = (int) set->k + shift;
924                 return;
925         }
926
927         bch2_btree_node_iter_sort(node_iter, b);
928 fixup_done:
929         if (node_iter->data[0].k != orig_iter_pos)
930                 iter_current_key_modified = true;
931
932         /*
933          * When a new key is added, and the node iterator now points to that
934          * key, the iterator might have skipped past deleted keys that should
935          * come after the key the iterator now points to. We have to rewind to
936          * before those deleted keys - otherwise
937          * bch2_btree_node_iter_prev_all() breaks:
938          */
939         if (!bch2_btree_node_iter_end(node_iter) &&
940             iter_current_key_modified &&
941             b->c.level) {
942                 struct bset_tree *t;
943                 struct bkey_packed *k, *k2, *p;
944
945                 k = bch2_btree_node_iter_peek_all(node_iter, b);
946
947                 for_each_bset(b, t) {
948                         bool set_pos = false;
949
950                         if (node_iter->data[0].end == t->end_offset)
951                                 continue;
952
953                         k2 = bch2_btree_node_iter_bset_pos(node_iter, b, t);
954
955                         while ((p = bch2_bkey_prev_all(b, t, k2)) &&
956                                bkey_iter_cmp(b, k, p) < 0) {
957                                 k2 = p;
958                                 set_pos = true;
959                         }
960
961                         if (set_pos)
962                                 btree_node_iter_set_set_pos(node_iter,
963                                                             b, t, k2);
964                 }
965         }
966 }
967
968 void bch2_btree_node_iter_fix(struct btree_trans *trans,
969                               struct btree_path *path,
970                               struct btree *b,
971                               struct btree_node_iter *node_iter,
972                               struct bkey_packed *where,
973                               unsigned clobber_u64s,
974                               unsigned new_u64s)
975 {
976         struct bset_tree *t = bch2_bkey_to_bset(b, where);
977         struct btree_path *linked;
978
979         if (node_iter != &path->l[b->c.level].iter) {
980                 __bch2_btree_node_iter_fix(path, b, node_iter, t,
981                                            where, clobber_u64s, new_u64s);
982
983                 if (bch2_debug_check_iterators)
984                         bch2_btree_node_iter_verify(node_iter, b);
985         }
986
987         trans_for_each_path_with_node(trans, b, linked) {
988                 __bch2_btree_node_iter_fix(linked, b,
989                                            &linked->l[b->c.level].iter, t,
990                                            where, clobber_u64s, new_u64s);
991                 bch2_btree_path_verify_level(trans, linked, b->c.level);
992         }
993 }
994
995 /* Btree path level: pointer to a particular btree node and node iter */
996
997 static inline struct bkey_s_c __btree_iter_unpack(struct bch_fs *c,
998                                                   struct btree_path_level *l,
999                                                   struct bkey *u,
1000                                                   struct bkey_packed *k)
1001 {
1002         if (unlikely(!k)) {
1003                 /*
1004                  * signal to bch2_btree_iter_peek_slot() that we're currently at
1005                  * a hole
1006                  */
1007                 u->type = KEY_TYPE_deleted;
1008                 return bkey_s_c_null;
1009         }
1010
1011         return bkey_disassemble(l->b, k, u);
1012 }
1013
1014 static inline struct bkey_s_c btree_path_level_peek_all(struct bch_fs *c,
1015                                                         struct btree_path_level *l,
1016                                                         struct bkey *u)
1017 {
1018         return __btree_iter_unpack(c, l, u,
1019                         bch2_btree_node_iter_peek_all(&l->iter, l->b));
1020 }
1021
1022 static inline struct bkey_s_c btree_path_level_peek(struct bch_fs *c,
1023                                                     struct btree_path *path,
1024                                                     struct btree_path_level *l,
1025                                                     struct bkey *u)
1026 {
1027         struct bkey_s_c k = __btree_iter_unpack(c, l, u,
1028                         bch2_btree_node_iter_peek(&l->iter, l->b));
1029
1030         path->pos = k.k ? k.k->p : l->b->key.k.p;
1031         return k;
1032 }
1033
1034 static inline struct bkey_s_c btree_path_level_prev(struct bch_fs *c,
1035                                                     struct btree_path *path,
1036                                                     struct btree_path_level *l,
1037                                                     struct bkey *u)
1038 {
1039         struct bkey_s_c k = __btree_iter_unpack(c, l, u,
1040                         bch2_btree_node_iter_prev(&l->iter, l->b));
1041
1042         path->pos = k.k ? k.k->p : l->b->data->min_key;
1043         return k;
1044 }
1045
1046 static inline bool btree_path_advance_to_pos(struct btree_path *path,
1047                                              struct btree_path_level *l,
1048                                              int max_advance)
1049 {
1050         struct bkey_packed *k;
1051         int nr_advanced = 0;
1052
1053         while ((k = bch2_btree_node_iter_peek_all(&l->iter, l->b)) &&
1054                bkey_iter_pos_cmp(l->b, k, &path->pos) < 0) {
1055                 if (max_advance > 0 && nr_advanced >= max_advance)
1056                         return false;
1057
1058                 bch2_btree_node_iter_advance(&l->iter, l->b);
1059                 nr_advanced++;
1060         }
1061
1062         return true;
1063 }
1064
1065 /*
1066  * Verify that iterator for parent node points to child node:
1067  */
1068 static void btree_path_verify_new_node(struct btree_trans *trans,
1069                                        struct btree_path *path, struct btree *b)
1070 {
1071         struct bch_fs *c = trans->c;
1072         struct btree_path_level *l;
1073         unsigned plevel;
1074         bool parent_locked;
1075         struct bkey_packed *k;
1076
1077         if (!IS_ENABLED(CONFIG_BCACHEFS_DEBUG))
1078                 return;
1079
1080         if (!test_bit(JOURNAL_REPLAY_DONE, &c->journal.flags))
1081                 return;
1082
1083         plevel = b->c.level + 1;
1084         if (!btree_path_node(path, plevel))
1085                 return;
1086
1087         parent_locked = btree_node_locked(path, plevel);
1088
1089         if (!bch2_btree_node_relock(trans, path, plevel))
1090                 return;
1091
1092         l = &path->l[plevel];
1093         k = bch2_btree_node_iter_peek_all(&l->iter, l->b);
1094         if (!k ||
1095             bkey_deleted(k) ||
1096             bkey_cmp_left_packed(l->b, k, &b->key.k.p)) {
1097                 struct printbuf buf1 = PRINTBUF;
1098                 struct printbuf buf2 = PRINTBUF;
1099                 struct printbuf buf3 = PRINTBUF;
1100                 struct printbuf buf4 = PRINTBUF;
1101                 struct bkey uk = bkey_unpack_key(b, k);
1102
1103                 bch2_dump_btree_node(c, l->b);
1104                 bch2_bpos_to_text(&buf1, path->pos);
1105                 bch2_bkey_to_text(&buf2, &uk);
1106                 bch2_bpos_to_text(&buf3, b->data->min_key);
1107                 bch2_bpos_to_text(&buf3, b->data->max_key);
1108                 panic("parent iter doesn't point to new node:\n"
1109                       "iter pos %s %s\n"
1110                       "iter key %s\n"
1111                       "new node %s-%s\n",
1112                       bch2_btree_ids[path->btree_id],
1113                       buf1.buf, buf2.buf, buf3.buf, buf4.buf);
1114         }
1115
1116         if (!parent_locked)
1117                 btree_node_unlock(path, plevel);
1118 }
1119
1120 static inline void __btree_path_level_init(struct btree_path *path,
1121                                            unsigned level)
1122 {
1123         struct btree_path_level *l = &path->l[level];
1124
1125         bch2_btree_node_iter_init(&l->iter, l->b, &path->pos);
1126
1127         /*
1128          * Iterators to interior nodes should always be pointed at the first non
1129          * whiteout:
1130          */
1131         if (level)
1132                 bch2_btree_node_iter_peek(&l->iter, l->b);
1133 }
1134
1135 static inline void btree_path_level_init(struct btree_trans *trans,
1136                                          struct btree_path *path,
1137                                          struct btree *b)
1138 {
1139         BUG_ON(path->cached);
1140
1141         btree_path_verify_new_node(trans, path, b);
1142
1143         EBUG_ON(!btree_path_pos_in_node(path, b));
1144         EBUG_ON(b->c.lock.state.seq & 1);
1145
1146         path->l[b->c.level].lock_seq = b->c.lock.state.seq;
1147         path->l[b->c.level].b = b;
1148         __btree_path_level_init(path, b->c.level);
1149 }
1150
1151 /* Btree path: fixups after btree node updates: */
1152
1153 /*
1154  * A btree node is being replaced - update the iterator to point to the new
1155  * node:
1156  */
1157 void bch2_trans_node_add(struct btree_trans *trans, struct btree *b)
1158 {
1159         struct btree_path *path;
1160
1161         trans_for_each_path(trans, path)
1162                 if (!path->cached &&
1163                     btree_path_pos_in_node(path, b)) {
1164                         enum btree_node_locked_type t =
1165                                 btree_lock_want(path, b->c.level);
1166
1167                         if (path->nodes_locked &&
1168                             t != BTREE_NODE_UNLOCKED) {
1169                                 btree_node_unlock(path, b->c.level);
1170                                 six_lock_increment(&b->c.lock, t);
1171                                 mark_btree_node_locked(trans, path, b->c.level, t);
1172                         }
1173
1174                         btree_path_level_init(trans, path, b);
1175                 }
1176 }
1177
1178 /*
1179  * A btree node has been modified in such a way as to invalidate iterators - fix
1180  * them:
1181  */
1182 void bch2_trans_node_reinit_iter(struct btree_trans *trans, struct btree *b)
1183 {
1184         struct btree_path *path;
1185
1186         trans_for_each_path_with_node(trans, b, path)
1187                 __btree_path_level_init(path, b->c.level);
1188 }
1189
1190 /* Btree path: traverse, set_pos: */
1191
1192 static int lock_root_check_fn(struct six_lock *lock, void *p)
1193 {
1194         struct btree *b = container_of(lock, struct btree, c.lock);
1195         struct btree **rootp = p;
1196
1197         return b == *rootp ? 0 : -1;
1198 }
1199
1200 static inline int btree_path_lock_root(struct btree_trans *trans,
1201                                        struct btree_path *path,
1202                                        unsigned depth_want,
1203                                        unsigned long trace_ip)
1204 {
1205         struct bch_fs *c = trans->c;
1206         struct btree *b, **rootp = &c->btree_roots[path->btree_id].b;
1207         enum six_lock_type lock_type;
1208         unsigned i;
1209
1210         EBUG_ON(path->nodes_locked);
1211
1212         while (1) {
1213                 b = READ_ONCE(*rootp);
1214                 path->level = READ_ONCE(b->c.level);
1215
1216                 if (unlikely(path->level < depth_want)) {
1217                         /*
1218                          * the root is at a lower depth than the depth we want:
1219                          * got to the end of the btree, or we're walking nodes
1220                          * greater than some depth and there are no nodes >=
1221                          * that depth
1222                          */
1223                         path->level = depth_want;
1224                         for (i = path->level; i < BTREE_MAX_DEPTH; i++)
1225                                 path->l[i].b = NULL;
1226                         return 1;
1227                 }
1228
1229                 lock_type = __btree_lock_want(path, path->level);
1230                 if (unlikely(!btree_node_lock(trans, path, b, SPOS_MAX,
1231                                               path->level, lock_type,
1232                                               lock_root_check_fn, rootp,
1233                                               trace_ip))) {
1234                         if (trans->restarted)
1235                                 return -EINTR;
1236                         continue;
1237                 }
1238
1239                 if (likely(b == READ_ONCE(*rootp) &&
1240                            b->c.level == path->level &&
1241                            !race_fault())) {
1242                         for (i = 0; i < path->level; i++)
1243                                 path->l[i].b = BTREE_ITER_NO_NODE_LOCK_ROOT;
1244                         path->l[path->level].b = b;
1245                         for (i = path->level + 1; i < BTREE_MAX_DEPTH; i++)
1246                                 path->l[i].b = NULL;
1247
1248                         mark_btree_node_locked(trans, path, path->level, lock_type);
1249                         btree_path_level_init(trans, path, b);
1250                         return 0;
1251                 }
1252
1253                 six_unlock_type(&b->c.lock, lock_type);
1254         }
1255 }
1256
1257 noinline
1258 static int btree_path_prefetch(struct btree_trans *trans, struct btree_path *path)
1259 {
1260         struct bch_fs *c = trans->c;
1261         struct btree_path_level *l = path_l(path);
1262         struct btree_node_iter node_iter = l->iter;
1263         struct bkey_packed *k;
1264         struct bkey_buf tmp;
1265         unsigned nr = test_bit(BCH_FS_STARTED, &c->flags)
1266                 ? (path->level > 1 ? 0 :  2)
1267                 : (path->level > 1 ? 1 : 16);
1268         bool was_locked = btree_node_locked(path, path->level);
1269         int ret = 0;
1270
1271         bch2_bkey_buf_init(&tmp);
1272
1273         while (nr && !ret) {
1274                 if (!bch2_btree_node_relock(trans, path, path->level))
1275                         break;
1276
1277                 bch2_btree_node_iter_advance(&node_iter, l->b);
1278                 k = bch2_btree_node_iter_peek(&node_iter, l->b);
1279                 if (!k)
1280                         break;
1281
1282                 bch2_bkey_buf_unpack(&tmp, c, l->b, k);
1283                 ret = bch2_btree_node_prefetch(c, trans, path, tmp.k, path->btree_id,
1284                                                path->level - 1);
1285         }
1286
1287         if (!was_locked)
1288                 btree_node_unlock(path, path->level);
1289
1290         bch2_bkey_buf_exit(&tmp, c);
1291         return ret;
1292 }
1293
1294 static int btree_path_prefetch_j(struct btree_trans *trans, struct btree_path *path,
1295                                  struct btree_and_journal_iter *jiter)
1296 {
1297         struct bch_fs *c = trans->c;
1298         struct bkey_s_c k;
1299         struct bkey_buf tmp;
1300         unsigned nr = test_bit(BCH_FS_STARTED, &c->flags)
1301                 ? (path->level > 1 ? 0 :  2)
1302                 : (path->level > 1 ? 1 : 16);
1303         bool was_locked = btree_node_locked(path, path->level);
1304         int ret = 0;
1305
1306         bch2_bkey_buf_init(&tmp);
1307
1308         while (nr && !ret) {
1309                 if (!bch2_btree_node_relock(trans, path, path->level))
1310                         break;
1311
1312                 bch2_btree_and_journal_iter_advance(jiter);
1313                 k = bch2_btree_and_journal_iter_peek(jiter);
1314                 if (!k.k)
1315                         break;
1316
1317                 bch2_bkey_buf_reassemble(&tmp, c, k);
1318                 ret = bch2_btree_node_prefetch(c, trans, path, tmp.k, path->btree_id,
1319                                                path->level - 1);
1320         }
1321
1322         if (!was_locked)
1323                 btree_node_unlock(path, path->level);
1324
1325         bch2_bkey_buf_exit(&tmp, c);
1326         return ret;
1327 }
1328
1329 static noinline void btree_node_mem_ptr_set(struct btree_trans *trans,
1330                                             struct btree_path *path,
1331                                             unsigned plevel, struct btree *b)
1332 {
1333         struct btree_path_level *l = &path->l[plevel];
1334         bool locked = btree_node_locked(path, plevel);
1335         struct bkey_packed *k;
1336         struct bch_btree_ptr_v2 *bp;
1337
1338         if (!bch2_btree_node_relock(trans, path, plevel))
1339                 return;
1340
1341         k = bch2_btree_node_iter_peek_all(&l->iter, l->b);
1342         BUG_ON(k->type != KEY_TYPE_btree_ptr_v2);
1343
1344         bp = (void *) bkeyp_val(&l->b->format, k);
1345         bp->mem_ptr = (unsigned long)b;
1346
1347         if (!locked)
1348                 btree_node_unlock(path, plevel);
1349 }
1350
1351 static noinline int btree_node_iter_and_journal_peek(struct btree_trans *trans,
1352                                                      struct btree_path *path,
1353                                                      unsigned flags,
1354                                                      struct bkey_buf *out)
1355 {
1356         struct bch_fs *c = trans->c;
1357         struct btree_path_level *l = path_l(path);
1358         struct btree_and_journal_iter jiter;
1359         struct bkey_s_c k;
1360         int ret = 0;
1361
1362         __bch2_btree_and_journal_iter_init_node_iter(&jiter, c, l->b, l->iter, path->pos);
1363
1364         k = bch2_btree_and_journal_iter_peek(&jiter);
1365
1366         bch2_bkey_buf_reassemble(out, c, k);
1367
1368         if (flags & BTREE_ITER_PREFETCH)
1369                 ret = btree_path_prefetch_j(trans, path, &jiter);
1370
1371         bch2_btree_and_journal_iter_exit(&jiter);
1372         return ret;
1373 }
1374
1375 static __always_inline int btree_path_down(struct btree_trans *trans,
1376                                            struct btree_path *path,
1377                                            unsigned flags,
1378                                            unsigned long trace_ip)
1379 {
1380         struct bch_fs *c = trans->c;
1381         struct btree_path_level *l = path_l(path);
1382         struct btree *b;
1383         unsigned level = path->level - 1;
1384         enum six_lock_type lock_type = __btree_lock_want(path, level);
1385         bool replay_done = test_bit(JOURNAL_REPLAY_DONE, &c->journal.flags);
1386         struct bkey_buf tmp;
1387         int ret;
1388
1389         EBUG_ON(!btree_node_locked(path, path->level));
1390
1391         bch2_bkey_buf_init(&tmp);
1392
1393         if (unlikely(!replay_done)) {
1394                 ret = btree_node_iter_and_journal_peek(trans, path, flags, &tmp);
1395                 if (ret)
1396                         goto err;
1397         } else {
1398                 bch2_bkey_buf_unpack(&tmp, c, l->b,
1399                                  bch2_btree_node_iter_peek(&l->iter, l->b));
1400
1401                 if (flags & BTREE_ITER_PREFETCH) {
1402                         ret = btree_path_prefetch(trans, path);
1403                         if (ret)
1404                                 goto err;
1405                 }
1406         }
1407
1408         b = bch2_btree_node_get(trans, path, tmp.k, level, lock_type, trace_ip);
1409         ret = PTR_ERR_OR_ZERO(b);
1410         if (unlikely(ret))
1411                 goto err;
1412
1413         mark_btree_node_locked(trans, path, level, lock_type);
1414         btree_path_level_init(trans, path, b);
1415
1416         if (likely(replay_done && tmp.k->k.type == KEY_TYPE_btree_ptr_v2) &&
1417             unlikely(b != btree_node_mem_ptr(tmp.k)))
1418                 btree_node_mem_ptr_set(trans, path, level + 1, b);
1419
1420         if (btree_node_read_locked(path, level + 1))
1421                 btree_node_unlock(path, level + 1);
1422         path->level = level;
1423
1424         bch2_btree_path_verify_locks(path);
1425 err:
1426         bch2_bkey_buf_exit(&tmp, c);
1427         return ret;
1428 }
1429
1430 static int btree_path_traverse_one(struct btree_trans *, struct btree_path *,
1431                                    unsigned, unsigned long);
1432
1433 static int bch2_btree_path_traverse_all(struct btree_trans *trans)
1434 {
1435         struct bch_fs *c = trans->c;
1436         struct btree_path *path;
1437         unsigned long trace_ip = _RET_IP_;
1438         int i, ret = 0;
1439
1440         if (trans->in_traverse_all)
1441                 return -EINTR;
1442
1443         trans->in_traverse_all = true;
1444 retry_all:
1445         trans->restarted = false;
1446         trans->traverse_all_idx = U8_MAX;
1447
1448         trans_for_each_path(trans, path)
1449                 path->should_be_locked = false;
1450
1451         btree_trans_verify_sorted(trans);
1452
1453         for (i = trans->nr_sorted - 2; i >= 0; --i) {
1454                 struct btree_path *path1 = trans->paths + trans->sorted[i];
1455                 struct btree_path *path2 = trans->paths + trans->sorted[i + 1];
1456
1457                 if (path1->btree_id == path2->btree_id &&
1458                     path1->locks_want < path2->locks_want)
1459                         __bch2_btree_path_upgrade(trans, path1, path2->locks_want);
1460                 else if (!path1->locks_want && path2->locks_want)
1461                         __bch2_btree_path_upgrade(trans, path1, 1);
1462         }
1463
1464         bch2_trans_unlock(trans);
1465         cond_resched();
1466
1467         if (unlikely(trans->memory_allocation_failure)) {
1468                 struct closure cl;
1469
1470                 closure_init_stack(&cl);
1471
1472                 do {
1473                         ret = bch2_btree_cache_cannibalize_lock(c, &cl);
1474                         closure_sync(&cl);
1475                 } while (ret);
1476         }
1477
1478         /* Now, redo traversals in correct order: */
1479         trans->traverse_all_idx = 0;
1480         while (trans->traverse_all_idx < trans->nr_sorted) {
1481                 path = trans->paths + trans->sorted[trans->traverse_all_idx];
1482
1483                 /*
1484                  * Traversing a path can cause another path to be added at about
1485                  * the same position:
1486                  */
1487                 if (path->uptodate) {
1488                         ret = btree_path_traverse_one(trans, path, 0, _THIS_IP_);
1489                         if (ret == -EINTR || ret == -ENOMEM)
1490                                 goto retry_all;
1491                         if (ret)
1492                                 goto err;
1493                         BUG_ON(path->uptodate);
1494                 } else {
1495                         trans->traverse_all_idx++;
1496                 }
1497         }
1498
1499         /*
1500          * BTREE_ITER_NEED_RELOCK is ok here - if we called bch2_trans_unlock()
1501          * and relock(), relock() won't relock since path->should_be_locked
1502          * isn't set yet, which is all fine
1503          */
1504         trans_for_each_path(trans, path)
1505                 BUG_ON(path->uptodate >= BTREE_ITER_NEED_TRAVERSE);
1506 err:
1507         bch2_btree_cache_cannibalize_unlock(c);
1508
1509         trans->in_traverse_all = false;
1510
1511         trace_trans_traverse_all(trans->fn, trace_ip);
1512         return ret;
1513 }
1514
1515 static inline bool btree_path_good_node(struct btree_trans *trans,
1516                                         struct btree_path *path,
1517                                         unsigned l, int check_pos)
1518 {
1519         if (!is_btree_node(path, l) ||
1520             !bch2_btree_node_relock(trans, path, l))
1521                 return false;
1522
1523         if (check_pos < 0 && btree_path_pos_before_node(path, path->l[l].b))
1524                 return false;
1525         if (check_pos > 0 && btree_path_pos_after_node(path, path->l[l].b))
1526                 return false;
1527         return true;
1528 }
1529
1530 static void btree_path_set_level_up(struct btree_path *path)
1531 {
1532         btree_node_unlock(path, path->level);
1533         path->l[path->level].b = BTREE_ITER_NO_NODE_UP;
1534         path->level++;
1535         btree_path_set_dirty(path, BTREE_ITER_NEED_TRAVERSE);
1536 }
1537
1538 static void btree_path_set_level_down(struct btree_trans *trans,
1539                                       struct btree_path *path,
1540                                       unsigned new_level)
1541 {
1542         unsigned l;
1543
1544         path->level = new_level;
1545
1546         for (l = path->level + 1; l < BTREE_MAX_DEPTH; l++)
1547                 if (btree_lock_want(path, l) == BTREE_NODE_UNLOCKED)
1548                         btree_node_unlock(path, l);
1549
1550         btree_path_set_dirty(path, BTREE_ITER_NEED_TRAVERSE);
1551         bch2_btree_path_verify(trans, path);
1552 }
1553
1554 static inline unsigned btree_path_up_until_good_node(struct btree_trans *trans,
1555                                                      struct btree_path *path,
1556                                                      int check_pos)
1557 {
1558         unsigned i, l = path->level;
1559
1560         while (btree_path_node(path, l) &&
1561                !btree_path_good_node(trans, path, l, check_pos)) {
1562                 btree_node_unlock(path, l);
1563                 path->l[l].b = BTREE_ITER_NO_NODE_UP;
1564                 l++;
1565         }
1566
1567         /* If we need intent locks, take them too: */
1568         for (i = l + 1;
1569              i < path->locks_want && btree_path_node(path, i);
1570              i++)
1571                 if (!bch2_btree_node_relock(trans, path, i))
1572                         while (l <= i) {
1573                                 btree_node_unlock(path, l);
1574                                 path->l[l].b = BTREE_ITER_NO_NODE_UP;
1575                                 l++;
1576                         }
1577
1578         return l;
1579 }
1580
1581 /*
1582  * This is the main state machine for walking down the btree - walks down to a
1583  * specified depth
1584  *
1585  * Returns 0 on success, -EIO on error (error reading in a btree node).
1586  *
1587  * On error, caller (peek_node()/peek_key()) must return NULL; the error is
1588  * stashed in the iterator and returned from bch2_trans_exit().
1589  */
1590 static int btree_path_traverse_one(struct btree_trans *trans,
1591                                    struct btree_path *path,
1592                                    unsigned flags,
1593                                    unsigned long trace_ip)
1594 {
1595         unsigned depth_want = path->level;
1596         int ret = 0;
1597
1598         if (unlikely(trans->restarted)) {
1599                 ret = -EINTR;
1600                 goto out;
1601         }
1602
1603         /*
1604          * Ensure we obey path->should_be_locked: if it's set, we can't unlock
1605          * and re-traverse the path without a transaction restart:
1606          */
1607         if (path->should_be_locked) {
1608                 ret = bch2_btree_path_relock(trans, path, trace_ip) ? 0 : -EINTR;
1609                 goto out;
1610         }
1611
1612         if (path->cached) {
1613                 ret = bch2_btree_path_traverse_cached(trans, path, flags);
1614                 goto out;
1615         }
1616
1617         if (unlikely(path->level >= BTREE_MAX_DEPTH))
1618                 goto out;
1619
1620         path->level = btree_path_up_until_good_node(trans, path, 0);
1621
1622         /*
1623          * Note: path->nodes[path->level] may be temporarily NULL here - that
1624          * would indicate to other code that we got to the end of the btree,
1625          * here it indicates that relocking the root failed - it's critical that
1626          * btree_path_lock_root() comes next and that it can't fail
1627          */
1628         while (path->level > depth_want) {
1629                 ret = btree_path_node(path, path->level)
1630                         ? btree_path_down(trans, path, flags, trace_ip)
1631                         : btree_path_lock_root(trans, path, depth_want, trace_ip);
1632                 if (unlikely(ret)) {
1633                         if (ret == 1) {
1634                                 /*
1635                                  * No nodes at this level - got to the end of
1636                                  * the btree:
1637                                  */
1638                                 ret = 0;
1639                                 goto out;
1640                         }
1641
1642                         __bch2_btree_path_unlock(path);
1643                         path->level = depth_want;
1644
1645                         if (ret == -EIO)
1646                                 path->l[path->level].b =
1647                                         BTREE_ITER_NO_NODE_ERROR;
1648                         else
1649                                 path->l[path->level].b =
1650                                         BTREE_ITER_NO_NODE_DOWN;
1651                         goto out;
1652                 }
1653         }
1654
1655         path->uptodate = BTREE_ITER_UPTODATE;
1656 out:
1657         BUG_ON((ret == -EINTR) != !!trans->restarted);
1658         bch2_btree_path_verify(trans, path);
1659         return ret;
1660 }
1661
1662 int __must_check bch2_btree_path_traverse(struct btree_trans *trans,
1663                                           struct btree_path *path, unsigned flags)
1664 {
1665         if (path->uptodate < BTREE_ITER_NEED_RELOCK)
1666                 return 0;
1667
1668         return  bch2_trans_cond_resched(trans) ?:
1669                 btree_path_traverse_one(trans, path, flags, _RET_IP_);
1670 }
1671
1672 static void btree_path_copy(struct btree_trans *trans, struct btree_path *dst,
1673                             struct btree_path *src)
1674 {
1675         unsigned i, offset = offsetof(struct btree_path, pos);
1676
1677         memcpy((void *) dst + offset,
1678                (void *) src + offset,
1679                sizeof(struct btree_path) - offset);
1680
1681         for (i = 0; i < BTREE_MAX_DEPTH; i++)
1682                 if (btree_node_locked(dst, i))
1683                         six_lock_increment(&dst->l[i].b->c.lock,
1684                                            __btree_lock_want(dst, i));
1685
1686         bch2_btree_path_check_sort(trans, dst, 0);
1687 }
1688
1689 static struct btree_path *btree_path_clone(struct btree_trans *trans, struct btree_path *src,
1690                                            bool intent)
1691 {
1692         struct btree_path *new = btree_path_alloc(trans, src);
1693
1694         btree_path_copy(trans, new, src);
1695         __btree_path_get(new, intent);
1696         return new;
1697 }
1698
1699 inline struct btree_path * __must_check
1700 bch2_btree_path_make_mut(struct btree_trans *trans,
1701                          struct btree_path *path, bool intent,
1702                          unsigned long ip)
1703 {
1704         if (path->ref > 1 || path->preserve) {
1705                 __btree_path_put(path, intent);
1706                 path = btree_path_clone(trans, path, intent);
1707                 path->preserve = false;
1708 #ifdef CONFIG_BCACHEFS_DEBUG
1709                 path->ip_allocated = ip;
1710 #endif
1711                 btree_trans_verify_sorted(trans);
1712         }
1713
1714         path->should_be_locked = false;
1715         return path;
1716 }
1717
1718 struct btree_path * __must_check
1719 bch2_btree_path_set_pos(struct btree_trans *trans,
1720                    struct btree_path *path, struct bpos new_pos,
1721                    bool intent, unsigned long ip)
1722 {
1723         int cmp = bpos_cmp(new_pos, path->pos);
1724         unsigned l = path->level;
1725
1726         EBUG_ON(trans->restarted);
1727         EBUG_ON(!path->ref);
1728
1729         if (!cmp)
1730                 return path;
1731
1732         path = bch2_btree_path_make_mut(trans, path, intent, ip);
1733
1734         path->pos = new_pos;
1735
1736         bch2_btree_path_check_sort(trans, path, cmp);
1737
1738         if (unlikely(path->cached)) {
1739                 btree_node_unlock(path, 0);
1740                 path->l[0].b = BTREE_ITER_NO_NODE_CACHED;
1741                 btree_path_set_dirty(path, BTREE_ITER_NEED_TRAVERSE);
1742                 goto out;
1743         }
1744
1745         l = btree_path_up_until_good_node(trans, path, cmp);
1746
1747         if (btree_path_node(path, l)) {
1748                 BUG_ON(!btree_node_locked(path, l));
1749                 /*
1750                  * We might have to skip over many keys, or just a few: try
1751                  * advancing the node iterator, and if we have to skip over too
1752                  * many keys just reinit it (or if we're rewinding, since that
1753                  * is expensive).
1754                  */
1755                 if (cmp < 0 ||
1756                     !btree_path_advance_to_pos(path, &path->l[l], 8))
1757                         __btree_path_level_init(path, l);
1758         }
1759
1760         if (l != path->level) {
1761                 btree_path_set_dirty(path, BTREE_ITER_NEED_TRAVERSE);
1762                 __bch2_btree_path_unlock(path);
1763         }
1764 out:
1765         bch2_btree_path_verify(trans, path);
1766         return path;
1767 }
1768
1769 /* Btree path: main interface: */
1770
1771 static struct btree_path *have_path_at_pos(struct btree_trans *trans, struct btree_path *path)
1772 {
1773         struct btree_path *next;
1774
1775         next = prev_btree_path(trans, path);
1776         if (next && !btree_path_cmp(next, path))
1777                 return next;
1778
1779         next = next_btree_path(trans, path);
1780         if (next && !btree_path_cmp(next, path))
1781                 return next;
1782
1783         return NULL;
1784 }
1785
1786 static struct btree_path *have_node_at_pos(struct btree_trans *trans, struct btree_path *path)
1787 {
1788         struct btree_path *next;
1789
1790         next = prev_btree_path(trans, path);
1791         if (next && next->level == path->level && path_l(next)->b == path_l(path)->b)
1792                 return next;
1793
1794         next = next_btree_path(trans, path);
1795         if (next && next->level == path->level && path_l(next)->b == path_l(path)->b)
1796                 return next;
1797
1798         return NULL;
1799 }
1800
1801 static inline void __bch2_path_free(struct btree_trans *trans, struct btree_path *path)
1802 {
1803         __bch2_btree_path_unlock(path);
1804         btree_path_list_remove(trans, path);
1805         trans->paths_allocated &= ~(1ULL << path->idx);
1806 }
1807
1808 void bch2_path_put(struct btree_trans *trans, struct btree_path *path, bool intent)
1809 {
1810         struct btree_path *dup;
1811
1812         EBUG_ON(trans->paths + path->idx != path);
1813         EBUG_ON(!path->ref);
1814
1815         if (!__btree_path_put(path, intent))
1816                 return;
1817
1818         /*
1819          * Perhaps instead we should check for duplicate paths in traverse_all:
1820          */
1821         if (path->preserve &&
1822             (dup = have_path_at_pos(trans, path))) {
1823                 dup->preserve = true;
1824                 path->preserve = false;
1825                 goto free;
1826         }
1827
1828         if (!path->preserve &&
1829             (dup = have_node_at_pos(trans, path)))
1830                 goto free;
1831         return;
1832 free:
1833         if (path->should_be_locked &&
1834             !btree_node_locked(dup, path->level))
1835                 return;
1836
1837         dup->should_be_locked |= path->should_be_locked;
1838         __bch2_path_free(trans, path);
1839 }
1840
1841 void bch2_trans_updates_to_text(struct printbuf *buf, struct btree_trans *trans)
1842 {
1843         struct btree_insert_entry *i;
1844
1845         prt_printf(buf, "transaction updates for %s journal seq %llu",
1846                trans->fn, trans->journal_res.seq);
1847         prt_newline(buf);
1848         printbuf_indent_add(buf, 2);
1849
1850         trans_for_each_update(trans, i) {
1851                 struct bkey_s_c old = { &i->old_k, i->old_v };
1852
1853                 prt_printf(buf, "update: btree=%s cached=%u %pS",
1854                        bch2_btree_ids[i->btree_id],
1855                        i->cached,
1856                        (void *) i->ip_allocated);
1857                 prt_newline(buf);
1858
1859                 prt_printf(buf, "  old ");
1860                 bch2_bkey_val_to_text(buf, trans->c, old);
1861                 prt_newline(buf);
1862
1863                 prt_printf(buf, "  new ");
1864                 bch2_bkey_val_to_text(buf, trans->c, bkey_i_to_s_c(i->k));
1865                 prt_newline(buf);
1866         }
1867
1868         printbuf_indent_sub(buf, 2);
1869 }
1870
1871 noinline __cold
1872 void bch2_dump_trans_updates(struct btree_trans *trans)
1873 {
1874         struct printbuf buf = PRINTBUF;
1875
1876         bch2_trans_updates_to_text(&buf, trans);
1877         bch_err(trans->c, "%s", buf.buf);
1878         printbuf_exit(&buf);
1879 }
1880
1881 noinline __cold
1882 void bch2_dump_trans_paths_updates(struct btree_trans *trans)
1883 {
1884         struct btree_path *path;
1885         struct printbuf buf = PRINTBUF;
1886         unsigned idx;
1887
1888         trans_for_each_path_inorder(trans, path, idx) {
1889                 printbuf_reset(&buf);
1890
1891                 bch2_bpos_to_text(&buf, path->pos);
1892
1893                 printk(KERN_ERR "path: idx %u ref %u:%u%s%s btree=%s l=%u pos %s locks %u %pS\n",
1894                        path->idx, path->ref, path->intent_ref,
1895                        path->should_be_locked ? " S" : "",
1896                        path->preserve ? " P" : "",
1897                        bch2_btree_ids[path->btree_id],
1898                        path->level,
1899                        buf.buf,
1900                        path->nodes_locked,
1901 #ifdef CONFIG_BCACHEFS_DEBUG
1902                        (void *) path->ip_allocated
1903 #else
1904                        NULL
1905 #endif
1906                        );
1907         }
1908
1909         printbuf_exit(&buf);
1910
1911         bch2_dump_trans_updates(trans);
1912 }
1913
1914 static struct btree_path *btree_path_alloc(struct btree_trans *trans,
1915                                            struct btree_path *pos)
1916 {
1917         struct btree_path *path;
1918         unsigned idx;
1919
1920         if (unlikely(trans->paths_allocated ==
1921                      ~((~0ULL << 1) << (BTREE_ITER_MAX - 1)))) {
1922                 bch2_dump_trans_paths_updates(trans);
1923                 panic("trans path oveflow\n");
1924         }
1925
1926         idx = __ffs64(~trans->paths_allocated);
1927         trans->paths_allocated |= 1ULL << idx;
1928
1929         path = &trans->paths[idx];
1930
1931         path->idx               = idx;
1932         path->ref               = 0;
1933         path->intent_ref        = 0;
1934         path->nodes_locked      = 0;
1935         path->nodes_intent_locked = 0;
1936
1937         btree_path_list_add(trans, pos, path);
1938         return path;
1939 }
1940
1941 struct btree_path *bch2_path_get(struct btree_trans *trans,
1942                                  enum btree_id btree_id, struct bpos pos,
1943                                  unsigned locks_want, unsigned level,
1944                                  unsigned flags, unsigned long ip)
1945 {
1946         struct btree_path *path, *path_pos = NULL;
1947         bool cached = flags & BTREE_ITER_CACHED;
1948         bool intent = flags & BTREE_ITER_INTENT;
1949         int i;
1950
1951         BUG_ON(trans->restarted);
1952         btree_trans_verify_sorted(trans);
1953         bch2_trans_verify_locks(trans);
1954
1955         trans_for_each_path_inorder(trans, path, i) {
1956                 if (__btree_path_cmp(path,
1957                                      btree_id,
1958                                      cached,
1959                                      pos,
1960                                      level) > 0)
1961                         break;
1962
1963                 path_pos = path;
1964         }
1965
1966         if (path_pos &&
1967             path_pos->cached    == cached &&
1968             path_pos->btree_id  == btree_id &&
1969             path_pos->level     == level) {
1970                 __btree_path_get(path_pos, intent);
1971                 path = bch2_btree_path_set_pos(trans, path_pos, pos, intent, ip);
1972         } else {
1973                 path = btree_path_alloc(trans, path_pos);
1974                 path_pos = NULL;
1975
1976                 __btree_path_get(path, intent);
1977                 path->pos                       = pos;
1978                 path->btree_id                  = btree_id;
1979                 path->cached                    = cached;
1980                 path->uptodate                  = BTREE_ITER_NEED_TRAVERSE;
1981                 path->should_be_locked          = false;
1982                 path->level                     = level;
1983                 path->locks_want                = locks_want;
1984                 path->nodes_locked              = 0;
1985                 path->nodes_intent_locked       = 0;
1986                 for (i = 0; i < ARRAY_SIZE(path->l); i++)
1987                         path->l[i].b            = BTREE_ITER_NO_NODE_INIT;
1988 #ifdef CONFIG_BCACHEFS_DEBUG
1989                 path->ip_allocated              = ip;
1990 #endif
1991                 btree_trans_verify_sorted(trans);
1992         }
1993
1994         if (!(flags & BTREE_ITER_NOPRESERVE))
1995                 path->preserve = true;
1996
1997         if (path->intent_ref)
1998                 locks_want = max(locks_want, level + 1);
1999
2000         /*
2001          * If the path has locks_want greater than requested, we don't downgrade
2002          * it here - on transaction restart because btree node split needs to
2003          * upgrade locks, we might be putting/getting the iterator again.
2004          * Downgrading iterators only happens via bch2_trans_downgrade(), after
2005          * a successful transaction commit.
2006          */
2007
2008         locks_want = min(locks_want, BTREE_MAX_DEPTH);
2009         if (locks_want > path->locks_want) {
2010                 path->locks_want = locks_want;
2011                 btree_path_get_locks(trans, path, true);
2012         }
2013
2014         return path;
2015 }
2016
2017 inline struct bkey_s_c bch2_btree_path_peek_slot(struct btree_path *path, struct bkey *u)
2018 {
2019
2020         struct bkey_s_c k;
2021
2022         if (!path->cached) {
2023                 struct btree_path_level *l = path_l(path);
2024                 struct bkey_packed *_k;
2025
2026                 EBUG_ON(path->uptodate != BTREE_ITER_UPTODATE);
2027
2028                 _k = bch2_btree_node_iter_peek_all(&l->iter, l->b);
2029                 k = _k ? bkey_disassemble(l->b, _k, u) : bkey_s_c_null;
2030
2031                 EBUG_ON(k.k && bkey_deleted(k.k) && bpos_cmp(k.k->p, path->pos) == 0);
2032
2033                 if (!k.k || bpos_cmp(path->pos, k.k->p))
2034                         goto hole;
2035         } else {
2036                 struct bkey_cached *ck = (void *) path->l[0].b;
2037
2038                 EBUG_ON(ck &&
2039                         (path->btree_id != ck->key.btree_id ||
2040                          bkey_cmp(path->pos, ck->key.pos)));
2041
2042                 /* BTREE_ITER_CACHED_NOFILL|BTREE_ITER_CACHED_NOCREATE? */
2043                 if (unlikely(!ck || !ck->valid))
2044                         return bkey_s_c_null;
2045
2046                 EBUG_ON(path->uptodate != BTREE_ITER_UPTODATE);
2047
2048                 *u = ck->k->k;
2049                 k = bkey_i_to_s_c(ck->k);
2050         }
2051
2052         return k;
2053 hole:
2054         bkey_init(u);
2055         u->p = path->pos;
2056         return (struct bkey_s_c) { u, NULL };
2057 }
2058
2059 /* Btree iterators: */
2060
2061 int __must_check
2062 __bch2_btree_iter_traverse(struct btree_iter *iter)
2063 {
2064         return bch2_btree_path_traverse(iter->trans, iter->path, iter->flags);
2065 }
2066
2067 int __must_check
2068 bch2_btree_iter_traverse(struct btree_iter *iter)
2069 {
2070         int ret;
2071
2072         iter->path = bch2_btree_path_set_pos(iter->trans, iter->path,
2073                                         btree_iter_search_key(iter),
2074                                         iter->flags & BTREE_ITER_INTENT,
2075                                         btree_iter_ip_allocated(iter));
2076
2077         ret = bch2_btree_path_traverse(iter->trans, iter->path, iter->flags);
2078         if (ret)
2079                 return ret;
2080
2081         iter->path->should_be_locked = true;
2082         return 0;
2083 }
2084
2085 /* Iterate across nodes (leaf and interior nodes) */
2086
2087 struct btree *bch2_btree_iter_peek_node(struct btree_iter *iter)
2088 {
2089         struct btree_trans *trans = iter->trans;
2090         struct btree *b = NULL;
2091         int ret;
2092
2093         EBUG_ON(iter->path->cached);
2094         bch2_btree_iter_verify(iter);
2095
2096         ret = bch2_btree_path_traverse(trans, iter->path, iter->flags);
2097         if (ret)
2098                 goto err;
2099
2100         b = btree_path_node(iter->path, iter->path->level);
2101         if (!b)
2102                 goto out;
2103
2104         BUG_ON(bpos_cmp(b->key.k.p, iter->pos) < 0);
2105
2106         bkey_init(&iter->k);
2107         iter->k.p = iter->pos = b->key.k.p;
2108
2109         iter->path = bch2_btree_path_set_pos(trans, iter->path, b->key.k.p,
2110                                         iter->flags & BTREE_ITER_INTENT,
2111                                         btree_iter_ip_allocated(iter));
2112         iter->path->should_be_locked = true;
2113         BUG_ON(iter->path->uptodate);
2114 out:
2115         bch2_btree_iter_verify_entry_exit(iter);
2116         bch2_btree_iter_verify(iter);
2117
2118         return b;
2119 err:
2120         b = ERR_PTR(ret);
2121         goto out;
2122 }
2123
2124 struct btree *bch2_btree_iter_next_node(struct btree_iter *iter)
2125 {
2126         struct btree_trans *trans = iter->trans;
2127         struct btree_path *path = iter->path;
2128         struct btree *b = NULL;
2129         int ret;
2130
2131         BUG_ON(trans->restarted);
2132         EBUG_ON(iter->path->cached);
2133         bch2_btree_iter_verify(iter);
2134
2135         /* already at end? */
2136         if (!btree_path_node(path, path->level))
2137                 return NULL;
2138
2139         /* got to end? */
2140         if (!btree_path_node(path, path->level + 1)) {
2141                 btree_path_set_level_up(path);
2142                 return NULL;
2143         }
2144
2145         if (!bch2_btree_node_relock(trans, path, path->level + 1)) {
2146                 __bch2_btree_path_unlock(path);
2147                 path->l[path->level].b = BTREE_ITER_NO_NODE_GET_LOCKS;
2148                 path->l[path->level + 1].b = BTREE_ITER_NO_NODE_GET_LOCKS;
2149                 btree_path_set_dirty(path, BTREE_ITER_NEED_TRAVERSE);
2150                 trace_trans_restart_relock_next_node(trans->fn, _THIS_IP_,
2151                                            path->btree_id, &path->pos);
2152                 btree_trans_restart(trans);
2153                 ret = -EINTR;
2154                 goto err;
2155         }
2156
2157         b = btree_path_node(path, path->level + 1);
2158
2159         if (!bpos_cmp(iter->pos, b->key.k.p)) {
2160                 btree_node_unlock(path, path->level);
2161                 path->l[path->level].b = BTREE_ITER_NO_NODE_UP;
2162                 path->level++;
2163         } else {
2164                 /*
2165                  * Haven't gotten to the end of the parent node: go back down to
2166                  * the next child node
2167                  */
2168                 path = iter->path =
2169                         bch2_btree_path_set_pos(trans, path, bpos_successor(iter->pos),
2170                                            iter->flags & BTREE_ITER_INTENT,
2171                                            btree_iter_ip_allocated(iter));
2172
2173                 btree_path_set_level_down(trans, path, iter->min_depth);
2174
2175                 ret = bch2_btree_path_traverse(trans, path, iter->flags);
2176                 if (ret)
2177                         goto err;
2178
2179                 b = path->l[path->level].b;
2180         }
2181
2182         bkey_init(&iter->k);
2183         iter->k.p = iter->pos = b->key.k.p;
2184
2185         iter->path = bch2_btree_path_set_pos(trans, iter->path, b->key.k.p,
2186                                         iter->flags & BTREE_ITER_INTENT,
2187                                         btree_iter_ip_allocated(iter));
2188         iter->path->should_be_locked = true;
2189         BUG_ON(iter->path->uptodate);
2190 out:
2191         bch2_btree_iter_verify_entry_exit(iter);
2192         bch2_btree_iter_verify(iter);
2193
2194         return b;
2195 err:
2196         b = ERR_PTR(ret);
2197         goto out;
2198 }
2199
2200 /* Iterate across keys (in leaf nodes only) */
2201
2202 inline bool bch2_btree_iter_advance(struct btree_iter *iter)
2203 {
2204         if (likely(!(iter->flags & BTREE_ITER_ALL_LEVELS))) {
2205                 struct bpos pos = iter->k.p;
2206                 bool ret = (iter->flags & BTREE_ITER_ALL_SNAPSHOTS
2207                             ? bpos_cmp(pos, SPOS_MAX)
2208                             : bkey_cmp(pos, SPOS_MAX)) != 0;
2209
2210                 if (ret && !(iter->flags & BTREE_ITER_IS_EXTENTS))
2211                         pos = bkey_successor(iter, pos);
2212                 bch2_btree_iter_set_pos(iter, pos);
2213                 return ret;
2214         } else {
2215                 if (!btree_path_node(iter->path, iter->path->level))
2216                         return true;
2217
2218                 iter->advanced = true;
2219                 return false;
2220         }
2221 }
2222
2223 inline bool bch2_btree_iter_rewind(struct btree_iter *iter)
2224 {
2225         struct bpos pos = bkey_start_pos(&iter->k);
2226         bool ret = (iter->flags & BTREE_ITER_ALL_SNAPSHOTS
2227                     ? bpos_cmp(pos, POS_MIN)
2228                     : bkey_cmp(pos, POS_MIN)) != 0;
2229
2230         if (ret && !(iter->flags & BTREE_ITER_IS_EXTENTS))
2231                 pos = bkey_predecessor(iter, pos);
2232         bch2_btree_iter_set_pos(iter, pos);
2233         return ret;
2234 }
2235
2236 static inline struct bkey_i *btree_trans_peek_updates(struct btree_trans *trans,
2237                                                       enum btree_id btree_id,
2238                                                       struct bpos pos)
2239 {
2240         struct btree_insert_entry *i;
2241         struct bkey_i *ret = NULL;
2242
2243         trans_for_each_update(trans, i) {
2244                 if (i->btree_id < btree_id)
2245                         continue;
2246                 if (i->btree_id > btree_id)
2247                         break;
2248                 if (bpos_cmp(i->k->k.p, pos) < 0)
2249                         continue;
2250                 if (i->key_cache_already_flushed)
2251                         continue;
2252                 if (!ret || bpos_cmp(i->k->k.p, ret->k.p) < 0)
2253                         ret = i->k;
2254         }
2255
2256         return ret;
2257 }
2258
2259 struct bkey_i *bch2_btree_journal_peek(struct btree_trans *trans,
2260                                        struct btree_iter *iter,
2261                                        struct bpos start_pos,
2262                                        struct bpos end_pos)
2263 {
2264         struct bkey_i *k;
2265
2266         if (bpos_cmp(start_pos, iter->journal_pos) < 0)
2267                 iter->journal_idx = 0;
2268
2269         k = bch2_journal_keys_peek_upto(trans->c, iter->btree_id, 0,
2270                                         start_pos, end_pos,
2271                                         &iter->journal_idx);
2272
2273         iter->journal_pos = k ? k->k.p : end_pos;
2274         return k;
2275 }
2276
2277 struct bkey_i *bch2_btree_journal_peek_slot(struct btree_trans *trans,
2278                                             struct btree_iter *iter,
2279                                             struct bpos pos)
2280 {
2281         return bch2_btree_journal_peek(trans, iter, pos, pos);
2282 }
2283
2284 static noinline
2285 struct bkey_s_c btree_trans_peek_journal(struct btree_trans *trans,
2286                                          struct btree_iter *iter,
2287                                          struct bkey_s_c k)
2288 {
2289         struct bkey_i *next_journal =
2290                 bch2_btree_journal_peek(trans, iter, iter->path->pos,
2291                                 k.k ? k.k->p : iter->path->l[0].b->key.k.p);
2292
2293         if (next_journal) {
2294                 iter->k = next_journal->k;
2295                 k = bkey_i_to_s_c(next_journal);
2296         }
2297
2298         return k;
2299 }
2300
2301 /*
2302  * Checks btree key cache for key at iter->pos and returns it if present, or
2303  * bkey_s_c_null:
2304  */
2305 static noinline
2306 struct bkey_s_c btree_trans_peek_key_cache(struct btree_iter *iter, struct bpos pos)
2307 {
2308         struct btree_trans *trans = iter->trans;
2309         struct bch_fs *c = trans->c;
2310         struct bkey u;
2311         int ret;
2312
2313         if (!bch2_btree_key_cache_find(c, iter->btree_id, pos))
2314                 return bkey_s_c_null;
2315
2316         if (!iter->key_cache_path)
2317                 iter->key_cache_path = bch2_path_get(trans, iter->btree_id, pos,
2318                                                      iter->flags & BTREE_ITER_INTENT, 0,
2319                                                      iter->flags|BTREE_ITER_CACHED,
2320                                                      _THIS_IP_);
2321
2322         iter->key_cache_path = bch2_btree_path_set_pos(trans, iter->key_cache_path, pos,
2323                                         iter->flags & BTREE_ITER_INTENT,
2324                                         btree_iter_ip_allocated(iter));
2325
2326         ret = bch2_btree_path_traverse(trans, iter->key_cache_path, iter->flags|BTREE_ITER_CACHED);
2327         if (unlikely(ret))
2328                 return bkey_s_c_err(ret);
2329
2330         iter->key_cache_path->should_be_locked = true;
2331
2332         return bch2_btree_path_peek_slot(iter->key_cache_path, &u);
2333 }
2334
2335 static struct bkey_s_c __bch2_btree_iter_peek(struct btree_iter *iter, struct bpos search_key)
2336 {
2337         struct btree_trans *trans = iter->trans;
2338         struct bkey_i *next_update;
2339         struct bkey_s_c k, k2;
2340         int ret;
2341
2342         EBUG_ON(iter->path->cached || iter->path->level);
2343         bch2_btree_iter_verify(iter);
2344
2345         while (1) {
2346                 iter->path = bch2_btree_path_set_pos(trans, iter->path, search_key,
2347                                         iter->flags & BTREE_ITER_INTENT,
2348                                         btree_iter_ip_allocated(iter));
2349
2350                 ret = bch2_btree_path_traverse(trans, iter->path, iter->flags);
2351                 if (unlikely(ret)) {
2352                         /* ensure that iter->k is consistent with iter->pos: */
2353                         bch2_btree_iter_set_pos(iter, iter->pos);
2354                         k = bkey_s_c_err(ret);
2355                         goto out;
2356                 }
2357
2358                 iter->path->should_be_locked = true;
2359
2360                 k = btree_path_level_peek_all(trans->c, &iter->path->l[0], &iter->k);
2361
2362                 if (unlikely(iter->flags & BTREE_ITER_WITH_KEY_CACHE) &&
2363                     k.k &&
2364                     (k2 = btree_trans_peek_key_cache(iter, k.k->p)).k) {
2365                         ret = bkey_err(k2);
2366                         if (ret) {
2367                                 k = k2;
2368                                 bch2_btree_iter_set_pos(iter, iter->pos);
2369                                 goto out;
2370                         }
2371
2372                         k = k2;
2373                         iter->k = *k.k;
2374                 }
2375
2376                 if (unlikely(iter->flags & BTREE_ITER_WITH_JOURNAL))
2377                         k = btree_trans_peek_journal(trans, iter, k);
2378
2379                 next_update = iter->flags & BTREE_ITER_WITH_UPDATES
2380                         ? btree_trans_peek_updates(trans, iter->btree_id, search_key)
2381                         : NULL;
2382                 if (next_update &&
2383                     bpos_cmp(next_update->k.p,
2384                              k.k ? k.k->p : iter->path->l[0].b->key.k.p) <= 0) {
2385                         iter->k = next_update->k;
2386                         k = bkey_i_to_s_c(next_update);
2387                 }
2388
2389                 if (k.k && bkey_deleted(k.k)) {
2390                         /*
2391                          * If we've got a whiteout, and it's after the search
2392                          * key, advance the search key to the whiteout instead
2393                          * of just after the whiteout - it might be a btree
2394                          * whiteout, with a real key at the same position, since
2395                          * in the btree deleted keys sort before non deleted.
2396                          */
2397                         search_key = bpos_cmp(search_key, k.k->p)
2398                                 ? k.k->p
2399                                 : bpos_successor(k.k->p);
2400                         continue;
2401                 }
2402
2403                 if (likely(k.k)) {
2404                         break;
2405                 } else if (likely(bpos_cmp(iter->path->l[0].b->key.k.p, SPOS_MAX))) {
2406                         /* Advance to next leaf node: */
2407                         search_key = bpos_successor(iter->path->l[0].b->key.k.p);
2408                 } else {
2409                         /* End of btree: */
2410                         bch2_btree_iter_set_pos(iter, SPOS_MAX);
2411                         k = bkey_s_c_null;
2412                         goto out;
2413                 }
2414         }
2415 out:
2416         bch2_btree_iter_verify(iter);
2417
2418         return k;
2419 }
2420
2421 /**
2422  * bch2_btree_iter_peek: returns first key greater than or equal to iterator's
2423  * current position
2424  */
2425 struct bkey_s_c bch2_btree_iter_peek_upto(struct btree_iter *iter, struct bpos end)
2426 {
2427         struct btree_trans *trans = iter->trans;
2428         struct bpos search_key = btree_iter_search_key(iter);
2429         struct bkey_s_c k;
2430         struct bpos iter_pos;
2431         int ret;
2432
2433         EBUG_ON(iter->flags & BTREE_ITER_ALL_LEVELS);
2434
2435         if (iter->update_path) {
2436                 bch2_path_put(trans, iter->update_path,
2437                               iter->flags & BTREE_ITER_INTENT);
2438                 iter->update_path = NULL;
2439         }
2440
2441         bch2_btree_iter_verify_entry_exit(iter);
2442
2443         while (1) {
2444                 k = __bch2_btree_iter_peek(iter, search_key);
2445                 if (!k.k || bkey_err(k))
2446                         goto out;
2447
2448                 /*
2449                  * iter->pos should be mononotically increasing, and always be
2450                  * equal to the key we just returned - except extents can
2451                  * straddle iter->pos:
2452                  */
2453                 if (!(iter->flags & BTREE_ITER_IS_EXTENTS))
2454                         iter_pos = k.k->p;
2455                 else if (bkey_cmp(bkey_start_pos(k.k), iter->pos) > 0)
2456                         iter_pos = bkey_start_pos(k.k);
2457                 else
2458                         iter_pos = iter->pos;
2459
2460                 if (bkey_cmp(iter_pos, end) > 0) {
2461                         bch2_btree_iter_set_pos(iter, end);
2462                         k = bkey_s_c_null;
2463                         goto out;
2464                 }
2465
2466                 if (iter->update_path &&
2467                     bkey_cmp(iter->update_path->pos, k.k->p)) {
2468                         bch2_path_put(trans, iter->update_path,
2469                                       iter->flags & BTREE_ITER_INTENT);
2470                         iter->update_path = NULL;
2471                 }
2472
2473                 if ((iter->flags & BTREE_ITER_FILTER_SNAPSHOTS) &&
2474                     (iter->flags & BTREE_ITER_INTENT) &&
2475                     !(iter->flags & BTREE_ITER_IS_EXTENTS) &&
2476                     !iter->update_path) {
2477                         struct bpos pos = k.k->p;
2478
2479                         if (pos.snapshot < iter->snapshot) {
2480                                 search_key = bpos_successor(k.k->p);
2481                                 continue;
2482                         }
2483
2484                         pos.snapshot = iter->snapshot;
2485
2486                         /*
2487                          * advance, same as on exit for iter->path, but only up
2488                          * to snapshot
2489                          */
2490                         __btree_path_get(iter->path, iter->flags & BTREE_ITER_INTENT);
2491                         iter->update_path = iter->path;
2492
2493                         iter->update_path = bch2_btree_path_set_pos(trans,
2494                                                 iter->update_path, pos,
2495                                                 iter->flags & BTREE_ITER_INTENT,
2496                                                 _THIS_IP_);
2497                 }
2498
2499                 /*
2500                  * We can never have a key in a leaf node at POS_MAX, so
2501                  * we don't have to check these successor() calls:
2502                  */
2503                 if ((iter->flags & BTREE_ITER_FILTER_SNAPSHOTS) &&
2504                     !bch2_snapshot_is_ancestor(trans->c,
2505                                                iter->snapshot,
2506                                                k.k->p.snapshot)) {
2507                         search_key = bpos_successor(k.k->p);
2508                         continue;
2509                 }
2510
2511                 if (bkey_whiteout(k.k) &&
2512                     !(iter->flags & BTREE_ITER_ALL_SNAPSHOTS)) {
2513                         search_key = bkey_successor(iter, k.k->p);
2514                         continue;
2515                 }
2516
2517                 break;
2518         }
2519
2520         iter->pos = iter_pos;
2521
2522         iter->path = bch2_btree_path_set_pos(trans, iter->path, k.k->p,
2523                                 iter->flags & BTREE_ITER_INTENT,
2524                                 btree_iter_ip_allocated(iter));
2525         BUG_ON(!iter->path->nodes_locked);
2526 out:
2527         if (iter->update_path) {
2528                 if (iter->update_path->uptodate &&
2529                     !bch2_btree_path_relock(trans, iter->update_path, _THIS_IP_)) {
2530                         k = bkey_s_c_err(-EINTR);
2531                 } else {
2532                         BUG_ON(!(iter->update_path->nodes_locked & 1));
2533                         iter->update_path->should_be_locked = true;
2534                 }
2535         }
2536         iter->path->should_be_locked = true;
2537
2538         if (!(iter->flags & BTREE_ITER_ALL_SNAPSHOTS))
2539                 iter->pos.snapshot = iter->snapshot;
2540
2541         ret = bch2_btree_iter_verify_ret(iter, k);
2542         if (unlikely(ret)) {
2543                 bch2_btree_iter_set_pos(iter, iter->pos);
2544                 k = bkey_s_c_err(ret);
2545         }
2546
2547         bch2_btree_iter_verify_entry_exit(iter);
2548
2549         return k;
2550 }
2551
2552 /**
2553  * bch2_btree_iter_peek_all_levels: returns the first key greater than or equal
2554  * to iterator's current position, returning keys from every level of the btree.
2555  * For keys at different levels of the btree that compare equal, the key from
2556  * the lower level (leaf) is returned first.
2557  */
2558 struct bkey_s_c bch2_btree_iter_peek_all_levels(struct btree_iter *iter)
2559 {
2560         struct btree_trans *trans = iter->trans;
2561         struct bkey_s_c k;
2562         int ret;
2563
2564         EBUG_ON(iter->path->cached);
2565         bch2_btree_iter_verify(iter);
2566         BUG_ON(iter->path->level < iter->min_depth);
2567         BUG_ON(!(iter->flags & BTREE_ITER_ALL_SNAPSHOTS));
2568         EBUG_ON(!(iter->flags & BTREE_ITER_ALL_LEVELS));
2569
2570         while (1) {
2571                 iter->path = bch2_btree_path_set_pos(trans, iter->path, iter->pos,
2572                                         iter->flags & BTREE_ITER_INTENT,
2573                                         btree_iter_ip_allocated(iter));
2574
2575                 ret = bch2_btree_path_traverse(trans, iter->path, iter->flags);
2576                 if (unlikely(ret)) {
2577                         /* ensure that iter->k is consistent with iter->pos: */
2578                         bch2_btree_iter_set_pos(iter, iter->pos);
2579                         k = bkey_s_c_err(ret);
2580                         goto out;
2581                 }
2582
2583                 /* Already at end? */
2584                 if (!btree_path_node(iter->path, iter->path->level)) {
2585                         k = bkey_s_c_null;
2586                         goto out;
2587                 }
2588
2589                 k = btree_path_level_peek_all(trans->c,
2590                                 &iter->path->l[iter->path->level], &iter->k);
2591
2592                 /* Check if we should go up to the parent node: */
2593                 if (!k.k ||
2594                     (iter->advanced &&
2595                      !bpos_cmp(path_l(iter->path)->b->key.k.p, iter->pos))) {
2596                         iter->pos = path_l(iter->path)->b->key.k.p;
2597                         btree_path_set_level_up(iter->path);
2598                         iter->advanced = false;
2599                         continue;
2600                 }
2601
2602                 /*
2603                  * Check if we should go back down to a leaf:
2604                  * If we're not in a leaf node, we only return the current key
2605                  * if it exactly matches iter->pos - otherwise we first have to
2606                  * go back to the leaf:
2607                  */
2608                 if (iter->path->level != iter->min_depth &&
2609                     (iter->advanced ||
2610                      !k.k ||
2611                      bpos_cmp(iter->pos, k.k->p))) {
2612                         btree_path_set_level_down(trans, iter->path, iter->min_depth);
2613                         iter->pos = bpos_successor(iter->pos);
2614                         iter->advanced = false;
2615                         continue;
2616                 }
2617
2618                 /* Check if we should go to the next key: */
2619                 if (iter->path->level == iter->min_depth &&
2620                     iter->advanced &&
2621                     k.k &&
2622                     !bpos_cmp(iter->pos, k.k->p)) {
2623                         iter->pos = bpos_successor(iter->pos);
2624                         iter->advanced = false;
2625                         continue;
2626                 }
2627
2628                 if (iter->advanced &&
2629                     iter->path->level == iter->min_depth &&
2630                     bpos_cmp(k.k->p, iter->pos))
2631                         iter->advanced = false;
2632
2633                 BUG_ON(iter->advanced);
2634                 BUG_ON(!k.k);
2635                 break;
2636         }
2637
2638         iter->pos = k.k->p;
2639 out:
2640         iter->path->should_be_locked = true;
2641         bch2_btree_iter_verify(iter);
2642
2643         return k;
2644 }
2645
2646 /**
2647  * bch2_btree_iter_next: returns first key greater than iterator's current
2648  * position
2649  */
2650 struct bkey_s_c bch2_btree_iter_next(struct btree_iter *iter)
2651 {
2652         if (!bch2_btree_iter_advance(iter))
2653                 return bkey_s_c_null;
2654
2655         return bch2_btree_iter_peek(iter);
2656 }
2657
2658 /**
2659  * bch2_btree_iter_peek_prev: returns first key less than or equal to
2660  * iterator's current position
2661  */
2662 struct bkey_s_c bch2_btree_iter_peek_prev(struct btree_iter *iter)
2663 {
2664         struct btree_trans *trans = iter->trans;
2665         struct bpos search_key = iter->pos;
2666         struct btree_path *saved_path = NULL;
2667         struct bkey_s_c k;
2668         struct bkey saved_k;
2669         const struct bch_val *saved_v;
2670         int ret;
2671
2672         EBUG_ON(iter->path->cached || iter->path->level);
2673         EBUG_ON(iter->flags & BTREE_ITER_WITH_UPDATES);
2674
2675         if (iter->flags & BTREE_ITER_WITH_JOURNAL)
2676                 return bkey_s_c_err(-EIO);
2677
2678         bch2_btree_iter_verify(iter);
2679         bch2_btree_iter_verify_entry_exit(iter);
2680
2681         if (iter->flags & BTREE_ITER_FILTER_SNAPSHOTS)
2682                 search_key.snapshot = U32_MAX;
2683
2684         while (1) {
2685                 iter->path = bch2_btree_path_set_pos(trans, iter->path, search_key,
2686                                                 iter->flags & BTREE_ITER_INTENT,
2687                                                 btree_iter_ip_allocated(iter));
2688
2689                 ret = bch2_btree_path_traverse(trans, iter->path, iter->flags);
2690                 if (unlikely(ret)) {
2691                         /* ensure that iter->k is consistent with iter->pos: */
2692                         bch2_btree_iter_set_pos(iter, iter->pos);
2693                         k = bkey_s_c_err(ret);
2694                         goto out;
2695                 }
2696
2697                 k = btree_path_level_peek(trans->c, iter->path,
2698                                           &iter->path->l[0], &iter->k);
2699                 if (!k.k ||
2700                     ((iter->flags & BTREE_ITER_IS_EXTENTS)
2701                      ? bpos_cmp(bkey_start_pos(k.k), search_key) >= 0
2702                      : bpos_cmp(k.k->p, search_key) > 0))
2703                         k = btree_path_level_prev(trans->c, iter->path,
2704                                                   &iter->path->l[0], &iter->k);
2705
2706                 bch2_btree_path_check_sort(trans, iter->path, 0);
2707
2708                 if (likely(k.k)) {
2709                         if (iter->flags & BTREE_ITER_FILTER_SNAPSHOTS) {
2710                                 if (k.k->p.snapshot == iter->snapshot)
2711                                         goto got_key;
2712
2713                                 /*
2714                                  * If we have a saved candidate, and we're no
2715                                  * longer at the same _key_ (not pos), return
2716                                  * that candidate
2717                                  */
2718                                 if (saved_path && bkey_cmp(k.k->p, saved_k.p)) {
2719                                         bch2_path_put(trans, iter->path,
2720                                                       iter->flags & BTREE_ITER_INTENT);
2721                                         iter->path = saved_path;
2722                                         saved_path = NULL;
2723                                         iter->k = saved_k;
2724                                         k.v     = saved_v;
2725                                         goto got_key;
2726                                 }
2727
2728                                 if (bch2_snapshot_is_ancestor(iter->trans->c,
2729                                                               iter->snapshot,
2730                                                               k.k->p.snapshot)) {
2731                                         if (saved_path)
2732                                                 bch2_path_put(trans, saved_path,
2733                                                       iter->flags & BTREE_ITER_INTENT);
2734                                         saved_path = btree_path_clone(trans, iter->path,
2735                                                                 iter->flags & BTREE_ITER_INTENT);
2736                                         saved_k = *k.k;
2737                                         saved_v = k.v;
2738                                 }
2739
2740                                 search_key = bpos_predecessor(k.k->p);
2741                                 continue;
2742                         }
2743 got_key:
2744                         if (bkey_whiteout(k.k) &&
2745                             !(iter->flags & BTREE_ITER_ALL_SNAPSHOTS)) {
2746                                 search_key = bkey_predecessor(iter, k.k->p);
2747                                 if (iter->flags & BTREE_ITER_FILTER_SNAPSHOTS)
2748                                         search_key.snapshot = U32_MAX;
2749                                 continue;
2750                         }
2751
2752                         break;
2753                 } else if (likely(bpos_cmp(iter->path->l[0].b->data->min_key, POS_MIN))) {
2754                         /* Advance to previous leaf node: */
2755                         search_key = bpos_predecessor(iter->path->l[0].b->data->min_key);
2756                 } else {
2757                         /* Start of btree: */
2758                         bch2_btree_iter_set_pos(iter, POS_MIN);
2759                         k = bkey_s_c_null;
2760                         goto out;
2761                 }
2762         }
2763
2764         EBUG_ON(bkey_cmp(bkey_start_pos(k.k), iter->pos) > 0);
2765
2766         /* Extents can straddle iter->pos: */
2767         if (bkey_cmp(k.k->p, iter->pos) < 0)
2768                 iter->pos = k.k->p;
2769
2770         if (iter->flags & BTREE_ITER_FILTER_SNAPSHOTS)
2771                 iter->pos.snapshot = iter->snapshot;
2772 out:
2773         if (saved_path)
2774                 bch2_path_put(trans, saved_path, iter->flags & BTREE_ITER_INTENT);
2775         iter->path->should_be_locked = true;
2776
2777         bch2_btree_iter_verify_entry_exit(iter);
2778         bch2_btree_iter_verify(iter);
2779
2780         return k;
2781 }
2782
2783 /**
2784  * bch2_btree_iter_prev: returns first key less than iterator's current
2785  * position
2786  */
2787 struct bkey_s_c bch2_btree_iter_prev(struct btree_iter *iter)
2788 {
2789         if (!bch2_btree_iter_rewind(iter))
2790                 return bkey_s_c_null;
2791
2792         return bch2_btree_iter_peek_prev(iter);
2793 }
2794
2795 struct bkey_s_c bch2_btree_iter_peek_slot(struct btree_iter *iter)
2796 {
2797         struct btree_trans *trans = iter->trans;
2798         struct bpos search_key;
2799         struct bkey_s_c k;
2800         int ret;
2801
2802         bch2_btree_iter_verify(iter);
2803         bch2_btree_iter_verify_entry_exit(iter);
2804         EBUG_ON(iter->flags & BTREE_ITER_ALL_LEVELS);
2805         EBUG_ON(iter->path->level && (iter->flags & BTREE_ITER_WITH_KEY_CACHE));
2806
2807         /* extents can't span inode numbers: */
2808         if ((iter->flags & BTREE_ITER_IS_EXTENTS) &&
2809             unlikely(iter->pos.offset == KEY_OFFSET_MAX)) {
2810                 if (iter->pos.inode == KEY_INODE_MAX)
2811                         return bkey_s_c_null;
2812
2813                 bch2_btree_iter_set_pos(iter, bpos_nosnap_successor(iter->pos));
2814         }
2815
2816         search_key = btree_iter_search_key(iter);
2817         iter->path = bch2_btree_path_set_pos(trans, iter->path, search_key,
2818                                         iter->flags & BTREE_ITER_INTENT,
2819                                         btree_iter_ip_allocated(iter));
2820
2821         ret = bch2_btree_path_traverse(trans, iter->path, iter->flags);
2822         if (unlikely(ret))
2823                 return bkey_s_c_err(ret);
2824
2825         if ((iter->flags & BTREE_ITER_CACHED) ||
2826             !(iter->flags & (BTREE_ITER_IS_EXTENTS|BTREE_ITER_FILTER_SNAPSHOTS))) {
2827                 struct bkey_i *next_update;
2828
2829                 if ((iter->flags & BTREE_ITER_WITH_UPDATES) &&
2830                     (next_update = btree_trans_peek_updates(trans,
2831                                                 iter->btree_id, search_key)) &&
2832                     !bpos_cmp(next_update->k.p, iter->pos)) {
2833                         iter->k = next_update->k;
2834                         k = bkey_i_to_s_c(next_update);
2835                         goto out;
2836                 }
2837
2838                 if (unlikely(iter->flags & BTREE_ITER_WITH_JOURNAL) &&
2839                     (next_update = bch2_btree_journal_peek_slot(trans,
2840                                         iter, iter->pos))) {
2841                         iter->k = next_update->k;
2842                         k = bkey_i_to_s_c(next_update);
2843                         goto out;
2844                 }
2845
2846                 if (unlikely(iter->flags & BTREE_ITER_WITH_KEY_CACHE) &&
2847                     (k = btree_trans_peek_key_cache(iter, iter->pos)).k) {
2848                         if (!bkey_err(k))
2849                                 iter->k = *k.k;
2850                         goto out;
2851                 }
2852
2853                 k = bch2_btree_path_peek_slot(iter->path, &iter->k);
2854         } else {
2855                 struct bpos next;
2856
2857                 EBUG_ON(iter->path->level);
2858
2859                 if (iter->flags & BTREE_ITER_INTENT) {
2860                         struct btree_iter iter2;
2861                         struct bpos end = iter->pos;
2862
2863                         if (iter->flags & BTREE_ITER_IS_EXTENTS)
2864                                 end.offset = U64_MAX;
2865
2866                         bch2_trans_copy_iter(&iter2, iter);
2867                         k = bch2_btree_iter_peek_upto(&iter2, end);
2868
2869                         if (k.k && !bkey_err(k)) {
2870                                 iter->k = iter2.k;
2871                                 k.k = &iter->k;
2872                         }
2873                         bch2_trans_iter_exit(trans, &iter2);
2874                 } else {
2875                         struct bpos pos = iter->pos;
2876
2877                         k = bch2_btree_iter_peek(iter);
2878                         iter->pos = pos;
2879                 }
2880
2881                 if (unlikely(bkey_err(k)))
2882                         return k;
2883
2884                 next = k.k ? bkey_start_pos(k.k) : POS_MAX;
2885
2886                 if (bkey_cmp(iter->pos, next) < 0) {
2887                         bkey_init(&iter->k);
2888                         iter->k.p = iter->pos;
2889
2890                         if (iter->flags & BTREE_ITER_IS_EXTENTS) {
2891                                 bch2_key_resize(&iter->k,
2892                                                 min_t(u64, KEY_SIZE_MAX,
2893                                                       (next.inode == iter->pos.inode
2894                                                        ? next.offset
2895                                                        : KEY_OFFSET_MAX) -
2896                                                       iter->pos.offset));
2897                                 EBUG_ON(!iter->k.size);
2898                         }
2899
2900                         k = (struct bkey_s_c) { &iter->k, NULL };
2901                 }
2902         }
2903 out:
2904         iter->path->should_be_locked = true;
2905
2906         bch2_btree_iter_verify_entry_exit(iter);
2907         bch2_btree_iter_verify(iter);
2908         ret = bch2_btree_iter_verify_ret(iter, k);
2909         if (unlikely(ret))
2910                 return bkey_s_c_err(ret);
2911
2912         return k;
2913 }
2914
2915 struct bkey_s_c bch2_btree_iter_next_slot(struct btree_iter *iter)
2916 {
2917         if (!bch2_btree_iter_advance(iter))
2918                 return bkey_s_c_null;
2919
2920         return bch2_btree_iter_peek_slot(iter);
2921 }
2922
2923 struct bkey_s_c bch2_btree_iter_prev_slot(struct btree_iter *iter)
2924 {
2925         if (!bch2_btree_iter_rewind(iter))
2926                 return bkey_s_c_null;
2927
2928         return bch2_btree_iter_peek_slot(iter);
2929 }
2930
2931 /* new transactional stuff: */
2932
2933 static inline void btree_path_verify_sorted_ref(struct btree_trans *trans,
2934                                                 struct btree_path *path)
2935 {
2936         EBUG_ON(path->sorted_idx >= trans->nr_sorted);
2937         EBUG_ON(trans->sorted[path->sorted_idx] != path->idx);
2938         EBUG_ON(!(trans->paths_allocated & (1ULL << path->idx)));
2939 }
2940
2941 static inline void btree_trans_verify_sorted_refs(struct btree_trans *trans)
2942 {
2943 #ifdef CONFIG_BCACHEFS_DEBUG
2944         unsigned i;
2945
2946         for (i = 0; i < trans->nr_sorted; i++)
2947                 btree_path_verify_sorted_ref(trans, trans->paths + trans->sorted[i]);
2948 #endif
2949 }
2950
2951 static void btree_trans_verify_sorted(struct btree_trans *trans)
2952 {
2953 #ifdef CONFIG_BCACHEFS_DEBUG
2954         struct btree_path *path, *prev = NULL;
2955         unsigned i;
2956
2957         if (!bch2_debug_check_iterators)
2958                 return;
2959
2960         trans_for_each_path_inorder(trans, path, i) {
2961                 if (prev && btree_path_cmp(prev, path) > 0) {
2962                         bch2_dump_trans_paths_updates(trans);
2963                         panic("trans paths out of order!\n");
2964                 }
2965                 prev = path;
2966         }
2967 #endif
2968 }
2969
2970 static inline void btree_path_swap(struct btree_trans *trans,
2971                                    struct btree_path *l, struct btree_path *r)
2972 {
2973         swap(l->sorted_idx, r->sorted_idx);
2974         swap(trans->sorted[l->sorted_idx],
2975              trans->sorted[r->sorted_idx]);
2976
2977         btree_path_verify_sorted_ref(trans, l);
2978         btree_path_verify_sorted_ref(trans, r);
2979 }
2980
2981 inline void bch2_btree_path_check_sort(struct btree_trans *trans, struct btree_path *path,
2982                                        int cmp)
2983 {
2984         struct btree_path *n;
2985
2986         if (cmp <= 0) {
2987                 n = prev_btree_path(trans, path);
2988                 if (n && btree_path_cmp(n, path) > 0) {
2989                         do {
2990                                 btree_path_swap(trans, n, path);
2991                                 n = prev_btree_path(trans, path);
2992                         } while (n && btree_path_cmp(n, path) > 0);
2993
2994                         goto out;
2995                 }
2996         }
2997
2998         if (cmp >= 0) {
2999                 n = next_btree_path(trans, path);
3000                 if (n && btree_path_cmp(path, n) > 0) {
3001                         do {
3002                                 btree_path_swap(trans, path, n);
3003                                 n = next_btree_path(trans, path);
3004                         } while (n && btree_path_cmp(path, n) > 0);
3005                 }
3006         }
3007 out:
3008         btree_trans_verify_sorted(trans);
3009 }
3010
3011 static inline void btree_path_list_remove(struct btree_trans *trans,
3012                                           struct btree_path *path)
3013 {
3014         unsigned i;
3015
3016         EBUG_ON(path->sorted_idx >= trans->nr_sorted);
3017
3018         array_remove_item(trans->sorted, trans->nr_sorted, path->sorted_idx);
3019
3020         for (i = path->sorted_idx; i < trans->nr_sorted; i++)
3021                 trans->paths[trans->sorted[i]].sorted_idx = i;
3022
3023         path->sorted_idx = U8_MAX;
3024
3025         btree_trans_verify_sorted_refs(trans);
3026 }
3027
3028 static inline void btree_path_list_add(struct btree_trans *trans,
3029                                        struct btree_path *pos,
3030                                        struct btree_path *path)
3031 {
3032         unsigned i;
3033
3034         btree_trans_verify_sorted_refs(trans);
3035
3036         path->sorted_idx = pos ? pos->sorted_idx + 1 : 0;
3037
3038         if (trans->in_traverse_all &&
3039             trans->traverse_all_idx != U8_MAX &&
3040             trans->traverse_all_idx >= path->sorted_idx)
3041                 trans->traverse_all_idx++;
3042
3043         array_insert_item(trans->sorted, trans->nr_sorted, path->sorted_idx, path->idx);
3044
3045         for (i = path->sorted_idx; i < trans->nr_sorted; i++)
3046                 trans->paths[trans->sorted[i]].sorted_idx = i;
3047
3048         btree_trans_verify_sorted_refs(trans);
3049 }
3050
3051 void bch2_trans_iter_exit(struct btree_trans *trans, struct btree_iter *iter)
3052 {
3053         if (iter->path)
3054                 bch2_path_put(trans, iter->path,
3055                               iter->flags & BTREE_ITER_INTENT);
3056         if (iter->update_path)
3057                 bch2_path_put(trans, iter->update_path,
3058                               iter->flags & BTREE_ITER_INTENT);
3059         if (iter->key_cache_path)
3060                 bch2_path_put(trans, iter->key_cache_path,
3061                               iter->flags & BTREE_ITER_INTENT);
3062         iter->path = NULL;
3063         iter->update_path = NULL;
3064         iter->key_cache_path = NULL;
3065 }
3066
3067 static void __bch2_trans_iter_init(struct btree_trans *trans,
3068                                    struct btree_iter *iter,
3069                                    unsigned btree_id, struct bpos pos,
3070                                    unsigned locks_want,
3071                                    unsigned depth,
3072                                    unsigned flags,
3073                                    unsigned long ip)
3074 {
3075         EBUG_ON(trans->restarted);
3076
3077         if (flags & BTREE_ITER_ALL_LEVELS)
3078                 flags |= BTREE_ITER_ALL_SNAPSHOTS|__BTREE_ITER_ALL_SNAPSHOTS;
3079
3080         if (!(flags & (BTREE_ITER_ALL_SNAPSHOTS|BTREE_ITER_NOT_EXTENTS)) &&
3081             btree_node_type_is_extents(btree_id))
3082                 flags |= BTREE_ITER_IS_EXTENTS;
3083
3084         if (!(flags & __BTREE_ITER_ALL_SNAPSHOTS) &&
3085             !btree_type_has_snapshots(btree_id))
3086                 flags &= ~BTREE_ITER_ALL_SNAPSHOTS;
3087
3088         if (!(flags & BTREE_ITER_ALL_SNAPSHOTS) &&
3089             btree_type_has_snapshots(btree_id))
3090                 flags |= BTREE_ITER_FILTER_SNAPSHOTS;
3091
3092         if (!test_bit(JOURNAL_REPLAY_DONE, &trans->c->journal.flags))
3093                 flags |= BTREE_ITER_WITH_JOURNAL;
3094
3095         iter->trans     = trans;
3096         iter->path      = NULL;
3097         iter->update_path = NULL;
3098         iter->key_cache_path = NULL;
3099         iter->btree_id  = btree_id;
3100         iter->min_depth = depth;
3101         iter->flags     = flags;
3102         iter->snapshot  = pos.snapshot;
3103         iter->pos       = pos;
3104         iter->k.type    = KEY_TYPE_deleted;
3105         iter->k.p       = pos;
3106         iter->k.size    = 0;
3107         iter->journal_idx = 0;
3108         iter->journal_pos = POS_MIN;
3109 #ifdef CONFIG_BCACHEFS_DEBUG
3110         iter->ip_allocated = ip;
3111 #endif
3112
3113         iter->path = bch2_path_get(trans, btree_id, iter->pos,
3114                                    locks_want, depth, flags, ip);
3115 }
3116
3117 void bch2_trans_iter_init(struct btree_trans *trans,
3118                           struct btree_iter *iter,
3119                           unsigned btree_id, struct bpos pos,
3120                           unsigned flags)
3121 {
3122         if (!btree_id_cached(trans->c, btree_id)) {
3123                 flags &= ~BTREE_ITER_CACHED;
3124                 flags &= ~BTREE_ITER_WITH_KEY_CACHE;
3125         } else if (!(flags & BTREE_ITER_CACHED))
3126                 flags |= BTREE_ITER_WITH_KEY_CACHE;
3127
3128         __bch2_trans_iter_init(trans, iter, btree_id, pos,
3129                                0, 0, flags, _RET_IP_);
3130 }
3131
3132 void bch2_trans_node_iter_init(struct btree_trans *trans,
3133                                struct btree_iter *iter,
3134                                enum btree_id btree_id,
3135                                struct bpos pos,
3136                                unsigned locks_want,
3137                                unsigned depth,
3138                                unsigned flags)
3139 {
3140         __bch2_trans_iter_init(trans, iter, btree_id, pos, locks_want, depth,
3141                                BTREE_ITER_NOT_EXTENTS|
3142                                __BTREE_ITER_ALL_SNAPSHOTS|
3143                                BTREE_ITER_ALL_SNAPSHOTS|
3144                                flags, _RET_IP_);
3145         BUG_ON(iter->path->locks_want    < min(locks_want, BTREE_MAX_DEPTH));
3146         BUG_ON(iter->path->level        != depth);
3147         BUG_ON(iter->min_depth          != depth);
3148 }
3149
3150 void bch2_trans_copy_iter(struct btree_iter *dst, struct btree_iter *src)
3151 {
3152         *dst = *src;
3153         if (src->path)
3154                 __btree_path_get(src->path, src->flags & BTREE_ITER_INTENT);
3155         if (src->update_path)
3156                 __btree_path_get(src->update_path, src->flags & BTREE_ITER_INTENT);
3157         dst->key_cache_path = NULL;
3158 }
3159
3160 void *bch2_trans_kmalloc(struct btree_trans *trans, size_t size)
3161 {
3162         size_t new_top = trans->mem_top + size;
3163         void *p;
3164
3165         if (new_top > trans->mem_bytes) {
3166                 size_t old_bytes = trans->mem_bytes;
3167                 size_t new_bytes = roundup_pow_of_two(new_top);
3168                 void *new_mem;
3169
3170                 WARN_ON_ONCE(new_bytes > BTREE_TRANS_MEM_MAX);
3171
3172                 new_mem = krealloc(trans->mem, new_bytes, GFP_NOFS);
3173                 if (!new_mem && new_bytes <= BTREE_TRANS_MEM_MAX) {
3174                         new_mem = mempool_alloc(&trans->c->btree_trans_mem_pool, GFP_KERNEL);
3175                         new_bytes = BTREE_TRANS_MEM_MAX;
3176                         kfree(trans->mem);
3177                 }
3178
3179                 if (!new_mem)
3180                         return ERR_PTR(-ENOMEM);
3181
3182                 trans->mem = new_mem;
3183                 trans->mem_bytes = new_bytes;
3184
3185                 if (old_bytes) {
3186                         trace_trans_restart_mem_realloced(trans->fn, _RET_IP_, new_bytes);
3187                         btree_trans_restart(trans);
3188                         return ERR_PTR(-EINTR);
3189                 }
3190         }
3191
3192         p = trans->mem + trans->mem_top;
3193         trans->mem_top += size;
3194         memset(p, 0, size);
3195         return p;
3196 }
3197
3198 /**
3199  * bch2_trans_begin() - reset a transaction after a interrupted attempt
3200  * @trans: transaction to reset
3201  *
3202  * While iterating over nodes or updating nodes a attempt to lock a btree
3203  * node may return EINTR when the trylock fails. When this occurs
3204  * bch2_trans_begin() should be called and the transaction retried.
3205  */
3206 void bch2_trans_begin(struct btree_trans *trans)
3207 {
3208         struct btree_path *path;
3209
3210         bch2_trans_reset_updates(trans);
3211
3212         trans->mem_top                  = 0;
3213
3214         if (trans->fs_usage_deltas) {
3215                 trans->fs_usage_deltas->used = 0;
3216                 memset((void *) trans->fs_usage_deltas +
3217                        offsetof(struct replicas_delta_list, memset_start), 0,
3218                        (void *) &trans->fs_usage_deltas->memset_end -
3219                        (void *) &trans->fs_usage_deltas->memset_start);
3220         }
3221
3222         trans_for_each_path(trans, path) {
3223                 path->should_be_locked = false;
3224
3225                 /*
3226                  * If the transaction wasn't restarted, we're presuming to be
3227                  * doing something new: dont keep iterators excpt the ones that
3228                  * are in use - except for the subvolumes btree:
3229                  */
3230                 if (!trans->restarted && path->btree_id != BTREE_ID_subvolumes)
3231                         path->preserve = false;
3232
3233                 /*
3234                  * XXX: we probably shouldn't be doing this if the transaction
3235                  * was restarted, but currently we still overflow transaction
3236                  * iterators if we do that
3237                  */
3238                 if (!path->ref && !path->preserve)
3239                         __bch2_path_free(trans, path);
3240                 else
3241                         path->preserve = false;
3242         }
3243
3244         bch2_trans_cond_resched(trans);
3245
3246         if (trans->restarted)
3247                 bch2_btree_path_traverse_all(trans);
3248
3249         trans->restarted = false;
3250 }
3251
3252 static void bch2_trans_alloc_paths(struct btree_trans *trans, struct bch_fs *c)
3253 {
3254         size_t paths_bytes      = sizeof(struct btree_path) * BTREE_ITER_MAX;
3255         size_t updates_bytes    = sizeof(struct btree_insert_entry) * BTREE_ITER_MAX;
3256         void *p = NULL;
3257
3258         BUG_ON(trans->used_mempool);
3259
3260 #ifdef __KERNEL__
3261         p = this_cpu_xchg(c->btree_paths_bufs->path , NULL);
3262 #endif
3263         if (!p)
3264                 p = mempool_alloc(&trans->c->btree_paths_pool, GFP_NOFS);
3265
3266         trans->paths            = p; p += paths_bytes;
3267         trans->updates          = p; p += updates_bytes;
3268 }
3269
3270 void __bch2_trans_init(struct btree_trans *trans, struct bch_fs *c,
3271                        unsigned expected_nr_iters,
3272                        size_t expected_mem_bytes,
3273                        const char *fn)
3274         __acquires(&c->btree_trans_barrier)
3275 {
3276         struct btree_trans *pos;
3277
3278         BUG_ON(lock_class_is_held(&bch2_btree_node_lock_key));
3279
3280         memset(trans, 0, sizeof(*trans));
3281         trans->c                = c;
3282         trans->fn               = fn;
3283         trans->task             = current;
3284
3285         bch2_trans_alloc_paths(trans, c);
3286
3287         if (expected_mem_bytes) {
3288                 trans->mem_bytes = roundup_pow_of_two(expected_mem_bytes);
3289                 trans->mem = kmalloc(trans->mem_bytes, GFP_KERNEL|__GFP_NOFAIL);
3290
3291                 if (!unlikely(trans->mem)) {
3292                         trans->mem = mempool_alloc(&c->btree_trans_mem_pool, GFP_KERNEL);
3293                         trans->mem_bytes = BTREE_TRANS_MEM_MAX;
3294                 }
3295         }
3296
3297         trans->srcu_idx = srcu_read_lock(&c->btree_trans_barrier);
3298
3299         mutex_lock(&c->btree_trans_lock);
3300         list_for_each_entry(pos, &c->btree_trans_list, list) {
3301                 if (trans->task->pid < pos->task->pid) {
3302                         list_add_tail(&trans->list, &pos->list);
3303                         goto list_add_done;
3304                 }
3305         }
3306         list_add_tail(&trans->list, &c->btree_trans_list);
3307 list_add_done:
3308         mutex_unlock(&c->btree_trans_lock);
3309 }
3310
3311 static void check_btree_paths_leaked(struct btree_trans *trans)
3312 {
3313 #ifdef CONFIG_BCACHEFS_DEBUG
3314         struct bch_fs *c = trans->c;
3315         struct btree_path *path;
3316
3317         trans_for_each_path(trans, path)
3318                 if (path->ref)
3319                         goto leaked;
3320         return;
3321 leaked:
3322         bch_err(c, "btree paths leaked from %s!", trans->fn);
3323         trans_for_each_path(trans, path)
3324                 if (path->ref)
3325                         printk(KERN_ERR "  btree %s %pS\n",
3326                                bch2_btree_ids[path->btree_id],
3327                                (void *) path->ip_allocated);
3328         /* Be noisy about this: */
3329         bch2_fatal_error(c);
3330 #endif
3331 }
3332
3333 void bch2_trans_exit(struct btree_trans *trans)
3334         __releases(&c->btree_trans_barrier)
3335 {
3336         struct btree_insert_entry *i;
3337         struct bch_fs *c = trans->c;
3338
3339         bch2_trans_unlock(trans);
3340
3341         trans_for_each_update(trans, i)
3342                 __btree_path_put(i->path, true);
3343         trans->nr_updates               = 0;
3344
3345         check_btree_paths_leaked(trans);
3346
3347         mutex_lock(&c->btree_trans_lock);
3348         list_del(&trans->list);
3349         mutex_unlock(&c->btree_trans_lock);
3350
3351         srcu_read_unlock(&c->btree_trans_barrier, trans->srcu_idx);
3352
3353         bch2_journal_preres_put(&c->journal, &trans->journal_preres);
3354
3355         kfree(trans->extra_journal_entries.data);
3356
3357         if (trans->fs_usage_deltas) {
3358                 if (trans->fs_usage_deltas->size + sizeof(trans->fs_usage_deltas) ==
3359                     REPLICAS_DELTA_LIST_MAX)
3360                         mempool_free(trans->fs_usage_deltas,
3361                                      &c->replicas_delta_pool);
3362                 else
3363                         kfree(trans->fs_usage_deltas);
3364         }
3365
3366         if (trans->mem_bytes == BTREE_TRANS_MEM_MAX)
3367                 mempool_free(trans->mem, &c->btree_trans_mem_pool);
3368         else
3369                 kfree(trans->mem);
3370
3371 #ifdef __KERNEL__
3372         /*
3373          * Userspace doesn't have a real percpu implementation:
3374          */
3375         trans->paths = this_cpu_xchg(c->btree_paths_bufs->path, trans->paths);
3376 #endif
3377
3378         if (trans->paths)
3379                 mempool_free(trans->paths, &c->btree_paths_pool);
3380
3381         trans->mem      = (void *) 0x1;
3382         trans->paths    = (void *) 0x1;
3383 }
3384
3385 static void __maybe_unused
3386 bch2_btree_path_node_to_text(struct printbuf *out,
3387                              struct btree_bkey_cached_common *_b,
3388                              bool cached)
3389 {
3390         prt_printf(out, "    l=%u %s:",
3391                _b->level, bch2_btree_ids[_b->btree_id]);
3392         bch2_bpos_to_text(out, btree_node_pos(_b, cached));
3393 }
3394
3395 void bch2_btree_trans_to_text(struct printbuf *out, struct btree_trans *trans)
3396 {
3397         struct btree_path *path;
3398         struct btree *b;
3399         static char lock_types[] = { 'r', 'i', 'w' };
3400         unsigned l;
3401
3402         prt_printf(out, "%i %s\n", trans->task->pid, trans->fn);
3403
3404         trans_for_each_path(trans, path) {
3405                 if (!path->nodes_locked)
3406                         continue;
3407
3408                 prt_printf(out, "  path %u %c l=%u %s:",
3409                        path->idx,
3410                        path->cached ? 'c' : 'b',
3411                        path->level,
3412                        bch2_btree_ids[path->btree_id]);
3413                 bch2_bpos_to_text(out, path->pos);
3414                 prt_printf(out, "\n");
3415
3416                 for (l = 0; l < BTREE_MAX_DEPTH; l++) {
3417                         if (btree_node_locked(path, l)) {
3418                                 prt_printf(out, "    %s l=%u ",
3419                                        btree_node_intent_locked(path, l) ? "i" : "r", l);
3420                                 bch2_btree_path_node_to_text(out,
3421                                                 (void *) path->l[l].b,
3422                                                 path->cached);
3423                                 prt_printf(out, "\n");
3424                         }
3425                 }
3426         }
3427
3428         b = READ_ONCE(trans->locking);
3429         if (b) {
3430                 path = &trans->paths[trans->locking_path_idx];
3431                 prt_printf(out, "  locking path %u %c l=%u %c %s:",
3432                        trans->locking_path_idx,
3433                        path->cached ? 'c' : 'b',
3434                        trans->locking_level,
3435                        lock_types[trans->locking_lock_type],
3436                        bch2_btree_ids[trans->locking_btree_id]);
3437                 bch2_bpos_to_text(out, trans->locking_pos);
3438
3439                 prt_printf(out, " node ");
3440                 bch2_btree_path_node_to_text(out,
3441                                 (void *) b, path->cached);
3442                 prt_printf(out, "\n");
3443         }
3444 }
3445
3446 void bch2_fs_btree_iter_exit(struct bch_fs *c)
3447 {
3448         if (c->btree_trans_barrier_initialized)
3449                 cleanup_srcu_struct(&c->btree_trans_barrier);
3450         mempool_exit(&c->btree_trans_mem_pool);
3451         mempool_exit(&c->btree_paths_pool);
3452 }
3453
3454 int bch2_fs_btree_iter_init(struct bch_fs *c)
3455 {
3456         unsigned nr = BTREE_ITER_MAX;
3457         int ret;
3458
3459         INIT_LIST_HEAD(&c->btree_trans_list);
3460         mutex_init(&c->btree_trans_lock);
3461
3462         ret   = mempool_init_kmalloc_pool(&c->btree_paths_pool, 1,
3463                         sizeof(struct btree_path) * nr +
3464                         sizeof(struct btree_insert_entry) * nr) ?:
3465                 mempool_init_kmalloc_pool(&c->btree_trans_mem_pool, 1,
3466                                           BTREE_TRANS_MEM_MAX) ?:
3467                 init_srcu_struct(&c->btree_trans_barrier);
3468         if (!ret)
3469                 c->btree_trans_barrier_initialized = true;
3470         return ret;
3471 }