]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/btree_iter.c
Update bcachefs sources to bdf6d7c135 fixup! bcachefs: Kill journal buf bloom filter
[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                 pr_buf(&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                 pr_buf(&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;
1676
1677         memcpy(&dst->pos, &src->pos,
1678                sizeof(struct btree_path) - offsetof(struct btree_path, pos));
1679
1680         for (i = 0; i < BTREE_MAX_DEPTH; i++)
1681                 if (btree_node_locked(dst, i))
1682                         six_lock_increment(&dst->l[i].b->c.lock,
1683                                            __btree_lock_want(dst, i));
1684
1685         bch2_btree_path_check_sort(trans, dst, 0);
1686 }
1687
1688 static struct btree_path *btree_path_clone(struct btree_trans *trans, struct btree_path *src,
1689                                            bool intent)
1690 {
1691         struct btree_path *new = btree_path_alloc(trans, src);
1692
1693         btree_path_copy(trans, new, src);
1694         __btree_path_get(new, intent);
1695         return new;
1696 }
1697
1698 inline struct btree_path * __must_check
1699 bch2_btree_path_make_mut(struct btree_trans *trans,
1700                          struct btree_path *path, bool intent,
1701                          unsigned long ip)
1702 {
1703         if (path->ref > 1 || path->preserve) {
1704                 __btree_path_put(path, intent);
1705                 path = btree_path_clone(trans, path, intent);
1706                 path->preserve = false;
1707 #ifdef CONFIG_BCACHEFS_DEBUG
1708                 path->ip_allocated = ip;
1709 #endif
1710                 btree_trans_verify_sorted(trans);
1711         }
1712
1713         path->should_be_locked = false;
1714         return path;
1715 }
1716
1717 struct btree_path * __must_check
1718 bch2_btree_path_set_pos(struct btree_trans *trans,
1719                    struct btree_path *path, struct bpos new_pos,
1720                    bool intent, unsigned long ip)
1721 {
1722         int cmp = bpos_cmp(new_pos, path->pos);
1723         unsigned l = path->level;
1724
1725         EBUG_ON(trans->restarted);
1726         EBUG_ON(!path->ref);
1727
1728         if (!cmp)
1729                 return path;
1730
1731         path = bch2_btree_path_make_mut(trans, path, intent, ip);
1732
1733         path->pos = new_pos;
1734
1735         bch2_btree_path_check_sort(trans, path, cmp);
1736
1737         if (unlikely(path->cached)) {
1738                 btree_node_unlock(path, 0);
1739                 path->l[0].b = BTREE_ITER_NO_NODE_CACHED;
1740                 btree_path_set_dirty(path, BTREE_ITER_NEED_TRAVERSE);
1741                 goto out;
1742         }
1743
1744         l = btree_path_up_until_good_node(trans, path, cmp);
1745
1746         if (btree_path_node(path, l)) {
1747                 BUG_ON(!btree_node_locked(path, l));
1748                 /*
1749                  * We might have to skip over many keys, or just a few: try
1750                  * advancing the node iterator, and if we have to skip over too
1751                  * many keys just reinit it (or if we're rewinding, since that
1752                  * is expensive).
1753                  */
1754                 if (cmp < 0 ||
1755                     !btree_path_advance_to_pos(path, &path->l[l], 8))
1756                         __btree_path_level_init(path, l);
1757         }
1758
1759         if (l != path->level) {
1760                 btree_path_set_dirty(path, BTREE_ITER_NEED_TRAVERSE);
1761                 __bch2_btree_path_unlock(path);
1762         }
1763 out:
1764         bch2_btree_path_verify(trans, path);
1765         return path;
1766 }
1767
1768 /* Btree path: main interface: */
1769
1770 static struct btree_path *have_path_at_pos(struct btree_trans *trans, struct btree_path *path)
1771 {
1772         struct btree_path *next;
1773
1774         next = prev_btree_path(trans, path);
1775         if (next && !btree_path_cmp(next, path))
1776                 return next;
1777
1778         next = next_btree_path(trans, path);
1779         if (next && !btree_path_cmp(next, path))
1780                 return next;
1781
1782         return NULL;
1783 }
1784
1785 static struct btree_path *have_node_at_pos(struct btree_trans *trans, struct btree_path *path)
1786 {
1787         struct btree_path *next;
1788
1789         next = prev_btree_path(trans, path);
1790         if (next && next->level == path->level && path_l(next)->b == path_l(path)->b)
1791                 return next;
1792
1793         next = next_btree_path(trans, path);
1794         if (next && next->level == path->level && path_l(next)->b == path_l(path)->b)
1795                 return next;
1796
1797         return NULL;
1798 }
1799
1800 static inline void __bch2_path_free(struct btree_trans *trans, struct btree_path *path)
1801 {
1802         __bch2_btree_path_unlock(path);
1803         btree_path_list_remove(trans, path);
1804         trans->paths_allocated &= ~(1ULL << path->idx);
1805 }
1806
1807 void bch2_path_put(struct btree_trans *trans, struct btree_path *path, bool intent)
1808 {
1809         struct btree_path *dup;
1810
1811         EBUG_ON(trans->paths + path->idx != path);
1812         EBUG_ON(!path->ref);
1813
1814         if (!__btree_path_put(path, intent))
1815                 return;
1816
1817         /*
1818          * Perhaps instead we should check for duplicate paths in traverse_all:
1819          */
1820         if (path->preserve &&
1821             (dup = have_path_at_pos(trans, path))) {
1822                 dup->preserve = true;
1823                 path->preserve = false;
1824                 goto free;
1825         }
1826
1827         if (!path->preserve &&
1828             (dup = have_node_at_pos(trans, path)))
1829                 goto free;
1830         return;
1831 free:
1832         if (path->should_be_locked &&
1833             !btree_node_locked(dup, path->level))
1834                 return;
1835
1836         dup->should_be_locked |= path->should_be_locked;
1837         __bch2_path_free(trans, path);
1838 }
1839
1840 void bch2_trans_updates_to_text(struct printbuf *buf, struct btree_trans *trans)
1841 {
1842         struct btree_insert_entry *i;
1843
1844         pr_buf(buf, "transaction updates for %s journal seq %llu",
1845                trans->fn, trans->journal_res.seq);
1846         pr_newline(buf);
1847         pr_indent_push(buf, 2);
1848
1849         trans_for_each_update(trans, i) {
1850                 struct bkey_s_c old = { &i->old_k, i->old_v };
1851
1852                 pr_buf(buf, "update: btree %s %pS",
1853                        bch2_btree_ids[i->btree_id],
1854                        (void *) i->ip_allocated);
1855                 pr_newline(buf);
1856
1857                 pr_buf(buf, "  old ");
1858                 bch2_bkey_val_to_text(buf, trans->c, old);
1859                 pr_newline(buf);
1860
1861                 pr_buf(buf, "  new ");
1862                 bch2_bkey_val_to_text(buf, trans->c, bkey_i_to_s_c(i->k));
1863                 pr_newline(buf);
1864         }
1865
1866         pr_indent_pop(buf, 2);
1867 }
1868
1869 noinline __cold
1870 void bch2_dump_trans_updates(struct btree_trans *trans)
1871 {
1872         struct printbuf buf = PRINTBUF;
1873
1874         bch2_trans_updates_to_text(&buf, trans);
1875         bch_err(trans->c, "%s", buf.buf);
1876         printbuf_exit(&buf);
1877 }
1878
1879 noinline __cold
1880 void bch2_dump_trans_paths_updates(struct btree_trans *trans)
1881 {
1882         struct btree_path *path;
1883         struct printbuf buf = PRINTBUF;
1884         unsigned idx;
1885
1886         trans_for_each_path_inorder(trans, path, idx) {
1887                 printbuf_reset(&buf);
1888
1889                 bch2_bpos_to_text(&buf, path->pos);
1890
1891                 printk(KERN_ERR "path: idx %u ref %u:%u%s%s btree=%s l=%u pos %s locks %u %pS\n",
1892                        path->idx, path->ref, path->intent_ref,
1893                        path->should_be_locked ? " S" : "",
1894                        path->preserve ? " P" : "",
1895                        bch2_btree_ids[path->btree_id],
1896                        path->level,
1897                        buf.buf,
1898                        path->nodes_locked,
1899 #ifdef CONFIG_BCACHEFS_DEBUG
1900                        (void *) path->ip_allocated
1901 #else
1902                        NULL
1903 #endif
1904                        );
1905         }
1906
1907         printbuf_exit(&buf);
1908
1909         bch2_dump_trans_updates(trans);
1910 }
1911
1912 static struct btree_path *btree_path_alloc(struct btree_trans *trans,
1913                                            struct btree_path *pos)
1914 {
1915         struct btree_path *path;
1916         unsigned idx;
1917
1918         if (unlikely(trans->paths_allocated ==
1919                      ~((~0ULL << 1) << (BTREE_ITER_MAX - 1)))) {
1920                 bch2_dump_trans_paths_updates(trans);
1921                 panic("trans path oveflow\n");
1922         }
1923
1924         idx = __ffs64(~trans->paths_allocated);
1925         trans->paths_allocated |= 1ULL << idx;
1926
1927         path = &trans->paths[idx];
1928
1929         path->idx               = idx;
1930         path->ref               = 0;
1931         path->intent_ref        = 0;
1932         path->nodes_locked      = 0;
1933         path->nodes_intent_locked = 0;
1934
1935         btree_path_list_add(trans, pos, path);
1936         return path;
1937 }
1938
1939 struct btree_path *bch2_path_get(struct btree_trans *trans,
1940                                  enum btree_id btree_id, struct bpos pos,
1941                                  unsigned locks_want, unsigned level,
1942                                  unsigned flags, unsigned long ip)
1943 {
1944         struct btree_path *path, *path_pos = NULL;
1945         bool cached = flags & BTREE_ITER_CACHED;
1946         bool intent = flags & BTREE_ITER_INTENT;
1947         int i;
1948
1949         BUG_ON(trans->restarted);
1950         btree_trans_verify_sorted(trans);
1951         bch2_trans_verify_locks(trans);
1952
1953         trans_for_each_path_inorder(trans, path, i) {
1954                 if (__btree_path_cmp(path,
1955                                      btree_id,
1956                                      cached,
1957                                      pos,
1958                                      level) > 0)
1959                         break;
1960
1961                 path_pos = path;
1962         }
1963
1964         if (path_pos &&
1965             path_pos->cached    == cached &&
1966             path_pos->btree_id  == btree_id &&
1967             path_pos->level     == level) {
1968                 __btree_path_get(path_pos, intent);
1969                 path = bch2_btree_path_set_pos(trans, path_pos, pos, intent, ip);
1970         } else {
1971                 path = btree_path_alloc(trans, path_pos);
1972                 path_pos = NULL;
1973
1974                 __btree_path_get(path, intent);
1975                 path->pos                       = pos;
1976                 path->btree_id                  = btree_id;
1977                 path->cached                    = cached;
1978                 path->uptodate                  = BTREE_ITER_NEED_TRAVERSE;
1979                 path->should_be_locked          = false;
1980                 path->level                     = level;
1981                 path->locks_want                = locks_want;
1982                 path->nodes_locked              = 0;
1983                 path->nodes_intent_locked       = 0;
1984                 for (i = 0; i < ARRAY_SIZE(path->l); i++)
1985                         path->l[i].b            = BTREE_ITER_NO_NODE_INIT;
1986 #ifdef CONFIG_BCACHEFS_DEBUG
1987                 path->ip_allocated              = ip;
1988 #endif
1989                 btree_trans_verify_sorted(trans);
1990         }
1991
1992         if (!(flags & BTREE_ITER_NOPRESERVE))
1993                 path->preserve = true;
1994
1995         if (path->intent_ref)
1996                 locks_want = max(locks_want, level + 1);
1997
1998         /*
1999          * If the path has locks_want greater than requested, we don't downgrade
2000          * it here - on transaction restart because btree node split needs to
2001          * upgrade locks, we might be putting/getting the iterator again.
2002          * Downgrading iterators only happens via bch2_trans_downgrade(), after
2003          * a successful transaction commit.
2004          */
2005
2006         locks_want = min(locks_want, BTREE_MAX_DEPTH);
2007         if (locks_want > path->locks_want) {
2008                 path->locks_want = locks_want;
2009                 btree_path_get_locks(trans, path, true);
2010         }
2011
2012         return path;
2013 }
2014
2015 inline struct bkey_s_c bch2_btree_path_peek_slot(struct btree_path *path, struct bkey *u)
2016 {
2017
2018         struct bkey_s_c k;
2019
2020         if (!path->cached) {
2021                 struct btree_path_level *l = path_l(path);
2022                 struct bkey_packed *_k;
2023
2024                 EBUG_ON(path->uptodate != BTREE_ITER_UPTODATE);
2025
2026                 _k = bch2_btree_node_iter_peek_all(&l->iter, l->b);
2027                 k = _k ? bkey_disassemble(l->b, _k, u) : bkey_s_c_null;
2028
2029                 EBUG_ON(k.k && bkey_deleted(k.k) && bpos_cmp(k.k->p, path->pos) == 0);
2030
2031                 if (!k.k || bpos_cmp(path->pos, k.k->p))
2032                         goto hole;
2033         } else {
2034                 struct bkey_cached *ck = (void *) path->l[0].b;
2035
2036                 EBUG_ON(ck &&
2037                         (path->btree_id != ck->key.btree_id ||
2038                          bkey_cmp(path->pos, ck->key.pos)));
2039
2040                 /* BTREE_ITER_CACHED_NOFILL|BTREE_ITER_CACHED_NOCREATE? */
2041                 if (unlikely(!ck || !ck->valid))
2042                         return bkey_s_c_null;
2043
2044                 EBUG_ON(path->uptodate != BTREE_ITER_UPTODATE);
2045
2046                 *u = ck->k->k;
2047                 k = bkey_i_to_s_c(ck->k);
2048         }
2049
2050         return k;
2051 hole:
2052         bkey_init(u);
2053         u->p = path->pos;
2054         return (struct bkey_s_c) { u, NULL };
2055 }
2056
2057 /* Btree iterators: */
2058
2059 int __must_check
2060 __bch2_btree_iter_traverse(struct btree_iter *iter)
2061 {
2062         return bch2_btree_path_traverse(iter->trans, iter->path, iter->flags);
2063 }
2064
2065 int __must_check
2066 bch2_btree_iter_traverse(struct btree_iter *iter)
2067 {
2068         int ret;
2069
2070         iter->path = bch2_btree_path_set_pos(iter->trans, iter->path,
2071                                         btree_iter_search_key(iter),
2072                                         iter->flags & BTREE_ITER_INTENT,
2073                                         btree_iter_ip_allocated(iter));
2074
2075         ret = bch2_btree_path_traverse(iter->trans, iter->path, iter->flags);
2076         if (ret)
2077                 return ret;
2078
2079         iter->path->should_be_locked = true;
2080         return 0;
2081 }
2082
2083 /* Iterate across nodes (leaf and interior nodes) */
2084
2085 struct btree *bch2_btree_iter_peek_node(struct btree_iter *iter)
2086 {
2087         struct btree_trans *trans = iter->trans;
2088         struct btree *b = NULL;
2089         int ret;
2090
2091         EBUG_ON(iter->path->cached);
2092         bch2_btree_iter_verify(iter);
2093
2094         ret = bch2_btree_path_traverse(trans, iter->path, iter->flags);
2095         if (ret)
2096                 goto err;
2097
2098         b = btree_path_node(iter->path, iter->path->level);
2099         if (!b)
2100                 goto out;
2101
2102         BUG_ON(bpos_cmp(b->key.k.p, iter->pos) < 0);
2103
2104         bkey_init(&iter->k);
2105         iter->k.p = iter->pos = b->key.k.p;
2106
2107         iter->path = bch2_btree_path_set_pos(trans, iter->path, b->key.k.p,
2108                                         iter->flags & BTREE_ITER_INTENT,
2109                                         btree_iter_ip_allocated(iter));
2110         iter->path->should_be_locked = true;
2111         BUG_ON(iter->path->uptodate);
2112 out:
2113         bch2_btree_iter_verify_entry_exit(iter);
2114         bch2_btree_iter_verify(iter);
2115
2116         return b;
2117 err:
2118         b = ERR_PTR(ret);
2119         goto out;
2120 }
2121
2122 struct btree *bch2_btree_iter_next_node(struct btree_iter *iter)
2123 {
2124         struct btree_trans *trans = iter->trans;
2125         struct btree_path *path = iter->path;
2126         struct btree *b = NULL;
2127         int ret;
2128
2129         BUG_ON(trans->restarted);
2130         EBUG_ON(iter->path->cached);
2131         bch2_btree_iter_verify(iter);
2132
2133         /* already at end? */
2134         if (!btree_path_node(path, path->level))
2135                 return NULL;
2136
2137         /* got to end? */
2138         if (!btree_path_node(path, path->level + 1)) {
2139                 btree_path_set_level_up(path);
2140                 return NULL;
2141         }
2142
2143         if (!bch2_btree_node_relock(trans, path, path->level + 1)) {
2144                 __bch2_btree_path_unlock(path);
2145                 path->l[path->level].b = BTREE_ITER_NO_NODE_GET_LOCKS;
2146                 path->l[path->level + 1].b = BTREE_ITER_NO_NODE_GET_LOCKS;
2147                 btree_path_set_dirty(path, BTREE_ITER_NEED_TRAVERSE);
2148                 trace_trans_restart_relock_next_node(trans->fn, _THIS_IP_,
2149                                            path->btree_id, &path->pos);
2150                 btree_trans_restart(trans);
2151                 ret = -EINTR;
2152                 goto err;
2153         }
2154
2155         b = btree_path_node(path, path->level + 1);
2156
2157         if (!bpos_cmp(iter->pos, b->key.k.p)) {
2158                 btree_node_unlock(path, path->level);
2159                 path->l[path->level].b = BTREE_ITER_NO_NODE_UP;
2160                 path->level++;
2161         } else {
2162                 /*
2163                  * Haven't gotten to the end of the parent node: go back down to
2164                  * the next child node
2165                  */
2166                 path = iter->path =
2167                         bch2_btree_path_set_pos(trans, path, bpos_successor(iter->pos),
2168                                            iter->flags & BTREE_ITER_INTENT,
2169                                            btree_iter_ip_allocated(iter));
2170
2171                 btree_path_set_level_down(trans, path, iter->min_depth);
2172
2173                 ret = bch2_btree_path_traverse(trans, path, iter->flags);
2174                 if (ret)
2175                         goto err;
2176
2177                 b = path->l[path->level].b;
2178         }
2179
2180         bkey_init(&iter->k);
2181         iter->k.p = iter->pos = b->key.k.p;
2182
2183         iter->path = bch2_btree_path_set_pos(trans, iter->path, b->key.k.p,
2184                                         iter->flags & BTREE_ITER_INTENT,
2185                                         btree_iter_ip_allocated(iter));
2186         iter->path->should_be_locked = true;
2187         BUG_ON(iter->path->uptodate);
2188 out:
2189         bch2_btree_iter_verify_entry_exit(iter);
2190         bch2_btree_iter_verify(iter);
2191
2192         return b;
2193 err:
2194         b = ERR_PTR(ret);
2195         goto out;
2196 }
2197
2198 /* Iterate across keys (in leaf nodes only) */
2199
2200 inline bool bch2_btree_iter_advance(struct btree_iter *iter)
2201 {
2202         if (likely(!(iter->flags & BTREE_ITER_ALL_LEVELS))) {
2203                 struct bpos pos = iter->k.p;
2204                 bool ret = (iter->flags & BTREE_ITER_ALL_SNAPSHOTS
2205                             ? bpos_cmp(pos, SPOS_MAX)
2206                             : bkey_cmp(pos, SPOS_MAX)) != 0;
2207
2208                 if (ret && !(iter->flags & BTREE_ITER_IS_EXTENTS))
2209                         pos = bkey_successor(iter, pos);
2210                 bch2_btree_iter_set_pos(iter, pos);
2211                 return ret;
2212         } else {
2213                 if (!btree_path_node(iter->path, iter->path->level))
2214                         return true;
2215
2216                 iter->advanced = true;
2217                 return false;
2218         }
2219 }
2220
2221 inline bool bch2_btree_iter_rewind(struct btree_iter *iter)
2222 {
2223         struct bpos pos = bkey_start_pos(&iter->k);
2224         bool ret = (iter->flags & BTREE_ITER_ALL_SNAPSHOTS
2225                     ? bpos_cmp(pos, POS_MIN)
2226                     : bkey_cmp(pos, POS_MIN)) != 0;
2227
2228         if (ret && !(iter->flags & BTREE_ITER_IS_EXTENTS))
2229                 pos = bkey_predecessor(iter, pos);
2230         bch2_btree_iter_set_pos(iter, pos);
2231         return ret;
2232 }
2233
2234 static inline struct bkey_i *btree_trans_peek_updates(struct btree_trans *trans,
2235                                                       enum btree_id btree_id,
2236                                                       struct bpos pos)
2237 {
2238         struct btree_insert_entry *i;
2239
2240         trans_for_each_update(trans, i)
2241                 if ((cmp_int(btree_id,  i->btree_id) ?:
2242                      bpos_cmp(pos,      i->k->k.p)) <= 0) {
2243                         if (btree_id == i->btree_id)
2244                                 return i->k;
2245                         break;
2246                 }
2247
2248         return NULL;
2249 }
2250
2251 static noinline
2252 struct bkey_s_c btree_trans_peek_journal(struct btree_trans *trans,
2253                                          struct btree_iter *iter,
2254                                          struct bkey_s_c k)
2255 {
2256         struct bkey_i *next_journal =
2257                 bch2_journal_keys_peek_upto(trans->c, iter->btree_id, 0,
2258                                 iter->path->pos,
2259                                 k.k ? k.k->p : iter->path->l[0].b->key.k.p);
2260
2261         if (next_journal) {
2262                 iter->k = next_journal->k;
2263                 k = bkey_i_to_s_c(next_journal);
2264         }
2265
2266         return k;
2267 }
2268
2269 /*
2270  * Checks btree key cache for key at iter->pos and returns it if present, or
2271  * bkey_s_c_null:
2272  */
2273 static noinline
2274 struct bkey_s_c btree_trans_peek_key_cache(struct btree_iter *iter, struct bpos pos)
2275 {
2276         struct btree_trans *trans = iter->trans;
2277         struct bch_fs *c = trans->c;
2278         struct bkey u;
2279         int ret;
2280
2281         if (!bch2_btree_key_cache_find(c, iter->btree_id, pos))
2282                 return bkey_s_c_null;
2283
2284         if (!iter->key_cache_path)
2285                 iter->key_cache_path = bch2_path_get(trans, iter->btree_id, pos,
2286                                                      iter->flags & BTREE_ITER_INTENT, 0,
2287                                                      iter->flags|BTREE_ITER_CACHED,
2288                                                      _THIS_IP_);
2289
2290         iter->key_cache_path = bch2_btree_path_set_pos(trans, iter->key_cache_path, pos,
2291                                         iter->flags & BTREE_ITER_INTENT,
2292                                         btree_iter_ip_allocated(iter));
2293
2294         ret = bch2_btree_path_traverse(trans, iter->key_cache_path, iter->flags|BTREE_ITER_CACHED);
2295         if (unlikely(ret))
2296                 return bkey_s_c_err(ret);
2297
2298         iter->key_cache_path->should_be_locked = true;
2299
2300         return bch2_btree_path_peek_slot(iter->key_cache_path, &u);
2301 }
2302
2303 static struct bkey_s_c __bch2_btree_iter_peek(struct btree_iter *iter, struct bpos search_key)
2304 {
2305         struct btree_trans *trans = iter->trans;
2306         struct bkey_i *next_update;
2307         struct bkey_s_c k, k2;
2308         int ret;
2309
2310         EBUG_ON(iter->path->cached || iter->path->level);
2311         bch2_btree_iter_verify(iter);
2312
2313         while (1) {
2314                 iter->path = bch2_btree_path_set_pos(trans, iter->path, search_key,
2315                                         iter->flags & BTREE_ITER_INTENT,
2316                                         btree_iter_ip_allocated(iter));
2317
2318                 ret = bch2_btree_path_traverse(trans, iter->path, iter->flags);
2319                 if (unlikely(ret)) {
2320                         /* ensure that iter->k is consistent with iter->pos: */
2321                         bch2_btree_iter_set_pos(iter, iter->pos);
2322                         k = bkey_s_c_err(ret);
2323                         goto out;
2324                 }
2325
2326                 iter->path->should_be_locked = true;
2327
2328                 k = btree_path_level_peek_all(trans->c, &iter->path->l[0], &iter->k);
2329
2330                 if (unlikely(iter->flags & BTREE_ITER_WITH_KEY_CACHE) &&
2331                     k.k &&
2332                     (k2 = btree_trans_peek_key_cache(iter, k.k->p)).k) {
2333                         ret = bkey_err(k2);
2334                         if (ret) {
2335                                 k = k2;
2336                                 bch2_btree_iter_set_pos(iter, iter->pos);
2337                                 goto out;
2338                         }
2339
2340                         k = k2;
2341                         iter->k = *k.k;
2342                 }
2343
2344                 if (unlikely(iter->flags & BTREE_ITER_WITH_JOURNAL))
2345                         k = btree_trans_peek_journal(trans, iter, k);
2346
2347                 next_update = iter->flags & BTREE_ITER_WITH_UPDATES
2348                         ? btree_trans_peek_updates(trans, iter->btree_id, search_key)
2349                         : NULL;
2350                 if (next_update &&
2351                     bpos_cmp(next_update->k.p,
2352                              k.k ? k.k->p : iter->path->l[0].b->key.k.p) <= 0) {
2353                         iter->k = next_update->k;
2354                         k = bkey_i_to_s_c(next_update);
2355                 }
2356
2357                 if (k.k && bkey_deleted(k.k)) {
2358                         /*
2359                          * If we've got a whiteout, and it's after the search
2360                          * key, advance the search key to the whiteout instead
2361                          * of just after the whiteout - it might be a btree
2362                          * whiteout, with a real key at the same position, since
2363                          * in the btree deleted keys sort before non deleted.
2364                          */
2365                         search_key = bpos_cmp(search_key, k.k->p)
2366                                 ? k.k->p
2367                                 : bpos_successor(k.k->p);
2368                         continue;
2369                 }
2370
2371                 if (likely(k.k)) {
2372                         break;
2373                 } else if (likely(bpos_cmp(iter->path->l[0].b->key.k.p, SPOS_MAX))) {
2374                         /* Advance to next leaf node: */
2375                         search_key = bpos_successor(iter->path->l[0].b->key.k.p);
2376                 } else {
2377                         /* End of btree: */
2378                         bch2_btree_iter_set_pos(iter, SPOS_MAX);
2379                         k = bkey_s_c_null;
2380                         goto out;
2381                 }
2382         }
2383 out:
2384         bch2_btree_iter_verify(iter);
2385
2386         return k;
2387 }
2388
2389 /**
2390  * bch2_btree_iter_peek: returns first key greater than or equal to iterator's
2391  * current position
2392  */
2393 struct bkey_s_c bch2_btree_iter_peek_upto(struct btree_iter *iter, struct bpos end)
2394 {
2395         struct btree_trans *trans = iter->trans;
2396         struct bpos search_key = btree_iter_search_key(iter);
2397         struct bkey_s_c k;
2398         struct bpos iter_pos;
2399         int ret;
2400
2401         EBUG_ON(iter->flags & BTREE_ITER_ALL_LEVELS);
2402
2403         if (iter->update_path) {
2404                 bch2_path_put(trans, iter->update_path,
2405                               iter->flags & BTREE_ITER_INTENT);
2406                 iter->update_path = NULL;
2407         }
2408
2409         bch2_btree_iter_verify_entry_exit(iter);
2410
2411         while (1) {
2412                 k = __bch2_btree_iter_peek(iter, search_key);
2413                 if (!k.k || bkey_err(k))
2414                         goto out;
2415
2416                 /*
2417                  * iter->pos should be mononotically increasing, and always be
2418                  * equal to the key we just returned - except extents can
2419                  * straddle iter->pos:
2420                  */
2421                 if (!(iter->flags & BTREE_ITER_IS_EXTENTS))
2422                         iter_pos = k.k->p;
2423                 else if (bkey_cmp(bkey_start_pos(k.k), iter->pos) > 0)
2424                         iter_pos = bkey_start_pos(k.k);
2425                 else
2426                         iter_pos = iter->pos;
2427
2428                 if (bkey_cmp(iter_pos, end) > 0) {
2429                         bch2_btree_iter_set_pos(iter, end);
2430                         k = bkey_s_c_null;
2431                         goto out;
2432                 }
2433
2434                 if (iter->update_path &&
2435                     bkey_cmp(iter->update_path->pos, k.k->p)) {
2436                         bch2_path_put(trans, iter->update_path,
2437                                       iter->flags & BTREE_ITER_INTENT);
2438                         iter->update_path = NULL;
2439                 }
2440
2441                 if ((iter->flags & BTREE_ITER_FILTER_SNAPSHOTS) &&
2442                     (iter->flags & BTREE_ITER_INTENT) &&
2443                     !(iter->flags & BTREE_ITER_IS_EXTENTS) &&
2444                     !iter->update_path) {
2445                         struct bpos pos = k.k->p;
2446
2447                         if (pos.snapshot < iter->snapshot) {
2448                                 search_key = bpos_successor(k.k->p);
2449                                 continue;
2450                         }
2451
2452                         pos.snapshot = iter->snapshot;
2453
2454                         /*
2455                          * advance, same as on exit for iter->path, but only up
2456                          * to snapshot
2457                          */
2458                         __btree_path_get(iter->path, iter->flags & BTREE_ITER_INTENT);
2459                         iter->update_path = iter->path;
2460
2461                         iter->update_path = bch2_btree_path_set_pos(trans,
2462                                                 iter->update_path, pos,
2463                                                 iter->flags & BTREE_ITER_INTENT,
2464                                                 _THIS_IP_);
2465                 }
2466
2467                 /*
2468                  * We can never have a key in a leaf node at POS_MAX, so
2469                  * we don't have to check these successor() calls:
2470                  */
2471                 if ((iter->flags & BTREE_ITER_FILTER_SNAPSHOTS) &&
2472                     !bch2_snapshot_is_ancestor(trans->c,
2473                                                iter->snapshot,
2474                                                k.k->p.snapshot)) {
2475                         search_key = bpos_successor(k.k->p);
2476                         continue;
2477                 }
2478
2479                 if (bkey_whiteout(k.k) &&
2480                     !(iter->flags & BTREE_ITER_ALL_SNAPSHOTS)) {
2481                         search_key = bkey_successor(iter, k.k->p);
2482                         continue;
2483                 }
2484
2485                 break;
2486         }
2487
2488         iter->pos = iter_pos;
2489
2490         iter->path = bch2_btree_path_set_pos(trans, iter->path, k.k->p,
2491                                 iter->flags & BTREE_ITER_INTENT,
2492                                 btree_iter_ip_allocated(iter));
2493         BUG_ON(!iter->path->nodes_locked);
2494 out:
2495         if (iter->update_path) {
2496                 if (iter->update_path->uptodate &&
2497                     !bch2_btree_path_relock(trans, iter->update_path, _THIS_IP_)) {
2498                         k = bkey_s_c_err(-EINTR);
2499                 } else {
2500                         BUG_ON(!(iter->update_path->nodes_locked & 1));
2501                         iter->update_path->should_be_locked = true;
2502                 }
2503         }
2504         iter->path->should_be_locked = true;
2505
2506         if (!(iter->flags & BTREE_ITER_ALL_SNAPSHOTS))
2507                 iter->pos.snapshot = iter->snapshot;
2508
2509         ret = bch2_btree_iter_verify_ret(iter, k);
2510         if (unlikely(ret)) {
2511                 bch2_btree_iter_set_pos(iter, iter->pos);
2512                 k = bkey_s_c_err(ret);
2513         }
2514
2515         bch2_btree_iter_verify_entry_exit(iter);
2516
2517         return k;
2518 }
2519
2520 /**
2521  * bch2_btree_iter_peek_all_levels: returns the first key greater than or equal
2522  * to iterator's current position, returning keys from every level of the btree.
2523  * For keys at different levels of the btree that compare equal, the key from
2524  * the lower level (leaf) is returned first.
2525  */
2526 struct bkey_s_c bch2_btree_iter_peek_all_levels(struct btree_iter *iter)
2527 {
2528         struct btree_trans *trans = iter->trans;
2529         struct bkey_s_c k;
2530         int ret;
2531
2532         EBUG_ON(iter->path->cached);
2533         bch2_btree_iter_verify(iter);
2534         BUG_ON(iter->path->level < iter->min_depth);
2535         BUG_ON(!(iter->flags & BTREE_ITER_ALL_SNAPSHOTS));
2536         EBUG_ON(!(iter->flags & BTREE_ITER_ALL_LEVELS));
2537
2538         while (1) {
2539                 iter->path = bch2_btree_path_set_pos(trans, iter->path, iter->pos,
2540                                         iter->flags & BTREE_ITER_INTENT,
2541                                         btree_iter_ip_allocated(iter));
2542
2543                 ret = bch2_btree_path_traverse(trans, iter->path, iter->flags);
2544                 if (unlikely(ret)) {
2545                         /* ensure that iter->k is consistent with iter->pos: */
2546                         bch2_btree_iter_set_pos(iter, iter->pos);
2547                         k = bkey_s_c_err(ret);
2548                         goto out;
2549                 }
2550
2551                 /* Already at end? */
2552                 if (!btree_path_node(iter->path, iter->path->level)) {
2553                         k = bkey_s_c_null;
2554                         goto out;
2555                 }
2556
2557                 k = btree_path_level_peek_all(trans->c,
2558                                 &iter->path->l[iter->path->level], &iter->k);
2559
2560                 /* Check if we should go up to the parent node: */
2561                 if (!k.k ||
2562                     (iter->advanced &&
2563                      !bpos_cmp(path_l(iter->path)->b->key.k.p, iter->pos))) {
2564                         iter->pos = path_l(iter->path)->b->key.k.p;
2565                         btree_path_set_level_up(iter->path);
2566                         iter->advanced = false;
2567                         continue;
2568                 }
2569
2570                 /*
2571                  * Check if we should go back down to a leaf:
2572                  * If we're not in a leaf node, we only return the current key
2573                  * if it exactly matches iter->pos - otherwise we first have to
2574                  * go back to the leaf:
2575                  */
2576                 if (iter->path->level != iter->min_depth &&
2577                     (iter->advanced ||
2578                      !k.k ||
2579                      bpos_cmp(iter->pos, k.k->p))) {
2580                         btree_path_set_level_down(trans, iter->path, iter->min_depth);
2581                         iter->pos = bpos_successor(iter->pos);
2582                         iter->advanced = false;
2583                         continue;
2584                 }
2585
2586                 /* Check if we should go to the next key: */
2587                 if (iter->path->level == iter->min_depth &&
2588                     iter->advanced &&
2589                     k.k &&
2590                     !bpos_cmp(iter->pos, k.k->p)) {
2591                         iter->pos = bpos_successor(iter->pos);
2592                         iter->advanced = false;
2593                         continue;
2594                 }
2595
2596                 if (iter->advanced &&
2597                     iter->path->level == iter->min_depth &&
2598                     bpos_cmp(k.k->p, iter->pos))
2599                         iter->advanced = false;
2600
2601                 BUG_ON(iter->advanced);
2602                 BUG_ON(!k.k);
2603                 break;
2604         }
2605
2606         iter->pos = k.k->p;
2607 out:
2608         iter->path->should_be_locked = true;
2609         bch2_btree_iter_verify(iter);
2610
2611         return k;
2612 }
2613
2614 /**
2615  * bch2_btree_iter_next: returns first key greater than iterator's current
2616  * position
2617  */
2618 struct bkey_s_c bch2_btree_iter_next(struct btree_iter *iter)
2619 {
2620         if (!bch2_btree_iter_advance(iter))
2621                 return bkey_s_c_null;
2622
2623         return bch2_btree_iter_peek(iter);
2624 }
2625
2626 /**
2627  * bch2_btree_iter_peek_prev: returns first key less than or equal to
2628  * iterator's current position
2629  */
2630 struct bkey_s_c bch2_btree_iter_peek_prev(struct btree_iter *iter)
2631 {
2632         struct btree_trans *trans = iter->trans;
2633         struct bpos search_key = iter->pos;
2634         struct btree_path *saved_path = NULL;
2635         struct bkey_s_c k;
2636         struct bkey saved_k;
2637         const struct bch_val *saved_v;
2638         int ret;
2639
2640         EBUG_ON(iter->path->cached || iter->path->level);
2641         EBUG_ON(iter->flags & BTREE_ITER_WITH_UPDATES);
2642
2643         if (iter->flags & BTREE_ITER_WITH_JOURNAL)
2644                 return bkey_s_c_err(-EIO);
2645
2646         bch2_btree_iter_verify(iter);
2647         bch2_btree_iter_verify_entry_exit(iter);
2648
2649         if (iter->flags & BTREE_ITER_FILTER_SNAPSHOTS)
2650                 search_key.snapshot = U32_MAX;
2651
2652         while (1) {
2653                 iter->path = bch2_btree_path_set_pos(trans, iter->path, search_key,
2654                                                 iter->flags & BTREE_ITER_INTENT,
2655                                                 btree_iter_ip_allocated(iter));
2656
2657                 ret = bch2_btree_path_traverse(trans, iter->path, iter->flags);
2658                 if (unlikely(ret)) {
2659                         /* ensure that iter->k is consistent with iter->pos: */
2660                         bch2_btree_iter_set_pos(iter, iter->pos);
2661                         k = bkey_s_c_err(ret);
2662                         goto out;
2663                 }
2664
2665                 k = btree_path_level_peek(trans->c, iter->path,
2666                                           &iter->path->l[0], &iter->k);
2667                 if (!k.k ||
2668                     ((iter->flags & BTREE_ITER_IS_EXTENTS)
2669                      ? bpos_cmp(bkey_start_pos(k.k), search_key) >= 0
2670                      : bpos_cmp(k.k->p, search_key) > 0))
2671                         k = btree_path_level_prev(trans->c, iter->path,
2672                                                   &iter->path->l[0], &iter->k);
2673
2674                 bch2_btree_path_check_sort(trans, iter->path, 0);
2675
2676                 if (likely(k.k)) {
2677                         if (iter->flags & BTREE_ITER_FILTER_SNAPSHOTS) {
2678                                 if (k.k->p.snapshot == iter->snapshot)
2679                                         goto got_key;
2680
2681                                 /*
2682                                  * If we have a saved candidate, and we're no
2683                                  * longer at the same _key_ (not pos), return
2684                                  * that candidate
2685                                  */
2686                                 if (saved_path && bkey_cmp(k.k->p, saved_k.p)) {
2687                                         bch2_path_put(trans, iter->path,
2688                                                       iter->flags & BTREE_ITER_INTENT);
2689                                         iter->path = saved_path;
2690                                         saved_path = NULL;
2691                                         iter->k = saved_k;
2692                                         k.v     = saved_v;
2693                                         goto got_key;
2694                                 }
2695
2696                                 if (bch2_snapshot_is_ancestor(iter->trans->c,
2697                                                               iter->snapshot,
2698                                                               k.k->p.snapshot)) {
2699                                         if (saved_path)
2700                                                 bch2_path_put(trans, saved_path,
2701                                                       iter->flags & BTREE_ITER_INTENT);
2702                                         saved_path = btree_path_clone(trans, iter->path,
2703                                                                 iter->flags & BTREE_ITER_INTENT);
2704                                         saved_k = *k.k;
2705                                         saved_v = k.v;
2706                                 }
2707
2708                                 search_key = bpos_predecessor(k.k->p);
2709                                 continue;
2710                         }
2711 got_key:
2712                         if (bkey_whiteout(k.k) &&
2713                             !(iter->flags & BTREE_ITER_ALL_SNAPSHOTS)) {
2714                                 search_key = bkey_predecessor(iter, k.k->p);
2715                                 if (iter->flags & BTREE_ITER_FILTER_SNAPSHOTS)
2716                                         search_key.snapshot = U32_MAX;
2717                                 continue;
2718                         }
2719
2720                         break;
2721                 } else if (likely(bpos_cmp(iter->path->l[0].b->data->min_key, POS_MIN))) {
2722                         /* Advance to previous leaf node: */
2723                         search_key = bpos_predecessor(iter->path->l[0].b->data->min_key);
2724                 } else {
2725                         /* Start of btree: */
2726                         bch2_btree_iter_set_pos(iter, POS_MIN);
2727                         k = bkey_s_c_null;
2728                         goto out;
2729                 }
2730         }
2731
2732         EBUG_ON(bkey_cmp(bkey_start_pos(k.k), iter->pos) > 0);
2733
2734         /* Extents can straddle iter->pos: */
2735         if (bkey_cmp(k.k->p, iter->pos) < 0)
2736                 iter->pos = k.k->p;
2737
2738         if (iter->flags & BTREE_ITER_FILTER_SNAPSHOTS)
2739                 iter->pos.snapshot = iter->snapshot;
2740 out:
2741         if (saved_path)
2742                 bch2_path_put(trans, saved_path, iter->flags & BTREE_ITER_INTENT);
2743         iter->path->should_be_locked = true;
2744
2745         bch2_btree_iter_verify_entry_exit(iter);
2746         bch2_btree_iter_verify(iter);
2747
2748         return k;
2749 }
2750
2751 /**
2752  * bch2_btree_iter_prev: returns first key less than iterator's current
2753  * position
2754  */
2755 struct bkey_s_c bch2_btree_iter_prev(struct btree_iter *iter)
2756 {
2757         if (!bch2_btree_iter_rewind(iter))
2758                 return bkey_s_c_null;
2759
2760         return bch2_btree_iter_peek_prev(iter);
2761 }
2762
2763 struct bkey_s_c bch2_btree_iter_peek_slot(struct btree_iter *iter)
2764 {
2765         struct btree_trans *trans = iter->trans;
2766         struct bpos search_key;
2767         struct bkey_s_c k;
2768         int ret;
2769
2770         bch2_btree_iter_verify(iter);
2771         bch2_btree_iter_verify_entry_exit(iter);
2772         EBUG_ON(iter->flags & BTREE_ITER_ALL_LEVELS);
2773         EBUG_ON(iter->path->level && (iter->flags & BTREE_ITER_WITH_KEY_CACHE));
2774
2775         /* extents can't span inode numbers: */
2776         if ((iter->flags & BTREE_ITER_IS_EXTENTS) &&
2777             unlikely(iter->pos.offset == KEY_OFFSET_MAX)) {
2778                 if (iter->pos.inode == KEY_INODE_MAX)
2779                         return bkey_s_c_null;
2780
2781                 bch2_btree_iter_set_pos(iter, bpos_nosnap_successor(iter->pos));
2782         }
2783
2784         search_key = btree_iter_search_key(iter);
2785         iter->path = bch2_btree_path_set_pos(trans, iter->path, search_key,
2786                                         iter->flags & BTREE_ITER_INTENT,
2787                                         btree_iter_ip_allocated(iter));
2788
2789         ret = bch2_btree_path_traverse(trans, iter->path, iter->flags);
2790         if (unlikely(ret))
2791                 return bkey_s_c_err(ret);
2792
2793         if ((iter->flags & BTREE_ITER_CACHED) ||
2794             !(iter->flags & (BTREE_ITER_IS_EXTENTS|BTREE_ITER_FILTER_SNAPSHOTS))) {
2795                 struct bkey_i *next_update;
2796
2797                 if ((iter->flags & BTREE_ITER_WITH_UPDATES) &&
2798                     (next_update = btree_trans_peek_updates(trans,
2799                                                 iter->btree_id, search_key)) &&
2800                     !bpos_cmp(next_update->k.p, iter->pos)) {
2801                         iter->k = next_update->k;
2802                         k = bkey_i_to_s_c(next_update);
2803                         goto out;
2804                 }
2805
2806                 if (unlikely(iter->flags & BTREE_ITER_WITH_JOURNAL) &&
2807                     (next_update = bch2_journal_keys_peek_slot(trans->c,
2808                                         iter->btree_id,
2809                                         iter->path->level,
2810                                         iter->pos))) {
2811                         iter->k = next_update->k;
2812                         k = bkey_i_to_s_c(next_update);
2813                         goto out;
2814                 }
2815
2816                 if (unlikely(iter->flags & BTREE_ITER_WITH_KEY_CACHE) &&
2817                     (k = btree_trans_peek_key_cache(iter, iter->pos)).k) {
2818                         if (!bkey_err(k))
2819                                 iter->k = *k.k;
2820                         goto out;
2821                 }
2822
2823                 k = bch2_btree_path_peek_slot(iter->path, &iter->k);
2824         } else {
2825                 struct bpos next;
2826
2827                 EBUG_ON(iter->path->level);
2828
2829                 if (iter->flags & BTREE_ITER_INTENT) {
2830                         struct btree_iter iter2;
2831                         struct bpos end = iter->pos;
2832
2833                         if (iter->flags & BTREE_ITER_IS_EXTENTS)
2834                                 end.offset = U64_MAX;
2835
2836                         bch2_trans_copy_iter(&iter2, iter);
2837                         k = bch2_btree_iter_peek_upto(&iter2, end);
2838
2839                         if (k.k && !bkey_err(k)) {
2840                                 iter->k = iter2.k;
2841                                 k.k = &iter->k;
2842                         }
2843                         bch2_trans_iter_exit(trans, &iter2);
2844                 } else {
2845                         struct bpos pos = iter->pos;
2846
2847                         k = bch2_btree_iter_peek(iter);
2848                         iter->pos = pos;
2849                 }
2850
2851                 if (unlikely(bkey_err(k)))
2852                         return k;
2853
2854                 next = k.k ? bkey_start_pos(k.k) : POS_MAX;
2855
2856                 if (bkey_cmp(iter->pos, next) < 0) {
2857                         bkey_init(&iter->k);
2858                         iter->k.p = iter->pos;
2859
2860                         if (iter->flags & BTREE_ITER_IS_EXTENTS) {
2861                                 bch2_key_resize(&iter->k,
2862                                                 min_t(u64, KEY_SIZE_MAX,
2863                                                       (next.inode == iter->pos.inode
2864                                                        ? next.offset
2865                                                        : KEY_OFFSET_MAX) -
2866                                                       iter->pos.offset));
2867                                 EBUG_ON(!iter->k.size);
2868                         }
2869
2870                         k = (struct bkey_s_c) { &iter->k, NULL };
2871                 }
2872         }
2873 out:
2874         iter->path->should_be_locked = true;
2875
2876         bch2_btree_iter_verify_entry_exit(iter);
2877         bch2_btree_iter_verify(iter);
2878         ret = bch2_btree_iter_verify_ret(iter, k);
2879         if (unlikely(ret))
2880                 return bkey_s_c_err(ret);
2881
2882         return k;
2883 }
2884
2885 struct bkey_s_c bch2_btree_iter_next_slot(struct btree_iter *iter)
2886 {
2887         if (!bch2_btree_iter_advance(iter))
2888                 return bkey_s_c_null;
2889
2890         return bch2_btree_iter_peek_slot(iter);
2891 }
2892
2893 struct bkey_s_c bch2_btree_iter_prev_slot(struct btree_iter *iter)
2894 {
2895         if (!bch2_btree_iter_rewind(iter))
2896                 return bkey_s_c_null;
2897
2898         return bch2_btree_iter_peek_slot(iter);
2899 }
2900
2901 /* new transactional stuff: */
2902
2903 static inline void btree_path_verify_sorted_ref(struct btree_trans *trans,
2904                                                 struct btree_path *path)
2905 {
2906         EBUG_ON(path->sorted_idx >= trans->nr_sorted);
2907         EBUG_ON(trans->sorted[path->sorted_idx] != path->idx);
2908         EBUG_ON(!(trans->paths_allocated & (1ULL << path->idx)));
2909 }
2910
2911 static inline void btree_trans_verify_sorted_refs(struct btree_trans *trans)
2912 {
2913 #ifdef CONFIG_BCACHEFS_DEBUG
2914         unsigned i;
2915
2916         for (i = 0; i < trans->nr_sorted; i++)
2917                 btree_path_verify_sorted_ref(trans, trans->paths + trans->sorted[i]);
2918 #endif
2919 }
2920
2921 static void btree_trans_verify_sorted(struct btree_trans *trans)
2922 {
2923 #ifdef CONFIG_BCACHEFS_DEBUG
2924         struct btree_path *path, *prev = NULL;
2925         unsigned i;
2926
2927         if (!bch2_debug_check_iterators)
2928                 return;
2929
2930         trans_for_each_path_inorder(trans, path, i) {
2931                 if (prev && btree_path_cmp(prev, path) > 0) {
2932                         bch2_dump_trans_paths_updates(trans);
2933                         panic("trans paths out of order!\n");
2934                 }
2935                 prev = path;
2936         }
2937 #endif
2938 }
2939
2940 static inline void btree_path_swap(struct btree_trans *trans,
2941                                    struct btree_path *l, struct btree_path *r)
2942 {
2943         swap(l->sorted_idx, r->sorted_idx);
2944         swap(trans->sorted[l->sorted_idx],
2945              trans->sorted[r->sorted_idx]);
2946
2947         btree_path_verify_sorted_ref(trans, l);
2948         btree_path_verify_sorted_ref(trans, r);
2949 }
2950
2951 inline void bch2_btree_path_check_sort(struct btree_trans *trans, struct btree_path *path,
2952                                        int cmp)
2953 {
2954         struct btree_path *n;
2955
2956         if (cmp <= 0) {
2957                 n = prev_btree_path(trans, path);
2958                 if (n && btree_path_cmp(n, path) > 0) {
2959                         do {
2960                                 btree_path_swap(trans, n, path);
2961                                 n = prev_btree_path(trans, path);
2962                         } while (n && btree_path_cmp(n, path) > 0);
2963
2964                         goto out;
2965                 }
2966         }
2967
2968         if (cmp >= 0) {
2969                 n = next_btree_path(trans, path);
2970                 if (n && btree_path_cmp(path, n) > 0) {
2971                         do {
2972                                 btree_path_swap(trans, path, n);
2973                                 n = next_btree_path(trans, path);
2974                         } while (n && btree_path_cmp(path, n) > 0);
2975                 }
2976         }
2977 out:
2978         btree_trans_verify_sorted(trans);
2979 }
2980
2981 static inline void btree_path_list_remove(struct btree_trans *trans,
2982                                           struct btree_path *path)
2983 {
2984         unsigned i;
2985
2986         EBUG_ON(path->sorted_idx >= trans->nr_sorted);
2987
2988         array_remove_item(trans->sorted, trans->nr_sorted, path->sorted_idx);
2989
2990         for (i = path->sorted_idx; i < trans->nr_sorted; i++)
2991                 trans->paths[trans->sorted[i]].sorted_idx = i;
2992
2993         path->sorted_idx = U8_MAX;
2994
2995         btree_trans_verify_sorted_refs(trans);
2996 }
2997
2998 static inline void btree_path_list_add(struct btree_trans *trans,
2999                                        struct btree_path *pos,
3000                                        struct btree_path *path)
3001 {
3002         unsigned i;
3003
3004         btree_trans_verify_sorted_refs(trans);
3005
3006         path->sorted_idx = pos ? pos->sorted_idx + 1 : 0;
3007
3008         if (trans->in_traverse_all &&
3009             trans->traverse_all_idx != U8_MAX &&
3010             trans->traverse_all_idx >= path->sorted_idx)
3011                 trans->traverse_all_idx++;
3012
3013         array_insert_item(trans->sorted, trans->nr_sorted, path->sorted_idx, path->idx);
3014
3015         for (i = path->sorted_idx; i < trans->nr_sorted; i++)
3016                 trans->paths[trans->sorted[i]].sorted_idx = i;
3017
3018         btree_trans_verify_sorted_refs(trans);
3019 }
3020
3021 void bch2_trans_iter_exit(struct btree_trans *trans, struct btree_iter *iter)
3022 {
3023         if (iter->path)
3024                 bch2_path_put(trans, iter->path,
3025                               iter->flags & BTREE_ITER_INTENT);
3026         if (iter->update_path)
3027                 bch2_path_put(trans, iter->update_path,
3028                               iter->flags & BTREE_ITER_INTENT);
3029         if (iter->key_cache_path)
3030                 bch2_path_put(trans, iter->key_cache_path,
3031                               iter->flags & BTREE_ITER_INTENT);
3032         iter->path = NULL;
3033         iter->update_path = NULL;
3034         iter->key_cache_path = NULL;
3035 }
3036
3037 static void __bch2_trans_iter_init(struct btree_trans *trans,
3038                                    struct btree_iter *iter,
3039                                    unsigned btree_id, struct bpos pos,
3040                                    unsigned locks_want,
3041                                    unsigned depth,
3042                                    unsigned flags,
3043                                    unsigned long ip)
3044 {
3045         EBUG_ON(trans->restarted);
3046
3047         if (flags & BTREE_ITER_ALL_LEVELS)
3048                 flags |= BTREE_ITER_ALL_SNAPSHOTS|__BTREE_ITER_ALL_SNAPSHOTS;
3049
3050         if (!(flags & (BTREE_ITER_ALL_SNAPSHOTS|BTREE_ITER_NOT_EXTENTS)) &&
3051             btree_node_type_is_extents(btree_id))
3052                 flags |= BTREE_ITER_IS_EXTENTS;
3053
3054         if (!(flags & __BTREE_ITER_ALL_SNAPSHOTS) &&
3055             !btree_type_has_snapshots(btree_id))
3056                 flags &= ~BTREE_ITER_ALL_SNAPSHOTS;
3057
3058         if (!(flags & BTREE_ITER_ALL_SNAPSHOTS) &&
3059             btree_type_has_snapshots(btree_id))
3060                 flags |= BTREE_ITER_FILTER_SNAPSHOTS;
3061
3062         if (!test_bit(JOURNAL_REPLAY_DONE, &trans->c->journal.flags))
3063                 flags |= BTREE_ITER_WITH_JOURNAL;
3064
3065         iter->trans     = trans;
3066         iter->path      = NULL;
3067         iter->update_path = NULL;
3068         iter->key_cache_path = NULL;
3069         iter->btree_id  = btree_id;
3070         iter->min_depth = depth;
3071         iter->flags     = flags;
3072         iter->snapshot  = pos.snapshot;
3073         iter->pos       = pos;
3074         iter->k.type    = KEY_TYPE_deleted;
3075         iter->k.p       = pos;
3076         iter->k.size    = 0;
3077 #ifdef CONFIG_BCACHEFS_DEBUG
3078         iter->ip_allocated = ip;
3079 #endif
3080
3081         iter->path = bch2_path_get(trans, btree_id, iter->pos,
3082                                    locks_want, depth, flags, ip);
3083 }
3084
3085 void bch2_trans_iter_init(struct btree_trans *trans,
3086                           struct btree_iter *iter,
3087                           unsigned btree_id, struct bpos pos,
3088                           unsigned flags)
3089 {
3090         if (!btree_id_cached(trans->c, btree_id)) {
3091                 flags &= ~BTREE_ITER_CACHED;
3092                 flags &= ~BTREE_ITER_WITH_KEY_CACHE;
3093         } else if (!(flags & BTREE_ITER_CACHED))
3094                 flags |= BTREE_ITER_WITH_KEY_CACHE;
3095
3096         __bch2_trans_iter_init(trans, iter, btree_id, pos,
3097                                0, 0, flags, _RET_IP_);
3098 }
3099
3100 void bch2_trans_node_iter_init(struct btree_trans *trans,
3101                                struct btree_iter *iter,
3102                                enum btree_id btree_id,
3103                                struct bpos pos,
3104                                unsigned locks_want,
3105                                unsigned depth,
3106                                unsigned flags)
3107 {
3108         __bch2_trans_iter_init(trans, iter, btree_id, pos, locks_want, depth,
3109                                BTREE_ITER_NOT_EXTENTS|
3110                                __BTREE_ITER_ALL_SNAPSHOTS|
3111                                BTREE_ITER_ALL_SNAPSHOTS|
3112                                flags, _RET_IP_);
3113         BUG_ON(iter->path->locks_want    < min(locks_want, BTREE_MAX_DEPTH));
3114         BUG_ON(iter->path->level        != depth);
3115         BUG_ON(iter->min_depth          != depth);
3116 }
3117
3118 void bch2_trans_copy_iter(struct btree_iter *dst, struct btree_iter *src)
3119 {
3120         *dst = *src;
3121         if (src->path)
3122                 __btree_path_get(src->path, src->flags & BTREE_ITER_INTENT);
3123         if (src->update_path)
3124                 __btree_path_get(src->update_path, src->flags & BTREE_ITER_INTENT);
3125         dst->key_cache_path = NULL;
3126 }
3127
3128 void *bch2_trans_kmalloc(struct btree_trans *trans, size_t size)
3129 {
3130         size_t new_top = trans->mem_top + size;
3131         void *p;
3132
3133         if (new_top > trans->mem_bytes) {
3134                 size_t old_bytes = trans->mem_bytes;
3135                 size_t new_bytes = roundup_pow_of_two(new_top);
3136                 void *new_mem;
3137
3138                 WARN_ON_ONCE(new_bytes > BTREE_TRANS_MEM_MAX);
3139
3140                 new_mem = krealloc(trans->mem, new_bytes, GFP_NOFS);
3141                 if (!new_mem && new_bytes <= BTREE_TRANS_MEM_MAX) {
3142                         new_mem = mempool_alloc(&trans->c->btree_trans_mem_pool, GFP_KERNEL);
3143                         new_bytes = BTREE_TRANS_MEM_MAX;
3144                         kfree(trans->mem);
3145                 }
3146
3147                 if (!new_mem)
3148                         return ERR_PTR(-ENOMEM);
3149
3150                 trans->mem = new_mem;
3151                 trans->mem_bytes = new_bytes;
3152
3153                 if (old_bytes) {
3154                         trace_trans_restart_mem_realloced(trans->fn, _RET_IP_, new_bytes);
3155                         btree_trans_restart(trans);
3156                         return ERR_PTR(-EINTR);
3157                 }
3158         }
3159
3160         p = trans->mem + trans->mem_top;
3161         trans->mem_top += size;
3162         memset(p, 0, size);
3163         return p;
3164 }
3165
3166 /**
3167  * bch2_trans_begin() - reset a transaction after a interrupted attempt
3168  * @trans: transaction to reset
3169  *
3170  * While iterating over nodes or updating nodes a attempt to lock a btree
3171  * node may return EINTR when the trylock fails. When this occurs
3172  * bch2_trans_begin() should be called and the transaction retried.
3173  */
3174 void bch2_trans_begin(struct btree_trans *trans)
3175 {
3176         struct btree_insert_entry *i;
3177         struct btree_path *path;
3178
3179         trans_for_each_update(trans, i)
3180                 __btree_path_put(i->path, true);
3181
3182         memset(&trans->journal_res, 0, sizeof(trans->journal_res));
3183         trans->extra_journal_res        = 0;
3184         trans->nr_updates               = 0;
3185         trans->mem_top                  = 0;
3186
3187         trans->hooks                    = NULL;
3188         trans->extra_journal_entries.nr = 0;
3189
3190         if (trans->fs_usage_deltas) {
3191                 trans->fs_usage_deltas->used = 0;
3192                 memset(&trans->fs_usage_deltas->memset_start, 0,
3193                        (void *) &trans->fs_usage_deltas->memset_end -
3194                        (void *) &trans->fs_usage_deltas->memset_start);
3195         }
3196
3197         trans_for_each_path(trans, path) {
3198                 path->should_be_locked = false;
3199
3200                 /*
3201                  * If the transaction wasn't restarted, we're presuming to be
3202                  * doing something new: dont keep iterators excpt the ones that
3203                  * are in use - except for the subvolumes btree:
3204                  */
3205                 if (!trans->restarted && path->btree_id != BTREE_ID_subvolumes)
3206                         path->preserve = false;
3207
3208                 /*
3209                  * XXX: we probably shouldn't be doing this if the transaction
3210                  * was restarted, but currently we still overflow transaction
3211                  * iterators if we do that
3212                  */
3213                 if (!path->ref && !path->preserve)
3214                         __bch2_path_free(trans, path);
3215                 else
3216                         path->preserve = false;
3217         }
3218
3219         bch2_trans_cond_resched(trans);
3220
3221         if (trans->restarted)
3222                 bch2_btree_path_traverse_all(trans);
3223
3224         trans->restarted = false;
3225 }
3226
3227 static void bch2_trans_alloc_paths(struct btree_trans *trans, struct bch_fs *c)
3228 {
3229         size_t paths_bytes      = sizeof(struct btree_path) * BTREE_ITER_MAX;
3230         size_t updates_bytes    = sizeof(struct btree_insert_entry) * BTREE_ITER_MAX;
3231         void *p = NULL;
3232
3233         BUG_ON(trans->used_mempool);
3234
3235 #ifdef __KERNEL__
3236         p = this_cpu_xchg(c->btree_paths_bufs->path , NULL);
3237 #endif
3238         if (!p)
3239                 p = mempool_alloc(&trans->c->btree_paths_pool, GFP_NOFS);
3240
3241         trans->paths            = p; p += paths_bytes;
3242         trans->updates          = p; p += updates_bytes;
3243 }
3244
3245 void __bch2_trans_init(struct btree_trans *trans, struct bch_fs *c,
3246                        unsigned expected_nr_iters,
3247                        size_t expected_mem_bytes,
3248                        const char *fn)
3249         __acquires(&c->btree_trans_barrier)
3250 {
3251         BUG_ON(lock_class_is_held(&bch2_btree_node_lock_key));
3252
3253         memset(trans, 0, sizeof(*trans));
3254         trans->c                = c;
3255         trans->fn               = fn;
3256
3257         bch2_trans_alloc_paths(trans, c);
3258
3259         if (expected_mem_bytes) {
3260                 trans->mem_bytes = roundup_pow_of_two(expected_mem_bytes);
3261                 trans->mem = kmalloc(trans->mem_bytes, GFP_KERNEL|__GFP_NOFAIL);
3262
3263                 if (!unlikely(trans->mem)) {
3264                         trans->mem = mempool_alloc(&c->btree_trans_mem_pool, GFP_KERNEL);
3265                         trans->mem_bytes = BTREE_TRANS_MEM_MAX;
3266                 }
3267         }
3268
3269         trans->srcu_idx = srcu_read_lock(&c->btree_trans_barrier);
3270
3271         trans->pid = current->pid;
3272         mutex_lock(&c->btree_trans_lock);
3273         list_add(&trans->list, &c->btree_trans_list);
3274         mutex_unlock(&c->btree_trans_lock);
3275 }
3276
3277 static void check_btree_paths_leaked(struct btree_trans *trans)
3278 {
3279 #ifdef CONFIG_BCACHEFS_DEBUG
3280         struct bch_fs *c = trans->c;
3281         struct btree_path *path;
3282
3283         trans_for_each_path(trans, path)
3284                 if (path->ref)
3285                         goto leaked;
3286         return;
3287 leaked:
3288         bch_err(c, "btree paths leaked from %s!", trans->fn);
3289         trans_for_each_path(trans, path)
3290                 if (path->ref)
3291                         printk(KERN_ERR "  btree %s %pS\n",
3292                                bch2_btree_ids[path->btree_id],
3293                                (void *) path->ip_allocated);
3294         /* Be noisy about this: */
3295         bch2_fatal_error(c);
3296 #endif
3297 }
3298
3299 void bch2_trans_exit(struct btree_trans *trans)
3300         __releases(&c->btree_trans_barrier)
3301 {
3302         struct btree_insert_entry *i;
3303         struct bch_fs *c = trans->c;
3304
3305         bch2_trans_unlock(trans);
3306
3307         trans_for_each_update(trans, i)
3308                 __btree_path_put(i->path, true);
3309         trans->nr_updates               = 0;
3310
3311         check_btree_paths_leaked(trans);
3312
3313         mutex_lock(&c->btree_trans_lock);
3314         list_del(&trans->list);
3315         mutex_unlock(&c->btree_trans_lock);
3316
3317         srcu_read_unlock(&c->btree_trans_barrier, trans->srcu_idx);
3318
3319         bch2_journal_preres_put(&c->journal, &trans->journal_preres);
3320
3321         kfree(trans->extra_journal_entries.data);
3322
3323         if (trans->fs_usage_deltas) {
3324                 if (trans->fs_usage_deltas->size + sizeof(trans->fs_usage_deltas) ==
3325                     REPLICAS_DELTA_LIST_MAX)
3326                         mempool_free(trans->fs_usage_deltas,
3327                                      &c->replicas_delta_pool);
3328                 else
3329                         kfree(trans->fs_usage_deltas);
3330         }
3331
3332         if (trans->mem_bytes == BTREE_TRANS_MEM_MAX)
3333                 mempool_free(trans->mem, &c->btree_trans_mem_pool);
3334         else
3335                 kfree(trans->mem);
3336
3337 #ifdef __KERNEL__
3338         /*
3339          * Userspace doesn't have a real percpu implementation:
3340          */
3341         trans->paths = this_cpu_xchg(c->btree_paths_bufs->path, trans->paths);
3342 #endif
3343
3344         if (trans->paths)
3345                 mempool_free(trans->paths, &c->btree_paths_pool);
3346
3347         trans->mem      = (void *) 0x1;
3348         trans->paths    = (void *) 0x1;
3349 }
3350
3351 static void __maybe_unused
3352 bch2_btree_path_node_to_text(struct printbuf *out,
3353                              struct btree_bkey_cached_common *_b,
3354                              bool cached)
3355 {
3356         pr_buf(out, "    l=%u %s:",
3357                _b->level, bch2_btree_ids[_b->btree_id]);
3358         bch2_bpos_to_text(out, btree_node_pos(_b, cached));
3359 }
3360
3361 static bool trans_has_locks(struct btree_trans *trans)
3362 {
3363         struct btree_path *path;
3364
3365         trans_for_each_path(trans, path)
3366                 if (path->nodes_locked)
3367                         return true;
3368         return false;
3369 }
3370
3371 void bch2_btree_trans_to_text(struct printbuf *out, struct bch_fs *c)
3372 {
3373         struct btree_trans *trans;
3374         struct btree_path *path;
3375         struct btree *b;
3376         static char lock_types[] = { 'r', 'i', 'w' };
3377         unsigned l;
3378
3379         mutex_lock(&c->btree_trans_lock);
3380         list_for_each_entry(trans, &c->btree_trans_list, list) {
3381                 if (!trans_has_locks(trans))
3382                         continue;
3383
3384                 pr_buf(out, "%i %s\n", trans->pid, trans->fn);
3385
3386                 trans_for_each_path(trans, path) {
3387                         if (!path->nodes_locked)
3388                                 continue;
3389
3390                         pr_buf(out, "  path %u %c l=%u %s:",
3391                                path->idx,
3392                                path->cached ? 'c' : 'b',
3393                                path->level,
3394                                bch2_btree_ids[path->btree_id]);
3395                         bch2_bpos_to_text(out, path->pos);
3396                         pr_buf(out, "\n");
3397
3398                         for (l = 0; l < BTREE_MAX_DEPTH; l++) {
3399                                 if (btree_node_locked(path, l)) {
3400                                         pr_buf(out, "    %s l=%u ",
3401                                                btree_node_intent_locked(path, l) ? "i" : "r", l);
3402                                         bch2_btree_path_node_to_text(out,
3403                                                         (void *) path->l[l].b,
3404                                                         path->cached);
3405                                         pr_buf(out, "\n");
3406                                 }
3407                         }
3408                 }
3409
3410                 b = READ_ONCE(trans->locking);
3411                 if (b) {
3412                         path = &trans->paths[trans->locking_path_idx];
3413                         pr_buf(out, "  locking path %u %c l=%u %c %s:",
3414                                trans->locking_path_idx,
3415                                path->cached ? 'c' : 'b',
3416                                trans->locking_level,
3417                                lock_types[trans->locking_lock_type],
3418                                bch2_btree_ids[trans->locking_btree_id]);
3419                         bch2_bpos_to_text(out, trans->locking_pos);
3420
3421                         pr_buf(out, " node ");
3422                         bch2_btree_path_node_to_text(out,
3423                                         (void *) b, path->cached);
3424                         pr_buf(out, "\n");
3425                 }
3426         }
3427         mutex_unlock(&c->btree_trans_lock);
3428 }
3429
3430 void bch2_fs_btree_iter_exit(struct bch_fs *c)
3431 {
3432         if (c->btree_trans_barrier_initialized)
3433                 cleanup_srcu_struct(&c->btree_trans_barrier);
3434         mempool_exit(&c->btree_trans_mem_pool);
3435         mempool_exit(&c->btree_paths_pool);
3436 }
3437
3438 int bch2_fs_btree_iter_init(struct bch_fs *c)
3439 {
3440         unsigned nr = BTREE_ITER_MAX;
3441         int ret;
3442
3443         INIT_LIST_HEAD(&c->btree_trans_list);
3444         mutex_init(&c->btree_trans_lock);
3445
3446         ret   = mempool_init_kmalloc_pool(&c->btree_paths_pool, 1,
3447                         sizeof(struct btree_path) * nr +
3448                         sizeof(struct btree_insert_entry) * nr) ?:
3449                 mempool_init_kmalloc_pool(&c->btree_trans_mem_pool, 1,
3450                                           BTREE_TRANS_MEM_MAX) ?:
3451                 init_srcu_struct(&c->btree_trans_barrier);
3452         if (!ret)
3453                 c->btree_trans_barrier_initialized = true;
3454         return ret;
3455 }