blob: e5be599338c5e9d903859321515e50473e068360 [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
Kent Overstreetcafe5632013-03-23 16:11:31 -070050static struct kobject *bcache_kobj;
51struct mutex bch_register_lock;
52LIST_HEAD(bch_cache_sets);
53static LIST_HEAD(uncached_devices);
54
Kent Overstreet28935ab2013-07-31 01:12:02 -070055static int bcache_major;
Coly Li1dbe32a2017-10-13 16:35:31 -070056static DEFINE_IDA(bcache_device_idx);
Kent Overstreetcafe5632013-03-23 16:11:31 -070057static wait_queue_head_t unregister_wait;
58struct workqueue_struct *bcache_wq;
59
60#define BTREE_MAX_PAGES (256 * 1024 / PAGE_SIZE)
Coly Li1dbe32a2017-10-13 16:35:31 -070061/* limitation of partitions number on single bcache device */
62#define BCACHE_MINORS 128
63/* limitation of bcache devices number on single system */
64#define BCACHE_DEVICE_IDX_MAX ((1U << MINORBITS)/BCACHE_MINORS)
Kent Overstreetcafe5632013-03-23 16:11:31 -070065
Kent Overstreetcafe5632013-03-23 16:11:31 -070066/* Superblock */
67
68static const char *read_super(struct cache_sb *sb, struct block_device *bdev,
69 struct page **res)
70{
71 const char *err;
72 struct cache_sb *s;
73 struct buffer_head *bh = __bread(bdev, 1, SB_SIZE);
74 unsigned i;
75
76 if (!bh)
77 return "IO error";
78
79 s = (struct cache_sb *) bh->b_data;
80
81 sb->offset = le64_to_cpu(s->offset);
82 sb->version = le64_to_cpu(s->version);
83
84 memcpy(sb->magic, s->magic, 16);
85 memcpy(sb->uuid, s->uuid, 16);
86 memcpy(sb->set_uuid, s->set_uuid, 16);
87 memcpy(sb->label, s->label, SB_LABEL_SIZE);
88
89 sb->flags = le64_to_cpu(s->flags);
90 sb->seq = le64_to_cpu(s->seq);
Kent Overstreetcafe5632013-03-23 16:11:31 -070091 sb->last_mount = le32_to_cpu(s->last_mount);
Kent Overstreetcafe5632013-03-23 16:11:31 -070092 sb->first_bucket = le16_to_cpu(s->first_bucket);
93 sb->keys = le16_to_cpu(s->keys);
94
95 for (i = 0; i < SB_JOURNAL_BUCKETS; i++)
96 sb->d[i] = le64_to_cpu(s->d[i]);
97
98 pr_debug("read sb version %llu, flags %llu, seq %llu, journal size %u",
99 sb->version, sb->flags, sb->seq, sb->keys);
100
101 err = "Not a bcache superblock";
102 if (sb->offset != SB_SECTOR)
103 goto err;
104
105 if (memcmp(sb->magic, bcache_magic, 16))
106 goto err;
107
108 err = "Too many journal buckets";
109 if (sb->keys > SB_JOURNAL_BUCKETS)
110 goto err;
111
112 err = "Bad checksum";
113 if (s->csum != csum_set(s))
114 goto err;
115
116 err = "Bad UUID";
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600117 if (bch_is_zero(sb->uuid, 16))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700118 goto err;
119
Kent Overstreet8abb2a52013-04-23 21:51:48 -0700120 sb->block_size = le16_to_cpu(s->block_size);
121
122 err = "Superblock block size smaller than device block size";
123 if (sb->block_size << 9 < bdev_logical_block_size(bdev))
124 goto err;
125
Kent Overstreet29033812013-04-11 15:14:35 -0700126 switch (sb->version) {
127 case BCACHE_SB_VERSION_BDEV:
Kent Overstreet29033812013-04-11 15:14:35 -0700128 sb->data_offset = BDEV_DATA_START_DEFAULT;
129 break;
130 case BCACHE_SB_VERSION_BDEV_WITH_OFFSET:
Kent Overstreet29033812013-04-11 15:14:35 -0700131 sb->data_offset = le64_to_cpu(s->data_offset);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700132
Kent Overstreet29033812013-04-11 15:14:35 -0700133 err = "Bad data offset";
134 if (sb->data_offset < BDEV_DATA_START_DEFAULT)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700135 goto err;
136
Kent Overstreet29033812013-04-11 15:14:35 -0700137 break;
138 case BCACHE_SB_VERSION_CDEV:
139 case BCACHE_SB_VERSION_CDEV_WITH_UUID:
140 sb->nbuckets = le64_to_cpu(s->nbuckets);
Kent Overstreet29033812013-04-11 15:14:35 -0700141 sb->bucket_size = le16_to_cpu(s->bucket_size);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700142
Kent Overstreet29033812013-04-11 15:14:35 -0700143 sb->nr_in_set = le16_to_cpu(s->nr_in_set);
144 sb->nr_this_dev = le16_to_cpu(s->nr_this_dev);
145
146 err = "Too many buckets";
147 if (sb->nbuckets > LONG_MAX)
148 goto err;
149
150 err = "Not enough buckets";
151 if (sb->nbuckets < 1 << 7)
152 goto err;
153
154 err = "Bad block/bucket size";
155 if (!is_power_of_2(sb->block_size) ||
156 sb->block_size > PAGE_SECTORS ||
157 !is_power_of_2(sb->bucket_size) ||
158 sb->bucket_size < PAGE_SECTORS)
159 goto err;
160
161 err = "Invalid superblock: device too small";
162 if (get_capacity(bdev->bd_disk) < sb->bucket_size * sb->nbuckets)
163 goto err;
164
165 err = "Bad UUID";
166 if (bch_is_zero(sb->set_uuid, 16))
167 goto err;
168
169 err = "Bad cache device number in set";
170 if (!sb->nr_in_set ||
171 sb->nr_in_set <= sb->nr_this_dev ||
172 sb->nr_in_set > MAX_CACHES_PER_SET)
173 goto err;
174
175 err = "Journal buckets not sequential";
176 for (i = 0; i < sb->keys; i++)
177 if (sb->d[i] != sb->first_bucket + i)
178 goto err;
179
180 err = "Too many journal buckets";
181 if (sb->first_bucket + sb->keys > sb->nbuckets)
182 goto err;
183
184 err = "Invalid superblock: first bucket comes before end of super";
185 if (sb->first_bucket * sb->bucket_size < 16)
186 goto err;
187
188 break;
189 default:
190 err = "Unsupported superblock version";
Kent Overstreetcafe5632013-03-23 16:11:31 -0700191 goto err;
Kent Overstreet29033812013-04-11 15:14:35 -0700192 }
193
Kent Overstreetcafe5632013-03-23 16:11:31 -0700194 sb->last_mount = get_seconds();
195 err = NULL;
196
197 get_page(bh->b_page);
198 *res = bh->b_page;
199err:
200 put_bh(bh);
201 return err;
202}
203
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200204static void write_bdev_super_endio(struct bio *bio)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700205{
206 struct cached_dev *dc = bio->bi_private;
207 /* XXX: error checking */
208
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800209 closure_put(&dc->sb_write);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700210}
211
212static void __write_super(struct cache_sb *sb, struct bio *bio)
213{
Ming Lei263663c2017-12-18 20:22:04 +0800214 struct cache_sb *out = page_address(bio_first_page_all(bio));
Kent Overstreetcafe5632013-03-23 16:11:31 -0700215 unsigned i;
216
Kent Overstreet4f024f32013-10-11 15:44:27 -0700217 bio->bi_iter.bi_sector = SB_SECTOR;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700218 bio->bi_iter.bi_size = SB_SIZE;
Mike Christiead0d9e72016-06-05 14:32:05 -0500219 bio_set_op_attrs(bio, REQ_OP_WRITE, REQ_SYNC|REQ_META);
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600220 bch_bio_map(bio, NULL);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700221
222 out->offset = cpu_to_le64(sb->offset);
223 out->version = cpu_to_le64(sb->version);
224
225 memcpy(out->uuid, sb->uuid, 16);
226 memcpy(out->set_uuid, sb->set_uuid, 16);
227 memcpy(out->label, sb->label, SB_LABEL_SIZE);
228
229 out->flags = cpu_to_le64(sb->flags);
230 out->seq = cpu_to_le64(sb->seq);
231
232 out->last_mount = cpu_to_le32(sb->last_mount);
233 out->first_bucket = cpu_to_le16(sb->first_bucket);
234 out->keys = cpu_to_le16(sb->keys);
235
236 for (i = 0; i < sb->keys; i++)
237 out->d[i] = cpu_to_le64(sb->d[i]);
238
239 out->csum = csum_set(out);
240
241 pr_debug("ver %llu, flags %llu, seq %llu",
242 sb->version, sb->flags, sb->seq);
243
Mike Christie4e49ea42016-06-05 14:31:41 -0500244 submit_bio(bio);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700245}
246
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800247static void bch_write_bdev_super_unlock(struct closure *cl)
248{
249 struct cached_dev *dc = container_of(cl, struct cached_dev, sb_write);
250
251 up(&dc->sb_write_mutex);
252}
253
Kent Overstreetcafe5632013-03-23 16:11:31 -0700254void bch_write_bdev_super(struct cached_dev *dc, struct closure *parent)
255{
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800256 struct closure *cl = &dc->sb_write;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700257 struct bio *bio = &dc->sb_bio;
258
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800259 down(&dc->sb_write_mutex);
260 closure_init(cl, parent);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700261
262 bio_reset(bio);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200263 bio_set_dev(bio, dc->bdev);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700264 bio->bi_end_io = write_bdev_super_endio;
265 bio->bi_private = dc;
266
267 closure_get(cl);
268 __write_super(&dc->sb, bio);
269
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800270 closure_return_with_destructor(cl, bch_write_bdev_super_unlock);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700271}
272
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200273static void write_super_endio(struct bio *bio)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700274{
275 struct cache *ca = bio->bi_private;
276
Coly Li5138ac62018-01-08 12:21:29 -0800277 /* is_read = 0 */
278 bch_count_io_errors(ca, bio->bi_status, 0,
279 "writing superblock");
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800280 closure_put(&ca->set->sb_write);
281}
282
283static void bcache_write_super_unlock(struct closure *cl)
284{
285 struct cache_set *c = container_of(cl, struct cache_set, sb_write);
286
287 up(&c->sb_write_mutex);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700288}
289
290void bcache_write_super(struct cache_set *c)
291{
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800292 struct closure *cl = &c->sb_write;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700293 struct cache *ca;
294 unsigned i;
295
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800296 down(&c->sb_write_mutex);
297 closure_init(cl, &c->cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700298
299 c->sb.seq++;
300
301 for_each_cache(ca, c, i) {
302 struct bio *bio = &ca->sb_bio;
303
Kent Overstreet29033812013-04-11 15:14:35 -0700304 ca->sb.version = BCACHE_SB_VERSION_CDEV_WITH_UUID;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700305 ca->sb.seq = c->sb.seq;
306 ca->sb.last_mount = c->sb.last_mount;
307
308 SET_CACHE_SYNC(&ca->sb, CACHE_SYNC(&c->sb));
309
310 bio_reset(bio);
Christoph Hellwig74d46992017-08-23 19:10:32 +0200311 bio_set_dev(bio, ca->bdev);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700312 bio->bi_end_io = write_super_endio;
313 bio->bi_private = ca;
314
315 closure_get(cl);
316 __write_super(&ca->sb, bio);
317 }
318
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800319 closure_return_with_destructor(cl, bcache_write_super_unlock);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700320}
321
322/* UUID io */
323
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200324static void uuid_endio(struct bio *bio)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700325{
326 struct closure *cl = bio->bi_private;
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800327 struct cache_set *c = container_of(cl, struct cache_set, uuid_write);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700328
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200329 cache_set_err_on(bio->bi_status, c, "accessing uuids");
Kent Overstreetcafe5632013-03-23 16:11:31 -0700330 bch_bbio_free(bio, c);
331 closure_put(cl);
332}
333
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800334static void uuid_io_unlock(struct closure *cl)
335{
336 struct cache_set *c = container_of(cl, struct cache_set, uuid_write);
337
338 up(&c->uuid_write_mutex);
339}
340
Mike Christiead0d9e72016-06-05 14:32:05 -0500341static void uuid_io(struct cache_set *c, int op, unsigned long op_flags,
Kent Overstreetcafe5632013-03-23 16:11:31 -0700342 struct bkey *k, struct closure *parent)
343{
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800344 struct closure *cl = &c->uuid_write;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700345 struct uuid_entry *u;
346 unsigned i;
Kent Overstreet85b14922013-05-14 20:33:16 -0700347 char buf[80];
Kent Overstreetcafe5632013-03-23 16:11:31 -0700348
349 BUG_ON(!parent);
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800350 down(&c->uuid_write_mutex);
351 closure_init(cl, parent);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700352
353 for (i = 0; i < KEY_PTRS(k); i++) {
354 struct bio *bio = bch_bbio_alloc(c);
355
Jens Axboe1eff9d32016-08-05 15:35:16 -0600356 bio->bi_opf = REQ_SYNC | REQ_META | op_flags;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700357 bio->bi_iter.bi_size = KEY_SIZE(k) << 9;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700358
359 bio->bi_end_io = uuid_endio;
360 bio->bi_private = cl;
Mike Christiead0d9e72016-06-05 14:32:05 -0500361 bio_set_op_attrs(bio, op, REQ_SYNC|REQ_META|op_flags);
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600362 bch_bio_map(bio, c->uuids);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700363
364 bch_submit_bbio(bio, c, k, i);
365
Mike Christiead0d9e72016-06-05 14:32:05 -0500366 if (op != REQ_OP_WRITE)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700367 break;
368 }
369
Kent Overstreetdc9d98d2013-12-17 23:47:33 -0800370 bch_extent_to_text(buf, sizeof(buf), k);
Mike Christiead0d9e72016-06-05 14:32:05 -0500371 pr_debug("%s UUIDs at %s", op == REQ_OP_WRITE ? "wrote" : "read", buf);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700372
373 for (u = c->uuids; u < c->uuids + c->nr_uuids; u++)
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600374 if (!bch_is_zero(u->uuid, 16))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700375 pr_debug("Slot %zi: %pU: %s: 1st: %u last: %u inv: %u",
376 u - c->uuids, u->uuid, u->label,
377 u->first_reg, u->last_reg, u->invalidated);
378
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800379 closure_return_with_destructor(cl, uuid_io_unlock);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700380}
381
382static char *uuid_read(struct cache_set *c, struct jset *j, struct closure *cl)
383{
384 struct bkey *k = &j->uuid_bucket;
385
Kent Overstreet65d45232013-12-20 17:22:05 -0800386 if (__bch_btree_ptr_invalid(c, k))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700387 return "bad uuid pointer";
388
389 bkey_copy(&c->uuid_bucket, k);
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600390 uuid_io(c, REQ_OP_READ, 0, k, cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700391
392 if (j->version < BCACHE_JSET_VERSION_UUIDv1) {
393 struct uuid_entry_v0 *u0 = (void *) c->uuids;
394 struct uuid_entry *u1 = (void *) c->uuids;
395 int i;
396
397 closure_sync(cl);
398
399 /*
400 * Since the new uuid entry is bigger than the old, we have to
401 * convert starting at the highest memory address and work down
402 * in order to do it in place
403 */
404
405 for (i = c->nr_uuids - 1;
406 i >= 0;
407 --i) {
408 memcpy(u1[i].uuid, u0[i].uuid, 16);
409 memcpy(u1[i].label, u0[i].label, 32);
410
411 u1[i].first_reg = u0[i].first_reg;
412 u1[i].last_reg = u0[i].last_reg;
413 u1[i].invalidated = u0[i].invalidated;
414
415 u1[i].flags = 0;
416 u1[i].sectors = 0;
417 }
418 }
419
420 return NULL;
421}
422
423static int __uuid_write(struct cache_set *c)
424{
425 BKEY_PADDED(key) k;
426 struct closure cl;
427 closure_init_stack(&cl);
428
429 lockdep_assert_held(&bch_register_lock);
430
Kent Overstreet78365412013-12-17 01:29:34 -0800431 if (bch_bucket_alloc_set(c, RESERVE_BTREE, &k.key, 1, true))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700432 return 1;
433
434 SET_KEY_SIZE(&k.key, c->sb.bucket_size);
Mike Christiead0d9e72016-06-05 14:32:05 -0500435 uuid_io(c, REQ_OP_WRITE, 0, &k.key, &cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700436 closure_sync(&cl);
437
438 bkey_copy(&c->uuid_bucket, &k.key);
Kent Overstreet3a3b6a42013-07-24 16:46:42 -0700439 bkey_put(c, &k.key);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700440 return 0;
441}
442
443int bch_uuid_write(struct cache_set *c)
444{
445 int ret = __uuid_write(c);
446
447 if (!ret)
448 bch_journal_meta(c, NULL);
449
450 return ret;
451}
452
453static struct uuid_entry *uuid_find(struct cache_set *c, const char *uuid)
454{
455 struct uuid_entry *u;
456
457 for (u = c->uuids;
458 u < c->uuids + c->nr_uuids; u++)
459 if (!memcmp(u->uuid, uuid, 16))
460 return u;
461
462 return NULL;
463}
464
465static struct uuid_entry *uuid_find_empty(struct cache_set *c)
466{
467 static const char zero_uuid[16] = "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0";
468 return uuid_find(c, zero_uuid);
469}
470
471/*
472 * Bucket priorities/gens:
473 *
474 * For each bucket, we store on disk its
475 * 8 bit gen
476 * 16 bit priority
477 *
478 * See alloc.c for an explanation of the gen. The priority is used to implement
479 * lru (and in the future other) cache replacement policies; for most purposes
480 * it's just an opaque integer.
481 *
482 * The gens and the priorities don't have a whole lot to do with each other, and
483 * it's actually the gens that must be written out at specific times - it's no
484 * big deal if the priorities don't get written, if we lose them we just reuse
485 * buckets in suboptimal order.
486 *
487 * On disk they're stored in a packed array, and in as many buckets are required
488 * to fit them all. The buckets we use to store them form a list; the journal
489 * header points to the first bucket, the first bucket points to the second
490 * bucket, et cetera.
491 *
492 * This code is used by the allocation code; periodically (whenever it runs out
493 * of buckets to allocate from) the allocation code will invalidate some
494 * buckets, but it can't use those buckets until their new gens are safely on
495 * disk.
496 */
497
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200498static void prio_endio(struct bio *bio)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700499{
500 struct cache *ca = bio->bi_private;
501
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +0200502 cache_set_err_on(bio->bi_status, ca->set, "accessing priorities");
Kent Overstreetcafe5632013-03-23 16:11:31 -0700503 bch_bbio_free(bio, ca->set);
504 closure_put(&ca->prio);
505}
506
Mike Christiead0d9e72016-06-05 14:32:05 -0500507static void prio_io(struct cache *ca, uint64_t bucket, int op,
508 unsigned long op_flags)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700509{
510 struct closure *cl = &ca->prio;
511 struct bio *bio = bch_bbio_alloc(ca->set);
512
513 closure_init_stack(cl);
514
Kent Overstreet4f024f32013-10-11 15:44:27 -0700515 bio->bi_iter.bi_sector = bucket * ca->sb.bucket_size;
Christoph Hellwig74d46992017-08-23 19:10:32 +0200516 bio_set_dev(bio, ca->bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -0700517 bio->bi_iter.bi_size = bucket_bytes(ca);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700518
519 bio->bi_end_io = prio_endio;
520 bio->bi_private = ca;
Mike Christiead0d9e72016-06-05 14:32:05 -0500521 bio_set_op_attrs(bio, op, REQ_SYNC|REQ_META|op_flags);
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600522 bch_bio_map(bio, ca->disk_buckets);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700523
Kent Overstreet749b61d2013-11-23 23:11:25 -0800524 closure_bio_submit(bio, &ca->prio);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700525 closure_sync(cl);
526}
527
Kent Overstreetcafe5632013-03-23 16:11:31 -0700528void bch_prio_write(struct cache *ca)
529{
530 int i;
531 struct bucket *b;
532 struct closure cl;
533
534 closure_init_stack(&cl);
535
536 lockdep_assert_held(&ca->set->bucket_lock);
537
Kent Overstreetcafe5632013-03-23 16:11:31 -0700538 ca->disk_buckets->seq++;
539
540 atomic_long_add(ca->sb.bucket_size * prio_buckets(ca),
541 &ca->meta_sectors_written);
542
Kent Overstreet78365412013-12-17 01:29:34 -0800543 //pr_debug("free %zu, free_inc %zu, unused %zu", fifo_used(&ca->free),
544 // fifo_used(&ca->free_inc), fifo_used(&ca->unused));
Kent Overstreetcafe5632013-03-23 16:11:31 -0700545
546 for (i = prio_buckets(ca) - 1; i >= 0; --i) {
547 long bucket;
548 struct prio_set *p = ca->disk_buckets;
Kent Overstreetb1a67b02013-03-25 11:46:44 -0700549 struct bucket_disk *d = p->data;
550 struct bucket_disk *end = d + prios_per_bucket(ca);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700551
552 for (b = ca->buckets + i * prios_per_bucket(ca);
553 b < ca->buckets + ca->sb.nbuckets && d < end;
554 b++, d++) {
555 d->prio = cpu_to_le16(b->prio);
556 d->gen = b->gen;
557 }
558
559 p->next_bucket = ca->prio_buckets[i + 1];
Kent Overstreet81ab4192013-10-31 15:46:42 -0700560 p->magic = pset_magic(&ca->sb);
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600561 p->csum = bch_crc64(&p->magic, bucket_bytes(ca) - 8);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700562
Kent Overstreet78365412013-12-17 01:29:34 -0800563 bucket = bch_bucket_alloc(ca, RESERVE_PRIO, true);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700564 BUG_ON(bucket == -1);
565
566 mutex_unlock(&ca->set->bucket_lock);
Mike Christiead0d9e72016-06-05 14:32:05 -0500567 prio_io(ca, bucket, REQ_OP_WRITE, 0);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700568 mutex_lock(&ca->set->bucket_lock);
569
570 ca->prio_buckets[i] = bucket;
571 atomic_dec_bug(&ca->buckets[bucket].pin);
572 }
573
574 mutex_unlock(&ca->set->bucket_lock);
575
576 bch_journal_meta(ca->set, &cl);
577 closure_sync(&cl);
578
579 mutex_lock(&ca->set->bucket_lock);
580
Kent Overstreetcafe5632013-03-23 16:11:31 -0700581 /*
582 * Don't want the old priorities to get garbage collected until after we
583 * finish writing the new ones, and they're journalled
584 */
Kent Overstreet2531d9ee2014-03-17 16:55:55 -0700585 for (i = 0; i < prio_buckets(ca); i++) {
586 if (ca->prio_last_buckets[i])
587 __bch_bucket_free(ca,
588 &ca->buckets[ca->prio_last_buckets[i]]);
589
Kent Overstreetcafe5632013-03-23 16:11:31 -0700590 ca->prio_last_buckets[i] = ca->prio_buckets[i];
Kent Overstreet2531d9ee2014-03-17 16:55:55 -0700591 }
Kent Overstreetcafe5632013-03-23 16:11:31 -0700592}
593
594static void prio_read(struct cache *ca, uint64_t bucket)
595{
596 struct prio_set *p = ca->disk_buckets;
597 struct bucket_disk *d = p->data + prios_per_bucket(ca), *end = d;
598 struct bucket *b;
599 unsigned bucket_nr = 0;
600
601 for (b = ca->buckets;
602 b < ca->buckets + ca->sb.nbuckets;
603 b++, d++) {
604 if (d == end) {
605 ca->prio_buckets[bucket_nr] = bucket;
606 ca->prio_last_buckets[bucket_nr] = bucket;
607 bucket_nr++;
608
Christoph Hellwig70fd7612016-11-01 07:40:10 -0600609 prio_io(ca, bucket, REQ_OP_READ, 0);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700610
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600611 if (p->csum != bch_crc64(&p->magic, bucket_bytes(ca) - 8))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700612 pr_warn("bad csum reading priorities");
613
Kent Overstreet81ab4192013-10-31 15:46:42 -0700614 if (p->magic != pset_magic(&ca->sb))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700615 pr_warn("bad magic reading priorities");
616
617 bucket = p->next_bucket;
618 d = p->data;
619 }
620
621 b->prio = le16_to_cpu(d->prio);
Kent Overstreet3a2fd9d2014-02-27 17:51:12 -0800622 b->gen = b->last_gc = d->gen;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700623 }
624}
625
626/* Bcache device */
627
628static int open_dev(struct block_device *b, fmode_t mode)
629{
630 struct bcache_device *d = b->bd_disk->private_data;
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700631 if (test_bit(BCACHE_DEV_CLOSING, &d->flags))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700632 return -ENXIO;
633
634 closure_get(&d->cl);
635 return 0;
636}
637
Emil Goode867e1162013-05-09 22:39:26 +0200638static void release_dev(struct gendisk *b, fmode_t mode)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700639{
640 struct bcache_device *d = b->private_data;
641 closure_put(&d->cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700642}
643
644static int ioctl_dev(struct block_device *b, fmode_t mode,
645 unsigned int cmd, unsigned long arg)
646{
647 struct bcache_device *d = b->bd_disk->private_data;
648 return d->ioctl(d, mode, cmd, arg);
649}
650
651static const struct block_device_operations bcache_ops = {
652 .open = open_dev,
653 .release = release_dev,
654 .ioctl = ioctl_dev,
655 .owner = THIS_MODULE,
656};
657
658void bcache_device_stop(struct bcache_device *d)
659{
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700660 if (!test_and_set_bit(BCACHE_DEV_CLOSING, &d->flags))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700661 closure_queue(&d->cl);
662}
663
Kent Overstreetee668502013-02-01 07:29:41 -0800664static void bcache_device_unlink(struct bcache_device *d)
665{
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700666 lockdep_assert_held(&bch_register_lock);
Kent Overstreetee668502013-02-01 07:29:41 -0800667
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700668 if (d->c && !test_and_set_bit(BCACHE_DEV_UNLINK_DONE, &d->flags)) {
669 unsigned i;
670 struct cache *ca;
Kent Overstreetee668502013-02-01 07:29:41 -0800671
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700672 sysfs_remove_link(&d->c->kobj, d->name);
673 sysfs_remove_link(&d->kobj, "cache");
674
675 for_each_cache(ca, d->c, i)
676 bd_unlink_disk_holder(ca->bdev, d->disk);
677 }
Kent Overstreetee668502013-02-01 07:29:41 -0800678}
679
680static void bcache_device_link(struct bcache_device *d, struct cache_set *c,
681 const char *name)
682{
683 unsigned i;
684 struct cache *ca;
685
686 for_each_cache(ca, d->c, i)
687 bd_link_disk_holder(ca->bdev, d->disk);
688
689 snprintf(d->name, BCACHEDEVNAME_SIZE,
690 "%s%u", name, d->id);
691
692 WARN(sysfs_create_link(&d->kobj, &c->kobj, "cache") ||
693 sysfs_create_link(&c->kobj, &d->kobj, d->name),
694 "Couldn't create device <-> cache set symlinks");
Zheng Liufecaee62015-11-29 17:19:32 -0800695
696 clear_bit(BCACHE_DEV_UNLINK_DONE, &d->flags);
Kent Overstreetee668502013-02-01 07:29:41 -0800697}
698
Kent Overstreetcafe5632013-03-23 16:11:31 -0700699static void bcache_device_detach(struct bcache_device *d)
700{
701 lockdep_assert_held(&bch_register_lock);
702
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700703 if (test_bit(BCACHE_DEV_DETACHING, &d->flags)) {
Kent Overstreetcafe5632013-03-23 16:11:31 -0700704 struct uuid_entry *u = d->c->uuids + d->id;
705
706 SET_UUID_FLASH_ONLY(u, 0);
707 memcpy(u->uuid, invalid_uuid, 16);
708 u->invalidated = cpu_to_le32(get_seconds());
709 bch_uuid_write(d->c);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700710 }
711
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700712 bcache_device_unlink(d);
Kent Overstreetee668502013-02-01 07:29:41 -0800713
Kent Overstreetcafe5632013-03-23 16:11:31 -0700714 d->c->devices[d->id] = NULL;
715 closure_put(&d->c->caching);
716 d->c = NULL;
717}
718
719static void bcache_device_attach(struct bcache_device *d, struct cache_set *c,
720 unsigned id)
721{
Kent Overstreetcafe5632013-03-23 16:11:31 -0700722 d->id = id;
723 d->c = c;
724 c->devices[id] = d;
725
Coly Li28312312018-01-08 12:21:28 -0800726 if (id >= c->devices_max_used)
727 c->devices_max_used = id + 1;
728
Kent Overstreetcafe5632013-03-23 16:11:31 -0700729 closure_get(&c->caching);
730}
731
Coly Li1dbe32a2017-10-13 16:35:31 -0700732static inline int first_minor_to_idx(int first_minor)
733{
734 return (first_minor/BCACHE_MINORS);
735}
736
737static inline int idx_to_first_minor(int idx)
738{
739 return (idx * BCACHE_MINORS);
740}
741
Kent Overstreetcafe5632013-03-23 16:11:31 -0700742static void bcache_device_free(struct bcache_device *d)
743{
744 lockdep_assert_held(&bch_register_lock);
745
746 pr_info("%s stopped", d->disk->disk_name);
747
748 if (d->c)
749 bcache_device_detach(d);
Kent Overstreetf59fce82013-05-15 00:11:26 -0700750 if (d->disk && d->disk->flags & GENHD_FL_UP)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700751 del_gendisk(d->disk);
752 if (d->disk && d->disk->queue)
753 blk_cleanup_queue(d->disk->queue);
Kent Overstreet28935ab2013-07-31 01:12:02 -0700754 if (d->disk) {
Coly Li1dbe32a2017-10-13 16:35:31 -0700755 ida_simple_remove(&bcache_device_idx,
756 first_minor_to_idx(d->disk->first_minor));
Kent Overstreetcafe5632013-03-23 16:11:31 -0700757 put_disk(d->disk);
Kent Overstreet28935ab2013-07-31 01:12:02 -0700758 }
Kent Overstreetcafe5632013-03-23 16:11:31 -0700759
Kent Overstreetcafe5632013-03-23 16:11:31 -0700760 if (d->bio_split)
761 bioset_free(d->bio_split);
Pekka Enberg958b4332015-06-30 14:59:30 -0700762 kvfree(d->full_dirty_stripes);
763 kvfree(d->stripe_sectors_dirty);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700764
765 closure_debug_destroy(&d->cl);
766}
767
Kent Overstreet279afba2013-06-05 06:21:07 -0700768static int bcache_device_init(struct bcache_device *d, unsigned block_size,
769 sector_t sectors)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700770{
771 struct request_queue *q;
Kent Overstreet279afba2013-06-05 06:21:07 -0700772 size_t n;
Coly Li1dbe32a2017-10-13 16:35:31 -0700773 int idx;
Kent Overstreet279afba2013-06-05 06:21:07 -0700774
Kent Overstreet2d679fc2013-08-17 02:13:15 -0700775 if (!d->stripe_size)
776 d->stripe_size = 1 << 31;
Kent Overstreet279afba2013-06-05 06:21:07 -0700777
Kent Overstreet2d679fc2013-08-17 02:13:15 -0700778 d->nr_stripes = DIV_ROUND_UP_ULL(sectors, d->stripe_size);
Kent Overstreet279afba2013-06-05 06:21:07 -0700779
Kent Overstreet48a915a2013-10-31 15:43:22 -0700780 if (!d->nr_stripes ||
781 d->nr_stripes > INT_MAX ||
782 d->nr_stripes > SIZE_MAX / sizeof(atomic_t)) {
Eric Wheeler90706092016-08-18 20:15:26 -0700783 pr_err("nr_stripes too large or invalid: %u (start sector beyond end of disk?)",
784 (unsigned)d->nr_stripes);
Kent Overstreet279afba2013-06-05 06:21:07 -0700785 return -ENOMEM;
Kent Overstreet48a915a2013-10-31 15:43:22 -0700786 }
Kent Overstreet279afba2013-06-05 06:21:07 -0700787
788 n = d->nr_stripes * sizeof(atomic_t);
Michal Hockobc4e54f2017-05-08 15:57:37 -0700789 d->stripe_sectors_dirty = kvzalloc(n, GFP_KERNEL);
Kent Overstreet279afba2013-06-05 06:21:07 -0700790 if (!d->stripe_sectors_dirty)
791 return -ENOMEM;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700792
Kent Overstreet48a915a2013-10-31 15:43:22 -0700793 n = BITS_TO_LONGS(d->nr_stripes) * sizeof(unsigned long);
Michal Hockobc4e54f2017-05-08 15:57:37 -0700794 d->full_dirty_stripes = kvzalloc(n, GFP_KERNEL);
Kent Overstreet48a915a2013-10-31 15:43:22 -0700795 if (!d->full_dirty_stripes)
796 return -ENOMEM;
797
Coly Li1dbe32a2017-10-13 16:35:31 -0700798 idx = ida_simple_get(&bcache_device_idx, 0,
799 BCACHE_DEVICE_IDX_MAX, GFP_KERNEL);
800 if (idx < 0)
801 return idx;
Eric Wheelerb8c0d912016-10-23 18:19:20 -0700802
NeilBrown47e0fb42017-06-18 14:38:57 +1000803 if (!(d->bio_split = bioset_create(4, offsetof(struct bbio, bio),
804 BIOSET_NEED_BVECS |
805 BIOSET_NEED_RESCUER)) ||
Eric Wheelerb8c0d912016-10-23 18:19:20 -0700806 !(d->disk = alloc_disk(BCACHE_MINORS))) {
Coly Li1dbe32a2017-10-13 16:35:31 -0700807 ida_simple_remove(&bcache_device_idx, idx);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700808 return -ENOMEM;
Kent Overstreet28935ab2013-07-31 01:12:02 -0700809 }
Kent Overstreetcafe5632013-03-23 16:11:31 -0700810
Kent Overstreet279afba2013-06-05 06:21:07 -0700811 set_capacity(d->disk, sectors);
Coly Li1dbe32a2017-10-13 16:35:31 -0700812 snprintf(d->disk->disk_name, DISK_NAME_LEN, "bcache%i", idx);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700813
814 d->disk->major = bcache_major;
Coly Li1dbe32a2017-10-13 16:35:31 -0700815 d->disk->first_minor = idx_to_first_minor(idx);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700816 d->disk->fops = &bcache_ops;
817 d->disk->private_data = d;
818
Kent Overstreet28935ab2013-07-31 01:12:02 -0700819 q = blk_alloc_queue(GFP_KERNEL);
820 if (!q)
821 return -ENOMEM;
822
Kent Overstreetcafe5632013-03-23 16:11:31 -0700823 blk_queue_make_request(q, NULL);
824 d->disk->queue = q;
825 q->queuedata = d;
Jan Karadc3b17c2017-02-02 15:56:50 +0100826 q->backing_dev_info->congested_data = d;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700827 q->limits.max_hw_sectors = UINT_MAX;
828 q->limits.max_sectors = UINT_MAX;
829 q->limits.max_segment_size = UINT_MAX;
830 q->limits.max_segments = BIO_MAX_PAGES;
Jens Axboe2bb4cd52015-07-14 08:15:12 -0600831 blk_queue_max_discard_sectors(q, UINT_MAX);
Kent Overstreet90db6912014-02-10 17:26:40 -0800832 q->limits.discard_granularity = 512;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700833 q->limits.io_min = block_size;
834 q->limits.logical_block_size = block_size;
835 q->limits.physical_block_size = block_size;
Bart Van Assche44e1ebe2018-03-07 17:10:07 -0800836 blk_queue_flag_set(QUEUE_FLAG_NONROT, d->disk->queue);
837 blk_queue_flag_clear(QUEUE_FLAG_ADD_RANDOM, d->disk->queue);
838 blk_queue_flag_set(QUEUE_FLAG_DISCARD, d->disk->queue);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700839
Jens Axboe84b4ff92016-03-30 10:13:22 -0600840 blk_queue_write_cache(q, true, true);
Kent Overstreet54d12f22013-07-10 18:44:40 -0700841
Kent Overstreetcafe5632013-03-23 16:11:31 -0700842 return 0;
843}
844
845/* Cached device */
846
847static void calc_cached_dev_sectors(struct cache_set *c)
848{
849 uint64_t sectors = 0;
850 struct cached_dev *dc;
851
852 list_for_each_entry(dc, &c->cached_devs, list)
853 sectors += bdev_sectors(dc->bdev);
854
855 c->cached_dev_sectors = sectors;
856}
857
858void bch_cached_dev_run(struct cached_dev *dc)
859{
860 struct bcache_device *d = &dc->disk;
Gabriel de Perthuisab9e1402013-06-09 00:54:48 +0200861 char buf[SB_LABEL_SIZE + 1];
Gabriel de Perthuisa25c32b2013-06-07 23:27:01 +0200862 char *env[] = {
863 "DRIVER=bcache",
864 kasprintf(GFP_KERNEL, "CACHED_UUID=%pU", dc->sb.uuid),
Gabriel de Perthuisab9e1402013-06-09 00:54:48 +0200865 NULL,
866 NULL,
Gabriel de Perthuisa25c32b2013-06-07 23:27:01 +0200867 };
Kent Overstreetcafe5632013-03-23 16:11:31 -0700868
Gabriel de Perthuisab9e1402013-06-09 00:54:48 +0200869 memcpy(buf, dc->sb.label, SB_LABEL_SIZE);
870 buf[SB_LABEL_SIZE] = '\0';
871 env[2] = kasprintf(GFP_KERNEL, "CACHED_LABEL=%s", buf);
872
Al Viro4d4d8572015-11-29 17:20:59 -0800873 if (atomic_xchg(&dc->running, 1)) {
874 kfree(env[1]);
875 kfree(env[2]);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700876 return;
Al Viro4d4d8572015-11-29 17:20:59 -0800877 }
Kent Overstreetcafe5632013-03-23 16:11:31 -0700878
879 if (!d->c &&
880 BDEV_STATE(&dc->sb) != BDEV_STATE_NONE) {
881 struct closure cl;
882 closure_init_stack(&cl);
883
884 SET_BDEV_STATE(&dc->sb, BDEV_STATE_STALE);
885 bch_write_bdev_super(dc, &cl);
886 closure_sync(&cl);
887 }
888
889 add_disk(d->disk);
Kent Overstreetee668502013-02-01 07:29:41 -0800890 bd_link_disk_holder(dc->bdev, dc->disk.disk);
Gabriel de Perthuisa25c32b2013-06-07 23:27:01 +0200891 /* won't show up in the uevent file, use udevadm monitor -e instead
892 * only class / kset properties are persistent */
Kent Overstreetcafe5632013-03-23 16:11:31 -0700893 kobject_uevent_env(&disk_to_dev(d->disk)->kobj, KOBJ_CHANGE, env);
Gabriel de Perthuisa25c32b2013-06-07 23:27:01 +0200894 kfree(env[1]);
Gabriel de Perthuisab9e1402013-06-09 00:54:48 +0200895 kfree(env[2]);
Gabriel de Perthuisa25c32b2013-06-07 23:27:01 +0200896
Kent Overstreetcafe5632013-03-23 16:11:31 -0700897 if (sysfs_create_link(&d->kobj, &disk_to_dev(d->disk)->kobj, "dev") ||
898 sysfs_create_link(&disk_to_dev(d->disk)->kobj, &d->kobj, "bcache"))
899 pr_debug("error creating sysfs link");
900}
901
Coly Li3fd47bf2018-03-18 17:36:16 -0700902/*
903 * If BCACHE_DEV_RATE_DW_RUNNING is set, it means routine of the delayed
904 * work dc->writeback_rate_update is running. Wait until the routine
905 * quits (BCACHE_DEV_RATE_DW_RUNNING is clear), then continue to
906 * cancel it. If BCACHE_DEV_RATE_DW_RUNNING is not clear after time_out
907 * seconds, give up waiting here and continue to cancel it too.
908 */
909static void cancel_writeback_rate_update_dwork(struct cached_dev *dc)
910{
911 int time_out = WRITEBACK_RATE_UPDATE_SECS_MAX * HZ;
912
913 do {
914 if (!test_bit(BCACHE_DEV_RATE_DW_RUNNING,
915 &dc->disk.flags))
916 break;
917 time_out--;
918 schedule_timeout_interruptible(1);
919 } while (time_out > 0);
920
921 if (time_out == 0)
922 pr_warn("give up waiting for dc->writeback_write_update to quit");
923
924 cancel_delayed_work_sync(&dc->writeback_rate_update);
925}
926
Kent Overstreetcafe5632013-03-23 16:11:31 -0700927static void cached_dev_detach_finish(struct work_struct *w)
928{
929 struct cached_dev *dc = container_of(w, struct cached_dev, detach);
930 char buf[BDEVNAME_SIZE];
931 struct closure cl;
932 closure_init_stack(&cl);
933
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700934 BUG_ON(!test_bit(BCACHE_DEV_DETACHING, &dc->disk.flags));
Elena Reshetova3b304d22017-10-30 14:46:32 -0700935 BUG_ON(refcount_read(&dc->count));
Kent Overstreetcafe5632013-03-23 16:11:31 -0700936
Kent Overstreetcafe5632013-03-23 16:11:31 -0700937 mutex_lock(&bch_register_lock);
938
Coly Li3fd47bf2018-03-18 17:36:16 -0700939 if (test_and_clear_bit(BCACHE_DEV_WB_RUNNING, &dc->disk.flags))
940 cancel_writeback_rate_update_dwork(dc);
941
Tang Junhui8d29c442018-01-08 12:21:19 -0800942 if (!IS_ERR_OR_NULL(dc->writeback_thread)) {
943 kthread_stop(dc->writeback_thread);
944 dc->writeback_thread = NULL;
945 }
946
Kent Overstreetcafe5632013-03-23 16:11:31 -0700947 memset(&dc->sb.set_uuid, 0, 16);
948 SET_BDEV_STATE(&dc->sb, BDEV_STATE_NONE);
949
950 bch_write_bdev_super(dc, &cl);
951 closure_sync(&cl);
952
953 bcache_device_detach(&dc->disk);
954 list_move(&dc->list, &uncached_devices);
955
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700956 clear_bit(BCACHE_DEV_DETACHING, &dc->disk.flags);
Kent Overstreet5b1016e2014-03-19 17:49:37 -0700957 clear_bit(BCACHE_DEV_UNLINK_DONE, &dc->disk.flags);
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700958
Kent Overstreetcafe5632013-03-23 16:11:31 -0700959 mutex_unlock(&bch_register_lock);
960
961 pr_info("Caching disabled for %s", bdevname(dc->bdev, buf));
962
963 /* Drop ref we took in cached_dev_detach() */
964 closure_put(&dc->disk.cl);
965}
966
967void bch_cached_dev_detach(struct cached_dev *dc)
968{
969 lockdep_assert_held(&bch_register_lock);
970
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700971 if (test_bit(BCACHE_DEV_CLOSING, &dc->disk.flags))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700972 return;
973
Kent Overstreetc4d951d2013-08-21 17:49:09 -0700974 if (test_and_set_bit(BCACHE_DEV_DETACHING, &dc->disk.flags))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700975 return;
976
977 /*
978 * Block the device from being closed and freed until we're finished
979 * detaching
980 */
981 closure_get(&dc->disk.cl);
982
983 bch_writeback_queue(dc);
Coly Li3fd47bf2018-03-18 17:36:16 -0700984
Kent Overstreetcafe5632013-03-23 16:11:31 -0700985 cached_dev_put(dc);
986}
987
Tang Junhui73ac1052018-02-07 11:41:46 -0800988int bch_cached_dev_attach(struct cached_dev *dc, struct cache_set *c,
989 uint8_t *set_uuid)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700990{
991 uint32_t rtime = cpu_to_le32(get_seconds());
992 struct uuid_entry *u;
993 char buf[BDEVNAME_SIZE];
994
995 bdevname(dc->bdev, buf);
996
Tang Junhui73ac1052018-02-07 11:41:46 -0800997 if ((set_uuid && memcmp(set_uuid, c->sb.set_uuid, 16)) ||
998 (!set_uuid && memcmp(dc->sb.set_uuid, c->sb.set_uuid, 16)))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700999 return -ENOENT;
1000
1001 if (dc->disk.c) {
1002 pr_err("Can't attach %s: already attached", buf);
1003 return -EINVAL;
1004 }
1005
1006 if (test_bit(CACHE_SET_STOPPING, &c->flags)) {
1007 pr_err("Can't attach %s: shutting down", buf);
1008 return -EINVAL;
1009 }
1010
1011 if (dc->sb.block_size < c->sb.block_size) {
1012 /* Will die */
Kent Overstreetb1a67b02013-03-25 11:46:44 -07001013 pr_err("Couldn't attach %s: block size less than set's block size",
1014 buf);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001015 return -EINVAL;
1016 }
1017
1018 u = uuid_find(c, dc->sb.uuid);
1019
1020 if (u &&
1021 (BDEV_STATE(&dc->sb) == BDEV_STATE_STALE ||
1022 BDEV_STATE(&dc->sb) == BDEV_STATE_NONE)) {
1023 memcpy(u->uuid, invalid_uuid, 16);
1024 u->invalidated = cpu_to_le32(get_seconds());
1025 u = NULL;
1026 }
1027
1028 if (!u) {
1029 if (BDEV_STATE(&dc->sb) == BDEV_STATE_DIRTY) {
1030 pr_err("Couldn't find uuid for %s in set", buf);
1031 return -ENOENT;
1032 }
1033
1034 u = uuid_find_empty(c);
1035 if (!u) {
1036 pr_err("Not caching %s, no room for UUID", buf);
1037 return -EINVAL;
1038 }
1039 }
1040
1041 /* Deadlocks since we're called via sysfs...
1042 sysfs_remove_file(&dc->kobj, &sysfs_attach);
1043 */
1044
Kent Overstreet169ef1c2013-03-28 12:50:55 -06001045 if (bch_is_zero(u->uuid, 16)) {
Kent Overstreetcafe5632013-03-23 16:11:31 -07001046 struct closure cl;
1047 closure_init_stack(&cl);
1048
1049 memcpy(u->uuid, dc->sb.uuid, 16);
1050 memcpy(u->label, dc->sb.label, SB_LABEL_SIZE);
1051 u->first_reg = u->last_reg = rtime;
1052 bch_uuid_write(c);
1053
1054 memcpy(dc->sb.set_uuid, c->sb.set_uuid, 16);
1055 SET_BDEV_STATE(&dc->sb, BDEV_STATE_CLEAN);
1056
1057 bch_write_bdev_super(dc, &cl);
1058 closure_sync(&cl);
1059 } else {
1060 u->last_reg = rtime;
1061 bch_uuid_write(c);
1062 }
1063
1064 bcache_device_attach(&dc->disk, c, u - c->uuids);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001065 list_move(&dc->list, &c->cached_devs);
1066 calc_cached_dev_sectors(c);
1067
1068 smp_wmb();
1069 /*
1070 * dc->c must be set before dc->count != 0 - paired with the mb in
1071 * cached_dev_get()
1072 */
Elena Reshetova3b304d22017-10-30 14:46:32 -07001073 refcount_set(&dc->count, 1);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001074
Eric Wheeler07cc6ef82016-02-26 14:39:06 -08001075 /* Block writeback thread, but spawn it */
1076 down_write(&dc->writeback_lock);
1077 if (bch_cached_dev_writeback_start(dc)) {
1078 up_write(&dc->writeback_lock);
Slava Pestov9e5c3532014-05-01 13:48:57 -07001079 return -ENOMEM;
Eric Wheeler07cc6ef82016-02-26 14:39:06 -08001080 }
Slava Pestov9e5c3532014-05-01 13:48:57 -07001081
Kent Overstreetcafe5632013-03-23 16:11:31 -07001082 if (BDEV_STATE(&dc->sb) == BDEV_STATE_DIRTY) {
Tang Junhui175206c2017-09-07 01:28:53 +08001083 bch_sectors_dirty_init(&dc->disk);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001084 atomic_set(&dc->has_dirty, 1);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001085 bch_writeback_queue(dc);
1086 }
1087
1088 bch_cached_dev_run(dc);
Kent Overstreetee668502013-02-01 07:29:41 -08001089 bcache_device_link(&dc->disk, c, "bdev");
Kent Overstreetcafe5632013-03-23 16:11:31 -07001090
Eric Wheeler07cc6ef82016-02-26 14:39:06 -08001091 /* Allow the writeback thread to proceed */
1092 up_write(&dc->writeback_lock);
1093
Kent Overstreetcafe5632013-03-23 16:11:31 -07001094 pr_info("Caching %s as %s on set %pU",
1095 bdevname(dc->bdev, buf), dc->disk.disk->disk_name,
1096 dc->disk.c->sb.set_uuid);
1097 return 0;
1098}
1099
1100void bch_cached_dev_release(struct kobject *kobj)
1101{
1102 struct cached_dev *dc = container_of(kobj, struct cached_dev,
1103 disk.kobj);
1104 kfree(dc);
1105 module_put(THIS_MODULE);
1106}
1107
1108static void cached_dev_free(struct closure *cl)
1109{
1110 struct cached_dev *dc = container_of(cl, struct cached_dev, disk.cl);
1111
Coly Li3fd47bf2018-03-18 17:36:16 -07001112 mutex_lock(&bch_register_lock);
1113
1114 if (test_and_clear_bit(BCACHE_DEV_WB_RUNNING, &dc->disk.flags))
1115 cancel_writeback_rate_update_dwork(dc);
1116
Slava Pestova664d0f2014-05-20 12:20:28 -07001117 if (!IS_ERR_OR_NULL(dc->writeback_thread))
1118 kthread_stop(dc->writeback_thread);
Tang Junhui9baf3092017-09-06 14:25:59 +08001119 if (dc->writeback_write_wq)
1120 destroy_workqueue(dc->writeback_write_wq);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001121
Kent Overstreetf59fce82013-05-15 00:11:26 -07001122 if (atomic_read(&dc->running))
1123 bd_unlink_disk_holder(dc->bdev, dc->disk.disk);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001124 bcache_device_free(&dc->disk);
1125 list_del(&dc->list);
1126
1127 mutex_unlock(&bch_register_lock);
1128
Kent Overstreet0781c872014-07-07 13:03:36 -07001129 if (!IS_ERR_OR_NULL(dc->bdev))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001130 blkdev_put(dc->bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001131
1132 wake_up(&unregister_wait);
1133
1134 kobject_put(&dc->disk.kobj);
1135}
1136
1137static void cached_dev_flush(struct closure *cl)
1138{
1139 struct cached_dev *dc = container_of(cl, struct cached_dev, disk.cl);
1140 struct bcache_device *d = &dc->disk;
1141
Kent Overstreetc9502ea2013-07-10 21:25:02 -07001142 mutex_lock(&bch_register_lock);
Kent Overstreetc4d951d2013-08-21 17:49:09 -07001143 bcache_device_unlink(d);
Kent Overstreetc9502ea2013-07-10 21:25:02 -07001144 mutex_unlock(&bch_register_lock);
1145
Kent Overstreetcafe5632013-03-23 16:11:31 -07001146 bch_cache_accounting_destroy(&dc->accounting);
1147 kobject_del(&d->kobj);
1148
1149 continue_at(cl, cached_dev_free, system_wq);
1150}
1151
1152static int cached_dev_init(struct cached_dev *dc, unsigned block_size)
1153{
Kent Overstreetf59fce82013-05-15 00:11:26 -07001154 int ret;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001155 struct io *io;
Kent Overstreetf59fce82013-05-15 00:11:26 -07001156 struct request_queue *q = bdev_get_queue(dc->bdev);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001157
1158 __module_get(THIS_MODULE);
1159 INIT_LIST_HEAD(&dc->list);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001160 closure_init(&dc->disk.cl, NULL);
1161 set_closure_fn(&dc->disk.cl, cached_dev_flush, system_wq);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001162 kobject_init(&dc->disk.kobj, &bch_cached_dev_ktype);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001163 INIT_WORK(&dc->detach, cached_dev_detach_finish);
Kent Overstreetcb7a5832013-12-16 15:27:25 -08001164 sema_init(&dc->sb_write_mutex, 1);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001165 INIT_LIST_HEAD(&dc->io_lru);
1166 spin_lock_init(&dc->io_lock);
1167 bch_cache_accounting_init(&dc->accounting, &dc->disk.cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001168
Kent Overstreetcafe5632013-03-23 16:11:31 -07001169 dc->sequential_cutoff = 4 << 20;
1170
Kent Overstreetcafe5632013-03-23 16:11:31 -07001171 for (io = dc->io; io < dc->io + RECENT_IO; io++) {
1172 list_add(&io->lru, &dc->io_lru);
1173 hlist_add_head(&io->hash, dc->io_hash + RECENT_IO);
1174 }
1175
Kent Overstreetc78afc62013-07-11 22:39:53 -07001176 dc->disk.stripe_size = q->limits.io_opt >> 9;
1177
1178 if (dc->disk.stripe_size)
1179 dc->partial_stripes_expensive =
1180 q->limits.raid_partial_stripes_expensive;
1181
Kent Overstreet279afba2013-06-05 06:21:07 -07001182 ret = bcache_device_init(&dc->disk, block_size,
1183 dc->bdev->bd_part->nr_sects - dc->sb.data_offset);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001184 if (ret)
1185 return ret;
1186
Jan Karadc3b17c2017-02-02 15:56:50 +01001187 dc->disk.disk->queue->backing_dev_info->ra_pages =
1188 max(dc->disk.disk->queue->backing_dev_info->ra_pages,
1189 q->backing_dev_info->ra_pages);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001190
1191 bch_cached_dev_request_init(dc);
1192 bch_cached_dev_writeback_init(dc);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001193 return 0;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001194}
1195
1196/* Cached device - bcache superblock */
1197
Kent Overstreetf59fce82013-05-15 00:11:26 -07001198static void register_bdev(struct cache_sb *sb, struct page *sb_page,
Kent Overstreetcafe5632013-03-23 16:11:31 -07001199 struct block_device *bdev,
1200 struct cached_dev *dc)
1201{
1202 char name[BDEVNAME_SIZE];
1203 const char *err = "cannot allocate memory";
Kent Overstreetcafe5632013-03-23 16:11:31 -07001204 struct cache_set *c;
1205
Kent Overstreetcafe5632013-03-23 16:11:31 -07001206 memcpy(&dc->sb, sb, sizeof(struct cache_sb));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001207 dc->bdev = bdev;
1208 dc->bdev->bd_holder = dc;
1209
Ming Lei3a83f462016-11-22 08:57:21 -07001210 bio_init(&dc->sb_bio, dc->sb_bio.bi_inline_vecs, 1);
Ming Lei263663c2017-12-18 20:22:04 +08001211 bio_first_bvec_all(&dc->sb_bio)->bv_page = sb_page;
Kent Overstreetf59fce82013-05-15 00:11:26 -07001212 get_page(sb_page);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001213
Kent Overstreetf59fce82013-05-15 00:11:26 -07001214 if (cached_dev_init(dc, sb->block_size << 9))
1215 goto err;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001216
1217 err = "error creating kobject";
1218 if (kobject_add(&dc->disk.kobj, &part_to_dev(bdev->bd_part)->kobj,
1219 "bcache"))
1220 goto err;
1221 if (bch_cache_accounting_add_kobjs(&dc->accounting, &dc->disk.kobj))
1222 goto err;
1223
Kent Overstreetf59fce82013-05-15 00:11:26 -07001224 pr_info("registered backing device %s", bdevname(bdev, name));
1225
Kent Overstreetcafe5632013-03-23 16:11:31 -07001226 list_add(&dc->list, &uncached_devices);
1227 list_for_each_entry(c, &bch_cache_sets, list)
Tang Junhui73ac1052018-02-07 11:41:46 -08001228 bch_cached_dev_attach(dc, c, NULL);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001229
1230 if (BDEV_STATE(&dc->sb) == BDEV_STATE_NONE ||
1231 BDEV_STATE(&dc->sb) == BDEV_STATE_STALE)
1232 bch_cached_dev_run(dc);
1233
Kent Overstreetf59fce82013-05-15 00:11:26 -07001234 return;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001235err:
Kent Overstreetcafe5632013-03-23 16:11:31 -07001236 pr_notice("error opening %s: %s", bdevname(bdev, name), err);
Kent Overstreetf59fce82013-05-15 00:11:26 -07001237 bcache_device_stop(&dc->disk);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001238}
1239
1240/* Flash only volumes */
1241
1242void bch_flash_dev_release(struct kobject *kobj)
1243{
1244 struct bcache_device *d = container_of(kobj, struct bcache_device,
1245 kobj);
1246 kfree(d);
1247}
1248
1249static void flash_dev_free(struct closure *cl)
1250{
1251 struct bcache_device *d = container_of(cl, struct bcache_device, cl);
Slava Pestove5112202014-04-29 15:39:27 -07001252 mutex_lock(&bch_register_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001253 bcache_device_free(d);
Slava Pestove5112202014-04-29 15:39:27 -07001254 mutex_unlock(&bch_register_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001255 kobject_put(&d->kobj);
1256}
1257
1258static void flash_dev_flush(struct closure *cl)
1259{
1260 struct bcache_device *d = container_of(cl, struct bcache_device, cl);
1261
Slava Pestove5112202014-04-29 15:39:27 -07001262 mutex_lock(&bch_register_lock);
Kent Overstreetee668502013-02-01 07:29:41 -08001263 bcache_device_unlink(d);
Slava Pestove5112202014-04-29 15:39:27 -07001264 mutex_unlock(&bch_register_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001265 kobject_del(&d->kobj);
1266 continue_at(cl, flash_dev_free, system_wq);
1267}
1268
1269static int flash_dev_run(struct cache_set *c, struct uuid_entry *u)
1270{
1271 struct bcache_device *d = kzalloc(sizeof(struct bcache_device),
1272 GFP_KERNEL);
1273 if (!d)
1274 return -ENOMEM;
1275
1276 closure_init(&d->cl, NULL);
1277 set_closure_fn(&d->cl, flash_dev_flush, system_wq);
1278
1279 kobject_init(&d->kobj, &bch_flash_dev_ktype);
1280
Kent Overstreet279afba2013-06-05 06:21:07 -07001281 if (bcache_device_init(d, block_bytes(c), u->sectors))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001282 goto err;
1283
1284 bcache_device_attach(d, c, u - c->uuids);
Tang Junhui175206c2017-09-07 01:28:53 +08001285 bch_sectors_dirty_init(d);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001286 bch_flash_dev_request_init(d);
1287 add_disk(d->disk);
1288
1289 if (kobject_add(&d->kobj, &disk_to_dev(d->disk)->kobj, "bcache"))
1290 goto err;
1291
1292 bcache_device_link(d, c, "volume");
1293
1294 return 0;
1295err:
1296 kobject_put(&d->kobj);
1297 return -ENOMEM;
1298}
1299
1300static int flash_devs_run(struct cache_set *c)
1301{
1302 int ret = 0;
1303 struct uuid_entry *u;
1304
1305 for (u = c->uuids;
Coly Li02aa8a82018-02-27 09:49:29 -08001306 u < c->uuids + c->nr_uuids && !ret;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001307 u++)
1308 if (UUID_FLASH_ONLY(u))
1309 ret = flash_dev_run(c, u);
1310
1311 return ret;
1312}
1313
1314int bch_flash_dev_create(struct cache_set *c, uint64_t size)
1315{
1316 struct uuid_entry *u;
1317
1318 if (test_bit(CACHE_SET_STOPPING, &c->flags))
1319 return -EINTR;
1320
Slava Pestovbf0c55c2014-07-11 12:17:41 -07001321 if (!test_bit(CACHE_SET_RUNNING, &c->flags))
1322 return -EPERM;
1323
Kent Overstreetcafe5632013-03-23 16:11:31 -07001324 u = uuid_find_empty(c);
1325 if (!u) {
1326 pr_err("Can't create volume, no room for UUID");
1327 return -EINVAL;
1328 }
1329
1330 get_random_bytes(u->uuid, 16);
1331 memset(u->label, 0, 32);
1332 u->first_reg = u->last_reg = cpu_to_le32(get_seconds());
1333
1334 SET_UUID_FLASH_ONLY(u, 1);
1335 u->sectors = size >> 9;
1336
1337 bch_uuid_write(c);
1338
1339 return flash_dev_run(c, u);
1340}
1341
1342/* Cache set */
1343
1344__printf(2, 3)
1345bool bch_cache_set_error(struct cache_set *c, const char *fmt, ...)
1346{
1347 va_list args;
1348
Kent Overstreet77c320e2013-07-11 19:42:51 -07001349 if (c->on_error != ON_ERROR_PANIC &&
1350 test_bit(CACHE_SET_STOPPING, &c->flags))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001351 return false;
1352
1353 /* XXX: we can be called from atomic context
1354 acquire_console_sem();
1355 */
1356
1357 printk(KERN_ERR "bcache: error on %pU: ", c->sb.set_uuid);
1358
1359 va_start(args, fmt);
1360 vprintk(fmt, args);
1361 va_end(args);
1362
1363 printk(", disabling caching\n");
1364
Kent Overstreet77c320e2013-07-11 19:42:51 -07001365 if (c->on_error == ON_ERROR_PANIC)
1366 panic("panic forced after error\n");
1367
Kent Overstreetcafe5632013-03-23 16:11:31 -07001368 bch_cache_set_unregister(c);
1369 return true;
1370}
1371
1372void bch_cache_set_release(struct kobject *kobj)
1373{
1374 struct cache_set *c = container_of(kobj, struct cache_set, kobj);
1375 kfree(c);
1376 module_put(THIS_MODULE);
1377}
1378
1379static void cache_set_free(struct closure *cl)
1380{
1381 struct cache_set *c = container_of(cl, struct cache_set, cl);
1382 struct cache *ca;
1383 unsigned i;
1384
1385 if (!IS_ERR_OR_NULL(c->debug))
1386 debugfs_remove(c->debug);
1387
1388 bch_open_buckets_free(c);
1389 bch_btree_cache_free(c);
1390 bch_journal_free(c);
1391
1392 for_each_cache(ca, c, i)
Slava Pestovc9a78332014-06-19 15:05:59 -07001393 if (ca) {
1394 ca->set = NULL;
1395 c->cache[ca->sb.nr_this_dev] = NULL;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001396 kobject_put(&ca->kobj);
Slava Pestovc9a78332014-06-19 15:05:59 -07001397 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001398
Kent Overstreet67539e82013-09-10 22:53:34 -07001399 bch_bset_sort_state_free(&c->sort);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001400 free_pages((unsigned long) c->uuids, ilog2(bucket_pages(c)));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001401
Nicholas Swensonda415a02014-01-09 16:03:04 -08001402 if (c->moving_gc_wq)
1403 destroy_workqueue(c->moving_gc_wq);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001404 if (c->bio_split)
1405 bioset_free(c->bio_split);
Kent Overstreet57943512013-04-25 13:58:35 -07001406 if (c->fill_iter)
1407 mempool_destroy(c->fill_iter);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001408 if (c->bio_meta)
1409 mempool_destroy(c->bio_meta);
1410 if (c->search)
1411 mempool_destroy(c->search);
1412 kfree(c->devices);
1413
1414 mutex_lock(&bch_register_lock);
1415 list_del(&c->list);
1416 mutex_unlock(&bch_register_lock);
1417
1418 pr_info("Cache set %pU unregistered", c->sb.set_uuid);
1419 wake_up(&unregister_wait);
1420
1421 closure_debug_destroy(&c->cl);
1422 kobject_put(&c->kobj);
1423}
1424
1425static void cache_set_flush(struct closure *cl)
1426{
1427 struct cache_set *c = container_of(cl, struct cache_set, caching);
Kent Overstreet79826c32013-07-10 18:31:58 -07001428 struct cache *ca;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001429 struct btree *b;
Kent Overstreet79826c32013-07-10 18:31:58 -07001430 unsigned i;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001431
1432 bch_cache_accounting_destroy(&c->accounting);
1433
1434 kobject_put(&c->internal);
1435 kobject_del(&c->kobj);
1436
Kent Overstreet72a44512013-10-24 17:19:26 -07001437 if (c->gc_thread)
1438 kthread_stop(c->gc_thread);
1439
Kent Overstreetcafe5632013-03-23 16:11:31 -07001440 if (!IS_ERR_OR_NULL(c->root))
1441 list_add(&c->root->list, &c->btree_cache);
1442
1443 /* Should skip this if we're unregistering because of an error */
Kent Overstreet2a285682014-03-04 16:42:42 -08001444 list_for_each_entry(b, &c->btree_cache, list) {
1445 mutex_lock(&b->write_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001446 if (btree_node_dirty(b))
Kent Overstreet2a285682014-03-04 16:42:42 -08001447 __bch_btree_node_write(b, NULL);
1448 mutex_unlock(&b->write_lock);
1449 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001450
Kent Overstreet79826c32013-07-10 18:31:58 -07001451 for_each_cache(ca, c, i)
1452 if (ca->alloc_thread)
1453 kthread_stop(ca->alloc_thread);
1454
Kent Overstreet5b1016e2014-03-19 17:49:37 -07001455 if (c->journal.cur) {
1456 cancel_delayed_work_sync(&c->journal.work);
1457 /* flush last journal entry if needed */
1458 c->journal.work.work.func(&c->journal.work.work);
1459 }
Kent Overstreetdabb4432014-02-19 19:48:26 -08001460
Kent Overstreetcafe5632013-03-23 16:11:31 -07001461 closure_return(cl);
1462}
1463
1464static void __cache_set_unregister(struct closure *cl)
1465{
1466 struct cache_set *c = container_of(cl, struct cache_set, caching);
Kent Overstreet5caa52a2013-07-10 21:03:25 -07001467 struct cached_dev *dc;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001468 size_t i;
1469
1470 mutex_lock(&bch_register_lock);
1471
Coly Li28312312018-01-08 12:21:28 -08001472 for (i = 0; i < c->devices_max_used; i++)
Kent Overstreet5caa52a2013-07-10 21:03:25 -07001473 if (c->devices[i]) {
1474 if (!UUID_FLASH_ONLY(&c->uuids[i]) &&
1475 test_bit(CACHE_SET_UNREGISTERING, &c->flags)) {
1476 dc = container_of(c->devices[i],
1477 struct cached_dev, disk);
1478 bch_cached_dev_detach(dc);
1479 } else {
1480 bcache_device_stop(c->devices[i]);
1481 }
1482 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001483
1484 mutex_unlock(&bch_register_lock);
1485
1486 continue_at(cl, cache_set_flush, system_wq);
1487}
1488
1489void bch_cache_set_stop(struct cache_set *c)
1490{
1491 if (!test_and_set_bit(CACHE_SET_STOPPING, &c->flags))
1492 closure_queue(&c->caching);
1493}
1494
1495void bch_cache_set_unregister(struct cache_set *c)
1496{
1497 set_bit(CACHE_SET_UNREGISTERING, &c->flags);
1498 bch_cache_set_stop(c);
1499}
1500
1501#define alloc_bucket_pages(gfp, c) \
1502 ((void *) __get_free_pages(__GFP_ZERO|gfp, ilog2(bucket_pages(c))))
1503
1504struct cache_set *bch_cache_set_alloc(struct cache_sb *sb)
1505{
1506 int iter_size;
1507 struct cache_set *c = kzalloc(sizeof(struct cache_set), GFP_KERNEL);
1508 if (!c)
1509 return NULL;
1510
1511 __module_get(THIS_MODULE);
1512 closure_init(&c->cl, NULL);
1513 set_closure_fn(&c->cl, cache_set_free, system_wq);
1514
1515 closure_init(&c->caching, &c->cl);
1516 set_closure_fn(&c->caching, __cache_set_unregister, system_wq);
1517
1518 /* Maybe create continue_at_noreturn() and use it here? */
1519 closure_set_stopped(&c->cl);
1520 closure_put(&c->cl);
1521
1522 kobject_init(&c->kobj, &bch_cache_set_ktype);
1523 kobject_init(&c->internal, &bch_cache_set_internal_ktype);
1524
1525 bch_cache_accounting_init(&c->accounting, &c->cl);
1526
1527 memcpy(c->sb.set_uuid, sb->set_uuid, 16);
1528 c->sb.block_size = sb->block_size;
1529 c->sb.bucket_size = sb->bucket_size;
1530 c->sb.nr_in_set = sb->nr_in_set;
1531 c->sb.last_mount = sb->last_mount;
1532 c->bucket_bits = ilog2(sb->bucket_size);
1533 c->block_bits = ilog2(sb->block_size);
1534 c->nr_uuids = bucket_bytes(c) / sizeof(struct uuid_entry);
Coly Li28312312018-01-08 12:21:28 -08001535 c->devices_max_used = 0;
Kent Overstreetee811282013-12-17 23:49:49 -08001536 c->btree_pages = bucket_pages(c);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001537 if (c->btree_pages > BTREE_MAX_PAGES)
1538 c->btree_pages = max_t(int, c->btree_pages / 4,
1539 BTREE_MAX_PAGES);
1540
Kent Overstreetcb7a5832013-12-16 15:27:25 -08001541 sema_init(&c->sb_write_mutex, 1);
Kent Overstreete8e1d462013-07-24 17:27:07 -07001542 mutex_init(&c->bucket_lock);
Kent Overstreet0a63b662014-03-17 17:15:53 -07001543 init_waitqueue_head(&c->btree_cache_wait);
Kent Overstreet35fcd842013-07-24 17:29:09 -07001544 init_waitqueue_head(&c->bucket_wait);
Kent Overstreetbe628be2016-10-26 20:31:17 -07001545 init_waitqueue_head(&c->gc_wait);
Kent Overstreetcb7a5832013-12-16 15:27:25 -08001546 sema_init(&c->uuid_write_mutex, 1);
Kent Overstreet65d22e92013-07-31 00:03:54 -07001547
Kent Overstreet65d22e92013-07-31 00:03:54 -07001548 spin_lock_init(&c->btree_gc_time.lock);
1549 spin_lock_init(&c->btree_split_time.lock);
1550 spin_lock_init(&c->btree_read_time.lock);
Kent Overstreete8e1d462013-07-24 17:27:07 -07001551
Kent Overstreetcafe5632013-03-23 16:11:31 -07001552 bch_moving_init_cache_set(c);
1553
1554 INIT_LIST_HEAD(&c->list);
1555 INIT_LIST_HEAD(&c->cached_devs);
1556 INIT_LIST_HEAD(&c->btree_cache);
1557 INIT_LIST_HEAD(&c->btree_cache_freeable);
1558 INIT_LIST_HEAD(&c->btree_cache_freed);
1559 INIT_LIST_HEAD(&c->data_buckets);
1560
1561 c->search = mempool_create_slab_pool(32, bch_search_cache);
1562 if (!c->search)
1563 goto err;
1564
1565 iter_size = (sb->bucket_size / sb->block_size + 1) *
1566 sizeof(struct btree_iter_set);
1567
1568 if (!(c->devices = kzalloc(c->nr_uuids * sizeof(void *), GFP_KERNEL)) ||
1569 !(c->bio_meta = mempool_create_kmalloc_pool(2,
1570 sizeof(struct bbio) + sizeof(struct bio_vec) *
1571 bucket_pages(c))) ||
Kent Overstreet57943512013-04-25 13:58:35 -07001572 !(c->fill_iter = mempool_create_kmalloc_pool(1, iter_size)) ||
NeilBrown47e0fb42017-06-18 14:38:57 +10001573 !(c->bio_split = bioset_create(4, offsetof(struct bbio, bio),
1574 BIOSET_NEED_BVECS |
1575 BIOSET_NEED_RESCUER)) ||
Kent Overstreetcafe5632013-03-23 16:11:31 -07001576 !(c->uuids = alloc_bucket_pages(GFP_KERNEL, c)) ||
Bhaktipriya Shridhar81baf902016-06-08 01:57:19 +05301577 !(c->moving_gc_wq = alloc_workqueue("bcache_gc",
1578 WQ_MEM_RECLAIM, 0)) ||
Kent Overstreetcafe5632013-03-23 16:11:31 -07001579 bch_journal_alloc(c) ||
1580 bch_btree_cache_alloc(c) ||
Kent Overstreet67539e82013-09-10 22:53:34 -07001581 bch_open_buckets_alloc(c) ||
1582 bch_bset_sort_state_init(&c->sort, ilog2(c->btree_pages)))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001583 goto err;
1584
Kent Overstreetcafe5632013-03-23 16:11:31 -07001585 c->congested_read_threshold_us = 2000;
1586 c->congested_write_threshold_us = 20000;
Coly Li7ba0d832018-02-07 11:41:42 -08001587 c->error_limit = DEFAULT_IO_ERROR_LIMIT;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001588
1589 return c;
1590err:
1591 bch_cache_set_unregister(c);
1592 return NULL;
1593}
1594
1595static void run_cache_set(struct cache_set *c)
1596{
1597 const char *err = "cannot allocate memory";
1598 struct cached_dev *dc, *t;
1599 struct cache *ca;
Kent Overstreetc18536a2013-07-24 17:44:17 -07001600 struct closure cl;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001601 unsigned i;
1602
Kent Overstreetc18536a2013-07-24 17:44:17 -07001603 closure_init_stack(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001604
1605 for_each_cache(ca, c, i)
1606 c->nbuckets += ca->sb.nbuckets;
Kent Overstreetbe628be2016-10-26 20:31:17 -07001607 set_gc_sectors(c);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001608
1609 if (CACHE_SYNC(&c->sb)) {
1610 LIST_HEAD(journal);
1611 struct bkey *k;
1612 struct jset *j;
1613
1614 err = "cannot allocate memory for journal";
Kent Overstreetc18536a2013-07-24 17:44:17 -07001615 if (bch_journal_read(c, &journal))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001616 goto err;
1617
1618 pr_debug("btree_journal_read() done");
1619
1620 err = "no journal entries found";
1621 if (list_empty(&journal))
1622 goto err;
1623
1624 j = &list_entry(journal.prev, struct journal_replay, list)->j;
1625
1626 err = "IO error reading priorities";
1627 for_each_cache(ca, c, i)
1628 prio_read(ca, j->prio_bucket[ca->sb.nr_this_dev]);
1629
1630 /*
1631 * If prio_read() fails it'll call cache_set_error and we'll
1632 * tear everything down right away, but if we perhaps checked
1633 * sooner we could avoid journal replay.
1634 */
1635
1636 k = &j->btree_root;
1637
1638 err = "bad btree root";
Kent Overstreet65d45232013-12-20 17:22:05 -08001639 if (__bch_btree_ptr_invalid(c, k))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001640 goto err;
1641
1642 err = "error reading btree root";
Slava Pestov2452cc82014-07-12 00:22:53 -07001643 c->root = bch_btree_node_get(c, NULL, k, j->btree_level, true, NULL);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001644 if (IS_ERR_OR_NULL(c->root))
1645 goto err;
1646
1647 list_del_init(&c->root->list);
1648 rw_unlock(true, c->root);
1649
Kent Overstreetc18536a2013-07-24 17:44:17 -07001650 err = uuid_read(c, j, &cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001651 if (err)
1652 goto err;
1653
1654 err = "error in recovery";
Kent Overstreetc18536a2013-07-24 17:44:17 -07001655 if (bch_btree_check(c))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001656 goto err;
1657
1658 bch_journal_mark(c, &journal);
Kent Overstreet2531d9ee2014-03-17 16:55:55 -07001659 bch_initial_gc_finish(c);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001660 pr_debug("btree_check() done");
1661
1662 /*
1663 * bcache_journal_next() can't happen sooner, or
1664 * btree_gc_finish() will give spurious errors about last_gc >
1665 * gc_gen - this is a hack but oh well.
1666 */
1667 bch_journal_next(&c->journal);
1668
Kent Overstreet119ba0f2013-04-24 19:01:12 -07001669 err = "error starting allocator thread";
Kent Overstreetcafe5632013-03-23 16:11:31 -07001670 for_each_cache(ca, c, i)
Kent Overstreet119ba0f2013-04-24 19:01:12 -07001671 if (bch_cache_allocator_start(ca))
1672 goto err;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001673
1674 /*
1675 * First place it's safe to allocate: btree_check() and
1676 * btree_gc_finish() have to run before we have buckets to
1677 * allocate, and bch_bucket_alloc_set() might cause a journal
1678 * entry to be written so bcache_journal_next() has to be called
1679 * first.
1680 *
1681 * If the uuids were in the old format we have to rewrite them
1682 * before the next journal entry is written:
1683 */
1684 if (j->version < BCACHE_JSET_VERSION_UUID)
1685 __uuid_write(c);
1686
Kent Overstreetc18536a2013-07-24 17:44:17 -07001687 bch_journal_replay(c, &journal);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001688 } else {
1689 pr_notice("invalidating existing data");
Kent Overstreetcafe5632013-03-23 16:11:31 -07001690
1691 for_each_cache(ca, c, i) {
1692 unsigned j;
1693
1694 ca->sb.keys = clamp_t(int, ca->sb.nbuckets >> 7,
1695 2, SB_JOURNAL_BUCKETS);
1696
1697 for (j = 0; j < ca->sb.keys; j++)
1698 ca->sb.d[j] = ca->sb.first_bucket + j;
1699 }
1700
Kent Overstreet2531d9ee2014-03-17 16:55:55 -07001701 bch_initial_gc_finish(c);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001702
Kent Overstreet119ba0f2013-04-24 19:01:12 -07001703 err = "error starting allocator thread";
Kent Overstreetcafe5632013-03-23 16:11:31 -07001704 for_each_cache(ca, c, i)
Kent Overstreet119ba0f2013-04-24 19:01:12 -07001705 if (bch_cache_allocator_start(ca))
1706 goto err;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001707
1708 mutex_lock(&c->bucket_lock);
1709 for_each_cache(ca, c, i)
1710 bch_prio_write(ca);
1711 mutex_unlock(&c->bucket_lock);
1712
Kent Overstreetcafe5632013-03-23 16:11:31 -07001713 err = "cannot allocate new UUID bucket";
1714 if (__uuid_write(c))
Kent Overstreet72a44512013-10-24 17:19:26 -07001715 goto err;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001716
1717 err = "cannot allocate new btree root";
Slava Pestov2452cc82014-07-12 00:22:53 -07001718 c->root = __bch_btree_node_alloc(c, NULL, 0, true, NULL);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001719 if (IS_ERR_OR_NULL(c->root))
Kent Overstreet72a44512013-10-24 17:19:26 -07001720 goto err;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001721
Kent Overstreet2a285682014-03-04 16:42:42 -08001722 mutex_lock(&c->root->write_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001723 bkey_copy_key(&c->root->key, &MAX_KEY);
Kent Overstreetc18536a2013-07-24 17:44:17 -07001724 bch_btree_node_write(c->root, &cl);
Kent Overstreet2a285682014-03-04 16:42:42 -08001725 mutex_unlock(&c->root->write_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001726
1727 bch_btree_set_root(c->root);
1728 rw_unlock(true, c->root);
1729
1730 /*
1731 * We don't want to write the first journal entry until
1732 * everything is set up - fortunately journal entries won't be
1733 * written until the SET_CACHE_SYNC() here:
1734 */
1735 SET_CACHE_SYNC(&c->sb, true);
1736
1737 bch_journal_next(&c->journal);
Kent Overstreetc18536a2013-07-24 17:44:17 -07001738 bch_journal_meta(c, &cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001739 }
1740
Kent Overstreet72a44512013-10-24 17:19:26 -07001741 err = "error starting gc thread";
1742 if (bch_gc_thread_start(c))
1743 goto err;
1744
Kent Overstreetc18536a2013-07-24 17:44:17 -07001745 closure_sync(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001746 c->sb.last_mount = get_seconds();
1747 bcache_write_super(c);
1748
1749 list_for_each_entry_safe(dc, t, &uncached_devices, list)
Tang Junhui73ac1052018-02-07 11:41:46 -08001750 bch_cached_dev_attach(dc, c, NULL);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001751
1752 flash_devs_run(c);
1753
Slava Pestovbf0c55c2014-07-11 12:17:41 -07001754 set_bit(CACHE_SET_RUNNING, &c->flags);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001755 return;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001756err:
Kent Overstreetc18536a2013-07-24 17:44:17 -07001757 closure_sync(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001758 /* XXX: test this, it's broken */
Kees Cookc8694942013-09-10 21:41:34 -07001759 bch_cache_set_error(c, "%s", err);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001760}
1761
1762static bool can_attach_cache(struct cache *ca, struct cache_set *c)
1763{
1764 return ca->sb.block_size == c->sb.block_size &&
Nicholas Swenson9eb8ebe2013-10-22 13:19:23 -07001765 ca->sb.bucket_size == c->sb.bucket_size &&
Kent Overstreetcafe5632013-03-23 16:11:31 -07001766 ca->sb.nr_in_set == c->sb.nr_in_set;
1767}
1768
1769static const char *register_cache_set(struct cache *ca)
1770{
1771 char buf[12];
1772 const char *err = "cannot allocate memory";
1773 struct cache_set *c;
1774
1775 list_for_each_entry(c, &bch_cache_sets, list)
1776 if (!memcmp(c->sb.set_uuid, ca->sb.set_uuid, 16)) {
1777 if (c->cache[ca->sb.nr_this_dev])
1778 return "duplicate cache set member";
1779
1780 if (!can_attach_cache(ca, c))
1781 return "cache sb does not match set";
1782
1783 if (!CACHE_SYNC(&ca->sb))
1784 SET_CACHE_SYNC(&c->sb, false);
1785
1786 goto found;
1787 }
1788
1789 c = bch_cache_set_alloc(&ca->sb);
1790 if (!c)
1791 return err;
1792
1793 err = "error creating kobject";
1794 if (kobject_add(&c->kobj, bcache_kobj, "%pU", c->sb.set_uuid) ||
1795 kobject_add(&c->internal, &c->kobj, "internal"))
1796 goto err;
1797
1798 if (bch_cache_accounting_add_kobjs(&c->accounting, &c->kobj))
1799 goto err;
1800
1801 bch_debug_init_cache_set(c);
1802
1803 list_add(&c->list, &bch_cache_sets);
1804found:
1805 sprintf(buf, "cache%i", ca->sb.nr_this_dev);
1806 if (sysfs_create_link(&ca->kobj, &c->kobj, "set") ||
1807 sysfs_create_link(&c->kobj, &ca->kobj, buf))
1808 goto err;
1809
1810 if (ca->sb.seq > c->sb.seq) {
1811 c->sb.version = ca->sb.version;
1812 memcpy(c->sb.set_uuid, ca->sb.set_uuid, 16);
1813 c->sb.flags = ca->sb.flags;
1814 c->sb.seq = ca->sb.seq;
1815 pr_debug("set version = %llu", c->sb.version);
1816 }
1817
Kent Overstreetd83353b2014-06-11 19:44:49 -07001818 kobject_get(&ca->kobj);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001819 ca->set = c;
1820 ca->set->cache[ca->sb.nr_this_dev] = ca;
1821 c->cache_by_alloc[c->caches_loaded++] = ca;
1822
1823 if (c->caches_loaded == c->sb.nr_in_set)
1824 run_cache_set(c);
1825
1826 return NULL;
1827err:
1828 bch_cache_set_unregister(c);
1829 return err;
1830}
1831
1832/* Cache device */
1833
1834void bch_cache_release(struct kobject *kobj)
1835{
1836 struct cache *ca = container_of(kobj, struct cache, kobj);
Kent Overstreet78365412013-12-17 01:29:34 -08001837 unsigned i;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001838
Slava Pestovc9a78332014-06-19 15:05:59 -07001839 if (ca->set) {
1840 BUG_ON(ca->set->cache[ca->sb.nr_this_dev] != ca);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001841 ca->set->cache[ca->sb.nr_this_dev] = NULL;
Slava Pestovc9a78332014-06-19 15:05:59 -07001842 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001843
Kent Overstreetcafe5632013-03-23 16:11:31 -07001844 free_pages((unsigned long) ca->disk_buckets, ilog2(bucket_pages(ca)));
1845 kfree(ca->prio_buckets);
1846 vfree(ca->buckets);
1847
1848 free_heap(&ca->heap);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001849 free_fifo(&ca->free_inc);
Kent Overstreet78365412013-12-17 01:29:34 -08001850
1851 for (i = 0; i < RESERVE_NR; i++)
1852 free_fifo(&ca->free[i]);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001853
1854 if (ca->sb_bio.bi_inline_vecs[0].bv_page)
Ming Lei263663c2017-12-18 20:22:04 +08001855 put_page(bio_first_page_all(&ca->sb_bio));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001856
Kent Overstreet0781c872014-07-07 13:03:36 -07001857 if (!IS_ERR_OR_NULL(ca->bdev))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001858 blkdev_put(ca->bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001859
1860 kfree(ca);
1861 module_put(THIS_MODULE);
1862}
1863
Yijing Wangc50d4d52016-07-04 09:23:25 +08001864static int cache_alloc(struct cache *ca)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001865{
1866 size_t free;
Tang Junhui682811b2018-02-07 11:41:43 -08001867 size_t btree_buckets;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001868 struct bucket *b;
1869
Kent Overstreetcafe5632013-03-23 16:11:31 -07001870 __module_get(THIS_MODULE);
1871 kobject_init(&ca->kobj, &bch_cache_ktype);
1872
Ming Lei3a83f462016-11-22 08:57:21 -07001873 bio_init(&ca->journal.bio, ca->journal.bio.bi_inline_vecs, 8);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001874
Tang Junhui682811b2018-02-07 11:41:43 -08001875 /*
1876 * when ca->sb.njournal_buckets is not zero, journal exists,
1877 * and in bch_journal_replay(), tree node may split,
1878 * so bucket of RESERVE_BTREE type is needed,
1879 * the worst situation is all journal buckets are valid journal,
1880 * and all the keys need to replay,
1881 * so the number of RESERVE_BTREE type buckets should be as much
1882 * as journal buckets
1883 */
1884 btree_buckets = ca->sb.njournal_buckets ?: 8;
Kent Overstreet78365412013-12-17 01:29:34 -08001885 free = roundup_pow_of_two(ca->sb.nbuckets) >> 10;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001886
Tang Junhui682811b2018-02-07 11:41:43 -08001887 if (!init_fifo(&ca->free[RESERVE_BTREE], btree_buckets, GFP_KERNEL) ||
Kent Overstreetacc9cf82016-08-17 18:21:24 -07001888 !init_fifo_exact(&ca->free[RESERVE_PRIO], prio_buckets(ca), GFP_KERNEL) ||
Kent Overstreet78365412013-12-17 01:29:34 -08001889 !init_fifo(&ca->free[RESERVE_MOVINGGC], free, GFP_KERNEL) ||
1890 !init_fifo(&ca->free[RESERVE_NONE], free, GFP_KERNEL) ||
Kent Overstreetcafe5632013-03-23 16:11:31 -07001891 !init_fifo(&ca->free_inc, free << 2, GFP_KERNEL) ||
Kent Overstreetcafe5632013-03-23 16:11:31 -07001892 !init_heap(&ca->heap, free << 3, GFP_KERNEL) ||
Kent Overstreetf59fce82013-05-15 00:11:26 -07001893 !(ca->buckets = vzalloc(sizeof(struct bucket) *
Kent Overstreetcafe5632013-03-23 16:11:31 -07001894 ca->sb.nbuckets)) ||
1895 !(ca->prio_buckets = kzalloc(sizeof(uint64_t) * prio_buckets(ca) *
1896 2, GFP_KERNEL)) ||
Kent Overstreet749b61d2013-11-23 23:11:25 -08001897 !(ca->disk_buckets = alloc_bucket_pages(GFP_KERNEL, ca)))
Kent Overstreetf59fce82013-05-15 00:11:26 -07001898 return -ENOMEM;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001899
1900 ca->prio_last_buckets = ca->prio_buckets + prio_buckets(ca);
1901
Kent Overstreetcafe5632013-03-23 16:11:31 -07001902 for_each_bucket(b, ca)
1903 atomic_set(&b->pin, 0);
1904
Kent Overstreetcafe5632013-03-23 16:11:31 -07001905 return 0;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001906}
1907
Eric Wheeler9b299722016-02-26 14:33:56 -08001908static int register_cache(struct cache_sb *sb, struct page *sb_page,
Slava Pestovc9a78332014-06-19 15:05:59 -07001909 struct block_device *bdev, struct cache *ca)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001910{
1911 char name[BDEVNAME_SIZE];
Eric Wheelerd9dc1702016-06-17 15:01:54 -07001912 const char *err = NULL; /* must be set for any error case */
Eric Wheeler9b299722016-02-26 14:33:56 -08001913 int ret = 0;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001914
Kent Overstreetf59fce82013-05-15 00:11:26 -07001915 memcpy(&ca->sb, sb, sizeof(struct cache_sb));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001916 ca->bdev = bdev;
1917 ca->bdev->bd_holder = ca;
1918
Ming Lei3a83f462016-11-22 08:57:21 -07001919 bio_init(&ca->sb_bio, ca->sb_bio.bi_inline_vecs, 1);
Ming Lei263663c2017-12-18 20:22:04 +08001920 bio_first_bvec_all(&ca->sb_bio)->bv_page = sb_page;
Kent Overstreetf59fce82013-05-15 00:11:26 -07001921 get_page(sb_page);
1922
Kent Overstreetcafe5632013-03-23 16:11:31 -07001923 if (blk_queue_discard(bdev_get_queue(ca->bdev)))
1924 ca->discard = CACHE_DISCARD(&ca->sb);
1925
Yijing Wangc50d4d52016-07-04 09:23:25 +08001926 ret = cache_alloc(ca);
Eric Wheelerd9dc1702016-06-17 15:01:54 -07001927 if (ret != 0) {
1928 if (ret == -ENOMEM)
1929 err = "cache_alloc(): -ENOMEM";
1930 else
1931 err = "cache_alloc(): unknown error";
Kent Overstreetf59fce82013-05-15 00:11:26 -07001932 goto err;
Eric Wheelerd9dc1702016-06-17 15:01:54 -07001933 }
Kent Overstreetf59fce82013-05-15 00:11:26 -07001934
Eric Wheeler9b299722016-02-26 14:33:56 -08001935 if (kobject_add(&ca->kobj, &part_to_dev(bdev->bd_part)->kobj, "bcache")) {
1936 err = "error calling kobject_add";
1937 ret = -ENOMEM;
1938 goto out;
1939 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001940
Kent Overstreet4fa03402014-03-17 18:58:55 -07001941 mutex_lock(&bch_register_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001942 err = register_cache_set(ca);
Kent Overstreet4fa03402014-03-17 18:58:55 -07001943 mutex_unlock(&bch_register_lock);
1944
Eric Wheeler9b299722016-02-26 14:33:56 -08001945 if (err) {
1946 ret = -ENODEV;
1947 goto out;
1948 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001949
1950 pr_info("registered cache device %s", bdevname(bdev, name));
Eric Wheeler9b299722016-02-26 14:33:56 -08001951
Kent Overstreetd83353b2014-06-11 19:44:49 -07001952out:
1953 kobject_put(&ca->kobj);
Eric Wheeler9b299722016-02-26 14:33:56 -08001954
Kent Overstreetcafe5632013-03-23 16:11:31 -07001955err:
Eric Wheeler9b299722016-02-26 14:33:56 -08001956 if (err)
1957 pr_notice("error opening %s: %s", bdevname(bdev, name), err);
1958
1959 return ret;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001960}
1961
1962/* Global interfaces/init */
1963
1964static ssize_t register_bcache(struct kobject *, struct kobj_attribute *,
1965 const char *, size_t);
1966
1967kobj_attribute_write(register, register_bcache);
1968kobj_attribute_write(register_quiet, register_bcache);
1969
Gabriel de Perthuisa9dd53a2013-05-04 12:19:41 +02001970static bool bch_is_open_backing(struct block_device *bdev) {
1971 struct cache_set *c, *tc;
1972 struct cached_dev *dc, *t;
1973
1974 list_for_each_entry_safe(c, tc, &bch_cache_sets, list)
1975 list_for_each_entry_safe(dc, t, &c->cached_devs, list)
1976 if (dc->bdev == bdev)
1977 return true;
1978 list_for_each_entry_safe(dc, t, &uncached_devices, list)
1979 if (dc->bdev == bdev)
1980 return true;
1981 return false;
1982}
1983
1984static bool bch_is_open_cache(struct block_device *bdev) {
1985 struct cache_set *c, *tc;
1986 struct cache *ca;
1987 unsigned i;
1988
1989 list_for_each_entry_safe(c, tc, &bch_cache_sets, list)
1990 for_each_cache(ca, c, i)
1991 if (ca->bdev == bdev)
1992 return true;
1993 return false;
1994}
1995
1996static bool bch_is_open(struct block_device *bdev) {
1997 return bch_is_open_cache(bdev) || bch_is_open_backing(bdev);
1998}
1999
Kent Overstreetcafe5632013-03-23 16:11:31 -07002000static ssize_t register_bcache(struct kobject *k, struct kobj_attribute *attr,
2001 const char *buffer, size_t size)
2002{
2003 ssize_t ret = size;
2004 const char *err = "cannot allocate memory";
2005 char *path = NULL;
2006 struct cache_sb *sb = NULL;
2007 struct block_device *bdev = NULL;
2008 struct page *sb_page = NULL;
2009
2010 if (!try_module_get(THIS_MODULE))
2011 return -EBUSY;
2012
Kent Overstreetcafe5632013-03-23 16:11:31 -07002013 if (!(path = kstrndup(buffer, size, GFP_KERNEL)) ||
2014 !(sb = kmalloc(sizeof(struct cache_sb), GFP_KERNEL)))
2015 goto err;
2016
2017 err = "failed to open device";
2018 bdev = blkdev_get_by_path(strim(path),
2019 FMODE_READ|FMODE_WRITE|FMODE_EXCL,
2020 sb);
Kent Overstreetf59fce82013-05-15 00:11:26 -07002021 if (IS_ERR(bdev)) {
Gabriel de Perthuisa9dd53a2013-05-04 12:19:41 +02002022 if (bdev == ERR_PTR(-EBUSY)) {
2023 bdev = lookup_bdev(strim(path));
Jianjian Huo789d21d2014-07-13 09:08:59 -07002024 mutex_lock(&bch_register_lock);
Gabriel de Perthuisa9dd53a2013-05-04 12:19:41 +02002025 if (!IS_ERR(bdev) && bch_is_open(bdev))
2026 err = "device already registered";
2027 else
2028 err = "device busy";
Jianjian Huo789d21d2014-07-13 09:08:59 -07002029 mutex_unlock(&bch_register_lock);
Jan Kara4b758df2017-09-06 14:25:51 +08002030 if (!IS_ERR(bdev))
2031 bdput(bdev);
Gabriel de Perthuisd7076f22015-11-29 18:40:23 -08002032 if (attr == &ksysfs_register_quiet)
2033 goto out;
Gabriel de Perthuisa9dd53a2013-05-04 12:19:41 +02002034 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07002035 goto err;
Kent Overstreetf59fce82013-05-15 00:11:26 -07002036 }
2037
2038 err = "failed to set blocksize";
2039 if (set_blocksize(bdev, 4096))
2040 goto err_close;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002041
2042 err = read_super(sb, bdev, &sb_page);
2043 if (err)
2044 goto err_close;
2045
Kent Overstreet29033812013-04-11 15:14:35 -07002046 if (SB_IS_BDEV(sb)) {
Kent Overstreetcafe5632013-03-23 16:11:31 -07002047 struct cached_dev *dc = kzalloc(sizeof(*dc), GFP_KERNEL);
Kent Overstreetf59fce82013-05-15 00:11:26 -07002048 if (!dc)
2049 goto err_close;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002050
Kent Overstreet4fa03402014-03-17 18:58:55 -07002051 mutex_lock(&bch_register_lock);
Kent Overstreetf59fce82013-05-15 00:11:26 -07002052 register_bdev(sb, sb_page, bdev, dc);
Kent Overstreet4fa03402014-03-17 18:58:55 -07002053 mutex_unlock(&bch_register_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002054 } else {
2055 struct cache *ca = kzalloc(sizeof(*ca), GFP_KERNEL);
Kent Overstreetf59fce82013-05-15 00:11:26 -07002056 if (!ca)
2057 goto err_close;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002058
Eric Wheeler9b299722016-02-26 14:33:56 -08002059 if (register_cache(sb, sb_page, bdev, ca) != 0)
2060 goto err_close;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002061 }
Kent Overstreetf59fce82013-05-15 00:11:26 -07002062out:
2063 if (sb_page)
Kent Overstreetcafe5632013-03-23 16:11:31 -07002064 put_page(sb_page);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002065 kfree(sb);
2066 kfree(path);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002067 module_put(THIS_MODULE);
2068 return ret;
Kent Overstreetf59fce82013-05-15 00:11:26 -07002069
2070err_close:
2071 blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
2072err:
Gabriel de Perthuisd7076f22015-11-29 18:40:23 -08002073 pr_info("error opening %s: %s", path, err);
Kent Overstreetf59fce82013-05-15 00:11:26 -07002074 ret = -EINVAL;
2075 goto out;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002076}
2077
2078static int bcache_reboot(struct notifier_block *n, unsigned long code, void *x)
2079{
2080 if (code == SYS_DOWN ||
2081 code == SYS_HALT ||
2082 code == SYS_POWER_OFF) {
2083 DEFINE_WAIT(wait);
2084 unsigned long start = jiffies;
2085 bool stopped = false;
2086
2087 struct cache_set *c, *tc;
2088 struct cached_dev *dc, *tdc;
2089
2090 mutex_lock(&bch_register_lock);
2091
2092 if (list_empty(&bch_cache_sets) &&
2093 list_empty(&uncached_devices))
2094 goto out;
2095
2096 pr_info("Stopping all devices:");
2097
2098 list_for_each_entry_safe(c, tc, &bch_cache_sets, list)
2099 bch_cache_set_stop(c);
2100
2101 list_for_each_entry_safe(dc, tdc, &uncached_devices, list)
2102 bcache_device_stop(&dc->disk);
2103
2104 /* What's a condition variable? */
2105 while (1) {
2106 long timeout = start + 2 * HZ - jiffies;
2107
2108 stopped = list_empty(&bch_cache_sets) &&
2109 list_empty(&uncached_devices);
2110
2111 if (timeout < 0 || stopped)
2112 break;
2113
2114 prepare_to_wait(&unregister_wait, &wait,
2115 TASK_UNINTERRUPTIBLE);
2116
2117 mutex_unlock(&bch_register_lock);
2118 schedule_timeout(timeout);
2119 mutex_lock(&bch_register_lock);
2120 }
2121
2122 finish_wait(&unregister_wait, &wait);
2123
2124 if (stopped)
2125 pr_info("All devices stopped");
2126 else
2127 pr_notice("Timeout waiting for devices to be closed");
2128out:
2129 mutex_unlock(&bch_register_lock);
2130 }
2131
2132 return NOTIFY_DONE;
2133}
2134
2135static struct notifier_block reboot = {
2136 .notifier_call = bcache_reboot,
2137 .priority = INT_MAX, /* before any real devices */
2138};
2139
2140static void bcache_exit(void)
2141{
2142 bch_debug_exit();
Kent Overstreetcafe5632013-03-23 16:11:31 -07002143 bch_request_exit();
Kent Overstreetcafe5632013-03-23 16:11:31 -07002144 if (bcache_kobj)
2145 kobject_put(bcache_kobj);
2146 if (bcache_wq)
2147 destroy_workqueue(bcache_wq);
Kent Overstreet5c41c8a2013-07-08 17:53:26 -07002148 if (bcache_major)
2149 unregister_blkdev(bcache_major, "bcache");
Kent Overstreetcafe5632013-03-23 16:11:31 -07002150 unregister_reboot_notifier(&reboot);
Liang Chen330a4db2017-10-30 14:46:35 -07002151 mutex_destroy(&bch_register_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002152}
2153
2154static int __init bcache_init(void)
2155{
2156 static const struct attribute *files[] = {
2157 &ksysfs_register.attr,
2158 &ksysfs_register_quiet.attr,
2159 NULL
2160 };
2161
2162 mutex_init(&bch_register_lock);
2163 init_waitqueue_head(&unregister_wait);
2164 register_reboot_notifier(&reboot);
Kent Overstreet07e86cc2013-03-25 11:46:43 -07002165 closure_debug_init();
Kent Overstreetcafe5632013-03-23 16:11:31 -07002166
2167 bcache_major = register_blkdev(0, "bcache");
Zheng Liu2ecf0cd2015-11-29 17:21:57 -08002168 if (bcache_major < 0) {
2169 unregister_reboot_notifier(&reboot);
Liang Chen330a4db2017-10-30 14:46:35 -07002170 mutex_destroy(&bch_register_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002171 return bcache_major;
Zheng Liu2ecf0cd2015-11-29 17:21:57 -08002172 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07002173
Bhaktipriya Shridhar81baf902016-06-08 01:57:19 +05302174 if (!(bcache_wq = alloc_workqueue("bcache", WQ_MEM_RECLAIM, 0)) ||
Kent Overstreetcafe5632013-03-23 16:11:31 -07002175 !(bcache_kobj = kobject_create_and_add("bcache", fs_kobj)) ||
Kent Overstreetcafe5632013-03-23 16:11:31 -07002176 bch_request_init() ||
Liang Chen330a4db2017-10-30 14:46:35 -07002177 bch_debug_init(bcache_kobj) ||
2178 sysfs_create_files(bcache_kobj, files))
Kent Overstreetcafe5632013-03-23 16:11:31 -07002179 goto err;
2180
2181 return 0;
2182err:
2183 bcache_exit();
2184 return -ENOMEM;
2185}
2186
2187module_exit(bcache_exit);
2188module_init(bcache_init);