dm snapshot: simplify sector_to_chunk expression
[deliverable/linux.git] / drivers / md / dm-snap.c
CommitLineData
1da177e4
LT
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>
1da177e4 10#include <linux/device-mapper.h>
90fa1527 11#include <linux/delay.h>
1da177e4
LT
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>
6f3c3f0a 20#include <linux/log2.h>
a765e20e 21#include <linux/dm-kcopyd.h>
ccc45ea8 22#include <linux/workqueue.h>
1da177e4 23
aea53d92 24#include "dm-exception-store.h"
1da177e4 25
72d94861
AK
26#define DM_MSG_PREFIX "snapshots"
27
1da177e4
LT
28/*
29 * The percentage increment we will wake up users at
30 */
31#define WAKE_UP_PERCENT 5
32
33/*
34 * kcopyd priority of snapshot operations
35 */
36#define SNAPSHOT_COPY_PRIORITY 2
37
38/*
8ee2767a 39 * Reserve 1MB for each snapshot initially (with minimum of 1 page).
1da177e4 40 */
8ee2767a 41#define SNAPSHOT_PAGES (((1UL << 20) >> PAGE_SHIFT) ? : 1)
1da177e4 42
cd45daff
MP
43/*
44 * The size of the mempool used to track chunks in use.
45 */
46#define MIN_IOS 256
47
ccc45ea8
JB
48#define DM_TRACKED_CHUNK_HASH_SIZE 16
49#define DM_TRACKED_CHUNK_HASH(x) ((unsigned long)(x) & \
50 (DM_TRACKED_CHUNK_HASH_SIZE - 1))
51
52struct exception_table {
53 uint32_t hash_mask;
54 unsigned hash_shift;
55 struct list_head *table;
56};
57
58struct dm_snapshot {
59 struct rw_semaphore lock;
60
61 struct dm_dev *origin;
62
63 /* List of snapshots per Origin */
64 struct list_head list;
65
66 /* You can't use a snapshot if this is 0 (e.g. if full) */
67 int valid;
68
69 /* Origin writes don't trigger exceptions until this is set */
70 int active;
71
ccc45ea8
JB
72 mempool_t *pending_pool;
73
74 atomic_t pending_exceptions_count;
75
76 struct exception_table pending;
77 struct exception_table complete;
78
79 /*
80 * pe_lock protects all pending_exception operations and access
81 * as well as the snapshot_bios list.
82 */
83 spinlock_t pe_lock;
84
85 /* The on disk metadata handler */
86 struct dm_exception_store *store;
87
88 struct dm_kcopyd_client *kcopyd_client;
89
90 /* Queue of snapshot writes for ksnapd to flush */
91 struct bio_list queued_bios;
92 struct work_struct queued_bios_work;
93
94 /* Chunks with outstanding reads */
95 mempool_t *tracked_chunk_pool;
96 spinlock_t tracked_chunk_lock;
97 struct hlist_head tracked_chunk_hash[DM_TRACKED_CHUNK_HASH_SIZE];
98};
99
c642f9e0 100static struct workqueue_struct *ksnapd;
c4028958 101static void flush_queued_bios(struct work_struct *work);
ca3a931f 102
ccc45ea8
JB
103static sector_t chunk_to_sector(struct dm_exception_store *store,
104 chunk_t chunk)
105{
106 return chunk << store->chunk_shift;
107}
108
109static int bdev_equal(struct block_device *lhs, struct block_device *rhs)
110{
111 /*
112 * There is only ever one instance of a particular block
113 * device so we can compare pointers safely.
114 */
115 return lhs == rhs;
116}
117
028867ac
AK
118struct dm_snap_pending_exception {
119 struct dm_snap_exception e;
1da177e4
LT
120
121 /*
122 * Origin buffers waiting for this to complete are held
123 * in a bio list
124 */
125 struct bio_list origin_bios;
126 struct bio_list snapshot_bios;
127
eccf0817
AK
128 /*
129 * Short-term queue of pending exceptions prior to submission.
130 */
131 struct list_head list;
132
1da177e4 133 /*
b4b610f6 134 * The primary pending_exception is the one that holds
4b832e8d 135 * the ref_count and the list of origin_bios for a
b4b610f6
AK
136 * group of pending_exceptions. It is always last to get freed.
137 * These fields get set up when writing to the origin.
1da177e4 138 */
028867ac 139 struct dm_snap_pending_exception *primary_pe;
b4b610f6
AK
140
141 /*
142 * Number of pending_exceptions processing this chunk.
143 * When this drops to zero we must complete the origin bios.
144 * If incrementing or decrementing this, hold pe->snap->lock for
145 * the sibling concerned and not pe->primary_pe->snap->lock unless
146 * they are the same.
147 */
4b832e8d 148 atomic_t ref_count;
1da177e4
LT
149
150 /* Pointer back to snapshot context */
151 struct dm_snapshot *snap;
152
153 /*
154 * 1 indicates the exception has already been sent to
155 * kcopyd.
156 */
157 int started;
158};
159
160/*
161 * Hash table mapping origin volumes to lists of snapshots and
162 * a lock to protect it
163 */
e18b890b
CL
164static struct kmem_cache *exception_cache;
165static struct kmem_cache *pending_cache;
1da177e4 166
cd45daff
MP
167struct dm_snap_tracked_chunk {
168 struct hlist_node node;
169 chunk_t chunk;
170};
171
172static struct kmem_cache *tracked_chunk_cache;
173
174static struct dm_snap_tracked_chunk *track_chunk(struct dm_snapshot *s,
175 chunk_t chunk)
176{
177 struct dm_snap_tracked_chunk *c = mempool_alloc(s->tracked_chunk_pool,
178 GFP_NOIO);
179 unsigned long flags;
180
181 c->chunk = chunk;
182
183 spin_lock_irqsave(&s->tracked_chunk_lock, flags);
184 hlist_add_head(&c->node,
185 &s->tracked_chunk_hash[DM_TRACKED_CHUNK_HASH(chunk)]);
186 spin_unlock_irqrestore(&s->tracked_chunk_lock, flags);
187
188 return c;
189}
190
191static void stop_tracking_chunk(struct dm_snapshot *s,
192 struct dm_snap_tracked_chunk *c)
193{
194 unsigned long flags;
195
196 spin_lock_irqsave(&s->tracked_chunk_lock, flags);
197 hlist_del(&c->node);
198 spin_unlock_irqrestore(&s->tracked_chunk_lock, flags);
199
200 mempool_free(c, s->tracked_chunk_pool);
201}
202
a8d41b59
MP
203static int __chunk_is_tracked(struct dm_snapshot *s, chunk_t chunk)
204{
205 struct dm_snap_tracked_chunk *c;
206 struct hlist_node *hn;
207 int found = 0;
208
209 spin_lock_irq(&s->tracked_chunk_lock);
210
211 hlist_for_each_entry(c, hn,
212 &s->tracked_chunk_hash[DM_TRACKED_CHUNK_HASH(chunk)], node) {
213 if (c->chunk == chunk) {
214 found = 1;
215 break;
216 }
217 }
218
219 spin_unlock_irq(&s->tracked_chunk_lock);
220
221 return found;
222}
223
1da177e4
LT
224/*
225 * One of these per registered origin, held in the snapshot_origins hash
226 */
227struct origin {
228 /* The origin device */
229 struct block_device *bdev;
230
231 struct list_head hash_list;
232
233 /* List of snapshots for this origin */
234 struct list_head snapshots;
235};
236
237/*
238 * Size of the hash table for origin volumes. If we make this
239 * the size of the minors list then it should be nearly perfect
240 */
241#define ORIGIN_HASH_SIZE 256
242#define ORIGIN_MASK 0xFF
243static struct list_head *_origins;
244static struct rw_semaphore _origins_lock;
245
246static int init_origin_hash(void)
247{
248 int i;
249
250 _origins = kmalloc(ORIGIN_HASH_SIZE * sizeof(struct list_head),
251 GFP_KERNEL);
252 if (!_origins) {
72d94861 253 DMERR("unable to allocate memory");
1da177e4
LT
254 return -ENOMEM;
255 }
256
257 for (i = 0; i < ORIGIN_HASH_SIZE; i++)
258 INIT_LIST_HEAD(_origins + i);
259 init_rwsem(&_origins_lock);
260
261 return 0;
262}
263
264static void exit_origin_hash(void)
265{
266 kfree(_origins);
267}
268
028867ac 269static unsigned origin_hash(struct block_device *bdev)
1da177e4
LT
270{
271 return bdev->bd_dev & ORIGIN_MASK;
272}
273
274static struct origin *__lookup_origin(struct block_device *origin)
275{
276 struct list_head *ol;
277 struct origin *o;
278
279 ol = &_origins[origin_hash(origin)];
280 list_for_each_entry (o, ol, hash_list)
281 if (bdev_equal(o->bdev, origin))
282 return o;
283
284 return NULL;
285}
286
287static void __insert_origin(struct origin *o)
288{
289 struct list_head *sl = &_origins[origin_hash(o->bdev)];
290 list_add_tail(&o->hash_list, sl);
291}
292
293/*
294 * Make a note of the snapshot and its origin so we can look it
295 * up when the origin has a write on it.
296 */
297static int register_snapshot(struct dm_snapshot *snap)
298{
6d45d93e 299 struct dm_snapshot *l;
60c856c8 300 struct origin *o, *new_o;
1da177e4
LT
301 struct block_device *bdev = snap->origin->bdev;
302
60c856c8
MP
303 new_o = kmalloc(sizeof(*new_o), GFP_KERNEL);
304 if (!new_o)
305 return -ENOMEM;
306
1da177e4
LT
307 down_write(&_origins_lock);
308 o = __lookup_origin(bdev);
309
60c856c8
MP
310 if (o)
311 kfree(new_o);
312 else {
1da177e4 313 /* New origin */
60c856c8 314 o = new_o;
1da177e4
LT
315
316 /* Initialise the struct */
317 INIT_LIST_HEAD(&o->snapshots);
318 o->bdev = bdev;
319
320 __insert_origin(o);
321 }
322
6d45d93e
MP
323 /* Sort the list according to chunk size, largest-first smallest-last */
324 list_for_each_entry(l, &o->snapshots, list)
325 if (l->store->chunk_size < snap->store->chunk_size)
326 break;
327 list_add_tail(&snap->list, &l->list);
1da177e4
LT
328
329 up_write(&_origins_lock);
330 return 0;
331}
332
333static void unregister_snapshot(struct dm_snapshot *s)
334{
335 struct origin *o;
336
337 down_write(&_origins_lock);
338 o = __lookup_origin(s->origin->bdev);
339
340 list_del(&s->list);
341 if (list_empty(&o->snapshots)) {
342 list_del(&o->hash_list);
343 kfree(o);
344 }
345
346 up_write(&_origins_lock);
347}
348
349/*
350 * Implementation of the exception hash tables.
d74f81f8
MB
351 * The lowest hash_shift bits of the chunk number are ignored, allowing
352 * some consecutive chunks to be grouped together.
1da177e4 353 */
d74f81f8
MB
354static int init_exception_table(struct exception_table *et, uint32_t size,
355 unsigned hash_shift)
1da177e4
LT
356{
357 unsigned int i;
358
d74f81f8 359 et->hash_shift = hash_shift;
1da177e4
LT
360 et->hash_mask = size - 1;
361 et->table = dm_vcalloc(size, sizeof(struct list_head));
362 if (!et->table)
363 return -ENOMEM;
364
365 for (i = 0; i < size; i++)
366 INIT_LIST_HEAD(et->table + i);
367
368 return 0;
369}
370
e18b890b 371static void exit_exception_table(struct exception_table *et, struct kmem_cache *mem)
1da177e4
LT
372{
373 struct list_head *slot;
028867ac 374 struct dm_snap_exception *ex, *next;
1da177e4
LT
375 int i, size;
376
377 size = et->hash_mask + 1;
378 for (i = 0; i < size; i++) {
379 slot = et->table + i;
380
381 list_for_each_entry_safe (ex, next, slot, hash_list)
382 kmem_cache_free(mem, ex);
383 }
384
385 vfree(et->table);
386}
387
028867ac 388static uint32_t exception_hash(struct exception_table *et, chunk_t chunk)
1da177e4 389{
d74f81f8 390 return (chunk >> et->hash_shift) & et->hash_mask;
1da177e4
LT
391}
392
028867ac
AK
393static void insert_exception(struct exception_table *eh,
394 struct dm_snap_exception *e)
1da177e4
LT
395{
396 struct list_head *l = &eh->table[exception_hash(eh, e->old_chunk)];
397 list_add(&e->hash_list, l);
398}
399
028867ac 400static void remove_exception(struct dm_snap_exception *e)
1da177e4
LT
401{
402 list_del(&e->hash_list);
403}
404
405/*
406 * Return the exception data for a sector, or NULL if not
407 * remapped.
408 */
028867ac
AK
409static struct dm_snap_exception *lookup_exception(struct exception_table *et,
410 chunk_t chunk)
1da177e4
LT
411{
412 struct list_head *slot;
028867ac 413 struct dm_snap_exception *e;
1da177e4
LT
414
415 slot = &et->table[exception_hash(et, chunk)];
416 list_for_each_entry (e, slot, hash_list)
d74f81f8
MB
417 if (chunk >= e->old_chunk &&
418 chunk <= e->old_chunk + dm_consecutive_chunk_count(e))
1da177e4
LT
419 return e;
420
421 return NULL;
422}
423
028867ac 424static struct dm_snap_exception *alloc_exception(void)
1da177e4 425{
028867ac 426 struct dm_snap_exception *e;
1da177e4
LT
427
428 e = kmem_cache_alloc(exception_cache, GFP_NOIO);
429 if (!e)
430 e = kmem_cache_alloc(exception_cache, GFP_ATOMIC);
431
432 return e;
433}
434
028867ac 435static void free_exception(struct dm_snap_exception *e)
1da177e4
LT
436{
437 kmem_cache_free(exception_cache, e);
438}
439
92e86812 440static struct dm_snap_pending_exception *alloc_pending_exception(struct dm_snapshot *s)
1da177e4 441{
92e86812
MP
442 struct dm_snap_pending_exception *pe = mempool_alloc(s->pending_pool,
443 GFP_NOIO);
444
879129d2 445 atomic_inc(&s->pending_exceptions_count);
92e86812
MP
446 pe->snap = s;
447
448 return pe;
1da177e4
LT
449}
450
028867ac 451static void free_pending_exception(struct dm_snap_pending_exception *pe)
1da177e4 452{
879129d2
MP
453 struct dm_snapshot *s = pe->snap;
454
455 mempool_free(pe, s->pending_pool);
456 smp_mb__before_atomic_dec();
457 atomic_dec(&s->pending_exceptions_count);
1da177e4
LT
458}
459
d74f81f8
MB
460static void insert_completed_exception(struct dm_snapshot *s,
461 struct dm_snap_exception *new_e)
462{
463 struct exception_table *eh = &s->complete;
464 struct list_head *l;
465 struct dm_snap_exception *e = NULL;
466
467 l = &eh->table[exception_hash(eh, new_e->old_chunk)];
468
469 /* Add immediately if this table doesn't support consecutive chunks */
470 if (!eh->hash_shift)
471 goto out;
472
473 /* List is ordered by old_chunk */
474 list_for_each_entry_reverse(e, l, hash_list) {
475 /* Insert after an existing chunk? */
476 if (new_e->old_chunk == (e->old_chunk +
477 dm_consecutive_chunk_count(e) + 1) &&
478 new_e->new_chunk == (dm_chunk_number(e->new_chunk) +
479 dm_consecutive_chunk_count(e) + 1)) {
480 dm_consecutive_chunk_count_inc(e);
481 free_exception(new_e);
482 return;
483 }
484
485 /* Insert before an existing chunk? */
486 if (new_e->old_chunk == (e->old_chunk - 1) &&
487 new_e->new_chunk == (dm_chunk_number(e->new_chunk) - 1)) {
488 dm_consecutive_chunk_count_inc(e);
489 e->old_chunk--;
490 e->new_chunk--;
491 free_exception(new_e);
492 return;
493 }
494
495 if (new_e->old_chunk > e->old_chunk)
496 break;
497 }
498
499out:
500 list_add(&new_e->hash_list, e ? &e->hash_list : l);
501}
502
a159c1ac
JB
503/*
504 * Callback used by the exception stores to load exceptions when
505 * initialising.
506 */
507static int dm_add_exception(void *context, chunk_t old, chunk_t new)
1da177e4 508{
a159c1ac 509 struct dm_snapshot *s = context;
028867ac 510 struct dm_snap_exception *e;
1da177e4
LT
511
512 e = alloc_exception();
513 if (!e)
514 return -ENOMEM;
515
516 e->old_chunk = old;
d74f81f8
MB
517
518 /* Consecutive_count is implicitly initialised to zero */
1da177e4 519 e->new_chunk = new;
d74f81f8
MB
520
521 insert_completed_exception(s, e);
522
1da177e4
LT
523 return 0;
524}
525
526/*
527 * Hard coded magic.
528 */
529static int calc_max_buckets(void)
530{
531 /* use a fixed size of 2MB */
532 unsigned long mem = 2 * 1024 * 1024;
533 mem /= sizeof(struct list_head);
534
535 return mem;
536}
537
1da177e4
LT
538/*
539 * Allocate room for a suitable hash table.
540 */
fee1998e 541static int init_hash_tables(struct dm_snapshot *s)
1da177e4
LT
542{
543 sector_t hash_size, cow_dev_size, origin_dev_size, max_buckets;
544
545 /*
546 * Calculate based on the size of the original volume or
547 * the COW volume...
548 */
fee1998e 549 cow_dev_size = get_dev_size(s->store->cow->bdev);
1da177e4
LT
550 origin_dev_size = get_dev_size(s->origin->bdev);
551 max_buckets = calc_max_buckets();
552
fee1998e 553 hash_size = min(origin_dev_size, cow_dev_size) >> s->store->chunk_shift;
1da177e4
LT
554 hash_size = min(hash_size, max_buckets);
555
8e87b9b8
MP
556 if (hash_size < 64)
557 hash_size = 64;
8defd830 558 hash_size = rounddown_pow_of_two(hash_size);
d74f81f8
MB
559 if (init_exception_table(&s->complete, hash_size,
560 DM_CHUNK_CONSECUTIVE_BITS))
1da177e4
LT
561 return -ENOMEM;
562
563 /*
564 * Allocate hash table for in-flight exceptions
565 * Make this smaller than the real hash table
566 */
567 hash_size >>= 3;
568 if (hash_size < 64)
569 hash_size = 64;
570
d74f81f8 571 if (init_exception_table(&s->pending, hash_size, 0)) {
1da177e4
LT
572 exit_exception_table(&s->complete, exception_cache);
573 return -ENOMEM;
574 }
575
576 return 0;
577}
578
1da177e4
LT
579/*
580 * Construct a snapshot mapping: <origin_dev> <COW-dev> <p/n> <chunk-size>
581 */
582static int snapshot_ctr(struct dm_target *ti, unsigned int argc, char **argv)
583{
584 struct dm_snapshot *s;
cd45daff 585 int i;
1da177e4 586 int r = -EINVAL;
1da177e4 587 char *origin_path;
fee1998e
JB
588 struct dm_exception_store *store;
589 unsigned args_used;
1da177e4 590
4c7e3bf4 591 if (argc != 4) {
72d94861 592 ti->error = "requires exactly 4 arguments";
1da177e4 593 r = -EINVAL;
fee1998e 594 goto bad_args;
1da177e4
LT
595 }
596
597 origin_path = argv[0];
fee1998e
JB
598 argv++;
599 argc--;
1da177e4 600
fee1998e
JB
601 r = dm_exception_store_create(ti, argc, argv, &args_used, &store);
602 if (r) {
603 ti->error = "Couldn't create exception store";
1da177e4 604 r = -EINVAL;
fee1998e 605 goto bad_args;
1da177e4
LT
606 }
607
fee1998e
JB
608 argv += args_used;
609 argc -= args_used;
610
1da177e4 611 s = kmalloc(sizeof(*s), GFP_KERNEL);
fee1998e 612 if (!s) {
1da177e4
LT
613 ti->error = "Cannot allocate snapshot context private "
614 "structure";
615 r = -ENOMEM;
fee1998e 616 goto bad_snap;
1da177e4
LT
617 }
618
619 r = dm_get_device(ti, origin_path, 0, ti->len, FMODE_READ, &s->origin);
620 if (r) {
621 ti->error = "Cannot get origin device";
fee1998e 622 goto bad_origin;
1da177e4
LT
623 }
624
fee1998e 625 s->store = store;
1da177e4 626 s->valid = 1;
aa14edeb 627 s->active = 0;
879129d2 628 atomic_set(&s->pending_exceptions_count, 0);
1da177e4 629 init_rwsem(&s->lock);
ca3a931f 630 spin_lock_init(&s->pe_lock);
1da177e4
LT
631
632 /* Allocate hash table for COW data */
fee1998e 633 if (init_hash_tables(s)) {
1da177e4
LT
634 ti->error = "Unable to allocate hash table space";
635 r = -ENOMEM;
fee1998e 636 goto bad_hash_tables;
1da177e4
LT
637 }
638
eb69aca5 639 r = dm_kcopyd_client_create(SNAPSHOT_PAGES, &s->kcopyd_client);
1da177e4
LT
640 if (r) {
641 ti->error = "Could not create kcopyd client";
fee1998e 642 goto bad_kcopyd;
1da177e4
LT
643 }
644
92e86812
MP
645 s->pending_pool = mempool_create_slab_pool(MIN_IOS, pending_cache);
646 if (!s->pending_pool) {
647 ti->error = "Could not allocate mempool for pending exceptions";
fee1998e 648 goto bad_pending_pool;
92e86812
MP
649 }
650
cd45daff
MP
651 s->tracked_chunk_pool = mempool_create_slab_pool(MIN_IOS,
652 tracked_chunk_cache);
653 if (!s->tracked_chunk_pool) {
654 ti->error = "Could not allocate tracked_chunk mempool for "
655 "tracking reads";
92e86812 656 goto bad_tracked_chunk_pool;
cd45daff
MP
657 }
658
659 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
660 INIT_HLIST_HEAD(&s->tracked_chunk_hash[i]);
661
662 spin_lock_init(&s->tracked_chunk_lock);
663
aa14edeb 664 /* Metadata must only be loaded into one table at once */
493df71c
JB
665 r = s->store->type->read_metadata(s->store, dm_add_exception,
666 (void *)s);
0764147b 667 if (r < 0) {
f9cea4f7 668 ti->error = "Failed to read snapshot metadata";
cd45daff 669 goto bad_load_and_register;
0764147b
MB
670 } else if (r > 0) {
671 s->valid = 0;
672 DMWARN("Snapshot is marked invalid.");
f9cea4f7 673 }
aa14edeb 674
ca3a931f 675 bio_list_init(&s->queued_bios);
c4028958 676 INIT_WORK(&s->queued_bios_work, flush_queued_bios);
ca3a931f 677
3f2412dc
MP
678 if (!s->store->chunk_size) {
679 ti->error = "Chunk size not set";
680 goto bad_load_and_register;
681 }
682
1da177e4 683 /* Add snapshot to the list of snapshots for this origin */
aa14edeb 684 /* Exceptions aren't triggered till snapshot_resume() is called */
1da177e4
LT
685 if (register_snapshot(s)) {
686 r = -EINVAL;
687 ti->error = "Cannot register snapshot origin";
cd45daff 688 goto bad_load_and_register;
1da177e4
LT
689 }
690
691 ti->private = s;
d0216849 692 ti->split_io = s->store->chunk_size;
494b3ee7 693 ti->num_flush_requests = 1;
1da177e4
LT
694
695 return 0;
696
fee1998e 697bad_load_and_register:
cd45daff
MP
698 mempool_destroy(s->tracked_chunk_pool);
699
fee1998e 700bad_tracked_chunk_pool:
92e86812
MP
701 mempool_destroy(s->pending_pool);
702
fee1998e 703bad_pending_pool:
eb69aca5 704 dm_kcopyd_client_destroy(s->kcopyd_client);
1da177e4 705
fee1998e 706bad_kcopyd:
1da177e4
LT
707 exit_exception_table(&s->pending, pending_cache);
708 exit_exception_table(&s->complete, exception_cache);
709
fee1998e 710bad_hash_tables:
1da177e4
LT
711 dm_put_device(ti, s->origin);
712
fee1998e 713bad_origin:
1da177e4
LT
714 kfree(s);
715
fee1998e
JB
716bad_snap:
717 dm_exception_store_destroy(store);
718
719bad_args:
1da177e4
LT
720 return r;
721}
722
31c93a0c
MB
723static void __free_exceptions(struct dm_snapshot *s)
724{
eb69aca5 725 dm_kcopyd_client_destroy(s->kcopyd_client);
31c93a0c
MB
726 s->kcopyd_client = NULL;
727
728 exit_exception_table(&s->pending, pending_cache);
729 exit_exception_table(&s->complete, exception_cache);
31c93a0c
MB
730}
731
1da177e4
LT
732static void snapshot_dtr(struct dm_target *ti)
733{
cd45daff
MP
734#ifdef CONFIG_DM_DEBUG
735 int i;
736#endif
028867ac 737 struct dm_snapshot *s = ti->private;
1da177e4 738
ca3a931f
AK
739 flush_workqueue(ksnapd);
740
138728dc
AK
741 /* Prevent further origin writes from using this snapshot. */
742 /* After this returns there can be no new kcopyd jobs. */
1da177e4
LT
743 unregister_snapshot(s);
744
879129d2 745 while (atomic_read(&s->pending_exceptions_count))
90fa1527 746 msleep(1);
879129d2
MP
747 /*
748 * Ensure instructions in mempool_destroy aren't reordered
749 * before atomic_read.
750 */
751 smp_mb();
752
cd45daff
MP
753#ifdef CONFIG_DM_DEBUG
754 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
755 BUG_ON(!hlist_empty(&s->tracked_chunk_hash[i]));
756#endif
757
758 mempool_destroy(s->tracked_chunk_pool);
759
31c93a0c 760 __free_exceptions(s);
1da177e4 761
92e86812
MP
762 mempool_destroy(s->pending_pool);
763
1da177e4 764 dm_put_device(ti, s->origin);
fee1998e
JB
765
766 dm_exception_store_destroy(s->store);
138728dc 767
1da177e4
LT
768 kfree(s);
769}
770
771/*
772 * Flush a list of buffers.
773 */
774static void flush_bios(struct bio *bio)
775{
776 struct bio *n;
777
778 while (bio) {
779 n = bio->bi_next;
780 bio->bi_next = NULL;
781 generic_make_request(bio);
782 bio = n;
783 }
784}
785
c4028958 786static void flush_queued_bios(struct work_struct *work)
ca3a931f 787{
c4028958
DH
788 struct dm_snapshot *s =
789 container_of(work, struct dm_snapshot, queued_bios_work);
ca3a931f
AK
790 struct bio *queued_bios;
791 unsigned long flags;
792
793 spin_lock_irqsave(&s->pe_lock, flags);
794 queued_bios = bio_list_get(&s->queued_bios);
795 spin_unlock_irqrestore(&s->pe_lock, flags);
796
797 flush_bios(queued_bios);
798}
799
1da177e4
LT
800/*
801 * Error a list of buffers.
802 */
803static void error_bios(struct bio *bio)
804{
805 struct bio *n;
806
807 while (bio) {
808 n = bio->bi_next;
809 bio->bi_next = NULL;
6712ecf8 810 bio_io_error(bio);
1da177e4
LT
811 bio = n;
812 }
813}
814
695368ac 815static void __invalidate_snapshot(struct dm_snapshot *s, int err)
76df1c65
AK
816{
817 if (!s->valid)
818 return;
819
820 if (err == -EIO)
821 DMERR("Invalidating snapshot: Error reading/writing.");
822 else if (err == -ENOMEM)
823 DMERR("Invalidating snapshot: Unable to allocate exception.");
824
493df71c
JB
825 if (s->store->type->drop_snapshot)
826 s->store->type->drop_snapshot(s->store);
76df1c65
AK
827
828 s->valid = 0;
829
0cea9c78 830 dm_table_event(s->store->ti->table);
76df1c65
AK
831}
832
028867ac 833static void get_pending_exception(struct dm_snap_pending_exception *pe)
4b832e8d
AK
834{
835 atomic_inc(&pe->ref_count);
836}
837
028867ac 838static struct bio *put_pending_exception(struct dm_snap_pending_exception *pe)
4b832e8d 839{
028867ac 840 struct dm_snap_pending_exception *primary_pe;
4b832e8d
AK
841 struct bio *origin_bios = NULL;
842
843 primary_pe = pe->primary_pe;
844
845 /*
846 * If this pe is involved in a write to the origin and
847 * it is the last sibling to complete then release
848 * the bios for the original write to the origin.
849 */
850 if (primary_pe &&
7c5f78b9 851 atomic_dec_and_test(&primary_pe->ref_count)) {
4b832e8d 852 origin_bios = bio_list_get(&primary_pe->origin_bios);
7c5f78b9
MP
853 free_pending_exception(primary_pe);
854 }
4b832e8d
AK
855
856 /*
857 * Free the pe if it's not linked to an origin write or if
858 * it's not itself a primary pe.
859 */
860 if (!primary_pe || primary_pe != pe)
861 free_pending_exception(pe);
862
4b832e8d
AK
863 return origin_bios;
864}
865
028867ac 866static void pending_complete(struct dm_snap_pending_exception *pe, int success)
1da177e4 867{
028867ac 868 struct dm_snap_exception *e;
1da177e4 869 struct dm_snapshot *s = pe->snap;
9d493fa8
AK
870 struct bio *origin_bios = NULL;
871 struct bio *snapshot_bios = NULL;
872 int error = 0;
1da177e4 873
76df1c65
AK
874 if (!success) {
875 /* Read/write error - snapshot is unusable */
1da177e4 876 down_write(&s->lock);
695368ac 877 __invalidate_snapshot(s, -EIO);
9d493fa8 878 error = 1;
76df1c65
AK
879 goto out;
880 }
881
882 e = alloc_exception();
883 if (!e) {
1da177e4 884 down_write(&s->lock);
695368ac 885 __invalidate_snapshot(s, -ENOMEM);
9d493fa8 886 error = 1;
76df1c65
AK
887 goto out;
888 }
889 *e = pe->e;
1da177e4 890
76df1c65
AK
891 down_write(&s->lock);
892 if (!s->valid) {
76df1c65 893 free_exception(e);
9d493fa8 894 error = 1;
76df1c65 895 goto out;
1da177e4
LT
896 }
897
a8d41b59
MP
898 /*
899 * Check for conflicting reads. This is extremely improbable,
90fa1527 900 * so msleep(1) is sufficient and there is no need for a wait queue.
a8d41b59
MP
901 */
902 while (__chunk_is_tracked(s, pe->e.old_chunk))
90fa1527 903 msleep(1);
a8d41b59 904
9d493fa8
AK
905 /*
906 * Add a proper exception, and remove the
907 * in-flight exception from the list.
908 */
d74f81f8 909 insert_completed_exception(s, e);
76df1c65 910
1da177e4 911 out:
695368ac 912 remove_exception(&pe->e);
9d493fa8 913 snapshot_bios = bio_list_get(&pe->snapshot_bios);
4b832e8d 914 origin_bios = put_pending_exception(pe);
1da177e4 915
9d493fa8
AK
916 up_write(&s->lock);
917
918 /* Submit any pending write bios */
919 if (error)
920 error_bios(snapshot_bios);
921 else
922 flush_bios(snapshot_bios);
923
924 flush_bios(origin_bios);
1da177e4
LT
925}
926
927static void commit_callback(void *context, int success)
928{
028867ac
AK
929 struct dm_snap_pending_exception *pe = context;
930
1da177e4
LT
931 pending_complete(pe, success);
932}
933
934/*
935 * Called when the copy I/O has finished. kcopyd actually runs
936 * this code so don't block.
937 */
4cdc1d1f 938static void copy_callback(int read_err, unsigned long write_err, void *context)
1da177e4 939{
028867ac 940 struct dm_snap_pending_exception *pe = context;
1da177e4
LT
941 struct dm_snapshot *s = pe->snap;
942
943 if (read_err || write_err)
944 pending_complete(pe, 0);
945
946 else
947 /* Update the metadata if we are persistent */
493df71c
JB
948 s->store->type->commit_exception(s->store, &pe->e,
949 commit_callback, pe);
1da177e4
LT
950}
951
952/*
953 * Dispatches the copy operation to kcopyd.
954 */
028867ac 955static void start_copy(struct dm_snap_pending_exception *pe)
1da177e4
LT
956{
957 struct dm_snapshot *s = pe->snap;
22a1ceb1 958 struct dm_io_region src, dest;
1da177e4
LT
959 struct block_device *bdev = s->origin->bdev;
960 sector_t dev_size;
961
962 dev_size = get_dev_size(bdev);
963
964 src.bdev = bdev;
71fab00a 965 src.sector = chunk_to_sector(s->store, pe->e.old_chunk);
df96eee6 966 src.count = min((sector_t)s->store->chunk_size, dev_size - src.sector);
1da177e4 967
49beb2b8 968 dest.bdev = s->store->cow->bdev;
71fab00a 969 dest.sector = chunk_to_sector(s->store, pe->e.new_chunk);
1da177e4
LT
970 dest.count = src.count;
971
972 /* Hand over to kcopyd */
eb69aca5 973 dm_kcopyd_copy(s->kcopyd_client,
1da177e4
LT
974 &src, 1, &dest, 0, copy_callback, pe);
975}
976
2913808e
MP
977static struct dm_snap_pending_exception *
978__lookup_pending_exception(struct dm_snapshot *s, chunk_t chunk)
979{
980 struct dm_snap_exception *e = lookup_exception(&s->pending, chunk);
981
982 if (!e)
983 return NULL;
984
985 return container_of(e, struct dm_snap_pending_exception, e);
986}
987
1da177e4
LT
988/*
989 * Looks to see if this snapshot already has a pending exception
990 * for this chunk, otherwise it allocates a new one and inserts
991 * it into the pending table.
992 *
993 * NOTE: a write lock must be held on snap->lock before calling
994 * this.
995 */
028867ac 996static struct dm_snap_pending_exception *
c6621392
MP
997__find_pending_exception(struct dm_snapshot *s,
998 struct dm_snap_pending_exception *pe, chunk_t chunk)
1da177e4 999{
c6621392 1000 struct dm_snap_pending_exception *pe2;
1da177e4 1001
2913808e
MP
1002 pe2 = __lookup_pending_exception(s, chunk);
1003 if (pe2) {
76df1c65 1004 free_pending_exception(pe);
2913808e 1005 return pe2;
1da177e4
LT
1006 }
1007
76df1c65
AK
1008 pe->e.old_chunk = chunk;
1009 bio_list_init(&pe->origin_bios);
1010 bio_list_init(&pe->snapshot_bios);
1011 pe->primary_pe = NULL;
4b832e8d 1012 atomic_set(&pe->ref_count, 0);
76df1c65
AK
1013 pe->started = 0;
1014
493df71c 1015 if (s->store->type->prepare_exception(s->store, &pe->e)) {
76df1c65
AK
1016 free_pending_exception(pe);
1017 return NULL;
1018 }
1019
4b832e8d 1020 get_pending_exception(pe);
76df1c65
AK
1021 insert_exception(&s->pending, &pe->e);
1022
1da177e4
LT
1023 return pe;
1024}
1025
028867ac 1026static void remap_exception(struct dm_snapshot *s, struct dm_snap_exception *e,
d74f81f8 1027 struct bio *bio, chunk_t chunk)
1da177e4 1028{
49beb2b8 1029 bio->bi_bdev = s->store->cow->bdev;
71fab00a
JB
1030 bio->bi_sector = chunk_to_sector(s->store,
1031 dm_chunk_number(e->new_chunk) +
1032 (chunk - e->old_chunk)) +
1033 (bio->bi_sector &
1034 s->store->chunk_mask);
1da177e4
LT
1035}
1036
1037static int snapshot_map(struct dm_target *ti, struct bio *bio,
1038 union map_info *map_context)
1039{
028867ac
AK
1040 struct dm_snap_exception *e;
1041 struct dm_snapshot *s = ti->private;
d2a7ad29 1042 int r = DM_MAPIO_REMAPPED;
1da177e4 1043 chunk_t chunk;
028867ac 1044 struct dm_snap_pending_exception *pe = NULL;
1da177e4 1045
494b3ee7
MP
1046 if (unlikely(bio_empty_barrier(bio))) {
1047 bio->bi_bdev = s->store->cow->bdev;
1048 return DM_MAPIO_REMAPPED;
1049 }
1050
71fab00a 1051 chunk = sector_to_chunk(s->store, bio->bi_sector);
1da177e4
LT
1052
1053 /* Full snapshots are not usable */
76df1c65 1054 /* To get here the table must be live so s->active is always set. */
1da177e4 1055 if (!s->valid)
f6a80ea8 1056 return -EIO;
1da177e4 1057
ba40a2aa
AK
1058 /* FIXME: should only take write lock if we need
1059 * to copy an exception */
1060 down_write(&s->lock);
1061
1062 if (!s->valid) {
1063 r = -EIO;
1064 goto out_unlock;
1065 }
1066
1067 /* If the block is already remapped - use that, else remap it */
1068 e = lookup_exception(&s->complete, chunk);
1069 if (e) {
d74f81f8 1070 remap_exception(s, e, bio, chunk);
ba40a2aa
AK
1071 goto out_unlock;
1072 }
1073
1da177e4
LT
1074 /*
1075 * Write to snapshot - higher level takes care of RW/RO
1076 * flags so we should only get this if we are
1077 * writeable.
1078 */
1079 if (bio_rw(bio) == WRITE) {
2913808e 1080 pe = __lookup_pending_exception(s, chunk);
76df1c65 1081 if (!pe) {
c6621392
MP
1082 up_write(&s->lock);
1083 pe = alloc_pending_exception(s);
1084 down_write(&s->lock);
1085
1086 if (!s->valid) {
1087 free_pending_exception(pe);
1088 r = -EIO;
1089 goto out_unlock;
1090 }
1091
35bf659b
MP
1092 e = lookup_exception(&s->complete, chunk);
1093 if (e) {
1094 free_pending_exception(pe);
1095 remap_exception(s, e, bio, chunk);
1096 goto out_unlock;
1097 }
1098
c6621392 1099 pe = __find_pending_exception(s, pe, chunk);
2913808e
MP
1100 if (!pe) {
1101 __invalidate_snapshot(s, -ENOMEM);
1102 r = -EIO;
1103 goto out_unlock;
1104 }
1da177e4
LT
1105 }
1106
d74f81f8 1107 remap_exception(s, &pe->e, bio, chunk);
76df1c65
AK
1108 bio_list_add(&pe->snapshot_bios, bio);
1109
d2a7ad29 1110 r = DM_MAPIO_SUBMITTED;
ba40a2aa 1111
76df1c65
AK
1112 if (!pe->started) {
1113 /* this is protected by snap->lock */
1114 pe->started = 1;
ba40a2aa 1115 up_write(&s->lock);
76df1c65 1116 start_copy(pe);
ba40a2aa
AK
1117 goto out;
1118 }
cd45daff 1119 } else {
ba40a2aa 1120 bio->bi_bdev = s->origin->bdev;
cd45daff
MP
1121 map_context->ptr = track_chunk(s, chunk);
1122 }
1da177e4 1123
ba40a2aa
AK
1124 out_unlock:
1125 up_write(&s->lock);
1126 out:
1da177e4
LT
1127 return r;
1128}
1129
cd45daff
MP
1130static int snapshot_end_io(struct dm_target *ti, struct bio *bio,
1131 int error, union map_info *map_context)
1132{
1133 struct dm_snapshot *s = ti->private;
1134 struct dm_snap_tracked_chunk *c = map_context->ptr;
1135
1136 if (c)
1137 stop_tracking_chunk(s, c);
1138
1139 return 0;
1140}
1141
1da177e4
LT
1142static void snapshot_resume(struct dm_target *ti)
1143{
028867ac 1144 struct dm_snapshot *s = ti->private;
1da177e4 1145
aa14edeb
AK
1146 down_write(&s->lock);
1147 s->active = 1;
1148 up_write(&s->lock);
1da177e4
LT
1149}
1150
1151static int snapshot_status(struct dm_target *ti, status_type_t type,
1152 char *result, unsigned int maxlen)
1153{
2e4a31df 1154 unsigned sz = 0;
028867ac 1155 struct dm_snapshot *snap = ti->private;
1da177e4
LT
1156
1157 switch (type) {
1158 case STATUSTYPE_INFO:
94e76572
MP
1159
1160 down_write(&snap->lock);
1161
1da177e4 1162 if (!snap->valid)
2e4a31df 1163 DMEMIT("Invalid");
1da177e4 1164 else {
493df71c 1165 if (snap->store->type->fraction_full) {
1da177e4 1166 sector_t numerator, denominator;
493df71c
JB
1167 snap->store->type->fraction_full(snap->store,
1168 &numerator,
1169 &denominator);
2e4a31df
JB
1170 DMEMIT("%llu/%llu",
1171 (unsigned long long)numerator,
1172 (unsigned long long)denominator);
1da177e4
LT
1173 }
1174 else
2e4a31df 1175 DMEMIT("Unknown");
1da177e4 1176 }
94e76572
MP
1177
1178 up_write(&snap->lock);
1179
1da177e4
LT
1180 break;
1181
1182 case STATUSTYPE_TABLE:
1183 /*
1184 * kdevname returns a static pointer so we need
1185 * to make private copies if the output is to
1186 * make sense.
1187 */
2e4a31df 1188 DMEMIT("%s", snap->origin->name);
1e302a92
JB
1189 snap->store->type->status(snap->store, type, result + sz,
1190 maxlen - sz);
1da177e4
LT
1191 break;
1192 }
1193
1194 return 0;
1195}
1196
8811f46c
MS
1197static int snapshot_iterate_devices(struct dm_target *ti,
1198 iterate_devices_callout_fn fn, void *data)
1199{
1200 struct dm_snapshot *snap = ti->private;
1201
1202 return fn(ti, snap->origin, 0, ti->len, data);
1203}
1204
1205
1da177e4
LT
1206/*-----------------------------------------------------------------
1207 * Origin methods
1208 *---------------------------------------------------------------*/
1da177e4
LT
1209static int __origin_write(struct list_head *snapshots, struct bio *bio)
1210{
d2a7ad29 1211 int r = DM_MAPIO_REMAPPED, first = 0;
1da177e4 1212 struct dm_snapshot *snap;
028867ac
AK
1213 struct dm_snap_exception *e;
1214 struct dm_snap_pending_exception *pe, *next_pe, *primary_pe = NULL;
1da177e4 1215 chunk_t chunk;
eccf0817 1216 LIST_HEAD(pe_queue);
1da177e4
LT
1217
1218 /* Do all the snapshots on this origin */
1219 list_for_each_entry (snap, snapshots, list) {
1220
76df1c65
AK
1221 down_write(&snap->lock);
1222
aa14edeb
AK
1223 /* Only deal with valid and active snapshots */
1224 if (!snap->valid || !snap->active)
76df1c65 1225 goto next_snapshot;
1da177e4 1226
d5e404c1 1227 /* Nothing to do if writing beyond end of snapshot */
0cea9c78 1228 if (bio->bi_sector >= dm_table_get_size(snap->store->ti->table))
76df1c65 1229 goto next_snapshot;
1da177e4
LT
1230
1231 /*
1232 * Remember, different snapshots can have
1233 * different chunk sizes.
1234 */
71fab00a 1235 chunk = sector_to_chunk(snap->store, bio->bi_sector);
1da177e4
LT
1236
1237 /*
1238 * Check exception table to see if block
1239 * is already remapped in this snapshot
1240 * and trigger an exception if not.
b4b610f6 1241 *
4b832e8d 1242 * ref_count is initialised to 1 so pending_complete()
b4b610f6 1243 * won't destroy the primary_pe while we're inside this loop.
1da177e4
LT
1244 */
1245 e = lookup_exception(&snap->complete, chunk);
76df1c65
AK
1246 if (e)
1247 goto next_snapshot;
1248
2913808e 1249 pe = __lookup_pending_exception(snap, chunk);
76df1c65 1250 if (!pe) {
c6621392
MP
1251 up_write(&snap->lock);
1252 pe = alloc_pending_exception(snap);
1253 down_write(&snap->lock);
1254
1255 if (!snap->valid) {
1256 free_pending_exception(pe);
1257 goto next_snapshot;
1258 }
1259
35bf659b
MP
1260 e = lookup_exception(&snap->complete, chunk);
1261 if (e) {
1262 free_pending_exception(pe);
1263 goto next_snapshot;
1264 }
1265
c6621392 1266 pe = __find_pending_exception(snap, pe, chunk);
2913808e
MP
1267 if (!pe) {
1268 __invalidate_snapshot(snap, -ENOMEM);
1269 goto next_snapshot;
1270 }
76df1c65
AK
1271 }
1272
1273 if (!primary_pe) {
1274 /*
1275 * Either every pe here has same
1276 * primary_pe or none has one yet.
1277 */
1278 if (pe->primary_pe)
1279 primary_pe = pe->primary_pe;
1280 else {
1281 primary_pe = pe;
1282 first = 1;
1da177e4 1283 }
76df1c65
AK
1284
1285 bio_list_add(&primary_pe->origin_bios, bio);
1286
d2a7ad29 1287 r = DM_MAPIO_SUBMITTED;
76df1c65
AK
1288 }
1289
1290 if (!pe->primary_pe) {
76df1c65 1291 pe->primary_pe = primary_pe;
4b832e8d 1292 get_pending_exception(primary_pe);
76df1c65
AK
1293 }
1294
1295 if (!pe->started) {
1296 pe->started = 1;
1297 list_add_tail(&pe->list, &pe_queue);
1da177e4
LT
1298 }
1299
76df1c65 1300 next_snapshot:
1da177e4
LT
1301 up_write(&snap->lock);
1302 }
1303
b4b610f6 1304 if (!primary_pe)
4b832e8d 1305 return r;
b4b610f6
AK
1306
1307 /*
1308 * If this is the first time we're processing this chunk and
4b832e8d 1309 * ref_count is now 1 it means all the pending exceptions
b4b610f6
AK
1310 * got completed while we were in the loop above, so it falls to
1311 * us here to remove the primary_pe and submit any origin_bios.
1312 */
1313
4b832e8d 1314 if (first && atomic_dec_and_test(&primary_pe->ref_count)) {
b4b610f6
AK
1315 flush_bios(bio_list_get(&primary_pe->origin_bios));
1316 free_pending_exception(primary_pe);
1317 /* If we got here, pe_queue is necessarily empty. */
4b832e8d 1318 return r;
b4b610f6
AK
1319 }
1320
1da177e4
LT
1321 /*
1322 * Now that we have a complete pe list we can start the copying.
1323 */
eccf0817
AK
1324 list_for_each_entry_safe(pe, next_pe, &pe_queue, list)
1325 start_copy(pe);
1da177e4
LT
1326
1327 return r;
1328}
1329
1330/*
1331 * Called on a write from the origin driver.
1332 */
1333static int do_origin(struct dm_dev *origin, struct bio *bio)
1334{
1335 struct origin *o;
d2a7ad29 1336 int r = DM_MAPIO_REMAPPED;
1da177e4
LT
1337
1338 down_read(&_origins_lock);
1339 o = __lookup_origin(origin->bdev);
1340 if (o)
1341 r = __origin_write(&o->snapshots, bio);
1342 up_read(&_origins_lock);
1343
1344 return r;
1345}
1346
1347/*
1348 * Origin: maps a linear range of a device, with hooks for snapshotting.
1349 */
1350
1351/*
1352 * Construct an origin mapping: <dev_path>
1353 * The context for an origin is merely a 'struct dm_dev *'
1354 * pointing to the real device.
1355 */
1356static int origin_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1357{
1358 int r;
1359 struct dm_dev *dev;
1360
1361 if (argc != 1) {
72d94861 1362 ti->error = "origin: incorrect number of arguments";
1da177e4
LT
1363 return -EINVAL;
1364 }
1365
1366 r = dm_get_device(ti, argv[0], 0, ti->len,
1367 dm_table_get_mode(ti->table), &dev);
1368 if (r) {
1369 ti->error = "Cannot get target device";
1370 return r;
1371 }
1372
1373 ti->private = dev;
494b3ee7
MP
1374 ti->num_flush_requests = 1;
1375
1da177e4
LT
1376 return 0;
1377}
1378
1379static void origin_dtr(struct dm_target *ti)
1380{
028867ac 1381 struct dm_dev *dev = ti->private;
1da177e4
LT
1382 dm_put_device(ti, dev);
1383}
1384
1385static int origin_map(struct dm_target *ti, struct bio *bio,
1386 union map_info *map_context)
1387{
028867ac 1388 struct dm_dev *dev = ti->private;
1da177e4
LT
1389 bio->bi_bdev = dev->bdev;
1390
494b3ee7
MP
1391 if (unlikely(bio_empty_barrier(bio)))
1392 return DM_MAPIO_REMAPPED;
1393
1da177e4 1394 /* Only tell snapshots if this is a write */
d2a7ad29 1395 return (bio_rw(bio) == WRITE) ? do_origin(dev, bio) : DM_MAPIO_REMAPPED;
1da177e4
LT
1396}
1397
1398#define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
1399
1400/*
1401 * Set the target "split_io" field to the minimum of all the snapshots'
1402 * chunk sizes.
1403 */
1404static void origin_resume(struct dm_target *ti)
1405{
028867ac 1406 struct dm_dev *dev = ti->private;
1da177e4
LT
1407 struct dm_snapshot *snap;
1408 struct origin *o;
df96eee6 1409 unsigned chunk_size = 0;
1da177e4
LT
1410
1411 down_read(&_origins_lock);
1412 o = __lookup_origin(dev->bdev);
1413 if (o)
1414 list_for_each_entry (snap, &o->snapshots, list)
d0216849
JB
1415 chunk_size = min_not_zero(chunk_size,
1416 snap->store->chunk_size);
1da177e4
LT
1417 up_read(&_origins_lock);
1418
1419 ti->split_io = chunk_size;
1420}
1421
1422static int origin_status(struct dm_target *ti, status_type_t type, char *result,
1423 unsigned int maxlen)
1424{
028867ac 1425 struct dm_dev *dev = ti->private;
1da177e4
LT
1426
1427 switch (type) {
1428 case STATUSTYPE_INFO:
1429 result[0] = '\0';
1430 break;
1431
1432 case STATUSTYPE_TABLE:
1433 snprintf(result, maxlen, "%s", dev->name);
1434 break;
1435 }
1436
1437 return 0;
1438}
1439
8811f46c
MS
1440static int origin_iterate_devices(struct dm_target *ti,
1441 iterate_devices_callout_fn fn, void *data)
1442{
1443 struct dm_dev *dev = ti->private;
1444
1445 return fn(ti, dev, 0, ti->len, data);
1446}
1447
1da177e4
LT
1448static struct target_type origin_target = {
1449 .name = "snapshot-origin",
8811f46c 1450 .version = {1, 7, 0},
1da177e4
LT
1451 .module = THIS_MODULE,
1452 .ctr = origin_ctr,
1453 .dtr = origin_dtr,
1454 .map = origin_map,
1455 .resume = origin_resume,
1456 .status = origin_status,
8811f46c 1457 .iterate_devices = origin_iterate_devices,
1da177e4
LT
1458};
1459
1460static struct target_type snapshot_target = {
1461 .name = "snapshot",
8811f46c 1462 .version = {1, 7, 0},
1da177e4
LT
1463 .module = THIS_MODULE,
1464 .ctr = snapshot_ctr,
1465 .dtr = snapshot_dtr,
1466 .map = snapshot_map,
cd45daff 1467 .end_io = snapshot_end_io,
1da177e4
LT
1468 .resume = snapshot_resume,
1469 .status = snapshot_status,
8811f46c 1470 .iterate_devices = snapshot_iterate_devices,
1da177e4
LT
1471};
1472
1473static int __init dm_snapshot_init(void)
1474{
1475 int r;
1476
4db6bfe0
AK
1477 r = dm_exception_store_init();
1478 if (r) {
1479 DMERR("Failed to initialize exception stores");
1480 return r;
1481 }
1482
1da177e4
LT
1483 r = dm_register_target(&snapshot_target);
1484 if (r) {
1485 DMERR("snapshot target register failed %d", r);
034a186d 1486 goto bad_register_snapshot_target;
1da177e4
LT
1487 }
1488
1489 r = dm_register_target(&origin_target);
1490 if (r < 0) {
72d94861 1491 DMERR("Origin target register failed %d", r);
1da177e4
LT
1492 goto bad1;
1493 }
1494
1495 r = init_origin_hash();
1496 if (r) {
1497 DMERR("init_origin_hash failed.");
1498 goto bad2;
1499 }
1500
028867ac 1501 exception_cache = KMEM_CACHE(dm_snap_exception, 0);
1da177e4
LT
1502 if (!exception_cache) {
1503 DMERR("Couldn't create exception cache.");
1504 r = -ENOMEM;
1505 goto bad3;
1506 }
1507
028867ac 1508 pending_cache = KMEM_CACHE(dm_snap_pending_exception, 0);
1da177e4
LT
1509 if (!pending_cache) {
1510 DMERR("Couldn't create pending cache.");
1511 r = -ENOMEM;
1512 goto bad4;
1513 }
1514
cd45daff
MP
1515 tracked_chunk_cache = KMEM_CACHE(dm_snap_tracked_chunk, 0);
1516 if (!tracked_chunk_cache) {
1517 DMERR("Couldn't create cache to track chunks in use.");
1518 r = -ENOMEM;
1519 goto bad5;
1520 }
1521
ca3a931f
AK
1522 ksnapd = create_singlethread_workqueue("ksnapd");
1523 if (!ksnapd) {
1524 DMERR("Failed to create ksnapd workqueue.");
1525 r = -ENOMEM;
92e86812 1526 goto bad_pending_pool;
ca3a931f
AK
1527 }
1528
1da177e4
LT
1529 return 0;
1530
4db6bfe0 1531bad_pending_pool:
cd45daff 1532 kmem_cache_destroy(tracked_chunk_cache);
4db6bfe0 1533bad5:
1da177e4 1534 kmem_cache_destroy(pending_cache);
4db6bfe0 1535bad4:
1da177e4 1536 kmem_cache_destroy(exception_cache);
4db6bfe0 1537bad3:
1da177e4 1538 exit_origin_hash();
4db6bfe0 1539bad2:
1da177e4 1540 dm_unregister_target(&origin_target);
4db6bfe0 1541bad1:
1da177e4 1542 dm_unregister_target(&snapshot_target);
034a186d
JB
1543
1544bad_register_snapshot_target:
1545 dm_exception_store_exit();
1da177e4
LT
1546 return r;
1547}
1548
1549static void __exit dm_snapshot_exit(void)
1550{
ca3a931f
AK
1551 destroy_workqueue(ksnapd);
1552
10d3bd09
MP
1553 dm_unregister_target(&snapshot_target);
1554 dm_unregister_target(&origin_target);
1da177e4
LT
1555
1556 exit_origin_hash();
1da177e4
LT
1557 kmem_cache_destroy(pending_cache);
1558 kmem_cache_destroy(exception_cache);
cd45daff 1559 kmem_cache_destroy(tracked_chunk_cache);
4db6bfe0
AK
1560
1561 dm_exception_store_exit();
1da177e4
LT
1562}
1563
1564/* Module hooks */
1565module_init(dm_snapshot_init);
1566module_exit(dm_snapshot_exit);
1567
1568MODULE_DESCRIPTION(DM_NAME " snapshot target");
1569MODULE_AUTHOR("Joe Thornber");
1570MODULE_LICENSE("GPL");
This page took 0.725713 seconds and 5 git commands to generate.