]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/md/bcache/super.c
bcache: Refactor btree io
[mirror_ubuntu-bionic-kernel.git] / drivers / md / bcache / super.c
CommitLineData
cafe5635
KO
1/*
2 * bcache setup/teardown code, and some metadata io - read a superblock and
3 * figure out what to do with it.
4 *
5 * Copyright 2010, 2011 Kent Overstreet <kent.overstreet@gmail.com>
6 * Copyright 2012 Google, Inc.
7 */
8
9#include "bcache.h"
10#include "btree.h"
11#include "debug.h"
12#include "request.h"
13
14#include <linux/buffer_head.h>
15#include <linux/debugfs.h>
16#include <linux/genhd.h>
17#include <linux/module.h>
18#include <linux/random.h>
19#include <linux/reboot.h>
20#include <linux/sysfs.h>
21
22MODULE_LICENSE("GPL");
23MODULE_AUTHOR("Kent Overstreet <kent.overstreet@gmail.com>");
24
25static const char bcache_magic[] = {
26 0xc6, 0x85, 0x73, 0xf6, 0x4e, 0x1a, 0x45, 0xca,
27 0x82, 0x65, 0xf5, 0x7f, 0x48, 0xba, 0x6d, 0x81
28};
29
30static const char invalid_uuid[] = {
31 0xa0, 0x3e, 0xf8, 0xed, 0x3e, 0xe1, 0xb8, 0x78,
32 0xc8, 0x50, 0xfc, 0x5e, 0xcb, 0x16, 0xcd, 0x99
33};
34
35/* Default is -1; we skip past it for struct cached_dev's cache mode */
36const char * const bch_cache_modes[] = {
37 "default",
38 "writethrough",
39 "writeback",
40 "writearound",
41 "none",
42 NULL
43};
44
45struct uuid_entry_v0 {
46 uint8_t uuid[16];
47 uint8_t label[32];
48 uint32_t first_reg;
49 uint32_t last_reg;
50 uint32_t invalidated;
51 uint32_t pad;
52};
53
54static struct kobject *bcache_kobj;
55struct mutex bch_register_lock;
56LIST_HEAD(bch_cache_sets);
57static LIST_HEAD(uncached_devices);
58
59static int bcache_major, bcache_minor;
60static wait_queue_head_t unregister_wait;
61struct workqueue_struct *bcache_wq;
62
63#define BTREE_MAX_PAGES (256 * 1024 / PAGE_SIZE)
64
65static void bio_split_pool_free(struct bio_split_pool *p)
66{
8ef74790
KO
67 if (p->bio_split_hook)
68 mempool_destroy(p->bio_split_hook);
69
cafe5635
KO
70 if (p->bio_split)
71 bioset_free(p->bio_split);
cafe5635
KO
72}
73
74static int bio_split_pool_init(struct bio_split_pool *p)
75{
76 p->bio_split = bioset_create(4, 0);
77 if (!p->bio_split)
78 return -ENOMEM;
79
80 p->bio_split_hook = mempool_create_kmalloc_pool(4,
81 sizeof(struct bio_split_hook));
82 if (!p->bio_split_hook)
83 return -ENOMEM;
84
85 return 0;
86}
87
88/* Superblock */
89
90static const char *read_super(struct cache_sb *sb, struct block_device *bdev,
91 struct page **res)
92{
93 const char *err;
94 struct cache_sb *s;
95 struct buffer_head *bh = __bread(bdev, 1, SB_SIZE);
96 unsigned i;
97
98 if (!bh)
99 return "IO error";
100
101 s = (struct cache_sb *) bh->b_data;
102
103 sb->offset = le64_to_cpu(s->offset);
104 sb->version = le64_to_cpu(s->version);
105
106 memcpy(sb->magic, s->magic, 16);
107 memcpy(sb->uuid, s->uuid, 16);
108 memcpy(sb->set_uuid, s->set_uuid, 16);
109 memcpy(sb->label, s->label, SB_LABEL_SIZE);
110
111 sb->flags = le64_to_cpu(s->flags);
112 sb->seq = le64_to_cpu(s->seq);
cafe5635 113 sb->last_mount = le32_to_cpu(s->last_mount);
cafe5635
KO
114 sb->first_bucket = le16_to_cpu(s->first_bucket);
115 sb->keys = le16_to_cpu(s->keys);
116
117 for (i = 0; i < SB_JOURNAL_BUCKETS; i++)
118 sb->d[i] = le64_to_cpu(s->d[i]);
119
120 pr_debug("read sb version %llu, flags %llu, seq %llu, journal size %u",
121 sb->version, sb->flags, sb->seq, sb->keys);
122
123 err = "Not a bcache superblock";
124 if (sb->offset != SB_SECTOR)
125 goto err;
126
127 if (memcmp(sb->magic, bcache_magic, 16))
128 goto err;
129
130 err = "Too many journal buckets";
131 if (sb->keys > SB_JOURNAL_BUCKETS)
132 goto err;
133
134 err = "Bad checksum";
135 if (s->csum != csum_set(s))
136 goto err;
137
138 err = "Bad UUID";
169ef1cf 139 if (bch_is_zero(sb->uuid, 16))
cafe5635
KO
140 goto err;
141
8abb2a5d
KO
142 sb->block_size = le16_to_cpu(s->block_size);
143
144 err = "Superblock block size smaller than device block size";
145 if (sb->block_size << 9 < bdev_logical_block_size(bdev))
146 goto err;
147
2903381f
KO
148 switch (sb->version) {
149 case BCACHE_SB_VERSION_BDEV:
2903381f
KO
150 sb->data_offset = BDEV_DATA_START_DEFAULT;
151 break;
152 case BCACHE_SB_VERSION_BDEV_WITH_OFFSET:
2903381f
KO
153 sb->data_offset = le64_to_cpu(s->data_offset);
154
155 err = "Bad data offset";
156 if (sb->data_offset < BDEV_DATA_START_DEFAULT)
157 goto err;
cafe5635 158
2903381f
KO
159 break;
160 case BCACHE_SB_VERSION_CDEV:
161 case BCACHE_SB_VERSION_CDEV_WITH_UUID:
162 sb->nbuckets = le64_to_cpu(s->nbuckets);
163 sb->block_size = le16_to_cpu(s->block_size);
164 sb->bucket_size = le16_to_cpu(s->bucket_size);
cafe5635 165
2903381f
KO
166 sb->nr_in_set = le16_to_cpu(s->nr_in_set);
167 sb->nr_this_dev = le16_to_cpu(s->nr_this_dev);
cafe5635 168
2903381f
KO
169 err = "Too many buckets";
170 if (sb->nbuckets > LONG_MAX)
171 goto err;
cafe5635 172
2903381f
KO
173 err = "Not enough buckets";
174 if (sb->nbuckets < 1 << 7)
175 goto err;
cafe5635 176
2903381f
KO
177 err = "Bad block/bucket size";
178 if (!is_power_of_2(sb->block_size) ||
179 sb->block_size > PAGE_SECTORS ||
180 !is_power_of_2(sb->bucket_size) ||
181 sb->bucket_size < PAGE_SECTORS)
182 goto err;
cafe5635 183
2903381f
KO
184 err = "Invalid superblock: device too small";
185 if (get_capacity(bdev->bd_disk) < sb->bucket_size * sb->nbuckets)
186 goto err;
cafe5635 187
2903381f
KO
188 err = "Bad UUID";
189 if (bch_is_zero(sb->set_uuid, 16))
190 goto err;
cafe5635 191
2903381f
KO
192 err = "Bad cache device number in set";
193 if (!sb->nr_in_set ||
194 sb->nr_in_set <= sb->nr_this_dev ||
195 sb->nr_in_set > MAX_CACHES_PER_SET)
cafe5635
KO
196 goto err;
197
2903381f
KO
198 err = "Journal buckets not sequential";
199 for (i = 0; i < sb->keys; i++)
200 if (sb->d[i] != sb->first_bucket + i)
201 goto err;
cafe5635 202
2903381f
KO
203 err = "Too many journal buckets";
204 if (sb->first_bucket + sb->keys > sb->nbuckets)
205 goto err;
206
207 err = "Invalid superblock: first bucket comes before end of super";
208 if (sb->first_bucket * sb->bucket_size < 16)
209 goto err;
210
211 break;
212 default:
213 err = "Unsupported superblock version";
cafe5635 214 goto err;
2903381f
KO
215 }
216
cafe5635
KO
217 sb->last_mount = get_seconds();
218 err = NULL;
219
220 get_page(bh->b_page);
221 *res = bh->b_page;
222err:
223 put_bh(bh);
224 return err;
225}
226
227static void write_bdev_super_endio(struct bio *bio, int error)
228{
229 struct cached_dev *dc = bio->bi_private;
230 /* XXX: error checking */
231
232 closure_put(&dc->sb_write.cl);
233}
234
235static void __write_super(struct cache_sb *sb, struct bio *bio)
236{
237 struct cache_sb *out = page_address(bio->bi_io_vec[0].bv_page);
238 unsigned i;
239
240 bio->bi_sector = SB_SECTOR;
241 bio->bi_rw = REQ_SYNC|REQ_META;
242 bio->bi_size = SB_SIZE;
169ef1cf 243 bch_bio_map(bio, NULL);
cafe5635
KO
244
245 out->offset = cpu_to_le64(sb->offset);
246 out->version = cpu_to_le64(sb->version);
247
248 memcpy(out->uuid, sb->uuid, 16);
249 memcpy(out->set_uuid, sb->set_uuid, 16);
250 memcpy(out->label, sb->label, SB_LABEL_SIZE);
251
252 out->flags = cpu_to_le64(sb->flags);
253 out->seq = cpu_to_le64(sb->seq);
254
255 out->last_mount = cpu_to_le32(sb->last_mount);
256 out->first_bucket = cpu_to_le16(sb->first_bucket);
257 out->keys = cpu_to_le16(sb->keys);
258
259 for (i = 0; i < sb->keys; i++)
260 out->d[i] = cpu_to_le64(sb->d[i]);
261
262 out->csum = csum_set(out);
263
264 pr_debug("ver %llu, flags %llu, seq %llu",
265 sb->version, sb->flags, sb->seq);
266
267 submit_bio(REQ_WRITE, bio);
268}
269
270void bch_write_bdev_super(struct cached_dev *dc, struct closure *parent)
271{
272 struct closure *cl = &dc->sb_write.cl;
273 struct bio *bio = &dc->sb_bio;
274
275 closure_lock(&dc->sb_write, parent);
276
277 bio_reset(bio);
278 bio->bi_bdev = dc->bdev;
279 bio->bi_end_io = write_bdev_super_endio;
280 bio->bi_private = dc;
281
282 closure_get(cl);
283 __write_super(&dc->sb, bio);
284
285 closure_return(cl);
286}
287
288static void write_super_endio(struct bio *bio, int error)
289{
290 struct cache *ca = bio->bi_private;
291
292 bch_count_io_errors(ca, error, "writing superblock");
293 closure_put(&ca->set->sb_write.cl);
294}
295
296void bcache_write_super(struct cache_set *c)
297{
298 struct closure *cl = &c->sb_write.cl;
299 struct cache *ca;
300 unsigned i;
301
302 closure_lock(&c->sb_write, &c->cl);
303
304 c->sb.seq++;
305
306 for_each_cache(ca, c, i) {
307 struct bio *bio = &ca->sb_bio;
308
2903381f 309 ca->sb.version = BCACHE_SB_VERSION_CDEV_WITH_UUID;
cafe5635
KO
310 ca->sb.seq = c->sb.seq;
311 ca->sb.last_mount = c->sb.last_mount;
312
313 SET_CACHE_SYNC(&ca->sb, CACHE_SYNC(&c->sb));
314
315 bio_reset(bio);
316 bio->bi_bdev = ca->bdev;
317 bio->bi_end_io = write_super_endio;
318 bio->bi_private = ca;
319
320 closure_get(cl);
321 __write_super(&ca->sb, bio);
322 }
323
324 closure_return(cl);
325}
326
327/* UUID io */
328
329static void uuid_endio(struct bio *bio, int error)
330{
331 struct closure *cl = bio->bi_private;
332 struct cache_set *c = container_of(cl, struct cache_set, uuid_write.cl);
333
334 cache_set_err_on(error, c, "accessing uuids");
335 bch_bbio_free(bio, c);
336 closure_put(cl);
337}
338
339static void uuid_io(struct cache_set *c, unsigned long rw,
340 struct bkey *k, struct closure *parent)
341{
342 struct closure *cl = &c->uuid_write.cl;
343 struct uuid_entry *u;
344 unsigned i;
345
346 BUG_ON(!parent);
347 closure_lock(&c->uuid_write, parent);
348
349 for (i = 0; i < KEY_PTRS(k); i++) {
350 struct bio *bio = bch_bbio_alloc(c);
351
352 bio->bi_rw = REQ_SYNC|REQ_META|rw;
353 bio->bi_size = KEY_SIZE(k) << 9;
354
355 bio->bi_end_io = uuid_endio;
356 bio->bi_private = cl;
169ef1cf 357 bch_bio_map(bio, c->uuids);
cafe5635
KO
358
359 bch_submit_bbio(bio, c, k, i);
360
361 if (!(rw & WRITE))
362 break;
363 }
364
365 pr_debug("%s UUIDs at %s", rw & REQ_WRITE ? "wrote" : "read",
366 pkey(&c->uuid_bucket));
367
368 for (u = c->uuids; u < c->uuids + c->nr_uuids; u++)
169ef1cf 369 if (!bch_is_zero(u->uuid, 16))
cafe5635
KO
370 pr_debug("Slot %zi: %pU: %s: 1st: %u last: %u inv: %u",
371 u - c->uuids, u->uuid, u->label,
372 u->first_reg, u->last_reg, u->invalidated);
373
374 closure_return(cl);
375}
376
377static char *uuid_read(struct cache_set *c, struct jset *j, struct closure *cl)
378{
379 struct bkey *k = &j->uuid_bucket;
380
381 if (__bch_ptr_invalid(c, 1, k))
382 return "bad uuid pointer";
383
384 bkey_copy(&c->uuid_bucket, k);
385 uuid_io(c, READ_SYNC, k, cl);
386
387 if (j->version < BCACHE_JSET_VERSION_UUIDv1) {
388 struct uuid_entry_v0 *u0 = (void *) c->uuids;
389 struct uuid_entry *u1 = (void *) c->uuids;
390 int i;
391
392 closure_sync(cl);
393
394 /*
395 * Since the new uuid entry is bigger than the old, we have to
396 * convert starting at the highest memory address and work down
397 * in order to do it in place
398 */
399
400 for (i = c->nr_uuids - 1;
401 i >= 0;
402 --i) {
403 memcpy(u1[i].uuid, u0[i].uuid, 16);
404 memcpy(u1[i].label, u0[i].label, 32);
405
406 u1[i].first_reg = u0[i].first_reg;
407 u1[i].last_reg = u0[i].last_reg;
408 u1[i].invalidated = u0[i].invalidated;
409
410 u1[i].flags = 0;
411 u1[i].sectors = 0;
412 }
413 }
414
415 return NULL;
416}
417
418static int __uuid_write(struct cache_set *c)
419{
420 BKEY_PADDED(key) k;
421 struct closure cl;
422 closure_init_stack(&cl);
423
424 lockdep_assert_held(&bch_register_lock);
425
426 if (bch_bucket_alloc_set(c, WATERMARK_METADATA, &k.key, 1, &cl))
427 return 1;
428
429 SET_KEY_SIZE(&k.key, c->sb.bucket_size);
430 uuid_io(c, REQ_WRITE, &k.key, &cl);
431 closure_sync(&cl);
432
433 bkey_copy(&c->uuid_bucket, &k.key);
434 __bkey_put(c, &k.key);
435 return 0;
436}
437
438int bch_uuid_write(struct cache_set *c)
439{
440 int ret = __uuid_write(c);
441
442 if (!ret)
443 bch_journal_meta(c, NULL);
444
445 return ret;
446}
447
448static struct uuid_entry *uuid_find(struct cache_set *c, const char *uuid)
449{
450 struct uuid_entry *u;
451
452 for (u = c->uuids;
453 u < c->uuids + c->nr_uuids; u++)
454 if (!memcmp(u->uuid, uuid, 16))
455 return u;
456
457 return NULL;
458}
459
460static struct uuid_entry *uuid_find_empty(struct cache_set *c)
461{
462 static const char zero_uuid[16] = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0";
463 return uuid_find(c, zero_uuid);
464}
465
466/*
467 * Bucket priorities/gens:
468 *
469 * For each bucket, we store on disk its
470 * 8 bit gen
471 * 16 bit priority
472 *
473 * See alloc.c for an explanation of the gen. The priority is used to implement
474 * lru (and in the future other) cache replacement policies; for most purposes
475 * it's just an opaque integer.
476 *
477 * The gens and the priorities don't have a whole lot to do with each other, and
478 * it's actually the gens that must be written out at specific times - it's no
479 * big deal if the priorities don't get written, if we lose them we just reuse
480 * buckets in suboptimal order.
481 *
482 * On disk they're stored in a packed array, and in as many buckets are required
483 * to fit them all. The buckets we use to store them form a list; the journal
484 * header points to the first bucket, the first bucket points to the second
485 * bucket, et cetera.
486 *
487 * This code is used by the allocation code; periodically (whenever it runs out
488 * of buckets to allocate from) the allocation code will invalidate some
489 * buckets, but it can't use those buckets until their new gens are safely on
490 * disk.
491 */
492
493static void prio_endio(struct bio *bio, int error)
494{
495 struct cache *ca = bio->bi_private;
496
497 cache_set_err_on(error, ca->set, "accessing priorities");
498 bch_bbio_free(bio, ca->set);
499 closure_put(&ca->prio);
500}
501
502static void prio_io(struct cache *ca, uint64_t bucket, unsigned long rw)
503{
504 struct closure *cl = &ca->prio;
505 struct bio *bio = bch_bbio_alloc(ca->set);
506
507 closure_init_stack(cl);
508
509 bio->bi_sector = bucket * ca->sb.bucket_size;
510 bio->bi_bdev = ca->bdev;
511 bio->bi_rw = REQ_SYNC|REQ_META|rw;
512 bio->bi_size = bucket_bytes(ca);
513
514 bio->bi_end_io = prio_endio;
515 bio->bi_private = ca;
169ef1cf 516 bch_bio_map(bio, ca->disk_buckets);
cafe5635
KO
517
518 closure_bio_submit(bio, &ca->prio, ca);
519 closure_sync(cl);
520}
521
522#define buckets_free(c) "free %zu, free_inc %zu, unused %zu", \
523 fifo_used(&c->free), fifo_used(&c->free_inc), fifo_used(&c->unused)
524
525void bch_prio_write(struct cache *ca)
526{
527 int i;
528 struct bucket *b;
529 struct closure cl;
530
531 closure_init_stack(&cl);
532
533 lockdep_assert_held(&ca->set->bucket_lock);
534
535 for (b = ca->buckets;
536 b < ca->buckets + ca->sb.nbuckets; b++)
537 b->disk_gen = b->gen;
538
539 ca->disk_buckets->seq++;
540
541 atomic_long_add(ca->sb.bucket_size * prio_buckets(ca),
542 &ca->meta_sectors_written);
543
544 pr_debug("free %zu, free_inc %zu, unused %zu", fifo_used(&ca->free),
545 fifo_used(&ca->free_inc), fifo_used(&ca->unused));
546 blktrace_msg(ca, "Starting priorities: " buckets_free(ca));
547
548 for (i = prio_buckets(ca) - 1; i >= 0; --i) {
549 long bucket;
550 struct prio_set *p = ca->disk_buckets;
b1a67b0f
KO
551 struct bucket_disk *d = p->data;
552 struct bucket_disk *end = d + prios_per_bucket(ca);
cafe5635
KO
553
554 for (b = ca->buckets + i * prios_per_bucket(ca);
555 b < ca->buckets + ca->sb.nbuckets && d < end;
556 b++, d++) {
557 d->prio = cpu_to_le16(b->prio);
558 d->gen = b->gen;
559 }
560
561 p->next_bucket = ca->prio_buckets[i + 1];
562 p->magic = pset_magic(ca);
169ef1cf 563 p->csum = bch_crc64(&p->magic, bucket_bytes(ca) - 8);
cafe5635
KO
564
565 bucket = bch_bucket_alloc(ca, WATERMARK_PRIO, &cl);
566 BUG_ON(bucket == -1);
567
568 mutex_unlock(&ca->set->bucket_lock);
569 prio_io(ca, bucket, REQ_WRITE);
570 mutex_lock(&ca->set->bucket_lock);
571
572 ca->prio_buckets[i] = bucket;
573 atomic_dec_bug(&ca->buckets[bucket].pin);
574 }
575
576 mutex_unlock(&ca->set->bucket_lock);
577
578 bch_journal_meta(ca->set, &cl);
579 closure_sync(&cl);
580
581 mutex_lock(&ca->set->bucket_lock);
582
583 ca->need_save_prio = 0;
584
585 /*
586 * Don't want the old priorities to get garbage collected until after we
587 * finish writing the new ones, and they're journalled
588 */
589 for (i = 0; i < prio_buckets(ca); i++)
590 ca->prio_last_buckets[i] = ca->prio_buckets[i];
591}
592
593static void prio_read(struct cache *ca, uint64_t bucket)
594{
595 struct prio_set *p = ca->disk_buckets;
596 struct bucket_disk *d = p->data + prios_per_bucket(ca), *end = d;
597 struct bucket *b;
598 unsigned bucket_nr = 0;
599
600 for (b = ca->buckets;
601 b < ca->buckets + ca->sb.nbuckets;
602 b++, d++) {
603 if (d == end) {
604 ca->prio_buckets[bucket_nr] = bucket;
605 ca->prio_last_buckets[bucket_nr] = bucket;
606 bucket_nr++;
607
608 prio_io(ca, bucket, READ_SYNC);
609
169ef1cf 610 if (p->csum != bch_crc64(&p->magic, bucket_bytes(ca) - 8))
cafe5635
KO
611 pr_warn("bad csum reading priorities");
612
613 if (p->magic != pset_magic(ca))
614 pr_warn("bad magic reading priorities");
615
616 bucket = p->next_bucket;
617 d = p->data;
618 }
619
620 b->prio = le16_to_cpu(d->prio);
621 b->gen = b->disk_gen = b->last_gc = b->gc_gen = d->gen;
622 }
623}
624
625/* Bcache device */
626
627static int open_dev(struct block_device *b, fmode_t mode)
628{
629 struct bcache_device *d = b->bd_disk->private_data;
630 if (atomic_read(&d->closing))
631 return -ENXIO;
632
633 closure_get(&d->cl);
634 return 0;
635}
636
867e1162 637static void release_dev(struct gendisk *b, fmode_t mode)
cafe5635
KO
638{
639 struct bcache_device *d = b->private_data;
640 closure_put(&d->cl);
cafe5635
KO
641}
642
643static int ioctl_dev(struct block_device *b, fmode_t mode,
644 unsigned int cmd, unsigned long arg)
645{
646 struct bcache_device *d = b->bd_disk->private_data;
647 return d->ioctl(d, mode, cmd, arg);
648}
649
650static const struct block_device_operations bcache_ops = {
651 .open = open_dev,
652 .release = release_dev,
653 .ioctl = ioctl_dev,
654 .owner = THIS_MODULE,
655};
656
657void bcache_device_stop(struct bcache_device *d)
658{
659 if (!atomic_xchg(&d->closing, 1))
660 closure_queue(&d->cl);
661}
662
ee668506
KO
663static void bcache_device_unlink(struct bcache_device *d)
664{
665 unsigned i;
666 struct cache *ca;
667
668 sysfs_remove_link(&d->c->kobj, d->name);
669 sysfs_remove_link(&d->kobj, "cache");
670
671 for_each_cache(ca, d->c, i)
672 bd_unlink_disk_holder(ca->bdev, d->disk);
673}
674
675static void bcache_device_link(struct bcache_device *d, struct cache_set *c,
676 const char *name)
677{
678 unsigned i;
679 struct cache *ca;
680
681 for_each_cache(ca, d->c, i)
682 bd_link_disk_holder(ca->bdev, d->disk);
683
684 snprintf(d->name, BCACHEDEVNAME_SIZE,
685 "%s%u", name, d->id);
686
687 WARN(sysfs_create_link(&d->kobj, &c->kobj, "cache") ||
688 sysfs_create_link(&c->kobj, &d->kobj, d->name),
689 "Couldn't create device <-> cache set symlinks");
690}
691
cafe5635
KO
692static void bcache_device_detach(struct bcache_device *d)
693{
694 lockdep_assert_held(&bch_register_lock);
695
696 if (atomic_read(&d->detaching)) {
697 struct uuid_entry *u = d->c->uuids + d->id;
698
699 SET_UUID_FLASH_ONLY(u, 0);
700 memcpy(u->uuid, invalid_uuid, 16);
701 u->invalidated = cpu_to_le32(get_seconds());
702 bch_uuid_write(d->c);
703
704 atomic_set(&d->detaching, 0);
705 }
706
ee668506
KO
707 bcache_device_unlink(d);
708
cafe5635
KO
709 d->c->devices[d->id] = NULL;
710 closure_put(&d->c->caching);
711 d->c = NULL;
712}
713
714static void bcache_device_attach(struct bcache_device *d, struct cache_set *c,
715 unsigned id)
716{
717 BUG_ON(test_bit(CACHE_SET_STOPPING, &c->flags));
718
719 d->id = id;
720 d->c = c;
721 c->devices[id] = d;
722
723 closure_get(&c->caching);
724}
725
cafe5635
KO
726static void bcache_device_free(struct bcache_device *d)
727{
728 lockdep_assert_held(&bch_register_lock);
729
730 pr_info("%s stopped", d->disk->disk_name);
731
732 if (d->c)
733 bcache_device_detach(d);
f59fce84 734 if (d->disk && d->disk->flags & GENHD_FL_UP)
cafe5635
KO
735 del_gendisk(d->disk);
736 if (d->disk && d->disk->queue)
737 blk_cleanup_queue(d->disk->queue);
738 if (d->disk)
739 put_disk(d->disk);
740
741 bio_split_pool_free(&d->bio_split_hook);
742 if (d->unaligned_bvec)
743 mempool_destroy(d->unaligned_bvec);
744 if (d->bio_split)
745 bioset_free(d->bio_split);
746
747 closure_debug_destroy(&d->cl);
748}
749
750static int bcache_device_init(struct bcache_device *d, unsigned block_size)
751{
752 struct request_queue *q;
753
754 if (!(d->bio_split = bioset_create(4, offsetof(struct bbio, bio))) ||
755 !(d->unaligned_bvec = mempool_create_kmalloc_pool(1,
756 sizeof(struct bio_vec) * BIO_MAX_PAGES)) ||
f59fce84
KO
757 bio_split_pool_init(&d->bio_split_hook) ||
758 !(d->disk = alloc_disk(1)) ||
759 !(q = blk_alloc_queue(GFP_KERNEL)))
cafe5635
KO
760 return -ENOMEM;
761
762 snprintf(d->disk->disk_name, DISK_NAME_LEN, "bcache%i", bcache_minor);
763
764 d->disk->major = bcache_major;
765 d->disk->first_minor = bcache_minor++;
766 d->disk->fops = &bcache_ops;
767 d->disk->private_data = d;
768
cafe5635
KO
769 blk_queue_make_request(q, NULL);
770 d->disk->queue = q;
771 q->queuedata = d;
772 q->backing_dev_info.congested_data = d;
773 q->limits.max_hw_sectors = UINT_MAX;
774 q->limits.max_sectors = UINT_MAX;
775 q->limits.max_segment_size = UINT_MAX;
776 q->limits.max_segments = BIO_MAX_PAGES;
777 q->limits.max_discard_sectors = UINT_MAX;
778 q->limits.io_min = block_size;
779 q->limits.logical_block_size = block_size;
780 q->limits.physical_block_size = block_size;
781 set_bit(QUEUE_FLAG_NONROT, &d->disk->queue->queue_flags);
782 set_bit(QUEUE_FLAG_DISCARD, &d->disk->queue->queue_flags);
783
784 return 0;
785}
786
787/* Cached device */
788
789static void calc_cached_dev_sectors(struct cache_set *c)
790{
791 uint64_t sectors = 0;
792 struct cached_dev *dc;
793
794 list_for_each_entry(dc, &c->cached_devs, list)
795 sectors += bdev_sectors(dc->bdev);
796
797 c->cached_dev_sectors = sectors;
798}
799
800void bch_cached_dev_run(struct cached_dev *dc)
801{
802 struct bcache_device *d = &dc->disk;
803
804 if (atomic_xchg(&dc->running, 1))
805 return;
806
807 if (!d->c &&
808 BDEV_STATE(&dc->sb) != BDEV_STATE_NONE) {
809 struct closure cl;
810 closure_init_stack(&cl);
811
812 SET_BDEV_STATE(&dc->sb, BDEV_STATE_STALE);
813 bch_write_bdev_super(dc, &cl);
814 closure_sync(&cl);
815 }
816
817 add_disk(d->disk);
ee668506 818 bd_link_disk_holder(dc->bdev, dc->disk.disk);
cafe5635
KO
819#if 0
820 char *env[] = { "SYMLINK=label" , NULL };
821 kobject_uevent_env(&disk_to_dev(d->disk)->kobj, KOBJ_CHANGE, env);
822#endif
823 if (sysfs_create_link(&d->kobj, &disk_to_dev(d->disk)->kobj, "dev") ||
824 sysfs_create_link(&disk_to_dev(d->disk)->kobj, &d->kobj, "bcache"))
825 pr_debug("error creating sysfs link");
826}
827
828static void cached_dev_detach_finish(struct work_struct *w)
829{
830 struct cached_dev *dc = container_of(w, struct cached_dev, detach);
831 char buf[BDEVNAME_SIZE];
832 struct closure cl;
833 closure_init_stack(&cl);
834
835 BUG_ON(!atomic_read(&dc->disk.detaching));
836 BUG_ON(atomic_read(&dc->count));
837
cafe5635
KO
838 mutex_lock(&bch_register_lock);
839
840 memset(&dc->sb.set_uuid, 0, 16);
841 SET_BDEV_STATE(&dc->sb, BDEV_STATE_NONE);
842
843 bch_write_bdev_super(dc, &cl);
844 closure_sync(&cl);
845
846 bcache_device_detach(&dc->disk);
847 list_move(&dc->list, &uncached_devices);
848
849 mutex_unlock(&bch_register_lock);
850
851 pr_info("Caching disabled for %s", bdevname(dc->bdev, buf));
852
853 /* Drop ref we took in cached_dev_detach() */
854 closure_put(&dc->disk.cl);
855}
856
857void bch_cached_dev_detach(struct cached_dev *dc)
858{
859 lockdep_assert_held(&bch_register_lock);
860
861 if (atomic_read(&dc->disk.closing))
862 return;
863
864 if (atomic_xchg(&dc->disk.detaching, 1))
865 return;
866
867 /*
868 * Block the device from being closed and freed until we're finished
869 * detaching
870 */
871 closure_get(&dc->disk.cl);
872
873 bch_writeback_queue(dc);
874 cached_dev_put(dc);
875}
876
877int bch_cached_dev_attach(struct cached_dev *dc, struct cache_set *c)
878{
879 uint32_t rtime = cpu_to_le32(get_seconds());
880 struct uuid_entry *u;
881 char buf[BDEVNAME_SIZE];
882
883 bdevname(dc->bdev, buf);
884
885 if (memcmp(dc->sb.set_uuid, c->sb.set_uuid, 16))
886 return -ENOENT;
887
888 if (dc->disk.c) {
889 pr_err("Can't attach %s: already attached", buf);
890 return -EINVAL;
891 }
892
893 if (test_bit(CACHE_SET_STOPPING, &c->flags)) {
894 pr_err("Can't attach %s: shutting down", buf);
895 return -EINVAL;
896 }
897
898 if (dc->sb.block_size < c->sb.block_size) {
899 /* Will die */
b1a67b0f
KO
900 pr_err("Couldn't attach %s: block size less than set's block size",
901 buf);
cafe5635
KO
902 return -EINVAL;
903 }
904
905 u = uuid_find(c, dc->sb.uuid);
906
907 if (u &&
908 (BDEV_STATE(&dc->sb) == BDEV_STATE_STALE ||
909 BDEV_STATE(&dc->sb) == BDEV_STATE_NONE)) {
910 memcpy(u->uuid, invalid_uuid, 16);
911 u->invalidated = cpu_to_le32(get_seconds());
912 u = NULL;
913 }
914
915 if (!u) {
916 if (BDEV_STATE(&dc->sb) == BDEV_STATE_DIRTY) {
917 pr_err("Couldn't find uuid for %s in set", buf);
918 return -ENOENT;
919 }
920
921 u = uuid_find_empty(c);
922 if (!u) {
923 pr_err("Not caching %s, no room for UUID", buf);
924 return -EINVAL;
925 }
926 }
927
928 /* Deadlocks since we're called via sysfs...
929 sysfs_remove_file(&dc->kobj, &sysfs_attach);
930 */
931
169ef1cf 932 if (bch_is_zero(u->uuid, 16)) {
cafe5635
KO
933 struct closure cl;
934 closure_init_stack(&cl);
935
936 memcpy(u->uuid, dc->sb.uuid, 16);
937 memcpy(u->label, dc->sb.label, SB_LABEL_SIZE);
938 u->first_reg = u->last_reg = rtime;
939 bch_uuid_write(c);
940
941 memcpy(dc->sb.set_uuid, c->sb.set_uuid, 16);
942 SET_BDEV_STATE(&dc->sb, BDEV_STATE_CLEAN);
943
944 bch_write_bdev_super(dc, &cl);
945 closure_sync(&cl);
946 } else {
947 u->last_reg = rtime;
948 bch_uuid_write(c);
949 }
950
951 bcache_device_attach(&dc->disk, c, u - c->uuids);
cafe5635
KO
952 list_move(&dc->list, &c->cached_devs);
953 calc_cached_dev_sectors(c);
954
955 smp_wmb();
956 /*
957 * dc->c must be set before dc->count != 0 - paired with the mb in
958 * cached_dev_get()
959 */
960 atomic_set(&dc->count, 1);
961
962 if (BDEV_STATE(&dc->sb) == BDEV_STATE_DIRTY) {
963 atomic_set(&dc->has_dirty, 1);
964 atomic_inc(&dc->count);
965 bch_writeback_queue(dc);
966 }
967
968 bch_cached_dev_run(dc);
ee668506 969 bcache_device_link(&dc->disk, c, "bdev");
cafe5635
KO
970
971 pr_info("Caching %s as %s on set %pU",
972 bdevname(dc->bdev, buf), dc->disk.disk->disk_name,
973 dc->disk.c->sb.set_uuid);
974 return 0;
975}
976
977void bch_cached_dev_release(struct kobject *kobj)
978{
979 struct cached_dev *dc = container_of(kobj, struct cached_dev,
980 disk.kobj);
981 kfree(dc);
982 module_put(THIS_MODULE);
983}
984
985static void cached_dev_free(struct closure *cl)
986{
987 struct cached_dev *dc = container_of(cl, struct cached_dev, disk.cl);
988
989 cancel_delayed_work_sync(&dc->writeback_rate_update);
990
991 mutex_lock(&bch_register_lock);
992
f59fce84
KO
993 if (atomic_read(&dc->running))
994 bd_unlink_disk_holder(dc->bdev, dc->disk.disk);
cafe5635
KO
995 bcache_device_free(&dc->disk);
996 list_del(&dc->list);
997
998 mutex_unlock(&bch_register_lock);
999
1000 if (!IS_ERR_OR_NULL(dc->bdev)) {
f59fce84
KO
1001 if (dc->bdev->bd_disk)
1002 blk_sync_queue(bdev_get_queue(dc->bdev));
1003
cafe5635
KO
1004 blkdev_put(dc->bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
1005 }
1006
1007 wake_up(&unregister_wait);
1008
1009 kobject_put(&dc->disk.kobj);
1010}
1011
1012static void cached_dev_flush(struct closure *cl)
1013{
1014 struct cached_dev *dc = container_of(cl, struct cached_dev, disk.cl);
1015 struct bcache_device *d = &dc->disk;
1016
1017 bch_cache_accounting_destroy(&dc->accounting);
1018 kobject_del(&d->kobj);
1019
1020 continue_at(cl, cached_dev_free, system_wq);
1021}
1022
1023static int cached_dev_init(struct cached_dev *dc, unsigned block_size)
1024{
f59fce84 1025 int ret;
cafe5635 1026 struct io *io;
f59fce84 1027 struct request_queue *q = bdev_get_queue(dc->bdev);
cafe5635
KO
1028
1029 __module_get(THIS_MODULE);
1030 INIT_LIST_HEAD(&dc->list);
f59fce84
KO
1031 closure_init(&dc->disk.cl, NULL);
1032 set_closure_fn(&dc->disk.cl, cached_dev_flush, system_wq);
cafe5635 1033 kobject_init(&dc->disk.kobj, &bch_cached_dev_ktype);
cafe5635 1034 INIT_WORK(&dc->detach, cached_dev_detach_finish);
f59fce84
KO
1035 closure_init_unlocked(&dc->sb_write);
1036 INIT_LIST_HEAD(&dc->io_lru);
1037 spin_lock_init(&dc->io_lock);
1038 bch_cache_accounting_init(&dc->accounting, &dc->disk.cl);
cafe5635
KO
1039
1040 dc->sequential_merge = true;
1041 dc->sequential_cutoff = 4 << 20;
1042
cafe5635
KO
1043 for (io = dc->io; io < dc->io + RECENT_IO; io++) {
1044 list_add(&io->lru, &dc->io_lru);
1045 hlist_add_head(&io->hash, dc->io_hash + RECENT_IO);
1046 }
1047
f59fce84
KO
1048 ret = bcache_device_init(&dc->disk, block_size);
1049 if (ret)
1050 return ret;
1051
1052 set_capacity(dc->disk.disk,
1053 dc->bdev->bd_part->nr_sects - dc->sb.data_offset);
1054
1055 dc->disk.disk->queue->backing_dev_info.ra_pages =
1056 max(dc->disk.disk->queue->backing_dev_info.ra_pages,
1057 q->backing_dev_info.ra_pages);
1058
1059 bch_cached_dev_request_init(dc);
1060 bch_cached_dev_writeback_init(dc);
cafe5635 1061 return 0;
cafe5635
KO
1062}
1063
1064/* Cached device - bcache superblock */
1065
f59fce84 1066static void register_bdev(struct cache_sb *sb, struct page *sb_page,
cafe5635
KO
1067 struct block_device *bdev,
1068 struct cached_dev *dc)
1069{
1070 char name[BDEVNAME_SIZE];
1071 const char *err = "cannot allocate memory";
cafe5635
KO
1072 struct cache_set *c;
1073
cafe5635 1074 memcpy(&dc->sb, sb, sizeof(struct cache_sb));
cafe5635
KO
1075 dc->bdev = bdev;
1076 dc->bdev->bd_holder = dc;
1077
f59fce84
KO
1078 bio_init(&dc->sb_bio);
1079 dc->sb_bio.bi_max_vecs = 1;
1080 dc->sb_bio.bi_io_vec = dc->sb_bio.bi_inline_vecs;
1081 dc->sb_bio.bi_io_vec[0].bv_page = sb_page;
1082 get_page(sb_page);
4f0fd955 1083
f59fce84
KO
1084 if (cached_dev_init(dc, sb->block_size << 9))
1085 goto err;
cafe5635
KO
1086
1087 err = "error creating kobject";
1088 if (kobject_add(&dc->disk.kobj, &part_to_dev(bdev->bd_part)->kobj,
1089 "bcache"))
1090 goto err;
1091 if (bch_cache_accounting_add_kobjs(&dc->accounting, &dc->disk.kobj))
1092 goto err;
1093
f59fce84
KO
1094 pr_info("registered backing device %s", bdevname(bdev, name));
1095
cafe5635
KO
1096 list_add(&dc->list, &uncached_devices);
1097 list_for_each_entry(c, &bch_cache_sets, list)
1098 bch_cached_dev_attach(dc, c);
1099
1100 if (BDEV_STATE(&dc->sb) == BDEV_STATE_NONE ||
1101 BDEV_STATE(&dc->sb) == BDEV_STATE_STALE)
1102 bch_cached_dev_run(dc);
1103
f59fce84 1104 return;
cafe5635 1105err:
cafe5635 1106 pr_notice("error opening %s: %s", bdevname(bdev, name), err);
f59fce84 1107 bcache_device_stop(&dc->disk);
cafe5635
KO
1108}
1109
1110/* Flash only volumes */
1111
1112void bch_flash_dev_release(struct kobject *kobj)
1113{
1114 struct bcache_device *d = container_of(kobj, struct bcache_device,
1115 kobj);
1116 kfree(d);
1117}
1118
1119static void flash_dev_free(struct closure *cl)
1120{
1121 struct bcache_device *d = container_of(cl, struct bcache_device, cl);
1122 bcache_device_free(d);
1123 kobject_put(&d->kobj);
1124}
1125
1126static void flash_dev_flush(struct closure *cl)
1127{
1128 struct bcache_device *d = container_of(cl, struct bcache_device, cl);
1129
ee668506 1130 bcache_device_unlink(d);
cafe5635
KO
1131 kobject_del(&d->kobj);
1132 continue_at(cl, flash_dev_free, system_wq);
1133}
1134
1135static int flash_dev_run(struct cache_set *c, struct uuid_entry *u)
1136{
1137 struct bcache_device *d = kzalloc(sizeof(struct bcache_device),
1138 GFP_KERNEL);
1139 if (!d)
1140 return -ENOMEM;
1141
1142 closure_init(&d->cl, NULL);
1143 set_closure_fn(&d->cl, flash_dev_flush, system_wq);
1144
1145 kobject_init(&d->kobj, &bch_flash_dev_ktype);
1146
1147 if (bcache_device_init(d, block_bytes(c)))
1148 goto err;
1149
1150 bcache_device_attach(d, c, u - c->uuids);
1151 set_capacity(d->disk, u->sectors);
1152 bch_flash_dev_request_init(d);
1153 add_disk(d->disk);
1154
1155 if (kobject_add(&d->kobj, &disk_to_dev(d->disk)->kobj, "bcache"))
1156 goto err;
1157
1158 bcache_device_link(d, c, "volume");
1159
1160 return 0;
1161err:
1162 kobject_put(&d->kobj);
1163 return -ENOMEM;
1164}
1165
1166static int flash_devs_run(struct cache_set *c)
1167{
1168 int ret = 0;
1169 struct uuid_entry *u;
1170
1171 for (u = c->uuids;
1172 u < c->uuids + c->nr_uuids && !ret;
1173 u++)
1174 if (UUID_FLASH_ONLY(u))
1175 ret = flash_dev_run(c, u);
1176
1177 return ret;
1178}
1179
1180int bch_flash_dev_create(struct cache_set *c, uint64_t size)
1181{
1182 struct uuid_entry *u;
1183
1184 if (test_bit(CACHE_SET_STOPPING, &c->flags))
1185 return -EINTR;
1186
1187 u = uuid_find_empty(c);
1188 if (!u) {
1189 pr_err("Can't create volume, no room for UUID");
1190 return -EINVAL;
1191 }
1192
1193 get_random_bytes(u->uuid, 16);
1194 memset(u->label, 0, 32);
1195 u->first_reg = u->last_reg = cpu_to_le32(get_seconds());
1196
1197 SET_UUID_FLASH_ONLY(u, 1);
1198 u->sectors = size >> 9;
1199
1200 bch_uuid_write(c);
1201
1202 return flash_dev_run(c, u);
1203}
1204
1205/* Cache set */
1206
1207__printf(2, 3)
1208bool bch_cache_set_error(struct cache_set *c, const char *fmt, ...)
1209{
1210 va_list args;
1211
1212 if (test_bit(CACHE_SET_STOPPING, &c->flags))
1213 return false;
1214
1215 /* XXX: we can be called from atomic context
1216 acquire_console_sem();
1217 */
1218
1219 printk(KERN_ERR "bcache: error on %pU: ", c->sb.set_uuid);
1220
1221 va_start(args, fmt);
1222 vprintk(fmt, args);
1223 va_end(args);
1224
1225 printk(", disabling caching\n");
1226
1227 bch_cache_set_unregister(c);
1228 return true;
1229}
1230
1231void bch_cache_set_release(struct kobject *kobj)
1232{
1233 struct cache_set *c = container_of(kobj, struct cache_set, kobj);
1234 kfree(c);
1235 module_put(THIS_MODULE);
1236}
1237
1238static void cache_set_free(struct closure *cl)
1239{
1240 struct cache_set *c = container_of(cl, struct cache_set, cl);
1241 struct cache *ca;
1242 unsigned i;
1243
1244 if (!IS_ERR_OR_NULL(c->debug))
1245 debugfs_remove(c->debug);
1246
1247 bch_open_buckets_free(c);
1248 bch_btree_cache_free(c);
1249 bch_journal_free(c);
1250
1251 for_each_cache(ca, c, i)
1252 if (ca)
1253 kobject_put(&ca->kobj);
1254
1255 free_pages((unsigned long) c->uuids, ilog2(bucket_pages(c)));
1256 free_pages((unsigned long) c->sort, ilog2(bucket_pages(c)));
1257
cafe5635
KO
1258 if (c->bio_split)
1259 bioset_free(c->bio_split);
57943511
KO
1260 if (c->fill_iter)
1261 mempool_destroy(c->fill_iter);
cafe5635
KO
1262 if (c->bio_meta)
1263 mempool_destroy(c->bio_meta);
1264 if (c->search)
1265 mempool_destroy(c->search);
1266 kfree(c->devices);
1267
1268 mutex_lock(&bch_register_lock);
1269 list_del(&c->list);
1270 mutex_unlock(&bch_register_lock);
1271
1272 pr_info("Cache set %pU unregistered", c->sb.set_uuid);
1273 wake_up(&unregister_wait);
1274
1275 closure_debug_destroy(&c->cl);
1276 kobject_put(&c->kobj);
1277}
1278
1279static void cache_set_flush(struct closure *cl)
1280{
1281 struct cache_set *c = container_of(cl, struct cache_set, caching);
1282 struct btree *b;
1283
1284 /* Shut down allocator threads */
1285 set_bit(CACHE_SET_STOPPING_2, &c->flags);
119ba0f8 1286 wake_up_allocators(c);
cafe5635
KO
1287
1288 bch_cache_accounting_destroy(&c->accounting);
1289
1290 kobject_put(&c->internal);
1291 kobject_del(&c->kobj);
1292
1293 if (!IS_ERR_OR_NULL(c->root))
1294 list_add(&c->root->list, &c->btree_cache);
1295
1296 /* Should skip this if we're unregistering because of an error */
1297 list_for_each_entry(b, &c->btree_cache, list)
1298 if (btree_node_dirty(b))
57943511 1299 bch_btree_node_write(b, NULL);
cafe5635
KO
1300
1301 closure_return(cl);
1302}
1303
1304static void __cache_set_unregister(struct closure *cl)
1305{
1306 struct cache_set *c = container_of(cl, struct cache_set, caching);
1307 struct cached_dev *dc, *t;
1308 size_t i;
1309
1310 mutex_lock(&bch_register_lock);
1311
1312 if (test_bit(CACHE_SET_UNREGISTERING, &c->flags))
1313 list_for_each_entry_safe(dc, t, &c->cached_devs, list)
1314 bch_cached_dev_detach(dc);
1315
1316 for (i = 0; i < c->nr_uuids; i++)
1317 if (c->devices[i] && UUID_FLASH_ONLY(&c->uuids[i]))
1318 bcache_device_stop(c->devices[i]);
1319
1320 mutex_unlock(&bch_register_lock);
1321
1322 continue_at(cl, cache_set_flush, system_wq);
1323}
1324
1325void bch_cache_set_stop(struct cache_set *c)
1326{
1327 if (!test_and_set_bit(CACHE_SET_STOPPING, &c->flags))
1328 closure_queue(&c->caching);
1329}
1330
1331void bch_cache_set_unregister(struct cache_set *c)
1332{
1333 set_bit(CACHE_SET_UNREGISTERING, &c->flags);
1334 bch_cache_set_stop(c);
1335}
1336
1337#define alloc_bucket_pages(gfp, c) \
1338 ((void *) __get_free_pages(__GFP_ZERO|gfp, ilog2(bucket_pages(c))))
1339
1340struct cache_set *bch_cache_set_alloc(struct cache_sb *sb)
1341{
1342 int iter_size;
1343 struct cache_set *c = kzalloc(sizeof(struct cache_set), GFP_KERNEL);
1344 if (!c)
1345 return NULL;
1346
1347 __module_get(THIS_MODULE);
1348 closure_init(&c->cl, NULL);
1349 set_closure_fn(&c->cl, cache_set_free, system_wq);
1350
1351 closure_init(&c->caching, &c->cl);
1352 set_closure_fn(&c->caching, __cache_set_unregister, system_wq);
1353
1354 /* Maybe create continue_at_noreturn() and use it here? */
1355 closure_set_stopped(&c->cl);
1356 closure_put(&c->cl);
1357
1358 kobject_init(&c->kobj, &bch_cache_set_ktype);
1359 kobject_init(&c->internal, &bch_cache_set_internal_ktype);
1360
1361 bch_cache_accounting_init(&c->accounting, &c->cl);
1362
1363 memcpy(c->sb.set_uuid, sb->set_uuid, 16);
1364 c->sb.block_size = sb->block_size;
1365 c->sb.bucket_size = sb->bucket_size;
1366 c->sb.nr_in_set = sb->nr_in_set;
1367 c->sb.last_mount = sb->last_mount;
1368 c->bucket_bits = ilog2(sb->bucket_size);
1369 c->block_bits = ilog2(sb->block_size);
1370 c->nr_uuids = bucket_bytes(c) / sizeof(struct uuid_entry);
1371
1372 c->btree_pages = c->sb.bucket_size / PAGE_SECTORS;
1373 if (c->btree_pages > BTREE_MAX_PAGES)
1374 c->btree_pages = max_t(int, c->btree_pages / 4,
1375 BTREE_MAX_PAGES);
1376
cafe5635 1377 mutex_init(&c->bucket_lock);
cafe5635
KO
1378 mutex_init(&c->sort_lock);
1379 spin_lock_init(&c->sort_time_lock);
1380 closure_init_unlocked(&c->sb_write);
1381 closure_init_unlocked(&c->uuid_write);
1382 spin_lock_init(&c->btree_read_time_lock);
1383 bch_moving_init_cache_set(c);
1384
1385 INIT_LIST_HEAD(&c->list);
1386 INIT_LIST_HEAD(&c->cached_devs);
1387 INIT_LIST_HEAD(&c->btree_cache);
1388 INIT_LIST_HEAD(&c->btree_cache_freeable);
1389 INIT_LIST_HEAD(&c->btree_cache_freed);
1390 INIT_LIST_HEAD(&c->data_buckets);
1391
1392 c->search = mempool_create_slab_pool(32, bch_search_cache);
1393 if (!c->search)
1394 goto err;
1395
1396 iter_size = (sb->bucket_size / sb->block_size + 1) *
1397 sizeof(struct btree_iter_set);
1398
1399 if (!(c->devices = kzalloc(c->nr_uuids * sizeof(void *), GFP_KERNEL)) ||
1400 !(c->bio_meta = mempool_create_kmalloc_pool(2,
1401 sizeof(struct bbio) + sizeof(struct bio_vec) *
1402 bucket_pages(c))) ||
57943511 1403 !(c->fill_iter = mempool_create_kmalloc_pool(1, iter_size)) ||
cafe5635 1404 !(c->bio_split = bioset_create(4, offsetof(struct bbio, bio))) ||
cafe5635
KO
1405 !(c->sort = alloc_bucket_pages(GFP_KERNEL, c)) ||
1406 !(c->uuids = alloc_bucket_pages(GFP_KERNEL, c)) ||
1407 bch_journal_alloc(c) ||
1408 bch_btree_cache_alloc(c) ||
1409 bch_open_buckets_alloc(c))
1410 goto err;
1411
cafe5635
KO
1412 c->congested_read_threshold_us = 2000;
1413 c->congested_write_threshold_us = 20000;
1414 c->error_limit = 8 << IO_ERROR_SHIFT;
1415
1416 return c;
1417err:
1418 bch_cache_set_unregister(c);
1419 return NULL;
1420}
1421
1422static void run_cache_set(struct cache_set *c)
1423{
1424 const char *err = "cannot allocate memory";
1425 struct cached_dev *dc, *t;
1426 struct cache *ca;
1427 unsigned i;
1428
1429 struct btree_op op;
1430 bch_btree_op_init_stack(&op);
1431 op.lock = SHRT_MAX;
1432
1433 for_each_cache(ca, c, i)
1434 c->nbuckets += ca->sb.nbuckets;
1435
1436 if (CACHE_SYNC(&c->sb)) {
1437 LIST_HEAD(journal);
1438 struct bkey *k;
1439 struct jset *j;
1440
1441 err = "cannot allocate memory for journal";
1442 if (bch_journal_read(c, &journal, &op))
1443 goto err;
1444
1445 pr_debug("btree_journal_read() done");
1446
1447 err = "no journal entries found";
1448 if (list_empty(&journal))
1449 goto err;
1450
1451 j = &list_entry(journal.prev, struct journal_replay, list)->j;
1452
1453 err = "IO error reading priorities";
1454 for_each_cache(ca, c, i)
1455 prio_read(ca, j->prio_bucket[ca->sb.nr_this_dev]);
1456
1457 /*
1458 * If prio_read() fails it'll call cache_set_error and we'll
1459 * tear everything down right away, but if we perhaps checked
1460 * sooner we could avoid journal replay.
1461 */
1462
1463 k = &j->btree_root;
1464
1465 err = "bad btree root";
1466 if (__bch_ptr_invalid(c, j->btree_level + 1, k))
1467 goto err;
1468
1469 err = "error reading btree root";
1470 c->root = bch_btree_node_get(c, k, j->btree_level, &op);
1471 if (IS_ERR_OR_NULL(c->root))
1472 goto err;
1473
1474 list_del_init(&c->root->list);
1475 rw_unlock(true, c->root);
1476
1477 err = uuid_read(c, j, &op.cl);
1478 if (err)
1479 goto err;
1480
1481 err = "error in recovery";
1482 if (bch_btree_check(c, &op))
1483 goto err;
1484
1485 bch_journal_mark(c, &journal);
1486 bch_btree_gc_finish(c);
1487 pr_debug("btree_check() done");
1488
1489 /*
1490 * bcache_journal_next() can't happen sooner, or
1491 * btree_gc_finish() will give spurious errors about last_gc >
1492 * gc_gen - this is a hack but oh well.
1493 */
1494 bch_journal_next(&c->journal);
1495
119ba0f8 1496 err = "error starting allocator thread";
cafe5635 1497 for_each_cache(ca, c, i)
119ba0f8
KO
1498 if (bch_cache_allocator_start(ca))
1499 goto err;
cafe5635
KO
1500
1501 /*
1502 * First place it's safe to allocate: btree_check() and
1503 * btree_gc_finish() have to run before we have buckets to
1504 * allocate, and bch_bucket_alloc_set() might cause a journal
1505 * entry to be written so bcache_journal_next() has to be called
1506 * first.
1507 *
1508 * If the uuids were in the old format we have to rewrite them
1509 * before the next journal entry is written:
1510 */
1511 if (j->version < BCACHE_JSET_VERSION_UUID)
1512 __uuid_write(c);
1513
1514 bch_journal_replay(c, &journal, &op);
1515 } else {
1516 pr_notice("invalidating existing data");
1517 /* Don't want invalidate_buckets() to queue a gc yet */
1518 closure_lock(&c->gc, NULL);
1519
1520 for_each_cache(ca, c, i) {
1521 unsigned j;
1522
1523 ca->sb.keys = clamp_t(int, ca->sb.nbuckets >> 7,
1524 2, SB_JOURNAL_BUCKETS);
1525
1526 for (j = 0; j < ca->sb.keys; j++)
1527 ca->sb.d[j] = ca->sb.first_bucket + j;
1528 }
1529
1530 bch_btree_gc_finish(c);
1531
119ba0f8 1532 err = "error starting allocator thread";
cafe5635 1533 for_each_cache(ca, c, i)
119ba0f8
KO
1534 if (bch_cache_allocator_start(ca))
1535 goto err;
cafe5635
KO
1536
1537 mutex_lock(&c->bucket_lock);
1538 for_each_cache(ca, c, i)
1539 bch_prio_write(ca);
1540 mutex_unlock(&c->bucket_lock);
1541
cafe5635
KO
1542 err = "cannot allocate new UUID bucket";
1543 if (__uuid_write(c))
1544 goto err_unlock_gc;
1545
1546 err = "cannot allocate new btree root";
1547 c->root = bch_btree_node_alloc(c, 0, &op.cl);
1548 if (IS_ERR_OR_NULL(c->root))
1549 goto err_unlock_gc;
1550
1551 bkey_copy_key(&c->root->key, &MAX_KEY);
57943511 1552 bch_btree_node_write(c->root, &op.cl);
cafe5635
KO
1553
1554 bch_btree_set_root(c->root);
1555 rw_unlock(true, c->root);
1556
1557 /*
1558 * We don't want to write the first journal entry until
1559 * everything is set up - fortunately journal entries won't be
1560 * written until the SET_CACHE_SYNC() here:
1561 */
1562 SET_CACHE_SYNC(&c->sb, true);
1563
1564 bch_journal_next(&c->journal);
1565 bch_journal_meta(c, &op.cl);
1566
1567 /* Unlock */
1568 closure_set_stopped(&c->gc.cl);
1569 closure_put(&c->gc.cl);
1570 }
1571
1572 closure_sync(&op.cl);
1573 c->sb.last_mount = get_seconds();
1574 bcache_write_super(c);
1575
1576 list_for_each_entry_safe(dc, t, &uncached_devices, list)
1577 bch_cached_dev_attach(dc, c);
1578
1579 flash_devs_run(c);
1580
1581 return;
1582err_unlock_gc:
1583 closure_set_stopped(&c->gc.cl);
1584 closure_put(&c->gc.cl);
1585err:
1586 closure_sync(&op.cl);
1587 /* XXX: test this, it's broken */
1588 bch_cache_set_error(c, err);
1589}
1590
1591static bool can_attach_cache(struct cache *ca, struct cache_set *c)
1592{
1593 return ca->sb.block_size == c->sb.block_size &&
1594 ca->sb.bucket_size == c->sb.block_size &&
1595 ca->sb.nr_in_set == c->sb.nr_in_set;
1596}
1597
1598static const char *register_cache_set(struct cache *ca)
1599{
1600 char buf[12];
1601 const char *err = "cannot allocate memory";
1602 struct cache_set *c;
1603
1604 list_for_each_entry(c, &bch_cache_sets, list)
1605 if (!memcmp(c->sb.set_uuid, ca->sb.set_uuid, 16)) {
1606 if (c->cache[ca->sb.nr_this_dev])
1607 return "duplicate cache set member";
1608
1609 if (!can_attach_cache(ca, c))
1610 return "cache sb does not match set";
1611
1612 if (!CACHE_SYNC(&ca->sb))
1613 SET_CACHE_SYNC(&c->sb, false);
1614
1615 goto found;
1616 }
1617
1618 c = bch_cache_set_alloc(&ca->sb);
1619 if (!c)
1620 return err;
1621
1622 err = "error creating kobject";
1623 if (kobject_add(&c->kobj, bcache_kobj, "%pU", c->sb.set_uuid) ||
1624 kobject_add(&c->internal, &c->kobj, "internal"))
1625 goto err;
1626
1627 if (bch_cache_accounting_add_kobjs(&c->accounting, &c->kobj))
1628 goto err;
1629
1630 bch_debug_init_cache_set(c);
1631
1632 list_add(&c->list, &bch_cache_sets);
1633found:
1634 sprintf(buf, "cache%i", ca->sb.nr_this_dev);
1635 if (sysfs_create_link(&ca->kobj, &c->kobj, "set") ||
1636 sysfs_create_link(&c->kobj, &ca->kobj, buf))
1637 goto err;
1638
1639 if (ca->sb.seq > c->sb.seq) {
1640 c->sb.version = ca->sb.version;
1641 memcpy(c->sb.set_uuid, ca->sb.set_uuid, 16);
1642 c->sb.flags = ca->sb.flags;
1643 c->sb.seq = ca->sb.seq;
1644 pr_debug("set version = %llu", c->sb.version);
1645 }
1646
1647 ca->set = c;
1648 ca->set->cache[ca->sb.nr_this_dev] = ca;
1649 c->cache_by_alloc[c->caches_loaded++] = ca;
1650
1651 if (c->caches_loaded == c->sb.nr_in_set)
1652 run_cache_set(c);
1653
1654 return NULL;
1655err:
1656 bch_cache_set_unregister(c);
1657 return err;
1658}
1659
1660/* Cache device */
1661
1662void bch_cache_release(struct kobject *kobj)
1663{
1664 struct cache *ca = container_of(kobj, struct cache, kobj);
1665
1666 if (ca->set)
1667 ca->set->cache[ca->sb.nr_this_dev] = NULL;
1668
1669 bch_cache_allocator_exit(ca);
1670
1671 bio_split_pool_free(&ca->bio_split_hook);
1672
cafe5635
KO
1673 free_pages((unsigned long) ca->disk_buckets, ilog2(bucket_pages(ca)));
1674 kfree(ca->prio_buckets);
1675 vfree(ca->buckets);
1676
1677 free_heap(&ca->heap);
1678 free_fifo(&ca->unused);
1679 free_fifo(&ca->free_inc);
1680 free_fifo(&ca->free);
1681
1682 if (ca->sb_bio.bi_inline_vecs[0].bv_page)
1683 put_page(ca->sb_bio.bi_io_vec[0].bv_page);
1684
1685 if (!IS_ERR_OR_NULL(ca->bdev)) {
1686 blk_sync_queue(bdev_get_queue(ca->bdev));
1687 blkdev_put(ca->bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
1688 }
1689
1690 kfree(ca);
1691 module_put(THIS_MODULE);
1692}
1693
1694static int cache_alloc(struct cache_sb *sb, struct cache *ca)
1695{
1696 size_t free;
1697 struct bucket *b;
1698
cafe5635
KO
1699 __module_get(THIS_MODULE);
1700 kobject_init(&ca->kobj, &bch_cache_ktype);
1701
cafe5635
KO
1702 INIT_LIST_HEAD(&ca->discards);
1703
cafe5635
KO
1704 bio_init(&ca->journal.bio);
1705 ca->journal.bio.bi_max_vecs = 8;
1706 ca->journal.bio.bi_io_vec = ca->journal.bio.bi_inline_vecs;
1707
1708 free = roundup_pow_of_two(ca->sb.nbuckets) >> 9;
1709 free = max_t(size_t, free, (prio_buckets(ca) + 8) * 2);
1710
1711 if (!init_fifo(&ca->free, free, GFP_KERNEL) ||
1712 !init_fifo(&ca->free_inc, free << 2, GFP_KERNEL) ||
1713 !init_fifo(&ca->unused, free << 2, GFP_KERNEL) ||
1714 !init_heap(&ca->heap, free << 3, GFP_KERNEL) ||
f59fce84 1715 !(ca->buckets = vzalloc(sizeof(struct bucket) *
cafe5635
KO
1716 ca->sb.nbuckets)) ||
1717 !(ca->prio_buckets = kzalloc(sizeof(uint64_t) * prio_buckets(ca) *
1718 2, GFP_KERNEL)) ||
1719 !(ca->disk_buckets = alloc_bucket_pages(GFP_KERNEL, ca)) ||
cafe5635 1720 bio_split_pool_init(&ca->bio_split_hook))
f59fce84 1721 return -ENOMEM;
cafe5635
KO
1722
1723 ca->prio_last_buckets = ca->prio_buckets + prio_buckets(ca);
1724
cafe5635
KO
1725 for_each_bucket(b, ca)
1726 atomic_set(&b->pin, 0);
1727
1728 if (bch_cache_allocator_init(ca))
1729 goto err;
1730
1731 return 0;
1732err:
1733 kobject_put(&ca->kobj);
1734 return -ENOMEM;
1735}
1736
f59fce84 1737static void register_cache(struct cache_sb *sb, struct page *sb_page,
cafe5635
KO
1738 struct block_device *bdev, struct cache *ca)
1739{
1740 char name[BDEVNAME_SIZE];
1741 const char *err = "cannot allocate memory";
1742
f59fce84 1743 memcpy(&ca->sb, sb, sizeof(struct cache_sb));
cafe5635
KO
1744 ca->bdev = bdev;
1745 ca->bdev->bd_holder = ca;
1746
f59fce84
KO
1747 bio_init(&ca->sb_bio);
1748 ca->sb_bio.bi_max_vecs = 1;
1749 ca->sb_bio.bi_io_vec = ca->sb_bio.bi_inline_vecs;
1750 ca->sb_bio.bi_io_vec[0].bv_page = sb_page;
1751 get_page(sb_page);
1752
cafe5635
KO
1753 if (blk_queue_discard(bdev_get_queue(ca->bdev)))
1754 ca->discard = CACHE_DISCARD(&ca->sb);
1755
f59fce84
KO
1756 if (cache_alloc(sb, ca) != 0)
1757 goto err;
1758
cafe5635
KO
1759 err = "error creating kobject";
1760 if (kobject_add(&ca->kobj, &part_to_dev(bdev->bd_part)->kobj, "bcache"))
1761 goto err;
1762
1763 err = register_cache_set(ca);
1764 if (err)
1765 goto err;
1766
1767 pr_info("registered cache device %s", bdevname(bdev, name));
f59fce84 1768 return;
cafe5635 1769err:
f59fce84 1770 pr_notice("error opening %s: %s", bdevname(bdev, name), err);
cafe5635 1771 kobject_put(&ca->kobj);
cafe5635
KO
1772}
1773
1774/* Global interfaces/init */
1775
1776static ssize_t register_bcache(struct kobject *, struct kobj_attribute *,
1777 const char *, size_t);
1778
1779kobj_attribute_write(register, register_bcache);
1780kobj_attribute_write(register_quiet, register_bcache);
1781
a9dd53ad
GP
1782static bool bch_is_open_backing(struct block_device *bdev) {
1783 struct cache_set *c, *tc;
1784 struct cached_dev *dc, *t;
1785
1786 list_for_each_entry_safe(c, tc, &bch_cache_sets, list)
1787 list_for_each_entry_safe(dc, t, &c->cached_devs, list)
1788 if (dc->bdev == bdev)
1789 return true;
1790 list_for_each_entry_safe(dc, t, &uncached_devices, list)
1791 if (dc->bdev == bdev)
1792 return true;
1793 return false;
1794}
1795
1796static bool bch_is_open_cache(struct block_device *bdev) {
1797 struct cache_set *c, *tc;
1798 struct cache *ca;
1799 unsigned i;
1800
1801 list_for_each_entry_safe(c, tc, &bch_cache_sets, list)
1802 for_each_cache(ca, c, i)
1803 if (ca->bdev == bdev)
1804 return true;
1805 return false;
1806}
1807
1808static bool bch_is_open(struct block_device *bdev) {
1809 return bch_is_open_cache(bdev) || bch_is_open_backing(bdev);
1810}
1811
cafe5635
KO
1812static ssize_t register_bcache(struct kobject *k, struct kobj_attribute *attr,
1813 const char *buffer, size_t size)
1814{
1815 ssize_t ret = size;
1816 const char *err = "cannot allocate memory";
1817 char *path = NULL;
1818 struct cache_sb *sb = NULL;
1819 struct block_device *bdev = NULL;
1820 struct page *sb_page = NULL;
1821
1822 if (!try_module_get(THIS_MODULE))
1823 return -EBUSY;
1824
1825 mutex_lock(&bch_register_lock);
1826
1827 if (!(path = kstrndup(buffer, size, GFP_KERNEL)) ||
1828 !(sb = kmalloc(sizeof(struct cache_sb), GFP_KERNEL)))
1829 goto err;
1830
1831 err = "failed to open device";
1832 bdev = blkdev_get_by_path(strim(path),
1833 FMODE_READ|FMODE_WRITE|FMODE_EXCL,
1834 sb);
f59fce84 1835 if (IS_ERR(bdev)) {
a9dd53ad
GP
1836 if (bdev == ERR_PTR(-EBUSY)) {
1837 bdev = lookup_bdev(strim(path));
1838 if (!IS_ERR(bdev) && bch_is_open(bdev))
1839 err = "device already registered";
1840 else
1841 err = "device busy";
1842 }
cafe5635 1843 goto err;
f59fce84
KO
1844 }
1845
1846 err = "failed to set blocksize";
1847 if (set_blocksize(bdev, 4096))
1848 goto err_close;
cafe5635
KO
1849
1850 err = read_super(sb, bdev, &sb_page);
1851 if (err)
1852 goto err_close;
1853
2903381f 1854 if (SB_IS_BDEV(sb)) {
cafe5635 1855 struct cached_dev *dc = kzalloc(sizeof(*dc), GFP_KERNEL);
f59fce84
KO
1856 if (!dc)
1857 goto err_close;
cafe5635 1858
f59fce84 1859 register_bdev(sb, sb_page, bdev, dc);
cafe5635
KO
1860 } else {
1861 struct cache *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
f59fce84
KO
1862 if (!ca)
1863 goto err_close;
cafe5635 1864
f59fce84 1865 register_cache(sb, sb_page, bdev, ca);
cafe5635 1866 }
f59fce84
KO
1867out:
1868 if (sb_page)
cafe5635 1869 put_page(sb_page);
cafe5635
KO
1870 kfree(sb);
1871 kfree(path);
1872 mutex_unlock(&bch_register_lock);
1873 module_put(THIS_MODULE);
1874 return ret;
f59fce84
KO
1875
1876err_close:
1877 blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
1878err:
1879 if (attr != &ksysfs_register_quiet)
1880 pr_info("error opening %s: %s", path, err);
1881 ret = -EINVAL;
1882 goto out;
cafe5635
KO
1883}
1884
1885static int bcache_reboot(struct notifier_block *n, unsigned long code, void *x)
1886{
1887 if (code == SYS_DOWN ||
1888 code == SYS_HALT ||
1889 code == SYS_POWER_OFF) {
1890 DEFINE_WAIT(wait);
1891 unsigned long start = jiffies;
1892 bool stopped = false;
1893
1894 struct cache_set *c, *tc;
1895 struct cached_dev *dc, *tdc;
1896
1897 mutex_lock(&bch_register_lock);
1898
1899 if (list_empty(&bch_cache_sets) &&
1900 list_empty(&uncached_devices))
1901 goto out;
1902
1903 pr_info("Stopping all devices:");
1904
1905 list_for_each_entry_safe(c, tc, &bch_cache_sets, list)
1906 bch_cache_set_stop(c);
1907
1908 list_for_each_entry_safe(dc, tdc, &uncached_devices, list)
1909 bcache_device_stop(&dc->disk);
1910
1911 /* What's a condition variable? */
1912 while (1) {
1913 long timeout = start + 2 * HZ - jiffies;
1914
1915 stopped = list_empty(&bch_cache_sets) &&
1916 list_empty(&uncached_devices);
1917
1918 if (timeout < 0 || stopped)
1919 break;
1920
1921 prepare_to_wait(&unregister_wait, &wait,
1922 TASK_UNINTERRUPTIBLE);
1923
1924 mutex_unlock(&bch_register_lock);
1925 schedule_timeout(timeout);
1926 mutex_lock(&bch_register_lock);
1927 }
1928
1929 finish_wait(&unregister_wait, &wait);
1930
1931 if (stopped)
1932 pr_info("All devices stopped");
1933 else
1934 pr_notice("Timeout waiting for devices to be closed");
1935out:
1936 mutex_unlock(&bch_register_lock);
1937 }
1938
1939 return NOTIFY_DONE;
1940}
1941
1942static struct notifier_block reboot = {
1943 .notifier_call = bcache_reboot,
1944 .priority = INT_MAX, /* before any real devices */
1945};
1946
1947static void bcache_exit(void)
1948{
1949 bch_debug_exit();
1950 bch_writeback_exit();
1951 bch_request_exit();
1952 bch_btree_exit();
1953 if (bcache_kobj)
1954 kobject_put(bcache_kobj);
1955 if (bcache_wq)
1956 destroy_workqueue(bcache_wq);
1957 unregister_blkdev(bcache_major, "bcache");
1958 unregister_reboot_notifier(&reboot);
1959}
1960
1961static int __init bcache_init(void)
1962{
1963 static const struct attribute *files[] = {
1964 &ksysfs_register.attr,
1965 &ksysfs_register_quiet.attr,
1966 NULL
1967 };
1968
1969 mutex_init(&bch_register_lock);
1970 init_waitqueue_head(&unregister_wait);
1971 register_reboot_notifier(&reboot);
07e86ccb 1972 closure_debug_init();
cafe5635
KO
1973
1974 bcache_major = register_blkdev(0, "bcache");
1975 if (bcache_major < 0)
1976 return bcache_major;
1977
1978 if (!(bcache_wq = create_workqueue("bcache")) ||
1979 !(bcache_kobj = kobject_create_and_add("bcache", fs_kobj)) ||
1980 sysfs_create_files(bcache_kobj, files) ||
1981 bch_btree_init() ||
1982 bch_request_init() ||
1983 bch_writeback_init() ||
1984 bch_debug_init(bcache_kobj))
1985 goto err;
1986
1987 return 0;
1988err:
1989 bcache_exit();
1990 return -ENOMEM;
1991}
1992
1993module_exit(bcache_exit);
1994module_init(bcache_init);