Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * dm-snapshot.c |
| 3 | * |
| 4 | * Copyright (C) 2001-2002 Sistina Software (UK) Limited. |
| 5 | * |
| 6 | * This file is released under the GPL. |
| 7 | */ |
| 8 | |
| 9 | #include <linux/blkdev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/ctype.h> |
| 11 | #include <linux/device-mapper.h> |
| 12 | #include <linux/fs.h> |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/kdev_t.h> |
| 15 | #include <linux/list.h> |
| 16 | #include <linux/mempool.h> |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/slab.h> |
| 19 | #include <linux/vmalloc.h> |
| 20 | |
| 21 | #include "dm-snap.h" |
| 22 | #include "dm-bio-list.h" |
| 23 | #include "kcopyd.h" |
| 24 | |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 25 | #define DM_MSG_PREFIX "snapshots" |
| 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | /* |
| 28 | * The percentage increment we will wake up users at |
| 29 | */ |
| 30 | #define WAKE_UP_PERCENT 5 |
| 31 | |
| 32 | /* |
| 33 | * kcopyd priority of snapshot operations |
| 34 | */ |
| 35 | #define SNAPSHOT_COPY_PRIORITY 2 |
| 36 | |
| 37 | /* |
| 38 | * Each snapshot reserves this many pages for io |
| 39 | */ |
| 40 | #define SNAPSHOT_PAGES 256 |
| 41 | |
| 42 | struct pending_exception { |
| 43 | struct exception e; |
| 44 | |
| 45 | /* |
| 46 | * Origin buffers waiting for this to complete are held |
| 47 | * in a bio list |
| 48 | */ |
| 49 | struct bio_list origin_bios; |
| 50 | struct bio_list snapshot_bios; |
| 51 | |
| 52 | /* |
Alasdair G Kergon | eccf081 | 2006-03-27 01:17:42 -0800 | [diff] [blame] | 53 | * Short-term queue of pending exceptions prior to submission. |
| 54 | */ |
| 55 | struct list_head list; |
| 56 | |
| 57 | /* |
Alasdair G Kergon | b4b610f | 2006-03-27 01:17:44 -0800 | [diff] [blame] | 58 | * The primary pending_exception is the one that holds |
| 59 | * the sibling_count and the list of origin_bios for a |
| 60 | * group of pending_exceptions. It is always last to get freed. |
| 61 | * These fields get set up when writing to the origin. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | */ |
Alasdair G Kergon | b4b610f | 2006-03-27 01:17:44 -0800 | [diff] [blame] | 63 | struct pending_exception *primary_pe; |
| 64 | |
| 65 | /* |
| 66 | * Number of pending_exceptions processing this chunk. |
| 67 | * When this drops to zero we must complete the origin bios. |
| 68 | * If incrementing or decrementing this, hold pe->snap->lock for |
| 69 | * the sibling concerned and not pe->primary_pe->snap->lock unless |
| 70 | * they are the same. |
| 71 | */ |
| 72 | atomic_t sibling_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
| 74 | /* Pointer back to snapshot context */ |
| 75 | struct dm_snapshot *snap; |
| 76 | |
| 77 | /* |
| 78 | * 1 indicates the exception has already been sent to |
| 79 | * kcopyd. |
| 80 | */ |
| 81 | int started; |
| 82 | }; |
| 83 | |
| 84 | /* |
| 85 | * Hash table mapping origin volumes to lists of snapshots and |
| 86 | * a lock to protect it |
| 87 | */ |
| 88 | static kmem_cache_t *exception_cache; |
| 89 | static kmem_cache_t *pending_cache; |
| 90 | static mempool_t *pending_pool; |
| 91 | |
| 92 | /* |
| 93 | * One of these per registered origin, held in the snapshot_origins hash |
| 94 | */ |
| 95 | struct origin { |
| 96 | /* The origin device */ |
| 97 | struct block_device *bdev; |
| 98 | |
| 99 | struct list_head hash_list; |
| 100 | |
| 101 | /* List of snapshots for this origin */ |
| 102 | struct list_head snapshots; |
| 103 | }; |
| 104 | |
| 105 | /* |
| 106 | * Size of the hash table for origin volumes. If we make this |
| 107 | * the size of the minors list then it should be nearly perfect |
| 108 | */ |
| 109 | #define ORIGIN_HASH_SIZE 256 |
| 110 | #define ORIGIN_MASK 0xFF |
| 111 | static struct list_head *_origins; |
| 112 | static struct rw_semaphore _origins_lock; |
| 113 | |
| 114 | static int init_origin_hash(void) |
| 115 | { |
| 116 | int i; |
| 117 | |
| 118 | _origins = kmalloc(ORIGIN_HASH_SIZE * sizeof(struct list_head), |
| 119 | GFP_KERNEL); |
| 120 | if (!_origins) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 121 | DMERR("unable to allocate memory"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | return -ENOMEM; |
| 123 | } |
| 124 | |
| 125 | for (i = 0; i < ORIGIN_HASH_SIZE; i++) |
| 126 | INIT_LIST_HEAD(_origins + i); |
| 127 | init_rwsem(&_origins_lock); |
| 128 | |
| 129 | return 0; |
| 130 | } |
| 131 | |
| 132 | static void exit_origin_hash(void) |
| 133 | { |
| 134 | kfree(_origins); |
| 135 | } |
| 136 | |
| 137 | static inline unsigned int origin_hash(struct block_device *bdev) |
| 138 | { |
| 139 | return bdev->bd_dev & ORIGIN_MASK; |
| 140 | } |
| 141 | |
| 142 | static struct origin *__lookup_origin(struct block_device *origin) |
| 143 | { |
| 144 | struct list_head *ol; |
| 145 | struct origin *o; |
| 146 | |
| 147 | ol = &_origins[origin_hash(origin)]; |
| 148 | list_for_each_entry (o, ol, hash_list) |
| 149 | if (bdev_equal(o->bdev, origin)) |
| 150 | return o; |
| 151 | |
| 152 | return NULL; |
| 153 | } |
| 154 | |
| 155 | static void __insert_origin(struct origin *o) |
| 156 | { |
| 157 | struct list_head *sl = &_origins[origin_hash(o->bdev)]; |
| 158 | list_add_tail(&o->hash_list, sl); |
| 159 | } |
| 160 | |
| 161 | /* |
| 162 | * Make a note of the snapshot and its origin so we can look it |
| 163 | * up when the origin has a write on it. |
| 164 | */ |
| 165 | static int register_snapshot(struct dm_snapshot *snap) |
| 166 | { |
| 167 | struct origin *o; |
| 168 | struct block_device *bdev = snap->origin->bdev; |
| 169 | |
| 170 | down_write(&_origins_lock); |
| 171 | o = __lookup_origin(bdev); |
| 172 | |
| 173 | if (!o) { |
| 174 | /* New origin */ |
| 175 | o = kmalloc(sizeof(*o), GFP_KERNEL); |
| 176 | if (!o) { |
| 177 | up_write(&_origins_lock); |
| 178 | return -ENOMEM; |
| 179 | } |
| 180 | |
| 181 | /* Initialise the struct */ |
| 182 | INIT_LIST_HEAD(&o->snapshots); |
| 183 | o->bdev = bdev; |
| 184 | |
| 185 | __insert_origin(o); |
| 186 | } |
| 187 | |
| 188 | list_add_tail(&snap->list, &o->snapshots); |
| 189 | |
| 190 | up_write(&_origins_lock); |
| 191 | return 0; |
| 192 | } |
| 193 | |
| 194 | static void unregister_snapshot(struct dm_snapshot *s) |
| 195 | { |
| 196 | struct origin *o; |
| 197 | |
| 198 | down_write(&_origins_lock); |
| 199 | o = __lookup_origin(s->origin->bdev); |
| 200 | |
| 201 | list_del(&s->list); |
| 202 | if (list_empty(&o->snapshots)) { |
| 203 | list_del(&o->hash_list); |
| 204 | kfree(o); |
| 205 | } |
| 206 | |
| 207 | up_write(&_origins_lock); |
| 208 | } |
| 209 | |
| 210 | /* |
| 211 | * Implementation of the exception hash tables. |
| 212 | */ |
| 213 | static int init_exception_table(struct exception_table *et, uint32_t size) |
| 214 | { |
| 215 | unsigned int i; |
| 216 | |
| 217 | et->hash_mask = size - 1; |
| 218 | et->table = dm_vcalloc(size, sizeof(struct list_head)); |
| 219 | if (!et->table) |
| 220 | return -ENOMEM; |
| 221 | |
| 222 | for (i = 0; i < size; i++) |
| 223 | INIT_LIST_HEAD(et->table + i); |
| 224 | |
| 225 | return 0; |
| 226 | } |
| 227 | |
| 228 | static void exit_exception_table(struct exception_table *et, kmem_cache_t *mem) |
| 229 | { |
| 230 | struct list_head *slot; |
| 231 | struct exception *ex, *next; |
| 232 | int i, size; |
| 233 | |
| 234 | size = et->hash_mask + 1; |
| 235 | for (i = 0; i < size; i++) { |
| 236 | slot = et->table + i; |
| 237 | |
| 238 | list_for_each_entry_safe (ex, next, slot, hash_list) |
| 239 | kmem_cache_free(mem, ex); |
| 240 | } |
| 241 | |
| 242 | vfree(et->table); |
| 243 | } |
| 244 | |
| 245 | static inline uint32_t exception_hash(struct exception_table *et, chunk_t chunk) |
| 246 | { |
| 247 | return chunk & et->hash_mask; |
| 248 | } |
| 249 | |
| 250 | static void insert_exception(struct exception_table *eh, struct exception *e) |
| 251 | { |
| 252 | struct list_head *l = &eh->table[exception_hash(eh, e->old_chunk)]; |
| 253 | list_add(&e->hash_list, l); |
| 254 | } |
| 255 | |
| 256 | static inline void remove_exception(struct exception *e) |
| 257 | { |
| 258 | list_del(&e->hash_list); |
| 259 | } |
| 260 | |
| 261 | /* |
| 262 | * Return the exception data for a sector, or NULL if not |
| 263 | * remapped. |
| 264 | */ |
| 265 | static struct exception *lookup_exception(struct exception_table *et, |
| 266 | chunk_t chunk) |
| 267 | { |
| 268 | struct list_head *slot; |
| 269 | struct exception *e; |
| 270 | |
| 271 | slot = &et->table[exception_hash(et, chunk)]; |
| 272 | list_for_each_entry (e, slot, hash_list) |
| 273 | if (e->old_chunk == chunk) |
| 274 | return e; |
| 275 | |
| 276 | return NULL; |
| 277 | } |
| 278 | |
| 279 | static inline struct exception *alloc_exception(void) |
| 280 | { |
| 281 | struct exception *e; |
| 282 | |
| 283 | e = kmem_cache_alloc(exception_cache, GFP_NOIO); |
| 284 | if (!e) |
| 285 | e = kmem_cache_alloc(exception_cache, GFP_ATOMIC); |
| 286 | |
| 287 | return e; |
| 288 | } |
| 289 | |
| 290 | static inline void free_exception(struct exception *e) |
| 291 | { |
| 292 | kmem_cache_free(exception_cache, e); |
| 293 | } |
| 294 | |
| 295 | static inline struct pending_exception *alloc_pending_exception(void) |
| 296 | { |
| 297 | return mempool_alloc(pending_pool, GFP_NOIO); |
| 298 | } |
| 299 | |
| 300 | static inline void free_pending_exception(struct pending_exception *pe) |
| 301 | { |
| 302 | mempool_free(pe, pending_pool); |
| 303 | } |
| 304 | |
| 305 | int dm_add_exception(struct dm_snapshot *s, chunk_t old, chunk_t new) |
| 306 | { |
| 307 | struct exception *e; |
| 308 | |
| 309 | e = alloc_exception(); |
| 310 | if (!e) |
| 311 | return -ENOMEM; |
| 312 | |
| 313 | e->old_chunk = old; |
| 314 | e->new_chunk = new; |
| 315 | insert_exception(&s->complete, e); |
| 316 | return 0; |
| 317 | } |
| 318 | |
| 319 | /* |
| 320 | * Hard coded magic. |
| 321 | */ |
| 322 | static int calc_max_buckets(void) |
| 323 | { |
| 324 | /* use a fixed size of 2MB */ |
| 325 | unsigned long mem = 2 * 1024 * 1024; |
| 326 | mem /= sizeof(struct list_head); |
| 327 | |
| 328 | return mem; |
| 329 | } |
| 330 | |
| 331 | /* |
| 332 | * Rounds a number down to a power of 2. |
| 333 | */ |
| 334 | static inline uint32_t round_down(uint32_t n) |
| 335 | { |
| 336 | while (n & (n - 1)) |
| 337 | n &= (n - 1); |
| 338 | return n; |
| 339 | } |
| 340 | |
| 341 | /* |
| 342 | * Allocate room for a suitable hash table. |
| 343 | */ |
| 344 | static int init_hash_tables(struct dm_snapshot *s) |
| 345 | { |
| 346 | sector_t hash_size, cow_dev_size, origin_dev_size, max_buckets; |
| 347 | |
| 348 | /* |
| 349 | * Calculate based on the size of the original volume or |
| 350 | * the COW volume... |
| 351 | */ |
| 352 | cow_dev_size = get_dev_size(s->cow->bdev); |
| 353 | origin_dev_size = get_dev_size(s->origin->bdev); |
| 354 | max_buckets = calc_max_buckets(); |
| 355 | |
| 356 | hash_size = min(origin_dev_size, cow_dev_size) >> s->chunk_shift; |
| 357 | hash_size = min(hash_size, max_buckets); |
| 358 | |
| 359 | /* Round it down to a power of 2 */ |
| 360 | hash_size = round_down(hash_size); |
| 361 | if (init_exception_table(&s->complete, hash_size)) |
| 362 | return -ENOMEM; |
| 363 | |
| 364 | /* |
| 365 | * Allocate hash table for in-flight exceptions |
| 366 | * Make this smaller than the real hash table |
| 367 | */ |
| 368 | hash_size >>= 3; |
| 369 | if (hash_size < 64) |
| 370 | hash_size = 64; |
| 371 | |
| 372 | if (init_exception_table(&s->pending, hash_size)) { |
| 373 | exit_exception_table(&s->complete, exception_cache); |
| 374 | return -ENOMEM; |
| 375 | } |
| 376 | |
| 377 | return 0; |
| 378 | } |
| 379 | |
| 380 | /* |
| 381 | * Round a number up to the nearest 'size' boundary. size must |
| 382 | * be a power of 2. |
| 383 | */ |
| 384 | static inline ulong round_up(ulong n, ulong size) |
| 385 | { |
| 386 | size--; |
| 387 | return (n + size) & ~size; |
| 388 | } |
| 389 | |
Mark McLoughlin | 4c7e3bf | 2006-10-03 01:15:25 -0700 | [diff] [blame] | 390 | static int set_chunk_size(struct dm_snapshot *s, const char *chunk_size_arg, |
| 391 | char **error) |
| 392 | { |
| 393 | unsigned long chunk_size; |
| 394 | char *value; |
| 395 | |
| 396 | chunk_size = simple_strtoul(chunk_size_arg, &value, 10); |
| 397 | if (*chunk_size_arg == '\0' || *value != '\0') { |
| 398 | *error = "Invalid chunk size"; |
| 399 | return -EINVAL; |
| 400 | } |
| 401 | |
| 402 | if (!chunk_size) { |
| 403 | s->chunk_size = s->chunk_mask = s->chunk_shift = 0; |
| 404 | return 0; |
| 405 | } |
| 406 | |
| 407 | /* |
| 408 | * Chunk size must be multiple of page size. Silently |
| 409 | * round up if it's not. |
| 410 | */ |
| 411 | chunk_size = round_up(chunk_size, PAGE_SIZE >> 9); |
| 412 | |
| 413 | /* Check chunk_size is a power of 2 */ |
| 414 | if (chunk_size & (chunk_size - 1)) { |
| 415 | *error = "Chunk size is not a power of 2"; |
| 416 | return -EINVAL; |
| 417 | } |
| 418 | |
| 419 | /* Validate the chunk size against the device block size */ |
| 420 | if (chunk_size % (bdev_hardsect_size(s->cow->bdev) >> 9)) { |
| 421 | *error = "Chunk size is not a multiple of device blocksize"; |
| 422 | return -EINVAL; |
| 423 | } |
| 424 | |
| 425 | s->chunk_size = chunk_size; |
| 426 | s->chunk_mask = chunk_size - 1; |
| 427 | s->chunk_shift = ffs(chunk_size) - 1; |
| 428 | |
| 429 | return 0; |
| 430 | } |
| 431 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | /* |
| 433 | * Construct a snapshot mapping: <origin_dev> <COW-dev> <p/n> <chunk-size> |
| 434 | */ |
| 435 | static int snapshot_ctr(struct dm_target *ti, unsigned int argc, char **argv) |
| 436 | { |
| 437 | struct dm_snapshot *s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | int r = -EINVAL; |
| 439 | char persistent; |
| 440 | char *origin_path; |
| 441 | char *cow_path; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
Mark McLoughlin | 4c7e3bf | 2006-10-03 01:15:25 -0700 | [diff] [blame] | 443 | if (argc != 4) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 444 | ti->error = "requires exactly 4 arguments"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | r = -EINVAL; |
| 446 | goto bad1; |
| 447 | } |
| 448 | |
| 449 | origin_path = argv[0]; |
| 450 | cow_path = argv[1]; |
| 451 | persistent = toupper(*argv[2]); |
| 452 | |
| 453 | if (persistent != 'P' && persistent != 'N') { |
| 454 | ti->error = "Persistent flag is not P or N"; |
| 455 | r = -EINVAL; |
| 456 | goto bad1; |
| 457 | } |
| 458 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | s = kmalloc(sizeof(*s), GFP_KERNEL); |
| 460 | if (s == NULL) { |
| 461 | ti->error = "Cannot allocate snapshot context private " |
| 462 | "structure"; |
| 463 | r = -ENOMEM; |
| 464 | goto bad1; |
| 465 | } |
| 466 | |
| 467 | r = dm_get_device(ti, origin_path, 0, ti->len, FMODE_READ, &s->origin); |
| 468 | if (r) { |
| 469 | ti->error = "Cannot get origin device"; |
| 470 | goto bad2; |
| 471 | } |
| 472 | |
| 473 | r = dm_get_device(ti, cow_path, 0, 0, |
| 474 | FMODE_READ | FMODE_WRITE, &s->cow); |
| 475 | if (r) { |
| 476 | dm_put_device(ti, s->origin); |
| 477 | ti->error = "Cannot get COW device"; |
| 478 | goto bad2; |
| 479 | } |
| 480 | |
Mark McLoughlin | 4c7e3bf | 2006-10-03 01:15:25 -0700 | [diff] [blame] | 481 | r = set_chunk_size(s, argv[3], &ti->error); |
| 482 | if (r) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | goto bad3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | s->type = persistent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
| 487 | s->valid = 1; |
Alasdair G Kergon | aa14ede | 2006-02-01 03:04:50 -0800 | [diff] [blame] | 488 | s->active = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | s->last_percent = 0; |
| 490 | init_rwsem(&s->lock); |
| 491 | s->table = ti->table; |
| 492 | |
| 493 | /* Allocate hash table for COW data */ |
| 494 | if (init_hash_tables(s)) { |
| 495 | ti->error = "Unable to allocate hash table space"; |
| 496 | r = -ENOMEM; |
| 497 | goto bad3; |
| 498 | } |
| 499 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | s->store.snap = s; |
| 501 | |
| 502 | if (persistent == 'P') |
Mark McLoughlin | 4c7e3bf | 2006-10-03 01:15:25 -0700 | [diff] [blame] | 503 | r = dm_create_persistent(&s->store); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | else |
Mark McLoughlin | 4c7e3bf | 2006-10-03 01:15:25 -0700 | [diff] [blame] | 505 | r = dm_create_transient(&s->store); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | |
| 507 | if (r) { |
| 508 | ti->error = "Couldn't create exception store"; |
| 509 | r = -EINVAL; |
| 510 | goto bad4; |
| 511 | } |
| 512 | |
| 513 | r = kcopyd_client_create(SNAPSHOT_PAGES, &s->kcopyd_client); |
| 514 | if (r) { |
| 515 | ti->error = "Could not create kcopyd client"; |
| 516 | goto bad5; |
| 517 | } |
| 518 | |
Alasdair G Kergon | aa14ede | 2006-02-01 03:04:50 -0800 | [diff] [blame] | 519 | /* Metadata must only be loaded into one table at once */ |
Mark McLoughlin | f9cea4f | 2006-10-03 01:15:25 -0700 | [diff] [blame] | 520 | r = s->store.read_metadata(&s->store); |
| 521 | if (r) { |
| 522 | ti->error = "Failed to read snapshot metadata"; |
| 523 | goto bad6; |
| 524 | } |
Alasdair G Kergon | aa14ede | 2006-02-01 03:04:50 -0800 | [diff] [blame] | 525 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | /* Add snapshot to the list of snapshots for this origin */ |
Alasdair G Kergon | aa14ede | 2006-02-01 03:04:50 -0800 | [diff] [blame] | 527 | /* Exceptions aren't triggered till snapshot_resume() is called */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | if (register_snapshot(s)) { |
| 529 | r = -EINVAL; |
| 530 | ti->error = "Cannot register snapshot origin"; |
| 531 | goto bad6; |
| 532 | } |
| 533 | |
| 534 | ti->private = s; |
Alasdair G Kergon | c51c275 | 2006-06-26 00:27:18 -0700 | [diff] [blame] | 535 | ti->split_io = s->chunk_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | |
| 537 | return 0; |
| 538 | |
| 539 | bad6: |
| 540 | kcopyd_client_destroy(s->kcopyd_client); |
| 541 | |
| 542 | bad5: |
| 543 | s->store.destroy(&s->store); |
| 544 | |
| 545 | bad4: |
| 546 | exit_exception_table(&s->pending, pending_cache); |
| 547 | exit_exception_table(&s->complete, exception_cache); |
| 548 | |
| 549 | bad3: |
| 550 | dm_put_device(ti, s->cow); |
| 551 | dm_put_device(ti, s->origin); |
| 552 | |
| 553 | bad2: |
| 554 | kfree(s); |
| 555 | |
| 556 | bad1: |
| 557 | return r; |
| 558 | } |
| 559 | |
| 560 | static void snapshot_dtr(struct dm_target *ti) |
| 561 | { |
| 562 | struct dm_snapshot *s = (struct dm_snapshot *) ti->private; |
| 563 | |
Alasdair G Kergon | 138728d | 2006-03-27 01:17:50 -0800 | [diff] [blame] | 564 | /* Prevent further origin writes from using this snapshot. */ |
| 565 | /* After this returns there can be no new kcopyd jobs. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | unregister_snapshot(s); |
| 567 | |
Alasdair G Kergon | 138728d | 2006-03-27 01:17:50 -0800 | [diff] [blame] | 568 | kcopyd_client_destroy(s->kcopyd_client); |
| 569 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | exit_exception_table(&s->pending, pending_cache); |
| 571 | exit_exception_table(&s->complete, exception_cache); |
| 572 | |
| 573 | /* Deallocate memory used */ |
| 574 | s->store.destroy(&s->store); |
| 575 | |
| 576 | dm_put_device(ti, s->origin); |
| 577 | dm_put_device(ti, s->cow); |
Alasdair G Kergon | 138728d | 2006-03-27 01:17:50 -0800 | [diff] [blame] | 578 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | kfree(s); |
| 580 | } |
| 581 | |
| 582 | /* |
| 583 | * Flush a list of buffers. |
| 584 | */ |
| 585 | static void flush_bios(struct bio *bio) |
| 586 | { |
| 587 | struct bio *n; |
| 588 | |
| 589 | while (bio) { |
| 590 | n = bio->bi_next; |
| 591 | bio->bi_next = NULL; |
| 592 | generic_make_request(bio); |
| 593 | bio = n; |
| 594 | } |
| 595 | } |
| 596 | |
| 597 | /* |
| 598 | * Error a list of buffers. |
| 599 | */ |
| 600 | static void error_bios(struct bio *bio) |
| 601 | { |
| 602 | struct bio *n; |
| 603 | |
| 604 | while (bio) { |
| 605 | n = bio->bi_next; |
| 606 | bio->bi_next = NULL; |
| 607 | bio_io_error(bio, bio->bi_size); |
| 608 | bio = n; |
| 609 | } |
| 610 | } |
| 611 | |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 612 | static void __invalidate_snapshot(struct dm_snapshot *s, |
| 613 | struct pending_exception *pe, int err) |
| 614 | { |
| 615 | if (!s->valid) |
| 616 | return; |
| 617 | |
| 618 | if (err == -EIO) |
| 619 | DMERR("Invalidating snapshot: Error reading/writing."); |
| 620 | else if (err == -ENOMEM) |
| 621 | DMERR("Invalidating snapshot: Unable to allocate exception."); |
| 622 | |
| 623 | if (pe) |
| 624 | remove_exception(&pe->e); |
| 625 | |
| 626 | if (s->store.drop_snapshot) |
| 627 | s->store.drop_snapshot(&s->store); |
| 628 | |
| 629 | s->valid = 0; |
| 630 | |
| 631 | dm_table_event(s->table); |
| 632 | } |
| 633 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | static void pending_complete(struct pending_exception *pe, int success) |
| 635 | { |
| 636 | struct exception *e; |
Alasdair G Kergon | b4b610f | 2006-03-27 01:17:44 -0800 | [diff] [blame] | 637 | struct pending_exception *primary_pe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | struct dm_snapshot *s = pe->snap; |
Alasdair G Kergon | 9d493fa | 2006-10-03 01:15:29 -0700 | [diff] [blame^] | 639 | struct bio *origin_bios = NULL; |
| 640 | struct bio *snapshot_bios = NULL; |
| 641 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 643 | if (!success) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | /* Read/write error - snapshot is unusable */ |
| 645 | down_write(&s->lock); |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 646 | __invalidate_snapshot(s, pe, -EIO); |
Alasdair G Kergon | 9d493fa | 2006-10-03 01:15:29 -0700 | [diff] [blame^] | 647 | error = 1; |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 648 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | } |
| 650 | |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 651 | e = alloc_exception(); |
| 652 | if (!e) { |
| 653 | down_write(&s->lock); |
| 654 | __invalidate_snapshot(s, pe, -ENOMEM); |
Alasdair G Kergon | 9d493fa | 2006-10-03 01:15:29 -0700 | [diff] [blame^] | 655 | error = 1; |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 656 | goto out; |
| 657 | } |
| 658 | *e = pe->e; |
| 659 | |
Alasdair G Kergon | 9d493fa | 2006-10-03 01:15:29 -0700 | [diff] [blame^] | 660 | down_write(&s->lock); |
| 661 | if (!s->valid) { |
| 662 | free_exception(e); |
| 663 | error = 1; |
| 664 | goto out; |
| 665 | } |
| 666 | |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 667 | /* |
| 668 | * Add a proper exception, and remove the |
| 669 | * in-flight exception from the list. |
| 670 | */ |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 671 | insert_exception(&s->complete, e); |
| 672 | remove_exception(&pe->e); |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 673 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | out: |
Alasdair G Kergon | 9d493fa | 2006-10-03 01:15:29 -0700 | [diff] [blame^] | 675 | snapshot_bios = bio_list_get(&pe->snapshot_bios); |
| 676 | |
Alasdair G Kergon | b4b610f | 2006-03-27 01:17:44 -0800 | [diff] [blame] | 677 | primary_pe = pe->primary_pe; |
| 678 | |
| 679 | /* |
Alasdair G Kergon | 9d493fa | 2006-10-03 01:15:29 -0700 | [diff] [blame^] | 680 | * If this pe is involved in a write to the origin and |
| 681 | * it is the last sibling to complete then release |
| 682 | * the bios for the original write to the origin. |
| 683 | */ |
| 684 | if (primary_pe && |
| 685 | atomic_dec_and_test(&primary_pe->sibling_count)) |
| 686 | origin_bios = bio_list_get(&primary_pe->origin_bios); |
| 687 | |
| 688 | /* |
Alasdair G Kergon | b4b610f | 2006-03-27 01:17:44 -0800 | [diff] [blame] | 689 | * Free the pe if it's not linked to an origin write or if |
| 690 | * it's not itself a primary pe. |
| 691 | */ |
| 692 | if (!primary_pe || primary_pe != pe) |
| 693 | free_pending_exception(pe); |
| 694 | |
| 695 | /* |
| 696 | * Free the primary pe if nothing references it. |
| 697 | */ |
| 698 | if (primary_pe && !atomic_read(&primary_pe->sibling_count)) |
| 699 | free_pending_exception(primary_pe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | |
Alasdair G Kergon | 9d493fa | 2006-10-03 01:15:29 -0700 | [diff] [blame^] | 701 | up_write(&s->lock); |
| 702 | |
| 703 | /* Submit any pending write bios */ |
| 704 | if (error) |
| 705 | error_bios(snapshot_bios); |
| 706 | else |
| 707 | flush_bios(snapshot_bios); |
| 708 | |
| 709 | flush_bios(origin_bios); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | } |
| 711 | |
| 712 | static void commit_callback(void *context, int success) |
| 713 | { |
| 714 | struct pending_exception *pe = (struct pending_exception *) context; |
| 715 | pending_complete(pe, success); |
| 716 | } |
| 717 | |
| 718 | /* |
| 719 | * Called when the copy I/O has finished. kcopyd actually runs |
| 720 | * this code so don't block. |
| 721 | */ |
| 722 | static void copy_callback(int read_err, unsigned int write_err, void *context) |
| 723 | { |
| 724 | struct pending_exception *pe = (struct pending_exception *) context; |
| 725 | struct dm_snapshot *s = pe->snap; |
| 726 | |
| 727 | if (read_err || write_err) |
| 728 | pending_complete(pe, 0); |
| 729 | |
| 730 | else |
| 731 | /* Update the metadata if we are persistent */ |
| 732 | s->store.commit_exception(&s->store, &pe->e, commit_callback, |
| 733 | pe); |
| 734 | } |
| 735 | |
| 736 | /* |
| 737 | * Dispatches the copy operation to kcopyd. |
| 738 | */ |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 739 | static void start_copy(struct pending_exception *pe) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 740 | { |
| 741 | struct dm_snapshot *s = pe->snap; |
| 742 | struct io_region src, dest; |
| 743 | struct block_device *bdev = s->origin->bdev; |
| 744 | sector_t dev_size; |
| 745 | |
| 746 | dev_size = get_dev_size(bdev); |
| 747 | |
| 748 | src.bdev = bdev; |
| 749 | src.sector = chunk_to_sector(s, pe->e.old_chunk); |
| 750 | src.count = min(s->chunk_size, dev_size - src.sector); |
| 751 | |
| 752 | dest.bdev = s->cow->bdev; |
| 753 | dest.sector = chunk_to_sector(s, pe->e.new_chunk); |
| 754 | dest.count = src.count; |
| 755 | |
| 756 | /* Hand over to kcopyd */ |
| 757 | kcopyd_copy(s->kcopyd_client, |
| 758 | &src, 1, &dest, 0, copy_callback, pe); |
| 759 | } |
| 760 | |
| 761 | /* |
| 762 | * Looks to see if this snapshot already has a pending exception |
| 763 | * for this chunk, otherwise it allocates a new one and inserts |
| 764 | * it into the pending table. |
| 765 | * |
| 766 | * NOTE: a write lock must be held on snap->lock before calling |
| 767 | * this. |
| 768 | */ |
| 769 | static struct pending_exception * |
| 770 | __find_pending_exception(struct dm_snapshot *s, struct bio *bio) |
| 771 | { |
| 772 | struct exception *e; |
| 773 | struct pending_exception *pe; |
| 774 | chunk_t chunk = sector_to_chunk(s, bio->bi_sector); |
| 775 | |
| 776 | /* |
| 777 | * Is there a pending exception for this already ? |
| 778 | */ |
| 779 | e = lookup_exception(&s->pending, chunk); |
| 780 | if (e) { |
| 781 | /* cast the exception to a pending exception */ |
| 782 | pe = container_of(e, struct pending_exception, e); |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 783 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | } |
| 785 | |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 786 | /* |
| 787 | * Create a new pending exception, we don't want |
| 788 | * to hold the lock while we do this. |
| 789 | */ |
| 790 | up_write(&s->lock); |
| 791 | pe = alloc_pending_exception(); |
| 792 | down_write(&s->lock); |
| 793 | |
| 794 | if (!s->valid) { |
| 795 | free_pending_exception(pe); |
| 796 | return NULL; |
| 797 | } |
| 798 | |
| 799 | e = lookup_exception(&s->pending, chunk); |
| 800 | if (e) { |
| 801 | free_pending_exception(pe); |
| 802 | pe = container_of(e, struct pending_exception, e); |
| 803 | goto out; |
| 804 | } |
| 805 | |
| 806 | pe->e.old_chunk = chunk; |
| 807 | bio_list_init(&pe->origin_bios); |
| 808 | bio_list_init(&pe->snapshot_bios); |
| 809 | pe->primary_pe = NULL; |
| 810 | atomic_set(&pe->sibling_count, 1); |
| 811 | pe->snap = s; |
| 812 | pe->started = 0; |
| 813 | |
| 814 | if (s->store.prepare_exception(&s->store, &pe->e)) { |
| 815 | free_pending_exception(pe); |
| 816 | return NULL; |
| 817 | } |
| 818 | |
| 819 | insert_exception(&s->pending, &pe->e); |
| 820 | |
| 821 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | return pe; |
| 823 | } |
| 824 | |
| 825 | static inline void remap_exception(struct dm_snapshot *s, struct exception *e, |
| 826 | struct bio *bio) |
| 827 | { |
| 828 | bio->bi_bdev = s->cow->bdev; |
| 829 | bio->bi_sector = chunk_to_sector(s, e->new_chunk) + |
| 830 | (bio->bi_sector & s->chunk_mask); |
| 831 | } |
| 832 | |
| 833 | static int snapshot_map(struct dm_target *ti, struct bio *bio, |
| 834 | union map_info *map_context) |
| 835 | { |
| 836 | struct exception *e; |
| 837 | struct dm_snapshot *s = (struct dm_snapshot *) ti->private; |
| 838 | int r = 1; |
| 839 | chunk_t chunk; |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 840 | struct pending_exception *pe = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | |
| 842 | chunk = sector_to_chunk(s, bio->bi_sector); |
| 843 | |
| 844 | /* Full snapshots are not usable */ |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 845 | /* To get here the table must be live so s->active is always set. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | if (!s->valid) |
Alasdair G Kergon | f6a80ea | 2005-07-12 15:53:01 -0700 | [diff] [blame] | 847 | return -EIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | |
Alasdair G Kergon | 4aac0a6 | 2006-02-01 03:04:55 -0800 | [diff] [blame] | 849 | if (unlikely(bio_barrier(bio))) |
| 850 | return -EOPNOTSUPP; |
| 851 | |
Alasdair G Kergon | ba40a2a | 2006-10-03 01:15:28 -0700 | [diff] [blame] | 852 | /* FIXME: should only take write lock if we need |
| 853 | * to copy an exception */ |
| 854 | down_write(&s->lock); |
| 855 | |
| 856 | if (!s->valid) { |
| 857 | r = -EIO; |
| 858 | goto out_unlock; |
| 859 | } |
| 860 | |
| 861 | /* If the block is already remapped - use that, else remap it */ |
| 862 | e = lookup_exception(&s->complete, chunk); |
| 863 | if (e) { |
| 864 | remap_exception(s, e, bio); |
| 865 | goto out_unlock; |
| 866 | } |
| 867 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | /* |
| 869 | * Write to snapshot - higher level takes care of RW/RO |
| 870 | * flags so we should only get this if we are |
| 871 | * writeable. |
| 872 | */ |
| 873 | if (bio_rw(bio) == WRITE) { |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 874 | pe = __find_pending_exception(s, bio); |
| 875 | if (!pe) { |
| 876 | __invalidate_snapshot(s, pe, -ENOMEM); |
| 877 | r = -EIO; |
| 878 | goto out_unlock; |
| 879 | } |
| 880 | |
| 881 | remap_exception(s, &pe->e, bio); |
| 882 | bio_list_add(&pe->snapshot_bios, bio); |
| 883 | |
Alasdair G Kergon | ba40a2a | 2006-10-03 01:15:28 -0700 | [diff] [blame] | 884 | r = 0; |
| 885 | |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 886 | if (!pe->started) { |
| 887 | /* this is protected by snap->lock */ |
| 888 | pe->started = 1; |
Alasdair G Kergon | ba40a2a | 2006-10-03 01:15:28 -0700 | [diff] [blame] | 889 | up_write(&s->lock); |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 890 | start_copy(pe); |
Alasdair G Kergon | ba40a2a | 2006-10-03 01:15:28 -0700 | [diff] [blame] | 891 | goto out; |
| 892 | } |
| 893 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 894 | /* |
| 895 | * FIXME: this read path scares me because we |
| 896 | * always use the origin when we have a pending |
| 897 | * exception. However I can't think of a |
| 898 | * situation where this is wrong - ejt. |
| 899 | */ |
Alasdair G Kergon | ba40a2a | 2006-10-03 01:15:28 -0700 | [diff] [blame] | 900 | bio->bi_bdev = s->origin->bdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 901 | |
Alasdair G Kergon | ba40a2a | 2006-10-03 01:15:28 -0700 | [diff] [blame] | 902 | out_unlock: |
| 903 | up_write(&s->lock); |
| 904 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | return r; |
| 906 | } |
| 907 | |
| 908 | static void snapshot_resume(struct dm_target *ti) |
| 909 | { |
| 910 | struct dm_snapshot *s = (struct dm_snapshot *) ti->private; |
| 911 | |
Alasdair G Kergon | aa14ede | 2006-02-01 03:04:50 -0800 | [diff] [blame] | 912 | down_write(&s->lock); |
| 913 | s->active = 1; |
| 914 | up_write(&s->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | } |
| 916 | |
| 917 | static int snapshot_status(struct dm_target *ti, status_type_t type, |
| 918 | char *result, unsigned int maxlen) |
| 919 | { |
| 920 | struct dm_snapshot *snap = (struct dm_snapshot *) ti->private; |
| 921 | |
| 922 | switch (type) { |
| 923 | case STATUSTYPE_INFO: |
| 924 | if (!snap->valid) |
| 925 | snprintf(result, maxlen, "Invalid"); |
| 926 | else { |
| 927 | if (snap->store.fraction_full) { |
| 928 | sector_t numerator, denominator; |
| 929 | snap->store.fraction_full(&snap->store, |
| 930 | &numerator, |
| 931 | &denominator); |
Andrew Morton | 4ee218c | 2006-03-27 01:17:48 -0800 | [diff] [blame] | 932 | snprintf(result, maxlen, "%llu/%llu", |
| 933 | (unsigned long long)numerator, |
| 934 | (unsigned long long)denominator); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | } |
| 936 | else |
| 937 | snprintf(result, maxlen, "Unknown"); |
| 938 | } |
| 939 | break; |
| 940 | |
| 941 | case STATUSTYPE_TABLE: |
| 942 | /* |
| 943 | * kdevname returns a static pointer so we need |
| 944 | * to make private copies if the output is to |
| 945 | * make sense. |
| 946 | */ |
Andrew Morton | 4ee218c | 2006-03-27 01:17:48 -0800 | [diff] [blame] | 947 | snprintf(result, maxlen, "%s %s %c %llu", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | snap->origin->name, snap->cow->name, |
Andrew Morton | 4ee218c | 2006-03-27 01:17:48 -0800 | [diff] [blame] | 949 | snap->type, |
| 950 | (unsigned long long)snap->chunk_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | break; |
| 952 | } |
| 953 | |
| 954 | return 0; |
| 955 | } |
| 956 | |
| 957 | /*----------------------------------------------------------------- |
| 958 | * Origin methods |
| 959 | *---------------------------------------------------------------*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 960 | static int __origin_write(struct list_head *snapshots, struct bio *bio) |
| 961 | { |
Alasdair G Kergon | b4b610f | 2006-03-27 01:17:44 -0800 | [diff] [blame] | 962 | int r = 1, first = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | struct dm_snapshot *snap; |
| 964 | struct exception *e; |
Alasdair G Kergon | b4b610f | 2006-03-27 01:17:44 -0800 | [diff] [blame] | 965 | struct pending_exception *pe, *next_pe, *primary_pe = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | chunk_t chunk; |
Alasdair G Kergon | eccf081 | 2006-03-27 01:17:42 -0800 | [diff] [blame] | 967 | LIST_HEAD(pe_queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | |
| 969 | /* Do all the snapshots on this origin */ |
| 970 | list_for_each_entry (snap, snapshots, list) { |
| 971 | |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 972 | down_write(&snap->lock); |
| 973 | |
Alasdair G Kergon | aa14ede | 2006-02-01 03:04:50 -0800 | [diff] [blame] | 974 | /* Only deal with valid and active snapshots */ |
| 975 | if (!snap->valid || !snap->active) |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 976 | goto next_snapshot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | |
Alasdair G Kergon | d5e404c | 2005-07-12 15:53:05 -0700 | [diff] [blame] | 978 | /* Nothing to do if writing beyond end of snapshot */ |
| 979 | if (bio->bi_sector >= dm_table_get_size(snap->table)) |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 980 | goto next_snapshot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | |
| 982 | /* |
| 983 | * Remember, different snapshots can have |
| 984 | * different chunk sizes. |
| 985 | */ |
| 986 | chunk = sector_to_chunk(snap, bio->bi_sector); |
| 987 | |
| 988 | /* |
| 989 | * Check exception table to see if block |
| 990 | * is already remapped in this snapshot |
| 991 | * and trigger an exception if not. |
Alasdair G Kergon | b4b610f | 2006-03-27 01:17:44 -0800 | [diff] [blame] | 992 | * |
| 993 | * sibling_count is initialised to 1 so pending_complete() |
| 994 | * won't destroy the primary_pe while we're inside this loop. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | */ |
| 996 | e = lookup_exception(&snap->complete, chunk); |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 997 | if (e) |
| 998 | goto next_snapshot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 1000 | pe = __find_pending_exception(snap, bio); |
| 1001 | if (!pe) { |
Milan Broz | 92c060a | 2006-10-03 01:15:24 -0700 | [diff] [blame] | 1002 | __invalidate_snapshot(snap, pe, -ENOMEM); |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 1003 | goto next_snapshot; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | } |
| 1005 | |
Alasdair G Kergon | 76df1c6 | 2006-03-27 01:17:45 -0800 | [diff] [blame] | 1006 | if (!primary_pe) { |
| 1007 | /* |
| 1008 | * Either every pe here has same |
| 1009 | * primary_pe or none has one yet. |
| 1010 | */ |
| 1011 | if (pe->primary_pe) |
| 1012 | primary_pe = pe->primary_pe; |
| 1013 | else { |
| 1014 | primary_pe = pe; |
| 1015 | first = 1; |
| 1016 | } |
| 1017 | |
| 1018 | bio_list_add(&primary_pe->origin_bios, bio); |
| 1019 | |
| 1020 | r = 0; |
| 1021 | } |
| 1022 | |
| 1023 | if (!pe->primary_pe) { |
| 1024 | atomic_inc(&primary_pe->sibling_count); |
| 1025 | pe->primary_pe = primary_pe; |
| 1026 | } |
| 1027 | |
| 1028 | if (!pe->started) { |
| 1029 | pe->started = 1; |
| 1030 | list_add_tail(&pe->list, &pe_queue); |
| 1031 | } |
| 1032 | |
| 1033 | next_snapshot: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | up_write(&snap->lock); |
| 1035 | } |
| 1036 | |
Alasdair G Kergon | b4b610f | 2006-03-27 01:17:44 -0800 | [diff] [blame] | 1037 | if (!primary_pe) |
| 1038 | goto out; |
| 1039 | |
| 1040 | /* |
| 1041 | * If this is the first time we're processing this chunk and |
| 1042 | * sibling_count is now 1 it means all the pending exceptions |
| 1043 | * got completed while we were in the loop above, so it falls to |
| 1044 | * us here to remove the primary_pe and submit any origin_bios. |
| 1045 | */ |
| 1046 | |
| 1047 | if (first && atomic_dec_and_test(&primary_pe->sibling_count)) { |
| 1048 | flush_bios(bio_list_get(&primary_pe->origin_bios)); |
| 1049 | free_pending_exception(primary_pe); |
| 1050 | /* If we got here, pe_queue is necessarily empty. */ |
| 1051 | goto out; |
| 1052 | } |
| 1053 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | /* |
| 1055 | * Now that we have a complete pe list we can start the copying. |
| 1056 | */ |
Alasdair G Kergon | eccf081 | 2006-03-27 01:17:42 -0800 | [diff] [blame] | 1057 | list_for_each_entry_safe(pe, next_pe, &pe_queue, list) |
| 1058 | start_copy(pe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1059 | |
Alasdair G Kergon | b4b610f | 2006-03-27 01:17:44 -0800 | [diff] [blame] | 1060 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | return r; |
| 1062 | } |
| 1063 | |
| 1064 | /* |
| 1065 | * Called on a write from the origin driver. |
| 1066 | */ |
| 1067 | static int do_origin(struct dm_dev *origin, struct bio *bio) |
| 1068 | { |
| 1069 | struct origin *o; |
| 1070 | int r = 1; |
| 1071 | |
| 1072 | down_read(&_origins_lock); |
| 1073 | o = __lookup_origin(origin->bdev); |
| 1074 | if (o) |
| 1075 | r = __origin_write(&o->snapshots, bio); |
| 1076 | up_read(&_origins_lock); |
| 1077 | |
| 1078 | return r; |
| 1079 | } |
| 1080 | |
| 1081 | /* |
| 1082 | * Origin: maps a linear range of a device, with hooks for snapshotting. |
| 1083 | */ |
| 1084 | |
| 1085 | /* |
| 1086 | * Construct an origin mapping: <dev_path> |
| 1087 | * The context for an origin is merely a 'struct dm_dev *' |
| 1088 | * pointing to the real device. |
| 1089 | */ |
| 1090 | static int origin_ctr(struct dm_target *ti, unsigned int argc, char **argv) |
| 1091 | { |
| 1092 | int r; |
| 1093 | struct dm_dev *dev; |
| 1094 | |
| 1095 | if (argc != 1) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 1096 | ti->error = "origin: incorrect number of arguments"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1097 | return -EINVAL; |
| 1098 | } |
| 1099 | |
| 1100 | r = dm_get_device(ti, argv[0], 0, ti->len, |
| 1101 | dm_table_get_mode(ti->table), &dev); |
| 1102 | if (r) { |
| 1103 | ti->error = "Cannot get target device"; |
| 1104 | return r; |
| 1105 | } |
| 1106 | |
| 1107 | ti->private = dev; |
| 1108 | return 0; |
| 1109 | } |
| 1110 | |
| 1111 | static void origin_dtr(struct dm_target *ti) |
| 1112 | { |
| 1113 | struct dm_dev *dev = (struct dm_dev *) ti->private; |
| 1114 | dm_put_device(ti, dev); |
| 1115 | } |
| 1116 | |
| 1117 | static int origin_map(struct dm_target *ti, struct bio *bio, |
| 1118 | union map_info *map_context) |
| 1119 | { |
| 1120 | struct dm_dev *dev = (struct dm_dev *) ti->private; |
| 1121 | bio->bi_bdev = dev->bdev; |
| 1122 | |
Alasdair G Kergon | 4aac0a6 | 2006-02-01 03:04:55 -0800 | [diff] [blame] | 1123 | if (unlikely(bio_barrier(bio))) |
| 1124 | return -EOPNOTSUPP; |
| 1125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | /* Only tell snapshots if this is a write */ |
| 1127 | return (bio_rw(bio) == WRITE) ? do_origin(dev, bio) : 1; |
| 1128 | } |
| 1129 | |
| 1130 | #define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r)) |
| 1131 | |
| 1132 | /* |
| 1133 | * Set the target "split_io" field to the minimum of all the snapshots' |
| 1134 | * chunk sizes. |
| 1135 | */ |
| 1136 | static void origin_resume(struct dm_target *ti) |
| 1137 | { |
| 1138 | struct dm_dev *dev = (struct dm_dev *) ti->private; |
| 1139 | struct dm_snapshot *snap; |
| 1140 | struct origin *o; |
| 1141 | chunk_t chunk_size = 0; |
| 1142 | |
| 1143 | down_read(&_origins_lock); |
| 1144 | o = __lookup_origin(dev->bdev); |
| 1145 | if (o) |
| 1146 | list_for_each_entry (snap, &o->snapshots, list) |
| 1147 | chunk_size = min_not_zero(chunk_size, snap->chunk_size); |
| 1148 | up_read(&_origins_lock); |
| 1149 | |
| 1150 | ti->split_io = chunk_size; |
| 1151 | } |
| 1152 | |
| 1153 | static int origin_status(struct dm_target *ti, status_type_t type, char *result, |
| 1154 | unsigned int maxlen) |
| 1155 | { |
| 1156 | struct dm_dev *dev = (struct dm_dev *) ti->private; |
| 1157 | |
| 1158 | switch (type) { |
| 1159 | case STATUSTYPE_INFO: |
| 1160 | result[0] = '\0'; |
| 1161 | break; |
| 1162 | |
| 1163 | case STATUSTYPE_TABLE: |
| 1164 | snprintf(result, maxlen, "%s", dev->name); |
| 1165 | break; |
| 1166 | } |
| 1167 | |
| 1168 | return 0; |
| 1169 | } |
| 1170 | |
| 1171 | static struct target_type origin_target = { |
| 1172 | .name = "snapshot-origin", |
Mark McLoughlin | 4c7e3bf | 2006-10-03 01:15:25 -0700 | [diff] [blame] | 1173 | .version = {1, 5, 0}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1174 | .module = THIS_MODULE, |
| 1175 | .ctr = origin_ctr, |
| 1176 | .dtr = origin_dtr, |
| 1177 | .map = origin_map, |
| 1178 | .resume = origin_resume, |
| 1179 | .status = origin_status, |
| 1180 | }; |
| 1181 | |
| 1182 | static struct target_type snapshot_target = { |
| 1183 | .name = "snapshot", |
Mark McLoughlin | 4c7e3bf | 2006-10-03 01:15:25 -0700 | [diff] [blame] | 1184 | .version = {1, 5, 0}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | .module = THIS_MODULE, |
| 1186 | .ctr = snapshot_ctr, |
| 1187 | .dtr = snapshot_dtr, |
| 1188 | .map = snapshot_map, |
| 1189 | .resume = snapshot_resume, |
| 1190 | .status = snapshot_status, |
| 1191 | }; |
| 1192 | |
| 1193 | static int __init dm_snapshot_init(void) |
| 1194 | { |
| 1195 | int r; |
| 1196 | |
| 1197 | r = dm_register_target(&snapshot_target); |
| 1198 | if (r) { |
| 1199 | DMERR("snapshot target register failed %d", r); |
| 1200 | return r; |
| 1201 | } |
| 1202 | |
| 1203 | r = dm_register_target(&origin_target); |
| 1204 | if (r < 0) { |
Alasdair G Kergon | 72d9486 | 2006-06-26 00:27:35 -0700 | [diff] [blame] | 1205 | DMERR("Origin target register failed %d", r); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | goto bad1; |
| 1207 | } |
| 1208 | |
| 1209 | r = init_origin_hash(); |
| 1210 | if (r) { |
| 1211 | DMERR("init_origin_hash failed."); |
| 1212 | goto bad2; |
| 1213 | } |
| 1214 | |
| 1215 | exception_cache = kmem_cache_create("dm-snapshot-ex", |
| 1216 | sizeof(struct exception), |
| 1217 | __alignof__(struct exception), |
| 1218 | 0, NULL, NULL); |
| 1219 | if (!exception_cache) { |
| 1220 | DMERR("Couldn't create exception cache."); |
| 1221 | r = -ENOMEM; |
| 1222 | goto bad3; |
| 1223 | } |
| 1224 | |
| 1225 | pending_cache = |
| 1226 | kmem_cache_create("dm-snapshot-in", |
| 1227 | sizeof(struct pending_exception), |
| 1228 | __alignof__(struct pending_exception), |
| 1229 | 0, NULL, NULL); |
| 1230 | if (!pending_cache) { |
| 1231 | DMERR("Couldn't create pending cache."); |
| 1232 | r = -ENOMEM; |
| 1233 | goto bad4; |
| 1234 | } |
| 1235 | |
Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 1236 | pending_pool = mempool_create_slab_pool(128, pending_cache); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | if (!pending_pool) { |
| 1238 | DMERR("Couldn't create pending pool."); |
| 1239 | r = -ENOMEM; |
| 1240 | goto bad5; |
| 1241 | } |
| 1242 | |
| 1243 | return 0; |
| 1244 | |
| 1245 | bad5: |
| 1246 | kmem_cache_destroy(pending_cache); |
| 1247 | bad4: |
| 1248 | kmem_cache_destroy(exception_cache); |
| 1249 | bad3: |
| 1250 | exit_origin_hash(); |
| 1251 | bad2: |
| 1252 | dm_unregister_target(&origin_target); |
| 1253 | bad1: |
| 1254 | dm_unregister_target(&snapshot_target); |
| 1255 | return r; |
| 1256 | } |
| 1257 | |
| 1258 | static void __exit dm_snapshot_exit(void) |
| 1259 | { |
| 1260 | int r; |
| 1261 | |
| 1262 | r = dm_unregister_target(&snapshot_target); |
| 1263 | if (r) |
| 1264 | DMERR("snapshot unregister failed %d", r); |
| 1265 | |
| 1266 | r = dm_unregister_target(&origin_target); |
| 1267 | if (r) |
| 1268 | DMERR("origin unregister failed %d", r); |
| 1269 | |
| 1270 | exit_origin_hash(); |
| 1271 | mempool_destroy(pending_pool); |
| 1272 | kmem_cache_destroy(pending_cache); |
| 1273 | kmem_cache_destroy(exception_cache); |
| 1274 | } |
| 1275 | |
| 1276 | /* Module hooks */ |
| 1277 | module_init(dm_snapshot_init); |
| 1278 | module_exit(dm_snapshot_exit); |
| 1279 | |
| 1280 | MODULE_DESCRIPTION(DM_NAME " snapshot target"); |
| 1281 | MODULE_AUTHOR("Joe Thornber"); |
| 1282 | MODULE_LICENSE("GPL"); |