blob: a314c771263fdade4e91bee4974265fb1f64569b [file] [log] [blame]
Kent Overstreetcafe5632013-03-23 16:11:31 -07001/*
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"
Kent Overstreet279afba2013-06-05 06:21:07 -070013#include "writeback.h"
Kent Overstreetcafe5632013-03-23 16:11:31 -070014
Kent Overstreetc37511b2013-04-26 15:39:55 -070015#include <linux/blkdev.h>
Kent Overstreetcafe5632013-03-23 16:11:31 -070016#include <linux/buffer_head.h>
17#include <linux/debugfs.h>
18#include <linux/genhd.h>
Kent Overstreet79826c32013-07-10 18:31:58 -070019#include <linux/kthread.h>
Kent Overstreetcafe5632013-03-23 16:11:31 -070020#include <linux/module.h>
21#include <linux/random.h>
22#include <linux/reboot.h>
23#include <linux/sysfs.h>
24
25MODULE_LICENSE("GPL");
26MODULE_AUTHOR("Kent Overstreet <kent.overstreet@gmail.com>");
27
28static const char bcache_magic[] = {
29 0xc6, 0x85, 0x73, 0xf6, 0x4e, 0x1a, 0x45, 0xca,
30 0x82, 0x65, 0xf5, 0x7f, 0x48, 0xba, 0x6d, 0x81
31};
32
33static const char invalid_uuid[] = {
34 0xa0, 0x3e, 0xf8, 0xed, 0x3e, 0xe1, 0xb8, 0x78,
35 0xc8, 0x50, 0xfc, 0x5e, 0xcb, 0x16, 0xcd, 0x99
36};
37
38/* Default is -1; we skip past it for struct cached_dev's cache mode */
39const char * const bch_cache_modes[] = {
40 "default",
41 "writethrough",
42 "writeback",
43 "writearound",
44 "none",
45 NULL
46};
47
48struct uuid_entry_v0 {
49 uint8_t uuid[16];
50 uint8_t label[32];
51 uint32_t first_reg;
52 uint32_t last_reg;
53 uint32_t invalidated;
54 uint32_t pad;
55};
56
57static struct kobject *bcache_kobj;
58struct mutex bch_register_lock;
59LIST_HEAD(bch_cache_sets);
60static LIST_HEAD(uncached_devices);
61
62static int bcache_major, bcache_minor;
63static wait_queue_head_t unregister_wait;
64struct workqueue_struct *bcache_wq;
65
66#define BTREE_MAX_PAGES (256 * 1024 / PAGE_SIZE)
67
68static void bio_split_pool_free(struct bio_split_pool *p)
69{
Kent Overstreet8ef74792013-04-05 13:46:13 -070070 if (p->bio_split_hook)
71 mempool_destroy(p->bio_split_hook);
72
Kent Overstreetcafe5632013-03-23 16:11:31 -070073 if (p->bio_split)
74 bioset_free(p->bio_split);
Kent Overstreetcafe5632013-03-23 16:11:31 -070075}
76
77static int bio_split_pool_init(struct bio_split_pool *p)
78{
79 p->bio_split = bioset_create(4, 0);
80 if (!p->bio_split)
81 return -ENOMEM;
82
83 p->bio_split_hook = mempool_create_kmalloc_pool(4,
84 sizeof(struct bio_split_hook));
85 if (!p->bio_split_hook)
86 return -ENOMEM;
87
88 return 0;
89}
90
91/* Superblock */
92
93static const char *read_super(struct cache_sb *sb, struct block_device *bdev,
94 struct page **res)
95{
96 const char *err;
97 struct cache_sb *s;
98 struct buffer_head *bh = __bread(bdev, 1, SB_SIZE);
99 unsigned i;
100
101 if (!bh)
102 return "IO error";
103
104 s = (struct cache_sb *) bh->b_data;
105
106 sb->offset = le64_to_cpu(s->offset);
107 sb->version = le64_to_cpu(s->version);
108
109 memcpy(sb->magic, s->magic, 16);
110 memcpy(sb->uuid, s->uuid, 16);
111 memcpy(sb->set_uuid, s->set_uuid, 16);
112 memcpy(sb->label, s->label, SB_LABEL_SIZE);
113
114 sb->flags = le64_to_cpu(s->flags);
115 sb->seq = le64_to_cpu(s->seq);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700116 sb->last_mount = le32_to_cpu(s->last_mount);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700117 sb->first_bucket = le16_to_cpu(s->first_bucket);
118 sb->keys = le16_to_cpu(s->keys);
119
120 for (i = 0; i < SB_JOURNAL_BUCKETS; i++)
121 sb->d[i] = le64_to_cpu(s->d[i]);
122
123 pr_debug("read sb version %llu, flags %llu, seq %llu, journal size %u",
124 sb->version, sb->flags, sb->seq, sb->keys);
125
126 err = "Not a bcache superblock";
127 if (sb->offset != SB_SECTOR)
128 goto err;
129
130 if (memcmp(sb->magic, bcache_magic, 16))
131 goto err;
132
133 err = "Too many journal buckets";
134 if (sb->keys > SB_JOURNAL_BUCKETS)
135 goto err;
136
137 err = "Bad checksum";
138 if (s->csum != csum_set(s))
139 goto err;
140
141 err = "Bad UUID";
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600142 if (bch_is_zero(sb->uuid, 16))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700143 goto err;
144
Kent Overstreet8abb2a52013-04-23 21:51:48 -0700145 sb->block_size = le16_to_cpu(s->block_size);
146
147 err = "Superblock block size smaller than device block size";
148 if (sb->block_size << 9 < bdev_logical_block_size(bdev))
149 goto err;
150
Kent Overstreet29033812013-04-11 15:14:35 -0700151 switch (sb->version) {
152 case BCACHE_SB_VERSION_BDEV:
Kent Overstreet29033812013-04-11 15:14:35 -0700153 sb->data_offset = BDEV_DATA_START_DEFAULT;
154 break;
155 case BCACHE_SB_VERSION_BDEV_WITH_OFFSET:
Kent Overstreet29033812013-04-11 15:14:35 -0700156 sb->data_offset = le64_to_cpu(s->data_offset);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700157
Kent Overstreet29033812013-04-11 15:14:35 -0700158 err = "Bad data offset";
159 if (sb->data_offset < BDEV_DATA_START_DEFAULT)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700160 goto err;
161
Kent Overstreet29033812013-04-11 15:14:35 -0700162 break;
163 case BCACHE_SB_VERSION_CDEV:
164 case BCACHE_SB_VERSION_CDEV_WITH_UUID:
165 sb->nbuckets = le64_to_cpu(s->nbuckets);
166 sb->block_size = le16_to_cpu(s->block_size);
167 sb->bucket_size = le16_to_cpu(s->bucket_size);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700168
Kent Overstreet29033812013-04-11 15:14:35 -0700169 sb->nr_in_set = le16_to_cpu(s->nr_in_set);
170 sb->nr_this_dev = le16_to_cpu(s->nr_this_dev);
171
172 err = "Too many buckets";
173 if (sb->nbuckets > LONG_MAX)
174 goto err;
175
176 err = "Not enough buckets";
177 if (sb->nbuckets < 1 << 7)
178 goto err;
179
180 err = "Bad block/bucket size";
181 if (!is_power_of_2(sb->block_size) ||
182 sb->block_size > PAGE_SECTORS ||
183 !is_power_of_2(sb->bucket_size) ||
184 sb->bucket_size < PAGE_SECTORS)
185 goto err;
186
187 err = "Invalid superblock: device too small";
188 if (get_capacity(bdev->bd_disk) < sb->bucket_size * sb->nbuckets)
189 goto err;
190
191 err = "Bad UUID";
192 if (bch_is_zero(sb->set_uuid, 16))
193 goto err;
194
195 err = "Bad cache device number in set";
196 if (!sb->nr_in_set ||
197 sb->nr_in_set <= sb->nr_this_dev ||
198 sb->nr_in_set > MAX_CACHES_PER_SET)
199 goto err;
200
201 err = "Journal buckets not sequential";
202 for (i = 0; i < sb->keys; i++)
203 if (sb->d[i] != sb->first_bucket + i)
204 goto err;
205
206 err = "Too many journal buckets";
207 if (sb->first_bucket + sb->keys > sb->nbuckets)
208 goto err;
209
210 err = "Invalid superblock: first bucket comes before end of super";
211 if (sb->first_bucket * sb->bucket_size < 16)
212 goto err;
213
214 break;
215 default:
216 err = "Unsupported superblock version";
Kent Overstreetcafe5632013-03-23 16:11:31 -0700217 goto err;
Kent Overstreet29033812013-04-11 15:14:35 -0700218 }
219
Kent Overstreetcafe5632013-03-23 16:11:31 -0700220 sb->last_mount = get_seconds();
221 err = NULL;
222
223 get_page(bh->b_page);
224 *res = bh->b_page;
225err:
226 put_bh(bh);
227 return err;
228}
229
230static void write_bdev_super_endio(struct bio *bio, int error)
231{
232 struct cached_dev *dc = bio->bi_private;
233 /* XXX: error checking */
234
235 closure_put(&dc->sb_write.cl);
236}
237
238static void __write_super(struct cache_sb *sb, struct bio *bio)
239{
240 struct cache_sb *out = page_address(bio->bi_io_vec[0].bv_page);
241 unsigned i;
242
243 bio->bi_sector = SB_SECTOR;
244 bio->bi_rw = REQ_SYNC|REQ_META;
245 bio->bi_size = SB_SIZE;
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600246 bch_bio_map(bio, NULL);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700247
248 out->offset = cpu_to_le64(sb->offset);
249 out->version = cpu_to_le64(sb->version);
250
251 memcpy(out->uuid, sb->uuid, 16);
252 memcpy(out->set_uuid, sb->set_uuid, 16);
253 memcpy(out->label, sb->label, SB_LABEL_SIZE);
254
255 out->flags = cpu_to_le64(sb->flags);
256 out->seq = cpu_to_le64(sb->seq);
257
258 out->last_mount = cpu_to_le32(sb->last_mount);
259 out->first_bucket = cpu_to_le16(sb->first_bucket);
260 out->keys = cpu_to_le16(sb->keys);
261
262 for (i = 0; i < sb->keys; i++)
263 out->d[i] = cpu_to_le64(sb->d[i]);
264
265 out->csum = csum_set(out);
266
267 pr_debug("ver %llu, flags %llu, seq %llu",
268 sb->version, sb->flags, sb->seq);
269
270 submit_bio(REQ_WRITE, bio);
271}
272
273void bch_write_bdev_super(struct cached_dev *dc, struct closure *parent)
274{
275 struct closure *cl = &dc->sb_write.cl;
276 struct bio *bio = &dc->sb_bio;
277
278 closure_lock(&dc->sb_write, parent);
279
280 bio_reset(bio);
281 bio->bi_bdev = dc->bdev;
282 bio->bi_end_io = write_bdev_super_endio;
283 bio->bi_private = dc;
284
285 closure_get(cl);
286 __write_super(&dc->sb, bio);
287
288 closure_return(cl);
289}
290
291static void write_super_endio(struct bio *bio, int error)
292{
293 struct cache *ca = bio->bi_private;
294
295 bch_count_io_errors(ca, error, "writing superblock");
296 closure_put(&ca->set->sb_write.cl);
297}
298
299void bcache_write_super(struct cache_set *c)
300{
301 struct closure *cl = &c->sb_write.cl;
302 struct cache *ca;
303 unsigned i;
304
305 closure_lock(&c->sb_write, &c->cl);
306
307 c->sb.seq++;
308
309 for_each_cache(ca, c, i) {
310 struct bio *bio = &ca->sb_bio;
311
Kent Overstreet29033812013-04-11 15:14:35 -0700312 ca->sb.version = BCACHE_SB_VERSION_CDEV_WITH_UUID;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700313 ca->sb.seq = c->sb.seq;
314 ca->sb.last_mount = c->sb.last_mount;
315
316 SET_CACHE_SYNC(&ca->sb, CACHE_SYNC(&c->sb));
317
318 bio_reset(bio);
319 bio->bi_bdev = ca->bdev;
320 bio->bi_end_io = write_super_endio;
321 bio->bi_private = ca;
322
323 closure_get(cl);
324 __write_super(&ca->sb, bio);
325 }
326
327 closure_return(cl);
328}
329
330/* UUID io */
331
332static void uuid_endio(struct bio *bio, int error)
333{
334 struct closure *cl = bio->bi_private;
335 struct cache_set *c = container_of(cl, struct cache_set, uuid_write.cl);
336
337 cache_set_err_on(error, c, "accessing uuids");
338 bch_bbio_free(bio, c);
339 closure_put(cl);
340}
341
342static void uuid_io(struct cache_set *c, unsigned long rw,
343 struct bkey *k, struct closure *parent)
344{
345 struct closure *cl = &c->uuid_write.cl;
346 struct uuid_entry *u;
347 unsigned i;
Kent Overstreet85b14922013-05-14 20:33:16 -0700348 char buf[80];
Kent Overstreetcafe5632013-03-23 16:11:31 -0700349
350 BUG_ON(!parent);
351 closure_lock(&c->uuid_write, parent);
352
353 for (i = 0; i < KEY_PTRS(k); i++) {
354 struct bio *bio = bch_bbio_alloc(c);
355
356 bio->bi_rw = REQ_SYNC|REQ_META|rw;
357 bio->bi_size = KEY_SIZE(k) << 9;
358
359 bio->bi_end_io = uuid_endio;
360 bio->bi_private = cl;
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600361 bch_bio_map(bio, c->uuids);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700362
363 bch_submit_bbio(bio, c, k, i);
364
365 if (!(rw & WRITE))
366 break;
367 }
368
Kent Overstreet85b14922013-05-14 20:33:16 -0700369 bch_bkey_to_text(buf, sizeof(buf), k);
370 pr_debug("%s UUIDs at %s", rw & REQ_WRITE ? "wrote" : "read", buf);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700371
372 for (u = c->uuids; u < c->uuids + c->nr_uuids; u++)
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600373 if (!bch_is_zero(u->uuid, 16))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700374 pr_debug("Slot %zi: %pU: %s: 1st: %u last: %u inv: %u",
375 u - c->uuids, u->uuid, u->label,
376 u->first_reg, u->last_reg, u->invalidated);
377
378 closure_return(cl);
379}
380
381static char *uuid_read(struct cache_set *c, struct jset *j, struct closure *cl)
382{
383 struct bkey *k = &j->uuid_bucket;
384
385 if (__bch_ptr_invalid(c, 1, k))
386 return "bad uuid pointer";
387
388 bkey_copy(&c->uuid_bucket, k);
389 uuid_io(c, READ_SYNC, k, cl);
390
391 if (j->version < BCACHE_JSET_VERSION_UUIDv1) {
392 struct uuid_entry_v0 *u0 = (void *) c->uuids;
393 struct uuid_entry *u1 = (void *) c->uuids;
394 int i;
395
396 closure_sync(cl);
397
398 /*
399 * Since the new uuid entry is bigger than the old, we have to
400 * convert starting at the highest memory address and work down
401 * in order to do it in place
402 */
403
404 for (i = c->nr_uuids - 1;
405 i >= 0;
406 --i) {
407 memcpy(u1[i].uuid, u0[i].uuid, 16);
408 memcpy(u1[i].label, u0[i].label, 32);
409
410 u1[i].first_reg = u0[i].first_reg;
411 u1[i].last_reg = u0[i].last_reg;
412 u1[i].invalidated = u0[i].invalidated;
413
414 u1[i].flags = 0;
415 u1[i].sectors = 0;
416 }
417 }
418
419 return NULL;
420}
421
422static int __uuid_write(struct cache_set *c)
423{
424 BKEY_PADDED(key) k;
425 struct closure cl;
426 closure_init_stack(&cl);
427
428 lockdep_assert_held(&bch_register_lock);
429
Kent Overstreet35fcd842013-07-24 17:29:09 -0700430 if (bch_bucket_alloc_set(c, WATERMARK_METADATA, &k.key, 1, true))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700431 return 1;
432
433 SET_KEY_SIZE(&k.key, c->sb.bucket_size);
434 uuid_io(c, REQ_WRITE, &k.key, &cl);
435 closure_sync(&cl);
436
437 bkey_copy(&c->uuid_bucket, &k.key);
438 __bkey_put(c, &k.key);
439 return 0;
440}
441
442int bch_uuid_write(struct cache_set *c)
443{
444 int ret = __uuid_write(c);
445
446 if (!ret)
447 bch_journal_meta(c, NULL);
448
449 return ret;
450}
451
452static struct uuid_entry *uuid_find(struct cache_set *c, const char *uuid)
453{
454 struct uuid_entry *u;
455
456 for (u = c->uuids;
457 u < c->uuids + c->nr_uuids; u++)
458 if (!memcmp(u->uuid, uuid, 16))
459 return u;
460
461 return NULL;
462}
463
464static struct uuid_entry *uuid_find_empty(struct cache_set *c)
465{
466 static const char zero_uuid[16] = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0";
467 return uuid_find(c, zero_uuid);
468}
469
470/*
471 * Bucket priorities/gens:
472 *
473 * For each bucket, we store on disk its
474 * 8 bit gen
475 * 16 bit priority
476 *
477 * See alloc.c for an explanation of the gen. The priority is used to implement
478 * lru (and in the future other) cache replacement policies; for most purposes
479 * it's just an opaque integer.
480 *
481 * The gens and the priorities don't have a whole lot to do with each other, and
482 * it's actually the gens that must be written out at specific times - it's no
483 * big deal if the priorities don't get written, if we lose them we just reuse
484 * buckets in suboptimal order.
485 *
486 * On disk they're stored in a packed array, and in as many buckets are required
487 * to fit them all. The buckets we use to store them form a list; the journal
488 * header points to the first bucket, the first bucket points to the second
489 * bucket, et cetera.
490 *
491 * This code is used by the allocation code; periodically (whenever it runs out
492 * of buckets to allocate from) the allocation code will invalidate some
493 * buckets, but it can't use those buckets until their new gens are safely on
494 * disk.
495 */
496
497static void prio_endio(struct bio *bio, int error)
498{
499 struct cache *ca = bio->bi_private;
500
501 cache_set_err_on(error, ca->set, "accessing priorities");
502 bch_bbio_free(bio, ca->set);
503 closure_put(&ca->prio);
504}
505
506static void prio_io(struct cache *ca, uint64_t bucket, unsigned long rw)
507{
508 struct closure *cl = &ca->prio;
509 struct bio *bio = bch_bbio_alloc(ca->set);
510
511 closure_init_stack(cl);
512
513 bio->bi_sector = bucket * ca->sb.bucket_size;
514 bio->bi_bdev = ca->bdev;
515 bio->bi_rw = REQ_SYNC|REQ_META|rw;
516 bio->bi_size = bucket_bytes(ca);
517
518 bio->bi_end_io = prio_endio;
519 bio->bi_private = ca;
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600520 bch_bio_map(bio, ca->disk_buckets);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700521
522 closure_bio_submit(bio, &ca->prio, ca);
523 closure_sync(cl);
524}
525
526#define buckets_free(c) "free %zu, free_inc %zu, unused %zu", \
527 fifo_used(&c->free), fifo_used(&c->free_inc), fifo_used(&c->unused)
528
529void bch_prio_write(struct cache *ca)
530{
531 int i;
532 struct bucket *b;
533 struct closure cl;
534
535 closure_init_stack(&cl);
536
537 lockdep_assert_held(&ca->set->bucket_lock);
538
539 for (b = ca->buckets;
540 b < ca->buckets + ca->sb.nbuckets; b++)
541 b->disk_gen = b->gen;
542
543 ca->disk_buckets->seq++;
544
545 atomic_long_add(ca->sb.bucket_size * prio_buckets(ca),
546 &ca->meta_sectors_written);
547
548 pr_debug("free %zu, free_inc %zu, unused %zu", fifo_used(&ca->free),
549 fifo_used(&ca->free_inc), fifo_used(&ca->unused));
Kent Overstreetcafe5632013-03-23 16:11:31 -0700550
551 for (i = prio_buckets(ca) - 1; i >= 0; --i) {
552 long bucket;
553 struct prio_set *p = ca->disk_buckets;
Kent Overstreetb1a67b02013-03-25 11:46:44 -0700554 struct bucket_disk *d = p->data;
555 struct bucket_disk *end = d + prios_per_bucket(ca);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700556
557 for (b = ca->buckets + i * prios_per_bucket(ca);
558 b < ca->buckets + ca->sb.nbuckets && d < end;
559 b++, d++) {
560 d->prio = cpu_to_le16(b->prio);
561 d->gen = b->gen;
562 }
563
564 p->next_bucket = ca->prio_buckets[i + 1];
565 p->magic = pset_magic(ca);
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600566 p->csum = bch_crc64(&p->magic, bucket_bytes(ca) - 8);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700567
Kent Overstreet35fcd842013-07-24 17:29:09 -0700568 bucket = bch_bucket_alloc(ca, WATERMARK_PRIO, true);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700569 BUG_ON(bucket == -1);
570
571 mutex_unlock(&ca->set->bucket_lock);
572 prio_io(ca, bucket, REQ_WRITE);
573 mutex_lock(&ca->set->bucket_lock);
574
575 ca->prio_buckets[i] = bucket;
576 atomic_dec_bug(&ca->buckets[bucket].pin);
577 }
578
579 mutex_unlock(&ca->set->bucket_lock);
580
581 bch_journal_meta(ca->set, &cl);
582 closure_sync(&cl);
583
584 mutex_lock(&ca->set->bucket_lock);
585
586 ca->need_save_prio = 0;
587
588 /*
589 * Don't want the old priorities to get garbage collected until after we
590 * finish writing the new ones, and they're journalled
591 */
592 for (i = 0; i < prio_buckets(ca); i++)
593 ca->prio_last_buckets[i] = ca->prio_buckets[i];
594}
595
596static void prio_read(struct cache *ca, uint64_t bucket)
597{
598 struct prio_set *p = ca->disk_buckets;
599 struct bucket_disk *d = p->data + prios_per_bucket(ca), *end = d;
600 struct bucket *b;
601 unsigned bucket_nr = 0;
602
603 for (b = ca->buckets;
604 b < ca->buckets + ca->sb.nbuckets;
605 b++, d++) {
606 if (d == end) {
607 ca->prio_buckets[bucket_nr] = bucket;
608 ca->prio_last_buckets[bucket_nr] = bucket;
609 bucket_nr++;
610
611 prio_io(ca, bucket, READ_SYNC);
612
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600613 if (p->csum != bch_crc64(&p->magic, bucket_bytes(ca) - 8))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700614 pr_warn("bad csum reading priorities");
615
616 if (p->magic != pset_magic(ca))
617 pr_warn("bad magic reading priorities");
618
619 bucket = p->next_bucket;
620 d = p->data;
621 }
622
623 b->prio = le16_to_cpu(d->prio);
624 b->gen = b->disk_gen = b->last_gc = b->gc_gen = d->gen;
625 }
626}
627
628/* Bcache device */
629
630static int open_dev(struct block_device *b, fmode_t mode)
631{
632 struct bcache_device *d = b->bd_disk->private_data;
633 if (atomic_read(&d->closing))
634 return -ENXIO;
635
636 closure_get(&d->cl);
637 return 0;
638}
639
Emil Goode867e1162013-05-09 22:39:26 +0200640static void release_dev(struct gendisk *b, fmode_t mode)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700641{
642 struct bcache_device *d = b->private_data;
643 closure_put(&d->cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700644}
645
646static int ioctl_dev(struct block_device *b, fmode_t mode,
647 unsigned int cmd, unsigned long arg)
648{
649 struct bcache_device *d = b->bd_disk->private_data;
650 return d->ioctl(d, mode, cmd, arg);
651}
652
653static const struct block_device_operations bcache_ops = {
654 .open = open_dev,
655 .release = release_dev,
656 .ioctl = ioctl_dev,
657 .owner = THIS_MODULE,
658};
659
660void bcache_device_stop(struct bcache_device *d)
661{
662 if (!atomic_xchg(&d->closing, 1))
663 closure_queue(&d->cl);
664}
665
Kent Overstreetee668502013-02-01 07:29:41 -0800666static void bcache_device_unlink(struct bcache_device *d)
667{
668 unsigned i;
669 struct cache *ca;
670
671 sysfs_remove_link(&d->c->kobj, d->name);
672 sysfs_remove_link(&d->kobj, "cache");
673
674 for_each_cache(ca, d->c, i)
675 bd_unlink_disk_holder(ca->bdev, d->disk);
676}
677
678static void bcache_device_link(struct bcache_device *d, struct cache_set *c,
679 const char *name)
680{
681 unsigned i;
682 struct cache *ca;
683
684 for_each_cache(ca, d->c, i)
685 bd_link_disk_holder(ca->bdev, d->disk);
686
687 snprintf(d->name, BCACHEDEVNAME_SIZE,
688 "%s%u", name, d->id);
689
690 WARN(sysfs_create_link(&d->kobj, &c->kobj, "cache") ||
691 sysfs_create_link(&c->kobj, &d->kobj, d->name),
692 "Couldn't create device <-> cache set symlinks");
693}
694
Kent Overstreetcafe5632013-03-23 16:11:31 -0700695static void bcache_device_detach(struct bcache_device *d)
696{
697 lockdep_assert_held(&bch_register_lock);
698
699 if (atomic_read(&d->detaching)) {
700 struct uuid_entry *u = d->c->uuids + d->id;
701
702 SET_UUID_FLASH_ONLY(u, 0);
703 memcpy(u->uuid, invalid_uuid, 16);
704 u->invalidated = cpu_to_le32(get_seconds());
705 bch_uuid_write(d->c);
706
707 atomic_set(&d->detaching, 0);
708 }
709
Kent Overstreetc9502ea2013-07-10 21:25:02 -0700710 if (!d->flush_done)
711 bcache_device_unlink(d);
Kent Overstreetee668502013-02-01 07:29:41 -0800712
Kent Overstreetcafe5632013-03-23 16:11:31 -0700713 d->c->devices[d->id] = NULL;
714 closure_put(&d->c->caching);
715 d->c = NULL;
716}
717
718static void bcache_device_attach(struct bcache_device *d, struct cache_set *c,
719 unsigned id)
720{
721 BUG_ON(test_bit(CACHE_SET_STOPPING, &c->flags));
722
723 d->id = id;
724 d->c = c;
725 c->devices[id] = d;
726
727 closure_get(&c->caching);
728}
729
Kent Overstreetcafe5632013-03-23 16:11:31 -0700730static void bcache_device_free(struct bcache_device *d)
731{
732 lockdep_assert_held(&bch_register_lock);
733
734 pr_info("%s stopped", d->disk->disk_name);
735
736 if (d->c)
737 bcache_device_detach(d);
Kent Overstreetf59fce82013-05-15 00:11:26 -0700738 if (d->disk && d->disk->flags & GENHD_FL_UP)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700739 del_gendisk(d->disk);
740 if (d->disk && d->disk->queue)
741 blk_cleanup_queue(d->disk->queue);
742 if (d->disk)
743 put_disk(d->disk);
744
745 bio_split_pool_free(&d->bio_split_hook);
746 if (d->unaligned_bvec)
747 mempool_destroy(d->unaligned_bvec);
748 if (d->bio_split)
749 bioset_free(d->bio_split);
Kent Overstreet279afba2013-06-05 06:21:07 -0700750 if (is_vmalloc_addr(d->stripe_sectors_dirty))
751 vfree(d->stripe_sectors_dirty);
752 else
753 kfree(d->stripe_sectors_dirty);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700754
755 closure_debug_destroy(&d->cl);
756}
757
Kent Overstreet279afba2013-06-05 06:21:07 -0700758static int bcache_device_init(struct bcache_device *d, unsigned block_size,
759 sector_t sectors)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700760{
761 struct request_queue *q;
Kent Overstreet279afba2013-06-05 06:21:07 -0700762 size_t n;
763
Kent Overstreet2d679fc2013-08-17 02:13:15 -0700764 if (!d->stripe_size)
765 d->stripe_size = 1 << 31;
Kent Overstreet279afba2013-06-05 06:21:07 -0700766
Kent Overstreet2d679fc2013-08-17 02:13:15 -0700767 d->nr_stripes = DIV_ROUND_UP_ULL(sectors, d->stripe_size);
Kent Overstreet279afba2013-06-05 06:21:07 -0700768
769 if (!d->nr_stripes || d->nr_stripes > SIZE_MAX / sizeof(atomic_t))
770 return -ENOMEM;
771
772 n = d->nr_stripes * sizeof(atomic_t);
773 d->stripe_sectors_dirty = n < PAGE_SIZE << 6
774 ? kzalloc(n, GFP_KERNEL)
775 : vzalloc(n);
776 if (!d->stripe_sectors_dirty)
777 return -ENOMEM;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700778
779 if (!(d->bio_split = bioset_create(4, offsetof(struct bbio, bio))) ||
780 !(d->unaligned_bvec = mempool_create_kmalloc_pool(1,
781 sizeof(struct bio_vec) * BIO_MAX_PAGES)) ||
Kent Overstreetf59fce82013-05-15 00:11:26 -0700782 bio_split_pool_init(&d->bio_split_hook) ||
783 !(d->disk = alloc_disk(1)) ||
784 !(q = blk_alloc_queue(GFP_KERNEL)))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700785 return -ENOMEM;
786
Kent Overstreet279afba2013-06-05 06:21:07 -0700787 set_capacity(d->disk, sectors);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700788 snprintf(d->disk->disk_name, DISK_NAME_LEN, "bcache%i", bcache_minor);
789
790 d->disk->major = bcache_major;
791 d->disk->first_minor = bcache_minor++;
792 d->disk->fops = &bcache_ops;
793 d->disk->private_data = d;
794
Kent Overstreetcafe5632013-03-23 16:11:31 -0700795 blk_queue_make_request(q, NULL);
796 d->disk->queue = q;
797 q->queuedata = d;
798 q->backing_dev_info.congested_data = d;
799 q->limits.max_hw_sectors = UINT_MAX;
800 q->limits.max_sectors = UINT_MAX;
801 q->limits.max_segment_size = UINT_MAX;
802 q->limits.max_segments = BIO_MAX_PAGES;
803 q->limits.max_discard_sectors = UINT_MAX;
804 q->limits.io_min = block_size;
805 q->limits.logical_block_size = block_size;
806 q->limits.physical_block_size = block_size;
807 set_bit(QUEUE_FLAG_NONROT, &d->disk->queue->queue_flags);
808 set_bit(QUEUE_FLAG_DISCARD, &d->disk->queue->queue_flags);
809
Kent Overstreet54d12f22013-07-10 18:44:40 -0700810 blk_queue_flush(q, REQ_FLUSH|REQ_FUA);
811
Kent Overstreetcafe5632013-03-23 16:11:31 -0700812 return 0;
813}
814
815/* Cached device */
816
817static void calc_cached_dev_sectors(struct cache_set *c)
818{
819 uint64_t sectors = 0;
820 struct cached_dev *dc;
821
822 list_for_each_entry(dc, &c->cached_devs, list)
823 sectors += bdev_sectors(dc->bdev);
824
825 c->cached_dev_sectors = sectors;
826}
827
828void bch_cached_dev_run(struct cached_dev *dc)
829{
830 struct bcache_device *d = &dc->disk;
Gabriel de Perthuisab9e1402013-06-09 00:54:48 +0200831 char buf[SB_LABEL_SIZE + 1];
Gabriel de Perthuisa25c32b2013-06-07 23:27:01 +0200832 char *env[] = {
833 "DRIVER=bcache",
834 kasprintf(GFP_KERNEL, "CACHED_UUID=%pU", dc->sb.uuid),
Gabriel de Perthuisab9e1402013-06-09 00:54:48 +0200835 NULL,
836 NULL,
Gabriel de Perthuisa25c32b2013-06-07 23:27:01 +0200837 };
Kent Overstreetcafe5632013-03-23 16:11:31 -0700838
Gabriel de Perthuisab9e1402013-06-09 00:54:48 +0200839 memcpy(buf, dc->sb.label, SB_LABEL_SIZE);
840 buf[SB_LABEL_SIZE] = '\0';
841 env[2] = kasprintf(GFP_KERNEL, "CACHED_LABEL=%s", buf);
842
Kent Overstreetcafe5632013-03-23 16:11:31 -0700843 if (atomic_xchg(&dc->running, 1))
844 return;
845
846 if (!d->c &&
847 BDEV_STATE(&dc->sb) != BDEV_STATE_NONE) {
848 struct closure cl;
849 closure_init_stack(&cl);
850
851 SET_BDEV_STATE(&dc->sb, BDEV_STATE_STALE);
852 bch_write_bdev_super(dc, &cl);
853 closure_sync(&cl);
854 }
855
856 add_disk(d->disk);
Kent Overstreetee668502013-02-01 07:29:41 -0800857 bd_link_disk_holder(dc->bdev, dc->disk.disk);
Gabriel de Perthuisa25c32b2013-06-07 23:27:01 +0200858 /* won't show up in the uevent file, use udevadm monitor -e instead
859 * only class / kset properties are persistent */
Kent Overstreetcafe5632013-03-23 16:11:31 -0700860 kobject_uevent_env(&disk_to_dev(d->disk)->kobj, KOBJ_CHANGE, env);
Gabriel de Perthuisa25c32b2013-06-07 23:27:01 +0200861 kfree(env[1]);
Gabriel de Perthuisab9e1402013-06-09 00:54:48 +0200862 kfree(env[2]);
Gabriel de Perthuisa25c32b2013-06-07 23:27:01 +0200863
Kent Overstreetcafe5632013-03-23 16:11:31 -0700864 if (sysfs_create_link(&d->kobj, &disk_to_dev(d->disk)->kobj, "dev") ||
865 sysfs_create_link(&disk_to_dev(d->disk)->kobj, &d->kobj, "bcache"))
866 pr_debug("error creating sysfs link");
867}
868
869static void cached_dev_detach_finish(struct work_struct *w)
870{
871 struct cached_dev *dc = container_of(w, struct cached_dev, detach);
872 char buf[BDEVNAME_SIZE];
873 struct closure cl;
874 closure_init_stack(&cl);
875
876 BUG_ON(!atomic_read(&dc->disk.detaching));
877 BUG_ON(atomic_read(&dc->count));
878
Kent Overstreetcafe5632013-03-23 16:11:31 -0700879 mutex_lock(&bch_register_lock);
880
881 memset(&dc->sb.set_uuid, 0, 16);
882 SET_BDEV_STATE(&dc->sb, BDEV_STATE_NONE);
883
884 bch_write_bdev_super(dc, &cl);
885 closure_sync(&cl);
886
887 bcache_device_detach(&dc->disk);
888 list_move(&dc->list, &uncached_devices);
889
890 mutex_unlock(&bch_register_lock);
891
892 pr_info("Caching disabled for %s", bdevname(dc->bdev, buf));
893
894 /* Drop ref we took in cached_dev_detach() */
895 closure_put(&dc->disk.cl);
896}
897
898void bch_cached_dev_detach(struct cached_dev *dc)
899{
900 lockdep_assert_held(&bch_register_lock);
901
902 if (atomic_read(&dc->disk.closing))
903 return;
904
905 if (atomic_xchg(&dc->disk.detaching, 1))
906 return;
907
908 /*
909 * Block the device from being closed and freed until we're finished
910 * detaching
911 */
912 closure_get(&dc->disk.cl);
913
914 bch_writeback_queue(dc);
915 cached_dev_put(dc);
916}
917
918int bch_cached_dev_attach(struct cached_dev *dc, struct cache_set *c)
919{
920 uint32_t rtime = cpu_to_le32(get_seconds());
921 struct uuid_entry *u;
922 char buf[BDEVNAME_SIZE];
923
924 bdevname(dc->bdev, buf);
925
926 if (memcmp(dc->sb.set_uuid, c->sb.set_uuid, 16))
927 return -ENOENT;
928
929 if (dc->disk.c) {
930 pr_err("Can't attach %s: already attached", buf);
931 return -EINVAL;
932 }
933
934 if (test_bit(CACHE_SET_STOPPING, &c->flags)) {
935 pr_err("Can't attach %s: shutting down", buf);
936 return -EINVAL;
937 }
938
939 if (dc->sb.block_size < c->sb.block_size) {
940 /* Will die */
Kent Overstreetb1a67b02013-03-25 11:46:44 -0700941 pr_err("Couldn't attach %s: block size less than set's block size",
942 buf);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700943 return -EINVAL;
944 }
945
946 u = uuid_find(c, dc->sb.uuid);
947
948 if (u &&
949 (BDEV_STATE(&dc->sb) == BDEV_STATE_STALE ||
950 BDEV_STATE(&dc->sb) == BDEV_STATE_NONE)) {
951 memcpy(u->uuid, invalid_uuid, 16);
952 u->invalidated = cpu_to_le32(get_seconds());
953 u = NULL;
954 }
955
956 if (!u) {
957 if (BDEV_STATE(&dc->sb) == BDEV_STATE_DIRTY) {
958 pr_err("Couldn't find uuid for %s in set", buf);
959 return -ENOENT;
960 }
961
962 u = uuid_find_empty(c);
963 if (!u) {
964 pr_err("Not caching %s, no room for UUID", buf);
965 return -EINVAL;
966 }
967 }
968
969 /* Deadlocks since we're called via sysfs...
970 sysfs_remove_file(&dc->kobj, &sysfs_attach);
971 */
972
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600973 if (bch_is_zero(u->uuid, 16)) {
Kent Overstreetcafe5632013-03-23 16:11:31 -0700974 struct closure cl;
975 closure_init_stack(&cl);
976
977 memcpy(u->uuid, dc->sb.uuid, 16);
978 memcpy(u->label, dc->sb.label, SB_LABEL_SIZE);
979 u->first_reg = u->last_reg = rtime;
980 bch_uuid_write(c);
981
982 memcpy(dc->sb.set_uuid, c->sb.set_uuid, 16);
983 SET_BDEV_STATE(&dc->sb, BDEV_STATE_CLEAN);
984
985 bch_write_bdev_super(dc, &cl);
986 closure_sync(&cl);
987 } else {
988 u->last_reg = rtime;
989 bch_uuid_write(c);
990 }
991
992 bcache_device_attach(&dc->disk, c, u - c->uuids);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700993 list_move(&dc->list, &c->cached_devs);
994 calc_cached_dev_sectors(c);
995
996 smp_wmb();
997 /*
998 * dc->c must be set before dc->count != 0 - paired with the mb in
999 * cached_dev_get()
1000 */
1001 atomic_set(&dc->count, 1);
1002
1003 if (BDEV_STATE(&dc->sb) == BDEV_STATE_DIRTY) {
Kent Overstreet444fc0b2013-05-11 17:07:26 -07001004 bch_sectors_dirty_init(dc);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001005 atomic_set(&dc->has_dirty, 1);
1006 atomic_inc(&dc->count);
1007 bch_writeback_queue(dc);
1008 }
1009
1010 bch_cached_dev_run(dc);
Kent Overstreetee668502013-02-01 07:29:41 -08001011 bcache_device_link(&dc->disk, c, "bdev");
Kent Overstreetcafe5632013-03-23 16:11:31 -07001012
1013 pr_info("Caching %s as %s on set %pU",
1014 bdevname(dc->bdev, buf), dc->disk.disk->disk_name,
1015 dc->disk.c->sb.set_uuid);
1016 return 0;
1017}
1018
1019void bch_cached_dev_release(struct kobject *kobj)
1020{
1021 struct cached_dev *dc = container_of(kobj, struct cached_dev,
1022 disk.kobj);
1023 kfree(dc);
1024 module_put(THIS_MODULE);
1025}
1026
1027static void cached_dev_free(struct closure *cl)
1028{
1029 struct cached_dev *dc = container_of(cl, struct cached_dev, disk.cl);
1030
1031 cancel_delayed_work_sync(&dc->writeback_rate_update);
Kent Overstreet5e6926d2013-07-24 17:50:06 -07001032 kthread_stop(dc->writeback_thread);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001033
1034 mutex_lock(&bch_register_lock);
1035
Kent Overstreetf59fce82013-05-15 00:11:26 -07001036 if (atomic_read(&dc->running))
1037 bd_unlink_disk_holder(dc->bdev, dc->disk.disk);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001038 bcache_device_free(&dc->disk);
1039 list_del(&dc->list);
1040
1041 mutex_unlock(&bch_register_lock);
1042
1043 if (!IS_ERR_OR_NULL(dc->bdev)) {
Kent Overstreetf59fce82013-05-15 00:11:26 -07001044 if (dc->bdev->bd_disk)
1045 blk_sync_queue(bdev_get_queue(dc->bdev));
1046
Kent Overstreetcafe5632013-03-23 16:11:31 -07001047 blkdev_put(dc->bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
1048 }
1049
1050 wake_up(&unregister_wait);
1051
1052 kobject_put(&dc->disk.kobj);
1053}
1054
1055static void cached_dev_flush(struct closure *cl)
1056{
1057 struct cached_dev *dc = container_of(cl, struct cached_dev, disk.cl);
1058 struct bcache_device *d = &dc->disk;
1059
Kent Overstreetc9502ea2013-07-10 21:25:02 -07001060 mutex_lock(&bch_register_lock);
1061 d->flush_done = 1;
1062
1063 if (d->c)
1064 bcache_device_unlink(d);
1065
1066 mutex_unlock(&bch_register_lock);
1067
Kent Overstreetcafe5632013-03-23 16:11:31 -07001068 bch_cache_accounting_destroy(&dc->accounting);
1069 kobject_del(&d->kobj);
1070
1071 continue_at(cl, cached_dev_free, system_wq);
1072}
1073
1074static int cached_dev_init(struct cached_dev *dc, unsigned block_size)
1075{
Kent Overstreetf59fce82013-05-15 00:11:26 -07001076 int ret;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001077 struct io *io;
Kent Overstreetf59fce82013-05-15 00:11:26 -07001078 struct request_queue *q = bdev_get_queue(dc->bdev);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001079
1080 __module_get(THIS_MODULE);
1081 INIT_LIST_HEAD(&dc->list);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001082 closure_init(&dc->disk.cl, NULL);
1083 set_closure_fn(&dc->disk.cl, cached_dev_flush, system_wq);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001084 kobject_init(&dc->disk.kobj, &bch_cached_dev_ktype);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001085 INIT_WORK(&dc->detach, cached_dev_detach_finish);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001086 closure_init_unlocked(&dc->sb_write);
1087 INIT_LIST_HEAD(&dc->io_lru);
1088 spin_lock_init(&dc->io_lock);
1089 bch_cache_accounting_init(&dc->accounting, &dc->disk.cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001090
1091 dc->sequential_merge = true;
1092 dc->sequential_cutoff = 4 << 20;
1093
Kent Overstreetcafe5632013-03-23 16:11:31 -07001094 for (io = dc->io; io < dc->io + RECENT_IO; io++) {
1095 list_add(&io->lru, &dc->io_lru);
1096 hlist_add_head(&io->hash, dc->io_hash + RECENT_IO);
1097 }
1098
Kent Overstreet279afba2013-06-05 06:21:07 -07001099 ret = bcache_device_init(&dc->disk, block_size,
1100 dc->bdev->bd_part->nr_sects - dc->sb.data_offset);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001101 if (ret)
1102 return ret;
1103
1104 set_capacity(dc->disk.disk,
1105 dc->bdev->bd_part->nr_sects - dc->sb.data_offset);
1106
1107 dc->disk.disk->queue->backing_dev_info.ra_pages =
1108 max(dc->disk.disk->queue->backing_dev_info.ra_pages,
1109 q->backing_dev_info.ra_pages);
1110
1111 bch_cached_dev_request_init(dc);
1112 bch_cached_dev_writeback_init(dc);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001113 return 0;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001114}
1115
1116/* Cached device - bcache superblock */
1117
Kent Overstreetf59fce82013-05-15 00:11:26 -07001118static void register_bdev(struct cache_sb *sb, struct page *sb_page,
Kent Overstreetcafe5632013-03-23 16:11:31 -07001119 struct block_device *bdev,
1120 struct cached_dev *dc)
1121{
1122 char name[BDEVNAME_SIZE];
1123 const char *err = "cannot allocate memory";
Kent Overstreetcafe5632013-03-23 16:11:31 -07001124 struct cache_set *c;
1125
Kent Overstreetcafe5632013-03-23 16:11:31 -07001126 memcpy(&dc->sb, sb, sizeof(struct cache_sb));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001127 dc->bdev = bdev;
1128 dc->bdev->bd_holder = dc;
1129
Kent Overstreetf59fce82013-05-15 00:11:26 -07001130 bio_init(&dc->sb_bio);
1131 dc->sb_bio.bi_max_vecs = 1;
1132 dc->sb_bio.bi_io_vec = dc->sb_bio.bi_inline_vecs;
1133 dc->sb_bio.bi_io_vec[0].bv_page = sb_page;
1134 get_page(sb_page);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001135
Kent Overstreetf59fce82013-05-15 00:11:26 -07001136 if (cached_dev_init(dc, sb->block_size << 9))
1137 goto err;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001138
1139 err = "error creating kobject";
1140 if (kobject_add(&dc->disk.kobj, &part_to_dev(bdev->bd_part)->kobj,
1141 "bcache"))
1142 goto err;
1143 if (bch_cache_accounting_add_kobjs(&dc->accounting, &dc->disk.kobj))
1144 goto err;
1145
Kent Overstreetf59fce82013-05-15 00:11:26 -07001146 pr_info("registered backing device %s", bdevname(bdev, name));
1147
Kent Overstreetcafe5632013-03-23 16:11:31 -07001148 list_add(&dc->list, &uncached_devices);
1149 list_for_each_entry(c, &bch_cache_sets, list)
1150 bch_cached_dev_attach(dc, c);
1151
1152 if (BDEV_STATE(&dc->sb) == BDEV_STATE_NONE ||
1153 BDEV_STATE(&dc->sb) == BDEV_STATE_STALE)
1154 bch_cached_dev_run(dc);
1155
Kent Overstreetf59fce82013-05-15 00:11:26 -07001156 return;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001157err:
Kent Overstreetcafe5632013-03-23 16:11:31 -07001158 pr_notice("error opening %s: %s", bdevname(bdev, name), err);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001159 bcache_device_stop(&dc->disk);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001160}
1161
1162/* Flash only volumes */
1163
1164void bch_flash_dev_release(struct kobject *kobj)
1165{
1166 struct bcache_device *d = container_of(kobj, struct bcache_device,
1167 kobj);
1168 kfree(d);
1169}
1170
1171static void flash_dev_free(struct closure *cl)
1172{
1173 struct bcache_device *d = container_of(cl, struct bcache_device, cl);
1174 bcache_device_free(d);
1175 kobject_put(&d->kobj);
1176}
1177
1178static void flash_dev_flush(struct closure *cl)
1179{
1180 struct bcache_device *d = container_of(cl, struct bcache_device, cl);
1181
Kent Overstreetee668502013-02-01 07:29:41 -08001182 bcache_device_unlink(d);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001183 kobject_del(&d->kobj);
1184 continue_at(cl, flash_dev_free, system_wq);
1185}
1186
1187static int flash_dev_run(struct cache_set *c, struct uuid_entry *u)
1188{
1189 struct bcache_device *d = kzalloc(sizeof(struct bcache_device),
1190 GFP_KERNEL);
1191 if (!d)
1192 return -ENOMEM;
1193
1194 closure_init(&d->cl, NULL);
1195 set_closure_fn(&d->cl, flash_dev_flush, system_wq);
1196
1197 kobject_init(&d->kobj, &bch_flash_dev_ktype);
1198
Kent Overstreet279afba2013-06-05 06:21:07 -07001199 if (bcache_device_init(d, block_bytes(c), u->sectors))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001200 goto err;
1201
1202 bcache_device_attach(d, c, u - c->uuids);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001203 bch_flash_dev_request_init(d);
1204 add_disk(d->disk);
1205
1206 if (kobject_add(&d->kobj, &disk_to_dev(d->disk)->kobj, "bcache"))
1207 goto err;
1208
1209 bcache_device_link(d, c, "volume");
1210
1211 return 0;
1212err:
1213 kobject_put(&d->kobj);
1214 return -ENOMEM;
1215}
1216
1217static int flash_devs_run(struct cache_set *c)
1218{
1219 int ret = 0;
1220 struct uuid_entry *u;
1221
1222 for (u = c->uuids;
1223 u < c->uuids + c->nr_uuids && !ret;
1224 u++)
1225 if (UUID_FLASH_ONLY(u))
1226 ret = flash_dev_run(c, u);
1227
1228 return ret;
1229}
1230
1231int bch_flash_dev_create(struct cache_set *c, uint64_t size)
1232{
1233 struct uuid_entry *u;
1234
1235 if (test_bit(CACHE_SET_STOPPING, &c->flags))
1236 return -EINTR;
1237
1238 u = uuid_find_empty(c);
1239 if (!u) {
1240 pr_err("Can't create volume, no room for UUID");
1241 return -EINVAL;
1242 }
1243
1244 get_random_bytes(u->uuid, 16);
1245 memset(u->label, 0, 32);
1246 u->first_reg = u->last_reg = cpu_to_le32(get_seconds());
1247
1248 SET_UUID_FLASH_ONLY(u, 1);
1249 u->sectors = size >> 9;
1250
1251 bch_uuid_write(c);
1252
1253 return flash_dev_run(c, u);
1254}
1255
1256/* Cache set */
1257
1258__printf(2, 3)
1259bool bch_cache_set_error(struct cache_set *c, const char *fmt, ...)
1260{
1261 va_list args;
1262
Kent Overstreet77c320e2013-07-11 19:42:51 -07001263 if (c->on_error != ON_ERROR_PANIC &&
1264 test_bit(CACHE_SET_STOPPING, &c->flags))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001265 return false;
1266
1267 /* XXX: we can be called from atomic context
1268 acquire_console_sem();
1269 */
1270
1271 printk(KERN_ERR "bcache: error on %pU: ", c->sb.set_uuid);
1272
1273 va_start(args, fmt);
1274 vprintk(fmt, args);
1275 va_end(args);
1276
1277 printk(", disabling caching\n");
1278
Kent Overstreet77c320e2013-07-11 19:42:51 -07001279 if (c->on_error == ON_ERROR_PANIC)
1280 panic("panic forced after error\n");
1281
Kent Overstreetcafe5632013-03-23 16:11:31 -07001282 bch_cache_set_unregister(c);
1283 return true;
1284}
1285
1286void bch_cache_set_release(struct kobject *kobj)
1287{
1288 struct cache_set *c = container_of(kobj, struct cache_set, kobj);
1289 kfree(c);
1290 module_put(THIS_MODULE);
1291}
1292
1293static void cache_set_free(struct closure *cl)
1294{
1295 struct cache_set *c = container_of(cl, struct cache_set, cl);
1296 struct cache *ca;
1297 unsigned i;
1298
1299 if (!IS_ERR_OR_NULL(c->debug))
1300 debugfs_remove(c->debug);
1301
1302 bch_open_buckets_free(c);
1303 bch_btree_cache_free(c);
1304 bch_journal_free(c);
1305
1306 for_each_cache(ca, c, i)
1307 if (ca)
1308 kobject_put(&ca->kobj);
1309
1310 free_pages((unsigned long) c->uuids, ilog2(bucket_pages(c)));
1311 free_pages((unsigned long) c->sort, ilog2(bucket_pages(c)));
1312
Kent Overstreetcafe5632013-03-23 16:11:31 -07001313 if (c->bio_split)
1314 bioset_free(c->bio_split);
Kent Overstreet57943512013-04-25 13:58:35 -07001315 if (c->fill_iter)
1316 mempool_destroy(c->fill_iter);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001317 if (c->bio_meta)
1318 mempool_destroy(c->bio_meta);
1319 if (c->search)
1320 mempool_destroy(c->search);
1321 kfree(c->devices);
1322
1323 mutex_lock(&bch_register_lock);
1324 list_del(&c->list);
1325 mutex_unlock(&bch_register_lock);
1326
1327 pr_info("Cache set %pU unregistered", c->sb.set_uuid);
1328 wake_up(&unregister_wait);
1329
1330 closure_debug_destroy(&c->cl);
1331 kobject_put(&c->kobj);
1332}
1333
1334static void cache_set_flush(struct closure *cl)
1335{
1336 struct cache_set *c = container_of(cl, struct cache_set, caching);
Kent Overstreet79826c32013-07-10 18:31:58 -07001337 struct cache *ca;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001338 struct btree *b;
Kent Overstreet79826c32013-07-10 18:31:58 -07001339 unsigned i;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001340
1341 bch_cache_accounting_destroy(&c->accounting);
1342
1343 kobject_put(&c->internal);
1344 kobject_del(&c->kobj);
1345
Kent Overstreet72a44512013-10-24 17:19:26 -07001346 if (c->gc_thread)
1347 kthread_stop(c->gc_thread);
1348
Kent Overstreetcafe5632013-03-23 16:11:31 -07001349 if (!IS_ERR_OR_NULL(c->root))
1350 list_add(&c->root->list, &c->btree_cache);
1351
1352 /* Should skip this if we're unregistering because of an error */
1353 list_for_each_entry(b, &c->btree_cache, list)
1354 if (btree_node_dirty(b))
Kent Overstreet57943512013-04-25 13:58:35 -07001355 bch_btree_node_write(b, NULL);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001356
Kent Overstreet79826c32013-07-10 18:31:58 -07001357 for_each_cache(ca, c, i)
1358 if (ca->alloc_thread)
1359 kthread_stop(ca->alloc_thread);
1360
Kent Overstreetcafe5632013-03-23 16:11:31 -07001361 closure_return(cl);
1362}
1363
1364static void __cache_set_unregister(struct closure *cl)
1365{
1366 struct cache_set *c = container_of(cl, struct cache_set, caching);
Kent Overstreet5caa52a2013-07-10 21:03:25 -07001367 struct cached_dev *dc;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001368 size_t i;
1369
1370 mutex_lock(&bch_register_lock);
1371
Kent Overstreetcafe5632013-03-23 16:11:31 -07001372 for (i = 0; i < c->nr_uuids; i++)
Kent Overstreet5caa52a2013-07-10 21:03:25 -07001373 if (c->devices[i]) {
1374 if (!UUID_FLASH_ONLY(&c->uuids[i]) &&
1375 test_bit(CACHE_SET_UNREGISTERING, &c->flags)) {
1376 dc = container_of(c->devices[i],
1377 struct cached_dev, disk);
1378 bch_cached_dev_detach(dc);
1379 } else {
1380 bcache_device_stop(c->devices[i]);
1381 }
1382 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001383
1384 mutex_unlock(&bch_register_lock);
1385
1386 continue_at(cl, cache_set_flush, system_wq);
1387}
1388
1389void bch_cache_set_stop(struct cache_set *c)
1390{
1391 if (!test_and_set_bit(CACHE_SET_STOPPING, &c->flags))
1392 closure_queue(&c->caching);
1393}
1394
1395void bch_cache_set_unregister(struct cache_set *c)
1396{
1397 set_bit(CACHE_SET_UNREGISTERING, &c->flags);
1398 bch_cache_set_stop(c);
1399}
1400
1401#define alloc_bucket_pages(gfp, c) \
1402 ((void *) __get_free_pages(__GFP_ZERO|gfp, ilog2(bucket_pages(c))))
1403
1404struct cache_set *bch_cache_set_alloc(struct cache_sb *sb)
1405{
1406 int iter_size;
1407 struct cache_set *c = kzalloc(sizeof(struct cache_set), GFP_KERNEL);
1408 if (!c)
1409 return NULL;
1410
1411 __module_get(THIS_MODULE);
1412 closure_init(&c->cl, NULL);
1413 set_closure_fn(&c->cl, cache_set_free, system_wq);
1414
1415 closure_init(&c->caching, &c->cl);
1416 set_closure_fn(&c->caching, __cache_set_unregister, system_wq);
1417
1418 /* Maybe create continue_at_noreturn() and use it here? */
1419 closure_set_stopped(&c->cl);
1420 closure_put(&c->cl);
1421
1422 kobject_init(&c->kobj, &bch_cache_set_ktype);
1423 kobject_init(&c->internal, &bch_cache_set_internal_ktype);
1424
1425 bch_cache_accounting_init(&c->accounting, &c->cl);
1426
1427 memcpy(c->sb.set_uuid, sb->set_uuid, 16);
1428 c->sb.block_size = sb->block_size;
1429 c->sb.bucket_size = sb->bucket_size;
1430 c->sb.nr_in_set = sb->nr_in_set;
1431 c->sb.last_mount = sb->last_mount;
1432 c->bucket_bits = ilog2(sb->bucket_size);
1433 c->block_bits = ilog2(sb->block_size);
1434 c->nr_uuids = bucket_bytes(c) / sizeof(struct uuid_entry);
1435
1436 c->btree_pages = c->sb.bucket_size / PAGE_SECTORS;
1437 if (c->btree_pages > BTREE_MAX_PAGES)
1438 c->btree_pages = max_t(int, c->btree_pages / 4,
1439 BTREE_MAX_PAGES);
1440
Kent Overstreet6ded34d2013-05-11 15:59:37 -07001441 c->sort_crit_factor = int_sqrt(c->btree_pages);
1442
Kent Overstreetcafe5632013-03-23 16:11:31 -07001443 closure_init_unlocked(&c->sb_write);
Kent Overstreete8e1d462013-07-24 17:27:07 -07001444 mutex_init(&c->bucket_lock);
1445 init_waitqueue_head(&c->try_wait);
Kent Overstreet35fcd842013-07-24 17:29:09 -07001446 init_waitqueue_head(&c->bucket_wait);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001447 closure_init_unlocked(&c->uuid_write);
Kent Overstreete8e1d462013-07-24 17:27:07 -07001448 spin_lock_init(&c->sort_time_lock);
1449 mutex_init(&c->sort_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001450 spin_lock_init(&c->btree_read_time_lock);
Kent Overstreete8e1d462013-07-24 17:27:07 -07001451
Kent Overstreetcafe5632013-03-23 16:11:31 -07001452 bch_moving_init_cache_set(c);
1453
1454 INIT_LIST_HEAD(&c->list);
1455 INIT_LIST_HEAD(&c->cached_devs);
1456 INIT_LIST_HEAD(&c->btree_cache);
1457 INIT_LIST_HEAD(&c->btree_cache_freeable);
1458 INIT_LIST_HEAD(&c->btree_cache_freed);
1459 INIT_LIST_HEAD(&c->data_buckets);
1460
1461 c->search = mempool_create_slab_pool(32, bch_search_cache);
1462 if (!c->search)
1463 goto err;
1464
1465 iter_size = (sb->bucket_size / sb->block_size + 1) *
1466 sizeof(struct btree_iter_set);
1467
1468 if (!(c->devices = kzalloc(c->nr_uuids * sizeof(void *), GFP_KERNEL)) ||
1469 !(c->bio_meta = mempool_create_kmalloc_pool(2,
1470 sizeof(struct bbio) + sizeof(struct bio_vec) *
1471 bucket_pages(c))) ||
Kent Overstreet57943512013-04-25 13:58:35 -07001472 !(c->fill_iter = mempool_create_kmalloc_pool(1, iter_size)) ||
Kent Overstreetcafe5632013-03-23 16:11:31 -07001473 !(c->bio_split = bioset_create(4, offsetof(struct bbio, bio))) ||
Kent Overstreetcafe5632013-03-23 16:11:31 -07001474 !(c->sort = alloc_bucket_pages(GFP_KERNEL, c)) ||
1475 !(c->uuids = alloc_bucket_pages(GFP_KERNEL, c)) ||
1476 bch_journal_alloc(c) ||
1477 bch_btree_cache_alloc(c) ||
1478 bch_open_buckets_alloc(c))
1479 goto err;
1480
Kent Overstreetcafe5632013-03-23 16:11:31 -07001481 c->congested_read_threshold_us = 2000;
1482 c->congested_write_threshold_us = 20000;
1483 c->error_limit = 8 << IO_ERROR_SHIFT;
1484
1485 return c;
1486err:
1487 bch_cache_set_unregister(c);
1488 return NULL;
1489}
1490
1491static void run_cache_set(struct cache_set *c)
1492{
1493 const char *err = "cannot allocate memory";
1494 struct cached_dev *dc, *t;
1495 struct cache *ca;
Kent Overstreetc18536a2013-07-24 17:44:17 -07001496 struct closure cl;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001497 unsigned i;
1498
Kent Overstreetc18536a2013-07-24 17:44:17 -07001499 closure_init_stack(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001500
1501 for_each_cache(ca, c, i)
1502 c->nbuckets += ca->sb.nbuckets;
1503
1504 if (CACHE_SYNC(&c->sb)) {
1505 LIST_HEAD(journal);
1506 struct bkey *k;
1507 struct jset *j;
1508
1509 err = "cannot allocate memory for journal";
Kent Overstreetc18536a2013-07-24 17:44:17 -07001510 if (bch_journal_read(c, &journal))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001511 goto err;
1512
1513 pr_debug("btree_journal_read() done");
1514
1515 err = "no journal entries found";
1516 if (list_empty(&journal))
1517 goto err;
1518
1519 j = &list_entry(journal.prev, struct journal_replay, list)->j;
1520
1521 err = "IO error reading priorities";
1522 for_each_cache(ca, c, i)
1523 prio_read(ca, j->prio_bucket[ca->sb.nr_this_dev]);
1524
1525 /*
1526 * If prio_read() fails it'll call cache_set_error and we'll
1527 * tear everything down right away, but if we perhaps checked
1528 * sooner we could avoid journal replay.
1529 */
1530
1531 k = &j->btree_root;
1532
1533 err = "bad btree root";
1534 if (__bch_ptr_invalid(c, j->btree_level + 1, k))
1535 goto err;
1536
1537 err = "error reading btree root";
Kent Overstreete8e1d462013-07-24 17:27:07 -07001538 c->root = bch_btree_node_get(c, k, j->btree_level, true);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001539 if (IS_ERR_OR_NULL(c->root))
1540 goto err;
1541
1542 list_del_init(&c->root->list);
1543 rw_unlock(true, c->root);
1544
Kent Overstreetc18536a2013-07-24 17:44:17 -07001545 err = uuid_read(c, j, &cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001546 if (err)
1547 goto err;
1548
1549 err = "error in recovery";
Kent Overstreetc18536a2013-07-24 17:44:17 -07001550 if (bch_btree_check(c))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001551 goto err;
1552
1553 bch_journal_mark(c, &journal);
1554 bch_btree_gc_finish(c);
1555 pr_debug("btree_check() done");
1556
1557 /*
1558 * bcache_journal_next() can't happen sooner, or
1559 * btree_gc_finish() will give spurious errors about last_gc >
1560 * gc_gen - this is a hack but oh well.
1561 */
1562 bch_journal_next(&c->journal);
1563
Kent Overstreet119ba0f2013-04-24 19:01:12 -07001564 err = "error starting allocator thread";
Kent Overstreetcafe5632013-03-23 16:11:31 -07001565 for_each_cache(ca, c, i)
Kent Overstreet119ba0f2013-04-24 19:01:12 -07001566 if (bch_cache_allocator_start(ca))
1567 goto err;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001568
1569 /*
1570 * First place it's safe to allocate: btree_check() and
1571 * btree_gc_finish() have to run before we have buckets to
1572 * allocate, and bch_bucket_alloc_set() might cause a journal
1573 * entry to be written so bcache_journal_next() has to be called
1574 * first.
1575 *
1576 * If the uuids were in the old format we have to rewrite them
1577 * before the next journal entry is written:
1578 */
1579 if (j->version < BCACHE_JSET_VERSION_UUID)
1580 __uuid_write(c);
1581
Kent Overstreetc18536a2013-07-24 17:44:17 -07001582 bch_journal_replay(c, &journal);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001583 } else {
1584 pr_notice("invalidating existing data");
Kent Overstreetcafe5632013-03-23 16:11:31 -07001585
1586 for_each_cache(ca, c, i) {
1587 unsigned j;
1588
1589 ca->sb.keys = clamp_t(int, ca->sb.nbuckets >> 7,
1590 2, SB_JOURNAL_BUCKETS);
1591
1592 for (j = 0; j < ca->sb.keys; j++)
1593 ca->sb.d[j] = ca->sb.first_bucket + j;
1594 }
1595
1596 bch_btree_gc_finish(c);
1597
Kent Overstreet119ba0f2013-04-24 19:01:12 -07001598 err = "error starting allocator thread";
Kent Overstreetcafe5632013-03-23 16:11:31 -07001599 for_each_cache(ca, c, i)
Kent Overstreet119ba0f2013-04-24 19:01:12 -07001600 if (bch_cache_allocator_start(ca))
1601 goto err;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001602
1603 mutex_lock(&c->bucket_lock);
1604 for_each_cache(ca, c, i)
1605 bch_prio_write(ca);
1606 mutex_unlock(&c->bucket_lock);
1607
Kent Overstreetcafe5632013-03-23 16:11:31 -07001608 err = "cannot allocate new UUID bucket";
1609 if (__uuid_write(c))
Kent Overstreet72a44512013-10-24 17:19:26 -07001610 goto err;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001611
1612 err = "cannot allocate new btree root";
Kent Overstreet35fcd842013-07-24 17:29:09 -07001613 c->root = bch_btree_node_alloc(c, 0);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001614 if (IS_ERR_OR_NULL(c->root))
Kent Overstreet72a44512013-10-24 17:19:26 -07001615 goto err;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001616
1617 bkey_copy_key(&c->root->key, &MAX_KEY);
Kent Overstreetc18536a2013-07-24 17:44:17 -07001618 bch_btree_node_write(c->root, &cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001619
1620 bch_btree_set_root(c->root);
1621 rw_unlock(true, c->root);
1622
1623 /*
1624 * We don't want to write the first journal entry until
1625 * everything is set up - fortunately journal entries won't be
1626 * written until the SET_CACHE_SYNC() here:
1627 */
1628 SET_CACHE_SYNC(&c->sb, true);
1629
1630 bch_journal_next(&c->journal);
Kent Overstreetc18536a2013-07-24 17:44:17 -07001631 bch_journal_meta(c, &cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001632 }
1633
Kent Overstreet72a44512013-10-24 17:19:26 -07001634 err = "error starting gc thread";
1635 if (bch_gc_thread_start(c))
1636 goto err;
1637
Kent Overstreetc18536a2013-07-24 17:44:17 -07001638 closure_sync(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001639 c->sb.last_mount = get_seconds();
1640 bcache_write_super(c);
1641
1642 list_for_each_entry_safe(dc, t, &uncached_devices, list)
1643 bch_cached_dev_attach(dc, c);
1644
1645 flash_devs_run(c);
1646
1647 return;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001648err:
Kent Overstreetc18536a2013-07-24 17:44:17 -07001649 closure_sync(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001650 /* XXX: test this, it's broken */
1651 bch_cache_set_error(c, err);
1652}
1653
1654static bool can_attach_cache(struct cache *ca, struct cache_set *c)
1655{
1656 return ca->sb.block_size == c->sb.block_size &&
1657 ca->sb.bucket_size == c->sb.block_size &&
1658 ca->sb.nr_in_set == c->sb.nr_in_set;
1659}
1660
1661static const char *register_cache_set(struct cache *ca)
1662{
1663 char buf[12];
1664 const char *err = "cannot allocate memory";
1665 struct cache_set *c;
1666
1667 list_for_each_entry(c, &bch_cache_sets, list)
1668 if (!memcmp(c->sb.set_uuid, ca->sb.set_uuid, 16)) {
1669 if (c->cache[ca->sb.nr_this_dev])
1670 return "duplicate cache set member";
1671
1672 if (!can_attach_cache(ca, c))
1673 return "cache sb does not match set";
1674
1675 if (!CACHE_SYNC(&ca->sb))
1676 SET_CACHE_SYNC(&c->sb, false);
1677
1678 goto found;
1679 }
1680
1681 c = bch_cache_set_alloc(&ca->sb);
1682 if (!c)
1683 return err;
1684
1685 err = "error creating kobject";
1686 if (kobject_add(&c->kobj, bcache_kobj, "%pU", c->sb.set_uuid) ||
1687 kobject_add(&c->internal, &c->kobj, "internal"))
1688 goto err;
1689
1690 if (bch_cache_accounting_add_kobjs(&c->accounting, &c->kobj))
1691 goto err;
1692
1693 bch_debug_init_cache_set(c);
1694
1695 list_add(&c->list, &bch_cache_sets);
1696found:
1697 sprintf(buf, "cache%i", ca->sb.nr_this_dev);
1698 if (sysfs_create_link(&ca->kobj, &c->kobj, "set") ||
1699 sysfs_create_link(&c->kobj, &ca->kobj, buf))
1700 goto err;
1701
1702 if (ca->sb.seq > c->sb.seq) {
1703 c->sb.version = ca->sb.version;
1704 memcpy(c->sb.set_uuid, ca->sb.set_uuid, 16);
1705 c->sb.flags = ca->sb.flags;
1706 c->sb.seq = ca->sb.seq;
1707 pr_debug("set version = %llu", c->sb.version);
1708 }
1709
1710 ca->set = c;
1711 ca->set->cache[ca->sb.nr_this_dev] = ca;
1712 c->cache_by_alloc[c->caches_loaded++] = ca;
1713
1714 if (c->caches_loaded == c->sb.nr_in_set)
1715 run_cache_set(c);
1716
1717 return NULL;
1718err:
1719 bch_cache_set_unregister(c);
1720 return err;
1721}
1722
1723/* Cache device */
1724
1725void bch_cache_release(struct kobject *kobj)
1726{
1727 struct cache *ca = container_of(kobj, struct cache, kobj);
1728
1729 if (ca->set)
1730 ca->set->cache[ca->sb.nr_this_dev] = NULL;
1731
Kent Overstreetcafe5632013-03-23 16:11:31 -07001732 bio_split_pool_free(&ca->bio_split_hook);
1733
Kent Overstreetcafe5632013-03-23 16:11:31 -07001734 free_pages((unsigned long) ca->disk_buckets, ilog2(bucket_pages(ca)));
1735 kfree(ca->prio_buckets);
1736 vfree(ca->buckets);
1737
1738 free_heap(&ca->heap);
1739 free_fifo(&ca->unused);
1740 free_fifo(&ca->free_inc);
1741 free_fifo(&ca->free);
1742
1743 if (ca->sb_bio.bi_inline_vecs[0].bv_page)
1744 put_page(ca->sb_bio.bi_io_vec[0].bv_page);
1745
1746 if (!IS_ERR_OR_NULL(ca->bdev)) {
1747 blk_sync_queue(bdev_get_queue(ca->bdev));
1748 blkdev_put(ca->bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
1749 }
1750
1751 kfree(ca);
1752 module_put(THIS_MODULE);
1753}
1754
1755static int cache_alloc(struct cache_sb *sb, struct cache *ca)
1756{
1757 size_t free;
1758 struct bucket *b;
1759
Kent Overstreetcafe5632013-03-23 16:11:31 -07001760 __module_get(THIS_MODULE);
1761 kobject_init(&ca->kobj, &bch_cache_ktype);
1762
Kent Overstreetcafe5632013-03-23 16:11:31 -07001763 bio_init(&ca->journal.bio);
1764 ca->journal.bio.bi_max_vecs = 8;
1765 ca->journal.bio.bi_io_vec = ca->journal.bio.bi_inline_vecs;
1766
1767 free = roundup_pow_of_two(ca->sb.nbuckets) >> 9;
1768 free = max_t(size_t, free, (prio_buckets(ca) + 8) * 2);
1769
1770 if (!init_fifo(&ca->free, free, GFP_KERNEL) ||
1771 !init_fifo(&ca->free_inc, free << 2, GFP_KERNEL) ||
1772 !init_fifo(&ca->unused, free << 2, GFP_KERNEL) ||
1773 !init_heap(&ca->heap, free << 3, GFP_KERNEL) ||
Kent Overstreetf59fce82013-05-15 00:11:26 -07001774 !(ca->buckets = vzalloc(sizeof(struct bucket) *
Kent Overstreetcafe5632013-03-23 16:11:31 -07001775 ca->sb.nbuckets)) ||
1776 !(ca->prio_buckets = kzalloc(sizeof(uint64_t) * prio_buckets(ca) *
1777 2, GFP_KERNEL)) ||
1778 !(ca->disk_buckets = alloc_bucket_pages(GFP_KERNEL, ca)) ||
Kent Overstreetcafe5632013-03-23 16:11:31 -07001779 bio_split_pool_init(&ca->bio_split_hook))
Kent Overstreetf59fce82013-05-15 00:11:26 -07001780 return -ENOMEM;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001781
1782 ca->prio_last_buckets = ca->prio_buckets + prio_buckets(ca);
1783
Kent Overstreetcafe5632013-03-23 16:11:31 -07001784 for_each_bucket(b, ca)
1785 atomic_set(&b->pin, 0);
1786
1787 if (bch_cache_allocator_init(ca))
1788 goto err;
1789
1790 return 0;
1791err:
1792 kobject_put(&ca->kobj);
1793 return -ENOMEM;
1794}
1795
Kent Overstreetf59fce82013-05-15 00:11:26 -07001796static void register_cache(struct cache_sb *sb, struct page *sb_page,
Kent Overstreetcafe5632013-03-23 16:11:31 -07001797 struct block_device *bdev, struct cache *ca)
1798{
1799 char name[BDEVNAME_SIZE];
1800 const char *err = "cannot allocate memory";
1801
Kent Overstreetf59fce82013-05-15 00:11:26 -07001802 memcpy(&ca->sb, sb, sizeof(struct cache_sb));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001803 ca->bdev = bdev;
1804 ca->bdev->bd_holder = ca;
1805
Kent Overstreetf59fce82013-05-15 00:11:26 -07001806 bio_init(&ca->sb_bio);
1807 ca->sb_bio.bi_max_vecs = 1;
1808 ca->sb_bio.bi_io_vec = ca->sb_bio.bi_inline_vecs;
1809 ca->sb_bio.bi_io_vec[0].bv_page = sb_page;
1810 get_page(sb_page);
1811
Kent Overstreetcafe5632013-03-23 16:11:31 -07001812 if (blk_queue_discard(bdev_get_queue(ca->bdev)))
1813 ca->discard = CACHE_DISCARD(&ca->sb);
1814
Kent Overstreetf59fce82013-05-15 00:11:26 -07001815 if (cache_alloc(sb, ca) != 0)
1816 goto err;
1817
Kent Overstreetcafe5632013-03-23 16:11:31 -07001818 err = "error creating kobject";
1819 if (kobject_add(&ca->kobj, &part_to_dev(bdev->bd_part)->kobj, "bcache"))
1820 goto err;
1821
1822 err = register_cache_set(ca);
1823 if (err)
1824 goto err;
1825
1826 pr_info("registered cache device %s", bdevname(bdev, name));
Kent Overstreetf59fce82013-05-15 00:11:26 -07001827 return;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001828err:
Kent Overstreetf59fce82013-05-15 00:11:26 -07001829 pr_notice("error opening %s: %s", bdevname(bdev, name), err);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001830 kobject_put(&ca->kobj);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001831}
1832
1833/* Global interfaces/init */
1834
1835static ssize_t register_bcache(struct kobject *, struct kobj_attribute *,
1836 const char *, size_t);
1837
1838kobj_attribute_write(register, register_bcache);
1839kobj_attribute_write(register_quiet, register_bcache);
1840
Gabriel de Perthuisa9dd53a2013-05-04 12:19:41 +02001841static bool bch_is_open_backing(struct block_device *bdev) {
1842 struct cache_set *c, *tc;
1843 struct cached_dev *dc, *t;
1844
1845 list_for_each_entry_safe(c, tc, &bch_cache_sets, list)
1846 list_for_each_entry_safe(dc, t, &c->cached_devs, list)
1847 if (dc->bdev == bdev)
1848 return true;
1849 list_for_each_entry_safe(dc, t, &uncached_devices, list)
1850 if (dc->bdev == bdev)
1851 return true;
1852 return false;
1853}
1854
1855static bool bch_is_open_cache(struct block_device *bdev) {
1856 struct cache_set *c, *tc;
1857 struct cache *ca;
1858 unsigned i;
1859
1860 list_for_each_entry_safe(c, tc, &bch_cache_sets, list)
1861 for_each_cache(ca, c, i)
1862 if (ca->bdev == bdev)
1863 return true;
1864 return false;
1865}
1866
1867static bool bch_is_open(struct block_device *bdev) {
1868 return bch_is_open_cache(bdev) || bch_is_open_backing(bdev);
1869}
1870
Kent Overstreetcafe5632013-03-23 16:11:31 -07001871static ssize_t register_bcache(struct kobject *k, struct kobj_attribute *attr,
1872 const char *buffer, size_t size)
1873{
1874 ssize_t ret = size;
1875 const char *err = "cannot allocate memory";
1876 char *path = NULL;
1877 struct cache_sb *sb = NULL;
1878 struct block_device *bdev = NULL;
1879 struct page *sb_page = NULL;
1880
1881 if (!try_module_get(THIS_MODULE))
1882 return -EBUSY;
1883
1884 mutex_lock(&bch_register_lock);
1885
1886 if (!(path = kstrndup(buffer, size, GFP_KERNEL)) ||
1887 !(sb = kmalloc(sizeof(struct cache_sb), GFP_KERNEL)))
1888 goto err;
1889
1890 err = "failed to open device";
1891 bdev = blkdev_get_by_path(strim(path),
1892 FMODE_READ|FMODE_WRITE|FMODE_EXCL,
1893 sb);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001894 if (IS_ERR(bdev)) {
Gabriel de Perthuisa9dd53a2013-05-04 12:19:41 +02001895 if (bdev == ERR_PTR(-EBUSY)) {
1896 bdev = lookup_bdev(strim(path));
1897 if (!IS_ERR(bdev) && bch_is_open(bdev))
1898 err = "device already registered";
1899 else
1900 err = "device busy";
1901 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001902 goto err;
Kent Overstreetf59fce82013-05-15 00:11:26 -07001903 }
1904
1905 err = "failed to set blocksize";
1906 if (set_blocksize(bdev, 4096))
1907 goto err_close;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001908
1909 err = read_super(sb, bdev, &sb_page);
1910 if (err)
1911 goto err_close;
1912
Kent Overstreet29033812013-04-11 15:14:35 -07001913 if (SB_IS_BDEV(sb)) {
Kent Overstreetcafe5632013-03-23 16:11:31 -07001914 struct cached_dev *dc = kzalloc(sizeof(*dc), GFP_KERNEL);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001915 if (!dc)
1916 goto err_close;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001917
Kent Overstreetf59fce82013-05-15 00:11:26 -07001918 register_bdev(sb, sb_page, bdev, dc);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001919 } else {
1920 struct cache *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001921 if (!ca)
1922 goto err_close;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001923
Kent Overstreetf59fce82013-05-15 00:11:26 -07001924 register_cache(sb, sb_page, bdev, ca);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001925 }
Kent Overstreetf59fce82013-05-15 00:11:26 -07001926out:
1927 if (sb_page)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001928 put_page(sb_page);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001929 kfree(sb);
1930 kfree(path);
1931 mutex_unlock(&bch_register_lock);
1932 module_put(THIS_MODULE);
1933 return ret;
Kent Overstreetf59fce82013-05-15 00:11:26 -07001934
1935err_close:
1936 blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
1937err:
1938 if (attr != &ksysfs_register_quiet)
1939 pr_info("error opening %s: %s", path, err);
1940 ret = -EINVAL;
1941 goto out;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001942}
1943
1944static int bcache_reboot(struct notifier_block *n, unsigned long code, void *x)
1945{
1946 if (code == SYS_DOWN ||
1947 code == SYS_HALT ||
1948 code == SYS_POWER_OFF) {
1949 DEFINE_WAIT(wait);
1950 unsigned long start = jiffies;
1951 bool stopped = false;
1952
1953 struct cache_set *c, *tc;
1954 struct cached_dev *dc, *tdc;
1955
1956 mutex_lock(&bch_register_lock);
1957
1958 if (list_empty(&bch_cache_sets) &&
1959 list_empty(&uncached_devices))
1960 goto out;
1961
1962 pr_info("Stopping all devices:");
1963
1964 list_for_each_entry_safe(c, tc, &bch_cache_sets, list)
1965 bch_cache_set_stop(c);
1966
1967 list_for_each_entry_safe(dc, tdc, &uncached_devices, list)
1968 bcache_device_stop(&dc->disk);
1969
1970 /* What's a condition variable? */
1971 while (1) {
1972 long timeout = start + 2 * HZ - jiffies;
1973
1974 stopped = list_empty(&bch_cache_sets) &&
1975 list_empty(&uncached_devices);
1976
1977 if (timeout < 0 || stopped)
1978 break;
1979
1980 prepare_to_wait(&unregister_wait, &wait,
1981 TASK_UNINTERRUPTIBLE);
1982
1983 mutex_unlock(&bch_register_lock);
1984 schedule_timeout(timeout);
1985 mutex_lock(&bch_register_lock);
1986 }
1987
1988 finish_wait(&unregister_wait, &wait);
1989
1990 if (stopped)
1991 pr_info("All devices stopped");
1992 else
1993 pr_notice("Timeout waiting for devices to be closed");
1994out:
1995 mutex_unlock(&bch_register_lock);
1996 }
1997
1998 return NOTIFY_DONE;
1999}
2000
2001static struct notifier_block reboot = {
2002 .notifier_call = bcache_reboot,
2003 .priority = INT_MAX, /* before any real devices */
2004};
2005
2006static void bcache_exit(void)
2007{
2008 bch_debug_exit();
Kent Overstreetcafe5632013-03-23 16:11:31 -07002009 bch_request_exit();
2010 bch_btree_exit();
2011 if (bcache_kobj)
2012 kobject_put(bcache_kobj);
2013 if (bcache_wq)
2014 destroy_workqueue(bcache_wq);
2015 unregister_blkdev(bcache_major, "bcache");
2016 unregister_reboot_notifier(&reboot);
2017}
2018
2019static int __init bcache_init(void)
2020{
2021 static const struct attribute *files[] = {
2022 &ksysfs_register.attr,
2023 &ksysfs_register_quiet.attr,
2024 NULL
2025 };
2026
2027 mutex_init(&bch_register_lock);
2028 init_waitqueue_head(&unregister_wait);
2029 register_reboot_notifier(&reboot);
Kent Overstreet07e86cc2013-03-25 11:46:43 -07002030 closure_debug_init();
Kent Overstreetcafe5632013-03-23 16:11:31 -07002031
2032 bcache_major = register_blkdev(0, "bcache");
2033 if (bcache_major < 0)
2034 return bcache_major;
2035
2036 if (!(bcache_wq = create_workqueue("bcache")) ||
2037 !(bcache_kobj = kobject_create_and_add("bcache", fs_kobj)) ||
2038 sysfs_create_files(bcache_kobj, files) ||
2039 bch_btree_init() ||
2040 bch_request_init() ||
Kent Overstreetcafe5632013-03-23 16:11:31 -07002041 bch_debug_init(bcache_kobj))
2042 goto err;
2043
2044 return 0;
2045err:
2046 bcache_exit();
2047 return -ENOMEM;
2048}
2049
2050module_exit(bcache_exit);
2051module_init(bcache_init);