Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 1 | /* |
| 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 Overstreet | dc9d98d | 2013-12-17 23:47:33 -0800 | [diff] [blame] | 11 | #include "extents.h" |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 12 | |
| 13 | #include <linux/console.h> |
| 14 | #include <linux/debugfs.h> |
| 15 | #include <linux/module.h> |
| 16 | #include <linux/random.h> |
| 17 | #include <linux/seq_file.h> |
| 18 | |
| 19 | static struct dentry *debug; |
| 20 | |
Kent Overstreet | 280481d | 2013-10-24 16:36:03 -0700 | [diff] [blame] | 21 | #ifdef CONFIG_BCACHE_DEBUG |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 22 | |
Kent Overstreet | 78b77bf | 2013-12-17 22:49:08 -0800 | [diff] [blame] | 23 | #define for_each_written_bset(b, start, i) \ |
| 24 | for (i = (start); \ |
| 25 | (void *) i < (void *) (start) + (KEY_SIZE(&b->key) << 9) &&\ |
| 26 | i->seq == (start)->seq; \ |
Kent Overstreet | ee81128 | 2013-12-17 23:49:49 -0800 | [diff] [blame] | 27 | i = (void *) i + set_blocks(i, block_bytes(b->c)) * \ |
| 28 | block_bytes(b->c)) |
Kent Overstreet | 78b77bf | 2013-12-17 22:49:08 -0800 | [diff] [blame] | 29 | |
| 30 | void bch_btree_verify(struct btree *b) |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 31 | { |
| 32 | struct btree *v = b->c->verify_data; |
Kent Overstreet | 78b77bf | 2013-12-17 22:49:08 -0800 | [diff] [blame] | 33 | struct bset *ondisk, *sorted, *inmemory; |
| 34 | struct bio *bio; |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 35 | |
Kent Overstreet | 78b77bf | 2013-12-17 22:49:08 -0800 | [diff] [blame] | 36 | if (!b->c->verify || !b->c->verify_ondisk) |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 37 | return; |
| 38 | |
Kent Overstreet | cb7a583 | 2013-12-16 15:27:25 -0800 | [diff] [blame] | 39 | down(&b->io_mutex); |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 40 | mutex_lock(&b->c->verify_lock); |
| 41 | |
Kent Overstreet | 78b77bf | 2013-12-17 22:49:08 -0800 | [diff] [blame] | 42 | ondisk = b->c->verify_ondisk; |
Kent Overstreet | a85e968 | 2013-12-20 17:28:16 -0800 | [diff] [blame] | 43 | sorted = b->c->verify_data->keys.set->data; |
| 44 | inmemory = b->keys.set->data; |
Kent Overstreet | 78b77bf | 2013-12-17 22:49:08 -0800 | [diff] [blame] | 45 | |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 46 | bkey_copy(&v->key, &b->key); |
| 47 | v->written = 0; |
| 48 | v->level = b->level; |
Kent Overstreet | a85e968 | 2013-12-20 17:28:16 -0800 | [diff] [blame] | 49 | v->keys.ops = b->keys.ops; |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 50 | |
Kent Overstreet | 78b77bf | 2013-12-17 22:49:08 -0800 | [diff] [blame] | 51 | bio = bch_bbio_alloc(b->c); |
| 52 | bio->bi_bdev = PTR_CACHE(b->c, &b->key, 0)->bdev; |
| 53 | bio->bi_iter.bi_sector = PTR_OFFSET(&b->key, 0); |
| 54 | bio->bi_iter.bi_size = KEY_SIZE(&v->key) << 9; |
| 55 | bch_bio_map(bio, sorted); |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 56 | |
Kent Overstreet | 78b77bf | 2013-12-17 22:49:08 -0800 | [diff] [blame] | 57 | submit_bio_wait(REQ_META|READ_SYNC, bio); |
| 58 | bch_bbio_free(bio, b->c); |
| 59 | |
| 60 | memcpy(ondisk, sorted, KEY_SIZE(&v->key) << 9); |
| 61 | |
| 62 | bch_btree_node_read_done(v); |
Kent Overstreet | a85e968 | 2013-12-20 17:28:16 -0800 | [diff] [blame] | 63 | sorted = v->keys.set->data; |
Kent Overstreet | 78b77bf | 2013-12-17 22:49:08 -0800 | [diff] [blame] | 64 | |
| 65 | if (inmemory->keys != sorted->keys || |
| 66 | memcmp(inmemory->start, |
| 67 | sorted->start, |
Kent Overstreet | fafff81 | 2013-12-17 21:56:21 -0800 | [diff] [blame] | 68 | (void *) bset_bkey_last(inmemory) - (void *) inmemory->start)) { |
Kent Overstreet | 78b77bf | 2013-12-17 22:49:08 -0800 | [diff] [blame] | 69 | struct bset *i; |
| 70 | unsigned j; |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 71 | |
| 72 | console_lock(); |
| 73 | |
Kent Overstreet | 78b77bf | 2013-12-17 22:49:08 -0800 | [diff] [blame] | 74 | printk(KERN_ERR "*** in memory:\n"); |
Kent Overstreet | dc9d98d | 2013-12-17 23:47:33 -0800 | [diff] [blame] | 75 | bch_dump_bset(&b->keys, inmemory, 0); |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 76 | |
Kent Overstreet | 78b77bf | 2013-12-17 22:49:08 -0800 | [diff] [blame] | 77 | printk(KERN_ERR "*** read back in:\n"); |
Kent Overstreet | dc9d98d | 2013-12-17 23:47:33 -0800 | [diff] [blame] | 78 | bch_dump_bset(&v->keys, sorted, 0); |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 79 | |
Kent Overstreet | 78b77bf | 2013-12-17 22:49:08 -0800 | [diff] [blame] | 80 | for_each_written_bset(b, ondisk, i) { |
| 81 | unsigned block = ((void *) i - (void *) ondisk) / |
| 82 | block_bytes(b->c); |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 83 | |
Kent Overstreet | 78b77bf | 2013-12-17 22:49:08 -0800 | [diff] [blame] | 84 | printk(KERN_ERR "*** on disk block %u:\n", block); |
Kent Overstreet | dc9d98d | 2013-12-17 23:47:33 -0800 | [diff] [blame] | 85 | bch_dump_bset(&b->keys, i, block); |
Kent Overstreet | 78b77bf | 2013-12-17 22:49:08 -0800 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | printk(KERN_ERR "*** block %zu not written\n", |
| 89 | ((void *) i - (void *) ondisk) / block_bytes(b->c)); |
| 90 | |
| 91 | for (j = 0; j < inmemory->keys; j++) |
| 92 | if (inmemory->d[j] != sorted->d[j]) |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 93 | break; |
| 94 | |
Kent Overstreet | 78b77bf | 2013-12-17 22:49:08 -0800 | [diff] [blame] | 95 | printk(KERN_ERR "b->written %u\n", b->written); |
| 96 | |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 97 | console_unlock(); |
| 98 | panic("verify failed at %u\n", j); |
| 99 | } |
| 100 | |
| 101 | mutex_unlock(&b->c->verify_lock); |
Kent Overstreet | cb7a583 | 2013-12-16 15:27:25 -0800 | [diff] [blame] | 102 | up(&b->io_mutex); |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Kent Overstreet | 220bb38 | 2013-09-10 19:02:45 -0700 | [diff] [blame] | 105 | void bch_data_verify(struct cached_dev *dc, struct bio *bio) |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 106 | { |
| 107 | char name[BDEVNAME_SIZE]; |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 108 | struct bio *check; |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 109 | struct bio_vec bv, *bv2; |
| 110 | struct bvec_iter iter; |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 111 | int i; |
| 112 | |
Kent Overstreet | 220bb38 | 2013-09-10 19:02:45 -0700 | [diff] [blame] | 113 | check = bio_clone(bio, GFP_NOIO); |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 114 | if (!check) |
| 115 | return; |
| 116 | |
Kent Overstreet | 8e51e41 | 2013-06-06 18:15:57 -0700 | [diff] [blame] | 117 | if (bio_alloc_pages(check, GFP_NOIO)) |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 118 | goto out_put; |
| 119 | |
Kent Overstreet | 220bb38 | 2013-09-10 19:02:45 -0700 | [diff] [blame] | 120 | submit_bio_wait(READ_SYNC, check); |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 121 | |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 122 | bio_for_each_segment(bv, bio, iter) { |
| 123 | void *p1 = kmap_atomic(bv.bv_page); |
| 124 | void *p2 = page_address(check->bi_io_vec[iter.bi_idx].bv_page); |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 125 | |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 126 | cache_set_err_on(memcmp(p1 + bv.bv_offset, |
| 127 | p2 + bv.bv_offset, |
| 128 | bv.bv_len), |
Kent Overstreet | 5ceaaad | 2013-09-10 14:27:42 -0700 | [diff] [blame] | 129 | dc->disk.c, |
| 130 | "verify failed at dev %s sector %llu", |
| 131 | bdevname(dc->bdev, name), |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 132 | (uint64_t) bio->bi_iter.bi_sector); |
Kent Overstreet | 5ceaaad | 2013-09-10 14:27:42 -0700 | [diff] [blame] | 133 | |
Kent Overstreet | 220bb38 | 2013-09-10 19:02:45 -0700 | [diff] [blame] | 134 | kunmap_atomic(p1); |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 135 | } |
| 136 | |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 137 | bio_for_each_segment_all(bv2, check, i) |
| 138 | __free_page(bv2->bv_page); |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 139 | out_put: |
| 140 | bio_put(check); |
| 141 | } |
| 142 | |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 143 | #endif |
| 144 | |
| 145 | #ifdef CONFIG_DEBUG_FS |
| 146 | |
| 147 | /* XXX: cache set refcounting */ |
| 148 | |
| 149 | struct dump_iterator { |
| 150 | char buf[PAGE_SIZE]; |
| 151 | size_t bytes; |
| 152 | struct cache_set *c; |
| 153 | struct keybuf keys; |
| 154 | }; |
| 155 | |
| 156 | static bool dump_pred(struct keybuf *buf, struct bkey *k) |
| 157 | { |
| 158 | return true; |
| 159 | } |
| 160 | |
| 161 | static ssize_t bch_dump_read(struct file *file, char __user *buf, |
| 162 | size_t size, loff_t *ppos) |
| 163 | { |
| 164 | struct dump_iterator *i = file->private_data; |
| 165 | ssize_t ret = 0; |
Kent Overstreet | 85b1492 | 2013-05-14 20:33:16 -0700 | [diff] [blame] | 166 | char kbuf[80]; |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 167 | |
| 168 | while (size) { |
| 169 | struct keybuf_key *w; |
| 170 | unsigned bytes = min(i->bytes, size); |
| 171 | |
| 172 | int err = copy_to_user(buf, i->buf, bytes); |
| 173 | if (err) |
| 174 | return err; |
| 175 | |
| 176 | ret += bytes; |
| 177 | buf += bytes; |
| 178 | size -= bytes; |
| 179 | i->bytes -= bytes; |
| 180 | memmove(i->buf, i->buf + bytes, i->bytes); |
| 181 | |
| 182 | if (i->bytes) |
| 183 | break; |
| 184 | |
Kent Overstreet | 72c2706 | 2013-06-05 06:24:39 -0700 | [diff] [blame] | 185 | w = bch_keybuf_next_rescan(i->c, &i->keys, &MAX_KEY, dump_pred); |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 186 | if (!w) |
| 187 | break; |
| 188 | |
Kent Overstreet | dc9d98d | 2013-12-17 23:47:33 -0800 | [diff] [blame] | 189 | bch_extent_to_text(kbuf, sizeof(kbuf), &w->key); |
Kent Overstreet | 85b1492 | 2013-05-14 20:33:16 -0700 | [diff] [blame] | 190 | i->bytes = snprintf(i->buf, PAGE_SIZE, "%s\n", kbuf); |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 191 | bch_keybuf_del(&i->keys, w); |
| 192 | } |
| 193 | |
| 194 | return ret; |
| 195 | } |
| 196 | |
| 197 | static int bch_dump_open(struct inode *inode, struct file *file) |
| 198 | { |
| 199 | struct cache_set *c = inode->i_private; |
| 200 | struct dump_iterator *i; |
| 201 | |
| 202 | i = kzalloc(sizeof(struct dump_iterator), GFP_KERNEL); |
| 203 | if (!i) |
| 204 | return -ENOMEM; |
| 205 | |
| 206 | file->private_data = i; |
| 207 | i->c = c; |
Kent Overstreet | 72c2706 | 2013-06-05 06:24:39 -0700 | [diff] [blame] | 208 | bch_keybuf_init(&i->keys); |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 209 | i->keys.last_scanned = KEY(0, 0, 0); |
| 210 | |
| 211 | return 0; |
| 212 | } |
| 213 | |
| 214 | static int bch_dump_release(struct inode *inode, struct file *file) |
| 215 | { |
| 216 | kfree(file->private_data); |
| 217 | return 0; |
| 218 | } |
| 219 | |
| 220 | static const struct file_operations cache_set_debug_ops = { |
| 221 | .owner = THIS_MODULE, |
| 222 | .open = bch_dump_open, |
| 223 | .read = bch_dump_read, |
| 224 | .release = bch_dump_release |
| 225 | }; |
| 226 | |
| 227 | void bch_debug_init_cache_set(struct cache_set *c) |
| 228 | { |
| 229 | if (!IS_ERR_OR_NULL(debug)) { |
| 230 | char name[50]; |
| 231 | snprintf(name, 50, "bcache-%pU", c->sb.set_uuid); |
| 232 | |
| 233 | c->debug = debugfs_create_file(name, 0400, debug, c, |
| 234 | &cache_set_debug_ops); |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | #endif |
| 239 | |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 240 | void bch_debug_exit(void) |
| 241 | { |
| 242 | if (!IS_ERR_OR_NULL(debug)) |
| 243 | debugfs_remove_recursive(debug); |
| 244 | } |
| 245 | |
| 246 | int __init bch_debug_init(struct kobject *kobj) |
| 247 | { |
| 248 | int ret = 0; |
Kent Overstreet | cafe563 | 2013-03-23 16:11:31 -0700 | [diff] [blame] | 249 | |
| 250 | debug = debugfs_create_dir("bcache", NULL); |
| 251 | return ret; |
| 252 | } |