blob: 974916b9ea214cd96614a23eb7c348445e213e6d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/device-mapper.h>
Mikulas Patocka90fa1522009-01-06 03:04:54 +000011#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#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>
vignesh babu6f3c3f02007-10-19 22:38:44 +010020#include <linux/log2.h>
Alasdair G Kergona765e202008-04-24 22:02:01 +010021#include <linux/dm-kcopyd.h>
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010022#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Jonathan Brassowaea53d92009-01-06 03:05:15 +000024#include "dm-exception-store.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "dm-bio-list.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Alasdair G Kergon72d94862006-06-26 00:27:35 -070027#define DM_MSG_PREFIX "snapshots"
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029/*
30 * The percentage increment we will wake up users at
31 */
32#define WAKE_UP_PERCENT 5
33
34/*
35 * kcopyd priority of snapshot operations
36 */
37#define SNAPSHOT_COPY_PRIORITY 2
38
39/*
Milan Broz8ee27672008-04-24 21:42:36 +010040 * Reserve 1MB for each snapshot initially (with minimum of 1 page).
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 */
Milan Broz8ee27672008-04-24 21:42:36 +010042#define SNAPSHOT_PAGES (((1UL << 20) >> PAGE_SHIFT) ? : 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Mikulas Patockacd45daf2008-07-21 12:00:32 +010044/*
45 * The size of the mempool used to track chunks in use.
46 */
47#define MIN_IOS 256
48
Jonathan Brassowccc45ea2009-04-02 19:55:34 +010049#define DM_TRACKED_CHUNK_HASH_SIZE 16
50#define DM_TRACKED_CHUNK_HASH(x) ((unsigned long)(x) & \
51 (DM_TRACKED_CHUNK_HASH_SIZE - 1))
52
53struct exception_table {
54 uint32_t hash_mask;
55 unsigned hash_shift;
56 struct list_head *table;
57};
58
59struct dm_snapshot {
60 struct rw_semaphore lock;
61
62 struct dm_dev *origin;
63
64 /* List of snapshots per Origin */
65 struct list_head list;
66
67 /* You can't use a snapshot if this is 0 (e.g. if full) */
68 int valid;
69
70 /* Origin writes don't trigger exceptions until this is set */
71 int active;
72
73 /* Used for display of table */
74 char type;
75
76 mempool_t *pending_pool;
77
78 atomic_t pending_exceptions_count;
79
80 struct exception_table pending;
81 struct exception_table complete;
82
83 /*
84 * pe_lock protects all pending_exception operations and access
85 * as well as the snapshot_bios list.
86 */
87 spinlock_t pe_lock;
88
89 /* The on disk metadata handler */
90 struct dm_exception_store *store;
91
92 struct dm_kcopyd_client *kcopyd_client;
93
94 /* Queue of snapshot writes for ksnapd to flush */
95 struct bio_list queued_bios;
96 struct work_struct queued_bios_work;
97
98 /* Chunks with outstanding reads */
99 mempool_t *tracked_chunk_pool;
100 spinlock_t tracked_chunk_lock;
101 struct hlist_head tracked_chunk_hash[DM_TRACKED_CHUNK_HASH_SIZE];
102};
103
Adrian Bunkc642f9e2006-12-08 02:41:13 -0800104static struct workqueue_struct *ksnapd;
David Howellsc4028952006-11-22 14:57:56 +0000105static void flush_queued_bios(struct work_struct *work);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700106
Jonathan Brassowccc45ea2009-04-02 19:55:34 +0100107static sector_t chunk_to_sector(struct dm_exception_store *store,
108 chunk_t chunk)
109{
110 return chunk << store->chunk_shift;
111}
112
113static int bdev_equal(struct block_device *lhs, struct block_device *rhs)
114{
115 /*
116 * There is only ever one instance of a particular block
117 * device so we can compare pointers safely.
118 */
119 return lhs == rhs;
120}
121
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100122struct dm_snap_pending_exception {
123 struct dm_snap_exception e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 /*
126 * Origin buffers waiting for this to complete are held
127 * in a bio list
128 */
129 struct bio_list origin_bios;
130 struct bio_list snapshot_bios;
131
132 /*
Alasdair G Kergoneccf0812006-03-27 01:17:42 -0800133 * Short-term queue of pending exceptions prior to submission.
134 */
135 struct list_head list;
136
137 /*
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -0800138 * The primary pending_exception is the one that holds
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700139 * the ref_count and the list of origin_bios for a
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -0800140 * group of pending_exceptions. It is always last to get freed.
141 * These fields get set up when writing to the origin.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100143 struct dm_snap_pending_exception *primary_pe;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -0800144
145 /*
146 * Number of pending_exceptions processing this chunk.
147 * When this drops to zero we must complete the origin bios.
148 * If incrementing or decrementing this, hold pe->snap->lock for
149 * the sibling concerned and not pe->primary_pe->snap->lock unless
150 * they are the same.
151 */
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700152 atomic_t ref_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 /* Pointer back to snapshot context */
155 struct dm_snapshot *snap;
156
157 /*
158 * 1 indicates the exception has already been sent to
159 * kcopyd.
160 */
161 int started;
162};
163
164/*
165 * Hash table mapping origin volumes to lists of snapshots and
166 * a lock to protect it
167 */
Christoph Lametere18b8902006-12-06 20:33:20 -0800168static struct kmem_cache *exception_cache;
169static struct kmem_cache *pending_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100171struct dm_snap_tracked_chunk {
172 struct hlist_node node;
173 chunk_t chunk;
174};
175
176static struct kmem_cache *tracked_chunk_cache;
177
178static struct dm_snap_tracked_chunk *track_chunk(struct dm_snapshot *s,
179 chunk_t chunk)
180{
181 struct dm_snap_tracked_chunk *c = mempool_alloc(s->tracked_chunk_pool,
182 GFP_NOIO);
183 unsigned long flags;
184
185 c->chunk = chunk;
186
187 spin_lock_irqsave(&s->tracked_chunk_lock, flags);
188 hlist_add_head(&c->node,
189 &s->tracked_chunk_hash[DM_TRACKED_CHUNK_HASH(chunk)]);
190 spin_unlock_irqrestore(&s->tracked_chunk_lock, flags);
191
192 return c;
193}
194
195static void stop_tracking_chunk(struct dm_snapshot *s,
196 struct dm_snap_tracked_chunk *c)
197{
198 unsigned long flags;
199
200 spin_lock_irqsave(&s->tracked_chunk_lock, flags);
201 hlist_del(&c->node);
202 spin_unlock_irqrestore(&s->tracked_chunk_lock, flags);
203
204 mempool_free(c, s->tracked_chunk_pool);
205}
206
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100207static int __chunk_is_tracked(struct dm_snapshot *s, chunk_t chunk)
208{
209 struct dm_snap_tracked_chunk *c;
210 struct hlist_node *hn;
211 int found = 0;
212
213 spin_lock_irq(&s->tracked_chunk_lock);
214
215 hlist_for_each_entry(c, hn,
216 &s->tracked_chunk_hash[DM_TRACKED_CHUNK_HASH(chunk)], node) {
217 if (c->chunk == chunk) {
218 found = 1;
219 break;
220 }
221 }
222
223 spin_unlock_irq(&s->tracked_chunk_lock);
224
225 return found;
226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/*
229 * One of these per registered origin, held in the snapshot_origins hash
230 */
231struct origin {
232 /* The origin device */
233 struct block_device *bdev;
234
235 struct list_head hash_list;
236
237 /* List of snapshots for this origin */
238 struct list_head snapshots;
239};
240
241/*
242 * Size of the hash table for origin volumes. If we make this
243 * the size of the minors list then it should be nearly perfect
244 */
245#define ORIGIN_HASH_SIZE 256
246#define ORIGIN_MASK 0xFF
247static struct list_head *_origins;
248static struct rw_semaphore _origins_lock;
249
250static int init_origin_hash(void)
251{
252 int i;
253
254 _origins = kmalloc(ORIGIN_HASH_SIZE * sizeof(struct list_head),
255 GFP_KERNEL);
256 if (!_origins) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700257 DMERR("unable to allocate memory");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return -ENOMEM;
259 }
260
261 for (i = 0; i < ORIGIN_HASH_SIZE; i++)
262 INIT_LIST_HEAD(_origins + i);
263 init_rwsem(&_origins_lock);
264
265 return 0;
266}
267
268static void exit_origin_hash(void)
269{
270 kfree(_origins);
271}
272
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100273static unsigned origin_hash(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 return bdev->bd_dev & ORIGIN_MASK;
276}
277
278static struct origin *__lookup_origin(struct block_device *origin)
279{
280 struct list_head *ol;
281 struct origin *o;
282
283 ol = &_origins[origin_hash(origin)];
284 list_for_each_entry (o, ol, hash_list)
285 if (bdev_equal(o->bdev, origin))
286 return o;
287
288 return NULL;
289}
290
291static void __insert_origin(struct origin *o)
292{
293 struct list_head *sl = &_origins[origin_hash(o->bdev)];
294 list_add_tail(&o->hash_list, sl);
295}
296
297/*
298 * Make a note of the snapshot and its origin so we can look it
299 * up when the origin has a write on it.
300 */
301static int register_snapshot(struct dm_snapshot *snap)
302{
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000303 struct origin *o, *new_o;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 struct block_device *bdev = snap->origin->bdev;
305
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000306 new_o = kmalloc(sizeof(*new_o), GFP_KERNEL);
307 if (!new_o)
308 return -ENOMEM;
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 down_write(&_origins_lock);
311 o = __lookup_origin(bdev);
312
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000313 if (o)
314 kfree(new_o);
315 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 /* New origin */
Mikulas Patocka60c856c82008-10-30 13:33:12 +0000317 o = new_o;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 /* Initialise the struct */
320 INIT_LIST_HEAD(&o->snapshots);
321 o->bdev = bdev;
322
323 __insert_origin(o);
324 }
325
326 list_add_tail(&snap->list, &o->snapshots);
327
328 up_write(&_origins_lock);
329 return 0;
330}
331
332static void unregister_snapshot(struct dm_snapshot *s)
333{
334 struct origin *o;
335
336 down_write(&_origins_lock);
337 o = __lookup_origin(s->origin->bdev);
338
339 list_del(&s->list);
340 if (list_empty(&o->snapshots)) {
341 list_del(&o->hash_list);
342 kfree(o);
343 }
344
345 up_write(&_origins_lock);
346}
347
348/*
349 * Implementation of the exception hash tables.
Milan Brozd74f81f2008-02-08 02:11:27 +0000350 * The lowest hash_shift bits of the chunk number are ignored, allowing
351 * some consecutive chunks to be grouped together.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 */
Milan Brozd74f81f2008-02-08 02:11:27 +0000353static int init_exception_table(struct exception_table *et, uint32_t size,
354 unsigned hash_shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 unsigned int i;
357
Milan Brozd74f81f2008-02-08 02:11:27 +0000358 et->hash_shift = hash_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 et->hash_mask = size - 1;
360 et->table = dm_vcalloc(size, sizeof(struct list_head));
361 if (!et->table)
362 return -ENOMEM;
363
364 for (i = 0; i < size; i++)
365 INIT_LIST_HEAD(et->table + i);
366
367 return 0;
368}
369
Christoph Lametere18b8902006-12-06 20:33:20 -0800370static void exit_exception_table(struct exception_table *et, struct kmem_cache *mem)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
372 struct list_head *slot;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100373 struct dm_snap_exception *ex, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 int i, size;
375
376 size = et->hash_mask + 1;
377 for (i = 0; i < size; i++) {
378 slot = et->table + i;
379
380 list_for_each_entry_safe (ex, next, slot, hash_list)
381 kmem_cache_free(mem, ex);
382 }
383
384 vfree(et->table);
385}
386
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100387static uint32_t exception_hash(struct exception_table *et, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Milan Brozd74f81f2008-02-08 02:11:27 +0000389 return (chunk >> et->hash_shift) & et->hash_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390}
391
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100392static void insert_exception(struct exception_table *eh,
393 struct dm_snap_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395 struct list_head *l = &eh->table[exception_hash(eh, e->old_chunk)];
396 list_add(&e->hash_list, l);
397}
398
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100399static void remove_exception(struct dm_snap_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 list_del(&e->hash_list);
402}
403
404/*
405 * Return the exception data for a sector, or NULL if not
406 * remapped.
407 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100408static struct dm_snap_exception *lookup_exception(struct exception_table *et,
409 chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
411 struct list_head *slot;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100412 struct dm_snap_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 slot = &et->table[exception_hash(et, chunk)];
415 list_for_each_entry (e, slot, hash_list)
Milan Brozd74f81f2008-02-08 02:11:27 +0000416 if (chunk >= e->old_chunk &&
417 chunk <= e->old_chunk + dm_consecutive_chunk_count(e))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 return e;
419
420 return NULL;
421}
422
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100423static struct dm_snap_exception *alloc_exception(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100425 struct dm_snap_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 e = kmem_cache_alloc(exception_cache, GFP_NOIO);
428 if (!e)
429 e = kmem_cache_alloc(exception_cache, GFP_ATOMIC);
430
431 return e;
432}
433
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100434static void free_exception(struct dm_snap_exception *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 kmem_cache_free(exception_cache, e);
437}
438
Mikulas Patocka92e86812008-07-21 12:00:35 +0100439static struct dm_snap_pending_exception *alloc_pending_exception(struct dm_snapshot *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Mikulas Patocka92e86812008-07-21 12:00:35 +0100441 struct dm_snap_pending_exception *pe = mempool_alloc(s->pending_pool,
442 GFP_NOIO);
443
Mikulas Patocka879129d22008-10-30 13:33:16 +0000444 atomic_inc(&s->pending_exceptions_count);
Mikulas Patocka92e86812008-07-21 12:00:35 +0100445 pe->snap = s;
446
447 return pe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448}
449
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100450static void free_pending_exception(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
Mikulas Patocka879129d22008-10-30 13:33:16 +0000452 struct dm_snapshot *s = pe->snap;
453
454 mempool_free(pe, s->pending_pool);
455 smp_mb__before_atomic_dec();
456 atomic_dec(&s->pending_exceptions_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
Milan Brozd74f81f2008-02-08 02:11:27 +0000459static void insert_completed_exception(struct dm_snapshot *s,
460 struct dm_snap_exception *new_e)
461{
462 struct exception_table *eh = &s->complete;
463 struct list_head *l;
464 struct dm_snap_exception *e = NULL;
465
466 l = &eh->table[exception_hash(eh, new_e->old_chunk)];
467
468 /* Add immediately if this table doesn't support consecutive chunks */
469 if (!eh->hash_shift)
470 goto out;
471
472 /* List is ordered by old_chunk */
473 list_for_each_entry_reverse(e, l, hash_list) {
474 /* Insert after an existing chunk? */
475 if (new_e->old_chunk == (e->old_chunk +
476 dm_consecutive_chunk_count(e) + 1) &&
477 new_e->new_chunk == (dm_chunk_number(e->new_chunk) +
478 dm_consecutive_chunk_count(e) + 1)) {
479 dm_consecutive_chunk_count_inc(e);
480 free_exception(new_e);
481 return;
482 }
483
484 /* Insert before an existing chunk? */
485 if (new_e->old_chunk == (e->old_chunk - 1) &&
486 new_e->new_chunk == (dm_chunk_number(e->new_chunk) - 1)) {
487 dm_consecutive_chunk_count_inc(e);
488 e->old_chunk--;
489 e->new_chunk--;
490 free_exception(new_e);
491 return;
492 }
493
494 if (new_e->old_chunk > e->old_chunk)
495 break;
496 }
497
498out:
499 list_add(&new_e->hash_list, e ? &e->hash_list : l);
500}
501
Jonathan Brassowa159c1a2009-01-06 03:05:19 +0000502/*
503 * Callback used by the exception stores to load exceptions when
504 * initialising.
505 */
506static int dm_add_exception(void *context, chunk_t old, chunk_t new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Jonathan Brassowa159c1a2009-01-06 03:05:19 +0000508 struct dm_snapshot *s = context;
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100509 struct dm_snap_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 e = alloc_exception();
512 if (!e)
513 return -ENOMEM;
514
515 e->old_chunk = old;
Milan Brozd74f81f2008-02-08 02:11:27 +0000516
517 /* Consecutive_count is implicitly initialised to zero */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 e->new_chunk = new;
Milan Brozd74f81f2008-02-08 02:11:27 +0000519
520 insert_completed_exception(s, e);
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 return 0;
523}
524
525/*
526 * Hard coded magic.
527 */
528static int calc_max_buckets(void)
529{
530 /* use a fixed size of 2MB */
531 unsigned long mem = 2 * 1024 * 1024;
532 mem /= sizeof(struct list_head);
533
534 return mem;
535}
536
537/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 * Allocate room for a suitable hash table.
539 */
Jonathan Brassowfee19982009-04-02 19:55:34 +0100540static int init_hash_tables(struct dm_snapshot *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
542 sector_t hash_size, cow_dev_size, origin_dev_size, max_buckets;
543
544 /*
545 * Calculate based on the size of the original volume or
546 * the COW volume...
547 */
Jonathan Brassowfee19982009-04-02 19:55:34 +0100548 cow_dev_size = get_dev_size(s->store->cow->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 origin_dev_size = get_dev_size(s->origin->bdev);
550 max_buckets = calc_max_buckets();
551
Jonathan Brassowfee19982009-04-02 19:55:34 +0100552 hash_size = min(origin_dev_size, cow_dev_size) >> s->store->chunk_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 hash_size = min(hash_size, max_buckets);
554
Robert P. J. Day8defd832008-02-08 02:10:06 +0000555 hash_size = rounddown_pow_of_two(hash_size);
Milan Brozd74f81f2008-02-08 02:11:27 +0000556 if (init_exception_table(&s->complete, hash_size,
557 DM_CHUNK_CONSECUTIVE_BITS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 return -ENOMEM;
559
560 /*
561 * Allocate hash table for in-flight exceptions
562 * Make this smaller than the real hash table
563 */
564 hash_size >>= 3;
565 if (hash_size < 64)
566 hash_size = 64;
567
Milan Brozd74f81f2008-02-08 02:11:27 +0000568 if (init_exception_table(&s->pending, hash_size, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 exit_exception_table(&s->complete, exception_cache);
570 return -ENOMEM;
571 }
572
573 return 0;
574}
575
576/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 * Construct a snapshot mapping: <origin_dev> <COW-dev> <p/n> <chunk-size>
578 */
579static int snapshot_ctr(struct dm_target *ti, unsigned int argc, char **argv)
580{
581 struct dm_snapshot *s;
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100582 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 int r = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 char *origin_path;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100585 struct dm_exception_store *store;
586 unsigned args_used;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Mark McLoughlin4c7e3bf2006-10-03 01:15:25 -0700588 if (argc != 4) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -0700589 ti->error = "requires exactly 4 arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 r = -EINVAL;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100591 goto bad_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 }
593
594 origin_path = argv[0];
Jonathan Brassowfee19982009-04-02 19:55:34 +0100595 argv++;
596 argc--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Jonathan Brassowfee19982009-04-02 19:55:34 +0100598 r = dm_exception_store_create(ti, argc, argv, &args_used, &store);
599 if (r) {
600 ti->error = "Couldn't create exception store";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 r = -EINVAL;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100602 goto bad_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604
Jonathan Brassowfee19982009-04-02 19:55:34 +0100605 argv += args_used;
606 argc -= args_used;
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 s = kmalloc(sizeof(*s), GFP_KERNEL);
Jonathan Brassowfee19982009-04-02 19:55:34 +0100609 if (!s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 ti->error = "Cannot allocate snapshot context private "
611 "structure";
612 r = -ENOMEM;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100613 goto bad_snap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 }
615
616 r = dm_get_device(ti, origin_path, 0, ti->len, FMODE_READ, &s->origin);
617 if (r) {
618 ti->error = "Cannot get origin device";
Jonathan Brassowfee19982009-04-02 19:55:34 +0100619 goto bad_origin;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
621
Jonathan Brassowfee19982009-04-02 19:55:34 +0100622 s->store = store;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 s->valid = 1;
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800624 s->active = 0;
Mikulas Patocka879129d22008-10-30 13:33:16 +0000625 atomic_set(&s->pending_exceptions_count, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 init_rwsem(&s->lock);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700627 spin_lock_init(&s->pe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 /* Allocate hash table for COW data */
Jonathan Brassowfee19982009-04-02 19:55:34 +0100630 if (init_hash_tables(s)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 ti->error = "Unable to allocate hash table space";
632 r = -ENOMEM;
Jonathan Brassowfee19982009-04-02 19:55:34 +0100633 goto bad_hash_tables;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100636 r = dm_kcopyd_client_create(SNAPSHOT_PAGES, &s->kcopyd_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (r) {
638 ti->error = "Could not create kcopyd client";
Jonathan Brassowfee19982009-04-02 19:55:34 +0100639 goto bad_kcopyd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
641
Mikulas Patocka92e86812008-07-21 12:00:35 +0100642 s->pending_pool = mempool_create_slab_pool(MIN_IOS, pending_cache);
643 if (!s->pending_pool) {
644 ti->error = "Could not allocate mempool for pending exceptions";
Jonathan Brassowfee19982009-04-02 19:55:34 +0100645 goto bad_pending_pool;
Mikulas Patocka92e86812008-07-21 12:00:35 +0100646 }
647
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100648 s->tracked_chunk_pool = mempool_create_slab_pool(MIN_IOS,
649 tracked_chunk_cache);
650 if (!s->tracked_chunk_pool) {
651 ti->error = "Could not allocate tracked_chunk mempool for "
652 "tracking reads";
Mikulas Patocka92e86812008-07-21 12:00:35 +0100653 goto bad_tracked_chunk_pool;
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100654 }
655
656 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
657 INIT_HLIST_HEAD(&s->tracked_chunk_hash[i]);
658
659 spin_lock_init(&s->tracked_chunk_lock);
660
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800661 /* Metadata must only be loaded into one table at once */
Jonathan Brassow493df712009-04-02 19:55:31 +0100662 r = s->store->type->read_metadata(s->store, dm_add_exception,
663 (void *)s);
Milan Broz07641472007-07-12 17:28:13 +0100664 if (r < 0) {
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700665 ti->error = "Failed to read snapshot metadata";
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100666 goto bad_load_and_register;
Milan Broz07641472007-07-12 17:28:13 +0100667 } else if (r > 0) {
668 s->valid = 0;
669 DMWARN("Snapshot is marked invalid.");
Mark McLoughlinf9cea4f2006-10-03 01:15:25 -0700670 }
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800671
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700672 bio_list_init(&s->queued_bios);
David Howellsc4028952006-11-22 14:57:56 +0000673 INIT_WORK(&s->queued_bios_work, flush_queued_bios);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 /* Add snapshot to the list of snapshots for this origin */
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -0800676 /* Exceptions aren't triggered till snapshot_resume() is called */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (register_snapshot(s)) {
678 r = -EINVAL;
679 ti->error = "Cannot register snapshot origin";
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100680 goto bad_load_and_register;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 }
682
683 ti->private = s;
Jonathan Brassowd0216842009-04-02 19:55:32 +0100684 ti->split_io = s->store->chunk_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 return 0;
687
Jonathan Brassowfee19982009-04-02 19:55:34 +0100688bad_load_and_register:
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100689 mempool_destroy(s->tracked_chunk_pool);
690
Jonathan Brassowfee19982009-04-02 19:55:34 +0100691bad_tracked_chunk_pool:
Mikulas Patocka92e86812008-07-21 12:00:35 +0100692 mempool_destroy(s->pending_pool);
693
Jonathan Brassowfee19982009-04-02 19:55:34 +0100694bad_pending_pool:
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100695 dm_kcopyd_client_destroy(s->kcopyd_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Jonathan Brassowfee19982009-04-02 19:55:34 +0100697bad_kcopyd:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 exit_exception_table(&s->pending, pending_cache);
699 exit_exception_table(&s->complete, exception_cache);
700
Jonathan Brassowfee19982009-04-02 19:55:34 +0100701bad_hash_tables:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 dm_put_device(ti, s->origin);
703
Jonathan Brassowfee19982009-04-02 19:55:34 +0100704bad_origin:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 kfree(s);
706
Jonathan Brassowfee19982009-04-02 19:55:34 +0100707bad_snap:
708 dm_exception_store_destroy(store);
709
710bad_args:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return r;
712}
713
Milan Broz31c93a02006-12-08 02:41:11 -0800714static void __free_exceptions(struct dm_snapshot *s)
715{
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100716 dm_kcopyd_client_destroy(s->kcopyd_client);
Milan Broz31c93a02006-12-08 02:41:11 -0800717 s->kcopyd_client = NULL;
718
719 exit_exception_table(&s->pending, pending_cache);
720 exit_exception_table(&s->complete, exception_cache);
Milan Broz31c93a02006-12-08 02:41:11 -0800721}
722
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723static void snapshot_dtr(struct dm_target *ti)
724{
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100725#ifdef CONFIG_DM_DEBUG
726 int i;
727#endif
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100728 struct dm_snapshot *s = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700730 flush_workqueue(ksnapd);
731
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800732 /* Prevent further origin writes from using this snapshot. */
733 /* After this returns there can be no new kcopyd jobs. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 unregister_snapshot(s);
735
Mikulas Patocka879129d22008-10-30 13:33:16 +0000736 while (atomic_read(&s->pending_exceptions_count))
Mikulas Patocka90fa1522009-01-06 03:04:54 +0000737 msleep(1);
Mikulas Patocka879129d22008-10-30 13:33:16 +0000738 /*
739 * Ensure instructions in mempool_destroy aren't reordered
740 * before atomic_read.
741 */
742 smp_mb();
743
Mikulas Patockacd45daf2008-07-21 12:00:32 +0100744#ifdef CONFIG_DM_DEBUG
745 for (i = 0; i < DM_TRACKED_CHUNK_HASH_SIZE; i++)
746 BUG_ON(!hlist_empty(&s->tracked_chunk_hash[i]));
747#endif
748
749 mempool_destroy(s->tracked_chunk_pool);
750
Milan Broz31c93a02006-12-08 02:41:11 -0800751 __free_exceptions(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Mikulas Patocka92e86812008-07-21 12:00:35 +0100753 mempool_destroy(s->pending_pool);
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 dm_put_device(ti, s->origin);
Jonathan Brassowfee19982009-04-02 19:55:34 +0100756
757 dm_exception_store_destroy(s->store);
Alasdair G Kergon138728dc2006-03-27 01:17:50 -0800758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 kfree(s);
760}
761
762/*
763 * Flush a list of buffers.
764 */
765static void flush_bios(struct bio *bio)
766{
767 struct bio *n;
768
769 while (bio) {
770 n = bio->bi_next;
771 bio->bi_next = NULL;
772 generic_make_request(bio);
773 bio = n;
774 }
775}
776
David Howellsc4028952006-11-22 14:57:56 +0000777static void flush_queued_bios(struct work_struct *work)
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700778{
David Howellsc4028952006-11-22 14:57:56 +0000779 struct dm_snapshot *s =
780 container_of(work, struct dm_snapshot, queued_bios_work);
Alasdair G Kergonca3a9312006-10-03 01:15:30 -0700781 struct bio *queued_bios;
782 unsigned long flags;
783
784 spin_lock_irqsave(&s->pe_lock, flags);
785 queued_bios = bio_list_get(&s->queued_bios);
786 spin_unlock_irqrestore(&s->pe_lock, flags);
787
788 flush_bios(queued_bios);
789}
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791/*
792 * Error a list of buffers.
793 */
794static void error_bios(struct bio *bio)
795{
796 struct bio *n;
797
798 while (bio) {
799 n = bio->bi_next;
800 bio->bi_next = NULL;
NeilBrown6712ecf2007-09-27 12:47:43 +0200801 bio_io_error(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 bio = n;
803 }
804}
805
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700806static void __invalidate_snapshot(struct dm_snapshot *s, int err)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800807{
808 if (!s->valid)
809 return;
810
811 if (err == -EIO)
812 DMERR("Invalidating snapshot: Error reading/writing.");
813 else if (err == -ENOMEM)
814 DMERR("Invalidating snapshot: Unable to allocate exception.");
815
Jonathan Brassow493df712009-04-02 19:55:31 +0100816 if (s->store->type->drop_snapshot)
817 s->store->type->drop_snapshot(s->store);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800818
819 s->valid = 0;
820
Jonathan Brassow0cea9c72009-04-02 19:55:32 +0100821 dm_table_event(s->store->ti->table);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800822}
823
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100824static void get_pending_exception(struct dm_snap_pending_exception *pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700825{
826 atomic_inc(&pe->ref_count);
827}
828
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100829static struct bio *put_pending_exception(struct dm_snap_pending_exception *pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700830{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100831 struct dm_snap_pending_exception *primary_pe;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700832 struct bio *origin_bios = NULL;
833
834 primary_pe = pe->primary_pe;
835
836 /*
837 * If this pe is involved in a write to the origin and
838 * it is the last sibling to complete then release
839 * the bios for the original write to the origin.
840 */
841 if (primary_pe &&
Mikulas Patocka7c5f78b2008-10-21 17:44:51 +0100842 atomic_dec_and_test(&primary_pe->ref_count)) {
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700843 origin_bios = bio_list_get(&primary_pe->origin_bios);
Mikulas Patocka7c5f78b2008-10-21 17:44:51 +0100844 free_pending_exception(primary_pe);
845 }
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700846
847 /*
848 * Free the pe if it's not linked to an origin write or if
849 * it's not itself a primary pe.
850 */
851 if (!primary_pe || primary_pe != pe)
852 free_pending_exception(pe);
853
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700854 return origin_bios;
855}
856
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100857static void pending_complete(struct dm_snap_pending_exception *pe, int success)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100859 struct dm_snap_exception *e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 struct dm_snapshot *s = pe->snap;
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700861 struct bio *origin_bios = NULL;
862 struct bio *snapshot_bios = NULL;
863 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800865 if (!success) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 /* Read/write error - snapshot is unusable */
867 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700868 __invalidate_snapshot(s, -EIO);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700869 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800870 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 }
872
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800873 e = alloc_exception();
874 if (!e) {
875 down_write(&s->lock);
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700876 __invalidate_snapshot(s, -ENOMEM);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700877 error = 1;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800878 goto out;
879 }
880 *e = pe->e;
881
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700882 down_write(&s->lock);
883 if (!s->valid) {
884 free_exception(e);
885 error = 1;
886 goto out;
887 }
888
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800889 /*
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100890 * Check for conflicting reads. This is extremely improbable,
Mikulas Patocka90fa1522009-01-06 03:04:54 +0000891 * so msleep(1) is sufficient and there is no need for a wait queue.
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100892 */
893 while (__chunk_is_tracked(s, pe->e.old_chunk))
Mikulas Patocka90fa1522009-01-06 03:04:54 +0000894 msleep(1);
Mikulas Patockaa8d41b52008-07-21 12:00:34 +0100895
896 /*
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800897 * Add a proper exception, and remove the
898 * in-flight exception from the list.
899 */
Milan Brozd74f81f2008-02-08 02:11:27 +0000900 insert_completed_exception(s, e);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 out:
Alasdair G Kergon695368a2006-10-03 01:15:31 -0700903 remove_exception(&pe->e);
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700904 snapshot_bios = bio_list_get(&pe->snapshot_bios);
Alasdair G Kergon4b832e82006-10-03 01:15:30 -0700905 origin_bios = put_pending_exception(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Alasdair G Kergon9d493fa2006-10-03 01:15:29 -0700907 up_write(&s->lock);
908
909 /* Submit any pending write bios */
910 if (error)
911 error_bios(snapshot_bios);
912 else
913 flush_bios(snapshot_bios);
914
915 flush_bios(origin_bios);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
918static void commit_callback(void *context, int success)
919{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100920 struct dm_snap_pending_exception *pe = context;
921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 pending_complete(pe, success);
923}
924
925/*
926 * Called when the copy I/O has finished. kcopyd actually runs
927 * this code so don't block.
928 */
Alasdair G Kergon4cdc1d12008-03-28 14:16:10 -0700929static void copy_callback(int read_err, unsigned long write_err, void *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100931 struct dm_snap_pending_exception *pe = context;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 struct dm_snapshot *s = pe->snap;
933
934 if (read_err || write_err)
935 pending_complete(pe, 0);
936
937 else
938 /* Update the metadata if we are persistent */
Jonathan Brassow493df712009-04-02 19:55:31 +0100939 s->store->type->commit_exception(s->store, &pe->e,
940 commit_callback, pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941}
942
943/*
944 * Dispatches the copy operation to kcopyd.
945 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100946static void start_copy(struct dm_snap_pending_exception *pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
948 struct dm_snapshot *s = pe->snap;
Heinz Mauelshagen22a1ceb2008-04-24 21:43:17 +0100949 struct dm_io_region src, dest;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 struct block_device *bdev = s->origin->bdev;
951 sector_t dev_size;
952
953 dev_size = get_dev_size(bdev);
954
955 src.bdev = bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +0100956 src.sector = chunk_to_sector(s->store, pe->e.old_chunk);
Jonathan Brassowd0216842009-04-02 19:55:32 +0100957 src.count = min(s->store->chunk_size, dev_size - src.sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Jonathan Brassow49beb2b2009-04-02 19:55:33 +0100959 dest.bdev = s->store->cow->bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +0100960 dest.sector = chunk_to_sector(s->store, pe->e.new_chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 dest.count = src.count;
962
963 /* Hand over to kcopyd */
Heinz Mauelshageneb69aca2008-04-24 21:43:19 +0100964 dm_kcopyd_copy(s->kcopyd_client,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 &src, 1, &dest, 0, copy_callback, pe);
966}
967
Mikulas Patocka29138082009-04-02 19:55:25 +0100968static struct dm_snap_pending_exception *
969__lookup_pending_exception(struct dm_snapshot *s, chunk_t chunk)
970{
971 struct dm_snap_exception *e = lookup_exception(&s->pending, chunk);
972
973 if (!e)
974 return NULL;
975
976 return container_of(e, struct dm_snap_pending_exception, e);
977}
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979/*
980 * Looks to see if this snapshot already has a pending exception
981 * for this chunk, otherwise it allocates a new one and inserts
982 * it into the pending table.
983 *
984 * NOTE: a write lock must be held on snap->lock before calling
985 * this.
986 */
Alasdair G Kergon028867a2007-07-12 17:26:32 +0100987static struct dm_snap_pending_exception *
Mikulas Patockac6621392009-04-02 19:55:25 +0100988__find_pending_exception(struct dm_snapshot *s,
989 struct dm_snap_pending_exception *pe, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Mikulas Patockac6621392009-04-02 19:55:25 +0100991 struct dm_snap_pending_exception *pe2;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800992
Mikulas Patocka29138082009-04-02 19:55:25 +0100993 pe2 = __lookup_pending_exception(s, chunk);
994 if (pe2) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800995 free_pending_exception(pe);
Mikulas Patocka29138082009-04-02 19:55:25 +0100996 return pe2;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -0800997 }
998
999 pe->e.old_chunk = chunk;
1000 bio_list_init(&pe->origin_bios);
1001 bio_list_init(&pe->snapshot_bios);
1002 pe->primary_pe = NULL;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001003 atomic_set(&pe->ref_count, 0);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001004 pe->started = 0;
1005
Jonathan Brassow493df712009-04-02 19:55:31 +01001006 if (s->store->type->prepare_exception(s->store, &pe->e)) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001007 free_pending_exception(pe);
1008 return NULL;
1009 }
1010
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001011 get_pending_exception(pe);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001012 insert_exception(&s->pending, &pe->e);
1013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 return pe;
1015}
1016
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001017static void remap_exception(struct dm_snapshot *s, struct dm_snap_exception *e,
Milan Brozd74f81f2008-02-08 02:11:27 +00001018 struct bio *bio, chunk_t chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
Jonathan Brassow49beb2b2009-04-02 19:55:33 +01001020 bio->bi_bdev = s->store->cow->bdev;
Jonathan Brassow71fab002009-04-02 19:55:33 +01001021 bio->bi_sector = chunk_to_sector(s->store,
1022 dm_chunk_number(e->new_chunk) +
1023 (chunk - e->old_chunk)) +
1024 (bio->bi_sector &
1025 s->store->chunk_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
1028static int snapshot_map(struct dm_target *ti, struct bio *bio,
1029 union map_info *map_context)
1030{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001031 struct dm_snap_exception *e;
1032 struct dm_snapshot *s = ti->private;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001033 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 chunk_t chunk;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001035 struct dm_snap_pending_exception *pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Jonathan Brassow71fab002009-04-02 19:55:33 +01001037 chunk = sector_to_chunk(s->store, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039 /* Full snapshots are not usable */
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001040 /* To get here the table must be live so s->active is always set. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (!s->valid)
Alasdair G Kergonf6a80ea2005-07-12 15:53:01 -07001042 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001044 /* FIXME: should only take write lock if we need
1045 * to copy an exception */
1046 down_write(&s->lock);
1047
1048 if (!s->valid) {
1049 r = -EIO;
1050 goto out_unlock;
1051 }
1052
1053 /* If the block is already remapped - use that, else remap it */
1054 e = lookup_exception(&s->complete, chunk);
1055 if (e) {
Milan Brozd74f81f2008-02-08 02:11:27 +00001056 remap_exception(s, e, bio, chunk);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001057 goto out_unlock;
1058 }
1059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 /*
1061 * Write to snapshot - higher level takes care of RW/RO
1062 * flags so we should only get this if we are
1063 * writeable.
1064 */
1065 if (bio_rw(bio) == WRITE) {
Mikulas Patocka29138082009-04-02 19:55:25 +01001066 pe = __lookup_pending_exception(s, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001067 if (!pe) {
Mikulas Patockac6621392009-04-02 19:55:25 +01001068 up_write(&s->lock);
1069 pe = alloc_pending_exception(s);
1070 down_write(&s->lock);
1071
1072 if (!s->valid) {
1073 free_pending_exception(pe);
1074 r = -EIO;
1075 goto out_unlock;
1076 }
1077
Mikulas Patocka35bf6592009-04-02 19:55:26 +01001078 e = lookup_exception(&s->complete, chunk);
1079 if (e) {
1080 free_pending_exception(pe);
1081 remap_exception(s, e, bio, chunk);
1082 goto out_unlock;
1083 }
1084
Mikulas Patockac6621392009-04-02 19:55:25 +01001085 pe = __find_pending_exception(s, pe, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001086 if (!pe) {
1087 __invalidate_snapshot(s, -ENOMEM);
1088 r = -EIO;
1089 goto out_unlock;
1090 }
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001091 }
1092
Milan Brozd74f81f2008-02-08 02:11:27 +00001093 remap_exception(s, &pe->e, bio, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001094 bio_list_add(&pe->snapshot_bios, bio);
1095
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001096 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001097
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001098 if (!pe->started) {
1099 /* this is protected by snap->lock */
1100 pe->started = 1;
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001101 up_write(&s->lock);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001102 start_copy(pe);
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001103 goto out;
1104 }
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001105 } else {
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001106 bio->bi_bdev = s->origin->bdev;
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001107 map_context->ptr = track_chunk(s, chunk);
1108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Alasdair G Kergonba40a2a2006-10-03 01:15:28 -07001110 out_unlock:
1111 up_write(&s->lock);
1112 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return r;
1114}
1115
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001116static int snapshot_end_io(struct dm_target *ti, struct bio *bio,
1117 int error, union map_info *map_context)
1118{
1119 struct dm_snapshot *s = ti->private;
1120 struct dm_snap_tracked_chunk *c = map_context->ptr;
1121
1122 if (c)
1123 stop_tracking_chunk(s, c);
1124
1125 return 0;
1126}
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128static void snapshot_resume(struct dm_target *ti)
1129{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001130 struct dm_snapshot *s = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001132 down_write(&s->lock);
1133 s->active = 1;
1134 up_write(&s->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135}
1136
1137static int snapshot_status(struct dm_target *ti, status_type_t type,
1138 char *result, unsigned int maxlen)
1139{
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001140 unsigned sz = 0;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001141 struct dm_snapshot *snap = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
1143 switch (type) {
1144 case STATUSTYPE_INFO:
1145 if (!snap->valid)
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001146 DMEMIT("Invalid");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 else {
Jonathan Brassow493df712009-04-02 19:55:31 +01001148 if (snap->store->type->fraction_full) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 sector_t numerator, denominator;
Jonathan Brassow493df712009-04-02 19:55:31 +01001150 snap->store->type->fraction_full(snap->store,
1151 &numerator,
1152 &denominator);
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001153 DMEMIT("%llu/%llu",
1154 (unsigned long long)numerator,
1155 (unsigned long long)denominator);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 }
1157 else
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001158 DMEMIT("Unknown");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
1160 break;
1161
1162 case STATUSTYPE_TABLE:
1163 /*
1164 * kdevname returns a static pointer so we need
1165 * to make private copies if the output is to
1166 * make sense.
1167 */
Jonathan Brassow2e4a31d2009-04-02 19:55:34 +01001168 DMEMIT("%s", snap->origin->name);
1169 DMEMIT(" %s %s %llu", snap->store->cow->name,
1170 snap->store->type->name,
1171 (unsigned long long)snap->store->chunk_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 break;
1173 }
1174
1175 return 0;
1176}
1177
1178/*-----------------------------------------------------------------
1179 * Origin methods
1180 *---------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181static int __origin_write(struct list_head *snapshots, struct bio *bio)
1182{
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001183 int r = DM_MAPIO_REMAPPED, first = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 struct dm_snapshot *snap;
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001185 struct dm_snap_exception *e;
1186 struct dm_snap_pending_exception *pe, *next_pe, *primary_pe = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 chunk_t chunk;
Alasdair G Kergoneccf0812006-03-27 01:17:42 -08001188 LIST_HEAD(pe_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 /* Do all the snapshots on this origin */
1191 list_for_each_entry (snap, snapshots, list) {
1192
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001193 down_write(&snap->lock);
1194
Alasdair G Kergonaa14ede2006-02-01 03:04:50 -08001195 /* Only deal with valid and active snapshots */
1196 if (!snap->valid || !snap->active)
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001197 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Alasdair G Kergond5e404c2005-07-12 15:53:05 -07001199 /* Nothing to do if writing beyond end of snapshot */
Jonathan Brassow0cea9c72009-04-02 19:55:32 +01001200 if (bio->bi_sector >= dm_table_get_size(snap->store->ti->table))
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001201 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
1203 /*
1204 * Remember, different snapshots can have
1205 * different chunk sizes.
1206 */
Jonathan Brassow71fab002009-04-02 19:55:33 +01001207 chunk = sector_to_chunk(snap->store, bio->bi_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 /*
1210 * Check exception table to see if block
1211 * is already remapped in this snapshot
1212 * and trigger an exception if not.
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001213 *
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001214 * ref_count is initialised to 1 so pending_complete()
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001215 * won't destroy the primary_pe while we're inside this loop.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 */
1217 e = lookup_exception(&snap->complete, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001218 if (e)
1219 goto next_snapshot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Mikulas Patocka29138082009-04-02 19:55:25 +01001221 pe = __lookup_pending_exception(snap, chunk);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001222 if (!pe) {
Mikulas Patockac6621392009-04-02 19:55:25 +01001223 up_write(&snap->lock);
1224 pe = alloc_pending_exception(snap);
1225 down_write(&snap->lock);
1226
1227 if (!snap->valid) {
1228 free_pending_exception(pe);
1229 goto next_snapshot;
1230 }
1231
Mikulas Patocka35bf6592009-04-02 19:55:26 +01001232 e = lookup_exception(&snap->complete, chunk);
1233 if (e) {
1234 free_pending_exception(pe);
1235 goto next_snapshot;
1236 }
1237
Mikulas Patockac6621392009-04-02 19:55:25 +01001238 pe = __find_pending_exception(snap, pe, chunk);
Mikulas Patocka29138082009-04-02 19:55:25 +01001239 if (!pe) {
1240 __invalidate_snapshot(snap, -ENOMEM);
1241 goto next_snapshot;
1242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
1244
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001245 if (!primary_pe) {
1246 /*
1247 * Either every pe here has same
1248 * primary_pe or none has one yet.
1249 */
1250 if (pe->primary_pe)
1251 primary_pe = pe->primary_pe;
1252 else {
1253 primary_pe = pe;
1254 first = 1;
1255 }
1256
1257 bio_list_add(&primary_pe->origin_bios, bio);
1258
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001259 r = DM_MAPIO_SUBMITTED;
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001260 }
1261
1262 if (!pe->primary_pe) {
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001263 pe->primary_pe = primary_pe;
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001264 get_pending_exception(primary_pe);
Alasdair G Kergon76df1c62006-03-27 01:17:45 -08001265 }
1266
1267 if (!pe->started) {
1268 pe->started = 1;
1269 list_add_tail(&pe->list, &pe_queue);
1270 }
1271
1272 next_snapshot:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 up_write(&snap->lock);
1274 }
1275
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001276 if (!primary_pe)
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001277 return r;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001278
1279 /*
1280 * If this is the first time we're processing this chunk and
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001281 * ref_count is now 1 it means all the pending exceptions
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001282 * got completed while we were in the loop above, so it falls to
1283 * us here to remove the primary_pe and submit any origin_bios.
1284 */
1285
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001286 if (first && atomic_dec_and_test(&primary_pe->ref_count)) {
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001287 flush_bios(bio_list_get(&primary_pe->origin_bios));
1288 free_pending_exception(primary_pe);
1289 /* If we got here, pe_queue is necessarily empty. */
Alasdair G Kergon4b832e82006-10-03 01:15:30 -07001290 return r;
Alasdair G Kergonb4b610f2006-03-27 01:17:44 -08001291 }
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 /*
1294 * Now that we have a complete pe list we can start the copying.
1295 */
Alasdair G Kergoneccf0812006-03-27 01:17:42 -08001296 list_for_each_entry_safe(pe, next_pe, &pe_queue, list)
1297 start_copy(pe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
1299 return r;
1300}
1301
1302/*
1303 * Called on a write from the origin driver.
1304 */
1305static int do_origin(struct dm_dev *origin, struct bio *bio)
1306{
1307 struct origin *o;
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001308 int r = DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 down_read(&_origins_lock);
1311 o = __lookup_origin(origin->bdev);
1312 if (o)
1313 r = __origin_write(&o->snapshots, bio);
1314 up_read(&_origins_lock);
1315
1316 return r;
1317}
1318
1319/*
1320 * Origin: maps a linear range of a device, with hooks for snapshotting.
1321 */
1322
1323/*
1324 * Construct an origin mapping: <dev_path>
1325 * The context for an origin is merely a 'struct dm_dev *'
1326 * pointing to the real device.
1327 */
1328static int origin_ctr(struct dm_target *ti, unsigned int argc, char **argv)
1329{
1330 int r;
1331 struct dm_dev *dev;
1332
1333 if (argc != 1) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001334 ti->error = "origin: incorrect number of arguments";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 return -EINVAL;
1336 }
1337
1338 r = dm_get_device(ti, argv[0], 0, ti->len,
1339 dm_table_get_mode(ti->table), &dev);
1340 if (r) {
1341 ti->error = "Cannot get target device";
1342 return r;
1343 }
1344
1345 ti->private = dev;
1346 return 0;
1347}
1348
1349static void origin_dtr(struct dm_target *ti)
1350{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001351 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 dm_put_device(ti, dev);
1353}
1354
1355static int origin_map(struct dm_target *ti, struct bio *bio,
1356 union map_info *map_context)
1357{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001358 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 bio->bi_bdev = dev->bdev;
1360
1361 /* Only tell snapshots if this is a write */
Kiyoshi Uedad2a7ad22006-12-08 02:41:06 -08001362 return (bio_rw(bio) == WRITE) ? do_origin(dev, bio) : DM_MAPIO_REMAPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363}
1364
1365#define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
1366
1367/*
1368 * Set the target "split_io" field to the minimum of all the snapshots'
1369 * chunk sizes.
1370 */
1371static void origin_resume(struct dm_target *ti)
1372{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001373 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 struct dm_snapshot *snap;
1375 struct origin *o;
1376 chunk_t chunk_size = 0;
1377
1378 down_read(&_origins_lock);
1379 o = __lookup_origin(dev->bdev);
1380 if (o)
1381 list_for_each_entry (snap, &o->snapshots, list)
Jonathan Brassowd0216842009-04-02 19:55:32 +01001382 chunk_size = min_not_zero(chunk_size,
1383 snap->store->chunk_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 up_read(&_origins_lock);
1385
1386 ti->split_io = chunk_size;
1387}
1388
1389static int origin_status(struct dm_target *ti, status_type_t type, char *result,
1390 unsigned int maxlen)
1391{
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001392 struct dm_dev *dev = ti->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 switch (type) {
1395 case STATUSTYPE_INFO:
1396 result[0] = '\0';
1397 break;
1398
1399 case STATUSTYPE_TABLE:
1400 snprintf(result, maxlen, "%s", dev->name);
1401 break;
1402 }
1403
1404 return 0;
1405}
1406
1407static struct target_type origin_target = {
1408 .name = "snapshot-origin",
Milan Brozd74f81f2008-02-08 02:11:27 +00001409 .version = {1, 6, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 .module = THIS_MODULE,
1411 .ctr = origin_ctr,
1412 .dtr = origin_dtr,
1413 .map = origin_map,
1414 .resume = origin_resume,
1415 .status = origin_status,
1416};
1417
1418static struct target_type snapshot_target = {
1419 .name = "snapshot",
Milan Brozd74f81f2008-02-08 02:11:27 +00001420 .version = {1, 6, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 .module = THIS_MODULE,
1422 .ctr = snapshot_ctr,
1423 .dtr = snapshot_dtr,
1424 .map = snapshot_map,
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001425 .end_io = snapshot_end_io,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 .resume = snapshot_resume,
1427 .status = snapshot_status,
1428};
1429
1430static int __init dm_snapshot_init(void)
1431{
1432 int r;
1433
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001434 r = dm_exception_store_init();
1435 if (r) {
1436 DMERR("Failed to initialize exception stores");
1437 return r;
1438 }
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 r = dm_register_target(&snapshot_target);
1441 if (r) {
1442 DMERR("snapshot target register failed %d", r);
1443 return r;
1444 }
1445
1446 r = dm_register_target(&origin_target);
1447 if (r < 0) {
Alasdair G Kergon72d94862006-06-26 00:27:35 -07001448 DMERR("Origin target register failed %d", r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 goto bad1;
1450 }
1451
1452 r = init_origin_hash();
1453 if (r) {
1454 DMERR("init_origin_hash failed.");
1455 goto bad2;
1456 }
1457
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001458 exception_cache = KMEM_CACHE(dm_snap_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 if (!exception_cache) {
1460 DMERR("Couldn't create exception cache.");
1461 r = -ENOMEM;
1462 goto bad3;
1463 }
1464
Alasdair G Kergon028867a2007-07-12 17:26:32 +01001465 pending_cache = KMEM_CACHE(dm_snap_pending_exception, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 if (!pending_cache) {
1467 DMERR("Couldn't create pending cache.");
1468 r = -ENOMEM;
1469 goto bad4;
1470 }
1471
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001472 tracked_chunk_cache = KMEM_CACHE(dm_snap_tracked_chunk, 0);
1473 if (!tracked_chunk_cache) {
1474 DMERR("Couldn't create cache to track chunks in use.");
1475 r = -ENOMEM;
1476 goto bad5;
1477 }
1478
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001479 ksnapd = create_singlethread_workqueue("ksnapd");
1480 if (!ksnapd) {
1481 DMERR("Failed to create ksnapd workqueue.");
1482 r = -ENOMEM;
Mikulas Patocka92e86812008-07-21 12:00:35 +01001483 goto bad_pending_pool;
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001484 }
1485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 return 0;
1487
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001488bad_pending_pool:
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001489 kmem_cache_destroy(tracked_chunk_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001490bad5:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 kmem_cache_destroy(pending_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001492bad4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 kmem_cache_destroy(exception_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001494bad3:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 exit_origin_hash();
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001496bad2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 dm_unregister_target(&origin_target);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001498bad1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 dm_unregister_target(&snapshot_target);
1500 return r;
1501}
1502
1503static void __exit dm_snapshot_exit(void)
1504{
Alasdair G Kergonca3a9312006-10-03 01:15:30 -07001505 destroy_workqueue(ksnapd);
1506
Mikulas Patocka10d3bd02009-01-06 03:04:58 +00001507 dm_unregister_target(&snapshot_target);
1508 dm_unregister_target(&origin_target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
1510 exit_origin_hash();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 kmem_cache_destroy(pending_cache);
1512 kmem_cache_destroy(exception_cache);
Mikulas Patockacd45daf2008-07-21 12:00:32 +01001513 kmem_cache_destroy(tracked_chunk_cache);
Alasdair G Kergon4db6bfe2009-01-06 03:05:17 +00001514
1515 dm_exception_store_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517
1518/* Module hooks */
1519module_init(dm_snapshot_init);
1520module_exit(dm_snapshot_exit);
1521
1522MODULE_DESCRIPTION(DM_NAME " snapshot target");
1523MODULE_AUTHOR("Joe Thornber");
1524MODULE_LICENSE("GPL");