blob: e99e6b8852b228294856dc9b23ab77f494fa1588 [file] [log] [blame]
Kent Overstreetcafe5632013-03-23 16:11:31 -07001/*
2 * Assorted bcache debug code
3 *
4 * Copyright 2010, 2011 Kent Overstreet <kent.overstreet@gmail.com>
5 * Copyright 2012 Google, Inc.
6 */
7
8#include "bcache.h"
9#include "btree.h"
10#include "debug.h"
Kent Overstreetcafe5632013-03-23 16:11:31 -070011
12#include <linux/console.h>
13#include <linux/debugfs.h>
14#include <linux/module.h>
15#include <linux/random.h>
16#include <linux/seq_file.h>
17
18static struct dentry *debug;
19
20const char *bch_ptr_status(struct cache_set *c, const struct bkey *k)
21{
22 unsigned i;
23
24 for (i = 0; i < KEY_PTRS(k); i++)
25 if (ptr_available(c, k, i)) {
26 struct cache *ca = PTR_CACHE(c, k, i);
27 size_t bucket = PTR_BUCKET_NR(c, k, i);
28 size_t r = bucket_remainder(c, PTR_OFFSET(k, i));
29
30 if (KEY_SIZE(k) + r > c->sb.bucket_size)
31 return "bad, length too big";
32 if (bucket < ca->sb.first_bucket)
33 return "bad, short offset";
34 if (bucket >= ca->sb.nbuckets)
35 return "bad, offset past end of device";
36 if (ptr_stale(c, k, i))
37 return "stale";
38 }
39
40 if (!bkey_cmp(k, &ZERO_KEY))
41 return "bad, null key";
42 if (!KEY_PTRS(k))
43 return "bad, no pointers";
44 if (!KEY_SIZE(k))
45 return "zeroed key";
46 return "";
47}
48
Kent Overstreet85b14922013-05-14 20:33:16 -070049int bch_bkey_to_text(char *buf, size_t size, const struct bkey *k)
Kent Overstreetcafe5632013-03-23 16:11:31 -070050{
51 unsigned i = 0;
Kent Overstreet85b14922013-05-14 20:33:16 -070052 char *out = buf, *end = buf + size;
Kent Overstreetcafe5632013-03-23 16:11:31 -070053
54#define p(...) (out += scnprintf(out, end - out, __VA_ARGS__))
55
56 p("%llu:%llu len %llu -> [", KEY_INODE(k), KEY_OFFSET(k), KEY_SIZE(k));
57
58 if (KEY_PTRS(k))
59 while (1) {
60 p("%llu:%llu gen %llu",
61 PTR_DEV(k, i), PTR_OFFSET(k, i), PTR_GEN(k, i));
62
63 if (++i == KEY_PTRS(k))
64 break;
65
66 p(", ");
67 }
68
69 p("]");
70
71 if (KEY_DIRTY(k))
72 p(" dirty");
73 if (KEY_CSUM(k))
74 p(" cs%llu %llx", KEY_CSUM(k), k->ptr[1]);
75#undef p
Kent Overstreet85b14922013-05-14 20:33:16 -070076 return out - buf;
Kent Overstreetcafe5632013-03-23 16:11:31 -070077}
78
Kent Overstreet280481d2013-10-24 16:36:03 -070079#ifdef CONFIG_BCACHE_DEBUG
Kent Overstreetcafe5632013-03-23 16:11:31 -070080
81static void dump_bset(struct btree *b, struct bset *i)
82{
Kent Overstreet280481d2013-10-24 16:36:03 -070083 struct bkey *k, *next;
Kent Overstreetcafe5632013-03-23 16:11:31 -070084 unsigned j;
Kent Overstreet85b14922013-05-14 20:33:16 -070085 char buf[80];
Kent Overstreetcafe5632013-03-23 16:11:31 -070086
Kent Overstreet280481d2013-10-24 16:36:03 -070087 for (k = i->start; k < end(i); k = next) {
88 next = bkey_next(k);
89
Kent Overstreet85b14922013-05-14 20:33:16 -070090 bch_bkey_to_text(buf, sizeof(buf), k);
Kent Overstreetcafe5632013-03-23 16:11:31 -070091 printk(KERN_ERR "block %zu key %zi/%u: %s", index(i, b),
Kent Overstreet85b14922013-05-14 20:33:16 -070092 (uint64_t *) k - i->d, i->keys, buf);
Kent Overstreetcafe5632013-03-23 16:11:31 -070093
94 for (j = 0; j < KEY_PTRS(k); j++) {
95 size_t n = PTR_BUCKET_NR(b->c, k, j);
96 printk(" bucket %zu", n);
97
98 if (n >= b->c->sb.first_bucket && n < b->c->sb.nbuckets)
99 printk(" prio %i",
100 PTR_BUCKET(b->c, k, j)->prio);
101 }
102
103 printk(" %s\n", bch_ptr_status(b->c, k));
104
Kent Overstreet280481d2013-10-24 16:36:03 -0700105 if (next < end(i) &&
106 bkey_cmp(k, !b->level ? &START_KEY(next) : next) > 0)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700107 printk(KERN_ERR "Key skipped backwards\n");
108 }
109}
110
Kent Overstreet280481d2013-10-24 16:36:03 -0700111static void bch_dump_bucket(struct btree *b)
112{
113 unsigned i;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700114
Kent Overstreet280481d2013-10-24 16:36:03 -0700115 console_lock();
116 for (i = 0; i <= b->nsets; i++)
117 dump_bset(b, b->sets[i].data);
118 console_unlock();
119}
Kent Overstreetcafe5632013-03-23 16:11:31 -0700120
121void bch_btree_verify(struct btree *b, struct bset *new)
122{
123 struct btree *v = b->c->verify_data;
124 struct closure cl;
125 closure_init_stack(&cl);
126
127 if (!b->c->verify)
128 return;
129
130 closure_wait_event(&b->io.wait, &cl,
131 atomic_read(&b->io.cl.remaining) == -1);
132
133 mutex_lock(&b->c->verify_lock);
134
135 bkey_copy(&v->key, &b->key);
136 v->written = 0;
137 v->level = b->level;
138
Kent Overstreet57943512013-04-25 13:58:35 -0700139 bch_btree_node_read(v);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700140 closure_wait_event(&v->io.wait, &cl,
141 atomic_read(&b->io.cl.remaining) == -1);
142
143 if (new->keys != v->sets[0].data->keys ||
144 memcmp(new->start,
145 v->sets[0].data->start,
146 (void *) end(new) - (void *) new->start)) {
147 unsigned i, j;
148
149 console_lock();
150
151 printk(KERN_ERR "*** original memory node:\n");
152 for (i = 0; i <= b->nsets; i++)
153 dump_bset(b, b->sets[i].data);
154
155 printk(KERN_ERR "*** sorted memory node:\n");
156 dump_bset(b, new);
157
158 printk(KERN_ERR "*** on disk node:\n");
159 dump_bset(v, v->sets[0].data);
160
161 for (j = 0; j < new->keys; j++)
162 if (new->d[j] != v->sets[0].data->d[j])
163 break;
164
165 console_unlock();
166 panic("verify failed at %u\n", j);
167 }
168
169 mutex_unlock(&b->c->verify_lock);
170}
171
Kent Overstreet220bb382013-09-10 19:02:45 -0700172void bch_data_verify(struct cached_dev *dc, struct bio *bio)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700173{
174 char name[BDEVNAME_SIZE];
Kent Overstreetcafe5632013-03-23 16:11:31 -0700175 struct bio *check;
176 struct bio_vec *bv;
177 int i;
178
Kent Overstreet220bb382013-09-10 19:02:45 -0700179 check = bio_clone(bio, GFP_NOIO);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700180 if (!check)
181 return;
182
Kent Overstreet8e51e412013-06-06 18:15:57 -0700183 if (bio_alloc_pages(check, GFP_NOIO))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700184 goto out_put;
185
Kent Overstreet220bb382013-09-10 19:02:45 -0700186 submit_bio_wait(READ_SYNC, check);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700187
Kent Overstreet220bb382013-09-10 19:02:45 -0700188 bio_for_each_segment(bv, bio, i) {
189 void *p1 = kmap_atomic(bv->bv_page);
190 void *p2 = page_address(check->bi_io_vec[i].bv_page);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700191
192 if (memcmp(p1 + bv->bv_offset,
193 p2 + bv->bv_offset,
194 bv->bv_len))
Kent Overstreetb1a67b02013-03-25 11:46:44 -0700195 printk(KERN_ERR
196 "bcache (%s): verify failed at sector %llu\n",
Kent Overstreetcafe5632013-03-23 16:11:31 -0700197 bdevname(dc->bdev, name),
Kent Overstreet220bb382013-09-10 19:02:45 -0700198 (uint64_t) bio->bi_sector);
199 kunmap_atomic(p1);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700200 }
201
Kent Overstreet220bb382013-09-10 19:02:45 -0700202 bio_for_each_segment_all(bv, check, i)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700203 __free_page(bv->bv_page);
204out_put:
205 bio_put(check);
206}
207
Kent Overstreet280481d2013-10-24 16:36:03 -0700208int __bch_count_data(struct btree *b)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700209{
210 unsigned ret = 0;
211 struct btree_iter iter;
212 struct bkey *k;
213
214 if (!b->level)
215 for_each_key(b, k, &iter)
216 ret += KEY_SIZE(k);
217 return ret;
218}
219
Kent Overstreet280481d2013-10-24 16:36:03 -0700220void __bch_check_keys(struct btree *b, const char *fmt, ...)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700221{
222 va_list args;
223 struct bkey *k, *p = NULL;
224 struct btree_iter iter;
Kent Overstreet280481d2013-10-24 16:36:03 -0700225 const char *err;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700226
227 for_each_key(b, k, &iter) {
Kent Overstreet280481d2013-10-24 16:36:03 -0700228 if (!b->level) {
229 err = "Keys out of order";
230 if (p && bkey_cmp(&START_KEY(p), &START_KEY(k)) > 0)
231 goto bug;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700232
Kent Overstreet280481d2013-10-24 16:36:03 -0700233 if (bch_ptr_invalid(b, k))
234 continue;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700235
Kent Overstreet280481d2013-10-24 16:36:03 -0700236 err = "Overlapping keys";
237 if (p && bkey_cmp(p, &START_KEY(k)) > 0)
238 goto bug;
239 } else {
240 if (bch_ptr_bad(b, k))
241 continue;
242
243 err = "Duplicate keys";
244 if (p && !bkey_cmp(p, k))
245 goto bug;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700246 }
247 p = k;
248 }
Kent Overstreet280481d2013-10-24 16:36:03 -0700249
250 err = "Key larger than btree node key";
251 if (p && bkey_cmp(p, &b->key) > 0)
252 goto bug;
253
Kent Overstreetcafe5632013-03-23 16:11:31 -0700254 return;
255bug:
Kent Overstreet280481d2013-10-24 16:36:03 -0700256 bch_dump_bucket(b);
257
Kent Overstreetcafe5632013-03-23 16:11:31 -0700258 va_start(args, fmt);
Kent Overstreet280481d2013-10-24 16:36:03 -0700259 vprintk(fmt, args);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700260 va_end(args);
Kent Overstreet280481d2013-10-24 16:36:03 -0700261
262 panic("bcache error: %s:\n", err);
263}
264
265void bch_btree_iter_next_check(struct btree_iter *iter)
266{
267 struct bkey *k = iter->data->k, *next = bkey_next(k);
268
269 if (next < iter->data->end &&
270 bkey_cmp(k, iter->b->level ? next : &START_KEY(next)) > 0) {
271 bch_dump_bucket(iter->b);
272 panic("Key skipped backwards\n");
273 }
Kent Overstreetcafe5632013-03-23 16:11:31 -0700274}
275
276#endif
277
278#ifdef CONFIG_DEBUG_FS
279
280/* XXX: cache set refcounting */
281
282struct dump_iterator {
283 char buf[PAGE_SIZE];
284 size_t bytes;
285 struct cache_set *c;
286 struct keybuf keys;
287};
288
289static bool dump_pred(struct keybuf *buf, struct bkey *k)
290{
291 return true;
292}
293
294static ssize_t bch_dump_read(struct file *file, char __user *buf,
295 size_t size, loff_t *ppos)
296{
297 struct dump_iterator *i = file->private_data;
298 ssize_t ret = 0;
Kent Overstreet85b14922013-05-14 20:33:16 -0700299 char kbuf[80];
Kent Overstreetcafe5632013-03-23 16:11:31 -0700300
301 while (size) {
302 struct keybuf_key *w;
303 unsigned bytes = min(i->bytes, size);
304
305 int err = copy_to_user(buf, i->buf, bytes);
306 if (err)
307 return err;
308
309 ret += bytes;
310 buf += bytes;
311 size -= bytes;
312 i->bytes -= bytes;
313 memmove(i->buf, i->buf + bytes, i->bytes);
314
315 if (i->bytes)
316 break;
317
Kent Overstreet72c27062013-06-05 06:24:39 -0700318 w = bch_keybuf_next_rescan(i->c, &i->keys, &MAX_KEY, dump_pred);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700319 if (!w)
320 break;
321
Kent Overstreet85b14922013-05-14 20:33:16 -0700322 bch_bkey_to_text(kbuf, sizeof(kbuf), &w->key);
323 i->bytes = snprintf(i->buf, PAGE_SIZE, "%s\n", kbuf);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700324 bch_keybuf_del(&i->keys, w);
325 }
326
327 return ret;
328}
329
330static int bch_dump_open(struct inode *inode, struct file *file)
331{
332 struct cache_set *c = inode->i_private;
333 struct dump_iterator *i;
334
335 i = kzalloc(sizeof(struct dump_iterator), GFP_KERNEL);
336 if (!i)
337 return -ENOMEM;
338
339 file->private_data = i;
340 i->c = c;
Kent Overstreet72c27062013-06-05 06:24:39 -0700341 bch_keybuf_init(&i->keys);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700342 i->keys.last_scanned = KEY(0, 0, 0);
343
344 return 0;
345}
346
347static int bch_dump_release(struct inode *inode, struct file *file)
348{
349 kfree(file->private_data);
350 return 0;
351}
352
353static const struct file_operations cache_set_debug_ops = {
354 .owner = THIS_MODULE,
355 .open = bch_dump_open,
356 .read = bch_dump_read,
357 .release = bch_dump_release
358};
359
360void bch_debug_init_cache_set(struct cache_set *c)
361{
362 if (!IS_ERR_OR_NULL(debug)) {
363 char name[50];
364 snprintf(name, 50, "bcache-%pU", c->sb.set_uuid);
365
366 c->debug = debugfs_create_file(name, 0400, debug, c,
367 &cache_set_debug_ops);
368 }
369}
370
371#endif
372
Kent Overstreetcafe5632013-03-23 16:11:31 -0700373void bch_debug_exit(void)
374{
375 if (!IS_ERR_OR_NULL(debug))
376 debugfs_remove_recursive(debug);
377}
378
379int __init bch_debug_init(struct kobject *kobj)
380{
381 int ret = 0;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700382
383 debug = debugfs_create_dir("bcache", NULL);
384 return ret;
385}