blob: 5db893d6a824e87c592b19f0215e7aa9e9a171e2 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2010 Kent Overstreet <kent.overstreet@gmail.com>
4 *
5 * Uses a block device as cache for other block devices; optimized for SSDs.
6 * All allocation is done in buckets, which should match the erase block size
7 * of the device.
8 *
9 * Buckets containing cached data are kept on a heap sorted by priority;
10 * bucket priority is increased on cache hit, and periodically all the buckets
11 * on the heap have their priority scaled down. This currently is just used as
12 * an LRU but in the future should allow for more intelligent heuristics.
13 *
14 * Buckets have an 8 bit counter; freeing is accomplished by incrementing the
15 * counter. Garbage collection is used to remove stale pointers.
16 *
17 * Indexing is done via a btree; nodes are not necessarily fully sorted, rather
18 * as keys are inserted we only sort the pages that have not yet been written.
19 * When garbage collection is run, we resort the entire node.
20 *
21 * All configuration is done via sysfs; see Documentation/admin-guide/bcache.rst.
22 */
23
24#include "bcache.h"
25#include "btree.h"
26#include "debug.h"
27#include "extents.h"
28
29#include <linux/slab.h>
30#include <linux/bitops.h>
31#include <linux/hash.h>
32#include <linux/kthread.h>
33#include <linux/prefetch.h>
34#include <linux/random.h>
35#include <linux/rcupdate.h>
36#include <linux/sched/clock.h>
37#include <linux/rculist.h>
38#include <linux/delay.h>
39#include <trace/events/bcache.h>
40
41/*
42 * Todo:
43 * register_bcache: Return errors out to userspace correctly
44 *
45 * Writeback: don't undirty key until after a cache flush
46 *
47 * Create an iterator for key pointers
48 *
49 * On btree write error, mark bucket such that it won't be freed from the cache
50 *
51 * Journalling:
52 * Check for bad keys in replay
53 * Propagate barriers
54 * Refcount journal entries in journal_replay
55 *
56 * Garbage collection:
57 * Finish incremental gc
58 * Gc should free old UUIDs, data for invalid UUIDs
59 *
60 * Provide a way to list backing device UUIDs we have data cached for, and
61 * probably how long it's been since we've seen them, and a way to invalidate
62 * dirty data for devices that will never be attached again
63 *
64 * Keep 1 min/5 min/15 min statistics of how busy a block device has been, so
65 * that based on that and how much dirty data we have we can keep writeback
66 * from being starved
67 *
68 * Add a tracepoint or somesuch to watch for writeback starvation
69 *
70 * When btree depth > 1 and splitting an interior node, we have to make sure
71 * alloc_bucket() cannot fail. This should be true but is not completely
72 * obvious.
73 *
74 * Plugging?
75 *
76 * If data write is less than hard sector size of ssd, round up offset in open
77 * bucket to the next whole sector
78 *
79 * Superblock needs to be fleshed out for multiple cache devices
80 *
81 * Add a sysfs tunable for the number of writeback IOs in flight
82 *
83 * Add a sysfs tunable for the number of open data buckets
84 *
85 * IO tracking: Can we track when one process is doing io on behalf of another?
86 * IO tracking: Don't use just an average, weigh more recent stuff higher
87 *
88 * Test module load/unload
89 */
90
91#define MAX_NEED_GC 64
92#define MAX_SAVE_PRIO 72
93#define MAX_GC_TIMES 100
94#define MIN_GC_NODES 100
95#define GC_SLEEP_MS 100
96
97#define PTR_DIRTY_BIT (((uint64_t) 1 << 36))
98
99#define PTR_HASH(c, k) \
100 (((k)->ptr[0] >> c->bucket_bits) | PTR_GEN(k, 0))
101
102static struct workqueue_struct *btree_io_wq;
103
104#define insert_lock(s, b) ((b)->level <= (s)->lock)
105
106/*
107 * These macros are for recursing down the btree - they handle the details of
108 * locking and looking up nodes in the cache for you. They're best treated as
109 * mere syntax when reading code that uses them.
110 *
111 * op->lock determines whether we take a read or a write lock at a given depth.
112 * If you've got a read lock and find that you need a write lock (i.e. you're
113 * going to have to split), set op->lock and return -EINTR; btree_root() will
114 * call you again and you'll have the correct lock.
115 */
116
117/**
118 * btree - recurse down the btree on a specified key
119 * @fn: function to call, which will be passed the child node
120 * @key: key to recurse on
121 * @b: parent btree node
122 * @op: pointer to struct btree_op
123 */
124#define btree(fn, key, b, op, ...) \
125({ \
126 int _r, l = (b)->level - 1; \
127 bool _w = l <= (op)->lock; \
128 struct btree *_child = bch_btree_node_get((b)->c, op, key, l, \
129 _w, b); \
130 if (!IS_ERR(_child)) { \
131 _r = bch_btree_ ## fn(_child, op, ##__VA_ARGS__); \
132 rw_unlock(_w, _child); \
133 } else \
134 _r = PTR_ERR(_child); \
135 _r; \
136})
137
138/**
139 * btree_root - call a function on the root of the btree
140 * @fn: function to call, which will be passed the child node
141 * @c: cache set
142 * @op: pointer to struct btree_op
143 */
144#define btree_root(fn, c, op, ...) \
145({ \
146 int _r = -EINTR; \
147 do { \
148 struct btree *_b = (c)->root; \
149 bool _w = insert_lock(op, _b); \
150 rw_lock(_w, _b, _b->level); \
151 if (_b == (c)->root && \
152 _w == insert_lock(op, _b)) { \
153 _r = bch_btree_ ## fn(_b, op, ##__VA_ARGS__); \
154 } \
155 rw_unlock(_w, _b); \
156 bch_cannibalize_unlock(c); \
157 if (_r == -EINTR) \
158 schedule(); \
159 } while (_r == -EINTR); \
160 \
161 finish_wait(&(c)->btree_cache_wait, &(op)->wait); \
162 _r; \
163})
164
165static inline struct bset *write_block(struct btree *b)
166{
167 return ((void *) btree_bset_first(b)) + b->written * block_bytes(b->c);
168}
169
170static void bch_btree_init_next(struct btree *b)
171{
172 /* If not a leaf node, always sort */
173 if (b->level && b->keys.nsets)
174 bch_btree_sort(&b->keys, &b->c->sort);
175 else
176 bch_btree_sort_lazy(&b->keys, &b->c->sort);
177
178 if (b->written < btree_blocks(b))
179 bch_bset_init_next(&b->keys, write_block(b),
180 bset_magic(&b->c->sb));
181
182}
183
184/* Btree key manipulation */
185
186void bkey_put(struct cache_set *c, struct bkey *k)
187{
188 unsigned int i;
189
190 for (i = 0; i < KEY_PTRS(k); i++)
191 if (ptr_available(c, k, i))
192 atomic_dec_bug(&PTR_BUCKET(c, k, i)->pin);
193}
194
195/* Btree IO */
196
197static uint64_t btree_csum_set(struct btree *b, struct bset *i)
198{
199 uint64_t crc = b->key.ptr[0];
200 void *data = (void *) i + 8, *end = bset_bkey_last(i);
201
202 crc = bch_crc64_update(crc, data, end - data);
203 return crc ^ 0xffffffffffffffffULL;
204}
205
206void bch_btree_node_read_done(struct btree *b)
207{
208 const char *err = "bad btree header";
209 struct bset *i = btree_bset_first(b);
210 struct btree_iter *iter;
211
212 /*
213 * c->fill_iter can allocate an iterator with more memory space
214 * than static MAX_BSETS.
215 * See the comment arount cache_set->fill_iter.
216 */
217 iter = mempool_alloc(&b->c->fill_iter, GFP_NOIO);
218 iter->size = b->c->sb.bucket_size / b->c->sb.block_size;
219 iter->used = 0;
220
221#ifdef CONFIG_BCACHE_DEBUG
222 iter->b = &b->keys;
223#endif
224
225 if (!i->seq)
226 goto err;
227
228 for (;
229 b->written < btree_blocks(b) && i->seq == b->keys.set[0].data->seq;
230 i = write_block(b)) {
231 err = "unsupported bset version";
232 if (i->version > BCACHE_BSET_VERSION)
233 goto err;
234
235 err = "bad btree header";
236 if (b->written + set_blocks(i, block_bytes(b->c)) >
237 btree_blocks(b))
238 goto err;
239
240 err = "bad magic";
241 if (i->magic != bset_magic(&b->c->sb))
242 goto err;
243
244 err = "bad checksum";
245 switch (i->version) {
246 case 0:
247 if (i->csum != csum_set(i))
248 goto err;
249 break;
250 case BCACHE_BSET_VERSION:
251 if (i->csum != btree_csum_set(b, i))
252 goto err;
253 break;
254 }
255
256 err = "empty set";
257 if (i != b->keys.set[0].data && !i->keys)
258 goto err;
259
260 bch_btree_iter_push(iter, i->start, bset_bkey_last(i));
261
262 b->written += set_blocks(i, block_bytes(b->c));
263 }
264
265 err = "corrupted btree";
266 for (i = write_block(b);
267 bset_sector_offset(&b->keys, i) < KEY_SIZE(&b->key);
268 i = ((void *) i) + block_bytes(b->c))
269 if (i->seq == b->keys.set[0].data->seq)
270 goto err;
271
272 bch_btree_sort_and_fix_extents(&b->keys, iter, &b->c->sort);
273
274 i = b->keys.set[0].data;
275 err = "short btree key";
276 if (b->keys.set[0].size &&
277 bkey_cmp(&b->key, &b->keys.set[0].end) < 0)
278 goto err;
279
280 if (b->written < btree_blocks(b))
281 bch_bset_init_next(&b->keys, write_block(b),
282 bset_magic(&b->c->sb));
283out:
284 mempool_free(iter, &b->c->fill_iter);
285 return;
286err:
287 set_btree_node_io_error(b);
288 bch_cache_set_error(b->c, "%s at bucket %zu, block %u, %u keys",
289 err, PTR_BUCKET_NR(b->c, &b->key, 0),
290 bset_block_offset(b, i), i->keys);
291 goto out;
292}
293
294static void btree_node_read_endio(struct bio *bio)
295{
296 struct closure *cl = bio->bi_private;
297
298 closure_put(cl);
299}
300
301static void bch_btree_node_read(struct btree *b)
302{
303 uint64_t start_time = local_clock();
304 struct closure cl;
305 struct bio *bio;
306
307 trace_bcache_btree_read(b);
308
309 closure_init_stack(&cl);
310
311 bio = bch_bbio_alloc(b->c);
312 bio->bi_iter.bi_size = KEY_SIZE(&b->key) << 9;
313 bio->bi_end_io = btree_node_read_endio;
314 bio->bi_private = &cl;
315 bio->bi_opf = REQ_OP_READ | REQ_META;
316
317 bch_bio_map(bio, b->keys.set[0].data);
318
319 bch_submit_bbio(bio, b->c, &b->key, 0);
320 closure_sync(&cl);
321
322 if (bio->bi_status)
323 set_btree_node_io_error(b);
324
325 bch_bbio_free(bio, b->c);
326
327 if (btree_node_io_error(b))
328 goto err;
329
330 bch_btree_node_read_done(b);
331 bch_time_stats_update(&b->c->btree_read_time, start_time);
332
333 return;
334err:
335 bch_cache_set_error(b->c, "io error reading bucket %zu",
336 PTR_BUCKET_NR(b->c, &b->key, 0));
337}
338
339static void btree_complete_write(struct btree *b, struct btree_write *w)
340{
341 if (w->prio_blocked &&
342 !atomic_sub_return(w->prio_blocked, &b->c->prio_blocked))
343 wake_up_allocators(b->c);
344
345 if (w->journal) {
346 atomic_dec_bug(w->journal);
347 __closure_wake_up(&b->c->journal.wait);
348 }
349
350 w->prio_blocked = 0;
351 w->journal = NULL;
352}
353
354static void btree_node_write_unlock(struct closure *cl)
355{
356 struct btree *b = container_of(cl, struct btree, io);
357
358 up(&b->io_mutex);
359}
360
361static void __btree_node_write_done(struct closure *cl)
362{
363 struct btree *b = container_of(cl, struct btree, io);
364 struct btree_write *w = btree_prev_write(b);
365
366 bch_bbio_free(b->bio, b->c);
367 b->bio = NULL;
368 btree_complete_write(b, w);
369
370 if (btree_node_dirty(b))
371 queue_delayed_work(btree_io_wq, &b->work, 30 * HZ);
372
373 closure_return_with_destructor(cl, btree_node_write_unlock);
374}
375
376static void btree_node_write_done(struct closure *cl)
377{
378 struct btree *b = container_of(cl, struct btree, io);
379
380 bio_free_pages(b->bio);
381 __btree_node_write_done(cl);
382}
383
384static void btree_node_write_endio(struct bio *bio)
385{
386 struct closure *cl = bio->bi_private;
387 struct btree *b = container_of(cl, struct btree, io);
388
389 if (bio->bi_status)
390 set_btree_node_io_error(b);
391
392 bch_bbio_count_io_errors(b->c, bio, bio->bi_status, "writing btree");
393 closure_put(cl);
394}
395
396static void do_btree_node_write(struct btree *b)
397{
398 struct closure *cl = &b->io;
399 struct bset *i = btree_bset_last(b);
400 BKEY_PADDED(key) k;
401
402 i->version = BCACHE_BSET_VERSION;
403 i->csum = btree_csum_set(b, i);
404
405 BUG_ON(b->bio);
406 b->bio = bch_bbio_alloc(b->c);
407
408 b->bio->bi_end_io = btree_node_write_endio;
409 b->bio->bi_private = cl;
410 b->bio->bi_iter.bi_size = roundup(set_bytes(i), block_bytes(b->c));
411 b->bio->bi_opf = REQ_OP_WRITE | REQ_META | REQ_FUA;
412 bch_bio_map(b->bio, i);
413
414 /*
415 * If we're appending to a leaf node, we don't technically need FUA -
416 * this write just needs to be persisted before the next journal write,
417 * which will be marked FLUSH|FUA.
418 *
419 * Similarly if we're writing a new btree root - the pointer is going to
420 * be in the next journal entry.
421 *
422 * But if we're writing a new btree node (that isn't a root) or
423 * appending to a non leaf btree node, we need either FUA or a flush
424 * when we write the parent with the new pointer. FUA is cheaper than a
425 * flush, and writes appending to leaf nodes aren't blocking anything so
426 * just make all btree node writes FUA to keep things sane.
427 */
428
429 bkey_copy(&k.key, &b->key);
430 SET_PTR_OFFSET(&k.key, 0, PTR_OFFSET(&k.key, 0) +
431 bset_sector_offset(&b->keys, i));
432
433 if (!bch_bio_alloc_pages(b->bio, __GFP_NOWARN|GFP_NOWAIT)) {
434 struct bio_vec *bv;
435 void *addr = (void *) ((unsigned long) i & ~(PAGE_SIZE - 1));
436 struct bvec_iter_all iter_all;
437
438 bio_for_each_segment_all(bv, b->bio, iter_all) {
439 memcpy(page_address(bv->bv_page), addr, PAGE_SIZE);
440 addr += PAGE_SIZE;
441 }
442
443 bch_submit_bbio(b->bio, b->c, &k.key, 0);
444
445 continue_at(cl, btree_node_write_done, NULL);
446 } else {
447 /*
448 * No problem for multipage bvec since the bio is
449 * just allocated
450 */
451 b->bio->bi_vcnt = 0;
452 bch_bio_map(b->bio, i);
453
454 bch_submit_bbio(b->bio, b->c, &k.key, 0);
455
456 closure_sync(cl);
457 continue_at_nobarrier(cl, __btree_node_write_done, NULL);
458 }
459}
460
461void __bch_btree_node_write(struct btree *b, struct closure *parent)
462{
463 struct bset *i = btree_bset_last(b);
464
465 lockdep_assert_held(&b->write_lock);
466
467 trace_bcache_btree_write(b);
468
469 BUG_ON(current->bio_list);
470 BUG_ON(b->written >= btree_blocks(b));
471 BUG_ON(b->written && !i->keys);
472 BUG_ON(btree_bset_first(b)->seq != i->seq);
473 bch_check_keys(&b->keys, "writing");
474
475 cancel_delayed_work(&b->work);
476
477 /* If caller isn't waiting for write, parent refcount is cache set */
478 down(&b->io_mutex);
479 closure_init(&b->io, parent ?: &b->c->cl);
480
481 clear_bit(BTREE_NODE_dirty, &b->flags);
482 change_bit(BTREE_NODE_write_idx, &b->flags);
483
484 do_btree_node_write(b);
485
486 atomic_long_add(set_blocks(i, block_bytes(b->c)) * b->c->sb.block_size,
487 &PTR_CACHE(b->c, &b->key, 0)->btree_sectors_written);
488
489 b->written += set_blocks(i, block_bytes(b->c));
490}
491
492void bch_btree_node_write(struct btree *b, struct closure *parent)
493{
494 unsigned int nsets = b->keys.nsets;
495
496 lockdep_assert_held(&b->lock);
497
498 __bch_btree_node_write(b, parent);
499
500 /*
501 * do verify if there was more than one set initially (i.e. we did a
502 * sort) and we sorted down to a single set:
503 */
504 if (nsets && !b->keys.nsets)
505 bch_btree_verify(b);
506
507 bch_btree_init_next(b);
508}
509
510static void bch_btree_node_write_sync(struct btree *b)
511{
512 struct closure cl;
513
514 closure_init_stack(&cl);
515
516 mutex_lock(&b->write_lock);
517 bch_btree_node_write(b, &cl);
518 mutex_unlock(&b->write_lock);
519
520 closure_sync(&cl);
521}
522
523static void btree_node_write_work(struct work_struct *w)
524{
525 struct btree *b = container_of(to_delayed_work(w), struct btree, work);
526
527 mutex_lock(&b->write_lock);
528 if (btree_node_dirty(b))
529 __bch_btree_node_write(b, NULL);
530 mutex_unlock(&b->write_lock);
531}
532
533static void bch_btree_leaf_dirty(struct btree *b, atomic_t *journal_ref)
534{
535 struct bset *i = btree_bset_last(b);
536 struct btree_write *w = btree_current_write(b);
537
538 lockdep_assert_held(&b->write_lock);
539
540 BUG_ON(!b->written);
541 BUG_ON(!i->keys);
542
543 if (!btree_node_dirty(b))
544 queue_delayed_work(btree_io_wq, &b->work, 30 * HZ);
545
546 set_btree_node_dirty(b);
547
548 if (journal_ref) {
549 if (w->journal &&
550 journal_pin_cmp(b->c, w->journal, journal_ref)) {
551 atomic_dec_bug(w->journal);
552 w->journal = NULL;
553 }
554
555 if (!w->journal) {
556 w->journal = journal_ref;
557 atomic_inc(w->journal);
558 }
559 }
560
561 /* Force write if set is too big */
562 if (set_bytes(i) > PAGE_SIZE - 48 &&
563 !current->bio_list)
564 bch_btree_node_write(b, NULL);
565}
566
567/*
568 * Btree in memory cache - allocation/freeing
569 * mca -> memory cache
570 */
571
572#define mca_reserve(c) (((c->root && c->root->level) \
573 ? c->root->level : 1) * 8 + 16)
574#define mca_can_free(c) \
575 max_t(int, 0, c->btree_cache_used - mca_reserve(c))
576
577static void mca_data_free(struct btree *b)
578{
579 BUG_ON(b->io_mutex.count != 1);
580
581 bch_btree_keys_free(&b->keys);
582
583 b->c->btree_cache_used--;
584 list_move(&b->list, &b->c->btree_cache_freed);
585}
586
587static void mca_bucket_free(struct btree *b)
588{
589 BUG_ON(btree_node_dirty(b));
590
591 b->key.ptr[0] = 0;
592 hlist_del_init_rcu(&b->hash);
593 list_move(&b->list, &b->c->btree_cache_freeable);
594}
595
596static unsigned int btree_order(struct bkey *k)
597{
598 return ilog2(KEY_SIZE(k) / PAGE_SECTORS ?: 1);
599}
600
601static void mca_data_alloc(struct btree *b, struct bkey *k, gfp_t gfp)
602{
603 if (!bch_btree_keys_alloc(&b->keys,
604 max_t(unsigned int,
605 ilog2(b->c->btree_pages),
606 btree_order(k)),
607 gfp)) {
608 b->c->btree_cache_used++;
609 list_move(&b->list, &b->c->btree_cache);
610 } else {
611 list_move(&b->list, &b->c->btree_cache_freed);
612 }
613}
614
615static struct btree *mca_bucket_alloc(struct cache_set *c,
616 struct bkey *k, gfp_t gfp)
617{
618 /*
619 * kzalloc() is necessary here for initialization,
620 * see code comments in bch_btree_keys_init().
621 */
622 struct btree *b = kzalloc(sizeof(struct btree), gfp);
623
624 if (!b)
625 return NULL;
626
627 init_rwsem(&b->lock);
628 lockdep_set_novalidate_class(&b->lock);
629 mutex_init(&b->write_lock);
630 lockdep_set_novalidate_class(&b->write_lock);
631 INIT_LIST_HEAD(&b->list);
632 INIT_DELAYED_WORK(&b->work, btree_node_write_work);
633 b->c = c;
634 sema_init(&b->io_mutex, 1);
635
636 mca_data_alloc(b, k, gfp);
637 return b;
638}
639
640static int mca_reap(struct btree *b, unsigned int min_order, bool flush)
641{
642 struct closure cl;
643
644 closure_init_stack(&cl);
645 lockdep_assert_held(&b->c->bucket_lock);
646
647 if (!down_write_trylock(&b->lock))
648 return -ENOMEM;
649
650 BUG_ON(btree_node_dirty(b) && !b->keys.set[0].data);
651
652 if (b->keys.page_order < min_order)
653 goto out_unlock;
654
655 if (!flush) {
656 if (btree_node_dirty(b))
657 goto out_unlock;
658
659 if (down_trylock(&b->io_mutex))
660 goto out_unlock;
661 up(&b->io_mutex);
662 }
663
664retry:
665 /*
666 * BTREE_NODE_dirty might be cleared in btree_flush_btree() by
667 * __bch_btree_node_write(). To avoid an extra flush, acquire
668 * b->write_lock before checking BTREE_NODE_dirty bit.
669 */
670 mutex_lock(&b->write_lock);
671 /*
672 * If this btree node is selected in btree_flush_write() by journal
673 * code, delay and retry until the node is flushed by journal code
674 * and BTREE_NODE_journal_flush bit cleared by btree_flush_write().
675 */
676 if (btree_node_journal_flush(b)) {
677 pr_debug("bnode %p is flushing by journal, retry", b);
678 mutex_unlock(&b->write_lock);
679 udelay(1);
680 goto retry;
681 }
682
683 if (btree_node_dirty(b))
684 __bch_btree_node_write(b, &cl);
685 mutex_unlock(&b->write_lock);
686
687 closure_sync(&cl);
688
689 /* wait for any in flight btree write */
690 down(&b->io_mutex);
691 up(&b->io_mutex);
692
693 return 0;
694out_unlock:
695 rw_unlock(true, b);
696 return -ENOMEM;
697}
698
699static unsigned long bch_mca_scan(struct shrinker *shrink,
700 struct shrink_control *sc)
701{
702 struct cache_set *c = container_of(shrink, struct cache_set, shrink);
703 struct btree *b, *t;
704 unsigned long i, nr = sc->nr_to_scan;
705 unsigned long freed = 0;
706 unsigned int btree_cache_used;
707
708 if (c->shrinker_disabled)
709 return SHRINK_STOP;
710
711 if (c->btree_cache_alloc_lock)
712 return SHRINK_STOP;
713
714 /* Return -1 if we can't do anything right now */
715 if (sc->gfp_mask & __GFP_IO)
716 mutex_lock(&c->bucket_lock);
717 else if (!mutex_trylock(&c->bucket_lock))
718 return -1;
719
720 /*
721 * It's _really_ critical that we don't free too many btree nodes - we
722 * have to always leave ourselves a reserve. The reserve is how we
723 * guarantee that allocating memory for a new btree node can always
724 * succeed, so that inserting keys into the btree can always succeed and
725 * IO can always make forward progress:
726 */
727 nr /= c->btree_pages;
728 if (nr == 0)
729 nr = 1;
730 nr = min_t(unsigned long, nr, mca_can_free(c));
731
732 i = 0;
733 btree_cache_used = c->btree_cache_used;
734 list_for_each_entry_safe(b, t, &c->btree_cache_freeable, list) {
735 if (nr <= 0)
736 goto out;
737
738 if (++i > 3 &&
739 !mca_reap(b, 0, false)) {
740 mca_data_free(b);
741 rw_unlock(true, b);
742 freed++;
743 }
744 nr--;
745 }
746
747 for (; (nr--) && i < btree_cache_used; i++) {
748 if (list_empty(&c->btree_cache))
749 goto out;
750
751 b = list_first_entry(&c->btree_cache, struct btree, list);
752 list_rotate_left(&c->btree_cache);
753
754 if (!b->accessed &&
755 !mca_reap(b, 0, false)) {
756 mca_bucket_free(b);
757 mca_data_free(b);
758 rw_unlock(true, b);
759 freed++;
760 } else
761 b->accessed = 0;
762 }
763out:
764 mutex_unlock(&c->bucket_lock);
765 return freed * c->btree_pages;
766}
767
768static unsigned long bch_mca_count(struct shrinker *shrink,
769 struct shrink_control *sc)
770{
771 struct cache_set *c = container_of(shrink, struct cache_set, shrink);
772
773 if (c->shrinker_disabled)
774 return 0;
775
776 if (c->btree_cache_alloc_lock)
777 return 0;
778
779 return mca_can_free(c) * c->btree_pages;
780}
781
782void bch_btree_cache_free(struct cache_set *c)
783{
784 struct btree *b;
785 struct closure cl;
786
787 closure_init_stack(&cl);
788
789 if (c->shrink.list.next)
790 unregister_shrinker(&c->shrink);
791
792 mutex_lock(&c->bucket_lock);
793
794#ifdef CONFIG_BCACHE_DEBUG
795 if (c->verify_data)
796 list_move(&c->verify_data->list, &c->btree_cache);
797
798 free_pages((unsigned long) c->verify_ondisk, ilog2(bucket_pages(c)));
799#endif
800
801 list_splice(&c->btree_cache_freeable,
802 &c->btree_cache);
803
804 while (!list_empty(&c->btree_cache)) {
805 b = list_first_entry(&c->btree_cache, struct btree, list);
806
807 /*
808 * This function is called by cache_set_free(), no I/O
809 * request on cache now, it is unnecessary to acquire
810 * b->write_lock before clearing BTREE_NODE_dirty anymore.
811 */
812 if (btree_node_dirty(b)) {
813 btree_complete_write(b, btree_current_write(b));
814 clear_bit(BTREE_NODE_dirty, &b->flags);
815 }
816 mca_data_free(b);
817 }
818
819 while (!list_empty(&c->btree_cache_freed)) {
820 b = list_first_entry(&c->btree_cache_freed,
821 struct btree, list);
822 list_del(&b->list);
823 cancel_delayed_work_sync(&b->work);
824 kfree(b);
825 }
826
827 mutex_unlock(&c->bucket_lock);
828}
829
830int bch_btree_cache_alloc(struct cache_set *c)
831{
832 unsigned int i;
833
834 for (i = 0; i < mca_reserve(c); i++)
835 if (!mca_bucket_alloc(c, &ZERO_KEY, GFP_KERNEL))
836 return -ENOMEM;
837
838 list_splice_init(&c->btree_cache,
839 &c->btree_cache_freeable);
840
841#ifdef CONFIG_BCACHE_DEBUG
842 mutex_init(&c->verify_lock);
843
844 c->verify_ondisk = (void *)
845 __get_free_pages(GFP_KERNEL|__GFP_COMP, ilog2(bucket_pages(c)));
846
847 c->verify_data = mca_bucket_alloc(c, &ZERO_KEY, GFP_KERNEL);
848
849 if (c->verify_data &&
850 c->verify_data->keys.set->data)
851 list_del_init(&c->verify_data->list);
852 else
853 c->verify_data = NULL;
854#endif
855
856 c->shrink.count_objects = bch_mca_count;
857 c->shrink.scan_objects = bch_mca_scan;
858 c->shrink.seeks = 4;
859 c->shrink.batch = c->btree_pages * 2;
860
861 if (register_shrinker(&c->shrink))
862 pr_warn("bcache: %s: could not register shrinker",
863 __func__);
864
865 return 0;
866}
867
868/* Btree in memory cache - hash table */
869
870static struct hlist_head *mca_hash(struct cache_set *c, struct bkey *k)
871{
872 return &c->bucket_hash[hash_32(PTR_HASH(c, k), BUCKET_HASH_BITS)];
873}
874
875static struct btree *mca_find(struct cache_set *c, struct bkey *k)
876{
877 struct btree *b;
878
879 rcu_read_lock();
880 hlist_for_each_entry_rcu(b, mca_hash(c, k), hash)
881 if (PTR_HASH(c, &b->key) == PTR_HASH(c, k))
882 goto out;
883 b = NULL;
884out:
885 rcu_read_unlock();
886 return b;
887}
888
889static int mca_cannibalize_lock(struct cache_set *c, struct btree_op *op)
890{
891 spin_lock(&c->btree_cannibalize_lock);
892 if (likely(c->btree_cache_alloc_lock == NULL)) {
893 c->btree_cache_alloc_lock = current;
894 } else if (c->btree_cache_alloc_lock != current) {
895 if (op)
896 prepare_to_wait(&c->btree_cache_wait, &op->wait,
897 TASK_UNINTERRUPTIBLE);
898 spin_unlock(&c->btree_cannibalize_lock);
899 return -EINTR;
900 }
901 spin_unlock(&c->btree_cannibalize_lock);
902
903 return 0;
904}
905
906static struct btree *mca_cannibalize(struct cache_set *c, struct btree_op *op,
907 struct bkey *k)
908{
909 struct btree *b;
910
911 trace_bcache_btree_cache_cannibalize(c);
912
913 if (mca_cannibalize_lock(c, op))
914 return ERR_PTR(-EINTR);
915
916 list_for_each_entry_reverse(b, &c->btree_cache, list)
917 if (!mca_reap(b, btree_order(k), false))
918 return b;
919
920 list_for_each_entry_reverse(b, &c->btree_cache, list)
921 if (!mca_reap(b, btree_order(k), true))
922 return b;
923
924 WARN(1, "btree cache cannibalize failed\n");
925 return ERR_PTR(-ENOMEM);
926}
927
928/*
929 * We can only have one thread cannibalizing other cached btree nodes at a time,
930 * or we'll deadlock. We use an open coded mutex to ensure that, which a
931 * cannibalize_bucket() will take. This means every time we unlock the root of
932 * the btree, we need to release this lock if we have it held.
933 */
934static void bch_cannibalize_unlock(struct cache_set *c)
935{
936 spin_lock(&c->btree_cannibalize_lock);
937 if (c->btree_cache_alloc_lock == current) {
938 c->btree_cache_alloc_lock = NULL;
939 wake_up(&c->btree_cache_wait);
940 }
941 spin_unlock(&c->btree_cannibalize_lock);
942}
943
944static struct btree *mca_alloc(struct cache_set *c, struct btree_op *op,
945 struct bkey *k, int level)
946{
947 struct btree *b;
948
949 BUG_ON(current->bio_list);
950
951 lockdep_assert_held(&c->bucket_lock);
952
953 if (mca_find(c, k))
954 return NULL;
955
956 /* btree_free() doesn't free memory; it sticks the node on the end of
957 * the list. Check if there's any freed nodes there:
958 */
959 list_for_each_entry(b, &c->btree_cache_freeable, list)
960 if (!mca_reap(b, btree_order(k), false))
961 goto out;
962
963 /* We never free struct btree itself, just the memory that holds the on
964 * disk node. Check the freed list before allocating a new one:
965 */
966 list_for_each_entry(b, &c->btree_cache_freed, list)
967 if (!mca_reap(b, 0, false)) {
968 mca_data_alloc(b, k, __GFP_NOWARN|GFP_NOIO);
969 if (!b->keys.set[0].data)
970 goto err;
971 else
972 goto out;
973 }
974
975 b = mca_bucket_alloc(c, k, __GFP_NOWARN|GFP_NOIO);
976 if (!b)
977 goto err;
978
979 BUG_ON(!down_write_trylock(&b->lock));
980 if (!b->keys.set->data)
981 goto err;
982out:
983 BUG_ON(b->io_mutex.count != 1);
984
985 bkey_copy(&b->key, k);
986 list_move(&b->list, &c->btree_cache);
987 hlist_del_init_rcu(&b->hash);
988 hlist_add_head_rcu(&b->hash, mca_hash(c, k));
989
990 lock_set_subclass(&b->lock.dep_map, level + 1, _THIS_IP_);
991 b->parent = (void *) ~0UL;
992 b->flags = 0;
993 b->written = 0;
994 b->level = level;
995
996 if (!b->level)
997 bch_btree_keys_init(&b->keys, &bch_extent_keys_ops,
998 &b->c->expensive_debug_checks);
999 else
1000 bch_btree_keys_init(&b->keys, &bch_btree_keys_ops,
1001 &b->c->expensive_debug_checks);
1002
1003 return b;
1004err:
1005 if (b)
1006 rw_unlock(true, b);
1007
1008 b = mca_cannibalize(c, op, k);
1009 if (!IS_ERR(b))
1010 goto out;
1011
1012 return b;
1013}
1014
1015/*
1016 * bch_btree_node_get - find a btree node in the cache and lock it, reading it
1017 * in from disk if necessary.
1018 *
1019 * If IO is necessary and running under generic_make_request, returns -EAGAIN.
1020 *
1021 * The btree node will have either a read or a write lock held, depending on
1022 * level and op->lock.
1023 *
1024 * Note: Only error code or btree pointer will be returned, it is unncessary
1025 * for callers to check NULL pointer.
1026 */
1027struct btree *bch_btree_node_get(struct cache_set *c, struct btree_op *op,
1028 struct bkey *k, int level, bool write,
1029 struct btree *parent)
1030{
1031 int i = 0;
1032 struct btree *b;
1033
1034 BUG_ON(level < 0);
1035retry:
1036 b = mca_find(c, k);
1037
1038 if (!b) {
1039 if (current->bio_list)
1040 return ERR_PTR(-EAGAIN);
1041
1042 mutex_lock(&c->bucket_lock);
1043 b = mca_alloc(c, op, k, level);
1044 mutex_unlock(&c->bucket_lock);
1045
1046 if (!b)
1047 goto retry;
1048 if (IS_ERR(b))
1049 return b;
1050
1051 bch_btree_node_read(b);
1052
1053 if (!write)
1054 downgrade_write(&b->lock);
1055 } else {
1056 rw_lock(write, b, level);
1057 if (PTR_HASH(c, &b->key) != PTR_HASH(c, k)) {
1058 rw_unlock(write, b);
1059 goto retry;
1060 }
1061 BUG_ON(b->level != level);
1062 }
1063
1064 if (btree_node_io_error(b)) {
1065 rw_unlock(write, b);
1066 return ERR_PTR(-EIO);
1067 }
1068
1069 BUG_ON(!b->written);
1070
1071 b->parent = parent;
1072 b->accessed = 1;
1073
1074 for (; i <= b->keys.nsets && b->keys.set[i].size; i++) {
1075 prefetch(b->keys.set[i].tree);
1076 prefetch(b->keys.set[i].data);
1077 }
1078
1079 for (; i <= b->keys.nsets; i++)
1080 prefetch(b->keys.set[i].data);
1081
1082 return b;
1083}
1084
1085static void btree_node_prefetch(struct btree *parent, struct bkey *k)
1086{
1087 struct btree *b;
1088
1089 mutex_lock(&parent->c->bucket_lock);
1090 b = mca_alloc(parent->c, NULL, k, parent->level - 1);
1091 mutex_unlock(&parent->c->bucket_lock);
1092
1093 if (!IS_ERR_OR_NULL(b)) {
1094 b->parent = parent;
1095 bch_btree_node_read(b);
1096 rw_unlock(true, b);
1097 }
1098}
1099
1100/* Btree alloc */
1101
1102static void btree_node_free(struct btree *b)
1103{
1104 trace_bcache_btree_node_free(b);
1105
1106 BUG_ON(b == b->c->root);
1107
1108retry:
1109 mutex_lock(&b->write_lock);
1110 /*
1111 * If the btree node is selected and flushing in btree_flush_write(),
1112 * delay and retry until the BTREE_NODE_journal_flush bit cleared,
1113 * then it is safe to free the btree node here. Otherwise this btree
1114 * node will be in race condition.
1115 */
1116 if (btree_node_journal_flush(b)) {
1117 mutex_unlock(&b->write_lock);
1118 pr_debug("bnode %p journal_flush set, retry", b);
1119 udelay(1);
1120 goto retry;
1121 }
1122
1123 if (btree_node_dirty(b)) {
1124 btree_complete_write(b, btree_current_write(b));
1125 clear_bit(BTREE_NODE_dirty, &b->flags);
1126 }
1127
1128 mutex_unlock(&b->write_lock);
1129
1130 cancel_delayed_work(&b->work);
1131
1132 mutex_lock(&b->c->bucket_lock);
1133 bch_bucket_free(b->c, &b->key);
1134 mca_bucket_free(b);
1135 mutex_unlock(&b->c->bucket_lock);
1136}
1137
1138/*
1139 * Only error code or btree pointer will be returned, it is unncessary for
1140 * callers to check NULL pointer.
1141 */
1142struct btree *__bch_btree_node_alloc(struct cache_set *c, struct btree_op *op,
1143 int level, bool wait,
1144 struct btree *parent)
1145{
1146 BKEY_PADDED(key) k;
1147 struct btree *b;
1148
1149 mutex_lock(&c->bucket_lock);
1150retry:
1151 /* return ERR_PTR(-EAGAIN) when it fails */
1152 b = ERR_PTR(-EAGAIN);
1153 if (__bch_bucket_alloc_set(c, RESERVE_BTREE, &k.key, wait))
1154 goto err;
1155
1156 bkey_put(c, &k.key);
1157 SET_KEY_SIZE(&k.key, c->btree_pages * PAGE_SECTORS);
1158
1159 b = mca_alloc(c, op, &k.key, level);
1160 if (IS_ERR(b))
1161 goto err_free;
1162
1163 if (!b) {
1164 cache_bug(c,
1165 "Tried to allocate bucket that was in btree cache");
1166 goto retry;
1167 }
1168
1169 b->accessed = 1;
1170 b->parent = parent;
1171 bch_bset_init_next(&b->keys, b->keys.set->data, bset_magic(&b->c->sb));
1172
1173 mutex_unlock(&c->bucket_lock);
1174
1175 trace_bcache_btree_node_alloc(b);
1176 return b;
1177err_free:
1178 bch_bucket_free(c, &k.key);
1179err:
1180 mutex_unlock(&c->bucket_lock);
1181
1182 trace_bcache_btree_node_alloc_fail(c);
1183 return b;
1184}
1185
1186static struct btree *bch_btree_node_alloc(struct cache_set *c,
1187 struct btree_op *op, int level,
1188 struct btree *parent)
1189{
1190 return __bch_btree_node_alloc(c, op, level, op != NULL, parent);
1191}
1192
1193static struct btree *btree_node_alloc_replacement(struct btree *b,
1194 struct btree_op *op)
1195{
1196 struct btree *n = bch_btree_node_alloc(b->c, op, b->level, b->parent);
1197
1198 if (!IS_ERR(n)) {
1199 mutex_lock(&n->write_lock);
1200 bch_btree_sort_into(&b->keys, &n->keys, &b->c->sort);
1201 bkey_copy_key(&n->key, &b->key);
1202 mutex_unlock(&n->write_lock);
1203 }
1204
1205 return n;
1206}
1207
1208static void make_btree_freeing_key(struct btree *b, struct bkey *k)
1209{
1210 unsigned int i;
1211
1212 mutex_lock(&b->c->bucket_lock);
1213
1214 atomic_inc(&b->c->prio_blocked);
1215
1216 bkey_copy(k, &b->key);
1217 bkey_copy_key(k, &ZERO_KEY);
1218
1219 for (i = 0; i < KEY_PTRS(k); i++)
1220 SET_PTR_GEN(k, i,
1221 bch_inc_gen(PTR_CACHE(b->c, &b->key, i),
1222 PTR_BUCKET(b->c, &b->key, i)));
1223
1224 mutex_unlock(&b->c->bucket_lock);
1225}
1226
1227static int btree_check_reserve(struct btree *b, struct btree_op *op)
1228{
1229 struct cache_set *c = b->c;
1230 struct cache *ca;
1231 unsigned int i, reserve = (c->root->level - b->level) * 2 + 1;
1232
1233 mutex_lock(&c->bucket_lock);
1234
1235 for_each_cache(ca, c, i)
1236 if (fifo_used(&ca->free[RESERVE_BTREE]) < reserve) {
1237 if (op)
1238 prepare_to_wait(&c->btree_cache_wait, &op->wait,
1239 TASK_UNINTERRUPTIBLE);
1240 mutex_unlock(&c->bucket_lock);
1241 return -EINTR;
1242 }
1243
1244 mutex_unlock(&c->bucket_lock);
1245
1246 return mca_cannibalize_lock(b->c, op);
1247}
1248
1249/* Garbage collection */
1250
1251static uint8_t __bch_btree_mark_key(struct cache_set *c, int level,
1252 struct bkey *k)
1253{
1254 uint8_t stale = 0;
1255 unsigned int i;
1256 struct bucket *g;
1257
1258 /*
1259 * ptr_invalid() can't return true for the keys that mark btree nodes as
1260 * freed, but since ptr_bad() returns true we'll never actually use them
1261 * for anything and thus we don't want mark their pointers here
1262 */
1263 if (!bkey_cmp(k, &ZERO_KEY))
1264 return stale;
1265
1266 for (i = 0; i < KEY_PTRS(k); i++) {
1267 if (!ptr_available(c, k, i))
1268 continue;
1269
1270 g = PTR_BUCKET(c, k, i);
1271
1272 if (gen_after(g->last_gc, PTR_GEN(k, i)))
1273 g->last_gc = PTR_GEN(k, i);
1274
1275 if (ptr_stale(c, k, i)) {
1276 stale = max(stale, ptr_stale(c, k, i));
1277 continue;
1278 }
1279
1280 cache_bug_on(GC_MARK(g) &&
1281 (GC_MARK(g) == GC_MARK_METADATA) != (level != 0),
1282 c, "inconsistent ptrs: mark = %llu, level = %i",
1283 GC_MARK(g), level);
1284
1285 if (level)
1286 SET_GC_MARK(g, GC_MARK_METADATA);
1287 else if (KEY_DIRTY(k))
1288 SET_GC_MARK(g, GC_MARK_DIRTY);
1289 else if (!GC_MARK(g))
1290 SET_GC_MARK(g, GC_MARK_RECLAIMABLE);
1291
1292 /* guard against overflow */
1293 SET_GC_SECTORS_USED(g, min_t(unsigned int,
1294 GC_SECTORS_USED(g) + KEY_SIZE(k),
1295 MAX_GC_SECTORS_USED));
1296
1297 BUG_ON(!GC_SECTORS_USED(g));
1298 }
1299
1300 return stale;
1301}
1302
1303#define btree_mark_key(b, k) __bch_btree_mark_key(b->c, b->level, k)
1304
1305void bch_initial_mark_key(struct cache_set *c, int level, struct bkey *k)
1306{
1307 unsigned int i;
1308
1309 for (i = 0; i < KEY_PTRS(k); i++)
1310 if (ptr_available(c, k, i) &&
1311 !ptr_stale(c, k, i)) {
1312 struct bucket *b = PTR_BUCKET(c, k, i);
1313
1314 b->gen = PTR_GEN(k, i);
1315
1316 if (level && bkey_cmp(k, &ZERO_KEY))
1317 b->prio = BTREE_PRIO;
1318 else if (!level && b->prio == BTREE_PRIO)
1319 b->prio = INITIAL_PRIO;
1320 }
1321
1322 __bch_btree_mark_key(c, level, k);
1323}
1324
1325void bch_update_bucket_in_use(struct cache_set *c, struct gc_stat *stats)
1326{
1327 stats->in_use = (c->nbuckets - c->avail_nbuckets) * 100 / c->nbuckets;
1328}
1329
1330static bool btree_gc_mark_node(struct btree *b, struct gc_stat *gc)
1331{
1332 uint8_t stale = 0;
1333 unsigned int keys = 0, good_keys = 0;
1334 struct bkey *k;
1335 struct btree_iter iter;
1336 struct bset_tree *t;
1337
1338 gc->nodes++;
1339
1340 for_each_key_filter(&b->keys, k, &iter, bch_ptr_invalid) {
1341 stale = max(stale, btree_mark_key(b, k));
1342 keys++;
1343
1344 if (bch_ptr_bad(&b->keys, k))
1345 continue;
1346
1347 gc->key_bytes += bkey_u64s(k);
1348 gc->nkeys++;
1349 good_keys++;
1350
1351 gc->data += KEY_SIZE(k);
1352 }
1353
1354 for (t = b->keys.set; t <= &b->keys.set[b->keys.nsets]; t++)
1355 btree_bug_on(t->size &&
1356 bset_written(&b->keys, t) &&
1357 bkey_cmp(&b->key, &t->end) < 0,
1358 b, "found short btree key in gc");
1359
1360 if (b->c->gc_always_rewrite)
1361 return true;
1362
1363 if (stale > 10)
1364 return true;
1365
1366 if ((keys - good_keys) * 2 > keys)
1367 return true;
1368
1369 return false;
1370}
1371
1372#define GC_MERGE_NODES 4U
1373
1374struct gc_merge_info {
1375 struct btree *b;
1376 unsigned int keys;
1377};
1378
1379static int bch_btree_insert_node(struct btree *b, struct btree_op *op,
1380 struct keylist *insert_keys,
1381 atomic_t *journal_ref,
1382 struct bkey *replace_key);
1383
1384static int btree_gc_coalesce(struct btree *b, struct btree_op *op,
1385 struct gc_stat *gc, struct gc_merge_info *r)
1386{
1387 unsigned int i, nodes = 0, keys = 0, blocks;
1388 struct btree *new_nodes[GC_MERGE_NODES];
1389 struct keylist keylist;
1390 struct closure cl;
1391 struct bkey *k;
1392
1393 bch_keylist_init(&keylist);
1394
1395 if (btree_check_reserve(b, NULL))
1396 return 0;
1397
1398 memset(new_nodes, 0, sizeof(new_nodes));
1399 closure_init_stack(&cl);
1400
1401 while (nodes < GC_MERGE_NODES && !IS_ERR_OR_NULL(r[nodes].b))
1402 keys += r[nodes++].keys;
1403
1404 blocks = btree_default_blocks(b->c) * 2 / 3;
1405
1406 if (nodes < 2 ||
1407 __set_blocks(b->keys.set[0].data, keys,
1408 block_bytes(b->c)) > blocks * (nodes - 1))
1409 return 0;
1410
1411 for (i = 0; i < nodes; i++) {
1412 new_nodes[i] = btree_node_alloc_replacement(r[i].b, NULL);
1413 if (IS_ERR(new_nodes[i]))
1414 goto out_nocoalesce;
1415 }
1416
1417 /*
1418 * We have to check the reserve here, after we've allocated our new
1419 * nodes, to make sure the insert below will succeed - we also check
1420 * before as an optimization to potentially avoid a bunch of expensive
1421 * allocs/sorts
1422 */
1423 if (btree_check_reserve(b, NULL))
1424 goto out_nocoalesce;
1425
1426 for (i = 0; i < nodes; i++)
1427 mutex_lock(&new_nodes[i]->write_lock);
1428
1429 for (i = nodes - 1; i > 0; --i) {
1430 struct bset *n1 = btree_bset_first(new_nodes[i]);
1431 struct bset *n2 = btree_bset_first(new_nodes[i - 1]);
1432 struct bkey *k, *last = NULL;
1433
1434 keys = 0;
1435
1436 if (i > 1) {
1437 for (k = n2->start;
1438 k < bset_bkey_last(n2);
1439 k = bkey_next(k)) {
1440 if (__set_blocks(n1, n1->keys + keys +
1441 bkey_u64s(k),
1442 block_bytes(b->c)) > blocks)
1443 break;
1444
1445 last = k;
1446 keys += bkey_u64s(k);
1447 }
1448 } else {
1449 /*
1450 * Last node we're not getting rid of - we're getting
1451 * rid of the node at r[0]. Have to try and fit all of
1452 * the remaining keys into this node; we can't ensure
1453 * they will always fit due to rounding and variable
1454 * length keys (shouldn't be possible in practice,
1455 * though)
1456 */
1457 if (__set_blocks(n1, n1->keys + n2->keys,
1458 block_bytes(b->c)) >
1459 btree_blocks(new_nodes[i]))
1460 goto out_unlock_nocoalesce;
1461
1462 keys = n2->keys;
1463 /* Take the key of the node we're getting rid of */
1464 last = &r->b->key;
1465 }
1466
1467 BUG_ON(__set_blocks(n1, n1->keys + keys, block_bytes(b->c)) >
1468 btree_blocks(new_nodes[i]));
1469
1470 if (last)
1471 bkey_copy_key(&new_nodes[i]->key, last);
1472
1473 memcpy(bset_bkey_last(n1),
1474 n2->start,
1475 (void *) bset_bkey_idx(n2, keys) - (void *) n2->start);
1476
1477 n1->keys += keys;
1478 r[i].keys = n1->keys;
1479
1480 memmove(n2->start,
1481 bset_bkey_idx(n2, keys),
1482 (void *) bset_bkey_last(n2) -
1483 (void *) bset_bkey_idx(n2, keys));
1484
1485 n2->keys -= keys;
1486
1487 if (__bch_keylist_realloc(&keylist,
1488 bkey_u64s(&new_nodes[i]->key)))
1489 goto out_unlock_nocoalesce;
1490
1491 bch_btree_node_write(new_nodes[i], &cl);
1492 bch_keylist_add(&keylist, &new_nodes[i]->key);
1493 }
1494
1495 for (i = 0; i < nodes; i++)
1496 mutex_unlock(&new_nodes[i]->write_lock);
1497
1498 closure_sync(&cl);
1499
1500 /* We emptied out this node */
1501 BUG_ON(btree_bset_first(new_nodes[0])->keys);
1502 btree_node_free(new_nodes[0]);
1503 rw_unlock(true, new_nodes[0]);
1504 new_nodes[0] = NULL;
1505
1506 for (i = 0; i < nodes; i++) {
1507 if (__bch_keylist_realloc(&keylist, bkey_u64s(&r[i].b->key)))
1508 goto out_nocoalesce;
1509
1510 make_btree_freeing_key(r[i].b, keylist.top);
1511 bch_keylist_push(&keylist);
1512 }
1513
1514 bch_btree_insert_node(b, op, &keylist, NULL, NULL);
1515 BUG_ON(!bch_keylist_empty(&keylist));
1516
1517 for (i = 0; i < nodes; i++) {
1518 btree_node_free(r[i].b);
1519 rw_unlock(true, r[i].b);
1520
1521 r[i].b = new_nodes[i];
1522 }
1523
1524 memmove(r, r + 1, sizeof(r[0]) * (nodes - 1));
1525 r[nodes - 1].b = ERR_PTR(-EINTR);
1526
1527 trace_bcache_btree_gc_coalesce(nodes);
1528 gc->nodes--;
1529
1530 bch_keylist_free(&keylist);
1531
1532 /* Invalidated our iterator */
1533 return -EINTR;
1534
1535out_unlock_nocoalesce:
1536 for (i = 0; i < nodes; i++)
1537 mutex_unlock(&new_nodes[i]->write_lock);
1538
1539out_nocoalesce:
1540 closure_sync(&cl);
1541
1542 while ((k = bch_keylist_pop(&keylist)))
1543 if (!bkey_cmp(k, &ZERO_KEY))
1544 atomic_dec(&b->c->prio_blocked);
1545 bch_keylist_free(&keylist);
1546
1547 for (i = 0; i < nodes; i++)
1548 if (!IS_ERR_OR_NULL(new_nodes[i])) {
1549 btree_node_free(new_nodes[i]);
1550 rw_unlock(true, new_nodes[i]);
1551 }
1552 return 0;
1553}
1554
1555static int btree_gc_rewrite_node(struct btree *b, struct btree_op *op,
1556 struct btree *replace)
1557{
1558 struct keylist keys;
1559 struct btree *n;
1560
1561 if (btree_check_reserve(b, NULL))
1562 return 0;
1563
1564 n = btree_node_alloc_replacement(replace, NULL);
1565 if (IS_ERR(n))
1566 return 0;
1567
1568 /* recheck reserve after allocating replacement node */
1569 if (btree_check_reserve(b, NULL)) {
1570 btree_node_free(n);
1571 rw_unlock(true, n);
1572 return 0;
1573 }
1574
1575 bch_btree_node_write_sync(n);
1576
1577 bch_keylist_init(&keys);
1578 bch_keylist_add(&keys, &n->key);
1579
1580 make_btree_freeing_key(replace, keys.top);
1581 bch_keylist_push(&keys);
1582
1583 bch_btree_insert_node(b, op, &keys, NULL, NULL);
1584 BUG_ON(!bch_keylist_empty(&keys));
1585
1586 btree_node_free(replace);
1587 rw_unlock(true, n);
1588
1589 /* Invalidated our iterator */
1590 return -EINTR;
1591}
1592
1593static unsigned int btree_gc_count_keys(struct btree *b)
1594{
1595 struct bkey *k;
1596 struct btree_iter iter;
1597 unsigned int ret = 0;
1598
1599 for_each_key_filter(&b->keys, k, &iter, bch_ptr_bad)
1600 ret += bkey_u64s(k);
1601
1602 return ret;
1603}
1604
1605static size_t btree_gc_min_nodes(struct cache_set *c)
1606{
1607 size_t min_nodes;
1608
1609 /*
1610 * Since incremental GC would stop 100ms when front
1611 * side I/O comes, so when there are many btree nodes,
1612 * if GC only processes constant (100) nodes each time,
1613 * GC would last a long time, and the front side I/Os
1614 * would run out of the buckets (since no new bucket
1615 * can be allocated during GC), and be blocked again.
1616 * So GC should not process constant nodes, but varied
1617 * nodes according to the number of btree nodes, which
1618 * realized by dividing GC into constant(100) times,
1619 * so when there are many btree nodes, GC can process
1620 * more nodes each time, otherwise, GC will process less
1621 * nodes each time (but no less than MIN_GC_NODES)
1622 */
1623 min_nodes = c->gc_stats.nodes / MAX_GC_TIMES;
1624 if (min_nodes < MIN_GC_NODES)
1625 min_nodes = MIN_GC_NODES;
1626
1627 return min_nodes;
1628}
1629
1630
1631static int btree_gc_recurse(struct btree *b, struct btree_op *op,
1632 struct closure *writes, struct gc_stat *gc)
1633{
1634 int ret = 0;
1635 bool should_rewrite;
1636 struct bkey *k;
1637 struct btree_iter iter;
1638 struct gc_merge_info r[GC_MERGE_NODES];
1639 struct gc_merge_info *i, *last = r + ARRAY_SIZE(r) - 1;
1640
1641 bch_btree_iter_init(&b->keys, &iter, &b->c->gc_done);
1642
1643 for (i = r; i < r + ARRAY_SIZE(r); i++)
1644 i->b = ERR_PTR(-EINTR);
1645
1646 while (1) {
1647 k = bch_btree_iter_next_filter(&iter, &b->keys, bch_ptr_bad);
1648 if (k) {
1649 r->b = bch_btree_node_get(b->c, op, k, b->level - 1,
1650 true, b);
1651 if (IS_ERR(r->b)) {
1652 ret = PTR_ERR(r->b);
1653 break;
1654 }
1655
1656 r->keys = btree_gc_count_keys(r->b);
1657
1658 ret = btree_gc_coalesce(b, op, gc, r);
1659 if (ret)
1660 break;
1661 }
1662
1663 if (!last->b)
1664 break;
1665
1666 if (!IS_ERR(last->b)) {
1667 should_rewrite = btree_gc_mark_node(last->b, gc);
1668 if (should_rewrite) {
1669 ret = btree_gc_rewrite_node(b, op, last->b);
1670 if (ret)
1671 break;
1672 }
1673
1674 if (last->b->level) {
1675 ret = btree_gc_recurse(last->b, op, writes, gc);
1676 if (ret)
1677 break;
1678 }
1679
1680 bkey_copy_key(&b->c->gc_done, &last->b->key);
1681
1682 /*
1683 * Must flush leaf nodes before gc ends, since replace
1684 * operations aren't journalled
1685 */
1686 mutex_lock(&last->b->write_lock);
1687 if (btree_node_dirty(last->b))
1688 bch_btree_node_write(last->b, writes);
1689 mutex_unlock(&last->b->write_lock);
1690 rw_unlock(true, last->b);
1691 }
1692
1693 memmove(r + 1, r, sizeof(r[0]) * (GC_MERGE_NODES - 1));
1694 r->b = NULL;
1695
1696 if (atomic_read(&b->c->search_inflight) &&
1697 gc->nodes >= gc->nodes_pre + btree_gc_min_nodes(b->c)) {
1698 gc->nodes_pre = gc->nodes;
1699 ret = -EAGAIN;
1700 break;
1701 }
1702
1703 if (need_resched()) {
1704 ret = -EAGAIN;
1705 break;
1706 }
1707 }
1708
1709 for (i = r; i < r + ARRAY_SIZE(r); i++)
1710 if (!IS_ERR_OR_NULL(i->b)) {
1711 mutex_lock(&i->b->write_lock);
1712 if (btree_node_dirty(i->b))
1713 bch_btree_node_write(i->b, writes);
1714 mutex_unlock(&i->b->write_lock);
1715 rw_unlock(true, i->b);
1716 }
1717
1718 return ret;
1719}
1720
1721static int bch_btree_gc_root(struct btree *b, struct btree_op *op,
1722 struct closure *writes, struct gc_stat *gc)
1723{
1724 struct btree *n = NULL;
1725 int ret = 0;
1726 bool should_rewrite;
1727
1728 should_rewrite = btree_gc_mark_node(b, gc);
1729 if (should_rewrite) {
1730 n = btree_node_alloc_replacement(b, NULL);
1731
1732 if (!IS_ERR(n)) {
1733 bch_btree_node_write_sync(n);
1734
1735 bch_btree_set_root(n);
1736 btree_node_free(b);
1737 rw_unlock(true, n);
1738
1739 return -EINTR;
1740 }
1741 }
1742
1743 __bch_btree_mark_key(b->c, b->level + 1, &b->key);
1744
1745 if (b->level) {
1746 ret = btree_gc_recurse(b, op, writes, gc);
1747 if (ret)
1748 return ret;
1749 }
1750
1751 bkey_copy_key(&b->c->gc_done, &b->key);
1752
1753 return ret;
1754}
1755
1756static void btree_gc_start(struct cache_set *c)
1757{
1758 struct cache *ca;
1759 struct bucket *b;
1760 unsigned int i;
1761
1762 if (!c->gc_mark_valid)
1763 return;
1764
1765 mutex_lock(&c->bucket_lock);
1766
1767 c->gc_mark_valid = 0;
1768 c->gc_done = ZERO_KEY;
1769
1770 for_each_cache(ca, c, i)
1771 for_each_bucket(b, ca) {
1772 b->last_gc = b->gen;
1773 if (!atomic_read(&b->pin)) {
1774 SET_GC_MARK(b, 0);
1775 SET_GC_SECTORS_USED(b, 0);
1776 }
1777 }
1778
1779 mutex_unlock(&c->bucket_lock);
1780}
1781
1782static void bch_btree_gc_finish(struct cache_set *c)
1783{
1784 struct bucket *b;
1785 struct cache *ca;
1786 unsigned int i;
1787
1788 mutex_lock(&c->bucket_lock);
1789
1790 set_gc_sectors(c);
1791 c->gc_mark_valid = 1;
1792 c->need_gc = 0;
1793
1794 for (i = 0; i < KEY_PTRS(&c->uuid_bucket); i++)
1795 SET_GC_MARK(PTR_BUCKET(c, &c->uuid_bucket, i),
1796 GC_MARK_METADATA);
1797
1798 /* don't reclaim buckets to which writeback keys point */
1799 rcu_read_lock();
1800 for (i = 0; i < c->devices_max_used; i++) {
1801 struct bcache_device *d = c->devices[i];
1802 struct cached_dev *dc;
1803 struct keybuf_key *w, *n;
1804 unsigned int j;
1805
1806 if (!d || UUID_FLASH_ONLY(&c->uuids[i]))
1807 continue;
1808 dc = container_of(d, struct cached_dev, disk);
1809
1810 spin_lock(&dc->writeback_keys.lock);
1811 rbtree_postorder_for_each_entry_safe(w, n,
1812 &dc->writeback_keys.keys, node)
1813 for (j = 0; j < KEY_PTRS(&w->key); j++)
1814 SET_GC_MARK(PTR_BUCKET(c, &w->key, j),
1815 GC_MARK_DIRTY);
1816 spin_unlock(&dc->writeback_keys.lock);
1817 }
1818 rcu_read_unlock();
1819
1820 c->avail_nbuckets = 0;
1821 for_each_cache(ca, c, i) {
1822 uint64_t *i;
1823
1824 ca->invalidate_needs_gc = 0;
1825
1826 for (i = ca->sb.d; i < ca->sb.d + ca->sb.keys; i++)
1827 SET_GC_MARK(ca->buckets + *i, GC_MARK_METADATA);
1828
1829 for (i = ca->prio_buckets;
1830 i < ca->prio_buckets + prio_buckets(ca) * 2; i++)
1831 SET_GC_MARK(ca->buckets + *i, GC_MARK_METADATA);
1832
1833 for_each_bucket(b, ca) {
1834 c->need_gc = max(c->need_gc, bucket_gc_gen(b));
1835
1836 if (atomic_read(&b->pin))
1837 continue;
1838
1839 BUG_ON(!GC_MARK(b) && GC_SECTORS_USED(b));
1840
1841 if (!GC_MARK(b) || GC_MARK(b) == GC_MARK_RECLAIMABLE)
1842 c->avail_nbuckets++;
1843 }
1844 }
1845
1846 mutex_unlock(&c->bucket_lock);
1847}
1848
1849static void bch_btree_gc(struct cache_set *c)
1850{
1851 int ret;
1852 struct gc_stat stats;
1853 struct closure writes;
1854 struct btree_op op;
1855 uint64_t start_time = local_clock();
1856
1857 trace_bcache_gc_start(c);
1858
1859 memset(&stats, 0, sizeof(struct gc_stat));
1860 closure_init_stack(&writes);
1861 bch_btree_op_init(&op, SHRT_MAX);
1862
1863 btree_gc_start(c);
1864
1865 /* if CACHE_SET_IO_DISABLE set, gc thread should stop too */
1866 do {
1867 ret = btree_root(gc_root, c, &op, &writes, &stats);
1868 closure_sync(&writes);
1869 cond_resched();
1870
1871 if (ret == -EAGAIN)
1872 schedule_timeout_interruptible(msecs_to_jiffies
1873 (GC_SLEEP_MS));
1874 else if (ret)
1875 pr_warn("gc failed!");
1876 } while (ret && !test_bit(CACHE_SET_IO_DISABLE, &c->flags));
1877
1878 bch_btree_gc_finish(c);
1879 wake_up_allocators(c);
1880
1881 bch_time_stats_update(&c->btree_gc_time, start_time);
1882
1883 stats.key_bytes *= sizeof(uint64_t);
1884 stats.data <<= 9;
1885 bch_update_bucket_in_use(c, &stats);
1886 memcpy(&c->gc_stats, &stats, sizeof(struct gc_stat));
1887
1888 trace_bcache_gc_end(c);
1889
1890 bch_moving_gc(c);
1891}
1892
1893static bool gc_should_run(struct cache_set *c)
1894{
1895 struct cache *ca;
1896 unsigned int i;
1897
1898 for_each_cache(ca, c, i)
1899 if (ca->invalidate_needs_gc)
1900 return true;
1901
1902 if (atomic_read(&c->sectors_to_gc) < 0)
1903 return true;
1904
1905 return false;
1906}
1907
1908static int bch_gc_thread(void *arg)
1909{
1910 struct cache_set *c = arg;
1911
1912 while (1) {
1913 wait_event_interruptible(c->gc_wait,
1914 kthread_should_stop() ||
1915 test_bit(CACHE_SET_IO_DISABLE, &c->flags) ||
1916 gc_should_run(c));
1917
1918 if (kthread_should_stop() ||
1919 test_bit(CACHE_SET_IO_DISABLE, &c->flags))
1920 break;
1921
1922 set_gc_sectors(c);
1923 bch_btree_gc(c);
1924 }
1925
1926 wait_for_kthread_stop();
1927 return 0;
1928}
1929
1930int bch_gc_thread_start(struct cache_set *c)
1931{
1932 c->gc_thread = kthread_run(bch_gc_thread, c, "bcache_gc");
1933 return PTR_ERR_OR_ZERO(c->gc_thread);
1934}
1935
1936/* Initial partial gc */
1937
1938static int bch_btree_check_recurse(struct btree *b, struct btree_op *op)
1939{
1940 int ret = 0;
1941 struct bkey *k, *p = NULL;
1942 struct btree_iter iter;
1943
1944 for_each_key_filter(&b->keys, k, &iter, bch_ptr_invalid)
1945 bch_initial_mark_key(b->c, b->level, k);
1946
1947 bch_initial_mark_key(b->c, b->level + 1, &b->key);
1948
1949 if (b->level) {
1950 bch_btree_iter_init(&b->keys, &iter, NULL);
1951
1952 do {
1953 k = bch_btree_iter_next_filter(&iter, &b->keys,
1954 bch_ptr_bad);
1955 if (k) {
1956 btree_node_prefetch(b, k);
1957 /*
1958 * initiallize c->gc_stats.nodes
1959 * for incremental GC
1960 */
1961 b->c->gc_stats.nodes++;
1962 }
1963
1964 if (p)
1965 ret = btree(check_recurse, p, b, op);
1966
1967 p = k;
1968 } while (p && !ret);
1969 }
1970
1971 return ret;
1972}
1973
1974int bch_btree_check(struct cache_set *c)
1975{
1976 struct btree_op op;
1977
1978 bch_btree_op_init(&op, SHRT_MAX);
1979
1980 return btree_root(check_recurse, c, &op);
1981}
1982
1983void bch_initial_gc_finish(struct cache_set *c)
1984{
1985 struct cache *ca;
1986 struct bucket *b;
1987 unsigned int i;
1988
1989 bch_btree_gc_finish(c);
1990
1991 mutex_lock(&c->bucket_lock);
1992
1993 /*
1994 * We need to put some unused buckets directly on the prio freelist in
1995 * order to get the allocator thread started - it needs freed buckets in
1996 * order to rewrite the prios and gens, and it needs to rewrite prios
1997 * and gens in order to free buckets.
1998 *
1999 * This is only safe for buckets that have no live data in them, which
2000 * there should always be some of.
2001 */
2002 for_each_cache(ca, c, i) {
2003 for_each_bucket(b, ca) {
2004 if (fifo_full(&ca->free[RESERVE_PRIO]) &&
2005 fifo_full(&ca->free[RESERVE_BTREE]))
2006 break;
2007
2008 if (bch_can_invalidate_bucket(ca, b) &&
2009 !GC_MARK(b)) {
2010 __bch_invalidate_one_bucket(ca, b);
2011 if (!fifo_push(&ca->free[RESERVE_PRIO],
2012 b - ca->buckets))
2013 fifo_push(&ca->free[RESERVE_BTREE],
2014 b - ca->buckets);
2015 }
2016 }
2017 }
2018
2019 mutex_unlock(&c->bucket_lock);
2020}
2021
2022/* Btree insertion */
2023
2024static bool btree_insert_key(struct btree *b, struct bkey *k,
2025 struct bkey *replace_key)
2026{
2027 unsigned int status;
2028
2029 BUG_ON(bkey_cmp(k, &b->key) > 0);
2030
2031 status = bch_btree_insert_key(&b->keys, k, replace_key);
2032 if (status != BTREE_INSERT_STATUS_NO_INSERT) {
2033 bch_check_keys(&b->keys, "%u for %s", status,
2034 replace_key ? "replace" : "insert");
2035
2036 trace_bcache_btree_insert_key(b, k, replace_key != NULL,
2037 status);
2038 return true;
2039 } else
2040 return false;
2041}
2042
2043static size_t insert_u64s_remaining(struct btree *b)
2044{
2045 long ret = bch_btree_keys_u64s_remaining(&b->keys);
2046
2047 /*
2048 * Might land in the middle of an existing extent and have to split it
2049 */
2050 if (b->keys.ops->is_extents)
2051 ret -= KEY_MAX_U64S;
2052
2053 return max(ret, 0L);
2054}
2055
2056static bool bch_btree_insert_keys(struct btree *b, struct btree_op *op,
2057 struct keylist *insert_keys,
2058 struct bkey *replace_key)
2059{
2060 bool ret = false;
2061 int oldsize = bch_count_data(&b->keys);
2062
2063 while (!bch_keylist_empty(insert_keys)) {
2064 struct bkey *k = insert_keys->keys;
2065
2066 if (bkey_u64s(k) > insert_u64s_remaining(b))
2067 break;
2068
2069 if (bkey_cmp(k, &b->key) <= 0) {
2070 if (!b->level)
2071 bkey_put(b->c, k);
2072
2073 ret |= btree_insert_key(b, k, replace_key);
2074 bch_keylist_pop_front(insert_keys);
2075 } else if (bkey_cmp(&START_KEY(k), &b->key) < 0) {
2076 BKEY_PADDED(key) temp;
2077 bkey_copy(&temp.key, insert_keys->keys);
2078
2079 bch_cut_back(&b->key, &temp.key);
2080 bch_cut_front(&b->key, insert_keys->keys);
2081
2082 ret |= btree_insert_key(b, &temp.key, replace_key);
2083 break;
2084 } else {
2085 break;
2086 }
2087 }
2088
2089 if (!ret)
2090 op->insert_collision = true;
2091
2092 BUG_ON(!bch_keylist_empty(insert_keys) && b->level);
2093
2094 BUG_ON(bch_count_data(&b->keys) < oldsize);
2095 return ret;
2096}
2097
2098static int btree_split(struct btree *b, struct btree_op *op,
2099 struct keylist *insert_keys,
2100 struct bkey *replace_key)
2101{
2102 bool split;
2103 struct btree *n1, *n2 = NULL, *n3 = NULL;
2104 uint64_t start_time = local_clock();
2105 struct closure cl;
2106 struct keylist parent_keys;
2107
2108 closure_init_stack(&cl);
2109 bch_keylist_init(&parent_keys);
2110
2111 if (btree_check_reserve(b, op)) {
2112 if (!b->level)
2113 return -EINTR;
2114 else
2115 WARN(1, "insufficient reserve for split\n");
2116 }
2117
2118 n1 = btree_node_alloc_replacement(b, op);
2119 if (IS_ERR(n1))
2120 goto err;
2121
2122 split = set_blocks(btree_bset_first(n1),
2123 block_bytes(n1->c)) > (btree_blocks(b) * 4) / 5;
2124
2125 if (split) {
2126 unsigned int keys = 0;
2127
2128 trace_bcache_btree_node_split(b, btree_bset_first(n1)->keys);
2129
2130 n2 = bch_btree_node_alloc(b->c, op, b->level, b->parent);
2131 if (IS_ERR(n2))
2132 goto err_free1;
2133
2134 if (!b->parent) {
2135 n3 = bch_btree_node_alloc(b->c, op, b->level + 1, NULL);
2136 if (IS_ERR(n3))
2137 goto err_free2;
2138 }
2139
2140 mutex_lock(&n1->write_lock);
2141 mutex_lock(&n2->write_lock);
2142
2143 bch_btree_insert_keys(n1, op, insert_keys, replace_key);
2144
2145 /*
2146 * Has to be a linear search because we don't have an auxiliary
2147 * search tree yet
2148 */
2149
2150 while (keys < (btree_bset_first(n1)->keys * 3) / 5)
2151 keys += bkey_u64s(bset_bkey_idx(btree_bset_first(n1),
2152 keys));
2153
2154 bkey_copy_key(&n1->key,
2155 bset_bkey_idx(btree_bset_first(n1), keys));
2156 keys += bkey_u64s(bset_bkey_idx(btree_bset_first(n1), keys));
2157
2158 btree_bset_first(n2)->keys = btree_bset_first(n1)->keys - keys;
2159 btree_bset_first(n1)->keys = keys;
2160
2161 memcpy(btree_bset_first(n2)->start,
2162 bset_bkey_last(btree_bset_first(n1)),
2163 btree_bset_first(n2)->keys * sizeof(uint64_t));
2164
2165 bkey_copy_key(&n2->key, &b->key);
2166
2167 bch_keylist_add(&parent_keys, &n2->key);
2168 bch_btree_node_write(n2, &cl);
2169 mutex_unlock(&n2->write_lock);
2170 rw_unlock(true, n2);
2171 } else {
2172 trace_bcache_btree_node_compact(b, btree_bset_first(n1)->keys);
2173
2174 mutex_lock(&n1->write_lock);
2175 bch_btree_insert_keys(n1, op, insert_keys, replace_key);
2176 }
2177
2178 bch_keylist_add(&parent_keys, &n1->key);
2179 bch_btree_node_write(n1, &cl);
2180 mutex_unlock(&n1->write_lock);
2181
2182 if (n3) {
2183 /* Depth increases, make a new root */
2184 mutex_lock(&n3->write_lock);
2185 bkey_copy_key(&n3->key, &MAX_KEY);
2186 bch_btree_insert_keys(n3, op, &parent_keys, NULL);
2187 bch_btree_node_write(n3, &cl);
2188 mutex_unlock(&n3->write_lock);
2189
2190 closure_sync(&cl);
2191 bch_btree_set_root(n3);
2192 rw_unlock(true, n3);
2193 } else if (!b->parent) {
2194 /* Root filled up but didn't need to be split */
2195 closure_sync(&cl);
2196 bch_btree_set_root(n1);
2197 } else {
2198 /* Split a non root node */
2199 closure_sync(&cl);
2200 make_btree_freeing_key(b, parent_keys.top);
2201 bch_keylist_push(&parent_keys);
2202
2203 bch_btree_insert_node(b->parent, op, &parent_keys, NULL, NULL);
2204 BUG_ON(!bch_keylist_empty(&parent_keys));
2205 }
2206
2207 btree_node_free(b);
2208 rw_unlock(true, n1);
2209
2210 bch_time_stats_update(&b->c->btree_split_time, start_time);
2211
2212 return 0;
2213err_free2:
2214 bkey_put(b->c, &n2->key);
2215 btree_node_free(n2);
2216 rw_unlock(true, n2);
2217err_free1:
2218 bkey_put(b->c, &n1->key);
2219 btree_node_free(n1);
2220 rw_unlock(true, n1);
2221err:
2222 WARN(1, "bcache: btree split failed (level %u)", b->level);
2223
2224 if (n3 == ERR_PTR(-EAGAIN) ||
2225 n2 == ERR_PTR(-EAGAIN) ||
2226 n1 == ERR_PTR(-EAGAIN))
2227 return -EAGAIN;
2228
2229 return -ENOMEM;
2230}
2231
2232static int bch_btree_insert_node(struct btree *b, struct btree_op *op,
2233 struct keylist *insert_keys,
2234 atomic_t *journal_ref,
2235 struct bkey *replace_key)
2236{
2237 struct closure cl;
2238
2239 BUG_ON(b->level && replace_key);
2240
2241 closure_init_stack(&cl);
2242
2243 mutex_lock(&b->write_lock);
2244
2245 if (write_block(b) != btree_bset_last(b) &&
2246 b->keys.last_set_unwritten)
2247 bch_btree_init_next(b); /* just wrote a set */
2248
2249 if (bch_keylist_nkeys(insert_keys) > insert_u64s_remaining(b)) {
2250 mutex_unlock(&b->write_lock);
2251 goto split;
2252 }
2253
2254 BUG_ON(write_block(b) != btree_bset_last(b));
2255
2256 if (bch_btree_insert_keys(b, op, insert_keys, replace_key)) {
2257 if (!b->level)
2258 bch_btree_leaf_dirty(b, journal_ref);
2259 else
2260 bch_btree_node_write(b, &cl);
2261 }
2262
2263 mutex_unlock(&b->write_lock);
2264
2265 /* wait for btree node write if necessary, after unlock */
2266 closure_sync(&cl);
2267
2268 return 0;
2269split:
2270 if (current->bio_list) {
2271 op->lock = b->c->root->level + 1;
2272 return -EAGAIN;
2273 } else if (op->lock <= b->c->root->level) {
2274 op->lock = b->c->root->level + 1;
2275 return -EINTR;
2276 } else {
2277 /* Invalidated all iterators */
2278 int ret = btree_split(b, op, insert_keys, replace_key);
2279
2280 if (bch_keylist_empty(insert_keys))
2281 return 0;
2282 else if (!ret)
2283 return -EINTR;
2284 return ret;
2285 }
2286}
2287
2288int bch_btree_insert_check_key(struct btree *b, struct btree_op *op,
2289 struct bkey *check_key)
2290{
2291 int ret = -EINTR;
2292 uint64_t btree_ptr = b->key.ptr[0];
2293 unsigned long seq = b->seq;
2294 struct keylist insert;
2295 bool upgrade = op->lock == -1;
2296
2297 bch_keylist_init(&insert);
2298
2299 if (upgrade) {
2300 rw_unlock(false, b);
2301 rw_lock(true, b, b->level);
2302
2303 if (b->key.ptr[0] != btree_ptr ||
2304 b->seq != seq + 1) {
2305 op->lock = b->level;
2306 goto out;
2307 }
2308 }
2309
2310 SET_KEY_PTRS(check_key, 1);
2311 get_random_bytes(&check_key->ptr[0], sizeof(uint64_t));
2312
2313 SET_PTR_DEV(check_key, 0, PTR_CHECK_DEV);
2314
2315 bch_keylist_add(&insert, check_key);
2316
2317 ret = bch_btree_insert_node(b, op, &insert, NULL, NULL);
2318
2319 BUG_ON(!ret && !bch_keylist_empty(&insert));
2320out:
2321 if (upgrade)
2322 downgrade_write(&b->lock);
2323 return ret;
2324}
2325
2326struct btree_insert_op {
2327 struct btree_op op;
2328 struct keylist *keys;
2329 atomic_t *journal_ref;
2330 struct bkey *replace_key;
2331};
2332
2333static int btree_insert_fn(struct btree_op *b_op, struct btree *b)
2334{
2335 struct btree_insert_op *op = container_of(b_op,
2336 struct btree_insert_op, op);
2337
2338 int ret = bch_btree_insert_node(b, &op->op, op->keys,
2339 op->journal_ref, op->replace_key);
2340 if (ret && !bch_keylist_empty(op->keys))
2341 return ret;
2342 else
2343 return MAP_DONE;
2344}
2345
2346int bch_btree_insert(struct cache_set *c, struct keylist *keys,
2347 atomic_t *journal_ref, struct bkey *replace_key)
2348{
2349 struct btree_insert_op op;
2350 int ret = 0;
2351
2352 BUG_ON(current->bio_list);
2353 BUG_ON(bch_keylist_empty(keys));
2354
2355 bch_btree_op_init(&op.op, 0);
2356 op.keys = keys;
2357 op.journal_ref = journal_ref;
2358 op.replace_key = replace_key;
2359
2360 while (!ret && !bch_keylist_empty(keys)) {
2361 op.op.lock = 0;
2362 ret = bch_btree_map_leaf_nodes(&op.op, c,
2363 &START_KEY(keys->keys),
2364 btree_insert_fn);
2365 }
2366
2367 if (ret) {
2368 struct bkey *k;
2369
2370 pr_err("error %i", ret);
2371
2372 while ((k = bch_keylist_pop(keys)))
2373 bkey_put(c, k);
2374 } else if (op.op.insert_collision)
2375 ret = -ESRCH;
2376
2377 return ret;
2378}
2379
2380void bch_btree_set_root(struct btree *b)
2381{
2382 unsigned int i;
2383 struct closure cl;
2384
2385 closure_init_stack(&cl);
2386
2387 trace_bcache_btree_set_root(b);
2388
2389 BUG_ON(!b->written);
2390
2391 for (i = 0; i < KEY_PTRS(&b->key); i++)
2392 BUG_ON(PTR_BUCKET(b->c, &b->key, i)->prio != BTREE_PRIO);
2393
2394 mutex_lock(&b->c->bucket_lock);
2395 list_del_init(&b->list);
2396 mutex_unlock(&b->c->bucket_lock);
2397
2398 b->c->root = b;
2399
2400 bch_journal_meta(b->c, &cl);
2401 closure_sync(&cl);
2402}
2403
2404/* Map across nodes or keys */
2405
2406static int bch_btree_map_nodes_recurse(struct btree *b, struct btree_op *op,
2407 struct bkey *from,
2408 btree_map_nodes_fn *fn, int flags)
2409{
2410 int ret = MAP_CONTINUE;
2411
2412 if (b->level) {
2413 struct bkey *k;
2414 struct btree_iter iter;
2415
2416 bch_btree_iter_init(&b->keys, &iter, from);
2417
2418 while ((k = bch_btree_iter_next_filter(&iter, &b->keys,
2419 bch_ptr_bad))) {
2420 ret = btree(map_nodes_recurse, k, b,
2421 op, from, fn, flags);
2422 from = NULL;
2423
2424 if (ret != MAP_CONTINUE)
2425 return ret;
2426 }
2427 }
2428
2429 if (!b->level || flags == MAP_ALL_NODES)
2430 ret = fn(op, b);
2431
2432 return ret;
2433}
2434
2435int __bch_btree_map_nodes(struct btree_op *op, struct cache_set *c,
2436 struct bkey *from, btree_map_nodes_fn *fn, int flags)
2437{
2438 return btree_root(map_nodes_recurse, c, op, from, fn, flags);
2439}
2440
2441static int bch_btree_map_keys_recurse(struct btree *b, struct btree_op *op,
2442 struct bkey *from, btree_map_keys_fn *fn,
2443 int flags)
2444{
2445 int ret = MAP_CONTINUE;
2446 struct bkey *k;
2447 struct btree_iter iter;
2448
2449 bch_btree_iter_init(&b->keys, &iter, from);
2450
2451 while ((k = bch_btree_iter_next_filter(&iter, &b->keys, bch_ptr_bad))) {
2452 ret = !b->level
2453 ? fn(op, b, k)
2454 : btree(map_keys_recurse, k, b, op, from, fn, flags);
2455 from = NULL;
2456
2457 if (ret != MAP_CONTINUE)
2458 return ret;
2459 }
2460
2461 if (!b->level && (flags & MAP_END_KEY))
2462 ret = fn(op, b, &KEY(KEY_INODE(&b->key),
2463 KEY_OFFSET(&b->key), 0));
2464
2465 return ret;
2466}
2467
2468int bch_btree_map_keys(struct btree_op *op, struct cache_set *c,
2469 struct bkey *from, btree_map_keys_fn *fn, int flags)
2470{
2471 return btree_root(map_keys_recurse, c, op, from, fn, flags);
2472}
2473
2474/* Keybuf code */
2475
2476static inline int keybuf_cmp(struct keybuf_key *l, struct keybuf_key *r)
2477{
2478 /* Overlapping keys compare equal */
2479 if (bkey_cmp(&l->key, &START_KEY(&r->key)) <= 0)
2480 return -1;
2481 if (bkey_cmp(&START_KEY(&l->key), &r->key) >= 0)
2482 return 1;
2483 return 0;
2484}
2485
2486static inline int keybuf_nonoverlapping_cmp(struct keybuf_key *l,
2487 struct keybuf_key *r)
2488{
2489 return clamp_t(int64_t, bkey_cmp(&l->key, &r->key), -1, 1);
2490}
2491
2492struct refill {
2493 struct btree_op op;
2494 unsigned int nr_found;
2495 struct keybuf *buf;
2496 struct bkey *end;
2497 keybuf_pred_fn *pred;
2498};
2499
2500static int refill_keybuf_fn(struct btree_op *op, struct btree *b,
2501 struct bkey *k)
2502{
2503 struct refill *refill = container_of(op, struct refill, op);
2504 struct keybuf *buf = refill->buf;
2505 int ret = MAP_CONTINUE;
2506
2507 if (bkey_cmp(k, refill->end) > 0) {
2508 ret = MAP_DONE;
2509 goto out;
2510 }
2511
2512 if (!KEY_SIZE(k)) /* end key */
2513 goto out;
2514
2515 if (refill->pred(buf, k)) {
2516 struct keybuf_key *w;
2517
2518 spin_lock(&buf->lock);
2519
2520 w = array_alloc(&buf->freelist);
2521 if (!w) {
2522 spin_unlock(&buf->lock);
2523 return MAP_DONE;
2524 }
2525
2526 w->private = NULL;
2527 bkey_copy(&w->key, k);
2528
2529 if (RB_INSERT(&buf->keys, w, node, keybuf_cmp))
2530 array_free(&buf->freelist, w);
2531 else
2532 refill->nr_found++;
2533
2534 if (array_freelist_empty(&buf->freelist))
2535 ret = MAP_DONE;
2536
2537 spin_unlock(&buf->lock);
2538 }
2539out:
2540 buf->last_scanned = *k;
2541 return ret;
2542}
2543
2544void bch_refill_keybuf(struct cache_set *c, struct keybuf *buf,
2545 struct bkey *end, keybuf_pred_fn *pred)
2546{
2547 struct bkey start = buf->last_scanned;
2548 struct refill refill;
2549
2550 cond_resched();
2551
2552 bch_btree_op_init(&refill.op, -1);
2553 refill.nr_found = 0;
2554 refill.buf = buf;
2555 refill.end = end;
2556 refill.pred = pred;
2557
2558 bch_btree_map_keys(&refill.op, c, &buf->last_scanned,
2559 refill_keybuf_fn, MAP_END_KEY);
2560
2561 trace_bcache_keyscan(refill.nr_found,
2562 KEY_INODE(&start), KEY_OFFSET(&start),
2563 KEY_INODE(&buf->last_scanned),
2564 KEY_OFFSET(&buf->last_scanned));
2565
2566 spin_lock(&buf->lock);
2567
2568 if (!RB_EMPTY_ROOT(&buf->keys)) {
2569 struct keybuf_key *w;
2570
2571 w = RB_FIRST(&buf->keys, struct keybuf_key, node);
2572 buf->start = START_KEY(&w->key);
2573
2574 w = RB_LAST(&buf->keys, struct keybuf_key, node);
2575 buf->end = w->key;
2576 } else {
2577 buf->start = MAX_KEY;
2578 buf->end = MAX_KEY;
2579 }
2580
2581 spin_unlock(&buf->lock);
2582}
2583
2584static void __bch_keybuf_del(struct keybuf *buf, struct keybuf_key *w)
2585{
2586 rb_erase(&w->node, &buf->keys);
2587 array_free(&buf->freelist, w);
2588}
2589
2590void bch_keybuf_del(struct keybuf *buf, struct keybuf_key *w)
2591{
2592 spin_lock(&buf->lock);
2593 __bch_keybuf_del(buf, w);
2594 spin_unlock(&buf->lock);
2595}
2596
2597bool bch_keybuf_check_overlapping(struct keybuf *buf, struct bkey *start,
2598 struct bkey *end)
2599{
2600 bool ret = false;
2601 struct keybuf_key *p, *w, s;
2602
2603 s.key = *start;
2604
2605 if (bkey_cmp(end, &buf->start) <= 0 ||
2606 bkey_cmp(start, &buf->end) >= 0)
2607 return false;
2608
2609 spin_lock(&buf->lock);
2610 w = RB_GREATER(&buf->keys, s, node, keybuf_nonoverlapping_cmp);
2611
2612 while (w && bkey_cmp(&START_KEY(&w->key), end) < 0) {
2613 p = w;
2614 w = RB_NEXT(w, node);
2615
2616 if (p->private)
2617 ret = true;
2618 else
2619 __bch_keybuf_del(buf, p);
2620 }
2621
2622 spin_unlock(&buf->lock);
2623 return ret;
2624}
2625
2626struct keybuf_key *bch_keybuf_next(struct keybuf *buf)
2627{
2628 struct keybuf_key *w;
2629
2630 spin_lock(&buf->lock);
2631
2632 w = RB_FIRST(&buf->keys, struct keybuf_key, node);
2633
2634 while (w && w->private)
2635 w = RB_NEXT(w, node);
2636
2637 if (w)
2638 w->private = ERR_PTR(-EINTR);
2639
2640 spin_unlock(&buf->lock);
2641 return w;
2642}
2643
2644struct keybuf_key *bch_keybuf_next_rescan(struct cache_set *c,
2645 struct keybuf *buf,
2646 struct bkey *end,
2647 keybuf_pred_fn *pred)
2648{
2649 struct keybuf_key *ret;
2650
2651 while (1) {
2652 ret = bch_keybuf_next(buf);
2653 if (ret)
2654 break;
2655
2656 if (bkey_cmp(&buf->last_scanned, end) >= 0) {
2657 pr_debug("scan finished");
2658 break;
2659 }
2660
2661 bch_refill_keybuf(c, buf, end, pred);
2662 }
2663
2664 return ret;
2665}
2666
2667void bch_keybuf_init(struct keybuf *buf)
2668{
2669 buf->last_scanned = MAX_KEY;
2670 buf->keys = RB_ROOT;
2671
2672 spin_lock_init(&buf->lock);
2673 array_allocator_init(&buf->freelist);
2674}
2675
2676void bch_btree_exit(void)
2677{
2678 if (btree_io_wq)
2679 destroy_workqueue(btree_io_wq);
2680}
2681
2682int __init bch_btree_init(void)
2683{
2684 btree_io_wq = alloc_workqueue("bch_btree_io", WQ_MEM_RECLAIM, 0);
2685 if (!btree_io_wq)
2686 return -ENOMEM;
2687
2688 return 0;
2689}