blob: 7b45160e9a227af14d9deb94f71319845e4caabc [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"
Kent Overstreet65d45232013-12-20 17:22:05 -080012#include "extents.h"
Kent Overstreetcafe5632013-03-23 16:11:31 -070013#include "request.h"
Kent Overstreet279afba2013-06-05 06:21:07 -070014#include "writeback.h"
Kent Overstreetcafe5632013-03-23 16:11:31 -070015
Kent Overstreetc37511b2013-04-26 15:39:55 -070016#include <linux/blkdev.h>
Kent Overstreetcafe5632013-03-23 16:11:31 -070017#include <linux/buffer_head.h>
18#include <linux/debugfs.h>
19#include <linux/genhd.h>
Kent Overstreet28935ab2013-07-31 01:12:02 -070020#include <linux/idr.h>
Kent Overstreet79826c32013-07-10 18:31:58 -070021#include <linux/kthread.h>
Kent Overstreetcafe5632013-03-23 16:11:31 -070022#include <linux/module.h>
23#include <linux/random.h>
24#include <linux/reboot.h>
25#include <linux/sysfs.h>
26
27MODULE_LICENSE("GPL");
28MODULE_AUTHOR("Kent Overstreet <kent.overstreet@gmail.com>");
29
30static const char bcache_magic[] = {
31 0xc6, 0x85, 0x73, 0xf6, 0x4e, 0x1a, 0x45, 0xca,
32 0x82, 0x65, 0xf5, 0x7f, 0x48, 0xba, 0x6d, 0x81
33};
34
35static const char invalid_uuid[] = {
36 0xa0, 0x3e, 0xf8, 0xed, 0x3e, 0xe1, 0xb8, 0x78,
37 0xc8, 0x50, 0xfc, 0x5e, 0xcb, 0x16, 0xcd, 0x99
38};
39
40/* Default is -1; we skip past it for struct cached_dev's cache mode */
41const char * const bch_cache_modes[] = {
42 "default",
43 "writethrough",
44 "writeback",
45 "writearound",
46 "none",
47 NULL
48};
49
Coly Li7e027ca2018-03-18 17:36:18 -070050/* Default is -1; we skip past it for stop_when_cache_set_failed */
51const char * const bch_stop_on_failure_modes[] = {
52 "default",
53 "auto",
54 "always",
55 NULL
56};
57
Kent Overstreetcafe5632013-03-23 16:11:31 -070058static struct kobject *bcache_kobj;
59struct mutex bch_register_lock;
60LIST_HEAD(bch_cache_sets);
61static LIST_HEAD(uncached_devices);
62
Kent Overstreet28935ab2013-07-31 01:12:02 -070063static int bcache_major;
Coly Li1dbe32a2017-10-13 16:35:31 -070064static DEFINE_IDA(bcache_device_idx);
Kent Overstreetcafe5632013-03-23 16:11:31 -070065static wait_queue_head_t unregister_wait;
66struct workqueue_struct *bcache_wq;
67
68#define BTREE_MAX_PAGES (256 * 1024 / PAGE_SIZE)
Coly Li1dbe32a2017-10-13 16:35:31 -070069/* limitation of partitions number on single bcache device */
70#define BCACHE_MINORS 128
71/* limitation of bcache devices number on single system */
72#define BCACHE_DEVICE_IDX_MAX ((1U << MINORBITS)/BCACHE_MINORS)
Kent Overstreetcafe5632013-03-23 16:11:31 -070073
Kent Overstreetcafe5632013-03-23 16:11:31 -070074/* Superblock */
75
76static const char *read_super(struct cache_sb *sb, struct block_device *bdev,
77 struct page **res)
78{
79 const char *err;
80 struct cache_sb *s;
81 struct buffer_head *bh = __bread(bdev, 1, SB_SIZE);
82 unsigned i;
83
84 if (!bh)
85 return "IO error";
86
87 s = (struct cache_sb *) bh->b_data;
88
89 sb->offset = le64_to_cpu(s->offset);
90 sb->version = le64_to_cpu(s->version);
91
92 memcpy(sb->magic, s->magic, 16);
93 memcpy(sb->uuid, s->uuid, 16);
94 memcpy(sb->set_uuid, s->set_uuid, 16);
95 memcpy(sb->label, s->label, SB_LABEL_SIZE);
96
97 sb->flags = le64_to_cpu(s->flags);
98 sb->seq = le64_to_cpu(s->seq);
Kent Overstreetcafe5632013-03-23 16:11:31 -070099 sb->last_mount = le32_to_cpu(s->last_mount);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700100 sb->first_bucket = le16_to_cpu(s->first_bucket);
101 sb->keys = le16_to_cpu(s->keys);
102
103 for (i = 0; i < SB_JOURNAL_BUCKETS; i++)
104 sb->d[i] = le64_to_cpu(s->d[i]);
105
106 pr_debug("read sb version %llu, flags %llu, seq %llu, journal size %u",
107 sb->version, sb->flags, sb->seq, sb->keys);
108
109 err = "Not a bcache superblock";
110 if (sb->offset != SB_SECTOR)
111 goto err;
112
113 if (memcmp(sb->magic, bcache_magic, 16))
114 goto err;
115
116 err = "Too many journal buckets";
117 if (sb->keys > SB_JOURNAL_BUCKETS)
118 goto err;
119
120 err = "Bad checksum";
121 if (s->csum != csum_set(s))
122 goto err;
123
124 err = "Bad UUID";
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600125 if (bch_is_zero(sb->uuid, 16))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700126 goto err;
127
Kent Overstreet8abb2a52013-04-23 21:51:48 -0700128 sb->block_size = le16_to_cpu(s->block_size);
129
130 err = "Superblock block size smaller than device block size";
131 if (sb->block_size << 9 < bdev_logical_block_size(bdev))
132 goto err;
133
Kent Overstreet29033812013-04-11 15:14:35 -0700134 switch (sb->version) {
135 case BCACHE_SB_VERSION_BDEV:
Kent Overstreet29033812013-04-11 15:14:35 -0700136 sb->data_offset = BDEV_DATA_START_DEFAULT;
137 break;
138 case BCACHE_SB_VERSION_BDEV_WITH_OFFSET:
Kent Overstreet29033812013-04-11 15:14:35 -0700139 sb->data_offset = le64_to_cpu(s->data_offset);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700140
Kent Overstreet29033812013-04-11 15:14:35 -0700141 err = "Bad data offset";
142 if (sb->data_offset < BDEV_DATA_START_DEFAULT)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700143 goto err;
144
Kent Overstreet29033812013-04-11 15:14:35 -0700145 break;
146 case BCACHE_SB_VERSION_CDEV:
147 case BCACHE_SB_VERSION_CDEV_WITH_UUID:
148 sb->nbuckets = le64_to_cpu(s->nbuckets);
Kent Overstreet29033812013-04-11 15:14:35 -0700149 sb->bucket_size = le16_to_cpu(s->bucket_size);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700150
Kent Overstreet29033812013-04-11 15:14:35 -0700151 sb->nr_in_set = le16_to_cpu(s->nr_in_set);
152 sb->nr_this_dev = le16_to_cpu(s->nr_this_dev);
153
154 err = "Too many buckets";
155 if (sb->nbuckets > LONG_MAX)
156 goto err;
157
158 err = "Not enough buckets";
159 if (sb->nbuckets < 1 << 7)
160 goto err;
161
162 err = "Bad block/bucket size";
163 if (!is_power_of_2(sb->block_size) ||
164 sb->block_size > PAGE_SECTORS ||
165 !is_power_of_2(sb->bucket_size) ||
166 sb->bucket_size < PAGE_SECTORS)
167 goto err;
168
169 err = "Invalid superblock: device too small";
170 if (get_capacity(bdev->bd_disk) < sb->bucket_size * sb->nbuckets)
171 goto err;
172
173 err = "Bad UUID";
174 if (bch_is_zero(sb->set_uuid, 16))
175 goto err;
176
177 err = "Bad cache device number in set";
178 if (!sb->nr_in_set ||
179 sb->nr_in_set <= sb->nr_this_dev ||
180 sb->nr_in_set > MAX_CACHES_PER_SET)
181 goto err;
182
183 err = "Journal buckets not sequential";
184 for (i = 0; i < sb->keys; i++)
185 if (sb->d[i] != sb->first_bucket + i)
186 goto err;
187
188 err = "Too many journal buckets";
189 if (sb->first_bucket + sb->keys > sb->nbuckets)
190 goto err;
191
192 err = "Invalid superblock: first bucket comes before end of super";
193 if (sb->first_bucket * sb->bucket_size < 16)
194 goto err;
195
196 break;
197 default:
198 err = "Unsupported superblock version";
Kent Overstreetcafe5632013-03-23 16:11:31 -0700199 goto err;
Kent Overstreet29033812013-04-11 15:14:35 -0700200 }
201
Kent Overstreetcafe5632013-03-23 16:11:31 -0700202 sb->last_mount = get_seconds();
203 err = NULL;
204
205 get_page(bh->b_page);
206 *res = bh->b_page;
207err:
208 put_bh(bh);
209 return err;
210}
211
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200212static void write_bdev_super_endio(struct bio *bio)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700213{
214 struct cached_dev *dc = bio->bi_private;
215 /* XXX: error checking */
216
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800217 closure_put(&dc->sb_write);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700218}
219
220static void __write_super(struct cache_sb *sb, struct bio *bio)
221{
Ming Lei263663c2017-12-18 20:22:04 +0800222 struct cache_sb *out = page_address(bio_first_page_all(bio));
Kent Overstreetcafe5632013-03-23 16:11:31 -0700223 unsigned i;
224
Kent Overstreet4f024f32013-10-11 15:44:27 -0700225 bio->bi_iter.bi_sector = SB_SECTOR;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700226 bio->bi_iter.bi_size = SB_SIZE;
Mike Christiead0d9e72016-06-05 14:32:05 -0500227 bio_set_op_attrs(bio, REQ_OP_WRITE, REQ_SYNC|REQ_META);
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600228 bch_bio_map(bio, NULL);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700229
230 out->offset = cpu_to_le64(sb->offset);
231 out->version = cpu_to_le64(sb->version);
232
233 memcpy(out->uuid, sb->uuid, 16);
234 memcpy(out->set_uuid, sb->set_uuid, 16);
235 memcpy(out->label, sb->label, SB_LABEL_SIZE);
236
237 out->flags = cpu_to_le64(sb->flags);
238 out->seq = cpu_to_le64(sb->seq);
239
240 out->last_mount = cpu_to_le32(sb->last_mount);
241 out->first_bucket = cpu_to_le16(sb->first_bucket);
242 out->keys = cpu_to_le16(sb->keys);
243
244 for (i = 0; i < sb->keys; i++)
245 out->d[i] = cpu_to_le64(sb->d[i]);
246
247 out->csum = csum_set(out);
248
249 pr_debug("ver %llu, flags %llu, seq %llu",
250 sb->version, sb->flags, sb->seq);
251
Mike Christie4e49ea42016-06-05 14:31:41 -0500252 submit_bio(bio);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700253}
254
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800255static void bch_write_bdev_super_unlock(struct closure *cl)
256{
257 struct cached_dev *dc = container_of(cl, struct cached_dev, sb_write);
258
259 up(&dc->sb_write_mutex);
260}
261
Kent Overstreetcafe5632013-03-23 16:11:31 -0700262void bch_write_bdev_super(struct cached_dev *dc, struct closure *parent)
263{
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800264 struct closure *cl = &dc->sb_write;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700265 struct bio *bio = &dc->sb_bio;
266
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800267 down(&dc->sb_write_mutex);
268 closure_init(cl, parent);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700269
270 bio_reset(bio);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200271 bio_set_dev(bio, dc->bdev);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700272 bio->bi_end_io = write_bdev_super_endio;
273 bio->bi_private = dc;
274
275 closure_get(cl);
276 __write_super(&dc->sb, bio);
277
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800278 closure_return_with_destructor(cl, bch_write_bdev_super_unlock);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700279}
280
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200281static void write_super_endio(struct bio *bio)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700282{
283 struct cache *ca = bio->bi_private;
284
Coly Li5138ac62018-01-08 12:21:29 -0800285 /* is_read = 0 */
286 bch_count_io_errors(ca, bio->bi_status, 0,
287 "writing superblock");
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800288 closure_put(&ca->set->sb_write);
289}
290
291static void bcache_write_super_unlock(struct closure *cl)
292{
293 struct cache_set *c = container_of(cl, struct cache_set, sb_write);
294
295 up(&c->sb_write_mutex);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700296}
297
298void bcache_write_super(struct cache_set *c)
299{
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800300 struct closure *cl = &c->sb_write;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700301 struct cache *ca;
302 unsigned i;
303
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800304 down(&c->sb_write_mutex);
305 closure_init(cl, &c->cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700306
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);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200319 bio_set_dev(bio, ca->bdev);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700320 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
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800327 closure_return_with_destructor(cl, bcache_write_super_unlock);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700328}
329
330/* UUID io */
331
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200332static void uuid_endio(struct bio *bio)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700333{
334 struct closure *cl = bio->bi_private;
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800335 struct cache_set *c = container_of(cl, struct cache_set, uuid_write);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700336
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200337 cache_set_err_on(bio->bi_status, c, "accessing uuids");
Kent Overstreetcafe5632013-03-23 16:11:31 -0700338 bch_bbio_free(bio, c);
339 closure_put(cl);
340}
341
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800342static void uuid_io_unlock(struct closure *cl)
343{
344 struct cache_set *c = container_of(cl, struct cache_set, uuid_write);
345
346 up(&c->uuid_write_mutex);
347}
348
Mike Christiead0d9e72016-06-05 14:32:05 -0500349static void uuid_io(struct cache_set *c, int op, unsigned long op_flags,
Kent Overstreetcafe5632013-03-23 16:11:31 -0700350 struct bkey *k, struct closure *parent)
351{
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800352 struct closure *cl = &c->uuid_write;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700353 struct uuid_entry *u;
354 unsigned i;
Kent Overstreet85b14922013-05-14 20:33:16 -0700355 char buf[80];
Kent Overstreetcafe5632013-03-23 16:11:31 -0700356
357 BUG_ON(!parent);
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800358 down(&c->uuid_write_mutex);
359 closure_init(cl, parent);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700360
361 for (i = 0; i < KEY_PTRS(k); i++) {
362 struct bio *bio = bch_bbio_alloc(c);
363
Jens Axboe1eff9d32016-08-05 15:35:16 -0600364 bio->bi_opf = REQ_SYNC | REQ_META | op_flags;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700365 bio->bi_iter.bi_size = KEY_SIZE(k) << 9;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700366
367 bio->bi_end_io = uuid_endio;
368 bio->bi_private = cl;
Mike Christiead0d9e72016-06-05 14:32:05 -0500369 bio_set_op_attrs(bio, op, REQ_SYNC|REQ_META|op_flags);
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600370 bch_bio_map(bio, c->uuids);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700371
372 bch_submit_bbio(bio, c, k, i);
373
Mike Christiead0d9e72016-06-05 14:32:05 -0500374 if (op != REQ_OP_WRITE)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700375 break;
376 }
377
Kent Overstreetdc9d98d2013-12-17 23:47:33 -0800378 bch_extent_to_text(buf, sizeof(buf), k);
Mike Christiead0d9e72016-06-05 14:32:05 -0500379 pr_debug("%s UUIDs at %s", op == REQ_OP_WRITE ? "wrote" : "read", buf);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700380
381 for (u = c->uuids; u < c->uuids + c->nr_uuids; u++)
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600382 if (!bch_is_zero(u->uuid, 16))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700383 pr_debug("Slot %zi: %pU: %s: 1st: %u last: %u inv: %u",
384 u - c->uuids, u->uuid, u->label,
385 u->first_reg, u->last_reg, u->invalidated);
386
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800387 closure_return_with_destructor(cl, uuid_io_unlock);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700388}
389
390static char *uuid_read(struct cache_set *c, struct jset *j, struct closure *cl)
391{
392 struct bkey *k = &j->uuid_bucket;
393
Kent Overstreet65d45232013-12-20 17:22:05 -0800394 if (__bch_btree_ptr_invalid(c, k))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700395 return "bad uuid pointer";
396
397 bkey_copy(&c->uuid_bucket, k);
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600398 uuid_io(c, REQ_OP_READ, 0, k, cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700399
400 if (j->version < BCACHE_JSET_VERSION_UUIDv1) {
401 struct uuid_entry_v0 *u0 = (void *) c->uuids;
402 struct uuid_entry *u1 = (void *) c->uuids;
403 int i;
404
405 closure_sync(cl);
406
407 /*
408 * Since the new uuid entry is bigger than the old, we have to
409 * convert starting at the highest memory address and work down
410 * in order to do it in place
411 */
412
413 for (i = c->nr_uuids - 1;
414 i >= 0;
415 --i) {
416 memcpy(u1[i].uuid, u0[i].uuid, 16);
417 memcpy(u1[i].label, u0[i].label, 32);
418
419 u1[i].first_reg = u0[i].first_reg;
420 u1[i].last_reg = u0[i].last_reg;
421 u1[i].invalidated = u0[i].invalidated;
422
423 u1[i].flags = 0;
424 u1[i].sectors = 0;
425 }
426 }
427
428 return NULL;
429}
430
431static int __uuid_write(struct cache_set *c)
432{
433 BKEY_PADDED(key) k;
434 struct closure cl;
435 closure_init_stack(&cl);
436
437 lockdep_assert_held(&bch_register_lock);
438
Kent Overstreet78365412013-12-17 01:29:34 -0800439 if (bch_bucket_alloc_set(c, RESERVE_BTREE, &k.key, 1, true))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700440 return 1;
441
442 SET_KEY_SIZE(&k.key, c->sb.bucket_size);
Mike Christiead0d9e72016-06-05 14:32:05 -0500443 uuid_io(c, REQ_OP_WRITE, 0, &k.key, &cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700444 closure_sync(&cl);
445
446 bkey_copy(&c->uuid_bucket, &k.key);
Kent Overstreet3a3b6a42013-07-24 16:46:42 -0700447 bkey_put(c, &k.key);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700448 return 0;
449}
450
451int bch_uuid_write(struct cache_set *c)
452{
453 int ret = __uuid_write(c);
454
455 if (!ret)
456 bch_journal_meta(c, NULL);
457
458 return ret;
459}
460
461static struct uuid_entry *uuid_find(struct cache_set *c, const char *uuid)
462{
463 struct uuid_entry *u;
464
465 for (u = c->uuids;
466 u < c->uuids + c->nr_uuids; u++)
467 if (!memcmp(u->uuid, uuid, 16))
468 return u;
469
470 return NULL;
471}
472
473static struct uuid_entry *uuid_find_empty(struct cache_set *c)
474{
475 static const char zero_uuid[16] = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0";
476 return uuid_find(c, zero_uuid);
477}
478
479/*
480 * Bucket priorities/gens:
481 *
482 * For each bucket, we store on disk its
483 * 8 bit gen
484 * 16 bit priority
485 *
486 * See alloc.c for an explanation of the gen. The priority is used to implement
487 * lru (and in the future other) cache replacement policies; for most purposes
488 * it's just an opaque integer.
489 *
490 * The gens and the priorities don't have a whole lot to do with each other, and
491 * it's actually the gens that must be written out at specific times - it's no
492 * big deal if the priorities don't get written, if we lose them we just reuse
493 * buckets in suboptimal order.
494 *
495 * On disk they're stored in a packed array, and in as many buckets are required
496 * to fit them all. The buckets we use to store them form a list; the journal
497 * header points to the first bucket, the first bucket points to the second
498 * bucket, et cetera.
499 *
500 * This code is used by the allocation code; periodically (whenever it runs out
501 * of buckets to allocate from) the allocation code will invalidate some
502 * buckets, but it can't use those buckets until their new gens are safely on
503 * disk.
504 */
505
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200506static void prio_endio(struct bio *bio)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700507{
508 struct cache *ca = bio->bi_private;
509
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200510 cache_set_err_on(bio->bi_status, ca->set, "accessing priorities");
Kent Overstreetcafe5632013-03-23 16:11:31 -0700511 bch_bbio_free(bio, ca->set);
512 closure_put(&ca->prio);
513}
514
Mike Christiead0d9e72016-06-05 14:32:05 -0500515static void prio_io(struct cache *ca, uint64_t bucket, int op,
516 unsigned long op_flags)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700517{
518 struct closure *cl = &ca->prio;
519 struct bio *bio = bch_bbio_alloc(ca->set);
520
521 closure_init_stack(cl);
522
Kent Overstreet4f024f32013-10-11 15:44:27 -0700523 bio->bi_iter.bi_sector = bucket * ca->sb.bucket_size;
Christoph Hellwig74d46992017-08-23 19:10:32 +0200524 bio_set_dev(bio, ca->bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700525 bio->bi_iter.bi_size = bucket_bytes(ca);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700526
527 bio->bi_end_io = prio_endio;
528 bio->bi_private = ca;
Mike Christiead0d9e72016-06-05 14:32:05 -0500529 bio_set_op_attrs(bio, op, REQ_SYNC|REQ_META|op_flags);
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600530 bch_bio_map(bio, ca->disk_buckets);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700531
Coly Li771f3932018-03-18 17:36:17 -0700532 closure_bio_submit(ca->set, bio, &ca->prio);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700533 closure_sync(cl);
534}
535
Kent Overstreetcafe5632013-03-23 16:11:31 -0700536void bch_prio_write(struct cache *ca)
537{
538 int i;
539 struct bucket *b;
540 struct closure cl;
541
542 closure_init_stack(&cl);
543
544 lockdep_assert_held(&ca->set->bucket_lock);
545
Kent Overstreetcafe5632013-03-23 16:11:31 -0700546 ca->disk_buckets->seq++;
547
548 atomic_long_add(ca->sb.bucket_size * prio_buckets(ca),
549 &ca->meta_sectors_written);
550
Kent Overstreet78365412013-12-17 01:29:34 -0800551 //pr_debug("free %zu, free_inc %zu, unused %zu", fifo_used(&ca->free),
552 // fifo_used(&ca->free_inc), fifo_used(&ca->unused));
Kent Overstreetcafe5632013-03-23 16:11:31 -0700553
554 for (i = prio_buckets(ca) - 1; i >= 0; --i) {
555 long bucket;
556 struct prio_set *p = ca->disk_buckets;
Kent Overstreetb1a67b02013-03-25 11:46:44 -0700557 struct bucket_disk *d = p->data;
558 struct bucket_disk *end = d + prios_per_bucket(ca);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700559
560 for (b = ca->buckets + i * prios_per_bucket(ca);
561 b < ca->buckets + ca->sb.nbuckets && d < end;
562 b++, d++) {
563 d->prio = cpu_to_le16(b->prio);
564 d->gen = b->gen;
565 }
566
567 p->next_bucket = ca->prio_buckets[i + 1];
Kent Overstreet81ab4192013-10-31 15:46:42 -0700568 p->magic = pset_magic(&ca->sb);
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600569 p->csum = bch_crc64(&p->magic, bucket_bytes(ca) - 8);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700570
Kent Overstreet78365412013-12-17 01:29:34 -0800571 bucket = bch_bucket_alloc(ca, RESERVE_PRIO, true);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700572 BUG_ON(bucket == -1);
573
574 mutex_unlock(&ca->set->bucket_lock);
Mike Christiead0d9e72016-06-05 14:32:05 -0500575 prio_io(ca, bucket, REQ_OP_WRITE, 0);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700576 mutex_lock(&ca->set->bucket_lock);
577
578 ca->prio_buckets[i] = bucket;
579 atomic_dec_bug(&ca->buckets[bucket].pin);
580 }
581
582 mutex_unlock(&ca->set->bucket_lock);
583
584 bch_journal_meta(ca->set, &cl);
585 closure_sync(&cl);
586
587 mutex_lock(&ca->set->bucket_lock);
588
Kent Overstreetcafe5632013-03-23 16:11:31 -0700589 /*
590 * Don't want the old priorities to get garbage collected until after we
591 * finish writing the new ones, and they're journalled
592 */
Kent Overstreet2531d9ee2014-03-17 16:55:55 -0700593 for (i = 0; i < prio_buckets(ca); i++) {
594 if (ca->prio_last_buckets[i])
595 __bch_bucket_free(ca,
596 &ca->buckets[ca->prio_last_buckets[i]]);
597
Kent Overstreetcafe5632013-03-23 16:11:31 -0700598 ca->prio_last_buckets[i] = ca->prio_buckets[i];
Kent Overstreet2531d9ee2014-03-17 16:55:55 -0700599 }
Kent Overstreetcafe5632013-03-23 16:11:31 -0700600}
601
602static void prio_read(struct cache *ca, uint64_t bucket)
603{
604 struct prio_set *p = ca->disk_buckets;
605 struct bucket_disk *d = p->data + prios_per_bucket(ca), *end = d;
606 struct bucket *b;
607 unsigned bucket_nr = 0;
608
609 for (b = ca->buckets;
610 b < ca->buckets + ca->sb.nbuckets;
611 b++, d++) {
612 if (d == end) {
613 ca->prio_buckets[bucket_nr] = bucket;
614 ca->prio_last_buckets[bucket_nr] = bucket;
615 bucket_nr++;
616
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600617 prio_io(ca, bucket, REQ_OP_READ, 0);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700618
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600619 if (p->csum != bch_crc64(&p->magic, bucket_bytes(ca) - 8))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700620 pr_warn("bad csum reading priorities");
621
Kent Overstreet81ab4192013-10-31 15:46:42 -0700622 if (p->magic != pset_magic(&ca->sb))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700623 pr_warn("bad magic reading priorities");
624
625 bucket = p->next_bucket;
626 d = p->data;
627 }
628
629 b->prio = le16_to_cpu(d->prio);
Kent Overstreet3a2fd9d2014-02-27 17:51:12 -0800630 b->gen = b->last_gc = d->gen;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700631 }
632}
633
634/* Bcache device */
635
636static int open_dev(struct block_device *b, fmode_t mode)
637{
638 struct bcache_device *d = b->bd_disk->private_data;
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700639 if (test_bit(BCACHE_DEV_CLOSING, &d->flags))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700640 return -ENXIO;
641
642 closure_get(&d->cl);
643 return 0;
644}
645
Emil Goode867e1162013-05-09 22:39:26 +0200646static void release_dev(struct gendisk *b, fmode_t mode)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700647{
648 struct bcache_device *d = b->private_data;
649 closure_put(&d->cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700650}
651
652static int ioctl_dev(struct block_device *b, fmode_t mode,
653 unsigned int cmd, unsigned long arg)
654{
655 struct bcache_device *d = b->bd_disk->private_data;
656 return d->ioctl(d, mode, cmd, arg);
657}
658
659static const struct block_device_operations bcache_ops = {
660 .open = open_dev,
661 .release = release_dev,
662 .ioctl = ioctl_dev,
663 .owner = THIS_MODULE,
664};
665
666void bcache_device_stop(struct bcache_device *d)
667{
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700668 if (!test_and_set_bit(BCACHE_DEV_CLOSING, &d->flags))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700669 closure_queue(&d->cl);
670}
671
Kent Overstreetee668502013-02-01 07:29:41 -0800672static void bcache_device_unlink(struct bcache_device *d)
673{
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700674 lockdep_assert_held(&bch_register_lock);
Kent Overstreetee668502013-02-01 07:29:41 -0800675
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700676 if (d->c && !test_and_set_bit(BCACHE_DEV_UNLINK_DONE, &d->flags)) {
677 unsigned i;
678 struct cache *ca;
Kent Overstreetee668502013-02-01 07:29:41 -0800679
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700680 sysfs_remove_link(&d->c->kobj, d->name);
681 sysfs_remove_link(&d->kobj, "cache");
682
683 for_each_cache(ca, d->c, i)
684 bd_unlink_disk_holder(ca->bdev, d->disk);
685 }
Kent Overstreetee668502013-02-01 07:29:41 -0800686}
687
688static void bcache_device_link(struct bcache_device *d, struct cache_set *c,
689 const char *name)
690{
691 unsigned i;
692 struct cache *ca;
693
694 for_each_cache(ca, d->c, i)
695 bd_link_disk_holder(ca->bdev, d->disk);
696
697 snprintf(d->name, BCACHEDEVNAME_SIZE,
698 "%s%u", name, d->id);
699
700 WARN(sysfs_create_link(&d->kobj, &c->kobj, "cache") ||
701 sysfs_create_link(&c->kobj, &d->kobj, d->name),
702 "Couldn't create device <-> cache set symlinks");
Zheng Liufecaee62015-11-29 17:19:32 -0800703
704 clear_bit(BCACHE_DEV_UNLINK_DONE, &d->flags);
Kent Overstreetee668502013-02-01 07:29:41 -0800705}
706
Kent Overstreetcafe5632013-03-23 16:11:31 -0700707static void bcache_device_detach(struct bcache_device *d)
708{
709 lockdep_assert_held(&bch_register_lock);
710
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700711 if (test_bit(BCACHE_DEV_DETACHING, &d->flags)) {
Kent Overstreetcafe5632013-03-23 16:11:31 -0700712 struct uuid_entry *u = d->c->uuids + d->id;
713
714 SET_UUID_FLASH_ONLY(u, 0);
715 memcpy(u->uuid, invalid_uuid, 16);
716 u->invalidated = cpu_to_le32(get_seconds());
717 bch_uuid_write(d->c);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700718 }
719
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700720 bcache_device_unlink(d);
Kent Overstreetee668502013-02-01 07:29:41 -0800721
Kent Overstreetcafe5632013-03-23 16:11:31 -0700722 d->c->devices[d->id] = NULL;
723 closure_put(&d->c->caching);
724 d->c = NULL;
725}
726
727static void bcache_device_attach(struct bcache_device *d, struct cache_set *c,
728 unsigned id)
729{
Kent Overstreetcafe5632013-03-23 16:11:31 -0700730 d->id = id;
731 d->c = c;
732 c->devices[id] = d;
733
Coly Li28312312018-01-08 12:21:28 -0800734 if (id >= c->devices_max_used)
735 c->devices_max_used = id + 1;
736
Kent Overstreetcafe5632013-03-23 16:11:31 -0700737 closure_get(&c->caching);
738}
739
Coly Li1dbe32a2017-10-13 16:35:31 -0700740static inline int first_minor_to_idx(int first_minor)
741{
742 return (first_minor/BCACHE_MINORS);
743}
744
745static inline int idx_to_first_minor(int idx)
746{
747 return (idx * BCACHE_MINORS);
748}
749
Kent Overstreetcafe5632013-03-23 16:11:31 -0700750static void bcache_device_free(struct bcache_device *d)
751{
752 lockdep_assert_held(&bch_register_lock);
753
754 pr_info("%s stopped", d->disk->disk_name);
755
756 if (d->c)
757 bcache_device_detach(d);
Kent Overstreetf59fce82013-05-15 00:11:26 -0700758 if (d->disk && d->disk->flags & GENHD_FL_UP)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700759 del_gendisk(d->disk);
760 if (d->disk && d->disk->queue)
761 blk_cleanup_queue(d->disk->queue);
Kent Overstreet28935ab2013-07-31 01:12:02 -0700762 if (d->disk) {
Coly Li1dbe32a2017-10-13 16:35:31 -0700763 ida_simple_remove(&bcache_device_idx,
764 first_minor_to_idx(d->disk->first_minor));
Kent Overstreetcafe5632013-03-23 16:11:31 -0700765 put_disk(d->disk);
Kent Overstreet28935ab2013-07-31 01:12:02 -0700766 }
Kent Overstreetcafe5632013-03-23 16:11:31 -0700767
Kent Overstreetcafe5632013-03-23 16:11:31 -0700768 if (d->bio_split)
769 bioset_free(d->bio_split);
Pekka Enberg958b4332015-06-30 14:59:30 -0700770 kvfree(d->full_dirty_stripes);
771 kvfree(d->stripe_sectors_dirty);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700772
773 closure_debug_destroy(&d->cl);
774}
775
Kent Overstreet279afba2013-06-05 06:21:07 -0700776static int bcache_device_init(struct bcache_device *d, unsigned block_size,
777 sector_t sectors)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700778{
779 struct request_queue *q;
Kent Overstreet279afba2013-06-05 06:21:07 -0700780 size_t n;
Coly Li1dbe32a2017-10-13 16:35:31 -0700781 int idx;
Kent Overstreet279afba2013-06-05 06:21:07 -0700782
Kent Overstreet2d679fc2013-08-17 02:13:15 -0700783 if (!d->stripe_size)
784 d->stripe_size = 1 << 31;
Kent Overstreet279afba2013-06-05 06:21:07 -0700785
Kent Overstreet2d679fc2013-08-17 02:13:15 -0700786 d->nr_stripes = DIV_ROUND_UP_ULL(sectors, d->stripe_size);
Kent Overstreet279afba2013-06-05 06:21:07 -0700787
Kent Overstreet48a915a2013-10-31 15:43:22 -0700788 if (!d->nr_stripes ||
789 d->nr_stripes > INT_MAX ||
790 d->nr_stripes > SIZE_MAX / sizeof(atomic_t)) {
Eric Wheeler90706092016-08-18 20:15:26 -0700791 pr_err("nr_stripes too large or invalid: %u (start sector beyond end of disk?)",
792 (unsigned)d->nr_stripes);
Kent Overstreet279afba2013-06-05 06:21:07 -0700793 return -ENOMEM;
Kent Overstreet48a915a2013-10-31 15:43:22 -0700794 }
Kent Overstreet279afba2013-06-05 06:21:07 -0700795
796 n = d->nr_stripes * sizeof(atomic_t);
Michal Hockobc4e54f2017-05-08 15:57:37 -0700797 d->stripe_sectors_dirty = kvzalloc(n, GFP_KERNEL);
Kent Overstreet279afba2013-06-05 06:21:07 -0700798 if (!d->stripe_sectors_dirty)
799 return -ENOMEM;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700800
Kent Overstreet48a915a2013-10-31 15:43:22 -0700801 n = BITS_TO_LONGS(d->nr_stripes) * sizeof(unsigned long);
Michal Hockobc4e54f2017-05-08 15:57:37 -0700802 d->full_dirty_stripes = kvzalloc(n, GFP_KERNEL);
Kent Overstreet48a915a2013-10-31 15:43:22 -0700803 if (!d->full_dirty_stripes)
804 return -ENOMEM;
805
Coly Li1dbe32a2017-10-13 16:35:31 -0700806 idx = ida_simple_get(&bcache_device_idx, 0,
807 BCACHE_DEVICE_IDX_MAX, GFP_KERNEL);
808 if (idx < 0)
809 return idx;
Eric Wheelerb8c0d912016-10-23 18:19:20 -0700810
NeilBrown47e0fb42017-06-18 14:38:57 +1000811 if (!(d->bio_split = bioset_create(4, offsetof(struct bbio, bio),
812 BIOSET_NEED_BVECS |
813 BIOSET_NEED_RESCUER)) ||
Eric Wheelerb8c0d912016-10-23 18:19:20 -0700814 !(d->disk = alloc_disk(BCACHE_MINORS))) {
Coly Li1dbe32a2017-10-13 16:35:31 -0700815 ida_simple_remove(&bcache_device_idx, idx);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700816 return -ENOMEM;
Kent Overstreet28935ab2013-07-31 01:12:02 -0700817 }
Kent Overstreetcafe5632013-03-23 16:11:31 -0700818
Kent Overstreet279afba2013-06-05 06:21:07 -0700819 set_capacity(d->disk, sectors);
Coly Li1dbe32a2017-10-13 16:35:31 -0700820 snprintf(d->disk->disk_name, DISK_NAME_LEN, "bcache%i", idx);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700821
822 d->disk->major = bcache_major;
Coly Li1dbe32a2017-10-13 16:35:31 -0700823 d->disk->first_minor = idx_to_first_minor(idx);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700824 d->disk->fops = &bcache_ops;
825 d->disk->private_data = d;
826
Kent Overstreet28935ab2013-07-31 01:12:02 -0700827 q = blk_alloc_queue(GFP_KERNEL);
828 if (!q)
829 return -ENOMEM;
830
Kent Overstreetcafe5632013-03-23 16:11:31 -0700831 blk_queue_make_request(q, NULL);
832 d->disk->queue = q;
833 q->queuedata = d;
Jan Karadc3b17c2017-02-02 15:56:50 +0100834 q->backing_dev_info->congested_data = d;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700835 q->limits.max_hw_sectors = UINT_MAX;
836 q->limits.max_sectors = UINT_MAX;
837 q->limits.max_segment_size = UINT_MAX;
838 q->limits.max_segments = BIO_MAX_PAGES;
Jens Axboe2bb4cd52015-07-14 08:15:12 -0600839 blk_queue_max_discard_sectors(q, UINT_MAX);
Kent Overstreet90db6912014-02-10 17:26:40 -0800840 q->limits.discard_granularity = 512;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700841 q->limits.io_min = block_size;
842 q->limits.logical_block_size = block_size;
843 q->limits.physical_block_size = block_size;
Bart Van Assche44e1ebe2018-03-07 17:10:07 -0800844 blk_queue_flag_set(QUEUE_FLAG_NONROT, d->disk->queue);
845 blk_queue_flag_clear(QUEUE_FLAG_ADD_RANDOM, d->disk->queue);
846 blk_queue_flag_set(QUEUE_FLAG_DISCARD, d->disk->queue);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700847
Jens Axboe84b4ff92016-03-30 10:13:22 -0600848 blk_queue_write_cache(q, true, true);
Kent Overstreet54d12f22013-07-10 18:44:40 -0700849
Kent Overstreetcafe5632013-03-23 16:11:31 -0700850 return 0;
851}
852
853/* Cached device */
854
855static void calc_cached_dev_sectors(struct cache_set *c)
856{
857 uint64_t sectors = 0;
858 struct cached_dev *dc;
859
860 list_for_each_entry(dc, &c->cached_devs, list)
861 sectors += bdev_sectors(dc->bdev);
862
863 c->cached_dev_sectors = sectors;
864}
865
866void bch_cached_dev_run(struct cached_dev *dc)
867{
868 struct bcache_device *d = &dc->disk;
Gabriel de Perthuisab9e1402013-06-09 00:54:48 +0200869 char buf[SB_LABEL_SIZE + 1];
Gabriel de Perthuisa25c32b2013-06-07 23:27:01 +0200870 char *env[] = {
871 "DRIVER=bcache",
872 kasprintf(GFP_KERNEL, "CACHED_UUID=%pU", dc->sb.uuid),
Gabriel de Perthuisab9e1402013-06-09 00:54:48 +0200873 NULL,
874 NULL,
Gabriel de Perthuisa25c32b2013-06-07 23:27:01 +0200875 };
Kent Overstreetcafe5632013-03-23 16:11:31 -0700876
Gabriel de Perthuisab9e1402013-06-09 00:54:48 +0200877 memcpy(buf, dc->sb.label, SB_LABEL_SIZE);
878 buf[SB_LABEL_SIZE] = '\0';
879 env[2] = kasprintf(GFP_KERNEL, "CACHED_LABEL=%s", buf);
880
Al Viro4d4d8572015-11-29 17:20:59 -0800881 if (atomic_xchg(&dc->running, 1)) {
882 kfree(env[1]);
883 kfree(env[2]);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700884 return;
Al Viro4d4d8572015-11-29 17:20:59 -0800885 }
Kent Overstreetcafe5632013-03-23 16:11:31 -0700886
887 if (!d->c &&
888 BDEV_STATE(&dc->sb) != BDEV_STATE_NONE) {
889 struct closure cl;
890 closure_init_stack(&cl);
891
892 SET_BDEV_STATE(&dc->sb, BDEV_STATE_STALE);
893 bch_write_bdev_super(dc, &cl);
894 closure_sync(&cl);
895 }
896
897 add_disk(d->disk);
Kent Overstreetee668502013-02-01 07:29:41 -0800898 bd_link_disk_holder(dc->bdev, dc->disk.disk);
Gabriel de Perthuisa25c32b2013-06-07 23:27:01 +0200899 /* won't show up in the uevent file, use udevadm monitor -e instead
900 * only class / kset properties are persistent */
Kent Overstreetcafe5632013-03-23 16:11:31 -0700901 kobject_uevent_env(&disk_to_dev(d->disk)->kobj, KOBJ_CHANGE, env);
Gabriel de Perthuisa25c32b2013-06-07 23:27:01 +0200902 kfree(env[1]);
Gabriel de Perthuisab9e1402013-06-09 00:54:48 +0200903 kfree(env[2]);
Gabriel de Perthuisa25c32b2013-06-07 23:27:01 +0200904
Kent Overstreetcafe5632013-03-23 16:11:31 -0700905 if (sysfs_create_link(&d->kobj, &disk_to_dev(d->disk)->kobj, "dev") ||
906 sysfs_create_link(&disk_to_dev(d->disk)->kobj, &d->kobj, "bcache"))
907 pr_debug("error creating sysfs link");
908}
909
Coly Li3fd47bf2018-03-18 17:36:16 -0700910/*
911 * If BCACHE_DEV_RATE_DW_RUNNING is set, it means routine of the delayed
912 * work dc->writeback_rate_update is running. Wait until the routine
913 * quits (BCACHE_DEV_RATE_DW_RUNNING is clear), then continue to
914 * cancel it. If BCACHE_DEV_RATE_DW_RUNNING is not clear after time_out
915 * seconds, give up waiting here and continue to cancel it too.
916 */
917static void cancel_writeback_rate_update_dwork(struct cached_dev *dc)
918{
919 int time_out = WRITEBACK_RATE_UPDATE_SECS_MAX * HZ;
920
921 do {
922 if (!test_bit(BCACHE_DEV_RATE_DW_RUNNING,
923 &dc->disk.flags))
924 break;
925 time_out--;
926 schedule_timeout_interruptible(1);
927 } while (time_out > 0);
928
929 if (time_out == 0)
930 pr_warn("give up waiting for dc->writeback_write_update to quit");
931
932 cancel_delayed_work_sync(&dc->writeback_rate_update);
933}
934
Kent Overstreetcafe5632013-03-23 16:11:31 -0700935static void cached_dev_detach_finish(struct work_struct *w)
936{
937 struct cached_dev *dc = container_of(w, struct cached_dev, detach);
938 char buf[BDEVNAME_SIZE];
939 struct closure cl;
940 closure_init_stack(&cl);
941
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700942 BUG_ON(!test_bit(BCACHE_DEV_DETACHING, &dc->disk.flags));
Elena Reshetova3b304d22017-10-30 14:46:32 -0700943 BUG_ON(refcount_read(&dc->count));
Kent Overstreetcafe5632013-03-23 16:11:31 -0700944
Kent Overstreetcafe5632013-03-23 16:11:31 -0700945 mutex_lock(&bch_register_lock);
946
Coly Li3fd47bf2018-03-18 17:36:16 -0700947 if (test_and_clear_bit(BCACHE_DEV_WB_RUNNING, &dc->disk.flags))
948 cancel_writeback_rate_update_dwork(dc);
949
Tang Junhui8d29c442018-01-08 12:21:19 -0800950 if (!IS_ERR_OR_NULL(dc->writeback_thread)) {
951 kthread_stop(dc->writeback_thread);
952 dc->writeback_thread = NULL;
953 }
954
Kent Overstreetcafe5632013-03-23 16:11:31 -0700955 memset(&dc->sb.set_uuid, 0, 16);
956 SET_BDEV_STATE(&dc->sb, BDEV_STATE_NONE);
957
958 bch_write_bdev_super(dc, &cl);
959 closure_sync(&cl);
960
961 bcache_device_detach(&dc->disk);
962 list_move(&dc->list, &uncached_devices);
963
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700964 clear_bit(BCACHE_DEV_DETACHING, &dc->disk.flags);
Kent Overstreet5b1016e2014-03-19 17:49:37 -0700965 clear_bit(BCACHE_DEV_UNLINK_DONE, &dc->disk.flags);
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700966
Kent Overstreetcafe5632013-03-23 16:11:31 -0700967 mutex_unlock(&bch_register_lock);
968
969 pr_info("Caching disabled for %s", bdevname(dc->bdev, buf));
970
971 /* Drop ref we took in cached_dev_detach() */
972 closure_put(&dc->disk.cl);
973}
974
975void bch_cached_dev_detach(struct cached_dev *dc)
976{
977 lockdep_assert_held(&bch_register_lock);
978
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700979 if (test_bit(BCACHE_DEV_CLOSING, &dc->disk.flags))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700980 return;
981
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700982 if (test_and_set_bit(BCACHE_DEV_DETACHING, &dc->disk.flags))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700983 return;
984
985 /*
986 * Block the device from being closed and freed until we're finished
987 * detaching
988 */
989 closure_get(&dc->disk.cl);
990
991 bch_writeback_queue(dc);
Coly Li3fd47bf2018-03-18 17:36:16 -0700992
Kent Overstreetcafe5632013-03-23 16:11:31 -0700993 cached_dev_put(dc);
994}
995
Tang Junhui73ac1052018-02-07 11:41:46 -0800996int bch_cached_dev_attach(struct cached_dev *dc, struct cache_set *c,
997 uint8_t *set_uuid)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700998{
999 uint32_t rtime = cpu_to_le32(get_seconds());
1000 struct uuid_entry *u;
1001 char buf[BDEVNAME_SIZE];
1002
1003 bdevname(dc->bdev, buf);
1004
Tang Junhui73ac1052018-02-07 11:41:46 -08001005 if ((set_uuid && memcmp(set_uuid, c->sb.set_uuid, 16)) ||
1006 (!set_uuid && memcmp(dc->sb.set_uuid, c->sb.set_uuid, 16)))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001007 return -ENOENT;
1008
1009 if (dc->disk.c) {
1010 pr_err("Can't attach %s: already attached", buf);
1011 return -EINVAL;
1012 }
1013
1014 if (test_bit(CACHE_SET_STOPPING, &c->flags)) {
1015 pr_err("Can't attach %s: shutting down", buf);
1016 return -EINVAL;
1017 }
1018
1019 if (dc->sb.block_size < c->sb.block_size) {
1020 /* Will die */
Kent Overstreetb1a67b02013-03-25 11:46:44 -07001021 pr_err("Couldn't attach %s: block size less than set's block size",
1022 buf);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001023 return -EINVAL;
1024 }
1025
1026 u = uuid_find(c, dc->sb.uuid);
1027
1028 if (u &&
1029 (BDEV_STATE(&dc->sb) == BDEV_STATE_STALE ||
1030 BDEV_STATE(&dc->sb) == BDEV_STATE_NONE)) {
1031 memcpy(u->uuid, invalid_uuid, 16);
1032 u->invalidated = cpu_to_le32(get_seconds());
1033 u = NULL;
1034 }
1035
1036 if (!u) {
1037 if (BDEV_STATE(&dc->sb) == BDEV_STATE_DIRTY) {
1038 pr_err("Couldn't find uuid for %s in set", buf);
1039 return -ENOENT;
1040 }
1041
1042 u = uuid_find_empty(c);
1043 if (!u) {
1044 pr_err("Not caching %s, no room for UUID", buf);
1045 return -EINVAL;
1046 }
1047 }
1048
1049 /* Deadlocks since we're called via sysfs...
1050 sysfs_remove_file(&dc->kobj, &sysfs_attach);
1051 */
1052
Kent Overstreet169ef1c2013-03-28 12:50:55 -06001053 if (bch_is_zero(u->uuid, 16)) {
Kent Overstreetcafe5632013-03-23 16:11:31 -07001054 struct closure cl;
1055 closure_init_stack(&cl);
1056
1057 memcpy(u->uuid, dc->sb.uuid, 16);
1058 memcpy(u->label, dc->sb.label, SB_LABEL_SIZE);
1059 u->first_reg = u->last_reg = rtime;
1060 bch_uuid_write(c);
1061
1062 memcpy(dc->sb.set_uuid, c->sb.set_uuid, 16);
1063 SET_BDEV_STATE(&dc->sb, BDEV_STATE_CLEAN);
1064
1065 bch_write_bdev_super(dc, &cl);
1066 closure_sync(&cl);
1067 } else {
1068 u->last_reg = rtime;
1069 bch_uuid_write(c);
1070 }
1071
1072 bcache_device_attach(&dc->disk, c, u - c->uuids);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001073 list_move(&dc->list, &c->cached_devs);
1074 calc_cached_dev_sectors(c);
1075
1076 smp_wmb();
1077 /*
1078 * dc->c must be set before dc->count != 0 - paired with the mb in
1079 * cached_dev_get()
1080 */
Elena Reshetova3b304d22017-10-30 14:46:32 -07001081 refcount_set(&dc->count, 1);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001082
Eric Wheeler07cc6ef82016-02-26 14:39:06 -08001083 /* Block writeback thread, but spawn it */
1084 down_write(&dc->writeback_lock);
1085 if (bch_cached_dev_writeback_start(dc)) {
1086 up_write(&dc->writeback_lock);
Slava Pestov9e5c3532014-05-01 13:48:57 -07001087 return -ENOMEM;
Eric Wheeler07cc6ef82016-02-26 14:39:06 -08001088 }
Slava Pestov9e5c3532014-05-01 13:48:57 -07001089
Kent Overstreetcafe5632013-03-23 16:11:31 -07001090 if (BDEV_STATE(&dc->sb) == BDEV_STATE_DIRTY) {
Tang Junhui175206c2017-09-07 01:28:53 +08001091 bch_sectors_dirty_init(&dc->disk);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001092 atomic_set(&dc->has_dirty, 1);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001093 bch_writeback_queue(dc);
1094 }
1095
1096 bch_cached_dev_run(dc);
Kent Overstreetee668502013-02-01 07:29:41 -08001097 bcache_device_link(&dc->disk, c, "bdev");
Kent Overstreetcafe5632013-03-23 16:11:31 -07001098
Eric Wheeler07cc6ef82016-02-26 14:39:06 -08001099 /* Allow the writeback thread to proceed */
1100 up_write(&dc->writeback_lock);
1101
Kent Overstreetcafe5632013-03-23 16:11:31 -07001102 pr_info("Caching %s as %s on set %pU",
1103 bdevname(dc->bdev, buf), dc->disk.disk->disk_name,
1104 dc->disk.c->sb.set_uuid);
1105 return 0;
1106}
1107
1108void bch_cached_dev_release(struct kobject *kobj)
1109{
1110 struct cached_dev *dc = container_of(kobj, struct cached_dev,
1111 disk.kobj);
1112 kfree(dc);
1113 module_put(THIS_MODULE);
1114}
1115
1116static void cached_dev_free(struct closure *cl)
1117{
1118 struct cached_dev *dc = container_of(cl, struct cached_dev, disk.cl);
1119
Coly Li3fd47bf2018-03-18 17:36:16 -07001120 mutex_lock(&bch_register_lock);
1121
1122 if (test_and_clear_bit(BCACHE_DEV_WB_RUNNING, &dc->disk.flags))
1123 cancel_writeback_rate_update_dwork(dc);
1124
Slava Pestova664d0f2014-05-20 12:20:28 -07001125 if (!IS_ERR_OR_NULL(dc->writeback_thread))
1126 kthread_stop(dc->writeback_thread);
Tang Junhui9baf3092017-09-06 14:25:59 +08001127 if (dc->writeback_write_wq)
1128 destroy_workqueue(dc->writeback_write_wq);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001129
Kent Overstreetf59fce82013-05-15 00:11:26 -07001130 if (atomic_read(&dc->running))
1131 bd_unlink_disk_holder(dc->bdev, dc->disk.disk);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001132 bcache_device_free(&dc->disk);
1133 list_del(&dc->list);
1134
1135 mutex_unlock(&bch_register_lock);
1136
Kent Overstreet0781c872014-07-07 13:03:36 -07001137 if (!IS_ERR_OR_NULL(dc->bdev))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001138 blkdev_put(dc->bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001139
1140 wake_up(&unregister_wait);
1141
1142 kobject_put(&dc->disk.kobj);
1143}
1144
1145static void cached_dev_flush(struct closure *cl)
1146{
1147 struct cached_dev *dc = container_of(cl, struct cached_dev, disk.cl);
1148 struct bcache_device *d = &dc->disk;
1149
Kent Overstreetc9502ea2013-07-10 21:25:02 -07001150 mutex_lock(&bch_register_lock);
Kent Overstreetc4d951d2013-08-21 17:49:09 -07001151 bcache_device_unlink(d);
Kent Overstreetc9502ea2013-07-10 21:25:02 -07001152 mutex_unlock(&bch_register_lock);
1153
Kent Overstreetcafe5632013-03-23 16:11:31 -07001154 bch_cache_accounting_destroy(&dc->accounting);
1155 kobject_del(&d->kobj);
1156
1157 continue_at(cl, cached_dev_free, system_wq);
1158}
1159
1160static int cached_dev_init(struct cached_dev *dc, unsigned block_size)
1161{
Kent Overstreetf59fce82013-05-15 00:11:26 -07001162 int ret;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001163 struct io *io;
Kent Overstreetf59fce82013-05-15 00:11:26 -07001164 struct request_queue *q = bdev_get_queue(dc->bdev);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001165
1166 __module_get(THIS_MODULE);
1167 INIT_LIST_HEAD(&dc->list);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001168 closure_init(&dc->disk.cl, NULL);
1169 set_closure_fn(&dc->disk.cl, cached_dev_flush, system_wq);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001170 kobject_init(&dc->disk.kobj, &bch_cached_dev_ktype);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001171 INIT_WORK(&dc->detach, cached_dev_detach_finish);
Kent Overstreetcb7a5832013-12-16 15:27:25 -08001172 sema_init(&dc->sb_write_mutex, 1);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001173 INIT_LIST_HEAD(&dc->io_lru);
1174 spin_lock_init(&dc->io_lock);
1175 bch_cache_accounting_init(&dc->accounting, &dc->disk.cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001176
Kent Overstreetcafe5632013-03-23 16:11:31 -07001177 dc->sequential_cutoff = 4 << 20;
1178
Kent Overstreetcafe5632013-03-23 16:11:31 -07001179 for (io = dc->io; io < dc->io + RECENT_IO; io++) {
1180 list_add(&io->lru, &dc->io_lru);
1181 hlist_add_head(&io->hash, dc->io_hash + RECENT_IO);
1182 }
1183
Kent Overstreetc78afc62013-07-11 22:39:53 -07001184 dc->disk.stripe_size = q->limits.io_opt >> 9;
1185
1186 if (dc->disk.stripe_size)
1187 dc->partial_stripes_expensive =
1188 q->limits.raid_partial_stripes_expensive;
1189
Kent Overstreet279afba2013-06-05 06:21:07 -07001190 ret = bcache_device_init(&dc->disk, block_size,
1191 dc->bdev->bd_part->nr_sects - dc->sb.data_offset);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001192 if (ret)
1193 return ret;
1194
Jan Karadc3b17c2017-02-02 15:56:50 +01001195 dc->disk.disk->queue->backing_dev_info->ra_pages =
1196 max(dc->disk.disk->queue->backing_dev_info->ra_pages,
1197 q->backing_dev_info->ra_pages);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001198
Coly Li7e027ca2018-03-18 17:36:18 -07001199 /* default to auto */
1200 dc->stop_when_cache_set_failed = BCH_CACHED_DEV_STOP_AUTO;
1201
Kent Overstreetf59fce82013-05-15 00:11:26 -07001202 bch_cached_dev_request_init(dc);
1203 bch_cached_dev_writeback_init(dc);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001204 return 0;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001205}
1206
1207/* Cached device - bcache superblock */
1208
Kent Overstreetf59fce82013-05-15 00:11:26 -07001209static void register_bdev(struct cache_sb *sb, struct page *sb_page,
Kent Overstreetcafe5632013-03-23 16:11:31 -07001210 struct block_device *bdev,
1211 struct cached_dev *dc)
1212{
1213 char name[BDEVNAME_SIZE];
1214 const char *err = "cannot allocate memory";
Kent Overstreetcafe5632013-03-23 16:11:31 -07001215 struct cache_set *c;
1216
Kent Overstreetcafe5632013-03-23 16:11:31 -07001217 memcpy(&dc->sb, sb, sizeof(struct cache_sb));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001218 dc->bdev = bdev;
1219 dc->bdev->bd_holder = dc;
1220
Ming Lei3a83f462016-11-22 08:57:21 -07001221 bio_init(&dc->sb_bio, dc->sb_bio.bi_inline_vecs, 1);
Ming Lei263663c2017-12-18 20:22:04 +08001222 bio_first_bvec_all(&dc->sb_bio)->bv_page = sb_page;
Kent Overstreetf59fce82013-05-15 00:11:26 -07001223 get_page(sb_page);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001224
Kent Overstreetf59fce82013-05-15 00:11:26 -07001225 if (cached_dev_init(dc, sb->block_size << 9))
1226 goto err;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001227
1228 err = "error creating kobject";
1229 if (kobject_add(&dc->disk.kobj, &part_to_dev(bdev->bd_part)->kobj,
1230 "bcache"))
1231 goto err;
1232 if (bch_cache_accounting_add_kobjs(&dc->accounting, &dc->disk.kobj))
1233 goto err;
1234
Kent Overstreetf59fce82013-05-15 00:11:26 -07001235 pr_info("registered backing device %s", bdevname(bdev, name));
1236
Kent Overstreetcafe5632013-03-23 16:11:31 -07001237 list_add(&dc->list, &uncached_devices);
1238 list_for_each_entry(c, &bch_cache_sets, list)
Tang Junhui73ac1052018-02-07 11:41:46 -08001239 bch_cached_dev_attach(dc, c, NULL);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001240
1241 if (BDEV_STATE(&dc->sb) == BDEV_STATE_NONE ||
1242 BDEV_STATE(&dc->sb) == BDEV_STATE_STALE)
1243 bch_cached_dev_run(dc);
1244
Kent Overstreetf59fce82013-05-15 00:11:26 -07001245 return;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001246err:
Kent Overstreetcafe5632013-03-23 16:11:31 -07001247 pr_notice("error opening %s: %s", bdevname(bdev, name), err);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001248 bcache_device_stop(&dc->disk);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001249}
1250
1251/* Flash only volumes */
1252
1253void bch_flash_dev_release(struct kobject *kobj)
1254{
1255 struct bcache_device *d = container_of(kobj, struct bcache_device,
1256 kobj);
1257 kfree(d);
1258}
1259
1260static void flash_dev_free(struct closure *cl)
1261{
1262 struct bcache_device *d = container_of(cl, struct bcache_device, cl);
Slava Pestove5112202014-04-29 15:39:27 -07001263 mutex_lock(&bch_register_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001264 bcache_device_free(d);
Slava Pestove5112202014-04-29 15:39:27 -07001265 mutex_unlock(&bch_register_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001266 kobject_put(&d->kobj);
1267}
1268
1269static void flash_dev_flush(struct closure *cl)
1270{
1271 struct bcache_device *d = container_of(cl, struct bcache_device, cl);
1272
Slava Pestove5112202014-04-29 15:39:27 -07001273 mutex_lock(&bch_register_lock);
Kent Overstreetee668502013-02-01 07:29:41 -08001274 bcache_device_unlink(d);
Slava Pestove5112202014-04-29 15:39:27 -07001275 mutex_unlock(&bch_register_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001276 kobject_del(&d->kobj);
1277 continue_at(cl, flash_dev_free, system_wq);
1278}
1279
1280static int flash_dev_run(struct cache_set *c, struct uuid_entry *u)
1281{
1282 struct bcache_device *d = kzalloc(sizeof(struct bcache_device),
1283 GFP_KERNEL);
1284 if (!d)
1285 return -ENOMEM;
1286
1287 closure_init(&d->cl, NULL);
1288 set_closure_fn(&d->cl, flash_dev_flush, system_wq);
1289
1290 kobject_init(&d->kobj, &bch_flash_dev_ktype);
1291
Kent Overstreet279afba2013-06-05 06:21:07 -07001292 if (bcache_device_init(d, block_bytes(c), u->sectors))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001293 goto err;
1294
1295 bcache_device_attach(d, c, u - c->uuids);
Tang Junhui175206c2017-09-07 01:28:53 +08001296 bch_sectors_dirty_init(d);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001297 bch_flash_dev_request_init(d);
1298 add_disk(d->disk);
1299
1300 if (kobject_add(&d->kobj, &disk_to_dev(d->disk)->kobj, "bcache"))
1301 goto err;
1302
1303 bcache_device_link(d, c, "volume");
1304
1305 return 0;
1306err:
1307 kobject_put(&d->kobj);
1308 return -ENOMEM;
1309}
1310
1311static int flash_devs_run(struct cache_set *c)
1312{
1313 int ret = 0;
1314 struct uuid_entry *u;
1315
1316 for (u = c->uuids;
Coly Li02aa8a82018-02-27 09:49:29 -08001317 u < c->uuids + c->nr_uuids && !ret;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001318 u++)
1319 if (UUID_FLASH_ONLY(u))
1320 ret = flash_dev_run(c, u);
1321
1322 return ret;
1323}
1324
1325int bch_flash_dev_create(struct cache_set *c, uint64_t size)
1326{
1327 struct uuid_entry *u;
1328
1329 if (test_bit(CACHE_SET_STOPPING, &c->flags))
1330 return -EINTR;
1331
Slava Pestovbf0c55c2014-07-11 12:17:41 -07001332 if (!test_bit(CACHE_SET_RUNNING, &c->flags))
1333 return -EPERM;
1334
Kent Overstreetcafe5632013-03-23 16:11:31 -07001335 u = uuid_find_empty(c);
1336 if (!u) {
1337 pr_err("Can't create volume, no room for UUID");
1338 return -EINVAL;
1339 }
1340
1341 get_random_bytes(u->uuid, 16);
1342 memset(u->label, 0, 32);
1343 u->first_reg = u->last_reg = cpu_to_le32(get_seconds());
1344
1345 SET_UUID_FLASH_ONLY(u, 1);
1346 u->sectors = size >> 9;
1347
1348 bch_uuid_write(c);
1349
1350 return flash_dev_run(c, u);
1351}
1352
1353/* Cache set */
1354
1355__printf(2, 3)
1356bool bch_cache_set_error(struct cache_set *c, const char *fmt, ...)
1357{
1358 va_list args;
1359
Kent Overstreet77c320e2013-07-11 19:42:51 -07001360 if (c->on_error != ON_ERROR_PANIC &&
1361 test_bit(CACHE_SET_STOPPING, &c->flags))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001362 return false;
1363
Coly Li771f3932018-03-18 17:36:17 -07001364 if (test_and_set_bit(CACHE_SET_IO_DISABLE, &c->flags))
1365 pr_warn("CACHE_SET_IO_DISABLE already set");
1366
Kent Overstreetcafe5632013-03-23 16:11:31 -07001367 /* XXX: we can be called from atomic context
1368 acquire_console_sem();
1369 */
1370
1371 printk(KERN_ERR "bcache: error on %pU: ", c->sb.set_uuid);
1372
1373 va_start(args, fmt);
1374 vprintk(fmt, args);
1375 va_end(args);
1376
1377 printk(", disabling caching\n");
1378
Kent Overstreet77c320e2013-07-11 19:42:51 -07001379 if (c->on_error == ON_ERROR_PANIC)
1380 panic("panic forced after error\n");
1381
Kent Overstreetcafe5632013-03-23 16:11:31 -07001382 bch_cache_set_unregister(c);
1383 return true;
1384}
1385
1386void bch_cache_set_release(struct kobject *kobj)
1387{
1388 struct cache_set *c = container_of(kobj, struct cache_set, kobj);
1389 kfree(c);
1390 module_put(THIS_MODULE);
1391}
1392
1393static void cache_set_free(struct closure *cl)
1394{
1395 struct cache_set *c = container_of(cl, struct cache_set, cl);
1396 struct cache *ca;
1397 unsigned i;
1398
1399 if (!IS_ERR_OR_NULL(c->debug))
1400 debugfs_remove(c->debug);
1401
1402 bch_open_buckets_free(c);
1403 bch_btree_cache_free(c);
1404 bch_journal_free(c);
1405
1406 for_each_cache(ca, c, i)
Slava Pestovc9a78332014-06-19 15:05:59 -07001407 if (ca) {
1408 ca->set = NULL;
1409 c->cache[ca->sb.nr_this_dev] = NULL;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001410 kobject_put(&ca->kobj);
Slava Pestovc9a78332014-06-19 15:05:59 -07001411 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001412
Kent Overstreet67539e82013-09-10 22:53:34 -07001413 bch_bset_sort_state_free(&c->sort);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001414 free_pages((unsigned long) c->uuids, ilog2(bucket_pages(c)));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001415
Nicholas Swensonda415a02014-01-09 16:03:04 -08001416 if (c->moving_gc_wq)
1417 destroy_workqueue(c->moving_gc_wq);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001418 if (c->bio_split)
1419 bioset_free(c->bio_split);
Kent Overstreet57943512013-04-25 13:58:35 -07001420 if (c->fill_iter)
1421 mempool_destroy(c->fill_iter);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001422 if (c->bio_meta)
1423 mempool_destroy(c->bio_meta);
1424 if (c->search)
1425 mempool_destroy(c->search);
1426 kfree(c->devices);
1427
1428 mutex_lock(&bch_register_lock);
1429 list_del(&c->list);
1430 mutex_unlock(&bch_register_lock);
1431
1432 pr_info("Cache set %pU unregistered", c->sb.set_uuid);
1433 wake_up(&unregister_wait);
1434
1435 closure_debug_destroy(&c->cl);
1436 kobject_put(&c->kobj);
1437}
1438
1439static void cache_set_flush(struct closure *cl)
1440{
1441 struct cache_set *c = container_of(cl, struct cache_set, caching);
Kent Overstreet79826c32013-07-10 18:31:58 -07001442 struct cache *ca;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001443 struct btree *b;
Kent Overstreet79826c32013-07-10 18:31:58 -07001444 unsigned i;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001445
1446 bch_cache_accounting_destroy(&c->accounting);
1447
1448 kobject_put(&c->internal);
1449 kobject_del(&c->kobj);
1450
Kent Overstreet72a44512013-10-24 17:19:26 -07001451 if (c->gc_thread)
1452 kthread_stop(c->gc_thread);
1453
Kent Overstreetcafe5632013-03-23 16:11:31 -07001454 if (!IS_ERR_OR_NULL(c->root))
1455 list_add(&c->root->list, &c->btree_cache);
1456
1457 /* Should skip this if we're unregistering because of an error */
Kent Overstreet2a285682014-03-04 16:42:42 -08001458 list_for_each_entry(b, &c->btree_cache, list) {
1459 mutex_lock(&b->write_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001460 if (btree_node_dirty(b))
Kent Overstreet2a285682014-03-04 16:42:42 -08001461 __bch_btree_node_write(b, NULL);
1462 mutex_unlock(&b->write_lock);
1463 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001464
Kent Overstreet79826c32013-07-10 18:31:58 -07001465 for_each_cache(ca, c, i)
1466 if (ca->alloc_thread)
1467 kthread_stop(ca->alloc_thread);
1468
Kent Overstreet5b1016e2014-03-19 17:49:37 -07001469 if (c->journal.cur) {
1470 cancel_delayed_work_sync(&c->journal.work);
1471 /* flush last journal entry if needed */
1472 c->journal.work.work.func(&c->journal.work.work);
1473 }
Kent Overstreetdabb4432014-02-19 19:48:26 -08001474
Kent Overstreetcafe5632013-03-23 16:11:31 -07001475 closure_return(cl);
1476}
1477
Coly Li7e027ca2018-03-18 17:36:18 -07001478/*
1479 * This function is only called when CACHE_SET_IO_DISABLE is set, which means
1480 * cache set is unregistering due to too many I/O errors. In this condition,
1481 * the bcache device might be stopped, it depends on stop_when_cache_set_failed
1482 * value and whether the broken cache has dirty data:
1483 *
1484 * dc->stop_when_cache_set_failed dc->has_dirty stop bcache device
1485 * BCH_CACHED_STOP_AUTO 0 NO
1486 * BCH_CACHED_STOP_AUTO 1 YES
1487 * BCH_CACHED_DEV_STOP_ALWAYS 0 YES
1488 * BCH_CACHED_DEV_STOP_ALWAYS 1 YES
1489 *
1490 * The expected behavior is, if stop_when_cache_set_failed is configured to
1491 * "auto" via sysfs interface, the bcache device will not be stopped if the
1492 * backing device is clean on the broken cache device.
1493 */
1494static void conditional_stop_bcache_device(struct cache_set *c,
1495 struct bcache_device *d,
1496 struct cached_dev *dc)
1497{
1498 if (dc->stop_when_cache_set_failed == BCH_CACHED_DEV_STOP_ALWAYS) {
1499 pr_warn("stop_when_cache_set_failed of %s is \"always\", stop it for failed cache set %pU.",
1500 d->disk->disk_name, c->sb.set_uuid);
1501 bcache_device_stop(d);
1502 } else if (atomic_read(&dc->has_dirty)) {
1503 /*
1504 * dc->stop_when_cache_set_failed == BCH_CACHED_STOP_AUTO
1505 * and dc->has_dirty == 1
1506 */
1507 pr_warn("stop_when_cache_set_failed of %s is \"auto\" and cache is dirty, stop it to avoid potential data corruption.",
1508 d->disk->disk_name);
1509 bcache_device_stop(d);
1510 } else {
1511 /*
1512 * dc->stop_when_cache_set_failed == BCH_CACHED_STOP_AUTO
1513 * and dc->has_dirty == 0
1514 */
1515 pr_warn("stop_when_cache_set_failed of %s is \"auto\" and cache is clean, keep it alive.",
1516 d->disk->disk_name);
1517 }
1518}
1519
Kent Overstreetcafe5632013-03-23 16:11:31 -07001520static void __cache_set_unregister(struct closure *cl)
1521{
1522 struct cache_set *c = container_of(cl, struct cache_set, caching);
Kent Overstreet5caa52a2013-07-10 21:03:25 -07001523 struct cached_dev *dc;
Coly Li7e027ca2018-03-18 17:36:18 -07001524 struct bcache_device *d;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001525 size_t i;
1526
1527 mutex_lock(&bch_register_lock);
1528
Coly Li7e027ca2018-03-18 17:36:18 -07001529 for (i = 0; i < c->devices_max_used; i++) {
1530 d = c->devices[i];
1531 if (!d)
1532 continue;
1533
1534 if (!UUID_FLASH_ONLY(&c->uuids[i]) &&
1535 test_bit(CACHE_SET_UNREGISTERING, &c->flags)) {
1536 dc = container_of(d, struct cached_dev, disk);
1537 bch_cached_dev_detach(dc);
1538 if (test_bit(CACHE_SET_IO_DISABLE, &c->flags))
1539 conditional_stop_bcache_device(c, d, dc);
1540 } else {
1541 bcache_device_stop(d);
Kent Overstreet5caa52a2013-07-10 21:03:25 -07001542 }
Coly Li7e027ca2018-03-18 17:36:18 -07001543 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001544
1545 mutex_unlock(&bch_register_lock);
1546
1547 continue_at(cl, cache_set_flush, system_wq);
1548}
1549
1550void bch_cache_set_stop(struct cache_set *c)
1551{
1552 if (!test_and_set_bit(CACHE_SET_STOPPING, &c->flags))
1553 closure_queue(&c->caching);
1554}
1555
1556void bch_cache_set_unregister(struct cache_set *c)
1557{
1558 set_bit(CACHE_SET_UNREGISTERING, &c->flags);
1559 bch_cache_set_stop(c);
1560}
1561
1562#define alloc_bucket_pages(gfp, c) \
1563 ((void *) __get_free_pages(__GFP_ZERO|gfp, ilog2(bucket_pages(c))))
1564
1565struct cache_set *bch_cache_set_alloc(struct cache_sb *sb)
1566{
1567 int iter_size;
1568 struct cache_set *c = kzalloc(sizeof(struct cache_set), GFP_KERNEL);
1569 if (!c)
1570 return NULL;
1571
1572 __module_get(THIS_MODULE);
1573 closure_init(&c->cl, NULL);
1574 set_closure_fn(&c->cl, cache_set_free, system_wq);
1575
1576 closure_init(&c->caching, &c->cl);
1577 set_closure_fn(&c->caching, __cache_set_unregister, system_wq);
1578
1579 /* Maybe create continue_at_noreturn() and use it here? */
1580 closure_set_stopped(&c->cl);
1581 closure_put(&c->cl);
1582
1583 kobject_init(&c->kobj, &bch_cache_set_ktype);
1584 kobject_init(&c->internal, &bch_cache_set_internal_ktype);
1585
1586 bch_cache_accounting_init(&c->accounting, &c->cl);
1587
1588 memcpy(c->sb.set_uuid, sb->set_uuid, 16);
1589 c->sb.block_size = sb->block_size;
1590 c->sb.bucket_size = sb->bucket_size;
1591 c->sb.nr_in_set = sb->nr_in_set;
1592 c->sb.last_mount = sb->last_mount;
1593 c->bucket_bits = ilog2(sb->bucket_size);
1594 c->block_bits = ilog2(sb->block_size);
1595 c->nr_uuids = bucket_bytes(c) / sizeof(struct uuid_entry);
Coly Li28312312018-01-08 12:21:28 -08001596 c->devices_max_used = 0;
Kent Overstreetee811282013-12-17 23:49:49 -08001597 c->btree_pages = bucket_pages(c);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001598 if (c->btree_pages > BTREE_MAX_PAGES)
1599 c->btree_pages = max_t(int, c->btree_pages / 4,
1600 BTREE_MAX_PAGES);
1601
Kent Overstreetcb7a5832013-12-16 15:27:25 -08001602 sema_init(&c->sb_write_mutex, 1);
Kent Overstreete8e1d462013-07-24 17:27:07 -07001603 mutex_init(&c->bucket_lock);
Kent Overstreet0a63b662014-03-17 17:15:53 -07001604 init_waitqueue_head(&c->btree_cache_wait);
Kent Overstreet35fcd842013-07-24 17:29:09 -07001605 init_waitqueue_head(&c->bucket_wait);
Kent Overstreetbe628be2016-10-26 20:31:17 -07001606 init_waitqueue_head(&c->gc_wait);
Kent Overstreetcb7a5832013-12-16 15:27:25 -08001607 sema_init(&c->uuid_write_mutex, 1);
Kent Overstreet65d22e92013-07-31 00:03:54 -07001608
Kent Overstreet65d22e92013-07-31 00:03:54 -07001609 spin_lock_init(&c->btree_gc_time.lock);
1610 spin_lock_init(&c->btree_split_time.lock);
1611 spin_lock_init(&c->btree_read_time.lock);
Kent Overstreete8e1d462013-07-24 17:27:07 -07001612
Kent Overstreetcafe5632013-03-23 16:11:31 -07001613 bch_moving_init_cache_set(c);
1614
1615 INIT_LIST_HEAD(&c->list);
1616 INIT_LIST_HEAD(&c->cached_devs);
1617 INIT_LIST_HEAD(&c->btree_cache);
1618 INIT_LIST_HEAD(&c->btree_cache_freeable);
1619 INIT_LIST_HEAD(&c->btree_cache_freed);
1620 INIT_LIST_HEAD(&c->data_buckets);
1621
1622 c->search = mempool_create_slab_pool(32, bch_search_cache);
1623 if (!c->search)
1624 goto err;
1625
1626 iter_size = (sb->bucket_size / sb->block_size + 1) *
1627 sizeof(struct btree_iter_set);
1628
1629 if (!(c->devices = kzalloc(c->nr_uuids * sizeof(void *), GFP_KERNEL)) ||
1630 !(c->bio_meta = mempool_create_kmalloc_pool(2,
1631 sizeof(struct bbio) + sizeof(struct bio_vec) *
1632 bucket_pages(c))) ||
Kent Overstreet57943512013-04-25 13:58:35 -07001633 !(c->fill_iter = mempool_create_kmalloc_pool(1, iter_size)) ||
NeilBrown47e0fb42017-06-18 14:38:57 +10001634 !(c->bio_split = bioset_create(4, offsetof(struct bbio, bio),
1635 BIOSET_NEED_BVECS |
1636 BIOSET_NEED_RESCUER)) ||
Kent Overstreetcafe5632013-03-23 16:11:31 -07001637 !(c->uuids = alloc_bucket_pages(GFP_KERNEL, c)) ||
Bhaktipriya Shridhar81baf902016-06-08 01:57:19 +05301638 !(c->moving_gc_wq = alloc_workqueue("bcache_gc",
1639 WQ_MEM_RECLAIM, 0)) ||
Kent Overstreetcafe5632013-03-23 16:11:31 -07001640 bch_journal_alloc(c) ||
1641 bch_btree_cache_alloc(c) ||
Kent Overstreet67539e82013-09-10 22:53:34 -07001642 bch_open_buckets_alloc(c) ||
1643 bch_bset_sort_state_init(&c->sort, ilog2(c->btree_pages)))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001644 goto err;
1645
Kent Overstreetcafe5632013-03-23 16:11:31 -07001646 c->congested_read_threshold_us = 2000;
1647 c->congested_write_threshold_us = 20000;
Coly Li7ba0d832018-02-07 11:41:42 -08001648 c->error_limit = DEFAULT_IO_ERROR_LIMIT;
Coly Li771f3932018-03-18 17:36:17 -07001649 WARN_ON(test_and_clear_bit(CACHE_SET_IO_DISABLE, &c->flags));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001650
1651 return c;
1652err:
1653 bch_cache_set_unregister(c);
1654 return NULL;
1655}
1656
1657static void run_cache_set(struct cache_set *c)
1658{
1659 const char *err = "cannot allocate memory";
1660 struct cached_dev *dc, *t;
1661 struct cache *ca;
Kent Overstreetc18536a2013-07-24 17:44:17 -07001662 struct closure cl;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001663 unsigned i;
1664
Kent Overstreetc18536a2013-07-24 17:44:17 -07001665 closure_init_stack(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001666
1667 for_each_cache(ca, c, i)
1668 c->nbuckets += ca->sb.nbuckets;
Kent Overstreetbe628be2016-10-26 20:31:17 -07001669 set_gc_sectors(c);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001670
1671 if (CACHE_SYNC(&c->sb)) {
1672 LIST_HEAD(journal);
1673 struct bkey *k;
1674 struct jset *j;
1675
1676 err = "cannot allocate memory for journal";
Kent Overstreetc18536a2013-07-24 17:44:17 -07001677 if (bch_journal_read(c, &journal))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001678 goto err;
1679
1680 pr_debug("btree_journal_read() done");
1681
1682 err = "no journal entries found";
1683 if (list_empty(&journal))
1684 goto err;
1685
1686 j = &list_entry(journal.prev, struct journal_replay, list)->j;
1687
1688 err = "IO error reading priorities";
1689 for_each_cache(ca, c, i)
1690 prio_read(ca, j->prio_bucket[ca->sb.nr_this_dev]);
1691
1692 /*
1693 * If prio_read() fails it'll call cache_set_error and we'll
1694 * tear everything down right away, but if we perhaps checked
1695 * sooner we could avoid journal replay.
1696 */
1697
1698 k = &j->btree_root;
1699
1700 err = "bad btree root";
Kent Overstreet65d45232013-12-20 17:22:05 -08001701 if (__bch_btree_ptr_invalid(c, k))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001702 goto err;
1703
1704 err = "error reading btree root";
Slava Pestov2452cc82014-07-12 00:22:53 -07001705 c->root = bch_btree_node_get(c, NULL, k, j->btree_level, true, NULL);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001706 if (IS_ERR_OR_NULL(c->root))
1707 goto err;
1708
1709 list_del_init(&c->root->list);
1710 rw_unlock(true, c->root);
1711
Kent Overstreetc18536a2013-07-24 17:44:17 -07001712 err = uuid_read(c, j, &cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001713 if (err)
1714 goto err;
1715
1716 err = "error in recovery";
Kent Overstreetc18536a2013-07-24 17:44:17 -07001717 if (bch_btree_check(c))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001718 goto err;
1719
1720 bch_journal_mark(c, &journal);
Kent Overstreet2531d9ee2014-03-17 16:55:55 -07001721 bch_initial_gc_finish(c);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001722 pr_debug("btree_check() done");
1723
1724 /*
1725 * bcache_journal_next() can't happen sooner, or
1726 * btree_gc_finish() will give spurious errors about last_gc >
1727 * gc_gen - this is a hack but oh well.
1728 */
1729 bch_journal_next(&c->journal);
1730
Kent Overstreet119ba0f2013-04-24 19:01:12 -07001731 err = "error starting allocator thread";
Kent Overstreetcafe5632013-03-23 16:11:31 -07001732 for_each_cache(ca, c, i)
Kent Overstreet119ba0f2013-04-24 19:01:12 -07001733 if (bch_cache_allocator_start(ca))
1734 goto err;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001735
1736 /*
1737 * First place it's safe to allocate: btree_check() and
1738 * btree_gc_finish() have to run before we have buckets to
1739 * allocate, and bch_bucket_alloc_set() might cause a journal
1740 * entry to be written so bcache_journal_next() has to be called
1741 * first.
1742 *
1743 * If the uuids were in the old format we have to rewrite them
1744 * before the next journal entry is written:
1745 */
1746 if (j->version < BCACHE_JSET_VERSION_UUID)
1747 __uuid_write(c);
1748
Kent Overstreetc18536a2013-07-24 17:44:17 -07001749 bch_journal_replay(c, &journal);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001750 } else {
1751 pr_notice("invalidating existing data");
Kent Overstreetcafe5632013-03-23 16:11:31 -07001752
1753 for_each_cache(ca, c, i) {
1754 unsigned j;
1755
1756 ca->sb.keys = clamp_t(int, ca->sb.nbuckets >> 7,
1757 2, SB_JOURNAL_BUCKETS);
1758
1759 for (j = 0; j < ca->sb.keys; j++)
1760 ca->sb.d[j] = ca->sb.first_bucket + j;
1761 }
1762
Kent Overstreet2531d9ee2014-03-17 16:55:55 -07001763 bch_initial_gc_finish(c);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001764
Kent Overstreet119ba0f2013-04-24 19:01:12 -07001765 err = "error starting allocator thread";
Kent Overstreetcafe5632013-03-23 16:11:31 -07001766 for_each_cache(ca, c, i)
Kent Overstreet119ba0f2013-04-24 19:01:12 -07001767 if (bch_cache_allocator_start(ca))
1768 goto err;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001769
1770 mutex_lock(&c->bucket_lock);
1771 for_each_cache(ca, c, i)
1772 bch_prio_write(ca);
1773 mutex_unlock(&c->bucket_lock);
1774
Kent Overstreetcafe5632013-03-23 16:11:31 -07001775 err = "cannot allocate new UUID bucket";
1776 if (__uuid_write(c))
Kent Overstreet72a44512013-10-24 17:19:26 -07001777 goto err;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001778
1779 err = "cannot allocate new btree root";
Slava Pestov2452cc82014-07-12 00:22:53 -07001780 c->root = __bch_btree_node_alloc(c, NULL, 0, true, NULL);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001781 if (IS_ERR_OR_NULL(c->root))
Kent Overstreet72a44512013-10-24 17:19:26 -07001782 goto err;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001783
Kent Overstreet2a285682014-03-04 16:42:42 -08001784 mutex_lock(&c->root->write_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001785 bkey_copy_key(&c->root->key, &MAX_KEY);
Kent Overstreetc18536a2013-07-24 17:44:17 -07001786 bch_btree_node_write(c->root, &cl);
Kent Overstreet2a285682014-03-04 16:42:42 -08001787 mutex_unlock(&c->root->write_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001788
1789 bch_btree_set_root(c->root);
1790 rw_unlock(true, c->root);
1791
1792 /*
1793 * We don't want to write the first journal entry until
1794 * everything is set up - fortunately journal entries won't be
1795 * written until the SET_CACHE_SYNC() here:
1796 */
1797 SET_CACHE_SYNC(&c->sb, true);
1798
1799 bch_journal_next(&c->journal);
Kent Overstreetc18536a2013-07-24 17:44:17 -07001800 bch_journal_meta(c, &cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001801 }
1802
Kent Overstreet72a44512013-10-24 17:19:26 -07001803 err = "error starting gc thread";
1804 if (bch_gc_thread_start(c))
1805 goto err;
1806
Kent Overstreetc18536a2013-07-24 17:44:17 -07001807 closure_sync(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001808 c->sb.last_mount = get_seconds();
1809 bcache_write_super(c);
1810
1811 list_for_each_entry_safe(dc, t, &uncached_devices, list)
Tang Junhui73ac1052018-02-07 11:41:46 -08001812 bch_cached_dev_attach(dc, c, NULL);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001813
1814 flash_devs_run(c);
1815
Slava Pestovbf0c55c2014-07-11 12:17:41 -07001816 set_bit(CACHE_SET_RUNNING, &c->flags);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001817 return;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001818err:
Kent Overstreetc18536a2013-07-24 17:44:17 -07001819 closure_sync(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001820 /* XXX: test this, it's broken */
Kees Cookc8694942013-09-10 21:41:34 -07001821 bch_cache_set_error(c, "%s", err);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001822}
1823
1824static bool can_attach_cache(struct cache *ca, struct cache_set *c)
1825{
1826 return ca->sb.block_size == c->sb.block_size &&
Nicholas Swenson9eb8ebe2013-10-22 13:19:23 -07001827 ca->sb.bucket_size == c->sb.bucket_size &&
Kent Overstreetcafe5632013-03-23 16:11:31 -07001828 ca->sb.nr_in_set == c->sb.nr_in_set;
1829}
1830
1831static const char *register_cache_set(struct cache *ca)
1832{
1833 char buf[12];
1834 const char *err = "cannot allocate memory";
1835 struct cache_set *c;
1836
1837 list_for_each_entry(c, &bch_cache_sets, list)
1838 if (!memcmp(c->sb.set_uuid, ca->sb.set_uuid, 16)) {
1839 if (c->cache[ca->sb.nr_this_dev])
1840 return "duplicate cache set member";
1841
1842 if (!can_attach_cache(ca, c))
1843 return "cache sb does not match set";
1844
1845 if (!CACHE_SYNC(&ca->sb))
1846 SET_CACHE_SYNC(&c->sb, false);
1847
1848 goto found;
1849 }
1850
1851 c = bch_cache_set_alloc(&ca->sb);
1852 if (!c)
1853 return err;
1854
1855 err = "error creating kobject";
1856 if (kobject_add(&c->kobj, bcache_kobj, "%pU", c->sb.set_uuid) ||
1857 kobject_add(&c->internal, &c->kobj, "internal"))
1858 goto err;
1859
1860 if (bch_cache_accounting_add_kobjs(&c->accounting, &c->kobj))
1861 goto err;
1862
1863 bch_debug_init_cache_set(c);
1864
1865 list_add(&c->list, &bch_cache_sets);
1866found:
1867 sprintf(buf, "cache%i", ca->sb.nr_this_dev);
1868 if (sysfs_create_link(&ca->kobj, &c->kobj, "set") ||
1869 sysfs_create_link(&c->kobj, &ca->kobj, buf))
1870 goto err;
1871
1872 if (ca->sb.seq > c->sb.seq) {
1873 c->sb.version = ca->sb.version;
1874 memcpy(c->sb.set_uuid, ca->sb.set_uuid, 16);
1875 c->sb.flags = ca->sb.flags;
1876 c->sb.seq = ca->sb.seq;
1877 pr_debug("set version = %llu", c->sb.version);
1878 }
1879
Kent Overstreetd83353b2014-06-11 19:44:49 -07001880 kobject_get(&ca->kobj);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001881 ca->set = c;
1882 ca->set->cache[ca->sb.nr_this_dev] = ca;
1883 c->cache_by_alloc[c->caches_loaded++] = ca;
1884
1885 if (c->caches_loaded == c->sb.nr_in_set)
1886 run_cache_set(c);
1887
1888 return NULL;
1889err:
1890 bch_cache_set_unregister(c);
1891 return err;
1892}
1893
1894/* Cache device */
1895
1896void bch_cache_release(struct kobject *kobj)
1897{
1898 struct cache *ca = container_of(kobj, struct cache, kobj);
Kent Overstreet78365412013-12-17 01:29:34 -08001899 unsigned i;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001900
Slava Pestovc9a78332014-06-19 15:05:59 -07001901 if (ca->set) {
1902 BUG_ON(ca->set->cache[ca->sb.nr_this_dev] != ca);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001903 ca->set->cache[ca->sb.nr_this_dev] = NULL;
Slava Pestovc9a78332014-06-19 15:05:59 -07001904 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001905
Kent Overstreetcafe5632013-03-23 16:11:31 -07001906 free_pages((unsigned long) ca->disk_buckets, ilog2(bucket_pages(ca)));
1907 kfree(ca->prio_buckets);
1908 vfree(ca->buckets);
1909
1910 free_heap(&ca->heap);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001911 free_fifo(&ca->free_inc);
Kent Overstreet78365412013-12-17 01:29:34 -08001912
1913 for (i = 0; i < RESERVE_NR; i++)
1914 free_fifo(&ca->free[i]);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001915
1916 if (ca->sb_bio.bi_inline_vecs[0].bv_page)
Ming Lei263663c2017-12-18 20:22:04 +08001917 put_page(bio_first_page_all(&ca->sb_bio));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001918
Kent Overstreet0781c872014-07-07 13:03:36 -07001919 if (!IS_ERR_OR_NULL(ca->bdev))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001920 blkdev_put(ca->bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001921
1922 kfree(ca);
1923 module_put(THIS_MODULE);
1924}
1925
Yijing Wangc50d4d52016-07-04 09:23:25 +08001926static int cache_alloc(struct cache *ca)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001927{
1928 size_t free;
Tang Junhui682811b2018-02-07 11:41:43 -08001929 size_t btree_buckets;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001930 struct bucket *b;
1931
Kent Overstreetcafe5632013-03-23 16:11:31 -07001932 __module_get(THIS_MODULE);
1933 kobject_init(&ca->kobj, &bch_cache_ktype);
1934
Ming Lei3a83f462016-11-22 08:57:21 -07001935 bio_init(&ca->journal.bio, ca->journal.bio.bi_inline_vecs, 8);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001936
Tang Junhui682811b2018-02-07 11:41:43 -08001937 /*
1938 * when ca->sb.njournal_buckets is not zero, journal exists,
1939 * and in bch_journal_replay(), tree node may split,
1940 * so bucket of RESERVE_BTREE type is needed,
1941 * the worst situation is all journal buckets are valid journal,
1942 * and all the keys need to replay,
1943 * so the number of RESERVE_BTREE type buckets should be as much
1944 * as journal buckets
1945 */
1946 btree_buckets = ca->sb.njournal_buckets ?: 8;
Kent Overstreet78365412013-12-17 01:29:34 -08001947 free = roundup_pow_of_two(ca->sb.nbuckets) >> 10;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001948
Tang Junhui682811b2018-02-07 11:41:43 -08001949 if (!init_fifo(&ca->free[RESERVE_BTREE], btree_buckets, GFP_KERNEL) ||
Kent Overstreetacc9cf82016-08-17 18:21:24 -07001950 !init_fifo_exact(&ca->free[RESERVE_PRIO], prio_buckets(ca), GFP_KERNEL) ||
Kent Overstreet78365412013-12-17 01:29:34 -08001951 !init_fifo(&ca->free[RESERVE_MOVINGGC], free, GFP_KERNEL) ||
1952 !init_fifo(&ca->free[RESERVE_NONE], free, GFP_KERNEL) ||
Kent Overstreetcafe5632013-03-23 16:11:31 -07001953 !init_fifo(&ca->free_inc, free << 2, GFP_KERNEL) ||
Kent Overstreetcafe5632013-03-23 16:11:31 -07001954 !init_heap(&ca->heap, free << 3, GFP_KERNEL) ||
Kent Overstreetf59fce82013-05-15 00:11:26 -07001955 !(ca->buckets = vzalloc(sizeof(struct bucket) *
Kent Overstreetcafe5632013-03-23 16:11:31 -07001956 ca->sb.nbuckets)) ||
1957 !(ca->prio_buckets = kzalloc(sizeof(uint64_t) * prio_buckets(ca) *
1958 2, GFP_KERNEL)) ||
Kent Overstreet749b61d2013-11-23 23:11:25 -08001959 !(ca->disk_buckets = alloc_bucket_pages(GFP_KERNEL, ca)))
Kent Overstreetf59fce82013-05-15 00:11:26 -07001960 return -ENOMEM;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001961
1962 ca->prio_last_buckets = ca->prio_buckets + prio_buckets(ca);
1963
Kent Overstreetcafe5632013-03-23 16:11:31 -07001964 for_each_bucket(b, ca)
1965 atomic_set(&b->pin, 0);
1966
Kent Overstreetcafe5632013-03-23 16:11:31 -07001967 return 0;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001968}
1969
Eric Wheeler9b299722016-02-26 14:33:56 -08001970static int register_cache(struct cache_sb *sb, struct page *sb_page,
Slava Pestovc9a78332014-06-19 15:05:59 -07001971 struct block_device *bdev, struct cache *ca)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001972{
1973 char name[BDEVNAME_SIZE];
Eric Wheelerd9dc1702016-06-17 15:01:54 -07001974 const char *err = NULL; /* must be set for any error case */
Eric Wheeler9b299722016-02-26 14:33:56 -08001975 int ret = 0;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001976
Kent Overstreetf59fce82013-05-15 00:11:26 -07001977 memcpy(&ca->sb, sb, sizeof(struct cache_sb));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001978 ca->bdev = bdev;
1979 ca->bdev->bd_holder = ca;
1980
Ming Lei3a83f462016-11-22 08:57:21 -07001981 bio_init(&ca->sb_bio, ca->sb_bio.bi_inline_vecs, 1);
Ming Lei263663c2017-12-18 20:22:04 +08001982 bio_first_bvec_all(&ca->sb_bio)->bv_page = sb_page;
Kent Overstreetf59fce82013-05-15 00:11:26 -07001983 get_page(sb_page);
1984
Kent Overstreetcafe5632013-03-23 16:11:31 -07001985 if (blk_queue_discard(bdev_get_queue(ca->bdev)))
1986 ca->discard = CACHE_DISCARD(&ca->sb);
1987
Yijing Wangc50d4d52016-07-04 09:23:25 +08001988 ret = cache_alloc(ca);
Eric Wheelerd9dc1702016-06-17 15:01:54 -07001989 if (ret != 0) {
1990 if (ret == -ENOMEM)
1991 err = "cache_alloc(): -ENOMEM";
1992 else
1993 err = "cache_alloc(): unknown error";
Kent Overstreetf59fce82013-05-15 00:11:26 -07001994 goto err;
Eric Wheelerd9dc1702016-06-17 15:01:54 -07001995 }
Kent Overstreetf59fce82013-05-15 00:11:26 -07001996
Eric Wheeler9b299722016-02-26 14:33:56 -08001997 if (kobject_add(&ca->kobj, &part_to_dev(bdev->bd_part)->kobj, "bcache")) {
1998 err = "error calling kobject_add";
1999 ret = -ENOMEM;
2000 goto out;
2001 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07002002
Kent Overstreet4fa03402014-03-17 18:58:55 -07002003 mutex_lock(&bch_register_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002004 err = register_cache_set(ca);
Kent Overstreet4fa03402014-03-17 18:58:55 -07002005 mutex_unlock(&bch_register_lock);
2006
Eric Wheeler9b299722016-02-26 14:33:56 -08002007 if (err) {
2008 ret = -ENODEV;
2009 goto out;
2010 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07002011
2012 pr_info("registered cache device %s", bdevname(bdev, name));
Eric Wheeler9b299722016-02-26 14:33:56 -08002013
Kent Overstreetd83353b2014-06-11 19:44:49 -07002014out:
2015 kobject_put(&ca->kobj);
Eric Wheeler9b299722016-02-26 14:33:56 -08002016
Kent Overstreetcafe5632013-03-23 16:11:31 -07002017err:
Eric Wheeler9b299722016-02-26 14:33:56 -08002018 if (err)
2019 pr_notice("error opening %s: %s", bdevname(bdev, name), err);
2020
2021 return ret;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002022}
2023
2024/* Global interfaces/init */
2025
2026static ssize_t register_bcache(struct kobject *, struct kobj_attribute *,
2027 const char *, size_t);
2028
2029kobj_attribute_write(register, register_bcache);
2030kobj_attribute_write(register_quiet, register_bcache);
2031
Gabriel de Perthuisa9dd53a2013-05-04 12:19:41 +02002032static bool bch_is_open_backing(struct block_device *bdev) {
2033 struct cache_set *c, *tc;
2034 struct cached_dev *dc, *t;
2035
2036 list_for_each_entry_safe(c, tc, &bch_cache_sets, list)
2037 list_for_each_entry_safe(dc, t, &c->cached_devs, list)
2038 if (dc->bdev == bdev)
2039 return true;
2040 list_for_each_entry_safe(dc, t, &uncached_devices, list)
2041 if (dc->bdev == bdev)
2042 return true;
2043 return false;
2044}
2045
2046static bool bch_is_open_cache(struct block_device *bdev) {
2047 struct cache_set *c, *tc;
2048 struct cache *ca;
2049 unsigned i;
2050
2051 list_for_each_entry_safe(c, tc, &bch_cache_sets, list)
2052 for_each_cache(ca, c, i)
2053 if (ca->bdev == bdev)
2054 return true;
2055 return false;
2056}
2057
2058static bool bch_is_open(struct block_device *bdev) {
2059 return bch_is_open_cache(bdev) || bch_is_open_backing(bdev);
2060}
2061
Kent Overstreetcafe5632013-03-23 16:11:31 -07002062static ssize_t register_bcache(struct kobject *k, struct kobj_attribute *attr,
2063 const char *buffer, size_t size)
2064{
2065 ssize_t ret = size;
2066 const char *err = "cannot allocate memory";
2067 char *path = NULL;
2068 struct cache_sb *sb = NULL;
2069 struct block_device *bdev = NULL;
2070 struct page *sb_page = NULL;
2071
2072 if (!try_module_get(THIS_MODULE))
2073 return -EBUSY;
2074
Kent Overstreetcafe5632013-03-23 16:11:31 -07002075 if (!(path = kstrndup(buffer, size, GFP_KERNEL)) ||
2076 !(sb = kmalloc(sizeof(struct cache_sb), GFP_KERNEL)))
2077 goto err;
2078
2079 err = "failed to open device";
2080 bdev = blkdev_get_by_path(strim(path),
2081 FMODE_READ|FMODE_WRITE|FMODE_EXCL,
2082 sb);
Kent Overstreetf59fce82013-05-15 00:11:26 -07002083 if (IS_ERR(bdev)) {
Gabriel de Perthuisa9dd53a2013-05-04 12:19:41 +02002084 if (bdev == ERR_PTR(-EBUSY)) {
2085 bdev = lookup_bdev(strim(path));
Jianjian Huo789d21d2014-07-13 09:08:59 -07002086 mutex_lock(&bch_register_lock);
Gabriel de Perthuisa9dd53a2013-05-04 12:19:41 +02002087 if (!IS_ERR(bdev) && bch_is_open(bdev))
2088 err = "device already registered";
2089 else
2090 err = "device busy";
Jianjian Huo789d21d2014-07-13 09:08:59 -07002091 mutex_unlock(&bch_register_lock);
Jan Kara4b758df2017-09-06 14:25:51 +08002092 if (!IS_ERR(bdev))
2093 bdput(bdev);
Gabriel de Perthuisd7076f22015-11-29 18:40:23 -08002094 if (attr == &ksysfs_register_quiet)
2095 goto out;
Gabriel de Perthuisa9dd53a2013-05-04 12:19:41 +02002096 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07002097 goto err;
Kent Overstreetf59fce82013-05-15 00:11:26 -07002098 }
2099
2100 err = "failed to set blocksize";
2101 if (set_blocksize(bdev, 4096))
2102 goto err_close;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002103
2104 err = read_super(sb, bdev, &sb_page);
2105 if (err)
2106 goto err_close;
2107
Kent Overstreet29033812013-04-11 15:14:35 -07002108 if (SB_IS_BDEV(sb)) {
Kent Overstreetcafe5632013-03-23 16:11:31 -07002109 struct cached_dev *dc = kzalloc(sizeof(*dc), GFP_KERNEL);
Kent Overstreetf59fce82013-05-15 00:11:26 -07002110 if (!dc)
2111 goto err_close;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002112
Kent Overstreet4fa03402014-03-17 18:58:55 -07002113 mutex_lock(&bch_register_lock);
Kent Overstreetf59fce82013-05-15 00:11:26 -07002114 register_bdev(sb, sb_page, bdev, dc);
Kent Overstreet4fa03402014-03-17 18:58:55 -07002115 mutex_unlock(&bch_register_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002116 } else {
2117 struct cache *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
Kent Overstreetf59fce82013-05-15 00:11:26 -07002118 if (!ca)
2119 goto err_close;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002120
Eric Wheeler9b299722016-02-26 14:33:56 -08002121 if (register_cache(sb, sb_page, bdev, ca) != 0)
2122 goto err_close;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002123 }
Kent Overstreetf59fce82013-05-15 00:11:26 -07002124out:
2125 if (sb_page)
Kent Overstreetcafe5632013-03-23 16:11:31 -07002126 put_page(sb_page);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002127 kfree(sb);
2128 kfree(path);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002129 module_put(THIS_MODULE);
2130 return ret;
Kent Overstreetf59fce82013-05-15 00:11:26 -07002131
2132err_close:
2133 blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
2134err:
Gabriel de Perthuisd7076f22015-11-29 18:40:23 -08002135 pr_info("error opening %s: %s", path, err);
Kent Overstreetf59fce82013-05-15 00:11:26 -07002136 ret = -EINVAL;
2137 goto out;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002138}
2139
2140static int bcache_reboot(struct notifier_block *n, unsigned long code, void *x)
2141{
2142 if (code == SYS_DOWN ||
2143 code == SYS_HALT ||
2144 code == SYS_POWER_OFF) {
2145 DEFINE_WAIT(wait);
2146 unsigned long start = jiffies;
2147 bool stopped = false;
2148
2149 struct cache_set *c, *tc;
2150 struct cached_dev *dc, *tdc;
2151
2152 mutex_lock(&bch_register_lock);
2153
2154 if (list_empty(&bch_cache_sets) &&
2155 list_empty(&uncached_devices))
2156 goto out;
2157
2158 pr_info("Stopping all devices:");
2159
2160 list_for_each_entry_safe(c, tc, &bch_cache_sets, list)
2161 bch_cache_set_stop(c);
2162
2163 list_for_each_entry_safe(dc, tdc, &uncached_devices, list)
2164 bcache_device_stop(&dc->disk);
2165
2166 /* What's a condition variable? */
2167 while (1) {
2168 long timeout = start + 2 * HZ - jiffies;
2169
2170 stopped = list_empty(&bch_cache_sets) &&
2171 list_empty(&uncached_devices);
2172
2173 if (timeout < 0 || stopped)
2174 break;
2175
2176 prepare_to_wait(&unregister_wait, &wait,
2177 TASK_UNINTERRUPTIBLE);
2178
2179 mutex_unlock(&bch_register_lock);
2180 schedule_timeout(timeout);
2181 mutex_lock(&bch_register_lock);
2182 }
2183
2184 finish_wait(&unregister_wait, &wait);
2185
2186 if (stopped)
2187 pr_info("All devices stopped");
2188 else
2189 pr_notice("Timeout waiting for devices to be closed");
2190out:
2191 mutex_unlock(&bch_register_lock);
2192 }
2193
2194 return NOTIFY_DONE;
2195}
2196
2197static struct notifier_block reboot = {
2198 .notifier_call = bcache_reboot,
2199 .priority = INT_MAX, /* before any real devices */
2200};
2201
2202static void bcache_exit(void)
2203{
2204 bch_debug_exit();
Kent Overstreetcafe5632013-03-23 16:11:31 -07002205 bch_request_exit();
Kent Overstreetcafe5632013-03-23 16:11:31 -07002206 if (bcache_kobj)
2207 kobject_put(bcache_kobj);
2208 if (bcache_wq)
2209 destroy_workqueue(bcache_wq);
Kent Overstreet5c41c8a2013-07-08 17:53:26 -07002210 if (bcache_major)
2211 unregister_blkdev(bcache_major, "bcache");
Kent Overstreetcafe5632013-03-23 16:11:31 -07002212 unregister_reboot_notifier(&reboot);
Liang Chen330a4db2017-10-30 14:46:35 -07002213 mutex_destroy(&bch_register_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002214}
2215
2216static int __init bcache_init(void)
2217{
2218 static const struct attribute *files[] = {
2219 &ksysfs_register.attr,
2220 &ksysfs_register_quiet.attr,
2221 NULL
2222 };
2223
2224 mutex_init(&bch_register_lock);
2225 init_waitqueue_head(&unregister_wait);
2226 register_reboot_notifier(&reboot);
Kent Overstreet07e86cc2013-03-25 11:46:43 -07002227 closure_debug_init();
Kent Overstreetcafe5632013-03-23 16:11:31 -07002228
2229 bcache_major = register_blkdev(0, "bcache");
Zheng Liu2ecf0cd2015-11-29 17:21:57 -08002230 if (bcache_major < 0) {
2231 unregister_reboot_notifier(&reboot);
Liang Chen330a4db2017-10-30 14:46:35 -07002232 mutex_destroy(&bch_register_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002233 return bcache_major;
Zheng Liu2ecf0cd2015-11-29 17:21:57 -08002234 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07002235
Bhaktipriya Shridhar81baf902016-06-08 01:57:19 +05302236 if (!(bcache_wq = alloc_workqueue("bcache", WQ_MEM_RECLAIM, 0)) ||
Kent Overstreetcafe5632013-03-23 16:11:31 -07002237 !(bcache_kobj = kobject_create_and_add("bcache", fs_kobj)) ||
Kent Overstreetcafe5632013-03-23 16:11:31 -07002238 bch_request_init() ||
Liang Chen330a4db2017-10-30 14:46:35 -07002239 bch_debug_init(bcache_kobj) ||
2240 sysfs_create_files(bcache_kobj, files))
Kent Overstreetcafe5632013-03-23 16:11:31 -07002241 goto err;
2242
2243 return 0;
2244err:
2245 bcache_exit();
2246 return -ENOMEM;
2247}
2248
2249module_exit(bcache_exit);
2250module_init(bcache_init);